From f1f685bc6e6f618b0f9f338b8e5e58e869f32ab6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Sandvik?= Date: Thu, 10 Nov 2022 20:06:34 +0100 Subject: [PATCH 01/63] feat: feature service dialog --- package.json | 1 + src/components/edit/LayerEdit.js | 13 ++- .../edit/external/ExternalDialog.js | 27 ++++++ .../edit/external/FeatureService.js | 94 +++++++++++++++++++ .../layers/overlays/AddLayerPopover.js | 6 +- src/components/layers/overlays/OverlayCard.js | 4 +- src/loaders/externalLoader.js | 5 + src/loaders/featureServiceLoader.js | 48 ++++++++++ src/reducers/layers.js | 11 +++ src/reducers/map.js | 53 ++++++++++- yarn.lock | 86 +++++++++++++++++ 11 files changed, 343 insertions(+), 5 deletions(-) create mode 100644 src/components/edit/external/ExternalDialog.js create mode 100644 src/components/edit/external/FeatureService.js create mode 100644 src/loaders/featureServiceLoader.js diff --git a/package.json b/package.json index b916973e8..a9916ef17 100644 --- a/package.json +++ b/package.json @@ -51,6 +51,7 @@ "@dhis2/d2-ui-org-unit-tree": "^7.4.0", "@dhis2/maps-gl": "^3.5.2", "@dhis2/ui": "^8.4.13", + "@esri/arcgis-rest-request": "^4.1.1", "abortcontroller-polyfill": "^1.7.3", "array-move": "^4.0.0", "classnames": "^2.3.1", diff --git a/src/components/edit/LayerEdit.js b/src/components/edit/LayerEdit.js index 94fa43b6c..2b733ce67 100644 --- a/src/components/edit/LayerEdit.js +++ b/src/components/edit/LayerEdit.js @@ -16,6 +16,7 @@ import FacilityDialog from './FacilityDialog'; import ThematicDialog from './thematic/ThematicDialog'; import OrgUnitDialog from './orgUnit/OrgUnitDialog'; import EarthEngineDialog from './earthEngine/EarthEngineDialog'; +import ExternalDialog from './external/ExternalDialog'; import { loadLayer, cancelLayer, setLayerLoading } from '../../actions/layers'; import { EARTH_ENGINE_LAYER } from '../../constants/layers'; import { useSystemSettings } from '../SystemSettingsProvider'; @@ -28,8 +29,10 @@ const layerType = { thematic: ThematicDialog, orgUnit: OrgUnitDialog, earthEngine: EarthEngineDialog, + external: ExternalDialog, }; +/* const layerName = () => ({ event: i18n.t('event'), trackedEntity: i18n.t('tracked entity'), @@ -38,6 +41,7 @@ const layerName = () => ({ orgUnit: i18n.t('org unit'), earthEngine: i18n.t('Earth Engine'), }); +*/ const LayerEdit = ({ layer, cancelLayer, setLayerLoading, loadLayer }) => { const [isValidLayer, setIsValidLayer] = useState(false); @@ -71,15 +75,20 @@ const LayerEdit = ({ layer, cancelLayer, setLayerLoading, loadLayer }) => { return null; } - let name = layerName()[type]; + // let name = layerName()[type] || layer.type; + let name = layer.type; if (type === EARTH_ENGINE_LAYER) { - name = layer.name.toLowerCase(); + name = layer.name; // .toLowerCase(); } + /* const title = layer.id ? i18n.t('Edit {{name}} layer', { name }) : i18n.t('Add new {{name}} layer', { name }); + */ + + const title = i18n.t('{{name}} layer', { name }); return ( diff --git a/src/components/edit/external/ExternalDialog.js b/src/components/edit/external/ExternalDialog.js new file mode 100644 index 000000000..cb8edbeec --- /dev/null +++ b/src/components/edit/external/ExternalDialog.js @@ -0,0 +1,27 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import FeatureService from './FeatureService'; + +const layerType = { + featureService: FeatureService, +}; + +const ExternalDialog = props => { + const { type } = props.config; + + const LayerDialog = layerType[type]; + + if (!LayerDialog) { + return null; + } + + return ; +}; + +ExternalDialog.propTypes = { + config: PropTypes.shape({ + type: PropTypes.string.isRequired, + }), +}; + +export default ExternalDialog; diff --git a/src/components/edit/external/FeatureService.js b/src/components/edit/external/FeatureService.js new file mode 100644 index 000000000..5c1c37652 --- /dev/null +++ b/src/components/edit/external/FeatureService.js @@ -0,0 +1,94 @@ +import React, { useEffect, useState } from 'react'; +import PropTypes from 'prop-types'; +import { connect } from 'react-redux'; +import i18n from '@dhis2/d2-i18n'; +import { request } from '@esri/arcgis-rest-request'; +import { Tab, Tabs } from '../../core'; +import OrgUnitTree from '../../orgunits/OrgUnitTree'; +import { toggleOrgUnit } from '../../../actions/layerEdit'; +import { getOrgUnitNodesFromRows } from '../../../util/analytics'; +import styles from '../styles/LayerDialog.module.css'; + +const FeatureServiceDialog = ({ + rows = [], + config, + toggleOrgUnit, + validateLayer, + onLayerValidation, +}) => { + const [tab, setTab] = useState('orgunits'); + const [metadata, setMetadata] = useState(); + + const { url } = config; + + useEffect(() => { + request(url).then(setMetadata); + }, [url]); + + useEffect(() => { + if (metadata) { + // console.log('metadata', metadata); + } + }, [metadata]); + + useEffect(() => { + if (validateLayer) { + onLayerValidation(true); // TODO + } + }, [validateLayer, onLayerValidation]); + + return ( +
+ + {i18n.t('Organisation Units')} + {i18n.t('Style')} + +
+ {tab === 'orgunits' && ( +
+
+ +
+
+ )} + {tab === 'style' && ( +
+
+
+
+ )} +
+
+ ); +}; + +FeatureServiceDialog.propTypes = { + rows: PropTypes.array, + toggleOrgUnit: PropTypes.func.isRequired, + config: PropTypes.shape({ + url: PropTypes.string.isRequired, + }), + validateLayer: PropTypes.bool.isRequired, + onLayerValidation: PropTypes.func.isRequired, +}; + +export default connect( + null, + { + toggleOrgUnit, + }, + null, + { + forwardRef: true, + } +)(FeatureServiceDialog); diff --git a/src/components/layers/overlays/AddLayerPopover.js b/src/components/layers/overlays/AddLayerPopover.js index 680e31091..0ab02d018 100644 --- a/src/components/layers/overlays/AddLayerPopover.js +++ b/src/components/layers/overlays/AddLayerPopover.js @@ -17,7 +17,11 @@ const AddLayerPopover = ({ }) => { const onLayerSelect = layer => { const config = { ...layer }; - layer.layer === EXTERNAL_LAYER ? loadLayer(config) : editLayer(config); + const canEdit = + layer.layer !== EXTERNAL_LAYER || + layer.config.type === 'featureService'; + + canEdit ? editLayer(config) : loadLayer(config); onClose(); }; diff --git a/src/components/layers/overlays/OverlayCard.js b/src/components/layers/overlays/OverlayCard.js index f63d6a04f..aeffbead6 100644 --- a/src/components/layers/overlays/OverlayCard.js +++ b/src/components/layers/overlays/OverlayCard.js @@ -52,10 +52,12 @@ const OverlayCard = ({ opacity, isVisible, layer: layerType, + config = {}, isLoaded, } = layer; - const canEdit = layerType !== EXTERNAL_LAYER; + const canEdit = + layerType !== EXTERNAL_LAYER || config.type === 'featureService'; const canToggleDataTable = DATA_TABLE_LAYER_TYPES.includes(layerType); const canDownload = DOWNLOADABLE_LAYER_TYPES.includes(layerType); const canOpenAs = OPEN_AS_LAYER_TYPES.includes(layerType); diff --git a/src/loaders/externalLoader.js b/src/loaders/externalLoader.js index 933562c61..d2d83d0cb 100644 --- a/src/loaders/externalLoader.js +++ b/src/loaders/externalLoader.js @@ -1,4 +1,5 @@ import { parseLayerConfig } from '../util/external'; +import featureServiceLoader from './featureServiceLoader'; import { loadLegendSet, getPredefinedLegendItems } from '../util/legend'; import { EXTERNAL_LAYER } from '../constants/layers'; @@ -12,6 +13,10 @@ const externalLoader = async layer => { delete layer.id; } + if (config.type === 'featureService') { + return featureServiceLoader({ ...layer, config }); + } + const { name, legendSet, legendSetUrl } = config; const legend = { title: name }; diff --git a/src/loaders/featureServiceLoader.js b/src/loaders/featureServiceLoader.js new file mode 100644 index 000000000..6174a4771 --- /dev/null +++ b/src/loaders/featureServiceLoader.js @@ -0,0 +1,48 @@ +import { getInstance as getD2 } from 'd2'; +import { getOrgUnitsFromRows } from '../util/analytics'; +import { toGeoJson } from '../util/map'; +import { getDisplayProperty } from '../util/helpers'; +import { EXTERNAL_LAYER } from '../constants/layers'; + +const featureServiceLoader = async layer => { + const { config, rows } = layer; + const { name } = config; + const legend = { title: name }; + const orgUnits = getOrgUnitsFromRows(rows); + const orgUnitParams = orgUnits.map(item => item.id); + const d2 = await getD2(); + const displayProperty = getDisplayProperty(d2).toUpperCase(); + const featuresRequest = d2.geoFeatures + .byOrgUnit(orgUnitParams) + .displayProperty(displayProperty); + let features; + let geometry; + + try { + features = await featuresRequest.getAll().then(toGeoJson); + } catch (error) { + // console.log(error); // TODO + } + + if (features.length) { + geometry = features[0].geometry; + } + + // console.log('geometry', geometry); + + return { + ...layer, + layer: EXTERNAL_LAYER, + name, + legend, + config: { + ...config, + geometry, + }, + isLoaded: true, + isExpanded: true, + isVisible: true, + }; +}; + +export default featureServiceLoader; diff --git a/src/reducers/layers.js b/src/reducers/layers.js index 1e8f765b6..2aef2ad08 100644 --- a/src/reducers/layers.js +++ b/src/reducers/layers.js @@ -42,6 +42,17 @@ const defaultLayers = () => [ opacity: 1, }, ...earthEngineLayers().filter(l => !l.legacy), + { + layer: 'external', + type: 'Settlement extents', + opacity: 1, + config: { + type: 'featureService', + name: 'Settlement extents', + url: + 'https://services3.arcgis.com/BU6Aadhn6tbBEdyk/ArcGIS/rest/services/GRID3_Sierra_Leone_Settlement_Extents/FeatureServer/0', + }, + }, ]; const layers = (state, action) => { diff --git a/src/reducers/map.js b/src/reducers/map.js index 761f62916..4ddfd2c29 100644 --- a/src/reducers/map.js +++ b/src/reducers/map.js @@ -14,7 +14,58 @@ const defaultState = { [50.2, 35.9], ], basemap: defaultBasemapState, - mapViews: [], + mapViews: [ + /* + { + id: 'LBLdMevUSrm', + layer: 'external', + name: 'Settlement extents', + opacity: 1, + config: { + id: 'suB1SFdc6RD', + type: 'geoJsonUrl', + url: + 'https://services3.arcgis.com/BU6Aadhn6tbBEdyk/arcgis/rest/services/GRID3_Sierra_Leone_Settlement_Extents/FeatureServer/0/query?f=pgeojson&where=1=1', + attribution: 'GRID3', + style: { + color: '#FFA500', + }, + }, + legend: { + title: 'Settlement extents', + }, + isVisible: true, + editCounter: 0, + isLoaded: true, + isExpanded: true, + }, + */ + /* + { + id: 'LBLdMevUSrm', + layer: 'external', + name: 'Settlement extents', + opacity: 1, + config: { + id: 'suB1SFdc6RD', + type: 'featureService', + url: + 'https://services3.arcgis.com/BU6Aadhn6tbBEdyk/ArcGIS/rest/services/GRID3_Sierra_Leone_Settlement_Extents/FeatureServer/0', + attribution: 'GRID3', + style: { + color: '#FFA500', + }, + }, + legend: { + title: 'Settlement extents', + }, + isVisible: true, + editCounter: 0, + isLoaded: true, + isExpanded: true, + }, + */ + ], }; const basemap = (state, action) => { diff --git a/yarn.lock b/yarn.lock index 0737faac0..8aa9c81a4 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4700,6 +4700,30 @@ minimatch "^3.1.2" strip-json-comments "^3.1.1" +"@esri/arcgis-rest-fetch@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@esri/arcgis-rest-fetch/-/arcgis-rest-fetch-4.0.0.tgz#aa5bf2bedccc168ea52433eb9c56b452b450500d" + integrity sha512-ybsMO2L4cxx0IaIx0jv6/VbXidZmQIiGD3bvPF1/n1Y1ljHIhCvX+ti54cQSfg/HW2+VAVVnt8EPD/omVhNAyg== + dependencies: + node-fetch "^3.0.0" + +"@esri/arcgis-rest-form-data@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@esri/arcgis-rest-form-data/-/arcgis-rest-form-data-4.0.0.tgz#bea44236863348b6433440083f4dd9d4c42497f6" + integrity sha512-cAS9HONIJgseCDdgRCIHBR4CE/OQXZIRP3FoNx/w+XyjVqK6yQiwCeXpYLfHeEZ6GEQqrA9XUBxifWG9UaJyXA== + dependencies: + formdata-node "^4.1.0" + +"@esri/arcgis-rest-request@^4.1.1": + version "4.1.1" + resolved "https://registry.yarnpkg.com/@esri/arcgis-rest-request/-/arcgis-rest-request-4.1.1.tgz#ba62635bdb733a8a53d6c5ca02eb20ea40be3675" + integrity sha512-7Ipl+PTaRe9GcERXoNxK9Asd93U56fwgFyuVPJ7Qe+IR7RyG8rlhjz7NvzE7J3AJHCIU2gQdVPTJnKYD5E5dTA== + dependencies: + "@esri/arcgis-rest-fetch" "^4.0.0" + "@esri/arcgis-rest-form-data" "^4.0.0" + mitt "^3.0.0" + tslib "^2.3.1" + "@hapi/address@2.x.x": version "2.1.4" resolved "https://registry.yarnpkg.com/@hapi/address/-/address-2.1.4.tgz#5d67ed43f3fd41a69d4b9ff7b56e7c0d1d0a81e5" @@ -9984,6 +10008,11 @@ dashdash@^1.12.0: dependencies: assert-plus "^1.0.0" +data-uri-to-buffer@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-4.0.0.tgz#b5db46aea50f6176428ac05b73be39a57701a64b" + integrity sha512-Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA== + data-urls@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b" @@ -12161,6 +12190,14 @@ fd-slicer@~1.1.0: dependencies: pend "~1.2.0" +fetch-blob@^3.1.2, fetch-blob@^3.1.4: + version "3.2.0" + resolved "https://registry.yarnpkg.com/fetch-blob/-/fetch-blob-3.2.0.tgz#f09b8d4bbd45adc6f0c20b7e787e793e309dcce9" + integrity sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ== + dependencies: + node-domexception "^1.0.0" + web-streams-polyfill "^3.0.3" + fetch-jsonp@^1.2.2: version "1.2.2" resolved "https://registry.yarnpkg.com/fetch-jsonp/-/fetch-jsonp-1.2.2.tgz#c98923191390119a8eae401a9cbe75845230e000" @@ -12547,6 +12584,21 @@ form-data@~2.3.2: combined-stream "^1.0.6" mime-types "^2.1.12" +formdata-node@^4.1.0: + version "4.4.1" + resolved "https://registry.yarnpkg.com/formdata-node/-/formdata-node-4.4.1.tgz#23f6a5cb9cb55315912cbec4ff7b0f59bbd191e2" + integrity sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ== + dependencies: + node-domexception "1.0.0" + web-streams-polyfill "4.0.0-beta.3" + +formdata-polyfill@^4.0.10: + version "4.0.10" + resolved "https://registry.yarnpkg.com/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz#24807c31c9d402e002ab3d8c720144ceb8848423" + integrity sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g== + dependencies: + fetch-blob "^3.1.2" + forwarded@0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" @@ -17198,6 +17250,11 @@ minizlib@^1.3.3: dependencies: minipass "^2.9.0" +mitt@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/mitt/-/mitt-3.0.0.tgz#69ef9bd5c80ff6f57473e8d89326d01c414be0bd" + integrity sha512-7dX2/10ITVyqh4aOSVI9gdape+t9l2/8QxHrFmUXu4EEUpdlxl6RudZUPZoc+zuY2hk1j7XxVroIVIan/pD/SQ== + mixin-deep@^1.2.0: version "1.3.2" resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" @@ -17432,6 +17489,11 @@ node-dir@^0.1.17: dependencies: minimatch "^3.0.2" +node-domexception@1.0.0, node-domexception@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" + integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== + node-fetch@^1.0.1: version "1.7.3" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" @@ -17440,6 +17502,15 @@ node-fetch@^1.0.1: encoding "^0.1.11" is-stream "^1.0.1" +node-fetch@^3.0.0: + version "3.2.10" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-3.2.10.tgz#e8347f94b54ae18b57c9c049ef641cef398a85c8" + integrity sha512-MhuzNwdURnZ1Cp4XTazr69K0BTizsBroX7Zx3UgDSVcZYKF/6p0CBe4EUb/hLqmzVhl0UpYfgRljQ4yxE+iCxA== + dependencies: + data-uri-to-buffer "^4.0.0" + fetch-blob "^3.1.4" + formdata-polyfill "^4.0.10" + node-forge@^0.10.0: version "0.10.0" resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.10.0.tgz#32dea2afb3e9926f02ee5ce8794902691a676bf3" @@ -22497,6 +22568,11 @@ tslib@^2.0.1, tslib@^2.0.3: resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.2.0.tgz#fb2c475977e35e241311ede2693cee1ec6698f5c" integrity sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w== +tslib@^2.3.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.1.tgz#0d0bfbaac2880b91e22df0768e55be9753a5b17e" + integrity sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA== + tslib@~2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.1.0.tgz#da60860f1c2ecaa5703ab7d39bc05b6bf988b97a" @@ -23282,6 +23358,16 @@ wbuf@^1.1.0, wbuf@^1.7.3: dependencies: minimalistic-assert "^1.0.0" +web-streams-polyfill@4.0.0-beta.3: + version "4.0.0-beta.3" + resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz#2898486b74f5156095e473efe989dcf185047a38" + integrity sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug== + +web-streams-polyfill@^3.0.3: + version "3.2.1" + resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6" + integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q== + webidl-conversions@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" From 2c59fadf65193184c47441e2b10db156167ff24a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Sandvik?= Date: Fri, 11 Nov 2022 21:02:13 +0100 Subject: [PATCH 02/63] Feature service layer --- i18n/en.pot | 7 +- package.json | 3 + src/components/map/Map.js | 14 +++- src/components/map/layers/FeatureService.js | 78 +++++++++++++++++++++ src/loaders/featureServiceLoader.js | 34 +++++---- yarn.lock | 28 +++++++- 6 files changed, 148 insertions(+), 16 deletions(-) create mode 100644 src/components/map/layers/FeatureService.js diff --git a/i18n/en.pot b/i18n/en.pot index 405797c2f..5f0a9fbe3 100644 --- a/i18n/en.pot +++ b/i18n/en.pot @@ -5,8 +5,8 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -"POT-Creation-Date: 2022-08-30T15:47:38.891Z\n" -"PO-Revision-Date: 2022-08-30T15:47:38.891Z\n" +"POT-Creation-Date: 2022-11-11T18:46:54.037Z\n" +"PO-Revision-Date: 2022-11-11T18:46:54.037Z\n" msgid "Maps" msgstr "" @@ -182,6 +182,9 @@ msgstr "" msgid "Add new {{name}} layer" msgstr "" +msgid "{{name}} layer" +msgstr "" + msgid "Update layer" msgstr "" diff --git a/package.json b/package.json index a9916ef17..f50823af6 100644 --- a/package.json +++ b/package.json @@ -51,7 +51,10 @@ "@dhis2/d2-ui-org-unit-tree": "^7.4.0", "@dhis2/maps-gl": "^3.5.2", "@dhis2/ui": "^8.4.13", + "@esri/arcgis-rest-feature-service": "^4.0.3", + "@esri/arcgis-rest-portal": "^4.1.0", "@esri/arcgis-rest-request": "^4.1.1", + "@terraformer/arcgis": "^2.1.2", "abortcontroller-polyfill": "^1.7.3", "array-move": "^4.0.0", "classnames": "^2.3.1", diff --git a/src/components/map/Map.js b/src/components/map/Map.js index b543cbca1..097c6a91c 100644 --- a/src/components/map/Map.js +++ b/src/components/map/Map.js @@ -10,6 +10,7 @@ import ThematicLayer from './layers/ThematicLayer'; import OrgUnitLayer from './layers/OrgUnitLayer'; import EarthEngineLayer from './layers/earthEngine/EarthEngineLayer'; import ExternalLayer from './layers/ExternalLayer'; +import FeatureService from './layers/FeatureService'; import Popup from './Popup'; import { controlTypes } from './MapApi'; import { onFullscreenChange } from '../../util/map'; @@ -23,6 +24,7 @@ const layerType = { orgUnit: OrgUnitLayer, earthEngine: EarthEngineLayer, external: ExternalLayer, + featureService: FeatureService, }; class Map extends Component { @@ -152,7 +154,17 @@ class Map extends Component { {map && ( {overlays.map((config, index) => { - const Overlay = layerType[config.layer] || Layer; + let type = config.layer; + + if ( + type === 'external' && + config.config.type === 'featureService' + ) { + type = config.config.type; + } + + let Overlay = layerType[type] || Layer; + const highlight = feature && feature.layerId === config.id ? feature diff --git a/src/components/map/layers/FeatureService.js b/src/components/map/layers/FeatureService.js new file mode 100644 index 000000000..93680ed14 --- /dev/null +++ b/src/components/map/layers/FeatureService.js @@ -0,0 +1,78 @@ +import Layer from './Layer'; +import { GEOJSON_LAYER } from '../../../constants/layers'; + +export default class ExternalLayer extends Layer { + createLayer() { + const { + id, + index, + opacity, + isVisible, + data, + feature, + /* config,*/ + } = this.props; + const { map } = this.context; + + // console.log('FeatureService', feature); + + const group = map.createLayer({ + type: 'group', + id, + index, + opacity, + isVisible, + }); + + group.addLayer({ + type: GEOJSON_LAYER, + id, + index, + opacity, + isVisible, + data: [feature], + // hoverLabel: '{name}', + style: { + color: 'transparent', + strokeColor: '#333', + }, + // onClick: this.onFeatureClick.bind(this), + // onRightClick: this.onFeatureRightClick.bind(this), + }); + + group.addLayer({ + type: GEOJSON_LAYER, + id, + index, + opacity, + isVisible, + data, + // hoverLabel: '{name}', + style: { + color: 'red', + // strokeColor: organisationUnitColor, + }, + // onClick: this.onFeatureClick.bind(this), + // onRightClick: this.onFeatureRightClick.bind(this), + }); + + this.layer = group; + + // map.addLayer(this.layer); + + /* + this.layer = map.createLayer({ + id, + index, + opacity, + isVisible, + ...config, + }); + */ + + map.addLayer(this.layer); + + // Fit map to layer bounds once (when first created) + this.fitBoundsOnce(); + } +} diff --git a/src/loaders/featureServiceLoader.js b/src/loaders/featureServiceLoader.js index 6174a4771..fe56c9aa1 100644 --- a/src/loaders/featureServiceLoader.js +++ b/src/loaders/featureServiceLoader.js @@ -1,4 +1,6 @@ import { getInstance as getD2 } from 'd2'; +import { queryFeatures } from '@esri/arcgis-rest-feature-service'; +import { geojsonToArcGIS } from '@terraformer/arcgis'; import { getOrgUnitsFromRows } from '../util/analytics'; import { toGeoJson } from '../util/map'; import { getDisplayProperty } from '../util/helpers'; @@ -6,39 +8,47 @@ import { EXTERNAL_LAYER } from '../constants/layers'; const featureServiceLoader = async layer => { const { config, rows } = layer; - const { name } = config; + const { name, url, where } = config; const legend = { title: name }; const orgUnits = getOrgUnitsFromRows(rows); const orgUnitParams = orgUnits.map(item => item.id); const d2 = await getD2(); const displayProperty = getDisplayProperty(d2).toUpperCase(); - const featuresRequest = d2.geoFeatures + const orgUnitsRequest = d2.geoFeatures .byOrgUnit(orgUnitParams) .displayProperty(displayProperty); - let features; - let geometry; + let orgUnitFeatures; + let feature; try { - features = await featuresRequest.getAll().then(toGeoJson); + orgUnitFeatures = await orgUnitsRequest.getAll().then(toGeoJson); } catch (error) { // console.log(error); // TODO } - if (features.length) { - geometry = features[0].geometry; + if (orgUnitFeatures.length) { + feature = orgUnitFeatures[0]; } - // console.log('geometry', geometry); + const { features /*, properties */ } = await queryFeatures({ + url, + where, + geometry: geojsonToArcGIS(feature.geometry), + geometryType: 'esriGeometryPolygon', + f: 'geojson', + maxUrlLength: 2048, + /* authentication, */ + }); + + // console.log('loader', features, properties); return { ...layer, layer: EXTERNAL_LAYER, name, legend, - config: { - ...config, - geometry, - }, + data: features, + feature, isLoaded: true, isExpanded: true, isVisible: true, diff --git a/yarn.lock b/yarn.lock index 8aa9c81a4..b1c94e7cb 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4700,6 +4700,13 @@ minimatch "^3.1.2" strip-json-comments "^3.1.1" +"@esri/arcgis-rest-feature-service@^4.0.3": + version "4.0.3" + resolved "https://registry.yarnpkg.com/@esri/arcgis-rest-feature-service/-/arcgis-rest-feature-service-4.0.3.tgz#ae6bd44ea2bbea63965a94b2d95e3b7569532900" + integrity sha512-VHvga97LNIrQHuLk+pBfXEtJkl1ItPIQSXZ78lXohCA5SIwMZuqLuLzgRNABb/WvbuRLsv7pzBwia6yy5o97BA== + dependencies: + tslib "^2.3.0" + "@esri/arcgis-rest-fetch@^4.0.0": version "4.0.0" resolved "https://registry.yarnpkg.com/@esri/arcgis-rest-fetch/-/arcgis-rest-fetch-4.0.0.tgz#aa5bf2bedccc168ea52433eb9c56b452b450500d" @@ -4714,6 +4721,13 @@ dependencies: formdata-node "^4.1.0" +"@esri/arcgis-rest-portal@^4.1.0": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@esri/arcgis-rest-portal/-/arcgis-rest-portal-4.1.0.tgz#bcf85f40156bc6d802de1be32aab3a17769de8b7" + integrity sha512-atNuccNtZ5iMzPFISDZBLdovcMVpSR43jMqlrOCa53DZ0f5dfAg9hzS3riVoB2uNAqLJjcs5QAA4zYj4pWqfSg== + dependencies: + tslib "^2.3.0" + "@esri/arcgis-rest-request@^4.1.1": version "4.1.1" resolved "https://registry.yarnpkg.com/@esri/arcgis-rest-request/-/arcgis-rest-request-4.1.1.tgz#ba62635bdb733a8a53d6c5ca02eb20ea40be3675" @@ -5663,6 +5677,18 @@ dependencies: defer-to-connect "^1.0.1" +"@terraformer/arcgis@^2.1.2": + version "2.1.2" + resolved "https://registry.yarnpkg.com/@terraformer/arcgis/-/arcgis-2.1.2.tgz#9e05cc5e0ddc400e532f6ccb1d91bdf420e4a756" + integrity sha512-IvdfqehcNAUtKU1OFMKwPT8EvdKlVFZ7q7ZKzkIF8XzYZIVsZLuXuOS1UBdRh5u/o+X5Gax7jiZhD8U/4TV+Jw== + dependencies: + "@terraformer/common" "^2.1.2" + +"@terraformer/common@^2.1.2": + version "2.1.2" + resolved "https://registry.yarnpkg.com/@terraformer/common/-/common-2.1.2.tgz#7bf83f81f1c3a99069c714c044004f9707f00c97" + integrity sha512-cwPdTFzIpekZhZRrgDEkqLKNPoqbyCBQHiemaovnGIeUx0Pl336MY/eCxzJ5zXkrQLVo9zPalq/vYW5HnyKevQ== + "@testing-library/dom@^8.0.0": version "8.11.2" resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-8.11.2.tgz#fc110c665a066c2287be765e4a35ba8dad737015" @@ -22568,7 +22594,7 @@ tslib@^2.0.1, tslib@^2.0.3: resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.2.0.tgz#fb2c475977e35e241311ede2693cee1ec6698f5c" integrity sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w== -tslib@^2.3.1: +tslib@^2.3.0, tslib@^2.3.1: version "2.4.1" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.1.tgz#0d0bfbaac2880b91e22df0768e55be9753a5b17e" integrity sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA== From 8565b700a67aac1ee7c422eced3e13dae7d3c391 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Sandvik?= Date: Mon, 14 Nov 2022 16:40:10 +0100 Subject: [PATCH 03/63] feat: feature profile --- src/actions/feature.js | 9 ++ src/components/app/App.js | 2 + src/components/datatable/DataTable.js | 66 ++++++++----- .../datatable/FeatureServiceColumns.js | 52 +++++++++++ .../edit/external/FeatureService.js | 12 ++- src/components/feature/FeatureProfile.js | 57 ++++++++++++ .../feature/styles/FeatureProfile.module.css | 93 +++++++++++++++++++ .../interpretations/InterpretationsPanel.js | 5 +- .../interpretations/InterpretationsToggle.js | 5 +- src/components/layers/overlays/OverlayCard.js | 9 +- src/components/map/layers/FeatureService.js | 24 ++++- src/constants/actionTypes.js | 2 + src/constants/layers.js | 1 + src/loaders/featureServiceLoader.js | 6 +- src/reducers/featureProfile.js | 20 ++++ src/reducers/index.js | 2 + src/reducers/orgUnitProfile.js | 1 + src/reducers/ui.js | 2 + 18 files changed, 332 insertions(+), 36 deletions(-) create mode 100644 src/components/datatable/FeatureServiceColumns.js create mode 100644 src/components/feature/FeatureProfile.js create mode 100644 src/components/feature/styles/FeatureProfile.module.css create mode 100644 src/reducers/featureProfile.js diff --git a/src/actions/feature.js b/src/actions/feature.js index 9fd616f58..77b9c7f00 100644 --- a/src/actions/feature.js +++ b/src/actions/feature.js @@ -4,3 +4,12 @@ export const highlightFeature = payload => ({ type: types.FEATURE_HIGHLIGHT, payload, }); + +export const setFeatureProfile = properties => ({ + type: types.FEATURE_PROFILE_SET, + payload: properties, +}); + +export const closeFeatureProfile = () => ({ + type: types.FEATURE_PROFILE_CLOSE, +}); diff --git a/src/components/app/App.js b/src/components/app/App.js index 93514c267..26ecee78c 100644 --- a/src/components/app/App.js +++ b/src/components/app/App.js @@ -17,6 +17,7 @@ import BottomPanel from '../datatable/BottomPanel'; import LayerEdit from '../edit/LayerEdit'; import ContextMenu from '../map/ContextMenu'; import OrgUnitProfile from '../orgunits/OrgUnitProfile'; +import FeatureProfile from '../feature/FeatureProfile'; import AlertStack from '../alerts/AlertStack'; import InterpretationsPanel from '../interpretations/InterpretationsPanel'; import DataDownloadDialog from '../layers/download/DataDownloadDialog'; @@ -95,6 +96,7 @@ const App = ({ + ); diff --git a/src/components/datatable/DataTable.js b/src/components/datatable/DataTable.js index 37263223f..1a1a171c0 100644 --- a/src/components/datatable/DataTable.js +++ b/src/components/datatable/DataTable.js @@ -9,6 +9,7 @@ import { debounce } from 'lodash/fp'; import ColumnHeader from './ColumnHeader'; import ColorCell from './ColorCell'; import EarthEngineColumns from './EarthEngineColumns'; +import FeatureServiceColumns from './FeatureServiceColumns'; import { setOrgUnitProfile } from '../../actions/orgUnits'; import { highlightFeature } from '../../actions/feature'; import { closeDataTable } from '../../actions/dataTable'; @@ -20,6 +21,8 @@ import { THEMATIC_LAYER, ORG_UNIT_LAYER, EARTH_ENGINE_LAYER, + EXTERNAL_LAYER, + FEATURE_SERVICE, } from '../../constants/layers'; import { numberValueTypes } from '../../constants/valueTypes'; import styles from './styles/DataTable.module.css'; @@ -191,12 +194,16 @@ class DataTable extends Component { serverCluster, aggregationType, legend, + fields, } = layer; const isThematic = layerType === THEMATIC_LAYER; const isOrgUnit = layerType === ORG_UNIT_LAYER; const isEvent = layerType === EVENT_LAYER; const isEarthEngine = layerType === EARTH_ENGINE_LAYER; + const isFeatureService = + layerType === EXTERNAL_LAYER && + layer.config?.type === FEATURE_SERVICE; const isLoading = isEarthEngine && aggregationType?.length && !aggregations; @@ -228,22 +235,28 @@ class DataTable extends Component { width={72} className="right" /> - ( - - )} - /> - ( - - )} - /> + {!isFeatureService && ( + ( + + )} + /> + )} + {!isFeatureService && ( + ( + + )} + /> + )} {isEvent && ( )} - ( - - )} - /> + {!isFeatureService && ( + ( + + )} + /> + )} {(isThematic || styleDataItem) && ( {isLoading === true && (
diff --git a/src/components/datatable/FeatureServiceColumns.js b/src/components/datatable/FeatureServiceColumns.js new file mode 100644 index 000000000..70eb12484 --- /dev/null +++ b/src/components/datatable/FeatureServiceColumns.js @@ -0,0 +1,52 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import { Column } from 'react-virtualized'; +import ColumnHeader from './ColumnHeader'; +import { numberPrecision } from '../../util/numbers'; +import { getPrecision } from '../../util/earthEngine'; + +const FeatureServiceColumns = ({ fields, data }) => { + // console.log('FeatureServiceColumns', fields, data); + + if (!fields || !data) { + return null; + } + + // TODO: Remove slice + return fields.slice(0, 10).map(({ name, type }) => { + const isString = type.includes('String'); + const precision = getPrecision(data.map(d => d[name])); + const valueFormat = numberPrecision(precision); + + return ( + ( + + )} + cellRenderer={ + !isString + ? d => + d.cellData !== undefined + ? valueFormat(d.cellData) + : '' + : undefined + } + /> + ); + }); +}; + +FeatureServiceColumns.propTypes = { + fields: PropTypes.array, + data: PropTypes.array, +}; + +export default FeatureServiceColumns; diff --git a/src/components/edit/external/FeatureService.js b/src/components/edit/external/FeatureService.js index 5c1c37652..f2af7e6df 100644 --- a/src/components/edit/external/FeatureService.js +++ b/src/components/edit/external/FeatureService.js @@ -3,7 +3,7 @@ import PropTypes from 'prop-types'; import { connect } from 'react-redux'; import i18n from '@dhis2/d2-i18n'; import { request } from '@esri/arcgis-rest-request'; -import { Tab, Tabs } from '../../core'; +import { Help, Tab, Tabs } from '../../core'; import OrgUnitTree from '../../orgunits/OrgUnitTree'; import { toggleOrgUnit } from '../../../actions/layerEdit'; import { getOrgUnitNodesFromRows } from '../../../util/analytics'; @@ -16,7 +16,7 @@ const FeatureServiceDialog = ({ validateLayer, onLayerValidation, }) => { - const [tab, setTab] = useState('orgunits'); + const [tab, setTab] = useState('data'); const [metadata, setMetadata] = useState(); const { url } = config; @@ -40,10 +40,18 @@ const FeatureServiceDialog = ({ return (
+ {i18n.t('Data')} {i18n.t('Organisation Units')} {i18n.t('Style')}
+ {tab === 'data' && ( +
+ + <>{metadata &&

{metadata.description}

} +
+
+ )} {tab === 'orgunits' && (
{ + if (!fields || !data) { + return null; + } + + return ( + +
+ {i18n.t('Feature profile')} + + + +
+
+
+
+ + + {fields.map(({ name }) => ( + + + + + ))} + +
{name}{data[name]}
+
+
+
+
+ ); +}; + +FeatureProfile.propTypes = { + fields: PropTypes.array, + data: PropTypes.object, + closeFeatureProfile: PropTypes.func.isRequired, +}; + +export default connect( + ({ featureProfile }) => ({ + ...featureProfile, + }), + { closeFeatureProfile } +)(FeatureProfile); diff --git a/src/components/feature/styles/FeatureProfile.module.css b/src/components/feature/styles/FeatureProfile.module.css new file mode 100644 index 000000000..e6fbc5145 --- /dev/null +++ b/src/components/feature/styles/FeatureProfile.module.css @@ -0,0 +1,93 @@ +.drawer { + background-color: #fff; + overflow-y: hidden; +} + +.header { + position: relative; + background-color: var(--colors-grey300); + line-height: 44px; + padding-left: var(--spacers-dp16); + font-size: 16px; + font-weight: 500; + color: var(--colors-grey900); +} + +.close { + position: absolute; + top: 7px; + right: var(--spacers-dp4); + cursor: pointer; +} + +.close svg { + margin: auto; + color: var(--colors-grey700); +} + +.content { + height: calc(100% - 44px); + overflow-y: auto; + padding: var(--spacers-dp16); +} + +.orgUnitData { + margin-top: var(--spacers-dp16); +} + +.periodSelect label span { + display: none; +} + +.dataTable { + position: relative; +} + +.dataTable table { + border-collapse: collapse; + width: 100%; + font-size: 14px; +} + +.dataTable tr { + border-bottom: 1px solid var(--colors-grey400); +} + +.dataTable th { + text-align: left; + color: var(--colors-grey600); + font-weight: normal; + padding: 10px 8px 9px 0; +} + +.dataTable td { + text-align: right; + padding: 10px 0 9px; + white-space: nowrap; +} + +.loadingMask { + position: absolute; + height: 100%; + width: 100%; + background-color: #fff; + bottom: 0; + left: 0; + right: 0; + top: 0; + opacity: 0.7; + display: flex; + justify-content: center; + align-items: center; +} + +.loadingMask > div { + opacity: 1; +} + +.noData { + font-style: italic; + padding-top: var(--spacers-dp8); + font-size: 14px; + color: var(--colors-grey900); +} diff --git a/src/components/interpretations/InterpretationsPanel.js b/src/components/interpretations/InterpretationsPanel.js index 3cc4f60a8..2f12bfbc0 100644 --- a/src/components/interpretations/InterpretationsPanel.js +++ b/src/components/interpretations/InterpretationsPanel.js @@ -101,7 +101,10 @@ InterpretationsPanel.propTypes = { export default connect( state => ({ map: state.map, - isPanelOpen: state.ui.rightPanelOpen && !state.orgUnitProfile, + isPanelOpen: + state.ui.rightPanelOpen && + !state.orgUnitProfile && + !state.featureProfile, interpretationId: state.interpretation.id, }), { diff --git a/src/components/interpretations/InterpretationsToggle.js b/src/components/interpretations/InterpretationsToggle.js index fd330d537..8de46426e 100644 --- a/src/components/interpretations/InterpretationsToggle.js +++ b/src/components/interpretations/InterpretationsToggle.js @@ -44,7 +44,10 @@ InterpretationsToggle.propTypes = { export default connect( state => ({ - interpretationsOpen: state.ui.rightPanelOpen && !state.orgUnitProfile, + interpretationsOpen: + state.ui.rightPanelOpen && + !state.orgUnitProfile && + !state.featureProfile, interpretationsEnabled: Boolean(state.map.id), }), { diff --git a/src/components/layers/overlays/OverlayCard.js b/src/components/layers/overlays/OverlayCard.js index aeffbead6..5aa832b08 100644 --- a/src/components/layers/overlays/OverlayCard.js +++ b/src/components/layers/overlays/OverlayCard.js @@ -26,6 +26,7 @@ import { DATA_TABLE_LAYER_TYPES, OPEN_AS_LAYER_TYPES, EXTERNAL_LAYER, + FEATURE_SERVICE, } from '../../../constants/layers'; import styles from './styles/OverlayCard.module.css'; @@ -56,9 +57,11 @@ const OverlayCard = ({ isLoaded, } = layer; - const canEdit = - layerType !== EXTERNAL_LAYER || config.type === 'featureService'; - const canToggleDataTable = DATA_TABLE_LAYER_TYPES.includes(layerType); + const isFeatureService = + layerType === EXTERNAL_LAYER && config?.type === FEATURE_SERVICE; + const canEdit = layerType !== EXTERNAL_LAYER || isFeatureService; + const canToggleDataTable = + DATA_TABLE_LAYER_TYPES.includes(layerType) || isFeatureService; const canDownload = DOWNLOADABLE_LAYER_TYPES.includes(layerType); const canOpenAs = OPEN_AS_LAYER_TYPES.includes(layerType); diff --git a/src/components/map/layers/FeatureService.js b/src/components/map/layers/FeatureService.js index 93680ed14..03d360553 100644 --- a/src/components/map/layers/FeatureService.js +++ b/src/components/map/layers/FeatureService.js @@ -1,7 +1,10 @@ +import { connect } from 'react-redux'; // TODO: not available in plugin import Layer from './Layer'; +import { filterData } from '../../../util/filter'; +import { setFeatureProfile } from '../../../actions/feature'; // TODO: not available in plugin import { GEOJSON_LAYER } from '../../../constants/layers'; -export default class ExternalLayer extends Layer { +class FeatureService extends Layer { createLayer() { const { id, @@ -9,6 +12,7 @@ export default class ExternalLayer extends Layer { opacity, isVisible, data, + dataFilters, feature, /* config,*/ } = this.props; @@ -16,6 +20,8 @@ export default class ExternalLayer extends Layer { // console.log('FeatureService', feature); + const filteredData = filterData(data, dataFilters); + const group = map.createLayer({ type: 'group', id, @@ -46,13 +52,13 @@ export default class ExternalLayer extends Layer { index, opacity, isVisible, - data, + data: filteredData, // hoverLabel: '{name}', style: { color: 'red', // strokeColor: organisationUnitColor, }, - // onClick: this.onFeatureClick.bind(this), + onClick: this.onFeatureClick.bind(this), // onRightClick: this.onFeatureRightClick.bind(this), }); @@ -75,4 +81,16 @@ export default class ExternalLayer extends Layer { // Fit map to layer bounds once (when first created) this.fitBoundsOnce(); } + + onFeatureClick(evt) { + // console.log('click', evt.feature, this.props.fields); + this.props.setFeatureProfile({ + fields: this.props.fields, + data: evt.feature.properties, + }); + } } + +export default connect(null, { + setFeatureProfile, +})(FeatureService); diff --git a/src/constants/actionTypes.js b/src/constants/actionTypes.js index b5686fb35..9683b5b33 100644 --- a/src/constants/actionTypes.js +++ b/src/constants/actionTypes.js @@ -284,6 +284,8 @@ export const ANALYTICAL_OBJECT_CLEAR = 'ANALYTICAL_OBJECT_CLEAR'; /* FEATURE */ export const FEATURE_HIGHLIGHT = 'FEATURE_HIGHLIGHT'; +export const FEATURE_PROFILE_SET = 'FEATURE_PROFILE_SET'; +export const FEATURE_PROFILE_CLOSE = 'FEATURE_PROFILE_CLOSE'; /* AGGREGATIONS */ export const AGGREGATIONS_SET = 'AGGREGATIONS_SET'; diff --git a/src/constants/layers.js b/src/constants/layers.js index d79b121fe..9d5aa88a0 100644 --- a/src/constants/layers.js +++ b/src/constants/layers.js @@ -16,6 +16,7 @@ export const EARTH_ENGINE_LAYER = 'earthEngine'; export const TRACKED_ENTITY_LAYER = 'trackedEntity'; export const GEOJSON_LAYER = 'geoJson'; export const GROUP_LAYER = 'group'; +export const FEATURE_SERVICE = 'featureService'; export const DOWNLOADABLE_LAYER_TYPES = [ FACILITY_LAYER, diff --git a/src/loaders/featureServiceLoader.js b/src/loaders/featureServiceLoader.js index fe56c9aa1..b7b6fa301 100644 --- a/src/loaders/featureServiceLoader.js +++ b/src/loaders/featureServiceLoader.js @@ -1,4 +1,5 @@ import { getInstance as getD2 } from 'd2'; +import { request } from '@esri/arcgis-rest-request'; import { queryFeatures } from '@esri/arcgis-rest-feature-service'; import { geojsonToArcGIS } from '@terraformer/arcgis'; import { getOrgUnitsFromRows } from '../util/analytics'; @@ -30,6 +31,8 @@ const featureServiceLoader = async layer => { feature = orgUnitFeatures[0]; } + const metadata = await request(url); + const { features /*, properties */ } = await queryFeatures({ url, where, @@ -40,14 +43,13 @@ const featureServiceLoader = async layer => { /* authentication, */ }); - // console.log('loader', features, properties); - return { ...layer, layer: EXTERNAL_LAYER, name, legend, data: features, + fields: metadata.fields, feature, isLoaded: true, isExpanded: true, diff --git a/src/reducers/featureProfile.js b/src/reducers/featureProfile.js new file mode 100644 index 000000000..f05e689e0 --- /dev/null +++ b/src/reducers/featureProfile.js @@ -0,0 +1,20 @@ +import * as types from '../constants/actionTypes'; + +const featureProfile = (state = null, action) => { + switch (action.type) { + case types.FEATURE_PROFILE_SET: + return action.payload; + + case types.FEATURE_PROFILE_CLOSE: + case types.ORGANISATION_UNIT_PROFILE_SET: + case types.INTERPRETATIONS_PANEL_OPEN: + case types.MAP_NEW: + case types.MAP_SET: + return null; + + default: + return state; + } +}; + +export default featureProfile; diff --git a/src/reducers/index.js b/src/reducers/index.js index e627d2b11..e1cbbb00b 100644 --- a/src/reducers/index.js +++ b/src/reducers/index.js @@ -34,6 +34,7 @@ import ui from './ui'; import trackedEntityTypes from './trackedEntityTypes'; import dataDownload from './dataDownload'; import feature from './feature'; +import featureProfile from './featureProfile'; export default combineReducers({ aggregations, @@ -71,4 +72,5 @@ export default combineReducers({ trackedEntityTypes, dataDownload, feature, + featureProfile, }); diff --git a/src/reducers/orgUnitProfile.js b/src/reducers/orgUnitProfile.js index 3da32a317..1e34cd39c 100644 --- a/src/reducers/orgUnitProfile.js +++ b/src/reducers/orgUnitProfile.js @@ -6,6 +6,7 @@ const orgUnitProfile = (state = null, action) => { return action.payload; case types.ORGANISATION_UNIT_PROFILE_CLOSE: + case types.FEATURE_PROFILE_SET: case types.INTERPRETATIONS_PANEL_OPEN: case types.MAP_NEW: case types.MAP_SET: diff --git a/src/reducers/ui.js b/src/reducers/ui.js index d33eea6a7..3827f3131 100644 --- a/src/reducers/ui.js +++ b/src/reducers/ui.js @@ -32,6 +32,7 @@ const ui = (state = defaultState, action) => { case types.INTERPRETATIONS_PANEL_OPEN: case types.ORGANISATION_UNIT_PROFILE_SET: + case types.FEATURE_PROFILE_SET: return { ...state, rightPanelOpen: true, @@ -39,6 +40,7 @@ const ui = (state = defaultState, action) => { case types.INTERPRETATIONS_PANEL_CLOSE: case types.ORGANISATION_UNIT_PROFILE_CLOSE: + case types.FEATURE_PROFILE_CLOSE: case types.MAP_NEW: case types.MAP_SET: return { From 8396e27d36e71c54b033ef100506c007fab333c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Sandvik?= Date: Mon, 14 Nov 2022 17:13:20 +0100 Subject: [PATCH 04/63] chore: refactor --- src/components/datatable/DataTable.js | 5 +---- src/components/layers/overlays/AddLayerPopover.js | 6 +----- src/components/layers/overlays/OverlayCard.js | 9 ++------- src/components/map/Map.js | 12 +----------- src/constants/layers.js | 2 ++ src/loaders/externalLoader.js | 5 ----- src/loaders/featureServiceLoader.js | 5 +---- src/loaders/layers.js | 2 ++ src/reducers/layers.js | 10 ++++++++++ 9 files changed, 20 insertions(+), 36 deletions(-) diff --git a/src/components/datatable/DataTable.js b/src/components/datatable/DataTable.js index 1a1a171c0..3eb1623b6 100644 --- a/src/components/datatable/DataTable.js +++ b/src/components/datatable/DataTable.js @@ -21,7 +21,6 @@ import { THEMATIC_LAYER, ORG_UNIT_LAYER, EARTH_ENGINE_LAYER, - EXTERNAL_LAYER, FEATURE_SERVICE, } from '../../constants/layers'; import { numberValueTypes } from '../../constants/valueTypes'; @@ -201,9 +200,7 @@ class DataTable extends Component { const isOrgUnit = layerType === ORG_UNIT_LAYER; const isEvent = layerType === EVENT_LAYER; const isEarthEngine = layerType === EARTH_ENGINE_LAYER; - const isFeatureService = - layerType === EXTERNAL_LAYER && - layer.config?.type === FEATURE_SERVICE; + const isFeatureService = layerType === FEATURE_SERVICE; const isLoading = isEarthEngine && aggregationType?.length && !aggregations; diff --git a/src/components/layers/overlays/AddLayerPopover.js b/src/components/layers/overlays/AddLayerPopover.js index 0ab02d018..680e31091 100644 --- a/src/components/layers/overlays/AddLayerPopover.js +++ b/src/components/layers/overlays/AddLayerPopover.js @@ -17,11 +17,7 @@ const AddLayerPopover = ({ }) => { const onLayerSelect = layer => { const config = { ...layer }; - const canEdit = - layer.layer !== EXTERNAL_LAYER || - layer.config.type === 'featureService'; - - canEdit ? editLayer(config) : loadLayer(config); + layer.layer === EXTERNAL_LAYER ? loadLayer(config) : editLayer(config); onClose(); }; diff --git a/src/components/layers/overlays/OverlayCard.js b/src/components/layers/overlays/OverlayCard.js index 5aa832b08..f63d6a04f 100644 --- a/src/components/layers/overlays/OverlayCard.js +++ b/src/components/layers/overlays/OverlayCard.js @@ -26,7 +26,6 @@ import { DATA_TABLE_LAYER_TYPES, OPEN_AS_LAYER_TYPES, EXTERNAL_LAYER, - FEATURE_SERVICE, } from '../../../constants/layers'; import styles from './styles/OverlayCard.module.css'; @@ -53,15 +52,11 @@ const OverlayCard = ({ opacity, isVisible, layer: layerType, - config = {}, isLoaded, } = layer; - const isFeatureService = - layerType === EXTERNAL_LAYER && config?.type === FEATURE_SERVICE; - const canEdit = layerType !== EXTERNAL_LAYER || isFeatureService; - const canToggleDataTable = - DATA_TABLE_LAYER_TYPES.includes(layerType) || isFeatureService; + const canEdit = layerType !== EXTERNAL_LAYER; + const canToggleDataTable = DATA_TABLE_LAYER_TYPES.includes(layerType); const canDownload = DOWNLOADABLE_LAYER_TYPES.includes(layerType); const canOpenAs = OPEN_AS_LAYER_TYPES.includes(layerType); diff --git a/src/components/map/Map.js b/src/components/map/Map.js index 097c6a91c..bb5f6e8b7 100644 --- a/src/components/map/Map.js +++ b/src/components/map/Map.js @@ -154,17 +154,7 @@ class Map extends Component { {map && ( {overlays.map((config, index) => { - let type = config.layer; - - if ( - type === 'external' && - config.config.type === 'featureService' - ) { - type = config.config.type; - } - - let Overlay = layerType[type] || Layer; - + const Overlay = layerType[config.layer] || Layer; const highlight = feature && feature.layerId === config.id ? feature diff --git a/src/constants/layers.js b/src/constants/layers.js index 9d5aa88a0..c72ad2ab5 100644 --- a/src/constants/layers.js +++ b/src/constants/layers.js @@ -24,6 +24,7 @@ export const DOWNLOADABLE_LAYER_TYPES = [ ORG_UNIT_LAYER, EVENT_LAYER, EARTH_ENGINE_LAYER, + FEATURE_SERVICE, ]; export const DATA_TABLE_LAYER_TYPES = [ @@ -32,6 +33,7 @@ export const DATA_TABLE_LAYER_TYPES = [ ORG_UNIT_LAYER, EVENT_LAYER, EARTH_ENGINE_LAYER, + FEATURE_SERVICE, ]; export const OPEN_AS_LAYER_TYPES = [THEMATIC_LAYER]; diff --git a/src/loaders/externalLoader.js b/src/loaders/externalLoader.js index d2d83d0cb..933562c61 100644 --- a/src/loaders/externalLoader.js +++ b/src/loaders/externalLoader.js @@ -1,5 +1,4 @@ import { parseLayerConfig } from '../util/external'; -import featureServiceLoader from './featureServiceLoader'; import { loadLegendSet, getPredefinedLegendItems } from '../util/legend'; import { EXTERNAL_LAYER } from '../constants/layers'; @@ -13,10 +12,6 @@ const externalLoader = async layer => { delete layer.id; } - if (config.type === 'featureService') { - return featureServiceLoader({ ...layer, config }); - } - const { name, legendSet, legendSetUrl } = config; const legend = { title: name }; diff --git a/src/loaders/featureServiceLoader.js b/src/loaders/featureServiceLoader.js index b7b6fa301..642f99a75 100644 --- a/src/loaders/featureServiceLoader.js +++ b/src/loaders/featureServiceLoader.js @@ -5,11 +5,9 @@ import { geojsonToArcGIS } from '@terraformer/arcgis'; import { getOrgUnitsFromRows } from '../util/analytics'; import { toGeoJson } from '../util/map'; import { getDisplayProperty } from '../util/helpers'; -import { EXTERNAL_LAYER } from '../constants/layers'; const featureServiceLoader = async layer => { - const { config, rows } = layer; - const { name, url, where } = config; + const { rows, name, url, where } = layer; const legend = { title: name }; const orgUnits = getOrgUnitsFromRows(rows); const orgUnitParams = orgUnits.map(item => item.id); @@ -45,7 +43,6 @@ const featureServiceLoader = async layer => { return { ...layer, - layer: EXTERNAL_LAYER, name, legend, data: features, diff --git a/src/loaders/layers.js b/src/loaders/layers.js index 432a7e4c3..648d4788a 100644 --- a/src/loaders/layers.js +++ b/src/loaders/layers.js @@ -5,6 +5,7 @@ import thematicLoader from './thematicLoader'; import orgUnitLoader from './orgUnitLoader'; import earthEngineLoader from './earthEngineLoader'; import externalLoader from './externalLoader'; +import featureServiceLoader from './featureServiceLoader'; const layerType = { event: eventLoader, @@ -14,6 +15,7 @@ const layerType = { orgUnit: orgUnitLoader, earthEngine: earthEngineLoader, external: externalLoader, + featureService: featureServiceLoader, }; export const fetchLayer = config => { diff --git a/src/reducers/layers.js b/src/reducers/layers.js index 2aef2ad08..7c7d6d8ed 100644 --- a/src/reducers/layers.js +++ b/src/reducers/layers.js @@ -42,6 +42,7 @@ const defaultLayers = () => [ opacity: 1, }, ...earthEngineLayers().filter(l => !l.legacy), + /* { layer: 'external', type: 'Settlement extents', @@ -53,6 +54,15 @@ const defaultLayers = () => [ 'https://services3.arcgis.com/BU6Aadhn6tbBEdyk/ArcGIS/rest/services/GRID3_Sierra_Leone_Settlement_Extents/FeatureServer/0', }, }, + */ + { + external: true, + layer: 'featureService', + type: 'Settlement extents', + opacity: 1, + url: + 'https://services3.arcgis.com/BU6Aadhn6tbBEdyk/ArcGIS/rest/services/GRID3_Sierra_Leone_Settlement_Extents/FeatureServer/0', + }, ]; const layers = (state, action) => { From 00778e8f914c1f1cc9e98d53bc9b68f2b9f00567 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Sandvik?= Date: Mon, 14 Nov 2022 17:24:25 +0100 Subject: [PATCH 05/63] chore: refactor --- src/components/edit/LayerEdit.js | 4 +-- .../FeatureServiceDialog.js} | 8 ++---- .../edit/external/ExternalDialog.js | 27 ------------------- src/reducers/layers.js | 1 + 4 files changed, 5 insertions(+), 35 deletions(-) rename src/components/edit/{external/FeatureService.js => arcgis/FeatureServiceDialog.js} (96%) delete mode 100644 src/components/edit/external/ExternalDialog.js diff --git a/src/components/edit/LayerEdit.js b/src/components/edit/LayerEdit.js index 2b733ce67..f834ae69e 100644 --- a/src/components/edit/LayerEdit.js +++ b/src/components/edit/LayerEdit.js @@ -16,7 +16,7 @@ import FacilityDialog from './FacilityDialog'; import ThematicDialog from './thematic/ThematicDialog'; import OrgUnitDialog from './orgUnit/OrgUnitDialog'; import EarthEngineDialog from './earthEngine/EarthEngineDialog'; -import ExternalDialog from './external/ExternalDialog'; +import FeatureServiceDialog from './arcgis/FeatureServiceDialog'; import { loadLayer, cancelLayer, setLayerLoading } from '../../actions/layers'; import { EARTH_ENGINE_LAYER } from '../../constants/layers'; import { useSystemSettings } from '../SystemSettingsProvider'; @@ -29,7 +29,7 @@ const layerType = { thematic: ThematicDialog, orgUnit: OrgUnitDialog, earthEngine: EarthEngineDialog, - external: ExternalDialog, + featureService: FeatureServiceDialog, }; /* diff --git a/src/components/edit/external/FeatureService.js b/src/components/edit/arcgis/FeatureServiceDialog.js similarity index 96% rename from src/components/edit/external/FeatureService.js rename to src/components/edit/arcgis/FeatureServiceDialog.js index f2af7e6df..c21980941 100644 --- a/src/components/edit/external/FeatureService.js +++ b/src/components/edit/arcgis/FeatureServiceDialog.js @@ -10,8 +10,8 @@ import { getOrgUnitNodesFromRows } from '../../../util/analytics'; import styles from '../styles/LayerDialog.module.css'; const FeatureServiceDialog = ({ + url, rows = [], - config, toggleOrgUnit, validateLayer, onLayerValidation, @@ -19,8 +19,6 @@ const FeatureServiceDialog = ({ const [tab, setTab] = useState('data'); const [metadata, setMetadata] = useState(); - const { url } = config; - useEffect(() => { request(url).then(setMetadata); }, [url]); @@ -81,11 +79,9 @@ const FeatureServiceDialog = ({ }; FeatureServiceDialog.propTypes = { + url: PropTypes.string.isRequired, rows: PropTypes.array, toggleOrgUnit: PropTypes.func.isRequired, - config: PropTypes.shape({ - url: PropTypes.string.isRequired, - }), validateLayer: PropTypes.bool.isRequired, onLayerValidation: PropTypes.func.isRequired, }; diff --git a/src/components/edit/external/ExternalDialog.js b/src/components/edit/external/ExternalDialog.js deleted file mode 100644 index cb8edbeec..000000000 --- a/src/components/edit/external/ExternalDialog.js +++ /dev/null @@ -1,27 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import FeatureService from './FeatureService'; - -const layerType = { - featureService: FeatureService, -}; - -const ExternalDialog = props => { - const { type } = props.config; - - const LayerDialog = layerType[type]; - - if (!LayerDialog) { - return null; - } - - return ; -}; - -ExternalDialog.propTypes = { - config: PropTypes.shape({ - type: PropTypes.string.isRequired, - }), -}; - -export default ExternalDialog; diff --git a/src/reducers/layers.js b/src/reducers/layers.js index 7c7d6d8ed..00353bfcf 100644 --- a/src/reducers/layers.js +++ b/src/reducers/layers.js @@ -59,6 +59,7 @@ const defaultLayers = () => [ external: true, layer: 'featureService', type: 'Settlement extents', + name: 'Settlement extents', opacity: 1, url: 'https://services3.arcgis.com/BU6Aadhn6tbBEdyk/ArcGIS/rest/services/GRID3_Sierra_Leone_Settlement_Extents/FeatureServer/0', From 8dfe94a38f3794c119f7d26db1078149b9f84af5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Sandvik?= Date: Mon, 14 Nov 2022 18:01:11 +0100 Subject: [PATCH 06/63] chore: refactor --- src/components/datatable/DataTable.js | 20 ++++++++++++++++++- src/components/feature/FeatureProfile.js | 5 +++-- .../feature/styles/FeatureProfile.module.css | 4 ---- src/components/map/layers/FeatureService.js | 8 ++++---- 4 files changed, 26 insertions(+), 11 deletions(-) diff --git a/src/components/datatable/DataTable.js b/src/components/datatable/DataTable.js index 3eb1623b6..483b55c04 100644 --- a/src/components/datatable/DataTable.js +++ b/src/components/datatable/DataTable.js @@ -11,6 +11,7 @@ import ColorCell from './ColorCell'; import EarthEngineColumns from './EarthEngineColumns'; import FeatureServiceColumns from './FeatureServiceColumns'; import { setOrgUnitProfile } from '../../actions/orgUnits'; +import { setFeatureProfile } from '../../actions/feature'; import { highlightFeature } from '../../actions/feature'; import { closeDataTable } from '../../actions/dataTable'; import { loadLayer } from '../../actions/layers'; @@ -38,6 +39,7 @@ class DataTable extends Component { closeDataTable: PropTypes.func.isRequired, loadLayer: PropTypes.func.isRequired, setOrgUnitProfile: PropTypes.func.isRequired, + setFeatureProfile: PropTypes.func.isRequired, highlightFeature: PropTypes.func.isRequired, }; @@ -179,7 +181,22 @@ class DataTable extends Component { } }); - onRowClick = evt => this.props.setOrgUnitProfile(evt.rowData.id); + onRowClick = evt => { + const { layer: layerType } = this.props.layer; + + if (layerType === FEATURE_SERVICE) { + const { name, fields } = this.props.layer; + + this.props.setFeatureProfile({ + name, + fields, + data: evt.rowData, + }); + } else { + this.props.setOrgUnitProfile(evt.rowData.id); + } + }; + onRowMouseOver = evt => this.highlightFeature(evt.rowData.id); onRowMouseOut = () => this.highlightFeature(); @@ -394,6 +411,7 @@ export default connect( closeDataTable, loadLayer, setOrgUnitProfile, + setFeatureProfile, highlightFeature, } )(DataTable); diff --git a/src/components/feature/FeatureProfile.js b/src/components/feature/FeatureProfile.js index 9855dc462..85bc8d63c 100644 --- a/src/components/feature/FeatureProfile.js +++ b/src/components/feature/FeatureProfile.js @@ -10,7 +10,7 @@ import styles from './styles/FeatureProfile.module.css'; /* * Loads an org unit profile and displays it in a right drawer component */ -export const FeatureProfile = ({ fields, data, closeFeatureProfile }) => { +export const FeatureProfile = ({ name, fields, data, closeFeatureProfile }) => { if (!fields || !data) { return null; } @@ -18,7 +18,7 @@ export const FeatureProfile = ({ fields, data, closeFeatureProfile }) => { return (
- {i18n.t('Feature profile')} + {name || i18n.t('Feature profile')} @@ -44,6 +44,7 @@ export const FeatureProfile = ({ fields, data, closeFeatureProfile }) => { }; FeatureProfile.propTypes = { + name: PropTypes.string, fields: PropTypes.array, data: PropTypes.object, closeFeatureProfile: PropTypes.func.isRequired, diff --git a/src/components/feature/styles/FeatureProfile.module.css b/src/components/feature/styles/FeatureProfile.module.css index e6fbc5145..52020d83e 100644 --- a/src/components/feature/styles/FeatureProfile.module.css +++ b/src/components/feature/styles/FeatureProfile.module.css @@ -31,10 +31,6 @@ padding: var(--spacers-dp16); } -.orgUnitData { - margin-top: var(--spacers-dp16); -} - .periodSelect label span { display: none; } diff --git a/src/components/map/layers/FeatureService.js b/src/components/map/layers/FeatureService.js index 03d360553..9f77f927c 100644 --- a/src/components/map/layers/FeatureService.js +++ b/src/components/map/layers/FeatureService.js @@ -18,8 +18,6 @@ class FeatureService extends Layer { } = this.props; const { map } = this.context; - // console.log('FeatureService', feature); - const filteredData = filterData(data, dataFilters); const group = map.createLayer({ @@ -83,9 +81,11 @@ class FeatureService extends Layer { } onFeatureClick(evt) { - // console.log('click', evt.feature, this.props.fields); + const { name, fields } = this.props; + this.props.setFeatureProfile({ - fields: this.props.fields, + name, + fields, data: evt.feature.properties, }); } From 093f17cf15d8d78ad18336c03483bddbc781cae2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Sandvik?= Date: Tue, 15 Nov 2022 15:52:57 +0100 Subject: [PATCH 07/63] feat: feature style --- src/actions/layerEdit.js | 11 ++++ .../edit/arcgis/FeatureServiceDialog.js | 46 +++++++++++--- src/components/edit/shared/FeatureStyle.js | 38 ++++++++++++ src/components/map/layers/FeatureService.js | 9 +-- src/constants/actionTypes.js | 3 + src/reducers/layerEdit.js | 16 +++++ src/util/analytics.js | 4 ++ src/util/featureStyle.js | 62 +++++++++++++++++++ 8 files changed, 173 insertions(+), 16 deletions(-) create mode 100644 src/components/edit/shared/FeatureStyle.js create mode 100644 src/util/featureStyle.js diff --git a/src/actions/layerEdit.js b/src/actions/layerEdit.js index 20df5d9e7..8ca4b9347 100644 --- a/src/actions/layerEdit.js +++ b/src/actions/layerEdit.js @@ -149,6 +149,11 @@ export const setRelationshipLineColor = color => ({ color, }); +export const setOrgUnit = orgUnit => ({ + type: types.LAYER_EDIT_ORGANISATIOM_UNIT_SET, + orgUnit, +}); + export const toggleOrgUnit = orgUnit => ({ type: types.LAYER_EDIT_ORGANISATIOM_UNIT_TOGGLE, orgUnit, @@ -378,3 +383,9 @@ export const setNoDataColor = color => ({ type: types.LAYER_EDIT_NO_DATA_COLOR_SET, payload: color, }); + +// Set feature style +export const setFeatureStyle = style => ({ + type: types.LAYER_EDIT_FEATURE_STYLE_SET, + payload: style, +}); diff --git a/src/components/edit/arcgis/FeatureServiceDialog.js b/src/components/edit/arcgis/FeatureServiceDialog.js index c21980941..d2c2e0a5d 100644 --- a/src/components/edit/arcgis/FeatureServiceDialog.js +++ b/src/components/edit/arcgis/FeatureServiceDialog.js @@ -5,14 +5,21 @@ import i18n from '@dhis2/d2-i18n'; import { request } from '@esri/arcgis-rest-request'; import { Help, Tab, Tabs } from '../../core'; import OrgUnitTree from '../../orgunits/OrgUnitTree'; -import { toggleOrgUnit } from '../../../actions/layerEdit'; +import FeatureServiceStyle from '../shared/FeatureStyle'; +import { setOrgUnit, setFeatureStyle } from '../../../actions/layerEdit'; import { getOrgUnitNodesFromRows } from '../../../util/analytics'; +import { + setDrawingInfo, + getFeatureStyleFields, +} from '../../../util/featureStyle'; import styles from '../styles/LayerDialog.module.css'; const FeatureServiceDialog = ({ url, rows = [], - toggleOrgUnit, + featureStyle, + setOrgUnit, + setFeatureStyle, validateLayer, onLayerValidation, }) => { @@ -24,10 +31,12 @@ const FeatureServiceDialog = ({ }, [url]); useEffect(() => { - if (metadata) { + if (metadata && !featureStyle) { + // Set feature style from metadata drawiing ingo + setFeatureStyle(setDrawingInfo(featureStyle, metadata.drawingInfo)); // console.log('metadata', metadata); } - }, [metadata]); + }, [metadata, featureStyle]); useEffect(() => { if (validateLayer) { @@ -58,8 +67,13 @@ const FeatureServiceDialog = ({
{ + console.log(test); + setOrgUnit(test); + }} + */ />
@@ -69,8 +83,17 @@ const FeatureServiceDialog = ({ className={styles.flexColumnFlow} data-test="orgunitdialog-styletab" > -
-
+
+ {metadata && ( + + )} +
)}
@@ -81,7 +104,9 @@ const FeatureServiceDialog = ({ FeatureServiceDialog.propTypes = { url: PropTypes.string.isRequired, rows: PropTypes.array, - toggleOrgUnit: PropTypes.func.isRequired, + featureStyle: PropTypes.object, + setFeatureStyle: PropTypes.func.isRequired, + setOrgUnit: PropTypes.func.isRequired, validateLayer: PropTypes.bool.isRequired, onLayerValidation: PropTypes.func.isRequired, }; @@ -89,7 +114,8 @@ FeatureServiceDialog.propTypes = { export default connect( null, { - toggleOrgUnit, + setOrgUnit, + setFeatureStyle, }, null, { diff --git a/src/components/edit/shared/FeatureStyle.js b/src/components/edit/shared/FeatureStyle.js new file mode 100644 index 000000000..64468cd3d --- /dev/null +++ b/src/components/edit/shared/FeatureStyle.js @@ -0,0 +1,38 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import { ColorPicker, NumberField } from '../../core'; +import styles from '../styles/LayerDialog.module.css'; + +const FeatureStyle = ({ fields = [], style = {}, onChange }) => { + return ( + <> + {fields.map(({ id, label, type }) => + type === 'color' ? ( + onChange({ [id]: color })} + className={styles.narrowField} + /> + ) : ( + onChange({ [id]: value })} + className={styles.narrowField} + /> + ) + )} + + ); +}; + +FeatureStyle.propTypes = { + fields: PropTypes.array, + style: PropTypes.object, + onChange: PropTypes.func.isRequired, +}; + +export default FeatureStyle; diff --git a/src/components/map/layers/FeatureService.js b/src/components/map/layers/FeatureService.js index 9f77f927c..58122b1f3 100644 --- a/src/components/map/layers/FeatureService.js +++ b/src/components/map/layers/FeatureService.js @@ -14,7 +14,7 @@ class FeatureService extends Layer { data, dataFilters, feature, - /* config,*/ + featureStyle, } = this.props; const { map } = this.context; @@ -51,11 +51,8 @@ class FeatureService extends Layer { opacity, isVisible, data: filteredData, - // hoverLabel: '{name}', - style: { - color: 'red', - // strokeColor: organisationUnitColor, - }, + hoverLabel: '{type}', + style: featureStyle, onClick: this.onFeatureClick.bind(this), // onRightClick: this.onFeatureRightClick.bind(this), }); diff --git a/src/constants/actionTypes.js b/src/constants/actionTypes.js index 9683b5b33..34a8fe1f4 100644 --- a/src/constants/actionTypes.js +++ b/src/constants/actionTypes.js @@ -170,6 +170,8 @@ export const LAYER_EDIT_ORGANISATION_UNIT_GROUPS_SET = 'LAYER_EDIT_ORGANISATION_UNIT_GROUPS_SET'; // Org units selection export const LAYER_EDIT_ORGANISATION_UNIT_GROUP_SET = 'LAYER_EDIT_ORGANISATION_UNIT_GROUP_SET'; // Facility TODO: Distinguish frome above +export const LAYER_EDIT_ORGANISATIOM_UNIT_SET = + 'LAYER_EDIT_ORGANISATIOM_UNIT_SET'; export const LAYER_EDIT_ORGANISATIOM_UNIT_TOGGLE = 'LAYER_EDIT_ORGANISATIOM_UNIT_TOGGLE'; export const LAYER_EDIT_USER_ORGANISATION_UNITS_SET = @@ -220,6 +222,7 @@ export const LAYER_EDIT_PROGRAM_STATUS_SET = 'LAYER_EDIT_PROGRAM_STATUS_SET'; export const LAYER_EDIT_FOLLOW_UP_SET = 'LAYER_EDIT_FOLLOW_UP_SET'; export const LAYER_EDIT_NO_DATA_COLOR_SET = 'LAYER_EDIT_NO_DATA_COLOR_SET'; export const LAYER_EDIT_BAND_SET = 'LAYER_EDIT_BAND_SET'; +export const LAYER_EDIT_FEATURE_STYLE_SET = 'LAYER_EDIT_FEATURE_STYLE_SET'; /* PERIODS */ export const RELATIVE_PERIODS_SET = 'RELATIVE_PERIODS_SET'; diff --git a/src/reducers/layerEdit.js b/src/reducers/layerEdit.js index 4238d2307..c0bb24c88 100644 --- a/src/reducers/layerEdit.js +++ b/src/reducers/layerEdit.js @@ -5,6 +5,7 @@ import { addOrgUnitLevelsToRows, addOrgUnitGroupsToRows, createUserOrgUnitsDimension, + setOrgUnitNodeInRows, toggleOrgUnitNodeInRows, setOrgUnitPathInRows, removePeriodFromFilters, @@ -432,6 +433,12 @@ const layerEdit = (state = null, action) => { areaRadius: id === NONE ? EE_BUFFER : null, }; + case types.LAYER_EDIT_ORGANISATIOM_UNIT_SET: + return { + ...state, + rows: setOrgUnitNodeInRows(action.orgUnit), + }; + case types.LAYER_EDIT_ORGANISATIOM_UNIT_TOGGLE: return { ...state, @@ -580,6 +587,15 @@ const layerEdit = (state = null, action) => { return newState; + case types.LAYER_EDIT_FEATURE_STYLE_SET: + return { + ...state, + featureStyle: { + ...state.featureStyle, + ...action.payload, + }, + }; + default: return state; } diff --git a/src/util/analytics.js b/src/util/analytics.js index d0883e8a3..768c632c9 100644 --- a/src/util/analytics.js +++ b/src/util/analytics.js @@ -65,6 +65,10 @@ const isOrgUnitNode = ou => isValidUid(ou.id); export const getOrgUnitNodesFromRows = (rows = []) => getOrgUnitsFromRows(rows).filter(isOrgUnitNode); +export const setOrgUnitNodeInRows = orgUnit => [ + createDimension('ou', [orgUnit]), +]; + export const toggleOrgUnitNodeInRows = (rows = [], orgUnit) => { const orgUnits = getOrgUnitsFromRows(rows); const hasOrgUnit = orgUnits.some(ou => ou.id === orgUnit.id); diff --git a/src/util/featureStyle.js b/src/util/featureStyle.js new file mode 100644 index 000000000..8f35be047 --- /dev/null +++ b/src/util/featureStyle.js @@ -0,0 +1,62 @@ +import i18n from '@dhis2/d2-i18n'; + +const FILL = 'color'; +const STROKE_COLOR = 'strokeColor'; +const STROKE_WIDTH = 'weight'; + +// Wrapped un a function to make sure i18n is applied +const getFill = () => ({ + id: FILL, + label: i18n.t('Fill color'), + type: 'color', +}); + +const getStroke = () => ({ + id: STROKE_COLOR, + label: i18n.t('Stroke color'), + type: 'color', +}); + +const getStrokeWidth = () => ({ + id: STROKE_WIDTH, + label: i18n.t('Stroke width'), + type: 'number', +}); + +export const getFeatureStyleFields = type => { + if (type === 'esriGeometryPolygon') { + return [getFill(), getStroke(), getStrokeWidth()]; + } + return []; +}; + +const esri2cssRgb = ([r, g, b]) => `rgb(${r},${g},${b})`; + +// Inspired by simplestyle-spec +export const setDrawingInfo = (featureStyle, drawingInfo) => { + const style = { ...featureStyle }; + const { renderer } = drawingInfo; + const { type, symbol } = renderer; + + if (type === 'simple') { + const { color, outline } = symbol; + + if (color && !style.fill) { + style[FILL] = esri2cssRgb(color); + } + + if (outline) { + const { color, width } = outline; + + if (color && !style.stroke) { + style[STROKE_COLOR] = esri2cssRgb(color); + } + + if (width && !style.strokeWidth) { + style[STROKE_WIDTH] = width; + } + } + } + + return style; +}; From b34dac0dc2fe19bb19e97095d6c037508c7ebedf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Sandvik?= Date: Tue, 15 Nov 2022 17:03:55 +0100 Subject: [PATCH 08/63] chore: code clean --- src/loaders/featureServiceLoader.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/loaders/featureServiceLoader.js b/src/loaders/featureServiceLoader.js index 642f99a75..56c741989 100644 --- a/src/loaders/featureServiceLoader.js +++ b/src/loaders/featureServiceLoader.js @@ -7,8 +7,8 @@ import { toGeoJson } from '../util/map'; import { getDisplayProperty } from '../util/helpers'; const featureServiceLoader = async layer => { - const { rows, name, url, where } = layer; - const legend = { title: name }; + const { rows, name, url, where, featureStyle } = layer; + const legend = { title: name, items: [] }; const orgUnits = getOrgUnitsFromRows(rows); const orgUnitParams = orgUnits.map(item => item.id); const d2 = await getD2(); @@ -41,6 +41,12 @@ const featureServiceLoader = async layer => { /* authentication, */ }); + legend.items.push({ + name: 'Feature', + ...featureStyle, + fillColor: featureStyle.color, // TODO: Clean up styles + }); + return { ...layer, name, From 8222a5e144c505a201b959a8c272116161b3e431 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Sandvik?= Date: Mon, 5 Dec 2022 13:31:06 +0100 Subject: [PATCH 09/63] feat: feature service --- i18n/en.pot | 22 +++++++++++---- src/components/edit/FacilityDialog.js | 2 +- src/loaders/featureServiceLoader.js | 39 ++++++++++++++++++--------- src/reducers/layers.js | 18 +++++++++++++ 4 files changed, 62 insertions(+), 19 deletions(-) diff --git a/i18n/en.pot b/i18n/en.pot index 5f0a9fbe3..55782b66c 100644 --- a/i18n/en.pot +++ b/i18n/en.pot @@ -5,8 +5,8 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -"POT-Creation-Date: 2022-11-11T18:46:54.037Z\n" -"PO-Revision-Date: 2022-11-11T18:46:54.037Z\n" +"POT-Creation-Date: 2022-11-16T12:01:47.284Z\n" +"PO-Revision-Date: 2022-11-16T12:01:47.284Z\n" msgid "Maps" msgstr "" @@ -191,6 +191,9 @@ msgstr "" msgid "Add layer" msgstr "" +msgid "Data" +msgstr "" + msgid "Aggregation method" msgstr "" @@ -200,9 +203,6 @@ msgstr "" msgid "This field is required" msgstr "" -msgid "Data" -msgstr "" - msgid "Period" msgstr "" @@ -456,6 +456,9 @@ msgstr "" msgid "The following information may be requested by technical support." msgstr "" +msgid "Feature profile" +msgstr "" + msgid "Filtering is available after selecting a program stage." msgstr "" @@ -1329,6 +1332,15 @@ msgid "" "documentation for more information." msgstr "" +msgid "Fill color" +msgstr "" + +msgid "Stroke color" +msgstr "" + +msgid "Stroke width" +msgstr "" + msgid "Facility" msgstr "" diff --git a/src/components/edit/FacilityDialog.js b/src/components/edit/FacilityDialog.js index fbd62f965..25a7b8db8 100644 --- a/src/components/edit/FacilityDialog.js +++ b/src/components/edit/FacilityDialog.js @@ -102,7 +102,7 @@ class FacilityDialog extends Component { facilityOrgUnitGroupSet && !prevState.facilityOrgUnitGroupSet ) { - setOrganisationUnitGroupSet(facilityOrgUnitGroupSet); + // setOrganisationUnitGroupSet(facilityOrgUnitGroupSet); } } diff --git a/src/loaders/featureServiceLoader.js b/src/loaders/featureServiceLoader.js index 56c741989..2d9f7ba70 100644 --- a/src/loaders/featureServiceLoader.js +++ b/src/loaders/featureServiceLoader.js @@ -9,24 +9,32 @@ import { getDisplayProperty } from '../util/helpers'; const featureServiceLoader = async layer => { const { rows, name, url, where, featureStyle } = layer; const legend = { title: name, items: [] }; - const orgUnits = getOrgUnitsFromRows(rows); - const orgUnitParams = orgUnits.map(item => item.id); + const d2 = await getD2(); const displayProperty = getDisplayProperty(d2).toUpperCase(); - const orgUnitsRequest = d2.geoFeatures - .byOrgUnit(orgUnitParams) - .displayProperty(displayProperty); + let orgUnitFeatures; let feature; - try { - orgUnitFeatures = await orgUnitsRequest.getAll().then(toGeoJson); - } catch (error) { - // console.log(error); // TODO - } + console.log('rows', rows); + + if (rows && rows.length) { + const orgUnits = getOrgUnitsFromRows(rows); + const orgUnitParams = orgUnits.map(item => item.id); - if (orgUnitFeatures.length) { - feature = orgUnitFeatures[0]; + const orgUnitsRequest = d2.geoFeatures + .byOrgUnit(orgUnitParams) + .displayProperty(displayProperty); + + try { + orgUnitFeatures = await orgUnitsRequest.getAll().then(toGeoJson); + } catch (error) { + // console.log(error); // TODO + } + + if (orgUnitFeatures.length) { + feature = orgUnitFeatures[0]; + } } const metadata = await request(url); @@ -34,10 +42,12 @@ const featureServiceLoader = async layer => { const { features /*, properties */ } = await queryFeatures({ url, where, - geometry: geojsonToArcGIS(feature.geometry), + geometry: feature ? geojsonToArcGIS(feature.geometry) : null, geometryType: 'esriGeometryPolygon', f: 'geojson', maxUrlLength: 2048, + resultOffset: 0, // TODO: Remove + resultRecordCount: 100, // TODO: Remove /* authentication, */ }); @@ -47,6 +57,9 @@ const featureServiceLoader = async layer => { fillColor: featureStyle.color, // TODO: Clean up styles }); + console.log('features', features); + // https://services9.arcgis.com/RHVPKKiFTONKtxq3/arcgis/rest/services/USGS_Seismic_Data_v1/FeatureServer/0/query?f=pbf&cacheHint=true&maxRecordCountFactor=4&resultOffset=0&resultRecordCount=8000&where=1%3D1&orderByFields=OBJECTID&outFields=OBJECTID%2Calert%2Cmag&outSR=102100&spatialRel=esriSpatialRelIntersects + return { ...layer, name, diff --git a/src/reducers/layers.js b/src/reducers/layers.js index 00353bfcf..ff9308d72 100644 --- a/src/reducers/layers.js +++ b/src/reducers/layers.js @@ -64,6 +64,24 @@ const defaultLayers = () => [ url: 'https://services3.arcgis.com/BU6Aadhn6tbBEdyk/ArcGIS/rest/services/GRID3_Sierra_Leone_Settlement_Extents/FeatureServer/0', }, + { + external: true, + layer: 'featureService', + type: 'Feature Service', + name: 'Thermal Hotspots and Fire Activity', + opacity: 1, + url: + 'https://services9.arcgis.com/RHVPKKiFTONKtxq3/ArcGIS/rest/services/USGS_Seismic_Data_v1/FeatureServer/0', + }, + { + external: true, + layer: 'featureService', + type: 'Feature Service', + name: 'Recent Earthquakes', + opacity: 1, + url: + 'https://services9.arcgis.com/RHVPKKiFTONKtxq3/ArcGIS/rest/services/Satellite_VIIRS_Thermal_Hotspots_and_Fire_Activity/FeatureServer/0', + }, ]; const layers = (state, action) => { From 91135fe2e15e48958624a87dcbe42211dd2f6df3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Sandvik?= Date: Tue, 17 Oct 2023 14:25:32 +0200 Subject: [PATCH 10/63] chore: fix merge conflicts --- i18n/en.pot | 20 +-- package.json | 4 + src/actions/feature.js | 9 ++ src/actions/layerEdit.js | 6 + src/components/app/DetailsPanel.js | 18 ++- src/components/datatable/DataTable.js | 45 ++++--- src/components/edit/LayerEdit.js | 1 + .../edit/arcgis/FeatureServiceDialog.js | 71 ++++------- src/components/feature/FeatureProfile.js | 50 +++----- .../loaders/FeatureServiceLoader.js | 18 +++ src/components/loaders/LayerLoader.js | 2 + src/components/map/Map.js | 1 + yarn.lock | 116 +++++------------- 13 files changed, 169 insertions(+), 192 deletions(-) create mode 100644 src/components/loaders/FeatureServiceLoader.js diff --git a/i18n/en.pot b/i18n/en.pot index 57e24c964..d11a34592 100644 --- a/i18n/en.pot +++ b/i18n/en.pot @@ -5,8 +5,8 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -"POT-Creation-Date: 2023-09-06T13:08:55.205Z\n" -"PO-Revision-Date: 2023-09-06T13:08:55.205Z\n" +"POT-Creation-Date: 2023-10-17T11:10:00.916Z\n" +"PO-Revision-Date: 2023-10-17T11:10:00.916Z\n" msgid "Untitled map, {{date}}" msgstr "Untitled map, {{date}}" @@ -252,7 +252,7 @@ msgid "Add new {{name}} layer" msgstr "Add new {{name}} layer" msgid "{{name}} layer" -msgstr "" +msgstr "{{name}} layer" msgid "Update layer" msgstr "Update layer" @@ -261,7 +261,7 @@ msgid "Add layer" msgstr "Add layer" msgid "Data" -msgstr "" +msgstr "Data" msgid "Aggregation method" msgstr "Aggregation method" @@ -272,9 +272,6 @@ msgstr "Groups" msgid "This field is required" msgstr "This field is required" -msgid "Data" -msgstr "Data" - msgid "Period" msgstr "Period" @@ -490,6 +487,9 @@ msgstr "No relationship types were found for tracked entity type {{type}}" msgid "Relationship type" msgstr "Relationship type" +msgid "Feature profile" +msgstr "Feature profile" + msgid "Remove filter" msgstr "Remove filter" @@ -1354,13 +1354,13 @@ msgstr "" "documentation for more information." msgid "Fill color" -msgstr "" +msgstr "Fill color" msgid "Stroke color" -msgstr "" +msgstr "Stroke color" msgid "Stroke width" -msgstr "" +msgstr "Stroke width" msgid "Facility" msgstr "Facility" diff --git a/package.json b/package.json index 124445fee..e9da1f157 100644 --- a/package.json +++ b/package.json @@ -47,7 +47,11 @@ "@dhis2/d2-i18n": "^1.1.1", "@dhis2/maps-gl": "^3.8.5", "@dhis2/ui": "^8.13.15", + "@esri/arcgis-rest-feature-service": "^4.0.5", + "@esri/arcgis-rest-portal": "^4.4.0", + "@esri/arcgis-rest-request": "^4.2.0", "@krakenjs/post-robot": "^11.0.0", + "@terraformer/arcgis": "^2.1.2", "abortcontroller-polyfill": "^1.7.5", "array-move": "^4.0.0", "classnames": "^2.3.2", diff --git a/src/actions/feature.js b/src/actions/feature.js index 5d217d969..4c54bdc3c 100644 --- a/src/actions/feature.js +++ b/src/actions/feature.js @@ -4,3 +4,12 @@ export const highlightFeature = (payload) => ({ type: types.FEATURE_HIGHLIGHT, payload, }) + +export const setFeatureProfile = (payload) => ({ + type: types.FEATURE_PROFILE_SET, + payload, +}) + +export const closeFeatureProfile = () => ({ + type: types.FEATURE_PROFILE_CLOSE, +}) diff --git a/src/actions/layerEdit.js b/src/actions/layerEdit.js index 80037f548..27799293c 100644 --- a/src/actions/layerEdit.js +++ b/src/actions/layerEdit.js @@ -358,3 +358,9 @@ export const setNoDataColor = (color) => ({ type: types.LAYER_EDIT_NO_DATA_COLOR_SET, payload: color, }) + +// Set feature style +export const setFeatureStyle = (payload) => ({ + type: types.LAYER_EDIT_FEATURE_STYLE_SET, + payload, +}) diff --git a/src/components/app/DetailsPanel.js b/src/components/app/DetailsPanel.js index a5dee646a..218e1619a 100644 --- a/src/components/app/DetailsPanel.js +++ b/src/components/app/DetailsPanel.js @@ -4,19 +4,33 @@ import React from 'react' import { useSelector } from 'react-redux' import Interpretations from '../interpretations/Interpretations.js' import OrgUnitProfile from '../orgunits/OrgUnitProfile.js' +import FeatureProfile from '../feature/FeatureProfile.js' import styles from './styles/DetailsPanel.module.css' const DetailsPanel = ({ interpretationsRenderCount }) => { const detailsPanelOpen = useSelector((state) => state.ui.rightPanelOpen) const viewOrgUnitProfile = useSelector((state) => state.orgUnitProfile) + const viewFeatureProfile = useSelector((state) => !!state.featureProfile) const interpretationId = useSelector((state) => state.interpretation?.id) const getContent = () => { - if (interpretationId || (detailsPanelOpen && !viewOrgUnitProfile)) { + if ( + interpretationId || + (detailsPanelOpen && !viewOrgUnitProfile && !viewFeatureProfile) + ) { return } - return detailsPanelOpen ? : null + if (detailsPanelOpen) { + if (viewOrgUnitProfile) { + return + } + if (viewFeatureProfile) { + return + } + } + + return null } return ( diff --git a/src/components/datatable/DataTable.js b/src/components/datatable/DataTable.js index 27ea730b1..286755a51 100644 --- a/src/components/datatable/DataTable.js +++ b/src/components/datatable/DataTable.js @@ -7,7 +7,7 @@ import React, { Component } from 'react' import { connect } from 'react-redux' import { Table, Column } from 'react-virtualized' import { closeDataTable } from '../../actions/dataTable.js' -import { highlightFeature } from '../../actions/feature.js' +import { highlightFeature, setFeatureProfile } from '../../actions/feature.js' import { updateLayer } from '../../actions/layers.js' import { setOrgUnitProfile } from '../../actions/orgUnits.js' import { @@ -15,6 +15,7 @@ import { THEMATIC_LAYER, ORG_UNIT_LAYER, EARTH_ENGINE_LAYER, + FEATURE_SERVICE, } from '../../constants/layers.js' import { numberValueTypes } from '../../constants/valueTypes.js' import { filterData } from '../../util/filter.js' @@ -22,6 +23,7 @@ import { formatTime } from '../../util/helpers.js' import ColorCell from './ColorCell.js' import ColumnHeader from './ColumnHeader.js' import EarthEngineColumns from './EarthEngineColumns.js' +import FeatureServiceColumns from './FeatureServiceColumns.js' import styles from './styles/DataTable.module.css' import 'react-virtualized/styles.css' @@ -195,7 +197,6 @@ class DataTable extends Component { onRowMouseOver = (evt) => this.highlightFeature(evt.rowData.id) onRowMouseOut = () => this.highlightFeature() - // onRowClick = (evt) => this.props.setOrgUnitProfile(evt.rowData.id) onRowMouseOver = (evt) => this.highlightFeature(evt.rowData.id) onRowMouseOut = () => this.highlightFeature() @@ -249,22 +250,30 @@ class DataTable extends Component { width={72} className="right" /> - ( - - )} - /> - ( - - )} - /> + {!isFeatureService && ( + <> + ( + + )} + /> + ( + + )} + /> + + )} {isEvent && ( { - const [tab, setTab] = useState('data'); - const [metadata, setMetadata] = useState(); + const [tab, setTab] = useState('data') + const [metadata, setMetadata] = useState() useEffect(() => { - request(url).then(setMetadata); - }, [url]); + request(url).then(setMetadata) + }, [url]) useEffect(() => { if (metadata && !featureStyle) { // Set feature style from metadata drawiing ingo - setFeatureStyle(setDrawingInfo(featureStyle, metadata.drawingInfo)); + setFeatureStyle(setDrawingInfo(featureStyle, metadata.drawingInfo)) // console.log('metadata', metadata); } - }, [metadata, featureStyle]); + }, [metadata, featureStyle]) useEffect(() => { if (validateLayer) { - onLayerValidation(true); // TODO + onLayerValidation(true) // TODO } - }, [validateLayer, onLayerValidation]); + }, [validateLayer, onLayerValidation]) return (
@@ -59,25 +58,7 @@ const FeatureServiceDialog = ({
)} - {tab === 'orgunits' && ( -
-
- { - console.log(test); - setOrgUnit(test); - }} - */ - /> -
-
- )} + {tab === 'orgunits' && } {tab === 'style' && (
- ); -}; + ) +} FeatureServiceDialog.propTypes = { url: PropTypes.string.isRequired, rows: PropTypes.array, featureStyle: PropTypes.object, setFeatureStyle: PropTypes.func.isRequired, - setOrgUnit: PropTypes.func.isRequired, validateLayer: PropTypes.bool.isRequired, onLayerValidation: PropTypes.func.isRequired, -}; +} export default connect( null, { - setOrgUnit, setFeatureStyle, }, null, { forwardRef: true, } -)(FeatureServiceDialog); +)(FeatureServiceDialog) diff --git a/src/components/feature/FeatureProfile.js b/src/components/feature/FeatureProfile.js index 85bc8d63c..4024dfc2c 100644 --- a/src/components/feature/FeatureProfile.js +++ b/src/components/feature/FeatureProfile.js @@ -1,25 +1,25 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import { connect } from 'react-redux'; -import i18n from '@dhis2/d2-i18n'; -import { IconCross24 } from '@dhis2/ui'; -import Drawer from '../core/Drawer'; -import { closeFeatureProfile } from '../../actions/feature'; -import styles from './styles/FeatureProfile.module.css'; +import React from 'react' +import { useSelector, useDispatch } from 'react-redux' +import i18n from '@dhis2/d2-i18n' +import { IconCross24 } from '@dhis2/ui' +import Drawer from '../core/Drawer' +import { closeFeatureProfile } from '../../actions/feature' +import styles from './styles/FeatureProfile.module.css' -/* - * Loads an org unit profile and displays it in a right drawer component - */ -export const FeatureProfile = ({ name, fields, data, closeFeatureProfile }) => { - if (!fields || !data) { - return null; - } +export const FeatureProfile = () => { + const featureProfile = useSelector((state) => state.featureProfile) + const dispatch = useDispatch() + + const { name, fields, data } = featureProfile return (
{name || i18n.t('Feature profile')} - + dispatch(closeFeatureProfile())} + >
@@ -40,19 +40,7 @@ export const FeatureProfile = ({ name, fields, data, closeFeatureProfile }) => {
- ); -}; - -FeatureProfile.propTypes = { - name: PropTypes.string, - fields: PropTypes.array, - data: PropTypes.object, - closeFeatureProfile: PropTypes.func.isRequired, -}; + ) +} -export default connect( - ({ featureProfile }) => ({ - ...featureProfile, - }), - { closeFeatureProfile } -)(FeatureProfile); +export default FeatureProfile diff --git a/src/components/loaders/FeatureServiceLoader.js b/src/components/loaders/FeatureServiceLoader.js new file mode 100644 index 000000000..6782f08e8 --- /dev/null +++ b/src/components/loaders/FeatureServiceLoader.js @@ -0,0 +1,18 @@ +import PropTypes from 'prop-types' +import { useEffect } from 'react' +import featureServiceLoader from '../../loaders/featureServiceLoader.js' + +const FeatureServiceLoader = ({ config, onLoad }) => { + useEffect(() => { + featureServiceLoader(config).then(onLoad) + }, [config, onLoad]) + + return null +} + +FeatureServiceLoader.propTypes = { + config: PropTypes.object.isRequired, + onLoad: PropTypes.func.isRequired, +} + +export default FeatureServiceLoader diff --git a/src/components/loaders/LayerLoader.js b/src/components/loaders/LayerLoader.js index 41192f77a..655622ea4 100644 --- a/src/components/loaders/LayerLoader.js +++ b/src/components/loaders/LayerLoader.js @@ -7,6 +7,7 @@ import FacilityLoader from './FacilityLoader.js' import OrgUnitLoader from './OrgUnitLoader.js' import ThematicLoader from './ThematicLoader.js' import TrackedEntityLoader from './TrackedEntityLoader.js' +import FeatureServiceLoader from './FeatureServiceLoader.js' const layerType = { earthEngine: EarthEngineLoader, @@ -16,6 +17,7 @@ const layerType = { orgUnit: OrgUnitLoader, thematic: ThematicLoader, trackedEntity: TrackedEntityLoader, + featureService: FeatureServiceLoader, } const LayerLoader = ({ config, onLoad }) => { diff --git a/src/components/map/Map.js b/src/components/map/Map.js index b5c6378d4..4dd0ce20d 100644 --- a/src/components/map/Map.js +++ b/src/components/map/Map.js @@ -11,6 +11,7 @@ import Layer from './layers/Layer.js' import OrgUnitLayer from './layers/OrgUnitLayer.js' import ThematicLayer from './layers/ThematicLayer.js' import TrackedEntityLayer from './layers/TrackedEntityLayer.js' +import FeatureService from './layers/FeatureService.js' import mapApi, { controlTypes } from './MapApi.js' import Popup from './Popup.js' import styles from './styles/Map.module.css' diff --git a/yarn.lock b/yarn.lock index 5dde827b0..ef2d9088e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2441,11 +2441,15 @@ minimatch "^3.1.2" strip-json-comments "^3.1.1" -<<<<<<< HEAD -"@esri/arcgis-rest-feature-service@^4.0.3": - version "4.0.3" - resolved "https://registry.yarnpkg.com/@esri/arcgis-rest-feature-service/-/arcgis-rest-feature-service-4.0.3.tgz#ae6bd44ea2bbea63965a94b2d95e3b7569532900" - integrity sha512-VHvga97LNIrQHuLk+pBfXEtJkl1ItPIQSXZ78lXohCA5SIwMZuqLuLzgRNABb/WvbuRLsv7pzBwia6yy5o97BA== +"@eslint/js@8.35.0": + version "8.35.0" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.35.0.tgz#b7569632b0b788a0ca0e438235154e45d42813a7" + integrity sha512-JXdzbRiWclLVoD8sNUjR443VVlYqiYmDVT6rGUEIEHU5YJW0gaVZwV2xgM7D4arkvASqD0IlLUVjHiFuxaftRw== + +"@esri/arcgis-rest-feature-service@^4.0.5": + version "4.0.5" + resolved "https://registry.yarnpkg.com/@esri/arcgis-rest-feature-service/-/arcgis-rest-feature-service-4.0.5.tgz#03769e2184f26f704a303cd34b6ee9384722f419" + integrity sha512-Qiupoa5gLKMruX/keXYByDC/X9y7uI9Irl5ZUVwcWx5yw6oJFmbpm7MHUbNW1sDzvwceGH0wdpkoJcf8Tke/2g== dependencies: tslib "^2.3.0" @@ -2463,44 +2467,23 @@ dependencies: formdata-node "^4.1.0" -"@esri/arcgis-rest-portal@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@esri/arcgis-rest-portal/-/arcgis-rest-portal-4.1.0.tgz#bcf85f40156bc6d802de1be32aab3a17769de8b7" - integrity sha512-atNuccNtZ5iMzPFISDZBLdovcMVpSR43jMqlrOCa53DZ0f5dfAg9hzS3riVoB2uNAqLJjcs5QAA4zYj4pWqfSg== +"@esri/arcgis-rest-portal@^4.4.0": + version "4.4.0" + resolved "https://registry.yarnpkg.com/@esri/arcgis-rest-portal/-/arcgis-rest-portal-4.4.0.tgz#d1b27a2e2fce48ecc5fdc4828e298f42a11e9142" + integrity sha512-eNQ+Ddj1rYu8ttDdP/JkOUpwsfClq0KjT39C4L+Z2fQKFOl8xlIqexYRdM9tG7xNnXj4JLu3sr/JcVlMk6hFbQ== dependencies: tslib "^2.3.0" -"@esri/arcgis-rest-request@^4.1.1": - version "4.1.1" - resolved "https://registry.yarnpkg.com/@esri/arcgis-rest-request/-/arcgis-rest-request-4.1.1.tgz#ba62635bdb733a8a53d6c5ca02eb20ea40be3675" - integrity sha512-7Ipl+PTaRe9GcERXoNxK9Asd93U56fwgFyuVPJ7Qe+IR7RyG8rlhjz7NvzE7J3AJHCIU2gQdVPTJnKYD5E5dTA== +"@esri/arcgis-rest-request@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@esri/arcgis-rest-request/-/arcgis-rest-request-4.2.0.tgz#8080e271851302e555ae7b549139a2d3d49a3ee7" + integrity sha512-2XLy0Ivar3BIr4ehe/5hYottIqiHnC8LDqhMPglufoLcsX9LFOr81X74aPXX0Ad3xVMaSy2HLLVNoNOkhwFGqQ== dependencies: "@esri/arcgis-rest-fetch" "^4.0.0" "@esri/arcgis-rest-form-data" "^4.0.0" mitt "^3.0.0" tslib "^2.3.1" -"@hapi/address@2.x.x": - version "2.1.4" - resolved "https://registry.yarnpkg.com/@hapi/address/-/address-2.1.4.tgz#5d67ed43f3fd41a69d4b9ff7b56e7c0d1d0a81e5" - integrity sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ== - -"@hapi/bourne@1.x.x": - version "1.3.2" - resolved "https://registry.yarnpkg.com/@hapi/bourne/-/bourne-1.3.2.tgz#0a7095adea067243ce3283e1b56b8a8f453b242a" - integrity sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA== - -"@hapi/hoek@8.x.x", "@hapi/hoek@^8.3.0": - version "8.5.1" - resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-8.5.1.tgz#fde96064ca446dec8c55a8c2f130957b070c6e06" - integrity sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow== -======= -"@eslint/js@8.35.0": - version "8.35.0" - resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.35.0.tgz#b7569632b0b788a0ca0e438235154e45d42813a7" - integrity sha512-JXdzbRiWclLVoD8sNUjR443VVlYqiYmDVT6rGUEIEHU5YJW0gaVZwV2xgM7D4arkvASqD0IlLUVjHiFuxaftRw== ->>>>>>> dev - "@hapi/hoek@^9.0.0": version "9.3.0" resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-9.3.0.tgz#8368869dcb735be2e7f5cb7647de78e167a251fb" @@ -6529,9 +6512,9 @@ dashdash@^1.12.0: assert-plus "^1.0.0" data-uri-to-buffer@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-4.0.0.tgz#b5db46aea50f6176428ac05b73be39a57701a64b" - integrity sha512-Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA== + version "4.0.1" + resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz#d8feb2b2881e6a4f58c2e08acfd0e2834e26222e" + integrity sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A== data-urls@^2.0.0: version "2.0.0" @@ -8001,7 +7984,6 @@ fd-slicer@~1.1.0: dependencies: pend "~1.2.0" -<<<<<<< HEAD fetch-blob@^3.1.2, fetch-blob@^3.1.4: version "3.2.0" resolved "https://registry.yarnpkg.com/fetch-blob/-/fetch-blob-3.2.0.tgz#f09b8d4bbd45adc6f0c20b7e787e793e309dcce9" @@ -8010,31 +7992,10 @@ fetch-blob@^3.1.2, fetch-blob@^3.1.4: node-domexception "^1.0.0" web-streams-polyfill "^3.0.3" -fetch-jsonp@^1.2.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/fetch-jsonp/-/fetch-jsonp-1.2.2.tgz#c98923191390119a8eae401a9cbe75845230e000" - integrity sha512-8rQTSU3G2k9VwpsTLpuUQ8Ix7Yv1bZDGcOUGr4me0F7pxyKxMH9PSBXF6tPMx3fca9DICYwztDa1KgOTeAdTWg== - -figures@2.0.0, figures@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" - integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= - dependencies: - escape-string-regexp "^1.0.5" - -figures@^1.3.5: - version "1.7.0" - resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" - integrity sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4= - dependencies: - escape-string-regexp "^1.0.5" - object-assign "^4.1.0" -======= fetch-jsonp@^1.2.3: version "1.2.3" resolved "https://registry.yarnpkg.com/fetch-jsonp/-/fetch-jsonp-1.2.3.tgz#ae99a867095cb1ce5c39fac601d70d1084db122f" integrity sha512-C13k1o7R9JTN1wmhKkrW5bU/00LwixXnkufQUR6Rbf4KCS0i8mycQaovt4WVbHnA2NKgi7Ryp9Whpy/CGcij6Q== ->>>>>>> dev figures@^3.0.0, figures@^3.2.0: version "3.2.0" @@ -11353,9 +11314,9 @@ minizlib@^1.3.3: minipass "^2.9.0" mitt@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/mitt/-/mitt-3.0.0.tgz#69ef9bd5c80ff6f57473e8d89326d01c414be0bd" - integrity sha512-7dX2/10ITVyqh4aOSVI9gdape+t9l2/8QxHrFmUXu4EEUpdlxl6RudZUPZoc+zuY2hk1j7XxVroIVIan/pD/SQ== + version "3.0.1" + resolved "https://registry.yarnpkg.com/mitt/-/mitt-3.0.1.tgz#ea36cf0cc30403601ae074c8f77b7092cdab36d1" + integrity sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw== mixin-deep@^1.2.0: version "1.3.2" @@ -11533,23 +11494,15 @@ node-fetch@^1.0.1: encoding "^0.1.11" is-stream "^1.0.1" -<<<<<<< HEAD node-fetch@^3.0.0: - version "3.2.10" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-3.2.10.tgz#e8347f94b54ae18b57c9c049ef641cef398a85c8" - integrity sha512-MhuzNwdURnZ1Cp4XTazr69K0BTizsBroX7Zx3UgDSVcZYKF/6p0CBe4EUb/hLqmzVhl0UpYfgRljQ4yxE+iCxA== + version "3.3.2" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-3.3.2.tgz#d1e889bacdf733b4ff3b2b243eb7a12866a0b78b" + integrity sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA== dependencies: data-uri-to-buffer "^4.0.0" fetch-blob "^3.1.4" formdata-polyfill "^4.0.10" -node-forge@^0.10.0: - version "0.10.0" - resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.10.0.tgz#32dea2afb3e9926f02ee5ce8794902691a676bf3" - integrity sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA== - -======= ->>>>>>> dev node-forge@^1: version "1.3.1" resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3" @@ -15321,22 +15274,15 @@ tslib@^2.0.0: resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.1.tgz#fd8c9a0ff42590b25703c0acb3de3d3f4ede0410" integrity sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig== -<<<<<<< HEAD -tslib@^2.3.0, tslib@^2.3.1: - version "2.4.1" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.1.tgz#0d0bfbaac2880b91e22df0768e55be9753a5b17e" - integrity sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA== - -tslib@~2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.1.0.tgz#da60860f1c2ecaa5703ab7d39bc05b6bf988b97a" - integrity sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A== -======= tslib@^2.0.1, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.1: version "2.5.0" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf" integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg== ->>>>>>> dev + +tslib@^2.3.0: + version "2.6.2" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" + integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== tsutils@^3.21.0: version "3.21.0" From b3ae4b1cca6eac9315d94971018ba02449b2731b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Sandvik?= Date: Tue, 17 Oct 2023 15:58:56 +0200 Subject: [PATCH 11/63] feat: geojson url layer --- i18n/en.pot | 13 +- package.json | 4 - public/temp/crosscut.geojson | 113037 +++++++++++++++ src/components/app/DetailsPanel.js | 2 +- src/components/datatable/DataTable.js | 15 +- ...ureServiceColumns.js => FeatureColumns.js} | 40 +- src/components/edit/LayerEdit.js | 4 +- .../edit/arcgis/FeatureServiceDialog.js | 103 - src/components/edit/geoJson/GeoJsonDialog.js | 66 + src/components/feature/FeatureProfile.js | 12 +- .../loaders/FeatureServiceLoader.js | 18 - src/components/loaders/GeoJsonUrlLoader.js | 18 + src/components/loaders/LayerLoader.js | 4 +- src/components/map/Map.js | 4 +- src/components/map/layers/FeatureService.js | 93 - src/components/map/layers/GeoJsonLayer.js | 60 + src/constants/layers.js | 6 +- src/loaders/featureServiceLoader.js | 76 - src/loaders/geoJsonUrlLoader.js | 31 + src/loaders/layers.js | 30 +- src/reducers/layers.js | 35 +- src/reducers/map.js | 53 +- src/util/featureStyle.js | 46 +- yarn.lock | 112 - 24 files changed, 113304 insertions(+), 578 deletions(-) create mode 100644 public/temp/crosscut.geojson rename src/components/datatable/{FeatureServiceColumns.js => FeatureColumns.js} (52%) delete mode 100644 src/components/edit/arcgis/FeatureServiceDialog.js create mode 100644 src/components/edit/geoJson/GeoJsonDialog.js delete mode 100644 src/components/loaders/FeatureServiceLoader.js create mode 100644 src/components/loaders/GeoJsonUrlLoader.js delete mode 100644 src/components/map/layers/FeatureService.js create mode 100644 src/components/map/layers/GeoJsonLayer.js delete mode 100644 src/loaders/featureServiceLoader.js create mode 100644 src/loaders/geoJsonUrlLoader.js diff --git a/i18n/en.pot b/i18n/en.pot index d11a34592..51c55926b 100644 --- a/i18n/en.pot +++ b/i18n/en.pot @@ -5,8 +5,8 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -"POT-Creation-Date: 2023-10-17T11:10:00.916Z\n" -"PO-Revision-Date: 2023-10-17T11:10:00.916Z\n" +"POT-Creation-Date: 2023-10-17T12:59:12.850Z\n" +"PO-Revision-Date: 2023-10-17T12:59:12.850Z\n" msgid "Untitled map, {{date}}" msgstr "Untitled map, {{date}}" @@ -260,9 +260,6 @@ msgstr "Update layer" msgid "Add layer" msgstr "Add layer" -msgid "Data" -msgstr "Data" - msgid "Aggregation method" msgstr "Aggregation method" @@ -272,6 +269,9 @@ msgstr "Groups" msgid "This field is required" msgstr "This field is required" +msgid "Data" +msgstr "Data" + msgid "Period" msgstr "Period" @@ -1328,6 +1328,9 @@ msgstr "Tracked entities" msgid "Org units" msgstr "Org units" +msgid "Features" +msgstr "Features" + msgid "not one of" msgstr "not one of" diff --git a/package.json b/package.json index e9da1f157..124445fee 100644 --- a/package.json +++ b/package.json @@ -47,11 +47,7 @@ "@dhis2/d2-i18n": "^1.1.1", "@dhis2/maps-gl": "^3.8.5", "@dhis2/ui": "^8.13.15", - "@esri/arcgis-rest-feature-service": "^4.0.5", - "@esri/arcgis-rest-portal": "^4.4.0", - "@esri/arcgis-rest-request": "^4.2.0", "@krakenjs/post-robot": "^11.0.0", - "@terraformer/arcgis": "^2.1.2", "abortcontroller-polyfill": "^1.7.5", "array-move": "^4.0.0", "classnames": "^2.3.2", diff --git a/public/temp/crosscut.geojson b/public/temp/crosscut.geojson new file mode 100644 index 000000000..749df6223 --- /dev/null +++ b/public/temp/crosscut.geojson @@ -0,0 +1,113037 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "geometry": { + "coordinates": [ + [ + [-12.964299, 9.049299], + [-12.959499, 9.043199], + [-12.9554, 9.035099], + [-12.9549, 9.031], + [-12.956, 9.0271], + [-12.960499, 9.0214], + [-12.961799, 9.0181], + [-12.960999, 9.0145], + [-12.957899, 9.0128], + [-12.9509, 9.0128], + [-12.948059, 9.012205], + [-12.947811, 9.013074], + [-12.947232, 9.012923], + [-12.946862, 9.013994], + [-12.946576, 9.014655], + [-12.946731, 9.014775], + [-12.947335, 9.014685], + [-12.947336, 9.014686], + [-12.947319, 9.014761], + [-12.947574, 9.014757], + [-12.947889, 9.015128], + [-12.947727, 9.015604], + [-12.947079, 9.017402], + [-12.947782, 9.018534], + [-12.947854, 9.018667], + [-12.948436, 9.019565], + [-12.94903, 9.021606], + [-12.949816, 9.022341], + [-12.950104, 9.024036], + [-12.950096, 9.025225], + [-12.950281, 9.027099], + [-12.951195, 9.027801], + [-12.95236, 9.02912], + [-12.953258, 9.031575], + [-12.952471, 9.033629], + [-12.952949, 9.034135], + [-12.953469, 9.036098], + [-12.954116, 9.037412], + [-12.954184, 9.037488], + [-12.954089, 9.038364], + [-12.95286, 9.03911], + [-12.953043, 9.040479], + [-12.953071, 9.04277], + [-12.952919, 9.044011], + [-12.953078, 9.045401], + [-12.952817, 9.046424], + [-12.952938, 9.046639], + [-12.952935, 9.047874], + [-12.952616, 9.049431], + [-12.951753, 9.051451], + [-12.950821, 9.052177], + [-12.949387, 9.054063], + [-12.948823, 9.055492], + [-12.948545, 9.057833], + [-12.948812, 9.059376], + [-12.949466, 9.060978], + [-12.949845, 9.062829], + [-12.951304, 9.064954], + [-12.954099, 9.061], + [-12.956, 9.057199], + [-12.958699, 9.0539], + [-12.964299, 9.049299] + ] + ], + "type": "Polygon" + }, + "id": 1, + "properties": { + "cc:admin:id": ["82"], + "cc:oBld:total": 268, + "cc:pop:fifteen-to-twenty-four": 673.2625491203976, + "cc:pop:grid3-total": 1783.659337739615, + "cc:pop:kontur-total": 1106.5383058162265, + "cc:pop:men": 1705.0482254426172, + "cc:pop:sixty-plus": 235.2289935211035, + "cc:pop:total": 3590.7713851615677, + "cc:pop:under-five": 575.5832922647744, + "cc:pop:women": 1885.7231597189505, + "cc:pop:women-fiften-to-forty-nine": 910.3789130191979, + "cc:pop:wp-total": 2492.367962109402, + "cc:pop:wp-total-UN": 2890.0938374774287, + "cc:id": "1", + "cc:Name": "Ahamadyya Mission Cl", + "cc:site": [-12.9487, 9.0131], + "user:parentName": "Magbema", + "user:code": "OU_211234", + "user:orgUnitId": "plnHVbJR6p4", + "user:level": "4", + "user:parentId": "QywkxFudXrC" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.291658, 8.49354], + [-12.291028, 8.492965], + [-12.290589, 8.491391], + [-12.289194, 8.490323], + [-12.286647, 8.489239], + [-12.286032, 8.488831], + [-12.285699, 8.488426], + [-12.28464, 8.487727], + [-12.285139, 8.485598], + [-12.285545, 8.484614], + [-12.282729, 8.481477], + [-12.281767, 8.479469], + [-12.281757, 8.479187], + [-12.277197, 8.477346], + [-12.276058, 8.477132], + [-12.275528, 8.477089], + [-12.274899, 8.477089], + [-12.274531, 8.477121], + [-12.274327, 8.477139], + [-12.273613, 8.477235], + [-12.272381, 8.477453], + [-12.271185, 8.477436], + [-12.270547, 8.477221], + [-12.270291, 8.476854], + [-12.27043, 8.476201], + [-12.270435, 8.475486], + [-12.269684, 8.474684], + [-12.269153, 8.474361], + [-12.26875, 8.474381], + [-12.26875, 8.472968], + [-12.269367, 8.472296], + [-12.269437, 8.472016], + [-12.269062, 8.471256], + [-12.269035, 8.470292], + [-12.268027, 8.469866], + [-12.267834, 8.469267], + [-12.267908, 8.468764], + [-12.267656, 8.468461], + [-12.267217, 8.46844], + [-12.266021, 8.469697], + [-12.265125, 8.470206], + [-12.263339, 8.470721], + [-12.262298, 8.47164], + [-12.26182, 8.472497], + [-12.261649, 8.472449], + [-12.261249, 8.471249], + [-12.258749, 8.46875], + [-12.255417, 8.467916], + [-12.256249, 8.465417], + [-12.254582, 8.46375], + [-12.250986, 8.464349], + [-12.250254, 8.463647], + [-12.249611, 8.462888], + [-12.248749, 8.463749], + [-12.243749, 8.462083], + [-12.242083, 8.460416], + [-12.242916, 8.457084], + [-12.242917, 8.454584], + [-12.242082, 8.452917], + [-12.240416, 8.452917], + [-12.235416, 8.453749], + [-12.234583, 8.452083], + [-12.234582, 8.449584], + [-12.233327, 8.447073], + [-12.228861, 8.449885], + [-12.227345, 8.451365], + [-12.226593, 8.452387], + [-12.223749, 8.45125], + [-12.22125, 8.452083], + [-12.214583, 8.44875], + [-12.213749, 8.44375], + [-12.213536, 8.443964], + [-12.21355, 8.444594], + [-12.211663, 8.444526], + [-12.211716, 8.445544], + [-12.211809, 8.44569], + [-12.20875, 8.448749], + [-12.205417, 8.449583], + [-12.203749, 8.442917], + [-12.201249, 8.443749], + [-12.197083, 8.442917], + [-12.196402, 8.441555], + [-12.196639, 8.440719], + [-12.197521, 8.437388], + [-12.196419, 8.430241], + [-12.194132, 8.429961], + [-12.191205, 8.428662], + [-12.18644, 8.42739], + [-12.187082, 8.431249], + [-12.187082, 8.43375], + [-12.185416, 8.434583], + [-12.180192, 8.435236], + [-12.180191, 8.435235], + [-12.180216, 8.434706], + [-12.179881, 8.434465], + [-12.177916, 8.437083], + [-12.169583, 8.437084], + [-12.168749, 8.438749], + [-12.16625, 8.43875], + [-12.16125, 8.44125], + [-12.161249, 8.442084], + [-12.15625, 8.448749], + [-12.168749, 8.451249], + [-12.169583, 8.45125], + [-12.172572, 8.460219], + [-12.172571, 8.46022], + [-12.172456, 8.46024], + [-12.172917, 8.462083], + [-12.175416, 8.462084], + [-12.175417, 8.472083], + [-12.184582, 8.47125], + [-12.184926, 8.471421], + [-12.185402, 8.470826], + [-12.18625, 8.47125], + [-12.188336, 8.476119], + [-12.187498, 8.476564], + [-12.181893, 8.480029], + [-12.180799, 8.482011], + [-12.178289, 8.483191], + [-12.177917, 8.48375], + [-12.177917, 8.488749], + [-12.180416, 8.488749], + [-12.187081, 8.482918], + [-12.187083, 8.482918], + [-12.187916, 8.492083], + [-12.188749, 8.495416], + [-12.188975, 8.495867], + [-12.188451, 8.496668], + [-12.187784, 8.498948], + [-12.18787, 8.500109], + [-12.187584, 8.502712], + [-12.186967, 8.503915], + [-12.186671, 8.504861], + [-12.186676, 8.505008], + [-12.187917, 8.506249], + [-12.190417, 8.50625], + [-12.19625, 8.517083], + [-12.202083, 8.514584], + [-12.206363, 8.514584], + [-12.206548, 8.515187], + [-12.20745, 8.517054], + [-12.207575, 8.517444], + [-12.215416, 8.519583], + [-12.217082, 8.519584], + [-12.219583, 8.522916], + [-12.223749, 8.522916], + [-12.22375, 8.512916], + [-12.228229, 8.511637], + [-12.229098, 8.512545], + [-12.229693, 8.512806], + [-12.232083, 8.510416], + [-12.235416, 8.509584], + [-12.23625, 8.509583], + [-12.242916, 8.508749], + [-12.242917, 8.507083], + [-12.24375, 8.506249], + [-12.247916, 8.502916], + [-12.247917, 8.500416], + [-12.25125, 8.49875], + [-12.253378, 8.499282], + [-12.253267, 8.499525], + [-12.253185, 8.499766], + [-12.257082, 8.500416], + [-12.255418, 8.495417], + [-12.267082, 8.495417], + [-12.267083, 8.496249], + [-12.275416, 8.49625], + [-12.277137, 8.497541], + [-12.278463, 8.500709], + [-12.279365, 8.502089], + [-12.278972, 8.503749], + [-12.286533, 8.50375], + [-12.287019, 8.502907], + [-12.283114, 8.496142], + [-12.28271, 8.496142], + [-12.282709, 8.49614], + [-12.283091, 8.495653], + [-12.284751, 8.495575], + [-12.285937, 8.495174], + [-12.286792, 8.495235], + [-12.28833, 8.495073], + [-12.289282, 8.494754], + [-12.290161, 8.494759], + [-12.291658, 8.49354] + ] + ], + "type": "Polygon" + }, + "id": 2, + "properties": { + "cc:admin:id": ["149"], + "cc:oBld:total": 1875, + "cc:pop:fifteen-to-twenty-four": 8986.319192417608, + "cc:pop:grid3-total": 35708.79670428632, + "cc:pop:kontur-total": 48635.46845677152, + "cc:pop:men": 22375.809762241483, + "cc:pop:sixty-plus": 3053.209537126763, + "cc:pop:total": 48340.0778967365, + "cc:pop:under-five": 7723.965862812126, + "cc:pop:women": 25964.268134495018, + "cc:pop:women-fiften-to-forty-nine": 12707.71276874662, + "cc:pop:wp-total": 30629.193666218373, + "cc:pop:wp-total-UN": 35531.98617661542, + "cc:id": "2", + "cc:Name": "Ahmadiyya Muslim Hospital", + "cc:site": [-12.2231, 8.466], + "user:parentName": "Yoni", + "user:code": "OU_268246", + "user:orgUnitId": "BV4IomHvri4", + "user:level": "4", + "user:parentId": "NNE0YMCDZkO" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.214195, 8.620071], + [-13.213699, 8.618499], + [-13.2124, 8.6165], + [-13.211799, 8.616499], + [-13.211299, 8.614299], + [-13.2099, 8.611299], + [-13.209899, 8.6104], + [-13.2085, 8.608799], + [-13.208077, 8.607191], + [-13.207504, 8.607445], + [-13.20746, 8.6073], + [-13.206792, 8.60749], + [-13.206887, 8.606832], + [-13.206498, 8.605831], + [-13.206028, 8.604805], + [-13.205407, 8.60487], + [-13.205133, 8.604828], + [-13.205075, 8.605153], + [-13.204972, 8.6056], + [-13.205243, 8.607609], + [-13.204562, 8.607591], + [-13.204222, 8.607563], + [-13.203728, 8.607492], + [-13.202983, 8.60734], + [-13.202606, 8.608884], + [-13.201885, 8.608586], + [-13.201195, 8.608314], + [-13.200811, 8.608245], + [-13.200808, 8.60826], + [-13.200156, 8.609916], + [-13.198143, 8.611191], + [-13.197625, 8.61117], + [-13.197498, 8.610921], + [-13.196613, 8.610729], + [-13.195398, 8.610804], + [-13.194941, 8.610489], + [-13.194561, 8.61125], + [-13.19409, 8.61231], + [-13.194107, 8.612646], + [-13.194982, 8.612666], + [-13.195899, 8.612696], + [-13.199348, 8.61285], + [-13.199349, 8.612851], + [-13.198427, 8.614721], + [-13.197991, 8.614372], + [-13.197371, 8.614245], + [-13.197169, 8.613957], + [-13.196668, 8.613805], + [-13.195891, 8.614166], + [-13.195274, 8.613809], + [-13.194299, 8.613671], + [-13.192381, 8.61308], + [-13.19213, 8.612814], + [-13.190392, 8.612774], + [-13.189948, 8.612756], + [-13.19616, 8.614567], + [-13.195741, 8.615809], + [-13.193543, 8.61521], + [-13.194582, 8.61625], + [-13.194583, 8.618749], + [-13.195417, 8.618749], + [-13.198749, 8.617917], + [-13.200417, 8.619583], + [-13.202917, 8.61875], + [-13.208749, 8.619583], + [-13.211249, 8.621249], + [-13.211463, 8.621144], + [-13.21167, 8.621365], + [-13.211831, 8.621912], + [-13.211045, 8.621958], + [-13.211195, 8.622238], + [-13.21244, 8.622607], + [-13.212846, 8.622468], + [-13.212991, 8.622244], + [-13.212927, 8.621928], + [-13.21196, 8.620895], + [-13.212116, 8.620817], + [-13.212175, 8.620879], + [-13.214195, 8.620071] + ] + ], + "type": "Polygon" + }, + "id": 3, + "properties": { + "cc:admin:id": ["44"], + "cc:oBld:total": 687, + "cc:pop:fifteen-to-twenty-four": 772.4695906114301, + "cc:pop:grid3-total": 5121.965278060656, + "cc:pop:kontur-total": 5167.064911114552, + "cc:pop:men": 2049.4572485837266, + "cc:pop:sixty-plus": 264.6292503519488, + "cc:pop:total": 4268.683385141481, + "cc:pop:under-five": 689.3316358927217, + "cc:pop:women": 2219.2261365577547, + "cc:pop:women-fiften-to-forty-nine": 1080.6692660986118, + "cc:pop:wp-total": 3924.3700113653663, + "cc:pop:wp-total-UN": 4548.215373937384, + "cc:id": "3", + "cc:Name": "Air Port Centre, Lungi", + "cc:site": [-13.2027, 8.6154], + "user:parentName": "Kaffu Bullom", + "user:code": "OU_255017", + "user:orgUnitId": "qjboFI0irVu", + "user:level": "4", + "user:parentId": "vn9KJsLyP5f" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.209671, 8.399988], + [-13.205765, 8.393223], + [-13.197953, 8.393222], + [-13.194046, 8.386457], + [-13.186235, 8.386457], + [-13.184059, 8.390223], + [-13.179583, 8.389584], + [-13.176249, 8.393749], + [-13.173346, 8.393428], + [-13.169472, 8.393428], + [-13.167694, 8.396505], + [-13.167394, 8.396382], + [-13.167264, 8.396343], + [-13.167133, 8.396252], + [-13.164276, 8.398071], + [-13.164002, 8.397917], + [-13.163674, 8.397373], + [-13.162388, 8.398522], + [-13.161482, 8.397826], + [-13.159693, 8.396446], + [-13.158202, 8.395285], + [-13.158393, 8.394803], + [-13.157427, 8.394428], + [-13.157242, 8.394573], + [-13.157072, 8.394739], + [-13.156816, 8.395048], + [-13.156156, 8.394211], + [-13.155889, 8.393895], + [-13.155706, 8.39468], + [-13.154571, 8.396993], + [-13.154147, 8.398283], + [-13.153714, 8.398799], + [-13.152929, 8.399151], + [-13.152105, 8.399214], + [-13.152103, 8.399214], + [-13.151905, 8.399228], + [-13.151177, 8.399199], + [-13.150071, 8.398873], + [-13.149672, 8.398745], + [-13.148718, 8.398696], + [-13.14689, 8.399417], + [-13.146219, 8.399979], + [-13.144841, 8.400729], + [-13.144285, 8.401645], + [-13.143774, 8.401492], + [-13.14403, 8.4005], + [-13.144443, 8.400137], + [-13.14396, 8.400105], + [-13.144171, 8.399001], + [-13.14386, 8.399038], + [-13.143321, 8.398531], + [-13.142894, 8.398507], + [-13.140847, 8.399336], + [-13.140563, 8.399603], + [-13.139557, 8.402073], + [-13.139193, 8.402842], + [-13.139047, 8.403098], + [-13.138787, 8.403425], + [-13.138412, 8.403832], + [-13.138162, 8.404031], + [-13.137882, 8.404161], + [-13.137432, 8.404354], + [-13.136682, 8.404679], + [-13.13624, 8.405391], + [-13.136329, 8.406175], + [-13.13685, 8.40683], + [-13.137385, 8.407135], + [-13.1379, 8.40755], + [-13.139474, 8.408861], + [-13.139551, 8.40973], + [-13.139417, 8.410708], + [-13.138836, 8.41145], + [-13.138442, 8.411821], + [-13.138764, 8.411795], + [-13.136789, 8.415415], + [-13.132367, 8.41377], + [-13.133731, 8.418191], + [-13.130439, 8.419037], + [-13.119854, 8.415134], + [-13.118208, 8.420119], + [-13.130439, 8.427364], + [-13.140975, 8.4268], + [-13.143021, 8.430105], + [-13.143046, 8.430063], + [-13.143047, 8.430063], + [-13.146857, 8.432481], + [-13.14897, 8.435279], + [-13.153083, 8.43528], + [-13.153083, 8.435281], + [-13.152433, 8.435807], + [-13.152485, 8.436225], + [-13.153285, 8.436004], + [-13.153646, 8.436144], + [-13.153534, 8.436285], + [-13.153747, 8.436414], + [-13.15421, 8.436534], + [-13.154344, 8.436145], + [-13.155163, 8.436155], + [-13.155736, 8.436724], + [-13.15576, 8.438064], + [-13.156607, 8.439233], + [-13.156636, 8.439501], + [-13.157243, 8.439447], + [-13.15729, 8.436782], + [-13.156806, 8.435313], + [-13.157331, 8.434405], + [-13.157334, 8.434304], + [-13.157335, 8.434304], + [-13.157366, 8.434349], + [-13.157904, 8.435139], + [-13.158864, 8.434691], + [-13.158785, 8.434472], + [-13.158141, 8.434146], + [-13.158141, 8.434145], + [-13.159379, 8.433153], + [-13.159213, 8.433067], + [-13.159232, 8.433031], + [-13.160047, 8.432582], + [-13.160366, 8.433115], + [-13.160676, 8.432843], + [-13.161071, 8.433202], + [-13.161429, 8.433477], + [-13.161899, 8.433023], + [-13.163055, 8.432416], + [-13.162887, 8.431904], + [-13.162953, 8.43187], + [-13.163601, 8.431621], + [-13.164287, 8.431246], + [-13.164548, 8.432005], + [-13.165122, 8.43166], + [-13.165491, 8.4314], + [-13.165736, 8.431134], + [-13.166199, 8.430725], + [-13.166831, 8.430352], + [-13.1674, 8.430012], + [-13.168418, 8.429104], + [-13.168772, 8.428798], + [-13.168964, 8.428641], + [-13.169505, 8.428173], + [-13.169782, 8.427918], + [-13.170157, 8.427737], + [-13.171373, 8.429839], + [-13.172396, 8.429311], + [-13.173354, 8.429135], + [-13.173335, 8.429242], + [-13.173478, 8.429786], + [-13.173629, 8.430349], + [-13.173026, 8.430712], + [-13.178749, 8.430712], + [-13.17875, 8.429583], + [-13.182916, 8.42625], + [-13.185417, 8.431249], + [-13.188749, 8.43125], + [-13.189583, 8.430416], + [-13.192916, 8.429583], + [-13.192917, 8.427084], + [-13.19487, 8.427083], + [-13.195128, 8.427555], + [-13.196154, 8.427852], + [-13.196643, 8.428633], + [-13.196913, 8.429552], + [-13.197916, 8.430789], + [-13.197977, 8.430743], + [-13.198597, 8.430291], + [-13.19894, 8.430582], + [-13.199727, 8.430254], + [-13.19887, 8.429808], + [-13.198869, 8.429512], + [-13.198437, 8.428924], + [-13.199307, 8.428013], + [-13.199222, 8.427828], + [-13.199928, 8.426745], + [-13.199939, 8.426747], + [-13.199972, 8.42668], + [-13.200322, 8.426398], + [-13.199506, 8.426024], + [-13.199191, 8.425521], + [-13.198685, 8.424649], + [-13.198353, 8.424362], + [-13.197239, 8.424331], + [-13.196777, 8.424124], + [-13.196346, 8.423654], + [-13.199582, 8.420417], + [-13.200416, 8.420416], + [-13.199582, 8.415417], + [-13.19875, 8.413749], + [-13.19875, 8.41125], + [-13.202083, 8.407917], + [-13.206436, 8.407916], + [-13.205766, 8.406753], + [-13.209671, 8.399988] + ] + ], + "type": "Polygon" + }, + "id": 4, + "properties": { + "cc:admin:id": ["112"], + "cc:oBld:total": 13836, + "cc:pop:fifteen-to-twenty-four": 45159.58077050645, + "cc:pop:grid3-total": 81374.3512639109, + "cc:pop:kontur-total": 191882.45496648015, + "cc:pop:men": 96787.59003622147, + "cc:pop:sixty-plus": 15300.12362733603, + "cc:pop:total": 197191.38097233692, + "cc:pop:under-five": 22692.179694740855, + "cc:pop:women": 100403.79093611553, + "cc:pop:women-fiften-to-forty-nine": 53710.58911463276, + "cc:pop:wp-total": 148926.35702440323, + "cc:pop:wp-total-UN": 172685.2863166641, + "cc:id": "4", + "cc:Name": "Allen Town Health Post", + "cc:site": [-13.155, 8.4176], + "user:parentName": "Freetown", + "user:code": "OU_278337", + "user:orgUnitId": "kbGqmM6ZWWV", + "user:level": "4", + "user:parentId": "C9uduqDZr9d" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.227221, 8.420286], + [-13.22139, 8.420285], + [-13.217484, 8.41352], + [-13.215984, 8.413519], + [-13.215416, 8.41125], + [-13.211249, 8.407917], + [-13.202082, 8.407917], + [-13.19875, 8.41125], + [-13.19875, 8.413749], + [-13.199582, 8.415417], + [-13.200416, 8.420416], + [-13.199583, 8.420417], + [-13.196346, 8.423654], + [-13.196777, 8.424124], + [-13.197239, 8.424331], + [-13.198353, 8.424362], + [-13.198685, 8.424649], + [-13.199191, 8.425521], + [-13.199507, 8.426024], + [-13.200321, 8.426397], + [-13.199972, 8.42668], + [-13.19994, 8.426747], + [-13.199928, 8.426745], + [-13.199222, 8.427828], + [-13.199307, 8.428014], + [-13.198437, 8.428925], + [-13.198869, 8.429511], + [-13.19887, 8.429807], + [-13.199726, 8.430255], + [-13.19894, 8.430582], + [-13.198597, 8.430291], + [-13.197915, 8.430789], + [-13.196913, 8.429552], + [-13.196643, 8.428633], + [-13.196153, 8.427852], + [-13.195128, 8.427556], + [-13.194869, 8.427084], + [-13.192917, 8.427084], + [-13.192916, 8.429583], + [-13.189583, 8.430417], + [-13.18875, 8.43125], + [-13.189583, 8.432084], + [-13.190416, 8.437916], + [-13.189583, 8.440416], + [-13.187082, 8.439584], + [-13.182917, 8.439583], + [-13.182916, 8.438846], + [-13.182834, 8.438798], + [-13.17969, 8.444244], + [-13.182658, 8.449387], + [-13.182313, 8.449494], + [-13.182097, 8.449517], + [-13.181342, 8.449973], + [-13.181012, 8.450889], + [-13.180684, 8.451083], + [-13.180609, 8.451651], + [-13.180616, 8.452558], + [-13.18046, 8.452767], + [-13.180342, 8.452843], + [-13.17923, 8.453451], + [-13.178554, 8.453579], + [-13.176623, 8.453014], + [-13.175802, 8.452914], + [-13.174819, 8.452949], + [-13.174047, 8.453751], + [-13.173831, 8.454299], + [-13.174094, 8.454729], + [-13.174946, 8.454388], + [-13.175466, 8.454317], + [-13.175371, 8.454917], + [-13.174482, 8.455482], + [-13.172825, 8.45654], + [-13.17314, 8.457122], + [-13.17319, 8.457235], + [-13.17336, 8.45753], + [-13.173412, 8.457603], + [-13.173525, 8.457843], + [-13.17366, 8.458059], + [-13.175098, 8.457502], + [-13.175409, 8.458219], + [-13.175554, 8.4585], + [-13.175653, 8.458673], + [-13.175959, 8.459094], + [-13.176502, 8.460143], + [-13.176537, 8.4602], + [-13.177559, 8.46077], + [-13.177752, 8.460848], + [-13.177675, 8.460995], + [-13.176894, 8.462079], + [-13.176516, 8.461775], + [-13.175729, 8.462588], + [-13.175703, 8.463101], + [-13.176099, 8.463469], + [-13.177185, 8.46277], + [-13.17742, 8.46246], + [-13.178171, 8.463079], + [-13.178192, 8.463058], + [-13.178448, 8.463308], + [-13.178906, 8.46362], + [-13.179204, 8.463855], + [-13.179594, 8.464175], + [-13.179729, 8.464322], + [-13.179994, 8.46452], + [-13.180285, 8.464761], + [-13.180972, 8.463634], + [-13.181572, 8.462988], + [-13.181954, 8.462533], + [-13.182524, 8.462194], + [-13.183153, 8.461189], + [-13.183324, 8.46093], + [-13.183492, 8.460683], + [-13.183538, 8.46059], + [-13.184209, 8.458886], + [-13.184954, 8.459284], + [-13.18537, 8.459647], + [-13.18627, 8.458651], + [-13.186817, 8.45917], + [-13.187464, 8.45879], + [-13.187756, 8.457755], + [-13.188142, 8.457135], + [-13.188764, 8.456894], + [-13.188839, 8.457167], + [-13.188696, 8.457294], + [-13.189241, 8.4578], + [-13.189578, 8.458613], + [-13.190202, 8.458682], + [-13.190918, 8.457897], + [-13.191061, 8.458229], + [-13.190915, 8.459357], + [-13.190935, 8.459634], + [-13.191142, 8.459723], + [-13.191833, 8.459656], + [-13.192296, 8.459869], + [-13.192418, 8.460075], + [-13.191713, 8.460789], + [-13.190927, 8.461423], + [-13.191496, 8.461784], + [-13.191712, 8.46242], + [-13.192246, 8.462629], + [-13.210832, 8.432304], + [-13.227221, 8.420286] + ] + ], + "type": "Polygon" + }, + "id": 5, + "properties": { + "cc:admin:id": ["112"], + "cc:oBld:total": 3963, + "cc:pop:fifteen-to-twenty-four": 11543.527751119696, + "cc:pop:grid3-total": 37039.899364867495, + "cc:pop:kontur-total": 54374.93558493871, + "cc:pop:men": 24871.780629992223, + "cc:pop:sixty-plus": 3905.9309789921585, + "cc:pop:total": 50478.679908679595, + "cc:pop:under-five": 5801.865000521303, + "cc:pop:women": 25606.899278687382, + "cc:pop:women-fiften-to-forty-nine": 13676.687213459507, + "cc:pop:wp-total": 34826.481514947045, + "cc:pop:wp-total-UN": 40372.84389959109, + "cc:id": "5", + "cc:Name": "Approved School CHP", + "cc:site": [-13.178, 8.4613], + "user:parentName": "Freetown", + "user:code": "OU_278314", + "user:orgUnitId": "eoYV2p74eVz", + "user:level": "4", + "user:parentId": "C9uduqDZr9d" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.2284, 8.449658], + [-13.227606, 8.448642], + [-13.227858, 8.448225], + [-13.227342, 8.447778], + [-13.226813, 8.447388], + [-13.226319, 8.447029], + [-13.226216, 8.447189], + [-13.225804, 8.447802], + [-13.22494, 8.44705], + [-13.224865, 8.446454], + [-13.223594, 8.446299], + [-13.222806, 8.446336], + [-13.221977, 8.446076], + [-13.220385, 8.444883], + [-13.219762, 8.444519], + [-13.219921, 8.444059], + [-13.220015, 8.443804], + [-13.219671, 8.443187], + [-13.219461, 8.44243], + [-13.219117, 8.442212], + [-13.219244, 8.441807], + [-13.219163, 8.441421], + [-13.218797, 8.440897], + [-13.217718, 8.440433], + [-13.21706, 8.440351], + [-13.217148, 8.440018], + [-13.215607, 8.440008], + [-13.214853, 8.439639], + [-13.2143, 8.440196], + [-13.213771, 8.441075], + [-13.213745, 8.441544], + [-13.213712, 8.442119], + [-13.214068, 8.442812], + [-13.214431, 8.444557], + [-13.215326, 8.445233], + [-13.216476, 8.445229], + [-13.216477, 8.44523], + [-13.21647, 8.44538], + [-13.216336, 8.446649], + [-13.216267, 8.448702], + [-13.216035, 8.449054], + [-13.215367, 8.449571], + [-13.215394, 8.450035], + [-13.215276, 8.450623], + [-13.215292, 8.450677], + [-13.215055, 8.453441], + [-13.215323, 8.453507], + [-13.215348, 8.45355], + [-13.215617, 8.45444], + [-13.215645, 8.454502], + [-13.216429, 8.454289], + [-13.21672, 8.454962], + [-13.21603, 8.455259], + [-13.216174, 8.455539], + [-13.216836, 8.457127], + [-13.216946, 8.457431], + [-13.217614, 8.458768], + [-13.217772, 8.459394], + [-13.21728, 8.459686], + [-13.215697, 8.459404], + [-13.215358, 8.460405], + [-13.215258, 8.460868], + [-13.215063, 8.461554], + [-13.214924, 8.462002], + [-13.214802, 8.46234], + [-13.214707, 8.462513], + [-13.213577, 8.462042], + [-13.213014, 8.463737], + [-13.213006, 8.463802], + [-13.212416, 8.464533], + [-13.211993, 8.464118], + [-13.211661, 8.464607], + [-13.211155, 8.465849], + [-13.211209, 8.468622], + [-13.210874, 8.469419], + [-13.210812, 8.469398], + [-13.210456, 8.469237], + [-13.210114, 8.46856], + [-13.209414, 8.467723], + [-13.209128, 8.467785], + [-13.208811, 8.468205], + [-13.208374, 8.468548], + [-13.208155, 8.470071], + [-13.208251, 8.471407], + [-13.208078, 8.471851], + [-13.208076, 8.471851], + [-13.207343, 8.470849], + [-13.207015, 8.470893], + [-13.206961, 8.470931], + [-13.206974, 8.47095], + [-13.207134, 8.471157], + [-13.207015, 8.472239], + [-13.206851, 8.472525], + [-13.207277, 8.472903], + [-13.207208, 8.47451], + [-13.208265, 8.476333], + [-13.208266, 8.476333], + [-13.208655, 8.476068], + [-13.208756, 8.475997], + [-13.209047, 8.475812], + [-13.209724, 8.475597], + [-13.210288, 8.474919], + [-13.211139, 8.475449], + [-13.211876, 8.476283], + [-13.212343, 8.477391], + [-13.21227, 8.477723], + [-13.212636, 8.478272], + [-13.212422, 8.478384], + [-13.212183, 8.478491], + [-13.211474, 8.478778], + [-13.211652, 8.479318], + [-13.212048, 8.480691], + [-13.212185, 8.481067], + [-13.213946, 8.480075], + [-13.214394, 8.479956], + [-13.21493, 8.481452], + [-13.215714, 8.481842], + [-13.216069, 8.481595], + [-13.217042, 8.481344], + [-13.217505, 8.480975], + [-13.217647, 8.480419], + [-13.217649, 8.480418], + [-13.218969, 8.481319], + [-13.219788, 8.481613], + [-13.220084, 8.481825], + [-13.220523, 8.48247], + [-13.220617, 8.482789], + [-13.219493, 8.483095], + [-13.219461, 8.483057], + [-13.219025, 8.482571], + [-13.218633, 8.482192], + [-13.218748, 8.481869], + [-13.218233, 8.481565], + [-13.217759, 8.482201], + [-13.217229, 8.483383], + [-13.217782, 8.483874], + [-13.218335, 8.484247], + [-13.218263, 8.484447], + [-13.218714, 8.484562], + [-13.21879, 8.484246], + [-13.218903, 8.483873], + [-13.219537, 8.484027], + [-13.219985, 8.484181], + [-13.221404, 8.484895], + [-13.221269, 8.485249], + [-13.221116, 8.485637], + [-13.221665, 8.485861], + [-13.221987, 8.485968], + [-13.222106, 8.486012], + [-13.223352, 8.486514], + [-13.223443, 8.486275], + [-13.224018, 8.486309], + [-13.224145, 8.485878], + [-13.224217, 8.485648], + [-13.224307, 8.485671], + [-13.224499, 8.485319], + [-13.224737, 8.484956], + [-13.224856, 8.48478], + [-13.225093, 8.484393], + [-13.225267, 8.483946], + [-13.225451, 8.483549], + [-13.225752, 8.482884], + [-13.225943, 8.482334], + [-13.226159, 8.481784], + [-13.226968, 8.482067], + [-13.227064, 8.481792], + [-13.225716, 8.480176], + [-13.225477, 8.479533], + [-13.225151, 8.479179], + [-13.225063, 8.47836], + [-13.225089, 8.478337], + [-13.225532, 8.478801], + [-13.225876, 8.478866], + [-13.226359, 8.478444], + [-13.22744, 8.477976], + [-13.227904, 8.477375], + [-13.227305, 8.476382], + [-13.227194, 8.476138], + [-13.227158, 8.476016], + [-13.2271, 8.476003], + [-13.227138, 8.475942], + [-13.22704, 8.474681], + [-13.227106, 8.474382], + [-13.227395, 8.473708], + [-13.227482, 8.472572], + [-13.227571, 8.47221], + [-13.227211, 8.471945], + [-13.226809, 8.471507], + [-13.225802, 8.471252], + [-13.22479, 8.470714], + [-13.224258, 8.470162], + [-13.223906, 8.469759], + [-13.224761, 8.46885], + [-13.224497, 8.468238], + [-13.225081, 8.468041], + [-13.225441, 8.467686], + [-13.224802, 8.467045], + [-13.224605, 8.467076], + [-13.223954, 8.467922], + [-13.223502, 8.467594], + [-13.222991, 8.467956], + [-13.222768, 8.467497], + [-13.223126, 8.467277], + [-13.223467, 8.467045], + [-13.223706, 8.465363], + [-13.22292, 8.465499], + [-13.22258, 8.465635], + [-13.221989, 8.465798], + [-13.221331, 8.464398], + [-13.220633, 8.463395], + [-13.221065, 8.46312], + [-13.2215, 8.462239], + [-13.221236, 8.461903], + [-13.220709, 8.46186], + [-13.220056, 8.461845], + [-13.219416, 8.461649], + [-13.219036, 8.461732], + [-13.218897, 8.461569], + [-13.219144, 8.460892], + [-13.219272, 8.460523], + [-13.219452, 8.459954], + [-13.219592, 8.459544], + [-13.220099, 8.458093], + [-13.220303, 8.457475], + [-13.220398, 8.457318], + [-13.220676, 8.4571], + [-13.221091, 8.457046], + [-13.221682, 8.456363], + [-13.222031, 8.455503], + [-13.222006, 8.45545], + [-13.222142, 8.454158], + [-13.222136, 8.453734], + [-13.221761, 8.452832], + [-13.220159, 8.452486], + [-13.2203, 8.452005], + [-13.220936, 8.451159], + [-13.221191, 8.451259], + [-13.221654, 8.450661], + [-13.222443, 8.450818], + [-13.223239, 8.451664], + [-13.223582, 8.452923], + [-13.224045, 8.452964], + [-13.22529, 8.452357], + [-13.226776, 8.451068], + [-13.227013, 8.450987], + [-13.227702, 8.451011], + [-13.228299, 8.451184], + [-13.228042, 8.44982], + [-13.2284, 8.449658] + ] + ], + "type": "Polygon" + }, + "id": 6, + "properties": { + "cc:admin:id": ["26"], + "cc:oBld:total": 5871, + "cc:pop:fifteen-to-twenty-four": 9780.389705371723, + "cc:pop:grid3-total": 69896.1962775521, + "cc:pop:kontur-total": 67538.97186513591, + "cc:pop:men": 21473.042301063084, + "cc:pop:sixty-plus": 3325.7629072332306, + "cc:pop:total": 42660.25194365289, + "cc:pop:under-five": 4925.5556982977405, + "cc:pop:women": 21187.20964258979, + "cc:pop:women-fiften-to-forty-nine": 11345.999729329176, + "cc:pop:wp-total": 31603.85571539408, + "cc:pop:wp-total-UN": 36639.2781016322, + "cc:id": "6", + "cc:Name": "Arab Clinic", + "cc:site": [-13.221, 8.4832], + "user:parentName": "Gbense", + "user:code": "OU_233378", + "user:orgUnitId": "nq7F0t1Pz6t", + "user:level": "4", + "user:parentId": "TQkG0sX9nca" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.426134, 8.348222], + [-11.423273, 8.347637], + [-11.419454, 8.34601], + [-11.418749, 8.353749], + [-11.414582, 8.357083], + [-11.408749, 8.357083], + [-11.40125, 8.35625], + [-11.397917, 8.352084], + [-11.397916, 8.347917], + [-11.39375, 8.347916], + [-11.39085, 8.345597], + [-11.391109, 8.347405], + [-11.391029, 8.347907], + [-11.387916, 8.345417], + [-11.383725, 8.345416], + [-11.380167, 8.339256], + [-11.372792, 8.339255], + [-11.372441, 8.337696], + [-11.371843, 8.336415], + [-11.367023, 8.336415], + [-11.365507, 8.33904], + [-11.365416, 8.339584], + [-11.362083, 8.342083], + [-11.36125, 8.342084], + [-11.357916, 8.337917], + [-11.356249, 8.337916], + [-11.353749, 8.335417], + [-11.345418, 8.336249], + [-11.345418, 8.336248], + [-11.349582, 8.330416], + [-11.347916, 8.32625], + [-11.33875, 8.331249], + [-11.338749, 8.327083], + [-11.333948, 8.322281], + [-11.333617, 8.322433], + [-11.332917, 8.322084], + [-11.332916, 8.320417], + [-11.330821, 8.319893], + [-11.330623, 8.320324], + [-11.329983, 8.320299], + [-11.329342, 8.32028], + [-11.3303, 8.318806], + [-11.33075, 8.317625], + [-11.330752, 8.317625], + [-11.331011, 8.317912], + [-11.330894, 8.317376], + [-11.331091, 8.316901], + [-11.331428, 8.316368], + [-11.331479, 8.316023], + [-11.331418, 8.31478], + [-11.331234, 8.314023], + [-11.330417, 8.31375], + [-11.330742, 8.313098], + [-11.330275, 8.312403], + [-11.329195, 8.311442], + [-11.328865, 8.310731], + [-11.329622, 8.307575], + [-11.329709, 8.306651], + [-11.329959, 8.306039], + [-11.329934, 8.30578], + [-11.329888, 8.305968], + [-11.329709, 8.30583], + [-11.329575, 8.306055], + [-11.329574, 8.306054], + [-11.329796, 8.305267], + [-11.32983, 8.303006], + [-11.329999, 8.302483], + [-11.330041, 8.301169], + [-11.330124, 8.301083], + [-11.330485, 8.301748], + [-11.330828, 8.300963], + [-11.330869, 8.300198], + [-11.330603, 8.300413], + [-11.330428, 8.300366], + [-11.330284, 8.300604], + [-11.330148, 8.300423], + [-11.330884, 8.298549], + [-11.331078, 8.29857], + [-11.331086, 8.298905], + [-11.331255, 8.298764], + [-11.331917, 8.296144], + [-11.332534, 8.294865], + [-11.332507, 8.291675], + [-11.333312, 8.286514], + [-11.333949, 8.284468], + [-11.334511, 8.281115], + [-11.334737, 8.280417], + [-11.32875, 8.280417], + [-11.324583, 8.283749], + [-11.324045, 8.290188], + [-11.322347, 8.289827], + [-11.322084, 8.289885], + [-11.322083, 8.289884], + [-11.322082, 8.28375], + [-11.30625, 8.284584], + [-11.308749, 8.297916], + [-11.306249, 8.299583], + [-11.300149, 8.299583], + [-11.298048, 8.295947], + [-11.292613, 8.295946], + [-11.29125, 8.294584], + [-11.291608, 8.289917], + [-11.286083, 8.289917], + [-11.284582, 8.287917], + [-11.281344, 8.287512], + [-11.281533, 8.287182], + [-11.277628, 8.280417], + [-11.281533, 8.273651], + [-11.288805, 8.27365], + [-11.288749, 8.272917], + [-11.285416, 8.272917], + [-11.279583, 8.27375], + [-11.269583, 8.280416], + [-11.269583, 8.283749], + [-11.271249, 8.28625], + [-11.267582, 8.289916], + [-11.262195, 8.289916], + [-11.258288, 8.283152], + [-11.254336, 8.283152], + [-11.2521, 8.287799], + [-11.249799, 8.2906], + [-11.247099, 8.2931], + [-11.2434, 8.2955], + [-11.2409, 8.298799], + [-11.2386, 8.300899], + [-11.234199, 8.3033], + [-11.2314, 8.305399], + [-11.229299, 8.3073], + [-11.2268, 8.309999], + [-11.2247, 8.312899], + [-11.2229, 8.316599], + [-11.221399, 8.3186], + [-11.219099, 8.3203], + [-11.2129, 8.322299], + [-11.2079, 8.323], + [-11.211299, 8.337199], + [-11.213499, 8.342699], + [-11.218499, 8.349899], + [-11.2218, 8.355], + [-11.228999, 8.363599], + [-11.234, 8.3709], + [-11.2396, 8.377], + [-11.2461, 8.382599], + [-11.252999, 8.383899], + [-11.257699, 8.384099], + [-11.260899, 8.3835], + [-11.263299, 8.381899], + [-11.2649, 8.379899], + [-11.266599, 8.3762], + [-11.2685, 8.372599], + [-11.2701, 8.368599], + [-11.2738, 8.3614], + [-11.2768, 8.358599], + [-11.283399, 8.3552], + [-11.287999, 8.3542], + [-11.291, 8.3541], + [-11.3084, 8.3541], + [-11.312499, 8.354199], + [-11.315899, 8.354599], + [-11.3181, 8.3553], + [-11.321699, 8.357199], + [-11.3249, 8.3586], + [-11.3292, 8.361], + [-11.335999, 8.364299], + [-11.338199, 8.364999], + [-11.3417, 8.3654], + [-11.354299, 8.365499], + [-11.357399, 8.3654], + [-11.3614, 8.364799], + [-11.3668, 8.362599], + [-11.3726, 8.360999], + [-11.377899, 8.3588], + [-11.3818, 8.357999], + [-11.3879, 8.357799], + [-11.417999, 8.357799], + [-11.422916, 8.358088], + [-11.422917, 8.352084], + [-11.426134, 8.348222] + ] + ], + "type": "Polygon" + }, + "id": 7, + "properties": { + "cc:admin:id": ["142"], + "cc:oBld:total": 1203, + "cc:pop:fifteen-to-twenty-four": 1878.8640098192798, + "cc:pop:grid3-total": 11198.92436842934, + "cc:pop:kontur-total": 9566.141223190172, + "cc:pop:men": 5051.165408992373, + "cc:pop:sixty-plus": 601.6842265878842, + "cc:pop:total": 9951.58212839889, + "cc:pop:under-five": 1551.6652408588725, + "cc:pop:women": 4900.41671940652, + "cc:pop:women-fiften-to-forty-nine": 2463.579984705586, + "cc:pop:wp-total": 9349.995400631034, + "cc:pop:wp-total-UN": 10842.91915691694, + "cc:id": "7", + "cc:Name": "Baama CHC", + "cc:site": [-11.3329, 8.3588], + "user:parentName": "Wandor", + "user:code": "OU_222681", + "user:orgUnitId": "r5WWF9WDzoa", + "user:level": "4", + "user:parentId": "X7dWcGerQIm" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [-13.177199, 8.815499], + [-13.176999, 8.8119], + [-13.1671, 8.8073], + [-13.162599, 8.806099], + [-13.157899, 8.8057], + [-13.1521, 8.805899], + [-13.147, 8.8087], + [-13.1468, 8.813899], + [-13.151499, 8.8213], + [-13.151999, 8.824499], + [-13.151499, 8.827499], + [-13.149099, 8.829999], + [-13.145099, 8.831399], + [-13.141799, 8.831399], + [-13.135999, 8.829699], + [-13.121199, 8.8259], + [-13.1158, 8.826099], + [-13.1097, 8.827699], + [-13.103599, 8.8285], + [-13.073199, 8.8289], + [-13.068599, 8.8293], + [-13.059599, 8.8317], + [-13.046199, 8.8331], + [-13.038699, 8.835], + [-13.030299, 8.8367], + [-13.024199, 8.8385], + [-13.013499, 8.8423], + [-12.9837, 8.845199], + [-12.98125, 8.845284], + [-12.98125, 8.845416], + [-12.982324, 8.848101], + [-12.982467, 8.848116], + [-12.985558, 8.849582], + [-12.988322, 8.849583], + [-12.992549, 8.851777], + [-12.99694, 8.854407], + [-12.999267, 8.854904], + [-13.000497, 8.854769], + [-13.00051, 8.854679], + [-13.000511, 8.854678], + [-13.002083, 8.856249], + [-13.004582, 8.857082], + [-13.005793, 8.854665], + [-13.006026, 8.85469], + [-13.00777, 8.85444], + [-13.014808, 8.852581], + [-13.016472, 8.852249], + [-13.018703, 8.851949], + [-13.022339, 8.851677], + [-13.024674, 8.850918], + [-13.02584, 8.850644], + [-13.027083, 8.853749], + [-13.037916, 8.853749], + [-13.036515, 8.849545], + [-13.04078, 8.848186], + [-13.040918, 8.848089], + [-13.042083, 8.850416], + [-13.048103, 8.847406], + [-13.049806, 8.846944], + [-13.053721, 8.844628], + [-13.05741, 8.843319], + [-13.057917, 8.844582], + [-13.062082, 8.842917], + [-13.067917, 8.845417], + [-13.076249, 8.847082], + [-13.07625, 8.845405], + [-13.079749, 8.846626], + [-13.08363, 8.84697], + [-13.086736, 8.846884], + [-13.088749, 8.846487], + [-13.08875, 8.84375], + [-13.090417, 8.842917], + [-13.094554, 8.842917], + [-13.095147, 8.843391], + [-13.095751, 8.844123], + [-13.097562, 8.844425], + [-13.098653, 8.844323], + [-13.098749, 8.84375], + [-13.098725, 8.84365], + [-13.098726, 8.843649], + [-13.100624, 8.843649], + [-13.102178, 8.844814], + [-13.10524, 8.845461], + [-13.107569, 8.845763], + [-13.109582, 8.846004], + [-13.109583, 8.852661], + [-13.111449, 8.852601], + [-13.117917, 8.845417], + [-13.121973, 8.843388], + [-13.123458, 8.84349], + [-13.124888, 8.843566], + [-13.128199, 8.845459], + [-13.1282, 8.844], + [-13.1285, 8.8435], + [-13.130399, 8.843199], + [-13.1321, 8.8421], + [-13.135099, 8.841499], + [-13.1354, 8.841], + [-13.143199, 8.841], + [-13.1449, 8.8418], + [-13.149299, 8.843199], + [-13.1499, 8.843799], + [-13.158999, 8.8438], + [-13.1601, 8.844599], + [-13.162399, 8.8446], + [-13.1632, 8.845699], + [-13.1643, 8.8457], + [-13.1674, 8.847899], + [-13.169, 8.8482], + [-13.171, 8.850399], + [-13.175399, 8.850699], + [-13.176499, 8.849899], + [-13.176799, 8.8485], + [-13.1751, 8.8471], + [-13.175099, 8.8463], + [-13.173999, 8.845699], + [-13.172899, 8.8432], + [-13.172399, 8.843199], + [-13.171299, 8.8415], + [-13.1699, 8.840999], + [-13.170199, 8.840099], + [-13.17, 8.8369], + [-13.168899, 8.833099], + [-13.1681, 8.8289], + [-13.1689, 8.825], + [-13.170999, 8.8217], + [-13.177199, 8.815499] + ] + ], + [ + [ + [-13.1446, 8.845999], + [-13.144599, 8.844], + [-13.143799, 8.843799], + [-13.1388, 8.8435], + [-13.138799, 8.8432], + [-13.135399, 8.8432], + [-13.1338, 8.844], + [-13.1335, 8.845699], + [-13.1349, 8.847099], + [-13.1365, 8.8465], + [-13.1388, 8.8468], + [-13.141799, 8.8468], + [-13.1446, 8.845999] + ] + ], + [ + [ + [-13.152399, 8.860999], + [-13.151799, 8.859], + [-13.1507, 8.8576], + [-13.149599, 8.857399], + [-13.147099, 8.8551], + [-13.1438, 8.855099], + [-13.142099, 8.854], + [-13.1401, 8.853999], + [-13.1385, 8.8535], + [-13.1385, 8.854599], + [-13.139899, 8.8557], + [-13.1404, 8.856799], + [-13.1426, 8.8579], + [-13.1438, 8.859899], + [-13.148499, 8.862599], + [-13.151799, 8.862399], + [-13.152399, 8.860999] + ] + ], + [ + [ + [-13.154299, 8.852099], + [-13.154299, 8.851], + [-13.1526, 8.850699], + [-13.151799, 8.849599], + [-13.149899, 8.848799], + [-13.1471, 8.848499], + [-13.146199, 8.8479], + [-13.1432, 8.8482], + [-13.1421, 8.850399], + [-13.143499, 8.8504], + [-13.1457, 8.851499], + [-13.1476, 8.8515], + [-13.1496, 8.852599], + [-13.153199, 8.8526], + [-13.154299, 8.852099] + ] + ], + [ + [ + [-13.157399, 8.8546], + [-13.155999, 8.8535], + [-13.151, 8.8535], + [-13.1507, 8.854899], + [-13.1529, 8.8563], + [-13.155699, 8.857099], + [-13.157099, 8.8571], + [-13.157399, 8.8546] + ] + ], + [ + [ + [-13.158499, 8.8593], + [-13.1557, 8.8585], + [-13.154899, 8.8574], + [-13.1521, 8.8565], + [-13.1521, 8.857599], + [-13.154595, 8.859896], + [-13.1546, 8.8599], + [-13.157099, 8.860999], + [-13.158499, 8.8593] + ] + ] + ], + "type": "MultiPolygon" + }, + "id": 8, + "properties": { + "cc:admin:id": ["89"], + "cc:oBld:total": 13, + "cc:pop:fifteen-to-twenty-four": 1375.4612376646191, + "cc:pop:grid3-total": 10255.59517282475, + "cc:pop:kontur-total": 6935.259100174771, + "cc:pop:men": 3689.890782717013, + "cc:pop:sixty-plus": 408.9123329784164, + "cc:pop:total": 7801.640851278573, + "cc:pop:under-five": 1186.6250572495817, + "cc:pop:women": 4111.7500685615605, + "cc:pop:women-fiften-to-forty-nine": 2007.3575354565169, + "cc:pop:wp-total": 9543.960379246078, + "cc:pop:wp-total-UN": 11074.221185923641, + "cc:id": "8", + "cc:Name": "Babara CHC", + "cc:site": [-13.1317, 8.8295], + "user:parentName": "Lokomasama", + "user:code": "OU_254991", + "user:orgUnitId": "yMCshbaVExv", + "user:level": "4", + "user:parentId": "fRLX08WHWpL" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.912039, 9.889013], + [-11.912199, 9.8841], + [-11.910599, 9.880399], + [-11.903099, 9.871399], + [-11.9006, 9.8692], + [-11.8956, 9.8668], + [-11.8934, 9.864899], + [-11.8913, 9.861], + [-11.8903, 9.8571], + [-11.8901, 9.852899], + [-11.890399, 9.8485], + [-11.893199, 9.8364], + [-11.8932, 9.8297], + [-11.891999, 9.824799], + [-11.890699, 9.821599], + [-11.8873, 9.8151], + [-11.8865, 9.811299], + [-11.8865, 9.805999], + [-11.888899, 9.7954], + [-11.889099, 9.7901], + [-11.888599, 9.786099], + [-11.8862, 9.7766], + [-11.885699, 9.772199], + [-11.8854, 9.764699], + [-11.8854, 9.754], + [-11.886499, 9.738599], + [-11.885399, 9.729099], + [-11.8847, 9.711], + [-11.883099, 9.7001], + [-11.878799, 9.7029], + [-11.8713, 9.709899], + [-11.8684, 9.712099], + [-11.863799, 9.7142], + [-11.8591, 9.716999], + [-11.8573, 9.7185], + [-11.8541, 9.723899], + [-11.852499, 9.7278], + [-11.8504, 9.732199], + [-11.8491, 9.738099], + [-11.847699, 9.7406], + [-11.845499, 9.7424], + [-11.841799, 9.7441], + [-11.838199, 9.7461], + [-11.834999, 9.7475], + [-11.832199, 9.7495], + [-11.8276, 9.753999], + [-11.824799, 9.7563], + [-11.821499, 9.7577], + [-11.8179, 9.758099], + [-11.815199, 9.757899], + [-11.812399, 9.757199], + [-11.805999, 9.753399], + [-11.8021, 9.7472], + [-11.8005, 9.7414], + [-11.799699, 9.739299], + [-11.798499, 9.737399], + [-11.7956, 9.7338], + [-11.7944, 9.7319], + [-11.793499, 9.728799], + [-11.793199, 9.724999], + [-11.793, 9.7173], + [-11.7923, 9.7136], + [-11.79, 9.7092], + [-11.788599, 9.706099], + [-11.7867, 9.7025], + [-11.785699, 9.698899], + [-11.785, 9.6931], + [-11.7841, 9.6905], + [-11.7809, 9.6838], + [-11.778599, 9.679399], + [-11.777799, 9.675599], + [-11.7776, 9.6635], + [-11.777399, 9.660499], + [-11.776699, 9.657799], + [-11.774699, 9.653299], + [-11.7728, 9.6465], + [-11.770699, 9.642099], + [-11.769, 9.6354], + [-11.7665, 9.6302], + [-11.765299, 9.625099], + [-11.762999, 9.619799], + [-11.762199, 9.616199], + [-11.762, 9.6046], + [-11.7613, 9.5995], + [-11.758899, 9.593699], + [-11.7582, 9.590199], + [-11.7582, 9.585799], + [-11.7588, 9.583299], + [-11.761, 9.577999], + [-11.761899, 9.5709], + [-11.762399, 9.5684], + [-11.764399, 9.5639], + [-11.765799, 9.5576], + [-11.7669, 9.555499], + [-11.7686, 9.553199], + [-11.7713, 9.550399], + [-11.7735, 9.548499], + [-11.776199, 9.5467], + [-11.7784, 9.545899], + [-11.7826, 9.544999], + [-11.7879, 9.542899], + [-11.792999, 9.5417], + [-11.795099, 9.541], + [-11.7979, 9.539099], + [-11.800799, 9.5366], + [-11.803699, 9.5334], + [-11.805499, 9.529799], + [-11.804999, 9.5263], + [-11.8025, 9.5231], + [-11.799199, 9.5207], + [-11.7966, 9.5201], + [-11.794199, 9.5207], + [-11.789299, 9.5227], + [-11.784199, 9.5233], + [-11.773499, 9.5233], + [-11.7707, 9.523599], + [-11.7681, 9.524499], + [-11.7645, 9.526299], + [-11.761399, 9.5276], + [-11.7571, 9.530099], + [-11.7529, 9.532299], + [-11.746699, 9.537], + [-11.742799, 9.5389], + [-11.7385, 9.541299], + [-11.7354, 9.542599], + [-11.7311, 9.544999], + [-11.727899, 9.5464], + [-11.7236, 9.548799], + [-11.720499, 9.5501], + [-11.7161, 9.552299], + [-11.7102, 9.553799], + [-11.704899, 9.556], + [-11.702399, 9.5567], + [-11.6969, 9.557399], + [-11.693, 9.558799], + [-11.6869, 9.561299], + [-11.6826, 9.563699], + [-11.6794, 9.564999], + [-11.676599, 9.5666], + [-11.674299, 9.5675], + [-11.6685, 9.568799], + [-11.6639, 9.571099], + [-11.663545, 9.571244], + [-11.660417, 9.57625], + [-11.66125, 9.580416], + [-11.663749, 9.582082], + [-11.66375, 9.583749], + [-11.665416, 9.584583], + [-11.665417, 9.588749], + [-11.667083, 9.587917], + [-11.677917, 9.59375], + [-11.679582, 9.603749], + [-11.66625, 9.602083], + [-11.665417, 9.603749], + [-11.671249, 9.612916], + [-11.672916, 9.614582], + [-11.66625, 9.61875], + [-11.667903, 9.620404], + [-11.669342, 9.618416], + [-11.671245, 9.618014], + [-11.673916, 9.618335], + [-11.674786, 9.61888], + [-11.675192, 9.619034], + [-11.674583, 9.622082], + [-11.677082, 9.627083], + [-11.675417, 9.633749], + [-11.677607, 9.636488], + [-11.680136, 9.640869], + [-11.676231, 9.647635], + [-11.679695, 9.653637], + [-11.679582, 9.65375], + [-11.67875, 9.660416], + [-11.68542, 9.661751], + [-11.685568, 9.664338], + [-11.68626, 9.665951], + [-11.686362, 9.666757], + [-11.683078, 9.670391], + [-11.693749, 9.66875], + [-11.696248, 9.669582], + [-11.696102, 9.669707], + [-11.696935, 9.671151], + [-11.69303, 9.677917], + [-11.696936, 9.684682], + [-11.698028, 9.684682], + [-11.699583, 9.68375], + [-11.702915, 9.686248], + [-11.699297, 9.692517], + [-11.703202, 9.699282], + [-11.702068, 9.701249], + [-11.707076, 9.70125], + [-11.705508, 9.703967], + [-11.709413, 9.710733], + [-11.705508, 9.717499], + [-11.707236, 9.720492], + [-11.717082, 9.72125], + [-11.720416, 9.725417], + [-11.719582, 9.73625], + [-11.714583, 9.739582], + [-11.709647, 9.739172], + [-11.70827, 9.741557], + [-11.710979, 9.746249], + [-11.713749, 9.74625], + [-11.715141, 9.747641], + [-11.711382, 9.754154], + [-11.715287, 9.760919], + [-11.714812, 9.761744], + [-11.721249, 9.762083], + [-11.722916, 9.764582], + [-11.722916, 9.773749], + [-11.719582, 9.777916], + [-11.710334, 9.778577], + [-11.70827, 9.782152], + [-11.710259, 9.785596], + [-11.71875, 9.78625], + [-11.722917, 9.797082], + [-11.732916, 9.797916], + [-11.732971, 9.797874], + [-11.735613, 9.802449], + [-11.735058, 9.803409], + [-11.730417, 9.802083], + [-11.730416, 9.804583], + [-11.727653, 9.810108], + [-11.727652, 9.810108], + [-11.727371, 9.809948], + [-11.72375, 9.817917], + [-11.72375, 9.820416], + [-11.725416, 9.822082], + [-11.728358, 9.821838], + [-11.725955, 9.826001], + [-11.726634, 9.827176], + [-11.736249, 9.827917], + [-11.729583, 9.847082], + [-11.725417, 9.846249], + [-11.723199, 9.844587], + [-11.723499, 9.8491], + [-11.7234, 9.8624], + [-11.723699, 9.866399], + [-11.724299, 9.868899], + [-11.7254, 9.871], + [-11.7273, 9.8732], + [-11.732599, 9.878799], + [-11.734299, 9.881699], + [-11.735, 9.885], + [-11.7353, 9.889], + [-11.735299, 9.898], + [-11.735, 9.900999], + [-11.7341, 9.903699], + [-11.730799, 9.9102], + [-11.729299, 9.9121], + [-11.7254, 9.9154], + [-11.7244, 9.9178], + [-11.7241, 9.9236], + [-11.724299, 9.935899], + [-11.724599, 9.940999], + [-11.7252, 9.9438], + [-11.7273, 9.9482], + [-11.729099, 9.954899], + [-11.731399, 9.960199], + [-11.7327, 9.9653], + [-11.7353, 9.9705], + [-11.7392, 9.9788], + [-11.7407, 9.9847], + [-11.742299, 9.995499], + [-11.7377, 9.996999], + [-11.733, 9.997799], + [-11.7305, 9.9985], + [-11.734399, 9.999899], + [-11.7348, 9.999999], + [-11.7687, 9.9974], + [-11.8287, 9.9975], + [-11.885799, 9.997499], + [-11.8914, 9.986199], + [-11.898299, 9.9457], + [-11.901699, 9.941699], + [-11.902899, 9.9369], + [-11.9026, 9.928399], + [-11.903299, 9.9186], + [-11.9021, 9.9079], + [-11.9024, 9.9025], + [-11.9035, 9.8995], + [-11.9098, 9.893699], + [-11.911999, 9.890199], + [-11.912039, 9.889013] + ] + ], + "type": "Polygon" + }, + "id": 9, + "properties": { + "cc:admin:id": ["143"], + "cc:oBld:total": 1453, + "cc:pop:fifteen-to-twenty-four": 5758.052623097601, + "cc:pop:grid3-total": 32710.232006732844, + "cc:pop:kontur-total": 31135.240883851646, + "cc:pop:men": 15102.316558089504, + "cc:pop:sixty-plus": 1931.6845592400925, + "cc:pop:total": 31382.381540299015, + "cc:pop:under-five": 5089.807019752732, + "cc:pop:women": 16280.064982209531, + "cc:pop:women-fiften-to-forty-nine": 7905.931473387315, + "cc:pop:wp-total": 27058.46643718216, + "cc:pop:wp-total-UN": 31389.617953696623, + "cc:id": "9", + "cc:Name": "Bafodia CHC", + "cc:site": [-11.732, 9.6835], + "user:parentName": "Wara Wara Bafodia", + "user:code": "OU_226243", + "user:orgUnitId": "Jiymtq0A01x", + "user:level": "4", + "user:parentId": "XrF5AvaGcuw" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.968726, 8.341249], + [-11.968999, 8.3383], + [-11.9685, 8.3357], + [-11.9665, 8.3313], + [-11.965799, 8.328499], + [-11.965499, 8.324599], + [-11.9653, 8.3155], + [-11.9646, 8.3106], + [-11.962399, 8.305299], + [-11.961699, 8.302399], + [-11.9614, 8.2994], + [-11.9612, 8.283], + [-11.9614, 8.278999], + [-11.962, 8.276299], + [-11.965499, 8.2686], + [-11.967179, 8.265661], + [-11.964436, 8.263466], + [-11.964121, 8.264022], + [-11.963343, 8.264639], + [-11.96153, 8.265461], + [-11.960618, 8.26543], + [-11.959043, 8.268157], + [-11.952388, 8.268158], + [-11.952082, 8.265417], + [-11.947916, 8.262084], + [-11.944583, 8.262084], + [-11.940416, 8.264583], + [-11.932917, 8.262084], + [-11.930417, 8.257916], + [-11.931249, 8.250417], + [-11.92125, 8.249584], + [-11.918749, 8.252083], + [-11.915417, 8.253749], + [-11.914582, 8.244584], + [-11.910416, 8.241249], + [-11.904583, 8.240417], + [-11.899403, 8.252995], + [-11.896993, 8.253199], + [-11.892916, 8.247084], + [-11.891249, 8.24625], + [-11.885417, 8.245417], + [-11.882083, 8.247916], + [-11.878326, 8.247916], + [-11.877619, 8.243423], + [-11.877811, 8.241567], + [-11.879162, 8.238107], + [-11.879546, 8.236854], + [-11.87625, 8.241249], + [-11.87375, 8.23875], + [-11.873749, 8.227084], + [-11.867083, 8.227084], + [-11.864126, 8.229449], + [-11.864849, 8.230351], + [-11.865031, 8.230862], + [-11.86502, 8.231404], + [-11.864906, 8.231694], + [-11.864692, 8.23223], + [-11.863934, 8.231777], + [-11.863015, 8.230709], + [-11.862917, 8.230418], + [-11.862916, 8.232084], + [-11.857083, 8.232917], + [-11.854583, 8.235417], + [-11.853749, 8.238749], + [-11.849583, 8.239584], + [-11.848749, 8.24125], + [-11.846249, 8.247916], + [-11.827917, 8.24375], + [-11.828176, 8.242578], + [-11.82661, 8.242579], + [-11.822703, 8.249344], + [-11.81489, 8.249344], + [-11.814842, 8.249259], + [-11.816503, 8.247183], + [-11.813623, 8.247183], + [-11.812357, 8.249374], + [-11.806249, 8.247084], + [-11.801598, 8.247748], + [-11.801499, 8.2497], + [-11.8014, 8.255799], + [-11.8017, 8.2603], + [-11.802499, 8.264699], + [-11.804199, 8.268299], + [-11.8067, 8.2714], + [-11.811799, 8.276599], + [-11.8298, 8.2936], + [-11.832499, 8.296699], + [-11.833899, 8.2996], + [-11.833799, 8.303499], + [-11.831799, 8.307899], + [-11.8268, 8.312599], + [-11.8206, 8.316399], + [-11.8178, 8.318899], + [-11.8159, 8.3219], + [-11.8144, 8.3275], + [-11.8147, 8.3309], + [-11.816, 8.3353], + [-11.817899, 8.339699], + [-11.8204, 8.3437], + [-11.8262, 8.350999], + [-11.8318, 8.346399], + [-11.8443, 8.338399], + [-11.8554, 8.334499], + [-11.8596, 8.333799], + [-11.864, 8.3337], + [-11.8682, 8.3342], + [-11.877, 8.3366], + [-11.886999, 8.338099], + [-11.8945, 8.3402], + [-11.9094, 8.3418], + [-11.917, 8.3439], + [-11.925699, 8.345899], + [-11.938099, 8.351099], + [-11.9447, 8.3531], + [-11.954299, 8.356799], + [-11.960899, 8.359899], + [-11.966499, 8.3469], + [-11.968599, 8.3426], + [-11.968726, 8.341249] + ] + ], + "type": "Polygon" + }, + "id": 10, + "properties": { + "cc:admin:id": ["48"], + "cc:oBld:total": 0, + "cc:pop:fifteen-to-twenty-four": 487.79321664485894, + "cc:pop:grid3-total": 3642.0329414779117, + "cc:pop:kontur-total": 3117.2108600315923, + "cc:pop:men": 1301.7698147434367, + "cc:pop:sixty-plus": 155.6064671621982, + "cc:pop:total": 2870.3996754334376, + "cc:pop:under-five": 449.8327007882709, + "cc:pop:women": 1568.6298606900011, + "cc:pop:women-fiften-to-forty-nine": 744.7524194709488, + "cc:pop:wp-total": 3377.779563585281, + "cc:pop:wp-total-UN": 3920.331259089113, + "cc:id": "10", + "cc:Name": "Bai Largo MCHP", + "cc:site": [-11.8752, 8.2806], + "user:parentName": "Kori", + "user:code": "OU_246994", + "user:orgUnitId": "Rll4VmTDRiE", + "user:level": "4", + "user:parentId": "nV3OkyzF4US" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.019382, 8.494246], + [-11.019399, 8.493999], + [-11.019199, 8.491299], + [-11.018199, 8.4879], + [-11.013, 8.4812], + [-11.0105, 8.4768], + [-11.008299, 8.473799], + [-11.004299, 8.469799], + [-10.9965, 8.4623], + [-10.9932, 8.4597], + [-10.989299, 8.457899], + [-10.985, 8.4555], + [-10.9818, 8.4542], + [-10.9786, 8.452], + [-10.9747, 8.4479], + [-10.971799, 8.4435], + [-10.9692, 8.445399], + [-10.9671, 8.447799], + [-10.9636, 8.454799], + [-10.963199, 8.4569], + [-10.9627, 8.463099], + [-10.961299, 8.466699], + [-10.958799, 8.4691], + [-10.9543, 8.471399], + [-10.9522, 8.473099], + [-10.9485, 8.476599], + [-10.945299, 8.4805], + [-10.943599, 8.4843], + [-10.941399, 8.4887], + [-10.940899, 8.4913], + [-10.9405, 8.496599], + [-10.9396, 8.499999], + [-10.9378, 8.503599], + [-10.936499, 8.5067], + [-10.9341, 8.510999], + [-10.932299, 8.5148], + [-10.930199, 8.5175], + [-10.925499, 8.5225], + [-10.923499, 8.5252], + [-10.921569, 8.528749], + [-10.927083, 8.52875], + [-10.932082, 8.533749], + [-10.932083, 8.534304], + [-10.932534, 8.533521], + [-10.932536, 8.533521], + [-10.934583, 8.536249], + [-10.940417, 8.535417], + [-10.944582, 8.538749], + [-10.9451, 8.540816], + [-10.945185, 8.540788], + [-10.94625, 8.542916], + [-10.952082, 8.542083], + [-10.950033, 8.537983], + [-10.950512, 8.537644], + [-10.95171, 8.53588], + [-10.953674, 8.53445], + [-10.954578, 8.533486], + [-10.956142, 8.531035], + [-10.956249, 8.530824], + [-10.95625, 8.532084], + [-10.959582, 8.540416], + [-10.95875, 8.543749], + [-10.963749, 8.545416], + [-10.975016, 8.534901], + [-10.979133, 8.534901], + [-10.981249, 8.54125], + [-10.98125, 8.543749], + [-10.99125, 8.54375], + [-10.996249, 8.547083], + [-10.997082, 8.547084], + [-10.998749, 8.547917], + [-11.000417, 8.552083], + [-11.006249, 8.552083], + [-11.009583, 8.548749], + [-11.01619, 8.547281], + [-11.016, 8.5341], + [-11.0162, 8.529899], + [-11.016699, 8.5264], + [-11.019099, 8.5208], + [-11.0195, 8.518099], + [-11.019499, 8.515299], + [-11.0189, 8.5119], + [-11.017, 8.5075], + [-11.0166, 8.5051], + [-11.017, 8.502699], + [-11.0186, 8.499199], + [-11.019199, 8.4967], + [-11.019382, 8.494246] + ] + ], + "type": "Polygon" + }, + "id": 11, + "properties": { + "cc:admin:id": ["133"], + "cc:oBld:total": 535, + "cc:pop:fifteen-to-twenty-four": 323.190691701278, + "cc:pop:grid3-total": 1715.9692158394637, + "cc:pop:kontur-total": 1479.3602638635825, + "cc:pop:men": 747.048970842804, + "cc:pop:sixty-plus": 64.21281033554857, + "cc:pop:total": 1492.1004844711904, + "cc:pop:under-five": 212.1799394797818, + "cc:pop:women": 745.0515136283865, + "cc:pop:women-fiften-to-forty-nine": 381.40350203682664, + "cc:pop:wp-total": 1371.2427751704176, + "cc:pop:wp-total-UN": 1587.168359709283, + "cc:id": "11", + "cc:Name": "Baiama CHP", + "cc:site": [-10.9677, 8.5167], + "user:parentName": "Tankoro", + "user:code": "OU_233331", + "user:orgUnitId": "XtuhRhmbrJM", + "user:level": "4", + "user:parentId": "M2qEv692lS6" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.803499, 8.0258], + [-10.792699, 8.021799], + [-10.789699, 8.019599], + [-10.787, 8.0164], + [-10.784294, 8.010744], + [-10.781577, 8.010743], + [-10.778749, 8.007917], + [-10.773749, 8.010417], + [-10.767917, 8.012083], + [-10.76083, 8.011296], + [-10.762353, 8.014041], + [-10.762083, 8.014583], + [-10.759583, 8.015417], + [-10.759582, 8.016249], + [-10.758749, 8.01625], + [-10.752917, 8.01875], + [-10.74875, 8.031249], + [-10.747083, 8.03125], + [-10.746249, 8.03375], + [-10.739583, 8.040417], + [-10.739583, 8.047916], + [-10.741416, 8.050361], + [-10.742008, 8.049171], + [-10.748749, 8.052916], + [-10.749582, 8.052917], + [-10.749583, 8.057083], + [-10.750416, 8.057917], + [-10.750417, 8.05875], + [-10.755416, 8.064584], + [-10.755417, 8.071903], + [-10.7559, 8.0721], + [-10.760399, 8.074299], + [-10.7631, 8.0749], + [-10.766, 8.075099], + [-10.778899, 8.074199], + [-10.7799, 8.070999], + [-10.783699, 8.0635], + [-10.787599, 8.0585], + [-10.7888, 8.056499], + [-10.7896, 8.053499], + [-10.789799, 8.0454], + [-10.7905, 8.0419], + [-10.7924, 8.038899], + [-10.798299, 8.0326], + [-10.803499, 8.0258] + ] + ], + "type": "Polygon" + }, + "id": 12, + "properties": { + "cc:admin:id": ["90"], + "cc:oBld:total": 733, + "cc:pop:fifteen-to-twenty-four": 1242.697445181254, + "cc:pop:grid3-total": 5888.155826113624, + "cc:pop:kontur-total": 6090.8291892371635, + "cc:pop:men": 3051.7820759649803, + "cc:pop:sixty-plus": 381.30991196325334, + "cc:pop:total": 6371.0910990637385, + "cc:pop:under-five": 1008.1343170422845, + "cc:pop:women": 3319.3090230987586, + "cc:pop:women-fiften-to-forty-nine": 1681.8266896261366, + "cc:pop:wp-total": 4736.65793870066, + "cc:pop:wp-total-UN": 5485.833046380143, + "cc:id": "12", + "cc:Name": "Baiima CHP", + "cc:site": [-10.7692, 8.034], + "user:parentName": "Mandu", + "user:code": "OU_204914", + "user:orgUnitId": "c41XRVOYNJm", + "user:level": "4", + "user:parentId": "yu4N82FFeLm" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.248799, 8.8013], + [-13.2482, 8.800699], + [-13.247899, 8.7963], + [-13.2474, 8.795699], + [-13.247399, 8.794], + [-13.2468, 8.792899], + [-13.246799, 8.7899], + [-13.2465, 8.789899], + [-13.2465, 8.7851], + [-13.2463, 8.785099], + [-13.2463, 8.776501], + [-13.2465, 8.776499], + [-13.2468, 8.771499], + [-13.2476, 8.768499], + [-13.2476, 8.766], + [-13.248199, 8.764899], + [-13.2479, 8.7607], + [-13.248499, 8.759599], + [-13.248499, 8.7579], + [-13.2479, 8.756799], + [-13.247399, 8.754], + [-13.245999, 8.752899], + [-13.245399, 8.7504], + [-13.244899, 8.749899], + [-13.244599, 8.746799], + [-13.243499, 8.7451], + [-13.242899, 8.745099], + [-13.241499, 8.7435], + [-13.2399, 8.7426], + [-13.239899, 8.741], + [-13.2382, 8.738199], + [-13.2382, 8.7274], + [-13.2379, 8.7249], + [-13.2385, 8.7221], + [-13.239599, 8.720699], + [-13.2396, 8.7179], + [-13.238199, 8.7163], + [-13.237399, 8.715999], + [-13.236299, 8.714599], + [-13.2357, 8.7101], + [-13.2365, 8.708799], + [-13.237099, 8.7068], + [-13.237099, 8.7043], + [-13.236, 8.703199], + [-13.235399, 8.7018], + [-13.234299, 8.7009], + [-13.2257, 8.7006], + [-13.222917, 8.701696], + [-13.222916, 8.702083], + [-13.217917, 8.707083], + [-13.217917, 8.707916], + [-13.218257, 8.708937], + [-13.218349, 8.708884], + [-13.220026, 8.708892], + [-13.21875, 8.712082], + [-13.223749, 8.714582], + [-13.224583, 8.714583], + [-13.227916, 8.717916], + [-13.228384, 8.717917], + [-13.226385, 8.719079], + [-13.225724, 8.71951], + [-13.224112, 8.720226], + [-13.224407, 8.720351], + [-13.224895, 8.720818], + [-13.226012, 8.721481], + [-13.22893, 8.72212], + [-13.230164, 8.722667], + [-13.230187, 8.722745], + [-13.227585, 8.723766], + [-13.226448, 8.724936], + [-13.226127, 8.725412], + [-13.230416, 8.730417], + [-13.230416, 8.731249], + [-13.229908, 8.732773], + [-13.229583, 8.732765], + [-13.229582, 8.736249], + [-13.227916, 8.737083], + [-13.222083, 8.737083], + [-13.217083, 8.740417], + [-13.217083, 8.742916], + [-13.219583, 8.744583], + [-13.220417, 8.752082], + [-13.222916, 8.757082], + [-13.220417, 8.761249], + [-13.226249, 8.762917], + [-13.229582, 8.767916], + [-13.222916, 8.773749], + [-13.217917, 8.775417], + [-13.218272, 8.776485], + [-13.217242, 8.776591], + [-13.214599, 8.776516], + [-13.213481, 8.777293], + [-13.212917, 8.777473], + [-13.212917, 8.782916], + [-13.216248, 8.782917], + [-13.216249, 8.782918], + [-13.214303, 8.788107], + [-13.214372, 8.788136], + [-13.213749, 8.791249], + [-13.209583, 8.792917], + [-13.20875, 8.794582], + [-13.214582, 8.801249], + [-13.213665, 8.803086], + [-13.213554, 8.803062], + [-13.213114, 8.805262], + [-13.21245, 8.805353], + [-13.21204, 8.805838], + [-13.214203, 8.809735], + [-13.213591, 8.810512], + [-13.213426, 8.810994], + [-13.20625, 8.814583], + [-13.206249, 8.8155], + [-13.205406, 8.815497], + [-13.204369, 8.81575], + [-13.203588, 8.816518], + [-13.202812, 8.816387], + [-13.201769, 8.817541], + [-13.199954, 8.818177], + [-13.199707, 8.823235], + [-13.19625, 8.822083], + [-13.19562, 8.820512], + [-13.192685, 8.821105], + [-13.189571, 8.822506], + [-13.18941, 8.821439], + [-13.18875, 8.82125], + [-13.188749, 8.822083], + [-13.187082, 8.828749], + [-13.185416, 8.828749], + [-13.180417, 8.827917], + [-13.179582, 8.827083], + [-13.175789, 8.82925], + [-13.176434, 8.829189], + [-13.176435, 8.82919], + [-13.17603, 8.829501], + [-13.175901, 8.829613], + [-13.175756, 8.829904], + [-13.175718, 8.830021], + [-13.175637, 8.83019], + [-13.175386, 8.830407], + [-13.175074, 8.830598], + [-13.17487, 8.830636], + [-13.174763, 8.830635], + [-13.174603, 8.83061], + [-13.174523, 8.830663], + [-13.174286, 8.831144], + [-13.174141, 8.83132], + [-13.173723, 8.831388], + [-13.173459, 8.83134], + [-13.173267, 8.831139], + [-13.173037, 8.83061], + [-13.172978, 8.830488], + [-13.172715, 8.830071], + [-13.171787, 8.829763], + [-13.171689, 8.829825], + [-13.171533, 8.829942], + [-13.171335, 8.830084], + [-13.17114, 8.830132], + [-13.170417, 8.833749], + [-13.169136, 8.83375], + [-13.169082, 8.833728], + [-13.169999, 8.836899], + [-13.1702, 8.840099], + [-13.172099, 8.8407], + [-13.174599, 8.842899], + [-13.1751, 8.843999], + [-13.177099, 8.8457], + [-13.1782, 8.847599], + [-13.1799, 8.848799], + [-13.1807, 8.8488], + [-13.1826, 8.8515], + [-13.1854, 8.852899], + [-13.188499, 8.853199], + [-13.1899, 8.853999], + [-13.1924, 8.854], + [-13.195399, 8.854899], + [-13.1957, 8.855699], + [-13.198799, 8.857599], + [-13.1993, 8.858799], + [-13.202399, 8.858999], + [-13.2029, 8.858499], + [-13.205399, 8.8582], + [-13.205999, 8.858499], + [-13.2068, 8.857399], + [-13.209299, 8.8554], + [-13.2104, 8.854], + [-13.212399, 8.852899], + [-13.2137, 8.8507], + [-13.214899, 8.850399], + [-13.2149, 8.849599], + [-13.215999, 8.848799], + [-13.216, 8.847599], + [-13.217899, 8.846799], + [-13.2188, 8.845699], + [-13.221799, 8.8432], + [-13.222599, 8.843199], + [-13.2249, 8.8415], + [-13.2282, 8.840999], + [-13.230999, 8.838199], + [-13.2324, 8.835399], + [-13.235699, 8.8313], + [-13.239599, 8.828499], + [-13.2399, 8.827399], + [-13.241799, 8.825999], + [-13.2432, 8.823999], + [-13.245399, 8.8215], + [-13.2465, 8.818199], + [-13.247099, 8.8132], + [-13.2476, 8.811799], + [-13.248199, 8.8071], + [-13.248499, 8.807099], + [-13.2485, 8.8035], + [-13.248799, 8.8013] + ] + ], + "type": "Polygon" + }, + "id": 13, + "properties": { + "cc:admin:id": ["74"], + "cc:oBld:total": 651, + "cc:pop:fifteen-to-twenty-four": 2095.2421484420497, + "cc:pop:grid3-total": 14441.24729768105, + "cc:pop:kontur-total": 10514.177632717297, + "cc:pop:men": 5469.344078141585, + "cc:pop:sixty-plus": 636.6535668110108, + "cc:pop:total": 11611.784096647147, + "cc:pop:under-five": 1787.978355118748, + "cc:pop:women": 6142.440018505571, + "cc:pop:women-fiften-to-forty-nine": 3054.864823340248, + "cc:pop:wp-total": 12158.43673195105, + "cc:pop:wp-total-UN": 14087.37494007488, + "cc:id": "13", + "cc:Name": "Bailor CHP", + "cc:site": [-13.2392, 8.8219], + "user:parentName": "Lokomasama", + "user:code": "OU_254996", + "user:orgUnitId": "Eyj2kiEJ7M3", + "user:level": "4", + "user:parentId": "fRLX08WHWpL" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.34125, 8.384583], + [-12.341249, 8.377083], + [-12.340416, 8.374583], + [-12.335417, 8.367084], + [-12.335416, 8.36125], + [-12.324583, 8.360416], + [-12.321379, 8.358014], + [-12.32138, 8.358013], + [-12.328879, 8.358012], + [-12.332784, 8.351246], + [-12.328879, 8.344481], + [-12.330744, 8.34125], + [-12.333338, 8.341249], + [-12.3194, 8.3341], + [-12.311499, 8.330699], + [-12.307299, 8.329799], + [-12.2997, 8.3296], + [-12.2966, 8.329899], + [-12.293699, 8.3306], + [-12.290299, 8.3321], + [-12.2863, 8.334299], + [-12.284, 8.336199], + [-12.282099, 8.3384], + [-12.278799, 8.3436], + [-12.2762, 8.346699], + [-12.2718, 8.350199], + [-12.267899, 8.3518], + [-12.265, 8.352299], + [-12.262917, 8.352395], + [-12.262916, 8.355416], + [-12.25125, 8.35375], + [-12.249583, 8.35375], + [-12.247917, 8.355417], + [-12.24625, 8.363749], + [-12.247917, 8.365416], + [-12.255993, 8.365417], + [-12.256956, 8.367083], + [-12.263749, 8.367084], + [-12.268749, 8.372084], + [-12.267917, 8.381249], + [-12.267917, 8.384987], + [-12.267554, 8.385163], + [-12.267916, 8.38625], + [-12.262083, 8.392084], + [-12.259583, 8.397083], + [-12.269582, 8.397084], + [-12.27625, 8.395417], + [-12.277082, 8.399583], + [-12.274582, 8.399584], + [-12.267917, 8.402916], + [-12.267083, 8.404584], + [-12.267083, 8.410416], + [-12.26875, 8.410417], + [-12.270417, 8.421249], + [-12.275416, 8.420416], + [-12.276846, 8.417083], + [-12.281229, 8.417083], + [-12.285134, 8.423848], + [-12.285087, 8.423931], + [-12.290249, 8.422384], + [-12.290535, 8.421726], + [-12.292917, 8.422916], + [-12.294582, 8.422083], + [-12.29625, 8.420417], + [-12.301249, 8.419583], + [-12.302917, 8.412084], + [-12.306249, 8.407917], + [-12.312082, 8.411249], + [-12.314583, 8.40125], + [-12.321249, 8.402083], + [-12.327082, 8.401249], + [-12.331249, 8.393749], + [-12.331249, 8.392958], + [-12.330417, 8.39293], + [-12.330417, 8.387917], + [-12.338749, 8.386249], + [-12.34125, 8.384583] + ] + ], + "type": "Polygon" + }, + "id": 14, + "properties": { + "cc:admin:id": ["149"], + "cc:oBld:total": 8, + "cc:pop:fifteen-to-twenty-four": 720.5969706442598, + "cc:pop:grid3-total": 2772.762055124077, + "cc:pop:kontur-total": 4742.906814484478, + "cc:pop:men": 1787.2636965656573, + "cc:pop:sixty-plus": 248.85742878192602, + "cc:pop:total": 3850.9119066236944, + "cc:pop:under-five": 623.6611971305331, + "cc:pop:women": 2063.6482100580374, + "cc:pop:women-fiften-to-forty-nine": 1023.4325567379519, + "cc:pop:wp-total": 3412.9578705392055, + "cc:pop:wp-total-UN": 3956.8603260858476, + "cc:id": "14", + "cc:Name": "Bakeloko CHP", + "cc:site": [-12.2933, 8.3955], + "user:parentName": "Yoni", + "user:code": "OU_268228", + "user:orgUnitId": "MHAWZr2Caxw", + "user:level": "4", + "user:parentId": "NNE0YMCDZkO" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.382486, 8.343271], + [-11.382346, 8.342841], + [-11.382416, 8.342632], + [-11.382117, 8.342393], + [-11.381732, 8.341291], + [-11.38114, 8.338939], + [-11.380589, 8.338101], + [-11.379906, 8.336356], + [-11.378698, 8.334609], + [-11.377807, 8.334039], + [-11.377757, 8.333347], + [-11.377557, 8.333277], + [-11.376249, 8.334583], + [-11.371165, 8.334583], + [-11.370908, 8.333774], + [-11.370862, 8.333359], + [-11.370929, 8.332376], + [-11.370662, 8.330875], + [-11.370392, 8.329575], + [-11.369627, 8.327618], + [-11.369602, 8.326655], + [-11.369977, 8.325021], + [-11.37028, 8.324349], + [-11.370571, 8.323946], + [-11.370091, 8.323578], + [-11.368723, 8.323128], + [-11.368092, 8.323849], + [-11.367232, 8.32442], + [-11.366527, 8.324574], + [-11.365616, 8.325202], + [-11.365148, 8.325639], + [-11.364753, 8.32544], + [-11.363813, 8.324129], + [-11.363264, 8.323889], + [-11.362271, 8.323921], + [-11.361258, 8.324148], + [-11.360656, 8.324879], + [-11.360343, 8.325041], + [-11.360341, 8.32504], + [-11.359583, 8.321249], + [-11.361143, 8.316568], + [-11.367519, 8.316567], + [-11.370108, 8.312084], + [-11.372082, 8.312083], + [-11.372689, 8.304806], + [-11.371122, 8.302091], + [-11.371249, 8.30375], + [-11.367916, 8.307917], + [-11.35625, 8.308749], + [-11.352083, 8.305417], + [-11.352083, 8.305299], + [-11.352214, 8.305197], + [-11.35125, 8.30375], + [-11.351249, 8.29625], + [-11.347917, 8.292916], + [-11.347917, 8.282084], + [-11.354582, 8.272917], + [-11.357647, 8.273194], + [-11.35795, 8.27267], + [-11.354799, 8.26721], + [-11.354582, 8.269583], + [-11.345417, 8.269584], + [-11.343749, 8.271249], + [-11.342794, 8.27125], + [-11.342778, 8.271267], + [-11.341701, 8.270311], + [-11.341802, 8.270137], + [-11.341249, 8.269584], + [-11.339377, 8.269209], + [-11.339343, 8.269603], + [-11.33877, 8.271566], + [-11.337944, 8.27335], + [-11.337075, 8.274253], + [-11.336442, 8.275972], + [-11.3356, 8.276173], + [-11.335417, 8.278328], + [-11.334512, 8.281114], + [-11.333949, 8.284468], + [-11.333312, 8.286514], + [-11.332507, 8.291675], + [-11.332534, 8.294865], + [-11.331917, 8.296144], + [-11.331256, 8.298764], + [-11.331086, 8.298904], + [-11.331078, 8.29857], + [-11.330885, 8.298549], + [-11.330148, 8.300423], + [-11.330283, 8.300604], + [-11.330427, 8.300366], + [-11.330602, 8.300413], + [-11.330868, 8.300199], + [-11.330869, 8.300199], + [-11.330828, 8.300963], + [-11.330486, 8.301747], + [-11.330485, 8.301747], + [-11.330123, 8.301083], + [-11.330041, 8.301169], + [-11.329999, 8.302483], + [-11.32983, 8.303006], + [-11.329796, 8.305267], + [-11.329572, 8.306061], + [-11.329709, 8.30583], + [-11.329887, 8.305968], + [-11.329934, 8.305784], + [-11.329935, 8.305785], + [-11.329959, 8.306039], + [-11.329709, 8.306651], + [-11.329622, 8.307575], + [-11.328865, 8.310731], + [-11.329195, 8.311442], + [-11.330275, 8.312403], + [-11.330742, 8.313097], + [-11.330417, 8.313749], + [-11.331235, 8.314023], + [-11.331418, 8.31478], + [-11.331479, 8.316023], + [-11.331428, 8.316368], + [-11.331091, 8.316901], + [-11.330894, 8.317377], + [-11.331011, 8.317909], + [-11.331009, 8.31791], + [-11.330751, 8.317624], + [-11.3303, 8.318806], + [-11.329342, 8.32028], + [-11.329983, 8.320299], + [-11.330623, 8.320324], + [-11.330821, 8.319893], + [-11.332916, 8.320416], + [-11.332917, 8.322083], + [-11.333618, 8.322433], + [-11.333948, 8.322281], + [-11.338749, 8.327083], + [-11.33875, 8.331249], + [-11.347917, 8.32625], + [-11.349582, 8.330417], + [-11.345417, 8.336249], + [-11.35375, 8.335417], + [-11.35625, 8.337916], + [-11.357917, 8.337917], + [-11.36125, 8.342084], + [-11.362083, 8.342083], + [-11.365416, 8.339583], + [-11.365507, 8.33904], + [-11.367023, 8.336415], + [-11.371843, 8.336415], + [-11.372441, 8.337696], + [-11.372792, 8.339255], + [-11.380168, 8.339256], + [-11.382486, 8.343271] + ] + ], + "type": "Polygon" + }, + "id": 15, + "properties": { + "cc:admin:id": ["142"], + "cc:oBld:total": 229, + "cc:pop:fifteen-to-twenty-four": 371.08245753873337, + "cc:pop:grid3-total": 2058.361784539687, + "cc:pop:kontur-total": 2112.1845156239906, + "cc:pop:men": 999.3939836292119, + "cc:pop:sixty-plus": 119.46596262748295, + "cc:pop:total": 1963.6688789886214, + "cc:pop:under-five": 308.03306759672745, + "cc:pop:women": 964.2748953594095, + "cc:pop:women-fiften-to-forty-nine": 489.54842016621643, + "cc:pop:wp-total": 1819.8481094348435, + "cc:pop:wp-total-UN": 2113.4001678743434, + "cc:id": "15", + "cc:Name": "Bambara MCHP", + "cc:site": [-11.3454, 8.3164], + "user:parentName": "Wandor", + "user:code": "OU_222679", + "user:orgUnitId": "mUuCjQWMaOc", + "user:level": "4", + "user:parentId": "X7dWcGerQIm" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.203389, 7.969963], + [-12.202199, 7.969799], + [-12.1941, 7.9662], + [-12.1886, 7.9629], + [-12.1868, 7.9614], + [-12.1836, 7.956], + [-12.181799, 7.952099], + [-12.180199, 7.949699], + [-12.1783, 7.9475], + [-12.1755, 7.9447], + [-12.1725, 7.9424], + [-12.168799, 7.940999], + [-12.164799, 7.940599], + [-12.1576, 7.9405], + [-12.1536, 7.94], + [-12.148299, 7.938099], + [-12.1455, 7.938], + [-12.143, 7.938799], + [-12.142899, 7.9448], + [-12.141799, 7.949099], + [-12.139699, 7.952099], + [-12.136899, 7.9541], + [-12.1314, 7.956499], + [-12.125643, 7.957083], + [-12.130416, 7.957084], + [-12.130416, 7.97208], + [-12.130415, 7.972084], + [-12.129583, 7.972084], + [-12.128386, 7.976274], + [-12.12865, 7.976727], + [-12.128978, 7.97696], + [-12.130958, 7.976875], + [-12.131603, 7.977165], + [-12.132014, 7.977595], + [-12.132402, 7.978676], + [-12.132696, 7.980943], + [-12.1326, 7.982008], + [-12.132266, 7.982335], + [-12.13029, 7.982556], + [-12.129363, 7.983159], + [-12.129152, 7.983461], + [-12.129105, 7.984019], + [-12.129433, 7.984972], + [-12.129339, 7.985913], + [-12.128905, 7.986541], + [-12.127896, 7.989166], + [-12.12718, 7.990189], + [-12.126229, 7.990997], + [-12.126145, 7.992163], + [-12.124821, 7.993684], + [-12.123873, 7.994499], + [-12.123479, 7.994675], + [-12.123117, 7.994632], + [-12.12274, 7.994404], + [-12.121608, 7.993], + [-12.121284, 7.992804], + [-12.120557, 7.992705], + [-12.119578, 7.992798], + [-12.117754, 7.993716], + [-12.116101, 7.995881], + [-12.115442, 7.99748], + [-12.113665, 8.000575], + [-12.112146, 8.001976], + [-12.111536, 8.003752], + [-12.111087, 8.004492], + [-12.110029, 8.004978], + [-12.109107, 8.005649], + [-12.108545, 8.00584], + [-12.10875, 8.006249], + [-12.110884, 8.00625], + [-12.110544, 8.006518], + [-12.109571, 8.007872], + [-12.109776, 8.009003], + [-12.110034, 8.009305], + [-12.110872, 8.009754], + [-12.112092, 8.01101], + [-12.112076, 8.011321], + [-12.112491, 8.012106], + [-12.112164, 8.013268], + [-12.112284, 8.014467], + [-12.112823, 8.015446], + [-12.112899, 8.016325], + [-12.113404, 8.018008], + [-12.113868, 8.018561], + [-12.1145, 8.018617], + [-12.114997, 8.019544], + [-12.11498, 8.020038], + [-12.113338, 8.022633], + [-12.111322, 8.024966], + [-12.110152, 8.027208], + [-12.10899, 8.028392], + [-12.108195, 8.028195], + [-12.107399, 8.029286], + [-12.106873, 8.029685], + [-12.107302, 8.030329], + [-12.106718, 8.030872], + [-12.104076, 8.034606], + [-12.103111, 8.034864], + [-12.103292, 8.035695], + [-12.102578, 8.036932], + [-12.101599, 8.037607], + [-12.099869, 8.037917], + [-12.097917, 8.037917], + [-12.09625, 8.040417], + [-12.096445, 8.040806], + [-12.097055, 8.040748], + [-12.097685, 8.043948], + [-12.098332, 8.049763], + [-12.10102, 8.061082], + [-12.1016, 8.064384], + [-12.102413, 8.072514], + [-12.10218, 8.075061], + [-12.100323, 8.081811], + [-12.099542, 8.083685], + [-12.097867, 8.0861], + [-12.1011, 8.0868], + [-12.1064, 8.088999], + [-12.109899, 8.089299], + [-12.112499, 8.088899], + [-12.116799, 8.0867], + [-12.12, 8.085299], + [-12.125099, 8.0828], + [-12.131, 8.081299], + [-12.135399, 8.0791], + [-12.1386, 8.077799], + [-12.1429, 8.075399], + [-12.151199, 8.0716], + [-12.157099, 8.0701], + [-12.1624, 8.067899], + [-12.168299, 8.0664], + [-12.1736, 8.064199], + [-12.1787, 8.062999], + [-12.183899, 8.0604], + [-12.187099, 8.0591], + [-12.188475, 8.058358], + [-12.188393, 8.057839], + [-12.187954, 8.056952], + [-12.187996, 8.056273], + [-12.187848, 8.055758], + [-12.187951, 8.055513], + [-12.188869, 8.054961], + [-12.189686, 8.054104], + [-12.190388, 8.053663], + [-12.191091, 8.05366], + [-12.192834, 8.054918], + [-12.194088, 8.055232], + [-12.194582, 8.05375], + [-12.191249, 8.047917], + [-12.189582, 8.047084], + [-12.182916, 8.047083], + [-12.182083, 8.044583], + [-12.189582, 8.03625], + [-12.182083, 8.03125], + [-12.181249, 8.031249], + [-12.178749, 8.027917], + [-12.175417, 8.026249], + [-12.175417, 8.025416], + [-12.181249, 8.023749], + [-12.186249, 8.019584], + [-12.177917, 8.017083], + [-12.175417, 8.009584], + [-12.175417, 8.00875], + [-12.185416, 8.010416], + [-12.18375, 8.00125], + [-12.187082, 7.997916], + [-12.186475, 7.993656], + [-12.185639, 7.993728], + [-12.182083, 7.98875], + [-12.187189, 7.985831], + [-12.184301, 7.980826], + [-12.188206, 7.974061], + [-12.187546, 7.972917], + [-12.192082, 7.972916], + [-12.19375, 7.97125], + [-12.201951, 7.971995], + [-12.203389, 7.969963] + ] + ], + "type": "Polygon" + }, + "id": 16, + "properties": { + "cc:admin:id": ["16"], + "cc:oBld:total": 80, + "cc:pop:fifteen-to-twenty-four": 531.4940646991064, + "cc:pop:grid3-total": 2208.1713948348747, + "cc:pop:kontur-total": 3154.1724797194047, + "cc:pop:men": 1456.6756684365866, + "cc:pop:sixty-plus": 173.90049377757987, + "cc:pop:total": 3057.2972428605276, + "cc:pop:under-five": 489.84806084322383, + "cc:pop:women": 1600.6215744239412, + "cc:pop:women-fiften-to-forty-nine": 816.5107985766967, + "cc:pop:wp-total": 2962.5150810582186, + "cc:pop:wp-total-UN": 3434.3890928046176, + "cc:id": "16", + "cc:Name": "Bambuibu Tommy MCHP", + "cc:site": [-12.1625, 7.9794], + "user:parentName": "Dasse", + "user:code": "OU_247021", + "user:orgUnitId": "aSfF9kuNINJ", + "user:level": "4", + "user:parentId": "RndxKqQGzUl" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.738399, 7.575499], + [-11.731, 7.5715], + [-11.727199, 7.5681], + [-11.721199, 7.5697], + [-11.7136, 7.571099], + [-11.7078, 7.573099], + [-11.704999, 7.5737], + [-11.702099, 7.573999], + [-11.6978, 7.5739], + [-11.693599, 7.573099], + [-11.686, 7.5695], + [-11.683099, 7.567199], + [-11.680699, 7.564299], + [-11.6699, 7.5479], + [-11.665999, 7.543799], + [-11.662599, 7.541199], + [-11.653699, 7.535399], + [-11.649699, 7.533699], + [-11.6454, 7.5329], + [-11.641, 7.5327], + [-11.636599, 7.5328], + [-11.6323, 7.533299], + [-11.629499, 7.5341], + [-11.625799, 7.5363], + [-11.6178, 7.542299], + [-11.6144, 7.546499], + [-11.6108, 7.549599], + [-11.603799, 7.5529], + [-11.6011, 7.5552], + [-11.598799, 7.559], + [-11.594699, 7.5687], + [-11.590999, 7.581], + [-11.588899, 7.5845], + [-11.586099, 7.5876], + [-11.581699, 7.591], + [-11.5661, 7.596799], + [-11.5589, 7.5963], + [-11.554, 7.5968], + [-11.551, 7.5982], + [-11.5485, 7.601], + [-11.5475, 7.603899], + [-11.5471, 7.606899], + [-11.5472, 7.6166], + [-11.547699, 7.623199], + [-11.548299, 7.627999], + [-11.551199, 7.639099], + [-11.551399, 7.643599], + [-11.5507, 7.647299], + [-11.5491, 7.650499], + [-11.5461, 7.653599], + [-11.541199, 7.656399], + [-11.535899, 7.6576], + [-11.5211, 7.665099], + [-11.511399, 7.6728], + [-11.498799, 7.6801], + [-11.4902, 7.686999], + [-11.482899, 7.6921], + [-11.4744, 7.699199], + [-11.4691, 7.702099], + [-11.4644, 7.703899], + [-11.4578, 7.703999], + [-11.453899, 7.702599], + [-11.450599, 7.700099], + [-11.4477, 7.6971], + [-11.441099, 7.6885], + [-11.437799, 7.6867], + [-11.4344, 7.6866], + [-11.4315, 7.687699], + [-11.428899, 7.6901], + [-11.4256, 7.6927], + [-11.427799, 7.6969], + [-11.428299, 7.699799], + [-11.428499, 7.7042], + [-11.4281, 7.708599], + [-11.426999, 7.7125], + [-11.4199, 7.724999], + [-11.418499, 7.7286], + [-11.417799, 7.7326], + [-11.4174, 7.740899], + [-11.4169, 7.744999], + [-11.4147, 7.754399], + [-11.4134, 7.762299], + [-11.4112, 7.769499], + [-11.4106, 7.775], + [-11.411099, 7.781099], + [-11.412899, 7.786899], + [-11.4171, 7.7954], + [-11.421099, 7.802699], + [-11.424299, 7.808], + [-11.4253, 7.812799], + [-11.429899, 7.814899], + [-11.433599, 7.815999], + [-11.438299, 7.815699], + [-11.4419, 7.814299], + [-11.448899, 7.8097], + [-11.4564, 7.806099], + [-11.4592, 7.805299], + [-11.474299, 7.8025], + [-11.476499, 7.802], + [-11.4844, 7.798299], + [-11.4864, 7.796799], + [-11.4882, 7.794999], + [-11.4902, 7.792299], + [-11.492999, 7.787], + [-11.4952, 7.784199], + [-11.5064, 7.773099], + [-11.509499, 7.7707], + [-11.513199, 7.7688], + [-11.516, 7.766899], + [-11.5189, 7.763899], + [-11.5203, 7.761799], + [-11.5221, 7.7581], + [-11.524799, 7.7555], + [-11.5281, 7.753899], + [-11.5317, 7.751899], + [-11.5355, 7.750199], + [-11.5384, 7.748099], + [-11.543799, 7.7431], + [-11.546499, 7.741], + [-11.550399, 7.739], + [-11.5533, 7.736999], + [-11.5574, 7.733099], + [-11.575799, 7.7145], + [-11.5788, 7.711099], + [-11.5814, 7.7072], + [-11.5853, 7.704499], + [-11.591999, 7.6984], + [-11.594799, 7.6963], + [-11.598599, 7.6943], + [-11.6016, 7.692199], + [-11.6049, 7.689099], + [-11.613499, 7.6804], + [-11.6163, 7.678099], + [-11.625199, 7.6733], + [-11.6284, 7.671999], + [-11.633499, 7.6695], + [-11.6387, 7.668399], + [-11.644699, 7.6658], + [-11.6474, 7.665399], + [-11.655699, 7.665], + [-11.657799, 7.6646], + [-11.663499, 7.6621], + [-11.668599, 7.661], + [-11.674599, 7.6584], + [-11.678999, 7.6575], + [-11.681399, 7.6567], + [-11.685, 7.654699], + [-11.692499, 7.6511], + [-11.696, 7.650499], + [-11.7033, 7.650299], + [-11.706799, 7.6495], + [-11.709, 7.648299], + [-11.7131, 7.644799], + [-11.716899, 7.640999], + [-11.7175, 7.637699], + [-11.7193, 7.631699], + [-11.7197, 7.627499], + [-11.7201, 7.614399], + [-11.7206, 7.611599], + [-11.722699, 7.6059], + [-11.7261, 7.601299], + [-11.735799, 7.5918], + [-11.738699, 7.5886], + [-11.740799, 7.584899], + [-11.741399, 7.580899], + [-11.740799, 7.5789], + [-11.738399, 7.575499] + ] + ], + "type": "Polygon" + }, + "id": 17, + "properties": { + "cc:admin:id": ["145"], + "cc:oBld:total": 667, + "cc:pop:fifteen-to-twenty-four": 3265.7914507417813, + "cc:pop:grid3-total": 25996.434710934835, + "cc:pop:kontur-total": 19009.741995927936, + "cc:pop:men": 8636.580699405966, + "cc:pop:sixty-plus": 1326.3116628199655, + "cc:pop:total": 17901.467244250038, + "cc:pop:under-five": 3059.1391947507095, + "cc:pop:women": 9264.886544844077, + "cc:pop:women-fiften-to-forty-nine": 4404.745349863992, + "cc:pop:wp-total": 15333.042909719241, + "cc:pop:wp-total-UN": 17788.544805614776, + "cc:id": "17", + "cc:Name": "Bandajuma Clinic CHC", + "cc:site": [-11.6522, 7.5724], + "user:parentName": "Sowa", + "user:code": "OU_260387", + "user:orgUnitId": "FNnj3jKGS7i", + "user:level": "4", + "user:parentId": "NqWaKXcg01b" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.494199, 7.249799], + [-11.490999, 7.246199], + [-11.487, 7.2428], + [-11.4831, 7.2411], + [-11.480199, 7.2407], + [-11.4691, 7.240799], + [-11.464599, 7.240399], + [-11.462499, 7.239699], + [-11.4588, 7.2377], + [-11.455699, 7.236399], + [-11.4521, 7.2345], + [-11.449499, 7.233699], + [-11.446899, 7.233299], + [-11.4392, 7.2317], + [-11.434, 7.2368], + [-11.4298, 7.245699], + [-11.428799, 7.250799], + [-11.4271, 7.253999], + [-11.4246, 7.256599], + [-11.4224, 7.258299], + [-11.4181, 7.260399], + [-11.4156, 7.262099], + [-11.4125, 7.264999], + [-11.409699, 7.2679], + [-11.408099, 7.2702], + [-11.405399, 7.2754], + [-11.401299, 7.2807], + [-11.3981, 7.286599], + [-11.393899, 7.2919], + [-11.391099, 7.2971], + [-11.388999, 7.2999], + [-11.384, 7.305199], + [-11.3819, 7.308199], + [-11.3802, 7.311999], + [-11.378199, 7.3155], + [-11.376799, 7.3187], + [-11.375499, 7.3208], + [-11.371799, 7.3254], + [-11.3685, 7.331299], + [-11.366799, 7.3334], + [-11.3618, 7.338699], + [-11.3598, 7.341699], + [-11.358399, 7.3448], + [-11.3561, 7.349099], + [-11.354799, 7.3522], + [-11.3524, 7.356499], + [-11.351099, 7.3597], + [-11.3487, 7.363899], + [-11.347399, 7.3671], + [-11.3454, 7.371199], + [-11.344699, 7.374], + [-11.344199, 7.3803], + [-11.342799, 7.3859], + [-11.342, 7.391899], + [-11.344, 7.3939], + [-11.3492, 7.398], + [-11.353799, 7.408099], + [-11.355493, 7.415418], + [-11.357134, 7.415018], + [-11.359575, 7.414833], + [-11.359804, 7.414532], + [-11.36101, 7.413961], + [-11.362264, 7.414295], + [-11.363094, 7.415002], + [-11.364111, 7.4155], + [-11.365329, 7.414315], + [-11.366261, 7.414314], + [-11.366401, 7.413991], + [-11.365446, 7.413597], + [-11.366192, 7.412673], + [-11.366891, 7.412672], + [-11.367334, 7.41228], + [-11.370063, 7.409019], + [-11.374353, 7.404395], + [-11.37587, 7.403215], + [-11.377619, 7.402753], + [-11.381188, 7.403351], + [-11.383352, 7.402718], + [-11.385875, 7.403979], + [-11.38626, 7.403966], + [-11.386312, 7.404133], + [-11.386866, 7.404328], + [-11.386925, 7.404505], + [-11.388412, 7.405247], + [-11.389979, 7.403041], + [-11.390153, 7.402837], + [-11.390461, 7.402958], + [-11.390985, 7.402531], + [-11.390945, 7.401737], + [-11.39154, 7.401116], + [-11.391372, 7.401081], + [-11.391371, 7.40108], + [-11.392524, 7.399456], + [-11.393687, 7.398903], + [-11.394783, 7.39816], + [-11.395287, 7.397284], + [-11.396758, 7.396534], + [-11.397611, 7.396672], + [-11.398018, 7.396475], + [-11.398542, 7.395886], + [-11.398316, 7.395712], + [-11.399616, 7.393896], + [-11.400938, 7.391371], + [-11.402769, 7.389469], + [-11.40358, 7.388041], + [-11.404325, 7.387526], + [-11.405265, 7.385566], + [-11.405708, 7.384942], + [-11.406272, 7.384623], + [-11.40629, 7.384087], + [-11.406029, 7.383537], + [-11.406087, 7.382954], + [-11.40706, 7.380819], + [-11.406891, 7.380097], + [-11.406937, 7.37771], + [-11.407031, 7.377131], + [-11.407526, 7.376334], + [-11.407719, 7.376333], + [-11.409909, 7.374367], + [-11.410784, 7.374567], + [-11.411873, 7.373854], + [-11.412121, 7.373414], + [-11.412376, 7.373397], + [-11.412549, 7.372693], + [-11.412545, 7.371104], + [-11.411322, 7.372616], + [-11.411168, 7.373147], + [-11.410633, 7.373867], + [-11.410258, 7.37383], + [-11.410324, 7.373302], + [-11.411201, 7.372216], + [-11.411754, 7.371243], + [-11.412182, 7.371148], + [-11.412142, 7.370846], + [-11.41264, 7.369681], + [-11.412493, 7.368619], + [-11.412723, 7.367445], + [-11.412402, 7.366394], + [-11.412736, 7.366144], + [-11.413626, 7.36428], + [-11.414348, 7.363471], + [-11.416799, 7.361394], + [-11.4169, 7.360568], + [-11.417788, 7.360721], + [-11.418061, 7.359897], + [-11.418477, 7.359585], + [-11.418933, 7.35866], + [-11.417897, 7.358302], + [-11.418122, 7.357802], + [-11.417602, 7.356694], + [-11.41729, 7.355532], + [-11.417236, 7.354364], + [-11.417394, 7.353832], + [-11.418499, 7.354716], + [-11.418503, 7.354707], + [-11.418932, 7.354574], + [-11.419427, 7.353264], + [-11.419776, 7.353226], + [-11.42005, 7.352699], + [-11.419642, 7.352725], + [-11.419363, 7.352325], + [-11.420005, 7.350547], + [-11.420407, 7.350299], + [-11.421024, 7.350244], + [-11.421765, 7.349813], + [-11.421718, 7.346925], + [-11.421852, 7.346355], + [-11.422396, 7.345613], + [-11.422813, 7.345329], + [-11.423353, 7.344436], + [-11.424075, 7.343674], + [-11.424507, 7.343484], + [-11.425092, 7.341006], + [-11.42507, 7.34016], + [-11.426262, 7.335715], + [-11.426089, 7.333567], + [-11.426818, 7.330981], + [-11.427722, 7.330092], + [-11.42855, 7.329805], + [-11.429182, 7.329149], + [-11.429994, 7.328939], + [-11.43086, 7.32945], + [-11.431483, 7.328909], + [-11.432669, 7.329224], + [-11.433262, 7.328728], + [-11.433839, 7.328833], + [-11.43346, 7.329346], + [-11.433642, 7.329752], + [-11.434767, 7.330099], + [-11.43691, 7.329557], + [-11.440511, 7.329631], + [-11.44264, 7.330084], + [-11.445573, 7.330159], + [-11.449797, 7.327355], + [-11.450831, 7.324778], + [-11.452913, 7.322427], + [-11.454509, 7.321084], + [-11.455847, 7.318868], + [-11.457356, 7.318304], + [-11.459582, 7.318749], + [-11.460227, 7.319392], + [-11.461601, 7.31859], + [-11.461956, 7.31776], + [-11.462357, 7.317522], + [-11.4629, 7.313452], + [-11.463801, 7.311378], + [-11.463339, 7.308792], + [-11.466028, 7.306442], + [-11.466486, 7.305417], + [-11.470245, 7.305416], + [-11.473207, 7.302484], + [-11.472357, 7.299513], + [-11.472878, 7.298192], + [-11.472924, 7.297575], + [-11.472605, 7.296836], + [-11.47186, 7.296173], + [-11.471376, 7.296088], + [-11.471115, 7.295178], + [-11.470903, 7.295162], + [-11.470668, 7.294778], + [-11.470432, 7.293731], + [-11.470591, 7.293346], + [-11.470199, 7.291976], + [-11.470201, 7.291976], + [-11.472083, 7.292917], + [-11.472917, 7.292916], + [-11.475525, 7.292394], + [-11.473999, 7.289499], + [-11.471799, 7.286499], + [-11.4678, 7.2833], + [-11.463699, 7.281199], + [-11.4608, 7.278599], + [-11.4595, 7.275199], + [-11.4596, 7.2725], + [-11.4605, 7.2701], + [-11.463499, 7.2674], + [-11.468, 7.264999], + [-11.4739, 7.260599], + [-11.4778, 7.258699], + [-11.482099, 7.2563], + [-11.486, 7.254599], + [-11.493299, 7.2505], + [-11.494199, 7.249799] + ] + ], + "type": "Polygon" + }, + "id": 20, + "properties": { + "cc:admin:id": ["5"], + "cc:oBld:total": 451, + "cc:pop:fifteen-to-twenty-four": 2302.162580999356, + "cc:pop:grid3-total": 6976.992279103363, + "cc:pop:kontur-total": 12502.971609237218, + "cc:pop:men": 6174.021496733463, + "cc:pop:sixty-plus": 960.9078936121822, + "cc:pop:total": 12701.934872788795, + "cc:pop:under-five": 2161.954506119192, + "cc:pop:women": 6527.913376055333, + "cc:pop:women-fiften-to-forty-nine": 3093.5619727327085, + "cc:pop:wp-total": 10921.091529753821, + "cc:pop:wp-total-UN": 12660.575320026766, + "cc:id": "20", + "cc:Name": "Bandasuma CHP", + "cc:site": [-11.4089, 7.3691], + "user:parentName": "Barri", + "user:code": "OU_260436", + "user:orgUnitId": "uPshwz3B3Uu", + "user:level": "4", + "user:parentId": "RzKeCma9qb1" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.858113, 8.680455], + [-10.857234, 8.679056], + [-10.857149, 8.678866], + [-10.857417, 8.678], + [-10.85744, 8.677177], + [-10.856967, 8.676024], + [-10.856804, 8.676467], + [-10.856267, 8.676992], + [-10.853907, 8.678501], + [-10.853157, 8.679013], + [-10.850417, 8.677916], + [-10.850416, 8.66875], + [-10.83875, 8.667084], + [-10.842082, 8.674582], + [-10.835417, 8.674583], + [-10.833749, 8.677082], + [-10.832083, 8.675416], + [-10.832083, 8.671545], + [-10.83219, 8.671467], + [-10.832653, 8.671207], + [-10.833078, 8.670689], + [-10.83316, 8.669948], + [-10.833526, 8.668968], + [-10.833575, 8.667924], + [-10.833417, 8.667189], + [-10.832116, 8.665977], + [-10.831188, 8.665643], + [-10.829987, 8.66566], + [-10.829081, 8.666721], + [-10.828829, 8.666139], + [-10.827788, 8.665353], + [-10.827431, 8.665281], + [-10.826916, 8.664524], + [-10.826631, 8.664071], + [-10.824582, 8.664583], + [-10.822916, 8.662917], + [-10.814583, 8.667916], + [-10.812982, 8.667383], + [-10.813161, 8.665213], + [-10.812666, 8.662851], + [-10.81265, 8.661411], + [-10.812965, 8.660255], + [-10.80625, 8.659583], + [-10.803749, 8.655417], + [-10.800417, 8.655417], + [-10.796249, 8.659584], + [-10.790417, 8.659583], + [-10.787916, 8.655417], + [-10.780417, 8.657083], + [-10.780416, 8.650417], + [-10.777238, 8.647239], + [-10.77563, 8.648534], + [-10.774846, 8.649648], + [-10.77445, 8.65055], + [-10.774615, 8.651324], + [-10.774486, 8.652087], + [-10.773628, 8.653631], + [-10.772964, 8.655311], + [-10.771928, 8.656702], + [-10.771638, 8.658049], + [-10.771434, 8.658157], + [-10.76875, 8.657084], + [-10.766249, 8.65375], + [-10.764583, 8.653749], + [-10.763749, 8.652084], + [-10.760417, 8.650417], + [-10.759227, 8.649624], + [-10.7558, 8.656399], + [-10.7552, 8.659099], + [-10.7551, 8.662099], + [-10.755499, 8.664999], + [-10.756499, 8.667599], + [-10.7604, 8.6726], + [-10.7618, 8.675], + [-10.7627, 8.6777], + [-10.763, 8.6807], + [-10.763, 8.694799], + [-10.7628, 8.6993], + [-10.7661, 8.7035], + [-10.770099, 8.707599], + [-10.773599, 8.710499], + [-10.779999, 8.713899], + [-10.785399, 8.718099], + [-10.789299, 8.719999], + [-10.7921, 8.722], + [-10.7981, 8.7276], + [-10.804499, 8.734099], + [-10.8068, 8.7368], + [-10.8091, 8.740099], + [-10.8114, 8.7414], + [-10.817899, 8.742299], + [-10.822499, 8.7387], + [-10.826, 8.7357], + [-10.828299, 8.7347], + [-10.8309, 8.7346], + [-10.834599, 8.735399], + [-10.8346, 8.7189], + [-10.8353, 8.715399], + [-10.8397, 8.706999], + [-10.8439, 8.701699], + [-10.847099, 8.6958], + [-10.8512, 8.690599], + [-10.854, 8.685299], + [-10.856199, 8.6825], + [-10.858113, 8.680455] + ] + ], + "type": "Polygon" + }, + "id": 21, + "properties": { + "cc:admin:id": ["24"], + "cc:oBld:total": 121, + "cc:pop:fifteen-to-twenty-four": 241.30029865681206, + "cc:pop:grid3-total": 1664.9845527254713, + "cc:pop:kontur-total": 1180.2549614352545, + "cc:pop:men": 583.3310630045479, + "cc:pop:sixty-plus": 52.15945897586505, + "cc:pop:total": 1171.6682410864169, + "cc:pop:under-five": 181.06200959112533, + "cc:pop:women": 588.3371780818688, + "cc:pop:women-fiften-to-forty-nine": 292.73616115124656, + "cc:pop:wp-total": 1301.5302284374225, + "cc:pop:wp-total-UN": 1501.6819082828908, + "cc:id": "21", + "cc:Name": "Bandasuma Fiama MCHP", + "cc:site": [-10.7983, 8.6966], + "user:parentName": "Fiama", + "user:code": "OU_233360", + "user:orgUnitId": "aF6iPGbrcRk", + "user:level": "4", + "user:parentId": "CF243RPvNY7" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.77855, 8.554596], + [-10.779699, 8.552099], + [-10.780099, 8.548], + [-10.7794, 8.5446], + [-10.7771, 8.5402], + [-10.775699, 8.536999], + [-10.7732, 8.5328], + [-10.7712, 8.529], + [-10.7672, 8.5239], + [-10.765899, 8.521999], + [-10.764999, 8.518899], + [-10.7647, 8.5093], + [-10.7641, 8.5045], + [-10.761899, 8.499099], + [-10.761299, 8.496399], + [-10.7605, 8.4907], + [-10.759, 8.4871], + [-10.756499, 8.483999], + [-10.7493, 8.477], + [-10.7462, 8.4747], + [-10.744468, 8.473866], + [-10.742916, 8.475417], + [-10.73375, 8.477084], + [-10.732916, 8.479584], + [-10.72875, 8.481249], + [-10.722083, 8.48125], + [-10.722082, 8.484584], + [-10.716802, 8.491371], + [-10.716801, 8.491371], + [-10.716495, 8.49033], + [-10.716002, 8.489806], + [-10.715843, 8.489377], + [-10.712083, 8.48875], + [-10.71125, 8.489584], + [-10.710416, 8.494584], + [-10.707917, 8.496249], + [-10.707082, 8.497083], + [-10.70375, 8.497084], + [-10.70375, 8.497917], + [-10.706249, 8.503749], + [-10.702083, 8.507916], + [-10.706249, 8.507917], + [-10.709582, 8.511249], + [-10.710345, 8.512393], + [-10.710249, 8.512833], + [-10.709676, 8.513866], + [-10.709548, 8.514445], + [-10.709575, 8.515416], + [-10.699583, 8.515416], + [-10.697082, 8.512084], + [-10.69125, 8.514584], + [-10.69125, 8.522916], + [-10.696116, 8.525349], + [-10.696157, 8.525509], + [-10.690417, 8.531249], + [-10.687082, 8.524584], + [-10.684583, 8.527917], + [-10.686249, 8.536249], + [-10.67875, 8.535417], + [-10.678749, 8.544583], + [-10.677083, 8.547083], + [-10.67375, 8.545416], + [-10.672082, 8.537917], + [-10.669583, 8.537917], + [-10.66625, 8.542917], + [-10.66625, 8.551249], + [-10.669582, 8.554583], + [-10.669583, 8.556249], + [-10.671249, 8.55625], + [-10.67375, 8.558749], + [-10.674583, 8.55875], + [-10.677083, 8.567083], + [-10.682916, 8.567083], + [-10.68375, 8.56375], + [-10.687916, 8.564583], + [-10.68875, 8.564584], + [-10.694583, 8.567916], + [-10.702083, 8.56375], + [-10.702271, 8.56375], + [-10.702035, 8.564272], + [-10.702293, 8.566326], + [-10.703493, 8.565102], + [-10.704236, 8.563746], + [-10.704794, 8.563644], + [-10.705452, 8.563653], + [-10.705684, 8.563756], + [-10.7068, 8.563987], + [-10.709362, 8.56561], + [-10.710308, 8.56584], + [-10.710129, 8.566688], + [-10.710106, 8.569525], + [-10.708469, 8.571823], + [-10.707508, 8.5736], + [-10.707376, 8.574355], + [-10.714583, 8.56875], + [-10.72125, 8.56625], + [-10.722916, 8.567084], + [-10.722917, 8.568749], + [-10.725417, 8.569584], + [-10.727083, 8.573749], + [-10.731249, 8.574584], + [-10.737409, 8.578432], + [-10.740733, 8.578432], + [-10.743749, 8.575416], + [-10.74375, 8.567917], + [-10.744583, 8.567916], + [-10.756249, 8.56625], + [-10.759583, 8.566249], + [-10.762916, 8.565416], + [-10.766159, 8.561363], + [-10.77044, 8.561362], + [-10.774346, 8.554597], + [-10.77855, 8.554596] + ] + ], + "type": "Polygon" + }, + "id": 22, + "properties": { + "cc:admin:id": ["125"], + "cc:oBld:total": 439, + "cc:pop:fifteen-to-twenty-four": 581.5469104026085, + "cc:pop:grid3-total": 6967.063691703277, + "cc:pop:kontur-total": 3465.046293258809, + "cc:pop:men": 1354.9835560303054, + "cc:pop:sixty-plus": 155.78554262331704, + "cc:pop:total": 2908.734552013044, + "cc:pop:under-five": 480.5132217650106, + "cc:pop:women": 1553.7509959827385, + "cc:pop:women-fiften-to-forty-nine": 752.7014185798353, + "cc:pop:wp-total": 3322.7542028259677, + "cc:pop:wp-total-UN": 3865.657967266216, + "cc:id": "22", + "cc:Name": "Bandusuma MCHP", + "cc:site": [-10.7096, 8.5268], + "user:parentName": "Soa", + "user:code": "OU_233318", + "user:orgUnitId": "t1aAdpBbDB3", + "user:level": "4", + "user:parentId": "iGHlidSFdpu" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.971799, 8.443499], + [-10.969799, 8.440099], + [-10.965199, 8.4336], + [-10.960899, 8.430499], + [-10.9563, 8.4264], + [-10.9522, 8.4224], + [-10.9486, 8.4181], + [-10.945999, 8.413399], + [-10.943499, 8.411099], + [-10.938199, 8.408199], + [-10.934, 8.4047], + [-10.9306, 8.401], + [-10.9292, 8.3987], + [-10.928499, 8.396099], + [-10.9282, 8.392499], + [-10.928299, 8.386], + [-10.925499, 8.384199], + [-10.920699, 8.380399], + [-10.9095, 8.3777], + [-10.901999, 8.375299], + [-10.897699, 8.374699], + [-10.8919, 8.3744], + [-10.886199, 8.3748], + [-10.8819, 8.3765], + [-10.8799, 8.378599], + [-10.878599, 8.3816], + [-10.8777, 8.385199], + [-10.8768, 8.392999], + [-10.8755, 8.397599], + [-10.8707, 8.409699], + [-10.869, 8.412999], + [-10.8662, 8.416299], + [-10.862899, 8.4189], + [-10.856599, 8.421799], + [-10.8532, 8.422199], + [-10.849699, 8.421399], + [-10.8445, 8.4187], + [-10.8412, 8.4162], + [-10.838299, 8.413099], + [-10.832499, 8.4051], + [-10.828399, 8.402299], + [-10.8243, 8.4011], + [-10.8214, 8.4008], + [-10.8107, 8.4006], + [-10.806299, 8.400299], + [-10.803399, 8.399799], + [-10.7973, 8.3981], + [-10.793, 8.3976], + [-10.7815, 8.397099], + [-10.7772, 8.395499], + [-10.7752, 8.393399], + [-10.773399, 8.389299], + [-10.772799, 8.386499], + [-10.771799, 8.377799], + [-10.770399, 8.3709], + [-10.7578, 8.380499], + [-10.7526, 8.387099], + [-10.7485, 8.390999], + [-10.727199, 8.4026], + [-10.723899, 8.4052], + [-10.7146, 8.414199], + [-10.7102, 8.417799], + [-10.6975, 8.424999], + [-10.6907, 8.429999], + [-10.6849, 8.4335], + [-10.691299, 8.442599], + [-10.692599, 8.445999], + [-10.692999, 8.4498], + [-10.6929, 8.462799], + [-10.692999, 8.466699], + [-10.6936, 8.468999], + [-10.6952, 8.4715], + [-10.6981, 8.473199], + [-10.7007, 8.473499], + [-10.704099, 8.4729], + [-10.708499, 8.4708], + [-10.7113, 8.470199], + [-10.7174, 8.4697], + [-10.730899, 8.4697], + [-10.7339, 8.4698], + [-10.7381, 8.4708], + [-10.7462, 8.4747], + [-10.7493, 8.477], + [-10.7565, 8.484], + [-10.758999, 8.487099], + [-10.760499, 8.490699], + [-10.761299, 8.496399], + [-10.761899, 8.499099], + [-10.7641, 8.5045], + [-10.7647, 8.5093], + [-10.764999, 8.518899], + [-10.765899, 8.521999], + [-10.7672, 8.5239], + [-10.7712, 8.529], + [-10.7732, 8.5328], + [-10.775699, 8.536999], + [-10.7771, 8.5402], + [-10.7794, 8.5446], + [-10.780099, 8.548], + [-10.7797, 8.552099], + [-10.7774, 8.557099], + [-10.785099, 8.558699], + [-10.787699, 8.559099], + [-10.792099, 8.559299], + [-10.802399, 8.5592], + [-10.8062, 8.558399], + [-10.8095, 8.556199], + [-10.8366, 8.528899], + [-10.8394, 8.526799], + [-10.8433, 8.524899], + [-10.847599, 8.5225], + [-10.8508, 8.521199], + [-10.854999, 8.5188], + [-10.8582, 8.517399], + [-10.861699, 8.5155], + [-10.8642, 8.514699], + [-10.8669, 8.5144], + [-10.869699, 8.514499], + [-10.873199, 8.515099], + [-10.881499, 8.519199], + [-10.883599, 8.520699], + [-10.885399, 8.522499], + [-10.886899, 8.524499], + [-10.888099, 8.526799], + [-10.8894, 8.5326], + [-10.8914, 8.535199], + [-10.8936, 8.5366], + [-10.901899, 8.539699], + [-10.9047, 8.5403], + [-10.9074, 8.540399], + [-10.910899, 8.5398], + [-10.913299, 8.5384], + [-10.916, 8.535999], + [-10.920399, 8.5309], + [-10.923499, 8.5252], + [-10.923514, 8.52518], + [-10.9255, 8.522499], + [-10.930199, 8.5175], + [-10.932299, 8.5148], + [-10.9341, 8.510999], + [-10.936499, 8.5067], + [-10.9378, 8.503599], + [-10.939599, 8.5], + [-10.9405, 8.496599], + [-10.940899, 8.4913], + [-10.941399, 8.4887], + [-10.943599, 8.4843], + [-10.945299, 8.4805], + [-10.948499, 8.4766], + [-10.9522, 8.473099], + [-10.9543, 8.471399], + [-10.958799, 8.4691], + [-10.961299, 8.466699], + [-10.9627, 8.463099], + [-10.963199, 8.4569], + [-10.9636, 8.454799], + [-10.9671, 8.447799], + [-10.9692, 8.445399], + [-10.971799, 8.443499] + ] + ], + "type": "Polygon" + }, + "id": 23, + "properties": { + "cc:admin:id": ["29"], + "cc:oBld:total": 2467, + "cc:pop:fifteen-to-twenty-four": 2933.938728645094, + "cc:pop:grid3-total": 29781.91189062586, + "cc:pop:kontur-total": 15238.904225477727, + "cc:pop:men": 7352.434292307342, + "cc:pop:sixty-plus": 880.2063274329815, + "cc:pop:total": 15160.85606241763, + "cc:pop:under-five": 2365.882205221698, + "cc:pop:women": 7808.421770110286, + "cc:pop:women-fiften-to-forty-nine": 3735.6589638863634, + "cc:pop:wp-total": 12940.784695132941, + "cc:pop:wp-total-UN": 14992.14577223376, + "cc:id": "23", + "cc:Name": "Baoma MCHP", + "cc:site": [-10.7867, 8.4249], + "user:parentName": "Gbane", + "user:code": "OU_233393", + "user:orgUnitId": "t52CJEyLhch", + "user:level": "4", + "user:parentId": "ajILkI0cfxn" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.337771, 8.041983], + [-11.337523, 8.040717], + [-11.336403, 8.039802], + [-11.335309, 8.037896], + [-11.334708, 8.037513], + [-11.334644, 8.036542], + [-11.3351, 8.035871], + [-11.336139, 8.035368], + [-11.336681, 8.034867], + [-11.337507, 8.03302], + [-11.337733, 8.03125], + [-11.332083, 8.03125], + [-11.330416, 8.032083], + [-11.32375, 8.032083], + [-11.322916, 8.031249], + [-11.314582, 8.027084], + [-11.312082, 8.027917], + [-11.302917, 8.029584], + [-11.302287, 8.033358], + [-11.30228, 8.033361], + [-11.303749, 8.042917], + [-11.298749, 8.047083], + [-11.29135, 8.047084], + [-11.287713, 8.053384], + [-11.291618, 8.06015], + [-11.287713, 8.066915], + [-11.291618, 8.073681], + [-11.287713, 8.080446], + [-11.291618, 8.087212], + [-11.291226, 8.087892], + [-11.295416, 8.092084], + [-11.295417, 8.099968], + [-11.29521, 8.100325], + [-11.2958, 8.100199], + [-11.3003, 8.098199], + [-11.303, 8.097599], + [-11.3098, 8.096699], + [-11.318199, 8.0929], + [-11.3212, 8.090599], + [-11.325399, 8.0866], + [-11.328299, 8.0842], + [-11.3309, 8.082899], + [-11.333699, 8.0824], + [-11.334144, 8.082391], + [-11.334107, 8.08061], + [-11.334622, 8.078591], + [-11.3349, 8.075831], + [-11.33438, 8.073881], + [-11.333898, 8.07353], + [-11.334669, 8.071936], + [-11.33457, 8.069342], + [-11.334697, 8.067084], + [-11.335921, 8.067083], + [-11.335985, 8.064427], + [-11.336992, 8.053273], + [-11.337233, 8.05178], + [-11.335955, 8.051524], + [-11.336339, 8.050207], + [-11.336558, 8.048148], + [-11.336622, 8.047367], + [-11.336296, 8.045937], + [-11.336651, 8.042824], + [-11.337771, 8.041983] + ] + ], + "type": "Polygon" + }, + "id": 24, + "properties": { + "cc:admin:id": ["50"], + "cc:oBld:total": 308, + "cc:pop:fifteen-to-twenty-four": 554.8341515535055, + "cc:pop:grid3-total": 2105.295860800274, + "cc:pop:kontur-total": 2930.9685559350355, + "cc:pop:men": 1611.3344939894089, + "cc:pop:sixty-plus": 175.61138385116848, + "cc:pop:total": 2935.782141618696, + "cc:pop:under-five": 444.2635949905116, + "cc:pop:women": 1324.4476476292873, + "cc:pop:women-fiften-to-forty-nine": 671.4047081164996, + "cc:pop:wp-total": 2883.6069617534, + "cc:pop:wp-total-UN": 3347.8205913177994, + "cc:id": "24", + "cc:Name": "Baoma Oil Mill CHC", + "cc:site": [-11.3282, 8.0421], + "user:parentName": "Kandu Lepiema", + "user:code": "OU_222728", + "user:orgUnitId": "Y8foq27WLti", + "user:level": "4", + "user:parentId": "K1r3uF6eZ8n" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.46625, 7.923749], + [-11.466249, 7.922084], + [-11.462083, 7.919584], + [-11.46125, 7.919583], + [-11.46125, 7.918749], + [-11.462082, 7.914584], + [-11.463179, 7.913486], + [-11.461419, 7.914036], + [-11.457662, 7.915807], + [-11.457661, 7.915806], + [-11.457349, 7.914248], + [-11.4572, 7.914317], + [-11.455737, 7.914591], + [-11.453848, 7.915178], + [-11.453548, 7.915433], + [-11.452545, 7.915608], + [-11.452321, 7.915881], + [-11.451503, 7.916293], + [-11.449464, 7.916964], + [-11.449583, 7.917084], + [-11.449582, 7.918673], + [-11.446746, 7.920087], + [-11.442634, 7.920952], + [-11.442329, 7.919739], + [-11.441531, 7.919986], + [-11.4406, 7.919849], + [-11.440245, 7.919626], + [-11.43919, 7.919725], + [-11.437446, 7.920935], + [-11.436047, 7.9212], + [-11.432534, 7.922601], + [-11.432916, 7.923749], + [-11.432994, 7.923829], + [-11.432296, 7.924153], + [-11.430306, 7.924717], + [-11.427183, 7.924836], + [-11.42717, 7.924839], + [-11.427232, 7.925375], + [-11.427579, 7.926724], + [-11.426623, 7.926663], + [-11.42607, 7.926622], + [-11.425169, 7.926066], + [-11.424607, 7.926074], + [-11.423903, 7.926234], + [-11.423146, 7.926871], + [-11.422792, 7.927716], + [-11.422672, 7.92866], + [-11.42286, 7.929106], + [-11.422844, 7.929189], + [-11.422897, 7.929214], + [-11.424218, 7.929069], + [-11.425361, 7.929196], + [-11.426401, 7.928934], + [-11.427378, 7.928976], + [-11.427143, 7.929278], + [-11.426839, 7.929378], + [-11.426359, 7.929249], + [-11.425733, 7.929839], + [-11.425403, 7.93057], + [-11.424841, 7.930999], + [-11.426249, 7.93875], + [-11.425416, 7.940417], + [-11.41875, 7.942917], + [-11.417996, 7.95196], + [-11.412356, 7.951961], + [-11.409041, 7.957703], + [-11.409582, 7.960417], + [-11.404001, 7.962897], + [-11.402265, 7.962322], + [-11.401148, 7.962655], + [-11.399584, 7.962766], + [-11.399457, 7.963504], + [-11.399742, 7.964332], + [-11.399769, 7.965003], + [-11.399354, 7.965357], + [-11.399208, 7.966673], + [-11.398756, 7.968062], + [-11.398506, 7.96839], + [-11.397082, 7.967916], + [-11.395417, 7.967083], + [-11.387916, 7.95875], + [-11.385417, 7.959584], + [-11.382733, 7.962938], + [-11.382829, 7.963004], + [-11.382083, 7.96375], + [-11.382082, 7.969583], + [-11.372083, 7.96875], + [-11.36875, 7.972083], + [-11.371249, 7.97375], + [-11.374583, 7.979583], + [-11.381249, 7.979584], + [-11.383749, 7.975416], + [-11.382917, 7.972084], + [-11.392082, 7.972084], + [-11.392083, 7.976249], + [-11.393749, 7.97625], + [-11.396249, 7.977083], + [-11.397916, 7.975416], + [-11.397083, 7.972916], + [-11.399582, 7.970417], + [-11.40125, 7.975416], + [-11.407082, 7.979583], + [-11.40375, 7.969583], + [-11.415416, 7.967084], + [-11.414907, 7.973197], + [-11.416954, 7.973198], + [-11.418427, 7.975751], + [-11.41875, 7.971249], + [-11.422916, 7.967917], + [-11.425615, 7.967916], + [-11.425617, 7.967572], + [-11.427083, 7.967084], + [-11.437082, 7.967917], + [-11.439582, 7.970416], + [-11.440417, 7.973749], + [-11.442916, 7.972917], + [-11.44375, 7.97375], + [-11.452516, 7.977441], + [-11.452838, 7.977162], + [-11.453724, 7.974066], + [-11.452309, 7.969031], + [-11.454452, 7.965319], + [-11.457818, 7.965318], + [-11.45625, 7.963749], + [-11.456456, 7.961483], + [-11.457402, 7.9614], + [-11.457921, 7.960556], + [-11.457999, 7.959827], + [-11.457726, 7.958968], + [-11.457804, 7.957299], + [-11.457145, 7.956373], + [-11.456425, 7.953901], + [-11.456433, 7.953444], + [-11.45708, 7.951278], + [-11.456606, 7.94916], + [-11.45744, 7.947839], + [-11.457996, 7.946546], + [-11.458551, 7.94625], + [-11.457916, 7.946249], + [-11.455417, 7.943749], + [-11.458749, 7.93375], + [-11.459733, 7.932274], + [-11.459368, 7.932091], + [-11.46125, 7.929584], + [-11.464582, 7.930416], + [-11.46625, 7.923749] + ] + ], + "type": "Polygon" + }, + "id": 25, + "properties": { + "cc:admin:id": ["2"], + "cc:oBld:total": 832, + "cc:pop:fifteen-to-twenty-four": 1712.164717491336, + "cc:pop:grid3-total": 4371.590864287579, + "cc:pop:kontur-total": 9535.042590989284, + "cc:pop:men": 4947.847927307669, + "cc:pop:sixty-plus": 676.7075577889875, + "cc:pop:total": 9584.03228748605, + "cc:pop:under-five": 1575.6152779623583, + "cc:pop:women": 4636.184360178383, + "cc:pop:women-fiften-to-forty-nine": 2210.460847333132, + "cc:pop:wp-total": 7071.766786918347, + "cc:pop:wp-total-UN": 8201.5760298641, + "cc:id": "25", + "cc:Name": "Baoma Station CHP", + "cc:site": [-11.4382, 7.9294], + "user:parentName": "Baoma", + "user:code": "OU_573", + "user:orgUnitId": "jNb63DIHuwU", + "user:level": "4", + "user:parentId": "vWbkYPRmKyS" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.757091, 8.415632], + [-11.754583, 8.413749], + [-11.752916, 8.41125], + [-11.749583, 8.409584], + [-11.746249, 8.413749], + [-11.740417, 8.41125], + [-11.739582, 8.409584], + [-11.73625, 8.409583], + [-11.734582, 8.397084], + [-11.73375, 8.397083], + [-11.733749, 8.395416], + [-11.727083, 8.389584], + [-11.730416, 8.383749], + [-11.729583, 8.38125], + [-11.724583, 8.381249], + [-11.727082, 8.370417], + [-11.725416, 8.369583], + [-11.722082, 8.368749], + [-11.717082, 8.36375], + [-11.70875, 8.366249], + [-11.707916, 8.366249], + [-11.70375, 8.362083], + [-11.706249, 8.35625], + [-11.701249, 8.352917], + [-11.699583, 8.352916], + [-11.698749, 8.349584], + [-11.68875, 8.349584], + [-11.687082, 8.350416], + [-11.68375, 8.350417], + [-11.678056, 8.348993], + [-11.675546, 8.353338], + [-11.667958, 8.353339], + [-11.667916, 8.35375], + [-11.659765, 8.354608], + [-11.656383, 8.34875], + [-11.658526, 8.345036], + [-11.653749, 8.347084], + [-11.647917, 8.347916], + [-11.647917, 8.339584], + [-11.648309, 8.33919], + [-11.646088, 8.33919], + [-11.645416, 8.347917], + [-11.641249, 8.351249], + [-11.63375, 8.35125], + [-11.629582, 8.341249], + [-11.622916, 8.337084], + [-11.621249, 8.337084], + [-11.615417, 8.338749], + [-11.612916, 8.34125], + [-11.61125, 8.344584], + [-11.611249, 8.345955], + [-11.605532, 8.345956], + [-11.601626, 8.352721], + [-11.593813, 8.352722], + [-11.589906, 8.359486], + [-11.582095, 8.359487], + [-11.578188, 8.366253], + [-11.582094, 8.373018], + [-11.57828, 8.379625], + [-11.57875, 8.379584], + [-11.582916, 8.382917], + [-11.583749, 8.393749], + [-11.579583, 8.397916], + [-11.577082, 8.397083], + [-11.569583, 8.387084], + [-11.567917, 8.389583], + [-11.56625, 8.391249], + [-11.562083, 8.392083], + [-11.559582, 8.380417], + [-11.553659, 8.381075], + [-11.5549, 8.3835], + [-11.557399, 8.387699], + [-11.5588, 8.3927], + [-11.558899, 8.3968], + [-11.5571, 8.404699], + [-11.5567, 8.408399], + [-11.5569, 8.4121], + [-11.558199, 8.4185], + [-11.557999, 8.4215], + [-11.5565, 8.429499], + [-11.5567, 8.4332], + [-11.558, 8.436499], + [-11.562199, 8.439999], + [-11.573799, 8.445599], + [-11.577199, 8.447699], + [-11.5804, 8.4505], + [-11.583699, 8.454899], + [-11.5863, 8.4604], + [-11.588199, 8.465999], + [-11.589799, 8.471699], + [-11.5906, 8.4769], + [-11.5914, 8.487499], + [-11.6095, 8.4863], + [-11.652699, 8.486399], + [-11.662599, 8.4861], + [-11.6674, 8.485499], + [-11.6765, 8.483199], + [-11.688899, 8.482], + [-11.698399, 8.4803], + [-11.706099, 8.484799], + [-11.710299, 8.486999], + [-11.714599, 8.4842], + [-11.717499, 8.4819], + [-11.721799, 8.477], + [-11.7259, 8.473599], + [-11.728099, 8.4708], + [-11.7308, 8.464499], + [-11.7321, 8.459899], + [-11.7335, 8.453099], + [-11.734899, 8.4486], + [-11.7387, 8.439999], + [-11.7434, 8.431599], + [-11.754399, 8.4194], + [-11.757091, 8.415632] + ] + ], + "type": "Polygon" + }, + "id": 26, + "properties": { + "cc:admin:id": ["141"], + "cc:oBld:total": 1270, + "cc:pop:fifteen-to-twenty-four": 1670.9621398292156, + "cc:pop:grid3-total": 13051.585136172513, + "cc:pop:kontur-total": 9659.099483430993, + "cc:pop:men": 4527.609832178048, + "cc:pop:sixty-plus": 694.9457486946828, + "cc:pop:total": 9251.120468911155, + "cc:pop:under-five": 1508.6508213746533, + "cc:pop:women": 4723.510636733105, + "cc:pop:women-fiften-to-forty-nine": 2269.0159808623903, + "cc:pop:wp-total": 6854.146169477521, + "cc:pop:wp-total-UN": 7942.12996540566, + "cc:id": "26", + "cc:Name": "Baomahun CHC", + "cc:site": [-11.6677, 8.4165], + "user:parentName": "Valunia", + "user:code": "OU_1126", + "user:orgUnitId": "FLjwMPWLrL2", + "user:level": "4", + "user:parentId": "npWGUj37qDe" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.126722, 8.941402], + [-13.12633, 8.940837], + [-13.125543, 8.94029], + [-13.126249, 8.939583], + [-13.122954, 8.938484], + [-13.122969, 8.938358], + [-13.122655, 8.936934], + [-13.122, 8.936051], + [-13.120421, 8.934497], + [-13.120076, 8.933882], + [-13.120631, 8.933717], + [-13.117635, 8.929524], + [-13.1136, 8.931199], + [-13.109699, 8.9325], + [-13.105599, 8.9329], + [-13.088563, 8.933332], + [-13.087143, 8.934415], + [-13.085547, 8.935753], + [-13.084294, 8.935668], + [-13.081417, 8.93621], + [-13.078371, 8.936921], + [-13.076178, 8.937661], + [-13.074782, 8.93863], + [-13.073926, 8.939827], + [-13.073187, 8.941251], + [-13.073237, 8.943035], + [-13.07329, 8.944582], + [-13.07375, 8.944583], + [-13.075417, 8.947082], + [-13.07875, 8.947083], + [-13.082082, 8.947916], + [-13.082083, 8.947257], + [-13.082084, 8.947256], + [-13.086815, 8.947956], + [-13.089379, 8.949437], + [-13.090452, 8.950814], + [-13.089583, 8.95125], + [-13.089583, 8.952754], + [-13.089903, 8.953656], + [-13.090585, 8.956788], + [-13.09066, 8.959852], + [-13.092029, 8.960195], + [-13.091969, 8.962331], + [-13.090545, 8.96461], + [-13.087342, 8.967916], + [-13.085417, 8.967917], + [-13.085226, 8.967727], + [-13.084205, 8.968837], + [-13.080389, 8.972539], + [-13.080198, 8.972699], + [-13.080416, 8.972917], + [-13.080417, 8.973749], + [-13.080973, 8.974307], + [-13.080826, 8.974507], + [-13.081501, 8.975219], + [-13.082082, 8.975616], + [-13.082083, 8.974583], + [-13.084582, 8.974583], + [-13.084583, 8.976249], + [-13.084837, 8.977012], + [-13.085632, 8.97732], + [-13.086605, 8.97753], + [-13.088374, 8.977497], + [-13.089691, 8.976963], + [-13.091399, 8.975932], + [-13.091792, 8.975646], + [-13.092931, 8.974899], + [-13.094141, 8.974757], + [-13.094568, 8.975754], + [-13.09432, 8.977106], + [-13.093537, 8.977997], + [-13.093465, 8.978886], + [-13.093714, 8.97974], + [-13.094124, 8.980416], + [-13.097916, 8.980416], + [-13.097917, 8.979582], + [-13.100416, 8.978749], + [-13.101249, 8.977083], + [-13.099876, 8.974337], + [-13.099877, 8.974335], + [-13.099926, 8.974335], + [-13.100089, 8.97375], + [-13.10125, 8.97375], + [-13.10375, 8.975416], + [-13.107082, 8.974583], + [-13.107083, 8.970636], + [-13.107472, 8.970638], + [-13.107987, 8.971027], + [-13.107726, 8.971541], + [-13.108501, 8.971802], + [-13.108247, 8.97103], + [-13.109022, 8.97129], + [-13.109157, 8.970519], + [-13.10981, 8.969491], + [-13.110327, 8.969494], + [-13.110453, 8.969872], + [-13.112082, 8.970416], + [-13.112917, 8.967083], + [-13.115942, 8.967083], + [-13.116349, 8.967495], + [-13.117242, 8.967788], + [-13.117916, 8.96375], + [-13.116554, 8.961707], + [-13.116471, 8.959219], + [-13.117119, 8.958964], + [-13.11687, 8.95716], + [-13.117388, 8.957162], + [-13.117391, 8.956646], + [-13.118427, 8.956523], + [-13.118945, 8.956654], + [-13.118823, 8.955366], + [-13.119479, 8.953566], + [-13.119998, 8.953439], + [-13.120259, 8.953183], + [-13.121036, 8.953058], + [-13.121172, 8.952029], + [-13.121047, 8.951255], + [-13.121823, 8.951258], + [-13.122129, 8.950463], + [-13.122366, 8.9507], + [-13.122461, 8.951679], + [-13.123749, 8.951249], + [-13.12375, 8.949583], + [-13.124582, 8.948749], + [-13.124583, 8.946057], + [-13.125248, 8.945564], + [-13.126102, 8.944682], + [-13.126673, 8.943624], + [-13.126711, 8.942944], + [-13.126722, 8.941402] + ] + ], + "type": "Polygon" + }, + "id": 27, + "properties": { + "cc:admin:id": ["115"], + "cc:oBld:total": 1059, + "cc:pop:fifteen-to-twenty-four": 1088.3576282856534, + "cc:pop:grid3-total": 8597.017108955344, + "cc:pop:kontur-total": 6155.829171994476, + "cc:pop:men": 2804.1570087185514, + "cc:pop:sixty-plus": 361.89127128864635, + "cc:pop:total": 6011.4687421210365, + "cc:pop:under-five": 939.4156908751736, + "cc:pop:women": 3207.311733402484, + "cc:pop:women-fiften-to-forty-nine": 1546.9010338074734, + "cc:pop:wp-total": 5627.463058121308, + "cc:pop:wp-total-UN": 6529.006496569294, + "cc:id": "27", + "cc:Name": "Baptist Centre Kassirie", + "cc:site": [-13.1137, 8.942], + "user:parentName": "Samu", + "user:code": "OU_211247", + "user:orgUnitId": "QIp6DHlMGfb", + "user:level": "4", + "user:parentId": "r06ohri9wA9" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.303499, 9.039899], + [-13.3026, 9.0379], + [-13.301, 9.036], + [-13.300099, 9.034], + [-13.298199, 9.032099], + [-13.296, 9.0271], + [-13.295699, 9.025399], + [-13.2946, 9.0218], + [-13.293699, 9.020699], + [-13.2926, 9.0182], + [-13.292599, 9.0165], + [-13.2918, 9.014599], + [-13.2918, 9.0113], + [-13.2913, 9.0088], + [-13.2913, 9.0068], + [-13.292399, 9.006], + [-13.293699, 9.005999], + [-13.295399, 9.0029], + [-13.296499, 9.002399], + [-13.296299, 8.999599], + [-13.2954, 8.9965], + [-13.296499, 8.996299], + [-13.296, 8.994], + [-13.296, 8.9918], + [-13.296499, 8.991299], + [-13.2965, 8.9893], + [-13.2954, 8.988799], + [-13.295399, 8.9874], + [-13.2943, 8.987099], + [-13.294299, 8.9849], + [-13.2935, 8.9838], + [-13.2918, 8.983799], + [-13.2915, 8.982899], + [-13.2915, 8.978501], + [-13.2918, 8.978499], + [-13.2918, 8.9754], + [-13.2926, 8.974899], + [-13.292599, 8.9715], + [-13.2918, 8.9704], + [-13.293199, 8.969299], + [-13.2932, 8.9643], + [-13.291799, 8.961799], + [-13.290999, 8.959], + [-13.2896, 8.957899], + [-13.288499, 8.956], + [-13.287099, 8.955699], + [-13.284899, 8.953799], + [-13.283999, 8.9535], + [-13.2785, 8.953499], + [-13.277099, 8.9529], + [-13.2749, 8.952899], + [-13.273999, 8.9524], + [-13.2724, 8.952399], + [-13.270999, 8.9518], + [-13.2682, 8.951799], + [-13.267099, 8.9507], + [-13.2629, 8.9499], + [-13.260999, 8.949], + [-13.2576, 8.9493], + [-13.2576, 8.953199], + [-13.257899, 8.955399], + [-13.2538, 8.955399], + [-13.253799, 8.954738], + [-13.253424, 8.955147], + [-13.252882, 8.964693], + [-13.253234, 8.969627], + [-13.253363, 8.972258], + [-13.253621, 8.97402], + [-13.253607, 8.975609], + [-13.253045, 8.978332], + [-13.253048, 8.978495], + [-13.256249, 8.980417], + [-13.25375, 8.986249], + [-13.252083, 8.987083], + [-13.25179, 8.990014], + [-13.252541, 8.991903], + [-13.253842, 8.993015], + [-13.255767, 8.993693], + [-13.257312, 8.99391], + [-13.257746, 8.994128], + [-13.254086, 8.996784], + [-13.253215, 8.995424], + [-13.25247, 8.997065], + [-13.252557, 8.997296], + [-13.252644, 8.998966], + [-13.252817, 9.002176], + [-13.252751, 9.003088], + [-13.251776, 9.003239], + [-13.25106, 9.003001], + [-13.249736, 9.001916], + [-13.249116, 9.000233], + [-13.24803, 9.000775], + [-13.247852, 9.000402], + [-13.247401, 8.99965], + [-13.246637, 8.999052], + [-13.245394, 8.999], + [-13.244385, 8.999294], + [-13.243166, 9.000208], + [-13.241618, 9.001249], + [-13.240385, 9.00125], + [-13.239974, 9.001612], + [-13.239735, 9.001857], + [-13.238563, 9.001891], + [-13.237886, 9.001371], + [-13.237868, 9.000729], + [-13.238019, 9.00052], + [-13.237771, 9.000271], + [-13.237677, 9.000434], + [-13.237625, 9.001266], + [-13.237938, 9.001995], + [-13.238736, 9.00255], + [-13.239376, 9.002557], + [-13.239432, 9.003522], + [-13.239844, 9.004694], + [-13.240321, 9.006343], + [-13.240255, 9.007232], + [-13.239497, 9.008338], + [-13.238109, 9.009834], + [-13.237067, 9.011266], + [-13.23622, 9.011331], + [-13.235375, 9.010421], + [-13.234811, 9.008642], + [-13.234263, 9.007774], + [-13.233529, 9.007321], + [-13.232539, 9.007371], + [-13.231881, 9.00784], + [-13.230841, 9.008771], + [-13.230212, 9.009748], + [-13.230103, 9.010399], + [-13.230471, 9.010812], + [-13.230558, 9.011853], + [-13.230211, 9.012526], + [-13.2293, 9.013259], + [-13.228751, 9.013721], + [-13.228187, 9.013999], + [-13.228393, 9.014825], + [-13.228124, 9.014981], + [-13.22523, 9.016022], + [-13.220838, 9.019688], + [-13.220488, 9.020392], + [-13.220416, 9.020416], + [-13.219605, 9.020011], + [-13.219581, 9.020056], + [-13.219153, 9.022481], + [-13.219279, 9.023307], + [-13.219138, 9.0244], + [-13.21913, 9.024577], + [-13.219161, 9.024803], + [-13.219109, 9.024898], + [-13.218936, 9.024835], + [-13.218627, 9.024762], + [-13.218231, 9.024714], + [-13.217753, 9.024794], + [-13.217288, 9.025005], + [-13.217169, 9.025291], + [-13.217014, 9.025412], + [-13.216593, 9.025853], + [-13.21375, 9.025417], + [-13.212041, 9.028832], + [-13.21204, 9.028831], + [-13.211885, 9.027716], + [-13.210568, 9.028951], + [-13.209549, 9.028477], + [-13.210597, 9.026164], + [-13.209307, 9.025385], + [-13.210324, 9.025081], + [-13.210348, 9.024102], + [-13.20983, 9.024099], + [-13.209308, 9.024739], + [-13.208726, 9.024214], + [-13.20926, 9.0227], + [-13.208343, 9.0226], + [-13.207496, 9.024344], + [-13.207688, 9.024488], + [-13.2076, 9.024774], + [-13.207429, 9.024664], + [-13.205256, 9.024529], + [-13.204205, 9.023895], + [-13.203832, 9.023114], + [-13.204129, 9.022284], + [-13.20527, 9.019703], + [-13.204901, 9.018405], + [-13.203687, 9.017363], + [-13.203267, 9.016756], + [-13.20219, 9.01421], + [-13.20043, 9.012416], + [-13.199297, 9.011807], + [-13.198433, 9.011734], + [-13.197593, 9.011887], + [-13.196509, 9.011765], + [-13.196126, 9.011544], + [-13.195749, 9.010802], + [-13.195479, 9.00972], + [-13.195568, 9.0082], + [-13.194954, 9.00729], + [-13.195119, 9.006587], + [-13.194366, 9.006501], + [-13.194368, 9.005987], + [-13.19372, 9.006241], + [-13.193844, 9.007013], + [-13.193458, 9.006756], + [-13.192289, 9.007265], + [-13.192413, 9.008295], + [-13.19228, 9.00881], + [-13.191592, 9.008718], + [-13.191375, 9.008548], + [-13.191248, 9.008033], + [-13.19021, 9.008413], + [-13.18969, 9.008796], + [-13.189691, 9.008283], + [-13.189174, 9.00815], + [-13.1884, 9.007374], + [-13.188142, 9.007373], + [-13.187228, 9.008786], + [-13.187352, 9.009816], + [-13.188128, 9.00982], + [-13.188129, 9.009821], + [-13.187345, 9.010976], + [-13.187087, 9.011103], + [-13.187088, 9.010589], + [-13.18683, 9.010588], + [-13.186737, 9.011271], + [-13.186308, 9.011358], + [-13.186218, 9.011526], + [-13.185789, 9.011484], + [-13.185014, 9.010707], + [-13.184239, 9.010575], + [-13.184239, 9.010573], + [-13.184498, 9.010318], + [-13.184499, 9.010061], + [-13.184241, 9.01006], + [-13.18398, 9.010316], + [-13.183977, 9.011088], + [-13.184753, 9.011093], + [-13.184752, 9.011351], + [-13.184234, 9.011476], + [-13.183713, 9.011988], + [-13.183454, 9.011987], + [-13.183326, 9.0116], + [-13.18346, 9.010571], + [-13.18294, 9.010954], + [-13.182422, 9.011081], + [-13.182417, 9.011853], + [-13.181381, 9.011849], + [-13.181377, 9.012621], + [-13.182157, 9.012239], + [-13.182933, 9.012115], + [-13.182934, 9.012116], + [-13.182932, 9.012629], + [-13.184228, 9.01238], + [-13.184226, 9.012893], + [-13.183708, 9.012891], + [-13.183312, 9.014434], + [-13.183306, 9.015465], + [-13.183085, 9.016148], + [-13.182914, 9.016237], + [-13.182913, 9.016494], + [-13.183171, 9.016495], + [-13.183429, 9.016242], + [-13.183431, 9.016243], + [-13.183301, 9.016753], + [-13.18304, 9.017011], + [-13.182905, 9.017782], + [-13.182388, 9.017779], + [-13.18239, 9.017318], + [-13.18133, 9.015553], + [-13.180065, 9.015964], + [-13.180065, 9.015962], + [-13.180195, 9.015707], + [-13.180067, 9.015321], + [-13.179291, 9.015188], + [-13.179292, 9.014931], + [-13.179809, 9.014932], + [-13.179943, 9.014419], + [-13.180464, 9.013647], + [-13.180862, 9.011847], + [-13.179569, 9.011453], + [-13.178532, 9.011448], + [-13.177883, 9.011832], + [-13.178007, 9.012603], + [-13.178006, 9.012604], + [-13.17749, 9.012473], + [-13.177233, 9.011829], + [-13.176716, 9.011825], + [-13.176609, 9.011397], + [-13.174583, 9.012917], + [-13.174583, 9.015416], + [-13.174351, 9.015879], + [-13.174348, 9.015877], + [-13.173666, 9.01577], + [-13.171176, 9.0149], + [-13.170551, 9.018408], + [-13.169736, 9.020299], + [-13.160417, 9.019582], + [-13.161249, 9.010417], + [-13.159583, 9.007916], + [-13.158873, 9.000822], + [-13.15848, 9.000723], + [-13.151745, 8.99973], + [-13.150582, 8.999375], + [-13.150314, 8.999562], + [-13.149265, 8.999716], + [-13.148905, 8.999553], + [-13.148354, 8.99889], + [-13.148355, 8.998889], + [-13.148792, 8.998673], + [-13.152082, 8.998173], + [-13.152083, 8.992083], + [-13.152916, 8.990416], + [-13.15185, 8.988285], + [-13.151428, 8.988395], + [-13.151183, 8.988637], + [-13.150917, 8.988508], + [-13.150913, 8.989023], + [-13.14936, 8.988757], + [-13.149246, 8.985923], + [-13.149117, 8.985665], + [-13.149834, 8.985668], + [-13.148749, 8.984582], + [-13.148019, 8.973627], + [-13.147881, 8.973676], + [-13.145038, 8.972375], + [-13.144264, 8.971598], + [-13.143747, 8.971467], + [-13.143602, 8.97125], + [-13.142083, 8.97125], + [-13.141243, 8.97209], + [-13.141375, 8.972216], + [-13.142241, 8.972968], + [-13.143675, 8.973468], + [-13.144814, 8.97381], + [-13.146341, 8.97413], + [-13.146953, 8.974604], + [-13.146953, 8.974606], + [-13.145863, 8.974311], + [-13.14379, 8.973856], + [-13.14199, 8.973264], + [-13.140941, 8.972261], + [-13.140053, 8.972465], + [-13.139142, 8.972466], + [-13.138666, 8.972737], + [-13.141104, 8.977028], + [-13.134773, 8.977028], + [-13.131005, 8.970504], + [-13.129998, 8.970977], + [-13.129858, 8.970844], + [-13.129923, 8.970548], + [-13.130035, 8.970264], + [-13.125254, 8.970264], + [-13.125224, 8.970343], + [-13.124704, 8.970855], + [-13.124442, 8.971369], + [-13.124396, 8.97231], + [-13.124822, 8.972787], + [-13.124652, 8.973003], + [-13.12482, 8.973175], + [-13.124578, 8.974577], + [-13.124577, 8.974578], + [-13.123749, 8.97375], + [-13.119689, 8.973072], + [-13.120871, 8.971224], + [-13.123548, 8.967584], + [-13.123394, 8.967325], + [-13.12158, 8.967173], + [-13.119697, 8.967362], + [-13.11785, 8.967987], + [-13.116349, 8.967495], + [-13.115942, 8.967083], + [-13.112917, 8.967083], + [-13.112082, 8.970416], + [-13.110453, 8.969873], + [-13.110327, 8.969494], + [-13.10981, 8.969491], + [-13.109157, 8.970519], + [-13.109022, 8.97129], + [-13.108247, 8.971029], + [-13.108501, 8.971801], + [-13.1085, 8.971802], + [-13.107726, 8.971542], + [-13.107987, 8.971028], + [-13.107471, 8.970638], + [-13.107083, 8.970636], + [-13.107082, 8.974583], + [-13.10375, 8.975416], + [-13.101249, 8.97375], + [-13.100088, 8.97375], + [-13.099926, 8.974335], + [-13.099876, 8.974336], + [-13.101249, 8.977082], + [-13.100416, 8.978749], + [-13.097917, 8.979583], + [-13.097916, 8.980416], + [-13.094125, 8.980417], + [-13.094294, 8.980697], + [-13.093647, 8.980859], + [-13.093963, 8.982269], + [-13.09382, 8.983479], + [-13.093501, 8.983977], + [-13.092681, 8.983479], + [-13.091827, 8.982732], + [-13.09051, 8.982732], + [-13.090402, 8.982916], + [-13.089583, 8.982917], + [-13.08923, 8.983624], + [-13.089262, 8.983813], + [-13.08911, 8.983864], + [-13.08875, 8.984583], + [-13.088846, 8.984874], + [-13.087554, 8.986327], + [-13.086094, 8.987147], + [-13.084457, 8.987788], + [-13.084172, 8.988322], + [-13.083781, 8.989781], + [-13.083495, 8.99092], + [-13.082891, 8.991811], + [-13.082998, 8.992843], + [-13.08408, 8.993749], + [-13.084608, 8.99375], + [-13.085062, 8.994552], + [-13.085489, 8.995228], + [-13.08517, 8.996189], + [-13.085168, 8.996249], + [-13.084899, 8.99625], + [-13.084849, 8.996582], + [-13.084849, 8.998148], + [-13.08492, 8.999429], + [-13.08556, 9.000497], + [-13.083283, 9.000463], + [-13.082035, 9.000071], + [-13.080683, 9.000356], + [-13.080541, 9.001138], + [-13.080659, 9.001492], + [-13.082082, 9.002916], + [-13.082139, 9.00303], + [-13.082249, 9.003951], + [-13.082158, 9.004582], + [-13.084968, 9.004583], + [-13.08487, 9.006206], + [-13.084913, 9.00625], + [-13.085417, 9.00625], + [-13.086042, 9.0075], + [-13.086287, 9.007502], + [-13.086286, 9.008016], + [-13.086803, 9.00802], + [-13.086539, 9.009048], + [-13.087316, 9.009053], + [-13.087444, 9.009568], + [-13.087959, 9.010087], + [-13.087957, 9.010344], + [-13.087698, 9.010601], + [-13.087734, 9.011285], + [-13.087046, 9.011371], + [-13.087188, 9.011658], + [-13.087558, 9.012145], + [-13.087041, 9.012144], + [-13.087158, 9.01472], + [-13.087672, 9.015239], + [-13.087669, 9.016011], + [-13.087926, 9.016271], + [-13.087925, 9.016785], + [-13.087271, 9.017683], + [-13.086752, 9.01781], + [-13.086865, 9.018749], + [-13.08643, 9.018749], + [-13.08636, 9.018324], + [-13.085845, 9.017805], + [-13.085074, 9.016513], + [-13.084428, 9.016251], + [-13.08443, 9.015737], + [-13.083653, 9.015861], + [-13.083392, 9.016117], + [-13.083363, 9.016117], + [-13.082611, 9.014237], + [-13.082521, 9.014582], + [-13.080671, 9.014583], + [-13.080535, 9.01551], + [-13.079999, 9.01856], + [-13.078492, 9.023025], + [-13.078475, 9.024605], + [-13.078191, 9.025416], + [-13.079583, 9.025417], + [-13.081249, 9.027083], + [-13.07973, 9.036201], + [-13.084681, 9.037823], + [-13.084433, 9.037947], + [-13.083621, 9.038534], + [-13.081852, 9.042161], + [-13.079349, 9.044127], + [-13.078427, 9.045061], + [-13.078157, 9.045711], + [-13.077642, 9.047905], + [-13.077621, 9.049368], + [-13.077882, 9.050428], + [-13.0876, 9.0484], + [-13.1075, 9.0496], + [-13.123099, 9.0578], + [-13.151499, 9.085899], + [-13.1631, 9.091599], + [-13.174199, 9.092399], + [-13.179499, 9.0903], + [-13.2069, 9.072699], + [-13.2156, 9.0717], + [-13.236299, 9.075399], + [-13.2476, 9.075099], + [-13.267899, 9.0674], + [-13.276399, 9.0621], + [-13.2814, 9.0565], + [-13.2886, 9.052599], + [-13.300699, 9.0416], + [-13.303499, 9.039899] + ] + ], + "type": "Polygon" + }, + "id": 28, + "properties": { + "cc:admin:id": ["115"], + "cc:oBld:total": 4342, + "cc:pop:fifteen-to-twenty-four": 4893.450003863995, + "cc:pop:grid3-total": 16142.477519281112, + "cc:pop:kontur-total": 27848.502720411532, + "cc:pop:men": 12873.15982517603, + "cc:pop:sixty-plus": 1569.4698154774953, + "cc:pop:total": 27806.72379959593, + "cc:pop:under-five": 4271.583761697135, + "cc:pop:women": 14933.56397441989, + "cc:pop:women-fiften-to-forty-nine": 7175.914117314964, + "cc:pop:wp-total": 23329.74111754194, + "cc:pop:wp-total-UN": 27048.831102570723, + "cc:id": "28", + "cc:Name": "Bapuya MCHP", + "cc:site": [-13.1107, 9.0087], + "user:parentName": "Samu", + "user:code": "OU_211255", + "user:orgUnitId": "weLTzWrLXCO", + "user:level": "4", + "user:parentId": "r06ohri9wA9" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.663749, 8.052917], + [-11.652916, 8.052083], + [-11.649583, 8.047917], + [-11.649583, 8.047871], + [-11.649798, 8.047497], + [-11.649583, 8.047124], + [-11.649582, 8.046883], + [-11.649205, 8.047484], + [-11.649203, 8.047484], + [-11.647083, 8.040417], + [-11.647083, 8.039583], + [-11.650416, 8.035417], + [-11.654582, 8.033749], + [-11.657916, 8.029584], + [-11.654583, 8.026249], + [-11.654583, 8.022084], + [-11.656249, 8.020416], + [-11.657082, 8.01625], + [-11.652917, 8.017083], + [-11.652083, 8.017083], + [-11.652082, 8.01625], + [-11.650417, 8.015417], + [-11.650417, 8.010417], + [-11.651249, 8.00625], + [-11.642917, 8.002917], + [-11.642082, 7.99875], + [-11.640416, 7.997916], + [-11.639864, 7.995151], + [-11.641826, 7.994275], + [-11.644672, 7.994008], + [-11.649683, 7.991167], + [-11.647082, 7.987917], + [-11.645416, 7.987916], + [-11.642083, 7.984584], + [-11.642082, 7.98375], + [-11.63908, 7.983749], + [-11.637213, 7.980516], + [-11.640306, 7.975156], + [-11.639959, 7.974163], + [-11.640481, 7.974018], + [-11.640922, 7.974089], + [-11.641119, 7.973749], + [-11.637213, 7.966984], + [-11.63908, 7.96375], + [-11.639617, 7.963749], + [-11.64028, 7.962601], + [-11.636373, 7.955836], + [-11.628562, 7.955835], + [-11.624694, 7.949137], + [-11.624754, 7.948899], + [-11.627174, 7.944706], + [-11.627082, 7.944583], + [-11.626249, 7.942083], + [-11.625595, 7.936189], + [-11.625782, 7.936148], + [-11.625416, 7.935416], + [-11.624583, 7.93125], + [-11.622083, 7.927917], + [-11.622083, 7.925417], + [-11.62625, 7.92125], + [-11.63027, 7.921249], + [-11.630412, 7.920282], + [-11.631463, 7.918479], + [-11.631787, 7.917381], + [-11.631847, 7.916588], + [-11.632051, 7.916077], + [-11.628749, 7.915416], + [-11.62625, 7.912917], + [-11.625567, 7.905418], + [-11.623499, 7.9066], + [-11.619499, 7.9085], + [-11.613999, 7.9127], + [-11.611699, 7.9138], + [-11.6059, 7.9153], + [-11.6032, 7.9173], + [-11.601699, 7.9201], + [-11.6014, 7.9223], + [-11.6014, 7.928599], + [-11.601199, 7.9313], + [-11.600599, 7.933399], + [-11.598, 7.937099], + [-11.592399, 7.9425], + [-11.590099, 7.9439], + [-11.587, 7.945199], + [-11.5827, 7.947599], + [-11.5787, 7.949399], + [-11.575799, 7.9516], + [-11.5711, 7.956299], + [-11.5672, 7.960499], + [-11.565299, 7.9631], + [-11.563299, 7.9674], + [-11.560999, 7.9703], + [-11.5575, 7.973199], + [-11.553599, 7.9751], + [-11.549299, 7.9775], + [-11.541999, 7.9808], + [-11.538299, 7.9817], + [-11.5304, 7.981999], + [-11.526699, 7.9829], + [-11.5192, 7.986499], + [-11.5151, 7.9892], + [-11.516199, 7.994699], + [-11.516899, 7.996799], + [-11.5182, 7.9988], + [-11.520399, 8.001099], + [-11.5227, 8.002799], + [-11.525699, 8.003799], + [-11.5319, 8.0044], + [-11.534899, 8.005099], + [-11.5369, 8.0062], + [-11.54, 8.009], + [-11.542899, 8.011899], + [-11.545099, 8.014899], + [-11.546899, 8.018799], + [-11.5489, 8.0223], + [-11.551199, 8.026799], + [-11.5535, 8.029099], + [-11.560899, 8.032899], + [-11.5649, 8.0346], + [-11.569199, 8.036999], + [-11.5724, 8.0383], + [-11.5768, 8.0406], + [-11.579999, 8.041899], + [-11.5836, 8.0439], + [-11.5874, 8.0457], + [-11.589599, 8.0475], + [-11.590999, 8.050099], + [-11.5917, 8.0541], + [-11.5959, 8.0572], + [-11.601999, 8.062299], + [-11.610799, 8.066599], + [-11.6137, 8.0673], + [-11.6189, 8.0675], + [-11.653499, 8.0675], + [-11.656367, 8.067334], + [-11.657083, 8.05875], + [-11.659583, 8.056249], + [-11.663749, 8.055416], + [-11.663749, 8.052917] + ] + ], + "type": "Polygon" + }, + "id": 29, + "properties": { + "cc:admin:id": ["46"], + "cc:oBld:total": 259, + "cc:pop:fifteen-to-twenty-four": 779.5775563194665, + "cc:pop:grid3-total": 9912.433665028047, + "cc:pop:kontur-total": 4000.390591474229, + "cc:pop:men": 2013.9767725972022, + "cc:pop:sixty-plus": 303.7627336275172, + "cc:pop:total": 4151.430890262827, + "cc:pop:under-five": 700.6272619841914, + "cc:pop:women": 2137.454117665624, + "cc:pop:women-fiften-to-forty-nine": 1016.3900411099422, + "cc:pop:wp-total": 4838.805866260539, + "cc:pop:wp-total-UN": 5590.970735364936, + "cc:id": "29", + "cc:Name": "Barlie MCHP", + "cc:site": [-11.5839, 8.0202], + "user:parentName": "Bargbe", + "user:code": "OU_2732", + "user:orgUnitId": "y5hLlID8ihI", + "user:level": "4", + "user:parentId": "dGheVylzol6" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.951303, 9.064954], + [-12.949845, 9.062829], + [-12.949466, 9.060978], + [-12.948812, 9.059376], + [-12.948544, 9.057834], + [-12.944603, 9.05586], + [-12.941286, 9.054921], + [-12.939575, 9.05464], + [-12.938891, 9.054701], + [-12.939582, 9.047083], + [-12.932916, 9.047916], + [-12.931382, 9.04408], + [-12.934069, 9.039425], + [-12.932268, 9.036304], + [-12.93176, 9.03616], + [-12.931054, 9.034827], + [-12.929786, 9.034162], + [-12.925155, 9.035797], + [-12.923751, 9.036403], + [-12.92375, 9.036402], + [-12.92375, 9.036249], + [-12.924582, 9.03375], + [-12.927082, 9.033749], + [-12.927916, 9.03125], + [-12.92375, 9.027083], + [-12.925597, 9.023386], + [-12.925154, 9.022261], + [-12.924765, 9.021953], + [-12.924005, 9.021782], + [-12.924014, 9.021644], + [-12.922962, 9.017782], + [-12.921447, 9.016666], + [-12.921123, 9.016595], + [-12.920149, 9.015335], + [-12.920041, 9.01433], + [-12.91971, 9.013805], + [-12.919495, 9.012486], + [-12.919577, 9.011666], + [-12.919432, 9.010026], + [-12.919437, 9.009558], + [-12.919282, 9.007572], + [-12.919226, 9.007342], + [-12.918694, 9.006112], + [-12.918094, 9.005239], + [-12.91811, 9.004578], + [-12.917764, 9.002414], + [-12.917882, 9.001799], + [-12.91812, 9.001454], + [-12.917917, 9.001249], + [-12.917916, 8.998749], + [-12.912082, 8.99125], + [-12.909582, 8.992916], + [-12.904582, 8.989583], + [-12.901297, 8.989582], + [-12.901297, 8.989581], + [-12.902103, 8.988723], + [-12.903146, 8.987615], + [-12.903551, 8.986197], + [-12.901886, 8.985581], + [-12.898397, 8.983497], + [-12.897916, 8.985417], + [-12.892083, 8.98625], + [-12.894582, 8.991249], + [-12.89375, 8.995416], + [-12.89375, 8.996249], + [-12.895416, 8.999583], + [-12.891249, 9.004583], + [-12.887083, 9.008749], + [-12.885417, 9.009583], + [-12.884583, 9.016249], + [-12.884582, 9.017916], + [-12.88265, 9.023071], + [-12.882694, 9.023081], + [-12.88125, 9.029582], + [-12.87842, 9.03015], + [-12.87991, 9.033451], + [-12.880783, 9.033245], + [-12.883369, 9.037641], + [-12.881231, 9.038545], + [-12.880462, 9.038697], + [-12.877917, 9.038944], + [-12.877917, 9.041249], + [-12.882082, 9.045417], + [-12.882083, 9.048749], + [-12.891249, 9.050416], + [-12.893749, 9.05125], + [-12.892917, 9.059582], + [-12.894006, 9.061216], + [-12.895131, 9.05989], + [-12.901249, 9.061249], + [-12.902082, 9.06125], + [-12.902083, 9.062082], + [-12.90375, 9.062083], + [-12.90625, 9.064582], + [-12.910417, 9.064583], + [-12.91125, 9.066249], + [-12.915034, 9.070035], + [-12.914176, 9.074618], + [-12.913887, 9.076212], + [-12.914059, 9.075874], + [-12.917082, 9.077082], + [-12.919583, 9.074583], + [-12.92125, 9.07375], + [-12.928749, 9.072916], + [-12.92875, 9.067961], + [-12.929684, 9.0678], + [-12.930719, 9.0678], + [-12.933046, 9.068304], + [-12.935239, 9.069034], + [-12.937513, 9.070364], + [-12.940351, 9.071452], + [-12.94097, 9.071772], + [-12.942599, 9.07349], + [-12.943304, 9.073931], + [-12.94393, 9.074605], + [-12.944006, 9.075333], + [-12.944217, 9.075762], + [-12.944872, 9.076578], + [-12.946091, 9.077543], + [-12.94796, 9.07859], + [-12.948855, 9.079312], + [-12.950281, 9.08023], + [-12.9506, 9.079799], + [-12.951199, 9.075799], + [-12.950899, 9.073499], + [-12.9494, 9.069499], + [-12.95, 9.0668], + [-12.951303, 9.064954] + ] + ], + "type": "Polygon" + }, + "id": 30, + "properties": { + "cc:admin:id": ["82"], + "cc:oBld:total": 4130, + "cc:pop:fifteen-to-twenty-four": 4787.633312450466, + "cc:pop:grid3-total": 29918.784445168265, + "cc:pop:kontur-total": 25576.450906476966, + "cc:pop:men": 12255.28981415311, + "cc:pop:sixty-plus": 1671.454964746829, + "cc:pop:total": 25746.106291760665, + "cc:pop:under-five": 4122.009573307504, + "cc:pop:women": 13490.81647760755, + "cc:pop:women-fiften-to-forty-nine": 6527.047700589918, + "cc:pop:wp-total": 21893.66738623145, + "cc:pop:wp-total-UN": 25378.956872298684, + "cc:id": "30", + "cc:Name": "Barmoi Luma MCHP", + "cc:site": [-12.9062, 9.0382], + "user:parentName": "Magbema", + "user:code": "OU_211229", + "user:orgUnitId": "vyIl6s0lhKc", + "user:level": "4", + "user:parentId": "QywkxFudXrC" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.819622, 9.016289], + [-12.817917, 9.014583], + [-12.817916, 9.01375], + [-12.815416, 9.013749], + [-12.81375, 9.009583], + [-12.814122, 9.008464], + [-12.813436, 9.008449], + [-12.81295, 9.008487], + [-12.812373, 9.008067], + [-12.812398, 9.006956], + [-12.812104, 9.005446], + [-12.812079, 9.004297], + [-12.812382, 9.00375], + [-12.810417, 9.003749], + [-12.810416, 8.999583], + [-12.805417, 8.99875], + [-12.804583, 9.006249], + [-12.802083, 9.006249], + [-12.800416, 9.005417], + [-12.799582, 9.005416], + [-12.797916, 9.002083], + [-12.795416, 9.001249], + [-12.791249, 8.99625], + [-12.78875, 8.996249], + [-12.788019, 8.989685], + [-12.787917, 8.989734], + [-12.787916, 8.989582], + [-12.78375, 8.987916], + [-12.785417, 8.984583], + [-12.787916, 8.983749], + [-12.787916, 8.977083], + [-12.782917, 8.97625], + [-12.777082, 8.980416], + [-12.774582, 8.977917], + [-12.770417, 8.97625], + [-12.762917, 8.976249], + [-12.760416, 8.972917], + [-12.757082, 8.972916], + [-12.749583, 8.970417], + [-12.748749, 8.969583], + [-12.747053, 8.969583], + [-12.746923, 8.969799], + [-12.746145, 8.970516], + [-12.745715, 8.970577], + [-12.74394, 8.9726], + [-12.744394, 8.975227], + [-12.744761, 8.97626], + [-12.742651, 8.97626], + [-12.741207, 8.973757], + [-12.741192, 8.973974], + [-12.742565, 8.979523], + [-12.742118, 8.981235], + [-12.741901, 8.984459], + [-12.742399, 8.987113], + [-12.743422, 8.989394], + [-12.743931, 8.989992], + [-12.744395, 8.992463], + [-12.74485, 8.993318], + [-12.746031, 8.994416], + [-12.748507, 8.994874], + [-12.750581, 8.995514], + [-12.752419, 8.996491], + [-12.752916, 8.996866], + [-12.752917, 8.996249], + [-12.754419, 8.994748], + [-12.756042, 8.99612], + [-12.757723, 8.998747], + [-12.759491, 9.000148], + [-12.760138, 9.001893], + [-12.760715, 9.002499], + [-12.760925, 9.004054], + [-12.760558, 9.005369], + [-12.759283, 9.008048], + [-12.757239, 9.007639], + [-12.756523, 9.008705], + [-12.755552, 9.009612], + [-12.754703, 9.010079], + [-12.753119, 9.010537], + [-12.751264, 9.011713], + [-12.74417, 9.015086], + [-12.738645, 9.019076], + [-12.738141, 9.019234], + [-12.737449, 9.020748], + [-12.736558, 9.021365], + [-12.7374, 9.0229], + [-12.742099, 9.034899], + [-12.745799, 9.042399], + [-12.749899, 9.049699], + [-12.754099, 9.055399], + [-12.755599, 9.057799], + [-12.756999, 9.0622], + [-12.756699, 9.0678], + [-12.7519, 9.077199], + [-12.7483, 9.083199], + [-12.745799, 9.086], + [-12.7378, 9.091499], + [-12.734, 9.096], + [-12.7337, 9.099399], + [-12.7352, 9.102099], + [-12.7377, 9.1038], + [-12.7411, 9.1045], + [-12.7453, 9.104599], + [-12.782699, 9.104], + [-12.787, 9.103399], + [-12.793799, 9.1016], + [-12.799099, 9.101399], + [-12.799799, 9.0935], + [-12.7997, 9.0871], + [-12.798999, 9.082099], + [-12.796399, 9.072799], + [-12.7959, 9.0662], + [-12.7963, 9.060999], + [-12.798, 9.053999], + [-12.803499, 9.0373], + [-12.805799, 9.0319], + [-12.8089, 9.027599], + [-12.818399, 9.0177], + [-12.819622, 9.016289] + ] + ], + "type": "Polygon" + }, + "id": 31, + "properties": { + "cc:admin:id": ["13"], + "cc:oBld:total": 555, + "cc:pop:fifteen-to-twenty-four": 1307.4648416366965, + "cc:pop:grid3-total": 9311.724803031524, + "cc:pop:kontur-total": 7554.119467609539, + "cc:pop:men": 3437.7588115341027, + "cc:pop:sixty-plus": 396.91177924223626, + "cc:pop:total": 7253.843803856776, + "cc:pop:under-five": 1130.1869812235673, + "cc:pop:women": 3816.0849923226733, + "cc:pop:women-fiften-to-forty-nine": 1900.446050695406, + "cc:pop:wp-total": 6608.670043667562, + "cc:pop:wp-total-UN": 7662.043679816116, + "cc:id": "31", + "cc:Name": "Barmoi Munu CHP", + "cc:site": [-12.75, 9.092], + "user:parentName": "Masungbala", + "user:code": "OU_211258", + "user:orgUnitId": "vELaJEPLOPF", + "user:level": "4", + "user:parentId": "FlBemv1NfEC" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.524001, 8.291485], + [-12.521099, 8.289599], + [-12.514699, 8.286499], + [-12.510499, 8.285299], + [-12.504299, 8.2848], + [-12.4995, 8.284899], + [-12.4949, 8.285399], + [-12.484199, 8.2882], + [-12.4702, 8.289399], + [-12.4626, 8.290899], + [-12.4581, 8.290599], + [-12.4526, 8.286899], + [-12.447499, 8.280199], + [-12.439, 8.2729], + [-12.4364, 8.281299], + [-12.4345, 8.290799], + [-12.4325, 8.298199], + [-12.432199, 8.3012], + [-12.4319, 8.312999], + [-12.4304, 8.316399], + [-12.426999, 8.318199], + [-12.423999, 8.317199], + [-12.421299, 8.314099], + [-12.418299, 8.3077], + [-12.415799, 8.305399], + [-12.412099, 8.3044], + [-12.4087, 8.305099], + [-12.4044, 8.307899], + [-12.3943, 8.316599], + [-12.3899, 8.322399], + [-12.386999, 8.3259], + [-12.3773, 8.335899], + [-12.3718, 8.341199], + [-12.367099, 8.3445], + [-12.3605, 8.347499], + [-12.358419, 8.347906], + [-12.357917, 8.350416], + [-12.359583, 8.354584], + [-12.359582, 8.355416], + [-12.35875, 8.355417], + [-12.35875, 8.367916], + [-12.362082, 8.367916], + [-12.366249, 8.36125], + [-12.36875, 8.365416], + [-12.374582, 8.365417], + [-12.376249, 8.366249], + [-12.37625, 8.364583], + [-12.380416, 8.362917], + [-12.380583, 8.363], + [-12.380597, 8.362977], + [-12.382916, 8.363749], + [-12.38375, 8.362083], + [-12.386249, 8.360417], + [-12.394582, 8.360416], + [-12.394583, 8.35625], + [-12.396249, 8.355417], + [-12.397083, 8.357916], + [-12.399582, 8.359584], + [-12.399583, 8.367083], + [-12.40125, 8.369583], + [-12.413749, 8.367917], + [-12.41625, 8.369583], + [-12.421249, 8.370416], + [-12.42125, 8.371249], + [-12.424582, 8.371249], + [-12.429822, 8.36601], + [-12.42993, 8.3661], + [-12.430102, 8.366303], + [-12.431249, 8.364584], + [-12.434582, 8.364583], + [-12.432917, 8.359583], + [-12.440417, 8.357084], + [-12.450416, 8.359583], + [-12.45125, 8.357917], + [-12.454583, 8.354584], + [-12.45625, 8.354584], + [-12.462098, 8.355232], + [-12.461307, 8.35432], + [-12.461328, 8.353577], + [-12.461193, 8.353387], + [-12.464254, 8.348085], + [-12.468749, 8.348084], + [-12.46875, 8.344794], + [-12.474582, 8.344793], + [-12.474583, 8.340417], + [-12.480416, 8.337083], + [-12.481439, 8.335548], + [-12.480972, 8.33475], + [-12.48097, 8.33375], + [-12.490416, 8.33375], + [-12.492083, 8.332917], + [-12.499582, 8.332916], + [-12.50375, 8.328749], + [-12.505417, 8.32875], + [-12.516249, 8.332083], + [-12.517916, 8.322084], + [-12.520416, 8.321249], + [-12.521249, 8.320416], + [-12.521249, 8.31375], + [-12.51875, 8.313749], + [-12.517082, 8.309584], + [-12.513741, 8.307578], + [-12.51281, 8.308642], + [-12.512083, 8.307917], + [-12.512083, 8.30375], + [-12.517082, 8.301249], + [-12.517917, 8.292085], + [-12.51875, 8.292916], + [-12.520417, 8.292084], + [-12.524001, 8.291485] + ] + ], + "type": "Polygon" + }, + "id": 32, + "properties": { + "cc:admin:id": ["149"], + "cc:oBld:total": 0, + "cc:pop:fifteen-to-twenty-four": 826.9972538122868, + "cc:pop:grid3-total": 3741.6886315181273, + "cc:pop:kontur-total": 4385.644168913908, + "cc:pop:men": 2060.8408595085807, + "cc:pop:sixty-plus": 287.32185957402476, + "cc:pop:total": 4445.250972113919, + "cc:pop:under-five": 715.0397965383745, + "cc:pop:women": 2384.410112605337, + "cc:pop:women-fiften-to-forty-nine": 1173.8186389839661, + "cc:pop:wp-total": 4413.13746824052, + "cc:pop:wp-total-UN": 5126.855624216716, + "cc:id": "32", + "cc:Name": "Bath Bana MCHP", + "cc:site": [-12.4486, 8.3348], + "user:parentName": "Yoni", + "user:code": "OU_268243", + "user:orgUnitId": "sDTodaygv5u", + "user:level": "4", + "user:parentId": "NNE0YMCDZkO" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.736984, 7.430416], + [-11.736679, 7.429717], + [-11.73478, 7.426877], + [-11.733724, 7.426077], + [-11.732218, 7.425907], + [-11.73062, 7.42503], + [-11.730178, 7.424569], + [-11.729611, 7.423675], + [-11.729076, 7.421667], + [-11.728446, 7.420574], + [-11.727181, 7.419881], + [-11.72542, 7.419642], + [-11.724511, 7.418888], + [-11.723495, 7.418687], + [-11.722284, 7.417905], + [-11.721407, 7.415858], + [-11.72134, 7.414521], + [-11.72089, 7.413997], + [-11.720562, 7.41329], + [-11.72089, 7.411484], + [-11.720419, 7.409545], + [-11.720556, 7.407915], + [-11.720184, 7.407269], + [-11.719517, 7.407284], + [-11.718198, 7.407968], + [-11.717335, 7.408207], + [-11.715163, 7.408145], + [-11.714215, 7.407792], + [-11.712244, 7.408], + [-11.71073, 7.408739], + [-11.710335, 7.409047], + [-11.709744, 7.40994], + [-11.707328, 7.410484], + [-11.707327, 7.410483], + [-11.707483, 7.40971], + [-11.704843, 7.409174], + [-11.702732, 7.408992], + [-11.701932, 7.408427], + [-11.701795, 7.407883], + [-11.702069, 7.407687], + [-11.702103, 7.407127], + [-11.702921, 7.40469], + [-11.703903, 7.402686], + [-11.703557, 7.40126], + [-11.702391, 7.400917], + [-11.702192, 7.401177], + [-11.701353, 7.400999], + [-11.700546, 7.401202], + [-11.699987, 7.401101], + [-11.698872, 7.400475], + [-11.698697, 7.400266], + [-11.698737, 7.399842], + [-11.696445, 7.399167], + [-11.696178, 7.399014], + [-11.694707, 7.39663], + [-11.694613, 7.395084], + [-11.694279, 7.394637], + [-11.694065, 7.3938], + [-11.69452, 7.392798], + [-11.695046, 7.392912], + [-11.695536, 7.393374], + [-11.696227, 7.39363], + [-11.696588, 7.393499], + [-11.697166, 7.39294], + [-11.698032, 7.392656], + [-11.698707, 7.391654], + [-11.698757, 7.390997], + [-11.699168, 7.390609], + [-11.698873, 7.389907], + [-11.698921, 7.38864], + [-11.698751, 7.388165], + [-11.698498, 7.387823], + [-11.697308, 7.387338], + [-11.696611, 7.386712], + [-11.696544, 7.384558], + [-11.695832, 7.382717], + [-11.69587, 7.381743], + [-11.696341, 7.380541], + [-11.696499, 7.380276], + [-11.696622, 7.380244], + [-11.685417, 7.378749], + [-11.685417, 7.37125], + [-11.688749, 7.367916], + [-11.688749, 7.36625], + [-11.682083, 7.36625], + [-11.683749, 7.36875], + [-11.683749, 7.377917], + [-11.680416, 7.382083], + [-11.67375, 7.382917], + [-11.673749, 7.38375], + [-11.672916, 7.387916], + [-11.668749, 7.387916], + [-11.662083, 7.38625], + [-11.661249, 7.384584], + [-11.657083, 7.385416], + [-11.656827, 7.384906], + [-11.656534, 7.385151], + [-11.656533, 7.38515], + [-11.654582, 7.38125], + [-11.64625, 7.379584], + [-11.644583, 7.382916], + [-11.643895, 7.383604], + [-11.643299, 7.3855], + [-11.641199, 7.3909], + [-11.640799, 7.3938], + [-11.6406, 7.405399], + [-11.6397, 7.408799], + [-11.6365, 7.415499], + [-11.6342, 7.419799], + [-11.632899, 7.4229], + [-11.630899, 7.4265], + [-11.629583, 7.429521], + [-11.629583, 7.437916], + [-11.632734, 7.442642], + [-11.638874, 7.442643], + [-11.64073, 7.445855], + [-11.646249, 7.446249], + [-11.648474, 7.444025], + [-11.648959, 7.444862], + [-11.653749, 7.444862], + [-11.65375, 7.442083], + [-11.662082, 7.438749], + [-11.665098, 7.435735], + [-11.66537, 7.435891], + [-11.670811, 7.436535], + [-11.673889, 7.43792], + [-11.675823, 7.438014], + [-11.678371, 7.437515], + [-11.679721, 7.436978], + [-11.680562, 7.436622], + [-11.682501, 7.43524], + [-11.683695, 7.435037], + [-11.684735, 7.435136], + [-11.685763, 7.435911], + [-11.686757, 7.437172], + [-11.689059, 7.438365], + [-11.689896, 7.438415], + [-11.692876, 7.437771], + [-11.696201, 7.436527], + [-11.697476, 7.43624], + [-11.698518, 7.436312], + [-11.699664, 7.431634], + [-11.70102, 7.425355], + [-11.701395, 7.42375], + [-11.707916, 7.423749], + [-11.709583, 7.422084], + [-11.717916, 7.423749], + [-11.717917, 7.425416], + [-11.727083, 7.430416], + [-11.736984, 7.430416] + ] + ], + "type": "Polygon" + }, + "id": 33, + "properties": { + "cc:admin:id": ["66"], + "cc:oBld:total": 0, + "cc:pop:fifteen-to-twenty-four": 980.6600525450002, + "cc:pop:grid3-total": 6659.118134071225, + "cc:pop:kontur-total": 6097.277686601237, + "cc:pop:men": 2686.5659109619896, + "cc:pop:sixty-plus": 407.1794105039574, + "cc:pop:total": 5529.01918368557, + "cc:pop:under-five": 928.0067853792045, + "cc:pop:women": 2842.45327272358, + "cc:pop:women-fiften-to-forty-nine": 1361.6638347451506, + "cc:pop:wp-total": 5918.211071259378, + "cc:pop:wp-total-UN": 6860.615481272678, + "cc:id": "33", + "cc:Name": "Bathurst MCHP", + "cc:site": [-11.6861, 7.39085], + "user:parentName": "Wonde", + "user:code": "OU_1164", + "user:orgUnitId": "UGVLYrO63mR", + "user:level": "4", + "user:parentId": "ARZ4y5i4reU" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.084532, 9.379583], + [-12.077083, 9.379582], + [-12.072083, 9.374583], + [-12.072083, 9.365416], + [-12.075416, 9.36125], + [-12.078749, 9.360416], + [-12.075417, 9.35625], + [-12.075416, 9.352042], + [-12.0695, 9.352199], + [-12.065999, 9.3531], + [-12.0593, 9.356299], + [-12.055099, 9.3588], + [-12.051899, 9.3601], + [-12.047399, 9.3623], + [-12.043799, 9.363], + [-12.0379, 9.363299], + [-12.0341, 9.363799], + [-12.027899, 9.3662], + [-12.024099, 9.3668], + [-12.018299, 9.367], + [-12.014599, 9.3678], + [-12.010099, 9.3697], + [-12.007499, 9.3703], + [-12.0022, 9.370899], + [-11.9997, 9.371499], + [-11.994299, 9.3737], + [-11.990499, 9.3742], + [-11.981, 9.3744], + [-11.9778, 9.3759], + [-11.9758, 9.381299], + [-11.974414, 9.384582], + [-11.982082, 9.384583], + [-11.985417, 9.385417], + [-11.990166, 9.385417], + [-11.989397, 9.387982], + [-11.99096, 9.389864], + [-11.992179, 9.390021], + [-11.993565, 9.39066], + [-11.99393, 9.390932], + [-11.994194, 9.391776], + [-11.993241, 9.397159], + [-11.992583, 9.398799], + [-11.991904, 9.399934], + [-11.991127, 9.400651], + [-11.989681, 9.401196], + [-11.989377, 9.401526], + [-11.989165, 9.402283], + [-11.98942, 9.403002], + [-11.989951, 9.403739], + [-11.990029, 9.40434], + [-11.989932, 9.40593], + [-11.989656, 9.406144], + [-11.989558, 9.407075], + [-11.989852, 9.407463], + [-11.991151, 9.408413], + [-11.992016, 9.408355], + [-11.994002, 9.407852], + [-11.994965, 9.407948], + [-11.995771, 9.408958], + [-11.99583, 9.409694], + [-11.995379, 9.411634], + [-11.993845, 9.414689], + [-11.993508, 9.414932], + [-11.993591, 9.415098], + [-11.997168, 9.415098], + [-12.001075, 9.408333], + [-12.005041, 9.408333], + [-12.005055, 9.408379], + [-12.004884, 9.408398], + [-12.002516, 9.409627], + [-12.004008, 9.412005], + [-12.004188, 9.413306], + [-12.004442, 9.413483], + [-12.00495, 9.414645], + [-12.005083, 9.415715], + [-12.006072, 9.418047], + [-12.006901, 9.418912], + [-12.007024, 9.419358], + [-12.007787, 9.41987], + [-12.008088, 9.420297], + [-12.008636, 9.421821], + [-12.008939, 9.421987], + [-12.010271, 9.41987], + [-12.010606, 9.419042], + [-12.015416, 9.420417], + [-12.012917, 9.427917], + [-12.01375, 9.432082], + [-12.019541, 9.427017], + [-12.019726, 9.428206], + [-12.020286, 9.428972], + [-12.020603, 9.429863], + [-12.021589, 9.431473], + [-12.021636, 9.433211], + [-12.021811, 9.434093], + [-12.021721, 9.435006], + [-12.021969, 9.435816], + [-12.022413, 9.436459], + [-12.022461, 9.436853], + [-12.023551, 9.436854], + [-12.025872, 9.440876], + [-12.026703, 9.441201], + [-12.029994, 9.438459], + [-12.031177, 9.43776], + [-12.031677, 9.437048], + [-12.032916, 9.439193], + [-12.032917, 9.438749], + [-12.03625, 9.434583], + [-12.046249, 9.43375], + [-12.051596, 9.435277], + [-12.051616, 9.435238], + [-12.052081, 9.433334], + [-12.052073, 9.433052], + [-12.052807, 9.433051], + [-12.055642, 9.428143], + [-12.052083, 9.424583], + [-12.052916, 9.422083], + [-12.056249, 9.419582], + [-12.05625, 9.417916], + [-12.058575, 9.416172], + [-12.058597, 9.416207], + [-12.05918, 9.4166], + [-12.060389, 9.418377], + [-12.060835, 9.418567], + [-12.061838, 9.419276], + [-12.063383, 9.419815], + [-12.064003, 9.419587], + [-12.064314, 9.41987], + [-12.065584, 9.419974], + [-12.068194, 9.419768], + [-12.069384, 9.420803], + [-12.06976, 9.421619], + [-12.070416, 9.41375], + [-12.068635, 9.411522], + [-12.071679, 9.40625], + [-12.073749, 9.406249], + [-12.076721, 9.396592], + [-12.077083, 9.396659], + [-12.077082, 9.387083], + [-12.07207, 9.38764], + [-12.072069, 9.387639], + [-12.075183, 9.382244], + [-12.082996, 9.382243], + [-12.084532, 9.379583] + ] + ], + "type": "Polygon" + }, + "id": 34, + "properties": { + "cc:admin:id": ["116"], + "cc:oBld:total": 13, + "cc:pop:fifteen-to-twenty-four": 511.2931709086719, + "cc:pop:grid3-total": 4816.8316138642385, + "cc:pop:kontur-total": 2891.000666097656, + "cc:pop:men": 1312.8090321678314, + "cc:pop:sixty-plus": 167.7206866348273, + "cc:pop:total": 2767.770960979606, + "cc:pop:under-five": 447.37012326733145, + "cc:pop:women": 1454.961928811775, + "cc:pop:women-fiften-to-forty-nine": 703.7268670090772, + "cc:pop:wp-total": 2250.302886639848, + "cc:pop:wp-total-UN": 2612.5356689051123, + "cc:id": "34", + "cc:Name": "Batkanu CHC", + "cc:site": [-12.02582, 9.39236], + "user:parentName": "Libeisaygahun", + "user:code": "OU_193303", + "user:orgUnitId": "agM0BKQlTh3", + "user:level": "4", + "user:parentId": "hRZOIgQ0O1m" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.732082, 7.407917], + [-11.727083, 7.404584], + [-11.725416, 7.406249], + [-11.722917, 7.40625], + [-11.717083, 7.40375], + [-11.715869, 7.407392], + [-11.715947, 7.407422], + [-11.717211, 7.407223], + [-11.717808, 7.407414], + [-11.719019, 7.406722], + [-11.71968, 7.406522], + [-11.72051, 7.406568], + [-11.720967, 7.406946], + [-11.721388, 7.407823], + [-11.721418, 7.408546], + [-11.721124, 7.409508], + [-11.721516, 7.410765], + [-11.721396, 7.411537], + [-11.721669, 7.412594], + [-11.721539, 7.413366], + [-11.722054, 7.414597], + [-11.722016, 7.415955], + [-11.7228, 7.41754], + [-11.723815, 7.418075], + [-11.726249, 7.416249], + [-11.727917, 7.412084], + [-11.732082, 7.407917] + ] + ], + "type": "Polygon" + }, + "id": 35, + "properties": { + "cc:admin:id": ["66"], + "cc:oBld:total": 0, + "cc:pop:fifteen-to-twenty-four": 189, + "cc:pop:grid3-total": 1530.2534444999997, + "cc:pop:kontur-total": 1048.5002598894184, + "cc:pop:men": 510, + "cc:pop:sixty-plus": 76, + "cc:pop:total": 1050, + "cc:pop:under-five": 175, + "cc:pop:women": 540, + "cc:pop:women-fiften-to-forty-nine": 259, + "cc:pop:wp-total": 824.5757789999902, + "cc:pop:wp-total-UN": 954.5895569999884, + "cc:id": "35", + "cc:Name": "Bayama MCHP", + "cc:site": [-11.7258, 7.4082], + "user:parentName": "Kpanga Krim", + "user:code": "OU_260418", + "user:orgUnitId": "k92yudERPlv", + "user:level": "4", + "user:parentId": "YpVol7asWvd" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.080416, 7.619583], + [-11.07875, 7.614583], + [-11.078749, 7.60945], + [-11.076799, 7.608399], + [-11.070399, 7.603399], + [-11.062599, 7.599399], + [-11.058699, 7.598499], + [-11.052799, 7.5983], + [-11.047899, 7.5991], + [-11.042199, 7.6016], + [-11.038399, 7.6021], + [-11.0335, 7.6021], + [-11.029699, 7.601499], + [-11.023499, 7.599], + [-11.019999, 7.5988], + [-11.017499, 7.5992], + [-11.011699, 7.6015], + [-11.007499, 7.602], + [-10.9997, 7.602099], + [-10.996399, 7.6025], + [-10.994299, 7.6032], + [-10.9907, 7.605099], + [-10.9876, 7.606499], + [-10.983299, 7.609], + [-10.978799, 7.6114], + [-10.975999, 7.6137], + [-10.9737, 7.616599], + [-10.9707, 7.621999], + [-10.9683, 7.624899], + [-10.963, 7.629899], + [-10.958599, 7.633], + [-10.955399, 7.6382], + [-10.954499, 7.6405], + [-10.953499, 7.6457], + [-10.9498, 7.653899], + [-10.948299, 7.655899], + [-10.945799, 7.657499], + [-10.942499, 7.6581], + [-10.935799, 7.658299], + [-10.9321, 7.658], + [-10.929299, 7.656999], + [-10.9231, 7.6496], + [-10.921, 7.6465], + [-10.919599, 7.643299], + [-10.917399, 7.638999], + [-10.915499, 7.633499], + [-10.912299, 7.6319], + [-10.909799, 7.6318], + [-10.907099, 7.6322], + [-10.904, 7.6334], + [-10.904179, 7.63658], + [-10.909564, 7.636581], + [-10.913469, 7.643346], + [-10.909564, 7.650112], + [-10.91347, 7.656877], + [-10.921282, 7.656878], + [-10.925189, 7.663643], + [-10.933, 7.663644], + [-10.936908, 7.670409], + [-10.94472, 7.67041], + [-10.948625, 7.677176], + [-10.94472, 7.683941], + [-10.948625, 7.690706], + [-10.949024, 7.690707], + [-10.94875, 7.692084], + [-10.954583, 7.704583], + [-10.964582, 7.70375], + [-10.967916, 7.699583], + [-10.968749, 7.695417], + [-10.965417, 7.680418], + [-10.965418, 7.680417], + [-10.972082, 7.680417], + [-10.974583, 7.683749], + [-10.981249, 7.687083], + [-10.982083, 7.687917], + [-10.982916, 7.687916], + [-10.984582, 7.687083], + [-10.987916, 7.682917], + [-10.990417, 7.682084], + [-10.99875, 7.692083], + [-11.003749, 7.694583], + [-11.00375, 7.696249], + [-11.011249, 7.69625], + [-11.012568, 7.697128], + [-11.012783, 7.696313], + [-11.012903, 7.694793], + [-11.012662, 7.694134], + [-11.013379, 7.693227], + [-11.014453, 7.692543], + [-11.015357, 7.691694], + [-11.01538, 7.691649], + [-11.02125, 7.694583], + [-11.023749, 7.694583], + [-11.025416, 7.692916], + [-11.025417, 7.687723], + [-11.027558, 7.684013], + [-11.031249, 7.679583], + [-11.031249, 7.67125], + [-11.027082, 7.669583], + [-11.02375, 7.664584], + [-11.027916, 7.652917], + [-11.03375, 7.654583], + [-11.038749, 7.65375], + [-11.042082, 7.649584], + [-11.042083, 7.648482], + [-11.048072, 7.648481], + [-11.051978, 7.641716], + [-11.05171, 7.64125], + [-11.055417, 7.641249], + [-11.058749, 7.637916], + [-11.061249, 7.632917], + [-11.06242, 7.631746], + [-11.062422, 7.631746], + [-11.063434, 7.636534], + [-11.064132, 7.637142], + [-11.064318, 7.637252], + [-11.068749, 7.632084], + [-11.06875, 7.625417], + [-11.067917, 7.624583], + [-11.067917, 7.621249], + [-11.07375, 7.619584], + [-11.080416, 7.619583] + ] + ], + "type": "Polygon" + }, + "id": 36, + "properties": { + "cc:admin:id": ["28"], + "cc:oBld:total": 507, + "cc:pop:fifteen-to-twenty-four": 956.63979773403, + "cc:pop:grid3-total": 3871.002734326222, + "cc:pop:kontur-total": 4796.014577560971, + "cc:pop:men": 2392.0835219502696, + "cc:pop:sixty-plus": 294.4397354498917, + "cc:pop:total": 4938.4162724360385, + "cc:pop:under-five": 778.6726016919339, + "cc:pop:women": 2546.332750485769, + "cc:pop:women-fiften-to-forty-nine": 1279.7424128351574, + "cc:pop:wp-total": 4701.800979162942, + "cc:pop:wp-total-UN": 5450.474870193093, + "cc:id": "36", + "cc:Name": "Belebu CHP", + "cc:site": [-11.0428, 7.6057], + "user:parentName": "Tunkia", + "user:code": "OU_222635", + "user:orgUnitId": "PwgoRuWEDvJ", + "user:level": "4", + "user:parentId": "l7pFejMtUoF" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.365199, 7.529099], + [-12.3652, 7.5207], + [-12.3649, 7.5156], + [-12.364199, 7.512699], + [-12.362099, 7.507699], + [-12.3613, 7.5036], + [-12.3605, 7.495], + [-12.3592, 7.489999], + [-12.359899, 7.4848], + [-12.358099, 7.480799], + [-12.357499, 7.477499], + [-12.357, 7.4709], + [-12.3563, 7.4682], + [-12.3549, 7.4661], + [-12.353, 7.4645], + [-12.346299, 7.461299], + [-12.342499, 7.460399], + [-12.338399, 7.4602], + [-12.3336, 7.460899], + [-12.3305, 7.462199], + [-12.327499, 7.460699], + [-12.3161, 7.4601], + [-12.3133, 7.4597], + [-12.307899, 7.457499], + [-12.2974, 7.4555], + [-12.291899, 7.453399], + [-12.2881, 7.4529], + [-12.285199, 7.453], + [-12.282299, 7.4536], + [-12.277899, 7.4555], + [-12.2696, 7.457199], + [-12.263699, 7.459], + [-12.259199, 7.4599], + [-12.254899, 7.4602], + [-12.2469, 7.460299], + [-12.2421, 7.460899], + [-12.236699, 7.4631], + [-12.233299, 7.4638], + [-12.227499, 7.4646], + [-12.221, 7.467099], + [-12.215099, 7.4685], + [-12.2107, 7.470699], + [-12.2075, 7.472099], + [-12.2033, 7.474499], + [-12.200099, 7.4758], + [-12.1958, 7.478199], + [-12.194864, 7.478609], + [-12.194929, 7.479054], + [-12.194721, 7.479599], + [-12.193098, 7.480454], + [-12.192984, 7.48082], + [-12.193086, 7.481009], + [-12.194336, 7.48171], + [-12.195363, 7.481921], + [-12.195784, 7.482414], + [-12.196003, 7.48305], + [-12.196209, 7.484622], + [-12.196724, 7.484755], + [-12.197108, 7.485143], + [-12.196973, 7.486172], + [-12.197488, 7.486305], + [-12.198, 7.486822], + [-12.198514, 7.487083], + [-12.199288, 7.487218], + [-12.199413, 7.487733], + [-12.198996, 7.488484], + [-12.198583, 7.488703], + [-12.197784, 7.488708], + [-12.197686, 7.488892], + [-12.1987, 7.489189], + [-12.19904, 7.489516], + [-12.199411, 7.490423], + [-12.199325, 7.490743], + [-12.198227, 7.491716], + [-12.19771, 7.49197], + [-12.195735, 7.492467], + [-12.195446, 7.49345], + [-12.195394, 7.493919], + [-12.195614, 7.494891], + [-12.195909, 7.495265], + [-12.196424, 7.495573], + [-12.19677, 7.495574], + [-12.196966, 7.495408], + [-12.198059, 7.495585], + [-12.198293, 7.496659], + [-12.198324, 7.496753], + [-12.19832, 7.497512], + [-12.198663, 7.498991], + [-12.199389, 7.500101], + [-12.200077, 7.500619], + [-12.200871, 7.501905], + [-12.200863, 7.503192], + [-12.201117, 7.50371], + [-12.200957, 7.505168], + [-12.200725, 7.505814], + [-12.199549, 7.507048], + [-12.199331, 7.508113], + [-12.199279, 7.510143], + [-12.19862, 7.511032], + [-12.197328, 7.511282], + [-12.196809, 7.511793], + [-12.196182, 7.511962], + [-12.195441, 7.512976], + [-12.194887, 7.514177], + [-12.193807, 7.515025], + [-12.193036, 7.515065], + [-12.19125, 7.514805], + [-12.19125, 7.515417], + [-12.191854, 7.517835], + [-12.192383, 7.517944], + [-12.193005, 7.517839], + [-12.194074, 7.516952], + [-12.194365, 7.51627], + [-12.194717, 7.5159], + [-12.19593, 7.515825], + [-12.196264, 7.516039], + [-12.196128, 7.516747], + [-12.196385, 7.517584], + [-12.197149, 7.51851], + [-12.198825, 7.519016], + [-12.200372, 7.519284], + [-12.200629, 7.519543], + [-12.201915, 7.520066], + [-12.203325, 7.521491], + [-12.203973, 7.521881], + [-12.204485, 7.521884], + [-12.205949, 7.521256], + [-12.207327, 7.521131], + [-12.207843, 7.521134], + [-12.2081, 7.521392], + [-12.209907, 7.521405], + [-12.212077, 7.522009], + [-12.213761, 7.523746], + [-12.214167, 7.523908], + [-12.21502, 7.523686], + [-12.215632, 7.523059], + [-12.217235, 7.522029], + [-12.218679, 7.52146], + [-12.221208, 7.520755], + [-12.224552, 7.518114], + [-12.226188, 7.517388], + [-12.228251, 7.5174], + [-12.228909, 7.517772], + [-12.232636, 7.517686], + [-12.233998, 7.518777], + [-12.234816, 7.519889], + [-12.234814, 7.520403], + [-12.235067, 7.521178], + [-12.235166, 7.523556], + [-12.235608, 7.524543], + [-12.236037, 7.524751], + [-12.236982, 7.52428], + [-12.238448, 7.52384], + [-12.239569, 7.523138], + [-12.240089, 7.522626], + [-12.242929, 7.522129], + [-12.247316, 7.522156], + [-12.248087, 7.522675], + [-12.248232, 7.523004], + [-12.249101, 7.523266], + [-12.250335, 7.523195], + [-12.25076, 7.522972], + [-12.251318, 7.522052], + [-12.251582, 7.521024], + [-12.251593, 7.519059], + [-12.251485, 7.518881], + [-12.250951, 7.518831], + [-12.250486, 7.518539], + [-12.248826, 7.518462], + [-12.248062, 7.518025], + [-12.247885, 7.517686], + [-12.24813, 7.516013], + [-12.248557, 7.514992], + [-12.249431, 7.514187], + [-12.249617, 7.514658], + [-12.249317, 7.514659], + [-12.248237, 7.517284], + [-12.248556, 7.517663], + [-12.249311, 7.51807], + [-12.251677, 7.51854], + [-12.251862, 7.518531], + [-12.252379, 7.517919], + [-12.253023, 7.517493], + [-12.25338, 7.517361], + [-12.254307, 7.517521], + [-12.254609, 7.51812], + [-12.254689, 7.519241], + [-12.254427, 7.520013], + [-12.25498, 7.52205], + [-12.255432, 7.522477], + [-12.257561, 7.523979], + [-12.257694, 7.524036], + [-12.2584, 7.524275], + [-12.258827, 7.524163], + [-12.258957, 7.523971], + [-12.25918, 7.523105], + [-12.259223, 7.522725], + [-12.259155, 7.521894], + [-12.259191, 7.52144], + [-12.259259, 7.521026], + [-12.25985, 7.520252], + [-12.260369, 7.519977], + [-12.261445, 7.519928], + [-12.261642, 7.519913], + [-12.264366, 7.51959], + [-12.264622, 7.519335], + [-12.264625, 7.519046], + [-12.264872, 7.519088], + [-12.265176, 7.518786], + [-12.265289, 7.518014], + [-12.264376, 7.517464], + [-12.263627, 7.517271], + [-12.263299, 7.516833], + [-12.263288, 7.516451], + [-12.263437, 7.515577], + [-12.263873, 7.515012], + [-12.26451, 7.514585], + [-12.26516, 7.514488], + [-12.266053, 7.514793], + [-12.266111, 7.514826], + [-12.268162, 7.516004], + [-12.269662, 7.517459], + [-12.271206, 7.518486], + [-12.271555, 7.518416], + [-12.272253, 7.518996], + [-12.272893, 7.519183], + [-12.274377, 7.517973], + [-12.277911, 7.517924], + [-12.278506, 7.518046], + [-12.279416, 7.518457], + [-12.280006, 7.518945], + [-12.280679, 7.520256], + [-12.281428, 7.520577], + [-12.282592, 7.520378], + [-12.283341, 7.51984], + [-12.283767, 7.519311], + [-12.283049, 7.517149], + [-12.283177, 7.516503], + [-12.283481, 7.516072], + [-12.283963, 7.515592], + [-12.284916, 7.515587], + [-12.286277, 7.516091], + [-12.286789, 7.516783], + [-12.286897, 7.517341], + [-12.286471, 7.519291], + [-12.286066, 7.52039], + [-12.285056, 7.522419], + [-12.2854, 7.523924], + [-12.286394, 7.524845], + [-12.287225, 7.524387], + [-12.287991, 7.523534], + [-12.28891, 7.523172], + [-12.290172, 7.523152], + [-12.29111, 7.524026], + [-12.291244, 7.52486], + [-12.29172, 7.525583], + [-12.292332, 7.525781], + [-12.293009, 7.525578], + [-12.294169, 7.524515], + [-12.295151, 7.524104], + [-12.296298, 7.524068], + [-12.29715, 7.524434], + [-12.297955, 7.525273], + [-12.298402, 7.526352], + [-12.298536, 7.52771], + [-12.298893, 7.528409], + [-12.29947, 7.528816], + [-12.300344, 7.528917], + [-12.301729, 7.528777], + [-12.303191, 7.528389], + [-12.306131, 7.527083], + [-12.307414, 7.526778], + [-12.309151, 7.526032], + [-12.309327, 7.525772], + [-12.310709, 7.525153], + [-12.311704, 7.525412], + [-12.313042, 7.525432], + [-12.313453, 7.525325], + [-12.313619, 7.525611], + [-12.32143, 7.525611], + [-12.325337, 7.532376], + [-12.328711, 7.532377], + [-12.32907, 7.533077], + [-12.329581, 7.533699], + [-12.33048, 7.534287], + [-12.331422, 7.535145], + [-12.332051, 7.535927], + [-12.332626, 7.536911], + [-12.332966, 7.537128], + [-12.333007, 7.537372], + [-12.333191, 7.538332], + [-12.333283, 7.538914], + [-12.333577, 7.53935], + [-12.334281, 7.539655], + [-12.335553, 7.539745], + [-12.336377, 7.539943], + [-12.337158, 7.540311], + [-12.33779, 7.54047], + [-12.338693, 7.540685], + [-12.340121, 7.541713], + [-12.340953, 7.542347], + [-12.340425, 7.542897], + [-12.340237, 7.543255], + [-12.340257, 7.54368], + [-12.340369, 7.544068], + [-12.34087, 7.544927], + [-12.342061, 7.545794], + [-12.34442, 7.547059], + [-12.3474, 7.545299], + [-12.3523, 7.543999], + [-12.357799, 7.538399], + [-12.3578, 7.532799], + [-12.365199, 7.529099] + ] + ], + "type": "Polygon" + }, + "id": 38, + "properties": { + "cc:admin:id": ["42"], + "cc:oBld:total": 1, + "cc:pop:fifteen-to-twenty-four": 1044.2128403950069, + "cc:pop:grid3-total": 4381.19160147491, + "cc:pop:kontur-total": 5857.019844985355, + "cc:pop:men": 2859.8085356672864, + "cc:pop:sixty-plus": 447.6838650299541, + "cc:pop:total": 5979.450916601759, + "cc:pop:under-five": 990.4464644080608, + "cc:pop:women": 3119.6423809344706, + "cc:pop:women-fiften-to-forty-nine": 1513.1051049376058, + "cc:pop:wp-total": 5786.025268673608, + "cc:pop:wp-total-UN": 6704.530228594469, + "cc:id": "38", + "cc:Name": "Bendu CHC", + "cc:site": [-12.30127, 7.4966], + "user:parentName": "Bendu Cha", + "user:code": "OU_197430", + "user:orgUnitId": "uFp0ztDOFbI", + "user:level": "4", + "user:parentId": "EB1zRKdYjdY" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.988679, 8.06822], + [-10.988005, 8.069249], + [-10.987811, 8.070886], + [-10.983749, 8.072916], + [-10.977917, 8.072916], + [-10.972916, 8.070417], + [-10.97125, 8.07125], + [-10.971249, 8.073749], + [-10.960731, 8.07375], + [-10.960825, 8.074202], + [-10.961278, 8.074663], + [-10.961384, 8.075308], + [-10.960835, 8.075725], + [-10.959273, 8.076049], + [-10.958743, 8.076384], + [-10.958074, 8.077326], + [-10.957481, 8.07874], + [-10.957833, 8.079568], + [-10.959265, 8.080992], + [-10.95909, 8.080997], + [-10.958058, 8.080258], + [-10.957648, 8.079663], + [-10.9574, 8.079568], + [-10.957255, 8.078742], + [-10.958166, 8.076692], + [-10.958712, 8.076135], + [-10.959255, 8.075796], + [-10.959588, 8.075889], + [-10.960175, 8.075612], + [-10.960612, 8.075595], + [-10.960653, 8.075405], + [-10.961121, 8.075258], + [-10.960678, 8.074207], + [-10.960426, 8.074166], + [-10.960198, 8.073229], + [-10.960352, 8.072532], + [-10.960173, 8.071899], + [-10.959799, 8.0723], + [-10.950199, 8.0781], + [-10.947399, 8.0814], + [-10.9415, 8.091599], + [-10.938099, 8.0952], + [-10.935099, 8.0975], + [-10.929, 8.100099], + [-10.9268, 8.1017], + [-10.923413, 8.106657], + [-10.924583, 8.109583], + [-10.929582, 8.112083], + [-10.93117, 8.114464], + [-10.930792, 8.114787], + [-10.929598, 8.115685], + [-10.929189, 8.115815], + [-10.929226, 8.11595], + [-10.927671, 8.116994], + [-10.926519, 8.11735], + [-10.92606, 8.118325], + [-10.925729, 8.1186], + [-10.925433, 8.118612], + [-10.925152, 8.118362], + [-10.924451, 8.118163], + [-10.924351, 8.118278], + [-10.924594, 8.118882], + [-10.924262, 8.119377], + [-10.924104, 8.11892], + [-10.923905, 8.118758], + [-10.923598, 8.118831], + [-10.923303, 8.119181], + [-10.923378, 8.119937], + [-10.923198, 8.120472], + [-10.922398, 8.120719], + [-10.921766, 8.121122], + [-10.921545, 8.121478], + [-10.921495, 8.121783], + [-10.921808, 8.122212], + [-10.921517, 8.123207], + [-10.919988, 8.125222], + [-10.919583, 8.125183], + [-10.919583, 8.125416], + [-10.925416, 8.130416], + [-10.927083, 8.135417], + [-10.930416, 8.137916], + [-10.93125, 8.137083], + [-10.93875, 8.134584], + [-10.94125, 8.135417], + [-10.941304, 8.135471], + [-10.941304, 8.135472], + [-10.940749, 8.135816], + [-10.940191, 8.136004], + [-10.94002, 8.136292], + [-10.940261, 8.136809], + [-10.942021, 8.138391], + [-10.942916, 8.138749], + [-10.952916, 8.13875], + [-10.952917, 8.14904], + [-10.9554, 8.1501], + [-10.9598, 8.152399], + [-10.9646, 8.1533], + [-10.971099, 8.1533], + [-10.974599, 8.152399], + [-10.9774, 8.150499], + [-10.9799, 8.147699], + [-10.981299, 8.145], + [-10.9818, 8.142499], + [-10.981999, 8.139399], + [-10.9813, 8.1004], + [-10.9815, 8.093199], + [-10.982099, 8.0902], + [-10.984, 8.085799], + [-10.985499, 8.0801], + [-10.9878, 8.074699], + [-10.988599, 8.0707], + [-10.988679, 8.06822] + ] + ], + "type": "Polygon" + }, + "id": 39, + "properties": { + "cc:admin:id": ["86"], + "cc:oBld:total": 411, + "cc:pop:fifteen-to-twenty-four": 810.369454423336, + "cc:pop:grid3-total": 4851.128437120108, + "cc:pop:kontur-total": 4047.6760549713867, + "cc:pop:men": 2091.895672770234, + "cc:pop:sixty-plus": 252.0738526797256, + "cc:pop:total": 4181.793640643317, + "cc:pop:under-five": 665.2532167440572, + "cc:pop:women": 2089.8979678730834, + "cc:pop:women-fiften-to-forty-nine": 1020.45646310778, + "cc:pop:wp-total": 4360.146537418302, + "cc:pop:wp-total-UN": 5051.287213450014, + "cc:id": "39", + "cc:Name": "Bendu Mameima CHC", + "cc:site": [-10.9705, 8.1001], + "user:parentName": "Malegohun", + "user:code": "OU_222674", + "user:orgUnitId": "amgb83zVxp5", + "user:level": "4", + "user:parentId": "x4HaBHHwBML" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.559788, 9.135022], + [-11.560416, 9.13125], + [-11.559582, 9.12875], + [-11.554583, 9.124582], + [-11.554582, 9.11625], + [-11.552916, 9.115416], + [-11.552083, 9.11375], + [-11.55125, 9.109583], + [-11.551249, 9.10875], + [-11.547917, 9.107917], + [-11.547083, 9.106249], + [-11.547083, 9.102083], + [-11.550416, 9.100416], + [-11.54875, 9.097082], + [-11.54875, 9.09375], + [-11.555416, 9.089582], + [-11.552916, 9.084583], + [-11.549583, 9.084582], + [-11.549582, 9.08375], + [-11.548749, 9.082916], + [-11.547916, 9.079583], + [-11.546249, 9.079582], + [-11.539583, 9.072917], + [-11.540416, 9.07125], + [-11.537082, 9.069582], + [-11.534583, 9.062916], + [-11.535417, 9.057083], + [-11.545417, 9.058749], + [-11.547916, 9.052082], + [-11.547916, 9.045339], + [-11.54704, 9.045291], + [-11.546808, 9.044985], + [-11.546514, 9.044696], + [-11.545832, 9.044592], + [-11.544993, 9.044721], + [-11.544198, 9.045284], + [-11.544196, 9.045284], + [-11.542917, 9.042082], + [-11.542917, 9.037083], + [-11.548749, 9.025417], + [-11.542083, 9.022083], + [-11.540417, 9.022083], + [-11.529583, 9.030416], + [-11.525417, 9.02625], + [-11.525417, 9.014583], + [-11.527082, 9.012083], + [-11.527916, 9.012082], + [-11.527916, 9.004583], + [-11.526249, 9.000416], + [-11.52125, 8.990417], + [-11.523749, 8.987083], + [-11.52125, 8.985417], + [-11.520417, 8.984582], + [-11.51875, 8.980416], + [-11.51875, 8.979582], + [-11.526249, 8.97125], + [-11.522083, 8.970416], + [-11.522083, 8.960417], + [-11.522916, 8.959582], + [-11.522917, 8.95625], + [-11.525416, 8.955416], + [-11.52375, 8.952083], + [-11.524582, 8.950417], + [-11.519583, 8.947082], + [-11.519583, 8.946249], + [-11.522082, 8.944582], + [-11.52125, 8.935417], + [-11.530416, 8.934582], + [-11.531249, 8.927083], + [-11.529583, 8.922082], + [-11.529583, 8.914582], + [-11.532917, 8.910416], + [-11.542082, 8.909582], + [-11.537916, 8.905417], + [-11.532917, 8.90375], + [-11.531984, 8.902353], + [-11.529699, 8.904299], + [-11.526, 8.904599], + [-11.5185, 8.9008], + [-11.515799, 8.898099], + [-11.513399, 8.893699], + [-11.511, 8.8916], + [-11.5084, 8.8904], + [-11.505299, 8.89], + [-11.502299, 8.89], + [-11.4993, 8.8903], + [-11.496799, 8.8914], + [-11.495299, 8.8933], + [-11.493, 8.897699], + [-11.492499, 8.9], + [-11.492199, 8.9048], + [-11.4916, 8.907599], + [-11.4896, 8.910899], + [-11.486399, 8.9125], + [-11.4811, 8.913499], + [-11.4766, 8.9149], + [-11.478399, 8.921399], + [-11.479299, 8.926999], + [-11.479399, 8.932999], + [-11.478899, 8.9373], + [-11.476799, 8.941899], + [-11.4722, 8.946299], + [-11.470499, 8.9491], + [-11.469199, 8.9523], + [-11.4677, 8.958899], + [-11.4661, 8.964599], + [-11.463799, 8.97], + [-11.462099, 8.9723], + [-11.4591, 8.975299], + [-11.4528, 8.979499], + [-11.4497, 8.982299], + [-11.4473, 8.9858], + [-11.4463, 8.989899], + [-11.446, 8.996799], + [-11.446699, 9.002299], + [-11.448799, 9.008199], + [-11.451, 9.0116], + [-11.457, 9.0182], + [-11.460199, 9.022999], + [-11.461499, 9.0282], + [-11.460999, 9.0335], + [-11.459499, 9.0392], + [-11.452799, 9.0592], + [-11.4515, 9.063799], + [-11.451, 9.068099], + [-11.4508, 9.0784], + [-11.451299, 9.088699], + [-11.452, 9.093], + [-11.454499, 9.102499], + [-11.455199, 9.108299], + [-11.455299, 9.1156], + [-11.4551, 9.118499], + [-11.4546, 9.121299], + [-11.452699, 9.1251], + [-11.4492, 9.129299], + [-11.4449, 9.132799], + [-11.433199, 9.1389], + [-11.4212, 9.1456], + [-11.426099, 9.149399], + [-11.4299, 9.1515], + [-11.4327, 9.1525], + [-11.4399, 9.1542], + [-11.4522, 9.1594], + [-11.464899, 9.163399], + [-11.476199, 9.164999], + [-11.484799, 9.167199], + [-11.491399, 9.167], + [-11.4988, 9.165099], + [-11.509199, 9.1641], + [-11.5136, 9.163299], + [-11.517599, 9.1613], + [-11.520999, 9.1585], + [-11.5251, 9.154199], + [-11.5305, 9.1477], + [-11.533699, 9.1457], + [-11.541899, 9.1425], + [-11.548399, 9.1403], + [-11.558299, 9.1353], + [-11.559788, 9.135022] + ] + ], + "type": "Polygon" + }, + "id": 40, + "properties": { + "cc:admin:id": ["114"], + "cc:oBld:total": 570, + "cc:pop:fifteen-to-twenty-four": 3490.045333497224, + "cc:pop:grid3-total": 14856.960248967707, + "cc:pop:kontur-total": 18686.541644846548, + "cc:pop:men": 8557.507814943996, + "cc:pop:sixty-plus": 1177.064061937369, + "cc:pop:total": 18524.399850413854, + "cc:pop:under-five": 2949.5532937193398, + "cc:pop:women": 9966.892035469862, + "cc:pop:women-fiften-to-forty-nine": 4889.164792665485, + "cc:pop:wp-total": 14088.00038030618, + "cc:pop:wp-total-UN": 16352.262198425793, + "cc:id": "40", + "cc:Name": "Bendugu CHC", + "cc:site": [-11.4941, 9.0633], + "user:parentName": "Sambaia Bendugu", + "user:code": "OU_268170", + "user:orgUnitId": "o0BgK1dLhF8", + "user:level": "4", + "user:parentId": "r1RUyfVBkLp" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.141116, 7.28356], + [-12.14098, 7.283234], + [-12.139695, 7.281587], + [-12.137808, 7.278511], + [-12.137148, 7.277702], + [-12.134363, 7.272567], + [-12.132955, 7.27127], + [-12.132595, 7.270457], + [-12.13196, 7.269716], + [-12.131938, 7.2697], + [-12.128898, 7.27213], + [-12.127639, 7.271124], + [-12.125939, 7.270204], + [-12.127448, 7.267186], + [-12.124201, 7.265309], + [-12.114833, 7.260747], + [-12.113313, 7.260281], + [-12.112316, 7.263763], + [-12.111213, 7.263535], + [-12.105879, 7.261803], + [-12.104583, 7.257917], + [-12.104759, 7.257562], + [-12.099911, 7.254584], + [-12.094791, 7.250943], + [-12.092221, 7.249768], + [-12.09145, 7.249119], + [-12.089135, 7.248203], + [-12.086286, 7.247357], + [-12.083882, 7.246926], + [-12.080353, 7.246819], + [-12.076537, 7.247398], + [-12.072632, 7.248355], + [-12.068753, 7.250389], + [-12.066269, 7.251944], + [-12.064953, 7.252957], + [-12.064218, 7.253837], + [-12.062665, 7.254856], + [-12.061627, 7.255879], + [-12.060648, 7.256563], + [-12.060547, 7.257018], + [-12.05996, 7.257878], + [-12.059064, 7.261386], + [-12.059045, 7.262141], + [-12.058319, 7.263165], + [-12.056799, 7.264474], + [-12.055248, 7.265235], + [-12.053697, 7.265741], + [-12.050078, 7.26591], + [-12.047252, 7.265699], + [-12.042876, 7.264382], + [-12.040009, 7.262925], + [-12.037483, 7.261], + [-12.034402, 7.259178], + [-12.030041, 7.255673], + [-12.027476, 7.253855], + [-12.026446, 7.253461], + [-12.025678, 7.252556], + [-12.024907, 7.252421], + [-12.02465, 7.252162], + [-12.023622, 7.25177], + [-12.023358, 7.252541], + [-12.022581, 7.253178], + [-12.021808, 7.253173], + [-12.020522, 7.25265], + [-12.019753, 7.251872], + [-12.018692, 7.251279], + [-12.018299, 7.2521], + [-12.016999, 7.2553], + [-12.0146, 7.259499], + [-12.0124, 7.263799], + [-12.0082, 7.269299], + [-12.0053, 7.274599], + [-12.0014, 7.279599], + [-12, 7.282299], + [-11.998499, 7.2879], + [-11.996199, 7.293], + [-11.9928, 7.302099], + [-11.994699, 7.304399], + [-11.9964, 7.3075], + [-11.9984, 7.3102], + [-12.0015, 7.3135], + [-12.008699, 7.320499], + [-12.011399, 7.322999], + [-12.014199, 7.325099], + [-12.0181, 7.327], + [-12.0218, 7.3298], + [-12.0243, 7.3326], + [-12.0253, 7.3348], + [-12.026299, 7.338199], + [-12.0273, 7.339899], + [-12.029, 7.3409], + [-12.0323, 7.3418], + [-12.034699, 7.3432], + [-12.0356, 7.3442], + [-12.038299, 7.348599], + [-12.040599, 7.350899], + [-12.044499, 7.352999], + [-12.047199, 7.354999], + [-12.0497, 7.3573], + [-12.0521, 7.360299], + [-12.0562, 7.3598], + [-12.061299, 7.3598], + [-12.064919, 7.360242], + [-12.065416, 7.358849], + [-12.065823, 7.356816], + [-12.066903, 7.354476], + [-12.069883, 7.35002], + [-12.07086, 7.349007], + [-12.071137, 7.348798], + [-12.070617, 7.345152], + [-12.070834, 7.345042], + [-12.073389, 7.344252], + [-12.073967, 7.343879], + [-12.075188, 7.343477], + [-12.078717, 7.343165], + [-12.08077, 7.343425], + [-12.080912, 7.343427], + [-12.080913, 7.343428], + [-12.079841, 7.34772], + [-12.08231, 7.34854], + [-12.08311, 7.348626], + [-12.084563, 7.349083], + [-12.086304, 7.349256], + [-12.08861, 7.348443], + [-12.089832, 7.348349], + [-12.090111, 7.34821], + [-12.089019, 7.343294], + [-12.089109, 7.343231], + [-12.089878, 7.343254], + [-12.092406, 7.342247], + [-12.093087, 7.34182], + [-12.093894, 7.34082], + [-12.094872, 7.338195], + [-12.096227, 7.335694], + [-12.097844, 7.333612], + [-12.099598, 7.332677], + [-12.101882, 7.332191], + [-12.103883, 7.332306], + [-12.105444, 7.332907], + [-12.106794, 7.334036], + [-12.1047, 7.336132], + [-12.105732, 7.337007], + [-12.106379, 7.3378], + [-12.107119, 7.338954], + [-12.107553, 7.33997], + [-12.108026, 7.341857], + [-12.108024, 7.341858], + [-12.10755, 7.341147], + [-12.10768, 7.342523], + [-12.107678, 7.342523], + [-12.107203, 7.341868], + [-12.107054, 7.341872], + [-12.107325, 7.342719], + [-12.107917, 7.342916], + [-12.112592, 7.342248], + [-12.11291, 7.341169], + [-12.113744, 7.336705], + [-12.114236, 7.335009], + [-12.11487, 7.333536], + [-12.115803, 7.331929], + [-12.116693, 7.330917], + [-12.117373, 7.330411], + [-12.118533, 7.329885], + [-12.119491, 7.329754], + [-12.120153, 7.329838], + [-12.121164, 7.330178], + [-12.121518, 7.330539], + [-12.123267, 7.3352], + [-12.123987, 7.336185], + [-12.125174, 7.336707], + [-12.126249, 7.336923], + [-12.12625, 7.335009], + [-12.126592, 7.335199], + [-12.127814, 7.33532], + [-12.128825, 7.334963], + [-12.129598, 7.335992], + [-12.129604, 7.33558], + [-12.130114, 7.334774], + [-12.131058, 7.329242], + [-12.129583, 7.328749], + [-12.129311, 7.327933], + [-12.130108, 7.325509], + [-12.134774, 7.320513], + [-12.136386, 7.318009], + [-12.136928, 7.316881], + [-12.137301, 7.314241], + [-12.137122, 7.309408], + [-12.138028, 7.308514], + [-12.134337, 7.309436], + [-12.13375, 7.309171], + [-12.133749, 7.306793], + [-12.132994, 7.305517], + [-12.132742, 7.304742], + [-12.132948, 7.303382], + [-12.133529, 7.302431], + [-12.133749, 7.302261], + [-12.13375, 7.29875], + [-12.138094, 7.29875], + [-12.138233, 7.298626], + [-12.13884, 7.298472], + [-12.139258, 7.297611], + [-12.139753, 7.297062], + [-12.140536, 7.295523], + [-12.141589, 7.292182], + [-12.141859, 7.290381], + [-12.141874, 7.287806], + [-12.141382, 7.284199], + [-12.141116, 7.28356] + ] + ], + "type": "Polygon" + }, + "id": 41, + "properties": { + "cc:admin:id": ["104"], + "cc:oBld:total": 40, + "cc:pop:fifteen-to-twenty-four": 508.899718083378, + "cc:pop:grid3-total": 2535.8549501408, + "cc:pop:kontur-total": 3087.433518155755, + "cc:pop:men": 1366.7081147161643, + "cc:pop:sixty-plus": 204.86684743704427, + "cc:pop:total": 2836.03225475782, + "cc:pop:under-five": 482.7692895871509, + "cc:pop:women": 1469.3241400416562, + "cc:pop:women-fiften-to-forty-nine": 686.1009813643471, + "cc:pop:wp-total": 2588.602323032508, + "cc:pop:wp-total-UN": 2999.363972512721, + "cc:id": "41", + "cc:Name": "Benduma CHC", + "cc:site": [-12, 7.3], + "user:parentName": "Kwamabai Krim", + "user:code": "OU_197435", + "user:orgUnitId": "n7wN9gMFfZ5", + "user:level": "4", + "user:parentId": "HV8RTzgcFH3" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.58608, 8.046822], + [-11.584302, 8.044705], + [-11.584046, 8.044112], + [-11.583599, 8.043899], + [-11.58, 8.0419], + [-11.5768, 8.0406], + [-11.5724, 8.0383], + [-11.569199, 8.036999], + [-11.5649, 8.0346], + [-11.560899, 8.032899], + [-11.5535, 8.029099], + [-11.551199, 8.026799], + [-11.5489, 8.0223], + [-11.546899, 8.018799], + [-11.545099, 8.014899], + [-11.542899, 8.011899], + [-11.539999, 8.008999], + [-11.5369, 8.0062], + [-11.534899, 8.005099], + [-11.5319, 8.0044], + [-11.525699, 8.003799], + [-11.5227, 8.002799], + [-11.520399, 8.001099], + [-11.5182, 7.9988], + [-11.516899, 7.996799], + [-11.516199, 7.994699], + [-11.515099, 7.9892], + [-11.5038, 7.9892], + [-11.500099, 7.9895], + [-11.497099, 7.9902], + [-11.492299, 7.9923], + [-11.4864, 7.993799], + [-11.482, 7.995999], + [-11.4788, 7.997299], + [-11.4746, 7.999699], + [-11.471399, 8.0011], + [-11.468599, 8.0032], + [-11.4632, 8.008199], + [-11.4604, 8.010399], + [-11.454999, 8.0134], + [-11.449299, 8.0178], + [-11.444, 8.0207], + [-11.4417, 8.0235], + [-11.4428, 8.025299], + [-11.446099, 8.028099], + [-11.447999, 8.030699], + [-11.448999, 8.034399], + [-11.449199, 8.045399], + [-11.449399, 8.049399], + [-11.4501, 8.0522], + [-11.4521, 8.0567], + [-11.4528, 8.0595], + [-11.453099, 8.062499], + [-11.453199, 8.067699], + [-11.4527, 8.072699], + [-11.4514, 8.078599], + [-11.4527, 8.0836], + [-11.453199, 8.087399], + [-11.453268, 8.089434], + [-11.458749, 8.088749], + [-11.462916, 8.085416], + [-11.46375, 8.08375], + [-11.477082, 8.086249], + [-11.479582, 8.08875], + [-11.47875, 8.098749], + [-11.480417, 8.099583], + [-11.485416, 8.097083], + [-11.487082, 8.09375], + [-11.489582, 8.092083], + [-11.489582, 8.090417], + [-11.487917, 8.08625], + [-11.495416, 8.086249], + [-11.495417, 8.082083], + [-11.497917, 8.080417], + [-11.503749, 8.079583], + [-11.505416, 8.077917], + [-11.505417, 8.069584], + [-11.508436, 8.067771], + [-11.50963, 8.06923], + [-11.512917, 8.067917], + [-11.517082, 8.068749], + [-11.522083, 8.065417], + [-11.525416, 8.066249], + [-11.52625, 8.067083], + [-11.533749, 8.067084], + [-11.538749, 8.069583], + [-11.543749, 8.066249], + [-11.544312, 8.060623], + [-11.547617, 8.060622], + [-11.547083, 8.058749], + [-11.55125, 8.057084], + [-11.559582, 8.057084], + [-11.562083, 8.060416], + [-11.565416, 8.060416], + [-11.567083, 8.059584], + [-11.572082, 8.060416], + [-11.573749, 8.060417], + [-11.574583, 8.061249], + [-11.577916, 8.060417], + [-11.57875, 8.058749], + [-11.583749, 8.056249], + [-11.58125, 8.049584], + [-11.58608, 8.046822] + ] + ], + "type": "Polygon" + }, + "id": 42, + "properties": { + "cc:admin:id": ["3"], + "cc:oBld:total": 229, + "cc:pop:fifteen-to-twenty-four": 1598.6036030715281, + "cc:pop:grid3-total": 7510.528694701186, + "cc:pop:kontur-total": 8891.171215842633, + "cc:pop:men": 4198.638811724393, + "cc:pop:sixty-plus": 630.0555300975512, + "cc:pop:total": 8988.901267229203, + "cc:pop:under-five": 1501.3439154477805, + "cc:pop:women": 4790.2624555048105, + "cc:pop:women-fiften-to-forty-nine": 2286.274008589772, + "cc:pop:wp-total": 7985.010594019862, + "cc:pop:wp-total-UN": 9267.846119312318, + "cc:id": "42", + "cc:Name": "Benduma MCHP", + "cc:site": [-11.5217, 8.0261], + "user:parentName": "Bargbe", + "user:code": "OU_602", + "user:orgUnitId": "Wr8kmywwseZ", + "user:level": "4", + "user:parentId": "dGheVylzol6" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.610761, 7.731643], + [-12.610799, 7.731299], + [-12.610299, 7.7257], + [-12.6078, 7.7207], + [-12.606399, 7.717299], + [-12.603299, 7.711899], + [-12.5997, 7.7041], + [-12.599199, 7.699799], + [-12.5972, 7.6978], + [-12.596799, 7.6973], + [-12.5928, 7.6963], + [-12.586799, 7.6963], + [-12.5807, 7.697099], + [-12.5692, 7.701099], + [-12.5655, 7.703099], + [-12.5583, 7.708499], + [-12.552699, 7.713499], + [-12.5359, 7.719699], + [-12.5323, 7.721699], + [-12.529099, 7.7246], + [-12.5248, 7.731099], + [-12.520799, 7.7351], + [-12.5146, 7.739699], + [-12.5077, 7.745399], + [-12.5041, 7.748099], + [-12.4988, 7.750499], + [-12.4944, 7.751299], + [-12.4864, 7.7495], + [-12.4814, 7.7487], + [-12.470199, 7.744299], + [-12.4571, 7.7418], + [-12.4481, 7.7415], + [-12.444599, 7.7419], + [-12.441699, 7.7433], + [-12.4366, 7.746299], + [-12.4292, 7.754099], + [-12.424699, 7.7625], + [-12.4203, 7.772899], + [-12.426799, 7.7728], + [-12.431899, 7.773099], + [-12.435299, 7.773999], + [-12.4379, 7.7756], + [-12.443499, 7.780699], + [-12.446299, 7.782899], + [-12.450199, 7.7846], + [-12.452, 7.7862], + [-12.453499, 7.7886], + [-12.453199, 7.7917], + [-12.449093, 7.797145], + [-12.448933, 7.797518], + [-12.448537, 7.800288], + [-12.448866, 7.803122], + [-12.449212, 7.803817], + [-12.452274, 7.803818], + [-12.455806, 7.809933], + [-12.458814, 7.810155], + [-12.461235, 7.811085], + [-12.464475, 7.81264], + [-12.470545, 7.815923], + [-12.474411, 7.817673], + [-12.480763, 7.819876], + [-12.486207, 7.822361], + [-12.487784, 7.823788], + [-12.488259, 7.825105], + [-12.487892, 7.826078], + [-12.486769, 7.826941], + [-12.484565, 7.827784], + [-12.480289, 7.828971], + [-12.476119, 7.830203], + [-12.473915, 7.831349], + [-12.471345, 7.833141], + [-12.470438, 7.83474], + [-12.470308, 7.837375], + [-12.470978, 7.839103], + [-12.473072, 7.841544], + [-12.474844, 7.843812], + [-12.476939, 7.84485], + [-12.477803, 7.845994], + [-12.478696, 7.849001], + [-12.479187, 7.850372], + [-12.481489, 7.854358], + [-12.482399, 7.854359], + [-12.483239, 7.856431], + [-12.484293, 7.858438], + [-12.485076, 7.859595], + [-12.485552, 7.860174], + [-12.485722, 7.861911], + [-12.485629, 7.86789], + [-12.48389, 7.867891], + [-12.483991, 7.870709], + [-12.484332, 7.871764], + [-12.48515, 7.87316], + [-12.485795, 7.873738], + [-12.492298, 7.87623], + [-12.49314, 7.874774], + [-12.493722, 7.874912], + [-12.496376, 7.874879], + [-12.497995, 7.874656], + [-12.501019, 7.874657], + [-12.501472, 7.875438], + [-12.502494, 7.875151], + [-12.504367, 7.875195], + [-12.505325, 7.87611], + [-12.506262, 7.878396], + [-12.506851, 7.881773], + [-12.507895, 7.883842], + [-12.508636, 7.885803], + [-12.508756, 7.887004], + [-12.510307, 7.888801], + [-12.511288, 7.890353], + [-12.512874, 7.891588], + [-12.514306, 7.892238], + [-12.514942, 7.891138], + [-12.516222, 7.891652], + [-12.517094, 7.891625], + [-12.518318, 7.891407], + [-12.519217, 7.890482], + [-12.520034, 7.88893], + [-12.520791, 7.888188], + [-12.522311, 7.888188], + [-12.524267, 7.887925], + [-12.526772, 7.887789], + [-12.529358, 7.887518], + [-12.531892, 7.887136], + [-12.535607, 7.886417], + [-12.535117, 7.885636], + [-12.536673, 7.885339], + [-12.539668, 7.885644], + [-12.540996, 7.885237], + [-12.542358, 7.885101], + [-12.543243, 7.885543], + [-12.544571, 7.888299], + [-12.546957, 7.888668], + [-12.547083, 7.887916], + [-12.547603, 7.886358], + [-12.548453, 7.886735], + [-12.548451, 7.88725], + [-12.550256, 7.887647], + [-12.552848, 7.886246], + [-12.552617, 7.881868], + [-12.553643, 7.88303], + [-12.554677, 7.882651], + [-12.55461, 7.882085], + [-12.554611, 7.882084], + [-12.558749, 7.882084], + [-12.55989, 7.883223], + [-12.560619, 7.882815], + [-12.561908, 7.88295], + [-12.561905, 7.883723], + [-12.563709, 7.884249], + [-12.563835, 7.885022], + [-12.565511, 7.885291], + [-12.56537, 7.887607], + [-12.566008, 7.888898], + [-12.568075, 7.888654], + [-12.568079, 7.887881], + [-12.567568, 7.887234], + [-12.5686, 7.887239], + [-12.569376, 7.886986], + [-12.569772, 7.88583], + [-12.571193, 7.885581], + [-12.571704, 7.886742], + [-12.572917, 7.885974], + [-12.572091, 7.884873], + [-12.571458, 7.884551], + [-12.571205, 7.883521], + [-12.569649, 7.884412], + [-12.568361, 7.884147], + [-12.567917, 7.883878], + [-12.567917, 7.882004], + [-12.568631, 7.88183], + [-12.569928, 7.881066], + [-12.57148, 7.880688], + [-12.571484, 7.880173], + [-12.57239, 7.879664], + [-12.574846, 7.879291], + [-12.577422, 7.880465], + [-12.577438, 7.880417], + [-12.581249, 7.880417], + [-12.582766, 7.879405], + [-12.583112, 7.879468], + [-12.584529, 7.880248], + [-12.585856, 7.880178], + [-12.585399, 7.877699], + [-12.583, 7.8725], + [-12.5815, 7.8667], + [-12.5794, 7.8621], + [-12.5787, 7.8593], + [-12.578399, 7.853199], + [-12.5783, 7.8358], + [-12.5782, 7.8329], + [-12.5774, 7.8293], + [-12.575, 7.8241], + [-12.573699, 7.819099], + [-12.5699, 7.8105], + [-12.567699, 7.806199], + [-12.565799, 7.799499], + [-12.563499, 7.795299], + [-12.559699, 7.787199], + [-12.559099, 7.782899], + [-12.5588, 7.7729], + [-12.5583, 7.7678], + [-12.5569, 7.761899], + [-12.559199, 7.7511], + [-12.5627, 7.745299], + [-12.5657, 7.7435], + [-12.569499, 7.7431], + [-12.5755, 7.7431], + [-12.581999, 7.743599], + [-12.588999, 7.746199], + [-12.5928, 7.7469], + [-12.597, 7.747299], + [-12.6023, 7.746999], + [-12.606599, 7.744899], + [-12.608399, 7.7401], + [-12.610299, 7.735699], + [-12.610761, 7.731643] + ] + ], + "type": "Polygon" + }, + "id": 43, + "properties": { + "cc:admin:id": ["1"], + "cc:oBld:total": 0, + "cc:pop:fifteen-to-twenty-four": 450.7161227057236, + "cc:pop:grid3-total": 2827.733070830518, + "cc:pop:kontur-total": 2371.4288126176957, + "cc:pop:men": 1104.9136504418723, + "cc:pop:sixty-plus": 146.50070252835178, + "cc:pop:total": 2392.8191208789103, + "cc:pop:under-five": 425.43880048115057, + "cc:pop:women": 1287.9054704370374, + "cc:pop:women-fiften-to-forty-nine": 591.9331438030028, + "cc:pop:wp-total": 2410.617682519934, + "cc:pop:wp-total-UN": 2831.920928058512, + "cc:id": "43", + "cc:Name": "Benkeh MCHP", + "cc:site": [-12.5365, 7.8303], + "user:parentName": "Bagruwa", + "user:code": "OU_247054", + "user:orgUnitId": "wQ71REGAMet", + "user:level": "4", + "user:parentId": "jPidqyo7cpF" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.980937, 8.614612], + [-12.979333, 8.612798], + [-12.978951, 8.6124], + [-12.978151, 8.611483], + [-12.977658, 8.6111], + [-12.977256, 8.61092], + [-12.976817, 8.610767], + [-12.976429, 8.610704], + [-12.974735, 8.609796], + [-12.974541, 8.609626], + [-12.975208, 8.608958], + [-12.975007, 8.608827], + [-12.974598, 8.6079], + [-12.9732, 8.607899], + [-12.973199, 8.6049], + [-12.9726, 8.603999], + [-12.972599, 8.6024], + [-12.971199, 8.6013], + [-12.969299, 8.601299], + [-12.9679, 8.5993], + [-12.968199, 8.5957], + [-12.9679, 8.595699], + [-12.9679, 8.5926], + [-12.967599, 8.5921], + [-12.964899, 8.592099], + [-12.964299, 8.591299], + [-12.960049, 8.587243], + [-12.94875, 8.58875], + [-12.946254, 8.593116], + [-12.945203, 8.592934], + [-12.943948, 8.592732], + [-12.943192, 8.592615], + [-12.941798, 8.592356], + [-12.940441, 8.592171], + [-12.93984, 8.592134], + [-12.939266, 8.592134], + [-12.939029, 8.59225], + [-12.938744, 8.592459], + [-12.938332, 8.592712], + [-12.937801, 8.593163], + [-12.936981, 8.593793], + [-12.936631, 8.594001], + [-12.936273, 8.594302], + [-12.935987, 8.594637], + [-12.9355, 8.595299], + [-12.935188, 8.595751], + [-12.934973, 8.596154], + [-12.934583, 8.596901], + [-12.934426, 8.597411], + [-12.934036, 8.598376], + [-12.931146, 8.605312], + [-12.925857, 8.604725], + [-12.924097, 8.607601], + [-12.922858, 8.609567], + [-12.921054, 8.613424], + [-12.918347, 8.618474], + [-12.916679, 8.622497], + [-12.915522, 8.624429], + [-12.914217, 8.625883], + [-12.91375, 8.626335], + [-12.913749, 8.632886], + [-12.91304, 8.633662], + [-12.911419, 8.635396], + [-12.90679, 8.629445], + [-12.906319, 8.629919], + [-12.906454, 8.630429], + [-12.904181, 8.631918], + [-12.901639, 8.633226], + [-12.899782, 8.634624], + [-12.897946, 8.635673], + [-12.897456, 8.636028], + [-12.896154, 8.637641], + [-12.894489, 8.639921], + [-12.893406, 8.641708], + [-12.892992, 8.642693], + [-12.89278, 8.643749], + [-12.897459, 8.64375], + [-12.89746, 8.643751], + [-12.89744, 8.643809], + [-12.896951, 8.646564], + [-12.896812, 8.647902], + [-12.896663, 8.649215], + [-12.896229, 8.651142], + [-12.895943, 8.652435], + [-12.895621, 8.653227], + [-12.895885, 8.65448], + [-12.895823, 8.655211], + [-12.895725, 8.655688], + [-12.895511, 8.656158], + [-12.894669, 8.658835], + [-12.893811, 8.660754], + [-12.892043, 8.663492], + [-12.891736, 8.664029], + [-12.891289, 8.664964], + [-12.89096, 8.665865], + [-12.890688, 8.666977], + [-12.891082, 8.666895], + [-12.891352, 8.666824], + [-12.89169, 8.666738], + [-12.892265, 8.666623], + [-12.89261, 8.666674], + [-12.892822, 8.666879], + [-12.893059, 8.667257], + [-12.893191, 8.66763], + [-12.893207, 8.668012], + [-12.893163, 8.668519], + [-12.893028, 8.668885], + [-12.892804, 8.669249], + [-12.8926, 8.66956], + [-12.892393, 8.669901], + [-12.892155, 8.670161], + [-12.891792, 8.670478], + [-12.891527, 8.670782], + [-12.8914, 8.671282], + [-12.891352, 8.67161], + [-12.891372, 8.672003], + [-12.891514, 8.672422], + [-12.891676, 8.672634], + [-12.891899, 8.672834], + [-12.892159, 8.672981], + [-12.892337, 8.67301], + [-12.892528, 8.673006], + [-12.892755, 8.672961], + [-12.893177, 8.672776], + [-12.894515, 8.672057], + [-12.895278, 8.671582], + [-12.895589, 8.671452], + [-12.897314, 8.670893], + [-12.897437, 8.670709], + [-12.897455, 8.670403], + [-12.897411, 8.670082], + [-12.897351, 8.669932], + [-12.897179, 8.66974], + [-12.896745, 8.669485], + [-12.896447, 8.669344], + [-12.896164, 8.669164], + [-12.895931, 8.668911], + [-12.89582, 8.668575], + [-12.895744, 8.667998], + [-12.895692, 8.667575], + [-12.895757, 8.667145], + [-12.895865, 8.666992], + [-12.896131, 8.666838], + [-12.896713, 8.666705], + [-12.89723, 8.666617], + [-12.897506, 8.666606], + [-12.89769, 8.66662], + [-12.897886, 8.666804], + [-12.898131, 8.66724], + [-12.898301, 8.667735], + [-12.898442, 8.668331], + [-12.898645, 8.668666], + [-12.898832, 8.668796], + [-12.899052, 8.668884], + [-12.899318, 8.668898], + [-12.899715, 8.668788], + [-12.900094, 8.66854], + [-12.900364, 8.668246], + [-12.900689, 8.667749], + [-12.90132, 8.667219], + [-12.90184, 8.667039], + [-12.902261, 8.6669], + [-12.903044, 8.666767], + [-12.903741, 8.666627], + [-12.904219, 8.666479], + [-12.904715, 8.666312], + [-12.905112, 8.666257], + [-12.905574, 8.666245], + [-12.905971, 8.666268], + [-12.906602, 8.666228], + [-12.906844, 8.66624], + [-12.9073, 8.666196], + [-12.907772, 8.666061], + [-12.908172, 8.665842], + [-12.908565, 8.665542], + [-12.908793, 8.665297], + [-12.909014, 8.665102], + [-12.909169, 8.665085], + [-12.909429, 8.665191], + [-12.909601, 8.665497], + [-12.910059, 8.665676], + [-12.910189, 8.665716], + [-12.91056, 8.66574], + [-12.91077, 8.665745], + [-12.910968, 8.665729], + [-12.911136, 8.665749], + [-12.911856, 8.665897], + [-12.912157, 8.665931], + [-12.912517, 8.665998], + [-12.912788, 8.666087], + [-12.913119, 8.666299], + [-12.913161, 8.666421], + [-12.913164, 8.666555], + [-12.913362, 8.666776], + [-12.913628, 8.667018], + [-12.915024, 8.667534], + [-12.916023, 8.667521], + [-12.916289, 8.667427], + [-12.916671, 8.667257], + [-12.916831, 8.66713], + [-12.917002, 8.666929], + [-12.917362, 8.6666], + [-12.917558, 8.66645], + [-12.917646, 8.666419], + [-12.917815, 8.666436], + [-12.918034, 8.666542], + [-12.918215, 8.666665], + [-12.918407, 8.666816], + [-12.9186, 8.667094], + [-12.918874, 8.667338], + [-12.91923, 8.667632], + [-12.919614, 8.667899], + [-12.919993, 8.668113], + [-12.920416, 8.668265], + [-12.920417, 8.669582], + [-12.927916, 8.673749], + [-12.932916, 8.669583], + [-12.935776, 8.669011], + [-12.936355, 8.669597], + [-12.936736, 8.670469], + [-12.93756, 8.670914], + [-12.938268, 8.671753], + [-12.939181, 8.672211], + [-12.939878, 8.67211], + [-12.940009, 8.671912], + [-12.939951, 8.671122], + [-12.939479, 8.67017], + [-12.939736, 8.669453], + [-12.938565, 8.667648], + [-12.937083, 8.666534], + [-12.937083, 8.664584], + [-12.941249, 8.665416], + [-12.945416, 8.66375], + [-12.9456, 8.663382], + [-12.945661, 8.663373], + [-12.94668, 8.663719], + [-12.947917, 8.661249], + [-12.952916, 8.658749], + [-12.952916, 8.652917], + [-12.95125, 8.651249], + [-12.95202, 8.645853], + [-12.952226, 8.645798], + [-12.952782, 8.640784], + [-12.952984, 8.640863], + [-12.953109, 8.642096], + [-12.95335, 8.64249], + [-12.953854, 8.642781], + [-12.954807, 8.643008], + [-12.95572, 8.643018], + [-12.957019, 8.642802], + [-12.958676, 8.641993], + [-12.958634, 8.642366], + [-12.957282, 8.643434], + [-12.957272, 8.644169], + [-12.957382, 8.644284], + [-12.966083, 8.635583], + [-12.966051, 8.635558], + [-12.965261, 8.63552], + [-12.964871, 8.63511], + [-12.964778, 8.634568], + [-12.964992, 8.634154], + [-12.965948, 8.633465], + [-12.966032, 8.633215], + [-12.965894, 8.632854], + [-12.965495, 8.632746], + [-12.964027, 8.633121], + [-12.962172, 8.632916], + [-12.961221, 8.633758], + [-12.960401, 8.633535], + [-12.959956, 8.633085], + [-12.959533, 8.633128], + [-12.959125, 8.633375], + [-12.959226, 8.632518], + [-12.958964, 8.631828], + [-12.959521, 8.631827], + [-12.959957, 8.631298], + [-12.961496, 8.631728], + [-12.963398, 8.631861], + [-12.966146, 8.631392], + [-12.966636, 8.63053], + [-12.966379, 8.630106], + [-12.966389, 8.629831], + [-12.967121, 8.629676], + [-12.967194, 8.629475], + [-12.967397, 8.629826], + [-12.967418, 8.62978], + [-12.967821, 8.628709], + [-12.968432, 8.627818], + [-12.969542, 8.626371], + [-12.969811, 8.625713], + [-12.97035, 8.625198], + [-12.971089, 8.62461], + [-12.970813, 8.624423], + [-12.970406, 8.624095], + [-12.970159, 8.623921], + [-12.969693, 8.623925], + [-12.969231, 8.624053], + [-12.968786, 8.624179], + [-12.96847, 8.624308], + [-12.968159, 8.624572], + [-12.967911, 8.624817], + [-12.967488, 8.625182], + [-12.966881, 8.625453], + [-12.966389, 8.625532], + [-12.966008, 8.625558], + [-12.96567, 8.6254], + [-12.965396, 8.625257], + [-12.965106, 8.625156], + [-12.964896, 8.625118], + [-12.964591, 8.625061], + [-12.96435, 8.625071], + [-12.963926, 8.625293], + [-12.963577, 8.625516], + [-12.963335, 8.625777], + [-12.962992, 8.626063], + [-12.961973, 8.626625], + [-12.961163, 8.627272], + [-12.960841, 8.627713], + [-12.960588, 8.627814], + [-12.960305, 8.627828], + [-12.960177, 8.627756], + [-12.960177, 8.627754], + [-12.960278, 8.627712], + [-12.960562, 8.627675], + [-12.960696, 8.627596], + [-12.960783, 8.627484], + [-12.960949, 8.627293], + [-12.961083, 8.627123], + [-12.961763, 8.626556], + [-12.963308, 8.625533], + [-12.963567, 8.625252], + [-12.96406, 8.625017], + [-12.964606, 8.624933], + [-12.965019, 8.624964], + [-12.965572, 8.625102], + [-12.965847, 8.625277], + [-12.965996, 8.625288], + [-12.966296, 8.625278], + [-12.966538, 8.625246], + [-12.966859, 8.625172], + [-12.967102, 8.625023], + [-12.967306, 8.624848], + [-12.967536, 8.624635], + [-12.967794, 8.624407], + [-12.968196, 8.624047], + [-12.968501, 8.623989], + [-12.968807, 8.623804], + [-12.969086, 8.623661], + [-12.969452, 8.623533], + [-12.969719, 8.623523], + [-12.969971, 8.623464], + [-12.970164, 8.623443], + [-12.970411, 8.623548], + [-12.970631, 8.62358], + [-12.970766, 8.623469], + [-12.9709, 8.623332], + [-12.971104, 8.623246], + [-12.971344, 8.62312], + [-12.971514, 8.62302], + [-12.971515, 8.623022], + [-12.971276, 8.623486], + [-12.971377, 8.623914], + [-12.971715, 8.624124], + [-12.971959, 8.624126], + [-12.972512, 8.624028], + [-12.97294, 8.623731], + [-12.973233, 8.623357], + [-12.973843, 8.622266], + [-12.974757, 8.619873], + [-12.9765, 8.617348], + [-12.977484, 8.616383], + [-12.978603, 8.61597], + [-12.979766, 8.615965], + [-12.980203, 8.615882], + [-12.980937, 8.614612] + ] + ], + "type": "Polygon" + }, + "id": 44, + "properties": { + "cc:admin:id": ["74"], + "cc:oBld:total": 29, + "cc:pop:fifteen-to-twenty-four": 993.1523505429144, + "cc:pop:grid3-total": 2067.580773125865, + "cc:pop:kontur-total": 5595.666700763691, + "cc:pop:men": 2577.0948795420354, + "cc:pop:sixty-plus": 302.79537284732595, + "cc:pop:total": 5479.1257596703, + "cc:pop:under-five": 844.0369984831718, + "cc:pop:women": 2902.030880128265, + "cc:pop:women-fiften-to-forty-nine": 1442.2314717733086, + "cc:pop:wp-total": 4632.3706323188335, + "cc:pop:wp-total-UN": 5359.471380625797, + "cc:id": "44", + "cc:Name": "Benkia MCHP", + "cc:site": [-12.8975, 8.6553], + "user:parentName": "Lokomasama", + "user:code": "OU_254993", + "user:orgUnitId": "OcRCVRy2M7X", + "user:level": "4", + "user:parentId": "fRLX08WHWpL" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.047427, 8.980416], + [-12.047199, 8.980299], + [-12.0432, 8.9786], + [-12.0397, 8.9765], + [-12.036499, 8.975199], + [-12.0321, 8.9728], + [-12.0289, 8.9715], + [-12.0246, 8.9691], + [-12.020599, 8.967299], + [-12.015699, 8.963199], + [-12.0024, 8.95], + [-12.000699, 8.947999], + [-11.998999, 8.9452], + [-11.9946, 8.9419], + [-11.991499, 8.939299], + [-11.988399, 8.936299], + [-11.9668, 8.9149], + [-11.963, 8.9114], + [-11.960899, 8.909999], + [-11.956499, 8.907699], + [-11.952999, 8.905099], + [-11.9496, 8.9026], + [-11.945699, 8.900699], + [-11.941399, 8.898299], + [-11.9346, 8.8951], + [-11.931999, 8.894199], + [-11.929199, 8.893899], + [-11.9253, 8.8938], + [-11.9194, 8.893999], + [-11.915799, 8.8948], + [-11.910399, 8.8971], + [-11.904599, 8.8985], + [-11.9002, 8.900699], + [-11.897, 8.901999], + [-11.895877, 8.90263], + [-11.89625, 8.90375], + [-11.899582, 8.910417], + [-11.89625, 8.921249], + [-11.89875, 8.922916], + [-11.908749, 8.922083], + [-11.90875, 8.928749], + [-11.912083, 8.932916], + [-11.914582, 8.93375], + [-11.91375, 8.93625], + [-11.914583, 8.938749], + [-11.91875, 8.942916], + [-11.922916, 8.94375], + [-11.927916, 8.947082], + [-11.92625, 8.954582], + [-11.927917, 8.957082], + [-11.937082, 8.957083], + [-11.940416, 8.95875], + [-11.936741, 8.969042], + [-11.936179, 8.969362], + [-11.935807, 8.969036], + [-11.935685, 8.968989], + [-11.93625, 8.971249], + [-11.942774, 8.972699], + [-11.942968, 8.972438], + [-11.946249, 8.973749], + [-11.947082, 8.97375], + [-11.947917, 8.974583], + [-11.951249, 8.974582], + [-11.954583, 8.97125], + [-11.957916, 8.976249], + [-11.962483, 8.968637], + [-11.963155, 8.968156], + [-11.967083, 8.972082], + [-11.969582, 8.970417], + [-11.972082, 8.969583], + [-11.976249, 8.969583], + [-11.977083, 8.970416], + [-11.982082, 8.967917], + [-11.982916, 8.967917], + [-11.98375, 8.96875], + [-11.984583, 8.972082], + [-11.990255, 8.973703], + [-11.990186, 8.973583], + [-11.989915, 8.971751], + [-11.992916, 8.96875], + [-11.995416, 8.969583], + [-11.99625, 8.971249], + [-12.000416, 8.972082], + [-12.006229, 8.967931], + [-12.008781, 8.968494], + [-12.010566, 8.968772], + [-12.011248, 8.968581], + [-12.014582, 8.974582], + [-12.015417, 8.976249], + [-12.017917, 8.977916], + [-12.027082, 8.977917], + [-12.027917, 8.977083], + [-12.032916, 8.982916], + [-12.032083, 8.985416], + [-12.035416, 8.987082], + [-12.044582, 8.980417], + [-12.047427, 8.980416] + ] + ], + "type": "Polygon" + }, + "id": 45, + "properties": { + "cc:admin:id": ["113"], + "cc:oBld:total": 108, + "cc:pop:fifteen-to-twenty-four": 2337.8138206330555, + "cc:pop:grid3-total": 10164.943876276313, + "cc:pop:kontur-total": 15900.935197197734, + "cc:pop:men": 5621.107693617107, + "cc:pop:sixty-plus": 805.0075936640807, + "cc:pop:total": 12222.851539685857, + "cc:pop:under-five": 2035.6561052983295, + "cc:pop:women": 6601.743846068752, + "cc:pop:women-fiften-to-forty-nine": 3149.2557656050108, + "cc:pop:wp-total": 8323.020700707231, + "cc:pop:wp-total-UN": 9651.50303786741, + "cc:id": "45", + "cc:Name": "Binkolo CHC", + "cc:site": [-11.9822, 8.9503], + "user:parentName": "Safroko Limba", + "user:code": "OU_193275", + "user:orgUnitId": "GHHvGp7tgtZ", + "user:level": "4", + "user:parentId": "XG8HGAbrbbL" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.407083, 7.829583], + [-11.407082, 7.828749], + [-11.399583, 7.820417], + [-11.400297, 7.814699], + [-11.398299, 7.813699], + [-11.3953, 7.810899], + [-11.393034, 7.806694], + [-11.392324, 7.80726], + [-11.388318, 7.808469], + [-11.386726, 7.809242], + [-11.385336, 7.809291], + [-11.385308, 7.809307], + [-11.385255, 7.809753], + [-11.385788, 7.811064], + [-11.382083, 7.812916], + [-11.377083, 7.812084], + [-11.37375, 7.817084], + [-11.374582, 7.822917], + [-11.37125, 7.826249], + [-11.367917, 7.825416], + [-11.36125, 7.820417], + [-11.357917, 7.822917], + [-11.357916, 7.830417], + [-11.355417, 7.834584], + [-11.355416, 7.83625], + [-11.352917, 7.839583], + [-11.35125, 7.839584], + [-11.349583, 7.844583], + [-11.350416, 7.844584], + [-11.350416, 7.850416], + [-11.34625, 7.852084], + [-11.34625, 7.859583], + [-11.344583, 7.866249], + [-11.342916, 7.867083], + [-11.340451, 7.865234], + [-11.340627, 7.866068], + [-11.341053, 7.867147], + [-11.341268, 7.868515], + [-11.341516, 7.86989], + [-11.342026, 7.871083], + [-11.342227, 7.872409], + [-11.342409, 7.873018], + [-11.341548, 7.873491], + [-11.341448, 7.875706], + [-11.340184, 7.876388], + [-11.339724, 7.8769], + [-11.339581, 7.877236], + [-11.339303, 7.877337], + [-11.338747, 7.878381], + [-11.338601, 7.87858], + [-11.338455, 7.878847], + [-11.338335, 7.879127], + [-11.338565, 7.879289], + [-11.338863, 7.879492], + [-11.339529, 7.879961], + [-11.341005, 7.880923], + [-11.339953, 7.881659], + [-11.338559, 7.882275], + [-11.337741, 7.882485], + [-11.337257, 7.883117], + [-11.336534, 7.883479], + [-11.335718, 7.883719], + [-11.335074, 7.883499], + [-11.334843, 7.883116], + [-11.334526, 7.882529], + [-11.33375, 7.882917], + [-11.335416, 7.88625], + [-11.325417, 7.89375], + [-11.327082, 7.895417], + [-11.327082, 7.905416], + [-11.32375, 7.90625], + [-11.320417, 7.911249], + [-11.319582, 7.917916], + [-11.317083, 7.918749], + [-11.315416, 7.917916], + [-11.312917, 7.917084], + [-11.305417, 7.921249], + [-11.305416, 7.917084], + [-11.30125, 7.91875], + [-11.300416, 7.920416], + [-11.297864, 7.919906], + [-11.297711, 7.920056], + [-11.297828, 7.920605], + [-11.297268, 7.923389], + [-11.296802, 7.924122], + [-11.299003, 7.92514], + [-11.29911, 7.925698], + [-11.299877, 7.92669], + [-11.299895, 7.927848], + [-11.30235, 7.926416], + [-11.303778, 7.92602], + [-11.304713, 7.925564], + [-11.305298, 7.925198], + [-11.307442, 7.924632], + [-11.308486, 7.923942], + [-11.308604, 7.923835], + [-11.308757, 7.923751], + [-11.310738, 7.924081], + [-11.311935, 7.926154], + [-11.308029, 7.932919], + [-11.302798, 7.93292], + [-11.305416, 7.942083], + [-11.304583, 7.942917], + [-11.304582, 7.943749], + [-11.29625, 7.94625], + [-11.29625, 7.948368], + [-11.2979, 7.9484], + [-11.3011, 7.9491], + [-11.3032, 7.9501], + [-11.3082, 7.9541], + [-11.3107, 7.955299], + [-11.3133, 7.955599], + [-11.3155, 7.955399], + [-11.317599, 7.9547], + [-11.321, 7.952699], + [-11.326, 7.9504], + [-11.328499, 7.9501], + [-11.328882, 7.950309], + [-11.332916, 7.947083], + [-11.335416, 7.942084], + [-11.327083, 7.941249], + [-11.327083, 7.939411], + [-11.329441, 7.937918], + [-11.331306, 7.936994], + [-11.331724, 7.936934], + [-11.33235, 7.936867], + [-11.330417, 7.935416], + [-11.33125, 7.931249], + [-11.332917, 7.929583], + [-11.338749, 7.927916], + [-11.337917, 7.924584], + [-11.339583, 7.92125], + [-11.342916, 7.920416], + [-11.345417, 7.917917], + [-11.351249, 7.917916], + [-11.35125, 7.916249], + [-11.352917, 7.907917], + [-11.356249, 7.907084], + [-11.357083, 7.907083], + [-11.359598, 7.906453], + [-11.359538, 7.906306], + [-11.358355, 7.905054], + [-11.357949, 7.904714], + [-11.357917, 7.904511], + [-11.358635, 7.90419], + [-11.360452, 7.903642], + [-11.361553, 7.903839], + [-11.362853, 7.903533], + [-11.362324, 7.901717], + [-11.362253, 7.900999], + [-11.364582, 7.900416], + [-11.367916, 7.897083], + [-11.368606, 7.890195], + [-11.368723, 7.890225], + [-11.370308, 7.890372], + [-11.371946, 7.890105], + [-11.372082, 7.890041], + [-11.372083, 7.884583], + [-11.374583, 7.882083], + [-11.380416, 7.880416], + [-11.383749, 7.877916], + [-11.379226, 7.873393], + [-11.378981, 7.87348], + [-11.374583, 7.865416], + [-11.37625, 7.862084], + [-11.385416, 7.862916], + [-11.385417, 7.85875], + [-11.386249, 7.855417], + [-11.391249, 7.852083], + [-11.389583, 7.845416], + [-11.390417, 7.844584], + [-11.395416, 7.844584], + [-11.397917, 7.847916], + [-11.402082, 7.843749], + [-11.402083, 7.836588], + [-11.401955, 7.836555], + [-11.401954, 7.836554], + [-11.404582, 7.834583], + [-11.407083, 7.829583] + ] + ], + "type": "Polygon" + }, + "id": 46, + "properties": { + "cc:admin:id": ["124"], + "cc:oBld:total": 1625, + "cc:pop:fifteen-to-twenty-four": 3339.802380210862, + "cc:pop:grid3-total": 10603.851157538928, + "cc:pop:kontur-total": 18061.774597600717, + "cc:pop:men": 8463.649402821005, + "cc:pop:sixty-plus": 1016.0001147146515, + "cc:pop:total": 17319.097413074334, + "cc:pop:under-five": 2750.0742208208635, + "cc:pop:women": 8855.448010253329, + "cc:pop:women-fiften-to-forty-nine": 4432.142491194666, + "cc:pop:wp-total": 16384.146269602166, + "cc:pop:wp-total-UN": 18997.682672012597, + "cc:id": "46", + "cc:Name": "Blama CHC", + "cc:site": [-11.3465, 7.8719], + "user:parentName": "Small Bo", + "user:code": "OU_222624", + "user:orgUnitId": "kUzpbgPCwVA", + "user:level": "4", + "user:parentId": "vzup1f6ynON" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.647999, 7.378499], + [-11.646899, 7.375199], + [-11.645499, 7.372899], + [-11.6422, 7.3686], + [-11.6411, 7.366599], + [-11.640499, 7.363199], + [-11.640099, 7.357399], + [-11.6394, 7.3537], + [-11.637499, 7.348499], + [-11.6373, 7.3456], + [-11.639599, 7.3391], + [-11.639999, 7.3362], + [-11.640099, 7.330199], + [-11.64, 7.3222], + [-11.6398, 7.3193], + [-11.638999, 7.315599], + [-11.6367, 7.3112], + [-11.635299, 7.307999], + [-11.633399, 7.304499], + [-11.632399, 7.300899], + [-11.6319, 7.2932], + [-11.6312, 7.2896], + [-11.629957, 7.287169], + [-11.627916, 7.29125], + [-11.62125, 7.297083], + [-11.619583, 7.297084], + [-11.617917, 7.29875], + [-11.618749, 7.303749], + [-11.617083, 7.305417], + [-11.617082, 7.309583], + [-11.614583, 7.30875], + [-11.61375, 7.30875], + [-11.61125, 7.309584], + [-11.608551, 7.315654], + [-11.608352, 7.315613], + [-11.607968, 7.315417], + [-11.606567, 7.313853], + [-11.604116, 7.312389], + [-11.603274, 7.311578], + [-11.601845, 7.311578], + [-11.602916, 7.312917], + [-11.602083, 7.322916], + [-11.600621, 7.325109], + [-11.606249, 7.32511], + [-11.60625, 7.332916], + [-11.607082, 7.337084], + [-11.606703, 7.338979], + [-11.606506, 7.338641], + [-11.602917, 7.338641], + [-11.602916, 7.348749], + [-11.597917, 7.353749], + [-11.597789, 7.35374], + [-11.594788, 7.358938], + [-11.596542, 7.361977], + [-11.587083, 7.36125], + [-11.587083, 7.367083], + [-11.587917, 7.370417], + [-11.58875, 7.379583], + [-11.597082, 7.37625], + [-11.597917, 7.382916], + [-11.600114, 7.384015], + [-11.600114, 7.384017], + [-11.599925, 7.384092], + [-11.602083, 7.386249], + [-11.60625, 7.385417], + [-11.608749, 7.388749], + [-11.60875, 7.391249], + [-11.618749, 7.395417], + [-11.619582, 7.397917], + [-11.61875, 7.404583], + [-11.618954, 7.404787], + [-11.617083, 7.405825], + [-11.617083, 7.406249], + [-11.628888, 7.405594], + [-11.62513, 7.412107], + [-11.628965, 7.418749], + [-11.631497, 7.41875], + [-11.63198, 7.418419], + [-11.634865, 7.417428], + [-11.635382, 7.417588], + [-11.6365, 7.415499], + [-11.639699, 7.4088], + [-11.6406, 7.405399], + [-11.640799, 7.3938], + [-11.6412, 7.390899], + [-11.643299, 7.3855], + [-11.6444, 7.381999], + [-11.6456, 7.379899], + [-11.647999, 7.378499] + ] + ], + "type": "Polygon" + }, + "id": 47, + "properties": { + "cc:admin:id": ["27"], + "cc:oBld:total": 3, + "cc:pop:fifteen-to-twenty-four": 1128.0957094440062, + "cc:pop:grid3-total": 7475.109673208173, + "cc:pop:kontur-total": 5770.839286984932, + "cc:pop:men": 3003.4953764266356, + "cc:pop:sixty-plus": 431.0464078266032, + "cc:pop:total": 6233.760734726865, + "cc:pop:under-five": 1038.3471739195293, + "cc:pop:women": 3230.265358300229, + "cc:pop:women-fiften-to-forty-nine": 1540.176262302146, + "cc:pop:wp-total": 6374.982422586125, + "cc:pop:wp-total-UN": 7391.357493610157, + "cc:id": "47", + "cc:Name": "Blama Massaquoi CHP", + "cc:site": [-11.6356, 7.3492], + "user:parentName": "Galliness Perri", + "user:code": "OU_260424", + "user:orgUnitId": "xXhKbgwL39t", + "user:level": "4", + "user:parentId": "eNtRuQrrZeo" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.760352, 7.972063], + [-11.760264, 7.971897], + [-11.759498, 7.971174], + [-11.759034, 7.970371], + [-11.75832, 7.970491], + [-11.758215, 7.970378], + [-11.757734, 7.96982], + [-11.758053, 7.969711], + [-11.758535, 7.969191], + [-11.758558, 7.968786], + [-11.759526, 7.968609], + [-11.759715, 7.968539], + [-11.758944, 7.966628], + [-11.758353, 7.966136], + [-11.757371, 7.966007], + [-11.757358, 7.966007], + [-11.756565, 7.965949], + [-11.756236, 7.965732], + [-11.755698, 7.965362], + [-11.755378, 7.965135], + [-11.755025, 7.964799], + [-11.754628, 7.964376], + [-11.754036, 7.963758], + [-11.753295, 7.962954], + [-11.753092, 7.962986], + [-11.753104, 7.962748], + [-11.752659, 7.962352], + [-11.750578, 7.962338], + [-11.750971, 7.961862], + [-11.751759, 7.96169], + [-11.752464, 7.961341], + [-11.752821, 7.961328], + [-11.753822, 7.960722], + [-11.753685, 7.960375], + [-11.753371, 7.960317], + [-11.752995, 7.960127], + [-11.752581, 7.958734], + [-11.753397, 7.958817], + [-11.753251, 7.958329], + [-11.75322, 7.958334], + [-11.753025, 7.957637], + [-11.755001, 7.957005], + [-11.75498, 7.956932], + [-11.754803, 7.95646], + [-11.753926, 7.956482], + [-11.753458, 7.955793], + [-11.752884, 7.955422], + [-11.752837, 7.955485], + [-11.750868, 7.957057], + [-11.750504, 7.956545], + [-11.749408, 7.957357], + [-11.749055, 7.956908], + [-11.748753, 7.95645], + [-11.748669, 7.956505], + [-11.748648, 7.95675], + [-11.747455, 7.95665], + [-11.747407, 7.957169], + [-11.747336, 7.957692], + [-11.747018, 7.957637], + [-11.746967, 7.95752], + [-11.746768, 7.957183], + [-11.74694, 7.956626], + [-11.746819, 7.956056], + [-11.746795, 7.956055], + [-11.745931, 7.956016], + [-11.745827, 7.956496], + [-11.745651, 7.956908], + [-11.745382, 7.957026], + [-11.74536, 7.957098], + [-11.745497, 7.957475], + [-11.745496, 7.957476], + [-11.743311, 7.957358], + [-11.743253, 7.95655], + [-11.743044, 7.956489], + [-11.742319, 7.956389], + [-11.741892, 7.956728], + [-11.741988, 7.957454], + [-11.741903, 7.958638], + [-11.741213, 7.959245], + [-11.740032, 7.959737], + [-11.73976, 7.959944], + [-11.739732, 7.959996], + [-11.739724, 7.96037], + [-11.739863, 7.96091], + [-11.738528, 7.961347], + [-11.737469, 7.961361], + [-11.737903, 7.962401], + [-11.73819, 7.962964], + [-11.738807, 7.96266], + [-11.739035, 7.963238], + [-11.738016, 7.963764], + [-11.73726, 7.964218], + [-11.737921, 7.96492], + [-11.738013, 7.964987], + [-11.738014, 7.965002], + [-11.73796, 7.965079], + [-11.737932, 7.965083], + [-11.737869, 7.965055], + [-11.737352, 7.965281], + [-11.736555, 7.965703], + [-11.736531, 7.965839], + [-11.736737, 7.96632], + [-11.736455, 7.966352], + [-11.735676, 7.966972], + [-11.735288, 7.967168], + [-11.735098, 7.967467], + [-11.734649, 7.967657], + [-11.734586, 7.968081], + [-11.735147, 7.968505], + [-11.73607, 7.969055], + [-11.735767, 7.969543], + [-11.737595, 7.970405], + [-11.737512, 7.971054], + [-11.737444, 7.972155], + [-11.737834, 7.972984], + [-11.738104, 7.973358], + [-11.738783, 7.974327], + [-11.739152, 7.975562], + [-11.739191, 7.975709], + [-11.739221, 7.976272], + [-11.739163, 7.976564], + [-11.739106, 7.976792], + [-11.739037, 7.977132], + [-11.739632, 7.977469], + [-11.739933, 7.977158], + [-11.740196, 7.976917], + [-11.740346, 7.977213], + [-11.740602, 7.977328], + [-11.741167, 7.977391], + [-11.741256, 7.977374], + [-11.742803, 7.977674], + [-11.742992, 7.977529], + [-11.743103, 7.977712], + [-11.74383, 7.97786], + [-11.744148, 7.977809], + [-11.744535, 7.978047], + [-11.744614, 7.977718], + [-11.744952, 7.977538], + [-11.744767, 7.977226], + [-11.744783, 7.977164], + [-11.745286, 7.977007], + [-11.745829, 7.977059], + [-11.746262, 7.976658], + [-11.746217, 7.976953], + [-11.745918, 7.977195], + [-11.745847, 7.977717], + [-11.745784, 7.978011], + [-11.745614, 7.978718], + [-11.746137, 7.978914], + [-11.747114, 7.978843], + [-11.747094, 7.978327], + [-11.74736, 7.97835], + [-11.747892, 7.97843], + [-11.7479, 7.977707], + [-11.748066, 7.977545], + [-11.748399, 7.977647], + [-11.748709, 7.977481], + [-11.748731, 7.976899], + [-11.748699, 7.976246], + [-11.749181, 7.976244], + [-11.74979, 7.976228], + [-11.750656, 7.976232], + [-11.750946, 7.978191], + [-11.751215, 7.978776], + [-11.751303, 7.978848], + [-11.751603, 7.979059], + [-11.752995, 7.980797], + [-11.753449, 7.981766], + [-11.753444, 7.982058], + [-11.754724, 7.981707], + [-11.75582, 7.98168], + [-11.756263, 7.981545], + [-11.756661, 7.981103], + [-11.75812, 7.980268], + [-11.758426, 7.979937], + [-11.758481, 7.979462], + [-11.758771, 7.979134], + [-11.758178, 7.977129], + [-11.759074, 7.977074], + [-11.758943, 7.97572], + [-11.758695, 7.975079], + [-11.759587, 7.974919], + [-11.759643, 7.974482], + [-11.759362, 7.973859], + [-11.759093, 7.973214], + [-11.759006, 7.972946], + [-11.758991, 7.972843], + [-11.760352, 7.972063] + ] + ], + "type": "Polygon" + }, + "id": 48, + "properties": { + "cc:admin:id": ["46"], + "cc:oBld:total": 3472, + "cc:pop:fifteen-to-twenty-four": 8460.836086256344, + "cc:pop:grid3-total": 27676.919376842154, + "cc:pop:kontur-total": 38545.542653089055, + "cc:pop:men": 22861.069000757812, + "cc:pop:sixty-plus": 3380.370307715298, + "cc:pop:total": 47199.016136834674, + "cc:pop:under-five": 7832.426932545711, + "cc:pop:women": 24337.94713607687, + "cc:pop:women-fiften-to-forty-nine": 11599.485168514906, + "cc:pop:wp-total": 41686.17528801376, + "cc:pop:wp-total-UN": 48333.630816596524, + "cc:id": "48", + "cc:Name": "Bo Govt. Hosp.", + "cc:site": [-11.743, 7.9643], + "user:parentName": "Kakua", + "user:code": "OU_15", + "user:orgUnitId": "rZxk3S0qN63", + "user:level": "4", + "user:parentId": "U6Kr7Gtpidn" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.373599, 8.1564], + [-11.369499, 8.152399], + [-11.3657, 8.1475], + [-11.363799, 8.144399], + [-11.362299, 8.140699], + [-11.3589, 8.1286], + [-11.357399, 8.121799], + [-11.3525, 8.1071], + [-11.3509, 8.1012], + [-11.350499, 8.096799], + [-11.3504, 8.091], + [-11.3508, 8.086799], + [-11.351599, 8.0819], + [-11.344599, 8.0822], + [-11.3337, 8.082399], + [-11.3309, 8.082899], + [-11.328299, 8.0842], + [-11.325399, 8.0866], + [-11.3212, 8.090599], + [-11.318199, 8.0929], + [-11.3098, 8.096699], + [-11.303, 8.097599], + [-11.3003, 8.098199], + [-11.2958, 8.100199], + [-11.295306, 8.100306], + [-11.295416, 8.100417], + [-11.293982, 8.106154], + [-11.294314, 8.106222], + [-11.294314, 8.106223], + [-11.292917, 8.110416], + [-11.300417, 8.117916], + [-11.30375, 8.117917], + [-11.304582, 8.118749], + [-11.304724, 8.118962], + [-11.304723, 8.118963], + [-11.304461, 8.118963], + [-11.306262, 8.122083], + [-11.305416, 8.122084], + [-11.30125, 8.125417], + [-11.300865, 8.130421], + [-11.298913, 8.130422], + [-11.29625, 8.133749], + [-11.295976, 8.133771], + [-11.295956, 8.133925], + [-11.296802, 8.139178], + [-11.297089, 8.139857], + [-11.297488, 8.140038], + [-11.299496, 8.140336], + [-11.300445, 8.143391], + [-11.300885, 8.143745], + [-11.301229, 8.143952], + [-11.303263, 8.143953], + [-11.303771, 8.14483], + [-11.305815, 8.145932], + [-11.309194, 8.146478], + [-11.309445, 8.146397], + [-11.309582, 8.146368], + [-11.309583, 8.155416], + [-11.314583, 8.160416], + [-11.317196, 8.160417], + [-11.314983, 8.164251], + [-11.317323, 8.168305], + [-11.317917, 8.16875], + [-11.318572, 8.172679], + [-11.31942, 8.172413], + [-11.319582, 8.172364], + [-11.319583, 8.177607], + [-11.32145, 8.177638], + [-11.324065, 8.178096], + [-11.324438, 8.178539], + [-11.324651, 8.179055], + [-11.32125, 8.180417], + [-11.317083, 8.185416], + [-11.313749, 8.193749], + [-11.310417, 8.192917], + [-11.30402, 8.19636], + [-11.303203, 8.196361], + [-11.302835, 8.196998], + [-11.299583, 8.19875], + [-11.30759, 8.203845], + [-11.307058, 8.205116], + [-11.306604, 8.206935], + [-11.30659, 8.208505], + [-11.306377, 8.208907], + [-11.306385, 8.209406], + [-11.306726, 8.211413], + [-11.312082, 8.212084], + [-11.314582, 8.222083], + [-11.30625, 8.22875], + [-11.30625, 8.231216], + [-11.3337, 8.231499], + [-11.336599, 8.2312], + [-11.339099, 8.2303], + [-11.340899, 8.2286], + [-11.3419, 8.226699], + [-11.3424, 8.223499], + [-11.3425, 8.217], + [-11.343399, 8.2142], + [-11.3472, 8.210899], + [-11.351399, 8.2068], + [-11.3545, 8.2027], + [-11.3585, 8.199899], + [-11.361999, 8.1965], + [-11.3641, 8.193399], + [-11.3658, 8.188099], + [-11.366499, 8.1835], + [-11.366899, 8.1797], + [-11.367, 8.174899], + [-11.368199, 8.1693], + [-11.370499, 8.1626], + [-11.373599, 8.1564] + ] + ], + "type": "Polygon" + }, + "id": 49, + "properties": { + "cc:admin:id": ["123"], + "cc:oBld:total": 1050, + "cc:pop:fifteen-to-twenty-four": 3489.2335112438964, + "cc:pop:grid3-total": 11212.078232189142, + "cc:pop:kontur-total": 18070.297405783294, + "cc:pop:men": 9307.376356776276, + "cc:pop:sixty-plus": 1100.1792243512314, + "cc:pop:total": 18288.621430064897, + "cc:pop:under-five": 2886.112289147651, + "cc:pop:women": 8981.24507328861, + "cc:pop:women-fiften-to-forty-nine": 4457.613820536652, + "cc:pop:wp-total": 19434.857540309626, + "cc:pop:wp-total-UN": 22533.15674265012, + "cc:id": "49", + "cc:Name": "Boajibu CHC", + "cc:site": [-11.3423, 8.187], + "user:parentName": "Simbaru", + "user:code": "OU_222689", + "user:orgUnitId": "L5gENbBNNup", + "user:level": "4", + "user:parentId": "A3Fh37HWBWE" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.027999, 7.871599], + [-11.0242, 7.8645], + [-11.020799, 7.858699], + [-11.017, 7.8512], + [-11.0137, 7.8425], + [-11.0106, 7.8361], + [-11.0062, 7.8299], + [-11.003099, 7.824899], + [-10.998599, 7.818799], + [-10.995799, 7.812199], + [-10.994299, 7.804], + [-10.987999, 7.800599], + [-10.9806, 7.7955], + [-10.9765, 7.7931], + [-10.9728, 7.789899], + [-10.9685, 7.7827], + [-10.9671, 7.7794], + [-10.965799, 7.774599], + [-10.964399, 7.7657], + [-10.962099, 7.7619], + [-10.958899, 7.7605], + [-10.949899, 7.76], + [-10.941999, 7.7607], + [-10.933299, 7.762599], + [-10.9236, 7.7609], + [-10.9142, 7.7599], + [-10.9091, 7.7591], + [-10.907799, 7.7624], + [-10.9062, 7.765699], + [-10.904099, 7.7693], + [-10.901599, 7.7741], + [-10.898299, 7.7781], + [-10.8841, 7.792399], + [-10.8813, 7.795999], + [-10.88, 7.799199], + [-10.8785, 7.801999], + [-10.8776, 7.804299], + [-10.8765, 7.809599], + [-10.8757, 7.811799], + [-10.874099, 7.8147], + [-10.872699, 7.8179], + [-10.871399, 7.8199], + [-10.8672, 7.825199], + [-10.8652, 7.829099], + [-10.864, 7.830999], + [-10.860299, 7.8357], + [-10.8571, 7.841599], + [-10.8524, 7.847499], + [-10.850499, 7.8514], + [-10.849199, 7.8534], + [-10.845, 7.858699], + [-10.8431, 7.862599], + [-10.8419, 7.864599], + [-10.838599, 7.8685], + [-10.837299, 7.8705], + [-10.8354, 7.874399], + [-10.8334, 7.877099], + [-10.830899, 7.8797], + [-10.8158, 7.894999], + [-10.8125, 7.897999], + [-10.8096, 7.899599], + [-10.805199, 7.9006], + [-10.802099, 7.9018], + [-10.7953, 7.904899], + [-10.792599, 7.9079], + [-10.7889, 7.915099], + [-10.787599, 7.9183], + [-10.7854, 7.922699], + [-10.784799, 7.9255], + [-10.7847, 7.9284], + [-10.785, 7.9572], + [-10.785099, 7.962099], + [-10.785699, 7.965799], + [-10.788099, 7.971199], + [-10.788669, 7.974612], + [-10.792005, 7.974612], + [-10.795913, 7.967847], + [-10.802783, 7.967847], + [-10.802083, 7.976249], + [-10.805417, 7.980416], + [-10.813749, 7.980417], + [-10.816249, 7.979583], + [-10.817817, 7.975663], + [-10.817183, 7.975233], + [-10.816737, 7.975131], + [-10.815707, 7.974241], + [-10.815949, 7.974233], + [-10.817067, 7.973559], + [-10.817916, 7.973114], + [-10.817917, 7.972916], + [-10.818784, 7.972264], + [-10.818836, 7.971689], + [-10.819265, 7.971182], + [-10.81988, 7.971444], + [-10.82074, 7.971813], + [-10.821018, 7.973184], + [-10.820925, 7.974391], + [-10.825416, 7.97375], + [-10.827083, 7.976249], + [-10.82875, 7.975416], + [-10.83125, 7.974584], + [-10.832917, 7.974583], + [-10.834882, 7.974256], + [-10.835211, 7.975768], + [-10.840432, 7.974622], + [-10.838707, 7.972297], + [-10.840229, 7.971814], + [-10.842727, 7.971483], + [-10.842936, 7.972838], + [-10.849083, 7.972279], + [-10.849844, 7.972539], + [-10.852019, 7.97204], + [-10.852307, 7.97317], + [-10.8537, 7.970299], + [-10.855899, 7.9674], + [-10.857999, 7.9655], + [-10.8603, 7.963899], + [-10.867599, 7.9605], + [-10.8704, 7.959799], + [-10.878599, 7.9594], + [-10.882099, 7.9588], + [-10.887399, 7.9566], + [-10.891599, 7.9557], + [-10.893699, 7.9549], + [-10.896299, 7.9532], + [-10.8999, 7.949699], + [-10.903399, 7.9455], + [-10.9058, 7.940499], + [-10.9094, 7.9346], + [-10.9133, 7.931799], + [-10.917599, 7.9283], + [-10.919799, 7.9268], + [-10.923, 7.925399], + [-10.9273, 7.922999], + [-10.9305, 7.921699], + [-10.938999, 7.9172], + [-10.942999, 7.9139], + [-10.947, 7.909799], + [-10.950999, 7.9054], + [-10.9541, 7.9011], + [-10.957999, 7.8984], + [-10.9613, 7.895199], + [-10.9635, 7.892299], + [-10.9652, 7.888399], + [-10.968899, 7.8822], + [-10.975199, 7.8785], + [-10.9791, 7.8787], + [-10.9818, 7.8809], + [-10.9843, 7.883799], + [-10.988299, 7.885299], + [-10.990499, 7.8864], + [-10.992999, 7.8891], + [-10.994399, 7.894199], + [-10.995299, 7.896599], + [-10.997499, 7.898999], + [-11.0008, 7.900099], + [-11.003499, 7.899999], + [-11.0061, 7.899099], + [-11.0092, 7.896399], + [-11.011799, 7.8931], + [-11.0136, 7.889099], + [-11.015799, 7.8848], + [-11.017099, 7.8817], + [-11.019399, 7.8785], + [-11.023899, 7.8742], + [-11.027999, 7.871599] + ] + ], + "type": "Polygon" + }, + "id": 50, + "properties": { + "cc:admin:id": ["41"], + "cc:oBld:total": 4978, + "cc:pop:fifteen-to-twenty-four": 8035.083706461469, + "cc:pop:grid3-total": 29715.91693238539, + "cc:pop:kontur-total": 42143.40020651108, + "cc:pop:men": 20517.25415346116, + "cc:pop:sixty-plus": 2454.9661100140397, + "cc:pop:total": 41717.78273492686, + "cc:pop:under-five": 6464.621647859165, + "cc:pop:women": 21200.5285814657, + "cc:pop:women-fiften-to-forty-nine": 10689.83930020834, + "cc:pop:wp-total": 39643.458015962664, + "cc:pop:wp-total-UN": 45970.719591723464, + "cc:id": "50", + "cc:Name": "Bombohun MCHP", + "cc:site": [-10.8373, 7.9594], + "user:parentName": "Jawi", + "user:code": "OU_204864", + "user:orgUnitId": "PB8FMGbn19r", + "user:level": "4", + "user:parentId": "KSdZwrU7Hh6" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.067083, 8.237083], + [-11.067082, 8.23625], + [-11.06375, 8.234584], + [-11.062082, 8.232084], + [-11.057036, 8.232083], + [-11.057165, 8.231743], + [-11.058071, 8.230972], + [-11.058508, 8.229835], + [-11.058305, 8.229296], + [-11.059034, 8.229256], + [-11.059842, 8.228881], + [-11.060144, 8.229092], + [-11.060233, 8.228995], + [-11.059475, 8.226729], + [-11.058734, 8.226098], + [-11.058479, 8.225602], + [-11.058733, 8.224512], + [-11.05863, 8.224205], + [-11.058069, 8.224603], + [-11.057672, 8.224921], + [-11.057388, 8.225894], + [-11.056499, 8.226466], + [-11.056231, 8.226266], + [-11.055746, 8.226502], + [-11.055537, 8.226245], + [-11.054874, 8.224203], + [-11.054777, 8.224087], + [-11.054835, 8.224042], + [-11.054783, 8.224042], + [-11.054124, 8.224357], + [-11.053712, 8.224475], + [-11.053453, 8.224492], + [-11.053351, 8.224611], + [-11.052864, 8.225057], + [-11.052397, 8.225496], + [-11.052336, 8.225558], + [-11.051316, 8.22672], + [-11.050668, 8.227471], + [-11.049203, 8.228031], + [-11.046005, 8.228479], + [-11.043899, 8.22857], + [-11.04375, 8.228767], + [-11.04375, 8.226249], + [-11.047082, 8.222916], + [-11.046249, 8.220417], + [-11.045416, 8.220416], + [-11.044582, 8.21875], + [-11.04125, 8.217917], + [-11.040241, 8.218926], + [-11.040351, 8.21907], + [-11.040218, 8.224266], + [-11.036249, 8.226249], + [-11.035416, 8.22625], + [-11.029583, 8.227916], + [-11.022083, 8.227917], + [-11.01875, 8.230417], + [-11.017916, 8.233749], + [-11.010417, 8.23375], + [-11.00875, 8.240416], + [-11.007083, 8.241249], + [-11.006683, 8.24125], + [-11.007205, 8.241818], + [-11.00813, 8.241795], + [-11.00837, 8.242198], + [-11.007935, 8.24301], + [-11.00761, 8.243359], + [-11.008449, 8.246716], + [-11.008408, 8.246772], + [-11.007773, 8.246575], + [-11.007225, 8.244584], + [-11.004583, 8.244584], + [-11.004583, 8.251249], + [-11.007916, 8.25125], + [-11.00625, 8.254584], + [-11.006249, 8.260416], + [-11.003646, 8.26237], + [-11.003981, 8.263722], + [-11.004626, 8.265146], + [-11.00507, 8.266868], + [-11.005219, 8.268524], + [-11.006159, 8.270416], + [-11.012654, 8.270416], + [-11.013248, 8.269652], + [-11.026249, 8.270416], + [-11.02625, 8.264171], + [-11.033879, 8.26417], + [-11.037785, 8.257405], + [-11.03692, 8.255904], + [-11.043749, 8.255416], + [-11.04375, 8.254583], + [-11.046249, 8.252916], + [-11.044583, 8.247084], + [-11.04625, 8.24375], + [-11.051249, 8.242084], + [-11.052916, 8.242916], + [-11.054212, 8.239677], + [-11.054778, 8.240118], + [-11.055296, 8.240224], + [-11.056553, 8.240209], + [-11.056807, 8.240253], + [-11.057246, 8.240353], + [-11.058036, 8.240853], + [-11.058453, 8.241404], + [-11.059239, 8.243237], + [-11.059309, 8.243884], + [-11.062082, 8.240417], + [-11.063749, 8.240416], + [-11.067083, 8.237083] + ] + ], + "type": "Polygon" + }, + "id": 51, + "properties": { + "cc:admin:id": ["75"], + "cc:oBld:total": 9, + "cc:pop:fifteen-to-twenty-four": 963.1343510667864, + "cc:pop:grid3-total": 3277.5023167512445, + "cc:pop:kontur-total": 6211.851262038155, + "cc:pop:men": 2799.139547332983, + "cc:pop:sixty-plus": 292.55906505661966, + "cc:pop:total": 5002.06270741074, + "cc:pop:under-five": 770.493839676088, + "cc:pop:women": 2202.923160077757, + "cc:pop:women-fiften-to-forty-nine": 1092.8415411849144, + "cc:pop:wp-total": 5821.867745788319, + "cc:pop:wp-total-UN": 6755.6999533945045, + "cc:id": "51", + "cc:Name": "Bomie MCHP", + "cc:site": [-11.0464, 8.2318], + "user:parentName": "Lower Bambara", + "user:code": "OU_222661", + "user:orgUnitId": "VXrJKs8hic4", + "user:level": "4", + "user:parentId": "hdEuw2ugkVF" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.70451, 7.812402], + [-12.702581, 7.810974], + [-12.702202, 7.809299], + [-12.70125, 7.807884], + [-12.701249, 7.802917], + [-12.69625, 7.802917], + [-12.695608, 7.803557], + [-12.695388, 7.803464], + [-12.69466, 7.803022], + [-12.697916, 7.800416], + [-12.698171, 7.798628], + [-12.698061, 7.798681], + [-12.698749, 7.790417], + [-12.689583, 7.790417], + [-12.687082, 7.792083], + [-12.681249, 7.792916], + [-12.678524, 7.788146], + [-12.679872, 7.787211], + [-12.682082, 7.775417], + [-12.681249, 7.769584], + [-12.679582, 7.767917], + [-12.677083, 7.767917], + [-12.671399, 7.770757], + [-12.668879, 7.766391], + [-12.671778, 7.761368], + [-12.668509, 7.760042], + [-12.667448, 7.759416], + [-12.670903, 7.753432], + [-12.670871, 7.753229], + [-12.671044, 7.753186], + [-12.671056, 7.753166], + [-12.670487, 7.752181], + [-12.669065, 7.752703], + [-12.666364, 7.750886], + [-12.664566, 7.749073], + [-12.66638, 7.747794], + [-12.666256, 7.746764], + [-12.664322, 7.746496], + [-12.664316, 7.746401], + [-12.659337, 7.7464], + [-12.658316, 7.744633], + [-12.657746, 7.744913], + [-12.657745, 7.744912], + [-12.658278, 7.741826], + [-12.656985, 7.742334], + [-12.655413, 7.74606], + [-12.651536, 7.746682], + [-12.651028, 7.745391], + [-12.65336, 7.743729], + [-12.653277, 7.742917], + [-12.650779, 7.743716], + [-12.649998, 7.74487], + [-12.649225, 7.74448], + [-12.648188, 7.745118], + [-12.647413, 7.745243], + [-12.648437, 7.746665], + [-12.648365, 7.747083], + [-12.64673, 7.747083], + [-12.646628, 7.746912], + [-12.646508, 7.745367], + [-12.644249, 7.745473], + [-12.643712, 7.746401], + [-12.635901, 7.746401], + [-12.635741, 7.746677], + [-12.636108, 7.746752], + [-12.6363, 7.746944], + [-12.636246, 7.747464], + [-12.635616, 7.748233], + [-12.635479, 7.748698], + [-12.637127, 7.751158], + [-12.637343, 7.754241], + [-12.637835, 7.754369], + [-12.638584, 7.753812], + [-12.639611, 7.752678], + [-12.63822, 7.751456], + [-12.637942, 7.750729], + [-12.638285, 7.750173], + [-12.63882, 7.74983], + [-12.639312, 7.749958], + [-12.641153, 7.749915], + [-12.642438, 7.749252], + [-12.643423, 7.748544], + [-12.643722, 7.747966], + [-12.643809, 7.747239], + [-12.644408, 7.747004], + [-12.6452, 7.747153], + [-12.645629, 7.747474], + [-12.646592, 7.747625], + [-12.647063, 7.747859], + [-12.647127, 7.748502], + [-12.646743, 7.749358], + [-12.647642, 7.750172], + [-12.648305, 7.7503], + [-12.648667, 7.750088], + [-12.648668, 7.750089], + [-12.648455, 7.75058], + [-12.647899, 7.750878], + [-12.647299, 7.750558], + [-12.64642, 7.749636], + [-12.646357, 7.749401], + [-12.64657, 7.748951], + [-12.646463, 7.748096], + [-12.645179, 7.747774], + [-12.644643, 7.747368], + [-12.64413, 7.747346], + [-12.644022, 7.748331], + [-12.642245, 7.749723], + [-12.64141, 7.750108], + [-12.639741, 7.750279], + [-12.638991, 7.75013], + [-12.638542, 7.750344], + [-12.63837, 7.750943], + [-12.638733, 7.751414], + [-12.639676, 7.751843], + [-12.640146, 7.752293], + [-12.63807, 7.754754], + [-12.637278, 7.754755], + [-12.636871, 7.752507], + [-12.636892, 7.751522], + [-12.635158, 7.748674], + [-12.635778, 7.747261], + [-12.635608, 7.746961], + [-12.634708, 7.747239], + [-12.633553, 7.747988], + [-12.632738, 7.747581], + [-12.63261, 7.746617], + [-12.633659, 7.743942], + [-12.634001, 7.743449], + [-12.634164, 7.743393], + [-12.63391, 7.742955], + [-12.633166, 7.743363], + [-12.63261, 7.743257], + [-12.632396, 7.742828], + [-12.632213, 7.739255], + [-12.631993, 7.739634], + [-12.63125, 7.739635], + [-12.631249, 7.745417], + [-12.627916, 7.749584], + [-12.625398, 7.750212], + [-12.624416, 7.747305], + [-12.623382, 7.747814], + [-12.623381, 7.747813], + [-12.623649, 7.746013], + [-12.622361, 7.745491], + [-12.622751, 7.744978], + [-12.622278, 7.744548], + [-12.621075, 7.744581], + [-12.620304, 7.743934], + [-12.620039, 7.744962], + [-12.619523, 7.745087], + [-12.61875, 7.744569], + [-12.616944, 7.74443], + [-12.61717, 7.758841], + [-12.618917, 7.760927], + [-12.619949, 7.760932], + [-12.619702, 7.759128], + [-12.620218, 7.759258], + [-12.621898, 7.75914], + [-12.622795, 7.759918], + [-12.62215, 7.760172], + [-12.622015, 7.760944], + [-12.620462, 7.761837], + [-12.623292, 7.763526], + [-12.625093, 7.764824], + [-12.625476, 7.765599], + [-12.624053, 7.765978], + [-12.6225, 7.766741], + [-12.621979, 7.76764], + [-12.621332, 7.767895], + [-12.621586, 7.768412], + [-12.621577, 7.770214], + [-12.622374, 7.770972], + [-12.62214, 7.771379], + [-12.626046, 7.778144], + [-12.62214, 7.78491], + [-12.622936, 7.786291], + [-12.622517, 7.786706], + [-12.622767, 7.788251], + [-12.624959, 7.788522], + [-12.624696, 7.78955], + [-12.625982, 7.79033], + [-12.625974, 7.7918], + [-12.625506, 7.792612], + [-12.62463, 7.792546], + [-12.623485, 7.793462], + [-12.623119, 7.794179], + [-12.622977, 7.796753], + [-12.62304, 7.796883], + [-12.62214, 7.798442], + [-12.620842, 7.798442], + [-12.620474, 7.797898], + [-12.618965, 7.798147], + [-12.617417, 7.798011], + [-12.618088, 7.800502], + [-12.617783, 7.801875], + [-12.617219, 7.802984], + [-12.618749, 7.80375], + [-12.621249, 7.807084], + [-12.616249, 7.812083], + [-12.607917, 7.81125], + [-12.605417, 7.818749], + [-12.614582, 7.817084], + [-12.616484, 7.817376], + [-12.613038, 7.823346], + [-12.605981, 7.823347], + [-12.606944, 7.824793], + [-12.606039, 7.826324], + [-12.605231, 7.827314], + [-12.604395, 7.828728], + [-12.60354, 7.830645], + [-12.601999, 7.831853], + [-12.599929, 7.83285], + [-12.599428, 7.83342], + [-12.597916, 7.832916], + [-12.592083, 7.827917], + [-12.59069, 7.832788], + [-12.590076, 7.832639], + [-12.589047, 7.832229], + [-12.584583, 7.835417], + [-12.58656, 7.840687], + [-12.589508, 7.842289], + [-12.590862, 7.842798], + [-12.590417, 7.844584], + [-12.591249, 7.851249], + [-12.58625, 7.852084], + [-12.584582, 7.856249], + [-12.580417, 7.856249], + [-12.578503, 7.855293], + [-12.578699, 7.859299], + [-12.579399, 7.862099], + [-12.5815, 7.8667], + [-12.583, 7.8725], + [-12.5854, 7.8777], + [-12.5861, 7.8815], + [-12.586499, 7.891899], + [-12.586999, 7.895299], + [-12.588699, 7.897999], + [-12.5916, 7.901], + [-12.5982, 7.9051], + [-12.600699, 7.907699], + [-12.6023, 7.9102], + [-12.605, 7.913099], + [-12.608199, 7.914499], + [-12.6125, 7.912399], + [-12.619, 7.910199], + [-12.622599, 7.907099], + [-12.625, 7.900099], + [-12.628199, 7.8925], + [-12.6323, 7.8848], + [-12.6364, 7.8817], + [-12.642099, 7.880099], + [-12.6468, 7.876499], + [-12.6486, 7.874099], + [-12.652899, 7.8659], + [-12.6546, 7.861799], + [-12.658399, 7.8545], + [-12.661699, 7.8507], + [-12.6642, 7.848799], + [-12.6747, 7.843499], + [-12.6768, 7.841599], + [-12.678699, 7.8394], + [-12.683799, 7.8293], + [-12.686399, 7.8264], + [-12.693599, 7.8225], + [-12.695938, 7.821871], + [-12.695872, 7.821797], + [-12.69469, 7.821088], + [-12.693706, 7.820301], + [-12.69347, 7.819788], + [-12.693628, 7.818922], + [-12.694375, 7.818214], + [-12.695046, 7.817819], + [-12.696188, 7.817525], + [-12.694024, 7.817524], + [-12.694024, 7.817523], + [-12.694271, 7.817189], + [-12.694978, 7.816986], + [-12.69591, 7.816835], + [-12.697195, 7.816583], + [-12.697801, 7.816003], + [-12.698732, 7.815222], + [-12.699312, 7.814718], + [-12.700169, 7.814265], + [-12.701026, 7.814314], + [-12.701249, 7.814352], + [-12.70125, 7.813964], + [-12.703338, 7.814069], + [-12.704372, 7.813817], + [-12.70451, 7.812402] + ] + ], + "type": "Polygon" + }, + "id": 52, + "properties": { + "cc:admin:id": ["135"], + "cc:oBld:total": 82, + "cc:pop:fifteen-to-twenty-four": 821.0324301872331, + "cc:pop:grid3-total": 4928.777829005847, + "cc:pop:kontur-total": 4075.6220252856738, + "cc:pop:men": 2000.7605796096218, + "cc:pop:sixty-plus": 282.243374608759, + "cc:pop:total": 4149.412724625433, + "cc:pop:under-five": 713.4436242398062, + "cc:pop:women": 2148.6521450158125, + "cc:pop:women-fiften-to-forty-nine": 1007.2115303577688, + "cc:pop:wp-total": 3756.047866221945, + "cc:pop:wp-total-UN": 4388.487737121435, + "cc:id": "52", + "cc:Name": "Bomotoke CHC", + "cc:site": [-12.6548, 7.8188], + "user:parentName": "Timidale", + "user:code": "OU_247045", + "user:orgUnitId": "H97XE5Ea089", + "user:level": "4", + "user:parentId": "AovmOHadayb" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.000299, 8.757799], + [-10.9996, 8.7519], + [-10.998899, 8.749299], + [-10.9966, 8.745], + [-10.995199, 8.741799], + [-10.992699, 8.737599], + [-10.9913, 8.7344], + [-10.9889, 8.7301], + [-10.987499, 8.726899], + [-10.985, 8.7227], + [-10.983599, 8.719499], + [-10.9816, 8.716], + [-10.9807, 8.7126], + [-10.9803, 8.7053], + [-10.9797, 8.7018], + [-10.9773, 8.6966], + [-10.976799, 8.694099], + [-10.9767, 8.691899], + [-10.9773, 8.689699], + [-10.978475, 8.687643], + [-10.975417, 8.684582], + [-10.975417, 8.682917], + [-10.977916, 8.680416], + [-10.978459, 8.677699], + [-10.978249, 8.677838], + [-10.977393, 8.679295], + [-10.97673, 8.679623], + [-10.976583, 8.678834], + [-10.976829, 8.677512], + [-10.977042, 8.675643], + [-10.980059, 8.67494], + [-10.980673, 8.674671], + [-10.980722, 8.674524], + [-10.98032, 8.672493], + [-10.980286, 8.672492], + [-10.98008, 8.671285], + [-10.979767, 8.670482], + [-10.979236, 8.669986], + [-10.977631, 8.66838], + [-10.976129, 8.66715], + [-10.976138, 8.667053], + [-10.974374, 8.666654], + [-10.97366, 8.666541], + [-10.973163, 8.666411], + [-10.971721, 8.666056], + [-10.971387, 8.665775], + [-10.971251, 8.665696], + [-10.969227, 8.664576], + [-10.967331, 8.663645], + [-10.966824, 8.663378], + [-10.965582, 8.662652], + [-10.964987, 8.662924], + [-10.964939, 8.662276], + [-10.965187, 8.660906], + [-10.964437, 8.660711], + [-10.963697, 8.660869], + [-10.964268, 8.661171], + [-10.964826, 8.662202], + [-10.964825, 8.662203], + [-10.961384, 8.660461], + [-10.961175, 8.660363], + [-10.959482, 8.659396], + [-10.959079, 8.658568], + [-10.958996, 8.658325], + [-10.958791, 8.657547], + [-10.958751, 8.65738], + [-10.957739, 8.654125], + [-10.957701, 8.654034], + [-10.957661, 8.653826], + [-10.957563, 8.65354], + [-10.957048, 8.653125], + [-10.954437, 8.651736], + [-10.95287, 8.651506], + [-10.951764, 8.651648], + [-10.95145, 8.651856], + [-10.950906, 8.653203], + [-10.950447, 8.653633], + [-10.950086, 8.653758], + [-10.949978, 8.653773], + [-10.948649, 8.654083], + [-10.946903, 8.6539], + [-10.945839, 8.654421], + [-10.944642, 8.65677], + [-10.943222, 8.658177], + [-10.941977, 8.659318], + [-10.941363, 8.659769], + [-10.941368, 8.661812], + [-10.941728, 8.663333], + [-10.942198, 8.664311], + [-10.940817, 8.664744], + [-10.939817, 8.66413], + [-10.939592, 8.664276], + [-10.940771, 8.665479], + [-10.942243, 8.666083], + [-10.942814, 8.666148], + [-10.943518, 8.666611], + [-10.945186, 8.66687], + [-10.945297, 8.666769], + [-10.945422, 8.666885], + [-10.945428, 8.667246], + [-10.944804, 8.668741], + [-10.944691, 8.66887], + [-10.94273, 8.668114], + [-10.942324, 8.668089], + [-10.9414, 8.667084], + [-10.93875, 8.667084], + [-10.937917, 8.667916], + [-10.937917, 8.669582], + [-10.940258, 8.671926], + [-10.939564, 8.672586], + [-10.9392, 8.672713], + [-10.938113, 8.673748], + [-10.937708, 8.673728], + [-10.937118, 8.673423], + [-10.936762, 8.672902], + [-10.936257, 8.67284], + [-10.935719, 8.673754], + [-10.935634, 8.674194], + [-10.935941, 8.67699], + [-10.936116, 8.677431], + [-10.936115, 8.677433], + [-10.932083, 8.675417], + [-10.92875, 8.674583], + [-10.928749, 8.677082], + [-10.92625, 8.679583], + [-10.927916, 8.684582], + [-10.924864, 8.686109], + [-10.924781, 8.686052], + [-10.924582, 8.68625], + [-10.92125, 8.687083], + [-10.919865, 8.694005], + [-10.919863, 8.694005], + [-10.91967, 8.693663], + [-10.91932, 8.693882], + [-10.918987, 8.694855], + [-10.919314, 8.695054], + [-10.919417, 8.696077], + [-10.918174, 8.697176], + [-10.918142, 8.697709], + [-10.917672, 8.697741], + [-10.91785, 8.698293], + [-10.917803, 8.698791], + [-10.918082, 8.698949], + [-10.917161, 8.69952], + [-10.916378, 8.70047], + [-10.915517, 8.70184], + [-10.914931, 8.703155], + [-10.914295, 8.705148], + [-10.914098, 8.70663], + [-10.913687, 8.707451], + [-10.913488, 8.707856], + [-10.913307, 8.708479], + [-10.913253, 8.708702], + [-10.912949, 8.709805], + [-10.912562, 8.71065], + [-10.911659, 8.711874], + [-10.911476, 8.712254], + [-10.911354, 8.712646], + [-10.911128, 8.713556], + [-10.909952, 8.716022], + [-10.907651, 8.720027], + [-10.907462, 8.720678], + [-10.90718, 8.721736], + [-10.906752, 8.723062], + [-10.906528, 8.724462], + [-10.905834, 8.725769], + [-10.905339, 8.726393], + [-10.903793, 8.727091], + [-10.902571, 8.729806], + [-10.902429, 8.729976], + [-10.906249, 8.73125], + [-10.904583, 8.736249], + [-10.899583, 8.737083], + [-10.89875, 8.740416], + [-10.897917, 8.740417], + [-10.897917, 8.749582], + [-10.89875, 8.749583], + [-10.899582, 8.757082], + [-10.900416, 8.760416], + [-10.887083, 8.760417], + [-10.885417, 8.76125], + [-10.886249, 8.76875], + [-10.882037, 8.772962], + [-10.878563, 8.778982], + [-10.881175, 8.783506], + [-10.881417, 8.783217], + [-10.885114, 8.783216], + [-10.886305, 8.781157], + [-10.890417, 8.784582], + [-10.892082, 8.784583], + [-10.893432, 8.789982], + [-10.889021, 8.789983], + [-10.885115, 8.796748], + [-10.886571, 8.79927], + [-10.88657, 8.799271], + [-10.882917, 8.798749], + [-10.880006, 8.795112], + [-10.8811, 8.797299], + [-10.8844, 8.800599], + [-10.891899, 8.804299], + [-10.8954, 8.804899], + [-10.899899, 8.8048], + [-10.9033, 8.803899], + [-10.9069, 8.801899], + [-10.9144, 8.798299], + [-10.9178, 8.797599], + [-10.924199, 8.7973], + [-10.927699, 8.7968], + [-10.9331, 8.794599], + [-10.9356, 8.793999], + [-10.941, 8.793399], + [-10.9435, 8.792799], + [-10.948, 8.790899], + [-10.951499, 8.7902], + [-10.959699, 8.7898], + [-10.962299, 8.7893], + [-10.9698, 8.785799], + [-10.971999, 8.783899], + [-10.973199, 8.781799], + [-10.973799, 8.778699], + [-10.9734, 8.7738], + [-10.9714, 8.767599], + [-10.9718, 8.765499], + [-10.972999, 8.763], + [-10.974399, 8.7612], + [-10.9771, 8.7604], + [-10.979999, 8.760699], + [-10.9848, 8.762799], + [-10.988299, 8.762899], + [-10.9926, 8.760999], + [-11.000299, 8.757799] + ] + ], + "type": "Polygon" + }, + "id": 53, + "properties": { + "cc:admin:id": ["33"], + "cc:oBld:total": 2322, + "cc:pop:fifteen-to-twenty-four": 1168.991616359729, + "cc:pop:grid3-total": 11196.95581480982, + "cc:pop:kontur-total": 5474.407469345092, + "cc:pop:men": 2847.087369563996, + "cc:pop:sixty-plus": 233.95933677533205, + "cc:pop:total": 5337.881431811346, + "cc:pop:under-five": 744.7066024963946, + "cc:pop:women": 2490.79406224735, + "cc:pop:women-fiften-to-forty-nine": 1295.3807160339113, + "cc:pop:wp-total": 5343.3773664266455, + "cc:pop:wp-total-UN": 6180.123919299649, + "cc:id": "53", + "cc:Name": "Boroma MCHP", + "cc:site": [-10.9456, 8.6668], + "user:parentName": "Gbense", + "user:code": "OU_233382", + "user:orgUnitId": "szbAJSWOXjT", + "user:level": "4", + "user:parentId": "TQkG0sX9nca" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.741119, 7.936642], + [-11.740733, 7.936444], + [-11.74076, 7.936367], + [-11.739799, 7.935899], + [-11.7362, 7.9339], + [-11.732999, 7.932599], + [-11.7286, 7.9303], + [-11.725399, 7.928899], + [-11.7211, 7.9266], + [-11.717099, 7.924899], + [-11.7094, 7.9208], + [-11.706899, 7.918099], + [-11.7051, 7.9143], + [-11.702999, 7.910799], + [-11.701599, 7.907599], + [-11.6997, 7.904], + [-11.698999, 7.901899], + [-11.698499, 7.895699], + [-11.6983, 7.8789], + [-11.698499, 7.874], + [-11.699199, 7.8704], + [-11.701299, 7.8661], + [-11.701699, 7.8636], + [-11.701099, 7.860499], + [-11.699499, 7.8588], + [-11.695599, 7.8568], + [-11.6904, 7.858199], + [-11.687399, 7.8587], + [-11.683299, 7.858899], + [-11.6717, 7.8588], + [-11.667599, 7.8591], + [-11.664799, 7.8596], + [-11.6586, 7.8615], + [-11.657599, 7.8646], + [-11.656499, 7.8689], + [-11.654199, 7.8741], + [-11.653599, 7.8776], + [-11.6534, 7.884799], + [-11.6529, 7.887899], + [-11.651299, 7.8907], + [-11.6488, 7.893399], + [-11.646599, 7.8951], + [-11.642699, 7.8969], + [-11.6384, 7.899199], + [-11.635199, 7.9005], + [-11.6309, 7.902899], + [-11.6277, 7.904199], + [-11.625568, 7.905418], + [-11.62625, 7.912916], + [-11.62875, 7.915416], + [-11.632051, 7.916077], + [-11.631847, 7.916588], + [-11.631787, 7.917381], + [-11.631463, 7.918479], + [-11.630412, 7.920282], + [-11.63027, 7.921249], + [-11.62625, 7.92125], + [-11.622083, 7.925417], + [-11.622083, 7.927916], + [-11.624583, 7.93125], + [-11.625416, 7.935416], + [-11.625782, 7.936147], + [-11.625595, 7.936188], + [-11.626249, 7.942083], + [-11.627082, 7.944583], + [-11.627174, 7.944706], + [-11.624754, 7.948899], + [-11.624695, 7.949137], + [-11.628562, 7.955835], + [-11.636374, 7.955836], + [-11.64028, 7.962601], + [-11.639618, 7.963749], + [-11.64375, 7.96375], + [-11.647916, 7.967083], + [-11.64875, 7.958749], + [-11.652916, 7.955417], + [-11.657082, 7.955417], + [-11.661249, 7.962083], + [-11.662083, 7.962084], + [-11.664583, 7.967916], + [-11.66875, 7.967084], + [-11.671249, 7.967916], + [-11.672082, 7.967917], + [-11.67375, 7.968749], + [-11.674582, 7.968749], + [-11.677082, 7.96625], + [-11.677917, 7.967083], + [-11.679582, 7.966249], + [-11.679583, 7.96375], + [-11.68113, 7.962202], + [-11.681131, 7.962203], + [-11.681125, 7.962518], + [-11.68089, 7.964318], + [-11.681067, 7.964644], + [-11.681131, 7.965916], + [-11.681532, 7.966165], + [-11.681506, 7.96637], + [-11.681724, 7.966612], + [-11.682647, 7.966735], + [-11.683464, 7.967509], + [-11.685086, 7.968619], + [-11.685398, 7.969136], + [-11.686249, 7.969589], + [-11.68625, 7.96375], + [-11.687916, 7.963749], + [-11.68875, 7.96125], + [-11.694582, 7.96125], + [-11.69625, 7.960417], + [-11.697082, 7.960416], + [-11.699582, 7.957916], + [-11.699583, 7.952917], + [-11.702083, 7.952917], + [-11.703749, 7.955416], + [-11.70375, 7.957916], + [-11.707082, 7.958749], + [-11.708749, 7.957916], + [-11.70875, 7.955976], + [-11.709072, 7.955931], + [-11.70958, 7.956663], + [-11.710365, 7.956806], + [-11.710968, 7.957118], + [-11.712124, 7.958232], + [-11.712396, 7.958096], + [-11.712638, 7.958445], + [-11.712867, 7.958307], + [-11.712938, 7.958449], + [-11.713763, 7.9586], + [-11.713823, 7.958418], + [-11.714123, 7.958469], + [-11.714123, 7.958471], + [-11.71399, 7.958593], + [-11.713997, 7.958596], + [-11.714916, 7.958191], + [-11.715308, 7.95779], + [-11.716775, 7.957373], + [-11.720659, 7.955663], + [-11.719984, 7.954765], + [-11.719552, 7.954227], + [-11.71893, 7.954316], + [-11.718754, 7.954358], + [-11.718597, 7.95439], + [-11.717484, 7.954459], + [-11.716214, 7.954501], + [-11.716018, 7.954754], + [-11.715611, 7.954513], + [-11.715189, 7.954173], + [-11.715135, 7.954132], + [-11.714786, 7.953889], + [-11.714016, 7.955064], + [-11.713617, 7.954775], + [-11.712837, 7.955935], + [-11.712413, 7.955638], + [-11.712389, 7.955672], + [-11.712007, 7.955492], + [-11.711727, 7.955662], + [-11.711145, 7.955617], + [-11.710483, 7.955095], + [-11.710849, 7.954658], + [-11.710022, 7.953963], + [-11.710707, 7.953246], + [-11.711033, 7.952892], + [-11.71188, 7.953522], + [-11.712215, 7.953195], + [-11.712614, 7.952835], + [-11.713194, 7.953329], + [-11.713581, 7.952987], + [-11.713948, 7.95277], + [-11.714744, 7.952373], + [-11.715013, 7.952105], + [-11.71433, 7.951545], + [-11.714438, 7.951315], + [-11.715886, 7.952219], + [-11.716159, 7.951859], + [-11.716196, 7.951806], + [-11.716421, 7.951387], + [-11.716714, 7.950866], + [-11.717088, 7.951043], + [-11.717701, 7.95063], + [-11.718203, 7.950817], + [-11.718393, 7.950651], + [-11.718484, 7.950707], + [-11.719098, 7.950575], + [-11.719774, 7.950096], + [-11.720527, 7.949269], + [-11.720597, 7.949195], + [-11.721389, 7.949179], + [-11.721894, 7.949337], + [-11.722238, 7.949225], + [-11.722466, 7.948901], + [-11.722879, 7.948697], + [-11.722625, 7.947949], + [-11.722894, 7.94785], + [-11.723694, 7.947423], + [-11.723989, 7.947248], + [-11.725725, 7.94618], + [-11.726847, 7.945504], + [-11.727264, 7.945232], + [-11.727833, 7.944902], + [-11.728377, 7.94469], + [-11.728323, 7.944567], + [-11.728338, 7.944533], + [-11.72841, 7.944483], + [-11.728466, 7.944484], + [-11.728839, 7.944373], + [-11.729283, 7.944267], + [-11.729352, 7.944246], + [-11.729892, 7.944123], + [-11.730199, 7.944076], + [-11.730572, 7.944035], + [-11.730917, 7.944011], + [-11.731293, 7.944012], + [-11.731769, 7.944035], + [-11.732994, 7.944218], + [-11.733415, 7.944347], + [-11.73365, 7.943721], + [-11.733685, 7.943607], + [-11.73384, 7.943042], + [-11.733902, 7.942543], + [-11.73388, 7.942507], + [-11.734149, 7.941841], + [-11.734358, 7.94135], + [-11.733469, 7.941133], + [-11.73372, 7.940675], + [-11.733816, 7.940467], + [-11.733974, 7.940049], + [-11.733569, 7.939871], + [-11.733871, 7.938888], + [-11.73379, 7.938731], + [-11.733937, 7.938322], + [-11.735855, 7.939413], + [-11.736766, 7.939658], + [-11.736939, 7.939185], + [-11.737064, 7.938681], + [-11.73719, 7.938189], + [-11.737434, 7.937544], + [-11.737718, 7.93758], + [-11.73808, 7.937753], + [-11.739007, 7.938172], + [-11.739021, 7.938137], + [-11.739057, 7.938058], + [-11.7392, 7.937757], + [-11.740507, 7.938328], + [-11.740631, 7.937966], + [-11.740706, 7.937774], + [-11.740749, 7.937637], + [-11.740552, 7.937437], + [-11.739559, 7.936878], + [-11.739723, 7.936503], + [-11.740625, 7.936912], + [-11.740977, 7.937052], + [-11.741119, 7.936642] + ] + ], + "type": "Polygon" + }, + "id": 54, + "properties": { + "cc:admin:id": ["46"], + "cc:oBld:total": 5527, + "cc:pop:fifteen-to-twenty-four": 12124.015025730198, + "cc:pop:grid3-total": 44129.61513264804, + "cc:pop:kontur-total": 71592.54709493602, + "cc:pop:men": 32711.097310244004, + "cc:pop:sixty-plus": 4899.043792637857, + "cc:pop:total": 67441.31872755729, + "cc:pop:under-five": 11170.10351648075, + "cc:pop:women": 34730.221417313296, + "cc:pop:women-fiften-to-forty-nine": 16554.9224528777, + "cc:pop:wp-total": 54854.43330919801, + "cc:pop:wp-total-UN": 63593.48966071796, + "cc:id": "54", + "cc:Name": "Bucksal Clinic", + "cc:site": [-11.7259, 7.9403], + "user:parentName": "Kakua", + "user:code": "OU_1010", + "user:orgUnitId": "vRC0stJ5y9Q", + "user:level": "4", + "user:parentId": "U6Kr7Gtpidn" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.92125, 7.494173], + [-11.921249, 7.490417], + [-11.920416, 7.48875], + [-11.915417, 7.487083], + [-11.915416, 7.480094], + [-11.915015, 7.480097], + [-11.912344, 7.480378], + [-11.910352, 7.480752], + [-11.908391, 7.48133], + [-11.907532, 7.48144], + [-11.90733, 7.481464], + [-11.908749, 7.477916], + [-11.90875, 7.474584], + [-11.914595, 7.473747], + [-11.91098, 7.467484], + [-11.914885, 7.460719], + [-11.914794, 7.460562], + [-11.907917, 7.46125], + [-11.904583, 7.464584], + [-11.904143, 7.466338], + [-11.903948, 7.466278], + [-11.903353, 7.466394], + [-11.901509, 7.466187], + [-11.900078, 7.466719], + [-11.892917, 7.465417], + [-11.892118, 7.465336], + [-11.895022, 7.460305], + [-11.895416, 7.460416], + [-11.898749, 7.447084], + [-11.900416, 7.447083], + [-11.900417, 7.437917], + [-11.904582, 7.434583], + [-11.903749, 7.432917], + [-11.8973, 7.43005], + [-11.897299, 7.433299], + [-11.895999, 7.436999], + [-11.893499, 7.4402], + [-11.888699, 7.4454], + [-11.887199, 7.4502], + [-11.886099, 7.459399], + [-11.883999, 7.463299], + [-11.880499, 7.4662], + [-11.876399, 7.4683], + [-11.869399, 7.4712], + [-11.866199, 7.4743], + [-11.8605, 7.4835], + [-11.863199, 7.491999], + [-11.866499, 7.498699], + [-11.867499, 7.501399], + [-11.868, 7.5043], + [-11.868899, 7.513199], + [-11.87, 7.5176], + [-11.871399, 7.520199], + [-11.8731, 7.5226], + [-11.882899, 7.533999], + [-11.885999, 7.535999], + [-11.8888, 7.5366], + [-11.8931, 7.536899], + [-11.8974, 7.536599], + [-11.9016, 7.535399], + [-11.905399, 7.533299], + [-11.904299, 7.524799], + [-11.9042, 7.5191], + [-11.904299, 7.5154], + [-11.9049, 7.5128], + [-11.9089, 7.5061], + [-11.9132, 7.502999], + [-11.916699, 7.4996], + [-11.920099, 7.495], + [-11.92125, 7.494173] + ] + ], + "type": "Polygon" + }, + "id": 55, + "properties": { + "cc:admin:id": ["10"], + "cc:oBld:total": 3, + "cc:pop:fifteen-to-twenty-four": 523.4258634115133, + "cc:pop:grid3-total": 1976.1684456216694, + "cc:pop:kontur-total": 3506.5029139802377, + "cc:pop:men": 1378.6989945302828, + "cc:pop:sixty-plus": 209.10803946466856, + "cc:pop:total": 2851.679404738839, + "cc:pop:under-five": 483.5213893376162, + "cc:pop:women": 1472.9804102085563, + "cc:pop:women-fiften-to-forty-nine": 730.2037834168926, + "cc:pop:wp-total": 3023.9944950882555, + "cc:pop:wp-total-UN": 3506.1597713345573, + "cc:id": "55", + "cc:Name": "Bum Kaku MCHP", + "cc:site": [-11.8774, 7.5052], + "user:parentName": "Bargbo", + "user:code": "OU_619", + "user:orgUnitId": "EJoI3HArJ2W", + "user:level": "4", + "user:parentId": "zFDYIgyGmXG" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.936249, 9.085416], + [-11.93413, 9.077647], + [-11.933963, 9.077717], + [-11.932083, 9.074582], + [-11.932082, 9.069583], + [-11.92881, 9.06762], + [-11.927686, 9.069752], + [-11.922082, 9.06625], + [-11.920417, 9.066249], + [-11.920416, 9.057917], + [-11.912917, 9.049583], + [-11.917083, 9.04375], + [-11.925416, 9.042917], + [-11.925416, 9.042083], + [-11.91875, 9.042082], + [-11.914583, 9.037917], + [-11.8994, 9.053099], + [-11.8954, 9.056499], + [-11.8912, 9.058699], + [-11.8892, 9.059999], + [-11.8853, 9.063199], + [-11.8832, 9.064599], + [-11.8801, 9.065899], + [-11.8758, 9.068299], + [-11.8719, 9.070099], + [-11.869199, 9.0721], + [-11.866099, 9.0751], + [-11.8626, 9.079499], + [-11.8605, 9.083699], + [-11.858699, 9.0864], + [-11.8558, 9.089599], + [-11.852599, 9.0925], + [-11.849899, 9.0944], + [-11.845599, 9.0965], + [-11.842099, 9.0994], + [-11.8353, 9.106199], + [-11.831299, 9.109299], + [-11.8255, 9.111199], + [-11.8207, 9.113], + [-11.8238, 9.1213], + [-11.825799, 9.128299], + [-11.826154, 9.131984], + [-11.830706, 9.131985], + [-11.834612, 9.138751], + [-11.842424, 9.13875], + [-11.846331, 9.131985], + [-11.854143, 9.131985], + [-11.85805, 9.13875], + [-11.86008, 9.138751], + [-11.859894, 9.13968], + [-11.860103, 9.140167], + [-11.86043, 9.139906], + [-11.862214, 9.139906], + [-11.86612, 9.146671], + [-11.870416, 9.146671], + [-11.870417, 9.145419], + [-11.870418, 9.145418], + [-11.87625, 9.150416], + [-11.878749, 9.151249], + [-11.87999, 9.148148], + [-11.880155, 9.148152], + [-11.882916, 9.14125], + [-11.883749, 9.14125], + [-11.890188, 9.144111], + [-11.890166, 9.144458], + [-11.893749, 9.146249], + [-11.895416, 9.149582], + [-11.89625, 9.150416], + [-11.899582, 9.150416], + [-11.903749, 9.144583], + [-11.906249, 9.137917], + [-11.904584, 9.134583], + [-11.911249, 9.134583], + [-11.912917, 9.136249], + [-11.920808, 9.135643], + [-11.921131, 9.135085], + [-11.917224, 9.128319], + [-11.912408, 9.128319], + [-11.912407, 9.128317], + [-11.915702, 9.123924], + [-11.916145, 9.123872], + [-11.920362, 9.120886], + [-11.921799, 9.120146], + [-11.925206, 9.117929], + [-11.929902, 9.113641], + [-11.925417, 9.105417], + [-11.924583, 9.105416], + [-11.924583, 9.097083], + [-11.928749, 9.093749], + [-11.929583, 9.089583], + [-11.933749, 9.08875], + [-11.933818, 9.088657], + [-11.933931, 9.088656], + [-11.934309, 9.088004], + [-11.936249, 9.085416] + ] + ], + "type": "Polygon" + }, + "id": 56, + "properties": { + "cc:admin:id": ["7"], + "cc:oBld:total": 18, + "cc:pop:fifteen-to-twenty-four": 447.3206961962615, + "cc:pop:grid3-total": 4710.026357608517, + "cc:pop:kontur-total": 2267.8839423505583, + "cc:pop:men": 1140.9839188413923, + "cc:pop:sixty-plus": 142.48202069953004, + "cc:pop:total": 2483.5016450494454, + "cc:pop:under-five": 395.5253417460902, + "cc:pop:women": 1342.5177262080529, + "cc:pop:women-fiften-to-forty-nine": 662.5099976731279, + "cc:pop:wp-total": 2431.8542118205937, + "cc:pop:wp-total-UN": 2823.3903908430957, + "cc:id": "56", + "cc:Name": "Bumban MCHP", + "cc:site": [-11.9099, 9.0709], + "user:parentName": "Biriwa", + "user:code": "OU_193236", + "user:orgUnitId": "OI0BQUurVFS", + "user:level": "4", + "user:parentId": "fwH9ipvXde9" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.038629, 9.052632], + [-12.038035, 9.05168], + [-12.037083, 9.05092], + [-12.037082, 9.052917], + [-12.029584, 9.05958], + [-12.03266, 9.049581], + [-12.031982, 9.049563], + [-12.03136, 9.049682], + [-12.030438, 9.049604], + [-12.030314, 9.049597], + [-12.029557, 9.049831], + [-12.029476, 9.049859], + [-12.027798, 9.050034], + [-12.027212, 9.049867], + [-12.026623, 9.050081], + [-12.026158, 9.049931], + [-12.026067, 9.049535], + [-12.026065, 9.048315], + [-12.025728, 9.047416], + [-12.025754, 9.046752], + [-12.026384, 9.043843], + [-12.02658, 9.043451], + [-12.019583, 9.04625], + [-12.019582, 9.052916], + [-12.017082, 9.052916], + [-12.01375, 9.052083], + [-12.010416, 9.055417], + [-12.007916, 9.055416], + [-11.997083, 9.05375], + [-11.997082, 9.055416], + [-11.996249, 9.055417], + [-11.992083, 9.05875], + [-11.990416, 9.062082], + [-11.982621, 9.064682], + [-11.981815, 9.066052], + [-11.981627, 9.066688], + [-11.981972, 9.066861], + [-11.984582, 9.072083], + [-11.984582, 9.075417], + [-11.982082, 9.077082], + [-11.97625, 9.075417], + [-11.971249, 9.080417], + [-11.970417, 9.082916], + [-11.977916, 9.090416], + [-11.972917, 9.094583], + [-11.972916, 9.102082], + [-11.972083, 9.102917], + [-11.972082, 9.10375], + [-11.967083, 9.111249], + [-11.967917, 9.112083], + [-11.970417, 9.116249], + [-11.977082, 9.112917], + [-11.981249, 9.114582], + [-11.981249, 9.115417], + [-11.980417, 9.118749], + [-11.980953, 9.120361], + [-11.98094, 9.120369], + [-11.982083, 9.122082], + [-11.984531, 9.122082], + [-11.984442, 9.121791], + [-11.984398, 9.120496], + [-11.984126, 9.119304], + [-11.984406, 9.119249], + [-11.985337, 9.118408], + [-11.986471, 9.116872], + [-11.987621, 9.115171], + [-11.992082, 9.117083], + [-11.992916, 9.117917], + [-11.990417, 9.120416], + [-11.994583, 9.12375], + [-11.995416, 9.12625], + [-11.994583, 9.128749], + [-11.99625, 9.130416], + [-12.001249, 9.129583], + [-12.001773, 9.1322], + [-12.001905, 9.13216], + [-12.002177, 9.132111], + [-12.002179, 9.132112], + [-12.002917, 9.138749], + [-12.005417, 9.141249], + [-12.007916, 9.14125], + [-12.010228, 9.142405], + [-12.0119, 9.1397], + [-12.014899, 9.1371], + [-12.018699, 9.1352], + [-12.021199, 9.133199], + [-12.0231, 9.130099], + [-12.025999, 9.1246], + [-12.0273, 9.121399], + [-12.029399, 9.117], + [-12.0301, 9.113299], + [-12.030299, 9.1075], + [-12.030799, 9.1037], + [-12.032999, 9.098], + [-12.033299, 9.095], + [-12.032799, 9.091699], + [-12.031, 9.087599], + [-12.031, 9.0839], + [-12.036099, 9.072599], + [-12.036199, 9.069299], + [-12.0352, 9.065299], + [-12.0365, 9.060299], + [-12.037799, 9.0545], + [-12.038629, 9.052632] + ] + ], + "type": "Polygon" + }, + "id": 57, + "properties": { + "cc:admin:id": ["7"], + "cc:oBld:total": 10, + "cc:pop:fifteen-to-twenty-four": 477.8274378322718, + "cc:pop:grid3-total": 3447.5103650972483, + "cc:pop:kontur-total": 2684.207784488621, + "cc:pop:men": 1205.8370200709694, + "cc:pop:sixty-plus": 150.3641653322265, + "cc:pop:total": 2627.053899558653, + "cc:pop:under-five": 416.07965799883596, + "cc:pop:women": 1421.216879487684, + "cc:pop:women-fiften-to-forty-nine": 697.7818327040548, + "cc:pop:wp-total": 2703.6770160820533, + "cc:pop:wp-total-UN": 3126.2543236799215, + "cc:id": "57", + "cc:Name": "Bumbanday MCHP", + "cc:site": [-12.0048, 9.0892], + "user:parentName": "Biriwa", + "user:code": "OU_193238", + "user:orgUnitId": "LZclRdyVk1t", + "user:level": "4", + "user:parentId": "fwH9ipvXde9" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.615435, 7.475597], + [-11.615499, 7.474499], + [-11.6153, 7.4694], + [-11.6146, 7.4655], + [-11.6107, 7.457], + [-11.608799, 7.453399], + [-11.607799, 7.450099], + [-11.607499, 7.4455], + [-11.6064, 7.4429], + [-11.6037, 7.4409], + [-11.600699, 7.4395], + [-11.5978, 7.44], + [-11.5934, 7.4428], + [-11.590799, 7.4467], + [-11.5848, 7.453399], + [-11.5826, 7.456399], + [-11.5807, 7.460199], + [-11.5786, 7.463099], + [-11.5744, 7.466699], + [-11.570699, 7.4686], + [-11.5681, 7.471099], + [-11.564699, 7.4769], + [-11.5619, 7.479999], + [-11.5593, 7.481899], + [-11.554299, 7.4829], + [-11.5416, 7.4829], + [-11.5383, 7.483199], + [-11.536299, 7.4839], + [-11.5327, 7.485799], + [-11.529499, 7.4872], + [-11.5244, 7.489699], + [-11.519299, 7.4909], + [-11.514099, 7.4932], + [-11.511399, 7.4938], + [-11.507799, 7.494], + [-11.5031, 7.494], + [-11.502299, 7.4973], + [-11.500299, 7.5018], + [-11.4989, 7.507699], + [-11.496904, 7.512059], + [-11.497725, 7.51092], + [-11.498702, 7.510042], + [-11.499926, 7.508532], + [-11.50075, 7.507121], + [-11.502206, 7.505997], + [-11.502725, 7.505386], + [-11.505416, 7.50875], + [-11.505417, 7.51926], + [-11.507024, 7.519119], + [-11.507814, 7.519337], + [-11.507241, 7.527369], + [-11.514576, 7.52737], + [-11.518482, 7.534134], + [-11.525682, 7.534135], + [-11.526572, 7.535556], + [-11.529583, 7.53375], + [-11.53362, 7.541823], + [-11.538691, 7.545235], + [-11.54031, 7.546251], + [-11.545416, 7.540418], + [-11.545417, 7.546249], + [-11.547083, 7.548749], + [-11.549582, 7.549583], + [-11.552353, 7.54792], + [-11.5525, 7.545299], + [-11.553199, 7.5423], + [-11.5571, 7.534499], + [-11.5593, 7.531599], + [-11.5622, 7.528699], + [-11.566299, 7.5252], + [-11.5713, 7.522499], + [-11.5741, 7.520299], + [-11.579399, 7.5153], + [-11.582299, 7.5133], + [-11.586199, 7.5115], + [-11.5897, 7.509499], + [-11.5929, 7.508199], + [-11.597199, 7.5058], + [-11.6004, 7.504499], + [-11.604699, 7.5021], + [-11.608499, 7.5003], + [-11.611799, 7.497699], + [-11.6118, 7.492599], + [-11.612499, 7.4874], + [-11.6146, 7.482399], + [-11.6152, 7.479599], + [-11.615435, 7.475597] + ] + ], + "type": "Polygon" + }, + "id": 58, + "properties": { + "cc:admin:id": ["109"], + "cc:oBld:total": 6, + "cc:pop:fifteen-to-twenty-four": 1646.5403883014478, + "cc:pop:grid3-total": 4070.900798409821, + "cc:pop:kontur-total": 8510.300485498798, + "cc:pop:men": 4340.208624192621, + "cc:pop:sixty-plus": 649.6280938978551, + "cc:pop:total": 9194.646777534137, + "cc:pop:under-five": 1535.0470901060019, + "cc:pop:women": 4854.438153341519, + "cc:pop:women-fiften-to-forty-nine": 2319.0916637459704, + "cc:pop:wp-total": 8577.605626896662, + "cc:pop:wp-total-UN": 9947.674914966654, + "cc:id": "58", + "cc:Name": "Bumbeh MCHP", + "cc:site": [-11.5642, 7.4905], + "user:parentName": "Pejeh", + "user:code": "OU_260391", + "user:orgUnitId": "DwpbWkiqjMy", + "user:level": "4", + "user:parentId": "N233eZJZ1bh" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.825811, 9.128427], + [-11.825799, 9.128299], + [-11.823799, 9.121299], + [-11.8207, 9.113], + [-11.821899, 9.1044], + [-11.821699, 9.098599], + [-11.8201, 9.0915], + [-11.8185, 9.087], + [-11.816399, 9.084], + [-11.812299, 9.0821], + [-11.8014, 9.081], + [-11.7953, 9.0793], + [-11.7908, 9.0786], + [-11.783099, 9.0784], + [-11.7661, 9.078699], + [-11.7609, 9.0781], + [-11.756899, 9.075899], + [-11.7544, 9.071499], + [-11.754, 9.066299], + [-11.754899, 9.0626], + [-11.756499, 9.0597], + [-11.7585, 9.057699], + [-11.7613, 9.056399], + [-11.769599, 9.053899], + [-11.772899, 9.051299], + [-11.775099, 9.047899], + [-11.777099, 9.0388], + [-11.7782, 9.0359], + [-11.7799, 9.033999], + [-11.784999, 9.0306], + [-11.787499, 9.028299], + [-11.7896, 9.024299], + [-11.791199, 9.0188], + [-11.7885, 9.0159], + [-11.7862, 9.0129], + [-11.7835, 9.0059], + [-11.784899, 9.0009], + [-11.784999, 8.997499], + [-11.784499, 8.9945], + [-11.7809, 8.9875], + [-11.778099, 8.9845], + [-11.7736, 8.9823], + [-11.77, 8.9803], + [-11.7668, 8.979], + [-11.764299, 8.977399], + [-11.761399, 8.974899], + [-11.758599, 8.972099], + [-11.7568, 8.9699], + [-11.7557, 8.9678], + [-11.755099, 8.965399], + [-11.754899, 8.962499], + [-11.7548, 8.9327], + [-11.7546, 8.9288], + [-11.753999, 8.925099], + [-11.751799, 8.919699], + [-11.751199, 8.917099], + [-11.750599, 8.911799], + [-11.749499, 8.908499], + [-11.7473, 8.9055], + [-11.7452, 8.9035], + [-11.742899, 8.901999], + [-11.7361, 8.8987], + [-11.734464, 8.898399], + [-11.73375, 8.906249], + [-11.733749, 8.907082], + [-11.732917, 8.907083], + [-11.732083, 8.909582], + [-11.729583, 8.91125], + [-11.72875, 8.912917], + [-11.728749, 8.913672], + [-11.727813, 8.91437], + [-11.726963, 8.914138], + [-11.72678, 8.913578], + [-11.726949, 8.912988], + [-11.727725, 8.912846], + [-11.728052, 8.912465], + [-11.727923, 8.912133], + [-11.727551, 8.91191], + [-11.726751, 8.912076], + [-11.726249, 8.914583], + [-11.725417, 8.923749], + [-11.72875, 8.927916], + [-11.732082, 8.92875], + [-11.732083, 8.934582], + [-11.735416, 8.937916], + [-11.737083, 8.945416], + [-11.738743, 8.946662], + [-11.738742, 8.946664], + [-11.738544, 8.946664], + [-11.734639, 8.953429], + [-11.738544, 8.960194], + [-11.736012, 8.964582], + [-11.73875, 8.964583], + [-11.742916, 8.967916], + [-11.742917, 8.969582], + [-11.744583, 8.969583], + [-11.747082, 8.972082], + [-11.747916, 8.976249], + [-11.748023, 8.97657], + [-11.746954, 8.976571], + [-11.732917, 8.981249], + [-11.732082, 8.982083], + [-11.729582, 8.983749], + [-11.727916, 8.983749], + [-11.725417, 8.98125], + [-11.724894, 8.979165], + [-11.722969, 8.982501], + [-11.72375, 8.984583], + [-11.724582, 8.995417], + [-11.721557, 8.999451], + [-11.721375, 8.999452], + [-11.720526, 8.999965], + [-11.720124, 9.000396], + [-11.720103, 9.000525], + [-11.717364, 9.000526], + [-11.716681, 9.00171], + [-11.717082, 9.002917], + [-11.714582, 9.006249], + [-11.71233, 9.007377], + [-11.714374, 9.010919], + [-11.710469, 9.017684], + [-11.714171, 9.024097], + [-11.713749, 9.029582], + [-11.710417, 9.029583], + [-11.708749, 9.030416], + [-11.705417, 9.029583], + [-11.698749, 9.033749], + [-11.695814, 9.034337], + [-11.695771, 9.034742], + [-11.695971, 9.035579], + [-11.696605, 9.037081], + [-11.696604, 9.037082], + [-11.690417, 9.037083], + [-11.690202, 9.036869], + [-11.688272, 9.040212], + [-11.692178, 9.046977], + [-11.693162, 9.046978], + [-11.693163, 9.046979], + [-11.692976, 9.047417], + [-11.692602, 9.047831], + [-11.692419, 9.048466], + [-11.691508, 9.048917], + [-11.69058, 9.049891], + [-11.690476, 9.049926], + [-11.688272, 9.053743], + [-11.692178, 9.060508], + [-11.691681, 9.061371], + [-11.692917, 9.062917], + [-11.692916, 9.076249], + [-11.688585, 9.08058], + [-11.6892, 9.0809], + [-11.692699, 9.083699], + [-11.695899, 9.086899], + [-11.6996, 9.0916], + [-11.7044, 9.1], + [-11.705699, 9.103899], + [-11.706099, 9.106799], + [-11.706299, 9.1111], + [-11.706099, 9.117], + [-11.705399, 9.1227], + [-11.7031, 9.132299], + [-11.7026, 9.139699], + [-11.702899, 9.156399], + [-11.704199, 9.1689], + [-11.703199, 9.183], + [-11.7031, 9.196899], + [-11.703399, 9.206199], + [-11.704199, 9.212099], + [-11.705799, 9.217799], + [-11.709599, 9.227699], + [-11.712599, 9.234299], + [-11.7144, 9.2402], + [-11.715, 9.2462], + [-11.715499, 9.264299], + [-11.7181, 9.279799], + [-11.722899, 9.2762], + [-11.7256, 9.273399], + [-11.7279, 9.269899], + [-11.7318, 9.261299], + [-11.7336, 9.255499], + [-11.7369, 9.240399], + [-11.737299, 9.234299], + [-11.7371, 9.2203], + [-11.737699, 9.2143], + [-11.7392, 9.210599], + [-11.743599, 9.2039], + [-11.7478, 9.201199], + [-11.756099, 9.1983], + [-11.7605, 9.197599], + [-11.7683, 9.1973], + [-11.776199, 9.197399], + [-11.7823, 9.1979], + [-11.7853, 9.1985], + [-11.7913, 9.2004], + [-11.802499, 9.201799], + [-11.809099, 9.203199], + [-11.8102, 9.194399], + [-11.8128, 9.179299], + [-11.8144, 9.174699], + [-11.815999, 9.1681], + [-11.8177, 9.162299], + [-11.821199, 9.1524], + [-11.8242, 9.145899], + [-11.825799, 9.1401], + [-11.826299, 9.1335], + [-11.825811, 9.128427] + ] + ], + "type": "Polygon" + }, + "id": 59, + "properties": { + "cc:admin:id": ["47"], + "cc:oBld:total": 3163, + "cc:pop:fifteen-to-twenty-four": 3616.3950144345927, + "cc:pop:grid3-total": 26843.285920106562, + "cc:pop:kontur-total": 19923.87564991818, + "cc:pop:men": 9259.143704900003, + "cc:pop:sixty-plus": 1202.7887752406716, + "cc:pop:total": 19895.65762090261, + "cc:pop:under-five": 3240.63084774519, + "cc:pop:women": 10636.513916002606, + "cc:pop:women-fiften-to-forty-nine": 5086.466791413045, + "cc:pop:wp-total": 17408.758284982418, + "cc:pop:wp-total-UN": 20164.903327742628, + "cc:id": "59", + "cc:Name": "Bumbuna CHC", + "cc:site": [-11.7449, 9.0449], + "user:parentName": "Kalansogoia", + "user:code": "OU_268195", + "user:orgUnitId": "Q2USZSJmcNK", + "user:level": "4", + "user:parentId": "smoyi1iYNK6" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.030416, 7.939584], + [-12.01875, 7.93375], + [-12.014583, 7.933749], + [-12.012916, 7.932916], + [-12.009582, 7.932083], + [-12.006249, 7.930416], + [-12.002083, 7.925416], + [-12.002838, 7.916352], + [-12.001032, 7.915901], + [-11.999583, 7.914898], + [-11.999582, 7.90375], + [-11.994582, 7.899584], + [-11.989583, 7.898749], + [-11.98625, 7.897083], + [-11.982082, 7.88125], + [-11.973889, 7.881933], + [-11.973012, 7.880417], + [-11.967917, 7.880416], + [-11.966414, 7.869898], + [-11.96604, 7.869886], + [-11.965985, 7.869921], + [-11.965983, 7.86992], + [-11.964582, 7.862917], + [-11.96087, 7.862916], + [-11.96086, 7.862489], + [-11.960104, 7.861473], + [-11.960085, 7.86146], + [-11.961477, 7.859047], + [-11.959216, 7.85513], + [-11.959217, 7.855128], + [-11.959406, 7.855093], + [-11.95939, 7.854249], + [-11.957862, 7.853902], + [-11.95474, 7.852411], + [-11.950494, 7.849701], + [-11.949505, 7.849106], + [-11.947087, 7.847659], + [-11.945448, 7.84662], + [-11.945603, 7.846315], + [-11.945755, 7.846021], + [-11.946313, 7.845707], + [-11.945245, 7.84525], + [-11.944774, 7.845533], + [-11.944821, 7.846015], + [-11.944587, 7.846207], + [-11.943155, 7.844661], + [-11.942751, 7.843919], + [-11.942909, 7.842437], + [-11.942878, 7.84174], + [-11.942275, 7.839813], + [-11.941662, 7.838784], + [-11.940923, 7.837692], + [-11.940536, 7.837464], + [-11.939246, 7.835451], + [-11.937854, 7.834555], + [-11.937929, 7.833719], + [-11.938224, 7.833271], + [-11.938745, 7.833883], + [-11.939257, 7.834184], + [-11.940866, 7.834588], + [-11.941818, 7.834278], + [-11.942082, 7.83375], + [-11.939583, 7.830416], + [-11.937916, 7.82375], + [-11.936249, 7.823749], + [-11.925417, 7.82125], + [-11.926073, 7.817305], + [-11.923376, 7.812633], + [-11.915563, 7.812632], + [-11.91356, 7.809161], + [-11.91304, 7.803445], + [-11.913446, 7.80343], + [-11.913618, 7.803278], + [-11.913523, 7.803031], + [-11.913749, 7.802999], + [-11.913749, 7.802917], + [-11.909583, 7.802916], + [-11.907752, 7.801086], + [-11.907125, 7.801484], + [-11.907112, 7.80148], + [-11.902068, 7.797697], + [-11.901926, 7.797786], + [-11.901487, 7.798031], + [-11.901249, 7.797083], + [-11.89875, 7.78875], + [-11.898801, 7.788743], + [-11.899547, 7.78745], + [-11.89625, 7.781738], + [-11.89625, 7.77963], + [-11.896276, 7.779584], + [-11.896249, 7.779583], + [-11.893749, 7.777084], + [-11.887083, 7.774583], + [-11.885416, 7.770417], + [-11.883685, 7.768686], + [-11.882399, 7.7692], + [-11.877399, 7.7704], + [-11.871999, 7.7724], + [-11.8671, 7.7734], + [-11.8646, 7.7749], + [-11.8637, 7.7766], + [-11.863999, 7.778699], + [-11.865499, 7.780599], + [-11.8683, 7.7828], + [-11.873599, 7.7856], + [-11.8764, 7.7885], + [-11.8788, 7.792299], + [-11.882599, 7.795099], + [-11.885799, 7.7969], + [-11.887899, 7.799899], + [-11.887899, 7.802799], + [-11.885599, 7.8062], + [-11.882399, 7.8088], + [-11.8786, 7.810699], + [-11.8766, 7.811999], + [-11.8746, 7.8146], + [-11.873799, 7.818], + [-11.8737, 7.825199], + [-11.873, 7.828899], + [-11.869099, 7.837], + [-11.865899, 7.8409], + [-11.8446, 7.862099], + [-11.842799, 7.8642], + [-11.8414, 7.8666], + [-11.840699, 7.8701], + [-11.8405, 7.878199], + [-11.8396, 7.881599], + [-11.8378, 7.885199], + [-11.836499, 7.8883], + [-11.834099, 7.8926], + [-11.8303, 7.900999], + [-11.8289, 7.906799], + [-11.826699, 7.9122], + [-11.825599, 7.9173], + [-11.8231, 7.922399], + [-11.821799, 7.9255], + [-11.819599, 7.9299], + [-11.8188, 7.9348], + [-11.819099, 7.956299], + [-11.819099, 7.962], + [-11.818699, 7.9656], + [-11.8171, 7.971499], + [-11.817, 7.975399], + [-11.823499, 7.977099], + [-11.8287, 7.979799], + [-11.836099, 7.9797], + [-11.8431, 7.978599], + [-11.854199, 7.9738], + [-11.858199, 7.9727], + [-11.8627, 7.9723], + [-11.868599, 7.9726], + [-11.8736, 7.9744], + [-11.8786, 7.9781], + [-11.8823, 7.9793], + [-11.8904, 7.9809], + [-11.900499, 7.985899], + [-11.9071, 7.9882], + [-11.917599, 7.992499], + [-11.9234, 7.9974], + [-11.927199, 7.999399], + [-11.930399, 8.000599], + [-11.9336, 8.000699], + [-11.9393, 7.9996], + [-11.9433, 7.9997], + [-11.9505, 8.0013], + [-11.955799, 8.001599], + [-11.959699, 8.0011], + [-11.965699, 7.9993], + [-11.971299, 7.998399], + [-11.9726, 7.9957], + [-11.975999, 7.9926], + [-11.9799, 7.991199], + [-11.9843, 7.990799], + [-11.9978, 7.990299], + [-12.0007, 7.989799], + [-12.0054, 7.988399], + [-12.0098, 7.987599], + [-12.028313, 7.986866], + [-12.029583, 7.983526], + [-12.029734, 7.980607], + [-12.030251, 7.978782], + [-12.030211, 7.977917], + [-12.030194, 7.977916], + [-12.029955, 7.974293], + [-12.02902, 7.972886], + [-12.0288, 7.971597], + [-12.027667, 7.969531], + [-12.027319, 7.968225], + [-12.027294, 7.967182], + [-12.027452, 7.967084], + [-12.024066, 7.967083], + [-12.020161, 7.960317], + [-12.021939, 7.957237], + [-12.023749, 7.956249], + [-12.025416, 7.952917], + [-12.021052, 7.949222], + [-12.024452, 7.943334], + [-12.030416, 7.943333], + [-12.030416, 7.939584] + ] + ], + "type": "Polygon" + }, + "id": 60, + "properties": { + "cc:admin:id": ["11"], + "cc:oBld:total": 1206, + "cc:pop:fifteen-to-twenty-four": 2978.9021061946905, + "cc:pop:grid3-total": 11003.709333510464, + "cc:pop:kontur-total": 17547.94134030284, + "cc:pop:men": 7604.336933009913, + "cc:pop:sixty-plus": 1259.0917945731405, + "cc:pop:total": 15997.092711250772, + "cc:pop:under-five": 2431.2540250466764, + "cc:pop:women": 8392.75577824086, + "cc:pop:women-fiften-to-forty-nine": 3840.0158235623935, + "cc:pop:wp-total": 15007.4463239842, + "cc:pop:wp-total-UN": 17397.83458965354, + "cc:id": "60", + "cc:Name": "Bumpe CHC", + "cc:site": [-11.9033, 7.8894], + "user:parentName": "Bumpe Ngao", + "user:code": "OU_651", + "user:orgUnitId": "E497Rk80ivZ", + "user:level": "4", + "user:parentId": "BGGmAwx33dj" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.910499, 8.1328], + [-10.904, 8.1278], + [-10.9016, 8.1258], + [-10.8989, 8.1231], + [-10.8966, 8.1202], + [-10.894699, 8.116299], + [-10.8923, 8.112], + [-10.890999, 8.108799], + [-10.888199, 8.1028], + [-10.8835, 8.105799], + [-10.8805, 8.108399], + [-10.875, 8.114399], + [-10.871499, 8.1186], + [-10.868899, 8.1196], + [-10.8647, 8.120099], + [-10.8613, 8.120999], + [-10.8578, 8.122799], + [-10.854599, 8.1242], + [-10.851, 8.126099], + [-10.8489, 8.126799], + [-10.845599, 8.1272], + [-10.831999, 8.1273], + [-10.8281, 8.128], + [-10.8222, 8.131399], + [-10.820599, 8.1331], + [-10.8177, 8.138699], + [-10.816199, 8.145], + [-10.8127, 8.152999], + [-10.8088, 8.159799], + [-10.8069, 8.161699], + [-10.805299, 8.1642], + [-10.8032, 8.166499], + [-10.7996, 8.1692], + [-10.796, 8.175199], + [-10.7942, 8.178899], + [-10.7927, 8.180899], + [-10.790899, 8.1824], + [-10.786999, 8.1843], + [-10.7813, 8.188799], + [-10.7774, 8.1915], + [-10.7752, 8.194799], + [-10.772899, 8.1975], + [-10.770199, 8.2], + [-10.7662, 8.203], + [-10.761, 8.211199], + [-10.7593, 8.212699], + [-10.7546, 8.215499], + [-10.749899, 8.2178], + [-10.746299, 8.2206], + [-10.7422, 8.224599], + [-10.7383, 8.228799], + [-10.7362, 8.231799], + [-10.7345, 8.235599], + [-10.732399, 8.2392], + [-10.7307, 8.243799], + [-10.7337, 8.2449], + [-10.739899, 8.247599], + [-10.745099, 8.251499], + [-10.7474, 8.252899], + [-10.75, 8.2535], + [-10.754999, 8.254099], + [-10.757199, 8.254999], + [-10.7603, 8.2588], + [-10.7642, 8.262899], + [-10.7712, 8.256199], + [-10.7741, 8.254599], + [-10.7803, 8.252899], + [-10.7835, 8.250799], + [-10.789099, 8.2456], + [-10.7921, 8.243399], + [-10.800099, 8.2397], + [-10.807599, 8.2386], + [-10.810899, 8.2377], + [-10.8146, 8.235899], + [-10.822899, 8.2321], + [-10.828, 8.230899], + [-10.8333, 8.228499], + [-10.839999, 8.2268], + [-10.845299, 8.2246], + [-10.8492, 8.223999], + [-10.861399, 8.2239], + [-10.868499, 8.224199], + [-10.876999, 8.225199], + [-10.8765, 8.2195], + [-10.8766, 8.216099], + [-10.880299, 8.1965], + [-10.8826, 8.1914], + [-10.888399, 8.185099], + [-10.8899, 8.181399], + [-10.8904, 8.177099], + [-10.8904, 8.1636], + [-10.891, 8.1595], + [-10.8935, 8.154299], + [-10.8962, 8.152099], + [-10.902799, 8.148799], + [-10.9062, 8.145399], + [-10.9081, 8.141999], + [-10.910499, 8.1328] + ] + ], + "type": "Polygon" + }, + "id": 61, + "properties": { + "cc:admin:id": ["108"], + "cc:oBld:total": 1431, + "cc:pop:fifteen-to-twenty-four": 4087.5502143072927, + "cc:pop:grid3-total": 25538.16550725389, + "cc:pop:kontur-total": 21357.091592834753, + "cc:pop:men": 10357.734588664376, + "cc:pop:sixty-plus": 1311.6415652960877, + "cc:pop:total": 21339.385822853856, + "cc:pop:under-five": 3352.4650999016303, + "cc:pop:women": 10981.651234189485, + "cc:pop:women-fiften-to-forty-nine": 5499.042234269065, + "cc:pop:wp-total": 18338.6578853091, + "cc:pop:wp-total-UN": 21262.581265392546, + "cc:id": "61", + "cc:Name": "Bumpeh CHP", + "cc:site": [-10.80713, 8.22032], + "user:parentName": "Malema", + "user:code": "OU_204874", + "user:orgUnitId": "wbtk73Zwhj9", + "user:level": "4", + "user:parentId": "GE25DpSrqpB" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.629956, 7.287169], + [-11.628899, 7.285099], + [-11.627599, 7.281999], + [-11.625, 7.276699], + [-11.6241, 7.27], + [-11.623499, 7.267099], + [-11.6212, 7.2628], + [-11.619799, 7.259599], + [-11.6173, 7.2554], + [-11.615899, 7.252199], + [-11.613999, 7.248699], + [-11.612999, 7.244999], + [-11.612799, 7.241099], + [-11.612699, 7.231999], + [-11.6125, 7.229], + [-11.611899, 7.226699], + [-11.610799, 7.224599], + [-11.606753, 7.219024], + [-11.606414, 7.219611], + [-11.606185, 7.221183], + [-11.606184, 7.221184], + [-11.602452, 7.217453], + [-11.599453, 7.217453], + [-11.595546, 7.224218], + [-11.58796, 7.224219], + [-11.587917, 7.223749], + [-11.588848, 7.221419], + [-11.588303, 7.220882], + [-11.587378, 7.220362], + [-11.586108, 7.219287], + [-11.584983, 7.218692], + [-11.582577, 7.21667], + [-11.581536, 7.21667], + [-11.57763, 7.223435], + [-11.579572, 7.226801], + [-11.574103, 7.224979], + [-11.572213, 7.22825], + [-11.565916, 7.228251], + [-11.565417, 7.22875], + [-11.564583, 7.237917], + [-11.565416, 7.242083], + [-11.566249, 7.242917], + [-11.566249, 7.243749], + [-11.55625, 7.245417], + [-11.549583, 7.248749], + [-11.547916, 7.247084], + [-11.537917, 7.244584], + [-11.534903, 7.252116], + [-11.534389, 7.251847], + [-11.532856, 7.2512], + [-11.530398, 7.250467], + [-11.529892, 7.249733], + [-11.528636, 7.248563], + [-11.527648, 7.246951], + [-11.527559, 7.246709], + [-11.52392, 7.253013], + [-11.520677, 7.253014], + [-11.521019, 7.253814], + [-11.52037, 7.253959], + [-11.519764, 7.254342], + [-11.51893, 7.252197], + [-11.518714, 7.252293], + [-11.518957, 7.252506], + [-11.518652, 7.252991], + [-11.51875, 7.253191], + [-11.518447, 7.253758], + [-11.518218, 7.253871], + [-11.51807, 7.25322], + [-11.51821, 7.25262], + [-11.518192, 7.250891], + [-11.517964, 7.250213], + [-11.515814, 7.24779], + [-11.515605, 7.247378], + [-11.515468, 7.246501], + [-11.515904, 7.244748], + [-11.515138, 7.242418], + [-11.514877, 7.241748], + [-11.513949, 7.241748], + [-11.513934, 7.241774], + [-11.513939, 7.241795], + [-11.514227, 7.243695], + [-11.513908, 7.243874], + [-11.513484, 7.243551], + [-11.513375, 7.24274], + [-11.512492, 7.24427], + [-11.512554, 7.244341], + [-11.512307, 7.244591], + [-11.51207, 7.245], + [-11.511773, 7.245048], + [-11.511268, 7.245761], + [-11.510317, 7.245799], + [-11.510021, 7.246075], + [-11.509119, 7.24638], + [-11.509053, 7.246646], + [-11.508866, 7.246587], + [-11.508908, 7.246428], + [-11.507996, 7.246743], + [-11.507855, 7.247004], + [-11.507157, 7.247397], + [-11.506357, 7.247542], + [-11.50625, 7.248111], + [-11.506721, 7.248512], + [-11.50672, 7.248513], + [-11.504013, 7.248514], + [-11.503996, 7.248364], + [-11.504276, 7.248099], + [-11.50493, 7.248087], + [-11.505801, 7.247139], + [-11.506198, 7.245519], + [-11.505716, 7.24489], + [-11.506198, 7.244484], + [-11.506306, 7.244059], + [-11.50592, 7.243642], + [-11.505854, 7.242662], + [-11.505199, 7.242491], + [-11.50361, 7.241479], + [-11.502965, 7.240855], + [-11.502199, 7.2424], + [-11.499399, 7.2455], + [-11.497299, 7.2474], + [-11.494199, 7.2498], + [-11.4933, 7.250499], + [-11.486, 7.254599], + [-11.482099, 7.2563], + [-11.4778, 7.258699], + [-11.473899, 7.2606], + [-11.468, 7.264999], + [-11.463499, 7.2674], + [-11.4605, 7.2701], + [-11.459599, 7.2725], + [-11.4595, 7.275199], + [-11.4608, 7.278599], + [-11.463699, 7.281199], + [-11.4678, 7.2833], + [-11.471799, 7.286499], + [-11.473999, 7.289499], + [-11.477899, 7.296899], + [-11.4792, 7.3001], + [-11.4817, 7.3043], + [-11.483099, 7.307499], + [-11.485499, 7.311799], + [-11.487413, 7.315919], + [-11.487917, 7.315417], + [-11.500416, 7.315416], + [-11.502916, 7.312916], + [-11.502917, 7.311249], + [-11.506249, 7.308749], + [-11.507083, 7.30625], + [-11.518748, 7.30625], + [-11.518748, 7.306251], + [-11.51625, 7.309584], + [-11.51625, 7.310853], + [-11.516484, 7.311259], + [-11.524296, 7.31126], + [-11.52741, 7.305867], + [-11.534582, 7.307916], + [-11.536249, 7.316249], + [-11.53629, 7.316775], + [-11.538803, 7.31738], + [-11.540396, 7.317588], + [-11.541162, 7.317499], + [-11.544695, 7.31138], + [-11.552506, 7.311379], + [-11.552917, 7.31067], + [-11.552917, 7.306663], + [-11.559, 7.306663], + [-11.561649, 7.311249], + [-11.562082, 7.31125], + [-11.562917, 7.309583], + [-11.568997, 7.306205], + [-11.568998, 7.306206], + [-11.568799, 7.307484], + [-11.567011, 7.308203], + [-11.566254, 7.309045], + [-11.566164, 7.309497], + [-11.574583, 7.317916], + [-11.577082, 7.317916], + [-11.58375, 7.307917], + [-11.588749, 7.307917], + [-11.590417, 7.308749], + [-11.594872, 7.309386], + [-11.595499, 7.308069], + [-11.599582, 7.308749], + [-11.601845, 7.311577], + [-11.603275, 7.311578], + [-11.604116, 7.312389], + [-11.606567, 7.313853], + [-11.607968, 7.315417], + [-11.608352, 7.315613], + [-11.608551, 7.315653], + [-11.61125, 7.309583], + [-11.613749, 7.30875], + [-11.614582, 7.30875], + [-11.617082, 7.309583], + [-11.617083, 7.305417], + [-11.618749, 7.303749], + [-11.617917, 7.298749], + [-11.619583, 7.297084], + [-11.62125, 7.297083], + [-11.627916, 7.29125], + [-11.629956, 7.287169] + ] + ], + "type": "Polygon" + }, + "id": 62, + "properties": { + "cc:admin:id": ["27"], + "cc:oBld:total": 649, + "cc:pop:fifteen-to-twenty-four": 3282.201105155502, + "cc:pop:grid3-total": 17429.87096479232, + "cc:pop:kontur-total": 18129.960366269283, + "cc:pop:men": 8729.741685541541, + "cc:pop:sixty-plus": 1251.345531783676, + "cc:pop:total": 18032.467945106808, + "cc:pop:under-five": 3035.7730848268975, + "cc:pop:women": 9302.726259565261, + "cc:pop:women-fiften-to-forty-nine": 4465.381032024109, + "cc:pop:wp-total": 14363.445942883, + "cc:pop:wp-total-UN": 16656.970900792905, + "cc:id": "62", + "cc:Name": "Bumpeh Perri CHC", + "cc:site": [-11.5656, 7.2841], + "user:parentName": "Galliness Perri", + "user:code": "OU_260423", + "user:orgUnitId": "d9zRBAoM8OC", + "user:level": "4", + "user:parentId": "eNtRuQrrZeo" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.007916, 8.81375], + [-13.00176, 8.814629], + [-13.001054, 8.812932], + [-13.001667, 8.811651], + [-13.001586, 8.810839], + [-13.001297, 8.810194], + [-12.999856, 8.808905], + [-12.999542, 8.806547], + [-12.999455, 8.805961], + [-12.997129, 8.803866], + [-12.996757, 8.803046], + [-12.995454, 8.802475], + [-12.993438, 8.803499], + [-12.992606, 8.802649], + [-12.991614, 8.802753], + [-12.990972, 8.803481], + [-12.99123, 8.803673], + [-12.992167, 8.803631], + [-12.992414, 8.80394], + [-12.992489, 8.804482], + [-12.992177, 8.80511], + [-12.990895, 8.805992], + [-12.990272, 8.806066], + [-12.98969, 8.80545], + [-12.989158, 8.805484], + [-12.988949, 8.805761], + [-12.986688, 8.805007], + [-12.986687, 8.804924], + [-12.98375, 8.80375], + [-12.98125, 8.802083], + [-12.981249, 8.800416], + [-12.977082, 8.792083], + [-12.971831, 8.792082], + [-12.971905, 8.778856], + [-12.96875, 8.778855], + [-12.968749, 8.777917], + [-12.967082, 8.775417], + [-12.958694, 8.774654], + [-12.958478, 8.774864], + [-12.95625, 8.77375], + [-12.954582, 8.770417], + [-12.950417, 8.767917], + [-12.947917, 8.765417], + [-12.951249, 8.760417], + [-12.947917, 8.756249], + [-12.947917, 8.749583], + [-12.948749, 8.747082], + [-12.946249, 8.740417], + [-12.943851, 8.738618], + [-12.94265, 8.739456], + [-12.943189, 8.739504], + [-12.943726, 8.739885], + [-12.942703, 8.740915], + [-12.942397, 8.740948], + [-12.94131, 8.741007], + [-12.940302, 8.741431], + [-12.94002, 8.741283], + [-12.939568, 8.741561], + [-12.938303, 8.74226], + [-12.938056, 8.742028], + [-12.938024, 8.741972], + [-12.938024, 8.741971], + [-12.93838, 8.741793], + [-12.939899, 8.74095], + [-12.943789, 8.737956], + [-12.93875, 8.732917], + [-12.937916, 8.729583], + [-12.930864, 8.729582], + [-12.93403, 8.724098], + [-12.931662, 8.719996], + [-12.930417, 8.71875], + [-12.930416, 8.717838], + [-12.930123, 8.717332], + [-12.923616, 8.717332], + [-12.925416, 8.719583], + [-12.925417, 8.727136], + [-12.925317, 8.727144], + [-12.925351, 8.727676], + [-12.925202, 8.727784], + [-12.924854, 8.727657], + [-12.924863, 8.727243], + [-12.924181, 8.727301], + [-12.924304, 8.726193], + [-12.92387, 8.72542], + [-12.923233, 8.725415], + [-12.922873, 8.725833], + [-12.922294, 8.726078], + [-12.921259, 8.725835], + [-12.920941, 8.726135], + [-12.920742, 8.726432], + [-12.920411, 8.726725], + [-12.92009, 8.727044], + [-12.919818, 8.727234], + [-12.919689, 8.727333], + [-12.919484, 8.727759], + [-12.919394, 8.728031], + [-12.919235, 8.72838], + [-12.918921, 8.728771], + [-12.918646, 8.729016], + [-12.918372, 8.729279], + [-12.918199, 8.72936], + [-12.918106, 8.729368], + [-12.917916, 8.729337], + [-12.917869, 8.729279], + [-12.917811, 8.72906], + [-12.917717, 8.728708], + [-12.917652, 8.728489], + [-12.917519, 8.728279], + [-12.916938, 8.727705], + [-12.916291, 8.726988], + [-12.915987, 8.726703], + [-12.915677, 8.726268], + [-12.91552, 8.72613], + [-12.915303, 8.726028], + [-12.915081, 8.726023], + [-12.914782, 8.726037], + [-12.914555, 8.726143], + [-12.914207, 8.726359], + [-12.913686, 8.726692], + [-12.913491, 8.72684], + [-12.913387, 8.72698], + [-12.913337, 8.727109], + [-12.913353, 8.727328], + [-12.913386, 8.727475], + [-12.913324, 8.727719], + [-12.913145, 8.72803], + [-12.912838, 8.728259], + [-12.912547, 8.728426], + [-12.912123, 8.728522], + [-12.911851, 8.728545], + [-12.911628, 8.728466], + [-12.911357, 8.728284], + [-12.911268, 8.728099], + [-12.911244, 8.727862], + [-12.91114, 8.727566], + [-12.911024, 8.72725], + [-12.91094, 8.726886], + [-12.910811, 8.726544], + [-12.910622, 8.726168], + [-12.910534, 8.725898], + [-12.910496, 8.725679], + [-12.910403, 8.724943], + [-12.910377, 8.724575], + [-12.910335, 8.724197], + [-12.910273, 8.72381], + [-12.910266, 8.723536], + [-12.910198, 8.723406], + [-12.909984, 8.723287], + [-12.909839, 8.723222], + [-12.90955, 8.722918], + [-12.909382, 8.722731], + [-12.909086, 8.722584], + [-12.907917, 8.721868], + [-12.907459, 8.721627], + [-12.906908, 8.721489], + [-12.906493, 8.721393], + [-12.906328, 8.721398], + [-12.906206, 8.721459], + [-12.906042, 8.721597], + [-12.905615, 8.721696], + [-12.9051, 8.721756], + [-12.904525, 8.721656], + [-12.904155, 8.721594], + [-12.903084, 8.72119], + [-12.902392, 8.720625], + [-12.901939, 8.720272], + [-12.901584, 8.720015], + [-12.899697, 8.719382], + [-12.899111, 8.719208], + [-12.898489, 8.719005], + [-12.897786, 8.718845], + [-12.897354, 8.718797], + [-12.896901, 8.718786], + [-12.896587, 8.718799], + [-12.896328, 8.718814], + [-12.895894, 8.718962], + [-12.895563, 8.719071], + [-12.895383, 8.719181], + [-12.895247, 8.719275], + [-12.895037, 8.719339], + [-12.894844, 8.719366], + [-12.894643, 8.719345], + [-12.894421, 8.719265], + [-12.894266, 8.719122], + [-12.894169, 8.718916], + [-12.894106, 8.718807], + [-12.893748, 8.718446], + [-12.893525, 8.718215], + [-12.893248, 8.71805], + [-12.893011, 8.717984], + [-12.892621, 8.717866], + [-12.892272, 8.717692], + [-12.891504, 8.717238], + [-12.891109, 8.716969], + [-12.890963, 8.716813], + [-12.890903, 8.716691], + [-12.890921, 8.716525], + [-12.890921, 8.716115], + [-12.890859, 8.715612], + [-12.890749, 8.715136], + [-12.890616, 8.714846], + [-12.890506, 8.714744], + [-12.890153, 8.714501], + [-12.889997, 8.714396], + [-12.888697, 8.713446], + [-12.888331, 8.713379], + [-12.88786, 8.713398], + [-12.887558, 8.713387], + [-12.887083, 8.713329], + [-12.886715, 8.713303], + [-12.8864, 8.713275], + [-12.886006, 8.713137], + [-12.885553, 8.71294], + [-12.885032, 8.712661], + [-12.884557, 8.712364], + [-12.884169, 8.712137], + [-12.883804, 8.711906], + [-12.883489, 8.711756], + [-12.883322, 8.711735], + [-12.88308, 8.711713], + [-12.882732, 8.711635], + [-12.882489, 8.711645], + [-12.882173, 8.711663], + [-12.881894, 8.711657], + [-12.881756, 8.711597], + [-12.881609, 8.711412], + [-12.88141, 8.711075], + [-12.881351, 8.710846], + [-12.881303, 8.710641], + [-12.882597, 8.709418], + [-12.879509, 8.708978], + [-12.879111, 8.709646], + [-12.878033, 8.711605], + [-12.877117, 8.712995], + [-12.876505, 8.713591], + [-12.875934, 8.713844], + [-12.874889, 8.714008], + [-12.872688, 8.713862], + [-12.871646, 8.713819], + [-12.871036, 8.713829], + [-12.87052, 8.713994], + [-12.869613, 8.714379], + [-12.868564, 8.714929], + [-12.86749, 8.715556], + [-12.866733, 8.716016], + [-12.865723, 8.716807], + [-12.864342, 8.717979], + [-12.862862, 8.718867], + [-12.861996, 8.719142], + [-12.8614, 8.719205], + [-12.8614, 8.725699], + [-12.8619, 8.732099], + [-12.8644, 8.7379], + [-12.8662, 8.7445], + [-12.8683, 8.7491], + [-12.8689, 8.7519], + [-12.8697, 8.7581], + [-12.873599, 8.767099], + [-12.8777, 8.7743], + [-12.8808, 8.777499], + [-12.8852, 8.7799], + [-12.889299, 8.782999], + [-12.891399, 8.785999], + [-12.895599, 8.7949], + [-12.896299, 8.800099], + [-12.8962, 8.804099], + [-12.895399, 8.807799], + [-12.894, 8.810199], + [-12.892699, 8.8117], + [-12.889599, 8.814399], + [-12.8799, 8.818699], + [-12.8722, 8.8202], + [-12.8683, 8.824199], + [-12.8663, 8.8267], + [-12.865799, 8.8318], + [-12.8643, 8.837699], + [-12.8655, 8.840799], + [-12.8691, 8.844299], + [-12.8771, 8.847999], + [-12.880699, 8.848199], + [-12.8856, 8.846299], + [-12.891299, 8.8447], + [-12.895699, 8.8438], + [-12.897399, 8.8471], + [-12.8976, 8.852399], + [-12.9104, 8.848499], + [-12.9232, 8.842099], + [-12.9314, 8.8401], + [-12.9381, 8.8401], + [-12.9447, 8.8405], + [-12.955699, 8.842299], + [-12.9644, 8.8444], + [-12.975099, 8.845499], + [-12.9837, 8.845199], + [-12.995228, 8.844077], + [-12.995223, 8.842484], + [-12.995373, 8.841869], + [-12.994754, 8.8408], + [-12.993761, 8.839682], + [-12.993176, 8.838804], + [-12.994204, 8.838997], + [-12.994212, 8.838386], + [-12.995242, 8.836598], + [-12.99554, 8.836613], + [-12.99679, 8.837405], + [-12.99375, 8.832083], + [-12.99375, 8.82875], + [-12.996249, 8.827917], + [-12.997082, 8.827916], + [-12.997917, 8.827083], + [-13.002916, 8.827082], + [-13.006249, 8.824582], + [-13.006454, 8.824172], + [-13.00638, 8.824134], + [-13.006379, 8.824132], + [-13.007916, 8.822082], + [-13.007916, 8.81375] + ] + ], + "type": "Polygon" + }, + "id": 64, + "properties": { + "cc:admin:id": ["74"], + "cc:oBld:total": 213, + "cc:pop:fifteen-to-twenty-four": 1882.860153065719, + "cc:pop:grid3-total": 4458.796976024288, + "cc:pop:kontur-total": 11249.71421347401, + "cc:pop:men": 5058.550777102542, + "cc:pop:sixty-plus": 530.3079918105614, + "cc:pop:total": 10677.625785100478, + "cc:pop:under-five": 1603.7628319998553, + "cc:pop:women": 5619.075007997936, + "cc:pop:women-fiften-to-forty-nine": 2797.5050729163386, + "cc:pop:wp-total": 8825.32070069011, + "cc:pop:wp-total-UN": 10242.957436139846, + "cc:id": "64", + "cc:Name": "Bundulai MCHP", + "cc:site": [-12.9069, 8.7642], + "user:parentName": "Lokomasama", + "user:code": "OU_254994", + "user:orgUnitId": "HVQ6gJE8R24", + "user:level": "4", + "user:parentId": "fRLX08WHWpL" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.897599, 8.852399], + [-12.897399, 8.8471], + [-12.895699, 8.8438], + [-12.891299, 8.8447], + [-12.8856, 8.846299], + [-12.880699, 8.848199], + [-12.8771, 8.847999], + [-12.869099, 8.844299], + [-12.8655, 8.840799], + [-12.8643, 8.8377], + [-12.865799, 8.8318], + [-12.866299, 8.8267], + [-12.862999, 8.8276], + [-12.858499, 8.8296], + [-12.855, 8.830299], + [-12.8486, 8.830599], + [-12.8447, 8.831299], + [-12.839, 8.833599], + [-12.835299, 8.8341], + [-12.831499, 8.8342], + [-12.8199, 8.8342], + [-12.8132, 8.8339], + [-12.810499, 8.833199], + [-12.805599, 8.831], + [-12.802099, 8.8309], + [-12.7996, 8.8319], + [-12.7973, 8.835099], + [-12.796538, 8.835735], + [-12.797083, 8.837916], + [-12.799168, 8.840003], + [-12.796488, 8.844646], + [-12.788675, 8.844647], + [-12.78559, 8.849989], + [-12.787083, 8.850417], + [-12.790416, 8.854582], + [-12.790417, 8.858178], + [-12.792082, 8.858179], + [-12.792082, 8.865416], + [-12.789583, 8.867083], + [-12.788807, 8.878731], + [-12.789454, 8.878745], + [-12.791773, 8.878439], + [-12.79268, 8.878592], + [-12.793151, 8.880604], + [-12.793025, 8.882082], + [-12.797082, 8.882083], + [-12.797917, 8.885416], + [-12.798893, 8.886067], + [-12.799803, 8.885637], + [-12.800129, 8.885962], + [-12.800326, 8.885917], + [-12.801114, 8.885418], + [-12.801576, 8.885521], + [-12.80165, 8.885697], + [-12.800772, 8.886605], + [-12.802026, 8.887858], + [-12.805851, 8.884226], + [-12.806507, 8.883902], + [-12.807518, 8.883842], + [-12.808773, 8.882738], + [-12.806803, 8.880275], + [-12.809515, 8.87725], + [-12.811034, 8.876103], + [-12.812523, 8.87578], + [-12.814399, 8.875868], + [-12.815561, 8.876455], + [-12.818376, 8.880017], + [-12.818486, 8.88033], + [-12.817917, 8.883749], + [-12.816466, 8.884717], + [-12.816544, 8.88558], + [-12.816068, 8.889007], + [-12.817065, 8.891612], + [-12.818392, 8.89357], + [-12.819195, 8.89529], + [-12.81955, 8.89649], + [-12.822174, 8.899057], + [-12.822606, 8.899102], + [-12.823618, 8.900234], + [-12.823649, 8.9005], + [-12.825269, 8.902085], + [-12.825241, 8.901731], + [-12.826346, 8.901907], + [-12.826873, 8.902448], + [-12.828632, 8.905321], + [-12.830032, 8.907171], + [-12.831912, 8.909306], + [-12.832179, 8.909799], + [-12.832572, 8.910761], + [-12.832916, 8.910416], + [-12.832942, 8.910179], + [-12.832944, 8.910178], + [-12.833709, 8.911406], + [-12.833939, 8.911302], + [-12.833466, 8.910647], + [-12.833392, 8.909233], + [-12.83311, 8.908673], + [-12.833361, 8.906422], + [-12.833893, 8.907082], + [-12.838986, 8.907083], + [-12.839543, 8.908615], + [-12.839887, 8.909597], + [-12.840813, 8.912132], + [-12.847082, 8.912917], + [-12.84875, 8.91625], + [-12.852488, 8.916249], + [-12.852634, 8.915498], + [-12.852438, 8.914759], + [-12.8519, 8.914217], + [-12.851249, 8.912916], + [-12.84875, 8.905417], + [-12.850825, 8.905935], + [-12.852111, 8.904323], + [-12.854451, 8.90279], + [-12.859128, 8.900242], + [-12.860416, 8.899398], + [-12.860416, 8.893948], + [-12.863669, 8.886853], + [-12.86367, 8.886853], + [-12.866291, 8.88895], + [-12.870761, 8.882147], + [-12.873739, 8.879162], + [-12.872916, 8.878749], + [-12.869687, 8.877942], + [-12.869687, 8.877941], + [-12.870048, 8.877794], + [-12.871181, 8.876611], + [-12.871959, 8.876356], + [-12.872873, 8.87546], + [-12.874561, 8.874311], + [-12.876385, 8.872518], + [-12.877559, 8.871108], + [-12.877562, 8.870594], + [-12.877174, 8.870462], + [-12.877083, 8.870491], + [-12.877083, 8.870416], + [-12.882082, 8.867917], + [-12.883154, 8.869522], + [-12.884766, 8.867619], + [-12.888608, 8.863829], + [-12.89, 8.860699], + [-12.892999, 8.8567], + [-12.897599, 8.852399] + ] + ], + "type": "Polygon" + }, + "id": 65, + "properties": { + "cc:admin:id": ["13"], + "cc:oBld:total": 194, + "cc:pop:fifteen-to-twenty-four": 1093.415851008331, + "cc:pop:grid3-total": 4012.963334269628, + "cc:pop:kontur-total": 5804.774540888716, + "cc:pop:men": 2905.906127438258, + "cc:pop:sixty-plus": 327.01016039054474, + "cc:pop:total": 6118.9254188214145, + "cc:pop:under-five": 951.0003082525657, + "cc:pop:women": 3213.0192913831565, + "cc:pop:women-fiften-to-forty-nine": 1600.7425044066101, + "cc:pop:wp-total": 4164.715700966436, + "cc:pop:wp-total-UN": 4827.042916289399, + "cc:id": "65", + "cc:Name": "Bureh MCHP", + "cc:site": [-12.8555, 8.8958], + "user:parentName": "Bureh Kasseh Maconteh", + "user:code": "OU_255052", + "user:orgUnitId": "rpAgG9XCWhO", + "user:level": "4", + "user:parentId": "TA7NvKjsn4A" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.127917, 8.346249], + [-13.127917, 8.33875], + [-13.127082, 8.337084], + [-13.11625, 8.337083], + [-13.117082, 8.330417], + [-13.105417, 8.330416], + [-13.105417, 8.325417], + [-13.109582, 8.321249], + [-13.108749, 8.320417], + [-13.102917, 8.319584], + [-13.101735, 8.319583], + [-13.101702, 8.318905], + [-13.102187, 8.318635], + [-13.102586, 8.317991], + [-13.101368, 8.318147], + [-13.099624, 8.318118], + [-13.097429, 8.318647], + [-13.097428, 8.318645], + [-13.098203, 8.317903], + [-13.097756, 8.317245], + [-13.097747, 8.315959], + [-13.097508, 8.315638], + [-13.096063, 8.315918], + [-13.096487, 8.316755], + [-13.096426, 8.317249], + [-13.095534, 8.317354], + [-13.09426, 8.31796], + [-13.089434, 8.318959], + [-13.089433, 8.318957], + [-13.089737, 8.318596], + [-13.089856, 8.318126], + [-13.089151, 8.317635], + [-13.089955, 8.3142], + [-13.091083, 8.311851], + [-13.09031, 8.311243], + [-13.089843, 8.31108], + [-13.089535, 8.311234], + [-13.085276, 8.313146], + [-13.084911, 8.313321], + [-13.083057, 8.314289], + [-13.081445, 8.314963], + [-13.081442, 8.314959], + [-13.081024, 8.313757], + [-13.081247, 8.313076], + [-13.081007, 8.312981], + [-13.080763, 8.311871], + [-13.081406, 8.311029], + [-13.081027, 8.310198], + [-13.081507, 8.309187], + [-13.081621, 8.308403], + [-13.082092, 8.308035], + [-13.081531, 8.307377], + [-13.081478, 8.307297], + [-13.08035, 8.306275], + [-13.080298, 8.30571], + [-13.080526, 8.305095], + [-13.079803, 8.304075], + [-13.079672, 8.301962], + [-13.079538, 8.301937], + [-13.079526, 8.301867], + [-13.079301, 8.30005], + [-13.079066, 8.298079], + [-13.079195, 8.297167], + [-13.079491, 8.295783], + [-13.079593, 8.295353], + [-13.080112, 8.292835], + [-13.07974, 8.289957], + [-13.077083, 8.292084], + [-13.077082, 8.292916], + [-13.07375, 8.292084], + [-13.071249, 8.29125], + [-13.06875, 8.291249], + [-13.067513, 8.290014], + [-13.067274, 8.290108], + [-13.067527, 8.291139], + [-13.067622, 8.291249], + [-13.067083, 8.29125], + [-13.066376, 8.292308], + [-13.065582, 8.292161], + [-13.063528, 8.288802], + [-13.06185, 8.288535], + [-13.061726, 8.287118], + [-13.059917, 8.28685], + [-13.056322, 8.281681], + [-13.056165, 8.281775], + [-13.056164, 8.281774], + [-13.057916, 8.279583], + [-13.057158, 8.275791], + [-13.056998, 8.275629], + [-13.057, 8.275006], + [-13.056433, 8.272171], + [-13.056368, 8.272148], + [-13.054812, 8.272912], + [-13.051971, 8.272256], + [-13.051515, 8.270658], + [-13.049992, 8.268959], + [-13.048955, 8.268899], + [-13.048319, 8.267917], + [-13.044583, 8.267917], + [-13.044562, 8.26793], + [-13.043365, 8.265857], + [-13.035553, 8.265857], + [-13.03281, 8.270608], + [-13.031457, 8.27023], + [-13.029761, 8.269858], + [-13.028539, 8.269246], + [-13.027385, 8.268432], + [-13.025281, 8.267687], + [-13.024502, 8.267686], + [-13.024332, 8.266838], + [-13.024604, 8.265819], + [-13.024637, 8.264667], + [-13.024343, 8.263925], + [-13.023681, 8.263393], + [-13.021031, 8.261075], + [-13.019904, 8.259948], + [-13.019373, 8.258821], + [-13.017983, 8.25796], + [-13.016988, 8.257098], + [-13.014933, 8.256105], + [-13.013476, 8.256105], + [-13.012548, 8.256435], + [-13.011752, 8.256634], + [-13.011223, 8.255575], + [-13.011422, 8.254647], + [-13.012217, 8.253653], + [-13.012736, 8.253367], + [-13.013382, 8.252785], + [-13.014338, 8.2512], + [-13.015463, 8.248948], + [-13.016325, 8.247158], + [-13.017186, 8.245699], + [-13.017651, 8.243579], + [-13.0182, 8.240375], + [-13.01742, 8.239581], + [-13.016771, 8.241527], + [-13.016698, 8.242543], + [-13.016595, 8.242985], + [-13.016426, 8.244241], + [-13.016188, 8.245327], + [-13.015748, 8.246683], + [-13.014696, 8.248244], + [-13.014391, 8.248787], + [-13.014119, 8.249499], + [-13.013644, 8.250653], + [-13.013236, 8.251705], + [-13.012693, 8.252417], + [-13.011811, 8.252927], + [-13.0111, 8.253334], + [-13.010489, 8.254216], + [-13.010386, 8.254963], + [-13.010183, 8.256387], + [-13.010489, 8.257269], + [-13.011709, 8.257608], + [-13.012727, 8.2571], + [-13.01378, 8.256727], + [-13.015238, 8.256863], + [-13.016325, 8.257542], + [-13.017444, 8.25839], + [-13.018631, 8.259034], + [-13.019378, 8.260052], + [-13.019582, 8.260629], + [-13.020396, 8.261342], + [-13.02121, 8.262087], + [-13.022262, 8.262766], + [-13.022805, 8.263276], + [-13.023043, 8.263445], + [-13.023722, 8.263886], + [-13.023857, 8.264226], + [-13.023958, 8.264903], + [-13.023959, 8.26565], + [-13.023822, 8.266194], + [-13.023722, 8.26738], + [-13.024163, 8.268025], + [-13.024908, 8.268398], + [-13.026336, 8.268433], + [-13.027215, 8.268975], + [-13.028064, 8.269518], + [-13.028641, 8.269926], + [-13.029693, 8.270367], + [-13.030914, 8.270739], + [-13.03217, 8.270944], + [-13.032815, 8.271453], + [-13.033527, 8.272402], + [-13.034442, 8.272639], + [-13.035427, 8.272198], + [-13.036614, 8.271656], + [-13.037972, 8.270943], + [-13.038975, 8.27052], + [-13.039582, 8.271249], + [-13.03875, 8.274583], + [-13.037917, 8.275417], + [-13.039582, 8.285416], + [-13.037435, 8.291861], + [-13.037642, 8.292796], + [-13.036148, 8.29312], + [-13.034583, 8.296249], + [-13.035071, 8.296737], + [-13.037622, 8.29692], + [-13.037243, 8.298909], + [-13.040416, 8.302084], + [-13.040417, 8.305295], + [-13.041685, 8.304861], + [-13.045598, 8.30546], + [-13.046121, 8.306298], + [-13.046152, 8.306916], + [-13.045328, 8.308414], + [-13.04514, 8.309151], + [-13.045476, 8.309612], + [-13.045187, 8.310037], + [-13.042867, 8.310467], + [-13.042305, 8.311453], + [-13.041546, 8.311685], + [-13.040505, 8.312357], + [-13.039791, 8.312548], + [-13.040057, 8.313772], + [-13.040664, 8.31431], + [-13.040968, 8.31449], + [-13.040703, 8.315154], + [-13.039084, 8.31709], + [-13.038373, 8.319547], + [-13.037793, 8.32025], + [-13.038796, 8.320261], + [-13.03898, 8.320001], + [-13.039627, 8.319799], + [-13.039851, 8.320278], + [-13.041198, 8.320361], + [-13.042025, 8.322191], + [-13.043828, 8.323486], + [-13.044465, 8.324382], + [-13.04518, 8.323831], + [-13.045079, 8.322897], + [-13.04611, 8.323115], + [-13.04644, 8.322861], + [-13.046337, 8.322496], + [-13.046266, 8.322106], + [-13.046241, 8.32205], + [-13.045714, 8.321475], + [-13.044754, 8.320851], + [-13.044071, 8.320435], + [-13.044071, 8.320434], + [-13.044798, 8.319397], + [-13.045067, 8.319471], + [-13.045466, 8.31851], + [-13.046222, 8.318795], + [-13.046623, 8.318926], + [-13.046798, 8.318335], + [-13.046605, 8.317929], + [-13.04663, 8.317486], + [-13.048827, 8.317182], + [-13.049225, 8.31748], + [-13.049611, 8.317755], + [-13.049631, 8.317847], + [-13.049676, 8.318419], + [-13.04965, 8.318569], + [-13.049855, 8.318968], + [-13.05033, 8.319463], + [-13.050456, 8.320243], + [-13.049968, 8.320514], + [-13.049274, 8.32097], + [-13.048956, 8.320943], + [-13.048874, 8.322194], + [-13.0491, 8.322257], + [-13.04982, 8.32243], + [-13.050132, 8.322319], + [-13.050886, 8.323277], + [-13.05094, 8.323307], + [-13.051577, 8.325557], + [-13.052481, 8.325593], + [-13.052557, 8.325644], + [-13.052717, 8.326388], + [-13.05271, 8.326908], + [-13.053539, 8.326932], + [-13.053864, 8.32754], + [-13.054425, 8.327484], + [-13.054898, 8.328028], + [-13.055027, 8.328534], + [-13.056384, 8.328138], + [-13.056374, 8.328075], + [-13.057938, 8.327671], + [-13.059497, 8.327246], + [-13.059625, 8.327276], + [-13.059996, 8.327178], + [-13.061031, 8.326913], + [-13.061624, 8.326767], + [-13.062732, 8.326475], + [-13.064415, 8.326174], + [-13.064907, 8.326223], + [-13.065847, 8.326426], + [-13.067177, 8.326846], + [-13.068003, 8.327264], + [-13.068422, 8.327639], + [-13.068391, 8.327675], + [-13.068184, 8.328033], + [-13.067045, 8.328371], + [-13.066457, 8.328678], + [-13.06598, 8.329215], + [-13.066628, 8.329318], + [-13.06714, 8.329727], + [-13.067608, 8.329738], + [-13.067609, 8.32974], + [-13.067178, 8.330572], + [-13.065427, 8.333675], + [-13.065636, 8.333694], + [-13.066951, 8.334036], + [-13.06625, 8.335306], + [-13.066249, 8.337916], + [-13.065318, 8.337917], + [-13.065382, 8.338493], + [-13.065233, 8.338966], + [-13.06593, 8.339199], + [-13.065117, 8.340538], + [-13.065687, 8.341538], + [-13.066667, 8.341899], + [-13.06776, 8.342542], + [-13.067296, 8.343853], + [-13.068523, 8.345784], + [-13.067775, 8.347083], + [-13.067916, 8.347084], + [-13.067486, 8.350524], + [-13.067488, 8.350522], + [-13.067965, 8.350423], + [-13.068446, 8.350563], + [-13.068666, 8.350955], + [-13.068653, 8.351349], + [-13.068329, 8.352177], + [-13.067221, 8.352649], + [-13.067193, 8.352871], + [-13.068562, 8.353015], + [-13.068997, 8.353388], + [-13.069104, 8.353875], + [-13.068359, 8.355359], + [-13.068206, 8.356767], + [-13.068656, 8.357545], + [-13.069877, 8.357275], + [-13.070248, 8.357602], + [-13.070785, 8.357619], + [-13.070926, 8.357266], + [-13.07083, 8.356908], + [-13.070034, 8.356109], + [-13.070197, 8.354599], + [-13.072015, 8.354566], + [-13.07394, 8.355536], + [-13.075728, 8.35693], + [-13.076399, 8.356217], + [-13.076936, 8.355913], + [-13.076557, 8.354829], + [-13.076216, 8.354548], + [-13.075024, 8.354499], + [-13.074664, 8.354324], + [-13.074904, 8.353735], + [-13.075327, 8.353478], + [-13.075676, 8.352971], + [-13.075969, 8.352296], + [-13.076539, 8.352047], + [-13.076996, 8.352189], + [-13.077857, 8.352004], + [-13.077905, 8.35197], + [-13.077972, 8.352068], + [-13.079208, 8.353828], + [-13.079666, 8.35342], + [-13.079948, 8.354202], + [-13.082636, 8.352971], + [-13.082956, 8.352859], + [-13.083292, 8.353251], + [-13.083156, 8.353683], + [-13.083953, 8.354142], + [-13.084799, 8.352298], + [-13.084628, 8.352144], + [-13.084452, 8.351963], + [-13.08489, 8.351617], + [-13.085156, 8.3518], + [-13.085268, 8.351866], + [-13.085778, 8.352111], + [-13.085857, 8.351959], + [-13.08666, 8.352179], + [-13.087046, 8.351112], + [-13.087274, 8.351225], + [-13.087858, 8.352229], + [-13.088302, 8.352066], + [-13.088906, 8.352496], + [-13.089201, 8.353553], + [-13.088978, 8.354031], + [-13.08897, 8.354801], + [-13.095464, 8.354801], + [-13.099371, 8.348036], + [-13.103016, 8.348036], + [-13.105649, 8.349816], + [-13.108461, 8.352627], + [-13.112015, 8.352627], + [-13.113212, 8.350557], + [-13.122916, 8.351249], + [-13.127917, 8.346249] + ] + ], + "type": "Polygon" + }, + "id": 66, + "properties": { + "cc:admin:id": ["112"], + "cc:oBld:total": 13847, + "cc:pop:fifteen-to-twenty-four": 9918.310019007165, + "cc:pop:grid3-total": 77330.16692996194, + "cc:pop:kontur-total": 41798.319166441055, + "cc:pop:men": 20109.393457392118, + "cc:pop:sixty-plus": 3258.7168080083247, + "cc:pop:total": 41907.82621435114, + "cc:pop:under-five": 4581.1078530435525, + "cc:pop:women": 21798.432756959035, + "cc:pop:women-fiften-to-forty-nine": 11672.595210383062, + "cc:pop:wp-total": 40223.52833165977, + "cc:pop:wp-total-UN": 46663.691416747555, + "cc:id": "66", + "cc:Name": "Campbell Town CHP", + "cc:site": [-13.053, 8.3098], + "user:parentName": "Rural Western Area", + "user:code": "OU_278399", + "user:orgUnitId": "h9q3qixffZT", + "user:level": "4", + "user:parentId": "qtr8GGlm4gg" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.245099, 8.680099], + [-13.244299, 8.678799], + [-13.244, 8.6763], + [-13.244599, 8.675099], + [-13.2443, 8.6726], + [-13.2432, 8.670699], + [-13.243199, 8.6674], + [-13.2426, 8.6665], + [-13.242599, 8.665545], + [-13.23625, 8.666249], + [-13.235416, 8.665417], + [-13.230417, 8.66625], + [-13.22875, 8.66875], + [-13.230416, 8.671249], + [-13.230416, 8.672917], + [-13.225417, 8.682082], + [-13.22125, 8.682082], + [-13.21696, 8.680245], + [-13.216942, 8.680034], + [-13.215988, 8.680824], + [-13.215011, 8.68322], + [-13.214866, 8.684025], + [-13.21375, 8.684583], + [-13.212917, 8.685416], + [-13.204986, 8.6874], + [-13.205427, 8.688412], + [-13.206132, 8.689861], + [-13.207091, 8.691196], + [-13.205128, 8.694596], + [-13.202097, 8.694596], + [-13.201249, 8.69375], + [-13.199583, 8.693749], + [-13.198749, 8.692917], + [-13.197917, 8.692917], + [-13.19328, 8.696229], + [-13.193596, 8.696632], + [-13.192083, 8.700417], + [-13.193749, 8.711249], + [-13.180417, 8.70875], + [-13.17375, 8.71125], + [-13.17375, 8.720416], + [-13.174582, 8.72125], + [-13.17245, 8.729782], + [-13.170061, 8.729302], + [-13.168989, 8.729265], + [-13.165469, 8.728097], + [-13.166365, 8.730605], + [-13.166478, 8.731203], + [-13.166446, 8.731739], + [-13.160417, 8.73375], + [-13.157917, 8.736249], + [-13.157692, 8.736698], + [-13.160199, 8.7385], + [-13.163099, 8.742899], + [-13.1659, 8.7454], + [-13.169799, 8.746799], + [-13.176899, 8.7439], + [-13.180799, 8.740399], + [-13.183199, 8.7357], + [-13.1839, 8.7288], + [-13.186099, 8.7244], + [-13.194999, 8.7194], + [-13.198299, 8.717899], + [-13.201399, 8.7144], + [-13.203599, 8.7105], + [-13.206199, 8.7072], + [-13.209099, 8.705], + [-13.2126, 8.704099], + [-13.2191, 8.703199], + [-13.2257, 8.7006], + [-13.234299, 8.700899], + [-13.2349, 8.7001], + [-13.236, 8.701], + [-13.237399, 8.702899], + [-13.237899, 8.7049], + [-13.2376, 8.709299], + [-13.2368, 8.712099], + [-13.240399, 8.716299], + [-13.241799, 8.719], + [-13.241799, 8.720099], + [-13.240999, 8.721], + [-13.2393, 8.725999], + [-13.2393, 8.728499], + [-13.240399, 8.7312], + [-13.2404, 8.7329], + [-13.241, 8.735699], + [-13.2415, 8.736299], + [-13.242899, 8.735999], + [-13.243499, 8.7321], + [-13.2443, 8.729899], + [-13.244899, 8.724], + [-13.2443, 8.723499], + [-13.243999, 8.717899], + [-13.2429, 8.7121], + [-13.2418, 8.708799], + [-13.2418, 8.7065], + [-13.241299, 8.704599], + [-13.241, 8.7001], + [-13.2415, 8.698499], + [-13.2415, 8.6954], + [-13.2413, 8.695399], + [-13.2413, 8.6924], + [-13.2418, 8.6915], + [-13.243199, 8.690999], + [-13.2424, 8.687399], + [-13.2426, 8.6863], + [-13.243699, 8.685399], + [-13.244, 8.681], + [-13.245099, 8.680099] + ] + ], + "type": "Polygon" + }, + "id": 67, + "properties": { + "cc:admin:id": ["44"], + "cc:oBld:total": 703, + "cc:pop:fifteen-to-twenty-four": 891.2718101210364, + "cc:pop:grid3-total": 4683.005819540481, + "cc:pop:kontur-total": 4099.023570746892, + "cc:pop:men": 2376.9056480343665, + "cc:pop:sixty-plus": 287.0172560397254, + "cc:pop:total": 4957.946693972489, + "cc:pop:under-five": 811.3900421293486, + "cc:pop:women": 2581.0410459381205, + "cc:pop:women-fiften-to-forty-nine": 1232.0339440021182, + "cc:pop:wp-total": 4074.635421343617, + "cc:pop:wp-total-UN": 4726.056363957181, + "cc:id": "67", + "cc:Name": "Conakry Dee CHC", + "cc:site": [-13.2379, 8.6976], + "user:parentName": "Kaffu Bullom", + "user:code": "OU_255009", + "user:orgUnitId": "U4FzUXMvbI8", + "user:level": "4", + "user:parentId": "vn9KJsLyP5f" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.243609, 8.613033], + [-11.240655, 8.607917], + [-11.23625, 8.607916], + [-11.235417, 8.602916], + [-11.235416, 8.597084], + [-11.229583, 8.59625], + [-11.227916, 8.59375], + [-11.227519, 8.59375], + [-11.227427, 8.594252], + [-11.225417, 8.59375], + [-11.220416, 8.595416], + [-11.214583, 8.590417], + [-11.214092, 8.590514], + [-11.213621, 8.590514], + [-11.209715, 8.583749], + [-11.213621, 8.576984], + [-11.213197, 8.57625], + [-11.20375, 8.57625], + [-11.202339, 8.576955], + [-11.200541, 8.573844], + [-11.195824, 8.573843], + [-11.19375, 8.57125], + [-11.193761, 8.571094], + [-11.191511, 8.567199], + [-11.18798, 8.567199], + [-11.1885, 8.5698], + [-11.1889, 8.5759], + [-11.189199, 8.596999], + [-11.1891, 8.602199], + [-11.188499, 8.6062], + [-11.186299, 8.6121], + [-11.185699, 8.6162], + [-11.1854, 8.622999], + [-11.1848, 8.625699], + [-11.180999, 8.6334], + [-11.178499, 8.6361], + [-11.1737, 8.639], + [-11.1716, 8.641399], + [-11.168, 8.648999], + [-11.174399, 8.657399], + [-11.1764, 8.660499], + [-11.1791, 8.662499], + [-11.1826, 8.6633], + [-11.189499, 8.663499], + [-11.193099, 8.664199], + [-11.1977, 8.6661], + [-11.203599, 8.667599], + [-11.2069, 8.6693], + [-11.209899, 8.672199], + [-11.210636, 8.673048], + [-11.212082, 8.672082], + [-11.21125, 8.66375], + [-11.215417, 8.66375], + [-11.220417, 8.668749], + [-11.224342, 8.668096], + [-11.224387, 8.667704], + [-11.224367, 8.667626], + [-11.227082, 8.667083], + [-11.227082, 8.659584], + [-11.226249, 8.657084], + [-11.224583, 8.655416], + [-11.225416, 8.652917], + [-11.233749, 8.652916], + [-11.231249, 8.644584], + [-11.229583, 8.643749], + [-11.229583, 8.637917], + [-11.232082, 8.636249], + [-11.229583, 8.619584], + [-11.233036, 8.617857], + [-11.233038, 8.617842], + [-11.241195, 8.617215], + [-11.243609, 8.613033] + ] + ], + "type": "Polygon" + }, + "id": 68, + "properties": { + "cc:admin:id": ["101"], + "cc:oBld:total": 430, + "cc:pop:fifteen-to-twenty-four": 813.4892096711882, + "cc:pop:grid3-total": 3316.5031813500577, + "cc:pop:kontur-total": 4026.430562544336, + "cc:pop:men": 2313.336574814148, + "cc:pop:sixty-plus": 242.673568352609, + "cc:pop:total": 4233.562237481276, + "cc:pop:under-five": 640.4800576065705, + "cc:pop:women": 1920.225662667126, + "cc:pop:women-fiften-to-forty-nine": 1001.2715125408934, + "cc:pop:wp-total": 3156.360529128593, + "cc:pop:wp-total-UN": 3660.7645681349345, + "cc:id": "68", + "cc:Name": "Condama MCHP", + "cc:site": [-11.2034, 8.6319], + "user:parentName": "Nimiyama", + "user:code": "OU_233336", + "user:orgUnitId": "yTMrs5kClCv", + "user:level": "4", + "user:parentId": "qgQ49DH9a0v" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.013267, 8.371897], + [-13.012931, 8.369855], + [-13.010529, 8.370534], + [-13.009928, 8.368964], + [-13.010914, 8.367817], + [-13.00837, 8.367537], + [-13.007916, 8.367083], + [-13.007082, 8.364584], + [-13.005416, 8.363749], + [-13.004583, 8.359583], + [-13.005054, 8.358172], + [-13.006216, 8.357733], + [-13.006616, 8.357742], + [-13.006723, 8.357346], + [-13.006925, 8.356181], + [-13.007263, 8.355929], + [-13.00682, 8.355654], + [-13.004918, 8.35519], + [-13.004646, 8.354867], + [-13.004562, 8.354776], + [-13.004188, 8.355278], + [-13.00399, 8.355316], + [-13.002346, 8.353887], + [-13.001564, 8.35293], + [-13.001931, 8.35127], + [-13.002092, 8.350908], + [-13.002089, 8.350599], + [-13.001468, 8.350909], + [-13.001467, 8.350907], + [-13.0015, 8.350778], + [-13.000416, 8.350417], + [-12.99625, 8.350416], + [-12.998749, 8.34625], + [-13.000086, 8.346695], + [-12.999694, 8.346194], + [-12.999826, 8.344414], + [-12.999858, 8.343127], + [-12.997916, 8.344583], + [-12.994583, 8.34375], + [-12.992917, 8.346249], + [-12.990902, 8.346921], + [-12.990927, 8.34562], + [-12.989883, 8.34334], + [-12.989, 8.341842], + [-12.988943, 8.341725], + [-12.992161, 8.33988], + [-12.993236, 8.339285], + [-12.99315, 8.33768], + [-12.992793, 8.33786], + [-12.991248, 8.338573], + [-12.990733, 8.338825], + [-12.990462, 8.338962], + [-12.989833, 8.339249], + [-12.989583, 8.338749], + [-12.989583, 8.336249], + [-12.992916, 8.334583], + [-12.992082, 8.332084], + [-12.991667, 8.332221], + [-12.991666, 8.33222], + [-12.991657, 8.33213], + [-12.9914, 8.332101], + [-12.989849, 8.332457], + [-12.988243, 8.331653], + [-12.986299, 8.331496], + [-12.98581, 8.330691], + [-12.985433, 8.32885], + [-12.984853, 8.328536], + [-12.984521, 8.327866], + [-12.982947, 8.327813], + [-12.982672, 8.326447], + [-12.980845, 8.323788], + [-12.980294, 8.323437], + [-12.979824, 8.323534], + [-12.977518, 8.326093], + [-12.976983, 8.325776], + [-12.976902, 8.325708], + [-12.976913, 8.325687], + [-12.97666, 8.325367], + [-12.976082, 8.325349], + [-12.975319, 8.324951], + [-12.974011, 8.325057], + [-12.973828, 8.326054], + [-12.972978, 8.32806], + [-12.973105, 8.328425], + [-12.97285, 8.329133], + [-12.970417, 8.327917], + [-12.970211, 8.328122], + [-12.968921, 8.328584], + [-12.96625, 8.327917], + [-12.965773, 8.330063], + [-12.96568, 8.33007], + [-12.96561, 8.330199], + [-12.965624, 8.330545], + [-12.965657, 8.330581], + [-12.964582, 8.335416], + [-12.957083, 8.33375], + [-12.956249, 8.338749], + [-12.95125, 8.342916], + [-12.949583, 8.342084], + [-12.948582, 8.343583], + [-12.946781, 8.342244], + [-12.944877, 8.339828], + [-12.944583, 8.340416], + [-12.944583, 8.347083], + [-12.945417, 8.347084], + [-12.94625, 8.350416], + [-12.947916, 8.35125], + [-12.947917, 8.353749], + [-12.94375, 8.35625], + [-12.94375, 8.357084], + [-12.944583, 8.358749], + [-12.94625, 8.360416], + [-12.951249, 8.360417], + [-12.953549, 8.361183], + [-12.950167, 8.362754], + [-12.949104, 8.363053], + [-12.94658, 8.363263], + [-12.94625, 8.363284], + [-12.94625, 8.367083], + [-12.947916, 8.367916], + [-12.950417, 8.36625], + [-12.955416, 8.367084], + [-12.955416, 8.367917], + [-12.952917, 8.37125], + [-12.952917, 8.372819], + [-12.9565, 8.371399], + [-12.958163, 8.370737], + [-12.958617, 8.370358], + [-12.959419, 8.370504], + [-12.958803, 8.37463], + [-12.958805, 8.374631], + [-12.981787, 8.370821], + [-13.005684, 8.378017], + [-13.013267, 8.371897] + ] + ], + "type": "Polygon" + }, + "id": 70, + "properties": { + "cc:admin:id": ["112"], + "cc:oBld:total": 441, + "cc:pop:fifteen-to-twenty-four": 2568.513988430648, + "cc:pop:grid3-total": 4171.801195751456, + "cc:pop:kontur-total": 10833.25057994768, + "cc:pop:men": 5208.980849576035, + "cc:pop:sixty-plus": 855.1425205500439, + "cc:pop:total": 10947.161228744586, + "cc:pop:under-five": 1171.5030730915191, + "cc:pop:women": 5738.180379168557, + "cc:pop:women-fiften-to-forty-nine": 3070.633608943411, + "cc:pop:wp-total": 8033.676397076714, + "cc:pop:wp-total-UN": 9301.847134181528, + "cc:id": "70", + "cc:Name": "Crossing MCHP", + "cc:site": [-12.9709, 8.3578], + "user:parentName": "Rural Western Area", + "user:code": "OU_278374", + "user:orgUnitId": "U2QkKSeyL5r", + "user:level": "4", + "user:parentId": "qtr8GGlm4gg" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.789399, 8.151099], + [-11.789299, 8.1437], + [-11.7866, 8.1409], + [-11.7843, 8.1378], + [-11.7805, 8.1299], + [-11.7794, 8.1224], + [-11.7784, 8.1191], + [-11.7765, 8.1155], + [-11.775099, 8.112399], + [-11.772599, 8.107499], + [-11.7722, 8.1037], + [-11.772799, 8.1009], + [-11.776299, 8.0937], + [-11.778599, 8.0894], + [-11.779299, 8.085899], + [-11.7792, 8.0823], + [-11.7785, 8.0789], + [-11.7763, 8.0744], + [-11.775399, 8.0711], + [-11.7547, 8.071099], + [-11.7496, 8.071], + [-11.746599, 8.070499], + [-11.740699, 8.068199], + [-11.736859, 8.067543], + [-11.736599, 8.067499], + [-11.7279, 8.0673], + [-11.7237, 8.0666], + [-11.7156, 8.063], + [-11.7103, 8.0605], + [-11.705299, 8.059199], + [-11.700099, 8.0572], + [-11.6968, 8.0572], + [-11.6924, 8.058999], + [-11.6857, 8.060799], + [-11.6813, 8.062799], + [-11.6779, 8.0637], + [-11.6785, 8.0662], + [-11.681199, 8.072799], + [-11.681899, 8.077899], + [-11.681999, 8.085699], + [-11.6819, 8.089499], + [-11.6812, 8.093099], + [-11.679, 8.097499], + [-11.677599, 8.1007], + [-11.674899, 8.1042], + [-11.6693, 8.110199], + [-11.667799, 8.1124], + [-11.663899, 8.1207], + [-11.6625, 8.126599], + [-11.661, 8.1301], + [-11.6607, 8.133399], + [-11.6622, 8.1365], + [-11.665699, 8.141199], + [-11.667999, 8.146899], + [-11.669299, 8.148699], + [-11.6726, 8.1511], + [-11.676, 8.1541], + [-11.6785, 8.1569], + [-11.681, 8.160699], + [-11.686699, 8.1577], + [-11.6897, 8.156899], + [-11.6948, 8.1566], + [-11.723499, 8.156799], + [-11.729799, 8.1567], + [-11.733699, 8.1561], + [-11.739199, 8.1539], + [-11.7431, 8.153099], + [-11.7484, 8.153], + [-11.7524, 8.1537], + [-11.7579, 8.1559], + [-11.7617, 8.156599], + [-11.765599, 8.1565], + [-11.7685, 8.155899], + [-11.7729, 8.153999], + [-11.7769, 8.153199], + [-11.783099, 8.1528], + [-11.786099, 8.1523], + [-11.789399, 8.151099] + ] + ], + "type": "Polygon" + }, + "id": 71, + "properties": { + "cc:admin:id": ["120"], + "cc:oBld:total": 0, + "cc:pop:fifteen-to-twenty-four": 1730.209235987774, + "cc:pop:grid3-total": 9421.717347929869, + "cc:pop:kontur-total": 9819.53183361367, + "cc:pop:men": 4605.958789728421, + "cc:pop:sixty-plus": 729.4825294209783, + "cc:pop:total": 9821.195920702903, + "cc:pop:under-five": 1606.543055617037, + "cc:pop:women": 5215.237130974484, + "cc:pop:women-fiften-to-forty-nine": 2455.651230046455, + "cc:pop:wp-total": 8503.82253699255, + "cc:pop:wp-total-UN": 9850.080216582059, + "cc:id": "71", + "cc:Name": "Damballa CHC", + "cc:site": [-11.7036, 8.1207], + "user:parentName": "Selenga", + "user:code": "OU_1095", + "user:orgUnitId": "wByqtWCCuDJ", + "user:level": "4", + "user:parentId": "KctpIIucige" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.753607, 7.456249], + [-11.753599, 7.455799], + [-11.7523, 7.4517], + [-11.7506, 7.4489], + [-11.749199, 7.445799], + [-11.7472, 7.4423], + [-11.7463, 7.4397], + [-11.746219, 7.438631], + [-11.741894, 7.43602], + [-11.740791, 7.435644], + [-11.739912, 7.435073], + [-11.739302, 7.433794], + [-11.738611, 7.433129], + [-11.737393, 7.43135], + [-11.736984, 7.430417], + [-11.727082, 7.430416], + [-11.717917, 7.425417], + [-11.717916, 7.423749], + [-11.709583, 7.422084], + [-11.707916, 7.423749], + [-11.701395, 7.42375], + [-11.70102, 7.425355], + [-11.699664, 7.431634], + [-11.698519, 7.436312], + [-11.697476, 7.43624], + [-11.696201, 7.436527], + [-11.692875, 7.437772], + [-11.689896, 7.438415], + [-11.68906, 7.438365], + [-11.686757, 7.437171], + [-11.685763, 7.435911], + [-11.684736, 7.435137], + [-11.683696, 7.435037], + [-11.682501, 7.43524], + [-11.680561, 7.436623], + [-11.67972, 7.436979], + [-11.678372, 7.437514], + [-11.675823, 7.438014], + [-11.673889, 7.43792], + [-11.670811, 7.436535], + [-11.66537, 7.435891], + [-11.665098, 7.435735], + [-11.662082, 7.438749], + [-11.65375, 7.442084], + [-11.653749, 7.444862], + [-11.648959, 7.444863], + [-11.645053, 7.451629], + [-11.648959, 7.458394], + [-11.652082, 7.458395], + [-11.652083, 7.461249], + [-11.657081, 7.466248], + [-11.65708, 7.46625], + [-11.655417, 7.46625], + [-11.657916, 7.478749], + [-11.647083, 7.480417], + [-11.647917, 7.485416], + [-11.64875, 7.487084], + [-11.649582, 7.489583], + [-11.650607, 7.491119], + [-11.649479, 7.491237], + [-11.64682, 7.491048], + [-11.645245, 7.491449], + [-11.644583, 7.495416], + [-11.654582, 7.498749], + [-11.654583, 7.501249], + [-11.657917, 7.505416], + [-11.659582, 7.505416], + [-11.66125, 7.504584], + [-11.662082, 7.504584], + [-11.670416, 7.506249], + [-11.66875, 7.49625], + [-11.672916, 7.496249], + [-11.675417, 7.49375], + [-11.68248, 7.49061], + [-11.682481, 7.490612], + [-11.682207, 7.491303], + [-11.681108, 7.494441], + [-11.686249, 7.499583], + [-11.688749, 7.494584], + [-11.68875, 7.492917], + [-11.690416, 7.492083], + [-11.690417, 7.490417], + [-11.702082, 7.494583], + [-11.703749, 7.493749], + [-11.70375, 7.487084], + [-11.712916, 7.487083], + [-11.717082, 7.48375], + [-11.719128, 7.484261], + [-11.719089, 7.484919], + [-11.719582, 7.490279], + [-11.719583, 7.484584], + [-11.722916, 7.482917], + [-11.730416, 7.485416], + [-11.73375, 7.489583], + [-11.736249, 7.487083], + [-11.73625, 7.485417], + [-11.747916, 7.485416], + [-11.749582, 7.484584], + [-11.749766, 7.484583], + [-11.7502, 7.480499], + [-11.750299, 7.4728], + [-11.750799, 7.4691], + [-11.752999, 7.4638], + [-11.753699, 7.4612], + [-11.753607, 7.456249] + ] + ], + "type": "Polygon" + }, + "id": 72, + "properties": { + "cc:admin:id": ["66"], + "cc:oBld:total": 22, + "cc:pop:fifteen-to-twenty-four": 1138.2857423549956, + "cc:pop:grid3-total": 4740.551959199017, + "cc:pop:kontur-total": 6097.550979241288, + "cc:pop:men": 3123.8835681111673, + "cc:pop:sixty-plus": 481.18931847200827, + "cc:pop:total": 6421.265283290389, + "cc:pop:under-five": 1074.9153077702756, + "cc:pop:women": 3297.381715179222, + "cc:pop:women-fiften-to-forty-nine": 1585.3165568650822, + "cc:pop:wp-total": 7320.770497076838, + "cc:pop:wp-total-UN": 8492.188157678595, + "cc:id": "72", + "cc:Name": "Dandabu CHP", + "cc:site": [-11.685, 7.4774], + "user:parentName": "Kpanga Kabonde", + "user:code": "OU_260405", + "user:orgUnitId": "RpRJUDOPtt7", + "user:level": "4", + "user:parentId": "QwMiPiME3bA" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.852306, 7.97317], + [-10.852019, 7.97204], + [-10.849844, 7.972539], + [-10.849082, 7.97228], + [-10.842936, 7.972838], + [-10.842727, 7.971483], + [-10.840229, 7.971814], + [-10.838707, 7.972298], + [-10.840432, 7.97462], + [-10.840431, 7.974622], + [-10.835211, 7.975768], + [-10.834882, 7.974256], + [-10.832917, 7.974583], + [-10.83125, 7.974584], + [-10.82875, 7.975416], + [-10.827083, 7.976249], + [-10.825416, 7.97375], + [-10.820925, 7.974391], + [-10.821018, 7.973184], + [-10.820739, 7.971813], + [-10.819265, 7.971182], + [-10.818836, 7.97169], + [-10.818785, 7.972264], + [-10.817917, 7.972917], + [-10.817916, 7.973115], + [-10.817067, 7.973559], + [-10.815949, 7.974233], + [-10.815706, 7.974241], + [-10.816737, 7.975131], + [-10.817183, 7.975233], + [-10.817817, 7.975662], + [-10.816249, 7.979584], + [-10.813749, 7.980417], + [-10.805417, 7.980416], + [-10.802083, 7.976249], + [-10.802783, 7.967847], + [-10.795913, 7.967847], + [-10.792006, 7.974612], + [-10.788669, 7.974613], + [-10.788899, 7.976], + [-10.788499, 7.980799], + [-10.786099, 7.9866], + [-10.785499, 7.9907], + [-10.7853, 7.998399], + [-10.7849, 8.002599], + [-10.7835, 8.0073], + [-10.7837, 8.0095], + [-10.787, 8.0164], + [-10.789699, 8.019599], + [-10.7927, 8.0218], + [-10.803499, 8.025799], + [-10.806699, 8.024], + [-10.812399, 8.0189], + [-10.815199, 8.0167], + [-10.819799, 8.0143], + [-10.822599, 8.0121], + [-10.827299, 8.0077], + [-10.829999, 8.0056], + [-10.835, 8.002899], + [-10.838899, 7.9997], + [-10.842099, 7.9965], + [-10.8442, 7.993699], + [-10.848199, 7.9853], + [-10.8495, 7.979399], + [-10.8504, 7.977099], + [-10.852306, 7.97317] + ] + ], + "type": "Polygon" + }, + "id": 73, + "properties": { + "cc:admin:id": ["41"], + "cc:oBld:total": 2086, + "cc:pop:fifteen-to-twenty-four": 5549.580009659175, + "cc:pop:grid3-total": 21664.103998791776, + "cc:pop:kontur-total": 28164.940493223843, + "cc:pop:men": 14145.290314761713, + "cc:pop:sixty-plus": 1680.2002284443113, + "cc:pop:total": 28812.02542001752, + "cc:pop:under-five": 4488.538548615901, + "cc:pop:women": 14666.735105255813, + "cc:pop:women-fiften-to-forty-nine": 7348.561687948269, + "cc:pop:wp-total": 21093.75801774261, + "cc:pop:wp-total-UN": 24466.467007195904, + "cc:id": "73", + "cc:Name": "Daru CHC", + "cc:site": [-10.8443, 7.9901], + "user:parentName": "Jawi", + "user:code": "OU_204865", + "user:orgUnitId": "m5BX6CvJ6Ex", + "user:level": "4", + "user:parentId": "KSdZwrU7Hh6" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.302599, 7.7478], + [-11.300599, 7.7453], + [-11.298499, 7.744], + [-11.2927, 7.7426], + [-11.288099, 7.740599], + [-11.2812, 7.7391], + [-11.2746, 7.7379], + [-11.2726, 7.743099], + [-11.270599, 7.7476], + [-11.270099, 7.7513], + [-11.2698, 7.758999], + [-11.2693, 7.761399], + [-11.267799, 7.7642], + [-11.2646, 7.767499], + [-11.262299, 7.769], + [-11.2576, 7.771499], + [-11.2521, 7.775699], + [-11.248661, 7.777548], + [-11.248712, 7.777637], + [-11.244807, 7.784402], + [-11.236994, 7.784403], + [-11.234003, 7.789583], + [-11.227917, 7.789584], + [-11.219583, 7.794584], + [-11.219583, 7.802083], + [-11.220673, 7.803174], + [-11.217212, 7.80917], + [-11.220365, 7.814633], + [-11.21875, 7.81625], + [-11.221359, 7.819512], + [-11.220354, 7.821101], + [-11.220048, 7.821973], + [-11.220138, 7.822647], + [-11.219828, 7.823905], + [-11.21981, 7.825485], + [-11.21949, 7.826281], + [-11.219244, 7.827703], + [-11.218981, 7.828005], + [-11.218981, 7.828009], + [-11.218969, 7.828013], + [-11.218683, 7.828178], + [-11.218478, 7.828282], + [-11.217669, 7.828558], + [-11.217596, 7.829205], + [-11.217558, 7.829417], + [-11.217395, 7.830871], + [-11.217304, 7.831407], + [-11.217211, 7.831511], + [-11.21614, 7.831684], + [-11.215808, 7.831244], + [-11.215497, 7.831805], + [-11.215378, 7.832218], + [-11.21571, 7.833193], + [-11.215997, 7.833664], + [-11.21638, 7.833863], + [-11.216453, 7.833887], + [-11.216277, 7.834455], + [-11.216179, 7.834732], + [-11.21619, 7.834757], + [-11.214322, 7.837994], + [-11.214305, 7.837995], + [-11.214403, 7.838197], + [-11.214857, 7.838218], + [-11.215107, 7.83848], + [-11.21491, 7.839146], + [-11.214843, 7.839352], + [-11.214733, 7.839801], + [-11.214503, 7.840654], + [-11.214501, 7.840655], + [-11.214383, 7.840587], + [-11.213778, 7.841192], + [-11.214406, 7.841535], + [-11.214409, 7.841837], + [-11.215392, 7.841857], + [-11.216007, 7.842353], + [-11.216025, 7.842741], + [-11.216028, 7.84313], + [-11.216004, 7.843361], + [-11.215957, 7.844112], + [-11.215834, 7.844097], + [-11.214807, 7.84377], + [-11.214436, 7.843723], + [-11.214425, 7.843959], + [-11.214398, 7.84444], + [-11.214401, 7.844808], + [-11.214406, 7.845208], + [-11.214411, 7.845325], + [-11.214408, 7.845548], + [-11.214387, 7.845861], + [-11.214365, 7.846084], + [-11.214334, 7.846511], + [-11.213426, 7.84651], + [-11.21304, 7.846321], + [-11.21256, 7.845737], + [-11.212258, 7.846064], + [-11.21222, 7.846355], + [-11.212539, 7.846699], + [-11.213113, 7.847279], + [-11.213209, 7.847627], + [-11.213862, 7.848417], + [-11.213664, 7.848892], + [-11.213427, 7.849113], + [-11.213055, 7.849644], + [-11.21304, 7.849923], + [-11.213108, 7.850545], + [-11.21292, 7.850598], + [-11.211017, 7.851045], + [-11.211241, 7.851399], + [-11.211241, 7.8514], + [-11.209106, 7.852702], + [-11.207588, 7.853676], + [-11.206893, 7.854063], + [-11.206719, 7.854181], + [-11.206599, 7.854102], + [-11.205698, 7.855044], + [-11.20482, 7.857386], + [-11.205163, 7.857527], + [-11.205599, 7.857347], + [-11.20607, 7.857628], + [-11.205653, 7.858495], + [-11.205187, 7.85938], + [-11.204647, 7.860367], + [-11.204938, 7.862067], + [-11.205063, 7.86305], + [-11.204624, 7.864062], + [-11.204567, 7.865791], + [-11.203995, 7.865749], + [-11.203598, 7.866734], + [-11.203224, 7.867287], + [-11.202557, 7.867759], + [-11.202882, 7.86868], + [-11.202444, 7.868806], + [-11.20221, 7.868853], + [-11.202242, 7.869039], + [-11.202072, 7.869066], + [-11.202497, 7.869965], + [-11.20261, 7.870269], + [-11.202268, 7.87046], + [-11.201458, 7.870831], + [-11.201456, 7.870894], + [-11.201421, 7.871238], + [-11.200885, 7.871757], + [-11.201604, 7.87219], + [-11.201811, 7.872315], + [-11.201812, 7.872316], + [-11.201492, 7.872691], + [-11.200836, 7.872897], + [-11.200369, 7.873292], + [-11.199595, 7.874099], + [-11.20003, 7.874442], + [-11.200491, 7.874744], + [-11.199816, 7.876102], + [-11.199277, 7.876589], + [-11.199537, 7.87687], + [-11.200399, 7.877613], + [-11.200675, 7.877628], + [-11.200811, 7.877323], + [-11.201262, 7.877616], + [-11.201496, 7.877765], + [-11.203801, 7.878998], + [-11.203873, 7.87896], + [-11.20307, 7.880352], + [-11.206976, 7.887117], + [-11.210515, 7.887118], + [-11.210417, 7.887916], + [-11.211249, 7.887917], + [-11.21125, 7.896249], + [-11.214583, 7.900416], + [-11.22519, 7.901174], + [-11.2259, 7.899699], + [-11.2271, 7.896499], + [-11.229499, 7.8913], + [-11.230499, 7.8871], + [-11.231399, 7.8847], + [-11.233799, 7.881299], + [-11.2345, 7.877999], + [-11.238699, 7.8694], + [-11.2418, 7.865799], + [-11.244399, 7.8639], + [-11.248199, 7.862], + [-11.251, 7.860099], + [-11.2528, 7.858399], + [-11.255199, 7.8549], + [-11.2566, 7.848999], + [-11.258099, 7.8461], + [-11.261699, 7.8415], + [-11.2626, 7.839599], + [-11.2631, 7.837399], + [-11.263599, 7.8321], + [-11.264099, 7.8296], + [-11.2663, 7.824299], + [-11.2667, 7.820699], + [-11.2669, 7.814399], + [-11.2673, 7.811799], + [-11.268399, 7.8093], + [-11.271, 7.806099], + [-11.281299, 7.7959], + [-11.2839, 7.792799], + [-11.2878, 7.784899], + [-11.2886, 7.782499], + [-11.2897, 7.777399], + [-11.291899, 7.773], + [-11.2932, 7.769799], + [-11.295599, 7.7656], + [-11.2969, 7.762399], + [-11.2992, 7.758099], + [-11.3005, 7.754899], + [-11.302599, 7.7478] + ] + ], + "type": "Polygon" + }, + "id": 75, + "properties": { + "cc:admin:id": ["105"], + "cc:oBld:total": 2418, + "cc:pop:fifteen-to-twenty-four": 3783.7946339169966, + "cc:pop:grid3-total": 9299.792316831963, + "cc:pop:kontur-total": 17088.43398285533, + "cc:pop:men": 9800.501857516543, + "cc:pop:sixty-plus": 1164.0139789238171, + "cc:pop:total": 19639.793676739184, + "cc:pop:under-five": 3091.4609745535067, + "cc:pop:women": 9839.291819222643, + "cc:pop:women-fiften-to-forty-nine": 4932.565631996686, + "cc:pop:wp-total": 13891.54419423176, + "cc:pop:wp-total-UN": 16101.021787267282, + "cc:id": "75", + "cc:Name": "Degbuama MCHP", + "cc:site": [-11.2063, 7.8631], + "user:parentName": "Nongowa", + "user:code": "OU_222722", + "user:orgUnitId": "C1tAqIpKB9k", + "user:level": "4", + "user:parentId": "KIUCimTXf8Q" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.300416, 7.952084], + [-11.297083, 7.951249], + [-11.29625, 7.949583], + [-11.296249, 7.948369], + [-11.2872, 7.9482], + [-11.2836, 7.9475], + [-11.2791, 7.9453], + [-11.275999, 7.943999], + [-11.272299, 7.942099], + [-11.269899, 7.941299], + [-11.2647, 7.940099], + [-11.2577, 7.935999], + [-11.254099, 7.930199], + [-11.253299, 7.927799], + [-11.252299, 7.923499], + [-11.25, 7.9182], + [-11.249499, 7.915599], + [-11.2487, 7.9094], + [-11.248099, 7.907299], + [-11.2441, 7.8994], + [-11.24, 7.8944], + [-11.2386, 7.8921], + [-11.2372, 7.8871], + [-11.2362, 7.8847], + [-11.2338, 7.8813], + [-11.231399, 7.8847], + [-11.230499, 7.8871], + [-11.229499, 7.8913], + [-11.2271, 7.896499], + [-11.225899, 7.8997], + [-11.2234, 7.904899], + [-11.221999, 7.9104], + [-11.220599, 7.9131], + [-11.216899, 7.9178], + [-11.214799, 7.922], + [-11.2124, 7.926299], + [-11.2103, 7.931399], + [-11.2099, 7.933699], + [-11.210899, 7.937499], + [-11.210899, 7.940799], + [-11.2077, 7.948099], + [-11.2051, 7.953299], + [-11.203999, 7.9584], + [-11.2015, 7.964399], + [-11.2001, 7.970299], + [-11.197899, 7.9756], + [-11.1973, 7.9803], + [-11.1973, 7.985199], + [-11.197499, 7.989099], + [-11.198299, 7.992699], + [-11.200599, 7.997999], + [-11.2019, 8.0031], + [-11.204599, 8.008199], + [-11.2059, 8.0114], + [-11.207799, 8.014999], + [-11.2088, 8.0195], + [-11.212199, 8.026899], + [-11.2129, 8.0303], + [-11.2129, 8.033099], + [-11.212807, 8.033749], + [-11.219112, 8.03375], + [-11.221337, 8.037601], + [-11.222314, 8.037601], + [-11.222083, 8.034583], + [-11.225417, 8.030417], + [-11.227082, 8.029584], + [-11.237916, 8.030416], + [-11.23875, 8.027083], + [-11.242916, 8.02375], + [-11.244673, 8.023896], + [-11.242179, 8.019576], + [-11.24218, 8.019575], + [-11.251249, 8.01875], + [-11.258749, 8.01875], + [-11.26049, 8.017358], + [-11.260491, 8.01736], + [-11.260477, 8.01738], + [-11.260614, 8.018043], + [-11.262347, 8.017596], + [-11.262371, 8.017304], + [-11.264305, 8.017303], + [-11.267348, 8.012032], + [-11.267916, 8.00125], + [-11.264583, 8.001249], + [-11.264583, 7.992637], + [-11.264883, 7.99251], + [-11.264996, 7.99211], + [-11.266152, 7.992063], + [-11.267481, 7.992789], + [-11.267782, 7.993294], + [-11.268326, 7.993884], + [-11.268298, 7.993606], + [-11.267782, 7.99324], + [-11.268439, 7.99211], + [-11.267685, 7.990986], + [-11.26828, 7.990774], + [-11.268345, 7.990593], + [-11.27125, 7.992916], + [-11.275972, 7.990892], + [-11.275523, 7.990583], + [-11.274411, 7.989448], + [-11.275118, 7.989325], + [-11.275661, 7.988912], + [-11.276313, 7.988812], + [-11.277399, 7.987999], + [-11.277917, 7.985417], + [-11.281752, 7.985964], + [-11.282151, 7.985855], + [-11.283906, 7.985778], + [-11.284582, 7.983749], + [-11.284582, 7.98125], + [-11.282916, 7.979584], + [-11.277084, 7.977084], + [-11.277084, 7.977083], + [-11.285416, 7.972084], + [-11.286249, 7.972083], + [-11.28625, 7.96875], + [-11.287916, 7.967083], + [-11.287917, 7.962917], + [-11.292916, 7.960417], + [-11.29375, 7.959584], + [-11.297082, 7.959583], + [-11.300416, 7.952084] + ] + ], + "type": "Polygon" + }, + "id": 76, + "properties": { + "cc:admin:id": ["50"], + "cc:oBld:total": 675, + "cc:pop:fifteen-to-twenty-four": 1135.2545469467448, + "cc:pop:grid3-total": 3696.4589343674465, + "cc:pop:kontur-total": 5679.347960227097, + "cc:pop:men": 3284.468099489009, + "cc:pop:sixty-plus": 361.08484898224816, + "cc:pop:total": 5991.35758371597, + "cc:pop:under-five": 910.1500895164639, + "cc:pop:women": 2706.889484226961, + "cc:pop:women-fiften-to-forty-nine": 1369.3590043770243, + "cc:pop:wp-total": 6230.917244251237, + "cc:pop:wp-total-UN": 7221.092586746997, + "cc:id": "76", + "cc:Name": "Deima MCHP", + "cc:site": [-11.2595, 7.9779], + "user:parentName": "Kandu Lepiema", + "user:code": "OU_222729", + "user:orgUnitId": "oIgBLlEo6eH", + "user:level": "4", + "user:parentId": "K1r3uF6eZ8n" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [-12.957599, 7.570999], + [-12.957099, 7.5699], + [-12.955399, 7.569599], + [-12.952599, 7.5685], + [-12.948499, 7.569], + [-12.9396, 7.569], + [-12.937899, 7.5685], + [-12.9357, 7.568499], + [-12.935099, 7.5679], + [-12.9301, 7.567899], + [-12.927599, 7.5665], + [-12.9232, 7.566299], + [-12.920699, 7.5654], + [-12.9182, 7.565399], + [-12.917599, 7.5649], + [-12.913999, 7.564599], + [-12.9118, 7.564], + [-12.910099, 7.563199], + [-12.9068, 7.562599], + [-12.905399, 7.5618], + [-12.9024, 7.561499], + [-12.900699, 7.5607], + [-12.8996, 7.560699], + [-12.897099, 7.559599], + [-12.894599, 7.558999], + [-12.891, 7.558799], + [-12.888499, 7.5574], + [-12.8868, 7.557399], + [-12.883799, 7.5563], + [-12.8815, 7.556299], + [-12.881199, 7.5557], + [-12.8774, 7.5551], + [-12.876499, 7.554599], + [-12.8729, 7.554], + [-12.872399, 7.553499], + [-12.8699, 7.5529], + [-12.868199, 7.552899], + [-12.8643, 7.5521], + [-12.862599, 7.5513], + [-12.8607, 7.551299], + [-12.859299, 7.5504], + [-12.8574, 7.550399], + [-12.855399, 7.5496], + [-12.8535, 7.549599], + [-12.851499, 7.548799], + [-12.8488, 7.548499], + [-12.847099, 7.547599], + [-12.8443, 7.5468], + [-12.8412, 7.546499], + [-12.840099, 7.5457], + [-12.8379, 7.5451], + [-12.8351, 7.544899], + [-12.832599, 7.5437], + [-12.8313, 7.543699], + [-12.8288, 7.5429], + [-12.828499, 7.5424], + [-12.826799, 7.542399], + [-12.825099, 7.5413], + [-12.8207, 7.540999], + [-12.819299, 7.5399], + [-12.8171, 7.539599], + [-12.816299, 7.539], + [-12.814, 7.5388], + [-12.813799, 7.5382], + [-12.8104, 7.538199], + [-12.807899, 7.537099], + [-12.8046, 7.536499], + [-12.802599, 7.5354], + [-12.8007, 7.535399], + [-12.799599, 7.534899], + [-12.7957, 7.5338], + [-12.7932, 7.533499], + [-12.791799, 7.5326], + [-12.7879, 7.5318], + [-12.786199, 7.531], + [-12.785099, 7.530999], + [-12.783499, 7.5301], + [-12.7818, 7.530099], + [-12.779299, 7.5288], + [-12.7776, 7.528799], + [-12.777099, 7.5282], + [-12.7732, 7.5276], + [-12.772399, 7.5271], + [-12.7701, 7.526799], + [-12.768199, 7.5257], + [-12.766, 7.525399], + [-12.765099, 7.5246], + [-12.764661, 7.5246], + [-12.765416, 7.532916], + [-12.762083, 7.540417], + [-12.762082, 7.543748], + [-12.759583, 7.542917], + [-12.758749, 7.548749], + [-12.752917, 7.55125], + [-12.752916, 7.554584], + [-12.749583, 7.560416], + [-12.749582, 7.56125], + [-12.748107, 7.562725], + [-12.747808, 7.562663], + [-12.745417, 7.56625], + [-12.747082, 7.569583], + [-12.744583, 7.572917], + [-12.744582, 7.577083], + [-12.74125, 7.577917], + [-12.73625, 7.582917], + [-12.738749, 7.58875], + [-12.737083, 7.59125], + [-12.737082, 7.597084], + [-12.73375, 7.602916], + [-12.742082, 7.607083], + [-12.742917, 7.608749], + [-12.744533, 7.609153], + [-12.744458, 7.610137], + [-12.744973, 7.61014], + [-12.745097, 7.61117], + [-12.744958, 7.613231], + [-12.746173, 7.612739], + [-12.746426, 7.613246], + [-12.745895, 7.613598], + [-12.746119, 7.614114], + [-12.745416, 7.614584], + [-12.740342, 7.614921], + [-12.740044, 7.614622], + [-12.739528, 7.614619], + [-12.739014, 7.614231], + [-12.73886, 7.61502], + [-12.732917, 7.615416], + [-12.73125, 7.615417], + [-12.729582, 7.622083], + [-12.727083, 7.625416], + [-12.725029, 7.625417], + [-12.7249, 7.6257], + [-12.7249, 7.627399], + [-12.7254, 7.628499], + [-12.7288, 7.628499], + [-12.729899, 7.628199], + [-12.7313, 7.6271], + [-12.733999, 7.626799], + [-12.736, 7.6257], + [-12.739, 7.625699], + [-12.740699, 7.625399], + [-12.7421, 7.6246], + [-12.745999, 7.6246], + [-12.747399, 7.6243], + [-12.7493, 7.6251], + [-12.7518, 7.6254], + [-12.760699, 7.6254], + [-12.7626, 7.6251], + [-12.7643, 7.6254], + [-12.7674, 7.626799], + [-12.768999, 7.6268], + [-12.7712, 7.627599], + [-12.774599, 7.6276], + [-12.7746, 7.6279], + [-12.783499, 7.6279], + [-12.7835, 7.628199], + [-12.787599, 7.628499], + [-12.7882, 7.629], + [-12.793699, 7.629899], + [-12.797399, 7.6299], + [-12.7982, 7.629299], + [-12.801799, 7.628199], + [-12.804299, 7.6265], + [-12.805399, 7.626499], + [-12.807599, 7.624], + [-12.809299, 7.622599], + [-12.809299, 7.6207], + [-12.808799, 7.6196], + [-12.8079, 7.6196], + [-12.806, 7.623499], + [-12.8049, 7.624299], + [-12.801799, 7.623999], + [-12.800099, 7.622099], + [-12.7999, 7.620399], + [-12.799899, 7.615399], + [-12.798799, 7.614], + [-12.795999, 7.613999], + [-12.7943, 7.612099], + [-12.794, 7.6088], + [-12.794599, 7.607899], + [-12.794899, 7.6054], + [-12.7921, 7.6051], + [-12.789899, 7.606299], + [-12.7879, 7.606499], + [-12.7879, 7.605699], + [-12.7896, 7.605399], + [-12.7918, 7.6043], + [-12.794599, 7.6043], + [-12.7965, 7.605399], + [-12.797899, 7.605099], + [-12.798799, 7.6043], + [-12.799599, 7.605099], + [-12.799598, 7.6051], + [-12.798199, 7.605999], + [-12.7965, 7.6063], + [-12.796499, 7.608799], + [-12.796, 7.6096], + [-12.7963, 7.611499], + [-12.7985, 7.6115], + [-12.801499, 7.612099], + [-12.8018, 7.612599], + [-12.803499, 7.6129], + [-12.8038, 7.618199], + [-12.805999, 7.617899], + [-12.8085, 7.6165], + [-12.813799, 7.617399], + [-12.814, 7.617899], + [-12.815699, 7.617099], + [-12.8154, 7.6135], + [-12.816299, 7.611499], + [-12.8163, 7.6104], + [-12.8154, 7.609899], + [-12.8151, 7.6085], + [-12.8168, 7.6071], + [-12.818498, 7.6071], + [-12.818498, 7.607101], + [-12.818454, 7.607151], + [-12.8168, 7.609], + [-12.817599, 7.6101], + [-12.8176, 7.612099], + [-12.8171, 7.613799], + [-12.818199, 7.6154], + [-12.818199, 7.617599], + [-12.817599, 7.6185], + [-12.8157, 7.619], + [-12.8154, 7.621499], + [-12.817099, 7.622099], + [-12.8176, 7.622899], + [-12.819, 7.6232], + [-12.8199, 7.6243], + [-12.822599, 7.624599], + [-12.8246, 7.623199], + [-12.827599, 7.622099], + [-12.829, 7.6204], + [-12.832399, 7.620699], + [-12.8326, 7.620099], + [-12.836499, 7.619899], + [-12.8376, 7.619], + [-12.839599, 7.618999], + [-12.840999, 7.6185], + [-12.8418, 7.6168], + [-12.843999, 7.6151], + [-12.8454, 7.6163], + [-12.8476, 7.617399], + [-12.851299, 7.617399], + [-12.8515, 7.616799], + [-12.853199, 7.6165], + [-12.856499, 7.616799], + [-12.8571, 7.618499], + [-12.8582, 7.618999], + [-12.8601, 7.618999], + [-12.861799, 7.618199], + [-12.8621, 7.6168], + [-12.863999, 7.6165], + [-12.867399, 7.6171], + [-12.8693, 7.618499], + [-12.871499, 7.618499], + [-12.8735, 7.6171], + [-12.876499, 7.616799], + [-12.8779, 7.615999], + [-12.880099, 7.615399], + [-12.8812, 7.614], + [-12.882599, 7.6132], + [-12.885399, 7.613199], + [-12.888199, 7.611499], + [-12.889, 7.6101], + [-12.890999, 7.610399], + [-12.892599, 7.6093], + [-12.894599, 7.609299], + [-12.895699, 7.6088], + [-12.8965, 7.6068], + [-12.897599, 7.606499], + [-12.8987, 7.6051], + [-12.902099, 7.605399], + [-12.9024, 7.605999], + [-12.905699, 7.606], + [-12.908499, 7.604899], + [-12.9088, 7.603699], + [-12.910099, 7.602599], + [-12.910699, 7.6015], + [-12.912899, 7.6015], + [-12.914599, 7.600999], + [-12.916299, 7.598699], + [-12.9165, 7.597599], + [-12.919299, 7.5943], + [-12.921799, 7.592099], + [-12.921499, 7.591], + [-12.918799, 7.590399], + [-12.916499, 7.5876], + [-12.915099, 7.586799], + [-12.914599, 7.5857], + [-12.912899, 7.5849], + [-12.909899, 7.585099], + [-12.908499, 7.5821], + [-12.9029, 7.581799], + [-12.901, 7.5807], + [-12.898999, 7.578999], + [-12.8974, 7.576199], + [-12.897099, 7.574], + [-12.896199, 7.5724], + [-12.8926, 7.571], + [-12.890399, 7.570699], + [-12.8893, 7.5701], + [-12.889299, 7.5693], + [-12.887899, 7.5682], + [-12.8871, 7.5682], + [-12.8862, 7.5693], + [-12.8862, 7.570399], + [-12.887399, 7.5707], + [-12.887399, 7.5715], + [-12.8849, 7.5721], + [-12.883499, 7.573199], + [-12.8807, 7.5732], + [-12.879299, 7.572099], + [-12.877899, 7.5688], + [-12.876, 7.5688], + [-12.8746, 7.569299], + [-12.873799, 7.570699], + [-12.8724, 7.571799], + [-12.870699, 7.571799], + [-12.8696, 7.570699], + [-12.8693, 7.5665], + [-12.870099, 7.5665], + [-12.8701, 7.569299], + [-12.8707, 7.570999], + [-12.872399, 7.570999], + [-12.8726, 7.569299], + [-12.874, 7.5674], + [-12.876499, 7.5671], + [-12.878199, 7.5676], + [-12.879, 7.569599], + [-12.880099, 7.5701], + [-12.881199, 7.571499], + [-12.8812, 7.5724], + [-12.883499, 7.572399], + [-12.884835, 7.571231], + [-12.885099, 7.570999], + [-12.8851, 7.5696], + [-12.885999, 7.5676], + [-12.8876, 7.5668], + [-12.889599, 7.567899], + [-12.8904, 7.569299], + [-12.893499, 7.5693], + [-12.896499, 7.5704], + [-12.898499, 7.5721], + [-12.9004, 7.575699], + [-12.9024, 7.5762], + [-12.905099, 7.5762], + [-12.907599, 7.577599], + [-12.909899, 7.578499], + [-12.9146, 7.5793], + [-12.921, 7.579299], + [-12.922599, 7.578799], + [-12.9229, 7.577899], + [-12.9251, 7.5762], + [-12.9265, 7.5757], + [-12.9282, 7.576], + [-12.937899, 7.576], + [-12.940099, 7.5762], + [-12.9429, 7.578199], + [-12.9446, 7.5782], + [-12.9454, 7.579299], + [-12.947899, 7.579599], + [-12.949, 7.578199], + [-12.950999, 7.577899], + [-12.9515, 7.5774], + [-12.953499, 7.577399], + [-12.955099, 7.575699], + [-12.9554, 7.5746], + [-12.957399, 7.574299], + [-12.957599, 7.570999] + ] + ], + [ + [ + [-12.805999, 7.6207], + [-12.8038, 7.621], + [-12.804, 7.622399], + [-12.805399, 7.622399], + [-12.805999, 7.6207] + ] + ], + [ + [ + [-12.916499, 7.6179], + [-12.9149, 7.6176], + [-12.9132, 7.6185], + [-12.9129, 7.618999], + [-12.915699, 7.618999], + [-12.916499, 7.6179] + ] + ], + [ + [ + [-12.929599, 7.586], + [-12.928799, 7.5849], + [-12.927399, 7.584], + [-12.9257, 7.584], + [-12.9235, 7.5849], + [-12.922599, 7.586], + [-12.9213, 7.5863], + [-12.9207, 7.587599], + [-12.9218, 7.5876], + [-12.9229, 7.589899], + [-12.924299, 7.590699], + [-12.9249, 7.592099], + [-12.925999, 7.591799], + [-12.927599, 7.590399], + [-12.929599, 7.586] + ] + ], + [ + [ + [-12.958699, 7.6293], + [-12.9576, 7.629], + [-12.957399, 7.6301], + [-12.955699, 7.631499], + [-12.9532, 7.6315], + [-12.9535, 7.632899], + [-12.955099, 7.632899], + [-12.957099, 7.632099], + [-12.958699, 7.6293] + ] + ], + [ + [ + [-12.992599, 7.5854], + [-12.990699, 7.5835], + [-12.9899, 7.5835], + [-12.989599, 7.584599], + [-12.9871, 7.5832], + [-12.987099, 7.582599], + [-12.9829, 7.5782], + [-12.9807, 7.5776], + [-12.980099, 7.576799], + [-12.978799, 7.5762], + [-12.9771, 7.5762], + [-12.976499, 7.576799], + [-12.974, 7.5768], + [-12.9732, 7.5762], + [-12.975099, 7.574], + [-12.976799, 7.573499], + [-12.978199, 7.5724], + [-12.979599, 7.573199], + [-12.9801, 7.5721], + [-12.982399, 7.572399], + [-12.9824, 7.5693], + [-12.983199, 7.5676], + [-12.9815, 7.5671], + [-12.9804, 7.5688], + [-12.980399, 7.5699], + [-12.978799, 7.571], + [-12.9751, 7.5724], + [-12.974299, 7.5735], + [-12.972399, 7.5743], + [-12.9707, 7.575699], + [-12.9688, 7.577899], + [-12.9671, 7.5785], + [-12.9663, 7.5796], + [-12.967399, 7.5815], + [-12.9676, 7.586499], + [-12.969, 7.587599], + [-12.970699, 7.5876], + [-12.9729, 7.5885], + [-12.9757, 7.588499], + [-12.9807, 7.5876], + [-12.9815, 7.5879], + [-12.9843, 7.590099], + [-12.9854, 7.5901], + [-12.986499, 7.5913], + [-12.9868, 7.592399], + [-12.987599, 7.592599], + [-12.989, 7.592599], + [-12.989899, 7.590999], + [-12.9899, 7.5899], + [-12.991499, 7.588199], + [-12.992599, 7.5854] + ] + ], + [ + [ + [-12.9815, 7.592099], + [-12.981499, 7.591], + [-12.9804, 7.5904], + [-12.9796, 7.5913], + [-12.9796, 7.593199], + [-12.9815, 7.592099] + ] + ], + [ + [ + [-13.004899, 7.6335], + [-13.0032, 7.6329], + [-13.003199, 7.6324], + [-13.0007, 7.6324], + [-13.000399, 7.6329], + [-12.9918, 7.6329], + [-12.9913, 7.633999], + [-12.992099, 7.6346], + [-12.992099, 7.635999], + [-12.991, 7.6365], + [-12.9907, 7.638499], + [-12.9915, 7.639599], + [-12.994299, 7.640999], + [-12.9938, 7.6415], + [-12.9943, 7.642899], + [-12.9965, 7.641499], + [-12.999599, 7.6379], + [-13.002099, 7.637599], + [-13.003199, 7.6365], + [-13.003999, 7.636499], + [-13.004899, 7.6335] + ] + ], + [ + [ + [-12.996499, 7.5882], + [-12.9943, 7.5874], + [-12.9943, 7.589299], + [-12.9949, 7.5896], + [-12.9951, 7.591299], + [-12.996299, 7.590999], + [-12.996499, 7.5882] + ] + ], + [ + [ + [-13.019599, 7.601299], + [-13.0185, 7.598699], + [-13.018499, 7.5971], + [-13.017099, 7.5929], + [-13.014599, 7.5915], + [-13.0126, 7.591499], + [-13.010999, 7.5907], + [-13.0071, 7.5901], + [-13.005999, 7.591], + [-13.004899, 7.592599], + [-13.0024, 7.5932], + [-13.0021, 7.593799], + [-13.0032, 7.594599], + [-13.005999, 7.593499], + [-13.0063, 7.5926], + [-13.008199, 7.592399], + [-13.0088, 7.5913], + [-13.0101, 7.592099], + [-13.0118, 7.5921], + [-13.012099, 7.5929], + [-13.011299, 7.593999], + [-13.008999, 7.5935], + [-13.0074, 7.5938], + [-13.006799, 7.596499], + [-13.0057, 7.5979], + [-13.005699, 7.598999], + [-13.0049, 7.5993], + [-13.0049, 7.602099], + [-13.0065, 7.603199], + [-13.010999, 7.6032], + [-13.011, 7.603499], + [-13.013499, 7.602899], + [-13.014, 7.6015], + [-13.015399, 7.600699], + [-13.014, 7.5982], + [-13.014, 7.596], + [-13.016499, 7.5965], + [-13.0168, 7.597899], + [-13.017599, 7.5985], + [-13.0171, 7.600699], + [-13.0185, 7.601499], + [-13.019599, 7.601299] + ] + ], + [ + [ + [-13.066299, 7.6329], + [-13.0651, 7.631799], + [-13.064599, 7.6288], + [-13.0629, 7.6271], + [-13.0587, 7.626], + [-13.057899, 7.6251], + [-13.056, 7.625099], + [-13.0529, 7.624], + [-13.0507, 7.6215], + [-13.050999, 7.6196], + [-13.048499, 7.6179], + [-13.0463, 7.6179], + [-13.045399, 7.618799], + [-13.0421, 7.6188], + [-13.0404, 7.6193], + [-13.0393, 7.622099], + [-13.0407, 7.6218], + [-13.042099, 7.6224], + [-13.043499, 7.625399], + [-13.044599, 7.627099], + [-13.046299, 7.628499], + [-13.0468, 7.630099], + [-13.0474, 7.6301], + [-13.047899, 7.6321], + [-13.047399, 7.639299], + [-13.046, 7.6407], + [-13.045999, 7.6415], + [-13.0449, 7.6424], + [-13.044899, 7.643499], + [-13.0438, 7.6438], + [-13.043499, 7.645099], + [-13.0426, 7.6454], + [-13.042599, 7.6468], + [-13.0407, 7.6482], + [-13.040399, 7.6493], + [-13.038499, 7.6501], + [-13.036, 7.6518], + [-13.035699, 7.6524], + [-13.033499, 7.6532], + [-13.0307, 7.655099], + [-13.0268, 7.6554], + [-13.025099, 7.656199], + [-13.022899, 7.6562], + [-13.0218, 7.6568], + [-13.0221, 7.658199], + [-13.023199, 7.6588], + [-13.0254, 7.661299], + [-13.027099, 7.660999], + [-13.0282, 7.6596], + [-13.031799, 7.659899], + [-13.033499, 7.6582], + [-13.034899, 7.657899], + [-13.038499, 7.6557], + [-13.040999, 7.6535], + [-13.0426, 7.653499], + [-13.043799, 7.652399], + [-13.0451, 7.649299], + [-13.046, 7.648499], + [-13.048999, 7.646499], + [-13.049899, 7.6449], + [-13.051499, 7.643999], + [-13.052599, 7.6424], + [-13.053999, 7.642399], + [-13.0549, 7.6413], + [-13.0568, 7.6404], + [-13.059599, 7.6407], + [-13.0621, 7.642399], + [-13.064299, 7.642399], + [-13.065099, 7.641499], + [-13.0651, 7.6388], + [-13.066299, 7.635999], + [-13.066299, 7.6329] + ] + ], + [ + [ + [-13.071499, 7.6713], + [-13.068499, 7.6696], + [-13.0657, 7.6696], + [-13.063499, 7.6707], + [-13.061499, 7.672399], + [-13.057899, 7.6729], + [-13.0571, 7.6735], + [-13.0568, 7.675699], + [-13.0587, 7.676799], + [-13.062899, 7.6765], + [-13.064, 7.676], + [-13.066799, 7.675699], + [-13.068499, 7.674899], + [-13.069, 7.673999], + [-13.070999, 7.672899], + [-13.071499, 7.6713] + ] + ] + ], + "type": "MultiPolygon" + }, + "id": 77, + "properties": { + "cc:admin:id": ["18"], + "cc:oBld:total": 171, + "cc:pop:fifteen-to-twenty-four": 2028.5293504371175, + "cc:pop:grid3-total": 13094.715108907705, + "cc:pop:kontur-total": 10190.547796405639, + "cc:pop:men": 5389.157078909178, + "cc:pop:sixty-plus": 828.4985107963832, + "cc:pop:total": 11236.571186764619, + "cc:pop:under-five": 1851.893247707523, + "cc:pop:women": 5847.414107855448, + "cc:pop:women-fiften-to-forty-nine": 2860.0315057383673, + "cc:pop:wp-total": 9157.224727745703, + "cc:pop:wp-total-UN": 10621.334671580398, + "cc:id": "77", + "cc:Name": "Delken MCHP", + "cc:site": [-12.7954, 7.57179], + "user:parentName": "Sittia", + "user:code": "OU_197399", + "user:orgUnitId": "sSgOnY1Xqd9", + "user:level": "4", + "user:parentId": "g8DdBm7EmUt" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.256521, 8.217999], + [-11.24375, 8.218749], + [-11.240417, 8.215417], + [-11.241249, 8.20375], + [-11.242023, 8.203104], + [-11.238495, 8.196991], + [-11.2424, 8.190226], + [-11.238755, 8.183912], + [-11.237916, 8.184584], + [-11.232916, 8.185416], + [-11.222083, 8.184584], + [-11.21875, 8.180417], + [-11.217917, 8.172916], + [-11.224582, 8.16625], + [-11.219905, 8.161573], + [-11.217405, 8.161902], + [-11.216637, 8.16232], + [-11.216041, 8.163075], + [-11.215566, 8.163285], + [-11.214372, 8.163184], + [-11.213115, 8.162617], + [-11.212721, 8.161699], + [-11.212471, 8.161464], + [-11.212082, 8.161508], + [-11.211397, 8.162015], + [-11.210417, 8.161957], + [-11.210416, 8.155417], + [-11.20875, 8.152916], + [-11.208749, 8.149584], + [-11.204583, 8.147916], + [-11.202917, 8.146249], + [-11.202082, 8.137917], + [-11.200417, 8.136249], + [-11.200416, 8.13125], + [-11.194583, 8.125416], + [-11.195417, 8.121249], + [-11.20125, 8.116249], + [-11.201249, 8.114584], + [-11.197667, 8.112433], + [-11.197687, 8.112385], + [-11.197082, 8.112083], + [-11.196249, 8.10375], + [-11.19375, 8.102083], + [-11.192916, 8.09875], + [-11.192082, 8.098749], + [-11.187082, 8.094584], + [-11.180417, 8.097083], + [-11.175417, 8.095416], + [-11.178749, 8.089584], + [-11.172917, 8.085416], + [-11.172917, 8.084583], + [-11.173749, 8.07875], + [-11.172083, 8.07625], + [-11.178749, 8.072916], + [-11.177917, 8.06625], + [-11.17125, 8.065416], + [-11.171249, 8.063749], + [-11.169582, 8.049584], + [-11.16125, 8.049584], + [-11.157083, 8.052917], + [-11.156761, 8.057087], + [-11.149654, 8.057087], + [-11.147645, 8.053609], + [-11.145399, 8.055699], + [-11.142399, 8.0571], + [-11.138399, 8.0593], + [-11.134899, 8.06], + [-11.1299, 8.060099], + [-11.125, 8.0597], + [-11.1295, 8.067], + [-11.1308, 8.0707], + [-11.1315, 8.0765], + [-11.1342, 8.0837], + [-11.134799, 8.087699], + [-11.135, 8.0908], + [-11.135199, 8.120299], + [-11.1354, 8.1266], + [-11.1359, 8.1296], + [-11.138199, 8.134899], + [-11.140099, 8.141699], + [-11.1425, 8.1474], + [-11.1431, 8.1516], + [-11.143299, 8.168499], + [-11.1431, 8.172399], + [-11.1425, 8.175199], + [-11.140499, 8.1797], + [-11.1391, 8.185499], + [-11.136899, 8.1908], + [-11.135399, 8.1967], + [-11.133699, 8.1999], + [-11.127299, 8.2071], + [-11.1255, 8.210299], + [-11.125271, 8.211249], + [-11.127083, 8.21125], + [-11.130417, 8.214583], + [-11.132082, 8.215417], + [-11.137083, 8.222083], + [-11.142082, 8.222084], + [-11.146249, 8.224583], + [-11.150417, 8.220417], + [-11.164582, 8.220417], + [-11.164583, 8.224584], + [-11.167916, 8.224583], + [-11.17125, 8.22125], + [-11.177082, 8.220417], + [-11.177083, 8.22125], + [-11.18125, 8.227916], + [-11.188749, 8.231249], + [-11.193749, 8.225417], + [-11.194582, 8.224584], + [-11.195416, 8.224584], + [-11.197083, 8.232916], + [-11.200416, 8.234583], + [-11.200417, 8.236249], + [-11.210416, 8.23625], + [-11.21125, 8.239583], + [-11.216249, 8.240417], + [-11.219399, 8.244352], + [-11.226776, 8.244353], + [-11.230682, 8.251118], + [-11.23124, 8.251119], + [-11.23125, 8.25125], + [-11.235417, 8.254583], + [-11.238552, 8.254584], + [-11.23848, 8.255088], + [-11.239202, 8.26125], + [-11.245416, 8.261249], + [-11.247082, 8.25875], + [-11.248856, 8.258306], + [-11.2463, 8.2542], + [-11.2454, 8.2517], + [-11.244499, 8.247499], + [-11.2431, 8.242299], + [-11.246499, 8.2342], + [-11.2513, 8.228099], + [-11.2532, 8.224199], + [-11.255699, 8.2199], + [-11.256521, 8.217999] + ] + ], + "type": "Polygon" + }, + "id": 79, + "properties": { + "cc:admin:id": ["22"], + "cc:oBld:total": 1197, + "cc:pop:fifteen-to-twenty-four": 1772.0902071235703, + "cc:pop:grid3-total": 8803.413757783055, + "cc:pop:kontur-total": 9659.899635733214, + "cc:pop:men": 4475.614443880887, + "cc:pop:sixty-plus": 580.5831590237121, + "cc:pop:total": 9056.196631370276, + "cc:pop:under-five": 1493.4981634099852, + "cc:pop:women": 4580.582187489384, + "cc:pop:women-fiften-to-forty-nine": 2235.23927758448, + "cc:pop:wp-total": 8612.837569635334, + "cc:pop:wp-total-UN": 9992.819341205499, + "cc:id": "79", + "cc:Name": "Dodo CHC", + "cc:site": [-11.1733, 8.1519], + "user:parentName": "Dodo", + "user:code": "OU_222683", + "user:orgUnitId": "jKZ0U8Og5aV", + "user:level": "4", + "user:parentId": "QlCIp2S9NHs" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.494599, 8.336699], + [-11.486999, 8.329299], + [-11.4838, 8.3251], + [-11.4817, 8.3208], + [-11.480599, 8.317099], + [-11.479499, 8.301799], + [-11.478099, 8.295799], + [-11.4755, 8.2871], + [-11.473499, 8.283399], + [-11.4655, 8.2739], + [-11.4604, 8.2666], + [-11.457399, 8.263499], + [-11.454099, 8.260799], + [-11.446599, 8.256699], + [-11.4348, 8.251], + [-11.43375, 8.25023], + [-11.433749, 8.252917], + [-11.430416, 8.257083], + [-11.419583, 8.257916], + [-11.412082, 8.24625], + [-11.40875, 8.24625], + [-11.39875, 8.252916], + [-11.390537, 8.247168], + [-11.388475, 8.25074], + [-11.39238, 8.257506], + [-11.392126, 8.257948], + [-11.391797, 8.257822], + [-11.387328, 8.25869], + [-11.386077, 8.258061], + [-11.3844, 8.256796], + [-11.383221, 8.256726], + [-11.383215, 8.256723], + [-11.381249, 8.264583], + [-11.371618, 8.265323], + [-11.371699, 8.265519], + [-11.371976, 8.265902], + [-11.371976, 8.265903], + [-11.36967, 8.265904], + [-11.365763, 8.272669], + [-11.357951, 8.27267], + [-11.357647, 8.273195], + [-11.354583, 8.272917], + [-11.347917, 8.282084], + [-11.347917, 8.292916], + [-11.351249, 8.29625], + [-11.35125, 8.303749], + [-11.352214, 8.305197], + [-11.352083, 8.3053], + [-11.352083, 8.305417], + [-11.35625, 8.308749], + [-11.367916, 8.307916], + [-11.371249, 8.303749], + [-11.371123, 8.302095], + [-11.372689, 8.304805], + [-11.372082, 8.312083], + [-11.370109, 8.312084], + [-11.367519, 8.316567], + [-11.361144, 8.316568], + [-11.359583, 8.32125], + [-11.360342, 8.325041], + [-11.360656, 8.324879], + [-11.361258, 8.324147], + [-11.362271, 8.323921], + [-11.363264, 8.323889], + [-11.363814, 8.324129], + [-11.364753, 8.32544], + [-11.365148, 8.325639], + [-11.365616, 8.325202], + [-11.366527, 8.324574], + [-11.367232, 8.32442], + [-11.368092, 8.323849], + [-11.368722, 8.323128], + [-11.370092, 8.323578], + [-11.370571, 8.323947], + [-11.37028, 8.324349], + [-11.369977, 8.325021], + [-11.369602, 8.326655], + [-11.369627, 8.327618], + [-11.370392, 8.329575], + [-11.370662, 8.330875], + [-11.370929, 8.332376], + [-11.370862, 8.333359], + [-11.370908, 8.333774], + [-11.371166, 8.334583], + [-11.376249, 8.334583], + [-11.377556, 8.333277], + [-11.377757, 8.333346], + [-11.377807, 8.334038], + [-11.378698, 8.334609], + [-11.379907, 8.336357], + [-11.380589, 8.338101], + [-11.38114, 8.338939], + [-11.381732, 8.341291], + [-11.382118, 8.342393], + [-11.382416, 8.342632], + [-11.382346, 8.342841], + [-11.382486, 8.343271], + [-11.383725, 8.345416], + [-11.387916, 8.345417], + [-11.391029, 8.347907], + [-11.391109, 8.347405], + [-11.39085, 8.345599], + [-11.390851, 8.345598], + [-11.39375, 8.347916], + [-11.397916, 8.347917], + [-11.397917, 8.352083], + [-11.40125, 8.356249], + [-11.408749, 8.357083], + [-11.414582, 8.357083], + [-11.418749, 8.353749], + [-11.419453, 8.346011], + [-11.419455, 8.34601], + [-11.423273, 8.347637], + [-11.426134, 8.348222], + [-11.422917, 8.352084], + [-11.422917, 8.358088], + [-11.4231, 8.3581], + [-11.425999, 8.358699], + [-11.4304, 8.3607], + [-11.436399, 8.362299], + [-11.4417, 8.3646], + [-11.4452, 8.3653], + [-11.448799, 8.365399], + [-11.452299, 8.3647], + [-11.4605, 8.360499], + [-11.4647, 8.356999], + [-11.475599, 8.3461], + [-11.478799, 8.3437], + [-11.482, 8.342199], + [-11.4865, 8.339699], + [-11.49, 8.338199], + [-11.494599, 8.336699] + ] + ], + "type": "Polygon" + }, + "id": 81, + "properties": { + "cc:admin:id": ["142"], + "cc:oBld:total": 790, + "cc:pop:fifteen-to-twenty-four": 1360.8181992604505, + "cc:pop:grid3-total": 4986.409797714498, + "cc:pop:kontur-total": 7239.864709235082, + "cc:pop:men": 3649.4534772537813, + "cc:pop:sixty-plus": 438.7980986648851, + "cc:pop:total": 7187.320330697916, + "cc:pop:under-five": 1128.1332678745455, + "cc:pop:women": 3537.8668534441354, + "cc:pop:women-fiften-to-forty-nine": 1787.6171876644696, + "cc:pop:wp-total": 5651.597128001407, + "cc:pop:wp-total-UN": 6548.003302524286, + "cc:id": "81", + "cc:Name": "Faala CHP", + "cc:site": [-11.3818, 8.2862], + "user:parentName": "Wandor", + "user:code": "OU_222680", + "user:orgUnitId": "hKD6hpZUh9v", + "user:level": "4", + "user:parentId": "X7dWcGerQIm" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.132399, 9.5773], + [-12.126199, 9.574699], + [-12.118699, 9.571999], + [-12.1014, 9.5638], + [-12.0973, 9.5627], + [-12.092799, 9.5623], + [-12.086699, 9.5626], + [-12.082299, 9.5635], + [-12.076399, 9.5655], + [-12.0721, 9.566199], + [-12.0664, 9.566], + [-12.0629, 9.564999], + [-12.0599, 9.5629], + [-12.0577, 9.5601], + [-12.0567, 9.555999], + [-12.057599, 9.5516], + [-12.060499, 9.5458], + [-12.061199, 9.5428], + [-12.060099, 9.5393], + [-12.056999, 9.537], + [-12.0502, 9.5351], + [-12.0473, 9.533299], + [-12.044, 9.5288], + [-12.0403, 9.5221], + [-12.036199, 9.5162], + [-12.0262, 9.523599], + [-12.0186, 9.527599], + [-12.0135, 9.528699], + [-12.009499, 9.528699], + [-12.005699, 9.527599], + [-11.9998, 9.524099], + [-11.997099, 9.520499], + [-11.9942, 9.5144], + [-11.991899, 9.510999], + [-11.988, 9.507], + [-11.9846, 9.5045], + [-11.9807, 9.5031], + [-11.976399, 9.5027], + [-11.9707, 9.5027], + [-11.9605, 9.5044], + [-11.954, 9.508699], + [-11.9489, 9.514299], + [-11.9459, 9.516299], + [-11.943199, 9.5172], + [-11.9335, 9.5189], + [-11.9249, 9.523299], + [-11.922199, 9.5243], + [-11.9193, 9.524899], + [-11.914899, 9.5253], + [-11.898099, 9.525399], + [-11.8937, 9.5249], + [-11.8908, 9.5241], + [-11.887199, 9.521899], + [-11.882399, 9.516799], + [-11.8776, 9.5082], + [-11.8735, 9.4996], + [-11.872099, 9.495099], + [-11.871499, 9.492199], + [-11.8711, 9.4864], + [-11.8711, 9.476], + [-11.8714, 9.470099], + [-11.872199, 9.4594], + [-11.870899, 9.454399], + [-11.867399, 9.447999], + [-11.8535, 9.4331], + [-11.8474, 9.4252], + [-11.844599, 9.422999], + [-11.8371, 9.418799], + [-11.8351, 9.4161], + [-11.833799, 9.412999], + [-11.831699, 9.404199], + [-11.829999, 9.400499], + [-11.8244, 9.3926], + [-11.822199, 9.386999], + [-11.8212, 9.378399], + [-11.8212, 9.3651], + [-11.8217, 9.359299], + [-11.823999, 9.3498], + [-11.824499, 9.3457], + [-11.824799, 9.338599], + [-11.8245, 9.33], + [-11.823699, 9.324399], + [-11.8215, 9.3163], + [-11.820999, 9.313499], + [-11.820599, 9.307699], + [-11.8204, 9.2899], + [-11.8201, 9.284], + [-11.819399, 9.279799], + [-11.817, 9.2701], + [-11.8166, 9.266], + [-11.816299, 9.258499], + [-11.8161, 9.2342], + [-11.815699, 9.226699], + [-11.815199, 9.223899], + [-11.8116, 9.2103], + [-11.8091, 9.2032], + [-11.802499, 9.201799], + [-11.7913, 9.2004], + [-11.7853, 9.1985], + [-11.7823, 9.1979], + [-11.776199, 9.197399], + [-11.7683, 9.1973], + [-11.7605, 9.197599], + [-11.756099, 9.1983], + [-11.7478, 9.201199], + [-11.7436, 9.2039], + [-11.7392, 9.210599], + [-11.737699, 9.2143], + [-11.7371, 9.2203], + [-11.737299, 9.234299], + [-11.7369, 9.240399], + [-11.7336, 9.255499], + [-11.7318, 9.261299], + [-11.7279, 9.269899], + [-11.725599, 9.2734], + [-11.722899, 9.2762], + [-11.7181, 9.279799], + [-11.716, 9.2807], + [-11.7142, 9.2828], + [-11.713599, 9.2852], + [-11.7132, 9.290399], + [-11.7126, 9.292499], + [-11.7093, 9.299699], + [-11.7069, 9.303899], + [-11.705599, 9.307], + [-11.7036, 9.310699], + [-11.7027, 9.313999], + [-11.7026, 9.319499], + [-11.703199, 9.324399], + [-11.705799, 9.330999], + [-11.7071, 9.3361], + [-11.7116, 9.344999], + [-11.713899, 9.347199], + [-11.717599, 9.349099], + [-11.7206, 9.3518], + [-11.7232, 9.3561], + [-11.7278, 9.3619], + [-11.7289, 9.3643], + [-11.729299, 9.366999], + [-11.728699, 9.3704], + [-11.7264, 9.375599], + [-11.725, 9.381499], + [-11.7233, 9.385099], + [-11.7226, 9.387299], + [-11.722299, 9.3915], + [-11.7221, 9.401199], + [-11.721199, 9.4047], + [-11.7194, 9.408199], + [-11.718099, 9.4114], + [-11.7157, 9.415699], + [-11.714299, 9.4188], + [-11.711799, 9.4224], + [-11.7069, 9.427299], + [-11.704797, 9.428749], + [-11.712083, 9.42875], + [-11.714746, 9.434076], + [-11.714711, 9.434585], + [-11.713058, 9.437496], + [-11.71317, 9.437441], + [-11.713711, 9.43699], + [-11.714965, 9.434711], + [-11.715436, 9.433371], + [-11.719582, 9.427637], + [-11.719583, 9.431249], + [-11.720417, 9.432083], + [-11.723749, 9.438749], + [-11.727082, 9.440417], + [-11.727083, 9.445353], + [-11.72863, 9.448036], + [-11.724725, 9.454801], + [-11.725054, 9.455372], + [-11.722917, 9.457083], + [-11.722083, 9.468749], + [-11.72375, 9.471249], + [-11.724583, 9.471249], + [-11.732255, 9.469158], + [-11.732256, 9.469158], + [-11.732277, 9.469243], + [-11.732268, 9.469328], + [-11.741249, 9.467083], + [-11.74125, 9.46625], + [-11.750142, 9.466842], + [-11.750707, 9.467823], + [-11.746802, 9.474589], + [-11.750707, 9.481353], + [-11.750094, 9.482417], + [-11.754582, 9.482917], + [-11.75125, 9.494582], + [-11.763749, 9.494583], + [-11.764583, 9.49625], + [-11.764583, 9.502082], + [-11.767083, 9.507082], + [-11.774582, 9.504583], + [-11.777323, 9.506576], + [-11.777323, 9.506578], + [-11.77694, 9.506578], + [-11.773035, 9.513343], + [-11.768301, 9.513344], + [-11.77125, 9.518749], + [-11.777916, 9.522082], + [-11.777917, 9.5233], + [-11.784199, 9.5233], + [-11.789299, 9.5227], + [-11.794199, 9.5207], + [-11.7966, 9.5201], + [-11.799199, 9.5207], + [-11.802499, 9.523099], + [-11.804999, 9.5263], + [-11.805499, 9.5298], + [-11.8037, 9.533399], + [-11.8008, 9.536599], + [-11.797899, 9.5391], + [-11.795099, 9.541], + [-11.792999, 9.5417], + [-11.7879, 9.542899], + [-11.7826, 9.544999], + [-11.7784, 9.545899], + [-11.776199, 9.5467], + [-11.7735, 9.548499], + [-11.7713, 9.550399], + [-11.7686, 9.553199], + [-11.7669, 9.555499], + [-11.765799, 9.5576], + [-11.764399, 9.5639], + [-11.762399, 9.5684], + [-11.761899, 9.5709], + [-11.761, 9.577999], + [-11.7588, 9.583299], + [-11.7582, 9.585799], + [-11.7582, 9.590199], + [-11.7589, 9.5937], + [-11.7613, 9.5995], + [-11.762, 9.6046], + [-11.762199, 9.616199], + [-11.762999, 9.619799], + [-11.765299, 9.625099], + [-11.7665, 9.6302], + [-11.769, 9.6354], + [-11.770699, 9.642099], + [-11.7728, 9.6465], + [-11.774699, 9.653299], + [-11.776699, 9.657799], + [-11.777399, 9.660499], + [-11.7776, 9.6635], + [-11.777799, 9.675599], + [-11.778599, 9.679399], + [-11.7809, 9.6838], + [-11.7841, 9.6905], + [-11.785, 9.6931], + [-11.785699, 9.698899], + [-11.7867, 9.7025], + [-11.788599, 9.706099], + [-11.79, 9.7092], + [-11.7923, 9.7136], + [-11.793, 9.7173], + [-11.793199, 9.724999], + [-11.793499, 9.728799], + [-11.794399, 9.731899], + [-11.7956, 9.7338], + [-11.798499, 9.737399], + [-11.799699, 9.739299], + [-11.8005, 9.7414], + [-11.8021, 9.7472], + [-11.806, 9.753399], + [-11.8124, 9.7572], + [-11.815199, 9.757899], + [-11.817899, 9.758099], + [-11.8215, 9.757699], + [-11.8248, 9.756299], + [-11.8276, 9.753999], + [-11.832199, 9.7495], + [-11.834999, 9.7475], + [-11.838199, 9.7461], + [-11.841799, 9.7441], + [-11.8455, 9.742399], + [-11.847699, 9.740599], + [-11.849099, 9.7381], + [-11.8504, 9.732199], + [-11.852499, 9.7278], + [-11.8541, 9.723899], + [-11.8573, 9.7185], + [-11.8591, 9.716999], + [-11.863799, 9.7142], + [-11.8684, 9.712099], + [-11.8713, 9.709899], + [-11.878799, 9.7029], + [-11.883099, 9.7001], + [-11.89, 9.700899], + [-11.908199, 9.7], + [-11.9128, 9.699399], + [-11.9204, 9.697399], + [-11.930799, 9.6963], + [-11.9352, 9.695499], + [-11.9379, 9.694499], + [-11.9452, 9.690299], + [-11.9627, 9.683999], + [-11.971299, 9.6791], + [-11.9776, 9.676499], + [-11.987299, 9.6694], + [-11.9912, 9.667399], + [-12.000899, 9.6638], + [-12.0075, 9.661799], + [-12.019699, 9.6567], + [-12.0297, 9.654299], + [-12.037399, 9.6507], + [-12.043299, 9.647], + [-12.0459, 9.645699], + [-12.0502, 9.644699], + [-12.0621, 9.643499], + [-12.0735, 9.640099], + [-12.0771, 9.638699], + [-12.082299, 9.636], + [-12.0859, 9.633499], + [-12.091299, 9.6285], + [-12.098599, 9.621], + [-12.101399, 9.6176], + [-12.1035, 9.613899], + [-12.106199, 9.6039], + [-12.1083, 9.600199], + [-12.112199, 9.5958], + [-12.1166, 9.591899], + [-12.1202, 9.589699], + [-12.127099, 9.586299], + [-12.1301, 9.582699], + [-12.132399, 9.5773] + ] + ], + "type": "Polygon" + }, + "id": 82, + "properties": { + "cc:admin:id": ["52"], + "cc:oBld:total": 1224, + "cc:pop:fifteen-to-twenty-four": 5427.863818847328, + "cc:pop:grid3-total": 27045.967595025606, + "cc:pop:kontur-total": 29159.741218759016, + "cc:pop:men": 13082.55296590112, + "cc:pop:sixty-plus": 1736.1648114340878, + "cc:pop:total": 29060.136775353752, + "cc:pop:under-five": 4483.248901626229, + "cc:pop:women": 15977.583809452593, + "cc:pop:women-fiften-to-forty-nine": 7829.708822201588, + "cc:pop:wp-total": 25082.625414444334, + "cc:pop:wp-total-UN": 29055.320478536163, + "cc:id": "82", + "cc:Name": "Fadugu CHC", + "cc:site": [-11.7651, 9.3901], + "user:parentName": "Kasonko", + "user:code": "OU_226224", + "user:orgUnitId": "K6oyIMh7Lee", + "user:level": "4", + "user:parentId": "vEvs2ckGNQj" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.518721, 7.160626], + [-11.515413, 7.154898], + [-11.507602, 7.154897], + [-11.504856, 7.150144], + [-11.501249, 7.153749], + [-11.493006, 7.153116], + [-11.491976, 7.154897], + [-11.484163, 7.154897], + [-11.480258, 7.148133], + [-11.479583, 7.148132], + [-11.479582, 7.144584], + [-11.477917, 7.14125], + [-11.477083, 7.140416], + [-11.477082, 7.139584], + [-11.468749, 7.139583], + [-11.46625, 7.132916], + [-11.46625, 7.127084], + [-11.468749, 7.122084], + [-11.465417, 7.118749], + [-11.465417, 7.114584], + [-11.466249, 7.112084], + [-11.46375, 7.107916], + [-11.462916, 7.102917], + [-11.455417, 7.100416], + [-11.452082, 7.097084], + [-11.44625, 7.097083], + [-11.442916, 7.094584], + [-11.437083, 7.09375], + [-11.437082, 7.092084], + [-11.432916, 7.08875], + [-11.42558, 7.088749], + [-11.425579, 7.088748], + [-11.425765, 7.088425], + [-11.42375, 7.084934], + [-11.423749, 7.085417], + [-11.420417, 7.089583], + [-11.417917, 7.090416], + [-11.417082, 7.090416], + [-11.408101, 7.082183], + [-11.408556, 7.08103], + [-11.409808, 7.07793], + [-11.409821, 7.077807], + [-11.400417, 7.077084], + [-11.39875, 7.076249], + [-11.398749, 7.062084], + [-11.397083, 7.062084], + [-11.396249, 7.062917], + [-11.387917, 7.063749], + [-11.382916, 7.055417], + [-11.38125, 7.055417], + [-11.380416, 7.057084], + [-11.37375, 7.060416], + [-11.372689, 7.060769], + [-11.369564, 7.057613], + [-11.371799, 7.065299], + [-11.367899, 7.0731], + [-11.3608, 7.075099], + [-11.3566, 7.0738], + [-11.351099, 7.075699], + [-11.3297, 7.0744], + [-11.3317, 7.0861], + [-11.333599, 7.100299], + [-11.331, 7.108799], + [-11.335499, 7.112], + [-11.3362, 7.118499], + [-11.347099, 7.1282], + [-11.350399, 7.135299], + [-11.3426, 7.142999], + [-11.334199, 7.1379], + [-11.3277, 7.1405], + [-11.3264, 7.144999], + [-11.332199, 7.1534], + [-11.326999, 7.1586], + [-11.3173, 7.1644], + [-11.318599, 7.171599], + [-11.3181, 7.1721], + [-11.3182, 7.172599], + [-11.3204, 7.1736], + [-11.3272, 7.1749], + [-11.335999, 7.179299], + [-11.3415, 7.1835], + [-11.3503, 7.1879], + [-11.3531, 7.1885], + [-11.360899, 7.188899], + [-11.364499, 7.189599], + [-11.369099, 7.191499], + [-11.375799, 7.193299], + [-11.3813, 7.1955], + [-11.3853, 7.196], + [-11.394499, 7.196199], + [-11.398299, 7.196899], + [-11.4028, 7.1991], + [-11.411199, 7.202999], + [-11.417199, 7.204399], + [-11.421599, 7.206599], + [-11.4249, 7.2079], + [-11.4335, 7.2124], + [-11.437399, 7.215599], + [-11.439099, 7.2179], + [-11.439999, 7.220499], + [-11.440399, 7.2231], + [-11.4402, 7.227699], + [-11.4392, 7.231699], + [-11.446899, 7.233299], + [-11.449499, 7.233699], + [-11.452099, 7.234499], + [-11.455699, 7.236399], + [-11.4588, 7.2377], + [-11.462499, 7.239699], + [-11.464599, 7.240399], + [-11.4691, 7.240799], + [-11.480199, 7.2407], + [-11.4831, 7.2411], + [-11.487, 7.2428], + [-11.490999, 7.246199], + [-11.4942, 7.249799], + [-11.4973, 7.247399], + [-11.4994, 7.245499], + [-11.5022, 7.242399], + [-11.507099, 7.232499], + [-11.506699, 7.229], + [-11.503099, 7.2222], + [-11.4996, 7.2193], + [-11.497199, 7.218599], + [-11.4921, 7.218199], + [-11.489799, 7.217099], + [-11.486, 7.2118], + [-11.4861, 7.2085], + [-11.4899, 7.205299], + [-11.495399, 7.2015], + [-11.5022, 7.198699], + [-11.5035, 7.196599], + [-11.5046, 7.192699], + [-11.506499, 7.1883], + [-11.5079, 7.182399], + [-11.5095, 7.179199], + [-11.5128, 7.174899], + [-11.5139, 7.172499], + [-11.515398, 7.166702], + [-11.5164, 7.164399], + [-11.518721, 7.160626] + ] + ], + "type": "Polygon" + }, + "id": 83, + "properties": { + "cc:admin:id": ["127"], + "cc:oBld:total": 555, + "cc:pop:fifteen-to-twenty-four": 3748.4122478190484, + "cc:pop:grid3-total": 11805.399663411295, + "cc:pop:kontur-total": 21475.35611430537, + "cc:pop:men": 9895.814458508437, + "cc:pop:sixty-plus": 1440.3535881261582, + "cc:pop:total": 21118.64061114556, + "cc:pop:under-five": 3558.9471437573598, + "cc:pop:women": 11222.82615263713, + "cc:pop:women-fiften-to-forty-nine": 5327.024412917764, + "cc:pop:wp-total": 22302.57905226125, + "cc:pop:wp-total-UN": 25854.43808805038, + "cc:id": "83", + "cc:Name": "Fairo CHC", + "cc:site": [-11.4045, 7.0881], + "user:parentName": "Soro-Gbeima", + "user:code": "OU_260415", + "user:orgUnitId": "Gm7YUjhVi9Q", + "user:level": "4", + "user:parentId": "d9iMR1MpuIO" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.445599, 9.999199], + [-11.4177, 9.998699], + [-11.4175, 9.9729], + [-11.4168, 9.9678], + [-11.414599, 9.962399], + [-11.413899, 9.959899], + [-11.413299, 9.954599], + [-11.412599, 9.952099], + [-11.4103, 9.9467], + [-11.409799, 9.943899], + [-11.409599, 9.937999], + [-11.409399, 9.910199], + [-11.4092, 9.9063], + [-11.4081, 9.9028], + [-11.4062, 9.8992], + [-11.404799, 9.895999], + [-11.402399, 9.891799], + [-11.400999, 9.888599], + [-11.3985, 9.8843], + [-11.3963, 9.8801], + [-11.392, 9.8747], + [-11.3895, 9.87], + [-11.3878, 9.8677], + [-11.383799, 9.863299], + [-11.3786, 9.8584], + [-11.375499, 9.856099], + [-11.370399, 9.853399], + [-11.3666, 9.8501], + [-11.3644, 9.8472], + [-11.3625, 9.8433], + [-11.3605, 9.8397], + [-11.359099, 9.836499], + [-11.3567, 9.8323], + [-11.355299, 9.829099], + [-11.3533, 9.8255], + [-11.352499, 9.823399], + [-11.3521, 9.820099], + [-11.3521, 9.814699], + [-11.352899, 9.8105], + [-11.354599, 9.8068], + [-11.355399, 9.8034], + [-11.355799, 9.7966], + [-11.356299, 9.7928], + [-11.3585, 9.786999], + [-11.3592, 9.782899], + [-11.3592, 9.7751], + [-11.359899, 9.7701], + [-11.3621, 9.764199], + [-11.3627, 9.760499], + [-11.3629, 9.754599], + [-11.363499, 9.751], + [-11.3654, 9.746499], + [-11.366, 9.743899], + [-11.366599, 9.7386], + [-11.367099, 9.7361], + [-11.369, 9.731599], + [-11.3697, 9.727899], + [-11.369999, 9.7221], + [-11.370399, 9.7183], + [-11.372499, 9.7129], + [-11.373199, 9.7104], + [-11.373699, 9.7051], + [-11.374199, 9.7026], + [-11.3764, 9.697299], + [-11.3778, 9.691399], + [-11.381399, 9.6839], + [-11.385799, 9.6781], + [-11.387399, 9.6749], + [-11.3886, 9.669899], + [-11.3908, 9.664599], + [-11.3922, 9.658699], + [-11.394599, 9.6535], + [-11.3959, 9.650199], + [-11.398699, 9.6442], + [-11.396799, 9.643099], + [-11.395199, 9.641399], + [-11.393199, 9.6386], + [-11.386899, 9.6388], + [-11.3606, 9.638999], + [-11.357599, 9.638599], + [-11.355199, 9.637599], + [-11.3517, 9.6331], + [-11.3493, 9.6304], + [-11.346099, 9.6286], + [-11.3433, 9.6294], + [-11.341599, 9.6347], + [-11.337999, 9.643], + [-11.3339, 9.650999], + [-11.3312, 9.654299], + [-11.3271, 9.658399], + [-11.3248, 9.660099], + [-11.3155, 9.664399], + [-11.315333, 9.664422], + [-11.318554, 9.670001], + [-11.316254, 9.673987], + [-11.319582, 9.67375], + [-11.323015, 9.676495], + [-11.323015, 9.676496], + [-11.321738, 9.677672], + [-11.318366, 9.679778], + [-11.315159, 9.682169], + [-11.31471, 9.682697], + [-11.314517, 9.683818], + [-11.314674, 9.683849], + [-11.315218, 9.684754], + [-11.315231, 9.684768], + [-11.307917, 9.692082], + [-11.306579, 9.690746], + [-11.30293, 9.697064], + [-11.295117, 9.697065], + [-11.291211, 9.70383], + [-11.283399, 9.703831], + [-11.279491, 9.710596], + [-11.271679, 9.710597], + [-11.267774, 9.717363], + [-11.271679, 9.724129], + [-11.267774, 9.730893], + [-11.261406, 9.730894], + [-11.261249, 9.732917], + [-11.257083, 9.736249], + [-11.256869, 9.73625], + [-11.256055, 9.737659], + [-11.258608, 9.742082], + [-11.25625, 9.742083], + [-11.25375, 9.744583], + [-11.258749, 9.750416], + [-11.25875, 9.752082], + [-11.264582, 9.757082], + [-11.26375, 9.761249], + [-11.262917, 9.762916], + [-11.257345, 9.762488], + [-11.256054, 9.764723], + [-11.248242, 9.764724], + [-11.244336, 9.771489], + [-11.246215, 9.774745], + [-11.244583, 9.774583], + [-11.239583, 9.787082], + [-11.22977, 9.789537], + [-11.229853, 9.78956], + [-11.231375, 9.789323], + [-11.232248, 9.790285], + [-11.232415, 9.790783], + [-11.233014, 9.791241], + [-11.234907, 9.791759], + [-11.236879, 9.792728], + [-11.237954, 9.79434], + [-11.238936, 9.794553], + [-11.240032, 9.794111], + [-11.24056, 9.79412], + [-11.242322, 9.794964], + [-11.240925, 9.804961], + [-11.241157, 9.808749], + [-11.242082, 9.80875], + [-11.244582, 9.809582], + [-11.245416, 9.81125], + [-11.24125, 9.821249], + [-11.24125, 9.822916], + [-11.242083, 9.82375], + [-11.247083, 9.827917], + [-11.247082, 9.829583], + [-11.24375, 9.832083], + [-11.24375, 9.833749], + [-11.244583, 9.834583], + [-11.252082, 9.837916], + [-11.252302, 9.838353], + [-11.25236, 9.838321], + [-11.252671, 9.837771], + [-11.252672, 9.83777], + [-11.257082, 9.842917], + [-11.257082, 9.844583], + [-11.24875, 9.847083], + [-11.248749, 9.84875], + [-11.245417, 9.85125], + [-11.245417, 9.852082], + [-11.250416, 9.85375], + [-11.249583, 9.859583], + [-11.250417, 9.865416], + [-11.252083, 9.865418], + [-11.252082, 9.870417], + [-11.245417, 9.880417], + [-11.247083, 9.884583], + [-11.249583, 9.887082], + [-11.252083, 9.887083], + [-11.254583, 9.894582], + [-11.262082, 9.897917], + [-11.257599, 9.904642], + [-11.257743, 9.904766], + [-11.257978, 9.905072], + [-11.258282, 9.905702], + [-11.258345, 9.907192], + [-11.258384, 9.907358], + [-11.258394, 9.907379], + [-11.25625, 9.907917], + [-11.250417, 9.91375], + [-11.254137, 9.924168], + [-11.255254, 9.924211], + [-11.254828, 9.927627], + [-11.256797, 9.927628], + [-11.260702, 9.934393], + [-11.257538, 9.939875], + [-11.259583, 9.939583], + [-11.262916, 9.958747], + [-11.262914, 9.958747], + [-11.259582, 9.955417], + [-11.257916, 9.955416], + [-11.253749, 9.950417], + [-11.252083, 9.950417], + [-11.249583, 9.957916], + [-11.247083, 9.959582], + [-11.24625, 9.959583], + [-11.244583, 9.968749], + [-11.242917, 9.970417], + [-11.243749, 9.973749], + [-11.242095, 9.98037], + [-11.242306, 9.980739], + [-11.242083, 9.981126], + [-11.242083, 9.983749], + [-11.243543, 9.985697], + [-11.243542, 9.985698], + [-11.243205, 9.985705], + [-11.245416, 9.987917], + [-11.245417, 9.999653], + [-11.3139, 9.9984], + [-11.3909, 9.9989], + [-11.445599, 9.999199] + ] + ], + "type": "Polygon" + }, + "id": 84, + "properties": { + "cc:admin:id": ["129"], + "cc:oBld:total": 1125, + "cc:pop:fifteen-to-twenty-four": 2707.905904396715, + "cc:pop:grid3-total": 16168.911533707818, + "cc:pop:kontur-total": 15044.495991081998, + "cc:pop:men": 7080.747184288029, + "cc:pop:sixty-plus": 935.4067418962317, + "cc:pop:total": 14772.917656528805, + "cc:pop:under-five": 2402.722402257614, + "cc:pop:women": 7692.170472240767, + "cc:pop:women-fiften-to-forty-nine": 3752.1671743162574, + "cc:pop:wp-total": 13391.825273376433, + "cc:pop:wp-total-UN": 15508.563411162158, + "cc:id": "84", + "cc:Name": "Falaba CHC", + "cc:site": [-11.3208, 9.8571], + "user:parentName": "Sulima (Koinadugu)", + "user:code": "OU_226230", + "user:orgUnitId": "kuqKh33SPgg", + "user:level": "4", + "user:parentId": "PaqugoqjRIj" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.576148, 7.397769], + [-11.572386, 7.391251], + [-11.576065, 7.384877], + [-11.569583, 7.385416], + [-11.569114, 7.386002], + [-11.563538, 7.386001], + [-11.560707, 7.381099], + [-11.560416, 7.384584], + [-11.55625, 7.387916], + [-11.55375, 7.387916], + [-11.545416, 7.372917], + [-11.543628, 7.373364], + [-11.543627, 7.373362], + [-11.54402, 7.372917], + [-11.534583, 7.372916], + [-11.533868, 7.369584], + [-11.526535, 7.369584], + [-11.522629, 7.376348], + [-11.520589, 7.376348], + [-11.514583, 7.372916], + [-11.514582, 7.364584], + [-11.51375, 7.364584], + [-11.513749, 7.368336], + [-11.50999, 7.368337], + [-11.509765, 7.368403], + [-11.508793, 7.368923], + [-11.507511, 7.368904], + [-11.50751, 7.368902], + [-11.507836, 7.368336], + [-11.50393, 7.361571], + [-11.498032, 7.361571], + [-11.498199, 7.387299], + [-11.498399, 7.393099], + [-11.4989, 7.3959], + [-11.501199, 7.401299], + [-11.501999, 7.404899], + [-11.502399, 7.410699], + [-11.502899, 7.414499], + [-11.505299, 7.419899], + [-11.505999, 7.423599], + [-11.505899, 7.4275], + [-11.5053, 7.430299], + [-11.504868, 7.431249], + [-11.512916, 7.43125], + [-11.520416, 7.438749], + [-11.520416, 7.447916], + [-11.517083, 7.452083], + [-11.523749, 7.452083], + [-11.524583, 7.445416], + [-11.52875, 7.442084], + [-11.536249, 7.442083], + [-11.537916, 7.439584], + [-11.538988, 7.439225], + [-11.53805, 7.437598], + [-11.541955, 7.430834], + [-11.546133, 7.430833], + [-11.54577, 7.426448], + [-11.54599, 7.420303], + [-11.545871, 7.419778], + [-11.545731, 7.419608], + [-11.550509, 7.419607], + [-11.55253, 7.416108], + [-11.553749, 7.414583], + [-11.554583, 7.410418], + [-11.559583, 7.415416], + [-11.56875, 7.415416], + [-11.572916, 7.411249], + [-11.570417, 7.407083], + [-11.567917, 7.397084], + [-11.575416, 7.397916], + [-11.576148, 7.397769] + ] + ], + "type": "Polygon" + }, + "id": 85, + "properties": { + "cc:admin:id": ["27"], + "cc:oBld:total": 0, + "cc:pop:fifteen-to-twenty-four": 488.9440700791866, + "cc:pop:grid3-total": 3521.6104789815995, + "cc:pop:kontur-total": 2773, + "cc:pop:men": 1295.9798787557884, + "cc:pop:sixty-plus": 186.98043545113106, + "cc:pop:total": 2683.70034845026, + "cc:pop:under-five": 449.9456200242475, + "cc:pop:women": 1387.7204696944723, + "cc:pop:women-fiften-to-forty-nine": 663.9254745988303, + "cc:pop:wp-total": 2345.8538509979835, + "cc:pop:wp-total-UN": 2721.1557419731985, + "cc:id": "85", + "cc:Name": "Falaba CHP", + "cc:site": [-11.5289, 7.4203], + "user:parentName": "Galliness Perri", + "user:code": "OU_260425", + "user:orgUnitId": "pRg7dkjqNPc", + "user:level": "4", + "user:parentId": "eNtRuQrrZeo" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.439188, 8.247305], + [-12.437083, 8.239584], + [-12.437082, 8.235417], + [-12.432917, 8.23125], + [-12.432083, 8.231249], + [-12.433749, 8.224584], + [-12.430416, 8.223749], + [-12.42125, 8.222083], + [-12.42375, 8.216249], + [-12.426249, 8.209584], + [-12.422916, 8.20625], + [-12.417917, 8.206249], + [-12.417916, 8.199584], + [-12.417082, 8.198749], + [-12.416249, 8.195416], + [-12.412083, 8.18875], + [-12.411249, 8.188749], + [-12.409112, 8.188216], + [-12.409282, 8.187676], + [-12.405416, 8.184584], + [-12.401249, 8.186249], + [-12.399583, 8.186249], + [-12.395417, 8.184584], + [-12.395416, 8.182084], + [-12.390417, 8.17625], + [-12.390416, 8.17375], + [-12.387917, 8.169584], + [-12.384583, 8.167917], + [-12.384222, 8.166835], + [-12.384049, 8.166877], + [-12.383091, 8.166545], + [-12.382911, 8.166735], + [-12.383095, 8.167803], + [-12.384031, 8.169276], + [-12.3847, 8.171302], + [-12.385257, 8.172008], + [-12.386299, 8.172423], + [-12.386435, 8.172906], + [-12.386152, 8.173675], + [-12.385695, 8.173989], + [-12.385301, 8.17405], + [-12.384866, 8.1738], + [-12.383671, 8.173584], + [-12.383091, 8.173248], + [-12.381091, 8.173644], + [-12.37926, 8.173782], + [-12.378686, 8.173688], + [-12.377228, 8.172895], + [-12.376921, 8.173214], + [-12.376761, 8.17288], + [-12.376247, 8.173004], + [-12.372926, 8.177666], + [-12.372946, 8.177687], + [-12.372756, 8.17831], + [-12.372256, 8.179104], + [-12.371046, 8.181073], + [-12.37061, 8.181405], + [-12.370335, 8.1815], + [-12.3698, 8.181382], + [-12.36888, 8.181259], + [-12.368558, 8.181664], + [-12.368236, 8.182545], + [-12.367918, 8.18252], + [-12.367601, 8.183438], + [-12.367243, 8.183749], + [-12.36667, 8.18386], + [-12.365824, 8.184518], + [-12.365022, 8.185635], + [-12.362916, 8.184584], + [-12.357083, 8.187083], + [-12.356249, 8.187084], + [-12.34988, 8.189207], + [-12.3499, 8.1898], + [-12.3509, 8.1938], + [-12.354499, 8.200999], + [-12.3568, 8.204], + [-12.362799, 8.210399], + [-12.364599, 8.2137], + [-12.3652, 8.2166], + [-12.365399, 8.230599], + [-12.366199, 8.234499], + [-12.370099, 8.242799], + [-12.3735, 8.248], + [-12.3756, 8.249199], + [-12.378199, 8.249699], + [-12.383899, 8.249899], + [-12.387499, 8.250599], + [-12.393, 8.2528], + [-12.398899, 8.254299], + [-12.402599, 8.255999], + [-12.4048, 8.2567], + [-12.4082, 8.256999], + [-12.412099, 8.2568], + [-12.4181, 8.2553], + [-12.423099, 8.256499], + [-12.427199, 8.256999], + [-12.430099, 8.253], + [-12.432599, 8.2508], + [-12.436399, 8.2489], + [-12.439188, 8.247305] + ] + ], + "type": "Polygon" + }, + "id": 86, + "properties": { + "cc:admin:id": ["45"], + "cc:oBld:total": 441, + "cc:pop:fifteen-to-twenty-four": 322.4558377084942, + "cc:pop:grid3-total": 1188.2231889412426, + "cc:pop:kontur-total": 1829.347066853653, + "cc:pop:men": 834.2339534515496, + "cc:pop:sixty-plus": 105.74088056108599, + "cc:pop:total": 1722.7138268774058, + "cc:pop:under-five": 312.4558413904511, + "cc:pop:women": 888.4798734258558, + "cc:pop:women-fiften-to-forty-nine": 427.1710967025214, + "cc:pop:wp-total": 1639.142843566544, + "cc:pop:wp-total-UN": 1904.8532941151086, + "cc:id": "86", + "cc:Name": "Falaba MCHP", + "cc:site": [-12.3796, 8.2111], + "user:parentName": "Fakunya", + "user:code": "OU_247091", + "user:orgUnitId": "YTQRSW91PxO", + "user:level": "4", + "user:parentId": "vULnao2hV5v" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.479384, 8.932082], + [-11.479299, 8.926999], + [-11.4784, 8.9214], + [-11.476599, 8.9149], + [-11.472999, 8.914299], + [-11.4691, 8.911599], + [-11.466799, 8.908599], + [-11.464399, 8.903299], + [-11.4596, 8.8888], + [-11.4574, 8.8832], + [-11.447499, 8.863999], + [-11.445599, 8.858399], + [-11.4442, 8.849], + [-11.4426, 8.8433], + [-11.4385, 8.8322], + [-11.4355, 8.8257], + [-11.4338, 8.8198], + [-11.4321, 8.8071], + [-11.4294, 8.8003], + [-11.4244, 8.7932], + [-11.421899, 8.789199], + [-11.417, 8.782], + [-11.4129, 8.7722], + [-11.410899, 8.767999], + [-11.408499, 8.764599], + [-11.4023, 8.7571], + [-11.400199, 8.752699], + [-11.399199, 8.749099], + [-11.3989, 8.7451], + [-11.3991, 8.741199], + [-11.399999, 8.7356], + [-11.3996, 8.7314], + [-11.396099, 8.724099], + [-11.394899, 8.718899], + [-11.3942, 8.7105], + [-11.393499, 8.706499], + [-11.3916, 8.7008], + [-11.389099, 8.695399], + [-11.3873, 8.6895], + [-11.386799, 8.683699], + [-11.3865, 8.6674], + [-11.385399, 8.6619], + [-11.380099, 8.6524], + [-11.375599, 8.6482], + [-11.370799, 8.646599], + [-11.3546, 8.6455], + [-11.351399, 8.6522], + [-11.3496, 8.657999], + [-11.349, 8.6632], + [-11.349199, 8.668399], + [-11.3498, 8.6723], + [-11.351499, 8.677999], + [-11.351997, 8.679302], + [-11.3536, 8.6835], + [-11.358199, 8.694299], + [-11.358899, 8.698699], + [-11.357399, 8.7103], + [-11.357199, 8.7252], + [-11.3565, 8.731799], + [-11.3547, 8.737399], + [-11.3489, 8.749199], + [-11.3471, 8.754799], + [-11.346499, 8.7602], + [-11.3464, 8.771099], + [-11.345799, 8.775099], + [-11.343299, 8.7799], + [-11.3397, 8.783999], + [-11.3335, 8.789399], + [-11.3283, 8.792599], + [-11.325299, 8.7948], + [-11.3217, 8.798399], + [-11.319499, 8.8014], + [-11.315599, 8.8087], + [-11.3034, 8.834299], + [-11.299416, 8.84157], + [-11.299399, 8.8416], + [-11.296999, 8.8449], + [-11.2917, 8.851299], + [-11.289799, 8.8546], + [-11.287799, 8.8602], + [-11.2847, 8.873999], + [-11.283499, 8.8818], + [-11.282299, 8.8855], + [-11.276999, 8.8951], + [-11.2729, 8.900899], + [-11.2704, 8.904899], + [-11.267999, 8.9078], + [-11.265099, 8.9101], + [-11.257799, 8.9138], + [-11.2465, 8.917399], + [-11.2437, 8.917999], + [-11.239299, 8.9183], + [-11.226, 8.918499], + [-11.2216, 8.918699], + [-11.217399, 8.9194], + [-11.211399, 8.9212], + [-11.2003, 8.922299], + [-11.196199, 8.9228], + [-11.1837, 8.926799], + [-11.1716, 8.932099], + [-11.1651, 8.934499], + [-11.160299, 8.9377], + [-11.151599, 8.9461], + [-11.1485, 8.949399], + [-11.1458, 8.952799], + [-11.1412, 8.961499], + [-11.1394, 8.967099], + [-11.138799, 8.9715], + [-11.1387, 8.975999], + [-11.1392, 8.9882], + [-11.1399, 8.9925], + [-11.143799, 9.004899], + [-11.144399, 9.0089], + [-11.143999, 9.012999], + [-11.140599, 9.020499], + [-11.138199, 9.023199], + [-11.133699, 9.025599], + [-11.1213, 9.027899], + [-11.117499, 9.0297], + [-11.107499, 9.0363], + [-11.097699, 9.0452], + [-11.095499, 9.047], + [-11.089199, 9.0511], + [-11.0818, 9.0576], + [-11.087, 9.0633], + [-11.093499, 9.069699], + [-11.096299, 9.071899], + [-11.1003, 9.0737], + [-11.104699, 9.075899], + [-11.109799, 9.076999], + [-11.1122, 9.0778], + [-11.120499, 9.081999], + [-11.125199, 9.085699], + [-11.131099, 9.088999], + [-11.1341, 9.0912], + [-11.1382, 9.0949], + [-11.144699, 9.100099], + [-11.145099, 9.102299], + [-11.144299, 9.103999], + [-11.1419, 9.105999], + [-11.1384, 9.107499], + [-11.135899, 9.1092], + [-11.131899, 9.1129], + [-11.1272, 9.117799], + [-11.1243, 9.121699], + [-11.122399, 9.1255], + [-11.120199, 9.1283], + [-11.1152, 9.133599], + [-11.113599, 9.1358], + [-11.111799, 9.1397], + [-11.1094, 9.143899], + [-11.1082, 9.147099], + [-11.1066, 9.149999], + [-11.1057, 9.152299], + [-11.1046, 9.157399], + [-11.1024, 9.162699], + [-11.1018, 9.165199], + [-11.1014, 9.170599], + [-11.1008, 9.173099], + [-11.0986, 9.178399], + [-11.097699, 9.1827], + [-11.096899, 9.1851], + [-11.095, 9.188699], + [-11.093699, 9.1918], + [-11.0914, 9.196099], + [-11.09125, 9.196469], + [-11.09125, 9.202082], + [-11.092917, 9.203749], + [-11.101249, 9.199583], + [-11.102916, 9.199582], + [-11.104582, 9.194583], + [-11.10375, 9.192916], + [-11.111249, 9.189582], + [-11.116249, 9.184583], + [-11.118391, 9.186724], + [-11.119196, 9.185332], + [-11.124317, 9.185331], + [-11.12625, 9.182917], + [-11.137082, 9.182083], + [-11.142082, 9.187083], + [-11.142082, 9.196249], + [-11.138749, 9.200416], + [-11.128367, 9.201216], + [-11.130915, 9.205628], + [-11.138726, 9.205628], + [-11.142633, 9.198863], + [-11.150445, 9.198863], + [-11.154352, 9.205628], + [-11.162164, 9.205629], + [-11.165244, 9.210962], + [-11.167082, 9.209582], + [-11.170417, 9.204583], + [-11.174582, 9.20375], + [-11.182916, 9.213749], + [-11.182917, 9.215416], + [-11.184583, 9.217082], + [-11.194582, 9.216249], + [-11.194879, 9.212395], + [-11.19732, 9.212395], + [-11.201226, 9.21916], + [-11.201249, 9.219161], + [-11.20125, 9.219582], + [-11.20681, 9.22435], + [-11.20681, 9.224351], + [-11.206708, 9.22437], + [-11.205727, 9.224682], + [-11.207083, 9.228749], + [-11.210417, 9.231249], + [-11.216249, 9.231249], + [-11.222082, 9.227082], + [-11.22125, 9.223749], + [-11.225416, 9.21875], + [-11.227916, 9.217916], + [-11.227917, 9.215417], + [-11.229582, 9.212082], + [-11.229583, 9.210416], + [-11.231249, 9.207083], + [-11.233749, 9.205417], + [-11.234583, 9.205417], + [-11.239583, 9.207082], + [-11.246249, 9.207082], + [-11.249583, 9.203749], + [-11.255416, 9.202083], + [-11.257917, 9.203749], + [-11.267916, 9.202917], + [-11.273749, 9.20125], + [-11.275417, 9.201249], + [-11.280887, 9.199686], + [-11.28363, 9.204436], + [-11.291442, 9.204436], + [-11.292524, 9.202562], + [-11.291672, 9.201487], + [-11.291179, 9.200393], + [-11.290999, 9.199709], + [-11.29625, 9.197083], + [-11.302916, 9.197082], + [-11.302917, 9.192082], + [-11.305417, 9.191249], + [-11.309582, 9.189583], + [-11.31375, 9.192916], + [-11.317916, 9.192916], + [-11.32125, 9.189583], + [-11.333749, 9.184582], + [-11.334582, 9.182917], + [-11.336249, 9.182916], + [-11.338749, 9.180416], + [-11.339583, 9.177083], + [-11.342082, 9.17375], + [-11.342916, 9.173749], + [-11.347916, 9.170417], + [-11.34875, 9.170416], + [-11.352916, 9.166249], + [-11.353749, 9.164582], + [-11.35375, 9.16375], + [-11.370416, 9.165416], + [-11.369977, 9.167176], + [-11.370739, 9.167175], + [-11.372486, 9.164153], + [-11.37375, 9.165417], + [-11.378749, 9.167083], + [-11.379981, 9.168314], + [-11.379766, 9.168678], + [-11.382083, 9.170416], + [-11.391472, 9.170416], + [-11.391299, 9.170199], + [-11.390099, 9.166299], + [-11.3897, 9.1609], + [-11.390099, 9.1568], + [-11.3912, 9.1542], + [-11.394, 9.1516], + [-11.402199, 9.1478], + [-11.408099, 9.1463], + [-11.4126, 9.144399], + [-11.4153, 9.1439], + [-11.418799, 9.1444], + [-11.4212, 9.145599], + [-11.433199, 9.1389], + [-11.4449, 9.132799], + [-11.4492, 9.129299], + [-11.452699, 9.1251], + [-11.454599, 9.1213], + [-11.4551, 9.118499], + [-11.455299, 9.1156], + [-11.455199, 9.108299], + [-11.454499, 9.102499], + [-11.452, 9.093], + [-11.451299, 9.088699], + [-11.4508, 9.078399], + [-11.451, 9.068096], + [-11.4515, 9.063799], + [-11.452799, 9.0592], + [-11.4595, 9.039199], + [-11.460999, 9.0335], + [-11.461499, 9.0282], + [-11.460199, 9.022999], + [-11.457, 9.0182], + [-11.451, 9.0116], + [-11.448799, 9.008199], + [-11.446699, 9.002299], + [-11.446, 8.996799], + [-11.446299, 8.9899], + [-11.4473, 8.9858], + [-11.4497, 8.982299], + [-11.4528, 8.979499], + [-11.4591, 8.975299], + [-11.462099, 8.9723], + [-11.463799, 8.97], + [-11.4661, 8.964599], + [-11.4677, 8.958899], + [-11.469199, 8.9523], + [-11.470499, 8.9491], + [-11.4722, 8.946299], + [-11.4768, 8.941899], + [-11.478899, 8.937299], + [-11.479399, 8.933], + [-11.479384, 8.932082] + ] + ], + "type": "Polygon" + }, + "id": 87, + "properties": { + "cc:admin:id": ["99"], + "cc:oBld:total": 5178, + "cc:pop:fifteen-to-twenty-four": 9093.655965018275, + "cc:pop:grid3-total": 57577.927118011336, + "cc:pop:kontur-total": 50236.59945054472, + "cc:pop:men": 23478.43430983589, + "cc:pop:sixty-plus": 2767.583651368851, + "cc:pop:total": 50061.88839568177, + "cc:pop:under-five": 7968.589822544879, + "cc:pop:women": 26583.454085845904, + "cc:pop:women-fiften-to-forty-nine": 13560.55715777031, + "cc:pop:wp-total": 40020.9774011534, + "cc:pop:wp-total-UN": 46454.21292998369, + "cc:id": "87", + "cc:Name": "Fankoya MCHP", + "cc:site": [-11.279, 8.961], + "user:parentName": "Nieni", + "user:code": "OU_226270", + "user:orgUnitId": "fmLRqcL9sWF", + "user:level": "4", + "user:parentId": "J4GiUImJZoE" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.986729, 8.632302], + [-10.986267, 8.631505], + [-10.986544, 8.630014], + [-10.98591, 8.628707], + [-10.985844, 8.627955], + [-10.985683, 8.627754], + [-10.985302, 8.627209], + [-10.98523, 8.626432], + [-10.985007, 8.625674], + [-10.984995, 8.62521], + [-10.984583, 8.625417], + [-10.984582, 8.630416], + [-10.982083, 8.630416], + [-10.981786, 8.629823], + [-10.984202, 8.628539], + [-10.984335, 8.626482], + [-10.984238, 8.626281], + [-10.981786, 8.627188], + [-10.981259, 8.627386], + [-10.981167, 8.6274], + [-10.979731, 8.628014], + [-10.979595, 8.627849], + [-10.979293, 8.627663], + [-10.979127, 8.627208], + [-10.978423, 8.626262], + [-10.978347, 8.626093], + [-10.978828, 8.623082], + [-10.97877, 8.61985], + [-10.978676, 8.619663], + [-10.977665, 8.619174], + [-10.976499, 8.6194], + [-10.9745, 8.620399], + [-10.968699, 8.6249], + [-10.9614, 8.628799], + [-10.958799, 8.6295], + [-10.953126, 8.62984], + [-10.953125, 8.630085], + [-10.953148, 8.630744], + [-10.953209, 8.631335], + [-10.953424, 8.631949], + [-10.953246, 8.632343], + [-10.953535, 8.632632], + [-10.953934, 8.633175], + [-10.954085, 8.633151], + [-10.954678, 8.633488], + [-10.954851, 8.63394], + [-10.9547, 8.634059], + [-10.954976, 8.634547], + [-10.955046, 8.63451], + [-10.95555, 8.63417], + [-10.95563, 8.634107], + [-10.955994, 8.633858], + [-10.956275, 8.634216], + [-10.956857, 8.635034], + [-10.957202, 8.635549], + [-10.957705, 8.636486], + [-10.957897, 8.636471], + [-10.958199, 8.636337], + [-10.958188, 8.636892], + [-10.95863, 8.636954], + [-10.958908, 8.637282], + [-10.959275, 8.638356], + [-10.959304, 8.638396], + [-10.958231, 8.638357], + [-10.958269, 8.638726], + [-10.958208, 8.63903], + [-10.957598, 8.639057], + [-10.959423, 8.639987], + [-10.961084, 8.641101], + [-10.961474, 8.640835], + [-10.961592, 8.64132], + [-10.961684, 8.641407], + [-10.96177, 8.641554], + [-10.961903, 8.641401], + [-10.963112, 8.641411], + [-10.963199, 8.641409], + [-10.963055, 8.642558], + [-10.963837, 8.642619], + [-10.966355, 8.642961], + [-10.966404, 8.642861], + [-10.967147, 8.643244], + [-10.967183, 8.643245], + [-10.967184, 8.643238], + [-10.967999, 8.643138], + [-10.968069, 8.643839], + [-10.968103, 8.644738], + [-10.968665, 8.644599], + [-10.969197, 8.644471], + [-10.969451, 8.645137], + [-10.969469, 8.645507], + [-10.970924, 8.645201], + [-10.971036, 8.645848], + [-10.970993, 8.646315], + [-10.970639, 8.646931], + [-10.970944, 8.647199], + [-10.971058, 8.647348], + [-10.971487, 8.64784], + [-10.972076, 8.648373], + [-10.972638, 8.648385], + [-10.972836, 8.648361], + [-10.973579, 8.648525], + [-10.973436, 8.649021], + [-10.973469, 8.650418], + [-10.973011, 8.650512], + [-10.972976, 8.651225], + [-10.973495, 8.651201], + [-10.974103, 8.651147], + [-10.974335, 8.650363], + [-10.974601, 8.650381], + [-10.974753, 8.652178], + [-10.975308, 8.652245], + [-10.975534, 8.650382], + [-10.975618, 8.649444], + [-10.975354, 8.648683], + [-10.975813, 8.648353], + [-10.975349, 8.647146], + [-10.97621, 8.646836], + [-10.976093, 8.64645], + [-10.976752, 8.646125], + [-10.976895, 8.645756], + [-10.976953, 8.645134], + [-10.976754, 8.64417], + [-10.976796, 8.644114], + [-10.976567, 8.643569], + [-10.977303, 8.643105], + [-10.977098, 8.642888], + [-10.976883, 8.642721], + [-10.976797, 8.642669], + [-10.9768, 8.642602], + [-10.976856, 8.642558], + [-10.976947, 8.642325], + [-10.97698, 8.64198], + [-10.976993, 8.641975], + [-10.977013, 8.641664], + [-10.977774, 8.641597], + [-10.978054, 8.641021], + [-10.978104, 8.64071], + [-10.978241, 8.640041], + [-10.978976, 8.639895], + [-10.980839, 8.639627], + [-10.981452, 8.639381], + [-10.982089, 8.638816], + [-10.982614, 8.637486], + [-10.982674, 8.637344], + [-10.983096, 8.636133], + [-10.983902, 8.634116], + [-10.984506, 8.633591], + [-10.985839, 8.632999], + [-10.986536, 8.632674], + [-10.986729, 8.632302] + ] + ], + "type": "Polygon" + }, + "id": 88, + "properties": { + "cc:admin:id": ["33"], + "cc:oBld:total": 4847, + "cc:pop:fifteen-to-twenty-four": 3648.49352570262, + "cc:pop:grid3-total": 33106.82111231923, + "cc:pop:kontur-total": 17800.421690422572, + "cc:pop:men": 9890.240871328988, + "cc:pop:sixty-plus": 1104.0681042727608, + "cc:pop:total": 18680.56621521792, + "cc:pop:under-five": 2917.9990700241046, + "cc:pop:women": 8790.325343888942, + "cc:pop:women-fiften-to-forty-nine": 4424.4482824479255, + "cc:pop:wp-total": 18073.83699540651, + "cc:pop:wp-total-UN": 20967.38132938864, + "cc:id": "88", + "cc:Name": "Fatkom Muchendeh Maternity Clinic", + "cc:site": [-10.9707, 8.6429], + "user:parentName": "Gbense", + "user:code": "OU_233379", + "user:orgUnitId": "JLKGG67z7oj", + "user:level": "4", + "user:parentId": "TQkG0sX9nca" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.948793, 7.671294], + [-11.947083, 7.669583], + [-11.947082, 7.667917], + [-11.944582, 7.667083], + [-11.942916, 7.664583], + [-11.939582, 7.66125], + [-11.936249, 7.661249], + [-11.923392, 7.660447], + [-11.922744, 7.661278], + [-11.919582, 7.65875], + [-11.915417, 7.660417], + [-11.917082, 7.669583], + [-11.909583, 7.669584], + [-11.904583, 7.67375], + [-11.904582, 7.677083], + [-11.902083, 7.677084], + [-11.89875, 7.679584], + [-11.900166, 7.687375], + [-11.900655, 7.687323], + [-11.902082, 7.693749], + [-11.902082, 7.697083], + [-11.89375, 7.69625], + [-11.89125, 7.697917], + [-11.89125, 7.704583], + [-11.892082, 7.707916], + [-11.897916, 7.70625], + [-11.90125, 7.713749], + [-11.910416, 7.712917], + [-11.911249, 7.720416], + [-11.907082, 7.72375], + [-11.905417, 7.729583], + [-11.907082, 7.73375], + [-11.903749, 7.736249], + [-11.892082, 7.735417], + [-11.891891, 7.735801], + [-11.892067, 7.735905], + [-11.894129, 7.736307], + [-11.897415, 7.736061], + [-11.898, 7.73614], + [-11.898938, 7.73654], + [-11.89984, 7.737282], + [-11.899503, 7.737559], + [-11.899162, 7.738176], + [-11.897835, 7.738774], + [-11.897687, 7.739236], + [-11.897995, 7.740476], + [-11.898303, 7.741413], + [-11.896555, 7.744255], + [-11.901539, 7.746471], + [-11.902753, 7.743629], + [-11.906329, 7.739397], + [-11.907519, 7.737613], + [-11.90947, 7.735536], + [-11.916809, 7.7361], + [-11.917116, 7.735954], + [-11.917603, 7.736043], + [-11.9182, 7.735399], + [-11.920299, 7.7326], + [-11.922699, 7.7281], + [-11.924899, 7.7252], + [-11.9299, 7.719899], + [-11.9319, 7.716999], + [-11.933699, 7.7131], + [-11.9357, 7.709599], + [-11.937699, 7.7053], + [-11.942, 7.699899], + [-11.9439, 7.696499], + [-11.946299, 7.6917], + [-11.947, 7.689199], + [-11.947299, 7.6865], + [-11.9472, 7.6782], + [-11.9473, 7.675499], + [-11.9477, 7.6733], + [-11.948793, 7.671294] + ] + ], + "type": "Polygon" + }, + "id": 89, + "properties": { + "cc:admin:id": ["78"], + "cc:oBld:total": 1, + "cc:pop:fifteen-to-twenty-four": 822.2085382682142, + "cc:pop:grid3-total": 2341.278275141665, + "cc:pop:kontur-total": 4279.632483310863, + "cc:pop:men": 2351.1046084940094, + "cc:pop:sixty-plus": 310.9586101664936, + "cc:pop:total": 4530.015220209249, + "cc:pop:under-five": 727.675498037873, + "cc:pop:women": 2178.9106117152387, + "cc:pop:women-fiften-to-forty-nine": 1031.694802702303, + "cc:pop:wp-total": 3328.853195033147, + "cc:pop:wp-total-UN": 3863.2048073622636, + "cc:id": "89", + "cc:Name": "Feiba CHP", + "cc:site": [-11.9229, 7.6842], + "user:parentName": "Lugbu", + "user:code": "OU_1054", + "user:orgUnitId": "r4W2vzlmPhm", + "user:level": "4", + "user:parentId": "kU8vhUkAGaT" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.677083, 8.577916], + [-10.677082, 8.572084], + [-10.66875, 8.569583], + [-10.67072, 8.565642], + [-10.670861, 8.565674], + [-10.670957, 8.565732], + [-10.673749, 8.55875], + [-10.671249, 8.55625], + [-10.669583, 8.556249], + [-10.669582, 8.554584], + [-10.66625, 8.551249], + [-10.666249, 8.542917], + [-10.65625, 8.544583], + [-10.658749, 8.537917], + [-10.657082, 8.534584], + [-10.651394, 8.534584], + [-10.651467, 8.534674], + [-10.650416, 8.536249], + [-10.648749, 8.535417], + [-10.642917, 8.535417], + [-10.642082, 8.537916], + [-10.637916, 8.53625], + [-10.63375, 8.536249], + [-10.632916, 8.532084], + [-10.627917, 8.532916], + [-10.626356, 8.531876], + [-10.626088, 8.532332], + [-10.626111, 8.534564], + [-10.625847, 8.5352], + [-10.62375, 8.536249], + [-10.623299, 8.53625], + [-10.622399, 8.5417], + [-10.618099, 8.5433], + [-10.6079, 8.546], + [-10.6022, 8.5498], + [-10.6006, 8.555899], + [-10.6035, 8.5596], + [-10.6074, 8.5669], + [-10.611299, 8.575299], + [-10.612799, 8.581099], + [-10.615199, 8.5865], + [-10.6158, 8.5915], + [-10.6159, 8.6149], + [-10.616099, 8.618599], + [-10.616999, 8.622199], + [-10.6185, 8.6245], + [-10.621999, 8.628699], + [-10.622513, 8.630001], + [-10.623359, 8.63009], + [-10.623577, 8.630588], + [-10.626249, 8.627916], + [-10.62625, 8.626249], + [-10.634582, 8.624584], + [-10.639582, 8.623749], + [-10.644582, 8.619584], + [-10.646249, 8.619583], + [-10.645417, 8.615416], + [-10.655416, 8.61375], + [-10.656249, 8.61375], + [-10.665416, 8.616249], + [-10.662917, 8.607916], + [-10.66375, 8.60625], + [-10.664582, 8.605416], + [-10.665416, 8.602084], + [-10.66625, 8.602083], + [-10.667916, 8.597917], + [-10.670416, 8.597083], + [-10.66875, 8.592917], + [-10.669582, 8.590417], + [-10.674582, 8.590416], + [-10.674583, 8.586249], + [-10.676249, 8.577917], + [-10.677083, 8.577916] + ] + ], + "type": "Polygon" + }, + "id": 90, + "properties": { + "cc:admin:id": ["125"], + "cc:oBld:total": 855, + "cc:pop:fifteen-to-twenty-four": 698.4142439956414, + "cc:pop:grid3-total": 4991.19419590143, + "cc:pop:kontur-total": 3803.7792236376604, + "cc:pop:men": 1585.6748262025003, + "cc:pop:sixty-plus": 160.26430526389998, + "cc:pop:total": 3492.0712199782056, + "cc:pop:under-five": 617.0089953090971, + "cc:pop:women": 1906.396393775707, + "cc:pop:women-fiften-to-forty-nine": 870.6785492595413, + "cc:pop:wp-total": 2636.4080270362633, + "cc:pop:wp-total-UN": 3061.6693114131353, + "cc:id": "90", + "cc:Name": "Feuror MCHP", + "cc:site": [-10.6418, 8.5924], + "user:parentName": "Soa", + "user:code": "OU_233320", + "user:orgUnitId": "rYIkxCJFtTX", + "user:level": "4", + "user:parentId": "iGHlidSFdpu" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.377802, 9.685302], + [-12.377082, 9.684583], + [-12.371088, 9.685044], + [-12.373592, 9.680704], + [-12.369686, 9.673939], + [-12.368955, 9.673939], + [-12.368333, 9.674551], + [-12.364747, 9.677132], + [-12.364395, 9.677683], + [-12.35684, 9.677683], + [-12.352934, 9.670917], + [-12.35684, 9.664152], + [-12.352933, 9.657386], + [-12.346209, 9.657385], + [-12.347077, 9.656618], + [-12.343878, 9.651076], + [-12.347783, 9.644311], + [-12.343878, 9.637546], + [-12.336066, 9.637545], + [-12.332158, 9.63078], + [-12.324346, 9.630779], + [-12.32044, 9.624014], + [-12.319372, 9.624013], + [-12.319583, 9.623749], + [-12.319582, 9.619167], + [-12.311955, 9.619167], + [-12.308048, 9.625933], + [-12.301895, 9.625933], + [-12.30125, 9.625417], + [-12.300654, 9.617688], + [-12.297002, 9.624014], + [-12.289191, 9.624014], + [-12.288861, 9.624582], + [-12.285214, 9.624582], + [-12.284901, 9.623951], + [-12.284805, 9.62331], + [-12.284913, 9.622484], + [-12.285456, 9.620916], + [-12.285513, 9.619715], + [-12.279511, 9.619715], + [-12.275604, 9.62648], + [-12.27352, 9.626481], + [-12.270416, 9.629582], + [-12.260417, 9.628749], + [-12.25723, 9.62636], + [-12.257231, 9.626359], + [-12.262193, 9.626358], + [-12.26213, 9.625508], + [-12.261176, 9.62378], + [-12.260956, 9.622919], + [-12.262102, 9.623514], + [-12.26558, 9.624069], + [-12.265672, 9.622811], + [-12.26533, 9.621348], + [-12.265163, 9.621246], + [-12.266309, 9.619555], + [-12.265978, 9.619382], + [-12.265688, 9.618935], + [-12.265301, 9.617742], + [-12.263692, 9.615794], + [-12.262972, 9.614466], + [-12.257083, 9.617083], + [-12.256648, 9.619689], + [-12.251104, 9.61969], + [-12.247197, 9.612924], + [-12.241574, 9.612924], + [-12.242082, 9.622082], + [-12.237917, 9.625417], + [-12.238585, 9.633451], + [-12.238584, 9.633451], + [-12.235809, 9.628647], + [-12.227998, 9.628647], + [-12.224091, 9.635412], + [-12.223972, 9.635413], + [-12.223749, 9.638749], + [-12.219582, 9.642082], + [-12.215672, 9.642082], + [-12.215774, 9.641839], + [-12.215574, 9.639912], + [-12.215841, 9.638543], + [-12.207083, 9.637083], + [-12.204582, 9.639583], + [-12.20125, 9.642082], + [-12.19625, 9.64125], + [-12.192083, 9.637916], + [-12.191429, 9.632036], + [-12.1895, 9.635377], + [-12.181688, 9.635377], + [-12.177781, 9.628612], + [-12.170748, 9.628612], + [-12.170416, 9.632916], + [-12.16625, 9.636249], + [-12.158979, 9.63625], + [-12.1595, 9.637039], + [-12.159772, 9.637797], + [-12.159934, 9.639002], + [-12.159806, 9.641123], + [-12.158721, 9.641123], + [-12.15872, 9.641122], + [-12.159019, 9.639692], + [-12.158987, 9.638528], + [-12.158482, 9.637245], + [-12.155586, 9.632148], + [-12.155094, 9.63085], + [-12.152571, 9.630849], + [-12.14981, 9.626068], + [-12.149582, 9.62625], + [-12.14375, 9.62625], + [-12.143693, 9.625934], + [-12.138619, 9.625933], + [-12.134712, 9.619168], + [-12.130064, 9.619167], + [-12.129921, 9.617318], + [-12.129135, 9.617318], + [-12.125228, 9.624083], + [-12.117416, 9.624084], + [-12.113509, 9.630849], + [-12.105696, 9.63085], + [-12.101791, 9.637615], + [-12.105696, 9.644381], + [-12.102098, 9.650615], + [-12.102916, 9.661249], + [-12.097916, 9.666249], + [-12.090417, 9.666249], + [-12.090416, 9.65125], + [-12.084438, 9.65922], + [-12.081791, 9.654639], + [-12.07663, 9.654638], + [-12.076898, 9.651147], + [-12.070541, 9.651147], + [-12.066635, 9.657912], + [-12.058822, 9.657913], + [-12.054916, 9.664678], + [-12.049865, 9.664679], + [-12.04917, 9.65988], + [-12.046124, 9.66221], + [-12.046053, 9.66209], + [-12.038974, 9.662089], + [-12.039017, 9.661713], + [-12.038815, 9.661136], + [-12.03777, 9.660335], + [-12.039582, 9.657916], + [-12.038844, 9.649794], + [-12.037399, 9.6507], + [-12.0297, 9.654299], + [-12.019699, 9.6567], + [-12.0075, 9.661799], + [-12.000899, 9.6638], + [-11.991199, 9.6674], + [-11.987299, 9.6694], + [-11.9776, 9.676499], + [-11.971299, 9.6791], + [-11.9627, 9.683999], + [-11.9452, 9.690299], + [-11.9379, 9.694499], + [-11.9352, 9.695499], + [-11.930799, 9.6963], + [-11.9204, 9.697399], + [-11.9128, 9.699399], + [-11.908199, 9.7], + [-11.89, 9.700899], + [-11.8831, 9.7001], + [-11.8847, 9.711], + [-11.885399, 9.729099], + [-11.886499, 9.738599], + [-11.8854, 9.754], + [-11.8854, 9.764699], + [-11.885699, 9.772199], + [-11.8862, 9.7766], + [-11.888599, 9.786099], + [-11.889099, 9.7901], + [-11.888899, 9.7954], + [-11.8865, 9.805999], + [-11.8865, 9.811299], + [-11.8873, 9.8151], + [-11.890699, 9.821599], + [-11.891999, 9.824799], + [-11.8932, 9.8297], + [-11.893199, 9.8364], + [-11.890399, 9.8485], + [-11.8901, 9.852899], + [-11.8903, 9.8571], + [-11.8913, 9.861], + [-11.8934, 9.864899], + [-11.8956, 9.8668], + [-11.9006, 9.8692], + [-11.903099, 9.871399], + [-11.910599, 9.880399], + [-11.912199, 9.8841], + [-11.911999, 9.8902], + [-11.909799, 9.8937], + [-11.9035, 9.8995], + [-11.9024, 9.9025], + [-11.9021, 9.9079], + [-11.903299, 9.9186], + [-11.9026, 9.928399], + [-11.902899, 9.936899], + [-11.9017, 9.941699], + [-11.9066, 9.935799], + [-11.918599, 9.9326], + [-11.9256, 9.928899], + [-11.9379, 9.926499], + [-11.9723, 9.916099], + [-12.029199, 9.8988], + [-12.047499, 9.8953], + [-12.061399, 9.8892], + [-12.079499, 9.8855], + [-12.0825, 9.883499], + [-12.119999, 9.8719], + [-12.1265, 9.8714], + [-12.141799, 9.874299], + [-12.151642, 9.879384], + [-12.151359, 9.878892], + [-12.15296, 9.87612], + [-12.154848, 9.877703], + [-12.154951, 9.878087], + [-12.154028, 9.879709], + [-12.153912, 9.880269], + [-12.154075, 9.88057], + [-12.155079, 9.881148], + [-12.155637, 9.881232], + [-12.156242, 9.88079], + [-12.155121, 9.878847], + [-12.159026, 9.872082], + [-12.166839, 9.872082], + [-12.170746, 9.878847], + [-12.178557, 9.878847], + [-12.182464, 9.872082], + [-12.190276, 9.872081], + [-12.194183, 9.865317], + [-12.201995, 9.865316], + [-12.205902, 9.858551], + [-12.213714, 9.85855], + [-12.21762, 9.851785], + [-12.219315, 9.851784], + [-12.220049, 9.850318], + [-12.226785, 9.850318], + [-12.230691, 9.857083], + [-12.233749, 9.857082], + [-12.23375, 9.85625], + [-12.235416, 9.856249], + [-12.238749, 9.852917], + [-12.240404, 9.852916], + [-12.241058, 9.851785], + [-12.24642, 9.851784], + [-12.245475, 9.849768], + [-12.243973, 9.844809], + [-12.244103, 9.842409], + [-12.243764, 9.841673], + [-12.243762, 9.841386], + [-12.249696, 9.841385], + [-12.25172, 9.837881], + [-12.252272, 9.838569], + [-12.255501, 9.838569], + [-12.259406, 9.831804], + [-12.260122, 9.831803], + [-12.260037, 9.831649], + [-12.260032, 9.830972], + [-12.258855, 9.82642], + [-12.25754, 9.823653], + [-12.256871, 9.822785], + [-12.264582, 9.822083], + [-12.266249, 9.822916], + [-12.26625, 9.81625], + [-12.267706, 9.814428], + [-12.266488, 9.812317], + [-12.270393, 9.805552], + [-12.266488, 9.798786], + [-12.270393, 9.79202], + [-12.266488, 9.785253], + [-12.270393, 9.778488], + [-12.278206, 9.778487], + [-12.282112, 9.771723], + [-12.278207, 9.764957], + [-12.282112, 9.758191], + [-12.289925, 9.75819], + [-12.293831, 9.751425], + [-12.301643, 9.751424], + [-12.30555, 9.744659], + [-12.309528, 9.744658], + [-12.30875, 9.73375], + [-12.311911, 9.730588], + [-12.312452, 9.731314], + [-12.314731, 9.733863], + [-12.317048, 9.735881], + [-12.318527, 9.738353], + [-12.318865, 9.73872], + [-12.320104, 9.739605], + [-12.320244, 9.739667], + [-12.320805, 9.7404], + [-12.32236, 9.74183], + [-12.322429, 9.741875], + [-12.322916, 9.740417], + [-12.324582, 9.740416], + [-12.330416, 9.734583], + [-12.330665, 9.734832], + [-12.334529, 9.734831], + [-12.338436, 9.728066], + [-12.33453, 9.7213], + [-12.338436, 9.714534], + [-12.346248, 9.714533], + [-12.34625, 9.714532], + [-12.34625, 9.712082], + [-12.354582, 9.705417], + [-12.360416, 9.705416], + [-12.360417, 9.695417], + [-12.362082, 9.692917], + [-12.362365, 9.692069], + [-12.370135, 9.692069], + [-12.370973, 9.693521], + [-12.370992, 9.693478], + [-12.371323, 9.692225], + [-12.37104, 9.69001], + [-12.37126, 9.689397], + [-12.371759, 9.689257], + [-12.374041, 9.685303], + [-12.377802, 9.685302] + ] + ], + "type": "Polygon" + }, + "id": 91, + "properties": { + "cc:admin:id": ["131"], + "cc:oBld:total": 595, + "cc:pop:fifteen-to-twenty-four": 982.8868018567584, + "cc:pop:grid3-total": 9704.867234027932, + "cc:pop:kontur-total": 5822.519154167118, + "cc:pop:men": 2688.496659894525, + "cc:pop:sixty-plus": 408.66109536099856, + "cc:pop:total": 5566.19158887103, + "cc:pop:under-five": 878.9796025170857, + "cc:pop:women": 2877.6949289765043, + "cc:pop:women-fiften-to-forty-nine": 1391.5478972177575, + "cc:pop:wp-total": 4525.287339707403, + "cc:pop:wp-total-UN": 5243.412470633613, + "cc:id": "91", + "cc:Name": "Fintonia CHC", + "cc:site": [-12.225, 9.674], + "user:parentName": "Tambaka", + "user:code": "OU_193247", + "user:orgUnitId": "xKaB8tfbTzm", + "user:level": "4", + "user:parentId": "Qhmi8IZyPyD" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [-13.138799, 8.451299], + [-13.138199, 8.4485], + [-13.136799, 8.447099], + [-13.135999, 8.444299], + [-13.1343, 8.4407], + [-13.134599, 8.4393], + [-13.132099, 8.4368], + [-13.130699, 8.436499], + [-13.1276, 8.4349], + [-13.126799, 8.434], + [-13.1243, 8.433499], + [-13.122399, 8.4321], + [-13.120099, 8.431499], + [-13.117399, 8.4301], + [-13.115999, 8.430399], + [-13.113199, 8.430099], + [-13.1088, 8.428199], + [-13.1071, 8.4263], + [-13.105099, 8.4249], + [-13.103999, 8.424899], + [-13.102099, 8.4235], + [-13.0976, 8.423199], + [-13.0951, 8.4221], + [-13.0932, 8.4218], + [-13.092399, 8.4204], + [-13.0899, 8.4193], + [-13.089599, 8.4188], + [-13.0846, 8.4188], + [-13.0829, 8.4185], + [-13.082399, 8.419], + [-13.0771, 8.4204], + [-13.0751, 8.4232], + [-13.0751, 8.427399], + [-13.0754, 8.4274], + [-13.076799, 8.430999], + [-13.076, 8.430999], + [-13.075099, 8.429299], + [-13.074299, 8.4265], + [-13.073199, 8.425399], + [-13.0729, 8.4232], + [-13.073499, 8.4207], + [-13.072899, 8.4185], + [-13.071799, 8.4176], + [-13.069299, 8.4168], + [-13.0665, 8.4168], + [-13.0657, 8.418199], + [-13.064, 8.4188], + [-13.062599, 8.420699], + [-13.0587, 8.4207], + [-13.0562, 8.4204], + [-13.055399, 8.4215], + [-13.0546, 8.423799], + [-13.053499, 8.4243], + [-13.0518, 8.424299], + [-13.050701, 8.4232], + [-13.052601, 8.422792], + [-13.052535, 8.422778], + [-13.052534, 8.422777], + [-13.053372, 8.419425], + [-13.053259, 8.41932], + [-13.051905, 8.419284], + [-13.051618, 8.419455], + [-13.051374, 8.42006], + [-13.050998, 8.420028], + [-13.049689, 8.419227], + [-13.04914, 8.419258], + [-13.047666, 8.418492], + [-13.047338, 8.417739], + [-13.04759, 8.417047], + [-13.047423, 8.416743], + [-13.046972, 8.41673], + [-13.04606, 8.4173], + [-13.045301, 8.418141], + [-13.044583, 8.418158], + [-13.041881, 8.417105], + [-13.041795, 8.417372], + [-13.041943, 8.417648], + [-13.042291, 8.417725], + [-13.0428, 8.418452], + [-13.042761, 8.419381], + [-13.043202, 8.41989], + [-13.043306, 8.42044], + [-13.04313, 8.42081], + [-13.042512, 8.421046], + [-13.041673, 8.420877], + [-13.040844, 8.42031], + [-13.040473, 8.424017], + [-13.040429, 8.424011], + [-13.040237, 8.423857], + [-13.040068, 8.424159], + [-13.039852, 8.424269], + [-13.039686, 8.424583], + [-13.03758, 8.424583], + [-13.037804, 8.42402], + [-13.037623, 8.423566], + [-13.036382, 8.423033], + [-13.03502, 8.422829], + [-13.033778, 8.423261], + [-13.030707, 8.422033], + [-13.030866, 8.422569], + [-13.030596, 8.42298], + [-13.029315, 8.423425], + [-13.029409, 8.42494], + [-13.028988, 8.424989], + [-13.028451, 8.424467], + [-13.02639, 8.424052], + [-13.02485, 8.425775], + [-13.024304, 8.426062], + [-13.023812, 8.426783], + [-13.023765, 8.426674], + [-13.021738, 8.425661], + [-13.021157, 8.425788], + [-13.019812, 8.431169], + [-13.01981, 8.431169], + [-13.01973, 8.431103], + [-13.019583, 8.43125], + [-13.019582, 8.436249], + [-13.016673, 8.435668], + [-13.015628, 8.438177], + [-13.015495, 8.438484], + [-13.014396, 8.440944], + [-13.014068, 8.441108], + [-13.012738, 8.441162], + [-13.011632, 8.441439], + [-13.007242, 8.443711], + [-13.014582, 8.449583], + [-13.016249, 8.449584], + [-13.016249, 8.45125], + [-13.014744, 8.457273], + [-13.013901, 8.45716], + [-13.012083, 8.459584], + [-13.012083, 8.460427], + [-13.012948, 8.460167], + [-13.013188, 8.460268], + [-13.014977, 8.462286], + [-13.015467, 8.463184], + [-13.015616, 8.463866], + [-13.015383, 8.464943], + [-13.015079, 8.46522], + [-13.01472, 8.465297], + [-13.012381, 8.464215], + [-13.01223, 8.464236], + [-13.012571, 8.467307], + [-13.01284, 8.467369], + [-13.01329, 8.4677], + [-13.013403, 8.468109], + [-13.013248, 8.468593], + [-13.013576, 8.469398], + [-13.013051, 8.469748], + [-13.013009, 8.470084], + [-13.013362, 8.470398], + [-13.014952, 8.470587], + [-13.016072, 8.470186], + [-13.01667, 8.470221], + [-13.017549, 8.470588], + [-13.017891, 8.47092], + [-13.018171, 8.472079], + [-13.017634, 8.473144], + [-13.017679, 8.473273], + [-13.020096, 8.473878], + [-13.019997, 8.473403], + [-13.01965, 8.471425], + [-13.019372, 8.46955], + [-13.019199, 8.468647], + [-13.018816, 8.4675], + [-13.018746, 8.466494], + [-13.01781, 8.465939], + [-13.016907, 8.465626], + [-13.016803, 8.465002], + [-13.016804, 8.465001], + [-13.017739, 8.465452], + [-13.018087, 8.465139], + [-13.018156, 8.463682], + [-13.017879, 8.462812], + [-13.018156, 8.461774], + [-13.018157, 8.461774], + [-13.018574, 8.462675], + [-13.018712, 8.463507], + [-13.018781, 8.464514], + [-13.01892, 8.465452], + [-13.019199, 8.46632], + [-13.019474, 8.466547], + [-13.020399, 8.4668], + [-13.0204, 8.468799], + [-13.021299, 8.4707], + [-13.0213, 8.472599], + [-13.0218, 8.4726], + [-13.0224, 8.474899], + [-13.023799, 8.475099], + [-13.024898, 8.4746], + [-13.024899, 8.474601], + [-13.0249, 8.478799], + [-13.025699, 8.4799], + [-13.026, 8.4824], + [-13.0296, 8.487599], + [-13.0313, 8.4888], + [-13.034899, 8.492599], + [-13.0354, 8.4938], + [-13.0371, 8.495399], + [-13.0376, 8.4954], + [-13.0388, 8.497899], + [-13.0396, 8.4985], + [-13.040099, 8.5013], + [-13.038999, 8.504599], + [-13.0376, 8.505999], + [-13.0365, 8.5063], + [-13.0346, 8.508799], + [-13.0326, 8.5096], + [-13.031299, 8.5115], + [-13.028799, 8.5126], + [-13.026, 8.5154], + [-13.0257, 8.517099], + [-13.0276, 8.518199], + [-13.029299, 8.5182], + [-13.0301, 8.518999], + [-13.0313, 8.519], + [-13.035699, 8.521299], + [-13.0371, 8.522599], + [-13.0382, 8.5226], + [-13.040999, 8.524599], + [-13.042099, 8.524899], + [-13.0424, 8.525699], + [-13.0435, 8.5257], + [-13.0449, 8.5268], + [-13.0471, 8.5279], + [-13.049, 8.527899], + [-13.051299, 8.527099], + [-13.052099, 8.526299], + [-13.052599, 8.524], + [-13.053199, 8.523999], + [-13.053799, 8.522399], + [-13.0538, 8.5207], + [-13.054299, 8.519599], + [-13.0546, 8.5162], + [-13.055399, 8.514899], + [-13.0554, 8.5124], + [-13.056799, 8.512599], + [-13.058199, 8.511499], + [-13.059299, 8.508799], + [-13.0593, 8.5068], + [-13.060099, 8.505699], + [-13.0604, 8.5038], + [-13.061499, 8.502599], + [-13.0621, 8.500999], + [-13.063199, 8.5001], + [-13.064599, 8.499899], + [-13.0671, 8.4979], + [-13.070399, 8.4979], + [-13.0704, 8.498199], + [-13.073699, 8.4982], + [-13.075099, 8.498499], + [-13.078199, 8.497399], + [-13.079299, 8.4951], + [-13.080399, 8.494299], + [-13.0804, 8.4926], + [-13.080999, 8.491499], + [-13.081, 8.489899], + [-13.081799, 8.4885], + [-13.082899, 8.487899], + [-13.0835, 8.4868], + [-13.0849, 8.487599], + [-13.089599, 8.487599], + [-13.0904, 8.4868], + [-13.092599, 8.485699], + [-13.0932, 8.4846], + [-13.0949, 8.4851], + [-13.0976, 8.4854], + [-13.1004, 8.486499], + [-13.103199, 8.4865], + [-13.104, 8.487399], + [-13.105099, 8.487399], + [-13.106499, 8.486299], + [-13.106499, 8.484], + [-13.1054, 8.483199], + [-13.1054, 8.4807], + [-13.107099, 8.478499], + [-13.1068, 8.4746], + [-13.108499, 8.472599], + [-13.108499, 8.4715], + [-13.1076, 8.4704], + [-13.1076, 8.4693], + [-13.1085, 8.4676], + [-13.1104, 8.465699], + [-13.110399, 8.4621], + [-13.1088, 8.4601], + [-13.107399, 8.4596], + [-13.1038, 8.4596], + [-13.101799, 8.460099], + [-13.0968, 8.4599], + [-13.0962, 8.461799], + [-13.097399, 8.4643], + [-13.097399, 8.466299], + [-13.096499, 8.467099], + [-13.0946, 8.467099], + [-13.090699, 8.4635], + [-13.089299, 8.4632], + [-13.0837, 8.463199], + [-13.0815, 8.4615], + [-13.0815, 8.4585], + [-13.0818, 8.4568], + [-13.0835, 8.4568], + [-13.0837, 8.459], + [-13.0837, 8.462399], + [-13.0904, 8.4624], + [-13.092399, 8.4632], + [-13.0951, 8.4663], + [-13.096499, 8.466299], + [-13.096499, 8.4646], + [-13.0951, 8.462599], + [-13.0951, 8.4604], + [-13.0968, 8.4585], + [-13.100399, 8.4585], + [-13.1004, 8.4588], + [-13.103499, 8.4588], + [-13.104, 8.4582], + [-13.106499, 8.4582], + [-13.108999, 8.458799], + [-13.110699, 8.460699], + [-13.111799, 8.4626], + [-13.1126, 8.467599], + [-13.114899, 8.4676], + [-13.116, 8.4671], + [-13.118799, 8.467099], + [-13.120999, 8.465999], + [-13.1204, 8.462899], + [-13.1215, 8.4615], + [-13.123799, 8.460399], + [-13.1249, 8.4571], + [-13.125699, 8.456], + [-13.127099, 8.456], + [-13.1276, 8.457099], + [-13.1313, 8.456499], + [-13.135999, 8.4543], + [-13.136799, 8.454299], + [-13.1374, 8.4529], + [-13.138799, 8.451299] + ] + ], + [ + [ + [-13.112599, 8.476799], + [-13.112099, 8.4757], + [-13.1107, 8.476], + [-13.111, 8.477399], + [-13.112099, 8.477599], + [-13.112599, 8.476799] + ] + ], + [ + [ + [-13.120099, 8.4707], + [-13.118999, 8.4688], + [-13.1182, 8.4688], + [-13.1174, 8.470399], + [-13.119, 8.471799], + [-13.120099, 8.471799], + [-13.120099, 8.4707] + ] + ] + ], + "type": "MultiPolygon" + }, + "id": 92, + "properties": { + "cc:admin:id": ["62"], + "cc:oBld:total": 106, + "cc:pop:fifteen-to-twenty-four": 575.4713343381044, + "cc:pop:grid3-total": 2172.816757868077, + "cc:pop:kontur-total": 3064.086132561955, + "cc:pop:men": 1548.8663763379238, + "cc:pop:sixty-plus": 184.25809172582836, + "cc:pop:total": 3272.979655700485, + "cc:pop:under-five": 545.4966092834145, + "cc:pop:women": 1724.1132793625625, + "cc:pop:women-fiften-to-forty-nine": 896.744663042344, + "cc:pop:wp-total": 3060.786722669729, + "cc:pop:wp-total-UN": 3539.9481689050026, + "cc:id": "92", + "cc:Name": "Fogbo (WAR) MCHP", + "cc:site": [-13.05933, 8.44316], + "user:parentName": "Rural Western Area", + "user:code": "OU_278369", + "user:orgUnitId": "aVycEyoSBJx", + "user:level": "4", + "user:parentId": "qtr8GGlm4gg" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.072377, 8.317905], + [-12.068471, 8.31114], + [-12.062436, 8.311139], + [-12.062094, 8.310766], + [-12.061199, 8.309493], + [-12.059292, 8.305979], + [-12.058359, 8.306446], + [-12.060494, 8.310301], + [-12.061804, 8.312062], + [-12.063392, 8.313611], + [-12.066705, 8.315713], + [-12.06625, 8.317083], + [-12.067199, 8.318508], + [-12.067059, 8.319078], + [-12.066546, 8.320283], + [-12.065493, 8.322021], + [-12.063805, 8.324113], + [-12.060365, 8.327605], + [-12.061227, 8.328179], + [-12.064026, 8.325526], + [-12.064682, 8.324671], + [-12.068471, 8.32467], + [-12.072377, 8.317905] + ] + ], + "type": "Polygon" + }, + "id": 93, + "properties": { + "cc:admin:id": ["149"], + "cc:oBld:total": 0, + "cc:pop:fifteen-to-twenty-four": 83, + "cc:pop:grid3-total": 752, + "cc:pop:kontur-total": 164.44495967625295, + "cc:pop:men": 205, + "cc:pop:sixty-plus": 28.000000000000004, + "cc:pop:total": 441, + "cc:pop:under-five": 71, + "cc:pop:women": 235.99999999999997, + "cc:pop:women-fiften-to-forty-nine": 118, + "cc:pop:wp-total": 264, + "cc:pop:wp-total-UN": 307, + "cc:id": "93", + "cc:Name": "Foindu MCHP", + "cc:site": [-12.0712, 8.3175], + "user:parentName": "Yoni", + "user:code": "OU_268236", + "user:orgUnitId": "D3oZZXtXjNk", + "user:level": "4", + "user:parentId": "NNE0YMCDZkO" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.554699, 8.7693], + [-12.5483, 8.7651], + [-12.5445, 8.7638], + [-12.5343, 8.7632], + [-12.531699, 8.762399], + [-12.5256, 8.758699], + [-12.522799, 8.755199], + [-12.520499, 8.753099], + [-12.517799, 8.751399], + [-12.514899, 8.7487], + [-12.5053, 8.7487], + [-12.501399, 8.748499], + [-12.4978, 8.747299], + [-12.4927, 8.7435], + [-12.489499, 8.741799], + [-12.4844, 8.7405], + [-12.4792, 8.7382], + [-12.4764, 8.7375], + [-12.469499, 8.7373], + [-12.4661, 8.737699], + [-12.464, 8.738399], + [-12.4581, 8.742299], + [-12.4553, 8.746099], + [-12.452299, 8.7495], + [-12.449399, 8.7517], + [-12.446199, 8.7531], + [-12.441999, 8.7555], + [-12.4331, 8.759299], + [-12.426499, 8.7601], + [-12.423899, 8.7608], + [-12.419399, 8.7627], + [-12.415699, 8.7634], + [-12.406999, 8.7635], + [-12.4041, 8.763699], + [-12.401399, 8.7643], + [-12.393099, 8.7684], + [-12.389399, 8.7715], + [-12.3823, 8.778599], + [-12.379299, 8.781], + [-12.3701, 8.785399], + [-12.364999, 8.7865], + [-12.3567, 8.790299], + [-12.3515, 8.792799], + [-12.346399, 8.794], + [-12.3412, 8.796299], + [-12.337399, 8.7971], + [-12.3335, 8.797299], + [-12.3296, 8.7971], + [-12.3272, 8.796599], + [-12.324599, 8.795099], + [-12.3209, 8.792], + [-12.3173, 8.7875], + [-12.3126, 8.795999], + [-12.31, 8.802799], + [-12.3076, 8.810599], + [-12.3069, 8.8151], + [-12.3076, 8.8197], + [-12.309499, 8.823999], + [-12.313999, 8.829999], + [-12.3172, 8.835], + [-12.3225, 8.842], + [-12.326399, 8.849399], + [-12.327999, 8.853799], + [-12.328599, 8.857299], + [-12.3285, 8.860799], + [-12.3259, 8.872199], + [-12.3249, 8.882699], + [-12.332299, 8.8794], + [-12.338199, 8.8758], + [-12.341399, 8.8745], + [-12.344799, 8.8741], + [-12.348299, 8.8749], + [-12.3515, 8.8768], + [-12.354799, 8.879799], + [-12.372399, 8.897499], + [-12.381399, 8.906099], + [-12.3849, 8.9089], + [-12.3915, 8.9133], + [-12.400399, 8.921099], + [-12.403799, 8.923899], + [-12.412399, 8.928699], + [-12.420199, 8.931899], + [-12.4244, 8.9327], + [-12.432999, 8.933299], + [-12.433099, 8.933299], + [-12.4327, 8.926399], + [-12.432899, 8.9228], + [-12.433499, 8.9198], + [-12.437399, 8.9135], + [-12.442699, 8.9101], + [-12.448, 8.907499], + [-12.455299, 8.9021], + [-12.4585, 8.900599], + [-12.462699, 8.8982], + [-12.4659, 8.896899], + [-12.470699, 8.8946], + [-12.477, 8.892999], + [-12.481399, 8.8908], + [-12.4846, 8.889499], + [-12.4888, 8.887099], + [-12.496199, 8.8834], + [-12.503, 8.880299], + [-12.5065, 8.879099], + [-12.5094, 8.8789], + [-12.522199, 8.878899], + [-12.525899, 8.875199], + [-12.5257, 8.8563], + [-12.5258, 8.850399], + [-12.526, 8.847599], + [-12.527599, 8.841899], + [-12.527199, 8.839599], + [-12.5242, 8.8333], + [-12.5204, 8.8293], + [-12.517099, 8.8274], + [-12.514799, 8.826899], + [-12.507, 8.8267], + [-12.5037, 8.8262], + [-12.501499, 8.825099], + [-12.499199, 8.823399], + [-12.495, 8.8192], + [-12.4926, 8.8162], + [-12.4884, 8.8079], + [-12.4877, 8.804399], + [-12.488399, 8.8007], + [-12.4917, 8.794799], + [-12.4935, 8.793299], + [-12.499099, 8.7903], + [-12.504999, 8.7889], + [-12.5103, 8.786699], + [-12.5162, 8.785299], + [-12.524599, 8.7814], + [-12.5289, 8.778999], + [-12.5362, 8.775599], + [-12.5392, 8.774899], + [-12.546999, 8.7746], + [-12.550499, 8.773799], + [-12.553099, 8.771799], + [-12.554699, 8.7693] + ] + ], + "type": "Polygon" + }, + "id": 94, + "properties": { + "cc:admin:id": ["14"], + "cc:oBld:total": 776, + "cc:pop:fifteen-to-twenty-four": 7820.573718193061, + "cc:pop:grid3-total": 26949.098129403086, + "cc:pop:kontur-total": 41141.82864015643, + "cc:pop:men": 19809.063924415263, + "cc:pop:sixty-plus": 2651.7074856807276, + "cc:pop:total": 41888.731619216145, + "cc:pop:under-five": 6804.920758521389, + "cc:pop:women": 22079.667694800835, + "cc:pop:women-fiften-to-forty-nine": 10606.82994272291, + "cc:pop:wp-total": 36240.17552419353, + "cc:pop:wp-total-UN": 42025.19448240859, + "cc:id": "94", + "cc:Name": "Foredugu MCHP", + "cc:site": [-12.4992, 8.7502], + "user:parentName": "Buya Romende", + "user:code": "OU_255027", + "user:orgUnitId": "z1ielwdLtPl", + "user:level": "4", + "user:parentId": "Pc3JTyqnsmL" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.531249, 9.162916], + [-11.529582, 9.15625], + [-11.525602, 9.153596], + [-11.525099, 9.1542], + [-11.521, 9.158499], + [-11.5176, 9.161299], + [-11.5136, 9.163299], + [-11.509199, 9.1641], + [-11.4988, 9.165099], + [-11.491399, 9.167], + [-11.484799, 9.167199], + [-11.476199, 9.164999], + [-11.464899, 9.163399], + [-11.4522, 9.1594], + [-11.4399, 9.1542], + [-11.4327, 9.1525], + [-11.4299, 9.1515], + [-11.426099, 9.149399], + [-11.421199, 9.145599], + [-11.418799, 9.1444], + [-11.4153, 9.1439], + [-11.4126, 9.144399], + [-11.408099, 9.1463], + [-11.402199, 9.1478], + [-11.394, 9.151599], + [-11.3912, 9.1542], + [-11.3901, 9.1568], + [-11.3897, 9.1609], + [-11.390099, 9.166299], + [-11.3913, 9.170199], + [-11.395299, 9.175199], + [-11.397099, 9.178399], + [-11.398599, 9.184199], + [-11.400899, 9.189499], + [-11.401899, 9.193699], + [-11.4027, 9.1958], + [-11.4046, 9.1985], + [-11.4106, 9.2049], + [-11.4122, 9.2072], + [-11.413799, 9.210299], + [-11.4162, 9.2156], + [-11.4177, 9.2214], + [-11.419999, 9.225799], + [-11.4213, 9.229], + [-11.425799, 9.237199], + [-11.4291, 9.239599], + [-11.434599, 9.240999], + [-11.4377, 9.2422], + [-11.440399, 9.243799], + [-11.4424, 9.2456], + [-11.4435, 9.2495], + [-11.443699, 9.257499], + [-11.444399, 9.261799], + [-11.446699, 9.267699], + [-11.4473, 9.2706], + [-11.4475, 9.2745], + [-11.4475, 9.2855], + [-11.447699, 9.288499], + [-11.448199, 9.291299], + [-11.4505, 9.2967], + [-11.4513, 9.3003], + [-11.451699, 9.307099], + [-11.452399, 9.310799], + [-11.4544, 9.3153], + [-11.4551, 9.3178], + [-11.455799, 9.323099], + [-11.456399, 9.325699], + [-11.4586, 9.331], + [-11.459699, 9.337999], + [-11.460299, 9.340599], + [-11.462299, 9.345099], + [-11.462899, 9.347599], + [-11.463499, 9.352899], + [-11.464199, 9.355499], + [-11.4662, 9.3599], + [-11.467999, 9.366699], + [-11.4703, 9.372], + [-11.4719, 9.3778], + [-11.474099, 9.382199], + [-11.475499, 9.385399], + [-11.477999, 9.389599], + [-11.4794, 9.3928], + [-11.481799, 9.397099], + [-11.4832, 9.4002], + [-11.485599, 9.404499], + [-11.486001, 9.405416], + [-11.48625, 9.405416], + [-11.489582, 9.401249], + [-11.489583, 9.387083], + [-11.488414, 9.385621], + [-11.490211, 9.382508], + [-11.486305, 9.375742], + [-11.490211, 9.368976], + [-11.486305, 9.36221], + [-11.490211, 9.355445], + [-11.490146, 9.355331], + [-11.491024, 9.354983], + [-11.493675, 9.352944], + [-11.497146, 9.350779], + [-11.494853, 9.346807], + [-11.500416, 9.345416], + [-11.501249, 9.33625], + [-11.507083, 9.330416], + [-11.507916, 9.327917], + [-11.50625, 9.323749], + [-11.511406, 9.313435], + [-11.510408, 9.313103], + [-11.508499, 9.313342], + [-11.507189, 9.313808], + [-11.506503, 9.313485], + [-11.505946, 9.313441], + [-11.505579, 9.31294], + [-11.503393, 9.312553], + [-11.502812, 9.312087], + [-11.50129, 9.311833], + [-11.499787, 9.311458], + [-11.499079, 9.311489], + [-11.501249, 9.302083], + [-11.50125, 9.298749], + [-11.502082, 9.29125], + [-11.514582, 9.292916], + [-11.514583, 9.292082], + [-11.518177, 9.290285], + [-11.517856, 9.289154], + [-11.517839, 9.28913], + [-11.51784, 9.289129], + [-11.520417, 9.290417], + [-11.527082, 9.292082], + [-11.528749, 9.291249], + [-11.52125, 9.28625], + [-11.522082, 9.283749], + [-11.522083, 9.282083], + [-11.522916, 9.280416], + [-11.522917, 9.277917], + [-11.523749, 9.277916], + [-11.523749, 9.275417], + [-11.520417, 9.27375], + [-11.519584, 9.272918], + [-11.521249, 9.272916], + [-11.52125, 9.271249], + [-11.525548, 9.26552], + [-11.527196, 9.266129], + [-11.528857, 9.265928], + [-11.530369, 9.265455], + [-11.530438, 9.265417], + [-11.525416, 9.265416], + [-11.52125, 9.262083], + [-11.521249, 9.261422], + [-11.521102, 9.261412], + [-11.521073, 9.261402], + [-11.520417, 9.260416], + [-11.520416, 9.256664], + [-11.519153, 9.256169], + [-11.518713, 9.25582], + [-11.518521, 9.255249], + [-11.518415, 9.252783], + [-11.518637, 9.251859], + [-11.517917, 9.250416], + [-11.522082, 9.240417], + [-11.525545, 9.238338], + [-11.524184, 9.23721], + [-11.522641, 9.234967], + [-11.521715, 9.234069], + [-11.521106, 9.232717], + [-11.521122, 9.232457], + [-11.521551, 9.231808], + [-11.520045, 9.228638], + [-11.519541, 9.227144], + [-11.518988, 9.223829], + [-11.519107, 9.22257], + [-11.51965, 9.220902], + [-11.520139, 9.217603], + [-11.520946, 9.215855], + [-11.522157, 9.214562], + [-11.522157, 9.214341], + [-11.52156, 9.213751], + [-11.52156, 9.21375], + [-11.525416, 9.213749], + [-11.528749, 9.205417], + [-11.520416, 9.202082], + [-11.519583, 9.187917], + [-11.521249, 9.18375], + [-11.519583, 9.182916], + [-11.521249, 9.172083], + [-11.519583, 9.16875], + [-11.521313, 9.166442], + [-11.521126, 9.165808], + [-11.531249, 9.162916] + ] + ], + "type": "Polygon" + }, + "id": 95, + "properties": { + "cc:admin:id": ["20"], + "cc:oBld:total": 49, + "cc:pop:fifteen-to-twenty-four": 1507.7388664462314, + "cc:pop:grid3-total": 10399.527848473297, + "cc:pop:kontur-total": 8472.280995366154, + "cc:pop:men": 3737.213644775317, + "cc:pop:sixty-plus": 526.032381743101, + "cc:pop:total": 8121.54278807328, + "cc:pop:under-five": 1281.6362272599988, + "cc:pop:women": 4384.329143297965, + "cc:pop:women-fiften-to-forty-nine": 2114.5979352935306, + "cc:pop:wp-total": 7511.155859258201, + "cc:pop:wp-total-UN": 8707.889887638825, + "cc:id": "95", + "cc:Name": "Foria CHP", + "cc:site": [-11.4577, 9.25], + "user:parentName": "Diang", + "user:code": "OU_226267", + "user:orgUnitId": "JKhjdiwoQZu", + "user:level": "4", + "user:parentId": "Lt8U7GVWvSR" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.488749, 8.529583], + [-11.48625, 8.52625], + [-11.486833, 8.523914], + [-11.4856, 8.523999], + [-11.482799, 8.5246], + [-11.467, 8.529899], + [-11.4641, 8.530499], + [-11.4485, 8.531699], + [-11.438099, 8.5343], + [-11.4338, 8.534599], + [-11.4295, 8.5344], + [-11.426699, 8.533799], + [-11.420599, 8.531999], + [-11.411799, 8.529899], + [-11.4042, 8.5263], + [-11.3983, 8.5224], + [-11.395699, 8.520999], + [-11.3926, 8.5202], + [-11.3895, 8.5199], + [-11.3848, 8.520299], + [-11.3805, 8.5218], + [-11.3729, 8.527399], + [-11.369599, 8.529299], + [-11.3636, 8.530399], + [-11.3596, 8.5317], + [-11.3568, 8.5349], + [-11.3544, 8.540299], + [-11.3514, 8.543799], + [-11.3449, 8.547099], + [-11.3423, 8.5494], + [-11.340799, 8.5525], + [-11.3401, 8.557499], + [-11.3403, 8.562], + [-11.341199, 8.566399], + [-11.342299, 8.569099], + [-11.345999, 8.575099], + [-11.3475, 8.5788], + [-11.3491, 8.5866], + [-11.3515, 8.596], + [-11.353, 8.6052], + [-11.355799, 8.615899], + [-11.357299, 8.626199], + [-11.357499, 8.630399], + [-11.357, 8.634499], + [-11.3546, 8.645499], + [-11.3708, 8.6466], + [-11.375599, 8.6482], + [-11.380099, 8.6524], + [-11.385399, 8.6619], + [-11.386499, 8.667399], + [-11.386799, 8.683699], + [-11.387299, 8.689499], + [-11.387355, 8.689679], + [-11.38875, 8.68875], + [-11.399582, 8.689582], + [-11.39625, 8.685416], + [-11.39625, 8.678256], + [-11.396471, 8.678177], + [-11.396617, 8.678436], + [-11.397198, 8.678387], + [-11.397409, 8.678111], + [-11.397362, 8.677937], + [-11.397933, 8.677575], + [-11.398352, 8.677732], + [-11.398719, 8.678413], + [-11.399051, 8.678474], + [-11.401249, 8.670417], + [-11.402082, 8.670416], + [-11.402916, 8.665416], + [-11.402083, 8.659583], + [-11.410416, 8.65375], + [-11.40875, 8.652917], + [-11.408749, 8.65125], + [-11.407083, 8.650416], + [-11.407083, 8.64625], + [-11.417916, 8.641249], + [-11.414582, 8.63625], + [-11.409929, 8.635584], + [-11.40979, 8.635246], + [-11.408577, 8.633325], + [-11.40782, 8.632544], + [-11.407827, 8.63202], + [-11.40784, 8.632007], + [-11.40875, 8.632917], + [-11.417916, 8.633749], + [-11.419582, 8.631249], + [-11.421041, 8.625414], + [-11.42092, 8.625368], + [-11.423749, 8.620416], + [-11.42375, 8.612917], + [-11.428749, 8.612084], + [-11.432082, 8.612083], + [-11.442082, 8.602916], + [-11.443749, 8.597917], + [-11.43875, 8.592917], + [-11.43875, 8.588751], + [-11.44513, 8.588751], + [-11.449036, 8.595515], + [-11.450218, 8.595515], + [-11.453749, 8.59375], + [-11.455416, 8.594583], + [-11.455416, 8.58375], + [-11.444583, 8.579583], + [-11.444583, 8.574741], + [-11.446609, 8.574218], + [-11.4484, 8.574729], + [-11.448866, 8.57507], + [-11.449515, 8.575149], + [-11.451724, 8.574823], + [-11.451194, 8.573387], + [-11.451131, 8.570744], + [-11.450532, 8.569475], + [-11.449075, 8.567186], + [-11.44872, 8.565417], + [-11.458749, 8.565417], + [-11.46125, 8.569583], + [-11.470416, 8.565416], + [-11.471249, 8.563749], + [-11.470588, 8.559117], + [-11.472167, 8.557681], + [-11.472719, 8.556832], + [-11.474154, 8.555995], + [-11.474206, 8.555954], + [-11.47375, 8.554583], + [-11.479582, 8.549583], + [-11.479583, 8.547916], + [-11.484582, 8.54125], + [-11.482083, 8.538749], + [-11.48125, 8.53125], + [-11.488749, 8.529583] + ] + ], + "type": "Polygon" + }, + "id": 96, + "properties": { + "cc:admin:id": ["68"], + "cc:oBld:total": 1174, + "cc:pop:fifteen-to-twenty-four": 2765.2011140394343, + "cc:pop:grid3-total": 14283.870298897087, + "cc:pop:kontur-total": 14967.37242475715, + "cc:pop:men": 7092.876034460754, + "cc:pop:sixty-plus": 958.5462149038534, + "cc:pop:total": 15080.906066845411, + "cc:pop:under-five": 2442.1832523559124, + "cc:pop:women": 7988.0300323846595, + "cc:pop:women-fiften-to-forty-nine": 3903.6669273535, + "cc:pop:wp-total": 12548.347648826822, + "cc:pop:wp-total-UN": 14551.306476451675, + "cc:id": "96", + "cc:Name": "Fotaneh Junction MCHP", + "cc:site": [-11.3831, 8.5906], + "user:parentName": "Kunike", + "user:code": "OU_268183", + "user:orgUnitId": "OwhDCucf4Ue", + "user:level": "4", + "user:parentId": "l0ccv2yzfF3" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.821196, 7.98705], + [-11.819899, 7.983899], + [-11.816999, 7.975399], + [-11.8127, 7.9737], + [-11.8077, 7.9712], + [-11.804499, 7.969899], + [-11.8002, 7.9675], + [-11.7963, 7.9657], + [-11.792699, 7.963699], + [-11.7842, 7.96], + [-11.779099, 7.958799], + [-11.7739, 7.9563], + [-11.770599, 7.954999], + [-11.766899, 7.953199], + [-11.763699, 7.952299], + [-11.7594, 7.9518], + [-11.7568, 7.9509], + [-11.756781, 7.950878], + [-11.756499, 7.951194], + [-11.755421, 7.951871], + [-11.754753, 7.952248], + [-11.754349, 7.952437], + [-11.753476, 7.953758], + [-11.753557, 7.953864], + [-11.753668, 7.954018], + [-11.753585, 7.954103], + [-11.753488, 7.954162], + [-11.75326, 7.95454], + [-11.753047, 7.955047], + [-11.752884, 7.955421], + [-11.753458, 7.955793], + [-11.753927, 7.956482], + [-11.754803, 7.95646], + [-11.75498, 7.956932], + [-11.755001, 7.957005], + [-11.753025, 7.957638], + [-11.75322, 7.958334], + [-11.753251, 7.958329], + [-11.753397, 7.958817], + [-11.752581, 7.958734], + [-11.752996, 7.960127], + [-11.753371, 7.960317], + [-11.753685, 7.960375], + [-11.753822, 7.960722], + [-11.752822, 7.961328], + [-11.752464, 7.961341], + [-11.751759, 7.96169], + [-11.750971, 7.961863], + [-11.750577, 7.962338], + [-11.75266, 7.962352], + [-11.753104, 7.962747], + [-11.753092, 7.962986], + [-11.753296, 7.962954], + [-11.754036, 7.963758], + [-11.754628, 7.964376], + [-11.755025, 7.964799], + [-11.755378, 7.965135], + [-11.755698, 7.965362], + [-11.756236, 7.965732], + [-11.756565, 7.965949], + [-11.757358, 7.966007], + [-11.757371, 7.966007], + [-11.758353, 7.966136], + [-11.758944, 7.966627], + [-11.759715, 7.968539], + [-11.759526, 7.968609], + [-11.758558, 7.968787], + [-11.758535, 7.969191], + [-11.758054, 7.969711], + [-11.757734, 7.96982], + [-11.758215, 7.970378], + [-11.758321, 7.970491], + [-11.759035, 7.970371], + [-11.759498, 7.971174], + [-11.760264, 7.971897], + [-11.760352, 7.972063], + [-11.758991, 7.972843], + [-11.759006, 7.972946], + [-11.759093, 7.973214], + [-11.759362, 7.973859], + [-11.759643, 7.974482], + [-11.759587, 7.974919], + [-11.758695, 7.975079], + [-11.758943, 7.97572], + [-11.759074, 7.977074], + [-11.758178, 7.977129], + [-11.758771, 7.979134], + [-11.758481, 7.979462], + [-11.758426, 7.979938], + [-11.75812, 7.980268], + [-11.756661, 7.981103], + [-11.756263, 7.981546], + [-11.75582, 7.98168], + [-11.754724, 7.981707], + [-11.753444, 7.982059], + [-11.754441, 7.986148], + [-11.754935, 7.987021], + [-11.755693, 7.987824], + [-11.756226, 7.987539], + [-11.758208, 7.987065], + [-11.759352, 7.987372], + [-11.759536, 7.987107], + [-11.760299, 7.986734], + [-11.760716, 7.985883], + [-11.761596, 7.984891], + [-11.762491, 7.984074], + [-11.762519, 7.984052], + [-11.762823, 7.98377], + [-11.763192, 7.983415], + [-11.763969, 7.983078], + [-11.764252, 7.984146], + [-11.76478, 7.986358], + [-11.765271, 7.988223], + [-11.765713, 7.989874], + [-11.766041, 7.991203], + [-11.766124, 7.991572], + [-11.766626, 7.993307], + [-11.767355, 7.994834], + [-11.767991, 7.995754], + [-11.76869, 7.99673], + [-11.770753, 7.999593], + [-11.771136, 7.999024], + [-11.77135, 7.999149], + [-11.772079, 7.998773], + [-11.772651, 7.99871], + [-11.77375, 7.995417], + [-11.778749, 7.993749], + [-11.780416, 7.992083], + [-11.780417, 7.991249], + [-11.785416, 7.985417], + [-11.787916, 7.984584], + [-11.790416, 7.987083], + [-11.789886, 7.990263], + [-11.790375, 7.990441], + [-11.79181, 7.990626], + [-11.793971, 7.992096], + [-11.794078, 7.992141], + [-11.795416, 7.991249], + [-11.795417, 7.98875], + [-11.796541, 7.985938], + [-11.796696, 7.98599], + [-11.798597, 7.987709], + [-11.79893, 7.987855], + [-11.799084, 7.987898], + [-11.79995, 7.987853], + [-11.80073, 7.987565], + [-11.802523, 7.987723], + [-11.803965, 7.988324], + [-11.804757, 7.988432], + [-11.806195, 7.9891], + [-11.807263, 7.989192], + [-11.807916, 7.989116], + [-11.808279, 7.989147], + [-11.809114, 7.988907], + [-11.809777, 7.98885], + [-11.811291, 7.988321], + [-11.812368, 7.987376], + [-11.812163, 7.986973], + [-11.812205, 7.986344], + [-11.812684, 7.986293], + [-11.813474, 7.986545], + [-11.8138, 7.98679], + [-11.816255, 7.986628], + [-11.816622, 7.986868], + [-11.816833, 7.986906], + [-11.817496, 7.987138], + [-11.818256, 7.986809], + [-11.819149, 7.9867], + [-11.820236, 7.986824], + [-11.820572, 7.98705], + [-11.821196, 7.98705] + ] + ], + "type": "Polygon" + }, + "id": 97, + "properties": { + "cc:admin:id": ["46"], + "cc:oBld:total": 4134, + "cc:pop:fifteen-to-twenty-four": 3159.8645904075447, + "cc:pop:grid3-total": 21148.382354921054, + "cc:pop:kontur-total": 19150.475706548077, + "cc:pop:men": 8498.988295938487, + "cc:pop:sixty-plus": 1294.3518464758179, + "cc:pop:total": 17499.247082021775, + "cc:pop:under-five": 2893.244982144179, + "cc:pop:women": 9000.258786083308, + "cc:pop:women-fiften-to-forty-nine": 4289.718801011581, + "cc:pop:wp-total": 14764.863859724217, + "cc:pop:wp-total-UN": 17119.596220442538, + "cc:id": "97", + "cc:Name": "Fullawahun MCHP", + "cc:site": [-11.7607, 7.9562], + "user:parentName": "Kakua", + "user:code": "OU_839", + "user:orgUnitId": "eRg3KZyWUSJ", + "user:level": "4", + "user:parentId": "U6Kr7Gtpidn" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.608178, 7.550836], + [-11.602984, 7.550809], + [-11.602452, 7.55098], + [-11.604582, 7.544584], + [-11.597083, 7.540416], + [-11.597916, 7.529584], + [-11.59125, 7.529583], + [-11.587917, 7.527084], + [-11.587082, 7.522084], + [-11.580373, 7.514628], + [-11.579399, 7.5153], + [-11.5741, 7.520299], + [-11.5713, 7.522499], + [-11.566299, 7.5252], + [-11.5622, 7.528699], + [-11.5593, 7.531599], + [-11.557099, 7.5345], + [-11.553199, 7.5423], + [-11.552499, 7.5453], + [-11.5523, 7.548899], + [-11.552499, 7.557199], + [-11.5531, 7.560299], + [-11.554299, 7.562299], + [-11.558899, 7.567999], + [-11.5614, 7.5726], + [-11.566099, 7.578299], + [-11.567199, 7.580799], + [-11.567799, 7.5843], + [-11.5677, 7.587999], + [-11.567199, 7.5915], + [-11.5661, 7.596799], + [-11.581699, 7.591], + [-11.5861, 7.587599], + [-11.588899, 7.5845], + [-11.590999, 7.581], + [-11.594699, 7.5687], + [-11.5988, 7.558999], + [-11.6011, 7.555199], + [-11.6038, 7.552899], + [-11.608178, 7.550836] + ] + ], + "type": "Polygon" + }, + "id": 98, + "properties": { + "cc:admin:id": ["128"], + "cc:oBld:total": 144, + "cc:pop:fifteen-to-twenty-four": 2766.7656458674146, + "cc:pop:grid3-total": 3769.488768009935, + "cc:pop:kontur-total": 18371.098524459292, + "cc:pop:men": 7434.296216615539, + "cc:pop:sixty-plus": 1082.6987701618675, + "cc:pop:total": 15334.688848865211, + "cc:pop:under-five": 2536.5219611891316, + "cc:pop:women": 7900.392632249672, + "cc:pop:women-fiften-to-forty-nine": 3776.5687426525665, + "cc:pop:wp-total": 10757.397196264605, + "cc:pop:wp-total-UN": 12471.73732741998, + "cc:id": "98", + "cc:Name": "Futa CHC", + "cc:site": [-11.574, 7.5612], + "user:parentName": "Pejeh", + "user:code": "OU_260389", + "user:orgUnitId": "uDzWmUDHKeR", + "user:level": "4", + "user:parentId": "N233eZJZ1bh" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.34442, 7.54706], + [-12.342061, 7.545794], + [-12.34087, 7.544927], + [-12.340369, 7.544068], + [-12.340257, 7.54368], + [-12.340237, 7.543255], + [-12.340425, 7.542897], + [-12.340953, 7.542348], + [-12.340121, 7.541713], + [-12.338693, 7.540685], + [-12.33779, 7.54047], + [-12.337158, 7.540311], + [-12.336377, 7.539943], + [-12.335553, 7.539745], + [-12.334281, 7.539655], + [-12.333576, 7.53935], + [-12.333283, 7.538914], + [-12.333191, 7.538332], + [-12.333007, 7.537372], + [-12.332966, 7.537128], + [-12.332626, 7.536911], + [-12.332051, 7.535927], + [-12.331422, 7.535145], + [-12.33048, 7.534287], + [-12.329581, 7.533699], + [-12.32907, 7.533077], + [-12.328711, 7.532377], + [-12.325336, 7.532376], + [-12.32143, 7.525611], + [-12.313619, 7.525611], + [-12.313453, 7.525326], + [-12.313042, 7.525432], + [-12.311704, 7.525412], + [-12.31071, 7.525153], + [-12.309327, 7.525772], + [-12.309151, 7.526032], + [-12.307414, 7.526778], + [-12.306131, 7.527083], + [-12.303191, 7.528389], + [-12.301729, 7.528777], + [-12.300344, 7.528917], + [-12.29947, 7.528816], + [-12.298893, 7.528409], + [-12.298536, 7.52771], + [-12.298402, 7.526352], + [-12.297955, 7.525273], + [-12.29715, 7.524434], + [-12.296298, 7.524068], + [-12.295151, 7.524104], + [-12.294169, 7.524515], + [-12.293009, 7.525578], + [-12.292331, 7.525781], + [-12.29172, 7.525583], + [-12.291244, 7.52486], + [-12.29111, 7.524027], + [-12.290171, 7.523152], + [-12.28891, 7.523172], + [-12.287991, 7.523534], + [-12.287225, 7.524387], + [-12.286394, 7.524845], + [-12.285399, 7.523924], + [-12.285056, 7.522419], + [-12.286066, 7.52039], + [-12.286471, 7.519291], + [-12.286897, 7.517341], + [-12.286789, 7.516783], + [-12.286276, 7.516091], + [-12.284916, 7.515587], + [-12.283963, 7.515592], + [-12.283481, 7.516072], + [-12.283177, 7.516503], + [-12.283049, 7.517148], + [-12.283767, 7.519311], + [-12.283341, 7.51984], + [-12.282592, 7.520378], + [-12.281428, 7.520577], + [-12.280679, 7.520256], + [-12.280006, 7.518945], + [-12.279416, 7.518457], + [-12.278506, 7.518046], + [-12.277911, 7.517924], + [-12.274377, 7.517973], + [-12.272894, 7.519183], + [-12.272253, 7.518996], + [-12.271554, 7.518416], + [-12.271205, 7.518486], + [-12.269662, 7.517459], + [-12.268162, 7.516004], + [-12.266054, 7.514794], + [-12.26516, 7.514488], + [-12.26451, 7.514585], + [-12.263873, 7.515012], + [-12.263437, 7.515577], + [-12.263288, 7.516451], + [-12.263299, 7.516833], + [-12.263627, 7.51727], + [-12.264376, 7.517464], + [-12.265289, 7.518013], + [-12.265176, 7.518787], + [-12.264873, 7.519088], + [-12.264625, 7.519046], + [-12.264622, 7.519335], + [-12.264366, 7.51959], + [-12.261642, 7.519913], + [-12.261445, 7.519928], + [-12.260369, 7.519977], + [-12.25985, 7.520252], + [-12.259259, 7.521026], + [-12.259191, 7.52144], + [-12.259155, 7.521894], + [-12.259223, 7.522725], + [-12.25918, 7.523105], + [-12.258957, 7.523971], + [-12.258827, 7.524164], + [-12.2584, 7.524275], + [-12.257694, 7.524036], + [-12.257561, 7.523979], + [-12.255432, 7.522477], + [-12.25498, 7.522051], + [-12.254427, 7.520013], + [-12.254689, 7.519241], + [-12.254609, 7.51812], + [-12.254307, 7.517521], + [-12.25338, 7.517361], + [-12.253023, 7.517493], + [-12.252379, 7.517919], + [-12.251863, 7.518531], + [-12.251677, 7.51854], + [-12.249311, 7.51807], + [-12.248556, 7.517663], + [-12.248237, 7.517284], + [-12.249317, 7.514659], + [-12.249617, 7.514658], + [-12.249431, 7.514187], + [-12.248557, 7.514992], + [-12.24813, 7.516013], + [-12.247885, 7.517686], + [-12.248062, 7.518024], + [-12.248826, 7.518462], + [-12.250486, 7.518539], + [-12.250951, 7.518831], + [-12.251485, 7.518881], + [-12.251593, 7.519058], + [-12.251581, 7.521025], + [-12.251317, 7.522053], + [-12.25076, 7.522973], + [-12.250335, 7.523195], + [-12.249101, 7.523266], + [-12.248232, 7.523004], + [-12.248087, 7.522676], + [-12.247316, 7.522156], + [-12.242929, 7.522129], + [-12.240089, 7.522626], + [-12.239569, 7.523138], + [-12.238448, 7.52384], + [-12.236982, 7.52428], + [-12.236038, 7.524751], + [-12.235607, 7.524543], + [-12.235166, 7.523555], + [-12.235067, 7.521178], + [-12.234814, 7.520403], + [-12.234816, 7.519889], + [-12.233998, 7.518777], + [-12.232636, 7.517686], + [-12.228909, 7.517772], + [-12.228251, 7.517401], + [-12.226187, 7.517388], + [-12.224551, 7.518115], + [-12.221208, 7.520755], + [-12.218679, 7.52146], + [-12.217235, 7.522029], + [-12.215632, 7.523059], + [-12.215021, 7.523686], + [-12.214167, 7.523908], + [-12.213761, 7.523746], + [-12.212077, 7.52201], + [-12.209907, 7.521405], + [-12.2081, 7.521392], + [-12.207843, 7.521134], + [-12.207327, 7.521131], + [-12.205949, 7.521256], + [-12.204485, 7.521884], + [-12.203972, 7.521881], + [-12.203325, 7.521491], + [-12.201915, 7.520066], + [-12.200629, 7.519543], + [-12.200372, 7.519284], + [-12.198825, 7.519016], + [-12.197148, 7.51851], + [-12.196385, 7.517584], + [-12.196128, 7.516747], + [-12.196264, 7.516039], + [-12.195929, 7.515825], + [-12.194718, 7.5159], + [-12.194365, 7.51627], + [-12.194074, 7.516952], + [-12.193006, 7.517839], + [-12.192383, 7.517944], + [-12.191855, 7.517836], + [-12.19125, 7.515417], + [-12.19125, 7.514805], + [-12.193036, 7.515065], + [-12.193806, 7.515025], + [-12.194887, 7.514177], + [-12.195441, 7.512976], + [-12.196181, 7.511962], + [-12.196808, 7.511793], + [-12.197328, 7.511281], + [-12.19862, 7.511032], + [-12.199279, 7.510143], + [-12.199331, 7.508113], + [-12.199548, 7.507048], + [-12.200725, 7.505814], + [-12.200957, 7.505168], + [-12.201117, 7.50371], + [-12.200863, 7.503192], + [-12.200871, 7.501905], + [-12.200077, 7.500619], + [-12.199389, 7.500101], + [-12.198663, 7.498991], + [-12.19832, 7.497512], + [-12.198324, 7.496753], + [-12.198293, 7.496659], + [-12.198059, 7.495585], + [-12.196966, 7.495408], + [-12.19677, 7.495574], + [-12.196423, 7.495573], + [-12.195909, 7.495264], + [-12.195613, 7.494891], + [-12.195394, 7.493919], + [-12.195446, 7.49345], + [-12.195735, 7.492467], + [-12.19771, 7.49197], + [-12.198227, 7.491716], + [-12.199324, 7.490743], + [-12.199411, 7.490424], + [-12.19904, 7.489516], + [-12.1987, 7.489189], + [-12.197686, 7.488892], + [-12.197784, 7.488708], + [-12.198583, 7.488703], + [-12.198995, 7.488484], + [-12.199413, 7.487733], + [-12.199287, 7.487218], + [-12.198514, 7.487083], + [-12.198, 7.486822], + [-12.197487, 7.486305], + [-12.196973, 7.486172], + [-12.197108, 7.485144], + [-12.196723, 7.484755], + [-12.196209, 7.484622], + [-12.196003, 7.48305], + [-12.195784, 7.482414], + [-12.195363, 7.481921], + [-12.194336, 7.48171], + [-12.193086, 7.481009], + [-12.192984, 7.480821], + [-12.193098, 7.480453], + [-12.194721, 7.479599], + [-12.194929, 7.479053], + [-12.194863, 7.478609], + [-12.192599, 7.4796], + [-12.1883, 7.481899], + [-12.1852, 7.483299], + [-12.1809, 7.485599], + [-12.176899, 7.4875], + [-12.1729, 7.490799], + [-12.169499, 7.4944], + [-12.1674, 7.497099], + [-12.1647, 7.502399], + [-12.1632, 7.504299], + [-12.159999, 7.5071], + [-12.1559, 7.5102], + [-12.1536, 7.514399], + [-12.152099, 7.5182], + [-12.150099, 7.521], + [-12.1453, 7.526899], + [-12.142999, 7.5315], + [-12.140799, 7.5343], + [-12.1358, 7.539599], + [-12.1339, 7.542899], + [-12.1325, 7.548499], + [-12.1303, 7.553799], + [-12.129815, 7.555844], + [-12.132569, 7.555845], + [-12.136475, 7.56261], + [-12.1418, 7.562611], + [-12.142083, 7.564583], + [-12.147046, 7.564584], + [-12.148534, 7.567158], + [-12.152512, 7.567158], + [-12.153035, 7.566164], + [-12.160687, 7.566412], + [-12.162917, 7.574583], + [-12.168999, 7.575258], + [-12.168902, 7.574914], + [-12.168903, 7.574912], + [-12.170416, 7.575416], + [-12.172917, 7.57875], + [-12.179582, 7.579583], + [-12.184583, 7.57125], + [-12.18625, 7.57125], + [-12.18875, 7.573749], + [-12.198219, 7.575206], + [-12.198569, 7.574794], + [-12.199868, 7.574085], + [-12.203121, 7.573377], + [-12.205295, 7.573261], + [-12.207765, 7.573406], + [-12.211633, 7.573947], + [-12.214076, 7.575595], + [-12.21375, 7.57625], + [-12.21375, 7.576603], + [-12.214836, 7.577702], + [-12.217787, 7.580166], + [-12.219316, 7.580675], + [-12.220516, 7.580753], + [-12.222173, 7.580452], + [-12.225009, 7.580727], + [-12.22555, 7.580551], + [-12.227082, 7.582083], + [-12.227082, 7.590416], + [-12.22625, 7.590417], + [-12.232082, 7.59625], + [-12.232083, 7.602981], + [-12.231946, 7.603219], + [-12.232077, 7.603348], + [-12.232605, 7.603695], + [-12.236794, 7.604827], + [-12.237712, 7.605439], + [-12.238, 7.605471], + [-12.23826, 7.605349], + [-12.238867, 7.604331], + [-12.240243, 7.60001], + [-12.241406, 7.598345], + [-12.24245, 7.597577], + [-12.243261, 7.597246], + [-12.24443, 7.59712], + [-12.245544, 7.597205], + [-12.246343, 7.597468], + [-12.247894, 7.598566], + [-12.248095, 7.598864], + [-12.246832, 7.598962], + [-12.247394, 7.599677], + [-12.247654, 7.601096], + [-12.247435, 7.601669], + [-12.245381, 7.603648], + [-12.244921, 7.6053], + [-12.244847, 7.606157], + [-12.245067, 7.607108], + [-12.245741, 7.607898], + [-12.248059, 7.608427], + [-12.248491, 7.608719], + [-12.249028, 7.607915], + [-12.249392, 7.608001], + [-12.250326, 7.608691], + [-12.252429, 7.61069], + [-12.253473, 7.611071], + [-12.2533, 7.5989], + [-12.2544, 7.594699], + [-12.258, 7.5915], + [-12.2635, 7.589999], + [-12.2659, 7.588799], + [-12.2681, 7.587099], + [-12.27, 7.585099], + [-12.2714, 7.582799], + [-12.273, 7.579099], + [-12.276299, 7.5739], + [-12.277, 7.5733], + [-12.2801, 7.572099], + [-12.286399, 7.5711], + [-12.290899, 7.5693], + [-12.295299, 7.5685], + [-12.318199, 7.5685], + [-12.3224, 7.568099], + [-12.3257, 7.566499], + [-12.331499, 7.5621], + [-12.336, 7.559599], + [-12.3396, 7.556699], + [-12.342999, 7.553299], + [-12.343, 7.5479], + [-12.34442, 7.54706] + ] + ], + "type": "Polygon" + }, + "id": 99, + "properties": { + "cc:admin:id": ["42"], + "cc:oBld:total": 7, + "cc:pop:fifteen-to-twenty-four": 1145.3356313119937, + "cc:pop:grid3-total": 6183.191822085989, + "cc:pop:kontur-total": 6544.818361120823, + "cc:pop:men": 3125.337578270182, + "cc:pop:sixty-plus": 491.7080231372748, + "cc:pop:total": 6534.553841377232, + "cc:pop:under-five": 1081.3855086835165, + "cc:pop:women": 3409.2162631070505, + "cc:pop:women-fiften-to-forty-nine": 1648.818023035279, + "cc:pop:wp-total": 7034.7820364294785, + "cc:pop:wp-total-UN": 8149.269067316031, + "cc:id": "99", + "cc:Name": "Gambia CHP", + "cc:site": [-12.1758, 7.5355], + "user:parentName": "Jong", + "user:code": "OU_197395", + "user:orgUnitId": "UWhv0MQOqoB", + "user:level": "4", + "user:parentId": "VCtF1DbspR5" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.694582, 8.12375], + [-12.694063, 8.122192], + [-12.693091, 8.121971], + [-12.690885, 8.123503], + [-12.689462, 8.123495], + [-12.688829, 8.121432], + [-12.689352, 8.120146], + [-12.688731, 8.115892], + [-12.688217, 8.115373], + [-12.690165, 8.113711], + [-12.691236, 8.112071], + [-12.689583, 8.110417], + [-12.68925, 8.110417], + [-12.687711, 8.113439], + [-12.686934, 8.113692], + [-12.686571, 8.109312], + [-12.683355, 8.10421], + [-12.686249, 8.09625], + [-12.682916, 8.095416], + [-12.677083, 8.094583], + [-12.67375, 8.09125], + [-12.674583, 8.084583], + [-12.674582, 8.07625], + [-12.667083, 8.076249], + [-12.66125, 8.072084], + [-12.662702, 8.064816], + [-12.661764, 8.065033], + [-12.660639, 8.064702], + [-12.659723, 8.064729], + [-12.656691, 8.064179], + [-12.65509, 8.063029], + [-12.654475, 8.062192], + [-12.657082, 8.059583], + [-12.657082, 8.057917], + [-12.65125, 8.052084], + [-12.651314, 8.051756], + [-12.648608, 8.051755], + [-12.644702, 8.04499], + [-12.646861, 8.04125], + [-12.642917, 8.04125], + [-12.639934, 8.040653], + [-12.639477, 8.03921], + [-12.639817, 8.03737], + [-12.640945, 8.035594], + [-12.642484, 8.032411], + [-12.643091, 8.029778], + [-12.638749, 8.027917], + [-12.632083, 8.027916], + [-12.632082, 8.025417], + [-12.628749, 8.025416], + [-12.624583, 8.022083], + [-12.62375, 8.01125], + [-12.635188, 8.005911], + [-12.632299, 8.004499], + [-12.629099, 8.003199], + [-12.624799, 8.000999], + [-12.618, 7.9992], + [-12.613399, 7.997199], + [-12.6067, 7.9958], + [-12.6005, 8.001799], + [-12.597499, 8.004], + [-12.5961, 8.0057], + [-12.594399, 8.010499], + [-12.591699, 8.0138], + [-12.588599, 8.0149], + [-12.5824, 8.015499], + [-12.580299, 8.0161], + [-12.5763, 8.017999], + [-12.5731, 8.019299], + [-12.5688, 8.021899], + [-12.565, 8.0236], + [-12.5623, 8.0266], + [-12.5606, 8.030299], + [-12.558599, 8.0338], + [-12.5548, 8.042499], + [-12.5544, 8.046799], + [-12.554599, 8.049399], + [-12.555199, 8.051899], + [-12.5574, 8.0563], + [-12.5592, 8.0631], + [-12.561399, 8.067399], + [-12.562799, 8.070599], + [-12.5643, 8.0728], + [-12.5681, 8.0768], + [-12.572699, 8.080599], + [-12.578799, 8.083999], + [-12.583999, 8.088499], + [-12.587999, 8.093499], + [-12.5894, 8.0966], + [-12.591899, 8.100899], + [-12.5933, 8.104], + [-12.595199, 8.107599], + [-12.5959, 8.1098], + [-12.596399, 8.112999], + [-12.5965, 8.1159], + [-12.596699, 8.137499], + [-12.596499, 8.1423], + [-12.595899, 8.145], + [-12.5923, 8.152499], + [-12.5904, 8.156099], + [-12.5895, 8.1597], + [-12.5895, 8.163599], + [-12.590199, 8.167299], + [-12.592499, 8.172599], + [-12.5931, 8.1754], + [-12.593499, 8.184299], + [-12.593499, 8.1932], + [-12.593299, 8.1981], + [-12.5927, 8.200899], + [-12.592225, 8.202025], + [-12.597195, 8.205006], + [-12.597916, 8.197084], + [-12.594583, 8.192916], + [-12.594583, 8.183749], + [-12.597916, 8.179584], + [-12.601249, 8.178749], + [-12.60125, 8.17625], + [-12.608868, 8.176249], + [-12.612775, 8.169484], + [-12.615353, 8.169483], + [-12.616249, 8.169583], + [-12.621249, 8.165417], + [-12.622083, 8.15875], + [-12.624582, 8.15875], + [-12.625417, 8.162916], + [-12.630417, 8.167083], + [-12.633166, 8.166532], + [-12.633194, 8.166368], + [-12.632927, 8.162633], + [-12.63335, 8.161351], + [-12.633723, 8.16065], + [-12.633732, 8.160623], + [-12.638749, 8.161249], + [-12.639583, 8.160417], + [-12.646249, 8.161249], + [-12.645416, 8.152917], + [-12.643508, 8.149736], + [-12.643557, 8.149635], + [-12.647174, 8.149785], + [-12.648979, 8.150696], + [-12.650786, 8.150964], + [-12.652412, 8.151455], + [-12.653369, 8.151367], + [-12.653329, 8.151717], + [-12.654197, 8.15137], + [-12.655326, 8.148543], + [-12.656003, 8.145287], + [-12.655733, 8.145056], + [-12.65588, 8.144926], + [-12.655836, 8.143056], + [-12.656251, 8.140745], + [-12.656641, 8.138329], + [-12.656512, 8.136823], + [-12.656615, 8.135966], + [-12.657343, 8.135057], + [-12.658666, 8.134278], + [-12.659991, 8.133654], + [-12.661679, 8.133291], + [-12.665731, 8.133161], + [-12.668484, 8.133083], + [-12.669783, 8.132718], + [-12.670563, 8.131965], + [-12.671938, 8.131031], + [-12.673056, 8.130381], + [-12.674224, 8.129785], + [-12.675104, 8.129169], + [-12.674964, 8.128605], + [-12.676198, 8.127551], + [-12.676952, 8.12685], + [-12.6789, 8.126199], + [-12.680017, 8.126018], + [-12.682977, 8.125967], + [-12.687729, 8.126251], + [-12.690197, 8.126537], + [-12.693343, 8.128086], + [-12.694582, 8.12375] + ] + ], + "type": "Polygon" + }, + "id": 100, + "properties": { + "cc:admin:id": ["12"], + "cc:oBld:total": 33, + "cc:pop:fifteen-to-twenty-four": 940.6544670591488, + "cc:pop:grid3-total": 3297.3943022301373, + "cc:pop:kontur-total": 5123.553399253411, + "cc:pop:men": 2334.1596488944597, + "cc:pop:sixty-plus": 329.8749100770709, + "cc:pop:total": 4984.741223509579, + "cc:pop:under-five": 860.222402145901, + "cc:pop:women": 2650.5815746151193, + "cc:pop:women-fiften-to-forty-nine": 1266.066202180751, + "cc:pop:wp-total": 4690.476159537234, + "cc:pop:wp-total-UN": 5435.586867363621, + "cc:id": "100", + "cc:Name": "Gandorhun CHC", + "cc:site": [-12.61438, 8.10341], + "user:parentName": "Fakunya", + "user:code": "OU_247092", + "user:orgUnitId": "ZdPkczYqeIY", + "user:level": "4", + "user:parentId": "vULnao2hV5v" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.498284, 7.562732], + [-11.498299, 7.561499], + [-11.4982, 7.5491], + [-11.4978, 7.5431], + [-11.497099, 7.538699], + [-11.495099, 7.534], + [-11.4749, 7.5325], + [-11.472099, 7.531899], + [-11.4662, 7.5299], + [-11.460699, 7.529199], + [-11.456499, 7.5291], + [-11.4523, 7.529599], + [-11.4486, 7.5311], + [-11.445, 7.5344], + [-11.4416, 7.540499], + [-11.440299, 7.5438], + [-11.4374, 7.553399], + [-11.4355, 7.556599], + [-11.430799, 7.5611], + [-11.4266, 7.567699], + [-11.423799, 7.5729], + [-11.4164, 7.583899], + [-11.412899, 7.5874], + [-11.4079, 7.590599], + [-11.4037, 7.594099], + [-11.3933, 7.604399], + [-11.385399, 7.6048], + [-11.381999, 7.6059], + [-11.3788, 7.6076], + [-11.384499, 7.6132], + [-11.384699, 7.618699], + [-11.3845, 7.621399], + [-11.383599, 7.624199], + [-11.381399, 7.6271], + [-11.3781, 7.6295], + [-11.3756, 7.633099], + [-11.373199, 7.6358], + [-11.370299, 7.6381], + [-11.365599, 7.6402], + [-11.3603, 7.6429], + [-11.363, 7.6457], + [-11.370199, 7.649799], + [-11.3734, 7.6511], + [-11.377799, 7.653399], + [-11.382, 7.6554], + [-11.385599, 7.658499], + [-11.387599, 7.661099], + [-11.389599, 7.664999], + [-11.3916, 7.6679], + [-11.394799, 7.671299], + [-11.398199, 7.674399], + [-11.4005, 7.6758], + [-11.4037, 7.6772], + [-11.411099, 7.680899], + [-11.414099, 7.682899], + [-11.420099, 7.688599], + [-11.422299, 7.690499], + [-11.425599, 7.692699], + [-11.428899, 7.6901], + [-11.431499, 7.6877], + [-11.432082, 7.687478], + [-11.432082, 7.687083], + [-11.43125, 7.682916], + [-11.43125, 7.676249], + [-11.432726, 7.674405], + [-11.439296, 7.674404], + [-11.440925, 7.671584], + [-11.440634, 7.671562], + [-11.439939, 7.670357], + [-11.443845, 7.663592], + [-11.442227, 7.660788], + [-11.442916, 7.654584], + [-11.442917, 7.65167], + [-11.443845, 7.650061], + [-11.451657, 7.65006], + [-11.45481, 7.644599], + [-11.453749, 7.643749], + [-11.452917, 7.632917], + [-11.454436, 7.631395], + [-11.454335, 7.631206], + [-11.455417, 7.629583], + [-11.45875, 7.627917], + [-11.460416, 7.627916], + [-11.460417, 7.62625], + [-11.462082, 7.624583], + [-11.46125, 7.623749], + [-11.46125, 7.617917], + [-11.472917, 7.617917], + [-11.477916, 7.618749], + [-11.47875, 7.620416], + [-11.480416, 7.619583], + [-11.48125, 7.618749], + [-11.497082, 7.615416], + [-11.495417, 7.609584], + [-11.494582, 7.605417], + [-11.492917, 7.604584], + [-11.492917, 7.60375], + [-11.494582, 7.602083], + [-11.494099, 7.595803], + [-11.495628, 7.593153], + [-11.4957, 7.589199], + [-11.497499, 7.5811], + [-11.498099, 7.5768], + [-11.498284, 7.562732] + ] + ], + "type": "Polygon" + }, + "id": 101, + "properties": { + "cc:admin:id": ["71"], + "cc:oBld:total": 741, + "cc:pop:fifteen-to-twenty-four": 798.8707503152405, + "cc:pop:grid3-total": 3964.462151165572, + "cc:pop:kontur-total": 4080.3976887214503, + "cc:pop:men": 2009.5092553391712, + "cc:pop:sixty-plus": 255.82421349081392, + "cc:pop:total": 4088.472750198936, + "cc:pop:under-five": 618.6123655780491, + "cc:pop:women": 2078.963494859765, + "cc:pop:women-fiften-to-forty-nine": 1028.0647458909452, + "cc:pop:wp-total": 3978.64031397973, + "cc:pop:wp-total-UN": 4608.335649361642, + "cc:id": "101", + "cc:Name": "Gandorhun CHP", + "cc:site": [-11.4489, 7.6147], + "user:parentName": "Niawa", + "user:code": "OU_222651", + "user:orgUnitId": "IWb1hstfROc", + "user:level": "4", + "user:parentId": "uKC54fzxRzO" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.227052, 7.717053], + [-11.219582, 7.709584], + [-11.218451, 7.710432], + [-11.217711, 7.709152], + [-11.215507, 7.709151], + [-11.216249, 7.69875], + [-11.215416, 7.697083], + [-11.210417, 7.692083], + [-11.210417, 7.682917], + [-11.210722, 7.68261], + [-11.208624, 7.682609], + [-11.204718, 7.675845], + [-11.196906, 7.675844], + [-11.194068, 7.670931], + [-11.192916, 7.672083], + [-11.191432, 7.672083], + [-11.189329, 7.668439], + [-11.193234, 7.661674], + [-11.189328, 7.654908], + [-11.188154, 7.654908], + [-11.188399, 7.656569], + [-11.188089, 7.659357], + [-11.186781, 7.661623], + [-11.178968, 7.661623], + [-11.177083, 7.658359], + [-11.177083, 7.657917], + [-11.180416, 7.652917], + [-11.177916, 7.652083], + [-11.173975, 7.647354], + [-11.173468, 7.647354], + [-11.170188, 7.653033], + [-11.170187, 7.653034], + [-11.169582, 7.644584], + [-11.165416, 7.64125], + [-11.155417, 7.64125], + [-11.152916, 7.643748], + [-11.151249, 7.637917], + [-11.148978, 7.635645], + [-11.15003, 7.633821], + [-11.149413, 7.632752], + [-11.149299, 7.633], + [-11.1485, 7.636199], + [-11.147499, 7.638199], + [-11.144, 7.640999], + [-11.142099, 7.6434], + [-11.1383, 7.650699], + [-11.136599, 7.6546], + [-11.1346, 7.658199], + [-11.133299, 7.6614], + [-11.1312, 7.665799], + [-11.129699, 7.672], + [-11.128099, 7.6748], + [-11.125799, 7.6775], + [-11.117199, 7.6862], + [-11.1145, 7.688699], + [-11.111599, 7.6908], + [-11.1048, 7.694099], + [-11.1024, 7.694899], + [-11.099699, 7.6951], + [-11.0909, 7.695199], + [-11.086, 7.696], + [-11.082999, 7.6979], + [-11.0777, 7.702899], + [-11.0749, 7.705099], + [-11.069199, 7.7084], + [-11.0653, 7.711699], + [-11.0619, 7.714999], + [-11.0581, 7.719199], + [-11.0569, 7.721099], + [-11.056099, 7.7242], + [-11.0559, 7.729899], + [-11.055921, 7.730744], + [-11.066249, 7.720416], + [-11.064697, 7.718086], + [-11.066861, 7.714337], + [-11.069052, 7.714337], + [-11.07125, 7.717083], + [-11.082916, 7.717917], + [-11.08375, 7.722083], + [-11.09625, 7.720417], + [-11.09778, 7.721335], + [-11.098759, 7.722193], + [-11.099575, 7.723435], + [-11.100598, 7.724141], + [-11.10173, 7.726604], + [-11.102648, 7.729384], + [-11.104369, 7.730896], + [-11.104765, 7.731479], + [-11.104892, 7.732821], + [-11.113749, 7.732084], + [-11.117385, 7.734992], + [-11.119653, 7.731067], + [-11.127464, 7.731067], + [-11.128307, 7.732525], + [-11.12875, 7.732083], + [-11.129583, 7.727083], + [-11.132917, 7.72375], + [-11.137917, 7.727916], + [-11.139583, 7.727917], + [-11.142083, 7.731249], + [-11.143248, 7.731638], + [-11.143288, 7.731422], + [-11.147916, 7.732083], + [-11.150417, 7.725417], + [-11.153749, 7.722083], + [-11.154583, 7.71125], + [-11.170416, 7.70875], + [-11.173749, 7.712917], + [-11.172917, 7.724584], + [-11.176877, 7.728543], + [-11.181281, 7.728544], + [-11.185187, 7.735308], + [-11.190814, 7.735309], + [-11.190943, 7.736214], + [-11.194273, 7.736215], + [-11.198181, 7.729449], + [-11.205992, 7.729449], + [-11.206112, 7.729243], + [-11.206493, 7.729375], + [-11.207452, 7.72933], + [-11.208203, 7.72964], + [-11.209007, 7.730596], + [-11.209583, 7.725417], + [-11.214582, 7.722084], + [-11.221249, 7.726249], + [-11.221612, 7.726249], + [-11.22174, 7.725726], + [-11.225465, 7.71883], + [-11.227052, 7.717053] + ] + ], + "type": "Polygon" + }, + "id": 102, + "properties": { + "cc:admin:id": ["15"], + "cc:oBld:total": 1405, + "cc:pop:fifteen-to-twenty-four": 1467.5771504242744, + "cc:pop:grid3-total": 6382.252056361632, + "cc:pop:kontur-total": 6863.815173814389, + "cc:pop:men": 3570.097188679643, + "cc:pop:sixty-plus": 470.5826459049528, + "cc:pop:total": 7479.7118821813065, + "cc:pop:under-five": 1204.37122111709, + "cc:pop:women": 3909.6146935016645, + "cc:pop:women-fiften-to-forty-nine": 1985.0712150121904, + "cc:pop:wp-total": 5769.553357074444, + "cc:pop:wp-total-UN": 6691.605052838507, + "cc:id": "102", + "cc:Name": "Gao MCHP", + "cc:site": [-11.1884, 7.7155], + "user:parentName": "Dama", + "user:code": "OU_222738", + "user:orgUnitId": "GAvxcmr5jB1", + "user:level": "4", + "user:parentId": "myQ4q1W6B4y" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.69555, 7.856812], + [-11.694995, 7.856079], + [-11.694703, 7.856303], + [-11.694049, 7.855562], + [-11.693668, 7.854781], + [-11.693774, 7.854285], + [-11.693589, 7.853278], + [-11.693327, 7.852693], + [-11.69265, 7.851985], + [-11.692256, 7.852005], + [-11.691355, 7.852611], + [-11.689631, 7.854081], + [-11.687574, 7.854901], + [-11.686408, 7.854995], + [-11.684872, 7.85488], + [-11.683632, 7.855482], + [-11.680777, 7.856128], + [-11.68054, 7.856322], + [-11.677112, 7.856839], + [-11.67511, 7.857908], + [-11.674373, 7.857984], + [-11.673933, 7.858293], + [-11.673331, 7.858348], + [-11.67204, 7.858034], + [-11.669949, 7.857827], + [-11.668983, 7.85794], + [-11.665787, 7.858972], + [-11.660817, 7.857889], + [-11.659834, 7.858002], + [-11.659157, 7.858253], + [-11.657911, 7.858563], + [-11.657641, 7.858576], + [-11.65515, 7.859136], + [-11.654451, 7.859154], + [-11.652863, 7.85874], + [-11.652367, 7.858972], + [-11.651661, 7.858991], + [-11.649507, 7.859608], + [-11.646864, 7.860111], + [-11.645326, 7.860886], + [-11.644768, 7.861339], + [-11.64443, 7.861985], + [-11.643465, 7.862675], + [-11.639389, 7.864509], + [-11.640468, 7.862637], + [-11.636563, 7.855871], + [-11.640468, 7.849106], + [-11.643032, 7.849105], + [-11.640811, 7.848443], + [-11.637082, 7.83875], + [-11.633749, 7.835417], + [-11.632083, 7.835416], + [-11.632083, 7.830417], + [-11.632916, 7.829583], + [-11.632917, 7.827917], + [-11.63125, 7.827083], + [-11.631249, 7.825416], + [-11.627017, 7.819774], + [-11.625786, 7.821249], + [-11.625416, 7.821249], + [-11.61875, 7.814583], + [-11.619582, 7.802084], + [-11.609583, 7.807083], + [-11.607082, 7.809583], + [-11.606771, 7.809531], + [-11.606646, 7.808478], + [-11.606569, 7.806796], + [-11.606707, 7.805979], + [-11.606496, 7.805614], + [-11.599395, 7.805613], + [-11.597083, 7.802916], + [-11.597083, 7.792917], + [-11.597141, 7.792844], + [-11.599057, 7.789524], + [-11.595151, 7.782759], + [-11.587339, 7.782759], + [-11.583433, 7.789524], + [-11.585056, 7.792336], + [-11.585055, 7.792337], + [-11.583749, 7.79125], + [-11.574583, 7.79125], + [-11.572916, 7.792084], + [-11.57194, 7.793059], + [-11.572053, 7.793162], + [-11.569583, 7.79625], + [-11.569582, 7.804582], + [-11.565416, 7.80125], + [-11.557083, 7.80125], + [-11.556249, 7.807083], + [-11.552919, 7.810414], + [-11.550275, 7.810413], + [-11.546369, 7.803648], + [-11.540884, 7.803648], + [-11.539583, 7.806249], + [-11.539593, 7.806397], + [-11.532349, 7.806398], + [-11.528442, 7.813163], + [-11.52063, 7.813163], + [-11.518244, 7.809031], + [-11.514583, 7.80875], + [-11.512082, 7.810416], + [-11.506843, 7.80998], + [-11.505005, 7.813163], + [-11.506305, 7.815416], + [-11.50375, 7.815417], + [-11.50125, 7.817084], + [-11.500494, 7.825383], + [-11.499579, 7.825445], + [-11.493437, 7.824428], + [-11.493022, 7.82508], + [-11.492291, 7.825708], + [-11.488258, 7.827091], + [-11.48672, 7.82826], + [-11.484417, 7.829609], + [-11.482105, 7.831549], + [-11.480245, 7.832817], + [-11.478234, 7.834454], + [-11.477207, 7.835286], + [-11.477429, 7.835858], + [-11.479, 7.8361], + [-11.482799, 7.836499], + [-11.493499, 7.836599], + [-11.498899, 7.8357], + [-11.503399, 7.8337], + [-11.5062, 7.833099], + [-11.5101, 7.8328], + [-11.522199, 7.832899], + [-11.5261, 7.832599], + [-11.529, 7.831999], + [-11.533399, 7.83], + [-11.539199, 7.8285], + [-11.5446, 7.826299], + [-11.5483, 7.825499], + [-11.554099, 7.8252], + [-11.557899, 7.8247], + [-11.563799, 7.8225], + [-11.567899, 7.8218], + [-11.5747, 7.821299], + [-11.5783, 7.820399], + [-11.5832, 7.818299], + [-11.587899, 7.8177], + [-11.5906, 7.8182], + [-11.5922, 7.8196], + [-11.592899, 7.821899], + [-11.5925, 7.824699], + [-11.59, 7.830299], + [-11.5887, 7.835299], + [-11.5875, 7.837799], + [-11.582699, 7.8443], + [-11.5809, 7.848199], + [-11.578899, 7.8517], + [-11.577499, 7.8549], + [-11.575899, 7.8571], + [-11.5724, 7.860699], + [-11.568199, 7.8637], + [-11.5644, 7.869599], + [-11.5616, 7.874899], + [-11.5581, 7.879199], + [-11.5564, 7.882399], + [-11.5558, 7.885], + [-11.5558, 7.888299], + [-11.5568, 7.890799], + [-11.5586, 7.891699], + [-11.5608, 7.891499], + [-11.563999, 7.8896], + [-11.5671, 7.888199], + [-11.571299, 7.8857], + [-11.5745, 7.884299], + [-11.582999, 7.8797], + [-11.587699, 7.876], + [-11.5899, 7.874499], + [-11.5965, 7.8712], + [-11.598999, 7.8708], + [-11.600848, 7.871184], + [-11.601265, 7.87097], + [-11.602222, 7.870047], + [-11.604241, 7.868897], + [-11.604223, 7.86871], + [-11.605394, 7.868206], + [-11.605797, 7.8682], + [-11.606192, 7.868693], + [-11.606307, 7.869178], + [-11.606684, 7.869758], + [-11.607785, 7.870662], + [-11.608984, 7.871346], + [-11.610118, 7.871545], + [-11.610435, 7.872135], + [-11.612057, 7.871779], + [-11.612579, 7.871172], + [-11.613054, 7.871165], + [-11.613137, 7.87029], + [-11.613781, 7.870402], + [-11.614502, 7.869961], + [-11.614788, 7.86993], + [-11.614992, 7.870372], + [-11.615221, 7.870269], + [-11.616401, 7.870744], + [-11.616546, 7.870375], + [-11.616391, 7.870172], + [-11.616555, 7.870079], + [-11.616632, 7.869664], + [-11.617574, 7.869534], + [-11.618661, 7.868916], + [-11.621183, 7.867882], + [-11.623275, 7.867432], + [-11.623404, 7.867209], + [-11.626557, 7.866156], + [-11.627222, 7.86613], + [-11.62758, 7.866306], + [-11.628077, 7.867403], + [-11.628435, 7.867509], + [-11.628774, 7.866909], + [-11.632431, 7.865695], + [-11.634549, 7.865781], + [-11.636646, 7.865101], + [-11.636698, 7.865264], + [-11.636775, 7.865124], + [-11.637288, 7.865041], + [-11.638382, 7.865098], + [-11.643256, 7.863179], + [-11.643257, 7.86318], + [-11.643248, 7.86353], + [-11.642658, 7.863976], + [-11.643724, 7.863706], + [-11.644577, 7.863196], + [-11.646471, 7.862888], + [-11.646668, 7.862503], + [-11.648147, 7.861421], + [-11.650327, 7.860219], + [-11.65102, 7.859997], + [-11.652157, 7.859766], + [-11.656077, 7.860073], + [-11.658493, 7.859866], + [-11.6625, 7.859969], + [-11.66244, 7.860322], + [-11.6648, 7.859599], + [-11.667599, 7.8591], + [-11.671699, 7.8588], + [-11.683299, 7.858899], + [-11.687399, 7.8587], + [-11.6904, 7.858199], + [-11.69555, 7.856812] + ] + ], + "type": "Polygon" + }, + "id": 103, + "properties": { + "cc:admin:id": ["40"], + "cc:oBld:total": 414, + "cc:pop:fifteen-to-twenty-four": 1353.4006937851057, + "cc:pop:grid3-total": 5703.6922826067985, + "cc:pop:kontur-total": 7770.916400619103, + "cc:pop:men": 3692.284984409159, + "cc:pop:sixty-plus": 557.4493288254018, + "cc:pop:total": 7598.956637353043, + "cc:pop:under-five": 1235.922519341195, + "cc:pop:women": 3906.6716529438854, + "cc:pop:women-fiften-to-forty-nine": 1841.853007830573, + "cc:pop:wp-total": 6333.447056057462, + "cc:pop:wp-total-UN": 7354.683097097907, + "cc:id": "103", + "cc:Name": "Gbaama MCHP", + "cc:site": [-11.6133, 7.839], + "user:parentName": "Jaiama Bongor", + "user:code": "OU_826", + "user:orgUnitId": "ei21lW7hFPX", + "user:level": "4", + "user:parentId": "daJPPxtIrQn" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.325124, 7.953542], + [-11.324383, 7.952166], + [-11.324401, 7.951135], + [-11.320999, 7.9527], + [-11.3176, 7.954699], + [-11.3155, 7.955399], + [-11.313299, 7.955599], + [-11.3107, 7.9553], + [-11.308199, 7.954099], + [-11.303199, 7.950099], + [-11.301099, 7.949099], + [-11.2979, 7.9484], + [-11.29625, 7.948369], + [-11.29625, 7.949583], + [-11.297083, 7.951249], + [-11.300416, 7.952084], + [-11.297083, 7.959583], + [-11.29375, 7.959584], + [-11.292916, 7.960417], + [-11.287917, 7.962917], + [-11.287916, 7.967083], + [-11.28625, 7.96875], + [-11.286249, 7.972083], + [-11.285416, 7.972084], + [-11.277083, 7.977083], + [-11.282916, 7.979584], + [-11.284582, 7.981249], + [-11.284582, 7.983749], + [-11.283907, 7.985778], + [-11.282151, 7.985855], + [-11.281752, 7.985964], + [-11.277917, 7.985417], + [-11.277399, 7.987999], + [-11.276314, 7.988812], + [-11.275661, 7.988912], + [-11.275118, 7.989325], + [-11.27441, 7.989448], + [-11.275523, 7.990583], + [-11.275971, 7.990892], + [-11.275971, 7.990893], + [-11.27125, 7.992916], + [-11.268344, 7.990592], + [-11.26828, 7.990775], + [-11.267685, 7.990986], + [-11.268439, 7.992109], + [-11.267782, 7.99324], + [-11.268298, 7.993605], + [-11.268326, 7.993882], + [-11.267782, 7.993294], + [-11.267481, 7.99279], + [-11.266151, 7.992063], + [-11.264996, 7.99211], + [-11.264883, 7.99251], + [-11.264583, 7.992637], + [-11.264583, 8.001249], + [-11.267915, 8.00125], + [-11.267916, 8.001251], + [-11.267348, 8.012033], + [-11.264306, 8.017303], + [-11.262371, 8.017304], + [-11.262347, 8.017597], + [-11.260614, 8.018043], + [-11.260477, 8.01738], + [-11.260495, 8.017354], + [-11.258749, 8.01875], + [-11.251249, 8.01875], + [-11.242179, 8.019575], + [-11.244672, 8.023895], + [-11.242917, 8.02375], + [-11.23875, 8.027083], + [-11.237916, 8.030416], + [-11.227082, 8.029584], + [-11.225417, 8.030417], + [-11.222083, 8.034584], + [-11.222315, 8.037601], + [-11.221336, 8.037601], + [-11.219112, 8.03375], + [-11.212807, 8.03375], + [-11.2124, 8.036599], + [-11.2105, 8.040899], + [-11.2101, 8.043299], + [-11.210499, 8.045699], + [-11.2122, 8.0493], + [-11.213999, 8.055999], + [-11.216299, 8.060399], + [-11.2176, 8.0635], + [-11.2197, 8.0671], + [-11.2216, 8.0709], + [-11.2237, 8.0738], + [-11.229899, 8.080499], + [-11.231499, 8.083199], + [-11.2321, 8.0853], + [-11.2326, 8.0906], + [-11.233499, 8.093999], + [-11.235499, 8.097599], + [-11.2368, 8.1007], + [-11.239399, 8.105999], + [-11.2407, 8.112199], + [-11.248299, 8.1119], + [-11.251, 8.111399], + [-11.256199, 8.1092], + [-11.2613, 8.107899], + [-11.269599, 8.104], + [-11.274, 8.101799], + [-11.2778, 8.101099], + [-11.288999, 8.101], + [-11.292999, 8.1008], + [-11.295209, 8.100325], + [-11.295416, 8.099969], + [-11.295416, 8.092084], + [-11.291226, 8.087893], + [-11.291618, 8.087212], + [-11.287713, 8.080447], + [-11.291618, 8.073681], + [-11.287713, 8.066915], + [-11.291618, 8.06015], + [-11.287713, 8.053383], + [-11.291349, 8.047084], + [-11.298749, 8.047083], + [-11.303749, 8.042916], + [-11.302279, 8.033361], + [-11.299439, 8.033929], + [-11.297044, 8.034461], + [-11.295936, 8.034907], + [-11.289583, 8.032083], + [-11.292916, 8.02125], + [-11.295416, 8.022083], + [-11.295417, 8.014584], + [-11.305416, 8.015416], + [-11.307916, 8.013749], + [-11.30491, 8.010744], + [-11.305042, 8.010392], + [-11.304517, 8.009733], + [-11.303916, 8.009449], + [-11.303429, 8.008795], + [-11.302958, 8.007697], + [-11.302386, 8.007203], + [-11.302053, 8.007886], + [-11.301251, 8.007084], + [-11.305416, 8.00625], + [-11.307916, 8.005416], + [-11.307226, 7.997134], + [-11.307227, 7.997133], + [-11.307259, 7.997146], + [-11.30792, 7.996254], + [-11.307916, 7.99625], + [-11.30625, 7.996249], + [-11.304583, 7.994583], + [-11.304583, 7.992916], + [-11.306249, 7.984584], + [-11.308749, 7.982083], + [-11.30875, 7.98125], + [-11.311346, 7.981249], + [-11.311443, 7.980358], + [-11.311542, 7.979251], + [-11.311269, 7.976446], + [-11.311507, 7.976494], + [-11.311991, 7.977023], + [-11.312083, 7.977195], + [-11.312083, 7.971249], + [-11.31375, 7.969584], + [-11.317916, 7.971249], + [-11.317083, 7.967917], + [-11.317083, 7.965989], + [-11.317473, 7.965923], + [-11.317514, 7.96511], + [-11.317888, 7.964426], + [-11.318415, 7.962782], + [-11.318706, 7.962565], + [-11.318921, 7.961315], + [-11.318713, 7.960417], + [-11.31875, 7.960416], + [-11.321249, 7.959583], + [-11.324582, 7.95625], + [-11.325124, 7.953542] + ] + ], + "type": "Polygon" + }, + "id": 104, + "properties": { + "cc:admin:id": ["50"], + "cc:oBld:total": 1435, + "cc:pop:fifteen-to-twenty-four": 3357.98478010905, + "cc:pop:grid3-total": 9124.617990785651, + "cc:pop:kontur-total": 17834.107012058306, + "cc:pop:men": 9741.412615062582, + "cc:pop:sixty-plus": 1063.4147830501404, + "cc:pop:total": 17755.39171041658, + "cc:pop:under-five": 2703.075895473784, + "cc:pop:women": 8013.979095354005, + "cc:pop:women-fiften-to-forty-nine": 4055.822930028255, + "cc:pop:wp-total": 13699.313844643162, + "cc:pop:wp-total-UN": 15872.214875337153, + "cc:id": "104", + "cc:Name": "Gbado MCHP", + "cc:site": [-11.2776, 8.0109], + "user:parentName": "Kandu Lepiema", + "user:code": "OU_222730", + "user:orgUnitId": "kedYKTsv95j", + "user:level": "4", + "user:parentId": "K1r3uF6eZ8n" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.903864, 8.062566], + [-11.903599, 8.060799], + [-11.9024, 8.0575], + [-11.9004, 8.0541], + [-11.896599, 8.049999], + [-11.8913, 8.0454], + [-11.8735, 8.034], + [-11.8659, 8.0278], + [-11.8625, 8.0255], + [-11.8561, 8.0223], + [-11.8497, 8.0201], + [-11.846099, 8.018199], + [-11.841799, 8.014799], + [-11.8294, 8.0037], + [-11.826499, 8.0112], + [-11.822099, 8.0198], + [-11.819499, 8.023], + [-11.8165, 8.025199], + [-11.8127, 8.027099], + [-11.809699, 8.0292], + [-11.8061, 8.033399], + [-11.8034, 8.038699], + [-11.801199, 8.0412], + [-11.7973, 8.044299], + [-11.7942, 8.045699], + [-11.792299, 8.0473], + [-11.790799, 8.0491], + [-11.788999, 8.0529], + [-11.7869, 8.055499], + [-11.783799, 8.0583], + [-11.7801, 8.0613], + [-11.7777, 8.067699], + [-11.7754, 8.0711], + [-11.7763, 8.0744], + [-11.7785, 8.0789], + [-11.7792, 8.0823], + [-11.779299, 8.085899], + [-11.778599, 8.0894], + [-11.776299, 8.0937], + [-11.772799, 8.1009], + [-11.7722, 8.1037], + [-11.772599, 8.107499], + [-11.775099, 8.112399], + [-11.7765, 8.1155], + [-11.7784, 8.1191], + [-11.7794, 8.1224], + [-11.7805, 8.129899], + [-11.7843, 8.1378], + [-11.7866, 8.1409], + [-11.7893, 8.143699], + [-11.795499, 8.144199], + [-11.799799, 8.145199], + [-11.807499, 8.149199], + [-11.8115, 8.1505], + [-11.8161, 8.151], + [-11.8332, 8.1516], + [-11.8376, 8.1524], + [-11.8436, 8.1542], + [-11.849299, 8.154799], + [-11.852199, 8.1547], + [-11.854999, 8.1542], + [-11.8577, 8.153099], + [-11.8623, 8.149699], + [-11.8652, 8.146699], + [-11.868299, 8.1425], + [-11.871199, 8.1366], + [-11.873699, 8.1316], + [-11.877, 8.1229], + [-11.884899, 8.1151], + [-11.889, 8.109799], + [-11.892899, 8.1013], + [-11.8957, 8.095899], + [-11.8968, 8.091999], + [-11.898699, 8.0811], + [-11.901999, 8.0745], + [-11.903899, 8.0689], + [-11.904199, 8.0648], + [-11.903864, 8.062566] + ] + ], + "type": "Polygon" + }, + "id": 105, + "properties": { + "cc:admin:id": ["35"], + "cc:oBld:total": 440, + "cc:pop:fifteen-to-twenty-four": 1655.2715386172017, + "cc:pop:grid3-total": 4615.459808095426, + "cc:pop:kontur-total": 9896.542557744966, + "cc:pop:men": 4139.025371857909, + "cc:pop:sixty-plus": 707.4369123475798, + "cc:pop:total": 9031.647622297105, + "cc:pop:under-five": 1552.9432064548043, + "cc:pop:women": 4892.622250439202, + "cc:pop:women-fiften-to-forty-nine": 2390.4495005620292, + "cc:pop:wp-total": 7755.47203972906, + "cc:pop:wp-total-UN": 8995.92097932203, + "cc:id": "105", + "cc:Name": "Gbaiima CHC", + "cc:site": [-11.8495, 8.1094], + "user:parentName": "Gbo", + "user:code": "OU_653", + "user:orgUnitId": "jGYT5U5qJP6", + "user:level": "4", + "user:parentId": "YmmeuGbqOwR" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.351599, 8.081899], + [-11.349799, 8.071999], + [-11.346999, 8.060199], + [-11.3469, 8.055999], + [-11.347399, 8.0496], + [-11.347099, 8.045399], + [-11.3456, 8.0375], + [-11.343, 8.0281], + [-11.3425, 8.0253], + [-11.342449, 8.024584], + [-11.341561, 8.024583], + [-11.340606, 8.021856], + [-11.340173, 8.021661], + [-11.339813, 8.021123], + [-11.339554, 8.021346], + [-11.339322, 8.021222], + [-11.339495, 8.020973], + [-11.339702, 8.021034], + [-11.339711, 8.019917], + [-11.33988, 8.019784], + [-11.338768, 8.016609], + [-11.338433, 8.016605], + [-11.338468, 8.016203], + [-11.334893, 8.015607], + [-11.335057, 8.016865], + [-11.335434, 8.017943], + [-11.336104, 8.018961], + [-11.336398, 8.02001], + [-11.336733, 8.020309], + [-11.337194, 8.022092], + [-11.336649, 8.024083], + [-11.336042, 8.024934], + [-11.336042, 8.025887], + [-11.338006, 8.02911], + [-11.337508, 8.033019], + [-11.336682, 8.034867], + [-11.336139, 8.035368], + [-11.3351, 8.035872], + [-11.334644, 8.036542], + [-11.334708, 8.037513], + [-11.335309, 8.037896], + [-11.336403, 8.039802], + [-11.337523, 8.040717], + [-11.337771, 8.041983], + [-11.336652, 8.042824], + [-11.336296, 8.045937], + [-11.336622, 8.047367], + [-11.336558, 8.048148], + [-11.336339, 8.050207], + [-11.335956, 8.051524], + [-11.337234, 8.05178], + [-11.336992, 8.053273], + [-11.335985, 8.064427], + [-11.335921, 8.067083], + [-11.334697, 8.067084], + [-11.33457, 8.069342], + [-11.334669, 8.071936], + [-11.333898, 8.07353], + [-11.334381, 8.073881], + [-11.3349, 8.075831], + [-11.334622, 8.078591], + [-11.334107, 8.080611], + [-11.334145, 8.082391], + [-11.344599, 8.0822], + [-11.351599, 8.081899] + ] + ], + "type": "Polygon" + }, + "id": 106, + "properties": { + "cc:admin:id": ["50"], + "cc:oBld:total": 91, + "cc:pop:fifteen-to-twenty-four": 168.39445963835638, + "cc:pop:grid3-total": 300.32090649999435, + "cc:pop:kontur-total": 858.8111383851391, + "cc:pop:men": 489.8568228936533, + "cc:pop:sixty-plus": 55.13323222410145, + "cc:pop:total": 892.1053846255132, + "cc:pop:under-five": 132.21542354394597, + "cc:pop:women": 402.24856173186, + "cc:pop:women-fiften-to-forty-nine": 206.57175005478416, + "cc:pop:wp-total": 1097.1349837047264, + "cc:pop:wp-total-UN": 1270.0601067071368, + "cc:id": "106", + "cc:Name": "Gbainkfay MCHP", + "cc:site": [-11.3387, 8.0452], + "user:parentName": "Gbanti Kamaranka", + "user:code": "OU_193217", + "user:orgUnitId": "QFcMulIoEii", + "user:level": "4", + "user:parentId": "e1eIKM1GIF3" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.558813, 8.09295], + [-10.554907, 8.086185], + [-10.548552, 8.086184], + [-10.548663, 8.085452], + [-10.549148, 8.084962], + [-10.551335, 8.084218], + [-10.551432, 8.083776], + [-10.552172, 8.083011], + [-10.553893, 8.082088], + [-10.554005, 8.081962], + [-10.550043, 8.081961], + [-10.546137, 8.075196], + [-10.550043, 8.068429], + [-10.54873, 8.066157], + [-10.530599, 8.0957], + [-10.5144, 8.121699], + [-10.5098, 8.128799], + [-10.4943, 8.136599], + [-10.493, 8.1366], + [-10.492999, 8.144299], + [-10.4833, 8.1411], + [-10.4774, 8.1443], + [-10.474799, 8.146999], + [-10.469, 8.145], + [-10.468899, 8.1452], + [-10.4649, 8.1518], + [-10.4648, 8.158099], + [-10.4643, 8.160499], + [-10.461999, 8.1657], + [-10.460599, 8.1714], + [-10.459899, 8.1727], + [-10.455299, 8.1787], + [-10.453299, 8.1829], + [-10.451, 8.187099], + [-10.4496, 8.190399], + [-10.4477, 8.193199], + [-10.445199, 8.1958], + [-10.4277, 8.213199], + [-10.4234, 8.217899], + [-10.421399, 8.2207], + [-10.419199, 8.2249], + [-10.415899, 8.2293], + [-10.4117, 8.233099], + [-10.4084, 8.234899], + [-10.402099, 8.2365], + [-10.394, 8.2401], + [-10.3907, 8.2431], + [-10.3889, 8.247], + [-10.39, 8.25], + [-10.391599, 8.253699], + [-10.3938, 8.258199], + [-10.3984, 8.2618], + [-10.401, 8.2634], + [-10.405899, 8.265699], + [-10.408899, 8.267899], + [-10.412199, 8.271699], + [-10.4145, 8.2758], + [-10.4171, 8.278599], + [-10.4197, 8.2797], + [-10.4247, 8.2809], + [-10.4323, 8.2845], + [-10.440499, 8.288499], + [-10.4435, 8.2907], + [-10.446299, 8.293299], + [-10.4493, 8.2967], + [-10.4508, 8.2993], + [-10.4516, 8.3024], + [-10.451799, 8.306], + [-10.4515, 8.314099], + [-10.450399, 8.3179], + [-10.4466, 8.324299], + [-10.453399, 8.33], + [-10.4546, 8.332], + [-10.455399, 8.334299], + [-10.4558, 8.3401], + [-10.455899, 8.363299], + [-10.4563, 8.3672], + [-10.4578, 8.3706], + [-10.467, 8.381899], + [-10.471299, 8.3769], + [-10.4714, 8.376699], + [-10.480927, 8.369925], + [-10.480741, 8.369018], + [-10.47975, 8.366342], + [-10.478485, 8.365468], + [-10.478084, 8.364634], + [-10.477949, 8.363916], + [-10.47821, 8.363259], + [-10.478783, 8.362659], + [-10.479914, 8.362273], + [-10.484639, 8.358417], + [-10.481036, 8.353012], + [-10.481043, 8.353005], + [-10.482555, 8.350932], + [-10.483331, 8.350404], + [-10.483899, 8.349584], + [-10.483749, 8.349583], + [-10.477917, 8.344583], + [-10.478749, 8.34125], + [-10.479582, 8.341249], + [-10.480416, 8.337084], + [-10.480402, 8.33707], + [-10.480176, 8.337298], + [-10.479973, 8.337421], + [-10.479583, 8.336249], + [-10.481249, 8.332916], + [-10.480417, 8.331249], + [-10.480417, 8.329584], + [-10.487082, 8.327083], + [-10.487083, 8.326249], + [-10.490416, 8.323749], + [-10.49125, 8.319583], + [-10.492916, 8.317917], + [-10.493749, 8.317916], + [-10.494583, 8.309583], + [-10.506249, 8.306249], + [-10.50625, 8.304583], + [-10.509814, 8.301374], + [-10.507203, 8.296849], + [-10.507995, 8.296258], + [-10.508798, 8.296222], + [-10.510138, 8.295846], + [-10.511395, 8.2947], + [-10.512232, 8.294685], + [-10.512984, 8.294869], + [-10.513825, 8.294721], + [-10.514825, 8.294779], + [-10.516705, 8.293985], + [-10.51625, 8.291249], + [-10.522082, 8.287916], + [-10.522083, 8.283749], + [-10.52375, 8.281249], + [-10.527083, 8.277916], + [-10.527082, 8.271764], + [-10.526, 8.272603], + [-10.525451, 8.272751], + [-10.522917, 8.269584], + [-10.522083, 8.264584], + [-10.526249, 8.259584], + [-10.531249, 8.260416], + [-10.531928, 8.255673], + [-10.53275, 8.255548], + [-10.533828, 8.255092], + [-10.534136, 8.255087], + [-10.534582, 8.25375], + [-10.52875, 8.24875], + [-10.527917, 8.24625], + [-10.532083, 8.24375], + [-10.537082, 8.243749], + [-10.537917, 8.24125], + [-10.540416, 8.238749], + [-10.53875, 8.235416], + [-10.537917, 8.229584], + [-10.538351, 8.226101], + [-10.539014, 8.225991], + [-10.539243, 8.225752], + [-10.539259, 8.225481], + [-10.53952, 8.225367], + [-10.539464, 8.225136], + [-10.539016, 8.224883], + [-10.53912, 8.224144], + [-10.539581, 8.223623], + [-10.539689, 8.223259], + [-10.539841, 8.223198], + [-10.540277, 8.223626], + [-10.540533, 8.223462], + [-10.540272, 8.221994], + [-10.539814, 8.221969], + [-10.539854, 8.221803], + [-10.53875, 8.221249], + [-10.53875, 8.215417], + [-10.542082, 8.214583], + [-10.544507, 8.212158], + [-10.544338, 8.212035], + [-10.545416, 8.210416], + [-10.545417, 8.200417], + [-10.541783, 8.194603], + [-10.541967, 8.19447], + [-10.543009, 8.193941], + [-10.544464, 8.193472], + [-10.540417, 8.188749], + [-10.540417, 8.187083], + [-10.543749, 8.18125], + [-10.539583, 8.180416], + [-10.544582, 8.170417], + [-10.542917, 8.168749], + [-10.543749, 8.164584], + [-10.547083, 8.161249], + [-10.547082, 8.160416], + [-10.542917, 8.155416], + [-10.542917, 8.153749], + [-10.544582, 8.14625], + [-10.54125, 8.145416], + [-10.54125, 8.132917], + [-10.540828, 8.132494], + [-10.545962, 8.132493], + [-10.549722, 8.125984], + [-10.552916, 8.126249], + [-10.552917, 8.11875], + [-10.557359, 8.112826], + [-10.556535, 8.112561], + [-10.555266, 8.112629], + [-10.555265, 8.112628], + [-10.558813, 8.106482], + [-10.554908, 8.099716], + [-10.558813, 8.09295] + ] + ], + "type": "Polygon" + }, + "id": 107, + "properties": { + "cc:admin:id": ["77"], + "cc:oBld:total": 4957, + "cc:pop:fifteen-to-twenty-four": 5069.481587376172, + "cc:pop:grid3-total": 22525.95477089347, + "cc:pop:kontur-total": 29726.130834431013, + "cc:pop:men": 12890.217897595885, + "cc:pop:sixty-plus": 1445.7771215421988, + "cc:pop:total": 27110.90306921148, + "cc:pop:under-five": 4168.12582897124, + "cc:pop:women": 14220.685171615587, + "cc:pop:women-fiften-to-forty-nine": 7107.716212928928, + "cc:pop:wp-total": 24496.169478026786, + "cc:pop:wp-total-UN": 28413.943577128157, + "cc:id": "107", + "cc:Name": "Gbalahun CHP", + "cc:site": [-10.4887, 8.2545], + "user:parentName": "Luawa", + "user:code": "OU_204898", + "user:orgUnitId": "nDoybVJLD74", + "user:level": "4", + "user:parentId": "cM2BKSrj9F9" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.746389, 9.01403], + [-12.744582, 9.010417], + [-12.742083, 9.009582], + [-12.742082, 9.000417], + [-12.741249, 9.000416], + [-12.737916, 8.99875], + [-12.73375, 8.998749], + [-12.734959, 8.995726], + [-12.735416, 8.995741], + [-12.735416, 8.992917], + [-12.72875, 8.993749], + [-12.727917, 8.992082], + [-12.727916, 8.991249], + [-12.72125, 8.989583], + [-12.715417, 8.989582], + [-12.714583, 8.988749], + [-12.714582, 8.987917], + [-12.710417, 8.985417], + [-12.710416, 8.982916], + [-12.705564, 8.982224], + [-12.705694, 8.982735], + [-12.705435, 8.983969], + [-12.704541, 8.986501], + [-12.704045, 8.986809], + [-12.70125, 8.98625], + [-12.699582, 8.97875], + [-12.692917, 8.97625], + [-12.687917, 8.978749], + [-12.686249, 8.977083], + [-12.68125, 8.977082], + [-12.680416, 8.97625], + [-12.678419, 8.976249], + [-12.678181, 8.974933], + [-12.678275, 8.97375], + [-12.672083, 8.97375], + [-12.670416, 8.975416], + [-12.66375, 8.972082], + [-12.667082, 8.966249], + [-12.667082, 8.96485], + [-12.665966, 8.96595], + [-12.662408, 8.969279], + [-12.659911, 8.971139], + [-12.659203, 8.971598], + [-12.656249, 8.970417], + [-12.654582, 8.970416], + [-12.647916, 8.969582], + [-12.645417, 8.967082], + [-12.645416, 8.966249], + [-12.643749, 8.960417], + [-12.642082, 8.960417], + [-12.634582, 8.962083], + [-12.63375, 8.96375], + [-12.634582, 8.967916], + [-12.636249, 8.97125], + [-12.631249, 8.972916], + [-12.62875, 8.972916], + [-12.628749, 8.965417], + [-12.625416, 8.96375], + [-12.620417, 8.96625], + [-12.619582, 8.970416], + [-12.614583, 8.97125], + [-12.614582, 8.974583], + [-12.61125, 8.974582], + [-12.610416, 8.972083], + [-12.60875, 8.972082], + [-12.608749, 8.97125], + [-12.607083, 8.97125], + [-12.604602, 8.972489], + [-12.604155, 8.972027], + [-12.603571, 8.970179], + [-12.602105, 8.967969], + [-12.601844, 8.967703], + [-12.601396, 8.967285], + [-12.600695, 8.966939], + [-12.599567, 8.966775], + [-12.599617, 8.967991], + [-12.59948, 8.968263], + [-12.59972, 8.96887], + [-12.599725, 8.970075], + [-12.600379, 8.972051], + [-12.600399, 8.972073], + [-12.59622, 8.969985], + [-12.595699, 8.9705], + [-12.5933, 8.973099], + [-12.5918, 8.975199], + [-12.5908, 8.978499], + [-12.5906, 8.9811], + [-12.5907, 8.9881], + [-12.590999, 8.991599], + [-12.591699, 8.994499], + [-12.594, 8.9984], + [-12.597899, 9.006499], + [-12.5985, 9.009199], + [-12.6023, 9.011799], + [-12.609399, 9.013999], + [-12.6139, 9.016], + [-12.617699, 9.016799], + [-12.620699, 9.0168], + [-12.623099, 9.0164], + [-12.625199, 9.0155], + [-12.6269, 9.013799], + [-12.6304, 9.0081], + [-12.6335, 9.006], + [-12.6364, 9.0054], + [-12.6393, 9.0055], + [-12.642199, 9.005999], + [-12.647599, 9.008299], + [-12.6503, 9.009], + [-12.658099, 9.009299], + [-12.663299, 9.0089], + [-12.6697, 9.0073], + [-12.6718, 9.0077], + [-12.676199, 9.009499], + [-12.6813, 9.0121], + [-12.6852, 9.0129], + [-12.692299, 9.013099], + [-12.699299, 9.0129], + [-12.702599, 9.0122], + [-12.7047, 9.011099], + [-12.708899, 9.0077], + [-12.7108, 9.0064], + [-12.7142, 9.0057], + [-12.717699, 9.006099], + [-12.719599, 9.0072], + [-12.7218, 9.01], + [-12.7322, 9.0163], + [-12.735699, 9.019799], + [-12.736558, 9.021364], + [-12.737448, 9.020748], + [-12.738141, 9.019234], + [-12.738645, 9.019076], + [-12.744169, 9.015087], + [-12.746389, 9.01403] + ] + ], + "type": "Polygon" + }, + "id": 108, + "properties": { + "cc:admin:id": ["13"], + "cc:oBld:total": 18, + "cc:pop:fifteen-to-twenty-four": 882.4573058302228, + "cc:pop:grid3-total": 5503.108510515105, + "cc:pop:kontur-total": 4614.308884049274, + "cc:pop:men": 2295.451107328481, + "cc:pop:sixty-plus": 271.1976690817764, + "cc:pop:total": 4849.07619153525, + "cc:pop:under-five": 759.3491704047898, + "cc:pop:women": 2553.62508420677, + "cc:pop:women-fiften-to-forty-nine": 1272.222680628669, + "cc:pop:wp-total": 4557.787824387508, + "cc:pop:wp-total-UN": 5283.158791181788, + "cc:id": "108", + "cc:Name": "Gbalamuya MCHP", + "cc:site": [-12.6562, 9], + "user:parentName": "Gbinleh Dixion", + "user:code": "OU_211219", + "user:orgUnitId": "IPvrsWbm0EM", + "user:level": "4", + "user:parentId": "qIRCo0MfuGb" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.762844, 8.698291], + [-10.76192, 8.696691], + [-10.754108, 8.696691], + [-10.750202, 8.703456], + [-10.743809, 8.703456], + [-10.743808, 8.703455], + [-10.744582, 8.699583], + [-10.727083, 8.69375], + [-10.727083, 8.692903], + [-10.727317, 8.692497], + [-10.727083, 8.69209], + [-10.727082, 8.69125], + [-10.724583, 8.690417], + [-10.724582, 8.689582], + [-10.716249, 8.68375], + [-10.712083, 8.684582], + [-10.710416, 8.67625], + [-10.70375, 8.672082], + [-10.705416, 8.667084], + [-10.705416, 8.66625], + [-10.701249, 8.662916], + [-10.698749, 8.65375], + [-10.697039, 8.652609], + [-10.696495, 8.655589], + [-10.696189, 8.65607], + [-10.692917, 8.655417], + [-10.692082, 8.652917], + [-10.689583, 8.65125], + [-10.692082, 8.647916], + [-10.689583, 8.643749], + [-10.697082, 8.640416], + [-10.695416, 8.63875], + [-10.688749, 8.639583], + [-10.687916, 8.63625], + [-10.687082, 8.636249], + [-10.685417, 8.634584], + [-10.687082, 8.632083], + [-10.686309, 8.626672], + [-10.685939, 8.629016], + [-10.685486, 8.629362], + [-10.685081, 8.629406], + [-10.684315, 8.631603], + [-10.683811, 8.632343], + [-10.683658, 8.63229], + [-10.683328, 8.63254], + [-10.683314, 8.632717], + [-10.682388, 8.632905], + [-10.682103, 8.633222], + [-10.682086, 8.633689], + [-10.680772, 8.634977], + [-10.67973, 8.635227], + [-10.678641, 8.635827], + [-10.677083, 8.63375], + [-10.677082, 8.63125], + [-10.675416, 8.630416], + [-10.674058, 8.624984], + [-10.674529, 8.624862], + [-10.675636, 8.623766], + [-10.675906, 8.623097], + [-10.676495, 8.622665], + [-10.676545, 8.622653], + [-10.669583, 8.617084], + [-10.669582, 8.61625], + [-10.668809, 8.615863], + [-10.668515, 8.616232], + [-10.667907, 8.617398], + [-10.667795, 8.617916], + [-10.667083, 8.617916], + [-10.665416, 8.616249], + [-10.65625, 8.61375], + [-10.655416, 8.61375], + [-10.645417, 8.615417], + [-10.646249, 8.619583], + [-10.644583, 8.619584], + [-10.639582, 8.62375], + [-10.634582, 8.624584], + [-10.62625, 8.62625], + [-10.626249, 8.627917], + [-10.623577, 8.630588], + [-10.623576, 8.630587], + [-10.623359, 8.63009], + [-10.622513, 8.630002], + [-10.623299, 8.632], + [-10.623499, 8.6346], + [-10.622999, 8.6371], + [-10.620799, 8.6424], + [-10.620299, 8.6458], + [-10.6201, 8.652199], + [-10.6194, 8.655699], + [-10.6164, 8.662399], + [-10.6149, 8.664399], + [-10.612499, 8.6665], + [-10.608, 8.668899], + [-10.605799, 8.6706], + [-10.601799, 8.6745], + [-10.5872, 8.689199], + [-10.5851, 8.690999], + [-10.582799, 8.6925], + [-10.5789, 8.694499], + [-10.576799, 8.6961], + [-10.572799, 8.6999], + [-10.561862, 8.710928], + [-10.561097, 8.711701], + [-10.5572, 8.715599], + [-10.5606, 8.718], + [-10.563, 8.719], + [-10.5672, 8.7201], + [-10.5726, 8.7222], + [-10.5754, 8.7228], + [-10.582199, 8.723199], + [-10.585999, 8.723799], + [-10.5918, 8.725899], + [-10.5949, 8.725599], + [-10.5968, 8.724499], + [-10.6017, 8.7207], + [-10.6052, 8.719599], + [-10.6092, 8.7192], + [-10.624199, 8.719399], + [-10.629099, 8.7191], + [-10.6317, 8.718499], + [-10.639299, 8.7149], + [-10.642899, 8.713], + [-10.6449, 8.712299], + [-10.6482, 8.711799], + [-10.658899, 8.7117], + [-10.662799, 8.711999], + [-10.6654, 8.7126], + [-10.673199, 8.7164], + [-10.6764, 8.7197], + [-10.6792, 8.7246], + [-10.682799, 8.728799], + [-10.6865, 8.7322], + [-10.689199, 8.733699], + [-10.691499, 8.734199], + [-10.6951, 8.734399], + [-10.700099, 8.7342], + [-10.704, 8.733199], + [-10.710599, 8.7298], + [-10.713, 8.727699], + [-10.7157, 8.7241], + [-10.7216, 8.720299], + [-10.7255, 8.718599], + [-10.7298, 8.716199], + [-10.733, 8.714899], + [-10.738099, 8.7125], + [-10.742399, 8.7115], + [-10.7445, 8.710799], + [-10.7464, 8.709599], + [-10.7515, 8.705599], + [-10.7561, 8.703299], + [-10.762799, 8.6993], + [-10.762844, 8.698291] + ] + ], + "type": "Polygon" + }, + "id": 109, + "properties": { + "cc:admin:id": ["125"], + "cc:oBld:total": 982, + "cc:pop:fifteen-to-twenty-four": 852.8767543150194, + "cc:pop:grid3-total": 5536.104188115581, + "cc:pop:kontur-total": 4519.171787478248, + "cc:pop:men": 1968.6074809992917, + "cc:pop:sixty-plus": 225.62287360636972, + "cc:pop:total": 4266.120837212166, + "cc:pop:under-five": 748.3875925335515, + "cc:pop:women": 2297.513356212872, + "cc:pop:women-fiften-to-forty-nine": 1094.4780523960833, + "cc:pop:wp-total": 2960.7212852171792, + "cc:pop:wp-total-UN": 3453.5449518696787, + "cc:id": "109", + "cc:Name": "Gbamandu MCHP", + "cc:site": [-10.669, 8.6426], + "user:parentName": "Soa", + "user:code": "OU_233323", + "user:orgUnitId": "AlLmKZIIIT4", + "user:level": "4", + "user:parentId": "iGHlidSFdpu" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.444092, 7.742145], + [-12.443899, 7.742081], + [-12.441902, 7.742173], + [-12.439063, 7.742143], + [-12.43747, 7.742455], + [-12.434778, 7.742604], + [-12.431979, 7.742891], + [-12.4302, 7.742143], + [-12.428577, 7.741301], + [-12.427017, 7.74002], + [-12.426173, 7.738741], + [-12.425332, 7.737337], + [-12.4253, 7.735994], + [-12.424831, 7.733903], + [-12.42452, 7.730503], + [-12.424457, 7.72916], + [-12.424332, 7.727475], + [-12.424082, 7.726071], + [-12.423553, 7.725104], + [-12.423146, 7.724573], + [-12.422211, 7.724697], + [-12.421774, 7.72448], + [-12.421898, 7.723949], + [-12.42118, 7.723512], + [-12.420306, 7.724043], + [-12.419028, 7.72529], + [-12.417748, 7.727007], + [-12.416593, 7.728411], + [-12.415699, 7.728848], + [-12.414299, 7.726984], + [-12.413805, 7.727479], + [-12.41295, 7.727681], + [-12.412011, 7.727457], + [-12.410931, 7.726989], + [-12.40814, 7.724971], + [-12.403964, 7.722466], + [-12.401865, 7.721305], + [-12.398747, 7.720326], + [-12.397218, 7.719938], + [-12.396627, 7.719164], + [-12.396342, 7.717941], + [-12.396261, 7.716801], + [-12.396282, 7.715965], + [-12.39675, 7.715579], + [-12.398075, 7.715986], + [-12.398829, 7.716394], + [-12.399705, 7.716841], + [-12.400499, 7.716963], + [-12.400818, 7.715588], + [-12.399656, 7.714813], + [-12.399004, 7.714507], + [-12.397904, 7.7141], + [-12.397231, 7.714141], + [-12.396397, 7.714365], + [-12.395661, 7.715113], + [-12.39498, 7.716346], + [-12.394975, 7.717076], + [-12.395164, 7.717378], + [-12.395117, 7.71893], + [-12.39476, 7.719302], + [-12.393144, 7.719678], + [-12.391968, 7.719658], + [-12.391381, 7.720345], + [-12.390771, 7.721364], + [-12.390516, 7.722561], + [-12.390617, 7.724037], + [-12.390846, 7.725235], + [-12.391634, 7.726348], + [-12.392224, 7.728188], + [-12.391851, 7.729727], + [-12.391348, 7.730836], + [-12.390872, 7.731638], + [-12.390134, 7.731756], + [-12.389552, 7.731315], + [-12.389069, 7.730652], + [-12.388729, 7.728606], + [-12.388171, 7.726322], + [-12.387585, 7.724913], + [-12.387216, 7.7242], + [-12.385463, 7.723762], + [-12.385403, 7.723582], + [-12.385377, 7.723554], + [-12.385002, 7.721683], + [-12.384988, 7.721669], + [-12.384225, 7.720829], + [-12.383638, 7.720522], + [-12.382008, 7.720217], + [-12.38071, 7.72004], + [-12.379793, 7.719912], + [-12.378698, 7.719607], + [-12.378391, 7.71958], + [-12.377449, 7.719427], + [-12.376889, 7.719096], + [-12.375997, 7.71795], + [-12.375157, 7.716626], + [-12.374241, 7.715455], + [-12.373094, 7.714308], + [-12.371616, 7.713875], + [-12.370369, 7.713774], + [-12.369172, 7.713798], + [-12.368254, 7.714029], + [-12.367262, 7.714359], + [-12.366065, 7.714411], + [-12.365199, 7.715021], + [-12.364841, 7.714099], + [-12.363815, 7.713965], + [-12.362527, 7.713442], + [-12.361238, 7.713306], + [-12.361234, 7.71382], + [-12.360461, 7.713688], + [-12.358918, 7.712777], + [-12.358653, 7.713805], + [-12.359943, 7.713942], + [-12.360458, 7.714203], + [-12.360843, 7.714592], + [-12.360708, 7.71562], + [-12.359673, 7.716], + [-12.359152, 7.716512], + [-12.357861, 7.716762], + [-12.357341, 7.717273], + [-12.356824, 7.7174], + [-12.356821, 7.717914], + [-12.359916, 7.718192], + [-12.360421, 7.720254], + [-12.361103, 7.719987], + [-12.361104, 7.719988], + [-12.360416, 7.721249], + [-12.355819, 7.719717], + [-12.355819, 7.719716], + [-12.356323, 7.718983], + [-12.356537, 7.718986], + [-12.354773, 7.716922], + [-12.354238, 7.716751], + [-12.354109, 7.717167], + [-12.353561, 7.717728], + [-12.350417, 7.714584], + [-12.351249, 7.70875], + [-12.346249, 7.707916], + [-12.342083, 7.704583], + [-12.341331, 7.693311], + [-12.337917, 7.687396], + [-12.337916, 7.67875], + [-12.336557, 7.676939], + [-12.335894, 7.676851], + [-12.334578, 7.677563], + [-12.333105, 7.67956], + [-12.331772, 7.680842], + [-12.330814, 7.682644], + [-12.329392, 7.684124], + [-12.328512, 7.681303], + [-12.327799, 7.680107], + [-12.326722, 7.678939], + [-12.325512, 7.678083], + [-12.324865, 7.677672], + [-12.324249, 7.677376], + [-12.323649, 7.677155], + [-12.322164, 7.6769], + [-12.320438, 7.68003], + [-12.319578, 7.679036], + [-12.319004, 7.678769], + [-12.31776, 7.677149], + [-12.315812, 7.677446], + [-12.314545, 7.677435], + [-12.314351, 7.67727], + [-12.312185, 7.677912], + [-12.30889, 7.678093], + [-12.307601, 7.678687], + [-12.307573, 7.678767], + [-12.307518, 7.678749], + [-12.306262, 7.679694], + [-12.305766, 7.679742], + [-12.305326, 7.67909], + [-12.305266, 7.678614], + [-12.304977, 7.678421], + [-12.304957, 7.678413], + [-12.304749, 7.678444], + [-12.304596, 7.678475], + [-12.30405, 7.678626], + [-12.303918, 7.678732], + [-12.303863, 7.679478], + [-12.303778, 7.679794], + [-12.303617, 7.680058], + [-12.30355, 7.680073], + [-12.303548, 7.680072], + [-12.303544, 7.679518], + [-12.302853, 7.678437], + [-12.30262, 7.677406], + [-12.30217, 7.67661], + [-12.301143, 7.675532], + [-12.29887, 7.675358], + [-12.297674, 7.675004], + [-12.297518, 7.676104], + [-12.297225, 7.676912], + [-12.297097, 7.677037], + [-12.296316, 7.677073], + [-12.295719, 7.678533], + [-12.294675, 7.67908], + [-12.294086, 7.679748], + [-12.293553, 7.680985], + [-12.293186, 7.682989], + [-12.292959, 7.683083], + [-12.291724, 7.682814], + [-12.29136, 7.682234], + [-12.290102, 7.681149], + [-12.288604, 7.679497], + [-12.285107, 7.677126], + [-12.284655, 7.676866], + [-12.284397, 7.675653], + [-12.283259, 7.674696], + [-12.280725, 7.672997], + [-12.28074, 7.673379], + [-12.28052, 7.674225], + [-12.279003, 7.677351], + [-12.278841, 7.677286], + [-12.278983, 7.676917], + [-12.278261, 7.676415], + [-12.278455, 7.675969], + [-12.279512, 7.675774], + [-12.278649, 7.674912], + [-12.277286, 7.675134], + [-12.276617, 7.674551], + [-12.27556, 7.674467], + [-12.274922, 7.674218], + [-12.274922, 7.674216], + [-12.275643, 7.674021], + [-12.273639, 7.671517], + [-12.272582, 7.670793], + [-12.272192, 7.671182], + [-12.272108, 7.672267], + [-12.270911, 7.671544], + [-12.270272, 7.67185], + [-12.271114, 7.672827], + [-12.271113, 7.672828], + [-12.262917, 7.672084], + [-12.262916, 7.670459], + [-12.261976, 7.670376], + [-12.262462, 7.670975], + [-12.26271, 7.671732], + [-12.263001, 7.674379], + [-12.262934, 7.674935], + [-12.261968, 7.676583], + [-12.257675, 7.68541], + [-12.257325, 7.686146], + [-12.259742, 7.688054], + [-12.260068, 7.688561], + [-12.260485, 7.690309], + [-12.260114, 7.691061], + [-12.259177, 7.6922], + [-12.257082, 7.689584], + [-12.252083, 7.68875], + [-12.249582, 7.691249], + [-12.242917, 7.693749], + [-12.232917, 7.692084], + [-12.232917, 7.68625], + [-12.237733, 7.681433], + [-12.2358, 7.682699], + [-12.2339, 7.683399], + [-12.2248, 7.685399], + [-12.2246, 7.6855], + [-12.226699, 7.692099], + [-12.2292, 7.6985], + [-12.2328, 7.7031], + [-12.237199, 7.707299], + [-12.2422, 7.710499], + [-12.252199, 7.713099], + [-12.254899, 7.714499], + [-12.2585, 7.7173], + [-12.262499, 7.721299], + [-12.265119, 7.724189], + [-12.265457, 7.723818], + [-12.26573, 7.723547], + [-12.266578, 7.722766], + [-12.266579, 7.722766], + [-12.267275, 7.723961], + [-12.267602, 7.724568], + [-12.267688, 7.725412], + [-12.267513, 7.726213], + [-12.267957, 7.726176], + [-12.268229, 7.726049], + [-12.268771, 7.726345], + [-12.269353, 7.726925], + [-12.27026, 7.726453], + [-12.27095, 7.726828], + [-12.27163, 7.727961], + [-12.271629, 7.727962], + [-12.271458, 7.728021], + [-12.277119, 7.729233], + [-12.277109, 7.729583], + [-12.277578, 7.729583], + [-12.277361, 7.728998], + [-12.277687, 7.728824], + [-12.278151, 7.729517], + [-12.278632, 7.729229], + [-12.27917, 7.729152], + [-12.280287, 7.729286], + [-12.280635, 7.729863], + [-12.281539, 7.729729], + [-12.282136, 7.729364], + [-12.282358, 7.729598], + [-12.282917, 7.726249], + [-12.285417, 7.725417], + [-12.293749, 7.727083], + [-12.294582, 7.727084], + [-12.297082, 7.727916], + [-12.302083, 7.731249], + [-12.310416, 7.730417], + [-12.317916, 7.731249], + [-12.320417, 7.737916], + [-12.32125, 7.738749], + [-12.322917, 7.73875], + [-12.327083, 7.743749], + [-12.327289, 7.743749], + [-12.327404, 7.743309], + [-12.327564, 7.743046], + [-12.327917, 7.743749], + [-12.330417, 7.74375], + [-12.334582, 7.745416], + [-12.335479, 7.746761], + [-12.335524, 7.746607], + [-12.336116, 7.744917], + [-12.338479, 7.74076], + [-12.340498, 7.740649], + [-12.34125, 7.750417], + [-12.342083, 7.751249], + [-12.344583, 7.75125], + [-12.347083, 7.75375], + [-12.355416, 7.756527], + [-12.355686, 7.757836], + [-12.361147, 7.757836], + [-12.36458, 7.751892], + [-12.36474, 7.752216], + [-12.364738, 7.752731], + [-12.365116, 7.75402], + [-12.364597, 7.754403], + [-12.363304, 7.754783], + [-12.363041, 7.755553], + [-12.364595, 7.754919], + [-12.366143, 7.754928], + [-12.366402, 7.754672], + [-12.3662, 7.754374], + [-12.367189, 7.753268], + [-12.367077, 7.752966], + [-12.367894, 7.753186], + [-12.368247, 7.753059], + [-12.369109, 7.753612], + [-12.36951, 7.753328], + [-12.37012, 7.753923], + [-12.371982, 7.754942], + [-12.373994, 7.756436], + [-12.374777, 7.756808], + [-12.376969, 7.757208], + [-12.377877, 7.757916], + [-12.381985, 7.757916], + [-12.382048, 7.757882], + [-12.382378, 7.757353], + [-12.383493, 7.756456], + [-12.384299, 7.756554], + [-12.384943, 7.756857], + [-12.385417, 7.758749], + [-12.387917, 7.760416], + [-12.388318, 7.760175], + [-12.388495, 7.760249], + [-12.389344, 7.760298], + [-12.390192, 7.759724], + [-12.39119, 7.758552], + [-12.391304, 7.758384], + [-12.392083, 7.757917], + [-12.39398, 7.757441], + [-12.394405, 7.756969], + [-12.395326, 7.756431], + [-12.396323, 7.756719], + [-12.39638, 7.757658], + [-12.39665, 7.7586], + [-12.39688, 7.760057], + [-12.397334, 7.76099], + [-12.397234, 7.761289], + [-12.397499, 7.761339], + [-12.398501, 7.762844], + [-12.398529, 7.763247], + [-12.398985, 7.763171], + [-12.398984, 7.763173], + [-12.398405, 7.763412], + [-12.398421, 7.763545], + [-12.39911, 7.763452], + [-12.398737, 7.763714], + [-12.398622, 7.764013], + [-12.399144, 7.76451], + [-12.399182, 7.765085], + [-12.398703, 7.765756], + [-12.398397, 7.766414], + [-12.407299, 7.769499], + [-12.416399, 7.7709], + [-12.420299, 7.772899], + [-12.424699, 7.7625], + [-12.4292, 7.754099], + [-12.436599, 7.7463], + [-12.441699, 7.7433], + [-12.444092, 7.742145] + ] + ], + "type": "Polygon" + }, + "id": 110, + "properties": { + "cc:admin:id": ["39"], + "cc:oBld:total": 178, + "cc:pop:fifteen-to-twenty-four": 608.3483217856372, + "cc:pop:grid3-total": 3791.409197790556, + "cc:pop:kontur-total": 3638.809381801807, + "cc:pop:men": 1609.268875380623, + "cc:pop:sixty-plus": 203.8229879319445, + "cc:pop:total": 3258.0833871303744, + "cc:pop:under-five": 580.1612334968263, + "cc:pop:women": 1648.814511749751, + "cc:pop:women-fiften-to-forty-nine": 804.460913531955, + "cc:pop:wp-total": 3006.075581146782, + "cc:pop:wp-total-UN": 3470.0615925117286, + "cc:id": "110", + "cc:Name": "Gbamgbama CHC", + "cc:site": [-12.3097, 7.7058], + "user:parentName": "Imperi", + "user:code": "OU_197418", + "user:orgUnitId": "D2rB1GRuh8C", + "user:level": "4", + "user:parentId": "XEyIRFd9pct" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.924582, 8.815417], + [-10.923749, 8.814583], + [-10.919852, 8.814258], + [-10.920113, 8.813802], + [-10.916207, 8.807037], + [-10.909583, 8.807036], + [-10.909583, 8.804007], + [-10.910093, 8.803714], + [-10.911899, 8.803196], + [-10.913095, 8.803053], + [-10.913184, 8.802831], + [-10.912461, 8.802827], + [-10.912433, 8.802975], + [-10.911933, 8.802934], + [-10.910822, 8.803314], + [-10.910765, 8.803209], + [-10.909621, 8.803752], + [-10.909363, 8.804022], + [-10.909362, 8.804021], + [-10.90929, 8.803853], + [-10.907632, 8.805424], + [-10.904629, 8.804989], + [-10.903438, 8.804512], + [-10.903101, 8.804303], + [-10.902957, 8.803991], + [-10.899899, 8.8048], + [-10.895399, 8.804899], + [-10.891899, 8.804299], + [-10.884399, 8.800599], + [-10.8811, 8.797299], + [-10.8769, 8.7889], + [-10.875699, 8.783799], + [-10.873499, 8.778499], + [-10.8719, 8.7721], + [-10.8708, 8.7701], + [-10.868999, 8.767999], + [-10.8658, 8.7654], + [-10.8607, 8.7628], + [-10.857799, 8.760499], + [-10.854999, 8.757399], + [-10.8529, 8.7531], + [-10.850899, 8.749499], + [-10.849099, 8.745599], + [-10.846599, 8.742299], + [-10.8427, 8.739], + [-10.834599, 8.735399], + [-10.8309, 8.7346], + [-10.8283, 8.7347], + [-10.826, 8.7357], + [-10.822499, 8.7387], + [-10.8179, 8.7423], + [-10.820399, 8.747799], + [-10.822999, 8.754099], + [-10.8235, 8.7571], + [-10.8238, 8.7633], + [-10.823999, 8.799199], + [-10.8244, 8.8054], + [-10.8251, 8.8083], + [-10.827, 8.8128], + [-10.829099, 8.823099], + [-10.830999, 8.827599], + [-10.8318, 8.8316], + [-10.832, 8.8347], + [-10.832299, 8.854899], + [-10.8321, 8.860199], + [-10.831599, 8.8632], + [-10.8293, 8.869599], + [-10.829261, 8.869894], + [-10.829602, 8.869894], + [-10.833507, 8.863129], + [-10.84132, 8.863128], + [-10.844212, 8.85812], + [-10.847083, 8.860416], + [-10.85551, 8.859715], + [-10.855852, 8.860416], + [-10.857916, 8.860416], + [-10.861249, 8.857082], + [-10.862083, 8.852917], + [-10.867917, 8.84375], + [-10.877082, 8.84375], + [-10.880507, 8.846489], + [-10.882244, 8.843482], + [-10.888866, 8.843482], + [-10.888576, 8.848749], + [-10.888749, 8.84875], + [-10.898749, 8.844583], + [-10.900416, 8.84375], + [-10.900417, 8.842083], + [-10.907916, 8.842916], + [-10.90875, 8.848749], + [-10.909582, 8.848749], + [-10.912083, 8.842916], + [-10.916249, 8.839583], + [-10.921249, 8.839582], + [-10.923749, 8.837082], + [-10.92375, 8.835824], + [-10.923983, 8.835418], + [-10.92375, 8.835011], + [-10.92375, 8.827082], + [-10.924582, 8.815417] + ] + ], + "type": "Polygon" + }, + "id": 111, + "properties": { + "cc:admin:id": ["119"], + "cc:oBld:total": 145, + "cc:pop:fifteen-to-twenty-four": 391.45427762437396, + "cc:pop:grid3-total": 2262.0776676815753, + "cc:pop:kontur-total": 2010.2867382788386, + "cc:pop:men": 976.2706647171692, + "cc:pop:sixty-plus": 112.55181414121058, + "cc:pop:total": 1978.7098979401121, + "cc:pop:under-five": 325.7238121926365, + "cc:pop:women": 1002.4392332229426, + "cc:pop:women-fiften-to-forty-nine": 495.77605508700645, + "cc:pop:wp-total": 1284.4627435727173, + "cc:pop:wp-total-UN": 1495.110170038051, + "cc:id": "111", + "cc:Name": "Gbangadu MCHP", + "cc:site": [-10.857, 8.7842], + "user:parentName": "Gbense", + "user:code": "OU_233381", + "user:orgUnitId": "lQIe6vtSe1P", + "user:level": "4", + "user:parentId": "TQkG0sX9nca" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.453499, 7.7886], + [-12.452, 7.7862], + [-12.4502, 7.7846], + [-12.446299, 7.782899], + [-12.443499, 7.780699], + [-12.4379, 7.7756], + [-12.435299, 7.773999], + [-12.431899, 7.773099], + [-12.426799, 7.7728], + [-12.4203, 7.772899], + [-12.416399, 7.7709], + [-12.407299, 7.769499], + [-12.394599, 7.7651], + [-12.3904, 7.7657], + [-12.3887, 7.767699], + [-12.3862, 7.774599], + [-12.3841, 7.778499], + [-12.380399, 7.782599], + [-12.376699, 7.784699], + [-12.3643, 7.786799], + [-12.360799, 7.7882], + [-12.3564, 7.7915], + [-12.3514, 7.800099], + [-12.3471, 7.804899], + [-12.3425, 7.806999], + [-12.3391, 7.806799], + [-12.3337, 7.8047], + [-12.327499, 7.801399], + [-12.3209, 7.7985], + [-12.3165, 7.7976], + [-12.312955, 7.797315], + [-12.313493, 7.800538], + [-12.313998, 7.800631], + [-12.316046, 7.802371], + [-12.31375, 7.80375], + [-12.317082, 7.809583], + [-12.318539, 7.810555], + [-12.313204, 7.816412], + [-12.312498, 7.817195], + [-12.31252, 7.817296], + [-12.316249, 7.816722], + [-12.316249, 7.818749], + [-12.315417, 7.820417], + [-12.315417, 7.822083], + [-12.317917, 7.822917], + [-12.318749, 7.827083], + [-12.31625, 7.835416], + [-12.321249, 7.837916], + [-12.322082, 7.837917], + [-12.322568, 7.839856], + [-12.322567, 7.839858], + [-12.318893, 7.839858], + [-12.317903, 7.841571], + [-12.319582, 7.842916], + [-12.319583, 7.844583], + [-12.32375, 7.84375], + [-12.327916, 7.852084], + [-12.324583, 7.862083], + [-12.322917, 7.86375], + [-12.32375, 7.864584], + [-12.32375, 7.872916], + [-12.325416, 7.874584], + [-12.326249, 7.876249], + [-12.322916, 7.877917], + [-12.322082, 7.880417], + [-12.320417, 7.886249], + [-12.321549, 7.889645], + [-12.3219, 7.8899], + [-12.3242, 7.890499], + [-12.3263, 7.890099], + [-12.331399, 7.8879], + [-12.3355, 7.885499], + [-12.343, 7.882], + [-12.345999, 7.8833], + [-12.3474, 7.888299], + [-12.3521, 7.8949], + [-12.3537, 7.895699], + [-12.358699, 7.896199], + [-12.3613, 7.8969], + [-12.3637, 7.8982], + [-12.3688, 7.9022], + [-12.3771, 7.906399], + [-12.380999, 7.906899], + [-12.3844, 7.906299], + [-12.388399, 7.9042], + [-12.3915, 7.902799], + [-12.3958, 7.900399], + [-12.399299, 7.8988], + [-12.400499, 7.898], + [-12.405299, 7.893099], + [-12.409199, 7.8855], + [-12.4102, 7.881999], + [-12.410199, 7.8777], + [-12.408799, 7.874499], + [-12.4031, 7.8709], + [-12.3991, 7.8693], + [-12.3954, 7.8675], + [-12.3904, 7.8647], + [-12.3878, 7.860899], + [-12.3872, 7.856799], + [-12.3872, 7.8513], + [-12.387399, 7.8466], + [-12.3883, 7.843499], + [-12.390199, 7.8399], + [-12.3915, 7.836499], + [-12.393999, 7.8322], + [-12.395899, 7.8283], + [-12.398399, 7.8249], + [-12.4009, 7.822299], + [-12.405299, 7.8198], + [-12.411299, 7.820899], + [-12.4145, 7.8213], + [-12.422305, 7.8215], + [-12.4278, 7.821299], + [-12.4298, 7.821099], + [-12.437399, 7.8186], + [-12.443999, 7.8178], + [-12.447399, 7.816699], + [-12.449599, 7.814399], + [-12.450099, 7.811999], + [-12.449599, 7.809599], + [-12.4476, 7.805599], + [-12.4472, 7.8016], + [-12.4486, 7.797799], + [-12.453199, 7.791699], + [-12.453499, 7.7886] + ] + ], + "type": "Polygon" + }, + "id": 112, + "properties": { + "cc:admin:id": ["140"], + "cc:oBld:total": 8, + "cc:pop:fifteen-to-twenty-four": 2154.4687935734505, + "cc:pop:grid3-total": 12455.852023945774, + "cc:pop:kontur-total": 11997.85688073015, + "cc:pop:men": 5530.103170674923, + "cc:pop:sixty-plus": 790.1776245975682, + "cc:pop:total": 11724.060288113751, + "cc:pop:under-five": 2000.6646844259321, + "cc:pop:women": 6193.957117438824, + "cc:pop:women-fiften-to-forty-nine": 2939.565473989824, + "cc:pop:wp-total": 8836.739062777917, + "cc:pop:wp-total-UN": 10242.249498576919, + "cc:id": "112", + "cc:Name": "Gbangbatoke CHC", + "cc:site": [-12.3805, 7.8077], + "user:parentName": "Lower Banta", + "user:code": "OU_247016", + "user:orgUnitId": "ubsjwFFBaJM", + "user:level": "4", + "user:parentId": "W5fN3G6y1VI" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.324651, 8.179055], + [-11.324438, 8.178539], + [-11.324065, 8.178097], + [-11.32145, 8.177638], + [-11.319583, 8.177606], + [-11.319582, 8.172363], + [-11.318571, 8.172678], + [-11.317916, 8.16875], + [-11.317323, 8.168304], + [-11.314983, 8.164251], + [-11.317196, 8.160417], + [-11.314582, 8.160416], + [-11.309583, 8.155417], + [-11.309582, 8.146368], + [-11.309445, 8.146397], + [-11.309194, 8.146478], + [-11.305815, 8.145932], + [-11.30377, 8.14483], + [-11.303263, 8.143953], + [-11.301229, 8.143952], + [-11.300885, 8.143745], + [-11.300444, 8.143391], + [-11.299495, 8.140336], + [-11.297488, 8.140038], + [-11.297088, 8.139857], + [-11.296802, 8.139178], + [-11.295956, 8.133925], + [-11.295976, 8.133771], + [-11.29625, 8.133749], + [-11.298912, 8.130422], + [-11.300864, 8.130421], + [-11.30125, 8.125416], + [-11.305416, 8.122084], + [-11.306262, 8.122083], + [-11.304461, 8.118963], + [-11.304725, 8.118963], + [-11.304582, 8.118749], + [-11.30375, 8.117917], + [-11.300416, 8.117916], + [-11.292917, 8.110417], + [-11.294314, 8.106223], + [-11.293982, 8.106155], + [-11.293982, 8.106154], + [-11.295416, 8.100417], + [-11.295305, 8.100306], + [-11.292999, 8.1008], + [-11.289, 8.100999], + [-11.2778, 8.101099], + [-11.274, 8.101799], + [-11.269599, 8.104], + [-11.2613, 8.107899], + [-11.256199, 8.1092], + [-11.251, 8.111399], + [-11.248299, 8.1119], + [-11.2407, 8.1122], + [-11.240199, 8.116], + [-11.2401, 8.1219], + [-11.240299, 8.126799], + [-11.241099, 8.130499], + [-11.247, 8.1423], + [-11.2477, 8.1458], + [-11.248199, 8.156799], + [-11.248899, 8.160199], + [-11.250899, 8.164699], + [-11.251598, 8.167195], + [-11.252199, 8.172599], + [-11.253099, 8.175899], + [-11.255099, 8.179499], + [-11.2565, 8.1826], + [-11.2585, 8.1862], + [-11.2593, 8.1887], + [-11.259599, 8.192799], + [-11.258799, 8.1975], + [-11.257, 8.2024], + [-11.2571, 8.204999], + [-11.258799, 8.2093], + [-11.258899, 8.2125], + [-11.2557, 8.219899], + [-11.2532, 8.224199], + [-11.2513, 8.228099], + [-11.246499, 8.2342], + [-11.2431, 8.2423], + [-11.244499, 8.247499], + [-11.245399, 8.251699], + [-11.246299, 8.254199], + [-11.2496, 8.259499], + [-11.2524, 8.261], + [-11.2562, 8.261799], + [-11.2629, 8.260599], + [-11.2664, 8.258599], + [-11.2699, 8.254999], + [-11.2729, 8.2509], + [-11.2768, 8.247999], + [-11.285999, 8.2391], + [-11.289199, 8.2365], + [-11.2978, 8.232099], + [-11.3006, 8.231399], + [-11.304599, 8.2312], + [-11.306249, 8.231216], + [-11.30625, 8.228749], + [-11.314582, 8.222083], + [-11.312082, 8.212084], + [-11.306725, 8.211413], + [-11.306385, 8.209406], + [-11.306377, 8.208907], + [-11.30659, 8.208505], + [-11.306604, 8.206935], + [-11.307058, 8.205116], + [-11.30759, 8.203846], + [-11.299584, 8.198749], + [-11.302834, 8.197], + [-11.303203, 8.196361], + [-11.30402, 8.19636], + [-11.310416, 8.192917], + [-11.313749, 8.193749], + [-11.317083, 8.185416], + [-11.321249, 8.180417], + [-11.324651, 8.179055] + ] + ], + "type": "Polygon" + }, + "id": 113, + "properties": { + "cc:admin:id": ["123"], + "cc:oBld:total": 727, + "cc:pop:fifteen-to-twenty-four": 2052.1801052498854, + "cc:pop:grid3-total": 4013.9609945730617, + "cc:pop:kontur-total": 10742.969888152234, + "cc:pop:men": 5581.705368498563, + "cc:pop:sixty-plus": 658.83268439336, + "cc:pop:total": 10985.216932992811, + "cc:pop:under-five": 1761.5593514857737, + "cc:pop:women": 5403.511564494247, + "cc:pop:women-fiften-to-forty-nine": 2655.7575036990925, + "cc:pop:wp-total": 5812.012130537051, + "cc:pop:wp-total-UN": 6738.531672579202, + "cc:id": "113", + "cc:Name": "Gbangeima MCHP", + "cc:site": [-11.3059, 8.1724], + "user:parentName": "Simbaru", + "user:code": "OU_222688", + "user:orgUnitId": "VH7hLUaypel", + "user:level": "4", + "user:parentId": "A3Fh37HWBWE" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.771067, 8.001093], + [-11.771021, 8.000563], + [-11.770698, 7.999866], + [-11.770753, 7.999594], + [-11.76869, 7.99673], + [-11.767991, 7.995754], + [-11.767355, 7.994834], + [-11.766626, 7.993307], + [-11.766124, 7.991572], + [-11.766041, 7.991203], + [-11.765713, 7.989874], + [-11.76527, 7.988222], + [-11.76478, 7.986358], + [-11.764252, 7.984146], + [-11.763968, 7.983078], + [-11.763192, 7.983415], + [-11.762823, 7.98377], + [-11.762519, 7.984052], + [-11.762491, 7.984074], + [-11.761596, 7.984891], + [-11.760716, 7.985883], + [-11.7603, 7.986734], + [-11.759536, 7.987108], + [-11.759353, 7.987372], + [-11.758208, 7.987065], + [-11.756226, 7.987539], + [-11.755692, 7.987824], + [-11.754935, 7.987021], + [-11.754441, 7.986148], + [-11.753444, 7.982059], + [-11.753449, 7.981767], + [-11.752996, 7.980798], + [-11.751603, 7.979059], + [-11.751303, 7.978848], + [-11.751216, 7.978776], + [-11.750947, 7.978192], + [-11.750656, 7.976231], + [-11.74979, 7.976228], + [-11.749181, 7.976244], + [-11.748699, 7.976246], + [-11.748731, 7.976899], + [-11.748709, 7.977481], + [-11.748399, 7.977647], + [-11.748067, 7.977545], + [-11.7479, 7.977707], + [-11.747892, 7.97843], + [-11.74736, 7.97835], + [-11.747094, 7.978327], + [-11.747114, 7.978842], + [-11.746137, 7.978914], + [-11.745614, 7.978718], + [-11.745784, 7.978011], + [-11.745847, 7.977717], + [-11.745917, 7.977195], + [-11.746217, 7.976953], + [-11.746263, 7.976657], + [-11.745829, 7.977059], + [-11.745286, 7.977007], + [-11.744783, 7.977164], + [-11.744767, 7.977225], + [-11.744952, 7.977538], + [-11.744614, 7.977718], + [-11.744535, 7.978047], + [-11.744148, 7.977809], + [-11.74383, 7.97786], + [-11.743103, 7.977713], + [-11.742992, 7.977529], + [-11.742803, 7.977674], + [-11.741256, 7.977374], + [-11.741167, 7.977391], + [-11.740602, 7.977328], + [-11.740345, 7.977213], + [-11.740196, 7.976917], + [-11.739933, 7.977158], + [-11.739142, 7.977977], + [-11.738835, 7.978109], + [-11.738727, 7.978806], + [-11.738066, 7.978651], + [-11.737562, 7.978546], + [-11.736799, 7.978642], + [-11.735404, 7.977301], + [-11.735351, 7.976917], + [-11.734297, 7.976973], + [-11.733889, 7.976992], + [-11.732663, 7.976962], + [-11.732406, 7.977207], + [-11.732706, 7.981971], + [-11.732557, 7.982565], + [-11.732147, 7.982588], + [-11.732156, 7.981745], + [-11.731616, 7.981826], + [-11.731079, 7.98188], + [-11.73058, 7.981984], + [-11.730719, 7.984488], + [-11.730422, 7.985481], + [-11.72985, 7.985389], + [-11.729674, 7.985494], + [-11.729505, 7.985865], + [-11.728986, 7.985732], + [-11.728507, 7.985618], + [-11.728187, 7.986382], + [-11.7283, 7.986758], + [-11.728132, 7.987206], + [-11.727746, 7.9874], + [-11.727529, 7.987449], + [-11.725574, 7.987998], + [-11.724873, 7.989236], + [-11.724803, 7.98929], + [-11.721996, 7.987983], + [-11.721854, 7.987937], + [-11.721845, 7.987449], + [-11.721984, 7.986038], + [-11.72221, 7.985363], + [-11.722351, 7.985033], + [-11.722537, 7.984584], + [-11.722811, 7.983873], + [-11.722693, 7.983873], + [-11.722267, 7.983953], + [-11.721625, 7.984049], + [-11.721544, 7.984274], + [-11.721356, 7.984145], + [-11.720846, 7.984653], + [-11.720769, 7.984948], + [-11.719945, 7.985183], + [-11.719458, 7.985386], + [-11.718881, 7.985296], + [-11.717559, 7.988149], + [-11.717333, 7.988483], + [-11.716222, 7.989162], + [-11.715343, 7.989295], + [-11.715042, 7.989546], + [-11.715097, 7.989886], + [-11.714677, 7.990657], + [-11.714051, 7.991423], + [-11.713506, 7.991683], + [-11.713077, 7.992484], + [-11.712567, 7.992998], + [-11.712565, 7.992997], + [-11.712283, 7.99094], + [-11.712149, 7.99078], + [-11.711564, 7.990623], + [-11.71125, 7.99125], + [-11.711249, 7.992083], + [-11.710508, 7.992454], + [-11.711319, 7.992487], + [-11.71132, 7.992489], + [-11.710429, 7.993376], + [-11.709145, 7.993571], + [-11.708674, 7.993372], + [-11.704582, 7.995416], + [-11.702917, 7.995417], + [-11.702917, 7.999583], + [-11.70375, 8.002916], + [-11.706865, 8.004993], + [-11.70686, 8.005144], + [-11.707102, 8.005625], + [-11.707408, 8.005943], + [-11.707492, 8.006369], + [-11.708313, 8.006413], + [-11.708476, 8.006067], + [-11.708749, 8.006249], + [-11.709583, 8.008749], + [-11.711335, 8.009626], + [-11.711765, 8.009089], + [-11.711988, 8.00852], + [-11.711368, 8.007726], + [-11.71151, 8.007386], + [-11.711314, 8.007091], + [-11.711487, 8.006622], + [-11.711304, 8.006007], + [-11.719582, 8.00375], + [-11.719583, 8.002916], + [-11.722916, 8.002084], + [-11.724583, 8.004583], + [-11.729018, 8.004583], + [-11.72928, 8.004205], + [-11.730416, 8.004584], + [-11.73125, 8.008749], + [-11.73375, 8.010416], + [-11.739583, 8.00875], + [-11.744582, 8.013749], + [-11.745417, 8.015416], + [-11.746249, 8.01625], + [-11.74625, 8.024583], + [-11.754582, 8.022916], + [-11.757929, 8.020908], + [-11.756386, 8.018099], + [-11.756752, 8.014629], + [-11.756716, 8.014272], + [-11.763749, 8.009584], + [-11.766249, 8.007083], + [-11.765417, 8.005416], + [-11.764583, 8.000417], + [-11.767082, 7.999584], + [-11.769582, 8.000416], + [-11.769583, 8.002083], + [-11.771067, 8.001093] + ] + ], + "type": "Polygon" + }, + "id": 114, + "properties": { + "cc:admin:id": ["46"], + "cc:oBld:total": 1886, + "cc:pop:fifteen-to-twenty-four": 2641.5545591828954, + "cc:pop:grid3-total": 10254.686794052659, + "cc:pop:kontur-total": 14066.11816125909, + "cc:pop:men": 7118.958594583019, + "cc:pop:sixty-plus": 1078.69007130301, + "cc:pop:total": 14665.611302333351, + "cc:pop:under-five": 2416.331026083266, + "cc:pop:women": 7546.652707750339, + "cc:pop:women-fiften-to-forty-nine": 3588.700168096852, + "cc:pop:wp-total": 11356.251235828377, + "cc:pop:wp-total-UN": 13144.865302195032, + "cc:id": "114", + "cc:Name": "Gbanja Town MCHP", + "cc:site": [-11.7435, 7.9897], + "user:parentName": "Kakua", + "user:code": "OU_841", + "user:orgUnitId": "E9oBVjyEaCe", + "user:level": "4", + "user:parentId": "U6Kr7Gtpidn" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.350416, 9.209583], + [-12.342917, 9.20625], + [-12.340416, 9.204583], + [-12.338551, 9.204583], + [-12.338417, 9.204708], + [-12.337996, 9.205416], + [-12.337083, 9.205416], + [-12.330417, 9.202083], + [-12.329583, 9.198749], + [-12.332916, 9.19125], + [-12.332082, 9.191249], + [-12.324768, 9.189787], + [-12.324781, 9.189721], + [-12.326154, 9.189406], + [-12.325995, 9.188872], + [-12.325389, 9.187998], + [-12.324493, 9.187028], + [-12.324268, 9.186356], + [-12.323601, 9.185656], + [-12.323415, 9.185852], + [-12.321898, 9.187108], + [-12.321123, 9.187363], + [-12.31867, 9.187424], + [-12.317898, 9.187425], + [-12.317601, 9.187487], + [-12.31625, 9.182083], + [-12.316249, 9.177917], + [-12.31125, 9.17625], + [-12.307083, 9.184582], + [-12.307082, 9.187083], + [-12.30375, 9.187916], + [-12.30125, 9.187083], + [-12.300416, 9.187916], + [-12.29375, 9.187083], + [-12.292082, 9.190416], + [-12.288959, 9.189791], + [-12.288762, 9.189111], + [-12.284583, 9.187917], + [-12.277083, 9.187917], + [-12.275045, 9.191993], + [-12.276265, 9.192143], + [-12.276662, 9.192281], + [-12.277916, 9.195417], + [-12.274583, 9.198749], + [-12.270417, 9.197917], + [-12.270416, 9.209582], + [-12.266942, 9.210742], + [-12.267186, 9.21168], + [-12.268129, 9.213516], + [-12.268574, 9.214008], + [-12.268797, 9.215336], + [-12.269993, 9.216331], + [-12.270664, 9.217812], + [-12.268073, 9.218188], + [-12.266451, 9.218702], + [-12.264198, 9.21886], + [-12.260334, 9.218069], + [-12.258562, 9.217417], + [-12.257912, 9.217023], + [-12.257374, 9.216502], + [-12.25625, 9.21875], + [-12.25625, 9.227082], + [-12.255416, 9.230416], + [-12.250417, 9.229583], + [-12.242083, 9.232916], + [-12.240417, 9.232083], + [-12.239788, 9.23522], + [-12.239348, 9.235182], + [-12.237802, 9.235371], + [-12.236742, 9.236693], + [-12.236001, 9.237226], + [-12.23508, 9.237504], + [-12.23407, 9.238135], + [-12.233995, 9.238162], + [-12.236249, 9.240417], + [-12.234583, 9.243749], + [-12.232082, 9.24375], + [-12.227083, 9.247082], + [-12.225417, 9.249582], + [-12.224703, 9.249583], + [-12.22487, 9.250075], + [-12.225466, 9.250346], + [-12.226028, 9.250853], + [-12.226031, 9.251096], + [-12.230199, 9.251599], + [-12.233599, 9.252299], + [-12.239, 9.2545], + [-12.2437, 9.2551], + [-12.254399, 9.255199], + [-12.2586, 9.254699], + [-12.2607, 9.253999], + [-12.264299, 9.2521], + [-12.267499, 9.2507], + [-12.271699, 9.2483], + [-12.2749, 9.246999], + [-12.2792, 9.244599], + [-12.2824, 9.243299], + [-12.286599, 9.2409], + [-12.289699, 9.2394], + [-12.2915, 9.237999], + [-12.2948, 9.233899], + [-12.3007, 9.229999], + [-12.308999, 9.2261], + [-12.3118, 9.225499], + [-12.320499, 9.2251], + [-12.323199, 9.224399], + [-12.3264, 9.222299], + [-12.331199, 9.2177], + [-12.333399, 9.2159], + [-12.3369, 9.2144], + [-12.3397, 9.2141], + [-12.34977, 9.214099], + [-12.350416, 9.209583] + ] + ], + "type": "Polygon" + }, + "id": 115, + "properties": { + "cc:admin:id": ["118"], + "cc:oBld:total": 249, + "cc:pop:fifteen-to-twenty-four": 554.7724539857307, + "cc:pop:grid3-total": 2434.3906772072046, + "cc:pop:kontur-total": 2991.9966506984574, + "cc:pop:men": 1409.260045275745, + "cc:pop:sixty-plus": 198.0807544940426, + "cc:pop:total": 2977.3098222667923, + "cc:pop:under-five": 467.4165865404352, + "cc:pop:women": 1568.0497769910469, + "cc:pop:women-fiften-to-forty-nine": 767.8027712956058, + "cc:pop:wp-total": 2562.336881949341, + "cc:pop:wp-total-UN": 2967.5167818342, + "cc:id": "115", + "cc:Name": "Gbanti CHC", + "cc:site": [-12.2658, 9.2491], + "user:parentName": "Gbanti Kamaranka", + "user:code": "OU_193216", + "user:orgUnitId": "uedNhvYPMNu", + "user:level": "4", + "user:parentId": "e1eIKM1GIF3" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [-12.524299, 7.384], + [-12.522599, 7.3837], + [-12.509901, 7.3837], + [-12.509899, 7.3835], + [-12.506299, 7.383499], + [-12.503799, 7.3829], + [-12.4999, 7.382899], + [-12.497599, 7.382099], + [-12.4926, 7.3818], + [-12.488799, 7.380999], + [-12.4815, 7.380399], + [-12.478799, 7.3793], + [-12.476799, 7.379299], + [-12.4743, 7.3788], + [-12.472599, 7.377899], + [-12.470099, 7.377399], + [-12.4654, 7.377099], + [-12.462599, 7.376], + [-12.460999, 7.375999], + [-12.457899, 7.374599], + [-12.453499, 7.373799], + [-12.451, 7.3729], + [-12.449599, 7.3721], + [-12.4476, 7.372099], + [-12.447099, 7.3715], + [-12.4449, 7.371299], + [-12.442899, 7.3704], + [-12.441299, 7.370399], + [-12.4376, 7.369], + [-12.435999, 7.368799], + [-12.433199, 7.3676], + [-12.4304, 7.367599], + [-12.428799, 7.3668], + [-12.4274, 7.366799], + [-12.425399, 7.366], + [-12.424, 7.365999], + [-12.421799, 7.3651], + [-12.419899, 7.365099], + [-12.4162, 7.3638], + [-12.414299, 7.3626], + [-12.4126, 7.362599], + [-12.411499, 7.3618], + [-12.4096, 7.361799], + [-12.407899, 7.360999], + [-12.4051, 7.3601], + [-12.4024, 7.359899], + [-12.399599, 7.3585], + [-12.3968, 7.3582], + [-12.3951, 7.3576], + [-12.393699, 7.3565], + [-12.3912, 7.356499], + [-12.389, 7.3557], + [-12.388799, 7.355099], + [-12.3868, 7.3546], + [-12.3851, 7.354599], + [-12.383999, 7.3535], + [-12.3813, 7.353499], + [-12.380399, 7.3526], + [-12.3782, 7.352599], + [-12.377399, 7.3518], + [-12.3751, 7.351], + [-12.3729, 7.350999], + [-12.371499, 7.3496], + [-12.3701, 7.349], + [-12.3663, 7.348499], + [-12.365099, 7.3476], + [-12.363499, 7.347599], + [-12.362399, 7.3468], + [-12.3607, 7.346499], + [-12.359599, 7.3457], + [-12.3582, 7.345699], + [-12.356799, 7.3449], + [-12.3546, 7.3446], + [-12.354299, 7.344], + [-12.352099, 7.343799], + [-12.3499, 7.3429], + [-12.348799, 7.342099], + [-12.3465, 7.3413], + [-12.344899, 7.341299], + [-12.3429, 7.340699], + [-12.341499, 7.339599], + [-12.3368, 7.3385], + [-12.333199, 7.3365], + [-12.3312, 7.336499], + [-12.330399, 7.335999], + [-12.327099, 7.335099], + [-12.324899, 7.334], + [-12.3226, 7.333799], + [-12.321499, 7.3329], + [-12.320399, 7.332899], + [-12.319299, 7.3315], + [-12.317399, 7.331499], + [-12.316299, 7.330699], + [-12.313999, 7.329899], + [-12.3113, 7.3293], + [-12.310099, 7.3282], + [-12.3065, 7.327399], + [-12.304299, 7.326], + [-12.303199, 7.325999], + [-12.300999, 7.3246], + [-12.2971, 7.323799], + [-12.295999, 7.3229], + [-12.294899, 7.322899], + [-12.292899, 7.3215], + [-12.2913, 7.321499], + [-12.290999, 7.320999], + [-12.2876, 7.3193], + [-12.286, 7.319299], + [-12.285099, 7.3185], + [-12.283999, 7.318499], + [-12.282399, 7.3174], + [-12.2796, 7.3168], + [-12.278799, 7.315999], + [-12.2738, 7.3143], + [-12.272599, 7.3135], + [-12.2712, 7.3132], + [-12.270699, 7.3124], + [-12.269, 7.312399], + [-12.267899, 7.3115], + [-12.2663, 7.3113], + [-12.265699, 7.3104], + [-12.2643, 7.310399], + [-12.2613, 7.309], + [-12.259, 7.308499], + [-12.257399, 7.307399], + [-12.254899, 7.3065], + [-12.2538, 7.306499], + [-12.252599, 7.3054], + [-12.251299, 7.305399], + [-12.2482, 7.304], + [-12.247899, 7.3035], + [-12.246299, 7.303499], + [-12.244299, 7.3021], + [-12.2424, 7.3018], + [-12.241799, 7.301], + [-12.2404, 7.3004], + [-12.2382, 7.300099], + [-12.237399, 7.2993], + [-12.236, 7.299299], + [-12.234299, 7.2982], + [-12.2313, 7.2976], + [-12.230399, 7.296799], + [-12.228199, 7.295999], + [-12.2257, 7.2954], + [-12.224899, 7.2946], + [-12.2235, 7.294599], + [-12.222399, 7.2935], + [-12.2201, 7.293199], + [-12.217899, 7.2918], + [-12.216799, 7.291799], + [-12.215399, 7.290999], + [-12.2121, 7.2899], + [-12.210399, 7.289], + [-12.2093, 7.288999], + [-12.208499, 7.2882], + [-12.2046, 7.2871], + [-12.204299, 7.2865], + [-12.2024, 7.286299], + [-12.201799, 7.2857], + [-12.1987, 7.2849], + [-12.197899, 7.284], + [-12.1963, 7.283999], + [-12.194899, 7.2829], + [-12.1921, 7.282599], + [-12.190699, 7.2815], + [-12.189299, 7.281499], + [-12.186799, 7.2801], + [-12.1854, 7.280099], + [-12.184599, 7.278999], + [-12.182399, 7.278199], + [-12.179, 7.2776], + [-12.178499, 7.2768], + [-12.1754, 7.276199], + [-12.173199, 7.2749], + [-12.171299, 7.274599], + [-12.1687, 7.273499], + [-12.167399, 7.2724], + [-12.1665, 7.272399], + [-12.164299, 7.2713], + [-12.162599, 7.271299], + [-12.161299, 7.2704], + [-12.158699, 7.269599], + [-12.1551, 7.2679], + [-12.1532, 7.267599], + [-12.152599, 7.267099], + [-12.1493, 7.266299], + [-12.147899, 7.2654], + [-12.1449, 7.2646], + [-12.142399, 7.2632], + [-12.1413, 7.263199], + [-12.139599, 7.262399], + [-12.1354, 7.2613], + [-12.134899, 7.2604], + [-12.1329, 7.260099], + [-12.131799, 7.2593], + [-12.1301, 7.258999], + [-12.128999, 7.2582], + [-12.1268, 7.2576], + [-12.126499, 7.2571], + [-12.1238, 7.2568], + [-12.123199, 7.256], + [-12.1207, 7.2554], + [-12.119899, 7.2546], + [-12.117899, 7.254599], + [-12.115999, 7.2535], + [-12.114899, 7.253499], + [-12.110399, 7.2512], + [-12.107899, 7.250999], + [-12.105999, 7.2496], + [-12.1035, 7.249299], + [-12.102599, 7.2482], + [-12.101199, 7.248199], + [-12.100099, 7.247399], + [-12.0954, 7.2454], + [-12.093999, 7.245399], + [-12.091799, 7.244], + [-12.0893, 7.243499], + [-12.088199, 7.2426], + [-12.0868, 7.242599], + [-12.085999, 7.2418], + [-12.0818, 7.2407], + [-12.080999, 7.2399], + [-12.079, 7.239599], + [-12.078199, 7.238799], + [-12.0721, 7.236799], + [-12.070999, 7.2357], + [-12.0674, 7.234899], + [-12.064599, 7.233199], + [-12.0604, 7.231799], + [-12.059299, 7.2307], + [-12.0551, 7.2299], + [-12.054299, 7.228999], + [-12.0496, 7.2274], + [-12.048199, 7.227399], + [-12.044899, 7.2254], + [-12.043799, 7.225399], + [-12.041299, 7.224], + [-12.039899, 7.223999], + [-12.0349, 7.2215], + [-12.0318, 7.2206], + [-12.0294, 7.2224], + [-12.027899, 7.2283], + [-12.0242, 7.236599], + [-12.0217, 7.241799], + [-12.0204, 7.247699], + [-12.018692, 7.251278], + [-12.019753, 7.251872], + [-12.020522, 7.25265], + [-12.021808, 7.253173], + [-12.022581, 7.253178], + [-12.023358, 7.25254], + [-12.023622, 7.25177], + [-12.02465, 7.252162], + [-12.024907, 7.252421], + [-12.025678, 7.252556], + [-12.026447, 7.253461], + [-12.027476, 7.253855], + [-12.030041, 7.255673], + [-12.034402, 7.259178], + [-12.037483, 7.261], + [-12.040009, 7.262925], + [-12.042876, 7.264382], + [-12.047252, 7.265699], + [-12.050078, 7.26591], + [-12.053697, 7.265741], + [-12.055248, 7.265235], + [-12.056799, 7.264474], + [-12.058319, 7.263165], + [-12.059045, 7.26214], + [-12.059064, 7.261386], + [-12.05996, 7.257878], + [-12.060547, 7.257018], + [-12.060648, 7.256562], + [-12.061627, 7.255879], + [-12.062665, 7.254856], + [-12.064218, 7.253837], + [-12.064953, 7.252957], + [-12.066269, 7.251944], + [-12.068752, 7.25039], + [-12.072632, 7.248355], + [-12.076536, 7.247399], + [-12.080352, 7.246819], + [-12.083883, 7.246927], + [-12.086286, 7.247357], + [-12.089135, 7.248203], + [-12.09145, 7.24912], + [-12.092221, 7.249768], + [-12.094792, 7.250944], + [-12.099911, 7.254584], + [-12.104759, 7.257561], + [-12.104583, 7.257917], + [-12.105879, 7.261803], + [-12.111213, 7.263535], + [-12.112316, 7.263763], + [-12.113312, 7.260281], + [-12.113314, 7.26028], + [-12.114833, 7.260747], + [-12.124201, 7.265309], + [-12.127448, 7.267185], + [-12.125939, 7.270204], + [-12.127639, 7.271124], + [-12.128898, 7.27213], + [-12.131937, 7.2697], + [-12.131959, 7.269715], + [-12.132595, 7.270458], + [-12.132955, 7.27127], + [-12.134363, 7.272567], + [-12.137148, 7.277702], + [-12.137808, 7.278511], + [-12.139695, 7.281587], + [-12.140981, 7.283235], + [-12.141382, 7.284199], + [-12.141874, 7.287806], + [-12.141859, 7.290381], + [-12.141589, 7.292182], + [-12.140537, 7.295522], + [-12.139753, 7.297062], + [-12.139258, 7.297611], + [-12.138841, 7.298472], + [-12.138233, 7.298626], + [-12.138094, 7.29875], + [-12.13375, 7.29875], + [-12.133749, 7.302262], + [-12.133529, 7.302431], + [-12.132948, 7.303382], + [-12.132742, 7.304742], + [-12.132994, 7.305517], + [-12.133749, 7.306793], + [-12.13375, 7.309171], + [-12.134337, 7.309436], + [-12.138025, 7.308514], + [-12.138026, 7.308515], + [-12.137122, 7.309408], + [-12.137301, 7.314241], + [-12.136928, 7.316881], + [-12.136386, 7.318009], + [-12.134774, 7.320513], + [-12.130108, 7.325509], + [-12.129311, 7.327933], + [-12.129583, 7.328749], + [-12.131059, 7.329242], + [-12.130114, 7.334774], + [-12.129604, 7.335581], + [-12.129598, 7.33599], + [-12.129596, 7.33599], + [-12.128825, 7.334963], + [-12.127814, 7.33532], + [-12.126592, 7.335199], + [-12.12625, 7.335009], + [-12.126249, 7.336923], + [-12.125174, 7.336707], + [-12.123987, 7.336186], + [-12.123267, 7.3352], + [-12.121518, 7.330539], + [-12.121164, 7.330178], + [-12.120153, 7.329838], + [-12.119491, 7.329754], + [-12.118533, 7.329885], + [-12.117373, 7.330411], + [-12.116693, 7.330917], + [-12.115803, 7.331929], + [-12.11487, 7.333536], + [-12.114236, 7.335009], + [-12.113744, 7.336705], + [-12.11291, 7.341169], + [-12.112593, 7.342248], + [-12.107917, 7.342916], + [-12.107324, 7.342719], + [-12.107054, 7.341873], + [-12.107055, 7.341871], + [-12.107204, 7.341868], + [-12.10768, 7.342525], + [-12.10755, 7.34115], + [-12.107551, 7.341149], + [-12.108027, 7.341862], + [-12.107553, 7.33997], + [-12.107119, 7.338954], + [-12.106379, 7.3378], + [-12.105732, 7.337007], + [-12.1047, 7.336133], + [-12.106795, 7.334037], + [-12.105444, 7.332907], + [-12.103883, 7.332306], + [-12.101882, 7.332191], + [-12.099598, 7.332677], + [-12.097844, 7.333612], + [-12.096227, 7.335694], + [-12.094872, 7.338195], + [-12.093894, 7.34082], + [-12.093087, 7.34182], + [-12.092406, 7.342247], + [-12.089878, 7.343254], + [-12.089109, 7.343231], + [-12.089019, 7.343294], + [-12.090111, 7.34821], + [-12.089832, 7.348349], + [-12.08861, 7.348443], + [-12.086304, 7.349256], + [-12.084563, 7.349083], + [-12.08311, 7.348626], + [-12.08231, 7.34854], + [-12.079841, 7.347721], + [-12.080913, 7.343427], + [-12.08077, 7.343425], + [-12.078717, 7.343165], + [-12.075188, 7.343477], + [-12.073967, 7.343879], + [-12.073389, 7.344252], + [-12.070834, 7.345042], + [-12.070617, 7.345153], + [-12.071137, 7.348799], + [-12.07086, 7.349007], + [-12.069883, 7.35002], + [-12.066903, 7.354476], + [-12.065823, 7.356816], + [-12.065416, 7.358849], + [-12.06492, 7.360242], + [-12.0662, 7.3604], + [-12.068699, 7.361499], + [-12.072999, 7.364899], + [-12.0767, 7.366699], + [-12.0846, 7.3678], + [-12.0904, 7.3701], + [-12.0972, 7.3718], + [-12.1017, 7.3738], + [-12.1042, 7.3744], + [-12.109599, 7.374999], + [-12.112099, 7.375599], + [-12.1176, 7.3778], + [-12.1223, 7.3783], + [-12.130999, 7.378399], + [-12.133799, 7.3789], + [-12.1372, 7.3807], + [-12.1402, 7.3833], + [-12.147199, 7.390399], + [-12.150599, 7.392399], + [-12.1534, 7.3931], + [-12.161099, 7.393399], + [-12.164799, 7.394099], + [-12.172999, 7.398099], + [-12.1753, 7.4005], + [-12.1786, 7.4056], + [-12.1814, 7.4079], + [-12.1873, 7.4109], + [-12.1911, 7.4118], + [-12.1941, 7.411899], + [-12.208599, 7.4118], + [-12.214599, 7.412099], + [-12.2175, 7.4127], + [-12.2221, 7.4146], + [-12.225799, 7.415199], + [-12.231399, 7.415399], + [-12.2335, 7.4158], + [-12.2354, 7.4169], + [-12.236699, 7.420599], + [-12.236799, 7.426899], + [-12.237099, 7.430699], + [-12.2383, 7.433399], + [-12.2414, 7.436], + [-12.2432, 7.4385], + [-12.2449, 7.442799], + [-12.246399, 7.444399], + [-12.250699, 7.445999], + [-12.253099, 7.447199], + [-12.2554, 7.4489], + [-12.2583, 7.4516], + [-12.261099, 7.454899], + [-12.2637, 7.458999], + [-12.2696, 7.457199], + [-12.277899, 7.4555], + [-12.2823, 7.453599], + [-12.285199, 7.453], + [-12.288099, 7.4529], + [-12.2919, 7.4534], + [-12.2974, 7.4555], + [-12.307899, 7.457499], + [-12.3133, 7.4597], + [-12.3161, 7.4601], + [-12.327499, 7.460699], + [-12.3305, 7.462199], + [-12.333599, 7.460899], + [-12.331599, 7.458299], + [-12.329499, 7.457199], + [-12.326999, 7.456499], + [-12.3118, 7.4416], + [-12.307099, 7.436799], + [-12.304999, 7.433899], + [-12.303099, 7.429999], + [-12.2997, 7.4243], + [-12.297499, 7.422099], + [-12.2938, 7.4161], + [-12.2899, 7.407899], + [-12.2899, 7.4044], + [-12.291799, 7.3995], + [-12.292799, 7.3953], + [-12.293599, 7.3932], + [-12.2955, 7.390499], + [-12.301399, 7.3841], + [-12.303299, 7.381], + [-12.305199, 7.3751], + [-12.3059, 7.3706], + [-12.315699, 7.3694], + [-12.324199, 7.368999], + [-12.3241, 7.3616], + [-12.332999, 7.361799], + [-12.338699, 7.362599], + [-12.349999, 7.366099], + [-12.360999, 7.370299], + [-12.365399, 7.372699], + [-12.3687, 7.374], + [-12.373, 7.3764], + [-12.380899, 7.379099], + [-12.3876, 7.381], + [-12.398699, 7.385099], + [-12.4024, 7.3875], + [-12.412499, 7.395999], + [-12.416199, 7.398099], + [-12.4214, 7.3999], + [-12.433699, 7.405099], + [-12.446399, 7.408099], + [-12.4464, 7.411799], + [-12.4527, 7.4171], + [-12.460099, 7.422599], + [-12.4601, 7.4076], + [-12.4621, 7.4074], + [-12.465399, 7.4074], + [-12.465401, 7.4071], + [-12.469599, 7.4071], + [-12.4696, 7.4068], + [-12.477899, 7.406799], + [-12.4785, 7.4057], + [-12.479899, 7.405699], + [-12.4821, 7.4043], + [-12.483799, 7.403999], + [-12.485999, 7.4024], + [-12.487599, 7.402399], + [-12.4885, 7.4007], + [-12.490999, 7.400399], + [-12.4932, 7.3976], + [-12.496, 7.396299], + [-12.497599, 7.394599], + [-12.4979, 7.393199], + [-12.5007, 7.3904], + [-12.506499, 7.390699], + [-12.5082, 7.390099], + [-12.512899, 7.389599], + [-12.5146, 7.3888], + [-12.515699, 7.388799], + [-12.518999, 7.3868], + [-12.522099, 7.386], + [-12.523999, 7.3851], + [-12.524299, 7.384] + ] + ], + [ + [ + [-12.465399, 7.4151], + [-12.464, 7.4146], + [-12.4624, 7.4154], + [-12.4629, 7.416799], + [-12.463999, 7.416499], + [-12.465399, 7.4151] + ] + ], + [ + [ + [-12.470399, 7.4162], + [-12.4693, 7.416], + [-12.468199, 7.417099], + [-12.4668, 7.4171], + [-12.465699, 7.417899], + [-12.4632, 7.4182], + [-12.4637, 7.418999], + [-12.465399, 7.419599], + [-12.467099, 7.4193], + [-12.469299, 7.417899], + [-12.470399, 7.4162] + ] + ] + ], + "type": "MultiPolygon" + }, + "id": 116, + "properties": { + "cc:admin:id": ["104"], + "cc:oBld:total": 131, + "cc:pop:fifteen-to-twenty-four": 2964.8321090101604, + "cc:pop:grid3-total": 12411.12470952702, + "cc:pop:kontur-total": 15825.666327596993, + "cc:pop:men": 7944.756864090465, + "cc:pop:sixty-plus": 1186.2954312586617, + "cc:pop:total": 16511.432232761246, + "cc:pop:under-five": 2796.616451695607, + "cc:pop:women": 8566.675368670774, + "cc:pop:women-fiften-to-forty-nine": 4004.4891451594535, + "cc:pop:wp-total": 14363.603569982228, + "cc:pop:wp-total-UN": 16652.658576256297, + "cc:id": "116", + "cc:Name": "Gbap CHC", + "cc:site": [-12.2, 7.4], + "user:parentName": "Nongoba Bullum", + "user:code": "OU_197447", + "user:orgUnitId": "TEVtOFKcLAP", + "user:level": "4", + "user:parentId": "VP397wRvePm" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.713099, 8.1814], + [-10.710299, 8.177599], + [-10.706, 8.1723], + [-10.7037, 8.1677], + [-10.700799, 8.164099], + [-10.6967, 8.1601], + [-10.694, 8.1581], + [-10.689999, 8.156299], + [-10.687999, 8.154899], + [-10.684, 8.1516], + [-10.682, 8.1503], + [-10.6735, 8.1465], + [-10.666699, 8.144799], + [-10.6631, 8.1429], + [-10.659899, 8.141499], + [-10.657499, 8.139799], + [-10.6488, 8.1315], + [-10.645, 8.1284], + [-10.6369, 8.1245], + [-10.6306, 8.1229], + [-10.625299, 8.120699], + [-10.619299, 8.119299], + [-10.613999, 8.116999], + [-10.608199, 8.114999], + [-10.604199, 8.109499], + [-10.599999, 8.100899], + [-10.599399, 8.098099], + [-10.5991, 8.0951], + [-10.5991, 8.0831], + [-10.5984, 8.0769], + [-10.596, 8.0711], + [-10.595399, 8.068299], + [-10.594999, 8.063399], + [-10.5949, 8.051399], + [-10.5954, 8.047099], + [-10.597699, 8.0412], + [-10.598299, 8.0386], + [-10.598699, 8.0347], + [-10.5973, 8.0277], + [-10.598799, 8.027], + [-10.5819, 8.034799], + [-10.5735, 8.0368], + [-10.5592, 8.0491], + [-10.548731, 8.066156], + [-10.550043, 8.06843], + [-10.546137, 8.075195], + [-10.550044, 8.081961], + [-10.554004, 8.081962], + [-10.553893, 8.082088], + [-10.552172, 8.083011], + [-10.551432, 8.083777], + [-10.551335, 8.084219], + [-10.549148, 8.084962], + [-10.548663, 8.085452], + [-10.548552, 8.086184], + [-10.554908, 8.086185], + [-10.558813, 8.09295], + [-10.554908, 8.099717], + [-10.558813, 8.106483], + [-10.555265, 8.112629], + [-10.556535, 8.112561], + [-10.557359, 8.112824], + [-10.557359, 8.112826], + [-10.552917, 8.11875], + [-10.552916, 8.126249], + [-10.549722, 8.125984], + [-10.545962, 8.132493], + [-10.540827, 8.132494], + [-10.54125, 8.132917], + [-10.54125, 8.145416], + [-10.544582, 8.14625], + [-10.542917, 8.153749], + [-10.542917, 8.155416], + [-10.547083, 8.160417], + [-10.547082, 8.16125], + [-10.54375, 8.164584], + [-10.542917, 8.168749], + [-10.544582, 8.170417], + [-10.539583, 8.180416], + [-10.543749, 8.18125], + [-10.540417, 8.187084], + [-10.540417, 8.188749], + [-10.544464, 8.193472], + [-10.544463, 8.193473], + [-10.543009, 8.193941], + [-10.541967, 8.19447], + [-10.541783, 8.194603], + [-10.545416, 8.200417], + [-10.545417, 8.210416], + [-10.544338, 8.212034], + [-10.544507, 8.212158], + [-10.542083, 8.214583], + [-10.53875, 8.215417], + [-10.53875, 8.221249], + [-10.539854, 8.221802], + [-10.539814, 8.221969], + [-10.540272, 8.221994], + [-10.540533, 8.223462], + [-10.540276, 8.223626], + [-10.53984, 8.223198], + [-10.539689, 8.223259], + [-10.539581, 8.223623], + [-10.53912, 8.224144], + [-10.539016, 8.224883], + [-10.539464, 8.225135], + [-10.53952, 8.225367], + [-10.539259, 8.225481], + [-10.539243, 8.225752], + [-10.539015, 8.225991], + [-10.538352, 8.226101], + [-10.537917, 8.229584], + [-10.53875, 8.235416], + [-10.540416, 8.23875], + [-10.537917, 8.24125], + [-10.537082, 8.243749], + [-10.532083, 8.24375], + [-10.527917, 8.24625], + [-10.52875, 8.248749], + [-10.534582, 8.253749], + [-10.534137, 8.255087], + [-10.534646, 8.255082], + [-10.535864, 8.255229], + [-10.538128, 8.256565], + [-10.539496, 8.256793], + [-10.540551, 8.257659], + [-10.541866, 8.25845], + [-10.542264, 8.258847], + [-10.542378, 8.25921], + [-10.542477, 8.260535], + [-10.542855, 8.260999], + [-10.544965, 8.262453], + [-10.545271, 8.262669], + [-10.545349, 8.262722], + [-10.545729, 8.262932], + [-10.546344, 8.263231], + [-10.547245, 8.263842], + [-10.548334, 8.264684], + [-10.549773, 8.264875], + [-10.551537, 8.264237], + [-10.553534, 8.264121], + [-10.554954, 8.263593], + [-10.556865, 8.263222], + [-10.557707, 8.263243], + [-10.558649, 8.263574], + [-10.558849, 8.263675], + [-10.559745, 8.265245], + [-10.560793, 8.266024], + [-10.561409, 8.266203], + [-10.561941, 8.266577], + [-10.562282, 8.2672], + [-10.56218, 8.268536], + [-10.562252, 8.269251], + [-10.562433, 8.269738], + [-10.562562, 8.270094], + [-10.56341, 8.269884], + [-10.563494, 8.270154], + [-10.563605, 8.270502], + [-10.563904, 8.271284], + [-10.563956, 8.271424], + [-10.564095, 8.271721], + [-10.564323, 8.272225], + [-10.564528, 8.271979], + [-10.565101, 8.271855], + [-10.565079, 8.271685], + [-10.565676, 8.271693], + [-10.56603, 8.271391], + [-10.566075, 8.27131], + [-10.566607, 8.270426], + [-10.566626, 8.270163], + [-10.568052, 8.269412], + [-10.5682, 8.269402], + [-10.569248, 8.270153], + [-10.5691, 8.270726], + [-10.569278, 8.271236], + [-10.569222, 8.271333], + [-10.569247, 8.271376], + [-10.569403, 8.271484], + [-10.569344, 8.271851], + [-10.569343, 8.271945], + [-10.569318, 8.27251], + [-10.569281, 8.273083], + [-10.568831, 8.273568], + [-10.568833, 8.273686], + [-10.569091, 8.274009], + [-10.569057, 8.274305], + [-10.569453, 8.274529], + [-10.569791, 8.275064], + [-10.5703, 8.275258], + [-10.57039, 8.274414], + [-10.570786, 8.274444], + [-10.570851, 8.274014], + [-10.571382, 8.273333], + [-10.572131, 8.272798], + [-10.572435, 8.272877], + [-10.572778, 8.273198], + [-10.573201, 8.274039], + [-10.573305, 8.275556], + [-10.574355, 8.276039], + [-10.575451, 8.273691], + [-10.576272, 8.274248], + [-10.576884, 8.27402], + [-10.577267, 8.273442], + [-10.577722, 8.273099], + [-10.577754, 8.273025], + [-10.578006, 8.272512], + [-10.577913, 8.272422], + [-10.578189, 8.272292], + [-10.578407, 8.271867], + [-10.578894, 8.27161], + [-10.579211, 8.272075], + [-10.579629, 8.272813], + [-10.579862, 8.273716], + [-10.579441, 8.275746], + [-10.579858, 8.275704], + [-10.580364, 8.275531], + [-10.580575, 8.275527], + [-10.581586, 8.275827], + [-10.581889, 8.275907], + [-10.5821, 8.275914], + [-10.582378, 8.276021], + [-10.583008, 8.276209], + [-10.583462, 8.276447], + [-10.583612, 8.276458], + [-10.583875, 8.275982], + [-10.584279, 8.276051], + [-10.585375, 8.275898], + [-10.586245, 8.2757], + [-10.586281, 8.275685], + [-10.587317, 8.275329], + [-10.588885, 8.275163], + [-10.589582, 8.275353], + [-10.589583, 8.273749], + [-10.591249, 8.27125], + [-10.593749, 8.270416], + [-10.59375, 8.26875], + [-10.596249, 8.266249], + [-10.597916, 8.26125], + [-10.599583, 8.25875], + [-10.602083, 8.25875], + [-10.611249, 8.265416], + [-10.612916, 8.265416], + [-10.615875, 8.255799], + [-10.615398, 8.255453], + [-10.614848, 8.25519], + [-10.615417, 8.252916], + [-10.61625, 8.252083], + [-10.626249, 8.248749], + [-10.62625, 8.241352], + [-10.631478, 8.241351], + [-10.63125, 8.237916], + [-10.636249, 8.232917], + [-10.651249, 8.232917], + [-10.654583, 8.236249], + [-10.657916, 8.237083], + [-10.65798, 8.23718], + [-10.659479, 8.234586], + [-10.662916, 8.234585], + [-10.662917, 8.227917], + [-10.664582, 8.225417], + [-10.667083, 8.225416], + [-10.675416, 8.22125], + [-10.679989, 8.223862], + [-10.679383, 8.221089], + [-10.679219, 8.219491], + [-10.679359, 8.218705], + [-10.679931, 8.217707], + [-10.680775, 8.217333], + [-10.6818, 8.21636], + [-10.683013, 8.216036], + [-10.685363, 8.214131], + [-10.686674, 8.21332], + [-10.687936, 8.212866], + [-10.689019, 8.212793], + [-10.69055, 8.213408], + [-10.691427, 8.214041], + [-10.692136, 8.214189], + [-10.6911, 8.212599], + [-10.6904, 8.2092], + [-10.6909, 8.205699], + [-10.692999, 8.2026], + [-10.6957, 8.200099], + [-10.6976, 8.198999], + [-10.7038, 8.196899], + [-10.709799, 8.1896], + [-10.711699, 8.1865], + [-10.713099, 8.1814] + ] + ], + "type": "Polygon" + }, + "id": 117, + "properties": { + "cc:admin:id": ["77"], + "cc:oBld:total": 5839, + "cc:pop:fifteen-to-twenty-four": 7062.219580716278, + "cc:pop:grid3-total": 24458.108747668713, + "cc:pop:kontur-total": 36327.865291481925, + "cc:pop:men": 17694.798074562492, + "cc:pop:sixty-plus": 2063.8814276156704, + "cc:pop:total": 37291.468252696104, + "cc:pop:under-five": 5765.909691391517, + "cc:pop:women": 19596.67017813363, + "cc:pop:women-fiften-to-forty-nine": 9795.515221158574, + "cc:pop:wp-total": 31754.792309451615, + "cc:pop:wp-total-UN": 36810.36691585584, + "cc:id": "117", + "cc:Name": "Gbeika MCHP", + "cc:site": [-10.5736, 8.2754], + "user:parentName": "Njaluahun", + "user:code": "OU_204881", + "user:orgUnitId": "U8tyWV7WmIB", + "user:level": "4", + "user:parentId": "ERmBhYkhV6Y" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.359474, 9.058149], + [-12.359299, 9.054999], + [-12.358599, 9.0519], + [-12.356399, 9.049199], + [-12.353999, 9.045699], + [-12.3482, 9.0393], + [-12.3455, 9.0361], + [-12.342599, 9.031299], + [-12.339899, 9.0286], + [-12.335999, 9.026599], + [-12.333299, 9.024399], + [-12.328699, 9.020099], + [-12.326599, 9.0187], + [-12.3241, 9.0185], + [-12.317899, 9.021], + [-12.308999, 9.0259], + [-12.306799, 9.0276], + [-12.2995, 9.034999], + [-12.295899, 9.038], + [-12.2879, 9.042099], + [-12.2842, 9.042799], + [-12.281, 9.042499], + [-12.277799, 9.040599], + [-12.274799, 9.037599], + [-12.273, 9.0344], + [-12.272947, 9.03375], + [-12.267083, 9.03375], + [-12.262083, 9.035416], + [-12.261249, 9.036249], + [-12.257916, 9.035416], + [-12.254582, 9.030417], + [-12.252082, 9.031249], + [-12.245416, 9.02875], + [-12.240417, 9.030416], + [-12.237082, 9.027083], + [-12.22875, 9.027083], + [-12.22375, 9.03125], + [-12.22317, 9.036467], + [-12.216171, 9.036467], + [-12.212263, 9.029702], + [-12.204452, 9.029701], + [-12.202016, 9.025484], + [-12.200416, 9.027082], + [-12.19125, 9.027083], + [-12.190416, 9.037082], + [-12.18625, 9.040416], + [-12.181249, 9.040416], + [-12.179582, 9.038749], + [-12.175835, 9.032754], + [-12.175469, 9.033004], + [-12.174878, 9.034087], + [-12.174863, 9.034733], + [-12.174447, 9.034592], + [-12.173628, 9.034696], + [-12.173286, 9.034527], + [-12.172964, 9.034009], + [-12.170522, 9.034841], + [-12.170813, 9.035599], + [-12.167917, 9.037916], + [-12.166249, 9.03875], + [-12.164583, 9.040417], + [-12.164582, 9.042083], + [-12.162083, 9.046249], + [-12.15693, 9.046249], + [-12.156929, 9.046248], + [-12.157159, 9.045417], + [-12.155417, 9.045417], + [-12.152917, 9.04625], + [-12.152082, 9.052917], + [-12.150416, 9.054582], + [-12.147917, 9.054583], + [-12.147916, 9.057917], + [-12.14625, 9.05875], + [-12.145416, 9.059582], + [-12.142917, 9.060417], + [-12.142916, 9.067082], + [-12.142083, 9.067083], + [-12.14125, 9.071249], + [-12.13625, 9.077082], + [-12.134583, 9.078749], + [-12.142845, 9.081755], + [-12.14235, 9.083037], + [-12.142476, 9.087537], + [-12.142189, 9.090416], + [-12.145416, 9.090417], + [-12.147082, 9.091249], + [-12.14875, 9.096249], + [-12.152083, 9.09875], + [-12.152916, 9.10125], + [-12.14875, 9.10625], + [-12.14875, 9.107916], + [-12.150417, 9.111249], + [-12.15375, 9.11375], + [-12.154953, 9.117359], + [-12.1579, 9.1173], + [-12.161899, 9.1184], + [-12.164199, 9.119899], + [-12.167599, 9.122999], + [-12.169999, 9.125799], + [-12.171899, 9.1289], + [-12.172799, 9.132499], + [-12.172899, 9.135399], + [-12.173199, 9.179299], + [-12.1732, 9.182199], + [-12.173499, 9.185099], + [-12.1741, 9.1878], + [-12.176399, 9.192099], + [-12.1781, 9.196], + [-12.1813, 9.201299], + [-12.185195, 9.198403], + [-12.189099, 9.195], + [-12.191799, 9.193], + [-12.1974, 9.189899], + [-12.2012, 9.186599], + [-12.203699, 9.184], + [-12.2059, 9.181199], + [-12.209699, 9.1733], + [-12.210299, 9.1712], + [-12.2106, 9.167599], + [-12.2107, 9.157999], + [-12.2114, 9.154499], + [-12.2136, 9.149199], + [-12.214099, 9.143999], + [-12.214, 9.1334], + [-12.214499, 9.1297], + [-12.216899, 9.1236], + [-12.2181, 9.1181], + [-12.2203, 9.114699], + [-12.224199, 9.1104], + [-12.228299, 9.1065], + [-12.231899, 9.1036], + [-12.235799, 9.1017], + [-12.2394, 9.099699], + [-12.2432, 9.097899], + [-12.2455, 9.096399], + [-12.2502, 9.092799], + [-12.258699, 9.0881], + [-12.2619, 9.086799], + [-12.267, 9.084399], + [-12.2729, 9.082899], + [-12.2787, 9.080599], + [-12.2849, 9.08], + [-12.294599, 9.080099], + [-12.299799, 9.08], + [-12.3034, 9.079199], + [-12.3112, 9.075199], + [-12.3148, 9.072199], + [-12.323399, 9.0636], + [-12.3266, 9.062], + [-12.3287, 9.0621], + [-12.331099, 9.063599], + [-12.332699, 9.065899], + [-12.3344, 9.0731], + [-12.336999, 9.079099], + [-12.338399, 9.081199], + [-12.341, 9.083099], + [-12.343599, 9.083299], + [-12.3463, 9.081599], + [-12.3477, 9.079299], + [-12.349, 9.0745], + [-12.350599, 9.0728], + [-12.3533, 9.071699], + [-12.356399, 9.070799], + [-12.358999, 9.0636], + [-12.359499, 9.0586], + [-12.359474, 9.058149] + ] + ], + "type": "Polygon" + }, + "id": 118, + "properties": { + "cc:admin:id": ["32"], + "cc:oBld:total": 838, + "cc:pop:fifteen-to-twenty-four": 1925.2100865757106, + "cc:pop:grid3-total": 9009.87402553485, + "cc:pop:kontur-total": 10412.739677611607, + "cc:pop:men": 4770.280671248139, + "cc:pop:sixty-plus": 697.6263062911355, + "cc:pop:total": 10080.922243654695, + "cc:pop:under-five": 1583.7523478487003, + "cc:pop:women": 5310.6415724065555, + "cc:pop:women-fiften-to-forty-nine": 2586.9617823814374, + "cc:pop:wp-total": 8195.125882156528, + "cc:pop:wp-total-UN": 9500.570492142364, + "cc:id": "118", + "cc:Name": "Gbendembu Wesleyan CHC", + "cc:site": [-12.2074, 9.1075], + "user:parentName": "Gbendembu Ngowahun", + "user:code": "OU_193281", + "user:orgUnitId": "YAuJ3fyoEuI", + "user:level": "4", + "user:parentId": "BXJdOLvUrZB" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.520029, 9.599823], + [-11.519688, 9.599823], + [-11.519532, 9.599848], + [-11.518987, 9.600049], + [-11.51625, 9.601046], + [-11.51625, 9.600416], + [-11.516842, 9.598046], + [-11.514329, 9.59625], + [-11.50875, 9.596249], + [-11.505417, 9.59375], + [-11.506249, 9.587083], + [-11.506676, 9.586229], + [-11.50606, 9.585618], + [-11.504867, 9.584802], + [-11.504303, 9.584573], + [-11.503749, 9.581249], + [-11.502082, 9.57875], + [-11.496249, 9.580416], + [-11.492083, 9.577083], + [-11.492082, 9.57375], + [-11.487917, 9.573749], + [-11.487083, 9.572917], + [-11.487083, 9.571249], + [-11.488749, 9.56625], + [-11.475417, 9.565417], + [-11.475416, 9.56282], + [-11.471851, 9.562819], + [-11.471249, 9.560417], + [-11.468749, 9.558749], + [-11.465747, 9.555747], + [-11.469475, 9.549287], + [-11.467784, 9.546358], + [-11.467436, 9.546292], + [-11.466916, 9.546408], + [-11.466626, 9.54663], + [-11.46648, 9.547047], + [-11.466165, 9.547201], + [-11.464212, 9.547677], + [-11.463535, 9.548149], + [-11.462355, 9.548604], + [-11.460952, 9.548993], + [-11.460416, 9.555416], + [-11.454582, 9.557916], + [-11.44625, 9.549582], + [-11.446249, 9.539583], + [-11.443829, 9.539582], + [-11.446038, 9.535756], + [-11.442131, 9.528991], + [-11.43432, 9.52899], + [-11.430414, 9.522225], + [-11.430529, 9.522023], + [-11.422078, 9.521319], + [-11.4226, 9.522225], + [-11.418695, 9.52899], + [-11.410882, 9.528991], + [-11.40714, 9.535472], + [-11.407917, 9.536249], + [-11.412917, 9.537083], + [-11.415416, 9.539582], + [-11.415416, 9.54125], + [-11.40875, 9.547916], + [-11.407731, 9.548257], + [-11.408133, 9.548532], + [-11.40375, 9.552917], + [-11.402916, 9.557082], + [-11.397917, 9.55625], + [-11.392083, 9.56125], + [-11.401587, 9.573129], + [-11.402082, 9.573749], + [-11.39875, 9.574583], + [-11.39375, 9.577916], + [-11.390416, 9.577083], + [-11.387917, 9.579583], + [-11.382917, 9.589582], + [-11.38125, 9.590417], + [-11.381249, 9.591249], + [-11.370417, 9.590417], + [-11.371249, 9.601249], + [-11.36625, 9.606249], + [-11.35625, 9.606249], + [-11.354679, 9.604941], + [-11.352936, 9.60796], + [-11.356841, 9.614726], + [-11.352936, 9.621491], + [-11.345123, 9.621492], + [-11.342697, 9.625691], + [-11.342386, 9.625501], + [-11.341933, 9.625383], + [-11.341187, 9.625594], + [-11.340452, 9.637345], + [-11.3416, 9.634699], + [-11.343299, 9.6294], + [-11.346099, 9.6286], + [-11.3493, 9.6304], + [-11.3517, 9.6331], + [-11.3552, 9.637599], + [-11.3576, 9.6386], + [-11.3606, 9.638999], + [-11.386899, 9.6388], + [-11.393199, 9.6386], + [-11.402099, 9.638899], + [-11.4051, 9.638799], + [-11.4093, 9.638099], + [-11.4143, 9.636099], + [-11.420999, 9.6342], + [-11.425399, 9.6322], + [-11.4283, 9.631599], + [-11.4343, 9.6313], + [-11.457899, 9.631399], + [-11.464199, 9.6311], + [-11.469099, 9.631399], + [-11.474099, 9.631499], + [-11.4793, 9.631099], + [-11.4814, 9.630599], + [-11.4892, 9.626599], + [-11.4931, 9.623399], + [-11.511, 9.605299], + [-11.5142, 9.602799], + [-11.518099, 9.6009], + [-11.520029, 9.599823] + ] + ], + "type": "Polygon" + }, + "id": 119, + "properties": { + "cc:admin:id": ["122"], + "cc:oBld:total": 13, + "cc:pop:fifteen-to-twenty-four": 1218.3767989656756, + "cc:pop:grid3-total": 3789.185754723329, + "cc:pop:kontur-total": 6327.53183952531, + "cc:pop:men": 3068.1134238082595, + "cc:pop:sixty-plus": 424.26894101986477, + "cc:pop:total": 6555.77348877174, + "cc:pop:under-five": 1063.9384309661564, + "cc:pop:women": 3487.660064963478, + "cc:pop:women-fiften-to-forty-nine": 1694.6195916689144, + "cc:pop:wp-total": 5966.176046066894, + "cc:pop:wp-total-UN": 6912.564859545104, + "cc:id": "119", + "cc:Name": "Gbenikoro MCHP", + "cc:site": [-11.4701, 9.6228], + "user:parentName": "Sengbeh", + "user:code": "OU_226236", + "user:orgUnitId": "y77LiPqLMoq", + "user:level": "4", + "user:parentId": "VGAFxBXz16y" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.742299, 9.995499], + [-11.7407, 9.9847], + [-11.7392, 9.9788], + [-11.7353, 9.9705], + [-11.7327, 9.9653], + [-11.7314, 9.9602], + [-11.7291, 9.9549], + [-11.7273, 9.9482], + [-11.7252, 9.9438], + [-11.724599, 9.940999], + [-11.724299, 9.935899], + [-11.7241, 9.9236], + [-11.7244, 9.9178], + [-11.7254, 9.9154], + [-11.729299, 9.9121], + [-11.730799, 9.9102], + [-11.7341, 9.903699], + [-11.735, 9.900999], + [-11.735299, 9.898], + [-11.7353, 9.889], + [-11.735, 9.885], + [-11.734299, 9.881699], + [-11.732599, 9.878799], + [-11.7273, 9.8732], + [-11.7254, 9.871], + [-11.724299, 9.868899], + [-11.7237, 9.8664], + [-11.7234, 9.862399], + [-11.723499, 9.8491], + [-11.7231, 9.8431], + [-11.722399, 9.840199], + [-11.720399, 9.835699], + [-11.719599, 9.831999], + [-11.7193, 9.827999], + [-11.7193, 9.821899], + [-11.719999, 9.8156], + [-11.721999, 9.811], + [-11.722299, 9.8085], + [-11.721099, 9.8069], + [-11.7185, 9.8063], + [-11.7152, 9.8071], + [-11.713299, 9.8085], + [-11.707899, 9.8139], + [-11.7056, 9.815799], + [-11.703099, 9.8171], + [-11.700299, 9.8177], + [-11.6934, 9.8177], + [-11.6898, 9.816799], + [-11.687, 9.814799], + [-11.6856, 9.8128], + [-11.6825, 9.806], + [-11.681899, 9.802299], + [-11.6816, 9.7966], + [-11.680399, 9.7931], + [-11.677799, 9.791499], + [-11.674499, 9.790499], + [-11.672099, 9.789099], + [-11.6685, 9.7863], + [-11.666099, 9.784999], + [-11.663599, 9.784299], + [-11.6582, 9.7837], + [-11.655699, 9.783099], + [-11.653299, 9.781699], + [-11.649, 9.7782], + [-11.6465, 9.7771], + [-11.642999, 9.7767], + [-11.6408, 9.777], + [-11.6382, 9.778199], + [-11.634299, 9.7807], + [-11.632799, 9.7825], + [-11.63, 9.787199], + [-11.628399, 9.7912], + [-11.6261, 9.795499], + [-11.624799, 9.7986], + [-11.6224, 9.802899], + [-11.621199, 9.8061], + [-11.619199, 9.8097], + [-11.6174, 9.813499], + [-11.6159, 9.815799], + [-11.613999, 9.818], + [-11.603, 9.828999], + [-11.600699, 9.832], + [-11.596399, 9.8411], + [-11.5951, 9.846999], + [-11.5929, 9.852299], + [-11.591699, 9.8574], + [-11.5892, 9.863399], + [-11.5879, 9.869299], + [-11.5856, 9.874599], + [-11.584499, 9.8797], + [-11.5808, 9.887999], + [-11.5784, 9.892299], + [-11.577099, 9.8955], + [-11.5747, 9.899699], + [-11.573399, 9.9029], + [-11.571499, 9.9065], + [-11.570699, 9.9099], + [-11.5704, 9.918999], + [-11.5699, 9.921599], + [-11.5665, 9.927899], + [-11.5643, 9.928699], + [-11.562399, 9.928099], + [-11.5599, 9.925499], + [-11.556037, 9.917083], + [-11.55125, 9.917083], + [-11.547917, 9.923749], + [-11.547916, 9.92625], + [-11.545417, 9.929583], + [-11.545417, 9.933749], + [-11.547917, 9.934582], + [-11.550416, 9.934583], + [-11.551249, 9.935416], + [-11.55125, 9.942916], + [-11.552916, 9.94375], + [-11.552917, 9.945416], + [-11.553749, 9.947082], + [-11.552713, 9.94812], + [-11.552182, 9.947964], + [-11.54875, 9.952082], + [-11.547083, 9.953749], + [-11.545567, 9.953245], + [-11.544715, 9.955813], + [-11.544227, 9.956447], + [-11.54204, 9.958134], + [-11.542825, 9.958175], + [-11.543023, 9.958329], + [-11.54466, 9.958164], + [-11.545807, 9.958672], + [-11.547442, 9.960172], + [-11.544835, 9.967994], + [-11.544343, 9.967985], + [-11.544015, 9.967822], + [-11.542529, 9.968339], + [-11.541449, 9.968176], + [-11.54118, 9.96826], + [-11.540661, 9.96806], + [-11.540441, 9.967615], + [-11.540403, 9.966929], + [-11.540577, 9.965511], + [-11.52875, 9.96625], + [-11.52875, 9.972916], + [-11.540416, 9.977916], + [-11.54125, 9.977917], + [-11.543255, 9.984603], + [-11.543712, 9.984546], + [-11.543749, 9.984583], + [-11.54375, 9.987916], + [-11.540417, 9.992082], + [-11.545416, 9.994582], + [-11.546249, 9.989583], + [-11.547082, 9.989583], + [-11.547083, 9.996743], + [-11.548172, 9.997413], + [-11.548554, 9.997989], + [-11.549585, 9.998663], + [-11.550913, 9.998882], + [-11.551898, 9.998563], + [-11.55195, 9.998861], + [-11.563599, 9.9986], + [-11.574, 9.999599], + [-11.584699, 9.9995], + [-11.6144, 9.9981], + [-11.6534, 9.999199], + [-11.725499, 9.9979], + [-11.734399, 9.999899], + [-11.730502, 9.998499], + [-11.733, 9.997799], + [-11.7377, 9.996999], + [-11.742299, 9.995499] + ] + ], + "type": "Polygon" + }, + "id": 120, + "properties": { + "cc:admin:id": ["19"], + "cc:oBld:total": 841, + "cc:pop:fifteen-to-twenty-four": 1247.756855792644, + "cc:pop:grid3-total": 9558.60014526063, + "cc:pop:kontur-total": 7130.076195985767, + "cc:pop:men": 3469.6775322943804, + "cc:pop:sixty-plus": 419.6995366351534, + "cc:pop:total": 7046.031104644778, + "cc:pop:under-five": 1171.2717683951587, + "cc:pop:women": 3576.3535723503974, + "cc:pop:women-fiften-to-forty-nine": 1887.4133014147683, + "cc:pop:wp-total": 6915.35194807588, + "cc:pop:wp-total-UN": 8020.022946793144, + "cc:id": "120", + "cc:Name": "Gbentu CHP", + "cc:site": [-11.6447, 9.9432], + "user:parentName": "Folosaba Dembelia", + "user:code": "OU_226255", + "user:orgUnitId": "D7UVRRE9iUC", + "user:level": "4", + "user:parentId": "iEkBZnMDarP" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.261168, 9.447459], + [-11.261321, 9.447014], + [-11.261199, 9.446099], + [-11.2575, 9.4381], + [-11.2554, 9.4345], + [-11.253599, 9.430699], + [-11.2512, 9.4264], + [-11.249799, 9.423199], + [-11.2473, 9.419], + [-11.245899, 9.415799], + [-11.243999, 9.412199], + [-11.242999, 9.408699], + [-11.2426, 9.4009], + [-11.2419, 9.3973], + [-11.2396, 9.3928], + [-11.238299, 9.389699], + [-11.2357, 9.3845], + [-11.234099, 9.378599], + [-11.232699, 9.376199], + [-11.228, 9.3712], + [-11.2258, 9.3693], + [-11.223399, 9.367799], + [-11.220099, 9.366399], + [-11.212, 9.3623], + [-11.2092, 9.3593], + [-11.2054, 9.352], + [-11.204, 9.3488], + [-11.201999, 9.345199], + [-11.200199, 9.341299], + [-11.1978, 9.337], + [-11.196099, 9.333099], + [-11.194399, 9.330199], + [-11.1926, 9.3265], + [-11.191, 9.3246], + [-11.189099, 9.322999], + [-11.1853, 9.3212], + [-11.1824, 9.3196], + [-11.1785, 9.3179], + [-11.1749, 9.316], + [-11.172699, 9.315399], + [-11.166499, 9.3149], + [-11.1337, 9.315], + [-11.133299, 9.3188], + [-11.1332, 9.325699], + [-11.133599, 9.330499], + [-11.1343, 9.3332], + [-11.1363, 9.3378], + [-11.137099, 9.341399], + [-11.137099, 9.3444], + [-11.136499, 9.3482], + [-11.134299, 9.3535], + [-11.133799, 9.3572], + [-11.1335, 9.362999], + [-11.1327, 9.366699], + [-11.130599, 9.3721], + [-11.1301, 9.377], + [-11.1301, 9.388999], + [-11.1294, 9.392799], + [-11.1272, 9.397199], + [-11.125899, 9.4003], + [-11.1237, 9.404699], + [-11.123, 9.407499], + [-11.1228, 9.4126], + [-11.122999, 9.417699], + [-11.123599, 9.421699], + [-11.125999, 9.426999], + [-11.126599, 9.429899], + [-11.1269, 9.4329], + [-11.127099, 9.440099], + [-11.127699, 9.444099], + [-11.129899, 9.449499], + [-11.130699, 9.453099], + [-11.131099, 9.458899], + [-11.131799, 9.462999], + [-11.133899, 9.467999], + [-11.134599, 9.470899], + [-11.135, 9.477], + [-11.135099, 9.503999], + [-11.135799, 9.511099], + [-11.1381, 9.5165], + [-11.140099, 9.526799], + [-11.142099, 9.531399], + [-11.142899, 9.535099], + [-11.1432, 9.5391], + [-11.143299, 9.548099], + [-11.143, 9.551099], + [-11.141899, 9.5538], + [-11.139699, 9.5569], + [-11.132599, 9.5638], + [-11.130699, 9.566], + [-11.1292, 9.5685], + [-11.1287, 9.571999], + [-11.129199, 9.575299], + [-11.13081, 9.578749], + [-11.140416, 9.57875], + [-11.142666, 9.580549], + [-11.146789, 9.580549], + [-11.150695, 9.573784], + [-11.147526, 9.568292], + [-11.148027, 9.567604], + [-11.148398, 9.566304], + [-11.148901, 9.565753], + [-11.149079, 9.564299], + [-11.149808, 9.56295], + [-11.150886, 9.562574], + [-11.151313, 9.562301], + [-11.147917, 9.559582], + [-11.147665, 9.555807], + [-11.148191, 9.554897], + [-11.156002, 9.554896], + [-11.15834, 9.550848], + [-11.159518, 9.550788], + [-11.160581, 9.550712], + [-11.16264, 9.550144], + [-11.164841, 9.54926], + [-11.166273, 9.548366], + [-11.167795, 9.546881], + [-11.16839, 9.54684], + [-11.167494, 9.54415], + [-11.167493, 9.544596], + [-11.167218, 9.544885], + [-11.167051, 9.544753], + [-11.167014, 9.544308], + [-11.166803, 9.544195], + [-11.166039, 9.544605], + [-11.165614, 9.544465], + [-11.165214, 9.544072], + [-11.164426, 9.544351], + [-11.163974, 9.544266], + [-11.163973, 9.544265], + [-11.167361, 9.538396], + [-11.175174, 9.538395], + [-11.179079, 9.53163], + [-11.175174, 9.524864], + [-11.179079, 9.518099], + [-11.186892, 9.518098], + [-11.190798, 9.511333], + [-11.19861, 9.511332], + [-11.202518, 9.504567], + [-11.210329, 9.504566], + [-11.214236, 9.497801], + [-11.222048, 9.4978], + [-11.225955, 9.491035], + [-11.233767, 9.491034], + [-11.237673, 9.484269], + [-11.233768, 9.477503], + [-11.237673, 9.470738], + [-11.245192, 9.470737], + [-11.243749, 9.469582], + [-11.242083, 9.462917], + [-11.252082, 9.459582], + [-11.250884, 9.455986], + [-11.252096, 9.455596], + [-11.25288, 9.454911], + [-11.253167, 9.454021], + [-11.25352, 9.453553], + [-11.25353, 9.45318], + [-11.254096, 9.453241], + [-11.254469, 9.453181], + [-11.254807, 9.453109], + [-11.254829, 9.452554], + [-11.254468, 9.451765], + [-11.254485, 9.451236], + [-11.254352, 9.450675], + [-11.254548, 9.450204], + [-11.254512, 9.449638], + [-11.253874, 9.448039], + [-11.253696, 9.446601], + [-11.25372, 9.44625], + [-11.258749, 9.44625], + [-11.261168, 9.447459] + ] + ], + "type": "Polygon" + }, + "id": 121, + "properties": { + "cc:admin:id": ["122"], + "cc:oBld:total": 253, + "cc:pop:fifteen-to-twenty-four": 1644.198268425762, + "cc:pop:grid3-total": 7869.094215939372, + "cc:pop:kontur-total": 7321.28111866666, + "cc:pop:men": 4115.971341275232, + "cc:pop:sixty-plus": 565.4819990466412, + "cc:pop:total": 8804.242666333592, + "cc:pop:under-five": 1428.0587790326467, + "cc:pop:women": 4688.271325058362, + "cc:pop:women-fiften-to-forty-nine": 2266.411350520233, + "cc:pop:wp-total": 9861.786562214522, + "cc:pop:wp-total-UN": 11441.09422125191, + "cc:id": "121", + "cc:Name": "Gberifeh MCHP", + "cc:site": [-11.1447, 9.4149], + "user:parentName": "Mongo", + "user:code": "OU_226251", + "user:orgUnitId": "qELjt3LRkSD", + "user:level": "4", + "user:parentId": "OTFepb1k9Db" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.556037, 9.917082], + [-11.555999, 9.916999], + [-11.5552, 9.9127], + [-11.554299, 9.910299], + [-11.5504, 9.9028], + [-11.5458, 9.897], + [-11.5447, 9.894999], + [-11.544099, 9.891799], + [-11.5438, 9.8812], + [-11.5431, 9.8775], + [-11.5408, 9.8731], + [-11.539399, 9.869899], + [-11.5369, 9.8657], + [-11.535499, 9.862599], + [-11.533499, 9.858999], + [-11.532599, 9.855599], + [-11.532, 9.8503], + [-11.5314, 9.8478], + [-11.529099, 9.842399], + [-11.5285, 9.8377], + [-11.528493, 9.837447], + [-11.522083, 9.839583], + [-11.522082, 9.847082], + [-11.514583, 9.847083], + [-11.51125, 9.850417], + [-11.510416, 9.854582], + [-11.505417, 9.85375], + [-11.499583, 9.856249], + [-11.49875, 9.85625], + [-11.498749, 9.865416], + [-11.497083, 9.867916], + [-11.494583, 9.867083], + [-11.490416, 9.869582], + [-11.479583, 9.867917], + [-11.478901, 9.872003], + [-11.478127, 9.871536], + [-11.476979, 9.869929], + [-11.477064, 9.867809], + [-11.478128, 9.867501], + [-11.473749, 9.86625], + [-11.462917, 9.868749], + [-11.462082, 9.867917], + [-11.447083, 9.867917], + [-11.442083, 9.872917], + [-11.442083, 9.882082], + [-11.445416, 9.88625], + [-11.442917, 9.888249], + [-11.442739, 9.88825], + [-11.442587, 9.888513], + [-11.44125, 9.889583], + [-11.440416, 9.892082], + [-11.437484, 9.895015], + [-11.436539, 9.895015], + [-11.436137, 9.894166], + [-11.436294, 9.89203], + [-11.435944, 9.889574], + [-11.435359, 9.888504], + [-11.434887, 9.886826], + [-11.434369, 9.88574], + [-11.433503, 9.88524], + [-11.433023, 9.884768], + [-11.43008, 9.884768], + [-11.426818, 9.890416], + [-11.417083, 9.890417], + [-11.414583, 9.892083], + [-11.415416, 9.902082], + [-11.407722, 9.902083], + [-11.4081, 9.9028], + [-11.409199, 9.906299], + [-11.409399, 9.910199], + [-11.409599, 9.937999], + [-11.4098, 9.9439], + [-11.4103, 9.9467], + [-11.412599, 9.952099], + [-11.413299, 9.954599], + [-11.4139, 9.9599], + [-11.4146, 9.9624], + [-11.416799, 9.967799], + [-11.417499, 9.972899], + [-11.4177, 9.998699], + [-11.4456, 9.9992], + [-11.4984, 10], + [-11.5014, 9.999999], + [-11.551949, 9.998861], + [-11.551898, 9.998563], + [-11.550913, 9.998882], + [-11.549586, 9.998663], + [-11.548554, 9.997989], + [-11.548172, 9.997413], + [-11.547083, 9.996743], + [-11.547082, 9.989583], + [-11.54625, 9.989583], + [-11.545416, 9.994582], + [-11.540417, 9.992083], + [-11.54375, 9.987916], + [-11.543749, 9.984583], + [-11.543712, 9.984547], + [-11.543255, 9.984603], + [-11.541249, 9.977917], + [-11.540416, 9.977916], + [-11.52875, 9.972917], + [-11.52875, 9.96625], + [-11.540577, 9.965511], + [-11.540403, 9.966929], + [-11.540441, 9.967615], + [-11.540661, 9.968059], + [-11.541181, 9.96826], + [-11.541449, 9.968176], + [-11.542529, 9.968339], + [-11.544015, 9.967822], + [-11.544343, 9.967985], + [-11.544834, 9.967994], + [-11.547442, 9.960172], + [-11.545807, 9.958672], + [-11.54466, 9.958164], + [-11.543023, 9.958329], + [-11.542825, 9.958175], + [-11.542042, 9.958135], + [-11.542041, 9.958133], + [-11.544227, 9.956447], + [-11.544715, 9.955813], + [-11.545566, 9.953245], + [-11.547082, 9.953749], + [-11.54875, 9.952082], + [-11.552182, 9.947964], + [-11.552712, 9.94812], + [-11.553749, 9.947082], + [-11.552917, 9.945416], + [-11.552916, 9.94375], + [-11.55125, 9.942916], + [-11.551249, 9.935417], + [-11.550416, 9.934583], + [-11.547917, 9.934582], + [-11.545417, 9.93375], + [-11.545417, 9.929583], + [-11.547916, 9.926249], + [-11.547917, 9.923749], + [-11.551249, 9.917083], + [-11.556037, 9.917082] + ] + ], + "type": "Polygon" + }, + "id": 122, + "properties": { + "cc:admin:id": ["19"], + "cc:oBld:total": 1633, + "cc:pop:fifteen-to-twenty-four": 1602.4121671670134, + "cc:pop:grid3-total": 13150.841571751844, + "cc:pop:kontur-total": 8956.905262478715, + "cc:pop:men": 4340.367561836858, + "cc:pop:sixty-plus": 556.7533065465461, + "cc:pop:total": 8880.481026459212, + "cc:pop:under-five": 1469.7820936384283, + "cc:pop:women": 4540.113464622353, + "cc:pop:women-fiften-to-forty-nine": 2305.965831506407, + "cc:pop:wp-total": 6762.689213714057, + "cc:pop:wp-total-UN": 7837.305896293186, + "cc:id": "122", + "cc:Name": "Gbindi CHP", + "cc:site": [-11.4434, 9.9115], + "user:parentName": "Dembelia Sinkunia", + "user:code": "OU_226218", + "user:orgUnitId": "LFpl1falVZi", + "user:level": "4", + "user:parentId": "Mr4au3jR9bt" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.248712, 7.777637], + [-11.24866, 7.777548], + [-11.244099, 7.78], + [-11.241999, 7.7805], + [-11.239299, 7.780599], + [-11.237099, 7.780199], + [-11.2323, 7.7779], + [-11.2282, 7.776499], + [-11.225499, 7.774], + [-11.2209, 7.777899], + [-11.217799, 7.7808], + [-11.192242, 7.806409], + [-11.193749, 7.807917], + [-11.19125, 7.817083], + [-11.195417, 7.819583], + [-11.199028, 7.820185], + [-11.199043, 7.820147], + [-11.202915, 7.822083], + [-11.200417, 7.82375], + [-11.200416, 7.825416], + [-11.199583, 7.82625], + [-11.199582, 7.830417], + [-11.19625, 7.832084], + [-11.196249, 7.832917], + [-11.192083, 7.83625], + [-11.192083, 7.837916], + [-11.192916, 7.839584], + [-11.192917, 7.842022], + [-11.193041, 7.842129], + [-11.193433, 7.842486], + [-11.193815, 7.842493], + [-11.194242, 7.842743], + [-11.1944, 7.844268], + [-11.194259, 7.844734], + [-11.194265, 7.844762], + [-11.194479, 7.845502], + [-11.1948, 7.845859], + [-11.195291, 7.846336], + [-11.195287, 7.846523], + [-11.195228, 7.846768], + [-11.195044, 7.847762], + [-11.194508, 7.848498], + [-11.194441, 7.84864], + [-11.194766, 7.84894], + [-11.195437, 7.849113], + [-11.195302, 7.849479], + [-11.195562, 7.849421], + [-11.196465, 7.850025], + [-11.196819, 7.850506], + [-11.195954, 7.850983], + [-11.196213, 7.851525], + [-11.194931, 7.852344], + [-11.194902, 7.852559], + [-11.19515, 7.852853], + [-11.195426, 7.85337], + [-11.194787, 7.853692], + [-11.194826, 7.854143], + [-11.195011, 7.854755], + [-11.195118, 7.854772], + [-11.195109, 7.854875], + [-11.194978, 7.854893], + [-11.194227, 7.85535], + [-11.194418, 7.855778], + [-11.194619, 7.856244], + [-11.194972, 7.856905], + [-11.193185, 7.857865], + [-11.191783, 7.858627], + [-11.190792, 7.859211], + [-11.190352, 7.859468], + [-11.192443, 7.861126], + [-11.191812, 7.862318], + [-11.192231, 7.862703], + [-11.192271, 7.862722], + [-11.192724, 7.862884], + [-11.192341, 7.863756], + [-11.192145, 7.864285], + [-11.191895, 7.864801], + [-11.191654, 7.865267], + [-11.191378, 7.865791], + [-11.193377, 7.866747], + [-11.193763, 7.866948], + [-11.193545, 7.867435], + [-11.193319, 7.867931], + [-11.193032, 7.868471], + [-11.193637, 7.868775], + [-11.193411, 7.869339], + [-11.193979, 7.869332], + [-11.195604, 7.870235], + [-11.195604, 7.870236], + [-11.195084, 7.870842], + [-11.195516, 7.871251], + [-11.195979, 7.871692], + [-11.196044, 7.871694], + [-11.19665, 7.872231], + [-11.197028, 7.871866], + [-11.197036, 7.871552], + [-11.197088, 7.871186], + [-11.198345, 7.870158], + [-11.199044, 7.869544], + [-11.199367, 7.869967], + [-11.199752, 7.870419], + [-11.198508, 7.87151], + [-11.198754, 7.871883], + [-11.198801, 7.871923], + [-11.199161, 7.87225], + [-11.199219, 7.872294], + [-11.199572, 7.87262], + [-11.199004, 7.873097], + [-11.198732, 7.873395], + [-11.199167, 7.873759], + [-11.199594, 7.874099], + [-11.200369, 7.873292], + [-11.200836, 7.872897], + [-11.201492, 7.87269], + [-11.201812, 7.872316], + [-11.200885, 7.871757], + [-11.201421, 7.871237], + [-11.201456, 7.870894], + [-11.201458, 7.87083], + [-11.202268, 7.87046], + [-11.20261, 7.870269], + [-11.202497, 7.869965], + [-11.202072, 7.869066], + [-11.202242, 7.869039], + [-11.20221, 7.868852], + [-11.202444, 7.868806], + [-11.202882, 7.86868], + [-11.202557, 7.867758], + [-11.203224, 7.867287], + [-11.203598, 7.866734], + [-11.203994, 7.865749], + [-11.204566, 7.865791], + [-11.204624, 7.864062], + [-11.205063, 7.86305], + [-11.204938, 7.862067], + [-11.204647, 7.860366], + [-11.205187, 7.85938], + [-11.205653, 7.858495], + [-11.20607, 7.857628], + [-11.205598, 7.857347], + [-11.205163, 7.857527], + [-11.20482, 7.857386], + [-11.205698, 7.855044], + [-11.206598, 7.854102], + [-11.206718, 7.854181], + [-11.206893, 7.854063], + [-11.207588, 7.853676], + [-11.209106, 7.852702], + [-11.211241, 7.8514], + [-11.211018, 7.851044], + [-11.21292, 7.850598], + [-11.213108, 7.850545], + [-11.21304, 7.849923], + [-11.213055, 7.849643], + [-11.213427, 7.849113], + [-11.213664, 7.848892], + [-11.213862, 7.848417], + [-11.213209, 7.847627], + [-11.213113, 7.84728], + [-11.212539, 7.846699], + [-11.21222, 7.846356], + [-11.212258, 7.846064], + [-11.212561, 7.845737], + [-11.21304, 7.846321], + [-11.213426, 7.84651], + [-11.214334, 7.846511], + [-11.214365, 7.846084], + [-11.214387, 7.845861], + [-11.214408, 7.845548], + [-11.214411, 7.845325], + [-11.214406, 7.845208], + [-11.214401, 7.844808], + [-11.214398, 7.84444], + [-11.214425, 7.843959], + [-11.214436, 7.843723], + [-11.214807, 7.84377], + [-11.215834, 7.844097], + [-11.215956, 7.844112], + [-11.216004, 7.843361], + [-11.216028, 7.84313], + [-11.216026, 7.842742], + [-11.216007, 7.842354], + [-11.215392, 7.841857], + [-11.214409, 7.841837], + [-11.214406, 7.841536], + [-11.213778, 7.841192], + [-11.214382, 7.840587], + [-11.214502, 7.840655], + [-11.214733, 7.839801], + [-11.214843, 7.839352], + [-11.21491, 7.839146], + [-11.215107, 7.83848], + [-11.214857, 7.838218], + [-11.214403, 7.838197], + [-11.214305, 7.837995], + [-11.214322, 7.837994], + [-11.21619, 7.834758], + [-11.21619, 7.834756], + [-11.216179, 7.834732], + [-11.216277, 7.834455], + [-11.216453, 7.833887], + [-11.21638, 7.833863], + [-11.215997, 7.833664], + [-11.21571, 7.833193], + [-11.215378, 7.832218], + [-11.215497, 7.831805], + [-11.215807, 7.831244], + [-11.21614, 7.831684], + [-11.217211, 7.831511], + [-11.217304, 7.831407], + [-11.217395, 7.830871], + [-11.217558, 7.829417], + [-11.217596, 7.829205], + [-11.217669, 7.828558], + [-11.218478, 7.828282], + [-11.218683, 7.828178], + [-11.218969, 7.828013], + [-11.218981, 7.828008], + [-11.218981, 7.828005], + [-11.219243, 7.827703], + [-11.21949, 7.826281], + [-11.21981, 7.825485], + [-11.219828, 7.823905], + [-11.220138, 7.822647], + [-11.220048, 7.821973], + [-11.220354, 7.821101], + [-11.221359, 7.819512], + [-11.21875, 7.81625], + [-11.220365, 7.814633], + [-11.217212, 7.809171], + [-11.220673, 7.803174], + [-11.219583, 7.802083], + [-11.219583, 7.794584], + [-11.227916, 7.789584], + [-11.234002, 7.789583], + [-11.236994, 7.784403], + [-11.244806, 7.784402], + [-11.248712, 7.777637] + ] + ], + "type": "Polygon" + }, + "id": 123, + "properties": { + "cc:admin:id": ["105"], + "cc:oBld:total": 4648, + "cc:pop:fifteen-to-twenty-four": 8288.07873707126, + "cc:pop:grid3-total": 33479.42062404749, + "cc:pop:kontur-total": 45133.12710757677, + "cc:pop:men": 21423.61102803252, + "cc:pop:sixty-plus": 2522.0645381779327, + "cc:pop:total": 43009.75071970502, + "cc:pop:under-five": 6742.729618531458, + "cc:pop:women": 21586.1396916725, + "cc:pop:women-fiften-to-forty-nine": 10805.139097279449, + "cc:pop:wp-total": 37260.900440637386, + "cc:pop:wp-total-UN": 43201.37068221817, + "cc:id": "123", + "cc:Name": "Gbo-Lambayama 2 MCHP", + "cc:site": [-11.1993, 7.8604], + "user:parentName": "Nongowa", + "user:code": "OU_222721", + "user:orgUnitId": "TYq1YW7qs7k", + "user:level": "4", + "user:parentId": "KIUCimTXf8Q" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.891899, 9.271099], + [-12.8888, 9.267599], + [-12.888199, 9.265499], + [-12.8852, 9.259], + [-12.8832, 9.2555], + [-12.882199, 9.252099], + [-12.8821, 9.248], + [-12.8827, 9.2445], + [-12.8838, 9.242499], + [-12.887299, 9.2383], + [-12.8888, 9.236099], + [-12.889399, 9.232599], + [-12.888899, 9.2296], + [-12.887599, 9.227399], + [-12.885199, 9.2259], + [-12.8802, 9.2246], + [-12.8778, 9.2238], + [-12.874299, 9.2214], + [-12.870999, 9.2223], + [-12.865699, 9.224599], + [-12.862299, 9.224899], + [-12.860099, 9.224499], + [-12.855199, 9.222399], + [-12.852699, 9.221799], + [-12.8473, 9.2211], + [-12.8448, 9.2205], + [-12.839399, 9.218299], + [-12.8346, 9.2178], + [-12.8269, 9.2177], + [-12.824, 9.217399], + [-12.820199, 9.215699], + [-12.816999, 9.212999], + [-12.8102, 9.2063], + [-12.807199, 9.2041], + [-12.803699, 9.203], + [-12.799, 9.2037], + [-12.798499, 9.2062], + [-12.796399, 9.2107], + [-12.7948, 9.217399], + [-12.7936, 9.219599], + [-12.7909, 9.222299], + [-12.7879, 9.224499], + [-12.784, 9.226399], + [-12.7812, 9.228499], + [-12.7776, 9.231999], + [-12.774499, 9.2359], + [-12.772299, 9.2405], + [-12.770299, 9.2432], + [-12.7678, 9.245499], + [-12.764799, 9.2471], + [-12.758899, 9.2484], + [-12.7545, 9.250599], + [-12.751299, 9.2518], + [-12.747, 9.254199], + [-12.743899, 9.2556], + [-12.741099, 9.2576], + [-12.7319, 9.266699], + [-12.7285, 9.269199], + [-12.725299, 9.2706], + [-12.720999, 9.2729], + [-12.717799, 9.2742], + [-12.7136, 9.276599], + [-12.7104, 9.277999], + [-12.7082, 9.279499], + [-12.705599, 9.2818], + [-12.6954, 9.291999], + [-12.693699, 9.2941], + [-12.6923, 9.2965], + [-12.6912, 9.301599], + [-12.6905, 9.303799], + [-12.6866, 9.311599], + [-12.6832, 9.315899], + [-12.6813, 9.318599], + [-12.679899, 9.3217], + [-12.6776, 9.325999], + [-12.675499, 9.3303], + [-12.6731, 9.333399], + [-12.67095, 9.335635], + [-12.674582, 9.335817], + [-12.674658, 9.335779], + [-12.678744, 9.336071], + [-12.678851, 9.336888], + [-12.680029, 9.338164], + [-12.681541, 9.338327], + [-12.682212, 9.338666], + [-12.683493, 9.339097], + [-12.684222, 9.339005], + [-12.684911, 9.339555], + [-12.68547, 9.339573], + [-12.6865, 9.339742], + [-12.686964, 9.339633], + [-12.688175, 9.340372], + [-12.688749, 9.340417], + [-12.692082, 9.344583], + [-12.692083, 9.351249], + [-12.700416, 9.35125], + [-12.703749, 9.354582], + [-12.702083, 9.359582], + [-12.700417, 9.360417], + [-12.699025, 9.364589], + [-12.70031, 9.3657], + [-12.703561, 9.365639], + [-12.70356, 9.365641], + [-12.703189, 9.365714], + [-12.703152, 9.366638], + [-12.703515, 9.367607], + [-12.703952, 9.368358], + [-12.704678, 9.369148], + [-12.706229, 9.370649], + [-12.70375, 9.373749], + [-12.70375, 9.374582], + [-12.707619, 9.377162], + [-12.708436, 9.376526], + [-12.709061, 9.376351], + [-12.710416, 9.380416], + [-12.710417, 9.381674], + [-12.71463, 9.384537], + [-12.715141, 9.385311], + [-12.715259, 9.386926], + [-12.7154, 9.387011], + [-12.717967, 9.387944], + [-12.718953, 9.388045], + [-12.720532, 9.388645], + [-12.721008, 9.388759], + [-12.719942, 9.392495], + [-12.724, 9.3952], + [-12.752199, 9.396499], + [-12.757799, 9.388399], + [-12.758199, 9.3769], + [-12.7565, 9.3662], + [-12.7516, 9.355599], + [-12.7509, 9.349599], + [-12.7534, 9.345], + [-12.7569, 9.3422], + [-12.777, 9.342599], + [-12.778799, 9.340099], + [-12.7786, 9.3334], + [-12.7815, 9.323999], + [-12.785199, 9.3168], + [-12.787999, 9.315899], + [-12.789599, 9.312699], + [-12.7884, 9.3039], + [-12.7895, 9.300699], + [-12.7941, 9.2975], + [-12.806599, 9.293499], + [-12.812099, 9.2868], + [-12.816499, 9.2859], + [-12.8251, 9.290899], + [-12.831299, 9.291099], + [-12.8408, 9.2853], + [-12.8446, 9.2869], + [-12.8572, 9.295799], + [-12.868299, 9.2953], + [-12.8729, 9.298299], + [-12.876399, 9.296599], + [-12.8811, 9.278], + [-12.891899, 9.271099] + ] + ], + "type": "Polygon" + }, + "id": 124, + "properties": { + "cc:admin:id": ["9"], + "cc:oBld:total": 645, + "cc:pop:fifteen-to-twenty-four": 3091.3377089490987, + "cc:pop:grid3-total": 16592.337956915122, + "cc:pop:kontur-total": 18714.594270285837, + "cc:pop:men": 7524.899623702485, + "cc:pop:sixty-plus": 1111.6582348917643, + "cc:pop:total": 16421.073605168567, + "cc:pop:under-five": 2545.3881839753763, + "cc:pop:women": 8896.173981466063, + "cc:pop:women-fiften-to-forty-nine": 4270.471702151527, + "cc:pop:wp-total": 15700.324714739489, + "cc:pop:wp-total-UN": 18199.715473443684, + "cc:id": "124", + "cc:Name": "Gbolon MCHP", + "cc:site": [-12.7379, 9.3485], + "user:parentName": "Bramaia", + "user:code": "OU_211222", + "user:orgUnitId": "vwvDblM3MNX", + "user:level": "4", + "user:parentId": "kbPmt60yi0L" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.729429, 8.983682], + [-12.72825, 8.984317], + [-12.724583, 8.97625], + [-12.726249, 8.972083], + [-12.721249, 8.972082], + [-12.718749, 8.96875], + [-12.716249, 8.967916], + [-12.710416, 8.962083], + [-12.709582, 8.962082], + [-12.70375, 8.959583], + [-12.707487, 8.952108], + [-12.707345, 8.952046], + [-12.706275, 8.952301], + [-12.704997, 8.952301], + [-12.703786, 8.952091], + [-12.702985, 8.950904], + [-12.702255, 8.95019], + [-12.701018, 8.946713], + [-12.698751, 8.951247], + [-12.698749, 8.951247], + [-12.697083, 8.945417], + [-12.698749, 8.942083], + [-12.698411, 8.941407], + [-12.697917, 8.94143], + [-12.697917, 8.940417], + [-12.699582, 8.935416], + [-12.699582, 8.932917], + [-12.69875, 8.932082], + [-12.697916, 8.930417], + [-12.692598, 8.930416], + [-12.689713, 8.925419], + [-12.693229, 8.919328], + [-12.693091, 8.919219], + [-12.693749, 8.918749], + [-12.69375, 8.912917], + [-12.692969, 8.908235], + [-12.685286, 8.908235], + [-12.683089, 8.912039], + [-12.682872, 8.911568], + [-12.682651, 8.910095], + [-12.682839, 8.909026], + [-12.683194, 8.907891], + [-12.682916, 8.907917], + [-12.67875, 8.907916], + [-12.678749, 8.902916], + [-12.677344, 8.897292], + [-12.675884, 8.896981], + [-12.677083, 8.894583], + [-12.679582, 8.892082], + [-12.674575, 8.884929], + [-12.675669, 8.883903], + [-12.677071, 8.882678], + [-12.676255, 8.882291], + [-12.673265, 8.878913], + [-12.672523, 8.878265], + [-12.672916, 8.877083], + [-12.668749, 8.873749], + [-12.666249, 8.867917], + [-12.662004, 8.87004], + [-12.661199, 8.8711], + [-12.6587, 8.873799], + [-12.655399, 8.876799], + [-12.652199, 8.878099], + [-12.6493, 8.877899], + [-12.6455, 8.8761], + [-12.642899, 8.8756], + [-12.6394, 8.8758], + [-12.634299, 8.878099], + [-12.630399, 8.878599], + [-12.6269, 8.877999], + [-12.622999, 8.875799], + [-12.6179, 8.8734], + [-12.615799, 8.8729], + [-12.6137, 8.8733], + [-12.6105, 8.874999], + [-12.6089, 8.876699], + [-12.6082, 8.8804], + [-12.608799, 8.885199], + [-12.611, 8.8897], + [-12.6118, 8.8923], + [-12.6123, 8.895399], + [-12.6153, 8.8968], + [-12.6193, 8.8982], + [-12.621699, 8.899599], + [-12.6238, 8.9013], + [-12.632199, 8.909599], + [-12.639999, 8.917099], + [-12.641399, 8.9193], + [-12.641999, 8.922099], + [-12.641299, 8.924599], + [-12.639499, 8.927], + [-12.629899, 8.9363], + [-12.6046, 8.961699], + [-12.599446, 8.966796], + [-12.59622, 8.969984], + [-12.600403, 8.972076], + [-12.600379, 8.972051], + [-12.599725, 8.970075], + [-12.59972, 8.96887], + [-12.59948, 8.968263], + [-12.599617, 8.967991], + [-12.599567, 8.966776], + [-12.600694, 8.966939], + [-12.601396, 8.967285], + [-12.601844, 8.967703], + [-12.602106, 8.96797], + [-12.603571, 8.970179], + [-12.604155, 8.972027], + [-12.604603, 8.972489], + [-12.607083, 8.97125], + [-12.608749, 8.97125], + [-12.60875, 8.972082], + [-12.610417, 8.972083], + [-12.61125, 8.974582], + [-12.614582, 8.974582], + [-12.614583, 8.97125], + [-12.619582, 8.970416], + [-12.620417, 8.966249], + [-12.625417, 8.96375], + [-12.628749, 8.965417], + [-12.62875, 8.972916], + [-12.631249, 8.972916], + [-12.636249, 8.971249], + [-12.634582, 8.967916], + [-12.63375, 8.96375], + [-12.634582, 8.962083], + [-12.642082, 8.960417], + [-12.643749, 8.960417], + [-12.645416, 8.966249], + [-12.645417, 8.967082], + [-12.647917, 8.969582], + [-12.654582, 8.970416], + [-12.656249, 8.970417], + [-12.659202, 8.971597], + [-12.659911, 8.971139], + [-12.662408, 8.969279], + [-12.665966, 8.96595], + [-12.667082, 8.964851], + [-12.667082, 8.96625], + [-12.66375, 8.972083], + [-12.670416, 8.975416], + [-12.672083, 8.97375], + [-12.678275, 8.97375], + [-12.678181, 8.974933], + [-12.678419, 8.976249], + [-12.680416, 8.97625], + [-12.68125, 8.977082], + [-12.686249, 8.977083], + [-12.687917, 8.978749], + [-12.692917, 8.97625], + [-12.699582, 8.978749], + [-12.70125, 8.98625], + [-12.704044, 8.986808], + [-12.704541, 8.9865], + [-12.705435, 8.983969], + [-12.705694, 8.982735], + [-12.705564, 8.982224], + [-12.710416, 8.982916], + [-12.710417, 8.985416], + [-12.714582, 8.987916], + [-12.714583, 8.988749], + [-12.715417, 8.989582], + [-12.72125, 8.989583], + [-12.727916, 8.991249], + [-12.729429, 8.983682] + ] + ], + "type": "Polygon" + }, + "id": 125, + "properties": { + "cc:admin:id": ["13"], + "cc:oBld:total": 17, + "cc:pop:fifteen-to-twenty-four": 1643.881999072122, + "cc:pop:grid3-total": 9818.646869314332, + "cc:pop:kontur-total": 8745.557687167926, + "cc:pop:men": 4242.058970746966, + "cc:pop:sixty-plus": 517.3029077824195, + "cc:pop:total": 8980.339326517085, + "cc:pop:under-five": 1421.6641567810054, + "cc:pop:women": 4738.280355770113, + "cc:pop:women-fiften-to-forty-nine": 2356.0314563756365, + "cc:pop:wp-total": 9071.433298043004, + "cc:pop:wp-total-UN": 10518.427520076828, + "cc:id": "125", + "cc:Name": "Gbombana MCHP", + "cc:site": [-12.6572, 8.9258], + "user:parentName": "Dibia", + "user:code": "OU_254978", + "user:orgUnitId": "X3D19LoA2Ij", + "user:level": "4", + "user:parentId": "ZiOVcrSjSYe" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.906415, 7.258599], + [-11.906399, 7.258399], + [-11.9049, 7.2552], + [-11.9022, 7.252], + [-11.898999, 7.249299], + [-11.895299, 7.247299], + [-11.892399, 7.246499], + [-11.8894, 7.2462], + [-11.8773, 7.2461], + [-11.871299, 7.245499], + [-11.8585, 7.2416], + [-11.8491, 7.2371], + [-11.8463, 7.240299], + [-11.842499, 7.2477], + [-11.841699, 7.251], + [-11.8414, 7.259199], + [-11.8408, 7.262699], + [-11.8373, 7.270199], + [-11.835699, 7.2724], + [-11.8302, 7.278399], + [-11.828, 7.281299], + [-11.8253, 7.286199], + [-11.822699, 7.2895], + [-11.8192, 7.295099], + [-11.822599, 7.300499], + [-11.824, 7.3037], + [-11.826399, 7.307999], + [-11.8278, 7.3111], + [-11.830099, 7.315499], + [-11.831299, 7.320599], + [-11.832099, 7.322999], + [-11.834099, 7.326599], + [-11.8354, 7.3298], + [-11.8379, 7.3341], + [-11.8392, 7.3373], + [-11.8406, 7.341999], + [-11.8457, 7.338499], + [-11.849599, 7.3368], + [-11.853799, 7.3344], + [-11.856999, 7.333], + [-11.8598, 7.331499], + [-11.8622, 7.330599], + [-11.864899, 7.3302], + [-11.870399, 7.329999], + [-11.8718, 7.325], + [-11.8747, 7.321099], + [-11.879199, 7.3063], + [-11.880399, 7.3017], + [-11.881899, 7.2927], + [-11.884699, 7.286], + [-11.8866, 7.283099], + [-11.889199, 7.2808], + [-11.900399, 7.2746], + [-11.9031, 7.272099], + [-11.905599, 7.268099], + [-11.906799, 7.2633], + [-11.906415, 7.258599] + ] + ], + "type": "Polygon" + }, + "id": 126, + "properties": { + "cc:admin:id": ["67"], + "cc:oBld:total": 78, + "cc:pop:fifteen-to-twenty-four": 2422.471777172966, + "cc:pop:grid3-total": 3946.185763531558, + "cc:pop:kontur-total": 12817.521107214723, + "cc:pop:men": 6418.153674174572, + "cc:pop:sixty-plus": 970.4825708385296, + "cc:pop:total": 13420.399540045208, + "cc:pop:under-five": 2222.0771636454006, + "cc:pop:women": 7002.2458658706355, + "cc:pop:women-fiften-to-forty-nine": 3335.961138015775, + "cc:pop:wp-total": 11331.85711341998, + "cc:pop:wp-total-UN": 13143.012114450534, + "cc:id": "126", + "cc:Name": "Gbondapi CHC", + "cc:site": [-11.8495, 7.3193], + "user:parentName": "Kpanga Kabonde", + "user:code": "OU_260407", + "user:orgUnitId": "bHcw141PTsE", + "user:level": "4", + "user:parentId": "QwMiPiME3bA" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.829399, 8.003699], + [-11.829299, 8.000099], + [-11.827799, 7.9951], + [-11.825699, 7.991999], + [-11.8213, 7.9873], + [-11.821196, 7.987051], + [-11.820572, 7.98705], + [-11.820236, 7.986824], + [-11.819149, 7.9867], + [-11.818256, 7.986809], + [-11.817496, 7.987138], + [-11.816833, 7.986906], + [-11.816622, 7.986868], + [-11.816255, 7.986628], + [-11.8138, 7.98679], + [-11.813474, 7.986545], + [-11.812684, 7.986293], + [-11.812205, 7.986344], + [-11.812163, 7.986973], + [-11.812368, 7.987377], + [-11.811291, 7.988321], + [-11.809777, 7.98885], + [-11.809114, 7.988907], + [-11.808279, 7.989147], + [-11.807916, 7.989116], + [-11.807263, 7.989192], + [-11.806195, 7.9891], + [-11.804757, 7.988432], + [-11.803965, 7.988324], + [-11.802523, 7.987723], + [-11.80073, 7.987565], + [-11.79995, 7.987853], + [-11.799084, 7.987898], + [-11.79893, 7.987855], + [-11.798597, 7.987709], + [-11.796696, 7.98599], + [-11.796541, 7.985938], + [-11.795417, 7.98875], + [-11.795416, 7.991249], + [-11.794079, 7.992141], + [-11.793971, 7.992096], + [-11.79181, 7.990626], + [-11.790375, 7.990441], + [-11.789886, 7.990264], + [-11.790416, 7.987084], + [-11.787916, 7.984584], + [-11.785416, 7.985417], + [-11.780417, 7.991249], + [-11.780416, 7.992084], + [-11.778749, 7.993749], + [-11.77375, 7.995417], + [-11.772652, 7.99871], + [-11.772079, 7.998773], + [-11.77135, 7.999149], + [-11.771137, 7.999024], + [-11.770754, 7.999594], + [-11.770698, 7.999865], + [-11.771021, 8.000563], + [-11.771067, 8.001094], + [-11.769583, 8.002083], + [-11.769582, 8.000417], + [-11.767083, 7.999584], + [-11.764583, 8.000417], + [-11.765417, 8.005416], + [-11.766249, 8.007084], + [-11.763749, 8.009584], + [-11.756716, 8.014273], + [-11.756752, 8.014629], + [-11.756386, 8.018099], + [-11.757929, 8.020909], + [-11.754582, 8.022916], + [-11.74625, 8.024584], + [-11.74625, 8.025416], + [-11.75125, 8.027917], + [-11.753749, 8.031249], + [-11.75375, 8.033749], + [-11.752917, 8.037083], + [-11.752916, 8.037916], + [-11.752083, 8.039584], + [-11.752916, 8.047916], + [-11.74875, 8.052084], + [-11.74875, 8.054583], + [-11.749775, 8.05561], + [-11.747834, 8.055611], + [-11.743928, 8.062376], + [-11.747535, 8.068625], + [-11.745785, 8.070181], + [-11.7466, 8.0705], + [-11.7496, 8.071], + [-11.7547, 8.071099], + [-11.775399, 8.071099], + [-11.7777, 8.067699], + [-11.780099, 8.0613], + [-11.783799, 8.0583], + [-11.7869, 8.055499], + [-11.788999, 8.0529], + [-11.790799, 8.0491], + [-11.792299, 8.0473], + [-11.7942, 8.045699], + [-11.7973, 8.044299], + [-11.801199, 8.0412], + [-11.8034, 8.038699], + [-11.8061, 8.033399], + [-11.809699, 8.0292], + [-11.8127, 8.027099], + [-11.8165, 8.025199], + [-11.819499, 8.023], + [-11.822099, 8.0198], + [-11.826499, 8.0112], + [-11.829399, 8.003699] + ] + ], + "type": "Polygon" + }, + "id": 127, + "properties": { + "cc:admin:id": ["46"], + "cc:oBld:total": 353, + "cc:pop:fifteen-to-twenty-four": 408.36826120531, + "cc:pop:grid3-total": 2113.1725786981015, + "cc:pop:kontur-total": 2190.6881087990187, + "cc:pop:men": 1008.8100875262032, + "cc:pop:sixty-plus": 141.1198114732323, + "cc:pop:total": 2093.248019615294, + "cc:pop:under-five": 385.8766109886797, + "cc:pop:women": 1084.4379320890907, + "cc:pop:women-fiften-to-forty-nine": 526.996422461912, + "cc:pop:wp-total": 1739.8632770143086, + "cc:pop:wp-total-UN": 2015.8362712051085, + "cc:id": "127", + "cc:Name": "Gbongboma MCHP", + "cc:site": [-11.7861, 8.0307], + "user:parentName": "Kakua", + "user:code": "OU_843", + "user:orgUnitId": "tGf942oWszb", + "user:level": "4", + "user:parentId": "U6Kr7Gtpidn" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.095821, 7.684768], + [-12.093287, 7.680379], + [-12.08875, 7.680378], + [-12.08875, 7.667084], + [-12.090543, 7.665289], + [-12.085029, 7.665288], + [-12.081123, 7.658523], + [-12.081953, 7.657084], + [-12.079582, 7.657083], + [-12.075203, 7.653434], + [-12.075204, 7.653433], + [-12.080958, 7.653432], + [-12.084864, 7.646667], + [-12.080959, 7.639901], + [-12.083066, 7.63625], + [-12.080417, 7.63625], + [-12.080213, 7.636756], + [-12.07546, 7.636756], + [-12.071554, 7.643522], + [-12.073355, 7.646645], + [-12.072916, 7.647084], + [-12.06625, 7.647084], + [-12.059582, 7.634584], + [-12.05125, 7.635416], + [-12.051238, 7.63539], + [-12.049906, 7.637697], + [-12.050253, 7.637906], + [-12.049582, 7.639583], + [-12.042083, 7.648749], + [-12.037083, 7.64875], + [-12.036904, 7.648571], + [-12.0369, 7.648576], + [-12.034196, 7.648576], + [-12.0352, 7.6497], + [-12.0369, 7.6528], + [-12.0381, 7.6561], + [-12.0398, 7.6629], + [-12.041399, 7.667399], + [-12.0459, 7.6759], + [-12.0514, 7.690599], + [-12.059199, 7.698299], + [-12.0646, 7.7027], + [-12.073399, 7.707099], + [-12.080899, 7.709799], + [-12.085999, 7.6997], + [-12.090599, 7.6915], + [-12.0928, 7.688499], + [-12.095821, 7.684768] + ] + ], + "type": "Polygon" + }, + "id": 128, + "properties": { + "cc:admin:id": ["65"], + "cc:oBld:total": 0, + "cc:pop:fifteen-to-twenty-four": 171.48701036858625, + "cc:pop:grid3-total": 1992.0772725614202, + "cc:pop:kontur-total": 823.8208874476935, + "cc:pop:men": 447.60058498017554, + "cc:pop:sixty-plus": 61.20219806630141, + "cc:pop:total": 926.821907592876, + "cc:pop:under-five": 157.64017559917872, + "cc:pop:women": 479.22132261270076, + "cc:pop:women-fiften-to-forty-nine": 227.2040249257986, + "cc:pop:wp-total": 840.1293691272083, + "cc:pop:wp-total-UN": 974.0869375817344, + "cc:id": "128", + "cc:Name": "Gbongeh CHP", + "cc:site": [-12.066, 7.6719], + "user:parentName": "Kpanda Kemoh", + "user:code": "OU_197428", + "user:orgUnitId": "MMrdfNDfBIi", + "user:level": "4", + "user:parentId": "aWQTfvgPA5v" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.464399, 8.0374], + [-12.460499, 8.0338], + [-12.4245, 8.033799], + [-12.4201, 8.033], + [-12.415199, 8.030899], + [-12.409299, 8.029399], + [-12.406099, 8.027599], + [-12.400999, 8.023699], + [-12.3926, 8.0196], + [-12.389, 8.0188], + [-12.385999, 8.0187], + [-12.3681, 8.018799], + [-12.364199, 8.018299], + [-12.3588, 8.0161], + [-12.3534, 8.0147], + [-12.3519, 8.0139], + [-12.3487, 8.010899], + [-12.347199, 8.008], + [-12.343799, 8.0046], + [-12.3363, 8.001], + [-12.332493, 8.000121], + [-12.335846, 8.00593], + [-12.33194, 8.012695], + [-12.332796, 8.014179], + [-12.33125, 8.015417], + [-12.331249, 8.026227], + [-12.324128, 8.026228], + [-12.320222, 8.032993], + [-12.324128, 8.039758], + [-12.331817, 8.039759], + [-12.329583, 8.04125], + [-12.327917, 8.049583], + [-12.338749, 8.052917], + [-12.338749, 8.062916], + [-12.33375, 8.067917], + [-12.33375, 8.074584], + [-12.335417, 8.078749], + [-12.337917, 8.081249], + [-12.343749, 8.079584], + [-12.348749, 8.078749], + [-12.35125, 8.07625], + [-12.35273, 8.075757], + [-12.354424, 8.078562], + [-12.355484, 8.083179], + [-12.356155, 8.083658], + [-12.358749, 8.080417], + [-12.360416, 8.080416], + [-12.363749, 8.077085], + [-12.36375, 8.079583], + [-12.367916, 8.082916], + [-12.375416, 8.085416], + [-12.372917, 8.077086], + [-12.372918, 8.077084], + [-12.387082, 8.083749], + [-12.384471, 8.087667], + [-12.391765, 8.087667], + [-12.395671, 8.080903], + [-12.395806, 8.080903], + [-12.396189, 8.081741], + [-12.396672, 8.084116], + [-12.397289, 8.08492], + [-12.398536, 8.085854], + [-12.400733, 8.087012], + [-12.402487, 8.083976], + [-12.410299, 8.083976], + [-12.414206, 8.09074], + [-12.422018, 8.09074], + [-12.425925, 8.083976], + [-12.429582, 8.083976], + [-12.429583, 8.085416], + [-12.432083, 8.087916], + [-12.434583, 8.087916], + [-12.442916, 8.083749], + [-12.444583, 8.080416], + [-12.448749, 8.077916], + [-12.450416, 8.07375], + [-12.449582, 8.072083], + [-12.44875, 8.069584], + [-12.457206, 8.068814], + [-12.4572, 8.067599], + [-12.457399, 8.0628], + [-12.457999, 8.06], + [-12.4599, 8.055599], + [-12.4605, 8.053099], + [-12.460999, 8.0477], + [-12.461599, 8.0452], + [-12.463599, 8.0407], + [-12.464399, 8.0374] + ] + ], + "type": "Polygon" + }, + "id": 129, + "properties": { + "cc:admin:id": ["45"], + "cc:oBld:total": 6, + "cc:pop:fifteen-to-twenty-four": 247.18334913612983, + "cc:pop:grid3-total": 2599.1858007510996, + "cc:pop:kontur-total": 1740.8277277791922, + "cc:pop:men": 634.750603328569, + "cc:pop:sixty-plus": 83.07486081263569, + "cc:pop:total": 1325.995541975133, + "cc:pop:under-five": 229.19418328656437, + "cc:pop:women": 691.244938646564, + "cc:pop:women-fiften-to-forty-nine": 325.2582099487655, + "cc:pop:wp-total": 1758.325309967354, + "cc:pop:wp-total-UN": 2039.7576524501683, + "cc:id": "129", + "cc:Name": "Gbongeima MCHP", + "cc:site": [-12.3878, 8.0557], + "user:parentName": "Kaiyamba", + "user:code": "OU_247064", + "user:orgUnitId": "rebbn0ooFSO", + "user:level": "4", + "user:parentId": "USQdmvrHh1Q" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.679583, 8.862916], + [-10.679582, 8.859583], + [-10.677917, 8.857082], + [-10.677916, 8.85375], + [-10.675282, 8.851115], + [-10.675884, 8.850588], + [-10.676298, 8.84987], + [-10.67653, 8.849777], + [-10.674583, 8.844582], + [-10.674582, 8.840417], + [-10.670417, 8.839582], + [-10.671249, 8.829583], + [-10.657083, 8.829583], + [-10.656249, 8.82875], + [-10.645417, 8.832082], + [-10.643749, 8.827917], + [-10.637082, 8.82375], + [-10.636249, 8.82375], + [-10.629583, 8.825416], + [-10.62625, 8.825416], + [-10.62625, 8.824582], + [-10.626968, 8.818116], + [-10.62697, 8.818115], + [-10.627512, 8.818368], + [-10.627799, 8.818182], + [-10.627082, 8.809583], + [-10.622916, 8.80625], + [-10.617083, 8.805417], + [-10.608749, 8.808749], + [-10.60625, 8.804582], + [-10.605416, 8.800417], + [-10.600417, 8.794583], + [-10.600416, 8.792917], + [-10.59625, 8.78875], + [-10.596249, 8.787083], + [-10.589583, 8.782083], + [-10.581249, 8.789582], + [-10.57875, 8.789582], + [-10.576249, 8.787083], + [-10.574582, 8.787082], + [-10.572082, 8.78375], + [-10.569583, 8.782916], + [-10.569582, 8.780005], + [-10.569151, 8.780006], + [-10.56807, 8.779686], + [-10.56715, 8.779637], + [-10.566123, 8.779593], + [-10.565211, 8.780018], + [-10.565209, 8.780017], + [-10.565197, 8.779847], + [-10.562917, 8.780417], + [-10.561249, 8.783749], + [-10.559582, 8.785416], + [-10.553022, 8.786073], + [-10.562699, 8.7937], + [-10.5671, 8.801099], + [-10.570499, 8.801499], + [-10.5763, 8.7981], + [-10.58, 8.801799], + [-10.583499, 8.8016], + [-10.586899, 8.8043], + [-10.5852, 8.817899], + [-10.5834, 8.8216], + [-10.587699, 8.8347], + [-10.5868, 8.84], + [-10.596099, 8.889599], + [-10.593, 8.908699], + [-10.593699, 8.926399], + [-10.592, 8.932599], + [-10.595, 8.937799], + [-10.601099, 8.9332], + [-10.605299, 8.9306], + [-10.609099, 8.9297], + [-10.618299, 8.932199], + [-10.6243, 8.934699], + [-10.627799, 8.934899], + [-10.6304, 8.934399], + [-10.6357, 8.932299], + [-10.6387, 8.931699], + [-10.6439, 8.9315], + [-10.657649, 8.931499], + [-10.658749, 8.92875], + [-10.660416, 8.928749], + [-10.663749, 8.922916], + [-10.662917, 8.91375], + [-10.657083, 8.912916], + [-10.654583, 8.91125], + [-10.654583, 8.902083], + [-10.662916, 8.900417], + [-10.663749, 8.900416], + [-10.664583, 8.895417], + [-10.667082, 8.89125], + [-10.664583, 8.888749], + [-10.668749, 8.879583], + [-10.674582, 8.877916], + [-10.67375, 8.876249], + [-10.67375, 8.864583], + [-10.679583, 8.862916] + ] + ], + "type": "Polygon" + }, + "id": 130, + "properties": { + "cc:admin:id": ["72"], + "cc:oBld:total": 506, + "cc:pop:fifteen-to-twenty-four": 554.5158839315693, + "cc:pop:grid3-total": 4774.634737720426, + "cc:pop:kontur-total": 3030.2844857562995, + "cc:pop:men": 1385.0545171979095, + "cc:pop:sixty-plus": 169.52187661297992, + "cc:pop:total": 2951.513156140487, + "cc:pop:under-five": 475.539859340988, + "cc:pop:women": 1566.4586389425772, + "cc:pop:women-fiften-to-forty-nine": 773.0173111971626, + "cc:pop:wp-total": 3029.3663108761193, + "cc:pop:wp-total-UN": 3519.173401125366, + "cc:id": "130", + "cc:Name": "Gbongongor CHP", + "cc:site": [-10.6357, 8.8919], + "user:parentName": "Lei", + "user:code": "OU_233350", + "user:orgUnitId": "HOgWkpYH3KB", + "user:level": "4", + "user:parentId": "LhaAPLxdSFH" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.479499, 9.2588], + [-12.471999, 9.256899], + [-12.468899, 9.254699], + [-12.463699, 9.251499], + [-12.4538, 9.2437], + [-12.4432, 9.238], + [-12.4402, 9.236], + [-12.437599, 9.233299], + [-12.4327, 9.2251], + [-12.4291, 9.2176], + [-12.4276, 9.212099], + [-12.428, 9.207599], + [-12.433199, 9.19], + [-12.433699, 9.1862], + [-12.432799, 9.182499], + [-12.428399, 9.173], + [-12.4221, 9.173099], + [-12.4181, 9.1742], + [-12.414299, 9.1788], + [-12.4085, 9.185199], + [-12.4067, 9.188], + [-12.4059, 9.190999], + [-12.4055, 9.196299], + [-12.404599, 9.199999], + [-12.401199, 9.2053], + [-12.397399, 9.206699], + [-12.3744, 9.2066], + [-12.3715, 9.206799], + [-12.368699, 9.2075], + [-12.3644, 9.209699], + [-12.361199, 9.2111], + [-12.3568, 9.213299], + [-12.3542, 9.213899], + [-12.351299, 9.2141], + [-12.3397, 9.2141], + [-12.336899, 9.2144], + [-12.333399, 9.2159], + [-12.331199, 9.2177], + [-12.3264, 9.222299], + [-12.323199, 9.224399], + [-12.320499, 9.2251], + [-12.3118, 9.225499], + [-12.309, 9.226099], + [-12.300699, 9.23], + [-12.2948, 9.2339], + [-12.2915, 9.237999], + [-12.289699, 9.2394], + [-12.286599, 9.2409], + [-12.2824, 9.243299], + [-12.279199, 9.2446], + [-12.2749, 9.246999], + [-12.271699, 9.2483], + [-12.2675, 9.250699], + [-12.2643, 9.252099], + [-12.262196, 9.25321], + [-12.262562, 9.256871], + [-12.260969, 9.259631], + [-12.264874, 9.266396], + [-12.264058, 9.267811], + [-12.265417, 9.267917], + [-12.270416, 9.274582], + [-12.270417, 9.276154], + [-12.271248, 9.275965], + [-12.271249, 9.275966], + [-12.27125, 9.279582], + [-12.273749, 9.281249], + [-12.280186, 9.28268], + [-12.281049, 9.281883], + [-12.282083, 9.282917], + [-12.294582, 9.283749], + [-12.29625, 9.279583], + [-12.297917, 9.277917], + [-12.306249, 9.280417], + [-12.30625, 9.281249], + [-12.307083, 9.282083], + [-12.307083, 9.289582], + [-12.312082, 9.28875], + [-12.312917, 9.290416], + [-12.318749, 9.291249], + [-12.319583, 9.288749], + [-12.327083, 9.280417], + [-12.330417, 9.282916], + [-12.332917, 9.282917], + [-12.335417, 9.285416], + [-12.337083, 9.285417], + [-12.339583, 9.288749], + [-12.342083, 9.28625], + [-12.351071, 9.287747], + [-12.351057, 9.288127], + [-12.355416, 9.28875], + [-12.356065, 9.293934], + [-12.357064, 9.293867], + [-12.359903, 9.292808], + [-12.360732, 9.292678], + [-12.361594, 9.292757], + [-12.362861, 9.292666], + [-12.363469, 9.292645], + [-12.365207, 9.292185], + [-12.366179, 9.291722], + [-12.366687, 9.291297], + [-12.367081, 9.291213], + [-12.367083, 9.29125], + [-12.372916, 9.294582], + [-12.37375, 9.294583], + [-12.374583, 9.295416], + [-12.378749, 9.292917], + [-12.379583, 9.292916], + [-12.382859, 9.29226], + [-12.3784, 9.288899], + [-12.376499, 9.286199], + [-12.375, 9.281799], + [-12.3753, 9.2787], + [-12.376799, 9.2765], + [-12.3799, 9.275199], + [-12.3838, 9.275], + [-12.387999, 9.275799], + [-12.3919, 9.2778], + [-12.3953, 9.2806], + [-12.4006, 9.2859], + [-12.411099, 9.296599], + [-12.4187, 9.304999], + [-12.424699, 9.299299], + [-12.426599, 9.295899], + [-12.4273, 9.291999], + [-12.427799, 9.2823], + [-12.4284, 9.278399], + [-12.4297, 9.273899], + [-12.434099, 9.2618], + [-12.4356, 9.259099], + [-12.4395, 9.2572], + [-12.442899, 9.258], + [-12.448799, 9.261899], + [-12.4516, 9.263], + [-12.4563, 9.2639], + [-12.464599, 9.2643], + [-12.4686, 9.266599], + [-12.473699, 9.266799], + [-12.477599, 9.264099], + [-12.479499, 9.2588] + ] + ], + "type": "Polygon" + }, + "id": 131, + "properties": { + "cc:admin:id": ["31"], + "cc:oBld:total": 436, + "cc:pop:fifteen-to-twenty-four": 2099.6541305672963, + "cc:pop:grid3-total": 8311.140787263717, + "cc:pop:kontur-total": 11641.511295458311, + "cc:pop:men": 5431.297492211102, + "cc:pop:sixty-plus": 756.1476779400231, + "cc:pop:total": 11426.6426671613, + "cc:pop:under-five": 1813.7422648626762, + "cc:pop:women": 5995.345174950204, + "cc:pop:women-fiften-to-forty-nine": 2897.685123357417, + "cc:pop:wp-total": 9504.819163402613, + "cc:pop:wp-total-UN": 11033.382003804085, + "cc:id": "131", + "cc:Name": "Gbonkobana CHP", + "cc:site": [-12.3161, 9.2398], + "user:parentName": "Gbanti Kamaranka", + "user:code": "OU_193222", + "user:orgUnitId": "BXJnMD2eJAx", + "user:level": "4", + "user:parentId": "e1eIKM1GIF3" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.896246, 8.802277], + [-12.896299, 8.800099], + [-12.895599, 8.7949], + [-12.891399, 8.785999], + [-12.889299, 8.782999], + [-12.8852, 8.7799], + [-12.8808, 8.777499], + [-12.8777, 8.7743], + [-12.873599, 8.767099], + [-12.8697, 8.7581], + [-12.8689, 8.7519], + [-12.8683, 8.7491], + [-12.8662, 8.7445], + [-12.8644, 8.7379], + [-12.8619, 8.732099], + [-12.8614, 8.725699], + [-12.861399, 8.719205], + [-12.860581, 8.71929], + [-12.85992, 8.719148], + [-12.859695, 8.719191], + [-12.859335, 8.719286], + [-12.858923, 8.719513], + [-12.858606, 8.719745], + [-12.858113, 8.719887], + [-12.856123, 8.720149], + [-12.855264, 8.720288], + [-12.854824, 8.720463], + [-12.853842, 8.720925], + [-12.852665, 8.721672], + [-12.851764, 8.722252], + [-12.850644, 8.723409], + [-12.851646, 8.724395], + [-12.84933, 8.726742], + [-12.848646, 8.727488], + [-12.848357, 8.728055], + [-12.847983, 8.729041], + [-12.846715, 8.731682], + [-12.846486, 8.733014], + [-12.846427, 8.733995], + [-12.846157, 8.73463], + [-12.845816, 8.735169], + [-12.845704, 8.735653], + [-12.845004, 8.736504], + [-12.843714, 8.737493], + [-12.842382, 8.738568], + [-12.842185, 8.739081], + [-12.841913, 8.739486], + [-12.841484, 8.7398], + [-12.840845, 8.74036], + [-12.840344, 8.740645], + [-12.839931, 8.740785], + [-12.837497, 8.741084], + [-12.836381, 8.741314], + [-12.835504, 8.741332], + [-12.833637, 8.741046], + [-12.831981, 8.740107], + [-12.830839, 8.739435], + [-12.830311, 8.739206], + [-12.829664, 8.739043], + [-12.827965, 8.738799], + [-12.826734, 8.738652], + [-12.825658, 8.738321], + [-12.82455, 8.73783], + [-12.823357, 8.737414], + [-12.822762, 8.737302], + [-12.821984, 8.737251], + [-12.821171, 8.737311], + [-12.820019, 8.737518], + [-12.818925, 8.738099], + [-12.818032, 8.738438], + [-12.816425, 8.739065], + [-12.813577, 8.740227], + [-12.812785, 8.740606], + [-12.811755, 8.741378], + [-12.810979, 8.74194], + [-12.810689, 8.742045], + [-12.810289, 8.742281], + [-12.809841, 8.742639], + [-12.809701, 8.742795], + [-12.810949, 8.74366], + [-12.811613, 8.742956], + [-12.811867, 8.743986], + [-12.812514, 8.743989], + [-12.812784, 8.742189], + [-12.813698, 8.740905], + [-12.815252, 8.740657], + [-12.815248, 8.741429], + [-12.816549, 8.740277], + [-12.816812, 8.739636], + [-12.818626, 8.739259], + [-12.81889, 8.738616], + [-12.821479, 8.738503], + [-12.822773, 8.738767], + [-12.824586, 8.73865], + [-12.826002, 8.739945], + [-12.825911, 8.741119], + [-12.824564, 8.740966], + [-12.824165, 8.741148], + [-12.823583, 8.741949], + [-12.823952, 8.742118], + [-12.823085, 8.743426], + [-12.823141, 8.743636], + [-12.822829, 8.744129], + [-12.8227, 8.745154], + [-12.822245, 8.745744], + [-12.821662, 8.746012], + [-12.820709, 8.745591], + [-12.819088, 8.746055], + [-12.818647, 8.746489], + [-12.818703, 8.746486], + [-12.821249, 8.74875], + [-12.821249, 8.751134], + [-12.820883, 8.75129], + [-12.82045, 8.751374], + [-12.820246, 8.75139], + [-12.819537, 8.751263], + [-12.819295, 8.750998], + [-12.818716, 8.750928], + [-12.818249, 8.75051], + [-12.817231, 8.750033], + [-12.816742, 8.750085], + [-12.816511, 8.750006], + [-12.815487, 8.749544], + [-12.814538, 8.748643], + [-12.813503, 8.746364], + [-12.812966, 8.745638], + [-12.809641, 8.742838], + [-12.809566, 8.742889], + [-12.810008, 8.743264], + [-12.810182, 8.744234], + [-12.809534, 8.744488], + [-12.80966, 8.745003], + [-12.809527, 8.745518], + [-12.809264, 8.746289], + [-12.808747, 8.746287], + [-12.808741, 8.747059], + [-12.808224, 8.747057], + [-12.808088, 8.748086], + [-12.807567, 8.748856], + [-12.80769, 8.749629], + [-12.806394, 8.750138], + [-12.806389, 8.750909], + [-12.806905, 8.751042], + [-12.807161, 8.751687], + [-12.807679, 8.751691], + [-12.80819, 8.752723], + [-12.807155, 8.752717], + [-12.80703, 8.751944], + [-12.806644, 8.751685], + [-12.806106, 8.755029], + [-12.805242, 8.754937], + [-12.804343, 8.755593], + [-12.804247, 8.756081], + [-12.809582, 8.758749], + [-12.810665, 8.75875], + [-12.810666, 8.758751], + [-12.810601, 8.758825], + [-12.809978, 8.758969], + [-12.809294, 8.75895], + [-12.807767, 8.758576], + [-12.80689, 8.75887], + [-12.806657, 8.758517], + [-12.806079, 8.758608], + [-12.805854, 8.758371], + [-12.805853, 8.757933], + [-12.805375, 8.757296], + [-12.804758, 8.757132], + [-12.804308, 8.757279], + [-12.804407, 8.757596], + [-12.804328, 8.757684], + [-12.804665, 8.758227], + [-12.80511, 8.758614], + [-12.805514, 8.758668], + [-12.805847, 8.759139], + [-12.806339, 8.759455], + [-12.806371, 8.760163], + [-12.805907, 8.76065], + [-12.806005, 8.760842], + [-12.804583, 8.760417], + [-12.804583, 8.765416], + [-12.805416, 8.767916], + [-12.805791, 8.768167], + [-12.805159, 8.769051], + [-12.80447, 8.769092], + [-12.803182, 8.770023], + [-12.802385, 8.770128], + [-12.801681, 8.77043], + [-12.801459, 8.771317], + [-12.802388, 8.771429], + [-12.802858, 8.771697], + [-12.804239, 8.771094], + [-12.805063, 8.770906], + [-12.805847, 8.770834], + [-12.806499, 8.7712], + [-12.807102, 8.77109], + [-12.807442, 8.771352], + [-12.808058, 8.772803], + [-12.808086, 8.773537], + [-12.808337, 8.773639], + [-12.805417, 8.778749], + [-12.806068, 8.779401], + [-12.806155, 8.779454], + [-12.807383, 8.779678], + [-12.807795, 8.779933], + [-12.807736, 8.780354], + [-12.808585, 8.780577], + [-12.809502, 8.779848], + [-12.809323, 8.779495], + [-12.809747, 8.779402], + [-12.809934, 8.77895], + [-12.810763, 8.778877], + [-12.810817, 8.778287], + [-12.811162, 8.77767], + [-12.811334, 8.777605], + [-12.811435, 8.777801], + [-12.811753, 8.777447], + [-12.812649, 8.775911], + [-12.813712, 8.775314], + [-12.813845, 8.775476], + [-12.8124, 8.777211], + [-12.812118, 8.777889], + [-12.811808, 8.778057], + [-12.811583, 8.778594], + [-12.811929, 8.779245], + [-12.811986, 8.780448], + [-12.811985, 8.780448], + [-12.811519, 8.779867], + [-12.80875, 8.782083], + [-12.809583, 8.782916], + [-12.81125, 8.78375], + [-12.812916, 8.786249], + [-12.812916, 8.787083], + [-12.811736, 8.789443], + [-12.807654, 8.787171], + [-12.80625, 8.792082], + [-12.808749, 8.792917], + [-12.811249, 8.795416], + [-12.810417, 8.797916], + [-12.812916, 8.803749], + [-12.812082, 8.804583], + [-12.810067, 8.807943], + [-12.811855, 8.808985], + [-12.813103, 8.810684], + [-12.812773, 8.811234], + [-12.812246, 8.813463], + [-12.811919, 8.813894], + [-12.811239, 8.814149], + [-12.810718, 8.814451], + [-12.809026, 8.814435], + [-12.80819, 8.814902], + [-12.807497, 8.816107], + [-12.80697, 8.816484], + [-12.805679, 8.8174], + [-12.805609, 8.817404], + [-12.806249, 8.82125], + [-12.79726, 8.829491], + [-12.798942, 8.832815], + [-12.7996, 8.831899], + [-12.8021, 8.8309], + [-12.805599, 8.830999], + [-12.810499, 8.833199], + [-12.8132, 8.8339], + [-12.8199, 8.8342], + [-12.831499, 8.8342], + [-12.835299, 8.8341], + [-12.839, 8.833599], + [-12.8447, 8.831299], + [-12.8486, 8.830599], + [-12.855, 8.830299], + [-12.858499, 8.8296], + [-12.862999, 8.8276], + [-12.866299, 8.826699], + [-12.8683, 8.824199], + [-12.8722, 8.820199], + [-12.8799, 8.818699], + [-12.889599, 8.814399], + [-12.8927, 8.811699], + [-12.894, 8.810199], + [-12.895399, 8.8078], + [-12.896199, 8.8041], + [-12.896246, 8.802277] + ] + ], + "type": "Polygon" + }, + "id": 132, + "properties": { + "cc:admin:id": ["80"], + "cc:oBld:total": 124, + "cc:pop:fifteen-to-twenty-four": 1148.0548272688864, + "cc:pop:grid3-total": 2798.124058309927, + "cc:pop:kontur-total": 6062.506566243183, + "cc:pop:men": 2906.2639002915307, + "cc:pop:sixty-plus": 313.2705845613571, + "cc:pop:total": 6337.031853063285, + "cc:pop:under-five": 973.1109652132656, + "cc:pop:women": 3430.767952771753, + "cc:pop:women-fiften-to-forty-nine": 1687.206307908602, + "cc:pop:wp-total": 5672.45207867742, + "cc:pop:wp-total-UN": 6583.890408216901, + "cc:id": "132", + "cc:Name": "Gbonkoh Kareneh MCHP", + "cc:site": [-12.8428, 8.7827], + "user:parentName": "Maforki", + "user:code": "OU_254959", + "user:orgUnitId": "zm9breCeT1m", + "user:level": "4", + "user:parentId": "JdqfYTIFZXN" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.565799, 9.026199], + [-12.557099, 9.016299], + [-12.552, 9.0115], + [-12.5487, 9.0091], + [-12.5411, 9.0051], + [-12.533399, 9.002699], + [-12.5223, 8.9976], + [-12.518299, 8.996699], + [-12.512599, 8.9965], + [-12.508399, 8.997], + [-12.501199, 8.9992], + [-12.495899, 8.999599], + [-12.490799, 8.998599], + [-12.485299, 8.996199], + [-12.4769, 8.9918], + [-12.474099, 8.989399], + [-12.471299, 8.985399], + [-12.469499, 8.980999], + [-12.467599, 8.974499], + [-12.4642, 8.9679], + [-12.4629, 8.9647], + [-12.461802, 8.961011], + [-12.460499, 8.955599], + [-12.4586, 8.95], + [-12.456413, 8.945253], + [-12.456249, 8.945417], + [-12.454582, 8.946249], + [-12.445417, 8.945417], + [-12.444212, 8.945176], + [-12.444312, 8.945473], + [-12.444965, 8.946467], + [-12.445035, 8.946985], + [-12.444375, 8.947372], + [-12.443635, 8.947515], + [-12.443365, 8.947292], + [-12.44211, 8.949466], + [-12.442449, 8.950011], + [-12.442402, 8.950626], + [-12.441763, 8.952263], + [-12.440788, 8.95296], + [-12.439804, 8.953329], + [-12.435959, 8.954198], + [-12.433351, 8.954229], + [-12.432865, 8.954957], + [-12.432919, 8.957082], + [-12.427485, 8.957083], + [-12.43083, 8.962878], + [-12.430829, 8.962879], + [-12.430416, 8.962917], + [-12.427083, 8.967083], + [-12.427083, 8.970416], + [-12.430371, 8.976994], + [-12.430166, 8.977163], + [-12.426816, 8.977784], + [-12.42483, 8.978887], + [-12.424093, 8.978965], + [-12.423136, 8.978744], + [-12.423619, 8.979581], + [-12.419713, 8.986346], + [-12.418847, 8.986347], + [-12.422082, 8.989583], + [-12.421249, 8.992917], + [-12.418124, 8.995261], + [-12.419417, 8.9975], + [-12.427229, 8.997501], + [-12.427327, 8.997671], + [-12.425417, 8.999583], + [-12.425417, 9.008749], + [-12.427082, 9.011249], + [-12.425417, 9.01125], + [-12.429582, 9.031249], + [-12.422083, 9.03125], + [-12.42375, 9.033749], + [-12.425511, 9.034923], + [-12.426255, 9.034924], + [-12.426199, 9.035382], + [-12.42625, 9.035417], + [-12.427083, 9.039582], + [-12.430416, 9.04125], + [-12.427917, 9.052082], + [-12.427916, 9.052916], + [-12.42375, 9.05625], + [-12.430416, 9.062916], + [-12.425417, 9.065417], + [-12.425416, 9.073749], + [-12.423841, 9.075325], + [-12.42492, 9.075835], + [-12.427757, 9.077517], + [-12.427223, 9.081788], + [-12.424583, 9.080513], + [-12.424582, 9.085416], + [-12.423679, 9.086321], + [-12.425599, 9.089899], + [-12.426399, 9.0922], + [-12.426099, 9.094699], + [-12.4242, 9.098999], + [-12.4235, 9.1023], + [-12.4238, 9.104999], + [-12.424899, 9.107299], + [-12.4264, 9.108799], + [-12.4284, 9.109699], + [-12.431, 9.109899], + [-12.434599, 9.109199], + [-12.4368, 9.107799], + [-12.443299, 9.1014], + [-12.4454, 9.099699], + [-12.4533, 9.095499], + [-12.4559, 9.0948], + [-12.458299, 9.094999], + [-12.4599, 9.0962], + [-12.460099, 9.0985], + [-12.4589, 9.100899], + [-12.4524, 9.107099], + [-12.4506, 9.1099], + [-12.4505, 9.112899], + [-12.453, 9.116199], + [-12.4566, 9.1174], + [-12.464199, 9.117799], + [-12.470899, 9.118399], + [-12.476299, 9.1183], + [-12.483899, 9.115399], + [-12.486699, 9.113199], + [-12.488199, 9.1105], + [-12.488699, 9.1057], + [-12.487199, 9.099799], + [-12.4846, 9.0932], + [-12.481999, 9.087999], + [-12.4787, 9.081799], + [-12.4788, 9.0769], + [-12.481199, 9.0742], + [-12.4902, 9.0711], + [-12.495199, 9.0712], + [-12.498299, 9.0727], + [-12.502099, 9.077899], + [-12.5039, 9.079599], + [-12.507599, 9.079899], + [-12.510799, 9.078099], + [-12.513199, 9.0752], + [-12.5162, 9.069399], + [-12.5187, 9.0677], + [-12.522399, 9.0671], + [-12.527199, 9.068199], + [-12.529899, 9.070699], + [-12.528499, 9.0735], + [-12.5279, 9.076899], + [-12.53, 9.079899], + [-12.5339, 9.080399], + [-12.544099, 9.073799], + [-12.546599, 9.070199], + [-12.546599, 9.0664], + [-12.543, 9.0603], + [-12.541599, 9.056699], + [-12.5413, 9.0528], + [-12.5424, 9.0485], + [-12.5452, 9.045299], + [-12.550199, 9.0418], + [-12.5547, 9.037999], + [-12.565699, 9.0263], + [-12.565799, 9.026199] + ] + ], + "type": "Polygon" + }, + "id": 133, + "properties": { + "cc:admin:id": ["73"], + "cc:oBld:total": 106, + "cc:pop:fifteen-to-twenty-four": 1082.1949592101107, + "cc:pop:grid3-total": 5188.591838526718, + "cc:pop:kontur-total": 5333.177747521872, + "cc:pop:men": 2671.279947380557, + "cc:pop:sixty-plus": 394.2100463145596, + "cc:pop:total": 5777.020598194616, + "cc:pop:under-five": 866.3827784575926, + "cc:pop:women": 3105.7406508140602, + "cc:pop:women-fiften-to-forty-nine": 1483.5265348180221, + "cc:pop:wp-total": 5478.719381156331, + "cc:pop:wp-total-UN": 6342.4838458993045, + "cc:id": "133", + "cc:Name": "Gbonkonka CHP", + "cc:site": [-12.5042, 9.0331], + "user:parentName": "Libeisaygahun", + "user:code": "OU_193307", + "user:orgUnitId": "v2vi8UaIYlo", + "user:level": "4", + "user:parentId": "hRZOIgQ0O1m" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.739632, 7.97747], + [-11.739037, 7.977132], + [-11.739106, 7.976792], + [-11.739163, 7.976564], + [-11.739221, 7.976272], + [-11.739191, 7.975709], + [-11.739152, 7.975562], + [-11.738783, 7.974327], + [-11.738104, 7.973358], + [-11.737834, 7.972984], + [-11.737444, 7.972156], + [-11.737512, 7.971054], + [-11.737595, 7.970405], + [-11.735767, 7.969544], + [-11.73607, 7.969056], + [-11.735147, 7.968505], + [-11.734585, 7.968082], + [-11.734133, 7.967956], + [-11.733743, 7.967429], + [-11.733416, 7.966884], + [-11.733365, 7.966912], + [-11.732, 7.967707], + [-11.731951, 7.967623], + [-11.731284, 7.966418], + [-11.730934, 7.965683], + [-11.730539, 7.963716], + [-11.730444, 7.963692], + [-11.729531, 7.96334], + [-11.728153, 7.963427], + [-11.727963, 7.963195], + [-11.728101, 7.96279], + [-11.72943, 7.962574], + [-11.729959, 7.961817], + [-11.729558, 7.961543], + [-11.728979, 7.961014], + [-11.7286, 7.960558], + [-11.728222, 7.960101], + [-11.726928, 7.961141], + [-11.726454, 7.960999], + [-11.725803, 7.961361], + [-11.725209, 7.961284], + [-11.725204, 7.961307], + [-11.725151, 7.961955], + [-11.724597, 7.962017], + [-11.724164, 7.962015], + [-11.723635, 7.961995], + [-11.723682, 7.961292], + [-11.724203, 7.961226], + [-11.724664, 7.961271], + [-11.724716, 7.961249], + [-11.72477, 7.960729], + [-11.721358, 7.960541], + [-11.721417, 7.960015], + [-11.721465, 7.959683], + [-11.721478, 7.959552], + [-11.720978, 7.959541], + [-11.720972, 7.95957], + [-11.720419, 7.95962], + [-11.720561, 7.958652], + [-11.721081, 7.958663], + [-11.721083, 7.958604], + [-11.721311, 7.956983], + [-11.721608, 7.956445], + [-11.720861, 7.95593], + [-11.720659, 7.955664], + [-11.716775, 7.957373], + [-11.715308, 7.957791], + [-11.714916, 7.958191], + [-11.713996, 7.958597], + [-11.713991, 7.958594], + [-11.71399, 7.958593], + [-11.714124, 7.95847], + [-11.713823, 7.958418], + [-11.713763, 7.9586], + [-11.712938, 7.95845], + [-11.712867, 7.958307], + [-11.712638, 7.958445], + [-11.712396, 7.958096], + [-11.712123, 7.958232], + [-11.710968, 7.957118], + [-11.710365, 7.956806], + [-11.70958, 7.956663], + [-11.709072, 7.955931], + [-11.70875, 7.955976], + [-11.708749, 7.957916], + [-11.707083, 7.958749], + [-11.70375, 7.957917], + [-11.703749, 7.955417], + [-11.702082, 7.952917], + [-11.699583, 7.952917], + [-11.699582, 7.957916], + [-11.697083, 7.960416], + [-11.69625, 7.960417], + [-11.694582, 7.96125], + [-11.68875, 7.96125], + [-11.687917, 7.963749], + [-11.68625, 7.96375], + [-11.686249, 7.969589], + [-11.685398, 7.969137], + [-11.685086, 7.968619], + [-11.683464, 7.967509], + [-11.682646, 7.966735], + [-11.681723, 7.966612], + [-11.681506, 7.96637], + [-11.681532, 7.966166], + [-11.681131, 7.965917], + [-11.681067, 7.964644], + [-11.68089, 7.964318], + [-11.681125, 7.962518], + [-11.68113, 7.962202], + [-11.679583, 7.96375], + [-11.679582, 7.96625], + [-11.677917, 7.967083], + [-11.677083, 7.96625], + [-11.674582, 7.968749], + [-11.67375, 7.968749], + [-11.672082, 7.967917], + [-11.671249, 7.967916], + [-11.668749, 7.967084], + [-11.664583, 7.967916], + [-11.662082, 7.962084], + [-11.661249, 7.962083], + [-11.657082, 7.955417], + [-11.652917, 7.955417], + [-11.64875, 7.95875], + [-11.647916, 7.967082], + [-11.643749, 7.96375], + [-11.639081, 7.96375], + [-11.637213, 7.966984], + [-11.641119, 7.973749], + [-11.640922, 7.974089], + [-11.640481, 7.974018], + [-11.639959, 7.974163], + [-11.640306, 7.975157], + [-11.637213, 7.980516], + [-11.639081, 7.983749], + [-11.642082, 7.98375], + [-11.642083, 7.984583], + [-11.645416, 7.987916], + [-11.647083, 7.987917], + [-11.649683, 7.991167], + [-11.644672, 7.994008], + [-11.641826, 7.994275], + [-11.639864, 7.995152], + [-11.640417, 7.997916], + [-11.642083, 7.99875], + [-11.642917, 8.002916], + [-11.651249, 8.00625], + [-11.650417, 8.010417], + [-11.650417, 8.015416], + [-11.652082, 8.016249], + [-11.652083, 8.017083], + [-11.652917, 8.017083], + [-11.657082, 8.01625], + [-11.657917, 8.015416], + [-11.659583, 8.012917], + [-11.665416, 8.015416], + [-11.66625, 8.015417], + [-11.670416, 8.019583], + [-11.671217, 8.019983], + [-11.671348, 8.019495], + [-11.672077, 8.018147], + [-11.673108, 8.016403], + [-11.67386, 8.015448], + [-11.67802, 8.015447], + [-11.680103, 8.011842], + [-11.680533, 8.012254], + [-11.68197, 8.013301], + [-11.682593, 8.013262], + [-11.683784, 8.01336], + [-11.684779, 8.013987], + [-11.684954, 8.014013], + [-11.685317, 8.01369], + [-11.687067, 8.013759], + [-11.687485, 8.013607], + [-11.687648, 8.014166], + [-11.688139, 8.014314], + [-11.688419, 8.014216], + [-11.68875, 8.01125], + [-11.691249, 8.011249], + [-11.69625, 8.00625], + [-11.703749, 8.002916], + [-11.702917, 7.999583], + [-11.702917, 7.995417], + [-11.704582, 7.995416], + [-11.708674, 7.993371], + [-11.709145, 7.993571], + [-11.710428, 7.993376], + [-11.711321, 7.992488], + [-11.710513, 7.992454], + [-11.710512, 7.992453], + [-11.711249, 7.992083], + [-11.71125, 7.99125], + [-11.711564, 7.990622], + [-11.712149, 7.990779], + [-11.712283, 7.99094], + [-11.712566, 7.992999], + [-11.713077, 7.992484], + [-11.713505, 7.991683], + [-11.714051, 7.991423], + [-11.714677, 7.990657], + [-11.715097, 7.989885], + [-11.715042, 7.989546], + [-11.715343, 7.989295], + [-11.716222, 7.989162], + [-11.717333, 7.988483], + [-11.717559, 7.988149], + [-11.718881, 7.985296], + [-11.719457, 7.985386], + [-11.719945, 7.985183], + [-11.720769, 7.984948], + [-11.720846, 7.984653], + [-11.721355, 7.984145], + [-11.721543, 7.984274], + [-11.721625, 7.984048], + [-11.722267, 7.983953], + [-11.722693, 7.983873], + [-11.722811, 7.983873], + [-11.722537, 7.984584], + [-11.722351, 7.985033], + [-11.72221, 7.985363], + [-11.721984, 7.986038], + [-11.721845, 7.987449], + [-11.721854, 7.987937], + [-11.721996, 7.987983], + [-11.724802, 7.98929], + [-11.724873, 7.989236], + [-11.725574, 7.987997], + [-11.727529, 7.987449], + [-11.727746, 7.9874], + [-11.728132, 7.987206], + [-11.7283, 7.986757], + [-11.728187, 7.986381], + [-11.728507, 7.985618], + [-11.728986, 7.985732], + [-11.729505, 7.985865], + [-11.729673, 7.985494], + [-11.729849, 7.985389], + [-11.730421, 7.985481], + [-11.730719, 7.984488], + [-11.73058, 7.981984], + [-11.731079, 7.98188], + [-11.731616, 7.981826], + [-11.732156, 7.981745], + [-11.732147, 7.982588], + [-11.732557, 7.982565], + [-11.732706, 7.981971], + [-11.732406, 7.977207], + [-11.732662, 7.976962], + [-11.733889, 7.976992], + [-11.734297, 7.976973], + [-11.735351, 7.976917], + [-11.735404, 7.977301], + [-11.7368, 7.978642], + [-11.737562, 7.978546], + [-11.738066, 7.978651], + [-11.738727, 7.978806], + [-11.738835, 7.978109], + [-11.739141, 7.977977], + [-11.739632, 7.97747] + ] + ], + "type": "Polygon" + }, + "id": 134, + "properties": { + "cc:admin:id": ["46"], + "cc:oBld:total": 6577, + "cc:pop:fifteen-to-twenty-four": 11151.247693303612, + "cc:pop:grid3-total": 42554.37900774397, + "cc:pop:kontur-total": 62405.27788621004, + "cc:pop:men": 30055.573048747156, + "cc:pop:sixty-plus": 4458.232184220658, + "cc:pop:total": 62033.99368749512, + "cc:pop:under-five": 10302.171034448342, + "cc:pop:women": 31978.420638747946, + "cc:pop:women-fiften-to-forty-nine": 15248.53252863161, + "cc:pop:wp-total": 50006.49672635262, + "cc:pop:wp-total-UN": 57965.69092514111, + "cc:id": "134", + "cc:Name": "Gbotima MCHP", + "cc:site": [-11.7296, 7.9718], + "user:parentName": "Kakua", + "user:code": "OU_845", + "user:orgUnitId": "i7qaYfmGVDr", + "user:level": "4", + "user:parentId": "U6Kr7Gtpidn" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.203597, 8.266521], + [-12.19875, 8.26375], + [-12.197916, 8.262083], + [-12.194762, 8.260822], + [-12.194559, 8.261073], + [-12.193985, 8.262221], + [-12.19379, 8.262957], + [-12.192917, 8.262083], + [-12.192655, 8.260002], + [-12.187803, 8.260001], + [-12.183897, 8.253236], + [-12.180721, 8.253235], + [-12.180416, 8.249584], + [-12.175416, 8.249583], + [-12.167917, 8.247084], + [-12.167083, 8.24625], + [-12.171249, 8.241249], + [-12.172916, 8.234584], + [-12.170417, 8.233749], + [-12.169583, 8.232917], + [-12.169582, 8.229583], + [-12.162082, 8.225417], + [-12.161021, 8.225416], + [-12.16102, 8.225415], + [-12.161095, 8.22512], + [-12.15375, 8.222917], + [-12.15125, 8.22375], + [-12.149582, 8.226249], + [-12.13625, 8.223749], + [-12.135417, 8.220416], + [-12.142082, 8.212917], + [-12.137916, 8.209584], + [-12.134584, 8.209583], + [-12.134584, 8.209582], + [-12.137082, 8.20625], + [-12.127917, 8.201249], + [-12.12875, 8.199584], + [-12.130425, 8.198884], + [-12.12722, 8.193333], + [-12.131126, 8.186568], + [-12.130461, 8.185416], + [-12.119583, 8.185417], + [-12.120416, 8.197916], + [-12.113749, 8.19875], + [-12.10375, 8.202916], + [-12.10375, 8.205428], + [-12.103983, 8.205835], + [-12.10375, 8.206241], + [-12.103749, 8.207916], + [-12.098749, 8.207917], + [-12.095416, 8.212084], + [-12.092083, 8.224583], + [-12.092082, 8.225416], + [-12.089583, 8.225417], + [-12.086249, 8.227917], + [-12.084583, 8.232917], + [-12.084582, 8.239551], + [-12.084581, 8.23955], + [-12.081888, 8.23484], + [-12.079582, 8.235416], + [-12.069583, 8.232917], + [-12.067916, 8.243749], + [-12.062917, 8.24375], + [-12.062917, 8.246249], + [-12.069582, 8.254584], + [-12.067082, 8.257083], + [-12.05849, 8.257084], + [-12.0609, 8.2593], + [-12.064299, 8.261699], + [-12.073399, 8.265699], + [-12.083299, 8.266999], + [-12.087399, 8.268499], + [-12.0911, 8.2711], + [-12.101099, 8.280599], + [-12.1059, 8.2842], + [-12.113599, 8.287699], + [-12.122499, 8.289599], + [-12.126199, 8.291399], + [-12.1294, 8.2941], + [-12.132199, 8.297299], + [-12.1356, 8.3026], + [-12.140699, 8.309299], + [-12.144099, 8.314499], + [-12.145799, 8.316799], + [-12.149, 8.3197], + [-12.1514, 8.3213], + [-12.1578, 8.3238], + [-12.1651, 8.328], + [-12.1692, 8.3293], + [-12.176499, 8.329899], + [-12.194499, 8.329899], + [-12.189, 8.323], + [-12.1876, 8.3209], + [-12.186699, 8.318299], + [-12.1863, 8.3154], + [-12.1862, 8.311499], + [-12.186799, 8.3073], + [-12.189099, 8.3015], + [-12.1897, 8.298699], + [-12.189899, 8.294699], + [-12.1898, 8.2846], + [-12.189999, 8.2817], + [-12.1908, 8.279399], + [-12.192, 8.277399], + [-12.193899, 8.2752], + [-12.199199, 8.2705], + [-12.203099, 8.267599], + [-12.203597, 8.266521] + ] + ], + "type": "Polygon" + }, + "id": 135, + "properties": { + "cc:admin:id": ["60"], + "cc:oBld:total": 128, + "cc:pop:fifteen-to-twenty-four": 854.6084078323278, + "cc:pop:grid3-total": 3365.3632207979235, + "cc:pop:kontur-total": 5133.209853117448, + "cc:pop:men": 2300.9230220811246, + "cc:pop:sixty-plus": 316.70619272599413, + "cc:pop:total": 4840.033843254011, + "cc:pop:under-five": 789.3534416736503, + "cc:pop:women": 2539.1108211728865, + "cc:pop:women-fiften-to-forty-nine": 1237.6692055686528, + "cc:pop:wp-total": 4734.506704606073, + "cc:pop:wp-total-UN": 5493.439136436073, + "cc:id": "135", + "cc:Name": "Gbuihun MCHP", + "cc:site": [-12.1244, 8.2511], + "user:parentName": "Kori", + "user:code": "OU_246993", + "user:orgUnitId": "DA2BEQMhv9B", + "user:level": "4", + "user:parentId": "nV3OkyzF4US" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.475031, 7.847788], + [-11.474999, 7.846099], + [-11.4744, 7.842], + [-11.4725, 7.8351], + [-11.4716, 7.8295], + [-11.4714, 7.8227], + [-11.473199, 7.8089], + [-11.474299, 7.8025], + [-11.4592, 7.805299], + [-11.4564, 7.806099], + [-11.448899, 7.8097], + [-11.4419, 7.814299], + [-11.438299, 7.815699], + [-11.433599, 7.815999], + [-11.429899, 7.814899], + [-11.425299, 7.8128], + [-11.422999, 7.8137], + [-11.4179, 7.814899], + [-11.4123, 7.817399], + [-11.410099, 7.817799], + [-11.4074, 7.8177], + [-11.4049, 7.817], + [-11.400298, 7.814699], + [-11.399583, 7.820416], + [-11.407083, 7.82875], + [-11.407082, 7.829584], + [-11.404582, 7.834583], + [-11.401954, 7.836554], + [-11.402083, 7.836588], + [-11.402082, 7.843749], + [-11.397917, 7.847916], + [-11.395416, 7.844584], + [-11.390417, 7.844584], + [-11.389583, 7.845417], + [-11.391249, 7.852083], + [-11.38625, 7.855417], + [-11.385417, 7.85875], + [-11.385416, 7.862916], + [-11.37625, 7.862084], + [-11.374583, 7.865417], + [-11.378982, 7.87348], + [-11.379226, 7.873393], + [-11.383749, 7.877917], + [-11.380416, 7.880416], + [-11.374583, 7.882084], + [-11.372083, 7.884584], + [-11.372082, 7.890042], + [-11.371946, 7.890105], + [-11.370308, 7.890372], + [-11.368723, 7.890225], + [-11.368606, 7.890194], + [-11.367916, 7.897083], + [-11.364583, 7.900416], + [-11.362253, 7.900999], + [-11.362324, 7.901717], + [-11.362853, 7.903533], + [-11.361553, 7.903839], + [-11.360452, 7.903642], + [-11.358635, 7.90419], + [-11.357917, 7.904512], + [-11.357949, 7.904713], + [-11.358355, 7.905054], + [-11.359538, 7.906306], + [-11.359598, 7.906454], + [-11.357083, 7.907083], + [-11.356249, 7.907084], + [-11.352917, 7.907917], + [-11.35125, 7.916249], + [-11.351249, 7.917916], + [-11.345417, 7.917917], + [-11.342917, 7.920416], + [-11.339583, 7.92125], + [-11.337917, 7.924584], + [-11.338749, 7.927916], + [-11.332917, 7.929584], + [-11.33125, 7.93125], + [-11.330417, 7.935416], + [-11.332348, 7.936867], + [-11.331724, 7.936934], + [-11.331306, 7.936994], + [-11.329441, 7.937918], + [-11.327083, 7.939412], + [-11.327083, 7.941249], + [-11.335416, 7.942084], + [-11.332916, 7.947083], + [-11.328883, 7.950309], + [-11.3316, 7.9518], + [-11.337599, 7.957199], + [-11.3406, 7.958999], + [-11.3437, 7.9596], + [-11.351699, 7.960399], + [-11.3547, 7.958199], + [-11.3645, 7.952199], + [-11.3689, 7.948599], + [-11.3794, 7.938699], + [-11.3816, 7.936899], + [-11.3879, 7.932699], + [-11.3965, 7.925699], + [-11.4018, 7.922399], + [-11.4076, 7.918199], + [-11.413, 7.914999], + [-11.419999, 7.9101], + [-11.438899, 7.9003], + [-11.448999, 7.8935], + [-11.451799, 7.8911], + [-11.4541, 7.888299], + [-11.4566, 7.884399], + [-11.4608, 7.878299], + [-11.467, 7.866799], + [-11.4727, 7.859099], + [-11.4743, 7.855399], + [-11.475099, 7.8514], + [-11.475031, 7.847788] + ] + ], + "type": "Polygon" + }, + "id": 136, + "properties": { + "cc:admin:id": ["124"], + "cc:oBld:total": 1347, + "cc:pop:fifteen-to-twenty-four": 2300.2139211619924, + "cc:pop:grid3-total": 5907.823410725705, + "cc:pop:kontur-total": 12655.529855312223, + "cc:pop:men": 5924.911774174239, + "cc:pop:sixty-plus": 755.4108088235012, + "cc:pop:total": 12091.723885424852, + "cc:pop:under-five": 1980.1313678757506, + "cc:pop:women": 6166.812111250616, + "cc:pop:women-fiften-to-forty-nine": 3085.5908945722563, + "cc:pop:wp-total": 8177.973581129623, + "cc:pop:wp-total-UN": 9476.233834717008, + "cc:id": "136", + "cc:Name": "Gelehun MCHP", + "cc:site": [-11.3916, 7.8975], + "user:parentName": "Small Bo", + "user:code": "OU_222626", + "user:orgUnitId": "FZxJ0KST9jn", + "user:level": "4", + "user:parentId": "vzup1f6ynON" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.43375, 8.252916], + [-11.433749, 8.25023], + [-11.431799, 8.248799], + [-11.4281, 8.2452], + [-11.425799, 8.242199], + [-11.4218, 8.2348], + [-11.4183, 8.2272], + [-11.414099, 8.2153], + [-11.4109, 8.2118], + [-11.4048, 8.2085], + [-11.3982, 8.2063], + [-11.3948, 8.2045], + [-11.391599, 8.201999], + [-11.383199, 8.194699], + [-11.375999, 8.190099], + [-11.3665, 8.1835], + [-11.365799, 8.1881], + [-11.3641, 8.193399], + [-11.362, 8.196499], + [-11.3585, 8.199899], + [-11.3545, 8.2027], + [-11.351399, 8.2068], + [-11.3472, 8.210899], + [-11.3434, 8.2142], + [-11.3425, 8.217], + [-11.3424, 8.223499], + [-11.341899, 8.226699], + [-11.340899, 8.228599], + [-11.3391, 8.230299], + [-11.336599, 8.2312], + [-11.333699, 8.231499], + [-11.3046, 8.2312], + [-11.3006, 8.231399], + [-11.297799, 8.2321], + [-11.2892, 8.236499], + [-11.285999, 8.2391], + [-11.2768, 8.247999], + [-11.2729, 8.2509], + [-11.2699, 8.254999], + [-11.266399, 8.2586], + [-11.262899, 8.260599], + [-11.2562, 8.2618], + [-11.2566, 8.2658], + [-11.256799, 8.270399], + [-11.2568, 8.275099], + [-11.2566, 8.277699], + [-11.255899, 8.2799], + [-11.254336, 8.283151], + [-11.258289, 8.283152], + [-11.262195, 8.289916], + [-11.267582, 8.289916], + [-11.271249, 8.286249], + [-11.269583, 8.283749], + [-11.269583, 8.280416], + [-11.279583, 8.27375], + [-11.285416, 8.272917], + [-11.288749, 8.272917], + [-11.288806, 8.273649], + [-11.288805, 8.27365], + [-11.281534, 8.273651], + [-11.277628, 8.280416], + [-11.281533, 8.287182], + [-11.281344, 8.287511], + [-11.284582, 8.287917], + [-11.286084, 8.289916], + [-11.291608, 8.289917], + [-11.29125, 8.294583], + [-11.292613, 8.295946], + [-11.298048, 8.295947], + [-11.300149, 8.299583], + [-11.306249, 8.299583], + [-11.308749, 8.297916], + [-11.30625, 8.284584], + [-11.322082, 8.28375], + [-11.322083, 8.289885], + [-11.322347, 8.289827], + [-11.324046, 8.290188], + [-11.324583, 8.283749], + [-11.32875, 8.280417], + [-11.334737, 8.280416], + [-11.335417, 8.278328], + [-11.335599, 8.276173], + [-11.336442, 8.275972], + [-11.337075, 8.274253], + [-11.337944, 8.27335], + [-11.33877, 8.271566], + [-11.339343, 8.269603], + [-11.339377, 8.269209], + [-11.341249, 8.269583], + [-11.341802, 8.270136], + [-11.341701, 8.27031], + [-11.342778, 8.271267], + [-11.342794, 8.27125], + [-11.343749, 8.271249], + [-11.345417, 8.269584], + [-11.354582, 8.269583], + [-11.354799, 8.267212], + [-11.357951, 8.272669], + [-11.365763, 8.272669], + [-11.36967, 8.265904], + [-11.371976, 8.265903], + [-11.371699, 8.265519], + [-11.371618, 8.265325], + [-11.371619, 8.265323], + [-11.381249, 8.264583], + [-11.383215, 8.256723], + [-11.383221, 8.256726], + [-11.384401, 8.256796], + [-11.386077, 8.258061], + [-11.387328, 8.25869], + [-11.391797, 8.257822], + [-11.392125, 8.257948], + [-11.39238, 8.257506], + [-11.388475, 8.250741], + [-11.390536, 8.247168], + [-11.39875, 8.252916], + [-11.408749, 8.24625], + [-11.412082, 8.24625], + [-11.419583, 8.257916], + [-11.430416, 8.257083], + [-11.43375, 8.252916] + ] + ], + "type": "Polygon" + }, + "id": 137, + "properties": { + "cc:admin:id": ["142"], + "cc:oBld:total": 1109, + "cc:pop:fifteen-to-twenty-four": 1664.0751266048828, + "cc:pop:grid3-total": 6647.242040567093, + "cc:pop:kontur-total": 8765.538947612251, + "cc:pop:men": 4503.377519015515, + "cc:pop:sixty-plus": 548.7166433465969, + "cc:pop:total": 8830.985412565937, + "cc:pop:under-five": 1390.0031833221212, + "cc:pop:women": 4327.607893550425, + "cc:pop:women-fiften-to-forty-nine": 2198.7917596183493, + "cc:pop:wp-total": 7213.464946549175, + "cc:pop:wp-total-UN": 8354.285839578415, + "cc:id": "137", + "cc:Name": "Gendema MCHP", + "cc:site": [-11.3478, 8.233], + "user:parentName": "Wandor", + "user:code": "OU_222678", + "user:orgUnitId": "W3t0pSZLtrC", + "user:level": "4", + "user:parentId": "X7dWcGerQIm" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.749765, 7.484584], + [-11.749582, 7.484584], + [-11.747916, 7.485417], + [-11.73625, 7.485417], + [-11.736249, 7.487084], + [-11.733749, 7.489583], + [-11.730416, 7.485417], + [-11.722917, 7.482917], + [-11.719583, 7.484584], + [-11.719582, 7.49026], + [-11.719089, 7.484919], + [-11.719127, 7.484261], + [-11.717083, 7.48375], + [-11.712916, 7.487083], + [-11.70375, 7.487084], + [-11.703749, 7.493749], + [-11.702083, 7.494583], + [-11.690417, 7.490417], + [-11.690416, 7.492083], + [-11.68875, 7.492917], + [-11.688749, 7.494584], + [-11.686249, 7.499583], + [-11.681107, 7.494441], + [-11.682207, 7.491303], + [-11.682481, 7.49061], + [-11.675417, 7.49375], + [-11.672916, 7.496249], + [-11.66875, 7.49625], + [-11.670416, 7.506249], + [-11.662083, 7.504584], + [-11.66125, 7.504584], + [-11.659583, 7.505417], + [-11.659014, 7.508831], + [-11.6612, 7.5091], + [-11.663899, 7.509799], + [-11.6685, 7.5117], + [-11.6714, 7.5123], + [-11.676199, 7.512799], + [-11.678899, 7.513499], + [-11.6836, 7.5154], + [-11.6873, 7.5161], + [-11.693099, 7.516399], + [-11.696899, 7.516899], + [-11.7024, 7.5191], + [-11.7052, 7.5197], + [-11.709999, 7.520199], + [-11.712799, 7.520899], + [-11.7173, 7.5229], + [-11.722299, 7.524699], + [-11.735899, 7.5122], + [-11.7382, 7.509399], + [-11.7402, 7.5065], + [-11.743999, 7.5035], + [-11.745699, 7.5013], + [-11.7465, 7.498499], + [-11.746999, 7.4931], + [-11.747499, 7.4906], + [-11.749699, 7.4852], + [-11.749765, 7.484584] + ] + ], + "type": "Polygon" + }, + "id": 138, + "properties": { + "cc:admin:id": ["66"], + "cc:oBld:total": 1, + "cc:pop:fifteen-to-twenty-four": 648.522166681555, + "cc:pop:grid3-total": 3038.6932180110944, + "cc:pop:kontur-total": 3579.0003664511705, + "cc:pop:men": 1778.7168206366146, + "cc:pop:sixty-plus": 268.79509765632974, + "cc:pop:total": 3655.349657270684, + "cc:pop:under-five": 610.5658342102586, + "cc:pop:women": 1876.6328366340688, + "cc:pop:women-fiften-to-forty-nine": 899.3388196701203, + "cc:pop:wp-total": 4219.482457732032, + "cc:pop:wp-total-UN": 4894.933609926888, + "cc:id": "138", + "cc:Name": "Geoma Jagor CHC", + "cc:site": [-11.694, 7.5099], + "user:parentName": "Sowa", + "user:code": "OU_260385", + "user:orgUnitId": "FbD5Z8z22Yb", + "user:level": "4", + "user:parentId": "NqWaKXcg01b" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.242507, 8.463821], + [-13.242161, 8.463112], + [-13.242046, 8.462606], + [-13.234589, 8.462605], + [-13.233578, 8.460854], + [-13.233705, 8.460113], + [-13.234166, 8.458427], + [-13.234577, 8.458896], + [-13.234887, 8.459229], + [-13.235009, 8.459263], + [-13.23529, 8.458337], + [-13.235398, 8.457548], + [-13.235788, 8.456881], + [-13.236121, 8.457155], + [-13.235974, 8.456824], + [-13.236092, 8.456329], + [-13.235932, 8.456266], + [-13.235774, 8.456197], + [-13.235702, 8.455424], + [-13.235482, 8.455199], + [-13.234881, 8.45547], + [-13.234759, 8.455352], + [-13.234538, 8.455499], + [-13.234175, 8.455123], + [-13.23385, 8.454832], + [-13.233285, 8.454098], + [-13.233224, 8.454017], + [-13.233623, 8.453534], + [-13.23323, 8.453005], + [-13.232839, 8.453449], + [-13.232294, 8.452695], + [-13.230662, 8.451316], + [-13.230197, 8.451055], + [-13.229617, 8.450738], + [-13.229434, 8.450898], + [-13.229039, 8.451344], + [-13.229038, 8.451343], + [-13.229058, 8.451216], + [-13.2283, 8.451185], + [-13.227702, 8.451011], + [-13.227013, 8.450987], + [-13.226776, 8.451068], + [-13.22529, 8.452357], + [-13.224045, 8.452964], + [-13.223581, 8.452923], + [-13.223239, 8.451664], + [-13.222442, 8.450817], + [-13.221654, 8.450661], + [-13.221192, 8.451259], + [-13.220937, 8.451159], + [-13.2203, 8.452005], + [-13.220159, 8.452486], + [-13.221762, 8.452832], + [-13.222136, 8.453734], + [-13.222142, 8.454158], + [-13.222006, 8.45545], + [-13.222031, 8.455503], + [-13.221682, 8.456363], + [-13.221091, 8.457046], + [-13.220677, 8.4571], + [-13.220398, 8.457318], + [-13.220303, 8.457475], + [-13.220099, 8.458093], + [-13.219591, 8.459545], + [-13.219452, 8.459954], + [-13.219272, 8.460523], + [-13.219144, 8.460892], + [-13.218897, 8.461569], + [-13.219036, 8.461732], + [-13.219417, 8.461649], + [-13.220056, 8.461845], + [-13.220709, 8.46186], + [-13.221235, 8.461903], + [-13.2215, 8.462238], + [-13.221066, 8.46312], + [-13.220633, 8.463395], + [-13.221331, 8.464398], + [-13.22199, 8.465798], + [-13.22258, 8.465635], + [-13.22292, 8.465499], + [-13.223706, 8.465363], + [-13.223468, 8.467045], + [-13.223126, 8.467277], + [-13.222768, 8.467497], + [-13.222992, 8.467956], + [-13.223502, 8.467594], + [-13.223953, 8.467922], + [-13.224604, 8.467076], + [-13.224802, 8.467045], + [-13.225441, 8.467686], + [-13.225081, 8.468041], + [-13.224497, 8.468238], + [-13.224761, 8.468851], + [-13.223906, 8.469759], + [-13.224258, 8.470162], + [-13.224789, 8.470714], + [-13.225802, 8.471252], + [-13.226809, 8.471506], + [-13.227211, 8.471945], + [-13.227572, 8.472209], + [-13.228253, 8.472266], + [-13.228717, 8.472519], + [-13.22907, 8.472818], + [-13.229256, 8.473119], + [-13.229758, 8.47285], + [-13.229735, 8.473069], + [-13.230059, 8.473221], + [-13.230599, 8.473834], + [-13.230777, 8.473928], + [-13.231529, 8.474346], + [-13.231374, 8.475798], + [-13.230786, 8.476347], + [-13.230902, 8.476331], + [-13.231613, 8.475744], + [-13.233961, 8.475128], + [-13.234848, 8.474566], + [-13.235277, 8.47543], + [-13.236507, 8.475648], + [-13.236559, 8.47514], + [-13.237044, 8.475202], + [-13.237466, 8.475251], + [-13.23756, 8.475282], + [-13.237915, 8.475413], + [-13.238581, 8.475672], + [-13.238862, 8.475778], + [-13.239157, 8.475901], + [-13.239266, 8.475933], + [-13.239806, 8.474668], + [-13.240011, 8.474377], + [-13.23966, 8.474083], + [-13.239692, 8.473259], + [-13.239516, 8.472894], + [-13.239115, 8.472526], + [-13.238337, 8.472253], + [-13.23881, 8.471995], + [-13.239466, 8.471664], + [-13.2397, 8.471536], + [-13.239669, 8.471432], + [-13.240271, 8.471138], + [-13.240098, 8.469554], + [-13.240019, 8.469161], + [-13.239926, 8.468652], + [-13.23988, 8.468316], + [-13.239478, 8.467575], + [-13.239467, 8.46719], + [-13.239291, 8.467105], + [-13.239337, 8.466604], + [-13.239205, 8.466149], + [-13.239558, 8.465829], + [-13.23986, 8.465515], + [-13.240475, 8.465001], + [-13.241405, 8.464212], + [-13.242507, 8.463821] + ] + ], + "type": "Polygon" + }, + "id": 139, + "properties": { + "cc:admin:id": ["26"], + "cc:oBld:total": 6682, + "cc:pop:fifteen-to-twenty-four": 16705.618254506968, + "cc:pop:grid3-total": 62865.3978827188, + "cc:pop:kontur-total": 68871.03445071138, + "cc:pop:men": 36493.76121616734, + "cc:pop:sixty-plus": 5679.095662053677, + "cc:pop:total": 72787.35613751147, + "cc:pop:under-five": 8405.740794973146, + "cc:pop:women": 36293.59492134413, + "cc:pop:women-fiften-to-forty-nine": 19455.26506593676, + "cc:pop:wp-total": 54461.230290496664, + "cc:pop:wp-total-UN": 63142.76723212894, + "cc:id": "139", + "cc:Name": "George Brook Health Centre", + "cc:site": [-13.23527, 8.46819], + "user:parentName": "Freetown", + "user:code": "OU_278330", + "user:orgUnitId": "U514Dz4v9pv", + "user:level": "4", + "user:parentId": "C9uduqDZr9d" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.220617, 8.482789], + [-13.220523, 8.48247], + [-13.220084, 8.481825], + [-13.219788, 8.481613], + [-13.218969, 8.481319], + [-13.217648, 8.480418], + [-13.217506, 8.480975], + [-13.218232, 8.481564], + [-13.218748, 8.481868], + [-13.218633, 8.482191], + [-13.219025, 8.482571], + [-13.219461, 8.483057], + [-13.219494, 8.483095], + [-13.220617, 8.482789] + ] + ], + "type": "Polygon" + }, + "id": 140, + "properties": { + "cc:admin:id": ["26"], + "cc:oBld:total": 123, + "cc:pop:fifteen-to-twenty-four": 208.01434309658976, + "cc:pop:grid3-total": 1910.9770252359795, + "cc:pop:kontur-total": 0, + "cc:pop:men": 452.92263962426057, + "cc:pop:sixty-plus": 70.44413708494876, + "cc:pop:total": 905.1887329449318, + "cc:pop:under-five": 104.3585899401715, + "cc:pop:women": 452.26609332067125, + "cc:pop:women-fiften-to-forty-nine": 242.5841064130567, + "cc:pop:wp-total": 749.8164526314583, + "cc:pop:wp-total-UN": 869.7182221834705, + "cc:id": "140", + "cc:Name": "Ginger Hall Health Centre", + "cc:site": [-13.2185, 8.4817], + "user:parentName": "Freetown", + "user:code": "OU_278361", + "user:orgUnitId": "m0XorV4WWg0", + "user:level": "4", + "user:parentId": "C9uduqDZr9d" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.293999, 8.4227], + [-13.288199, 8.4185], + [-13.283699, 8.420999], + [-13.266799, 8.3958], + [-13.252299, 8.4019], + [-13.236524, 8.413456], + [-13.236734, 8.414506], + [-13.23686, 8.414722], + [-13.244672, 8.414723], + [-13.248578, 8.421488], + [-13.256391, 8.421489], + [-13.260296, 8.428254], + [-13.258087, 8.432083], + [-13.259582, 8.432084], + [-13.259583, 8.432801], + [-13.259652, 8.432807], + [-13.259961, 8.432963], + [-13.260422, 8.432742], + [-13.261499, 8.432832], + [-13.261371, 8.433229], + [-13.261484, 8.433468], + [-13.262562, 8.433878], + [-13.26277, 8.434117], + [-13.262814, 8.435068], + [-13.263987, 8.436025], + [-13.26506, 8.4362], + [-13.265499, 8.43638], + [-13.265669, 8.436405], + [-13.265887, 8.436499], + [-13.267246, 8.436878], + [-13.267156, 8.437487], + [-13.267094, 8.437887], + [-13.265806, 8.437814], + [-13.264975, 8.437964], + [-13.264371, 8.43854], + [-13.264122, 8.438572], + [-13.265757, 8.440401], + [-13.266619, 8.439915], + [-13.266876, 8.440496], + [-13.266942, 8.440668], + [-13.267415, 8.440627], + [-13.268135, 8.440423], + [-13.268621, 8.440948], + [-13.26862, 8.440949], + [-13.268474, 8.441019], + [-13.267889, 8.441299], + [-13.267544, 8.44164], + [-13.267283, 8.441848], + [-13.267399, 8.442557], + [-13.26777, 8.442841], + [-13.268572, 8.443537], + [-13.268963, 8.44381], + [-13.26917, 8.44327], + [-13.270126, 8.443199], + [-13.270272, 8.443501], + [-13.270792, 8.443435], + [-13.271278, 8.445558], + [-13.272967, 8.445394], + [-13.273087, 8.446072], + [-13.273083, 8.446308], + [-13.273085, 8.446433], + [-13.273047, 8.446832], + [-13.272973, 8.447422], + [-13.272941, 8.448067], + [-13.273339, 8.448105], + [-13.273881, 8.448433], + [-13.274422, 8.447577], + [-13.274697, 8.447512], + [-13.275403, 8.448036], + [-13.275651, 8.448583], + [-13.276891, 8.44793], + [-13.277366, 8.448397], + [-13.278012, 8.449168], + [-13.278205, 8.449281], + [-13.278728, 8.449304], + [-13.2793, 8.441499], + [-13.283699, 8.4363], + [-13.293199, 8.436799], + [-13.2885, 8.4271], + [-13.293999, 8.4227] + ] + ], + "type": "Polygon" + }, + "id": 141, + "properties": { + "cc:admin:id": ["26"], + "cc:oBld:total": 11586, + "cc:pop:fifteen-to-twenty-four": 15259.552637523902, + "cc:pop:grid3-total": 79643.59742150184, + "cc:pop:kontur-total": 68271.69798403572, + "cc:pop:men": 33620.0410679335, + "cc:pop:sixty-plus": 5315.784469939261, + "cc:pop:total": 66815.59754492233, + "cc:pop:under-five": 7804.493521356446, + "cc:pop:women": 33195.55647698883, + "cc:pop:women-fiften-to-forty-nine": 17602.74676015345, + "cc:pop:wp-total": 62144.167235588524, + "cc:pop:wp-total-UN": 72032.35663133443, + "cc:id": "141", + "cc:Name": "Goderich Health Centre", + "cc:site": [-13.29096, 8.43552], + "user:parentName": "Rural Western Area", + "user:code": "OU_278392", + "user:orgUnitId": "dQggcljEImF", + "user:level": "4", + "user:parentId": "qtr8GGlm4gg" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.440058, 7.228266], + [-11.4402, 7.227699], + [-11.440399, 7.2231], + [-11.44, 7.2205], + [-11.439099, 7.2179], + [-11.4374, 7.2156], + [-11.433499, 7.212399], + [-11.4249, 7.2079], + [-11.421599, 7.206599], + [-11.417199, 7.204399], + [-11.411199, 7.202999], + [-11.4028, 7.1991], + [-11.398299, 7.196899], + [-11.394499, 7.196199], + [-11.3853, 7.196], + [-11.3813, 7.1955], + [-11.375799, 7.193299], + [-11.369099, 7.191499], + [-11.364499, 7.189599], + [-11.360899, 7.188899], + [-11.3531, 7.1885], + [-11.3503, 7.1879], + [-11.3415, 7.1835], + [-11.335999, 7.179299], + [-11.3272, 7.1749], + [-11.3204, 7.1736], + [-11.3182, 7.1726], + [-11.318099, 7.1721], + [-11.3108, 7.1806], + [-11.311399, 7.1871], + [-11.3075, 7.1936], + [-11.308799, 7.2033], + [-11.302999, 7.209099], + [-11.2991, 7.207899], + [-11.299099, 7.1988], + [-11.289401, 7.198799], + [-11.289547, 7.198438], + [-11.287886, 7.199125], + [-11.286953, 7.199788], + [-11.286314, 7.201144], + [-11.286815, 7.20449], + [-11.286127, 7.211015], + [-11.286549, 7.213679], + [-11.28595, 7.214644], + [-11.285252, 7.214965], + [-11.284505, 7.215044], + [-11.2836, 7.214849], + [-11.282439, 7.21522], + [-11.281182, 7.216], + [-11.28062, 7.217122], + [-11.280611, 7.218302], + [-11.280984, 7.219979], + [-11.279844, 7.220995], + [-11.279677, 7.221823], + [-11.279292, 7.222195], + [-11.281718, 7.222106], + [-11.28264, 7.222061], + [-11.283261, 7.22243], + [-11.28266, 7.223194], + [-11.281867, 7.223575], + [-11.28061, 7.223885], + [-11.280105, 7.224267], + [-11.280049, 7.2258], + [-11.280156, 7.226249], + [-11.282083, 7.22625], + [-11.28625, 7.229584], + [-11.287082, 7.236249], + [-11.284583, 7.242083], + [-11.29375, 7.247083], + [-11.300416, 7.24625], + [-11.300417, 7.249583], + [-11.302917, 7.255416], + [-11.315417, 7.255417], + [-11.316666, 7.259166], + [-11.316509, 7.259611], + [-11.313451, 7.261176], + [-11.311906, 7.262827], + [-11.311281, 7.263248], + [-11.310609, 7.262962], + [-11.31056, 7.26089], + [-11.310024, 7.259636], + [-11.309184, 7.258634], + [-11.309255, 7.256705], + [-11.308552, 7.256348], + [-11.307991, 7.25669], + [-11.307335, 7.259509], + [-11.307606, 7.263169], + [-11.307303, 7.264249], + [-11.308166, 7.266186], + [-11.30817, 7.266249], + [-11.315416, 7.26625], + [-11.31567, 7.266503], + [-11.315742, 7.266494], + [-11.318749, 7.26875], + [-11.319822, 7.270896], + [-11.319779, 7.27093], + [-11.320416, 7.27125], + [-11.320416, 7.272916], + [-11.319583, 7.274584], + [-11.32087, 7.277801], + [-11.320379, 7.278547], + [-11.319299, 7.279059], + [-11.319261, 7.279085], + [-11.327916, 7.281249], + [-11.327917, 7.282916], + [-11.336203, 7.284423], + [-11.336158, 7.28478], + [-11.341248, 7.285416], + [-11.337083, 7.293749], + [-11.348748, 7.290417], + [-11.348748, 7.290419], + [-11.347231, 7.292948], + [-11.349859, 7.297499], + [-11.355714, 7.2975], + [-11.355417, 7.299583], + [-11.354863, 7.301243], + [-11.356508, 7.301125], + [-11.357916, 7.30156], + [-11.357917, 7.305546], + [-11.358207, 7.305805], + [-11.359054, 7.306878], + [-11.359853, 7.307577], + [-11.361687, 7.307578], + [-11.365684, 7.308557], + [-11.366812, 7.308697], + [-11.36766, 7.309024], + [-11.36849, 7.309501], + [-11.372759, 7.308891], + [-11.372656, 7.308751], + [-11.372656, 7.30875], + [-11.374582, 7.30875], + [-11.374583, 7.314583], + [-11.377082, 7.317083], + [-11.37743, 7.317256], + [-11.3782, 7.315499], + [-11.3802, 7.311999], + [-11.3819, 7.308199], + [-11.384, 7.305199], + [-11.388999, 7.2999], + [-11.391099, 7.2971], + [-11.393899, 7.2919], + [-11.3981, 7.286599], + [-11.401299, 7.2807], + [-11.405399, 7.2754], + [-11.408099, 7.2702], + [-11.409699, 7.2679], + [-11.4125, 7.264999], + [-11.4156, 7.262099], + [-11.4181, 7.260399], + [-11.4224, 7.258299], + [-11.4246, 7.256599], + [-11.4271, 7.253999], + [-11.428799, 7.250799], + [-11.4298, 7.245699], + [-11.433999, 7.2368], + [-11.439199, 7.231699], + [-11.440058, 7.228266] + ] + ], + "type": "Polygon" + }, + "id": 142, + "properties": { + "cc:admin:id": ["84"], + "cc:oBld:total": 661, + "cc:pop:fifteen-to-twenty-four": 2125.989877126341, + "cc:pop:grid3-total": 10467.029648909072, + "cc:pop:kontur-total": 15955.409889030809, + "cc:pop:men": 5927.93913181852, + "cc:pop:sixty-plus": 888.940570713618, + "cc:pop:total": 12131.066029818812, + "cc:pop:under-five": 1954.2083268523088, + "cc:pop:women": 6203.126898000296, + "cc:pop:women-fiften-to-forty-nine": 2936.6798213867855, + "cc:pop:wp-total": 15102.652662105163, + "cc:pop:wp-total-UN": 17515.62216661198, + "cc:id": "142", + "cc:Name": "Gofor CHP", + "cc:site": [-11.3602, 7.2429], + "user:parentName": "Makpele", + "user:code": "OU_260383", + "user:orgUnitId": "lf7FRlrchg3", + "user:level": "4", + "user:parentId": "BD9gU0GKlr2" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.658599, 7.8615], + [-11.651099, 7.8631], + [-11.6476, 7.864899], + [-11.6433, 7.868199], + [-11.641199, 7.8693], + [-11.639099, 7.8698], + [-11.6338, 7.870399], + [-11.6313, 7.870999], + [-11.625399, 7.8733], + [-11.621199, 7.8738], + [-11.616399, 7.873899], + [-11.611499, 7.873799], + [-11.607699, 7.873499], + [-11.604999, 7.872799], + [-11.6014, 7.8713], + [-11.599, 7.8708], + [-11.5965, 7.8712], + [-11.589899, 7.8745], + [-11.587699, 7.876], + [-11.582999, 7.8797], + [-11.5745, 7.884299], + [-11.571299, 7.8857], + [-11.5671, 7.888199], + [-11.563999, 7.8896], + [-11.560799, 7.891499], + [-11.558599, 7.891699], + [-11.5568, 7.8908], + [-11.556669, 7.890475], + [-11.555075, 7.891649], + [-11.553782, 7.892254], + [-11.552443, 7.892259], + [-11.550267, 7.891253], + [-11.546707, 7.890563], + [-11.544448, 7.891351], + [-11.543357, 7.891081], + [-11.542376, 7.891097], + [-11.540617, 7.891538], + [-11.539869, 7.891922], + [-11.541724, 7.893035], + [-11.541021, 7.893317], + [-11.539759, 7.894109], + [-11.537448, 7.89447], + [-11.537154, 7.894363], + [-11.534699, 7.895016], + [-11.529551, 7.897129], + [-11.528939, 7.897462], + [-11.528403, 7.896393], + [-11.527503, 7.896796], + [-11.525113, 7.897199], + [-11.522906, 7.898468], + [-11.521421, 7.898738], + [-11.520417, 7.901249], + [-11.520594, 7.901606], + [-11.519584, 7.903194], + [-11.521249, 7.903749], + [-11.52125, 7.904583], + [-11.519583, 7.90625], + [-11.519583, 7.916249], + [-11.522917, 7.912083], + [-11.530416, 7.909584], + [-11.532916, 7.910417], + [-11.533749, 7.912917], + [-11.532917, 7.920416], + [-11.52875, 7.922917], + [-11.531618, 7.930087], + [-11.532488, 7.929266], + [-11.534329, 7.926326], + [-11.535181, 7.925488], + [-11.535182, 7.925489], + [-11.535073, 7.927586], + [-11.535798, 7.927409], + [-11.536265, 7.927033], + [-11.539582, 7.925969], + [-11.539583, 7.930416], + [-11.54875, 7.930417], + [-11.552082, 7.932916], + [-11.552082, 7.933696], + [-11.551444, 7.933616], + [-11.550913, 7.933244], + [-11.550665, 7.933325], + [-11.55125, 7.936249], + [-11.552758, 7.937758], + [-11.552793, 7.937718], + [-11.553992, 7.937207], + [-11.554635, 7.935805], + [-11.555567, 7.936304], + [-11.556284, 7.936236], + [-11.556906, 7.93581], + [-11.557202, 7.93591], + [-11.558101, 7.936366], + [-11.55873, 7.937172], + [-11.560052, 7.938123], + [-11.560638, 7.937823], + [-11.561069, 7.937869], + [-11.561712, 7.937636], + [-11.562163, 7.937855], + [-11.562163, 7.937856], + [-11.561451, 7.938744], + [-11.564583, 7.94125], + [-11.567082, 7.944583], + [-11.566208, 7.945895], + [-11.566194, 7.945896], + [-11.565781, 7.945989], + [-11.565417, 7.947083], + [-11.567917, 7.95125], + [-11.568458, 7.952875], + [-11.568189, 7.953036], + [-11.569223, 7.956654], + [-11.569882, 7.957096], + [-11.570462, 7.956985], + [-11.5711, 7.956299], + [-11.575799, 7.9516], + [-11.578699, 7.9494], + [-11.5827, 7.947599], + [-11.587, 7.945199], + [-11.590099, 7.9439], + [-11.592399, 7.9425], + [-11.598, 7.937099], + [-11.600599, 7.933399], + [-11.601199, 7.9313], + [-11.6014, 7.928599], + [-11.6014, 7.9223], + [-11.601699, 7.9201], + [-11.6032, 7.917299], + [-11.6059, 7.9153], + [-11.611699, 7.9138], + [-11.613999, 7.9127], + [-11.6195, 7.908499], + [-11.6235, 7.906599], + [-11.627699, 7.9042], + [-11.6309, 7.902899], + [-11.635199, 7.9005], + [-11.6384, 7.899199], + [-11.642699, 7.8969], + [-11.646599, 7.8951], + [-11.6488, 7.893399], + [-11.651299, 7.8907], + [-11.6529, 7.887899], + [-11.6534, 7.884799], + [-11.653599, 7.8776], + [-11.654199, 7.8741], + [-11.656499, 7.8689], + [-11.657599, 7.8646], + [-11.658599, 7.8615] + ] + ], + "type": "Polygon" + }, + "id": 143, + "properties": { + "cc:admin:id": ["2"], + "cc:oBld:total": 166, + "cc:pop:fifteen-to-twenty-four": 4266.250189326623, + "cc:pop:grid3-total": 12730.571491807108, + "cc:pop:kontur-total": 23835.780959725478, + "cc:pop:men": 12323.852221708778, + "cc:pop:sixty-plus": 1688.3597006486652, + "cc:pop:total": 23868.220987650126, + "cc:pop:under-five": 3939.250540409007, + "cc:pop:women": 11544.368765941343, + "cc:pop:women-fiften-to-forty-nine": 5509.319720103991, + "cc:pop:wp-total": 19873.18651021842, + "cc:pop:wp-total-UN": 23043.580775911967, + "cc:id": "143", + "cc:Name": "Golu MCHP", + "cc:site": [-11.5444, 7.9049], + "user:parentName": "Baoma", + "user:code": "OU_577", + "user:orgUnitId": "azRICFoILuh", + "user:level": "4", + "user:parentId": "vWbkYPRmKyS" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.215367, 7.769646], + [-12.215037, 7.769286], + [-12.214578, 7.769146], + [-12.209266, 7.769509], + [-12.204921, 7.769158], + [-12.201802, 7.768704], + [-12.196967, 7.767575], + [-12.191742, 7.766054], + [-12.190769, 7.76598], + [-12.187617, 7.76672], + [-12.187326, 7.765558], + [-12.186098, 7.76579], + [-12.184995, 7.766397], + [-12.184581, 7.767429], + [-12.185109, 7.769197], + [-12.184948, 7.77139], + [-12.184737, 7.771738], + [-12.183089, 7.771738], + [-12.181959, 7.773694], + [-12.181893, 7.773704], + [-12.179733, 7.773037], + [-12.177718, 7.771535], + [-12.174149, 7.768309], + [-12.173697, 7.767656], + [-12.173573, 7.766923], + [-12.172405, 7.7677], + [-12.17218, 7.766359], + [-12.172864, 7.765632], + [-12.17339, 7.764667], + [-12.173512, 7.763572], + [-12.17351, 7.763551], + [-12.169867, 7.763551], + [-12.168668, 7.764864], + [-12.166906, 7.765523], + [-12.166416, 7.765569], + [-12.165923, 7.765214], + [-12.16524, 7.76428], + [-12.164895, 7.763413], + [-12.164299, 7.76097], + [-12.164972, 7.754345], + [-12.164965, 7.752917], + [-12.166229, 7.752916], + [-12.166283, 7.75157], + [-12.165931, 7.750097], + [-12.165802, 7.748298], + [-12.165896, 7.74637], + [-12.165733, 7.745225], + [-12.164713, 7.743084], + [-12.164247, 7.740822], + [-12.164415, 7.739426], + [-12.165747, 7.733871], + [-12.166384, 7.732147], + [-12.168029, 7.72937], + [-12.169462, 7.727382], + [-12.171193, 7.725477], + [-12.172051, 7.724285], + [-12.173115, 7.722266], + [-12.173299, 7.721445], + [-12.17323, 7.720785], + [-12.172441, 7.718705], + [-12.169704, 7.714462], + [-12.168795, 7.71537], + [-12.168749, 7.71532], + [-12.167769, 7.71438], + [-12.167103, 7.714099], + [-12.166407, 7.71416], + [-12.166077, 7.71435], + [-12.166077, 7.715358], + [-12.166322, 7.716308], + [-12.167441, 7.718304], + [-12.167778, 7.719583], + [-12.166571, 7.719584], + [-12.16662, 7.719845], + [-12.166488, 7.720515], + [-12.166248, 7.721249], + [-12.165857, 7.721646], + [-12.164375, 7.722153], + [-12.16371, 7.722057], + [-12.16325, 7.721767], + [-12.162566, 7.720774], + [-12.161425, 7.7177], + [-12.161137, 7.715488], + [-12.162913, 7.713339], + [-12.164067, 7.711627], + [-12.163389, 7.709932], + [-12.163587, 7.709544], + [-12.166024, 7.707031], + [-12.168253, 7.705892], + [-12.17088, 7.705233], + [-12.172136, 7.705263], + [-12.176134, 7.707114], + [-12.176976, 7.707054], + [-12.178862, 7.705991], + [-12.179611, 7.705126], + [-12.179749, 7.704352], + [-12.179519, 7.701863], + [-12.179182, 7.701422], + [-12.178478, 7.70124], + [-12.176809, 7.701437], + [-12.172794, 7.702302], + [-12.171746, 7.702152], + [-12.170743, 7.701321], + [-12.169412, 7.699498], + [-12.167636, 7.695897], + [-12.1666, 7.694659], + [-12.165237, 7.693975], + [-12.163706, 7.69395], + [-12.157174, 7.695078], + [-12.15299, 7.69501], + [-12.150664, 7.694686], + [-12.148852, 7.694019], + [-12.147084, 7.691623], + [-12.144132, 7.690217], + [-12.141505, 7.688628], + [-12.140366, 7.687221], + [-12.139808, 7.685574], + [-12.139983, 7.684203], + [-12.140726, 7.681726], + [-12.140959, 7.679353], + [-12.14097, 7.676565], + [-12.140749, 7.675079], + [-12.140179, 7.673029], + [-12.139342, 7.671301], + [-12.137274, 7.668041], + [-12.137088, 7.667073], + [-12.137227, 7.665853], + [-12.137622, 7.665185], + [-12.139704, 7.663721], + [-12.14082, 7.663702], + [-12.141024, 7.66451], + [-12.142145, 7.664493], + [-12.146015, 7.664792], + [-12.149908, 7.663906], + [-12.151107, 7.663468], + [-12.152756, 7.663503], + [-12.154861, 7.664301], + [-12.155146, 7.663163], + [-12.155508, 7.66338], + [-12.155947, 7.661625], + [-12.152999, 7.660999], + [-12.141799, 7.656799], + [-12.1286, 7.6551], + [-12.1229, 7.6535], + [-12.117699, 7.6579], + [-12.112, 7.661699], + [-12.1092, 7.664299], + [-12.105999, 7.6682], + [-12.099199, 7.6806], + [-12.0928, 7.688499], + [-12.090599, 7.6915], + [-12.085999, 7.6997], + [-12.0809, 7.709799], + [-12.0925, 7.708099], + [-12.102099, 7.7076], + [-12.109899, 7.7076], + [-12.1128, 7.7078], + [-12.115699, 7.708599], + [-12.1187, 7.7108], + [-12.120999, 7.7147], + [-12.1219, 7.7188], + [-12.122199, 7.7234], + [-12.122, 7.739199], + [-12.1228, 7.7453], + [-12.1244, 7.749099], + [-12.1306, 7.7553], + [-12.132599, 7.7585], + [-12.133299, 7.761299], + [-12.1338, 7.7658], + [-12.1338, 7.771699], + [-12.133399, 7.7758], + [-12.1323, 7.782399], + [-12.133, 7.785999], + [-12.137499, 7.787299], + [-12.1404, 7.7878], + [-12.1447, 7.788099], + [-12.149999, 7.7879], + [-12.154, 7.787099], + [-12.1595, 7.784999], + [-12.1635, 7.784399], + [-12.171799, 7.7842], + [-12.175999, 7.7835], + [-12.181, 7.781399], + [-12.1869, 7.779999], + [-12.1922, 7.777599], + [-12.198999, 7.776], + [-12.2042, 7.773699], + [-12.2093, 7.772599], + [-12.214499, 7.77], + [-12.215367, 7.769646] + ] + ], + "type": "Polygon" + }, + "id": 144, + "properties": { + "cc:admin:id": ["76"], + "cc:oBld:total": 70, + "cc:pop:fifteen-to-twenty-four": 843.5890181622702, + "cc:pop:grid3-total": 3400.4146313326123, + "cc:pop:kontur-total": 4529.345275703088, + "cc:pop:men": 2302.3318880185852, + "cc:pop:sixty-plus": 343.3863373050873, + "cc:pop:total": 4622.598881804241, + "cc:pop:under-five": 802.6136681756303, + "cc:pop:women": 2320.266993785655, + "cc:pop:women-fiften-to-forty-nine": 1097.2009611960098, + "cc:pop:wp-total": 3947.6644794899007, + "cc:pop:wp-total-UN": 4569.082504242192, + "cc:id": "144", + "cc:Name": "Gondama MCHP", + "cc:site": [-12.1349, 7.753], + "user:parentName": "Upper Banta", + "user:code": "OU_247004", + "user:orgUnitId": "fRV3Fhz1IP8", + "user:level": "4", + "user:parentId": "DBs6e2Oxaj1" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.356119, 7.430196], + [-11.356999, 7.4262], + [-11.357199, 7.422799], + [-11.353799, 7.408099], + [-11.349199, 7.398], + [-11.344, 7.3939], + [-11.341999, 7.391899], + [-11.327299, 7.385299], + [-11.3182, 7.3834], + [-11.310999, 7.381199], + [-11.301899, 7.379299], + [-11.2845, 7.3713], + [-11.2807, 7.37], + [-11.274599, 7.369399], + [-11.259, 7.3692], + [-11.253199, 7.368199], + [-11.245299, 7.364999], + [-11.237799, 7.361199], + [-11.2229, 7.3534], + [-11.220399, 7.351699], + [-11.211999, 7.344999], + [-11.204399, 7.340799], + [-11.1732, 7.3253], + [-11.165399, 7.322099], + [-11.1564, 7.3202], + [-11.149199, 7.317999], + [-11.1407, 7.3164], + [-11.1383, 7.321], + [-11.140199, 7.332399], + [-11.1362, 7.338199], + [-11.1298, 7.3408], + [-11.131099, 7.3427], + [-11.1259, 7.3446], + [-11.124, 7.3479], + [-11.123299, 7.3557], + [-11.119999, 7.3589], + [-11.1174, 7.362099], + [-11.1148, 7.3621], + [-11.1109, 7.365999], + [-11.109699, 7.371199], + [-11.1058, 7.373199], + [-11.1025, 7.3758], + [-11.098, 7.384799], + [-11.0921, 7.3849], + [-11.0889, 7.388699], + [-11.087591, 7.389027], + [-11.086078, 7.391647], + [-11.089781, 7.392227], + [-11.092098, 7.392383], + [-11.096521, 7.389049], + [-11.097273, 7.389003], + [-11.099269, 7.390281], + [-11.100713, 7.39086], + [-11.10211, 7.390723], + [-11.103062, 7.389687], + [-11.103323, 7.388379], + [-11.102449, 7.38681], + [-11.102449, 7.386261], + [-11.105259, 7.381936], + [-11.109558, 7.377262], + [-11.111554, 7.376668], + [-11.11309, 7.376621], + [-11.11375, 7.375951], + [-11.114072, 7.374626], + [-11.113873, 7.37379], + [-11.113259, 7.373027], + [-11.113904, 7.371489], + [-11.11484, 7.369891], + [-11.11656, 7.369296], + [-11.120522, 7.366343], + [-11.121966, 7.36619], + [-11.124239, 7.36421], + [-11.126171, 7.361096], + [-11.126909, 7.3589], + [-11.128133, 7.359169], + [-11.127498, 7.360799], + [-11.125606, 7.363235], + [-11.125205, 7.364287], + [-11.1237, 7.366251], + [-11.122641, 7.367042], + [-11.121243, 7.367165], + [-11.117068, 7.369997], + [-11.116397, 7.370649], + [-11.11795, 7.373339], + [-11.125763, 7.37334], + [-11.129668, 7.380104], + [-11.125763, 7.386871], + [-11.129668, 7.393637], + [-11.125763, 7.400403], + [-11.129668, 7.407169], + [-11.125763, 7.413935], + [-11.129669, 7.420699], + [-11.137482, 7.4207], + [-11.141387, 7.427466], + [-11.137482, 7.434232], + [-11.141388, 7.440997], + [-11.149199, 7.440998], + [-11.151199, 7.44446], + [-11.150736, 7.450942], + [-11.150734, 7.450943], + [-11.150541, 7.45085], + [-11.149478, 7.451069], + [-11.149211, 7.451283], + [-11.149289, 7.451772], + [-11.14894, 7.452374], + [-11.148184, 7.452521], + [-11.148111, 7.452803], + [-11.148819, 7.45343], + [-11.148529, 7.454529], + [-11.1492, 7.45453], + [-11.153106, 7.461294], + [-11.1492, 7.468061], + [-11.153106, 7.474827], + [-11.1492, 7.481593], + [-11.153107, 7.488358], + [-11.159061, 7.488359], + [-11.15875, 7.48875], + [-11.15875, 7.497083], + [-11.171249, 7.50125], + [-11.17375, 7.512916], + [-11.183749, 7.512084], + [-11.186282, 7.512084], + [-11.186283, 7.512085], + [-11.185473, 7.513488], + [-11.185752, 7.514698], + [-11.186102, 7.515387], + [-11.18677, 7.516018], + [-11.188183, 7.516847], + [-11.190122, 7.516996], + [-11.193333, 7.510707], + [-11.194006, 7.508793], + [-11.194711, 7.507865], + [-11.196237, 7.506735], + [-11.196546, 7.506353], + [-11.198622, 7.506542], + [-11.198733, 7.506735], + [-11.194828, 7.5135], + [-11.197378, 7.517916], + [-11.20125, 7.517917], + [-11.206249, 7.522917], + [-11.206249, 7.532083], + [-11.204878, 7.533798], + [-11.206546, 7.533798], + [-11.210453, 7.527033], + [-11.218265, 7.527033], + [-11.222172, 7.533798], + [-11.226267, 7.533798], + [-11.2261, 7.5278], + [-11.2261, 7.5241], + [-11.226699, 7.5209], + [-11.228, 7.5188], + [-11.230199, 7.517], + [-11.234, 7.515099], + [-11.2413, 7.509699], + [-11.2445, 7.508199], + [-11.2488, 7.505899], + [-11.2519, 7.504499], + [-11.256199, 7.5022], + [-11.2594, 7.500799], + [-11.267896, 7.496302], + [-11.272599, 7.4926], + [-11.274799, 7.4911], + [-11.278699, 7.4893], + [-11.282299, 7.4872], + [-11.2854, 7.485799], + [-11.293499, 7.4799], + [-11.297299, 7.4781], + [-11.3009, 7.476099], + [-11.304, 7.474699], + [-11.311299, 7.4692], + [-11.3163, 7.466499], + [-11.3202, 7.463199], + [-11.327699, 7.4559], + [-11.330599, 7.4538], + [-11.334499, 7.452], + [-11.337999, 7.45], + [-11.3412, 7.448599], + [-11.346499, 7.4458], + [-11.349999, 7.444499], + [-11.352699, 7.441999], + [-11.354199, 7.4389], + [-11.356119, 7.430196] + ] + ], + "type": "Polygon" + }, + "id": 145, + "properties": { + "cc:admin:id": ["138"], + "cc:oBld:total": 1798, + "cc:pop:fifteen-to-twenty-four": 2100.7317309582213, + "cc:pop:grid3-total": 9370.531064935552, + "cc:pop:kontur-total": 11345.679328776325, + "cc:pop:men": 5106.957343576412, + "cc:pop:sixty-plus": 694.878420439319, + "cc:pop:total": 10666.276244104161, + "cc:pop:under-five": 1595.1681279176316, + "cc:pop:women": 5559.318900527748, + "cc:pop:women-fiften-to-forty-nine": 2727.8300114550493, + "cc:pop:wp-total": 8890.614740198225, + "cc:pop:wp-total-UN": 10309.507953900462, + "cc:id": "145", + "cc:Name": "Gorahun CHC", + "cc:site": [-11.2373, 7.467], + "user:parentName": "Tunkia", + "user:code": "OU_222637", + "user:orgUnitId": "QpRIPul20Sb", + "user:level": "4", + "user:parentId": "l7pFejMtUoF" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [-12.593699, 7.593999], + [-12.593499, 7.5918], + [-12.5929, 7.5904], + [-12.5913, 7.5893], + [-12.591299, 7.588799], + [-12.588499, 7.5874], + [-12.5851, 7.5874], + [-12.5824, 7.587599], + [-12.5801, 7.585699], + [-12.5801, 7.5824], + [-12.581499, 7.580399], + [-12.581799, 7.5785], + [-12.580699, 7.5765], + [-12.578699, 7.575699], + [-12.5729, 7.5685], + [-12.572899, 7.5665], + [-12.5724, 7.5649], + [-12.572899, 7.564299], + [-12.573499, 7.5613], + [-12.572599, 7.560999], + [-12.571499, 7.5596], + [-12.5701, 7.559], + [-12.5693, 7.5576], + [-12.5693, 7.5524], + [-12.568999, 7.552399], + [-12.568799, 7.5488], + [-12.567599, 7.5476], + [-12.563999, 7.5488], + [-12.5624, 7.5499], + [-12.561299, 7.551299], + [-12.5601, 7.5513], + [-12.558799, 7.552099], + [-12.5568, 7.552099], + [-12.5546, 7.551299], + [-12.5515, 7.5488], + [-12.5501, 7.5482], + [-12.549599, 7.5471], + [-12.5479, 7.546199], + [-12.546799, 7.5451], + [-12.5426, 7.5449], + [-12.5424, 7.5454], + [-12.542399, 7.551499], + [-12.5401, 7.5538], + [-12.539599, 7.555699], + [-12.5379, 7.5563], + [-12.537099, 7.557899], + [-12.5343, 7.5601], + [-12.533999, 7.560999], + [-12.5296, 7.562399], + [-12.528499, 7.563199], + [-12.5243, 7.5632], + [-12.5213, 7.563999], + [-12.519899, 7.5629], + [-12.5174, 7.562599], + [-12.516799, 7.561299], + [-12.5146, 7.5588], + [-12.514599, 7.5576], + [-12.5132, 7.555699], + [-12.513199, 7.5538], + [-12.5124, 7.552899], + [-12.512399, 7.551], + [-12.511299, 7.5493], + [-12.5096, 7.549299], + [-12.507899, 7.5485], + [-12.5068, 7.548499], + [-12.505099, 7.5471], + [-12.5029, 7.5476], + [-12.5021, 7.549899], + [-12.501, 7.5504], + [-12.500999, 7.552099], + [-12.5004, 7.553799], + [-12.4996, 7.5543], + [-12.499299, 7.5557], + [-12.496499, 7.5585], + [-12.4954, 7.5604], + [-12.495099, 7.5621], + [-12.4938, 7.5635], + [-12.4938, 7.569299], + [-12.4954, 7.573999], + [-12.4962, 7.5746], + [-12.4982, 7.577599], + [-12.499, 7.5779], + [-12.4999, 7.5796], + [-12.502399, 7.582099], + [-12.5029, 7.583799], + [-12.5038, 7.584], + [-12.5046, 7.585399], + [-12.506499, 7.586], + [-12.5074, 7.587399], + [-12.508799, 7.5876], + [-12.5101, 7.588799], + [-12.511299, 7.589], + [-12.5126, 7.590699], + [-12.514299, 7.591299], + [-12.5154, 7.592599], + [-12.5165, 7.5929], + [-12.5193, 7.5957], + [-12.523499, 7.598199], + [-12.5237, 7.598999], + [-12.524899, 7.5993], + [-12.5274, 7.601499], + [-12.530399, 7.602599], + [-12.531, 7.603499], + [-12.5321, 7.6035], + [-12.5349, 7.6054], + [-12.5385, 7.606499], + [-12.5404, 7.6065], + [-12.542599, 7.607099], + [-12.544, 7.6079], + [-12.5465, 7.6088], + [-12.550699, 7.610999], + [-12.5518, 7.611], + [-12.5532, 7.611799], + [-12.556299, 7.6115], + [-12.5568, 7.612099], + [-12.561799, 7.612599], + [-12.5621, 7.6132], + [-12.564, 7.6135], + [-12.567099, 7.613499], + [-12.568799, 7.612899], + [-12.569599, 7.6118], + [-12.570699, 7.611499], + [-12.5718, 7.610099], + [-12.574599, 7.609599], + [-12.5754, 7.609], + [-12.577899, 7.608799], + [-12.5799, 7.6079], + [-12.583699, 7.607899], + [-12.584599, 7.607399], + [-12.5849, 7.605099], + [-12.586299, 7.603199], + [-12.5863, 7.602399], + [-12.588499, 7.599899], + [-12.5888, 7.5987], + [-12.589899, 7.598199], + [-12.5907, 7.5965], + [-12.591499, 7.596299], + [-12.592899, 7.5943], + [-12.593699, 7.593999] + ] + ], + [ + [ + [-12.495899, 7.5554], + [-12.4949, 7.556], + [-12.4946, 7.557899], + [-12.495399, 7.557899], + [-12.495899, 7.5554] + ] + ] + ], + "type": "MultiPolygon" + }, + "id": 146, + "properties": { + "cc:admin:id": ["18"], + "cc:oBld:total": 0, + "cc:pop:fifteen-to-twenty-four": 118.17969642517437, + "cc:pop:grid3-total": 2080.0976402267884, + "cc:pop:kontur-total": 592.8475660750936, + "cc:pop:men": 318.746878182748, + "cc:pop:sixty-plus": 54.02994499832501, + "cc:pop:total": 672.7262626932203, + "cc:pop:under-five": 110.217123712527, + "cc:pop:women": 353.97938451047224, + "cc:pop:women-fiften-to-forty-nine": 174.20964142349936, + "cc:pop:wp-total": 540.1846907290842, + "cc:pop:wp-total-UN": 628.5373805408412, + "cc:id": "146", + "cc:Name": "Govt. Hosp. Bonthe", + "cc:site": [-12.57888, 7.5918], + "user:parentName": "BMC", + "user:code": "OU_197444", + "user:orgUnitId": "NnQpISrLYWZ", + "user:level": "4", + "user:parentId": "ENHOJz3UH5L" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.211249, 7.887917], + [-11.210417, 7.887916], + [-11.210515, 7.887118], + [-11.206975, 7.887117], + [-11.20307, 7.880353], + [-11.203874, 7.878958], + [-11.203801, 7.878998], + [-11.201496, 7.877765], + [-11.201261, 7.877615], + [-11.200811, 7.877323], + [-11.200675, 7.877628], + [-11.200398, 7.877613], + [-11.199537, 7.87687], + [-11.199277, 7.876589], + [-11.199816, 7.876102], + [-11.200491, 7.874744], + [-11.20003, 7.874442], + [-11.199595, 7.8741], + [-11.199168, 7.87376], + [-11.198732, 7.873396], + [-11.199004, 7.873097], + [-11.199572, 7.87262], + [-11.199219, 7.872294], + [-11.199161, 7.87225], + [-11.198801, 7.871923], + [-11.198754, 7.871883], + [-11.198508, 7.871509], + [-11.199752, 7.870419], + [-11.199367, 7.869967], + [-11.199043, 7.869544], + [-11.198345, 7.870158], + [-11.197088, 7.871187], + [-11.197036, 7.871552], + [-11.197028, 7.871866], + [-11.19665, 7.872231], + [-11.196044, 7.871694], + [-11.195979, 7.871692], + [-11.195515, 7.87125], + [-11.195084, 7.870843], + [-11.195604, 7.870236], + [-11.193978, 7.869332], + [-11.193411, 7.869339], + [-11.193637, 7.868775], + [-11.193032, 7.868472], + [-11.192651, 7.868263], + [-11.191755, 7.867809], + [-11.189509, 7.866533], + [-11.188114, 7.865816], + [-11.187584, 7.866293], + [-11.18723, 7.86505], + [-11.18649, 7.865194], + [-11.185276, 7.865821], + [-11.184892, 7.8661], + [-11.184675, 7.866295], + [-11.18377, 7.867092], + [-11.1837, 7.867934], + [-11.184262, 7.870062], + [-11.183778, 7.870026], + [-11.183478, 7.869986], + [-11.183285, 7.869963], + [-11.182736, 7.870456], + [-11.182434, 7.870635], + [-11.182265, 7.870765], + [-11.181701, 7.871269], + [-11.181302, 7.871026], + [-11.181077, 7.871529], + [-11.180972, 7.871504], + [-11.180514, 7.871252], + [-11.179734, 7.872052], + [-11.179877, 7.873401], + [-11.179874, 7.873503], + [-11.179716, 7.87376], + [-11.179468, 7.874226], + [-11.179201, 7.87411], + [-11.178708, 7.87388], + [-11.178594, 7.874517], + [-11.178577, 7.874589], + [-11.178326, 7.874819], + [-11.177857, 7.874814], + [-11.177767, 7.874851], + [-11.177715, 7.874902], + [-11.177679, 7.875039], + [-11.177825, 7.875477], + [-11.178222, 7.875771], + [-11.178222, 7.875773], + [-11.177422, 7.87596], + [-11.175747, 7.876399], + [-11.175652, 7.87744], + [-11.174983, 7.87856], + [-11.174582, 7.879014], + [-11.17425, 7.879483], + [-11.174203, 7.879523], + [-11.173945, 7.880102], + [-11.17374, 7.880491], + [-11.174547, 7.880147], + [-11.174148, 7.881258], + [-11.173724, 7.881665], + [-11.173363, 7.881327], + [-11.172443, 7.880803], + [-11.172189, 7.880081], + [-11.172391, 7.879812], + [-11.172135, 7.879727], + [-11.171975, 7.879654], + [-11.171402, 7.879347], + [-11.170278, 7.879136], + [-11.170065, 7.878767], + [-11.170378, 7.878141], + [-11.1701, 7.878022], + [-11.169632, 7.878535], + [-11.169265, 7.87867], + [-11.169332, 7.878989], + [-11.168828, 7.879323], + [-11.167581, 7.879249], + [-11.167118, 7.879054], + [-11.166974, 7.878614], + [-11.166648, 7.878715], + [-11.166569, 7.878148], + [-11.166549, 7.877568], + [-11.165945, 7.877876], + [-11.165221, 7.877959], + [-11.165054, 7.877946], + [-11.164972, 7.878155], + [-11.164704, 7.878508], + [-11.164447, 7.878393], + [-11.163781, 7.879148], + [-11.163702, 7.879107], + [-11.163665, 7.879272], + [-11.163487, 7.879447], + [-11.163004, 7.880131], + [-11.162821, 7.880532], + [-11.162911, 7.880848], + [-11.162551, 7.881432], + [-11.16199, 7.881215], + [-11.162375, 7.88013], + [-11.163145, 7.878799], + [-11.162314, 7.878203], + [-11.161982, 7.877982], + [-11.161613, 7.877721], + [-11.161511, 7.877225], + [-11.161384, 7.877049], + [-11.161045, 7.877247], + [-11.159633, 7.878025], + [-11.15927, 7.877978], + [-11.159089, 7.877912], + [-11.1585, 7.878171], + [-11.158276, 7.87851], + [-11.15834, 7.878685], + [-11.157917, 7.879032], + [-11.157497, 7.879587], + [-11.157254, 7.881018], + [-11.15641, 7.881537], + [-11.154449, 7.883132], + [-11.154444, 7.883439], + [-11.154736, 7.883541], + [-11.155869, 7.885087], + [-11.155873, 7.885093], + [-11.157916, 7.884584], + [-11.157916, 7.886249], + [-11.156362, 7.88625], + [-11.156493, 7.886475], + [-11.156809, 7.886673], + [-11.15716, 7.886653], + [-11.158018, 7.887554], + [-11.158144, 7.887734], + [-11.158447, 7.887979], + [-11.158542, 7.888053], + [-11.158566, 7.888023], + [-11.158758, 7.887743], + [-11.158907, 7.887682], + [-11.159958, 7.887768], + [-11.160521, 7.887979], + [-11.160823, 7.888371], + [-11.161078, 7.888031], + [-11.162105, 7.887481], + [-11.162984, 7.887503], + [-11.163453, 7.887323], + [-11.163101, 7.886621], + [-11.162747, 7.886742], + [-11.162014, 7.886484], + [-11.162105, 7.885782], + [-11.162168, 7.88555], + [-11.162561, 7.884317], + [-11.162645, 7.884267], + [-11.164238, 7.884714], + [-11.164554, 7.884867], + [-11.165727, 7.885205], + [-11.16701, 7.885551], + [-11.167539, 7.885679], + [-11.167359, 7.886733], + [-11.167685, 7.886535], + [-11.168491, 7.886488], + [-11.169775, 7.886904], + [-11.170973, 7.887511], + [-11.17165, 7.887157], + [-11.172855, 7.887929], + [-11.173207, 7.887503], + [-11.173642, 7.887802], + [-11.173935, 7.887381], + [-11.174372, 7.887742], + [-11.174849, 7.887939], + [-11.175175, 7.887311], + [-11.175335, 7.887225], + [-11.175681, 7.887481], + [-11.176605, 7.888155], + [-11.177024, 7.888457], + [-11.177456, 7.887833], + [-11.177727, 7.887838], + [-11.177753, 7.887775], + [-11.178129, 7.886627], + [-11.178416, 7.886417], + [-11.179981, 7.887336], + [-11.18019, 7.887315], + [-11.180918, 7.88663], + [-11.181764, 7.886859], + [-11.181967, 7.886552], + [-11.182582, 7.886752], + [-11.183213, 7.886733], + [-11.184098, 7.886409], + [-11.184169, 7.886376], + [-11.184717, 7.886596], + [-11.184886, 7.886652], + [-11.186085, 7.887117], + [-11.185984, 7.887399], + [-11.18657, 7.887597], + [-11.186974, 7.886461], + [-11.18733, 7.886577], + [-11.187585, 7.88667], + [-11.187195, 7.887811], + [-11.187887, 7.888043], + [-11.187742, 7.888481], + [-11.188433, 7.888705], + [-11.18879, 7.887768], + [-11.189388, 7.887935], + [-11.189896, 7.88809], + [-11.190957, 7.888403], + [-11.191665, 7.888592], + [-11.191822, 7.88787], + [-11.191899, 7.887692], + [-11.192196, 7.887214], + [-11.192856, 7.886187], + [-11.193416, 7.886819], + [-11.19376, 7.888271], + [-11.193844, 7.888585], + [-11.194242, 7.889728], + [-11.195259, 7.891147], + [-11.195237, 7.891191], + [-11.195082, 7.892131], + [-11.195242, 7.892782], + [-11.195417, 7.892084], + [-11.197082, 7.892084], + [-11.200085, 7.893883], + [-11.203069, 7.893884], + [-11.204652, 7.896624], + [-11.205416, 7.897083], + [-11.207916, 7.895416], + [-11.208065, 7.894233], + [-11.208202, 7.894468], + [-11.211249, 7.894467], + [-11.211249, 7.887917] + ] + ], + "type": "Polygon" + }, + "id": 147, + "properties": { + "cc:admin:id": ["105"], + "cc:oBld:total": 7593, + "cc:pop:fifteen-to-twenty-four": 11959.20242987793, + "cc:pop:grid3-total": 73334.78906598568, + "cc:pop:kontur-total": 69410.5326635766, + "cc:pop:men": 30916.421729144648, + "cc:pop:sixty-plus": 3634.3021746909076, + "cc:pop:total": 62178.29208681212, + "cc:pop:under-five": 9753.480850504495, + "cc:pop:women": 31261.870357667456, + "cc:pop:women-fiften-to-forty-nine": 15641.719768040755, + "cc:pop:wp-total": 59803.910042372976, + "cc:pop:wp-total-UN": 69343.53812355718, + "cc:id": "147", + "cc:Name": "Govt. Hosp. Kenema", + "cc:site": [-11.1852, 7.8754], + "user:parentName": "Nongowa", + "user:code": "OU_222716", + "user:orgUnitId": "djMCTPYvltl", + "user:level": "4", + "user:parentId": "KIUCimTXf8Q" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.840599, 7.341999], + [-11.8392, 7.3373], + [-11.8379, 7.3341], + [-11.8354, 7.3298], + [-11.834099, 7.326599], + [-11.832099, 7.322999], + [-11.831299, 7.320599], + [-11.830099, 7.315499], + [-11.8278, 7.3111], + [-11.826399, 7.307999], + [-11.824, 7.3037], + [-11.822599, 7.300499], + [-11.819199, 7.2951], + [-11.815299, 7.293099], + [-11.810099, 7.2928], + [-11.7866, 7.292899], + [-11.7829, 7.2928], + [-11.7781, 7.291999], + [-11.7741, 7.2898], + [-11.7709, 7.2885], + [-11.7666, 7.2861], + [-11.7634, 7.2847], + [-11.760399, 7.282599], + [-11.7521, 7.2746], + [-11.7492, 7.271], + [-11.7473, 7.267], + [-11.745299, 7.263399], + [-11.743, 7.2587], + [-11.740399, 7.2564], + [-11.739431, 7.256142], + [-11.738194, 7.257875], + [-11.735993, 7.260348], + [-11.735175, 7.262502], + [-11.734938, 7.264187], + [-11.734983, 7.266077], + [-11.733571, 7.26708], + [-11.733074, 7.267115], + [-11.732294, 7.266771], + [-11.731417, 7.265785], + [-11.730109, 7.265035], + [-11.729413, 7.264419], + [-11.728782, 7.263569], + [-11.728322, 7.261755], + [-11.727979, 7.261176], + [-11.727273, 7.260375], + [-11.726759, 7.260049], + [-11.726587, 7.260733], + [-11.726931, 7.260946], + [-11.726373, 7.265974], + [-11.727696, 7.267084], + [-11.731762, 7.273696], + [-11.73495, 7.275782], + [-11.736658, 7.277794], + [-11.737038, 7.278044], + [-11.737916, 7.278305], + [-11.737917, 7.278962], + [-11.739446, 7.27935], + [-11.743245, 7.279933], + [-11.744967, 7.280422], + [-11.747027, 7.281451], + [-11.748926, 7.281816], + [-11.749268, 7.28212], + [-11.748377, 7.283664], + [-11.748474, 7.283835], + [-11.747267, 7.284625], + [-11.744507, 7.287146], + [-11.743912, 7.289784], + [-11.743031, 7.291508], + [-11.742308, 7.293869], + [-11.741339, 7.295733], + [-11.739809, 7.29949], + [-11.739537, 7.301634], + [-11.73976, 7.302324], + [-11.739637, 7.302808], + [-11.738952, 7.303503], + [-11.735791, 7.305174], + [-11.735239, 7.305281], + [-11.733967, 7.305897], + [-11.732912, 7.308237], + [-11.730895, 7.311266], + [-11.729284, 7.314193], + [-11.728515, 7.315856], + [-11.728375, 7.316587], + [-11.726566, 7.319098], + [-11.726007, 7.319752], + [-11.724765, 7.320583], + [-11.722376, 7.320105], + [-11.72156, 7.319583], + [-11.720808, 7.319375], + [-11.719775, 7.319175], + [-11.71927, 7.31929], + [-11.719077, 7.31976], + [-11.719184, 7.322515], + [-11.718805, 7.323324], + [-11.718704, 7.32491], + [-11.718929, 7.326157], + [-11.720373, 7.329206], + [-11.721047, 7.332994], + [-11.720419, 7.33471], + [-11.719069, 7.337465], + [-11.718324, 7.340476], + [-11.717633, 7.342215], + [-11.71573, 7.345416], + [-11.712917, 7.345417], + [-11.713749, 7.351249], + [-11.712917, 7.352084], + [-11.71235, 7.354349], + [-11.711255, 7.353749], + [-11.710662, 7.353849], + [-11.709237, 7.355364], + [-11.708229, 7.355923], + [-11.707976, 7.356393], + [-11.708072, 7.356889], + [-11.707569, 7.357639], + [-11.706823, 7.357931], + [-11.705531, 7.357913], + [-11.704781, 7.358771], + [-11.704762, 7.3588], + [-11.704491, 7.35956], + [-11.704658, 7.360568], + [-11.705221, 7.361183], + [-11.705785, 7.361276], + [-11.705868, 7.361445], + [-11.705518, 7.361814], + [-11.705946, 7.36423], + [-11.705663, 7.365815], + [-11.705449, 7.365808], + [-11.705801, 7.366688], + [-11.705585, 7.367055], + [-11.705581, 7.368143], + [-11.70602, 7.369363], + [-11.706575, 7.369699], + [-11.707063, 7.370526], + [-11.707236, 7.371503], + [-11.707185, 7.371529], + [-11.706214, 7.372622], + [-11.705429, 7.372649], + [-11.704343, 7.371947], + [-11.702728, 7.369994], + [-11.702345, 7.369967], + [-11.701588, 7.370358], + [-11.699722, 7.372627], + [-11.69892, 7.373272], + [-11.699327, 7.376124], + [-11.699721, 7.376487], + [-11.699649, 7.377542], + [-11.699325, 7.378316], + [-11.696681, 7.381767], + [-11.696857, 7.38273], + [-11.697516, 7.383642], + [-11.697385, 7.384061], + [-11.698411, 7.384987], + [-11.697753, 7.385886], + [-11.697726, 7.386342], + [-11.699525, 7.387916], + [-11.699695, 7.389482], + [-11.69985, 7.389927], + [-11.699444, 7.390926], + [-11.698106, 7.393], + [-11.697616, 7.393524], + [-11.696755, 7.394054], + [-11.695986, 7.394016], + [-11.694954, 7.393255], + [-11.694582, 7.39344], + [-11.694365, 7.393886], + [-11.694435, 7.394148], + [-11.694667, 7.394624], + [-11.695163, 7.395032], + [-11.694947, 7.395495], + [-11.694969, 7.396079], + [-11.695288, 7.39701], + [-11.696305, 7.398642], + [-11.696534, 7.398617], + [-11.69733, 7.398782], + [-11.697881, 7.398401], + [-11.69828, 7.397842], + [-11.699339, 7.399025], + [-11.699947, 7.399326], + [-11.700182, 7.399376], + [-11.700181, 7.399378], + [-11.700014, 7.399363], + [-11.699536, 7.399588], + [-11.699089, 7.39933], + [-11.698737, 7.399842], + [-11.698697, 7.400266], + [-11.698872, 7.400475], + [-11.699986, 7.401101], + [-11.700546, 7.401202], + [-11.701353, 7.400999], + [-11.702192, 7.401177], + [-11.702391, 7.400917], + [-11.703558, 7.40126], + [-11.703903, 7.402687], + [-11.702921, 7.40469], + [-11.702103, 7.407127], + [-11.702069, 7.407687], + [-11.701795, 7.407883], + [-11.701932, 7.408426], + [-11.702732, 7.408992], + [-11.704843, 7.409174], + [-11.707483, 7.409709], + [-11.707327, 7.410484], + [-11.709744, 7.409939], + [-11.710335, 7.409047], + [-11.71073, 7.408739], + [-11.712244, 7.408], + [-11.714215, 7.407792], + [-11.715163, 7.408145], + [-11.717335, 7.408207], + [-11.718198, 7.407968], + [-11.719517, 7.407284], + [-11.720185, 7.407269], + [-11.720556, 7.407915], + [-11.720419, 7.409545], + [-11.72089, 7.411484], + [-11.720562, 7.413289], + [-11.72089, 7.413997], + [-11.72134, 7.414521], + [-11.721407, 7.415858], + [-11.722285, 7.417905], + [-11.723495, 7.418687], + [-11.724512, 7.418888], + [-11.72542, 7.419642], + [-11.727181, 7.419881], + [-11.728446, 7.420573], + [-11.729076, 7.421667], + [-11.729611, 7.423675], + [-11.730178, 7.424569], + [-11.73062, 7.42503], + [-11.732218, 7.425907], + [-11.733724, 7.426077], + [-11.73478, 7.426878], + [-11.736679, 7.429717], + [-11.737393, 7.43135], + [-11.738611, 7.433129], + [-11.739302, 7.433794], + [-11.739912, 7.435072], + [-11.740791, 7.435644], + [-11.741894, 7.43602], + [-11.746219, 7.43863], + [-11.7458, 7.432999], + [-11.746, 7.426199], + [-11.7466, 7.423499], + [-11.750199, 7.416], + [-11.7527, 7.412699], + [-11.762499, 7.4028], + [-11.765499, 7.3995], + [-11.7673, 7.396799], + [-11.7691, 7.392899], + [-11.7712, 7.390199], + [-11.7746, 7.387199], + [-11.7789, 7.385199], + [-11.7832, 7.382899], + [-11.7871, 7.381099], + [-11.7904, 7.378399], + [-11.797799, 7.371], + [-11.801099, 7.3684], + [-11.804899, 7.3665], + [-11.806999, 7.3652], + [-11.810899, 7.3619], + [-11.812899, 7.3606], + [-11.8161, 7.359199], + [-11.8204, 7.356799], + [-11.8236, 7.355399], + [-11.8256, 7.353999], + [-11.8302, 7.350299], + [-11.836, 7.347099], + [-11.8385, 7.344899], + [-11.840599, 7.341999] + ], + [ + [-11.725416, 7.406249], + [-11.727083, 7.404584], + [-11.732082, 7.407917], + [-11.727917, 7.412084], + [-11.726249, 7.41625], + [-11.723816, 7.418075], + [-11.722799, 7.41754], + [-11.722016, 7.415955], + [-11.722054, 7.414597], + [-11.721539, 7.413367], + [-11.721669, 7.412594], + [-11.721396, 7.411537], + [-11.721516, 7.410765], + [-11.721124, 7.409509], + [-11.721418, 7.408546], + [-11.721388, 7.407823], + [-11.720967, 7.406946], + [-11.72051, 7.406568], + [-11.71968, 7.406522], + [-11.719019, 7.406722], + [-11.717809, 7.407414], + [-11.717211, 7.407223], + [-11.715947, 7.407422], + [-11.715869, 7.407392], + [-11.717083, 7.40375], + [-11.722917, 7.406249], + [-11.725416, 7.406249] + ] + ], + "type": "Polygon" + }, + "id": 148, + "properties": { + "cc:admin:id": ["66"], + "cc:oBld:total": 2186, + "cc:pop:fifteen-to-twenty-four": 6663.3583234717125, + "cc:pop:grid3-total": 26720.472781553886, + "cc:pop:kontur-total": 38570.284520586465, + "cc:pop:men": 18173.745078038963, + "cc:pop:sixty-plus": 2734.3446402482277, + "cc:pop:total": 37397.87467425242, + "cc:pop:under-five": 6221.533288186313, + "cc:pop:women": 19224.129596213486, + "cc:pop:women-fiften-to-forty-nine": 9202.290457463385, + "cc:pop:wp-total": 27844.973557014753, + "cc:pop:wp-total-UN": 32296.55937363369, + "cc:id": "148", + "cc:Name": "Govt. Hosp. Pujehun", + "cc:site": [-11.7191, 7.3508], + "user:parentName": "Kpanga Kabonde", + "user:code": "OU_260401", + "user:orgUnitId": "STv4PP4Hiyl", + "user:level": "4", + "user:parentId": "QwMiPiME3bA" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.813845, 8.775476], + [-12.813712, 8.775314], + [-12.81265, 8.775911], + [-12.811753, 8.777447], + [-12.811435, 8.777801], + [-12.811334, 8.777605], + [-12.811162, 8.77767], + [-12.810817, 8.778287], + [-12.810763, 8.778877], + [-12.809934, 8.77895], + [-12.809747, 8.779402], + [-12.809323, 8.779495], + [-12.809502, 8.779849], + [-12.808586, 8.780577], + [-12.807736, 8.780354], + [-12.807795, 8.779933], + [-12.807383, 8.779678], + [-12.806155, 8.779454], + [-12.806068, 8.779401], + [-12.805417, 8.778749], + [-12.808337, 8.773638], + [-12.808086, 8.773537], + [-12.808058, 8.772803], + [-12.807441, 8.771352], + [-12.807102, 8.77109], + [-12.806498, 8.7712], + [-12.805847, 8.770834], + [-12.805063, 8.770906], + [-12.804239, 8.771094], + [-12.802858, 8.771697], + [-12.802388, 8.771429], + [-12.801459, 8.771317], + [-12.801681, 8.770429], + [-12.802385, 8.770128], + [-12.803181, 8.770023], + [-12.804469, 8.769092], + [-12.805159, 8.769051], + [-12.805791, 8.768167], + [-12.805416, 8.767916], + [-12.804583, 8.765416], + [-12.804583, 8.760418], + [-12.804584, 8.760417], + [-12.806007, 8.760843], + [-12.805907, 8.760649], + [-12.806371, 8.760163], + [-12.806339, 8.759455], + [-12.805847, 8.759139], + [-12.805514, 8.758668], + [-12.805109, 8.758614], + [-12.804665, 8.758227], + [-12.804328, 8.757684], + [-12.804407, 8.757596], + [-12.804308, 8.757279], + [-12.804758, 8.757132], + [-12.805375, 8.757295], + [-12.805853, 8.757932], + [-12.805854, 8.758371], + [-12.806079, 8.758608], + [-12.806657, 8.758517], + [-12.80689, 8.75887], + [-12.807767, 8.758576], + [-12.809294, 8.75895], + [-12.809978, 8.758969], + [-12.810601, 8.758825], + [-12.810667, 8.75875], + [-12.809582, 8.758749], + [-12.804246, 8.756081], + [-12.804343, 8.755592], + [-12.805241, 8.754937], + [-12.806105, 8.755029], + [-12.806644, 8.751685], + [-12.807031, 8.751944], + [-12.807155, 8.752717], + [-12.80819, 8.752723], + [-12.807678, 8.751691], + [-12.807161, 8.751687], + [-12.806905, 8.751042], + [-12.806389, 8.750909], + [-12.806394, 8.750138], + [-12.80769, 8.749629], + [-12.807567, 8.748856], + [-12.808088, 8.748086], + [-12.808223, 8.747057], + [-12.808741, 8.747059], + [-12.808747, 8.746287], + [-12.809263, 8.746289], + [-12.809527, 8.745518], + [-12.80966, 8.745003], + [-12.809534, 8.744488], + [-12.810182, 8.744234], + [-12.810007, 8.743264], + [-12.809567, 8.742889], + [-12.809567, 8.742888], + [-12.80964, 8.742837], + [-12.809142, 8.742398], + [-12.809011, 8.742637], + [-12.808229, 8.7422], + [-12.808133, 8.742851], + [-12.80793, 8.742968], + [-12.807292, 8.741888], + [-12.80701, 8.741787], + [-12.806823, 8.742087], + [-12.806108, 8.741887], + [-12.805926, 8.741375], + [-12.805898, 8.739239], + [-12.805448, 8.739418], + [-12.805098, 8.739807], + [-12.805046, 8.740276], + [-12.803646, 8.741822], + [-12.803574, 8.742005], + [-12.803462, 8.742189], + [-12.803417, 8.742533], + [-12.803473, 8.74294], + [-12.80354, 8.743253], + [-12.802049, 8.743047], + [-12.801013, 8.743361], + [-12.800584, 8.7424], + [-12.800226, 8.74226], + [-12.800116, 8.741745], + [-12.799642, 8.741037], + [-12.79919, 8.74082], + [-12.799346, 8.740298], + [-12.800116, 8.740658], + [-12.800421, 8.740444], + [-12.80071, 8.740692], + [-12.800974, 8.740351], + [-12.800776, 8.739541], + [-12.8019, 8.739025], + [-12.802089, 8.738758], + [-12.80097, 8.738168], + [-12.799209, 8.737671], + [-12.798102, 8.737568], + [-12.796808, 8.73772], + [-12.796736, 8.73773], + [-12.794065, 8.740917], + [-12.792876, 8.743359], + [-12.792131, 8.744512], + [-12.790831, 8.743333], + [-12.790586, 8.742415], + [-12.791249, 8.742082], + [-12.791249, 8.739821], + [-12.789985, 8.740023], + [-12.789491, 8.740241], + [-12.789244, 8.740375], + [-12.788979, 8.740589], + [-12.788812, 8.740786], + [-12.788398, 8.74211], + [-12.788558, 8.742347], + [-12.788725, 8.742433], + [-12.788996, 8.742418], + [-12.789179, 8.742529], + [-12.789284, 8.743797], + [-12.789713, 8.743805], + [-12.790439, 8.74342], + [-12.790607, 8.743716], + [-12.790631, 8.743892], + [-12.790057, 8.744751], + [-12.789316, 8.745106], + [-12.788933, 8.744814], + [-12.788868, 8.744216], + [-12.788518, 8.744192], + [-12.788269, 8.744901], + [-12.787832, 8.745407], + [-12.787496, 8.746511], + [-12.787425, 8.746754], + [-12.787489, 8.746943], + [-12.787728, 8.746881], + [-12.78786, 8.747774], + [-12.786696, 8.748793], + [-12.786401, 8.748736], + [-12.786165, 8.747939], + [-12.786464, 8.747557], + [-12.785638, 8.747419], + [-12.784518, 8.747923], + [-12.784379, 8.747021], + [-12.783516, 8.746512], + [-12.782921, 8.746392], + [-12.782653, 8.746677], + [-12.781144, 8.747237], + [-12.780758, 8.747213], + [-12.780565, 8.746936], + [-12.780244, 8.746855], + [-12.779808, 8.74695], + [-12.779788, 8.746959], + [-12.780199, 8.748339], + [-12.780742, 8.749435], + [-12.781243, 8.749914], + [-12.781383, 8.749958], + [-12.782001, 8.750225], + [-12.782949, 8.750706], + [-12.782621, 8.75115], + [-12.782159, 8.751267], + [-12.782332, 8.751502], + [-12.782332, 8.751503], + [-12.780896, 8.750892], + [-12.779986, 8.750937], + [-12.779426, 8.751022], + [-12.779488, 8.751139], + [-12.779718, 8.751593], + [-12.779317, 8.751977], + [-12.778614, 8.752554], + [-12.778378, 8.752733], + [-12.777156, 8.753473], + [-12.777154, 8.753472], + [-12.776985, 8.752738], + [-12.777032, 8.752692], + [-12.7761, 8.751037], + [-12.775428, 8.750936], + [-12.771479, 8.749545], + [-12.770549, 8.749287], + [-12.768139, 8.748609], + [-12.767752, 8.748615], + [-12.769733, 8.749423], + [-12.770329, 8.749874], + [-12.771125, 8.750807], + [-12.771588, 8.75173], + [-12.771872, 8.752973], + [-12.772328, 8.762437], + [-12.772347, 8.76282], + [-12.771788, 8.763044], + [-12.770982, 8.763704], + [-12.770523, 8.764499], + [-12.770246, 8.765902], + [-12.769229, 8.765908], + [-12.767756, 8.767248], + [-12.767383, 8.766864], + [-12.767245, 8.765761], + [-12.766898, 8.764844], + [-12.765237, 8.763581], + [-12.763485, 8.762817], + [-12.763188, 8.762429], + [-12.762822, 8.762502], + [-12.762659, 8.761242], + [-12.762365, 8.760922], + [-12.761564, 8.760946], + [-12.760639, 8.761348], + [-12.758768, 8.762621], + [-12.757301, 8.763364], + [-12.756246, 8.764175], + [-12.755454, 8.76522], + [-12.753476, 8.765575], + [-12.752983, 8.76557], + [-12.750765, 8.764352], + [-12.749091, 8.764457], + [-12.745905, 8.764978], + [-12.745256, 8.764944], + [-12.743758, 8.76414], + [-12.742393, 8.763945], + [-12.739598, 8.763911], + [-12.738989, 8.764086], + [-12.737577, 8.765057], + [-12.736262, 8.766944], + [-12.733321, 8.768309], + [-12.730675, 8.76867], + [-12.728363, 8.768681], + [-12.726593, 8.769088], + [-12.725915, 8.769926], + [-12.726399, 8.771789], + [-12.727335, 8.773912], + [-12.727236, 8.774698], + [-12.726195, 8.776026], + [-12.725518, 8.776087], + [-12.725096, 8.775583], + [-12.724631, 8.773729], + [-12.72429, 8.773547], + [-12.723647, 8.773626], + [-12.723069, 8.774015], + [-12.722814, 8.774432], + [-12.722823, 8.774917], + [-12.72331, 8.775525], + [-12.723373, 8.775869], + [-12.722567, 8.777253], + [-12.721682, 8.77761], + [-12.719239, 8.777313], + [-12.719085, 8.777707], + [-12.719314, 8.779154], + [-12.719487, 8.779695], + [-12.719606, 8.779868], + [-12.726356, 8.782118], + [-12.726357, 8.78212], + [-12.724876, 8.782487], + [-12.724002, 8.782926], + [-12.723616, 8.783349], + [-12.723327, 8.783939], + [-12.722233, 8.785177], + [-12.720269, 8.78583], + [-12.719348, 8.786362], + [-12.717839, 8.786939], + [-12.716155, 8.788259], + [-12.714133, 8.788617], + [-12.714583, 8.790416], + [-12.717916, 8.793749], + [-12.719583, 8.79375], + [-12.725416, 8.803749], + [-12.726249, 8.804582], + [-12.72625, 8.805416], + [-12.730416, 8.806249], + [-12.732082, 8.806249], + [-12.736249, 8.802916], + [-12.737034, 8.800563], + [-12.740496, 8.806558], + [-12.740529, 8.806559], + [-12.740417, 8.807916], + [-12.750416, 8.807917], + [-12.754153, 8.808539], + [-12.754202, 8.80847], + [-12.754518, 8.808871], + [-12.75466, 8.809062], + [-12.759583, 8.80625], + [-12.762916, 8.807917], + [-12.760417, 8.816249], + [-12.770283, 8.818716], + [-12.770165, 8.818963], + [-12.773749, 8.825416], + [-12.77375, 8.827916], + [-12.777995, 8.826703], + [-12.779014, 8.825416], + [-12.778937, 8.82478], + [-12.779606, 8.823896], + [-12.780039, 8.823742], + [-12.781242, 8.823728], + [-12.78362, 8.824477], + [-12.785504, 8.824413], + [-12.785504, 8.824414], + [-12.784173, 8.825203], + [-12.783556, 8.825293], + [-12.783022, 8.825206], + [-12.780417, 8.830416], + [-12.780417, 8.831249], + [-12.795559, 8.836549], + [-12.7973, 8.835099], + [-12.798941, 8.832815], + [-12.79726, 8.82949], + [-12.806249, 8.821249], + [-12.805609, 8.817404], + [-12.805679, 8.8174], + [-12.806971, 8.816483], + [-12.807497, 8.816107], + [-12.808189, 8.814902], + [-12.809026, 8.814435], + [-12.810718, 8.814451], + [-12.811239, 8.814149], + [-12.811918, 8.813894], + [-12.812246, 8.813463], + [-12.812773, 8.811234], + [-12.813103, 8.810684], + [-12.811855, 8.808985], + [-12.810067, 8.807943], + [-12.812082, 8.804583], + [-12.812916, 8.803749], + [-12.810417, 8.797917], + [-12.811249, 8.795417], + [-12.808749, 8.792917], + [-12.80625, 8.792082], + [-12.807654, 8.787171], + [-12.811736, 8.789443], + [-12.812916, 8.787083], + [-12.812916, 8.78625], + [-12.811249, 8.78375], + [-12.809583, 8.782916], + [-12.80875, 8.782082], + [-12.811519, 8.779867], + [-12.811986, 8.78045], + [-12.811929, 8.779245], + [-12.811583, 8.778594], + [-12.811807, 8.778057], + [-12.812117, 8.777889], + [-12.8124, 8.777211], + [-12.813845, 8.775476] + ] + ], + "type": "Polygon" + }, + "id": 149, + "properties": { + "cc:admin:id": ["80"], + "cc:oBld:total": 6248, + "cc:pop:fifteen-to-twenty-four": 7366.715195080505, + "cc:pop:grid3-total": 35867.41560481504, + "cc:pop:kontur-total": 40089.59369781611, + "cc:pop:men": 18508.414430565932, + "cc:pop:sixty-plus": 2437.6474008529544, + "cc:pop:total": 39741.116547163125, + "cc:pop:under-five": 6347.152794967616, + "cc:pop:women": 21232.70211659723, + "cc:pop:women-fiften-to-forty-nine": 10301.8257377357, + "cc:pop:wp-total": 32154.57749476788, + "cc:pop:wp-total-UN": 37275.302639521076, + "cc:id": "149", + "cc:Name": "Govt. Hospital", + "cc:site": [-12.785, 8.7657], + "user:parentName": "Maforki", + "user:code": "OU_254955", + "user:orgUnitId": "ZvX8lXd1tYs", + "user:level": "4", + "user:parentId": "JdqfYTIFZXN" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.492246, 8.177083], + [-12.4921, 8.1707], + [-12.4915, 8.1657], + [-12.489, 8.1595], + [-12.4883, 8.1555], + [-12.488, 8.1473], + [-12.4874, 8.1429], + [-12.485199, 8.137499], + [-12.484599, 8.134999], + [-12.484, 8.1297], + [-12.4832, 8.1271], + [-12.481199, 8.123999], + [-12.479299, 8.121899], + [-12.4725, 8.1152], + [-12.4701, 8.1123], + [-12.467099, 8.106999], + [-12.462499, 8.101199], + [-12.4586, 8.0937], + [-12.457899, 8.091599], + [-12.457399, 8.088299], + [-12.457299, 8.084399], + [-12.457206, 8.068815], + [-12.44875, 8.069584], + [-12.449582, 8.072083], + [-12.450416, 8.07375], + [-12.44875, 8.077916], + [-12.444583, 8.080417], + [-12.442916, 8.08375], + [-12.434583, 8.087916], + [-12.432082, 8.087916], + [-12.429583, 8.085417], + [-12.429582, 8.083976], + [-12.425925, 8.083976], + [-12.422019, 8.090741], + [-12.425924, 8.097507], + [-12.422018, 8.104272], + [-12.42129, 8.104272], + [-12.421249, 8.103749], + [-12.417082, 8.100417], + [-12.411274, 8.100417], + [-12.411766, 8.101152], + [-12.412172, 8.101353], + [-12.412322, 8.101609], + [-12.411812, 8.102761], + [-12.411861, 8.103247], + [-12.412728, 8.10433], + [-12.41349, 8.104675], + [-12.414237, 8.105381], + [-12.414501, 8.10599], + [-12.41433, 8.10755], + [-12.414487, 8.108502], + [-12.414025, 8.109279], + [-12.413964, 8.10989], + [-12.413465, 8.110775], + [-12.413675, 8.111394], + [-12.413586, 8.112394], + [-12.411642, 8.11403], + [-12.410899, 8.11479], + [-12.410312, 8.115906], + [-12.410031, 8.115912], + [-12.409827, 8.115914], + [-12.409979, 8.115519], + [-12.41099, 8.113739], + [-12.411789, 8.113295], + [-12.412953, 8.112324], + [-12.413212, 8.111693], + [-12.413199, 8.110505], + [-12.413855, 8.108636], + [-12.41381, 8.107917], + [-12.414036, 8.106309], + [-12.413643, 8.105294], + [-12.412584, 8.10456], + [-12.411539, 8.103148], + [-12.411516, 8.102471], + [-12.41194, 8.101698], + [-12.411266, 8.100797], + [-12.410773, 8.100417], + [-12.407083, 8.100417], + [-12.40125, 8.104584], + [-12.400417, 8.116249], + [-12.404465, 8.120299], + [-12.403539, 8.121592], + [-12.406708, 8.127083], + [-12.400417, 8.127084], + [-12.397187, 8.129666], + [-12.39732, 8.129741], + [-12.399238, 8.130761], + [-12.397083, 8.132917], + [-12.397757, 8.138318], + [-12.397425, 8.138526], + [-12.396581, 8.140366], + [-12.396447, 8.141411], + [-12.396685, 8.141851], + [-12.397622, 8.14284], + [-12.397622, 8.142841], + [-12.38625, 8.142084], + [-12.38625, 8.150416], + [-12.389583, 8.154583], + [-12.391124, 8.155096], + [-12.39252, 8.153793], + [-12.39277, 8.15343], + [-12.392804, 8.153026], + [-12.393124, 8.152672], + [-12.39315, 8.151623], + [-12.394513, 8.15041], + [-12.395446, 8.149993], + [-12.396108, 8.149405], + [-12.396552, 8.148171], + [-12.397163, 8.147057], + [-12.397427, 8.146901], + [-12.397681, 8.147171], + [-12.397627, 8.147243], + [-12.396558, 8.14892], + [-12.396346, 8.14969], + [-12.395752, 8.150102], + [-12.39543, 8.150612], + [-12.394694, 8.150707], + [-12.393861, 8.151589], + [-12.393698, 8.152007], + [-12.393687, 8.152988], + [-12.394465, 8.15384], + [-12.394785, 8.153737], + [-12.395009, 8.153881], + [-12.395308, 8.154529], + [-12.395308, 8.155084], + [-12.394858, 8.155504], + [-12.394425, 8.156477], + [-12.393546, 8.157682], + [-12.393023, 8.158232], + [-12.392377, 8.158535], + [-12.390962, 8.1602], + [-12.389413, 8.161402], + [-12.388314, 8.162692], + [-12.387942, 8.162934], + [-12.387668, 8.162926], + [-12.387405, 8.163184], + [-12.386782, 8.165266], + [-12.384475, 8.166771], + [-12.384223, 8.166835], + [-12.384583, 8.167916], + [-12.387917, 8.169584], + [-12.390416, 8.173749], + [-12.390417, 8.176249], + [-12.395416, 8.182083], + [-12.395417, 8.184583], + [-12.399583, 8.186249], + [-12.401249, 8.186249], + [-12.405417, 8.184584], + [-12.409282, 8.187675], + [-12.409112, 8.188215], + [-12.411249, 8.188749], + [-12.412083, 8.18875], + [-12.416249, 8.195416], + [-12.417083, 8.198749], + [-12.417916, 8.199584], + [-12.417917, 8.206249], + [-12.422916, 8.20625], + [-12.426249, 8.209584], + [-12.42375, 8.216249], + [-12.42125, 8.222083], + [-12.430416, 8.223749], + [-12.433749, 8.224584], + [-12.432083, 8.231249], + [-12.432917, 8.23125], + [-12.437082, 8.235417], + [-12.437083, 8.239584], + [-12.439189, 8.247305], + [-12.4399, 8.246899], + [-12.4483, 8.243099], + [-12.4508, 8.242399], + [-12.458299, 8.241499], + [-12.466299, 8.2379], + [-12.4686, 8.236299], + [-12.471199, 8.2337], + [-12.472899, 8.2315], + [-12.4752, 8.226899], + [-12.4776, 8.223899], + [-12.482199, 8.2189], + [-12.484299, 8.2159], + [-12.487899, 8.2083], + [-12.4885, 8.205599], + [-12.488799, 8.1988], + [-12.489199, 8.195], + [-12.4916, 8.188899], + [-12.4922, 8.184199], + [-12.492299, 8.1794], + [-12.492246, 8.177083] + ] + ], + "type": "Polygon" + }, + "id": 150, + "properties": { + "cc:admin:id": ["45"], + "cc:oBld:total": 4987, + "cc:pop:fifteen-to-twenty-four": 3310.579101011587, + "cc:pop:grid3-total": 17797.927677171672, + "cc:pop:kontur-total": 18557.060644095, + "cc:pop:men": 8754.875192843385, + "cc:pop:sixty-plus": 1325.5639967538516, + "cc:pop:total": 18512.57701886977, + "cc:pop:under-five": 3055.370106408745, + "cc:pop:women": 9757.701826026403, + "cc:pop:women-fiften-to-forty-nine": 4568.2552545485305, + "cc:pop:wp-total": 13662.670301616592, + "cc:pop:wp-total-UN": 15835.25824934419, + "cc:id": "150", + "cc:Name": "Govt. Hospital Moyamba", + "cc:site": [-12.4343, 8.1597], + "user:parentName": "Kaiyamba", + "user:code": "OU_247056", + "user:orgUnitId": "U8uqyDAu5bH", + "user:level": "4", + "user:parentId": "USQdmvrHh1Q" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.615416, 8.322917], + [-10.604583, 8.317916], + [-10.604582, 8.315417], + [-10.602548, 8.311347], + [-10.602534, 8.310234], + [-10.602416, 8.309872], + [-10.602299, 8.30931], + [-10.602475, 8.307904], + [-10.602813, 8.306815], + [-10.602837, 8.306779], + [-10.60125, 8.30625], + [-10.600416, 8.307084], + [-10.589583, 8.307083], + [-10.587916, 8.302084], + [-10.58375, 8.29625], + [-10.582916, 8.296249], + [-10.581249, 8.29125], + [-10.580416, 8.29125], + [-10.57625, 8.292083], + [-10.575422, 8.292911], + [-10.575204, 8.29267], + [-10.575147, 8.292492], + [-10.575086, 8.290915], + [-10.574127, 8.289432], + [-10.573765, 8.288502], + [-10.573391, 8.287668], + [-10.573276, 8.287091], + [-10.573667, 8.286005], + [-10.573714, 8.285407], + [-10.57335, 8.284268], + [-10.573404, 8.283195], + [-10.573427, 8.283104], + [-10.573642, 8.282455], + [-10.574128, 8.281835], + [-10.572763, 8.281127], + [-10.571923, 8.280764], + [-10.57136, 8.280288], + [-10.571067, 8.279897], + [-10.57095, 8.278966], + [-10.570876, 8.278526], + [-10.570772, 8.278516], + [-10.570575, 8.277882], + [-10.57054, 8.277881], + [-10.569662, 8.277794], + [-10.569649, 8.277646], + [-10.569867, 8.277197], + [-10.570452, 8.276481], + [-10.570545, 8.276378], + [-10.570569, 8.275687], + [-10.570276, 8.275632], + [-10.5703, 8.275259], + [-10.569791, 8.275065], + [-10.569452, 8.274529], + [-10.569057, 8.274306], + [-10.569091, 8.274009], + [-10.568833, 8.273686], + [-10.568831, 8.273567], + [-10.569281, 8.273083], + [-10.569318, 8.27251], + [-10.569343, 8.271945], + [-10.569344, 8.271851], + [-10.569403, 8.271484], + [-10.569247, 8.271376], + [-10.569222, 8.271334], + [-10.569278, 8.271236], + [-10.5691, 8.270726], + [-10.569248, 8.270153], + [-10.5682, 8.269402], + [-10.568052, 8.269412], + [-10.566626, 8.270164], + [-10.566607, 8.270426], + [-10.566075, 8.27131], + [-10.56603, 8.271391], + [-10.565676, 8.271693], + [-10.565079, 8.271685], + [-10.565101, 8.271856], + [-10.564528, 8.27198], + [-10.564322, 8.272225], + [-10.564095, 8.271721], + [-10.563956, 8.271424], + [-10.563904, 8.271284], + [-10.563605, 8.270502], + [-10.563494, 8.270154], + [-10.563409, 8.269884], + [-10.562562, 8.270094], + [-10.562433, 8.269738], + [-10.562252, 8.269251], + [-10.56218, 8.268536], + [-10.562282, 8.2672], + [-10.561941, 8.266577], + [-10.561409, 8.266203], + [-10.560793, 8.266024], + [-10.559745, 8.265245], + [-10.558849, 8.263675], + [-10.558649, 8.263574], + [-10.557707, 8.263243], + [-10.556865, 8.263222], + [-10.554954, 8.263593], + [-10.553534, 8.264121], + [-10.551537, 8.264237], + [-10.549773, 8.264875], + [-10.548334, 8.264684], + [-10.547245, 8.263842], + [-10.546344, 8.263231], + [-10.545729, 8.262932], + [-10.545349, 8.262722], + [-10.545271, 8.262669], + [-10.544965, 8.262453], + [-10.542855, 8.260999], + [-10.542477, 8.260535], + [-10.542378, 8.25921], + [-10.542264, 8.258847], + [-10.541866, 8.25845], + [-10.540551, 8.257659], + [-10.539495, 8.256793], + [-10.538128, 8.256565], + [-10.535864, 8.255229], + [-10.534646, 8.255082], + [-10.533829, 8.255092], + [-10.532751, 8.255547], + [-10.531928, 8.255673], + [-10.531249, 8.260416], + [-10.52625, 8.259584], + [-10.522083, 8.264584], + [-10.522917, 8.269584], + [-10.525452, 8.272751], + [-10.526, 8.272603], + [-10.527081, 8.271765], + [-10.527082, 8.271765], + [-10.527083, 8.277916], + [-10.52375, 8.281249], + [-10.522083, 8.28375], + [-10.522082, 8.287917], + [-10.51625, 8.29125], + [-10.516705, 8.293986], + [-10.514825, 8.294779], + [-10.513825, 8.294721], + [-10.512984, 8.294869], + [-10.512232, 8.294685], + [-10.511395, 8.2947], + [-10.510138, 8.295846], + [-10.508798, 8.296222], + [-10.507995, 8.296258], + [-10.507203, 8.29685], + [-10.509814, 8.301375], + [-10.50625, 8.304584], + [-10.506249, 8.306249], + [-10.494583, 8.309584], + [-10.49375, 8.317916], + [-10.492917, 8.317917], + [-10.49125, 8.319584], + [-10.490416, 8.323749], + [-10.487083, 8.32625], + [-10.487082, 8.327084], + [-10.480417, 8.329584], + [-10.480417, 8.331249], + [-10.481249, 8.332917], + [-10.479583, 8.33625], + [-10.479974, 8.337421], + [-10.480176, 8.337298], + [-10.480402, 8.33707], + [-10.480416, 8.337084], + [-10.479583, 8.341249], + [-10.47875, 8.34125], + [-10.477917, 8.344583], + [-10.483749, 8.349583], + [-10.483899, 8.349584], + [-10.483331, 8.350404], + [-10.482555, 8.350932], + [-10.481043, 8.353005], + [-10.481036, 8.353012], + [-10.484639, 8.358417], + [-10.479914, 8.362273], + [-10.478782, 8.362659], + [-10.47821, 8.363259], + [-10.477949, 8.363916], + [-10.478083, 8.364633], + [-10.478486, 8.365468], + [-10.479751, 8.366342], + [-10.480741, 8.369018], + [-10.480928, 8.369925], + [-10.4842, 8.367599], + [-10.4904, 8.3554], + [-10.512199, 8.336], + [-10.5212, 8.330999], + [-10.553499, 8.3077], + [-10.560899, 8.3052], + [-10.5676, 8.3073], + [-10.5796, 8.308], + [-10.5823, 8.3114], + [-10.5865, 8.325999], + [-10.5971, 8.332299], + [-10.612082, 8.333251], + [-10.612083, 8.329584], + [-10.615416, 8.322917] + ] + ], + "type": "Polygon" + }, + "id": 151, + "properties": { + "cc:admin:id": ["77"], + "cc:oBld:total": 4162, + "cc:pop:fifteen-to-twenty-four": 5118.653829516042, + "cc:pop:grid3-total": 15377.746582639911, + "cc:pop:kontur-total": 29569.454727650398, + "cc:pop:men": 12658.65359312793, + "cc:pop:sixty-plus": 1524.1887381852014, + "cc:pop:total": 26708.9454482366, + "cc:pop:under-five": 4176.781536281484, + "cc:pop:women": 14050.29185510868, + "cc:pop:women-fiften-to-forty-nine": 7022.971767834093, + "cc:pop:wp-total": 22076.549683978992, + "cc:pop:wp-total-UN": 25586.990544514636, + "cc:id": "151", + "cc:Name": "Govt. Medical Hospital", + "cc:site": [-10.5667, 8.2797], + "user:parentName": "Luawa", + "user:code": "OU_204901", + "user:orgUnitId": "xmZNDeO0qCR", + "user:level": "4", + "user:parentId": "cM2BKSrj9F9" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.186948, 8.471275], + [-13.18604, 8.470853], + [-13.185909, 8.471167], + [-13.185756, 8.471476], + [-13.185715, 8.471529], + [-13.185458, 8.47183], + [-13.18521, 8.472], + [-13.184941, 8.472249], + [-13.184254, 8.471881], + [-13.18275, 8.471289], + [-13.18222, 8.471113], + [-13.182589, 8.47041], + [-13.181497, 8.469782], + [-13.180842, 8.47045], + [-13.180678, 8.470689], + [-13.180349, 8.470424], + [-13.179909, 8.469983], + [-13.179286, 8.469365], + [-13.17896, 8.469052], + [-13.17873, 8.468839], + [-13.178471, 8.468582], + [-13.178143, 8.468237], + [-13.177909, 8.467781], + [-13.177144, 8.467004], + [-13.1769, 8.466746], + [-13.176648, 8.46688], + [-13.176006, 8.466422], + [-13.17539, 8.466033], + [-13.175363, 8.466004], + [-13.174827, 8.466445], + [-13.174822, 8.466452], + [-13.174553, 8.467219], + [-13.174869, 8.467506], + [-13.175206, 8.468382], + [-13.173661, 8.469283], + [-13.186652, 8.48292], + [-13.184771, 8.474829], + [-13.186948, 8.471275] + ] + ], + "type": "Polygon" + }, + "id": 152, + "properties": { + "cc:admin:id": ["112"], + "cc:oBld:total": 1254, + "cc:pop:fifteen-to-twenty-four": 2822.9642084760753, + "cc:pop:grid3-total": 15944.872002392704, + "cc:pop:kontur-total": 0, + "cc:pop:men": 6047.438149615274, + "cc:pop:sixty-plus": 960.3298585833951, + "cc:pop:total": 12329.572203560821, + "cc:pop:under-five": 1421.140317114768, + "cc:pop:women": 6282.134053945549, + "cc:pop:women-fiften-to-forty-nine": 3362.2704030516607, + "cc:pop:wp-total": 13578.834527999566, + "cc:pop:wp-total-UN": 15744.745444338665, + "cc:id": "152", + "cc:Name": "Grassfield CHC", + "cc:site": [-13.1842, 8.4746], + "user:parentName": "Freetown", + "user:code": "OU_278336", + "user:orgUnitId": "lL2LBkhlsmV", + "user:level": "4", + "user:parentId": "C9uduqDZr9d" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.258886, 8.196991], + [-11.259599, 8.1928], + [-11.259299, 8.188699], + [-11.258499, 8.186199], + [-11.2565, 8.1826], + [-11.255099, 8.179499], + [-11.253099, 8.175899], + [-11.252199, 8.172599], + [-11.251599, 8.167199], + [-11.250899, 8.164699], + [-11.2489, 8.1602], + [-11.2482, 8.1568], + [-11.2477, 8.1458], + [-11.247, 8.1423], + [-11.2411, 8.1305], + [-11.2403, 8.1268], + [-11.2401, 8.121899], + [-11.240199, 8.116], + [-11.240699, 8.1122], + [-11.2394, 8.106], + [-11.2368, 8.1007], + [-11.235499, 8.097599], + [-11.233499, 8.093999], + [-11.2326, 8.0906], + [-11.2321, 8.0853], + [-11.231499, 8.083199], + [-11.229899, 8.080499], + [-11.2237, 8.0738], + [-11.2216, 8.0709], + [-11.2197, 8.0671], + [-11.2176, 8.0635], + [-11.216299, 8.060399], + [-11.213999, 8.055999], + [-11.2122, 8.0493], + [-11.210499, 8.045699], + [-11.2101, 8.0433], + [-11.2105, 8.040899], + [-11.2124, 8.036599], + [-11.212899, 8.0331], + [-11.212899, 8.030299], + [-11.212199, 8.026899], + [-11.2088, 8.0195], + [-11.2061, 8.026799], + [-11.203999, 8.0312], + [-11.200099, 8.0358], + [-11.1948, 8.041199], + [-11.1927, 8.042999], + [-11.1903, 8.044399], + [-11.187499, 8.0451], + [-11.1846, 8.045299], + [-11.163799, 8.0451], + [-11.160899, 8.0452], + [-11.1576, 8.045799], + [-11.155699, 8.0466], + [-11.1505, 8.049999], + [-11.1483, 8.052999], + [-11.147646, 8.053609], + [-11.149654, 8.057087], + [-11.156761, 8.057087], + [-11.157083, 8.052917], + [-11.161249, 8.049584], + [-11.169582, 8.049584], + [-11.171249, 8.063749], + [-11.17125, 8.065416], + [-11.177917, 8.06625], + [-11.178749, 8.072916], + [-11.172083, 8.07625], + [-11.173749, 8.07875], + [-11.172917, 8.084583], + [-11.172917, 8.085416], + [-11.178749, 8.089584], + [-11.175417, 8.095416], + [-11.180416, 8.097083], + [-11.187083, 8.094584], + [-11.192082, 8.098749], + [-11.192916, 8.09875], + [-11.19375, 8.102083], + [-11.196249, 8.10375], + [-11.197083, 8.112083], + [-11.197687, 8.112385], + [-11.197667, 8.112433], + [-11.201249, 8.114583], + [-11.20125, 8.116249], + [-11.195417, 8.12125], + [-11.194583, 8.125416], + [-11.200416, 8.13125], + [-11.200417, 8.136249], + [-11.202082, 8.137917], + [-11.202917, 8.146249], + [-11.204583, 8.147916], + [-11.208749, 8.149584], + [-11.20875, 8.152916], + [-11.210416, 8.155417], + [-11.210417, 8.161957], + [-11.211397, 8.162015], + [-11.212081, 8.161508], + [-11.212471, 8.161464], + [-11.212721, 8.161699], + [-11.213115, 8.162616], + [-11.214372, 8.163184], + [-11.215566, 8.163285], + [-11.216041, 8.163075], + [-11.216637, 8.16232], + [-11.217405, 8.161902], + [-11.219906, 8.161573], + [-11.224582, 8.166249], + [-11.217917, 8.172917], + [-11.21875, 8.180416], + [-11.222082, 8.184583], + [-11.232916, 8.185416], + [-11.237916, 8.184583], + [-11.238756, 8.183912], + [-11.2424, 8.190225], + [-11.238495, 8.196991], + [-11.242023, 8.203104], + [-11.241249, 8.20375], + [-11.240417, 8.215416], + [-11.24375, 8.218749], + [-11.256521, 8.217998], + [-11.258899, 8.212499], + [-11.258799, 8.2093], + [-11.2571, 8.204999], + [-11.257, 8.2024], + [-11.258799, 8.1975], + [-11.258886, 8.196991] + ] + ], + "type": "Polygon" + }, + "id": 153, + "properties": { + "cc:admin:id": ["22"], + "cc:oBld:total": 880, + "cc:pop:fifteen-to-twenty-four": 1301.9049816971974, + "cc:pop:grid3-total": 6941.68292676989, + "cc:pop:kontur-total": 6923.637129054939, + "cc:pop:men": 3283.5194397871282, + "cc:pop:sixty-plus": 436.0886534443783, + "cc:pop:total": 6637.562022988133, + "cc:pop:under-five": 1103.5442087238248, + "cc:pop:women": 3354.0425832010083, + "cc:pop:women-fiften-to-forty-nine": 1628.053815915675, + "cc:pop:wp-total": 4916.171527034552, + "cc:pop:wp-total-UN": 5708.271112481787, + "cc:id": "153", + "cc:Name": "Guala MCHP", + "cc:site": [-11.2368, 8.1251], + "user:parentName": "Dodo", + "user:code": "OU_222684", + "user:orgUnitId": "ARAZtL7Bdpy", + "user:level": "4", + "user:parentId": "QlCIp2S9NHs" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.266499, 8.394613], + [-13.263471, 8.382628], + [-13.251065, 8.368101], + [-13.247917, 8.371249], + [-13.245417, 8.37125], + [-13.242917, 8.36875], + [-13.242916, 8.36755], + [-13.235776, 8.36755], + [-13.234014, 8.370602], + [-13.233714, 8.370957], + [-13.234199, 8.371337], + [-13.234734, 8.370531], + [-13.235735, 8.369522], + [-13.236346, 8.369456], + [-13.236786, 8.369382], + [-13.236931, 8.369736], + [-13.236766, 8.370118], + [-13.237554, 8.371212], + [-13.235471, 8.372425], + [-13.235403, 8.372486], + [-13.235335, 8.372538], + [-13.234236, 8.371579], + [-13.230479, 8.378085], + [-13.225581, 8.378086], + [-13.222916, 8.380416], + [-13.22125, 8.380417], + [-13.221074, 8.380241], + [-13.217484, 8.386456], + [-13.209672, 8.386457], + [-13.205766, 8.393223], + [-13.209671, 8.399989], + [-13.205766, 8.406754], + [-13.206437, 8.407916], + [-13.21125, 8.407917], + [-13.215416, 8.411249], + [-13.215984, 8.413519], + [-13.217485, 8.41352], + [-13.221391, 8.420285], + [-13.227221, 8.420285], + [-13.252275, 8.401915], + [-13.262862, 8.397495], + [-13.262498, 8.396949], + [-13.261931, 8.396135], + [-13.261768, 8.395884], + [-13.261699, 8.395918], + [-13.261605, 8.395758], + [-13.261289, 8.395989], + [-13.260747, 8.395365], + [-13.260494, 8.394916], + [-13.260224, 8.394224], + [-13.260479, 8.394039], + [-13.260329, 8.393532], + [-13.260529, 8.393853], + [-13.260592, 8.393823], + [-13.261084, 8.394704], + [-13.261574, 8.39435], + [-13.26236, 8.393899], + [-13.263041, 8.394061], + [-13.263257, 8.394278], + [-13.263918, 8.394558], + [-13.264257, 8.394422], + [-13.264535, 8.394694], + [-13.264942, 8.394708], + [-13.264946, 8.394614], + [-13.266499, 8.394613] + ] + ], + "type": "Polygon" + }, + "id": 154, + "properties": { + "cc:admin:id": ["112"], + "cc:oBld:total": 1841, + "cc:pop:fifteen-to-twenty-four": 4798.286733472151, + "cc:pop:grid3-total": 12742.427815354513, + "cc:pop:kontur-total": 26276.861800955594, + "cc:pop:men": 10676.270821203418, + "cc:pop:sixty-plus": 1699.0173673702561, + "cc:pop:total": 21190.6183168079, + "cc:pop:under-five": 2475.655004871534, + "cc:pop:women": 10514.347495604476, + "cc:pop:women-fiften-to-forty-nine": 5572.927540101567, + "cc:pop:wp-total": 18188.870015356333, + "cc:pop:wp-total-UN": 21092.818276152768, + "cc:id": "154", + "cc:Name": "Hamilton MCHP", + "cc:site": [-13.26, 8.3825], + "user:parentName": "Rural Western Area", + "user:code": "OU_278386", + "user:orgUnitId": "oolcy5HBlMy", + "user:level": "4", + "user:parentId": "qtr8GGlm4gg" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.197953, 8.37969], + [-13.194046, 8.372925], + [-13.186235, 8.372924], + [-13.182329, 8.36616], + [-13.186234, 8.359394], + [-13.18358, 8.354797], + [-13.182082, 8.354583], + [-13.179475, 8.352628], + [-13.174515, 8.352627], + [-13.170609, 8.345862], + [-13.162796, 8.345861], + [-13.158891, 8.339095], + [-13.162796, 8.33233], + [-13.15889, 8.325565], + [-13.151078, 8.325564], + [-13.147171, 8.318799], + [-13.146926, 8.318799], + [-13.146249, 8.326249], + [-13.13625, 8.325416], + [-13.136249, 8.312084], + [-13.13125, 8.312084], + [-13.12875, 8.31375], + [-13.12875, 8.317916], + [-13.135416, 8.325416], + [-13.134582, 8.326249], + [-13.13125, 8.32625], + [-13.130417, 8.329583], + [-13.127917, 8.33125], + [-13.127916, 8.333749], + [-13.12625, 8.335417], + [-13.127916, 8.33875], + [-13.127916, 8.346249], + [-13.122916, 8.351249], + [-13.113212, 8.350557], + [-13.112016, 8.352628], + [-13.115729, 8.359061], + [-13.115727, 8.359061], + [-13.113749, 8.357084], + [-13.110184, 8.35637], + [-13.107183, 8.361567], + [-13.111089, 8.368332], + [-13.107183, 8.375098], + [-13.109336, 8.378827], + [-13.109608, 8.378569], + [-13.109778, 8.378754], + [-13.109918, 8.378901], + [-13.110089, 8.379109], + [-13.109168, 8.379691], + [-13.107486, 8.380599], + [-13.107097, 8.380834], + [-13.106813, 8.380599], + [-13.106755, 8.380668], + [-13.106795, 8.380704], + [-13.107341, 8.38124], + [-13.107879, 8.382222], + [-13.108295, 8.383489], + [-13.10861, 8.384018], + [-13.108805, 8.384123], + [-13.108628, 8.384243], + [-13.108531, 8.386081], + [-13.108543, 8.386755], + [-13.108591, 8.38703], + [-13.109188, 8.387922], + [-13.107475, 8.389036], + [-13.10779, 8.389714], + [-13.107855, 8.390012], + [-13.108241, 8.390357], + [-13.108822, 8.390808], + [-13.108908, 8.391131], + [-13.109061, 8.391479], + [-13.109285, 8.391796], + [-13.11038, 8.392662], + [-13.110896, 8.392006], + [-13.111052, 8.391223], + [-13.111266, 8.39089], + [-13.111787, 8.392516], + [-13.111881, 8.392725], + [-13.112396, 8.392189], + [-13.113302, 8.390754], + [-13.113584, 8.390282], + [-13.114591, 8.38905], + [-13.114528, 8.388867], + [-13.114314, 8.388473], + [-13.114313, 8.38846], + [-13.115156, 8.38992], + [-13.115143, 8.389931], + [-13.114623, 8.390064], + [-13.114677, 8.390312], + [-13.115037, 8.390616], + [-13.115097, 8.391269], + [-13.113154, 8.39302], + [-13.112895, 8.39424], + [-13.112204, 8.394533], + [-13.112376, 8.394945], + [-13.112885, 8.395264], + [-13.113587, 8.395036], + [-13.113589, 8.395038], + [-13.113192, 8.395726], + [-13.11148, 8.396645], + [-13.111235, 8.397126], + [-13.112938, 8.400692], + [-13.106542, 8.406243], + [-13.110117, 8.412922], + [-13.125686, 8.413769], + [-13.128306, 8.409966], + [-13.127099, 8.415697], + [-13.13152, 8.418473], + [-13.132367, 8.412358], + [-13.138441, 8.411821], + [-13.138836, 8.41145], + [-13.139417, 8.410707], + [-13.139551, 8.409731], + [-13.139474, 8.408862], + [-13.1379, 8.40755], + [-13.137385, 8.407135], + [-13.13685, 8.40683], + [-13.136329, 8.406176], + [-13.13624, 8.405391], + [-13.136682, 8.404678], + [-13.137432, 8.404354], + [-13.137882, 8.404161], + [-13.138162, 8.404031], + [-13.138412, 8.403832], + [-13.138787, 8.403425], + [-13.139047, 8.403098], + [-13.139193, 8.402842], + [-13.139557, 8.402073], + [-13.140563, 8.399603], + [-13.140847, 8.399337], + [-13.142894, 8.398507], + [-13.143322, 8.398531], + [-13.14386, 8.399038], + [-13.144171, 8.399001], + [-13.14396, 8.400105], + [-13.144442, 8.400137], + [-13.144031, 8.4005], + [-13.143774, 8.401492], + [-13.144285, 8.401645], + [-13.144841, 8.400728], + [-13.146219, 8.399979], + [-13.14689, 8.399417], + [-13.148718, 8.398696], + [-13.149672, 8.398745], + [-13.150071, 8.398873], + [-13.151177, 8.399199], + [-13.151905, 8.399228], + [-13.152103, 8.399214], + [-13.152105, 8.399214], + [-13.152929, 8.399151], + [-13.153714, 8.398799], + [-13.154147, 8.398283], + [-13.154571, 8.396993], + [-13.155706, 8.39468], + [-13.155889, 8.393896], + [-13.156156, 8.394211], + [-13.156817, 8.395048], + [-13.157072, 8.394739], + [-13.157242, 8.394573], + [-13.157426, 8.394428], + [-13.158393, 8.394802], + [-13.158202, 8.395285], + [-13.159693, 8.396446], + [-13.161483, 8.397827], + [-13.162388, 8.398522], + [-13.163674, 8.397373], + [-13.164003, 8.397917], + [-13.164275, 8.398071], + [-13.167133, 8.396252], + [-13.167264, 8.396343], + [-13.167394, 8.396382], + [-13.167693, 8.396505], + [-13.169472, 8.393428], + [-13.173347, 8.393427], + [-13.176249, 8.393749], + [-13.179582, 8.389584], + [-13.184059, 8.390222], + [-13.186235, 8.386457], + [-13.194046, 8.386456], + [-13.197953, 8.37969] + ] + ], + "type": "Polygon" + }, + "id": 155, + "properties": { + "cc:admin:id": ["112"], + "cc:oBld:total": 14948, + "cc:pop:fifteen-to-twenty-four": 15203.597710351876, + "cc:pop:grid3-total": 65000.05023819555, + "cc:pop:kontur-total": 73466.5631069789, + "cc:pop:men": 30973.445832459027, + "cc:pop:sixty-plus": 5061.01336737129, + "cc:pop:total": 64490.54535515796, + "cc:pop:under-five": 7255.39558836238, + "cc:pop:women": 33517.0995226989, + "cc:pop:women-fiften-to-forty-nine": 17944.446413233338, + "cc:pop:wp-total": 48186.87884406739, + "cc:pop:wp-total-UN": 55898.977356734846, + "cc:id": "155", + "cc:Name": "Hastings Health Centre", + "cc:site": [-13.1363, 8.3836], + "user:parentName": "Rural Western Area", + "user:code": "OU_278377", + "user:orgUnitId": "zQpYVEyAM2t", + "user:level": "4", + "user:parentId": "qtr8GGlm4gg" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.696899, 9.557399], + [-11.692699, 9.555299], + [-11.690199, 9.553099], + [-11.687699, 9.550199], + [-11.683699, 9.542499], + [-11.682899, 9.539299], + [-11.6823, 9.5335], + [-11.681299, 9.530399], + [-11.678299, 9.526599], + [-11.6675, 9.5161], + [-11.6637, 9.5123], + [-11.661099, 9.509299], + [-11.659, 9.505], + [-11.6574, 9.5022], + [-11.6565, 9.5], + [-11.655099, 9.494099], + [-11.6508, 9.4857], + [-11.6472, 9.481299], + [-11.6462, 9.4786], + [-11.647799, 9.4726], + [-11.6445, 9.471], + [-11.640999, 9.470299], + [-11.6352, 9.468], + [-11.6312, 9.4674], + [-11.6248, 9.467599], + [-11.6225, 9.468099], + [-11.620599, 9.4689], + [-11.6156, 9.4721], + [-11.6128, 9.476199], + [-11.6099, 9.479599], + [-11.606, 9.483399], + [-11.603799, 9.4851], + [-11.5964, 9.488799], + [-11.5942, 9.489499], + [-11.590899, 9.4899], + [-11.583099, 9.489899], + [-11.578799, 9.489399], + [-11.573, 9.4871], + [-11.5704, 9.4865], + [-11.5642, 9.4858], + [-11.562099, 9.485199], + [-11.5548, 9.4818], + [-11.550499, 9.479399], + [-11.547299, 9.477999], + [-11.543699, 9.475299], + [-11.5376, 9.4698], + [-11.535399, 9.468199], + [-11.5322, 9.4668], + [-11.529399, 9.465299], + [-11.527, 9.4644], + [-11.521799, 9.463299], + [-11.5134, 9.4594], + [-11.509099, 9.457099], + [-11.503599, 9.454999], + [-11.5002, 9.454], + [-11.4967, 9.457999], + [-11.4952, 9.460499], + [-11.494499, 9.4632], + [-11.4944, 9.466068], + [-11.4944, 9.4661], + [-11.4947, 9.4759], + [-11.4955, 9.4784], + [-11.4975, 9.4828], + [-11.4982, 9.4854], + [-11.499099, 9.492499], + [-11.5014, 9.4977], + [-11.5021, 9.5003], + [-11.502699, 9.505599], + [-11.503299, 9.508099], + [-11.5053, 9.5126], + [-11.5061, 9.516], + [-11.506499, 9.523299], + [-11.507199, 9.526799], + [-11.509499, 9.532099], + [-11.5107, 9.5372], + [-11.514699, 9.545499], + [-11.5172, 9.5488], + [-11.520965, 9.551986], + [-11.523552, 9.548651], + [-11.524074, 9.547249], + [-11.524589, 9.546666], + [-11.526138, 9.545705], + [-11.526744, 9.545598], + [-11.52748, 9.545043], + [-11.528804, 9.544462], + [-11.52896, 9.544324], + [-11.529554, 9.544676], + [-11.529672, 9.5447], + [-11.53002, 9.544671], + [-11.530066, 9.544663], + [-11.53116, 9.544279], + [-11.531466, 9.544158], + [-11.532184, 9.544127], + [-11.532471, 9.544138], + [-11.533546, 9.544785], + [-11.53375, 9.544583], + [-11.538749, 9.545417], + [-11.539582, 9.54625], + [-11.539583, 9.547916], + [-11.547916, 9.550416], + [-11.545417, 9.554582], + [-11.54875, 9.557916], + [-11.549583, 9.557917], + [-11.554582, 9.559582], + [-11.557082, 9.557082], + [-11.557083, 9.554583], + [-11.557917, 9.554582], + [-11.563749, 9.553749], + [-11.563245, 9.552232], + [-11.56353, 9.552299], + [-11.565126, 9.552191], + [-11.566201, 9.552291], + [-11.566572, 9.553213], + [-11.566395, 9.553775], + [-11.573884, 9.553776], + [-11.575655, 9.556842], + [-11.575417, 9.557916], + [-11.575417, 9.558749], + [-11.576249, 9.562916], + [-11.577083, 9.565416], + [-11.577917, 9.566249], + [-11.582916, 9.565416], + [-11.588749, 9.56125], + [-11.59125, 9.566249], + [-11.592263, 9.566587], + [-11.592627, 9.566378], + [-11.594743, 9.565766], + [-11.594743, 9.565768], + [-11.594583, 9.565843], + [-11.594583, 9.56625], + [-11.599582, 9.568749], + [-11.605416, 9.560419], + [-11.605417, 9.577082], + [-11.612082, 9.575417], + [-11.612917, 9.583749], + [-11.615417, 9.585417], + [-11.617083, 9.589582], + [-11.622916, 9.592082], + [-11.623749, 9.592083], + [-11.625538, 9.593871], + [-11.6267, 9.593399], + [-11.630999, 9.5911], + [-11.6342, 9.589799], + [-11.638399, 9.5874], + [-11.6416, 9.585999], + [-11.6443, 9.584099], + [-11.6512, 9.577599], + [-11.653299, 9.5762], + [-11.6565, 9.574799], + [-11.660699, 9.5724], + [-11.6639, 9.571099], + [-11.668499, 9.5688], + [-11.674299, 9.5675], + [-11.676599, 9.5666], + [-11.6794, 9.564999], + [-11.6826, 9.563699], + [-11.6869, 9.561299], + [-11.692999, 9.5588], + [-11.696899, 9.557399] + ] + ], + "type": "Polygon" + }, + "id": 156, + "properties": { + "cc:admin:id": ["144"], + "cc:oBld:total": 26, + "cc:pop:fifteen-to-twenty-four": 1591.5408350549353, + "cc:pop:grid3-total": 7114.104351497794, + "cc:pop:kontur-total": 8772.42405939752, + "cc:pop:men": 4093.4253218305134, + "cc:pop:sixty-plus": 526.7427042897185, + "cc:pop:total": 8578.232701177954, + "cc:pop:under-five": 1384.8489672840917, + "cc:pop:women": 4484.807379347441, + "cc:pop:women-fiften-to-forty-nine": 2194.0375777149634, + "cc:pop:wp-total": 9251.137819676334, + "cc:pop:wp-total-UN": 10723.15119668631, + "cc:id": "156", + "cc:Name": "Heremakono MCHP", + "cc:site": [-11.5979, 9.5007], + "user:parentName": "Wara Wara Yagala", + "user:code": "OU_226260", + "user:orgUnitId": "UCwtaCrNUls", + "user:level": "4", + "user:parentId": "EZPwuUTeIIG" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.182658, 8.449386], + [-13.180978, 8.446478], + [-13.18027, 8.446332], + [-13.179878, 8.446419], + [-13.178677, 8.446923], + [-13.178089, 8.446844], + [-13.176456, 8.447571], + [-13.17452, 8.447598], + [-13.174301, 8.447577], + [-13.173262, 8.44749], + [-13.172655, 8.447463], + [-13.17198, 8.447765], + [-13.17127, 8.447941], + [-13.171336, 8.448508], + [-13.170381, 8.448808], + [-13.170464, 8.449246], + [-13.169949, 8.449425], + [-13.169815, 8.449], + [-13.169597, 8.44852], + [-13.168975, 8.448726], + [-13.16827, 8.44897], + [-13.168411, 8.449512], + [-13.167735, 8.449755], + [-13.167917, 8.450249], + [-13.167382, 8.450466], + [-13.167215, 8.450583], + [-13.167627, 8.451077], + [-13.168125, 8.450864], + [-13.168412, 8.451393], + [-13.168561, 8.451821], + [-13.168854, 8.452261], + [-13.168729, 8.452357], + [-13.169223, 8.452938], + [-13.169166, 8.452989], + [-13.168154, 8.451805], + [-13.167992, 8.451619], + [-13.16662, 8.452126], + [-13.166362, 8.451514], + [-13.166134, 8.450983], + [-13.166093, 8.450873], + [-13.16593, 8.450516], + [-13.165718, 8.44999], + [-13.165158, 8.450322], + [-13.164523, 8.450377], + [-13.163884, 8.450579], + [-13.163584, 8.450657], + [-13.166046, 8.454922], + [-13.167007, 8.455306], + [-13.167676, 8.455949], + [-13.167659, 8.456347], + [-13.167688, 8.456403], + [-13.170284, 8.456404], + [-13.170583, 8.456282], + [-13.170775, 8.45655], + [-13.17053, 8.456666], + [-13.170528, 8.457444], + [-13.17164, 8.456924], + [-13.171917, 8.457688], + [-13.172121, 8.45819], + [-13.172199, 8.458187], + [-13.172152, 8.458069], + [-13.171744, 8.456985], + [-13.171181, 8.455598], + [-13.172075, 8.455197], + [-13.172158, 8.455406], + [-13.172301, 8.455678], + [-13.172384, 8.455808], + [-13.172521, 8.456013], + [-13.174294, 8.455108], + [-13.174483, 8.455481], + [-13.175371, 8.454918], + [-13.175466, 8.454317], + [-13.174946, 8.454388], + [-13.174094, 8.454729], + [-13.173831, 8.4543], + [-13.174047, 8.453751], + [-13.174819, 8.452949], + [-13.175802, 8.452914], + [-13.176623, 8.453014], + [-13.178554, 8.453579], + [-13.17923, 8.453451], + [-13.180342, 8.452843], + [-13.18046, 8.452767], + [-13.180616, 8.452558], + [-13.180609, 8.451651], + [-13.180683, 8.451083], + [-13.181011, 8.450889], + [-13.181342, 8.449972], + [-13.182097, 8.449517], + [-13.182313, 8.449494], + [-13.182658, 8.449386] + ] + ], + "type": "Polygon" + }, + "id": 157, + "properties": { + "cc:admin:id": ["112"], + "cc:oBld:total": 2989, + "cc:pop:fifteen-to-twenty-four": 5820.195332037556, + "cc:pop:grid3-total": 26327.632991024475, + "cc:pop:kontur-total": 25076.329743122154, + "cc:pop:men": 12474.23510582032, + "cc:pop:sixty-plus": 1978.8307077937322, + "cc:pop:total": 25426.689662727887, + "cc:pop:under-five": 2939.213528860803, + "cc:pop:women": 12952.454556907569, + "cc:pop:women-fiften-to-forty-nine": 6927.657194569211, + "cc:pop:wp-total": 24729.503992454916, + "cc:pop:wp-total-UN": 28666.584662369085, + "cc:id": "157", + "cc:Name": "Holy Mary Clinic", + "cc:site": [-13.1691, 8.4512], + "user:parentName": "Freetown", + "user:code": "OU_278347", + "user:orgUnitId": "LV2b3vaLRl1", + "user:level": "4", + "user:parentId": "C9uduqDZr9d" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.116289, 9.320417], + [-12.108749, 9.320416], + [-12.106174, 9.318485], + [-12.106174, 9.318484], + [-12.106193, 9.318471], + [-12.103749, 9.315416], + [-12.102917, 9.309583], + [-12.112059, 9.306535], + [-12.110674, 9.304141], + [-12.108961, 9.301963], + [-12.108901, 9.300864], + [-12.108467, 9.299782], + [-12.108583, 9.29947], + [-12.109411, 9.298493], + [-12.10931, 9.297395], + [-12.109581, 9.295366], + [-12.109918, 9.295185], + [-12.110232, 9.294608], + [-12.109989, 9.29407], + [-12.110102, 9.293813], + [-12.109915, 9.292946], + [-12.109546, 9.292422], + [-12.109614, 9.291947], + [-12.10125, 9.291249], + [-12.102083, 9.282083], + [-12.105416, 9.279582], + [-12.104583, 9.275417], + [-12.09875, 9.272082], + [-12.09625, 9.26875], + [-12.09625, 9.267917], + [-12.100416, 9.263749], + [-12.101249, 9.26125], + [-12.102916, 9.261249], + [-12.102917, 9.25125], + [-12.108749, 9.246249], + [-12.100417, 9.237916], + [-12.100417, 9.234583], + [-12.102082, 9.232083], + [-12.10125, 9.231249], + [-12.101249, 9.225417], + [-12.096071, 9.220978], + [-12.095738, 9.221313], + [-12.095737, 9.221313], + [-12.094583, 9.219582], + [-12.094583, 9.215458], + [-12.094938, 9.214646], + [-12.095094, 9.213993], + [-12.094938, 9.213227], + [-12.091711, 9.206205], + [-12.091667, 9.204822], + [-12.091677, 9.204786], + [-12.093749, 9.203749], + [-12.09253, 9.200093], + [-12.092754, 9.199541], + [-12.093315, 9.198225], + [-12.093995, 9.197607], + [-12.094039, 9.197541], + [-12.08625, 9.195417], + [-12.084583, 9.196249], + [-12.083775, 9.194635], + [-12.0809, 9.1967], + [-12.077899, 9.201], + [-12.0751, 9.203899], + [-12.072499, 9.205699], + [-12.069499, 9.2066], + [-12.0641, 9.207099], + [-12.0616, 9.207699], + [-12.055699, 9.21], + [-12.0515, 9.210499], + [-12.0486, 9.210599], + [-12.0418, 9.2103], + [-12.039, 9.2097], + [-12.034499, 9.207699], + [-12.0286, 9.2062], + [-12.0255, 9.2045], + [-12.0218, 9.2016], + [-12.0195, 9.2002], + [-12.0126, 9.1977], + [-12.0123, 9.206699], + [-12.0116, 9.210099], + [-12.0094, 9.215399], + [-12.0079, 9.221299], + [-12.005699, 9.2266], + [-12.0052, 9.2305], + [-12.005399, 9.2406], + [-12.004999, 9.245999], + [-12.0041, 9.248199], + [-12.002499, 9.2505], + [-11.9973, 9.256199], + [-11.9952, 9.259299], + [-11.9938, 9.265099], + [-11.99348, 9.265712], + [-11.992599, 9.2674], + [-11.9886, 9.272799], + [-11.9859, 9.277999], + [-11.984399, 9.28], + [-11.982, 9.282399], + [-11.9792, 9.284299], + [-11.9754, 9.285999], + [-11.971799, 9.288], + [-11.9687, 9.289299], + [-11.9665, 9.290699], + [-11.9635, 9.293699], + [-11.9616, 9.296499], + [-11.960199, 9.2995], + [-11.9579, 9.303799], + [-11.956599, 9.307], + [-11.954399, 9.3114], + [-11.953799, 9.3148], + [-11.9534, 9.323899], + [-11.952799, 9.326], + [-11.950699, 9.3309], + [-11.950299, 9.3344], + [-11.9502, 9.340699], + [-11.949699, 9.3434], + [-11.947999, 9.3465], + [-11.9426, 9.352499], + [-11.9403, 9.355299], + [-11.937699, 9.3602], + [-11.934599, 9.364], + [-11.9276, 9.371099], + [-11.9254, 9.373899], + [-11.9214, 9.3817], + [-11.9214, 9.385299], + [-11.9238, 9.388199], + [-11.9274, 9.389399], + [-11.930399, 9.388999], + [-11.933099, 9.3877], + [-11.937599, 9.3839], + [-11.9401, 9.382399], + [-11.9423, 9.381799], + [-11.944999, 9.3816], + [-11.9486, 9.382], + [-11.9512, 9.3827], + [-11.957899, 9.386199], + [-11.9608, 9.3883], + [-11.9669, 9.3939], + [-11.9703, 9.395999], + [-11.973299, 9.396699], + [-11.9733, 9.3893], + [-11.973899, 9.3858], + [-11.9758, 9.381299], + [-11.9778, 9.375899], + [-11.981, 9.3744], + [-11.990499, 9.3742], + [-11.994299, 9.3737], + [-11.9997, 9.371499], + [-12.0022, 9.370899], + [-12.007499, 9.3703], + [-12.010099, 9.3697], + [-12.0146, 9.367799], + [-12.0183, 9.366999], + [-12.024099, 9.3668], + [-12.027899, 9.3662], + [-12.0341, 9.363799], + [-12.0379, 9.363299], + [-12.043799, 9.363], + [-12.047399, 9.3623], + [-12.051899, 9.3601], + [-12.055099, 9.3588], + [-12.0593, 9.356299], + [-12.065999, 9.3531], + [-12.069499, 9.3522], + [-12.080699, 9.3519], + [-12.0848, 9.351199], + [-12.092399, 9.3476], + [-12.096299, 9.3445], + [-12.0989, 9.341299], + [-12.102699, 9.3338], + [-12.104399, 9.3299], + [-12.107399, 9.3259], + [-12.1106, 9.323299], + [-12.116289, 9.320417] + ] + ], + "type": "Polygon" + }, + "id": 158, + "properties": { + "cc:admin:id": ["81"], + "cc:oBld:total": 394, + "cc:pop:fifteen-to-twenty-four": 1274.9443208727066, + "cc:pop:grid3-total": 8136.040876278192, + "cc:pop:kontur-total": 6778.665218334144, + "cc:pop:men": 3355.5332014405867, + "cc:pop:sixty-plus": 387.94448617256904, + "cc:pop:total": 7027.160509778067, + "cc:pop:under-five": 1089.7618896371678, + "cc:pop:women": 3671.6273083374795, + "cc:pop:women-fiften-to-forty-nine": 1801.785572934035, + "cc:pop:wp-total": 6115.800958000484, + "cc:pop:wp-total-UN": 7096.242985395983, + "cc:id": "158", + "cc:Name": "Hunduwa CHP", + "cc:site": [-12.061, 9.2366], + "user:parentName": "Magbaimba Ndowahun", + "user:code": "OU_193227", + "user:orgUnitId": "J1x66stNjk2", + "user:level": "4", + "user:parentId": "eV4cuxniZgP" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.351535, 8.523635], + [-11.351299, 8.523399], + [-11.3466, 8.5192], + [-11.3434, 8.517], + [-11.336799, 8.513999], + [-11.332799, 8.512799], + [-11.3208, 8.5118], + [-11.3179, 8.5113], + [-11.311699, 8.509599], + [-11.2998, 8.5085], + [-11.2968, 8.508], + [-11.292799, 8.506299], + [-11.2838, 8.5007], + [-11.281499, 8.498999], + [-11.278399, 8.496099], + [-11.2749, 8.4918], + [-11.270999, 8.484299], + [-11.269099, 8.478599], + [-11.2673, 8.4659], + [-11.2655, 8.4599], + [-11.2647, 8.4556], + [-11.2642, 8.4479], + [-11.264199, 8.445417], + [-11.26125, 8.445417], + [-11.255554, 8.449484], + [-11.255417, 8.449584], + [-11.254583, 8.460416], + [-11.256595, 8.461759], + [-11.253047, 8.467905], + [-11.256952, 8.474671], + [-11.256848, 8.47485], + [-11.254583, 8.475417], + [-11.254582, 8.479583], + [-11.252083, 8.48125], + [-11.252082, 8.484583], + [-11.24375, 8.487083], + [-11.240417, 8.487084], + [-11.23875, 8.48875], + [-11.241249, 8.49125], + [-11.243749, 8.497083], + [-11.242082, 8.509583], + [-11.237917, 8.50875], + [-11.237916, 8.510417], + [-11.233295, 8.514267], + [-11.229871, 8.514268], + [-11.229688, 8.514584], + [-11.222917, 8.514583], + [-11.219141, 8.511564], + [-11.213534, 8.511564], + [-11.210268, 8.51722], + [-11.217916, 8.517917], + [-11.213749, 8.530416], + [-11.205417, 8.52875], + [-11.20375, 8.531249], + [-11.199583, 8.532917], + [-11.198152, 8.535061], + [-11.198033, 8.534889], + [-11.19737, 8.533202], + [-11.19727, 8.531788], + [-11.196532, 8.53125], + [-11.195417, 8.53125], + [-11.187083, 8.536249], + [-11.187082, 8.527084], + [-11.186477, 8.52678], + [-11.185835, 8.527533], + [-11.185326, 8.528397], + [-11.184615, 8.528879], + [-11.1847, 8.5302], + [-11.1848, 8.5523], + [-11.185099, 8.558499], + [-11.185899, 8.562399], + [-11.187899, 8.566799], + [-11.18798, 8.567198], + [-11.191512, 8.567199], + [-11.193761, 8.571094], + [-11.19375, 8.571249], + [-11.195825, 8.573843], + [-11.200541, 8.573844], + [-11.202339, 8.576955], + [-11.20375, 8.57625], + [-11.213198, 8.57625], + [-11.213621, 8.576984], + [-11.209715, 8.583749], + [-11.213622, 8.590514], + [-11.214092, 8.590514], + [-11.214583, 8.590417], + [-11.220417, 8.595416], + [-11.225416, 8.59375], + [-11.227427, 8.594252], + [-11.227518, 8.59375], + [-11.227916, 8.59375], + [-11.229583, 8.596249], + [-11.235416, 8.597083], + [-11.237917, 8.58875], + [-11.245416, 8.587917], + [-11.248749, 8.590416], + [-11.249829, 8.589068], + [-11.254892, 8.589068], + [-11.258503, 8.59532], + [-11.258799, 8.595833], + [-11.261341, 8.595833], + [-11.261351, 8.595414], + [-11.261293, 8.591469], + [-11.262681, 8.591815], + [-11.262688, 8.591736], + [-11.262684, 8.59125], + [-11.262916, 8.591249], + [-11.26375, 8.589584], + [-11.267082, 8.588749], + [-11.271248, 8.585418], + [-11.27125, 8.585419], + [-11.27125, 8.593749], + [-11.274902, 8.594358], + [-11.275054, 8.592509], + [-11.274479, 8.590569], + [-11.274411, 8.590418], + [-11.274412, 8.590417], + [-11.285416, 8.590416], + [-11.285417, 8.587917], + [-11.29125, 8.587083], + [-11.293749, 8.584583], + [-11.294583, 8.58125], + [-11.296249, 8.582083], + [-11.298749, 8.574583], + [-11.29875, 8.571154], + [-11.299362, 8.571347], + [-11.30101, 8.571676], + [-11.303549, 8.572136], + [-11.306351, 8.572574], + [-11.306665, 8.57166], + [-11.30673, 8.570354], + [-11.308409, 8.567013], + [-11.30966, 8.56405], + [-11.310355, 8.561695], + [-11.310622, 8.560969], + [-11.311661, 8.559742], + [-11.311134, 8.557593], + [-11.311153, 8.556547], + [-11.31135, 8.556198], + [-11.312308, 8.555728], + [-11.312999, 8.555602], + [-11.313608, 8.555034], + [-11.314279, 8.553382], + [-11.314696, 8.55083], + [-11.314847, 8.550116], + [-11.315339, 8.549268], + [-11.31676, 8.547647], + [-11.317761, 8.547019], + [-11.318361, 8.54644], + [-11.319188, 8.54511], + [-11.321626, 8.542116], + [-11.322225, 8.540344], + [-11.322491, 8.539606], + [-11.323964, 8.537936], + [-11.324003, 8.536928], + [-11.324071, 8.535762], + [-11.324755, 8.534042], + [-11.32496, 8.531598], + [-11.324652, 8.529867], + [-11.326524, 8.527107], + [-11.326802, 8.526177], + [-11.327018, 8.525805], + [-11.327504, 8.525466], + [-11.327769, 8.524782], + [-11.32777, 8.524782], + [-11.32875, 8.526249], + [-11.333749, 8.528749], + [-11.33375, 8.522917], + [-11.336249, 8.522084], + [-11.338447, 8.522084], + [-11.338499, 8.522406], + [-11.343004, 8.52204], + [-11.344407, 8.522118], + [-11.346839, 8.521255], + [-11.348675, 8.521841], + [-11.350179, 8.523557], + [-11.351535, 8.523635] + ] + ], + "type": "Polygon" + }, + "id": 159, + "properties": { + "cc:admin:id": ["101"], + "cc:oBld:total": 1589, + "cc:pop:fifteen-to-twenty-four": 2584.209811966819, + "cc:pop:grid3-total": 14205.091246028816, + "cc:pop:kontur-total": 13080.967858257121, + "cc:pop:men": 7427.843423750811, + "cc:pop:sixty-plus": 755.0663336362986, + "cc:pop:total": 13582.400077174789, + "cc:pop:under-five": 2059.172508455011, + "cc:pop:women": 6154.556653423977, + "cc:pop:women-fiften-to-forty-nine": 3202.5375746604223, + "cc:pop:wp-total": 11476.39390071879, + "cc:pop:wp-total-UN": 13310.146357215768, + "cc:id": "159", + "cc:Name": "Jaiama Sewafe CHC", + "cc:site": [-11.2411, 8.542], + "user:parentName": "Nimiyama", + "user:code": "OU_233333", + "user:orgUnitId": "W7ekX3gi0ut", + "user:level": "4", + "user:parentId": "qgQ49DH9a0v" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.180373, 7.60834], + [-11.176651, 7.601894], + [-11.17125, 7.601894], + [-11.171249, 7.607084], + [-11.167917, 7.611249], + [-11.162832, 7.611641], + [-11.160979, 7.608433], + [-11.154841, 7.608433], + [-11.154583, 7.607917], + [-11.155416, 7.59375], + [-11.15125, 7.593749], + [-11.146478, 7.591704], + [-11.146478, 7.591702], + [-11.146608, 7.591592], + [-11.14125, 7.589584], + [-11.136917, 7.59536], + [-11.1372, 7.5954], + [-11.1405, 7.5975], + [-11.1422, 7.5994], + [-11.143599, 7.6019], + [-11.143899, 7.604799], + [-11.1419, 7.6098], + [-11.1418, 7.612599], + [-11.1426, 7.614599], + [-11.144299, 7.616699], + [-11.148299, 7.620499], + [-11.1513, 7.6227], + [-11.1555, 7.625], + [-11.160099, 7.627499], + [-11.1633, 7.6289], + [-11.1677, 7.6311], + [-11.1714, 7.6318], + [-11.1743, 7.632], + [-11.178408, 7.631999], + [-11.176652, 7.628957], + [-11.178176, 7.626315], + [-11.177916, 7.626249], + [-11.174583, 7.622083], + [-11.174583, 7.612917], + [-11.177916, 7.60875], + [-11.180373, 7.60834] + ] + ], + "type": "Polygon" + }, + "id": 160, + "properties": { + "cc:admin:id": ["138"], + "cc:oBld:total": 317, + "cc:pop:fifteen-to-twenty-four": 353.3586919213891, + "cc:pop:grid3-total": 1275.724340177019, + "cc:pop:kontur-total": 1139.8187688868518, + "cc:pop:men": 865.9169080420985, + "cc:pop:sixty-plus": 109.8490793714661, + "cc:pop:total": 1817.5246611995326, + "cc:pop:under-five": 279.0416839086107, + "cc:pop:women": 951.607753157434, + "cc:pop:women-fiften-to-forty-nine": 471.3520560699759, + "cc:pop:wp-total": 1639.0434616813839, + "cc:pop:wp-total-UN": 1907.1987748587055, + "cc:id": "160", + "cc:Name": "Jao MCHP", + "cc:site": [-11.1446, 7.6138], + "user:parentName": "Tunkia", + "user:code": "OU_222640", + "user:orgUnitId": "t7bcrWLjL1m", + "user:level": "4", + "user:parentId": "l7pFejMtUoF" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.45375, 7.915261], + [-11.453749, 7.912917], + [-11.452917, 7.912083], + [-11.452916, 7.906435], + [-11.45253, 7.906736], + [-11.450752, 7.907107], + [-11.448781, 7.906699], + [-11.448315, 7.906758], + [-11.447121, 7.903573], + [-11.447159, 7.903485], + [-11.447313, 7.90103], + [-11.446039, 7.899953], + [-11.445036, 7.898562], + [-11.444396, 7.896937], + [-11.444094, 7.896803], + [-11.438899, 7.9003], + [-11.419999, 7.9101], + [-11.413, 7.914999], + [-11.4076, 7.918199], + [-11.4018, 7.922399], + [-11.3965, 7.925699], + [-11.3879, 7.932699], + [-11.3816, 7.936899], + [-11.3794, 7.938699], + [-11.3689, 7.948599], + [-11.3645, 7.952199], + [-11.3547, 7.958199], + [-11.3517, 7.9604], + [-11.347699, 7.9708], + [-11.3434, 7.984199], + [-11.3421, 7.990499], + [-11.341967, 7.993646], + [-11.352916, 7.992916], + [-11.35375, 7.989583], + [-11.354583, 7.982084], + [-11.358749, 7.977916], + [-11.35875, 7.972917], + [-11.36625, 7.972916], + [-11.368749, 7.972083], + [-11.372083, 7.96875], + [-11.382082, 7.969583], + [-11.382083, 7.96375], + [-11.382829, 7.963004], + [-11.382733, 7.962939], + [-11.382733, 7.962938], + [-11.385417, 7.959583], + [-11.387917, 7.95875], + [-11.395417, 7.967083], + [-11.397082, 7.967916], + [-11.398506, 7.96839], + [-11.398756, 7.968062], + [-11.399208, 7.966673], + [-11.399353, 7.965357], + [-11.399769, 7.965003], + [-11.399742, 7.964332], + [-11.399457, 7.963505], + [-11.399584, 7.962766], + [-11.401148, 7.962655], + [-11.402266, 7.962322], + [-11.404, 7.962897], + [-11.409582, 7.960416], + [-11.40904, 7.957703], + [-11.412355, 7.951961], + [-11.417995, 7.95196], + [-11.41875, 7.942917], + [-11.425417, 7.940416], + [-11.426249, 7.938749], + [-11.42484, 7.930998], + [-11.425403, 7.930569], + [-11.425733, 7.929839], + [-11.426359, 7.929249], + [-11.426839, 7.929378], + [-11.427142, 7.929278], + [-11.427378, 7.928976], + [-11.426401, 7.928934], + [-11.425361, 7.929196], + [-11.424218, 7.929069], + [-11.422897, 7.929214], + [-11.422844, 7.92919], + [-11.42286, 7.929106], + [-11.422672, 7.92866], + [-11.422791, 7.927717], + [-11.423146, 7.92687], + [-11.423903, 7.926234], + [-11.424608, 7.926073], + [-11.42517, 7.926066], + [-11.42607, 7.926622], + [-11.426623, 7.926663], + [-11.42758, 7.926724], + [-11.427232, 7.925375], + [-11.42717, 7.924838], + [-11.427183, 7.924836], + [-11.430306, 7.924717], + [-11.432296, 7.924153], + [-11.432994, 7.923828], + [-11.432916, 7.923749], + [-11.432534, 7.9226], + [-11.436047, 7.9212], + [-11.437446, 7.920935], + [-11.43919, 7.919725], + [-11.440245, 7.919626], + [-11.4406, 7.919849], + [-11.441531, 7.919986], + [-11.442329, 7.919739], + [-11.442634, 7.920952], + [-11.446747, 7.920086], + [-11.449582, 7.918672], + [-11.449583, 7.917084], + [-11.449464, 7.916964], + [-11.449465, 7.916963], + [-11.451502, 7.916294], + [-11.452321, 7.915881], + [-11.452545, 7.915607], + [-11.453548, 7.915432], + [-11.45375, 7.915261] + ] + ], + "type": "Polygon" + }, + "id": 161, + "properties": { + "cc:admin:id": ["2"], + "cc:oBld:total": 1205, + "cc:pop:fifteen-to-twenty-four": 2282.4428654900867, + "cc:pop:grid3-total": 5800.636311842498, + "cc:pop:kontur-total": 12925.486010045748, + "cc:pop:men": 6684.960988053064, + "cc:pop:sixty-plus": 888.7943535673228, + "cc:pop:total": 12919.267778421397, + "cc:pop:under-five": 2114.6204521648137, + "cc:pop:women": 6234.3067903683295, + "cc:pop:women-fiften-to-forty-nine": 2953.606208196975, + "cc:pop:wp-total": 10358.618459400266, + "cc:pop:wp-total-UN": 12014.442747882775, + "cc:id": "161", + "cc:Name": "Jembe CHC", + "cc:site": [-11.4283, 7.9197], + "user:parentName": "Baoma", + "user:code": "OU_578", + "user:orgUnitId": "Umh4HKqqFp6", + "user:level": "4", + "user:parentId": "vWbkYPRmKyS" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.433458, 6.968784], + [-11.431893, 6.965154], + [-11.428027, 6.960705], + [-11.429699, 6.9636], + [-11.4232, 6.965599], + [-11.417399, 6.9636], + [-11.4109, 6.9682], + [-11.412799, 6.976599], + [-11.4102, 6.984399], + [-11.4011, 6.9831], + [-11.3953, 6.9818], + [-11.3927, 6.9876], + [-11.3933, 6.9915], + [-11.393299, 6.997299], + [-11.3888, 7.003199], + [-11.3817, 7.005099], + [-11.3752, 7.0058], + [-11.3713, 7.0097], + [-11.368, 7.016099], + [-11.3661, 7.0213], + [-11.367399, 7.032999], + [-11.3648, 7.0343], + [-11.366699, 7.0356], + [-11.3628, 7.040799], + [-11.3613, 7.043199], + [-11.3605, 7.046699], + [-11.368599, 7.054299], + [-11.369564, 7.057612], + [-11.37269, 7.060769], + [-11.37375, 7.060416], + [-11.380416, 7.057084], + [-11.381249, 7.055417], + [-11.382916, 7.055416], + [-11.38625, 7.052084], + [-11.397082, 7.053749], + [-11.397083, 7.035417], + [-11.398749, 7.035417], + [-11.39875, 7.046913], + [-11.399844, 7.04502], + [-11.402416, 7.04502], + [-11.402888, 7.04535], + [-11.404937, 7.045678], + [-11.40545, 7.046254], + [-11.406286, 7.046741], + [-11.407094, 7.046846], + [-11.408333, 7.047961], + [-11.408749, 7.047896], + [-11.408749, 7.040417], + [-11.405418, 7.037084], + [-11.411062, 7.036378], + [-11.411031, 7.03596], + [-11.413749, 7.035416], + [-11.416607, 7.03113], + [-11.417696, 7.032124], + [-11.417812, 7.032186], + [-11.421249, 7.028749], + [-11.421249, 7.019584], + [-11.417083, 7.015417], + [-11.422082, 7.010416], + [-11.422082, 7.00125], + [-11.420417, 6.998749], + [-11.422082, 6.996249], + [-11.422083, 6.98625], + [-11.420692, 6.984511], + [-11.423555, 6.97955], + [-11.422917, 6.978749], + [-11.422917, 6.970613], + [-11.424294, 6.970607], + [-11.428634, 6.972456], + [-11.430755, 6.972739], + [-11.431823, 6.972287], + [-11.432691, 6.970789], + [-11.433458, 6.968784] + ] + ], + "type": "Polygon" + }, + "id": 162, + "properties": { + "cc:admin:id": ["127"], + "cc:oBld:total": 1112, + "cc:pop:fifteen-to-twenty-four": 3343.3326871158783, + "cc:pop:grid3-total": 9153.108329877987, + "cc:pop:kontur-total": 17322.28316447987, + "cc:pop:men": 8737.62009338206, + "cc:pop:sixty-plus": 1323.9000524471157, + "cc:pop:total": 18702.373490459657, + "cc:pop:under-five": 3110.586518405066, + "cc:pop:women": 9964.753397077595, + "cc:pop:women-fiften-to-forty-nine": 4758.098054197429, + "cc:pop:wp-total": 12910.586471176759, + "cc:pop:wp-total-UN": 14967.344576710842, + "cc:id": "162", + "cc:Name": "Jendema CHC", + "cc:site": [-11.3911, 7.0244], + "user:parentName": "Soro-Gbeima", + "user:code": "OU_260411", + "user:orgUnitId": "QzPf0qKBU4n", + "user:level": "4", + "user:parentId": "d9iMR1MpuIO" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.212763, 8.48318], + [-13.212778, 8.483061], + [-13.212185, 8.481068], + [-13.212048, 8.480691], + [-13.211652, 8.479318], + [-13.211474, 8.478778], + [-13.212183, 8.478491], + [-13.212422, 8.478384], + [-13.212636, 8.478272], + [-13.21227, 8.477724], + [-13.212343, 8.477392], + [-13.211876, 8.476283], + [-13.211139, 8.475449], + [-13.210288, 8.474919], + [-13.209724, 8.475598], + [-13.209047, 8.475812], + [-13.208755, 8.475998], + [-13.208655, 8.476068], + [-13.208266, 8.476333], + [-13.208264, 8.476333], + [-13.207875, 8.476602], + [-13.207342, 8.476961], + [-13.207194, 8.477076], + [-13.206789, 8.477093], + [-13.206838, 8.477315], + [-13.206781, 8.477361], + [-13.206777, 8.477385], + [-13.206848, 8.477449], + [-13.206749, 8.477975], + [-13.206218, 8.478833], + [-13.206167, 8.479371], + [-13.206148, 8.479529], + [-13.206151, 8.479757], + [-13.206225, 8.479777], + [-13.206216, 8.479891], + [-13.206185, 8.480027], + [-13.206127, 8.480109], + [-13.205969, 8.480418], + [-13.205866, 8.48053], + [-13.205324, 8.480726], + [-13.205186, 8.480808], + [-13.204895, 8.48112], + [-13.204894, 8.481119], + [-13.204709, 8.480696], + [-13.203724, 8.480458], + [-13.20251, 8.479704], + [-13.201145, 8.479484], + [-13.20093, 8.48024], + [-13.200423, 8.480659], + [-13.19901, 8.480643], + [-13.198292, 8.480298], + [-13.198084, 8.479895], + [-13.19752, 8.480216], + [-13.196639, 8.480115], + [-13.196073, 8.480364], + [-13.195901, 8.480351], + [-13.19578, 8.480316], + [-13.195738, 8.480329], + [-13.195675, 8.48053], + [-13.195569, 8.480741], + [-13.195111, 8.480943], + [-13.195331, 8.48166], + [-13.194239, 8.482131], + [-13.202399, 8.4813], + [-13.2029, 8.490699], + [-13.207419, 8.492109], + [-13.207107, 8.491664], + [-13.206056, 8.49093], + [-13.205743, 8.490714], + [-13.204351, 8.490336], + [-13.204087, 8.490257], + [-13.204087, 8.490255], + [-13.204788, 8.489921], + [-13.204822, 8.489449], + [-13.204771, 8.489005], + [-13.20474, 8.488615], + [-13.206495, 8.488574], + [-13.206859, 8.488556], + [-13.207466, 8.488556], + [-13.207829, 8.488567], + [-13.207927, 8.488491], + [-13.208028, 8.487091], + [-13.208357, 8.48668], + [-13.208475, 8.486563], + [-13.208766, 8.486294], + [-13.209904, 8.485325], + [-13.211119, 8.484528], + [-13.211614, 8.483309], + [-13.211759, 8.48304], + [-13.211944, 8.483026], + [-13.212044, 8.483037], + [-13.212215, 8.483066], + [-13.212571, 8.48315], + [-13.212738, 8.483196], + [-13.212763, 8.48318] + ] + ], + "type": "Polygon" + }, + "id": 163, + "properties": { + "cc:admin:id": ["26"], + "cc:oBld:total": 2319, + "cc:pop:fifteen-to-twenty-four": 5359.014363221711, + "cc:pop:grid3-total": 32041.107333328233, + "cc:pop:kontur-total": 16088.22220714435, + "cc:pop:men": 11594.46379179589, + "cc:pop:sixty-plus": 1818.2493305072019, + "cc:pop:total": 23372.150962297324, + "cc:pop:under-five": 2695.085096288026, + "cc:pop:women": 11777.68717050143, + "cc:pop:women-fiften-to-forty-nine": 6309.193244993448, + "cc:pop:wp-total": 24720.35340740094, + "cc:pop:wp-total-UN": 28660.848925040395, + "cc:id": "163", + "cc:Name": "Jenner Wright Clinic", + "cc:site": [-13.2116, 8.4827], + "user:parentName": "Freetown", + "user:code": "OU_278353", + "user:orgUnitId": "cZtKKa9eJZ3", + "user:level": "4", + "user:parentId": "C9uduqDZr9d" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.115733, 8.359067], + [-13.112015, 8.352628], + [-13.108461, 8.352627], + [-13.105649, 8.349816], + [-13.103015, 8.348036], + [-13.099371, 8.348036], + [-13.095464, 8.354801], + [-13.08897, 8.354801], + [-13.088978, 8.354031], + [-13.089201, 8.353553], + [-13.088905, 8.352496], + [-13.088301, 8.352066], + [-13.087857, 8.352229], + [-13.087273, 8.351225], + [-13.087046, 8.351112], + [-13.08666, 8.352179], + [-13.085857, 8.351959], + [-13.085778, 8.352111], + [-13.085268, 8.351866], + [-13.085156, 8.3518], + [-13.08489, 8.351617], + [-13.084452, 8.351964], + [-13.084628, 8.352144], + [-13.084799, 8.352298], + [-13.083953, 8.354142], + [-13.083156, 8.353684], + [-13.083292, 8.353252], + [-13.082956, 8.352859], + [-13.082636, 8.352971], + [-13.079948, 8.354202], + [-13.079665, 8.353419], + [-13.079207, 8.353828], + [-13.077972, 8.352068], + [-13.077904, 8.35197], + [-13.077857, 8.352004], + [-13.076996, 8.352189], + [-13.076539, 8.352047], + [-13.07597, 8.352296], + [-13.075676, 8.352971], + [-13.075327, 8.353478], + [-13.074905, 8.353735], + [-13.074664, 8.354324], + [-13.075024, 8.354499], + [-13.076216, 8.354548], + [-13.076557, 8.354829], + [-13.076936, 8.355913], + [-13.076399, 8.356217], + [-13.075729, 8.35693], + [-13.07394, 8.355536], + [-13.072015, 8.354566], + [-13.070197, 8.3546], + [-13.070034, 8.356109], + [-13.070831, 8.356908], + [-13.070926, 8.357267], + [-13.070785, 8.357619], + [-13.070248, 8.357602], + [-13.069877, 8.357275], + [-13.068656, 8.357546], + [-13.068206, 8.356768], + [-13.068182, 8.35698], + [-13.067578, 8.3577], + [-13.067091, 8.357877], + [-13.065641, 8.357354], + [-13.064745, 8.357267], + [-13.064514, 8.357494], + [-13.064455, 8.357773], + [-13.065204, 8.359262], + [-13.065192, 8.360361], + [-13.064976, 8.361343], + [-13.064542, 8.362181], + [-13.063674, 8.362588], + [-13.063077, 8.362614], + [-13.062014, 8.362142], + [-13.061215, 8.362], + [-13.060942, 8.3621], + [-13.060861, 8.362497], + [-13.063124, 8.364536], + [-13.063818, 8.365734], + [-13.063817, 8.365736], + [-13.06321, 8.365858], + [-13.068485, 8.37543], + [-13.079587, 8.383193], + [-13.093182, 8.414286], + [-13.106258, 8.410429], + [-13.105695, 8.40375], + [-13.112374, 8.400409], + [-13.109893, 8.394324], + [-13.109895, 8.394324], + [-13.111235, 8.397125], + [-13.11148, 8.396644], + [-13.113192, 8.395725], + [-13.11359, 8.395035], + [-13.112884, 8.395264], + [-13.112376, 8.394946], + [-13.112204, 8.394533], + [-13.112895, 8.39424], + [-13.113154, 8.393019], + [-13.115097, 8.391268], + [-13.115036, 8.390616], + [-13.114677, 8.390313], + [-13.114623, 8.390064], + [-13.115143, 8.389931], + [-13.115156, 8.38992], + [-13.114312, 8.388457], + [-13.114314, 8.388473], + [-13.114528, 8.388867], + [-13.114591, 8.389051], + [-13.113584, 8.390282], + [-13.113302, 8.390754], + [-13.112396, 8.392189], + [-13.11188, 8.392724], + [-13.111787, 8.392516], + [-13.111266, 8.390889], + [-13.111052, 8.391223], + [-13.110896, 8.392006], + [-13.11038, 8.392662], + [-13.109285, 8.391796], + [-13.109061, 8.391479], + [-13.108908, 8.391131], + [-13.108822, 8.390809], + [-13.108241, 8.390357], + [-13.107855, 8.390013], + [-13.10779, 8.389714], + [-13.107475, 8.389036], + [-13.109188, 8.387922], + [-13.108591, 8.38703], + [-13.108543, 8.386755], + [-13.108531, 8.386081], + [-13.108628, 8.384243], + [-13.108805, 8.384124], + [-13.108609, 8.384018], + [-13.108295, 8.383489], + [-13.107879, 8.382222], + [-13.107341, 8.38124], + [-13.106795, 8.380704], + [-13.106755, 8.380668], + [-13.106813, 8.380599], + [-13.107097, 8.380834], + [-13.107486, 8.380599], + [-13.109168, 8.379691], + [-13.110089, 8.379109], + [-13.109919, 8.378902], + [-13.109778, 8.378754], + [-13.109607, 8.378569], + [-13.109337, 8.378827], + [-13.109335, 8.378827], + [-13.107183, 8.375098], + [-13.111089, 8.368333], + [-13.107183, 8.361566], + [-13.110184, 8.35637], + [-13.113749, 8.357083], + [-13.115733, 8.359067] + ] + ], + "type": "Polygon" + }, + "id": 164, + "properties": { + "cc:admin:id": ["112"], + "cc:oBld:total": 6359, + "cc:pop:fifteen-to-twenty-four": 7670.996388217672, + "cc:pop:grid3-total": 38702.217567620755, + "cc:pop:kontur-total": 44421.59163313354, + "cc:pop:men": 15577.737184845533, + "cc:pop:sixty-plus": 2536.1277524739453, + "cc:pop:total": 32458.45787925106, + "cc:pop:under-five": 3609.9319412693435, + "cc:pop:women": 16880.720694405518, + "cc:pop:women-fiften-to-forty-nine": 9027.813529518702, + "cc:pop:wp-total": 28453.12030237309, + "cc:pop:wp-total-UN": 32993.91016964957, + "cc:id": "164", + "cc:Name": "John Thorpe MCHP", + "cc:site": [-13.0919, 8.3952], + "user:parentName": "Rural Western Area", + "user:code": "OU_278375", + "user:orgUnitId": "DplgrYeRIZ1", + "user:level": "4", + "user:parentId": "qtr8GGlm4gg" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.909099, 7.7591], + [-10.907199, 7.754599], + [-10.903199, 7.742299], + [-10.8949, 7.727799], + [-10.8946, 7.7233], + [-10.8958, 7.720099], + [-10.9004, 7.7138], + [-10.906199, 7.7096], + [-10.908999, 7.706799], + [-10.910899, 7.703199], + [-10.910899, 7.7006], + [-10.909699, 7.6983], + [-10.9059, 7.695099], + [-10.901999, 7.688999], + [-10.898299, 7.684799], + [-10.894, 7.680799], + [-10.8894, 7.6707], + [-10.8889, 7.667], + [-10.8894, 7.6635], + [-10.891299, 7.6606], + [-10.895299, 7.658399], + [-10.898399, 7.655199], + [-10.903499, 7.6439], + [-10.904299, 7.638699], + [-10.903999, 7.6334], + [-10.8976, 7.632499], + [-10.8945, 7.629899], + [-10.892399, 7.625899], + [-10.8882, 7.6126], + [-10.8868, 7.6098], + [-10.884899, 7.6077], + [-10.880999, 7.605399], + [-10.87, 7.6023], + [-10.8639, 7.5993], + [-10.859199, 7.5982], + [-10.8496, 7.599899], + [-10.842299, 7.600199], + [-10.834999, 7.599799], + [-10.832199, 7.599199], + [-10.8261, 7.5973], + [-10.8201, 7.5966], + [-10.8093, 7.596699], + [-10.8017, 7.597699], + [-10.8005, 7.5923], + [-10.800199, 7.5878], + [-10.797199, 7.5866], + [-10.7906, 7.5885], + [-10.788, 7.596299], + [-10.786, 7.5989], + [-10.7847, 7.603399], + [-10.787299, 7.607299], + [-10.7854, 7.6112], + [-10.785999, 7.6157], + [-10.7763, 7.625399], + [-10.771099, 7.6332], + [-10.7678, 7.6403], + [-10.769799, 7.6449], + [-10.767799, 7.647499], + [-10.7633, 7.6423], + [-10.760699, 7.6468], + [-10.7477, 7.653899], + [-10.7412, 7.6572], + [-10.743199, 7.663], + [-10.739299, 7.6701], + [-10.7347, 7.677299], + [-10.7295, 7.679899], + [-10.727, 7.6779], + [-10.724999, 7.682499], + [-10.7205, 7.6825], + [-10.721099, 7.688899], + [-10.7185, 7.694099], + [-10.7127, 7.6967], + [-10.713899, 7.701899], + [-10.7094, 7.7025], + [-10.709399, 7.7064], + [-10.7036, 7.7077], + [-10.703599, 7.711599], + [-10.701599, 7.7136], + [-10.701, 7.718699], + [-10.700999, 7.7226], + [-10.700299, 7.7265], + [-10.6938, 7.730399], + [-10.6906, 7.7304], + [-10.690599, 7.7336], + [-10.687299, 7.734999], + [-10.6854, 7.735], + [-10.684099, 7.7369], + [-10.6789, 7.7382], + [-10.675, 7.743399], + [-10.6705, 7.7414], + [-10.6653, 7.744], + [-10.664699, 7.7466], + [-10.6575, 7.749199], + [-10.6536, 7.7512], + [-10.654299, 7.7525], + [-10.6523, 7.757599], + [-10.650399, 7.760299], + [-10.6433, 7.7589], + [-10.641299, 7.761499], + [-10.636099, 7.764799], + [-10.630299, 7.764199], + [-10.6212, 7.7629], + [-10.6011, 7.77], + [-10.600999, 7.7939], + [-10.6002, 7.931799], + [-10.5995, 7.984499], + [-10.600299, 7.9318], + [-10.6016, 7.9003], + [-10.606699, 7.9001], + [-10.611199, 7.900199], + [-10.615499, 7.900799], + [-10.619899, 7.902699], + [-10.6232, 7.9035], + [-10.6301, 7.903899], + [-10.649999, 7.9038], + [-10.6534, 7.904], + [-10.6567, 7.9048], + [-10.6689, 7.9103], + [-10.6732, 7.9111], + [-10.682199, 7.911899], + [-10.6876, 7.9141], + [-10.6901, 7.9146], + [-10.695399, 7.915], + [-10.699, 7.9164], + [-10.701899, 7.919799], + [-10.703599, 7.924399], + [-10.7043, 7.927399], + [-10.708799, 7.9233], + [-10.712599, 7.9202], + [-10.7176, 7.917399], + [-10.724899, 7.912], + [-10.728, 7.910499], + [-10.732299, 7.9081], + [-10.7355, 7.906799], + [-10.7397, 7.904399], + [-10.7473, 7.900899], + [-10.7508, 7.900199], + [-10.761799, 7.8999], + [-10.765299, 7.8993], + [-10.770599, 7.897], + [-10.7756, 7.895699], + [-10.7822, 7.893], + [-10.787099, 7.8926], + [-10.789799, 7.892799], + [-10.7919, 7.8935], + [-10.799799, 7.897299], + [-10.8052, 7.900599], + [-10.8096, 7.899599], + [-10.8125, 7.897999], + [-10.8158, 7.894999], + [-10.830899, 7.8797], + [-10.833399, 7.8771], + [-10.835399, 7.8744], + [-10.837299, 7.8705], + [-10.838599, 7.8685], + [-10.841899, 7.8646], + [-10.84191, 7.864583], + [-10.8431, 7.862599], + [-10.845, 7.858699], + [-10.8492, 7.853399], + [-10.8505, 7.851399], + [-10.8524, 7.847499], + [-10.857099, 7.8416], + [-10.860299, 7.8357], + [-10.864, 7.830999], + [-10.8652, 7.829099], + [-10.8672, 7.825199], + [-10.871399, 7.8199], + [-10.872699, 7.8179], + [-10.874099, 7.8147], + [-10.8757, 7.811799], + [-10.8765, 7.809599], + [-10.8776, 7.804299], + [-10.8785, 7.801999], + [-10.88, 7.799199], + [-10.8813, 7.795999], + [-10.8841, 7.792399], + [-10.898299, 7.7781], + [-10.901599, 7.7741], + [-10.904099, 7.7693], + [-10.9062, 7.765699], + [-10.907799, 7.7624], + [-10.909099, 7.7591] + ] + ], + "type": "Polygon" + }, + "id": 165, + "properties": { + "cc:admin:id": ["87"], + "cc:oBld:total": 2310, + "cc:pop:fifteen-to-twenty-four": 7444.60045761977, + "cc:pop:grid3-total": 34836.62783155952, + "cc:pop:kontur-total": 41837.73617787873, + "cc:pop:men": 21002.364723417435, + "cc:pop:sixty-plus": 2305.804618348149, + "cc:pop:total": 38706.99241164925, + "cc:pop:under-five": 5960.61033406938, + "cc:pop:women": 17704.627688231805, + "cc:pop:women-fiften-to-forty-nine": 8901.628730292261, + "cc:pop:wp-total": 33331.21352385852, + "cc:pop:wp-total-UN": 38645.94095957837, + "cc:id": "165", + "cc:Name": "Jojoima CHC", + "cc:site": [-10.7871, 7.8767], + "user:parentName": "Malema", + "user:code": "OU_204872", + "user:orgUnitId": "DvzKyuC0G4w", + "user:level": "4", + "user:parentId": "GE25DpSrqpB" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.705899, 8.272199], + [-10.704899, 8.2667], + [-10.7002, 8.2628], + [-10.6975, 8.2603], + [-10.6956, 8.257699], + [-10.6948, 8.2554], + [-10.6944, 8.252499], + [-10.6946, 8.249499], + [-10.6952, 8.246799], + [-10.6978, 8.241199], + [-10.698099, 8.2272], + [-10.6977, 8.2234], + [-10.696499, 8.2199], + [-10.6926, 8.2149], + [-10.692136, 8.21419], + [-10.691427, 8.214041], + [-10.69055, 8.213408], + [-10.689018, 8.212793], + [-10.687936, 8.212866], + [-10.686674, 8.21332], + [-10.685363, 8.214131], + [-10.683013, 8.216036], + [-10.6818, 8.216361], + [-10.680775, 8.217333], + [-10.679932, 8.217707], + [-10.679359, 8.218705], + [-10.679219, 8.219491], + [-10.679383, 8.221089], + [-10.679988, 8.223861], + [-10.675416, 8.22125], + [-10.667083, 8.225416], + [-10.664583, 8.225417], + [-10.662917, 8.227917], + [-10.662916, 8.234585], + [-10.659479, 8.234586], + [-10.657981, 8.237179], + [-10.657916, 8.237083], + [-10.654582, 8.236249], + [-10.651249, 8.232917], + [-10.63625, 8.232917], + [-10.63125, 8.237917], + [-10.631478, 8.241351], + [-10.62625, 8.241352], + [-10.626249, 8.24875], + [-10.61625, 8.252083], + [-10.615417, 8.252917], + [-10.614848, 8.25519], + [-10.615398, 8.255453], + [-10.615875, 8.255799], + [-10.612916, 8.265416], + [-10.611249, 8.265416], + [-10.602082, 8.25875], + [-10.599583, 8.25875], + [-10.597916, 8.26125], + [-10.596249, 8.266249], + [-10.59375, 8.26875], + [-10.593749, 8.270416], + [-10.59125, 8.27125], + [-10.589583, 8.27375], + [-10.589582, 8.275354], + [-10.588885, 8.275163], + [-10.587317, 8.275329], + [-10.586281, 8.275685], + [-10.586245, 8.2757], + [-10.585375, 8.275898], + [-10.584279, 8.276051], + [-10.583875, 8.275982], + [-10.583612, 8.276458], + [-10.583462, 8.276447], + [-10.583008, 8.276209], + [-10.582378, 8.276021], + [-10.5821, 8.275914], + [-10.581889, 8.275907], + [-10.581586, 8.275827], + [-10.580575, 8.275527], + [-10.580364, 8.275531], + [-10.579858, 8.275704], + [-10.579441, 8.275746], + [-10.579862, 8.273716], + [-10.579629, 8.272813], + [-10.579211, 8.272075], + [-10.578894, 8.27161], + [-10.578407, 8.271868], + [-10.57819, 8.272292], + [-10.577912, 8.272423], + [-10.578006, 8.272512], + [-10.577754, 8.273025], + [-10.577723, 8.273099], + [-10.577267, 8.273442], + [-10.576884, 8.274021], + [-10.576271, 8.274248], + [-10.575452, 8.273691], + [-10.574355, 8.276039], + [-10.573305, 8.275556], + [-10.573201, 8.274039], + [-10.572778, 8.273198], + [-10.572434, 8.272877], + [-10.57213, 8.272798], + [-10.571382, 8.273333], + [-10.570851, 8.274015], + [-10.570786, 8.274444], + [-10.57039, 8.274414], + [-10.570301, 8.275258], + [-10.570276, 8.275632], + [-10.570569, 8.275687], + [-10.570545, 8.276378], + [-10.570452, 8.276481], + [-10.569868, 8.277196], + [-10.569649, 8.277647], + [-10.569662, 8.277794], + [-10.57054, 8.277881], + [-10.570576, 8.277882], + [-10.570773, 8.278516], + [-10.570876, 8.278526], + [-10.57095, 8.278966], + [-10.571067, 8.279897], + [-10.57136, 8.280288], + [-10.571923, 8.280764], + [-10.572763, 8.281127], + [-10.574128, 8.281835], + [-10.573642, 8.282455], + [-10.573427, 8.283104], + [-10.573404, 8.283195], + [-10.57335, 8.284268], + [-10.573714, 8.285407], + [-10.573667, 8.286005], + [-10.573276, 8.287091], + [-10.573391, 8.287668], + [-10.573765, 8.288502], + [-10.574127, 8.289432], + [-10.575086, 8.290914], + [-10.575147, 8.292492], + [-10.575204, 8.292669], + [-10.575422, 8.292911], + [-10.57625, 8.292083], + [-10.580416, 8.29125], + [-10.58125, 8.29125], + [-10.582917, 8.296249], + [-10.58375, 8.29625], + [-10.587916, 8.302084], + [-10.589583, 8.307083], + [-10.600416, 8.307084], + [-10.60125, 8.30625], + [-10.602836, 8.306778], + [-10.602837, 8.30678], + [-10.602813, 8.306815], + [-10.602475, 8.307904], + [-10.602299, 8.30931], + [-10.602416, 8.309872], + [-10.602534, 8.310234], + [-10.602548, 8.311346], + [-10.604582, 8.315417], + [-10.604583, 8.317916], + [-10.615416, 8.322916], + [-10.612083, 8.329584], + [-10.612083, 8.333251], + [-10.6333, 8.3346], + [-10.6567, 8.3409], + [-10.673999, 8.3409], + [-10.687899, 8.322599], + [-10.6914, 8.3079], + [-10.697599, 8.303299], + [-10.7002, 8.293499], + [-10.7007, 8.2733], + [-10.705899, 8.272199] + ] + ], + "type": "Polygon" + }, + "id": 166, + "properties": { + "cc:admin:id": ["77"], + "cc:oBld:total": 3832, + "cc:pop:fifteen-to-twenty-four": 3246.3400103686877, + "cc:pop:grid3-total": 15156.352240212178, + "cc:pop:kontur-total": 20242.071397047403, + "cc:pop:men": 8247.211263277144, + "cc:pop:sixty-plus": 924.1277104516164, + "cc:pop:total": 17354.150493359783, + "cc:pop:under-five": 2663.638467518464, + "cc:pop:women": 9106.939230082635, + "cc:pop:women-fiften-to-forty-nine": 4552.14798209086, + "cc:pop:wp-total": 15299.539638036527, + "cc:pop:wp-total-UN": 17751.105806612282, + "cc:id": "166", + "cc:Name": "Jokibu MCHP", + "cc:site": [-10.5741, 8.2761], + "user:parentName": "Peje West", + "user:code": "OU_204926", + "user:orgUnitId": "f7yRhIeFn1k", + "user:level": "4", + "user:parentId": "pmxZm7klXBy" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.6625, 7.85997], + [-11.658493, 7.859866], + [-11.656077, 7.860073], + [-11.652158, 7.859766], + [-11.65102, 7.859997], + [-11.650327, 7.860219], + [-11.648148, 7.86142], + [-11.646668, 7.862503], + [-11.646471, 7.862889], + [-11.644577, 7.863196], + [-11.643724, 7.863706], + [-11.642661, 7.863975], + [-11.642661, 7.863974], + [-11.643248, 7.863529], + [-11.643257, 7.863179], + [-11.638382, 7.865098], + [-11.637288, 7.865041], + [-11.636775, 7.865125], + [-11.636698, 7.865263], + [-11.636646, 7.865101], + [-11.634549, 7.865781], + [-11.632431, 7.865695], + [-11.628774, 7.86691], + [-11.628435, 7.867509], + [-11.628076, 7.867403], + [-11.62758, 7.866307], + [-11.627222, 7.86613], + [-11.626557, 7.866156], + [-11.623404, 7.867209], + [-11.623275, 7.867432], + [-11.621183, 7.867882], + [-11.618661, 7.868916], + [-11.617574, 7.869534], + [-11.616632, 7.869665], + [-11.616556, 7.870079], + [-11.616391, 7.870172], + [-11.616546, 7.870375], + [-11.616401, 7.870744], + [-11.615221, 7.870269], + [-11.614991, 7.870372], + [-11.614788, 7.86993], + [-11.614502, 7.869961], + [-11.613781, 7.870402], + [-11.613137, 7.87029], + [-11.613054, 7.871165], + [-11.61258, 7.871172], + [-11.612057, 7.87178], + [-11.610435, 7.872135], + [-11.610118, 7.871545], + [-11.608983, 7.871346], + [-11.607785, 7.870662], + [-11.606684, 7.869759], + [-11.606307, 7.869178], + [-11.606192, 7.868693], + [-11.605796, 7.8682], + [-11.605393, 7.868206], + [-11.604223, 7.868711], + [-11.604241, 7.868898], + [-11.602222, 7.870047], + [-11.601265, 7.87097], + [-11.600848, 7.871184], + [-11.6014, 7.8713], + [-11.604999, 7.872799], + [-11.6077, 7.8735], + [-11.6115, 7.8738], + [-11.6164, 7.873899], + [-11.621199, 7.8738], + [-11.625399, 7.8733], + [-11.6313, 7.870999], + [-11.6338, 7.870399], + [-11.639099, 7.8698], + [-11.641199, 7.8693], + [-11.6433, 7.868199], + [-11.6476, 7.864899], + [-11.651099, 7.8631], + [-11.6586, 7.861499], + [-11.662439, 7.860323], + [-11.6625, 7.85997] + ] + ], + "type": "Polygon" + }, + "id": 167, + "properties": { + "cc:admin:id": ["40"], + "cc:oBld:total": 0, + "cc:pop:fifteen-to-twenty-four": 192.96166453953361, + "cc:pop:grid3-total": 1407.9165377949826, + "cc:pop:kontur-total": 1141.787041361203, + "cc:pop:men": 526.9206616177484, + "cc:pop:sixty-plus": 77.98399414586534, + "cc:pop:total": 1079.7919238962495, + "cc:pop:under-five": 176.96547314046668, + "cc:pop:women": 552.871262278501, + "cc:pop:women-fiften-to-forty-nine": 264.94862408785536, + "cc:pop:wp-total": 862.85460332102, + "cc:pop:wp-total-UN": 1000.8327523814573, + "cc:id": "167", + "cc:Name": "Jormu MCHP", + "cc:site": [-11.6279, 7.8716], + "user:parentName": "Baoma", + "user:code": "OU_579", + "user:orgUnitId": "RzgSFJ9E46G", + "user:level": "4", + "user:parentId": "vWbkYPRmKyS" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.241249, 8.245416], + [-12.240417, 8.23125], + [-12.239582, 8.22875], + [-12.236249, 8.22625], + [-12.234583, 8.226249], + [-12.234582, 8.219584], + [-12.232916, 8.217084], + [-12.225417, 8.21375], + [-12.224582, 8.212084], + [-12.219583, 8.209583], + [-12.217916, 8.19875], + [-12.213749, 8.195417], + [-12.204583, 8.196249], + [-12.199584, 8.196249], + [-12.201249, 8.192916], + [-12.199582, 8.185417], + [-12.198749, 8.185417], + [-12.191766, 8.187512], + [-12.1918, 8.1876], + [-12.192099, 8.190999], + [-12.1917, 8.193499], + [-12.1898, 8.197899], + [-12.189099, 8.2007], + [-12.1889, 8.2045], + [-12.189099, 8.208499], + [-12.189799, 8.212199], + [-12.1918, 8.2167], + [-12.1925, 8.2194], + [-12.193099, 8.224199], + [-12.1936, 8.226599], + [-12.1954, 8.2294], + [-12.201299, 8.235699], + [-12.203199, 8.238499], + [-12.2042, 8.2417], + [-12.2045, 8.2455], + [-12.204699, 8.261299], + [-12.204299, 8.264999], + [-12.203099, 8.2676], + [-12.199199, 8.2705], + [-12.1939, 8.275199], + [-12.192, 8.277399], + [-12.190799, 8.2794], + [-12.189999, 8.2817], + [-12.1898, 8.284599], + [-12.189899, 8.294699], + [-12.189699, 8.2987], + [-12.189099, 8.3015], + [-12.1868, 8.307299], + [-12.1862, 8.311499], + [-12.186299, 8.315399], + [-12.186699, 8.318299], + [-12.187599, 8.320899], + [-12.189, 8.323], + [-12.1945, 8.329899], + [-12.200299, 8.332199], + [-12.204599, 8.333099], + [-12.215099, 8.333999], + [-12.219199, 8.334999], + [-12.225699, 8.337899], + [-12.227082, 8.333749], + [-12.22625, 8.330416], + [-12.227916, 8.325417], + [-12.226249, 8.324583], + [-12.224583, 8.322084], + [-12.225172, 8.320314], + [-12.225869, 8.319919], + [-12.224583, 8.315417], + [-12.232082, 8.315416], + [-12.230417, 8.305416], + [-12.234583, 8.297084], + [-12.241249, 8.295416], + [-12.238749, 8.28625], + [-12.237916, 8.286249], + [-12.236249, 8.284584], + [-12.234824, 8.284583], + [-12.233138, 8.281661], + [-12.236583, 8.275692], + [-12.238939, 8.27689], + [-12.239308, 8.277104], + [-12.23875, 8.273749], + [-12.23875, 8.26125], + [-12.23625, 8.25125], + [-12.238749, 8.247917], + [-12.23875, 8.247083], + [-12.241249, 8.245416] + ] + ], + "type": "Polygon" + }, + "id": 168, + "properties": { + "cc:admin:id": ["23"], + "cc:oBld:total": 108, + "cc:pop:fifteen-to-twenty-four": 1487.8932345215185, + "cc:pop:grid3-total": 7869.19134556209, + "cc:pop:kontur-total": 8799.802752080454, + "cc:pop:men": 3943.011459098352, + "cc:pop:sixty-plus": 616.3013738493094, + "cc:pop:total": 8333.192162276086, + "cc:pop:under-five": 1364.8181308064063, + "cc:pop:women": 4390.180703177733, + "cc:pop:women-fiften-to-forty-nine": 2126.1200246043695, + "cc:pop:wp-total": 5686.989032059395, + "cc:pop:wp-total-UN": 6580.966251080872, + "cc:id": "168", + "cc:Name": "Juma MCHP", + "cc:site": [-12.205, 8.2552], + "user:parentName": "Kori", + "user:code": "OU_247001", + "user:orgUnitId": "V6QWyB0KqvP", + "user:level": "4", + "user:parentId": "nV3OkyzF4US" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.28791, 7.947686], + [-12.28381, 7.947685], + [-12.279904, 7.94092], + [-12.276736, 7.940919], + [-12.27678, 7.940227], + [-12.274374, 7.93606], + [-12.266562, 7.93606], + [-12.262656, 7.942825], + [-12.254844, 7.942825], + [-12.253577, 7.940633], + [-12.25375, 7.940416], + [-12.25375, 7.934981], + [-12.253519, 7.934583], + [-12.245708, 7.934582], + [-12.244504, 7.932498], + [-12.245345, 7.93013], + [-12.245633, 7.928232], + [-12.245617, 7.926761], + [-12.245145, 7.924027], + [-12.237917, 7.924584], + [-12.23399, 7.929294], + [-12.231529, 7.929294], + [-12.23173, 7.926667], + [-12.224034, 7.926667], + [-12.220127, 7.933433], + [-12.222234, 7.937083], + [-12.214583, 7.937083], + [-12.213589, 7.934898], + [-12.213449, 7.935135], + [-12.21446, 7.93745], + [-12.212916, 7.942083], + [-12.210416, 7.944584], + [-12.207663, 7.945134], + [-12.205164, 7.940806], + [-12.204294, 7.940805], + [-12.204377, 7.938392], + [-12.204908, 7.936726], + [-12.204351, 7.93484], + [-12.20442, 7.93385], + [-12.204002, 7.933447], + [-12.203575, 7.932515], + [-12.19875, 7.934583], + [-12.200416, 7.945416], + [-12.198749, 7.947084], + [-12.190417, 7.947083], + [-12.190417, 7.937084], + [-12.192082, 7.929584], + [-12.185008, 7.930998], + [-12.183744, 7.928379], + [-12.177917, 7.927084], + [-12.175417, 7.932083], + [-12.17375, 7.932917], + [-12.172082, 7.937916], + [-12.167083, 7.937083], + [-12.16375, 7.934584], + [-12.162083, 7.930417], + [-12.162082, 7.929653], + [-12.16125, 7.929519], + [-12.161249, 7.927384], + [-12.159792, 7.9275], + [-12.159476, 7.927809], + [-12.15875, 7.927084], + [-12.158749, 7.926518], + [-12.157426, 7.927903], + [-12.154365, 7.929956], + [-12.15371, 7.930022], + [-12.149612, 7.929242], + [-12.14899, 7.929423], + [-12.147705, 7.930252], + [-12.14637, 7.93082], + [-12.145391, 7.932356], + [-12.145514, 7.933768], + [-12.145772, 7.9345], + [-12.14773, 7.935051], + [-12.150326, 7.936275], + [-12.151181, 7.937335], + [-12.151321, 7.938205], + [-12.151069, 7.939093], + [-12.1536, 7.94], + [-12.157599, 7.940499], + [-12.164799, 7.940599], + [-12.168799, 7.940999], + [-12.1725, 7.9424], + [-12.1755, 7.9447], + [-12.178299, 7.947499], + [-12.180199, 7.949699], + [-12.181799, 7.952099], + [-12.1836, 7.956], + [-12.186799, 7.961399], + [-12.188599, 7.962899], + [-12.1941, 7.9662], + [-12.202199, 7.969799], + [-12.207299, 7.970499], + [-12.213099, 7.970599], + [-12.217999, 7.9705], + [-12.222999, 7.9697], + [-12.227899, 7.9674], + [-12.2311, 7.966099], + [-12.236199, 7.9636], + [-12.241299, 7.9623], + [-12.246599, 7.9601], + [-12.249299, 7.9594], + [-12.2522, 7.9592], + [-12.264999, 7.959199], + [-12.2688, 7.956699], + [-12.2715, 7.955799], + [-12.278699, 7.954999], + [-12.281899, 7.9534], + [-12.2831, 7.952399], + [-12.28791, 7.947686] + ] + ], + "type": "Polygon" + }, + "id": 169, + "properties": { + "cc:admin:id": ["140"], + "cc:oBld:total": 2, + "cc:pop:fifteen-to-twenty-four": 89.75579020793798, + "cc:pop:grid3-total": 1362.3703268948163, + "cc:pop:kontur-total": 455.272495238195, + "cc:pop:men": 223.91615642337555, + "cc:pop:sixty-plus": 32.080434693831116, + "cc:pop:total": 477.9901411882097, + "cc:pop:under-five": 86.45987817554202, + "cc:pop:women": 254.0739847648342, + "cc:pop:women-fiften-to-forty-nine": 119.54031286937312, + "cc:pop:wp-total": 666.6691833460735, + "cc:pop:wp-total-UN": 774.9476780477876, + "cc:id": "169", + "cc:Name": "Kabaima MCHP", + "cc:site": [-12.1866, 7.9578], + "user:parentName": "Dasse", + "user:code": "OU_247020", + "user:orgUnitId": "EQUwHqZOb5L", + "user:level": "4", + "user:parentId": "RndxKqQGzUl" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.261, 7.641699], + [-12.260999, 7.6383], + [-12.2596, 7.6345], + [-12.2549, 7.628099], + [-12.2538, 7.6241], + [-12.253599, 7.619899], + [-12.253473, 7.611072], + [-12.252429, 7.61069], + [-12.250326, 7.608691], + [-12.249392, 7.608001], + [-12.249029, 7.607915], + [-12.248491, 7.608719], + [-12.248059, 7.608427], + [-12.245741, 7.607899], + [-12.245066, 7.607108], + [-12.244847, 7.606157], + [-12.244921, 7.6053], + [-12.24538, 7.603648], + [-12.247435, 7.601669], + [-12.247654, 7.601095], + [-12.247394, 7.599677], + [-12.246832, 7.598962], + [-12.248095, 7.598864], + [-12.247894, 7.598566], + [-12.246343, 7.597469], + [-12.245544, 7.597205], + [-12.24443, 7.59712], + [-12.243261, 7.597246], + [-12.24245, 7.597577], + [-12.241406, 7.598345], + [-12.240243, 7.60001], + [-12.238867, 7.604331], + [-12.238261, 7.605349], + [-12.237999, 7.605471], + [-12.237712, 7.605439], + [-12.236794, 7.604827], + [-12.232605, 7.603694], + [-12.232077, 7.603348], + [-12.229525, 7.600842], + [-12.228069, 7.600014], + [-12.227283, 7.599881], + [-12.225644, 7.600236], + [-12.223585, 7.601577], + [-12.221767, 7.603367], + [-12.220476, 7.603488], + [-12.219342, 7.602971], + [-12.217637, 7.603341], + [-12.214818, 7.60301], + [-12.214113, 7.603787], + [-12.21337, 7.604987], + [-12.212903, 7.605497], + [-12.212618, 7.60555], + [-12.210582, 7.605017], + [-12.209514, 7.604041], + [-12.209121, 7.603287], + [-12.207989, 7.602317], + [-12.207712, 7.601862], + [-12.207601, 7.600545], + [-12.207728, 7.599287], + [-12.207363, 7.598595], + [-12.206832, 7.598122], + [-12.206079, 7.597933], + [-12.204309, 7.597926], + [-12.203301, 7.597307], + [-12.202857, 7.596567], + [-12.202227, 7.596071], + [-12.201771, 7.595833], + [-12.201606, 7.596487], + [-12.20087, 7.596176], + [-12.199833, 7.596156], + [-12.196519, 7.596767], + [-12.194553, 7.596814], + [-12.192405, 7.594657], + [-12.192053, 7.592943], + [-12.191758, 7.592514], + [-12.191343, 7.592338], + [-12.189323, 7.592085], + [-12.187088, 7.590995], + [-12.186414, 7.59118], + [-12.185823, 7.591678], + [-12.185182, 7.592531], + [-12.184014, 7.595013], + [-12.182839, 7.596478], + [-12.182, 7.598749], + [-12.18056, 7.59875], + [-12.180525, 7.602271], + [-12.182304, 7.602628], + [-12.182548, 7.603845], + [-12.183185, 7.606051], + [-12.183934, 7.607116], + [-12.184187, 7.60789], + [-12.184185, 7.608405], + [-12.185416, 7.610768], + [-12.185416, 7.613749], + [-12.184583, 7.614583], + [-12.184388, 7.614584], + [-12.184423, 7.615052], + [-12.185682, 7.619006], + [-12.185619, 7.620729], + [-12.185898, 7.621425], + [-12.186974, 7.620888], + [-12.187345, 7.621694], + [-12.188799, 7.623423], + [-12.190021, 7.6257], + [-12.19065, 7.625956], + [-12.190695, 7.62613], + [-12.189973, 7.627604], + [-12.188532, 7.629479], + [-12.186705, 7.630621], + [-12.18627, 7.631663], + [-12.18627, 7.632761], + [-12.185854, 7.634164], + [-12.185298, 7.634702], + [-12.183989, 7.633721], + [-12.183816, 7.635572], + [-12.183315, 7.637083], + [-12.185004, 7.637084], + [-12.185005, 7.637085], + [-12.184588, 7.637486], + [-12.183953, 7.637809], + [-12.183756, 7.639914], + [-12.182995, 7.640747], + [-12.182236, 7.641887], + [-12.182207, 7.642171], + [-12.183269, 7.643389], + [-12.183559, 7.644277], + [-12.183961, 7.646833], + [-12.185108, 7.649189], + [-12.185974, 7.651464], + [-12.1871, 7.652568], + [-12.187634, 7.65279], + [-12.188858, 7.652667], + [-12.189357, 7.652779], + [-12.190757, 7.654745], + [-12.191073, 7.656202], + [-12.190972, 7.656521], + [-12.190191, 7.657559], + [-12.194899, 7.659699], + [-12.1983, 7.6619], + [-12.209399, 7.671699], + [-12.215799, 7.675999], + [-12.217999, 7.677799], + [-12.2211, 7.6809], + [-12.2248, 7.685399], + [-12.233899, 7.6834], + [-12.2358, 7.682699], + [-12.2387, 7.680799], + [-12.245, 7.674699], + [-12.2489, 7.669899], + [-12.2511, 7.665499], + [-12.2537, 7.661099], + [-12.256899, 7.6537], + [-12.2585, 7.647899], + [-12.261, 7.641699] + ] + ], + "type": "Polygon" + }, + "id": 170, + "properties": { + "cc:admin:id": ["42"], + "cc:oBld:total": 4, + "cc:pop:fifteen-to-twenty-four": 626.2252508376175, + "cc:pop:grid3-total": 3007.8726719077517, + "cc:pop:kontur-total": 3256.7915112484707, + "cc:pop:men": 1735.3348089944593, + "cc:pop:sixty-plus": 279.0298023654667, + "cc:pop:total": 3621.574112286783, + "cc:pop:under-five": 589.7860596251336, + "cc:pop:women": 1886.239303292323, + "cc:pop:women-fiften-to-forty-nine": 917.5860553414634, + "cc:pop:wp-total": 3347.498737503392, + "cc:pop:wp-total-UN": 3886.19425981556, + "cc:id": "170", + "cc:Name": "Kabati CHP", + "cc:site": [-12.2472, 7.6685], + "user:parentName": "Jong", + "user:code": "OU_197396", + "user:orgUnitId": "Xk2fvz4aTBU", + "user:level": "4", + "user:parentId": "VCtF1DbspR5" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.324346, 9.617248], + [-12.32376, 9.616234], + [-12.323143, 9.616139], + [-12.322659, 9.615513], + [-12.322519, 9.614859], + [-12.321657, 9.614009], + [-12.321489, 9.613314], + [-12.321495, 9.612311], + [-12.320441, 9.610482], + [-12.322451, 9.606998], + [-12.322479, 9.606922], + [-12.322173, 9.605202], + [-12.32244, 9.60442], + [-12.323609, 9.603529], + [-12.323922, 9.602982], + [-12.320441, 9.596951], + [-12.322775, 9.592905], + [-12.312917, 9.592082], + [-12.309583, 9.587916], + [-12.309583, 9.585747], + [-12.310185, 9.585221], + [-12.310825, 9.584156], + [-12.311158, 9.582834], + [-12.311466, 9.581596], + [-12.311844, 9.580998], + [-12.311328, 9.580103], + [-12.312082, 9.577083], + [-12.313749, 9.575416], + [-12.313749, 9.572917], + [-12.310416, 9.569582], + [-12.30603, 9.561542], + [-12.304982, 9.562159], + [-12.301365, 9.563372], + [-12.299541, 9.563701], + [-12.297056, 9.563483], + [-12.293992, 9.562117], + [-12.293409, 9.561992], + [-12.29207, 9.562177], + [-12.29102, 9.562604], + [-12.290725, 9.561124], + [-12.290868, 9.561057], + [-12.292346, 9.5607], + [-12.292991, 9.560988], + [-12.294376, 9.560981], + [-12.29545, 9.560393], + [-12.295991, 9.560471], + [-12.296529, 9.560614], + [-12.297513, 9.561784], + [-12.298307, 9.562133], + [-12.300422, 9.557905], + [-12.300132, 9.557812], + [-12.29907, 9.556231], + [-12.298705, 9.555374], + [-12.297821, 9.554753], + [-12.296968, 9.554463], + [-12.296397, 9.553983], + [-12.298273, 9.552771], + [-12.2927, 9.553399], + [-12.2901, 9.553999], + [-12.285499, 9.5559], + [-12.281899, 9.5565], + [-12.2742, 9.556799], + [-12.2718, 9.557399], + [-12.268599, 9.5593], + [-12.2603, 9.567499], + [-12.258099, 9.5694], + [-12.255399, 9.571], + [-12.2491, 9.572599], + [-12.244699, 9.5746], + [-12.241899, 9.5752], + [-12.238999, 9.5754], + [-12.234099, 9.575399], + [-12.2192, 9.5752], + [-12.215299, 9.5754], + [-12.2125, 9.575899], + [-12.21, 9.577099], + [-12.2051, 9.580999], + [-12.2026, 9.582199], + [-12.199099, 9.5829], + [-12.194499, 9.583099], + [-12.189899, 9.582999], + [-12.1872, 9.5826], + [-12.184699, 9.581699], + [-12.182299, 9.579499], + [-12.1801, 9.575], + [-12.1781, 9.5714], + [-12.1768, 9.5682], + [-12.1745, 9.5639], + [-12.1731, 9.5607], + [-12.171499, 9.558399], + [-12.169, 9.5557], + [-12.166699, 9.554], + [-12.164499, 9.553299], + [-12.1614, 9.5531], + [-12.157999, 9.554], + [-12.1502, 9.558199], + [-12.144, 9.562899], + [-12.1403, 9.564799], + [-12.1384, 9.566399], + [-12.136999, 9.5683], + [-12.135099, 9.5724], + [-12.1324, 9.577299], + [-12.130099, 9.5827], + [-12.127099, 9.586299], + [-12.1202, 9.589699], + [-12.116599, 9.5919], + [-12.112199, 9.5958], + [-12.1083, 9.600199], + [-12.106199, 9.6039], + [-12.1035, 9.613899], + [-12.1014, 9.617599], + [-12.098599, 9.621], + [-12.0913, 9.628499], + [-12.0859, 9.633499], + [-12.082299, 9.636], + [-12.0771, 9.638699], + [-12.073499, 9.6401], + [-12.0621, 9.643499], + [-12.050199, 9.6447], + [-12.0459, 9.645699], + [-12.0433, 9.646999], + [-12.038845, 9.649794], + [-12.039582, 9.657916], + [-12.03777, 9.660334], + [-12.038816, 9.661136], + [-12.039017, 9.661713], + [-12.038974, 9.662089], + [-12.046053, 9.66209], + [-12.046124, 9.66221], + [-12.04917, 9.65988], + [-12.049865, 9.664678], + [-12.054915, 9.664678], + [-12.058821, 9.657913], + [-12.066634, 9.657912], + [-12.070541, 9.651147], + [-12.076898, 9.651147], + [-12.07663, 9.654638], + [-12.081792, 9.654639], + [-12.084438, 9.65922], + [-12.090416, 9.651252], + [-12.090417, 9.666249], + [-12.097916, 9.666249], + [-12.102916, 9.661249], + [-12.102098, 9.650614], + [-12.105696, 9.644381], + [-12.101791, 9.637615], + [-12.105696, 9.63085], + [-12.113509, 9.630849], + [-12.117415, 9.624084], + [-12.125227, 9.624083], + [-12.129135, 9.617318], + [-12.129921, 9.617318], + [-12.130064, 9.619167], + [-12.134713, 9.619168], + [-12.138619, 9.625933], + [-12.143693, 9.625934], + [-12.14375, 9.62625], + [-12.149582, 9.62625], + [-12.149811, 9.626068], + [-12.152572, 9.630849], + [-12.155095, 9.63085], + [-12.155586, 9.632148], + [-12.158482, 9.637245], + [-12.158987, 9.638528], + [-12.159019, 9.639692], + [-12.15872, 9.641123], + [-12.159806, 9.641123], + [-12.159934, 9.639002], + [-12.159772, 9.637797], + [-12.1595, 9.637039], + [-12.15898, 9.63625], + [-12.166249, 9.636249], + [-12.170416, 9.632916], + [-12.170747, 9.628612], + [-12.177781, 9.628612], + [-12.181688, 9.635377], + [-12.1895, 9.635377], + [-12.191428, 9.632038], + [-12.191429, 9.632038], + [-12.192083, 9.637916], + [-12.19625, 9.641249], + [-12.201249, 9.642082], + [-12.204582, 9.639583], + [-12.207083, 9.637083], + [-12.215841, 9.638543], + [-12.215574, 9.639912], + [-12.215774, 9.641839], + [-12.215671, 9.642082], + [-12.219582, 9.642083], + [-12.223749, 9.638749], + [-12.223972, 9.635413], + [-12.224091, 9.635412], + [-12.227998, 9.628647], + [-12.235809, 9.628647], + [-12.238586, 9.633455], + [-12.237917, 9.625417], + [-12.242082, 9.622082], + [-12.241574, 9.612924], + [-12.247198, 9.612924], + [-12.251104, 9.61969], + [-12.256648, 9.619689], + [-12.257083, 9.617082], + [-12.262972, 9.614466], + [-12.263692, 9.615794], + [-12.265301, 9.617742], + [-12.265688, 9.618935], + [-12.265978, 9.619382], + [-12.266309, 9.619555], + [-12.265163, 9.621246], + [-12.26533, 9.621348], + [-12.265672, 9.622811], + [-12.26558, 9.624069], + [-12.262102, 9.623514], + [-12.260955, 9.622919], + [-12.261176, 9.62378], + [-12.26213, 9.625508], + [-12.262193, 9.626358], + [-12.257228, 9.626359], + [-12.260417, 9.628749], + [-12.270416, 9.629582], + [-12.273518, 9.626481], + [-12.275603, 9.62648], + [-12.279511, 9.619715], + [-12.285514, 9.619715], + [-12.285456, 9.620916], + [-12.284913, 9.622484], + [-12.284805, 9.62331], + [-12.284901, 9.623951], + [-12.285214, 9.624582], + [-12.288861, 9.624582], + [-12.289191, 9.624014], + [-12.297002, 9.624014], + [-12.300655, 9.617689], + [-12.30125, 9.625416], + [-12.301895, 9.625933], + [-12.308048, 9.625933], + [-12.311955, 9.619167], + [-12.319582, 9.619167], + [-12.319583, 9.623749], + [-12.319372, 9.624013], + [-12.32044, 9.624013], + [-12.324346, 9.617248] + ] + ], + "type": "Polygon" + }, + "id": 171, + "properties": { + "cc:admin:id": ["131"], + "cc:oBld:total": 29, + "cc:pop:fifteen-to-twenty-four": 525.1319737814209, + "cc:pop:grid3-total": 3309.347336064002, + "cc:pop:kontur-total": 2878.2167774173367, + "cc:pop:men": 1412.9580250854708, + "cc:pop:sixty-plus": 206.40916253676238, + "cc:pop:total": 2926.164545272733, + "cc:pop:under-five": 468.44974742419134, + "cc:pop:women": 1513.206520187262, + "cc:pop:women-fiften-to-forty-nine": 731.5411363181832, + "cc:pop:wp-total": 2814.517647527424, + "cc:pop:wp-total-UN": 3259.2964561879216, + "cc:id": "171", + "cc:Name": "Kabba Ferry MCHP", + "cc:site": [-12.2184, 9.5834], + "user:parentName": "Sella Limba", + "user:code": "OU_193289", + "user:orgUnitId": "TWMVxJANJeU", + "user:level": "4", + "user:parentId": "j43EZb15rjI" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.949582, 8.989583], + [-11.945417, 8.984583], + [-11.945416, 8.983749], + [-11.944583, 8.98125], + [-11.947082, 8.978749], + [-11.947916, 8.974583], + [-11.947082, 8.97375], + [-11.946249, 8.973749], + [-11.942968, 8.972438], + [-11.942774, 8.972699], + [-11.936249, 8.971249], + [-11.935685, 8.96899], + [-11.935686, 8.968989], + [-11.935807, 8.969036], + [-11.936179, 8.969362], + [-11.93674, 8.969042], + [-11.940416, 8.95875], + [-11.937083, 8.957083], + [-11.927917, 8.957083], + [-11.926249, 8.960416], + [-11.92125, 8.964583], + [-11.921249, 8.968749], + [-11.912917, 8.968749], + [-11.911286, 8.967121], + [-11.908182, 8.969216], + [-11.90314, 8.970275], + [-11.900417, 8.977083], + [-11.900416, 8.980492], + [-11.899558, 8.980753], + [-11.900278, 8.981115], + [-11.900416, 8.98111], + [-11.900416, 8.985416], + [-11.897083, 8.98625], + [-11.895915, 8.988001], + [-11.896233, 8.988106], + [-11.897916, 8.989365], + [-11.897917, 8.990417], + [-11.902916, 8.997083], + [-11.900416, 9.000416], + [-11.892917, 8.99875], + [-11.894582, 9.004582], + [-11.894582, 9.007916], + [-11.890417, 9.007917], + [-11.890173, 9.008886], + [-11.889859, 9.008717], + [-11.889681, 9.00898], + [-11.889528, 9.008823], + [-11.889388, 9.008685], + [-11.889094, 9.008803], + [-11.888684, 9.00904], + [-11.887983, 9.009123], + [-11.887243, 9.009685], + [-11.886888, 9.010775], + [-11.88701, 9.011679], + [-11.879583, 9.012917], + [-11.882082, 9.017082], + [-11.885416, 9.020417], + [-11.884583, 9.022917], + [-11.884582, 9.032082], + [-11.880731, 9.032083], + [-11.881127, 9.032927], + [-11.881501, 9.03313], + [-11.882269, 9.034347], + [-11.883276, 9.034593], + [-11.883719, 9.035226], + [-11.884066, 9.035659], + [-11.882824, 9.037312], + [-11.881903, 9.037886], + [-11.878835, 9.040685], + [-11.878624, 9.041635], + [-11.877355, 9.043565], + [-11.877256, 9.045146], + [-11.87702, 9.04618], + [-11.875946, 9.047451], + [-11.874968, 9.048156], + [-11.87455, 9.048813], + [-11.873483, 9.050275], + [-11.873518, 9.050888], + [-11.873829, 9.051485], + [-11.873704, 9.0533], + [-11.873937, 9.053889], + [-11.873708, 9.055347], + [-11.873284, 9.056416], + [-11.873235, 9.057111], + [-11.873335, 9.057905], + [-11.874131, 9.059555], + [-11.874943, 9.060263], + [-11.875381, 9.060267], + [-11.876448, 9.061221], + [-11.876584, 9.062938], + [-11.876221, 9.063915], + [-11.875843, 9.064763], + [-11.875822, 9.065391], + [-11.875822, 9.065488], + [-11.875946, 9.066313], + [-11.876827, 9.067726], + [-11.880099, 9.0659], + [-11.8832, 9.064599], + [-11.8853, 9.063199], + [-11.8892, 9.059999], + [-11.8912, 9.058699], + [-11.8954, 9.056499], + [-11.8994, 9.053099], + [-11.918099, 9.0344], + [-11.920199, 9.0329], + [-11.9248, 9.030699], + [-11.932499, 9.0266], + [-11.937499, 9.0226], + [-11.9395, 9.021299], + [-11.947099, 9.0176], + [-11.947916, 9.017622], + [-11.947916, 9.016647], + [-11.947754, 9.016708], + [-11.946999, 9.016728], + [-11.945417, 9.016103], + [-11.945417, 9.014123], + [-11.945418, 9.014123], + [-11.945539, 9.014167], + [-11.945763, 9.01443], + [-11.946074, 9.014636], + [-11.947082, 9.014552], + [-11.947083, 9.004583], + [-11.948749, 9.002916], + [-11.948181, 9.00007], + [-11.947696, 9.000092], + [-11.945521, 8.999981], + [-11.944421, 8.999584], + [-11.943665, 8.99907], + [-11.942708, 8.998888], + [-11.949582, 8.991249], + [-11.949582, 8.989583] + ] + ], + "type": "Polygon" + }, + "id": 172, + "properties": { + "cc:admin:id": ["113"], + "cc:oBld:total": 68, + "cc:pop:fifteen-to-twenty-four": 657.0727981926939, + "cc:pop:grid3-total": 2789.2023297343935, + "cc:pop:kontur-total": 3200.4696490861866, + "cc:pop:men": 1553.702526247147, + "cc:pop:sixty-plus": 228.76170519713352, + "cc:pop:total": 3379.571868106276, + "cc:pop:under-five": 574.3426314375115, + "cc:pop:women": 1825.8693418591283, + "cc:pop:women-fiften-to-forty-nine": 863.2686759097959, + "cc:pop:wp-total": 3122.1622180645204, + "cc:pop:wp-total-UN": 3625.5425001111385, + "cc:id": "172", + "cc:Name": "Kabonka MCHP", + "cc:site": [-11.9119, 9.0001], + "user:parentName": "Safroko Limba", + "user:code": "OU_193274", + "user:orgUnitId": "wfGRNqXqf92", + "user:level": "4", + "user:parentId": "XG8HGAbrbbL" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.992082, 9.05875], + [-11.985417, 9.056249], + [-11.982167, 9.053001], + [-11.981848, 9.053414], + [-11.981078, 9.053829], + [-11.980303, 9.053904], + [-11.979112, 9.053498], + [-11.978741, 9.052605], + [-11.978804, 9.05163], + [-11.979217, 9.050504], + [-11.978775, 9.049979], + [-11.978048, 9.049827], + [-11.976872, 9.050144], + [-11.975934, 9.049874], + [-11.975381, 9.04892], + [-11.975624, 9.047292], + [-11.971607, 9.04863], + [-11.971397, 9.04948], + [-11.970915, 9.049577], + [-11.97074, 9.049446], + [-11.97125, 9.047916], + [-11.972082, 9.040417], + [-11.969675, 9.038611], + [-11.969016, 9.039457], + [-11.968264, 9.040411], + [-11.967637, 9.038666], + [-11.966649, 9.037812], + [-11.965742, 9.037235], + [-11.964583, 9.03722], + [-11.964583, 9.036249], + [-11.965283, 9.027839], + [-11.9612, 9.0237], + [-11.9584, 9.0216], + [-11.950599, 9.0177], + [-11.9471, 9.0176], + [-11.9395, 9.021299], + [-11.937499, 9.0226], + [-11.932499, 9.0266], + [-11.9248, 9.030699], + [-11.920199, 9.0329], + [-11.918099, 9.0344], + [-11.914583, 9.037916], + [-11.91875, 9.042082], + [-11.925416, 9.042083], + [-11.925416, 9.042917], + [-11.917083, 9.04375], + [-11.912917, 9.049582], + [-11.920416, 9.057917], + [-11.920417, 9.066249], + [-11.922083, 9.06625], + [-11.927686, 9.069752], + [-11.92881, 9.06762], + [-11.932082, 9.069582], + [-11.932083, 9.074582], + [-11.933963, 9.077717], + [-11.934131, 9.077647], + [-11.936249, 9.085416], + [-11.934309, 9.088004], + [-11.933932, 9.088656], + [-11.933819, 9.088657], + [-11.933749, 9.08875], + [-11.929583, 9.089583], + [-11.928749, 9.093749], + [-11.924583, 9.097083], + [-11.924583, 9.105416], + [-11.925417, 9.105417], + [-11.929902, 9.113641], + [-11.925207, 9.117928], + [-11.921799, 9.120146], + [-11.921334, 9.120386], + [-11.927082, 9.125416], + [-11.927293, 9.125375], + [-11.929963, 9.13], + [-11.930576, 9.13], + [-11.930417, 9.127916], + [-11.933749, 9.124583], + [-11.937489, 9.122713], + [-11.937215, 9.121787], + [-11.937268, 9.121165], + [-11.946249, 9.120416], + [-11.947916, 9.117082], + [-11.947083, 9.111249], + [-11.95297, 9.105363], + [-11.955147, 9.10841], + [-11.956361, 9.110004], + [-11.957773, 9.111254], + [-11.96125, 9.107083], + [-11.962083, 9.107083], + [-11.964015, 9.109015], + [-11.964144, 9.108881], + [-11.964145, 9.108881], + [-11.96413, 9.10913], + [-11.96625, 9.111249], + [-11.967082, 9.111249], + [-11.972082, 9.10375], + [-11.972083, 9.102916], + [-11.972916, 9.102082], + [-11.972917, 9.094583], + [-11.977916, 9.090416], + [-11.970417, 9.082917], + [-11.97125, 9.080417], + [-11.976249, 9.075417], + [-11.982082, 9.077082], + [-11.984582, 9.075416], + [-11.984582, 9.072083], + [-11.981972, 9.06686], + [-11.981627, 9.066688], + [-11.981815, 9.066052], + [-11.982621, 9.064681], + [-11.990416, 9.062082], + [-11.992082, 9.05875] + ] + ], + "type": "Polygon" + }, + "id": 173, + "properties": { + "cc:admin:id": ["7"], + "cc:oBld:total": 41, + "cc:pop:fifteen-to-twenty-four": 518.7571925861607, + "cc:pop:grid3-total": 2592.2399887737706, + "cc:pop:kontur-total": 2957.2511912435375, + "cc:pop:men": 1307.4326094708056, + "cc:pop:sixty-plus": 159.5574108076469, + "cc:pop:total": 2847.8626328055407, + "cc:pop:under-five": 446.2596354581936, + "cc:pop:women": 1540.4300233347358, + "cc:pop:women-fiften-to-forty-nine": 762.9652154938177, + "cc:pop:wp-total": 2128.2029181056105, + "cc:pop:wp-total-UN": 2465.6169149586776, + "cc:id": "173", + "cc:Name": "Kagbaneh CHP", + "cc:site": [-11.9536, 9.0677], + "user:parentName": "Biriwa", + "user:code": "OU_193230", + "user:orgUnitId": "duGLGssecoD", + "user:level": "4", + "user:parentId": "fwH9ipvXde9" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.181299, 9.2013], + [-12.1781, 9.196], + [-12.176399, 9.192099], + [-12.1741, 9.1878], + [-12.173499, 9.185099], + [-12.1732, 9.182199], + [-12.173199, 9.179299], + [-12.172899, 9.135399], + [-12.172799, 9.132499], + [-12.171899, 9.1289], + [-12.17, 9.1258], + [-12.1676, 9.123], + [-12.1642, 9.1199], + [-12.161899, 9.1184], + [-12.157899, 9.1173], + [-12.153, 9.117399], + [-12.15, 9.118299], + [-12.148099, 9.1195], + [-12.143799, 9.123], + [-12.138399, 9.126], + [-12.1328, 9.130499], + [-12.1289, 9.1333], + [-12.125799, 9.1376], + [-12.117699, 9.1461], + [-12.1153, 9.148899], + [-12.1141, 9.150799], + [-12.113399, 9.1529], + [-12.1123, 9.157499], + [-12.110799, 9.1603], + [-12.108999, 9.1624], + [-12.1024, 9.169199], + [-12.0995, 9.172799], + [-12.0971, 9.177399], + [-12.0921, 9.183999], + [-12.089699, 9.1886], + [-12.087499, 9.1914], + [-12.0848, 9.193899], + [-12.083776, 9.194635], + [-12.084583, 9.196249], + [-12.08625, 9.195417], + [-12.094039, 9.197541], + [-12.093995, 9.197607], + [-12.093315, 9.198225], + [-12.092754, 9.199541], + [-12.092531, 9.200094], + [-12.093749, 9.203749], + [-12.091678, 9.204785], + [-12.091667, 9.204822], + [-12.091711, 9.206205], + [-12.094938, 9.213227], + [-12.095094, 9.213993], + [-12.094938, 9.214646], + [-12.094583, 9.215457], + [-12.094583, 9.219582], + [-12.095738, 9.221314], + [-12.096072, 9.220979], + [-12.101249, 9.225417], + [-12.10125, 9.231249], + [-12.102082, 9.232083], + [-12.100417, 9.234583], + [-12.100417, 9.237916], + [-12.108749, 9.246249], + [-12.102917, 9.25125], + [-12.102916, 9.261249], + [-12.10125, 9.26125], + [-12.100416, 9.263749], + [-12.09625, 9.267916], + [-12.09625, 9.268749], + [-12.09875, 9.272082], + [-12.104583, 9.275417], + [-12.105416, 9.279582], + [-12.102083, 9.282083], + [-12.10125, 9.291249], + [-12.109614, 9.291947], + [-12.109546, 9.292422], + [-12.109915, 9.292946], + [-12.110102, 9.293813], + [-12.109989, 9.294069], + [-12.110232, 9.294609], + [-12.109919, 9.295185], + [-12.109581, 9.295366], + [-12.10931, 9.297395], + [-12.109411, 9.298493], + [-12.108583, 9.29947], + [-12.108467, 9.299781], + [-12.108901, 9.300864], + [-12.108961, 9.301962], + [-12.110674, 9.304141], + [-12.112059, 9.306535], + [-12.102917, 9.309583], + [-12.10375, 9.315416], + [-12.106193, 9.318471], + [-12.106193, 9.318472], + [-12.106174, 9.318485], + [-12.108749, 9.320416], + [-12.116289, 9.320416], + [-12.1181, 9.319499], + [-12.121999, 9.3177], + [-12.125, 9.315599], + [-12.1292, 9.311899], + [-12.132999, 9.307599], + [-12.133299, 9.2999], + [-12.133799, 9.2969], + [-12.1354, 9.2944], + [-12.1374, 9.292899], + [-12.141199, 9.2912], + [-12.144799, 9.2893], + [-12.148, 9.288099], + [-12.1503, 9.286599], + [-12.152799, 9.284199], + [-12.154099, 9.280799], + [-12.1507, 9.2733], + [-12.1465, 9.2683], + [-12.144699, 9.265199], + [-12.143999, 9.259799], + [-12.1439, 9.2505], + [-12.144099, 9.2469], + [-12.1445, 9.2447], + [-12.1464, 9.241599], + [-12.151299, 9.2364], + [-12.155399, 9.2325], + [-12.1576, 9.230799], + [-12.1638, 9.227399], + [-12.166499, 9.2249], + [-12.168299, 9.2229], + [-12.1711, 9.217599], + [-12.1732, 9.214999], + [-12.1759, 9.212699], + [-12.179099, 9.2082], + [-12.180699, 9.2046], + [-12.181299, 9.2013] + ] + ], + "type": "Polygon" + }, + "id": 174, + "properties": { + "cc:admin:id": ["81"], + "cc:oBld:total": 427, + "cc:pop:fifteen-to-twenty-four": 977.5265745054952, + "cc:pop:grid3-total": 6500.161982451264, + "cc:pop:kontur-total": 5573.932166360125, + "cc:pop:men": 2574.066613222608, + "cc:pop:sixty-plus": 294.9404330060622, + "cc:pop:total": 5374.546298786949, + "cc:pop:under-five": 826.7266211460578, + "cc:pop:women": 2800.479685564343, + "cc:pop:women-fiften-to-forty-nine": 1368.3111155832135, + "cc:pop:wp-total": 4478.234913765015, + "cc:pop:wp-total-UN": 5200.967473792951, + "cc:id": "174", + "cc:Name": "Kagbere CHC", + "cc:site": [-12.1405, 9.2205], + "user:parentName": "Magbaimba Ndowahun", + "user:code": "OU_193225", + "user:orgUnitId": "TjZwphhxCuV", + "user:level": "4", + "user:parentId": "eV4cuxniZgP" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.019583, 9.052916], + [-12.019582, 9.03746], + [-12.019315, 9.037716], + [-12.01125, 9.036249], + [-12.01125, 9.02875], + [-12.013749, 9.025416], + [-12.01375, 9.020417], + [-12.015416, 9.019583], + [-12.012916, 9.018749], + [-12.009952, 9.0106], + [-12.008499, 9.0115], + [-12.004699, 9.0147], + [-12.002599, 9.0161], + [-11.998799, 9.018], + [-11.9961, 9.019999], + [-11.9911, 9.024799], + [-11.9884, 9.026899], + [-11.9845, 9.028899], + [-11.9788, 9.033499], + [-11.976, 9.034899], + [-11.9733, 9.034699], + [-11.9711, 9.0335], + [-11.968599, 9.031199], + [-11.965284, 9.027839], + [-11.964583, 9.036249], + [-11.964583, 9.03722], + [-11.965743, 9.037235], + [-11.966649, 9.037812], + [-11.967637, 9.038666], + [-11.968265, 9.040412], + [-11.969017, 9.039456], + [-11.969675, 9.038611], + [-11.972082, 9.040417], + [-11.97125, 9.047916], + [-11.97074, 9.049445], + [-11.970915, 9.049577], + [-11.971397, 9.04948], + [-11.971607, 9.04863], + [-11.975624, 9.047292], + [-11.975381, 9.04892], + [-11.975934, 9.049874], + [-11.976872, 9.050144], + [-11.978048, 9.049827], + [-11.978775, 9.049978], + [-11.979217, 9.050503], + [-11.978804, 9.05163], + [-11.978741, 9.052605], + [-11.979112, 9.053498], + [-11.980303, 9.053904], + [-11.981078, 9.053829], + [-11.981848, 9.053414], + [-11.982167, 9.053001], + [-11.985417, 9.056249], + [-11.992082, 9.058749], + [-11.996249, 9.055417], + [-11.997082, 9.055416], + [-11.997083, 9.05375], + [-12.007916, 9.055416], + [-12.010416, 9.055417], + [-12.01375, 9.052083], + [-12.017082, 9.052916], + [-12.019583, 9.052916] + ] + ], + "type": "Polygon" + }, + "id": 175, + "properties": { + "cc:admin:id": ["7"], + "cc:oBld:total": 55, + "cc:pop:fifteen-to-twenty-four": 191.19662278975937, + "cc:pop:grid3-total": 881.8954525983689, + "cc:pop:kontur-total": 1524.3358860585276, + "cc:pop:men": 500.9697382285466, + "cc:pop:sixty-plus": 48.55630043332765, + "cc:pop:total": 1107.7656438906415, + "cc:pop:under-five": 170.5918374022024, + "cc:pop:women": 606.7959056620952, + "cc:pop:women-fiften-to-forty-nine": 299.47337736600025, + "cc:pop:wp-total": 740.1721141242931, + "cc:pop:wp-total-UN": 859.4454366226275, + "cc:id": "175", + "cc:Name": "Kagbo MCHP", + "cc:site": [-11.9913, 9.0256], + "user:parentName": "Safroko Limba", + "user:code": "OU_193268", + "user:orgUnitId": "OTlKtnhvEm1", + "user:level": "4", + "user:parentId": "XG8HGAbrbbL" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.357425, 9.525727], + [-12.357434, 9.524217], + [-12.357146, 9.523555], + [-12.356766, 9.523523], + [-12.356192, 9.523207], + [-12.353221, 9.521328], + [-12.35073, 9.51974], + [-12.349598, 9.51894], + [-12.351113, 9.518264], + [-12.351334, 9.517168], + [-12.347917, 9.513749], + [-12.347917, 9.504583], + [-12.348107, 9.504297], + [-12.34559, 9.505982], + [-12.343749, 9.502917], + [-12.339583, 9.500417], + [-12.342082, 9.497082], + [-12.342082, 9.492917], + [-12.334583, 9.487083], + [-12.329582, 9.48125], + [-12.327917, 9.481249], + [-12.327038, 9.479933], + [-12.326895, 9.47998], + [-12.326376, 9.480833], + [-12.325261, 9.481083], + [-12.324718, 9.481362], + [-12.323878, 9.482949], + [-12.322407, 9.483842], + [-12.321823, 9.484489], + [-12.320309, 9.485201], + [-12.319188, 9.485506], + [-12.319062, 9.485869], + [-12.318555, 9.486266], + [-12.318309, 9.486823], + [-12.31793, 9.487096], + [-12.314582, 9.48375], + [-12.311992, 9.484268], + [-12.312184, 9.485046], + [-12.312758, 9.488473], + [-12.310222, 9.489228], + [-12.307169, 9.490273], + [-12.305526, 9.490598], + [-12.302248, 9.491613], + [-12.301802, 9.491658], + [-12.298489, 9.491402], + [-12.297874, 9.491416], + [-12.297523, 9.492054], + [-12.296777, 9.49274], + [-12.296435, 9.492934], + [-12.295932, 9.492833], + [-12.29615, 9.49351], + [-12.296052, 9.493933], + [-12.295666, 9.494468], + [-12.296071, 9.496333], + [-12.29687, 9.497443], + [-12.297097, 9.497629], + [-12.292917, 9.500417], + [-12.297082, 9.507916], + [-12.297144, 9.507917], + [-12.296527, 9.509109], + [-12.29634, 9.512695], + [-12.299367, 9.513186], + [-12.29989, 9.513398], + [-12.298749, 9.516249], + [-12.292917, 9.517917], + [-12.292459, 9.519747], + [-12.293749, 9.520117], + [-12.293749, 9.522916], + [-12.292083, 9.522917], + [-12.290417, 9.526249], + [-12.292082, 9.527917], + [-12.290417, 9.530417], + [-12.290416, 9.532315], + [-12.289991, 9.532315], + [-12.288749, 9.535416], + [-12.287896, 9.536269], + [-12.287149, 9.536158], + [-12.287789, 9.537846], + [-12.288589, 9.538502], + [-12.289703, 9.539507], + [-12.290646, 9.540664], + [-12.291594, 9.54209], + [-12.29414, 9.543943], + [-12.29066, 9.545349], + [-12.290246, 9.545811], + [-12.289588, 9.545803], + [-12.288913, 9.54626], + [-12.287123, 9.547782], + [-12.286869, 9.547755], + [-12.286643, 9.547374], + [-12.286307, 9.54741], + [-12.28544, 9.546121], + [-12.284561, 9.54573], + [-12.284457, 9.545274], + [-12.284111, 9.544945], + [-12.283351, 9.544541], + [-12.282504, 9.544361], + [-12.282284, 9.546351], + [-12.282106, 9.546578], + [-12.282009, 9.547208], + [-12.282007, 9.547208], + [-12.281205, 9.546294], + [-12.279583, 9.547917], + [-12.279582, 9.552082], + [-12.277917, 9.55375], + [-12.277917, 9.556654], + [-12.281899, 9.5565], + [-12.285499, 9.5559], + [-12.2901, 9.553999], + [-12.2927, 9.553399], + [-12.2989, 9.552699], + [-12.302399, 9.5512], + [-12.305099, 9.549], + [-12.3068, 9.546899], + [-12.3079, 9.544299], + [-12.3083, 9.541499], + [-12.308399, 9.5337], + [-12.3088, 9.531], + [-12.311399, 9.526], + [-12.312799, 9.5242], + [-12.314999, 9.5231], + [-12.3189, 9.523], + [-12.3227, 9.5239], + [-12.325299, 9.5259], + [-12.329299, 9.532699], + [-12.3311, 9.5349], + [-12.334299, 9.538199], + [-12.335799, 9.539399], + [-12.338299, 9.540099], + [-12.3408, 9.539199], + [-12.349099, 9.531], + [-12.351899, 9.5286], + [-12.3542, 9.527199], + [-12.357299, 9.5258], + [-12.357425, 9.525727] + ] + ], + "type": "Polygon" + }, + "id": 176, + "properties": { + "cc:admin:id": ["121"], + "cc:oBld:total": 46, + "cc:pop:fifteen-to-twenty-four": 859.0730148064923, + "cc:pop:grid3-total": 3272.7128304203325, + "cc:pop:kontur-total": 4634.996384552048, + "cc:pop:men": 2528.717995963939, + "cc:pop:sixty-plus": 301.1020110177306, + "cc:pop:total": 4684.347436694527, + "cc:pop:under-five": 759.9931502963829, + "cc:pop:women": 2155.62944073059, + "cc:pop:women-fiften-to-forty-nine": 1070.038109591319, + "cc:pop:wp-total": 4237.533436728387, + "cc:pop:wp-total-UN": 4911.3911054834325, + "cc:id": "176", + "cc:Name": "Kagboray MCHP", + "cc:site": [-12.3115, 9.5189], + "user:parentName": "Sella Limba", + "user:code": "OU_193293", + "user:orgUnitId": "Sglj9VCoQmc", + "user:level": "4", + "user:parentId": "j43EZb15rjI" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.77855, 8.554597], + [-10.774347, 8.554597], + [-10.770441, 8.561362], + [-10.76616, 8.561363], + [-10.762916, 8.565417], + [-10.759583, 8.566249], + [-10.756249, 8.56625], + [-10.744583, 8.567916], + [-10.74375, 8.567917], + [-10.743749, 8.575416], + [-10.740733, 8.578432], + [-10.737409, 8.578432], + [-10.731249, 8.574584], + [-10.727083, 8.57375], + [-10.727083, 8.581249], + [-10.72625, 8.585416], + [-10.727082, 8.58625], + [-10.723484, 8.592728], + [-10.723336, 8.592822], + [-10.722447, 8.592797], + [-10.722231, 8.592871], + [-10.722916, 8.600416], + [-10.722082, 8.600416], + [-10.718749, 8.59875], + [-10.715417, 8.599584], + [-10.717082, 8.604583], + [-10.715417, 8.607916], + [-10.713749, 8.607084], + [-10.71125, 8.607084], + [-10.707917, 8.60875], + [-10.707083, 8.610416], + [-10.710416, 8.61375], + [-10.707083, 8.61625], + [-10.708749, 8.61875], + [-10.704583, 8.620416], + [-10.70375, 8.62125], + [-10.704074, 8.622224], + [-10.704073, 8.622225], + [-10.704039, 8.622215], + [-10.706249, 8.629583], + [-10.707082, 8.629584], + [-10.706249, 8.636249], + [-10.70375, 8.639584], + [-10.707916, 8.645417], + [-10.70541, 8.647922], + [-10.705463, 8.647982], + [-10.700417, 8.653749], + [-10.69875, 8.65375], + [-10.70125, 8.662916], + [-10.705416, 8.66625], + [-10.705416, 8.667084], + [-10.70375, 8.672082], + [-10.710416, 8.67625], + [-10.712083, 8.684582], + [-10.71625, 8.68375], + [-10.724582, 8.689582], + [-10.724583, 8.690416], + [-10.727082, 8.691249], + [-10.727083, 8.69209], + [-10.727317, 8.692496], + [-10.727083, 8.692903], + [-10.727083, 8.693749], + [-10.744582, 8.699582], + [-10.743809, 8.703456], + [-10.750201, 8.703456], + [-10.754108, 8.696691], + [-10.76192, 8.696691], + [-10.762844, 8.69829], + [-10.763, 8.694799], + [-10.763, 8.6807], + [-10.7627, 8.6777], + [-10.7618, 8.675], + [-10.7604, 8.6726], + [-10.756499, 8.667599], + [-10.755499, 8.664999], + [-10.7551, 8.662099], + [-10.755199, 8.6591], + [-10.7558, 8.656399], + [-10.760199, 8.6477], + [-10.7649, 8.641599], + [-10.7669, 8.637599], + [-10.769299, 8.6334], + [-10.7706, 8.630199], + [-10.7727, 8.625799], + [-10.773399, 8.6221], + [-10.773499, 8.619099], + [-10.7733, 8.599], + [-10.773, 8.5931], + [-10.772199, 8.589399], + [-10.770199, 8.584899], + [-10.7696, 8.581499], + [-10.7701, 8.578099], + [-10.771899, 8.5736], + [-10.772599, 8.5708], + [-10.773199, 8.565], + [-10.773899, 8.5624], + [-10.777399, 8.5571], + [-10.77855, 8.554597] + ] + ], + "type": "Polygon" + }, + "id": 177, + "properties": { + "cc:admin:id": ["125"], + "cc:oBld:total": 269, + "cc:pop:fifteen-to-twenty-four": 572.3349881200054, + "cc:pop:grid3-total": 5547.064337189203, + "cc:pop:kontur-total": 3499.3607259188866, + "cc:pop:men": 1355.4083428669917, + "cc:pop:sixty-plus": 169.3328104497601, + "cc:pop:total": 2862.6749406000267, + "cc:pop:under-five": 475.43636576579, + "cc:pop:women": 1507.2665977330346, + "cc:pop:women-fiften-to-forty-nine": 755.608384351959, + "cc:pop:wp-total": 2532.073377471416, + "cc:pop:wp-total-UN": 2940.875774937262, + "cc:id": "177", + "cc:Name": "Kainkordu CHC", + "cc:site": [-10.7213, 8.6171], + "user:parentName": "Soa", + "user:code": "OU_233321", + "user:orgUnitId": "KKoPh1lDd9j", + "user:level": "4", + "user:parentId": "iGHlidSFdpu" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.736249, 9.827917], + [-11.726634, 9.827176], + [-11.725955, 9.826001], + [-11.728358, 9.821838], + [-11.725417, 9.822082], + [-11.72375, 9.820416], + [-11.72375, 9.817916], + [-11.727371, 9.809949], + [-11.727372, 9.809949], + [-11.727653, 9.810109], + [-11.730416, 9.804583], + [-11.730417, 9.802083], + [-11.735058, 9.803409], + [-11.735613, 9.802449], + [-11.732971, 9.797873], + [-11.732916, 9.797916], + [-11.722917, 9.797082], + [-11.718749, 9.78625], + [-11.710259, 9.785597], + [-11.70827, 9.782153], + [-11.710333, 9.778577], + [-11.719582, 9.777916], + [-11.722916, 9.773749], + [-11.722916, 9.764583], + [-11.721249, 9.762083], + [-11.714812, 9.761744], + [-11.715287, 9.760919], + [-11.711382, 9.754153], + [-11.71514, 9.747642], + [-11.713749, 9.74625], + [-11.710978, 9.746249], + [-11.70827, 9.741558], + [-11.709647, 9.739171], + [-11.714582, 9.739582], + [-11.719582, 9.736249], + [-11.720416, 9.725417], + [-11.717082, 9.72125], + [-11.707236, 9.720492], + [-11.705508, 9.7175], + [-11.709413, 9.710734], + [-11.705508, 9.703968], + [-11.707076, 9.70125], + [-11.702069, 9.701249], + [-11.703202, 9.699283], + [-11.699297, 9.692518], + [-11.702915, 9.686249], + [-11.699582, 9.68375], + [-11.698029, 9.684682], + [-11.696935, 9.684682], + [-11.69303, 9.677917], + [-11.696935, 9.671151], + [-11.696102, 9.669707], + [-11.696249, 9.669583], + [-11.693749, 9.66875], + [-11.683081, 9.670391], + [-11.68308, 9.670389], + [-11.686362, 9.666757], + [-11.68626, 9.665951], + [-11.685568, 9.664338], + [-11.68542, 9.661751], + [-11.67875, 9.660416], + [-11.679582, 9.65375], + [-11.679695, 9.653637], + [-11.676231, 9.647635], + [-11.680136, 9.64087], + [-11.677607, 9.636488], + [-11.675417, 9.63375], + [-11.677082, 9.627083], + [-11.674583, 9.622083], + [-11.675192, 9.619034], + [-11.674786, 9.61888], + [-11.673916, 9.618335], + [-11.671245, 9.618014], + [-11.669342, 9.618416], + [-11.667903, 9.620404], + [-11.66625, 9.61875], + [-11.666251, 9.618749], + [-11.672916, 9.614582], + [-11.671249, 9.612916], + [-11.665417, 9.603749], + [-11.66625, 9.602083], + [-11.679582, 9.603749], + [-11.677917, 9.59375], + [-11.667082, 9.587917], + [-11.665417, 9.588748], + [-11.665416, 9.584583], + [-11.66375, 9.58375], + [-11.663749, 9.582083], + [-11.66125, 9.580416], + [-11.660417, 9.57625], + [-11.663544, 9.571244], + [-11.6607, 9.572399], + [-11.6565, 9.574799], + [-11.6533, 9.576199], + [-11.6512, 9.577599], + [-11.6443, 9.584099], + [-11.6416, 9.585999], + [-11.638399, 9.5874], + [-11.634199, 9.5898], + [-11.631, 9.591099], + [-11.6267, 9.593399], + [-11.623499, 9.5947], + [-11.6192, 9.597099], + [-11.6154, 9.598999], + [-11.613399, 9.6005], + [-11.607, 9.606399], + [-11.6044, 9.608299], + [-11.6005, 9.610099], + [-11.596899, 9.6121], + [-11.592999, 9.6139], + [-11.590199, 9.616], + [-11.5831, 9.623099], + [-11.58, 9.626899], + [-11.5766, 9.633099], + [-11.572899, 9.6378], + [-11.569499, 9.644], + [-11.566999, 9.6469], + [-11.564299, 9.649], + [-11.5605, 9.650699], + [-11.556899, 9.6527], + [-11.5538, 9.653999], + [-11.5515, 9.655399], + [-11.549399, 9.6571], + [-11.542299, 9.6635], + [-11.5385, 9.665799], + [-11.5346, 9.6677], + [-11.541199, 9.671399], + [-11.5451, 9.6731], + [-11.550299, 9.675599], + [-11.556299, 9.676899], + [-11.561599, 9.679199], + [-11.5668, 9.6804], + [-11.572899, 9.682999], + [-11.577999, 9.684099], + [-11.584199, 9.686699], + [-11.5893, 9.6878], + [-11.595499, 9.690399], + [-11.6006, 9.6915], + [-11.609099, 9.695199], + [-11.611399, 9.696799], + [-11.614099, 9.699399], + [-11.616199, 9.702399], + [-11.619599, 9.709099], + [-11.6216, 9.713299], + [-11.623999, 9.715699], + [-11.6367, 9.7222], + [-11.6399, 9.7248], + [-11.6422, 9.7278], + [-11.6449, 9.7325], + [-11.6477, 9.7349], + [-11.6518, 9.7371], + [-11.656, 9.7408], + [-11.657899, 9.7438], + [-11.659499, 9.750099], + [-11.661799, 9.755399], + [-11.662699, 9.759699], + [-11.6635, 9.7617], + [-11.6653, 9.7643], + [-11.6679, 9.767], + [-11.671999, 9.770599], + [-11.676199, 9.7736], + [-11.677399, 9.775999], + [-11.6778, 9.7794], + [-11.6778, 9.791499], + [-11.6804, 9.7931], + [-11.6816, 9.7966], + [-11.681899, 9.802299], + [-11.6825, 9.806], + [-11.685599, 9.812799], + [-11.687, 9.814799], + [-11.6898, 9.816799], + [-11.693399, 9.817699], + [-11.700299, 9.8177], + [-11.703099, 9.8171], + [-11.7056, 9.815799], + [-11.707899, 9.8139], + [-11.713299, 9.8085], + [-11.7152, 9.8071], + [-11.7185, 9.8063], + [-11.7211, 9.8069], + [-11.722299, 9.8085], + [-11.721999, 9.811], + [-11.719999, 9.8156], + [-11.7193, 9.8219], + [-11.7193, 9.827999], + [-11.719599, 9.831999], + [-11.7204, 9.8357], + [-11.7224, 9.8402], + [-11.723099, 9.843099], + [-11.723199, 9.844586], + [-11.725417, 9.84625], + [-11.729582, 9.847082], + [-11.736249, 9.827917] + ] + ], + "type": "Polygon" + }, + "id": 178, + "properties": { + "cc:admin:id": ["143"], + "cc:oBld:total": 177, + "cc:pop:fifteen-to-twenty-four": 1614.2154404829114, + "cc:pop:grid3-total": 4544.074722281932, + "cc:pop:kontur-total": 8759.09434684635, + "cc:pop:men": 4235.554610997792, + "cc:pop:sixty-plus": 543.3553003509118, + "cc:pop:total": 8812.517121757735, + "cc:pop:under-five": 1433.012115812274, + "cc:pop:women": 4576.962510759943, + "cc:pop:women-fiften-to-forty-nine": 2213.659810623573, + "cc:pop:wp-total": 7859.445833777008, + "cc:pop:wp-total-UN": 9112.884431312645, + "cc:id": "178", + "cc:Name": "Kakoya MCHP", + "cc:site": [-11.6664, 9.6968], + "user:parentName": "Wara Wara Bafodia", + "user:code": "OU_226241", + "user:orgUnitId": "NJolnlvYgLr", + "user:level": "4", + "user:parentId": "XrF5AvaGcuw" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [-13.160099, 8.885699], + [-13.159599, 8.8843], + [-13.1574, 8.882599], + [-13.156299, 8.8804], + [-13.154599, 8.879899], + [-13.152599, 8.877599], + [-13.1476, 8.8732], + [-13.147099, 8.8715], + [-13.1446, 8.868999], + [-13.144599, 8.8671], + [-13.1418, 8.864], + [-13.139899, 8.862599], + [-13.1374, 8.8599], + [-13.137399, 8.858999], + [-13.1354, 8.8571], + [-13.133999, 8.8563], + [-13.1329, 8.8563], + [-13.132399, 8.857399], + [-13.1313, 8.8568], + [-13.130999, 8.854899], + [-13.130099, 8.8526], + [-13.128499, 8.852099], + [-13.1282, 8.849899], + [-13.128199, 8.84546], + [-13.124887, 8.843566], + [-13.123458, 8.84349], + [-13.121973, 8.843389], + [-13.117917, 8.845417], + [-13.111449, 8.852601], + [-13.108851, 8.852686], + [-13.104568, 8.852729], + [-13.100747, 8.85273], + [-13.09951, 8.853047], + [-13.098746, 8.853678], + [-13.097234, 8.854312], + [-13.097187, 8.856077], + [-13.097185, 8.856078], + [-13.097021, 8.856039], + [-13.09672, 8.856586], + [-13.097196, 8.858387], + [-13.096579, 8.859253], + [-13.09651, 8.860896], + [-13.09397, 8.858922], + [-13.093019, 8.859389], + [-13.09353, 8.86068], + [-13.091454, 8.861442], + [-13.091452, 8.8617], + [-13.090294, 8.861924], + [-13.090293, 8.861923], + [-13.09068, 8.860665], + [-13.089387, 8.8604], + [-13.088873, 8.859367], + [-13.087057, 8.86013], + [-13.087232, 8.859271], + [-13.088366, 8.857304], + [-13.09018, 8.857183], + [-13.091096, 8.855513], + [-13.090974, 8.853968], + [-13.089626, 8.853681], + [-13.08825, 8.853402], + [-13.088241, 8.854132], + [-13.088057, 8.854452], + [-13.087359, 8.854207], + [-13.086822, 8.854633], + [-13.086831, 8.855282], + [-13.087203, 8.855842], + [-13.087374, 8.856907], + [-13.08734, 8.857073], + [-13.087056, 8.857638], + [-13.086823, 8.857945], + [-13.086457, 8.858117], + [-13.085772, 8.858959], + [-13.085707, 8.859755], + [-13.086107, 8.860768], + [-13.086616, 8.861155], + [-13.087436, 8.861341], + [-13.087484, 8.862093], + [-13.086482, 8.862915], + [-13.08579, 8.864269], + [-13.085325, 8.864474], + [-13.084605, 8.865305], + [-13.084269, 8.866014], + [-13.084268, 8.866014], + [-13.08125, 8.86375], + [-13.08047, 8.86375], + [-13.080381, 8.863793], + [-13.077082, 8.867916], + [-13.07375, 8.869583], + [-13.07375, 8.870417], + [-13.075416, 8.874583], + [-13.072083, 8.879582], + [-13.072082, 8.880417], + [-13.071249, 8.88125], + [-13.062917, 8.88125], + [-13.062916, 8.883749], + [-13.060417, 8.88625], + [-13.060417, 8.887916], + [-13.060578, 8.888077], + [-13.060745, 8.888079], + [-13.060727, 8.888227], + [-13.062916, 8.890417], + [-13.063749, 8.892916], + [-13.063008, 8.895142], + [-13.064243, 8.896114], + [-13.06393, 8.897093], + [-13.063761, 8.897259], + [-13.063106, 8.898546], + [-13.061982, 8.899079], + [-13.061151, 8.899973], + [-13.059536, 8.900712], + [-13.058273, 8.901476], + [-13.057058, 8.90215], + [-13.056036, 8.901665], + [-13.05398, 8.900307], + [-13.050417, 8.904582], + [-13.057082, 8.90375], + [-13.057917, 8.906249], + [-13.058749, 8.90625], + [-13.05875, 8.910416], + [-13.060416, 8.910417], + [-13.06125, 8.91125], + [-13.062916, 8.918749], + [-13.06251, 8.919559], + [-13.061653, 8.918959], + [-13.060961, 8.919084], + [-13.064063, 8.925732], + [-13.064062, 8.925733], + [-13.062366, 8.924848], + [-13.06008, 8.923469], + [-13.057838, 8.923728], + [-13.05538, 8.924935], + [-13.056242, 8.926143], + [-13.058355, 8.928083], + [-13.060469, 8.928903], + [-13.063099, 8.928127], + [-13.064794, 8.927296], + [-13.065847, 8.929555], + [-13.063987, 8.929971], + [-13.062675, 8.93009], + [-13.062699, 8.930099], + [-13.0684, 8.9317], + [-13.074899, 8.933999], + [-13.079299, 8.934499], + [-13.0859, 8.933399], + [-13.1056, 8.932899], + [-13.109699, 8.9325], + [-13.1136, 8.931199], + [-13.1201, 8.928499], + [-13.133599, 8.9213], + [-13.1415, 8.9152], + [-13.149099, 8.912399], + [-13.1518, 8.910199], + [-13.156799, 8.907299], + [-13.155099, 8.904], + [-13.153999, 8.902899], + [-13.152099, 8.899], + [-13.150999, 8.897899], + [-13.148999, 8.894], + [-13.1476, 8.8926], + [-13.148499, 8.8882], + [-13.148999, 8.887399], + [-13.149, 8.8843], + [-13.148799, 8.8826], + [-13.1471, 8.880399], + [-13.1476, 8.8801], + [-13.149599, 8.882399], + [-13.150099, 8.884299], + [-13.1496, 8.888499], + [-13.1496, 8.891499], + [-13.1529, 8.891799], + [-13.154899, 8.891499], + [-13.1557, 8.891], + [-13.157399, 8.890999], + [-13.158499, 8.8904], + [-13.1587, 8.8888], + [-13.160099, 8.885699] + ] + ], + [ + [ + [-13.172899, 8.8849], + [-13.171, 8.883999], + [-13.169899, 8.8826], + [-13.1682, 8.8821], + [-13.166799, 8.8807], + [-13.165699, 8.880399], + [-13.164299, 8.8788], + [-13.162399, 8.878199], + [-13.160399, 8.876], + [-13.159, 8.875399], + [-13.156299, 8.8729], + [-13.1524, 8.872599], + [-13.151799, 8.8704], + [-13.150999, 8.870099], + [-13.148199, 8.8679], + [-13.1465, 8.8682], + [-13.1465, 8.869299], + [-13.148499, 8.871499], + [-13.1496, 8.8724], + [-13.1507, 8.873999], + [-13.1526, 8.8746], + [-13.154299, 8.876], + [-13.1549, 8.877099], + [-13.1565, 8.8779], + [-13.1579, 8.880099], + [-13.159299, 8.8807], + [-13.160999, 8.882399], + [-13.1612, 8.883799], + [-13.162399, 8.8851], + [-13.1624, 8.886199], + [-13.166299, 8.887599], + [-13.1668, 8.8874], + [-13.171499, 8.887399], + [-13.172899, 8.8849] + ] + ], + [ + [ + [-13.166299, 8.876299], + [-13.1643, 8.8746], + [-13.164299, 8.8735], + [-13.1626, 8.872599], + [-13.160999, 8.8707], + [-13.160099, 8.870699], + [-13.158199, 8.8687], + [-13.155999, 8.867899], + [-13.1532, 8.8676], + [-13.152599, 8.8668], + [-13.1507, 8.8671], + [-13.1507, 8.868199], + [-13.152599, 8.869899], + [-13.155999, 8.8713], + [-13.1582, 8.873199], + [-13.1593, 8.8732], + [-13.161, 8.875099], + [-13.163699, 8.876], + [-13.1649, 8.877099], + [-13.166299, 8.876299] + ] + ], + [ + [ + [-13.165399, 8.8926], + [-13.162099, 8.8893], + [-13.1607, 8.8893], + [-13.1596, 8.8907], + [-13.1596, 8.891799], + [-13.1607, 8.892899], + [-13.163499, 8.8929], + [-13.164899, 8.893999], + [-13.165399, 8.8926] + ] + ], + [ + [ + [-13.172899, 8.893199], + [-13.172399, 8.8912], + [-13.1693, 8.8912], + [-13.1685, 8.892099], + [-13.1707, 8.894299], + [-13.171499, 8.894299], + [-13.172899, 8.893199] + ] + ] + ], + "type": "MultiPolygon" + }, + "id": 179, + "properties": { + "cc:admin:id": ["89"], + "cc:oBld:total": 301, + "cc:pop:fifteen-to-twenty-four": 1993.4145076810294, + "cc:pop:grid3-total": 12936.3332338239, + "cc:pop:kontur-total": 10187.909645349884, + "cc:pop:men": 5379.737987755824, + "cc:pop:sixty-plus": 589.8219436846421, + "cc:pop:total": 11355.823684129753, + "cc:pop:under-five": 1732.201462038983, + "cc:pop:women": 5976.085696373924, + "cc:pop:women-fiften-to-forty-nine": 2936.178067189763, + "cc:pop:wp-total": 10724.28566105844, + "cc:pop:wp-total-UN": 12428.862577259915, + "cc:id": "179", + "cc:Name": "Kalainkay MCHP", + "cc:site": [-13.0941, 8.8831], + "user:parentName": "Mambolo", + "user:code": "OU_211265", + "user:orgUnitId": "OGaAWQD6SYs", + "user:level": "4", + "user:parentId": "xGMGhjA3y6J" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.164219, 8.792659], + [-13.163749, 8.791249], + [-13.162765, 8.789774], + [-13.162532, 8.78978], + [-13.162016, 8.789651], + [-13.162013, 8.790164], + [-13.162011, 8.790165], + [-13.16072, 8.789515], + [-13.159167, 8.789636], + [-13.159081, 8.788951], + [-13.158653, 8.78886], + [-13.158654, 8.788346], + [-13.158443, 8.788309], + [-13.15875, 8.787083], + [-13.160416, 8.786249], + [-13.161249, 8.782917], + [-13.157917, 8.775416], + [-13.157917, 8.775352], + [-13.159244, 8.774785], + [-13.160416, 8.77443], + [-13.160416, 8.77038], + [-13.159772, 8.770379], + [-13.155866, 8.763614], + [-13.150635, 8.763613], + [-13.150417, 8.762082], + [-13.150417, 8.760417], + [-13.154582, 8.760416], + [-13.157916, 8.757082], + [-13.153749, 8.74875], + [-13.150417, 8.74625], + [-13.145379, 8.748139], + [-13.145363, 8.748245], + [-13.144417, 8.750144], + [-13.144162, 8.750891], + [-13.139583, 8.749583], + [-13.139582, 8.750417], + [-13.13375, 8.752083], + [-13.130417, 8.755416], + [-13.12875, 8.755417], + [-13.128749, 8.756249], + [-13.127917, 8.75625], + [-13.122083, 8.753749], + [-13.120416, 8.752083], + [-13.117916, 8.753749], + [-13.108749, 8.753749], + [-13.104583, 8.750416], + [-13.103749, 8.744583], + [-13.09625, 8.744583], + [-13.096171, 8.744897], + [-13.101386, 8.744898], + [-13.105292, 8.751664], + [-13.102692, 8.756168], + [-13.103749, 8.75625], + [-13.102916, 8.762917], + [-13.100234, 8.766269], + [-13.100101, 8.766196], + [-13.099949, 8.766163], + [-13.09625, 8.772082], + [-13.092917, 8.77125], + [-13.090416, 8.777916], + [-13.089178, 8.778329], + [-13.088399, 8.777992], + [-13.088368, 8.777917], + [-13.087083, 8.777917], + [-13.082083, 8.785417], + [-13.084582, 8.790416], + [-13.085416, 8.79125], + [-13.084904, 8.7933], + [-13.084902, 8.7933], + [-13.084297, 8.792355], + [-13.082973, 8.792486], + [-13.082807, 8.793522], + [-13.083691, 8.794111], + [-13.08388, 8.795017], + [-13.084041, 8.795083], + [-13.08375, 8.79625], + [-13.08375, 8.804582], + [-13.084669, 8.805962], + [-13.082083, 8.805646], + [-13.082082, 8.809582], + [-13.081231, 8.810435], + [-13.081654, 8.810623], + [-13.084379, 8.810612], + [-13.088738, 8.810413], + [-13.089374, 8.812477], + [-13.089646, 8.81016], + [-13.09094, 8.809909], + [-13.090941, 8.80991], + [-13.09055, 8.813242], + [-13.090336, 8.814502], + [-13.090416, 8.814583], + [-13.090302, 8.814697], + [-13.089868, 8.817245], + [-13.087793, 8.817879], + [-13.087024, 8.816073], + [-13.083907, 8.818118], + [-13.085645, 8.825302], + [-13.087083, 8.824583], + [-13.087917, 8.827082], + [-13.08875, 8.827083], + [-13.089285, 8.828687], + [-13.1036, 8.828499], + [-13.1097, 8.827699], + [-13.115799, 8.8261], + [-13.121199, 8.8259], + [-13.135999, 8.829699], + [-13.141799, 8.831399], + [-13.145099, 8.831399], + [-13.149099, 8.83], + [-13.151499, 8.827499], + [-13.151999, 8.824499], + [-13.151499, 8.8213], + [-13.1468, 8.8139], + [-13.147, 8.8087], + [-13.1521, 8.8059], + [-13.157899, 8.8057], + [-13.15907, 8.805799], + [-13.159582, 8.80375], + [-13.159583, 8.802082], + [-13.162082, 8.797083], + [-13.162916, 8.797082], + [-13.163385, 8.796614], + [-13.163277, 8.796613], + [-13.163278, 8.796098], + [-13.16302, 8.796097], + [-13.163017, 8.796612], + [-13.162498, 8.796866], + [-13.162242, 8.796093], + [-13.161982, 8.796349], + [-13.161724, 8.796347], + [-13.16225, 8.794547], + [-13.161215, 8.794541], + [-13.161087, 8.794283], + [-13.161089, 8.793769], + [-13.16135, 8.793511], + [-13.161486, 8.791967], + [-13.162782, 8.791458], + [-13.162783, 8.791459], + [-13.162652, 8.791972], + [-13.163037, 8.79236], + [-13.163815, 8.792364], + [-13.164073, 8.792622], + [-13.164219, 8.792659] + ] + ], + "type": "Polygon" + }, + "id": 181, + "properties": { + "cc:admin:id": ["74"], + "cc:oBld:total": 281, + "cc:pop:fifteen-to-twenty-four": 2973.2604993001473, + "cc:pop:grid3-total": 11919.823788781106, + "cc:pop:kontur-total": 15772.748904710908, + "cc:pop:men": 7664.7881551066, + "cc:pop:sixty-plus": 921.4528504117309, + "cc:pop:total": 16339.278008884352, + "cc:pop:under-five": 2554.55819998745, + "cc:pop:women": 8674.489853777748, + "cc:pop:women-fiften-to-forty-nine": 4303.365661237518, + "cc:pop:wp-total": 14426.99203046362, + "cc:pop:wp-total-UN": 16729.38360540328, + "cc:id": "181", + "cc:Name": "Kalangba MCHP", + "cc:site": [-13.1405, 8.808], + "user:parentName": "Lokomasama", + "user:code": "OU_254989", + "user:orgUnitId": "UqXSUMp19FB", + "user:level": "4", + "user:parentId": "fRLX08WHWpL" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.012599, 9.197699], + [-12.0122, 9.1928], + [-12.0116, 9.1894], + [-12.0093, 9.184], + [-12.008499, 9.179399], + [-12.0082, 9.167], + [-12.0083, 9.164099], + [-12.008799, 9.16], + [-12.010999, 9.1543], + [-12.011399, 9.1509], + [-12.011099, 9.148299], + [-12.0098, 9.1431], + [-12.010228, 9.142406], + [-12.007916, 9.14125], + [-12.005417, 9.141249], + [-12.002917, 9.13875], + [-12.002179, 9.132112], + [-12.001905, 9.13216], + [-12.001772, 9.132199], + [-12.001249, 9.129583], + [-11.99625, 9.130416], + [-11.994583, 9.12875], + [-11.995416, 9.12625], + [-11.994582, 9.12375], + [-11.990417, 9.120417], + [-11.992916, 9.117917], + [-11.992082, 9.117083], + [-11.987621, 9.115171], + [-11.986471, 9.116872], + [-11.985337, 9.118408], + [-11.984407, 9.119249], + [-11.984126, 9.119304], + [-11.984398, 9.120496], + [-11.984442, 9.121791], + [-11.984531, 9.122082], + [-11.982083, 9.122082], + [-11.98094, 9.12037], + [-11.980953, 9.120362], + [-11.980417, 9.11875], + [-11.981249, 9.115417], + [-11.981249, 9.114583], + [-11.977083, 9.112917], + [-11.970417, 9.116249], + [-11.967916, 9.112082], + [-11.967082, 9.11125], + [-11.966249, 9.111249], + [-11.96413, 9.10913], + [-11.964145, 9.108879], + [-11.964017, 9.109015], + [-11.964015, 9.109015], + [-11.962082, 9.107083], + [-11.961249, 9.107083], + [-11.957773, 9.111254], + [-11.956361, 9.110004], + [-11.955147, 9.10841], + [-11.95297, 9.105363], + [-11.947083, 9.11125], + [-11.947916, 9.117082], + [-11.94625, 9.120416], + [-11.937269, 9.121165], + [-11.937215, 9.121787], + [-11.937489, 9.122714], + [-11.93375, 9.124583], + [-11.930417, 9.127917], + [-11.930576, 9.13], + [-11.929962, 9.13], + [-11.927292, 9.125375], + [-11.927082, 9.125416], + [-11.921333, 9.120386], + [-11.920362, 9.120886], + [-11.916145, 9.123872], + [-11.915703, 9.123924], + [-11.912407, 9.128318], + [-11.917225, 9.128319], + [-11.921131, 9.135084], + [-11.920808, 9.135643], + [-11.912917, 9.136249], + [-11.911249, 9.134583], + [-11.904583, 9.134583], + [-11.906249, 9.137917], + [-11.90375, 9.144582], + [-11.908749, 9.14875], + [-11.90625, 9.155416], + [-11.913749, 9.159583], + [-11.91125, 9.165417], + [-11.912917, 9.173749], + [-11.917916, 9.174583], + [-11.924583, 9.179582], + [-11.926249, 9.179582], + [-11.927917, 9.177082], + [-11.932916, 9.17625], + [-11.934582, 9.17625], + [-11.936528, 9.180139], + [-11.936527, 9.18014], + [-11.93625, 9.180245], + [-11.93625, 9.180416], + [-11.940416, 9.182083], + [-11.939811, 9.186926], + [-11.941455, 9.18493], + [-11.942916, 9.185417], + [-11.943869, 9.186369], + [-11.944036, 9.186163], + [-11.945416, 9.187082], + [-11.947083, 9.184583], + [-11.957082, 9.184583], + [-11.957082, 9.186279], + [-11.955404, 9.187535], + [-11.954422, 9.187892], + [-11.953989, 9.188647], + [-11.952889, 9.189985], + [-11.95375, 9.190416], + [-11.962395, 9.188976], + [-11.962832, 9.190189], + [-11.963625, 9.191464], + [-11.966355, 9.194067], + [-11.967173, 9.195089], + [-11.967857, 9.19646], + [-11.968113, 9.197818], + [-11.973411, 9.195169], + [-11.973505, 9.195163], + [-11.9749, 9.19556], + [-11.975792, 9.195553], + [-11.976836, 9.195316], + [-11.979582, 9.198749], + [-11.979583, 9.199582], + [-11.982082, 9.20125], + [-11.982082, 9.20375], + [-11.980417, 9.206249], + [-11.984582, 9.207917], + [-11.984583, 9.210416], + [-11.987082, 9.212917], + [-11.987083, 9.216249], + [-11.994582, 9.212916], + [-11.995161, 9.210029], + [-11.995252, 9.210085], + [-11.996497, 9.211471], + [-11.998039, 9.212595], + [-11.998539, 9.212773], + [-11.998589, 9.208834], + [-11.997847, 9.207407], + [-11.99769, 9.206725], + [-11.996909, 9.205722], + [-11.996896, 9.205603], + [-11.997083, 9.205416], + [-12.002916, 9.202083], + [-12.005417, 9.204582], + [-12.007916, 9.204582], + [-12.012082, 9.202917], + [-12.012383, 9.202917], + [-12.012419, 9.203099], + [-12.012599, 9.197699] + ] + ], + "type": "Polygon" + }, + "id": 182, + "properties": { + "cc:admin:id": ["7"], + "cc:oBld:total": 442, + "cc:pop:fifteen-to-twenty-four": 1039.4297306184953, + "cc:pop:grid3-total": 7951.538398529294, + "cc:pop:kontur-total": 5824.054475347925, + "cc:pop:men": 2637.0765326626183, + "cc:pop:sixty-plus": 328.46162859580147, + "cc:pop:total": 5733.706006776958, + "cc:pop:under-five": 911.5260254479618, + "cc:pop:women": 3096.6294741143397, + "cc:pop:women-fiften-to-forty-nine": 1524.4168528703422, + "cc:pop:wp-total": 5227.430394200958, + "cc:pop:wp-total-UN": 6055.715777089415, + "cc:id": "182", + "cc:Name": "Kamabai CHC", + "cc:site": [-11.9619, 9.157], + "user:parentName": "Biriwa", + "user:code": "OU_193231", + "user:orgUnitId": "mt47bcb0Rcj", + "user:level": "4", + "user:parentId": "fwH9ipvXde9" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.352916, 9.43125], + [-12.349583, 9.430416], + [-12.349582, 9.425416], + [-12.348326, 9.421021], + [-12.347406, 9.420689], + [-12.349479, 9.419595], + [-12.350411, 9.419454], + [-12.350593, 9.419392], + [-12.351018, 9.418967], + [-12.351392, 9.417963], + [-12.351495, 9.417293], + [-12.352154, 9.415671], + [-12.351937, 9.41274], + [-12.351766, 9.411727], + [-12.351572, 9.411511], + [-12.351709, 9.411371], + [-12.351867, 9.410267], + [-12.351617, 9.409713], + [-12.344583, 9.410416], + [-12.337917, 9.412083], + [-12.335431, 9.415811], + [-12.33594, 9.415946], + [-12.336427, 9.416329], + [-12.336797, 9.416979], + [-12.337783, 9.417794], + [-12.33815, 9.417892], + [-12.338749, 9.422083], + [-12.332083, 9.424583], + [-12.330438, 9.426776], + [-12.328531, 9.426796], + [-12.327446, 9.427421], + [-12.325747, 9.429257], + [-12.323739, 9.429659], + [-12.322694, 9.430159], + [-12.321736, 9.430225], + [-12.321803, 9.430786], + [-12.321723, 9.431899], + [-12.321343, 9.434319], + [-12.320009, 9.436905], + [-12.315417, 9.43625], + [-12.314582, 9.440417], + [-12.31125, 9.442917], + [-12.311249, 9.443749], + [-12.307876, 9.444312], + [-12.307928, 9.444389], + [-12.30795, 9.444548], + [-12.307916, 9.444583], + [-12.30375, 9.447916], + [-12.299583, 9.447916], + [-12.297916, 9.44625], + [-12.295146, 9.445696], + [-12.294923, 9.446221], + [-12.293283, 9.449015], + [-12.294582, 9.452917], + [-12.292083, 9.455417], + [-12.29125, 9.458749], + [-12.289582, 9.460416], + [-12.286249, 9.462082], + [-12.28487, 9.461623], + [-12.284938, 9.46125], + [-12.28125, 9.46125], + [-12.27625, 9.462082], + [-12.275417, 9.462083], + [-12.274583, 9.464582], + [-12.275416, 9.465417], + [-12.275416, 9.471249], + [-12.269583, 9.47125], + [-12.26785, 9.47356], + [-12.267874, 9.473586], + [-12.268056, 9.474199], + [-12.268533, 9.474745], + [-12.268775, 9.475977], + [-12.269042, 9.476068], + [-12.26913, 9.476315], + [-12.268522, 9.476402], + [-12.26731, 9.477186], + [-12.266215, 9.47726], + [-12.265057, 9.477623], + [-12.264583, 9.477628], + [-12.264583, 9.477917], + [-12.267082, 9.479583], + [-12.267083, 9.482082], + [-12.269583, 9.487916], + [-12.272082, 9.489582], + [-12.272179, 9.489773], + [-12.274889, 9.489019], + [-12.275801, 9.48898], + [-12.277587, 9.489523], + [-12.278313, 9.489244], + [-12.278694, 9.488824], + [-12.282917, 9.493749], + [-12.284582, 9.49375], + [-12.284583, 9.495416], + [-12.290255, 9.499671], + [-12.290693, 9.499059], + [-12.291587, 9.497115], + [-12.293387, 9.494562], + [-12.29456, 9.493491], + [-12.295665, 9.494467], + [-12.296052, 9.493933], + [-12.29615, 9.49351], + [-12.295932, 9.492833], + [-12.296435, 9.492934], + [-12.296777, 9.49274], + [-12.297523, 9.492054], + [-12.297874, 9.491416], + [-12.298489, 9.491402], + [-12.301802, 9.491658], + [-12.302248, 9.491613], + [-12.305526, 9.490598], + [-12.307169, 9.490273], + [-12.310222, 9.489228], + [-12.312758, 9.488472], + [-12.312184, 9.485046], + [-12.311992, 9.484267], + [-12.314583, 9.48375], + [-12.31793, 9.487096], + [-12.318308, 9.486823], + [-12.318554, 9.486266], + [-12.319062, 9.485868], + [-12.319188, 9.485506], + [-12.320309, 9.485201], + [-12.321823, 9.484489], + [-12.322407, 9.483842], + [-12.323877, 9.482949], + [-12.324718, 9.481361], + [-12.325261, 9.481083], + [-12.326376, 9.480833], + [-12.326895, 9.479979], + [-12.327038, 9.479933], + [-12.327917, 9.481249], + [-12.329582, 9.481249], + [-12.330813, 9.47756], + [-12.333053, 9.476539], + [-12.333517, 9.471904], + [-12.333448, 9.471782], + [-12.333547, 9.471611], + [-12.33375, 9.469582], + [-12.339582, 9.465416], + [-12.342153, 9.46156], + [-12.342208, 9.461603], + [-12.345421, 9.459996], + [-12.344331, 9.458107], + [-12.348236, 9.451342], + [-12.34433, 9.444576], + [-12.342917, 9.444575], + [-12.342917, 9.442144], + [-12.344845, 9.441971], + [-12.345362, 9.44193], + [-12.346925, 9.441082], + [-12.347861, 9.441361], + [-12.349582, 9.442295], + [-12.349583, 9.434583], + [-12.352916, 9.43125] + ] + ], + "type": "Polygon" + }, + "id": 183, + "properties": { + "cc:admin:id": ["121"], + "cc:oBld:total": 208, + "cc:pop:fifteen-to-twenty-four": 1293.0892964224424, + "cc:pop:grid3-total": 6759.830304515764, + "cc:pop:kontur-total": 7306.698361328847, + "cc:pop:men": 3808.2471241518724, + "cc:pop:sixty-plus": 449.762513540173, + "cc:pop:total": 7063.518000018875, + "cc:pop:under-five": 1141.7275842567776, + "cc:pop:women": 3255.2708758670055, + "cc:pop:women-fiften-to-forty-nine": 1600.491801944393, + "cc:pop:wp-total": 6873.8602997520675, + "cc:pop:wp-total-UN": 7968.806544553006, + "cc:id": "183", + "cc:Name": "Kamabaio MCHP", + "cc:site": [-12.2949, 9.4636], + "user:parentName": "Sella Limba", + "user:code": "OU_193294", + "user:orgUnitId": "OwHjzJEVEUN", + "user:level": "4", + "user:parentId": "j43EZb15rjI" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.278008, 9.489362], + [-12.277587, 9.489523], + [-12.275801, 9.48898], + [-12.274889, 9.489019], + [-12.272178, 9.489773], + [-12.272082, 9.489582], + [-12.269582, 9.487916], + [-12.267083, 9.482082], + [-12.267082, 9.479583], + [-12.264583, 9.477917], + [-12.264582, 9.477628], + [-12.264193, 9.477631], + [-12.263342, 9.477711], + [-12.26158, 9.478334], + [-12.261749, 9.477475], + [-12.261716, 9.476072], + [-12.26207, 9.475676], + [-12.26456, 9.474354], + [-12.265017, 9.473822], + [-12.264582, 9.472082], + [-12.262082, 9.469583], + [-12.260417, 9.46875], + [-12.260416, 9.468012], + [-12.259507, 9.468219], + [-12.258749, 9.462917], + [-12.250416, 9.465416], + [-12.247916, 9.462917], + [-12.245417, 9.462916], + [-12.24375, 9.46125], + [-12.243749, 9.45625], + [-12.238086, 9.454834], + [-12.238002, 9.455065], + [-12.232083, 9.45375], + [-12.231249, 9.454583], + [-12.219583, 9.457082], + [-12.218749, 9.455417], + [-12.21836, 9.455416], + [-12.218352, 9.455263], + [-12.212917, 9.454582], + [-12.215416, 9.442083], + [-12.214582, 9.44125], + [-12.208101, 9.442428], + [-12.207411, 9.442828], + [-12.206751, 9.442086], + [-12.2031, 9.448999], + [-12.201799, 9.4522], + [-12.197599, 9.4604], + [-12.194699, 9.4642], + [-12.1894, 9.469599], + [-12.186699, 9.4721], + [-12.1835, 9.473999], + [-12.1808, 9.474699], + [-12.1731, 9.474999], + [-12.1693, 9.475699], + [-12.1648, 9.477699], + [-12.1589, 9.479199], + [-12.154836, 9.480919], + [-12.155126, 9.481963], + [-12.155195, 9.483177], + [-12.155309, 9.484], + [-12.156011, 9.483494], + [-12.157064, 9.483793], + [-12.157794, 9.48431], + [-12.159026, 9.484369], + [-12.160799, 9.484001], + [-12.162522, 9.483921], + [-12.164599, 9.483087], + [-12.165212, 9.48334], + [-12.166033, 9.483344], + [-12.16803, 9.483063], + [-12.171037, 9.482873], + [-12.173749, 9.482538], + [-12.17375, 9.493749], + [-12.177917, 9.497082], + [-12.184012, 9.497083], + [-12.183179, 9.498526], + [-12.177083, 9.497917], + [-12.177083, 9.507548], + [-12.177745, 9.507446], + [-12.17859, 9.507479], + [-12.179282, 9.50808], + [-12.180504, 9.509389], + [-12.180967, 9.509578], + [-12.181574, 9.509556], + [-12.182398, 9.509176], + [-12.183187, 9.508534], + [-12.184234, 9.507123], + [-12.185664, 9.506368], + [-12.186983, 9.506756], + [-12.187794, 9.506557], + [-12.188233, 9.506645], + [-12.189248, 9.507534], + [-12.190115, 9.507492], + [-12.192083, 9.512082], + [-12.192917, 9.512083], + [-12.195411, 9.512706], + [-12.195461, 9.51261], + [-12.198748, 9.514582], + [-12.198747, 9.514583], + [-12.195417, 9.515417], + [-12.194583, 9.517083], + [-12.19481, 9.517763], + [-12.196198, 9.518467], + [-12.19887, 9.519578], + [-12.199395, 9.519963], + [-12.200187, 9.520176], + [-12.201073, 9.520691], + [-12.201996, 9.52167], + [-12.202983, 9.522621], + [-12.203591, 9.523898], + [-12.203597, 9.523902], + [-12.19875, 9.528749], + [-12.210841, 9.528039], + [-12.210853, 9.528056], + [-12.21176, 9.528506], + [-12.212916, 9.529436], + [-12.212916, 9.53125], + [-12.211068, 9.538645], + [-12.210916, 9.538604], + [-12.209889, 9.539037], + [-12.209337, 9.539549], + [-12.208856, 9.540517], + [-12.209415, 9.541575], + [-12.210488, 9.540962], + [-12.210417, 9.54125], + [-12.213749, 9.544582], + [-12.214457, 9.550236], + [-12.215017, 9.550329], + [-12.217048, 9.550031], + [-12.218221, 9.549684], + [-12.219954, 9.550576], + [-12.221393, 9.550776], + [-12.221915, 9.550335], + [-12.222369, 9.550257], + [-12.223499, 9.550529], + [-12.223782, 9.550776], + [-12.224389, 9.550913], + [-12.225339, 9.552101], + [-12.225175, 9.552267], + [-12.225269, 9.55308], + [-12.225384, 9.55391], + [-12.225709, 9.554583], + [-12.225751, 9.555451], + [-12.226015, 9.556002], + [-12.225934, 9.556468], + [-12.225186, 9.557788], + [-12.224064, 9.561216], + [-12.223639, 9.563328], + [-12.223365, 9.563909], + [-12.228749, 9.564583], + [-12.228115, 9.568393], + [-12.22812, 9.568395], + [-12.228639, 9.568845], + [-12.230096, 9.568658], + [-12.231174, 9.567825], + [-12.233904, 9.567131], + [-12.234858, 9.567262], + [-12.235905, 9.566815], + [-12.236284, 9.566549], + [-12.236565, 9.56607], + [-12.237596, 9.5644], + [-12.239623, 9.562564], + [-12.239988, 9.561994], + [-12.242916, 9.563749], + [-12.246249, 9.557082], + [-12.24625, 9.5545], + [-12.24649, 9.55447], + [-12.246744, 9.554604], + [-12.247039, 9.553687], + [-12.248051, 9.554575], + [-12.248298, 9.554629], + [-12.249243, 9.554632], + [-12.250059, 9.554876], + [-12.250386, 9.553157], + [-12.25033, 9.552681], + [-12.250417, 9.552599], + [-12.250417, 9.544582], + [-12.252083, 9.542916], + [-12.256249, 9.540417], + [-12.259582, 9.539582], + [-12.260417, 9.535416], + [-12.261249, 9.529583], + [-12.25875, 9.527082], + [-12.258749, 9.525794], + [-12.258429, 9.525804], + [-12.257917, 9.523749], + [-12.257917, 9.517917], + [-12.262916, 9.516249], + [-12.262917, 9.50875], + [-12.263283, 9.507648], + [-12.263285, 9.507647], + [-12.263425, 9.507732], + [-12.264621, 9.505341], + [-12.266715, 9.505147], + [-12.264583, 9.498749], + [-12.269582, 9.492917], + [-12.274658, 9.495816], + [-12.275124, 9.495027], + [-12.275754, 9.494318], + [-12.275962, 9.493835], + [-12.275869, 9.493424], + [-12.276177, 9.492708], + [-12.276158, 9.492258], + [-12.278008, 9.489362] + ] + ], + "type": "Polygon" + }, + "id": 184, + "properties": { + "cc:admin:id": ["121"], + "cc:oBld:total": 1962, + "cc:pop:fifteen-to-twenty-four": 6517.671269469488, + "cc:pop:grid3-total": 31128.500918775575, + "cc:pop:kontur-total": 35548.36259123049, + "cc:pop:men": 19109.257066345952, + "cc:pop:sixty-plus": 2263.12827317633, + "cc:pop:total": 35482.72896864461, + "cc:pop:under-five": 5718.367902899769, + "cc:pop:women": 16373.471902298636, + "cc:pop:women-fiften-to-forty-nine": 8009.012455607219, + "cc:pop:wp-total": 26459.3017256497, + "cc:pop:wp-total-UN": 30687.90464506481, + "cc:id": "184", + "cc:Name": "Kamakwie MCHP", + "cc:site": [-12.2377, 9.4981], + "user:parentName": "Sella Limba", + "user:code": "OU_193292", + "user:orgUnitId": "KnU2XHRvyiX", + "user:level": "4", + "user:parentId": "j43EZb15rjI" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.30918, 9.417054], + [-12.307937, 9.416967], + [-12.30898, 9.41597], + [-12.308581, 9.415466], + [-12.308275, 9.414193], + [-12.308228, 9.412791], + [-12.307876, 9.411916], + [-12.30855, 9.41125], + [-12.30375, 9.411249], + [-12.30375, 9.409582], + [-12.306249, 9.406249], + [-12.304817, 9.399808], + [-12.30464, 9.399781], + [-12.30315, 9.40053], + [-12.301565, 9.400763], + [-12.299811, 9.400535], + [-12.298641, 9.400106], + [-12.297452, 9.400209], + [-12.295425, 9.399931], + [-12.294437, 9.399994], + [-12.294437, 9.399993], + [-12.2953, 9.399314], + [-12.297288, 9.397276], + [-12.297785, 9.395723], + [-12.298287, 9.395217], + [-12.298326, 9.394904], + [-12.298579, 9.394583], + [-12.295416, 9.394582], + [-12.289679, 9.390996], + [-12.290079, 9.388269], + [-12.290418, 9.387157], + [-12.290408, 9.386063], + [-12.291612, 9.383415], + [-12.291628, 9.383321], + [-12.290416, 9.382917], + [-12.282933, 9.383747], + [-12.282932, 9.383746], + [-12.283031, 9.383524], + [-12.282896, 9.383076], + [-12.282095, 9.382806], + [-12.281628, 9.382614], + [-12.280871, 9.380719], + [-12.281287, 9.380436], + [-12.276588, 9.378086], + [-12.277396, 9.375709], + [-12.278425, 9.373159], + [-12.279033, 9.372784], + [-12.278466, 9.372303], + [-12.277684, 9.371115], + [-12.278113, 9.370356], + [-12.278278, 9.369973], + [-12.277534, 9.369595], + [-12.276469, 9.369124], + [-12.276187, 9.368978], + [-12.275963, 9.368627], + [-12.278749, 9.36375], + [-12.275417, 9.362083], + [-12.274798, 9.358995], + [-12.274313, 9.359222], + [-12.272956, 9.359477], + [-12.271458, 9.359389], + [-12.269811, 9.359995], + [-12.271249, 9.352083], + [-12.272916, 9.350416], + [-12.272916, 9.349252], + [-12.271931, 9.349761], + [-12.270098, 9.353233], + [-12.268972, 9.352597], + [-12.268536, 9.352638], + [-12.267827, 9.353234], + [-12.267286, 9.354055], + [-12.266266, 9.353356], + [-12.265725, 9.352391], + [-12.265224, 9.35011], + [-12.264621, 9.349267], + [-12.264203, 9.348035], + [-12.263266, 9.348692], + [-12.262329, 9.348938], + [-12.261122, 9.348877], + [-12.25983, 9.349596], + [-12.259445, 9.348629], + [-12.259888, 9.348126], + [-12.260767, 9.347976], + [-12.261475, 9.347618], + [-12.262235, 9.346918], + [-12.262667, 9.346117], + [-12.262797, 9.344808], + [-12.262725, 9.34481], + [-12.262078, 9.344031], + [-12.262421, 9.343801], + [-12.261377, 9.342731], + [-12.261455, 9.342448], + [-12.262178, 9.342151], + [-12.262719, 9.341724], + [-12.262698, 9.341174], + [-12.262402, 9.340672], + [-12.2607, 9.34025], + [-12.260122, 9.339674], + [-12.260377, 9.337841], + [-12.261433, 9.33636], + [-12.26136, 9.335827], + [-12.260371, 9.336175], + [-12.259517, 9.333941], + [-12.258851, 9.333594], + [-12.257716, 9.333745], + [-12.255485, 9.334603], + [-12.254643, 9.333925], + [-12.254172, 9.331995], + [-12.250899, 9.3328], + [-12.2456, 9.333299], + [-12.2395, 9.333399], + [-12.2344, 9.3333], + [-12.229099, 9.332799], + [-12.223599, 9.3313], + [-12.2145, 9.333399], + [-12.2121, 9.334399], + [-12.209999, 9.3368], + [-12.209099, 9.3391], + [-12.207999, 9.343999], + [-12.2061, 9.346699], + [-12.202999, 9.348199], + [-12.2, 9.348299], + [-12.199153, 9.347945], + [-12.19625, 9.35375], + [-12.197571, 9.357713], + [-12.198126, 9.357202], + [-12.198153, 9.357195], + [-12.19875, 9.359582], + [-12.203749, 9.362083], + [-12.202916, 9.367083], + [-12.20125, 9.372916], + [-12.199583, 9.372083], + [-12.199583, 9.372917], + [-12.200148, 9.379689], + [-12.204412, 9.37969], + [-12.208198, 9.386249], + [-12.205401, 9.38625], + [-12.201797, 9.392489], + [-12.195419, 9.39249], + [-12.194582, 9.395417], + [-12.193907, 9.40083], + [-12.194057, 9.400916], + [-12.19502, 9.401506], + [-12.19696, 9.40275], + [-12.197666, 9.402902], + [-12.200797, 9.402192], + [-12.20108, 9.40329], + [-12.202916, 9.40375], + [-12.202917, 9.408749], + [-12.204582, 9.409583], + [-12.204582, 9.419582], + [-12.20375, 9.421249], + [-12.203286, 9.421199], + [-12.201235, 9.424749], + [-12.193424, 9.42475], + [-12.189517, 9.431515], + [-12.189801, 9.432005], + [-12.190417, 9.432083], + [-12.193749, 9.436249], + [-12.194582, 9.44125], + [-12.192083, 9.446249], + [-12.191249, 9.44625], + [-12.184947, 9.455702], + [-12.18289, 9.456374], + [-12.181735, 9.457094], + [-12.180943, 9.457122], + [-12.180335, 9.457348], + [-12.179925, 9.457644], + [-12.179713, 9.458042], + [-12.179329, 9.458242], + [-12.179583, 9.45875], + [-12.182917, 9.462083], + [-12.182916, 9.471249], + [-12.179413, 9.474753], + [-12.1808, 9.474699], + [-12.183499, 9.474], + [-12.186699, 9.4721], + [-12.1894, 9.469599], + [-12.1947, 9.464199], + [-12.1976, 9.460399], + [-12.201799, 9.4522], + [-12.2031, 9.448999], + [-12.207799, 9.4401], + [-12.212199, 9.4343], + [-12.2151, 9.428899], + [-12.219099, 9.4239], + [-12.222, 9.4198], + [-12.2277, 9.416299], + [-12.2303, 9.415499], + [-12.233199, 9.4152], + [-12.243899, 9.4152], + [-12.248999, 9.4146], + [-12.2548, 9.412299], + [-12.2583, 9.4116], + [-12.261899, 9.4116], + [-12.2653, 9.4123], + [-12.2707, 9.4146], + [-12.2745, 9.4151], + [-12.280399, 9.415399], + [-12.283999, 9.416099], + [-12.288599, 9.418099], + [-12.2914, 9.4187], + [-12.2963, 9.419], + [-12.308399, 9.419], + [-12.309115, 9.418935], + [-12.3091, 9.418892], + [-12.308751, 9.41817], + [-12.30918, 9.417054] + ] + ], + "type": "Polygon" + }, + "id": 185, + "properties": { + "cc:admin:id": ["116"], + "cc:oBld:total": 367, + "cc:pop:fifteen-to-twenty-four": 3118.5848174065786, + "cc:pop:grid3-total": 19815.203644372796, + "cc:pop:kontur-total": 16286.27928122309, + "cc:pop:men": 7989.10285112629, + "cc:pop:sixty-plus": 1040.630415789255, + "cc:pop:total": 16840.330847899062, + "cc:pop:under-five": 2717.401589154919, + "cc:pop:women": 8851.22799677277, + "cc:pop:women-fiften-to-forty-nine": 4282.65323257136, + "cc:pop:wp-total": 13254.952876093024, + "cc:pop:wp-total-UN": 15369.929145062875, + "cc:id": "185", + "cc:Name": "Kamalo CHC", + "cc:site": [-12.244, 9.4009], + "user:parentName": "Sanda Loko", + "user:code": "OU_193242", + "user:orgUnitId": "HNv1aLPdMYb", + "user:level": "4", + "user:parentId": "WXnNDWTiE9r" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.267916, 9.282083], + [-12.262083, 9.282916], + [-12.259666, 9.282313], + [-12.259589, 9.281919], + [-12.259523, 9.281056], + [-12.259578, 9.279762], + [-12.259216, 9.27641], + [-12.258635, 9.274697], + [-12.255416, 9.277916], + [-12.247083, 9.27375], + [-12.246249, 9.27875], + [-12.24125, 9.282916], + [-12.236084, 9.283654], + [-12.235876, 9.28398], + [-12.232083, 9.282082], + [-12.232083, 9.281249], + [-12.233749, 9.27625], + [-12.22625, 9.274583], + [-12.224583, 9.275417], + [-12.224582, 9.279582], + [-12.222916, 9.280416], + [-12.218782, 9.280416], + [-12.218868, 9.279791], + [-12.219447, 9.277669], + [-12.219504, 9.276378], + [-12.219156, 9.275597], + [-12.214583, 9.27625], + [-12.213749, 9.281249], + [-12.212916, 9.282082], + [-12.207916, 9.282083], + [-12.20125, 9.282916], + [-12.197917, 9.280417], + [-12.197916, 9.27875], + [-12.19625, 9.27875], + [-12.194125, 9.280343], + [-12.193822, 9.279884], + [-12.192906, 9.279014], + [-12.19108, 9.280248], + [-12.190717, 9.281092], + [-12.189156, 9.28273], + [-12.188469, 9.284295], + [-12.186708, 9.285291], + [-12.1859, 9.285571], + [-12.183731, 9.285189], + [-12.183078, 9.285311], + [-12.182159, 9.28593], + [-12.179997, 9.285645], + [-12.177883, 9.286045], + [-12.177617, 9.285863], + [-12.176663, 9.285711], + [-12.17575, 9.285109], + [-12.174944, 9.284222], + [-12.17466, 9.282963], + [-12.174126, 9.282197], + [-12.173304, 9.281683], + [-12.172671, 9.28174], + [-12.172939, 9.284136], + [-12.173275, 9.285198], + [-12.173482, 9.286433], + [-12.169583, 9.287082], + [-12.167916, 9.286249], + [-12.164583, 9.285417], + [-12.162082, 9.282917], + [-12.155417, 9.282083], + [-12.153609, 9.282083], + [-12.152799, 9.284199], + [-12.150299, 9.2866], + [-12.147999, 9.2881], + [-12.144799, 9.2893], + [-12.141199, 9.2912], + [-12.1374, 9.292899], + [-12.1354, 9.2944], + [-12.133799, 9.2969], + [-12.133299, 9.2999], + [-12.133, 9.307599], + [-12.1364, 9.310299], + [-12.144299, 9.311899], + [-12.1497, 9.3141], + [-12.1544, 9.3147], + [-12.167, 9.3148], + [-12.1706, 9.3155], + [-12.1783, 9.319], + [-12.1807, 9.3206], + [-12.1829, 9.3225], + [-12.186299, 9.325999], + [-12.188699, 9.329099], + [-12.1907, 9.333], + [-12.192699, 9.337499], + [-12.1944, 9.3441], + [-12.1969, 9.347], + [-12.2, 9.348299], + [-12.202999, 9.348199], + [-12.206099, 9.346699], + [-12.207999, 9.344], + [-12.209099, 9.3391], + [-12.209999, 9.3368], + [-12.2121, 9.334399], + [-12.2145, 9.333399], + [-12.223599, 9.3313], + [-12.2291, 9.3328], + [-12.234399, 9.333299], + [-12.238184, 9.333373], + [-12.239582, 9.327083], + [-12.23625, 9.322916], + [-12.239037, 9.318038], + [-12.238966, 9.317865], + [-12.237748, 9.317943], + [-12.236742, 9.318259], + [-12.236741, 9.318258], + [-12.239583, 9.315417], + [-12.24125, 9.31625], + [-12.244424, 9.317043], + [-12.2447, 9.316281], + [-12.244853, 9.314382], + [-12.244771, 9.313481], + [-12.245637, 9.311843], + [-12.245623, 9.310255], + [-12.245339, 9.308182], + [-12.248749, 9.308749], + [-12.250416, 9.308749], + [-12.25098, 9.306493], + [-12.249168, 9.305282], + [-12.248835, 9.305059], + [-12.248834, 9.305058], + [-12.250166, 9.303896], + [-12.253587, 9.301398], + [-12.254583, 9.297916], + [-12.258512, 9.295297], + [-12.258513, 9.295298], + [-12.258517, 9.295329], + [-12.259088, 9.294522], + [-12.259661, 9.293737], + [-12.260095, 9.291139], + [-12.260338, 9.289518], + [-12.262311, 9.289878], + [-12.264344, 9.291293], + [-12.264582, 9.291388], + [-12.264583, 9.287916], + [-12.267916, 9.282083] + ] + ], + "type": "Polygon" + }, + "id": 186, + "properties": { + "cc:admin:id": ["31"], + "cc:oBld:total": 292, + "cc:pop:fifteen-to-twenty-four": 1727.7233825218213, + "cc:pop:grid3-total": 6697.281857125781, + "cc:pop:kontur-total": 9044.879524886905, + "cc:pop:men": 4461.706225053783, + "cc:pop:sixty-plus": 621.9171185384745, + "cc:pop:total": 9369.273263848907, + "cc:pop:under-five": 1483.4260150888106, + "cc:pop:women": 4907.567038795127, + "cc:pop:women-fiften-to-forty-nine": 2379.7920559117215, + "cc:pop:wp-total": 7825.281623769951, + "cc:pop:wp-total-UN": 9070.546713441316, + "cc:id": "186", + "cc:Name": "Kamaranka CHC", + "cc:site": [-12.2061, 9.2976], + "user:parentName": "Gbanti Kamaranka", + "user:code": "OU_193218", + "user:orgUnitId": "bSj2UnYhTFb", + "user:level": "4", + "user:parentId": "e1eIKM1GIF3" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.9815, 9.425899], + [-11.9821, 9.423199], + [-11.984199, 9.4179], + [-11.984499, 9.414399], + [-11.983799, 9.411599], + [-11.9799, 9.4036], + [-11.975899, 9.398], + [-11.973299, 9.396699], + [-11.970299, 9.395999], + [-11.966899, 9.393899], + [-11.9608, 9.3883], + [-11.9579, 9.3862], + [-11.9512, 9.3827], + [-11.9486, 9.382], + [-11.944999, 9.3816], + [-11.9423, 9.381799], + [-11.9401, 9.382399], + [-11.937599, 9.3839], + [-11.933099, 9.3877], + [-11.930399, 9.388999], + [-11.9274, 9.389399], + [-11.9238, 9.3882], + [-11.9214, 9.385299], + [-11.9214, 9.3817], + [-11.9254, 9.373899], + [-11.9276, 9.371099], + [-11.934599, 9.364], + [-11.937699, 9.3602], + [-11.9403, 9.355299], + [-11.9426, 9.352499], + [-11.947999, 9.3465], + [-11.949699, 9.3434], + [-11.9502, 9.340699], + [-11.950299, 9.3344], + [-11.950699, 9.3309], + [-11.952799, 9.326], + [-11.9534, 9.323899], + [-11.953799, 9.3148], + [-11.954399, 9.3114], + [-11.956599, 9.307], + [-11.956727, 9.306685], + [-11.95553, 9.306358], + [-11.954379, 9.306358], + [-11.954245, 9.306409], + [-11.952082, 9.302083], + [-11.948863, 9.299507], + [-11.948359, 9.299513], + [-11.948358, 9.299512], + [-11.948406, 9.299289], + [-11.94625, 9.29875], + [-11.945416, 9.297083], + [-11.93875, 9.293749], + [-11.937916, 9.287083], + [-11.935417, 9.286249], + [-11.938749, 9.282082], + [-11.938749, 9.279826], + [-11.93712, 9.279751], + [-11.936721, 9.279455], + [-11.935339, 9.279185], + [-11.934054, 9.278177], + [-11.932296, 9.277367], + [-11.932045, 9.277022], + [-11.931375, 9.276826], + [-11.931372, 9.276823], + [-11.931373, 9.276822], + [-11.939582, 9.277916], + [-11.939582, 9.270417], + [-11.930269, 9.264828], + [-11.926796, 9.270841], + [-11.919576, 9.270842], + [-11.917917, 9.272916], + [-11.917082, 9.272917], + [-11.913033, 9.274265], + [-11.911099, 9.270916], + [-11.906276, 9.270915], + [-11.90476, 9.269616], + [-11.904941, 9.269194], + [-11.90493, 9.268601], + [-11.904662, 9.268147], + [-11.903707, 9.26786], + [-11.902945, 9.266864], + [-11.902066, 9.265256], + [-11.901744, 9.265138], + [-11.901316, 9.264176], + [-11.901132, 9.263095], + [-11.900693, 9.261963], + [-11.899672, 9.260147], + [-11.899694, 9.259686], + [-11.898891, 9.258601], + [-11.898684, 9.258254], + [-11.892917, 9.260417], + [-11.892916, 9.26625], + [-11.892207, 9.274768], + [-11.892083, 9.274797], + [-11.892082, 9.279582], + [-11.889074, 9.284096], + [-11.889073, 9.284096], + [-11.888925, 9.283766], + [-11.888902, 9.283573], + [-11.882916, 9.279583], + [-11.872917, 9.285417], + [-11.872917, 9.288753], + [-11.879949, 9.288754], + [-11.883854, 9.295518], + [-11.884582, 9.295519], + [-11.884583, 9.297916], + [-11.889582, 9.302917], + [-11.88875, 9.307916], + [-11.88625, 9.309583], + [-11.884906, 9.312941], + [-11.885901, 9.313179], + [-11.890644, 9.314316], + [-11.890698, 9.314914], + [-11.891014, 9.315633], + [-11.888553, 9.315175], + [-11.877633, 9.314822], + [-11.877797, 9.315417], + [-11.87828, 9.315951], + [-11.87984, 9.316573], + [-11.88008, 9.316717], + [-11.877083, 9.317917], + [-11.87625, 9.322082], + [-11.882082, 9.322917], + [-11.879583, 9.32875], + [-11.879582, 9.333749], + [-11.87875, 9.336249], + [-11.885417, 9.33625], + [-11.886249, 9.342916], + [-11.88405, 9.342445], + [-11.881371, 9.347085], + [-11.88522, 9.353749], + [-11.88767, 9.35375], + [-11.886989, 9.354933], + [-11.893749, 9.355416], + [-11.894796, 9.356987], + [-11.889037, 9.356988], + [-11.88513, 9.363753], + [-11.877918, 9.363754], + [-11.878749, 9.365417], + [-11.875417, 9.381249], + [-11.877083, 9.382083], + [-11.877917, 9.390416], + [-11.879582, 9.39375], + [-11.879583, 9.399582], + [-11.887082, 9.405417], + [-11.887082, 9.410416], + [-11.88375, 9.41375], + [-11.888749, 9.41875], + [-11.88875, 9.428749], + [-11.887916, 9.430417], + [-11.887082, 9.434581], + [-11.885416, 9.432917], + [-11.877083, 9.432917], + [-11.87625, 9.437916], + [-11.879582, 9.451249], + [-11.877917, 9.45125], + [-11.877082, 9.455416], + [-11.87169, 9.457439], + [-11.872199, 9.4594], + [-11.8714, 9.470099], + [-11.8711, 9.475999], + [-11.8711, 9.486399], + [-11.871499, 9.492199], + [-11.872099, 9.495099], + [-11.8735, 9.4996], + [-11.8776, 9.5082], + [-11.882399, 9.516799], + [-11.887199, 9.521899], + [-11.8908, 9.5241], + [-11.8937, 9.5249], + [-11.898099, 9.525399], + [-11.914899, 9.5253], + [-11.919299, 9.5249], + [-11.922199, 9.5243], + [-11.9249, 9.523299], + [-11.9335, 9.5189], + [-11.943199, 9.5172], + [-11.9459, 9.516299], + [-11.9489, 9.514299], + [-11.954, 9.508699], + [-11.960499, 9.504399], + [-11.962599, 9.4983], + [-11.963299, 9.4928], + [-11.963999, 9.4902], + [-11.9661, 9.484799], + [-11.9666, 9.480999], + [-11.966899, 9.4752], + [-11.967499, 9.4716], + [-11.969499, 9.4671], + [-11.970099, 9.4633], + [-11.970099, 9.461299], + [-11.9693, 9.4567], + [-11.9669, 9.451499], + [-11.9666, 9.4472], + [-11.9677, 9.444399], + [-11.9697, 9.442499], + [-11.974899, 9.4396], + [-11.977699, 9.4373], + [-11.980199, 9.434], + [-11.9809, 9.431699], + [-11.9815, 9.425899] + ] + ], + "type": "Polygon" + }, + "id": 187, + "properties": { + "cc:admin:id": ["7"], + "cc:oBld:total": 707, + "cc:pop:fifteen-to-twenty-four": 1537.2391617886224, + "cc:pop:grid3-total": 9294.204126051865, + "cc:pop:kontur-total": 9055.429414652472, + "cc:pop:men": 3863.879526574053, + "cc:pop:sixty-plus": 500.1313699472342, + "cc:pop:total": 8402.963375191031, + "cc:pop:under-five": 1329.9769913168323, + "cc:pop:women": 4539.083848616978, + "cc:pop:women-fiften-to-forty-nine": 2218.4070790121377, + "cc:pop:wp-total": 5864.315644935204, + "cc:pop:wp-total-UN": 6804.391468179478, + "cc:id": "187", + "cc:Name": "Kamasikie MCHP", + "cc:site": [-11.9088, 9.3181], + "user:parentName": "Biriwa", + "user:code": "OU_193235", + "user:orgUnitId": "ZxuSbAmsLCn", + "user:level": "4", + "user:parentId": "fwH9ipvXde9" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.410499, 9.463599], + [-12.4104, 9.4519], + [-12.4096, 9.4449], + [-12.407799, 9.438999], + [-12.403999, 9.431299], + [-12.402799, 9.424099], + [-12.402399, 9.4108], + [-12.400799, 9.4062], + [-12.398199, 9.4037], + [-12.395099, 9.4024], + [-12.390899, 9.401999], + [-12.380799, 9.401899], + [-12.375399, 9.400899], + [-12.3702, 9.3983], + [-12.3676, 9.395799], + [-12.3657, 9.3918], + [-12.3651, 9.3879], + [-12.36527, 9.385562], + [-12.363749, 9.387083], + [-12.360417, 9.387917], + [-12.36087, 9.389734], + [-12.36067, 9.389645], + [-12.359104, 9.38923], + [-12.359356, 9.389884], + [-12.359935, 9.390335], + [-12.359935, 9.390337], + [-12.358793, 9.390495], + [-12.358438, 9.390728], + [-12.356716, 9.39087], + [-12.355473, 9.391304], + [-12.355085, 9.391701], + [-12.354583, 9.392087], + [-12.354582, 9.401249], + [-12.352083, 9.402917], + [-12.352083, 9.409582], + [-12.351559, 9.409583], + [-12.351867, 9.410267], + [-12.351709, 9.411371], + [-12.351572, 9.411511], + [-12.351766, 9.411727], + [-12.351937, 9.41274], + [-12.352154, 9.415671], + [-12.351495, 9.417293], + [-12.351392, 9.417963], + [-12.351017, 9.418968], + [-12.350593, 9.419392], + [-12.350411, 9.419454], + [-12.349479, 9.419595], + [-12.347405, 9.420689], + [-12.348327, 9.421021], + [-12.349582, 9.425416], + [-12.349583, 9.430416], + [-12.352916, 9.43125], + [-12.349583, 9.434583], + [-12.349582, 9.442294], + [-12.347861, 9.441361], + [-12.346925, 9.441082], + [-12.345362, 9.44193], + [-12.344845, 9.441971], + [-12.342917, 9.442144], + [-12.342917, 9.444575], + [-12.344331, 9.444576], + [-12.348236, 9.451342], + [-12.344331, 9.458107], + [-12.345421, 9.459997], + [-12.342208, 9.461603], + [-12.342154, 9.46156], + [-12.339582, 9.465416], + [-12.33375, 9.469583], + [-12.333547, 9.471611], + [-12.333448, 9.471783], + [-12.333517, 9.471904], + [-12.333053, 9.476539], + [-12.330813, 9.477561], + [-12.329583, 9.481249], + [-12.334583, 9.487083], + [-12.342082, 9.492916], + [-12.342082, 9.497083], + [-12.339583, 9.500416], + [-12.343749, 9.502917], + [-12.34559, 9.505982], + [-12.348104, 9.504299], + [-12.348105, 9.504299], + [-12.347917, 9.504583], + [-12.347917, 9.513749], + [-12.351334, 9.517167], + [-12.351113, 9.518264], + [-12.349597, 9.51894], + [-12.35073, 9.51974], + [-12.353221, 9.521328], + [-12.356192, 9.523207], + [-12.356766, 9.523523], + [-12.357146, 9.523555], + [-12.357434, 9.524217], + [-12.357426, 9.525727], + [-12.360799, 9.5238], + [-12.364, 9.522499], + [-12.368299, 9.5201], + [-12.371499, 9.5189], + [-12.375099, 9.5169], + [-12.378099, 9.5156], + [-12.380199, 9.514199], + [-12.381999, 9.511999], + [-12.3828, 9.508899], + [-12.382999, 9.504099], + [-12.3826, 9.4892], + [-12.383, 9.483899], + [-12.3836, 9.481699], + [-12.387299, 9.4742], + [-12.389, 9.471999], + [-12.391699, 9.4695], + [-12.393899, 9.4679], + [-12.401499, 9.4644], + [-12.4053, 9.463699], + [-12.410499, 9.463599] + ] + ], + "type": "Polygon" + }, + "id": 188, + "properties": { + "cc:admin:id": ["121"], + "cc:oBld:total": 101, + "cc:pop:fifteen-to-twenty-four": 748.4186618782888, + "cc:pop:grid3-total": 2870.9857964349208, + "cc:pop:kontur-total": 4205.911252147336, + "cc:pop:men": 2207.0795429834393, + "cc:pop:sixty-plus": 259.329514732904, + "cc:pop:total": 4097.626914017815, + "cc:pop:under-five": 658.975484087726, + "cc:pop:women": 1890.5473710343733, + "cc:pop:women-fiften-to-forty-nine": 932.2495418750914, + "cc:pop:wp-total": 4304.178025034491, + "cc:pop:wp-total-UN": 4994.609838769949, + "cc:id": "188", + "cc:Name": "Kamawornie CHP", + "cc:site": [-12.3726, 9.4863], + "user:parentName": "Sella Limba", + "user:code": "OU_193290", + "user:orgUnitId": "wO4z5Aqo0hf", + "user:level": "4", + "user:parentId": "j43EZb15rjI" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.413099, 9.3127], + [-12.406399, 9.309299], + [-12.3967, 9.3037], + [-12.393199, 9.300899], + [-12.3853, 9.2941], + [-12.382859, 9.292261], + [-12.379583, 9.292916], + [-12.37875, 9.292917], + [-12.374583, 9.295416], + [-12.373749, 9.294583], + [-12.372916, 9.294582], + [-12.367083, 9.29125], + [-12.367082, 9.291213], + [-12.366687, 9.291297], + [-12.366179, 9.291722], + [-12.365207, 9.292185], + [-12.363469, 9.292645], + [-12.362861, 9.292666], + [-12.361594, 9.292757], + [-12.360732, 9.292678], + [-12.359903, 9.292808], + [-12.357064, 9.293867], + [-12.356065, 9.293935], + [-12.355416, 9.28875], + [-12.351058, 9.288127], + [-12.351071, 9.287747], + [-12.342083, 9.28625], + [-12.339582, 9.288749], + [-12.337082, 9.285417], + [-12.335416, 9.285416], + [-12.332916, 9.282917], + [-12.330416, 9.282916], + [-12.327083, 9.280417], + [-12.319583, 9.288749], + [-12.318749, 9.291249], + [-12.312917, 9.290417], + [-12.312082, 9.28875], + [-12.307083, 9.289582], + [-12.307083, 9.282083], + [-12.30625, 9.281249], + [-12.306249, 9.280416], + [-12.297917, 9.277917], + [-12.29625, 9.279583], + [-12.294582, 9.283749], + [-12.282083, 9.282917], + [-12.281048, 9.281883], + [-12.280185, 9.28268], + [-12.27375, 9.281249], + [-12.27125, 9.279583], + [-12.271249, 9.275965], + [-12.270417, 9.276155], + [-12.270416, 9.279583], + [-12.267916, 9.282083], + [-12.264583, 9.287917], + [-12.264582, 9.291388], + [-12.264344, 9.291293], + [-12.262311, 9.289878], + [-12.260338, 9.289518], + [-12.260095, 9.291139], + [-12.259661, 9.293737], + [-12.259088, 9.294522], + [-12.258518, 9.295327], + [-12.258516, 9.295327], + [-12.258512, 9.295297], + [-12.254583, 9.297917], + [-12.253587, 9.301399], + [-12.250166, 9.303896], + [-12.248834, 9.305058], + [-12.25098, 9.306493], + [-12.250417, 9.308749], + [-12.248749, 9.308749], + [-12.245339, 9.308182], + [-12.245623, 9.310255], + [-12.245637, 9.311843], + [-12.244771, 9.313482], + [-12.244853, 9.314382], + [-12.2447, 9.316281], + [-12.244425, 9.317043], + [-12.24125, 9.31625], + [-12.239583, 9.315417], + [-12.23674, 9.318259], + [-12.237748, 9.317943], + [-12.238966, 9.317865], + [-12.239037, 9.318039], + [-12.23625, 9.322916], + [-12.239582, 9.327083], + [-12.238185, 9.333373], + [-12.2395, 9.333399], + [-12.245599, 9.3333], + [-12.250899, 9.3328], + [-12.257, 9.3313], + [-12.2598, 9.3328], + [-12.264199, 9.340999], + [-12.2662, 9.344999], + [-12.2687, 9.347299], + [-12.2709, 9.3481], + [-12.2738, 9.348399], + [-12.279699, 9.3482], + [-12.2833, 9.347499], + [-12.288699, 9.3452], + [-12.293699, 9.3439], + [-12.296899, 9.3421], + [-12.304799, 9.3351], + [-12.307299, 9.3338], + [-12.313099, 9.3323], + [-12.3176, 9.330299], + [-12.3213, 9.329499], + [-12.3252, 9.3294], + [-12.329199, 9.329599], + [-12.3327, 9.3306], + [-12.341099, 9.334899], + [-12.3465, 9.3393], + [-12.355299, 9.343599], + [-12.360199, 9.344799], + [-12.362699, 9.345999], + [-12.3662, 9.349999], + [-12.3726, 9.3508], + [-12.3809, 9.353099], + [-12.3857, 9.352699], + [-12.388899, 9.351199], + [-12.391, 9.349299], + [-12.3934, 9.345999], + [-12.397499, 9.3363], + [-12.400899, 9.3305], + [-12.4063, 9.325099], + [-12.4083, 9.322099], + [-12.4104, 9.317399], + [-12.413099, 9.3127] + ] + ], + "type": "Polygon" + }, + "id": 190, + "properties": { + "cc:admin:id": ["31"], + "cc:oBld:total": 480, + "cc:pop:fifteen-to-twenty-four": 1869.7826202168378, + "cc:pop:grid3-total": 6331.188240007232, + "cc:pop:kontur-total": 9831.313709688555, + "cc:pop:men": 4837.1687699479935, + "cc:pop:sixty-plus": 671.9048384428696, + "cc:pop:total": 10172.89229587774, + "cc:pop:under-five": 1611.6109486667233, + "cc:pop:women": 5335.723525929747, + "cc:pop:women-fiften-to-forty-nine": 2580.5671756226934, + "cc:pop:wp-total": 9591.154157351802, + "cc:pop:wp-total-UN": 11101.278207193629, + "cc:id": "190", + "cc:Name": "Kambia CHP", + "cc:site": [-12.2948, 9.3407], + "user:parentName": "Gbanti Kamaranka", + "user:code": "OU_193223", + "user:orgUnitId": "UUgajyaViT7", + "user:level": "4", + "user:parentId": "e1eIKM1GIF3" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.950281, 9.080231], + [-12.948855, 9.079312], + [-12.94796, 9.07859], + [-12.946091, 9.077543], + [-12.944872, 9.076578], + [-12.944217, 9.075762], + [-12.944006, 9.075333], + [-12.94393, 9.074605], + [-12.943304, 9.073931], + [-12.942599, 9.07349], + [-12.94097, 9.071771], + [-12.940351, 9.071452], + [-12.937513, 9.070364], + [-12.935239, 9.069034], + [-12.933047, 9.068305], + [-12.930719, 9.0678], + [-12.929684, 9.0678], + [-12.92875, 9.067961], + [-12.92875, 9.072917], + [-12.929582, 9.083749], + [-12.92625, 9.087916], + [-12.92375, 9.087916], + [-12.91875, 9.085417], + [-12.918749, 9.08375], + [-12.916249, 9.08125], + [-12.914582, 9.082082], + [-12.912456, 9.081552], + [-12.912233, 9.082039], + [-12.911508, 9.083328], + [-12.909361, 9.088027], + [-12.906249, 9.089582], + [-12.90415, 9.089583], + [-12.905457, 9.092], + [-12.905455, 9.092001], + [-12.904927, 9.091884], + [-12.902916, 9.097916], + [-12.892917, 9.097917], + [-12.891249, 9.10125], + [-12.885417, 9.10375], + [-12.885416, 9.113749], + [-12.882916, 9.113749], + [-12.878239, 9.111077], + [-12.878372, 9.11063], + [-12.878567, 9.110488], + [-12.872917, 9.10625], + [-12.870417, 9.10875], + [-12.868749, 9.113749], + [-12.859189, 9.112279], + [-12.859068, 9.114707], + [-12.857486, 9.116731], + [-12.857317, 9.117279], + [-12.857439, 9.118329], + [-12.857293, 9.120102], + [-12.857489, 9.121224], + [-12.85737, 9.124546], + [-12.857152, 9.125347], + [-12.852917, 9.129582], + [-12.850417, 9.129582], + [-12.845417, 9.127917], + [-12.843559, 9.125441], + [-12.843356, 9.124217], + [-12.843199, 9.1263], + [-12.8425, 9.128399], + [-12.838999, 9.1355], + [-12.836599, 9.1389], + [-12.829299, 9.1463], + [-12.825299, 9.1495], + [-12.820399, 9.1522], + [-12.812599, 9.1591], + [-12.809599, 9.1611], + [-12.805799, 9.1629], + [-12.7975, 9.167299], + [-12.7917, 9.171699], + [-12.7873, 9.174199], + [-12.7851, 9.176499], + [-12.782, 9.183099], + [-12.7812, 9.187399], + [-12.7847, 9.194999], + [-12.787, 9.197399], + [-12.790199, 9.198799], + [-12.795599, 9.1995], + [-12.797799, 9.200499], + [-12.799, 9.203699], + [-12.803699, 9.203], + [-12.807199, 9.2041], + [-12.8102, 9.2063], + [-12.816999, 9.212999], + [-12.820199, 9.215699], + [-12.824, 9.217399], + [-12.8269, 9.2177], + [-12.834599, 9.217799], + [-12.839399, 9.218299], + [-12.8448, 9.2205], + [-12.8473, 9.2211], + [-12.852699, 9.221799], + [-12.855199, 9.222399], + [-12.860099, 9.224499], + [-12.862299, 9.224899], + [-12.865699, 9.224599], + [-12.870999, 9.2223], + [-12.874299, 9.221399], + [-12.8769, 9.218099], + [-12.880799, 9.2099], + [-12.8818, 9.206], + [-12.883199, 9.2039], + [-12.8887, 9.201899], + [-12.8911, 9.200599], + [-12.893099, 9.1987], + [-12.8955, 9.195899], + [-12.897399, 9.192], + [-12.899399, 9.1884], + [-12.899999, 9.1864], + [-12.900099, 9.1833], + [-12.898899, 9.180099], + [-12.896599, 9.1779], + [-12.890299, 9.175799], + [-12.8886, 9.172799], + [-12.8889, 9.168299], + [-12.8905, 9.166199], + [-12.8928, 9.165599], + [-12.897, 9.165299], + [-12.899699, 9.1645], + [-12.902499, 9.162099], + [-12.9035, 9.159799], + [-12.9045, 9.154799], + [-12.906699, 9.1504], + [-12.9079, 9.147199], + [-12.910299, 9.1421], + [-12.9114, 9.136999], + [-12.913899, 9.1317], + [-12.915199, 9.1286], + [-12.917499, 9.1243], + [-12.9189, 9.121199], + [-12.9204, 9.118899], + [-12.9229, 9.116099], + [-12.929899, 9.109], + [-12.932299, 9.1057], + [-12.934099, 9.1018], + [-12.936, 9.098199], + [-12.937699, 9.0943], + [-12.941399, 9.0884], + [-12.944599, 9.0863], + [-12.947499, 9.084], + [-12.950281, 9.080231] + ] + ], + "type": "Polygon" + }, + "id": 191, + "properties": { + "cc:admin:id": ["82"], + "cc:oBld:total": 3977, + "cc:pop:fifteen-to-twenty-four": 7290.499542313473, + "cc:pop:grid3-total": 29913.724963046378, + "cc:pop:kontur-total": 38358.367120048424, + "cc:pop:men": 18630.832661693978, + "cc:pop:sixty-plus": 2569.073700628534, + "cc:pop:total": 39176.458040706755, + "cc:pop:under-five": 6262.8409631945015, + "cc:pop:women": 20545.625379012752, + "cc:pop:women-fiften-to-forty-nine": 9955.940264546902, + "cc:pop:wp-total": 32529.305025639216, + "cc:pop:wp-total-UN": 37706.13026787596, + "cc:id": "191", + "cc:Name": "Kambia GH", + "cc:site": [-12.9133, 9.125], + "user:parentName": "Magbema", + "user:code": "OU_211238", + "user:orgUnitId": "N7mHLD3ljYc", + "user:level": "4", + "user:parentId": "QywkxFudXrC" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.616817, 8.770655], + [-12.615799, 8.770399], + [-12.6074, 8.7665], + [-12.603099, 8.764099], + [-12.5958, 8.7606], + [-12.593, 8.7598], + [-12.590199, 8.7597], + [-12.5857, 8.7603], + [-12.5809, 8.762499], + [-12.578899, 8.7631], + [-12.575199, 8.7634], + [-12.566, 8.763599], + [-12.5623, 8.7644], + [-12.5547, 8.769299], + [-12.553099, 8.771799], + [-12.550499, 8.773799], + [-12.546999, 8.7746], + [-12.539199, 8.7749], + [-12.5362, 8.775599], + [-12.535417, 8.775965], + [-12.535416, 8.777916], + [-12.532412, 8.777917], + [-12.532685, 8.779298], + [-12.533184, 8.780561], + [-12.5332, 8.781261], + [-12.532877, 8.782888], + [-12.532905, 8.785045], + [-12.533369, 8.786152], + [-12.53545, 8.788395], + [-12.536099, 8.787198], + [-12.537085, 8.787586], + [-12.537417, 8.788595], + [-12.53716, 8.789097], + [-12.536326, 8.789419], + [-12.536523, 8.789822], + [-12.535539, 8.790549], + [-12.533485, 8.792892], + [-12.532962, 8.793241], + [-12.532239, 8.793633], + [-12.532523, 8.794323], + [-12.533564, 8.795753], + [-12.53413, 8.796098], + [-12.535187, 8.797598], + [-12.535312, 8.798881], + [-12.536276, 8.799909], + [-12.536715, 8.800921], + [-12.537916, 8.800185], + [-12.537917, 8.800417], + [-12.540114, 8.806278], + [-12.540968, 8.805871], + [-12.54268, 8.809865], + [-12.542632, 8.809928], + [-12.547916, 8.81125], + [-12.545417, 8.820416], + [-12.547082, 8.823749], + [-12.542917, 8.82375], + [-12.537917, 8.82625], + [-12.542083, 8.834582], + [-12.547916, 8.834583], + [-12.550371, 8.837651], + [-12.551007, 8.83702], + [-12.552608, 8.835936], + [-12.554115, 8.833881], + [-12.555463, 8.83283], + [-12.556174, 8.832474], + [-12.557542, 8.830855], + [-12.558056, 8.830363], + [-12.559696, 8.828582], + [-12.560691, 8.827184], + [-12.563305, 8.825564], + [-12.564628, 8.824634], + [-12.566789, 8.823857], + [-12.56785, 8.824028], + [-12.56986, 8.824028], + [-12.572523, 8.824341], + [-12.572956, 8.824296], + [-12.573597, 8.823909], + [-12.574318, 8.823143], + [-12.575514, 8.822096], + [-12.576551, 8.821626], + [-12.577083, 8.823749], + [-12.578749, 8.824582], + [-12.582083, 8.82125], + [-12.588006, 8.822566], + [-12.587377, 8.821814], + [-12.586676, 8.821442], + [-12.586127, 8.820813], + [-12.586101, 8.82068], + [-12.588787, 8.818441], + [-12.587949, 8.818383], + [-12.585417, 8.814583], + [-12.590416, 8.812082], + [-12.589708, 8.806415], + [-12.59293, 8.805463], + [-12.593461, 8.805386], + [-12.592083, 8.801249], + [-12.592082, 8.799583], + [-12.589727, 8.79487], + [-12.589855, 8.794935], + [-12.590603, 8.795034], + [-12.590938, 8.794858], + [-12.591351, 8.793832], + [-12.591425, 8.793764], + [-12.597082, 8.791249], + [-12.597917, 8.789583], + [-12.600868, 8.789582], + [-12.60039, 8.789016], + [-12.599999, 8.788751], + [-12.599999, 8.78875], + [-12.603749, 8.788749], + [-12.60375, 8.782802], + [-12.604175, 8.782643], + [-12.604363, 8.782899], + [-12.604562, 8.782862], + [-12.6046, 8.782831], + [-12.605323, 8.782536], + [-12.605476, 8.782167], + [-12.605358, 8.781609], + [-12.606415, 8.781038], + [-12.606489, 8.780503], + [-12.607178, 8.780413], + [-12.608156, 8.780597], + [-12.608474, 8.779955], + [-12.609581, 8.779669], + [-12.609898, 8.778703], + [-12.610508, 8.778255], + [-12.610837, 8.777524], + [-12.611363, 8.777316], + [-12.611645, 8.776892], + [-12.611658, 8.776569], + [-12.61199, 8.776344], + [-12.612059, 8.776048], + [-12.613715, 8.775126], + [-12.613885, 8.774651], + [-12.61454, 8.773885], + [-12.614615, 8.772264], + [-12.6154, 8.771304], + [-12.616093, 8.771059], + [-12.616817, 8.770655] + ] + ], + "type": "Polygon" + }, + "id": 192, + "properties": { + "cc:admin:id": ["130"], + "cc:oBld:total": 52, + "cc:pop:fifteen-to-twenty-four": 1418.4368882298495, + "cc:pop:grid3-total": 3846.0674465067664, + "cc:pop:kontur-total": 7767.988909347529, + "cc:pop:men": 3512.3683461859728, + "cc:pop:sixty-plus": 486.7475411689489, + "cc:pop:total": 7579.410100373908, + "cc:pop:under-five": 1182.0456406671694, + "cc:pop:women": 4067.041754187938, + "cc:pop:women-fiften-to-forty-nine": 1950.9686604899628, + "cc:pop:wp-total": 6148.8358608461285, + "cc:pop:wp-total-UN": 7123.314321268404, + "cc:id": "192", + "cc:Name": "Kambia Makama CHP", + "cc:site": [-12.5834, 8.8169], + "user:parentName": "Tainkatopa Makama Safrokoh ", + "user:code": "OU_255064", + "user:orgUnitId": "kO9xe2HCovK", + "user:level": "4", + "user:parentId": "PrJQHI6q7w2" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.560899, 8.7119], + [-10.5565, 8.7076], + [-10.5541, 8.704099], + [-10.553299, 8.700599], + [-10.5532, 8.6924], + [-10.5528, 8.6883], + [-10.551399, 8.6846], + [-10.549699, 8.682399], + [-10.5405, 8.6733], + [-10.5386, 8.670199], + [-10.538099, 8.667999], + [-10.537299, 8.661399], + [-10.5346, 8.6549], + [-10.533399, 8.649799], + [-10.5295, 8.6414], + [-10.5269, 8.6363], + [-10.526, 8.632], + [-10.525, 8.6296], + [-10.523499, 8.627299], + [-10.515599, 8.6181], + [-10.5021, 8.6246], + [-10.498399, 8.6313], + [-10.4818, 8.637899], + [-10.4792, 8.640399], + [-10.4785, 8.646399], + [-10.481699, 8.6523], + [-10.478699, 8.6597], + [-10.4694, 8.674599], + [-10.4751, 8.680799], + [-10.482799, 8.6801], + [-10.4846, 8.689299], + [-10.494, 8.701999], + [-10.510399, 8.709399], + [-10.5069, 8.715399], + [-10.517699, 8.729899], + [-10.5103, 8.7354], + [-10.5114, 8.738799], + [-10.5232, 8.7375], + [-10.525499, 8.741], + [-10.526499, 8.748799], + [-10.5262, 8.746299], + [-10.5309, 8.741599], + [-10.537899, 8.7357], + [-10.542299, 8.7333], + [-10.544799, 8.731], + [-10.548, 8.725299], + [-10.5519, 8.720899], + [-10.560899, 8.7119] + ] + ], + "type": "Polygon" + }, + "id": 193, + "properties": { + "cc:admin:id": ["79"], + "cc:oBld:total": 1073, + "cc:pop:fifteen-to-twenty-four": 1271.5795881854265, + "cc:pop:grid3-total": 10834.229415338761, + "cc:pop:kontur-total": 7364.922805530928, + "cc:pop:men": 3156.378717164244, + "cc:pop:sixty-plus": 337.72067505483216, + "cc:pop:total": 6829.553990805051, + "cc:pop:under-five": 1025.7514866557478, + "cc:pop:women": 3673.1752736408052, + "cc:pop:women-fiften-to-forty-nine": 1868.6652191194437, + "cc:pop:wp-total": 5891.872972819195, + "cc:pop:wp-total-UN": 6835.0581446717515, + "cc:id": "193", + "cc:Name": "Kamiendor MCHP", + "cc:site": [-10.5153, 8.6827], + "user:parentName": "Mafindor", + "user:code": "OU_233346", + "user:orgUnitId": "hHKKi9WNoBG", + "user:level": "4", + "user:parentId": "EjnIQNVAXGp" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.33875, 8.062916], + [-12.338749, 8.052917], + [-12.327917, 8.049583], + [-12.329582, 8.04125], + [-12.331819, 8.039759], + [-12.324127, 8.039758], + [-12.320222, 8.032993], + [-12.324127, 8.026228], + [-12.331249, 8.026227], + [-12.33125, 8.015417], + [-12.332796, 8.014178], + [-12.33194, 8.012695], + [-12.335846, 8.005929], + [-12.332492, 8.000121], + [-12.329799, 7.999499], + [-12.327899, 7.998499], + [-12.3257, 7.9967], + [-12.322999, 7.993499], + [-12.320299, 7.988799], + [-12.318699, 7.987], + [-12.3168, 7.986], + [-12.314599, 7.985399], + [-12.3068, 7.985], + [-12.3031, 7.9844], + [-12.2977, 7.9823], + [-12.2939, 7.9817], + [-12.2879, 7.9815], + [-12.2842, 7.9809], + [-12.2788, 7.9787], + [-12.273699, 7.977299], + [-12.2658, 7.9725], + [-12.2625, 7.976699], + [-12.2599, 7.979499], + [-12.2584, 7.981899], + [-12.257799, 7.9845], + [-12.2577, 7.988099], + [-12.2583, 7.9917], + [-12.260699, 7.996899], + [-12.261399, 7.999399], + [-12.261999, 8.004699], + [-12.262699, 8.007199], + [-12.264799, 8.011699], + [-12.265499, 8.015199], + [-12.265799, 8.019699], + [-12.2656, 8.023399], + [-12.2646, 8.026799], + [-12.2628, 8.030299], + [-12.261399, 8.0335], + [-12.2591, 8.037799], + [-12.257799, 8.0409], + [-12.253799, 8.047399], + [-12.2477, 8.051399], + [-12.243899, 8.0532], + [-12.237299, 8.058], + [-12.234799, 8.059199], + [-12.2278, 8.060099], + [-12.2257, 8.060599], + [-12.223799, 8.0615], + [-12.2212, 8.0635], + [-12.221299, 8.092199], + [-12.221699, 8.097399], + [-12.222399, 8.100399], + [-12.2239, 8.1031], + [-12.2271, 8.107799], + [-12.232499, 8.108999], + [-12.2371, 8.111], + [-12.2396, 8.1115], + [-12.244899, 8.112099], + [-12.247699, 8.113], + [-12.250499, 8.1154], + [-12.252899, 8.119599], + [-12.254599, 8.121399], + [-12.2566, 8.1228], + [-12.2618, 8.1255], + [-12.2651, 8.1267], + [-12.268699, 8.126899], + [-12.272199, 8.126499], + [-12.2752, 8.125099], + [-12.2769, 8.123399], + [-12.2787, 8.120899], + [-12.2811, 8.1198], + [-12.284399, 8.1199], + [-12.290399, 8.122299], + [-12.2975, 8.1232], + [-12.2997, 8.1237], + [-12.301799, 8.124699], + [-12.3039, 8.1265], + [-12.306299, 8.129299], + [-12.309499, 8.135099], + [-12.310868, 8.136784], + [-12.312082, 8.133749], + [-12.310417, 8.127916], + [-12.315416, 8.12375], + [-12.318749, 8.122083], + [-12.31875, 8.112917], + [-12.320416, 8.112083], + [-12.320417, 8.10375], + [-12.323749, 8.100416], + [-12.324583, 8.097083], + [-12.327082, 8.094584], + [-12.332055, 8.094085], + [-12.33194, 8.093885], + [-12.335846, 8.08712], + [-12.333524, 8.083097], + [-12.33375, 8.082916], + [-12.335416, 8.078749], + [-12.33375, 8.074583], + [-12.33375, 8.067917], + [-12.33875, 8.062916] + ] + ], + "type": "Polygon" + }, + "id": 194, + "properties": { + "cc:admin:id": ["45"], + "cc:oBld:total": 15, + "cc:pop:fifteen-to-twenty-four": 389.3527972406183, + "cc:pop:grid3-total": 3116.546362151047, + "cc:pop:kontur-total": 2340.826671903263, + "cc:pop:men": 1025.146579116635, + "cc:pop:sixty-plus": 143.9451333283506, + "cc:pop:total": 2149.1966794418145, + "cc:pop:under-five": 364.373904335102, + "cc:pop:women": 1124.05010032518, + "cc:pop:women-fiften-to-forty-nine": 530.3044870152701, + "cc:pop:wp-total": 3154.706474167377, + "cc:pop:wp-total-UN": 3651.038981775585, + "cc:id": "194", + "cc:Name": "Kangahun CHC", + "cc:site": [-12.287, 8.0805], + "user:parentName": "Kaiyamba", + "user:code": "OU_247057", + "user:orgUnitId": "wUmVUKhnPuy", + "user:level": "4", + "user:parentId": "USQdmvrHh1Q" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.718099, 9.279799], + [-11.715499, 9.264299], + [-11.715, 9.2462], + [-11.7144, 9.2402], + [-11.712599, 9.234299], + [-11.709599, 9.227699], + [-11.705799, 9.217799], + [-11.704199, 9.212099], + [-11.703399, 9.206199], + [-11.7031, 9.196899], + [-11.703199, 9.183], + [-11.704199, 9.1689], + [-11.702899, 9.156399], + [-11.7026, 9.1397], + [-11.7031, 9.132299], + [-11.705399, 9.1227], + [-11.706099, 9.117], + [-11.706299, 9.111099], + [-11.7061, 9.1068], + [-11.7057, 9.1039], + [-11.704399, 9.099999], + [-11.699599, 9.091599], + [-11.695899, 9.086899], + [-11.6927, 9.0837], + [-11.6892, 9.0809], + [-11.6865, 9.0795], + [-11.683699, 9.078599], + [-11.679199, 9.078099], + [-11.673099, 9.078], + [-11.667, 9.078299], + [-11.661299, 9.0794], + [-11.6535, 9.082799], + [-11.6427, 9.0905], + [-11.639799, 9.0945], + [-11.6343, 9.098699], + [-11.6317, 9.101199], + [-11.626699, 9.1083], + [-11.620699, 9.115], + [-11.6132, 9.122499], + [-11.608499, 9.126], + [-11.6032, 9.128599], + [-11.599499, 9.1299], + [-11.5846, 9.131399], + [-11.5785, 9.133099], + [-11.5757, 9.133599], + [-11.5626, 9.134499], + [-11.5583, 9.135299], + [-11.5484, 9.140299], + [-11.541899, 9.1425], + [-11.533699, 9.1457], + [-11.5305, 9.1477], + [-11.525602, 9.153595], + [-11.529582, 9.15625], + [-11.531249, 9.162916], + [-11.521126, 9.165809], + [-11.521313, 9.166443], + [-11.519583, 9.16875], + [-11.521249, 9.172083], + [-11.519583, 9.182916], + [-11.521249, 9.18375], + [-11.519583, 9.187917], + [-11.520417, 9.202082], + [-11.528749, 9.205417], + [-11.525417, 9.21375], + [-11.53125, 9.217083], + [-11.534582, 9.217916], + [-11.53625, 9.217083], + [-11.537916, 9.219582], + [-11.537917, 9.216249], + [-11.545416, 9.208751], + [-11.545417, 9.210416], + [-11.548749, 9.212917], + [-11.550417, 9.216249], + [-11.559582, 9.21625], + [-11.56125, 9.217916], + [-11.566249, 9.217083], + [-11.570417, 9.224582], + [-11.573965, 9.225174], + [-11.574201, 9.225699], + [-11.574268, 9.226092], + [-11.574582, 9.226249], + [-11.575416, 9.226249], + [-11.57625, 9.224583], + [-11.584582, 9.228749], + [-11.587083, 9.225417], + [-11.59125, 9.227917], + [-11.593339, 9.232095], + [-11.593697, 9.232036], + [-11.593803, 9.231715], + [-11.593864, 9.231656], + [-11.593866, 9.231656], + [-11.595417, 9.237082], + [-11.604582, 9.23625], + [-11.600417, 9.244582], + [-11.594583, 9.244583], + [-11.59875, 9.248749], + [-11.599582, 9.248749], + [-11.60125, 9.247917], + [-11.604582, 9.248749], + [-11.604583, 9.252916], + [-11.60625, 9.252917], + [-11.611249, 9.257082], + [-11.617083, 9.25125], + [-11.61875, 9.25125], + [-11.622083, 9.254582], + [-11.630416, 9.250417], + [-11.632082, 9.250417], + [-11.632083, 9.260416], + [-11.639582, 9.257917], + [-11.642916, 9.258749], + [-11.642917, 9.264582], + [-11.644583, 9.264583], + [-11.64625, 9.267082], + [-11.648749, 9.267083], + [-11.649583, 9.272082], + [-11.65125, 9.272083], + [-11.660417, 9.276249], + [-11.662083, 9.27625], + [-11.665416, 9.277082], + [-11.667083, 9.279583], + [-11.669583, 9.282082], + [-11.67375, 9.282083], + [-11.679582, 9.289583], + [-11.677917, 9.294582], + [-11.677916, 9.295417], + [-11.675417, 9.300416], + [-11.686249, 9.30125], + [-11.682083, 9.307916], + [-11.685416, 9.311249], + [-11.690417, 9.311249], + [-11.692916, 9.309582], + [-11.694583, 9.30625], + [-11.700416, 9.308749], + [-11.694583, 9.319582], + [-11.702609, 9.319582], + [-11.7026, 9.319499], + [-11.702699, 9.314], + [-11.703599, 9.3107], + [-11.705599, 9.307], + [-11.7069, 9.303899], + [-11.7093, 9.299699], + [-11.712599, 9.2925], + [-11.7132, 9.290399], + [-11.713599, 9.2852], + [-11.7142, 9.2828], + [-11.716, 9.2807], + [-11.718099, 9.279799] + ] + ], + "type": "Polygon" + }, + "id": 195, + "properties": { + "cc:admin:id": ["20"], + "cc:oBld:total": 360, + "cc:pop:fifteen-to-twenty-four": 1615.7346405355242, + "cc:pop:grid3-total": 9297.947801344428, + "cc:pop:kontur-total": 9830.425298058197, + "cc:pop:men": 4007.7935396717294, + "cc:pop:sixty-plus": 559.4505825335289, + "cc:pop:total": 8701.368325543266, + "cc:pop:under-five": 1379.4953286311809, + "cc:pop:women": 4693.574785871538, + "cc:pop:women-fiften-to-forty-nine": 2264.1571817938957, + "cc:pop:wp-total": 7008.805656698196, + "cc:pop:wp-total-UN": 8087.624007632096, + "cc:id": "195", + "cc:Name": "Kania MCHP", + "cc:site": [-11.6091, 9.211], + "user:parentName": "Diang", + "user:code": "OU_226265", + "user:orgUnitId": "AGrsLyKWrVX", + "user:level": "4", + "user:parentId": "Lt8U7GVWvSR" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.894796, 9.356987], + [-11.893749, 9.355417], + [-11.88699, 9.354933], + [-11.886989, 9.354932], + [-11.887671, 9.35375], + [-11.885219, 9.353749], + [-11.881371, 9.347085], + [-11.884049, 9.342445], + [-11.886249, 9.342916], + [-11.885417, 9.33625], + [-11.87875, 9.336249], + [-11.879582, 9.333749], + [-11.879583, 9.32875], + [-11.882082, 9.322917], + [-11.87625, 9.322082], + [-11.877083, 9.317917], + [-11.880081, 9.316716], + [-11.87984, 9.316573], + [-11.87828, 9.315951], + [-11.877797, 9.315417], + [-11.877633, 9.314822], + [-11.888553, 9.315175], + [-11.891014, 9.315633], + [-11.890698, 9.314914], + [-11.890644, 9.314317], + [-11.8859, 9.313178], + [-11.884906, 9.312941], + [-11.886249, 9.309583], + [-11.888749, 9.307916], + [-11.889582, 9.302917], + [-11.884583, 9.297917], + [-11.884582, 9.295519], + [-11.883854, 9.295518], + [-11.879948, 9.288754], + [-11.872917, 9.288753], + [-11.872917, 9.285416], + [-11.882916, 9.279583], + [-11.888902, 9.283573], + [-11.888925, 9.283766], + [-11.889074, 9.284097], + [-11.892082, 9.279583], + [-11.892083, 9.274797], + [-11.892207, 9.274769], + [-11.892916, 9.26625], + [-11.892917, 9.260417], + [-11.892082, 9.259582], + [-11.891442, 9.256382], + [-11.88851, 9.256952], + [-11.888234, 9.256887], + [-11.887916, 9.25625], + [-11.884369, 9.255067], + [-11.88446, 9.255392], + [-11.885087, 9.256594], + [-11.885275, 9.258165], + [-11.885458, 9.258749], + [-11.884244, 9.258749], + [-11.880337, 9.251984], + [-11.877182, 9.251984], + [-11.877082, 9.252082], + [-11.873749, 9.247917], + [-11.867083, 9.24625], + [-11.866249, 9.244583], + [-11.863751, 9.24375], + [-11.863751, 9.243748], + [-11.867082, 9.240416], + [-11.865416, 9.237082], + [-11.860417, 9.230417], + [-11.860416, 9.227083], + [-11.856401, 9.226413], + [-11.856396, 9.226278], + [-11.856211, 9.225781], + [-11.855291, 9.224544], + [-11.854784, 9.224077], + [-11.853686, 9.22364], + [-11.852301, 9.222705], + [-11.851279, 9.221652], + [-11.850417, 9.222083], + [-11.848749, 9.226249], + [-11.844583, 9.225417], + [-11.842083, 9.221249], + [-11.840417, 9.21375], + [-11.839583, 9.212917], + [-11.832083, 9.214582], + [-11.829583, 9.212917], + [-11.831249, 9.20125], + [-11.827916, 9.195417], + [-11.82375, 9.195416], + [-11.824582, 9.18625], + [-11.817082, 9.180417], + [-11.812608, 9.180417], + [-11.8102, 9.194399], + [-11.8091, 9.203199], + [-11.8116, 9.2103], + [-11.815199, 9.223899], + [-11.815699, 9.226699], + [-11.8161, 9.2342], + [-11.816299, 9.258499], + [-11.8166, 9.266], + [-11.817, 9.2701], + [-11.819399, 9.279799], + [-11.8201, 9.284], + [-11.8204, 9.2899], + [-11.820599, 9.307699], + [-11.820999, 9.313499], + [-11.8215, 9.3163], + [-11.823699, 9.324399], + [-11.8245, 9.33], + [-11.824799, 9.338599], + [-11.824499, 9.3457], + [-11.823999, 9.3498], + [-11.8217, 9.359299], + [-11.8212, 9.3651], + [-11.8212, 9.378399], + [-11.822199, 9.386999], + [-11.8244, 9.3926], + [-11.829999, 9.400499], + [-11.831699, 9.404199], + [-11.833799, 9.412999], + [-11.8351, 9.4161], + [-11.8371, 9.418799], + [-11.844599, 9.422999], + [-11.8474, 9.4252], + [-11.8535, 9.4331], + [-11.867399, 9.447999], + [-11.870899, 9.454399], + [-11.87169, 9.457438], + [-11.877082, 9.455416], + [-11.877916, 9.45125], + [-11.879582, 9.451249], + [-11.87625, 9.437916], + [-11.877083, 9.432917], + [-11.885416, 9.432917], + [-11.887082, 9.434582], + [-11.887916, 9.430417], + [-11.88875, 9.428749], + [-11.888749, 9.41875], + [-11.88375, 9.41375], + [-11.887082, 9.410416], + [-11.887082, 9.405417], + [-11.879583, 9.399582], + [-11.879582, 9.39375], + [-11.877917, 9.390416], + [-11.877082, 9.382083], + [-11.875417, 9.381249], + [-11.878749, 9.365417], + [-11.877919, 9.363754], + [-11.88513, 9.363753], + [-11.889036, 9.356988], + [-11.894796, 9.356987] + ] + ], + "type": "Polygon" + }, + "id": 196, + "properties": { + "cc:admin:id": ["7"], + "cc:oBld:total": 398, + "cc:pop:fifteen-to-twenty-four": 1249.8405215961202, + "cc:pop:grid3-total": 6982.8890663947295, + "cc:pop:kontur-total": 6901.918143985717, + "cc:pop:men": 3148.6516425982404, + "cc:pop:sixty-plus": 394.93138487971714, + "cc:pop:total": 6843.6121966064875, + "cc:pop:under-five": 1065.5477799594105, + "cc:pop:women": 3694.9605540082443, + "cc:pop:women-fiften-to-forty-nine": 1830.1777990539942, + "cc:pop:wp-total": 6604.8490450599975, + "cc:pop:wp-total-UN": 7658.606516085068, + "cc:id": "196", + "cc:Name": "Kanikay MCHP", + "cc:site": [-11.8612, 9.308], + "user:parentName": "Biriwa", + "user:code": "OU_193233", + "user:orgUnitId": "nDwbwJZQUYU", + "user:level": "4", + "user:parentId": "fwH9ipvXde9" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.112379, 7.707771], + [-12.109899, 7.7076], + [-12.1021, 7.7076], + [-12.0925, 7.708099], + [-12.0809, 7.709799], + [-12.073399, 7.707099], + [-12.064599, 7.702699], + [-12.059199, 7.698299], + [-12.0514, 7.6906], + [-12.0459, 7.6759], + [-12.04432, 7.672917], + [-12.040417, 7.672917], + [-12.036983, 7.675662], + [-12.036685, 7.675146], + [-12.036686, 7.675049], + [-12.036632, 7.675055], + [-12.035469, 7.673041], + [-12.030417, 7.67304], + [-12.030416, 7.672084], + [-12.027916, 7.66875], + [-12.015416, 7.673749], + [-12.014582, 7.672916], + [-12.005417, 7.667917], + [-12.005416, 7.66125], + [-11.999471, 7.655305], + [-11.997496, 7.657337], + [-11.993106, 7.660392], + [-11.99125, 7.657916], + [-11.992916, 7.649584], + [-11.986249, 7.651249], + [-11.981249, 7.64625], + [-11.977916, 7.646249], + [-11.973928, 7.643591], + [-11.974041, 7.643324], + [-11.974436, 7.64259], + [-11.972917, 7.642084], + [-11.972591, 7.641432], + [-11.972442, 7.641751], + [-11.972899, 7.643], + [-11.9725, 7.646299], + [-11.9711, 7.648599], + [-11.969099, 7.6506], + [-11.9662, 7.652899], + [-11.961399, 7.6555], + [-11.958999, 7.6581], + [-11.956999, 7.6617], + [-11.954899, 7.6639], + [-11.9513, 7.6667], + [-11.947699, 7.6733], + [-11.947299, 7.6755], + [-11.94721, 7.677928], + [-11.9473, 7.677828], + [-11.949848, 7.675204], + [-11.950417, 7.674376], + [-11.952041, 7.675592], + [-11.952133, 7.675567], + [-11.952416, 7.675068], + [-11.953917, 7.675852], + [-11.955579, 7.676476], + [-11.957172, 7.676635], + [-11.957641, 7.676535], + [-11.958426, 7.677896], + [-11.958177, 7.678121], + [-11.959772, 7.678993], + [-11.960455, 7.679164], + [-11.961525, 7.679819], + [-11.961685, 7.680373], + [-11.962751, 7.681007], + [-11.963219, 7.681105], + [-11.96456, 7.680859], + [-11.965732, 7.681267], + [-11.96658, 7.681855], + [-11.967864, 7.681754], + [-11.967651, 7.683679], + [-11.967378, 7.684454], + [-11.966678, 7.685796], + [-11.966098, 7.686514], + [-11.964771, 7.687798], + [-11.962883, 7.689291], + [-11.962775, 7.689441], + [-11.96375, 7.690416], + [-11.9706, 7.690417], + [-11.970871, 7.690889], + [-11.968994, 7.693236], + [-11.9743, 7.693236], + [-11.976326, 7.689729], + [-11.984582, 7.690417], + [-11.984583, 7.707182], + [-11.989296, 7.707183], + [-11.991055, 7.71023], + [-11.991813, 7.710307], + [-11.990855, 7.711968], + [-11.994319, 7.717968], + [-11.990417, 7.71875], + [-11.987083, 7.722917], + [-11.987917, 7.732917], + [-11.98875, 7.742083], + [-11.992917, 7.745416], + [-11.998749, 7.745416], + [-12.00125, 7.743749], + [-12.007797, 7.742295], + [-12.007899, 7.742693], + [-12.016249, 7.740416], + [-12.015925, 7.736849], + [-12.02093, 7.736848], + [-12.024328, 7.730963], + [-12.024508, 7.728824], + [-12.026804, 7.728512], + [-12.027424, 7.728354], + [-12.035416, 7.729583], + [-12.042916, 7.732916], + [-12.046249, 7.730416], + [-12.04669, 7.727339], + [-12.048275, 7.730083], + [-12.056086, 7.730082], + [-12.057586, 7.727488], + [-12.062127, 7.72803], + [-12.064092, 7.728553], + [-12.064583, 7.727083], + [-12.070417, 7.722084], + [-12.079582, 7.722084], + [-12.079583, 7.72125], + [-12.089371, 7.72125], + [-12.089639, 7.720595], + [-12.092916, 7.721249], + [-12.094583, 7.722084], + [-12.095417, 7.729583], + [-12.103859, 7.729584], + [-12.104034, 7.729282], + [-12.104959, 7.729281], + [-12.108749, 7.726249], + [-12.109582, 7.715417], + [-12.108896, 7.713013], + [-12.109354, 7.713012], + [-12.112379, 7.707771] + ] + ], + "type": "Polygon" + }, + "id": 197, + "properties": { + "cc:admin:id": ["11"], + "cc:oBld:total": 8, + "cc:pop:fifteen-to-twenty-four": 1575.572778514276, + "cc:pop:grid3-total": 6102.511192430403, + "cc:pop:kontur-total": 8644.327055437701, + "cc:pop:men": 4129.279524588878, + "cc:pop:sixty-plus": 652.8586754136929, + "cc:pop:total": 8632.657333635141, + "cc:pop:under-five": 1351.9401548313158, + "cc:pop:women": 4503.377809046263, + "cc:pop:women-fiften-to-forty-nine": 2099.282496581927, + "cc:pop:wp-total": 7678.863233750557, + "cc:pop:wp-total-UN": 8911.239623577845, + "cc:id": "197", + "cc:Name": "Kaniya MCHP", + "cc:site": [-11.9937, 7.682], + "user:parentName": "Bumpe Ngao", + "user:code": "OU_642", + "user:orgUnitId": "CTOMXJg41hz", + "user:level": "4", + "user:parentId": "BGGmAwx33dj" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.569998, 9.20659], + [-12.563919, 9.206589], + [-12.562083, 9.202916], + [-12.562083, 9.195417], + [-12.562556, 9.194825], + [-12.558861, 9.194824], + [-12.554955, 9.188059], + [-12.556203, 9.185898], + [-12.557665, 9.185276], + [-12.558682, 9.185108], + [-12.558822, 9.185108], + [-12.557917, 9.183749], + [-12.557916, 9.175746], + [-12.556449, 9.175657], + [-12.554675, 9.175231], + [-12.551805, 9.175082], + [-12.550463, 9.174415], + [-12.548162, 9.17424], + [-12.546357, 9.17342], + [-12.546056, 9.17338], + [-12.542541, 9.174424], + [-12.540877, 9.174057], + [-12.540048, 9.174234], + [-12.537324, 9.173549], + [-12.533933, 9.171168], + [-12.534583, 9.167916], + [-12.537916, 9.164583], + [-12.543749, 9.163749], + [-12.543749, 9.161984], + [-12.543189, 9.161983], + [-12.539513, 9.155617], + [-12.539274, 9.15569], + [-12.537904, 9.155568], + [-12.537103, 9.155218], + [-12.53147, 9.155217], + [-12.527565, 9.148451], + [-12.53147, 9.141686], + [-12.527565, 9.13492], + [-12.519753, 9.134919], + [-12.515846, 9.128155], + [-12.519752, 9.121388], + [-12.517305, 9.11715], + [-12.514582, 9.120416], + [-12.508583, 9.120878], + [-12.506927, 9.118014], + [-12.499757, 9.118013], + [-12.500056, 9.117722], + [-12.501435, 9.116013], + [-12.502809, 9.114158], + [-12.504002, 9.111917], + [-12.504503, 9.110437], + [-12.504473, 9.109785], + [-12.504237, 9.109479], + [-12.503422, 9.109168], + [-12.502957, 9.108639], + [-12.502424, 9.108914], + [-12.502207, 9.108876], + [-12.502407, 9.108682], + [-12.502249, 9.108542], + [-12.501694, 9.10838], + [-12.500199, 9.108304], + [-12.500143, 9.108191], + [-12.501041, 9.108131], + [-12.499866, 9.107862], + [-12.498979, 9.107426], + [-12.495861, 9.105061], + [-12.493208, 9.102475], + [-12.492408, 9.101091], + [-12.491861, 9.10109], + [-12.490341, 9.099094], + [-12.488997, 9.09675], + [-12.488648, 9.095112], + [-12.488933, 9.0938], + [-12.490845, 9.091303], + [-12.492624, 9.088299], + [-12.492899, 9.087376], + [-12.492986, 9.086346], + [-12.492174, 9.085142], + [-12.491537, 9.084642], + [-12.491097, 9.083861], + [-12.490383, 9.083048], + [-12.489878, 9.081725], + [-12.490844, 9.07961], + [-12.491965, 9.078926], + [-12.496602, 9.079181], + [-12.498436, 9.079147], + [-12.499198, 9.078988], + [-12.500347, 9.078382], + [-12.501182, 9.077516], + [-12.50145, 9.077011], + [-12.498299, 9.0727], + [-12.495199, 9.0712], + [-12.4902, 9.0711], + [-12.4812, 9.0742], + [-12.4788, 9.0769], + [-12.4787, 9.081799], + [-12.481999, 9.087999], + [-12.484599, 9.093199], + [-12.4872, 9.0998], + [-12.488699, 9.1057], + [-12.488199, 9.110499], + [-12.4867, 9.113199], + [-12.483899, 9.115399], + [-12.4763, 9.118299], + [-12.4709, 9.1184], + [-12.4631, 9.126499], + [-12.456999, 9.1325], + [-12.4527, 9.136099], + [-12.4485, 9.138599], + [-12.4453, 9.140999], + [-12.4412, 9.144699], + [-12.4375, 9.148799], + [-12.435399, 9.1521], + [-12.4318, 9.159599], + [-12.4301, 9.165299], + [-12.4284, 9.172999], + [-12.432799, 9.182499], + [-12.433699, 9.1862], + [-12.433199, 9.19], + [-12.428, 9.207599], + [-12.4276, 9.212099], + [-12.4291, 9.2176], + [-12.4327, 9.2251], + [-12.437599, 9.233299], + [-12.4402, 9.236], + [-12.4432, 9.238], + [-12.4538, 9.2437], + [-12.463699, 9.251499], + [-12.468899, 9.254699], + [-12.472, 9.2569], + [-12.479499, 9.258799], + [-12.4831, 9.252199], + [-12.4855, 9.2501], + [-12.4892, 9.2499], + [-12.491399, 9.2514], + [-12.493, 9.2542], + [-12.494, 9.2573], + [-12.495899, 9.266199], + [-12.4978, 9.270599], + [-12.5024, 9.274599], + [-12.506499, 9.275299], + [-12.5097, 9.274199], + [-12.512299, 9.271699], + [-12.513599, 9.2686], + [-12.5164, 9.256699], + [-12.519399, 9.2415], + [-12.5202, 9.2322], + [-12.522099, 9.2283], + [-12.5259, 9.2272], + [-12.530199, 9.2289], + [-12.531699, 9.2322], + [-12.532499, 9.241499], + [-12.5343, 9.247099], + [-12.5374, 9.2509], + [-12.5418, 9.252499], + [-12.5453, 9.251999], + [-12.548199, 9.250499], + [-12.550399, 9.2479], + [-12.552199, 9.2437], + [-12.553699, 9.2366], + [-12.554099, 9.2257], + [-12.5552, 9.2215], + [-12.5569, 9.219299], + [-12.561799, 9.2152], + [-12.563004, 9.214621], + [-12.563407, 9.213703], + [-12.563502, 9.212907], + [-12.565298, 9.21144], + [-12.568033, 9.210084], + [-12.569431, 9.20787], + [-12.569998, 9.20659] + ] + ], + "type": "Polygon" + }, + "id": 198, + "properties": { + "cc:admin:id": ["117"], + "cc:oBld:total": 144, + "cc:pop:fifteen-to-twenty-four": 716.6322515974441, + "cc:pop:grid3-total": 3991.301946656292, + "cc:pop:kontur-total": 5520.466230010292, + "cc:pop:men": 1804.694561513081, + "cc:pop:sixty-plus": 247.97736527132045, + "cc:pop:total": 3899.740517149857, + "cc:pop:under-five": 636.7460595731853, + "cc:pop:women": 2095.045955636776, + "cc:pop:women-fiften-to-forty-nine": 1027.022651390942, + "cc:pop:wp-total": 2972.7089779073476, + "cc:pop:wp-total-UN": 3445.9261760772956, + "cc:id": "198", + "cc:Name": "Kantia CHP", + "cc:site": [-12.4809, 9.2225], + "user:parentName": "Sanda Magbolonthor", + "user:code": "OU_255000", + "user:orgUnitId": "KGN2jvZ0GJy", + "user:level": "4", + "user:parentId": "HWjrSuoNPte" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.058771, 8.999125], + [-12.0588, 8.998999], + [-12.058999, 8.9963], + [-12.058999, 8.996283], + [-12.058899, 8.990799], + [-12.058599, 8.9847], + [-12.0515, 8.9825], + [-12.047427, 8.980417], + [-12.044583, 8.980417], + [-12.035416, 8.987082], + [-12.032083, 8.985417], + [-12.032916, 8.982917], + [-12.027916, 8.977083], + [-12.027082, 8.977917], + [-12.017916, 8.977916], + [-12.015416, 8.976249], + [-12.014582, 8.974582], + [-12.011247, 8.968581], + [-12.010566, 8.968772], + [-12.008781, 8.968494], + [-12.006229, 8.967932], + [-12.000416, 8.972082], + [-11.99625, 8.97125], + [-11.995416, 8.969583], + [-11.992917, 8.96875], + [-11.989915, 8.971752], + [-11.990186, 8.973583], + [-11.990254, 8.973701], + [-11.990253, 8.973703], + [-11.984583, 8.972082], + [-11.983749, 8.96875], + [-11.982916, 8.967917], + [-11.982082, 8.967917], + [-11.977083, 8.970416], + [-11.976249, 8.969583], + [-11.972082, 8.969583], + [-11.969582, 8.970417], + [-11.967083, 8.972082], + [-11.963155, 8.968156], + [-11.962483, 8.968637], + [-11.957916, 8.976249], + [-11.954582, 8.97125], + [-11.951249, 8.974582], + [-11.947917, 8.974583], + [-11.947083, 8.978749], + [-11.944583, 8.98125], + [-11.945416, 8.983749], + [-11.945417, 8.984582], + [-11.949582, 8.989582], + [-11.949582, 8.991249], + [-11.942708, 8.998888], + [-11.943665, 8.99907], + [-11.944421, 8.999584], + [-11.945521, 8.999981], + [-11.947696, 9.000092], + [-11.94818, 9.00007], + [-11.948749, 9.002916], + [-11.947083, 9.004583], + [-11.947082, 9.014552], + [-11.946073, 9.014636], + [-11.945763, 9.01443], + [-11.945538, 9.014167], + [-11.945417, 9.014122], + [-11.945417, 9.016102], + [-11.946999, 9.016728], + [-11.947754, 9.016708], + [-11.947916, 9.016647], + [-11.947917, 9.017622], + [-11.9506, 9.0177], + [-11.958399, 9.021599], + [-11.9612, 9.0237], + [-11.968599, 9.031199], + [-11.971099, 9.033499], + [-11.9733, 9.034699], + [-11.975999, 9.034899], + [-11.9788, 9.033499], + [-11.9845, 9.028899], + [-11.9884, 9.026899], + [-11.9911, 9.024799], + [-11.996099, 9.02], + [-11.998799, 9.018], + [-12.0026, 9.016099], + [-12.0047, 9.014699], + [-12.008499, 9.0115], + [-12.010599, 9.0102], + [-12.0138, 9.008699], + [-12.018, 9.006199], + [-12.024499, 9.0035], + [-12.026599, 9.0037], + [-12.032599, 9.006299], + [-12.036799, 9.008699], + [-12.0401, 9.0101], + [-12.044299, 9.012599], + [-12.046599, 9.014499], + [-12.0504, 9.010399], + [-12.054499, 9.0066], + [-12.056799, 9.0039], + [-12.058199, 9.001599], + [-12.058771, 8.999125] + ] + ], + "type": "Polygon" + }, + "id": 199, + "properties": { + "cc:admin:id": ["113"], + "cc:oBld:total": 616, + "cc:pop:fifteen-to-twenty-four": 1221.3059602490412, + "cc:pop:grid3-total": 4226.75001169428, + "cc:pop:kontur-total": 6559.88554232648, + "cc:pop:men": 2862.8136971689933, + "cc:pop:sixty-plus": 434.83878900186454, + "cc:pop:total": 6235.04114776951, + "cc:pop:under-five": 1072.0634106204973, + "cc:pop:women": 3372.227450600515, + "cc:pop:women-fiften-to-forty-nine": 1584.7972143790616, + "cc:pop:wp-total": 4982.365138248649, + "cc:pop:wp-total-UN": 5770.68929009646, + "cc:id": "199", + "cc:Name": "Kapethe MCHP", + "cc:site": [-11.9826, 8.9869], + "user:parentName": "Safroko Limba", + "user:code": "OU_193271", + "user:orgUnitId": "GhDwjKv07iC", + "user:level": "4", + "user:parentId": "XG8HGAbrbbL" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.29989, 9.513397], + [-12.299367, 9.513186], + [-12.29634, 9.512695], + [-12.296527, 9.509109], + [-12.297145, 9.507917], + [-12.297082, 9.507916], + [-12.292917, 9.500417], + [-12.297097, 9.497628], + [-12.29687, 9.497443], + [-12.296072, 9.496333], + [-12.295665, 9.494468], + [-12.294561, 9.493491], + [-12.293386, 9.494563], + [-12.291587, 9.497115], + [-12.290693, 9.499059], + [-12.290255, 9.499671], + [-12.284583, 9.495417], + [-12.284582, 9.49375], + [-12.282916, 9.493749], + [-12.278693, 9.488824], + [-12.278313, 9.489244], + [-12.278008, 9.489362], + [-12.276158, 9.492258], + [-12.276177, 9.492708], + [-12.275869, 9.493425], + [-12.275962, 9.493835], + [-12.275754, 9.494318], + [-12.275124, 9.495027], + [-12.274658, 9.495816], + [-12.269583, 9.492917], + [-12.264583, 9.49875], + [-12.266715, 9.505146], + [-12.264621, 9.505342], + [-12.263425, 9.507732], + [-12.263423, 9.507732], + [-12.263283, 9.507647], + [-12.262917, 9.50875], + [-12.262916, 9.516249], + [-12.257917, 9.517917], + [-12.257917, 9.523749], + [-12.25843, 9.525804], + [-12.258749, 9.525795], + [-12.25875, 9.527082], + [-12.261249, 9.529583], + [-12.260417, 9.535416], + [-12.259583, 9.539582], + [-12.256249, 9.540417], + [-12.252083, 9.542916], + [-12.250417, 9.544583], + [-12.250417, 9.552599], + [-12.25033, 9.552681], + [-12.250386, 9.553157], + [-12.25006, 9.554876], + [-12.249243, 9.554632], + [-12.248298, 9.554629], + [-12.248051, 9.554576], + [-12.247039, 9.553687], + [-12.246745, 9.554604], + [-12.246489, 9.55447], + [-12.24625, 9.5545], + [-12.246249, 9.557082], + [-12.242917, 9.563749], + [-12.239989, 9.561994], + [-12.239623, 9.562564], + [-12.237596, 9.5644], + [-12.236565, 9.56607], + [-12.236284, 9.566549], + [-12.235905, 9.566815], + [-12.234859, 9.567262], + [-12.233904, 9.567131], + [-12.231174, 9.567825], + [-12.230097, 9.568658], + [-12.229061, 9.568792], + [-12.230253, 9.575347], + [-12.2341, 9.5754], + [-12.238999, 9.5754], + [-12.2419, 9.575199], + [-12.2447, 9.574599], + [-12.2491, 9.572599], + [-12.2554, 9.570999], + [-12.258099, 9.5694], + [-12.260299, 9.5675], + [-12.2686, 9.559299], + [-12.2718, 9.557399], + [-12.2742, 9.556799], + [-12.277916, 9.556654], + [-12.277917, 9.55375], + [-12.279582, 9.552082], + [-12.279583, 9.547917], + [-12.281205, 9.546294], + [-12.282008, 9.547209], + [-12.282106, 9.546578], + [-12.282284, 9.546351], + [-12.282504, 9.544361], + [-12.283351, 9.544541], + [-12.284111, 9.544945], + [-12.284457, 9.545273], + [-12.284561, 9.54573], + [-12.285441, 9.546121], + [-12.286308, 9.54741], + [-12.286643, 9.547374], + [-12.28687, 9.547755], + [-12.287123, 9.547782], + [-12.288913, 9.54626], + [-12.289588, 9.545803], + [-12.290246, 9.545811], + [-12.29066, 9.545349], + [-12.294141, 9.543943], + [-12.291594, 9.54209], + [-12.290646, 9.540664], + [-12.289703, 9.539507], + [-12.288589, 9.538502], + [-12.287789, 9.537847], + [-12.287149, 9.536159], + [-12.287896, 9.536268], + [-12.288749, 9.535416], + [-12.28999, 9.532315], + [-12.290416, 9.532315], + [-12.290417, 9.530416], + [-12.292082, 9.527917], + [-12.290417, 9.526249], + [-12.292082, 9.522917], + [-12.293749, 9.522916], + [-12.293749, 9.520118], + [-12.292459, 9.519747], + [-12.292916, 9.517917], + [-12.298749, 9.516249], + [-12.29989, 9.513397] + ] + ], + "type": "Polygon" + }, + "id": 200, + "properties": { + "cc:admin:id": ["121"], + "cc:oBld:total": 6, + "cc:pop:fifteen-to-twenty-four": 1209.2963470706754, + "cc:pop:grid3-total": 4855.5291851319525, + "cc:pop:kontur-total": 6681.193390483726, + "cc:pop:men": 3558.1995421828706, + "cc:pop:sixty-plus": 409.8049653929015, + "cc:pop:total": 6599.532436205108, + "cc:pop:under-five": 1068.6604779271613, + "cc:pop:women": 3041.3328940222386, + "cc:pop:women-fiften-to-forty-nine": 1490.4598618979041, + "cc:pop:wp-total": 5867.903981908251, + "cc:pop:wp-total-UN": 6794.718520681153, + "cc:id": "200", + "cc:Name": "Kaponkie MCHP", + "cc:site": [-12.2865, 9.5165], + "user:parentName": "Sella Limba", + "user:code": "OU_193287", + "user:orgUnitId": "Crgx572DnXR", + "user:level": "4", + "user:parentId": "j43EZb15rjI" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.640086, 8.917236], + [-12.639999, 8.917099], + [-12.632199, 8.909599], + [-12.6238, 8.9013], + [-12.6217, 8.8996], + [-12.619299, 8.898199], + [-12.6153, 8.8968], + [-12.6123, 8.8954], + [-12.606, 8.899699], + [-12.6022, 8.900899], + [-12.595, 8.901399], + [-12.5912, 8.901999], + [-12.585699, 8.9041], + [-12.5821, 8.904799], + [-12.5762, 8.905099], + [-12.5724, 8.905799], + [-12.567, 8.907999], + [-12.5638, 8.908599], + [-12.5604, 8.907999], + [-12.556999, 8.905899], + [-12.551599, 8.900799], + [-12.5489, 8.8989], + [-12.545, 8.8969], + [-12.5423, 8.895], + [-12.5385, 8.8915], + [-12.534, 8.8868], + [-12.5318, 8.8843], + [-12.5279, 8.8781], + [-12.525799, 8.8753], + [-12.522199, 8.878899], + [-12.5094, 8.8789], + [-12.5065, 8.879099], + [-12.503, 8.880299], + [-12.496199, 8.8834], + [-12.4888, 8.887099], + [-12.4846, 8.889499], + [-12.481399, 8.8908], + [-12.477, 8.892999], + [-12.470699, 8.8946], + [-12.4659, 8.896899], + [-12.462699, 8.8982], + [-12.4585, 8.900599], + [-12.455299, 8.9021], + [-12.448, 8.907499], + [-12.442699, 8.9101], + [-12.437399, 8.9135], + [-12.433499, 8.9198], + [-12.432899, 8.9228], + [-12.4327, 8.926399], + [-12.433099, 8.933299], + [-12.439799, 8.9329], + [-12.445099, 8.9331], + [-12.449299, 8.9346], + [-12.4514, 8.9366], + [-12.4551, 8.9424], + [-12.458599, 8.949999], + [-12.460499, 8.955599], + [-12.461799, 8.960999], + [-12.4629, 8.9647], + [-12.4642, 8.9679], + [-12.467599, 8.974499], + [-12.469499, 8.980999], + [-12.471299, 8.985399], + [-12.474099, 8.989399], + [-12.476899, 8.991799], + [-12.485299, 8.996199], + [-12.490799, 8.998599], + [-12.495899, 8.999599], + [-12.501199, 8.9992], + [-12.508399, 8.997], + [-12.512599, 8.9965], + [-12.518299, 8.996699], + [-12.5223, 8.9976], + [-12.533399, 9.002699], + [-12.5411, 9.0051], + [-12.5487, 9.0091], + [-12.552, 9.0115], + [-12.557099, 9.016299], + [-12.565799, 9.026199], + [-12.5657, 9.026299], + [-12.571999, 9.0215], + [-12.5765, 9.019299], + [-12.5815, 9.015299], + [-12.5843, 9.013899], + [-12.5898, 9.012499], + [-12.595099, 9.01], + [-12.598499, 9.009199], + [-12.597899, 9.006499], + [-12.594, 8.9984], + [-12.5917, 8.994499], + [-12.591, 8.9916], + [-12.590699, 8.988099], + [-12.5906, 8.981099], + [-12.5908, 8.978499], + [-12.5918, 8.9752], + [-12.5933, 8.973099], + [-12.5957, 8.970499], + [-12.6046, 8.961699], + [-12.629899, 8.9363], + [-12.6395, 8.926999], + [-12.641299, 8.924599], + [-12.641999, 8.922099], + [-12.641399, 8.9193], + [-12.640086, 8.917236] + ] + ], + "type": "Polygon" + }, + "id": 201, + "properties": { + "cc:admin:id": ["21"], + "cc:oBld:total": 167, + "cc:pop:fifteen-to-twenty-four": 4237.5956867721015, + "cc:pop:grid3-total": 18757.010907998996, + "cc:pop:kontur-total": 22062.72447894427, + "cc:pop:men": 10733.970532372947, + "cc:pop:sixty-plus": 1470.6659039277504, + "cc:pop:total": 22681.73020947846, + "cc:pop:under-five": 3653.236318113235, + "cc:pop:women": 11947.759677105514, + "cc:pop:women-fiften-to-forty-nine": 5811.458668181944, + "cc:pop:wp-total": 19533.892615527748, + "cc:pop:wp-total-UN": 22677.616809215666, + "cc:id": "201", + "cc:Name": "Kareneh MCHP", + "cc:site": [-12.5748, 8.9166], + "user:parentName": "Dibia", + "user:code": "OU_254981", + "user:orgUnitId": "YBZcWphXQ99", + "user:level": "4", + "user:parentId": "ZiOVcrSjSYe" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.090295, 9.187458], + [-12.089607, 9.187334], + [-12.089261, 9.187133], + [-12.089042, 9.18676], + [-12.089367, 9.185284], + [-12.08946, 9.184896], + [-12.088706, 9.184928], + [-12.088248, 9.184289], + [-12.08763, 9.183942], + [-12.087131, 9.182987], + [-12.086792, 9.182759], + [-12.084732, 9.182652], + [-12.085757, 9.181603], + [-12.086163, 9.181402], + [-12.085746, 9.181023], + [-12.084785, 9.17798], + [-12.083726, 9.176543], + [-12.085416, 9.175416], + [-12.085416, 9.174583], + [-12.082083, 9.172917], + [-12.080416, 9.170417], + [-12.07875, 9.170416], + [-12.078749, 9.169582], + [-12.072082, 9.164583], + [-12.070416, 9.165416], + [-12.067644, 9.161257], + [-12.068421, 9.160697], + [-12.068968, 9.16047], + [-12.069587, 9.160319], + [-12.070398, 9.160432], + [-12.072799, 9.160617], + [-12.075626, 9.159689], + [-12.076298, 9.158997], + [-12.077091, 9.158958], + [-12.077473, 9.158609], + [-12.076096, 9.157808], + [-12.075778, 9.157177], + [-12.074944, 9.156566], + [-12.073305, 9.155717], + [-12.071817, 9.154509], + [-12.070074, 9.154144], + [-12.067703, 9.154189], + [-12.066407, 9.153677], + [-12.065298, 9.153623], + [-12.064606, 9.153798], + [-12.063439, 9.153605], + [-12.063236, 9.151115], + [-12.062374, 9.151121], + [-12.061811, 9.151552], + [-12.059227, 9.151503], + [-12.058953, 9.151572], + [-12.058712, 9.151877], + [-12.057847, 9.151481], + [-12.057348, 9.151638], + [-12.056138, 9.151345], + [-12.05466, 9.151423], + [-12.053473, 9.15102], + [-12.053193, 9.150733], + [-12.051737, 9.149045], + [-12.049583, 9.149582], + [-12.047082, 9.147917], + [-12.040417, 9.147083], + [-12.038749, 9.150417], + [-12.027083, 9.151249], + [-12.025704, 9.15033], + [-12.025704, 9.150329], + [-12.026382, 9.150007], + [-12.027754, 9.14899], + [-12.028956, 9.144076], + [-12.029205, 9.140774], + [-12.029448, 9.136573], + [-12.029129, 9.133738], + [-12.030038, 9.132239], + [-12.029582, 9.130417], + [-12.025417, 9.130417], + [-12.018679, 9.135656], + [-12.018475, 9.135312], + [-12.0149, 9.137099], + [-12.0119, 9.1397], + [-12.0098, 9.143099], + [-12.011099, 9.148299], + [-12.011399, 9.1509], + [-12.010999, 9.1543], + [-12.008799, 9.16], + [-12.0083, 9.164099], + [-12.0082, 9.167], + [-12.008499, 9.179399], + [-12.0093, 9.184], + [-12.0116, 9.1894], + [-12.0122, 9.1928], + [-12.0126, 9.197699], + [-12.0195, 9.2002], + [-12.0218, 9.2016], + [-12.0255, 9.2045], + [-12.028599, 9.206199], + [-12.034499, 9.207699], + [-12.039, 9.2097], + [-12.0418, 9.2103], + [-12.048599, 9.210599], + [-12.0515, 9.210499], + [-12.055699, 9.21], + [-12.0616, 9.207699], + [-12.0641, 9.207099], + [-12.069499, 9.2066], + [-12.0725, 9.205699], + [-12.0751, 9.203899], + [-12.077899, 9.201], + [-12.0809, 9.1967], + [-12.084799, 9.1939], + [-12.087499, 9.1914], + [-12.089699, 9.1886], + [-12.090295, 9.187458] + ] + ], + "type": "Polygon" + }, + "id": 202, + "properties": { + "cc:admin:id": ["32"], + "cc:oBld:total": 278, + "cc:pop:fifteen-to-twenty-four": 686.9753209090688, + "cc:pop:grid3-total": 4004.826767856264, + "cc:pop:kontur-total": 3882.1486298084324, + "cc:pop:men": 1703.4506053423538, + "cc:pop:sixty-plus": 249.20073059364495, + "cc:pop:total": 3599.6531613298503, + "cc:pop:under-five": 567.0996909419603, + "cc:pop:women": 1896.2025559874962, + "cc:pop:women-fiften-to-forty-nine": 929.254505049832, + "cc:pop:wp-total": 3291.504864442274, + "cc:pop:wp-total-UN": 3822.79478594216, + "cc:id": "202", + "cc:Name": "Karina MCHP", + "cc:site": [-12.0134, 9.1722], + "user:parentName": "Biriwa", + "user:code": "OU_193234", + "user:orgUnitId": "ObV5AR1NECl", + "user:level": "4", + "user:parentId": "fwH9ipvXde9" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.860099, 7.187], + [-11.855599, 7.186399], + [-11.850899, 7.185299], + [-11.8437, 7.1847], + [-11.8402, 7.1836], + [-11.837199, 7.181399], + [-11.8297, 7.174], + [-11.826099, 7.170999], + [-11.818499, 7.167299], + [-11.815099, 7.166399], + [-11.806899, 7.165999], + [-11.803499, 7.165299], + [-11.798099, 7.163099], + [-11.793499, 7.1625], + [-11.7813, 7.1625], + [-11.7763, 7.1622], + [-11.773399, 7.161599], + [-11.768899, 7.159599], + [-11.765099, 7.1589], + [-11.7612, 7.158999], + [-11.7584, 7.159599], + [-11.754, 7.161599], + [-11.750999, 7.1622], + [-11.743799, 7.1626], + [-11.7301, 7.1626], + [-11.7249, 7.1624], + [-11.720899, 7.161599], + [-11.715499, 7.159499], + [-11.711499, 7.158899], + [-11.7023, 7.1586], + [-11.6984, 7.1579], + [-11.6939, 7.156], + [-11.6872, 7.1542], + [-11.6827, 7.1522], + [-11.6798, 7.1515], + [-11.673599, 7.151299], + [-11.6428, 7.1507], + [-11.644899, 7.154399], + [-11.6464, 7.1585], + [-11.648799, 7.162799], + [-11.6501, 7.166], + [-11.6524, 7.1703], + [-11.654199, 7.176999], + [-11.6565, 7.1824], + [-11.657, 7.1853], + [-11.657199, 7.188299], + [-11.657399, 7.199399], + [-11.658199, 7.203099], + [-11.660399, 7.207499], + [-11.6618, 7.2107], + [-11.6637, 7.2144], + [-11.6646, 7.2169], + [-11.665299, 7.222399], + [-11.666299, 7.224699], + [-11.668899, 7.227499], + [-11.671799, 7.228899], + [-11.676, 7.2303], + [-11.681299, 7.232699], + [-11.685599, 7.233599], + [-11.687999, 7.234399], + [-11.691699, 7.236299], + [-11.6949, 7.2377], + [-11.702299, 7.243199], + [-11.7073, 7.2459], + [-11.7113, 7.2492], + [-11.718099, 7.255999], + [-11.7202, 7.2577], + [-11.7227, 7.258599], + [-11.725199, 7.2584], + [-11.729499, 7.2564], + [-11.7329, 7.2556], + [-11.737399, 7.2556], + [-11.740399, 7.2564], + [-11.743, 7.2587], + [-11.745299, 7.263399], + [-11.7473, 7.267], + [-11.7492, 7.271], + [-11.7521, 7.2746], + [-11.760399, 7.282599], + [-11.7634, 7.2847], + [-11.7666, 7.2861], + [-11.7709, 7.2885], + [-11.7741, 7.2898], + [-11.7781, 7.292], + [-11.7829, 7.2928], + [-11.7866, 7.292899], + [-11.810099, 7.2928], + [-11.815299, 7.293099], + [-11.819199, 7.295099], + [-11.822699, 7.2895], + [-11.8253, 7.286199], + [-11.828, 7.281299], + [-11.8302, 7.278399], + [-11.835699, 7.2724], + [-11.837299, 7.2702], + [-11.840799, 7.2627], + [-11.8414, 7.259199], + [-11.841699, 7.251], + [-11.842499, 7.2477], + [-11.846299, 7.2403], + [-11.849099, 7.237099], + [-11.849099, 7.232599], + [-11.8479, 7.2263], + [-11.8481, 7.222899], + [-11.849299, 7.2187], + [-11.851199, 7.215], + [-11.855199, 7.2102], + [-11.8568, 7.206999], + [-11.8576, 7.203099], + [-11.8586, 7.194599], + [-11.860099, 7.187] + ] + ], + "type": "Polygon" + }, + "id": 203, + "properties": { + "cc:admin:id": ["146"], + "cc:oBld:total": 29, + "cc:pop:fifteen-to-twenty-four": 2562.1937810737218, + "cc:pop:grid3-total": 14785.561320532577, + "cc:pop:kontur-total": 14508.806814725911, + "cc:pop:men": 6848.797133362614, + "cc:pop:sixty-plus": 1077.2182734130558, + "cc:pop:total": 14168.01795838977, + "cc:pop:under-five": 2424.2429352596732, + "cc:pop:women": 7319.220825027159, + "cc:pop:women-fiften-to-forty-nine": 3499.005130503364, + "cc:pop:wp-total": 12265.350666990122, + "cc:pop:wp-total-UN": 14235.765756535904, + "cc:id": "203", + "cc:Name": "Karlu CHC", + "cc:site": [-11.7632, 7.2412], + "user:parentName": "Ya Kpukumu Krim", + "user:code": "OU_260399", + "user:orgUnitId": "K00jR5dmoFZ", + "user:level": "4", + "user:parentId": "pk7bUK5c1Uf" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [-13.109899, 8.5965], + [-13.1082, 8.5965], + [-13.1076, 8.5971], + [-13.1076, 8.599299], + [-13.1082, 8.600099], + [-13.109599, 8.599299], + [-13.109899, 8.5965] + ] + ], + [ + [ + [-13.199349, 8.61285], + [-13.195899, 8.612696], + [-13.194982, 8.612666], + [-13.194107, 8.612646], + [-13.19409, 8.61231], + [-13.194562, 8.611249], + [-13.195475, 8.609414], + [-13.195718, 8.608909], + [-13.196739, 8.607147], + [-13.196883, 8.60694], + [-13.19582, 8.606782], + [-13.194906, 8.606989], + [-13.192047, 8.608429], + [-13.192071, 8.6079], + [-13.192496, 8.607361], + [-13.192513, 8.607343], + [-13.192835, 8.606874], + [-13.193726, 8.605641], + [-13.193874, 8.605086], + [-13.193058, 8.604859], + [-13.19248, 8.605178], + [-13.191095, 8.605322], + [-13.190792, 8.605068], + [-13.190444, 8.605074], + [-13.190131, 8.605125], + [-13.190093, 8.60478], + [-13.190012, 8.603729], + [-13.189955, 8.603551], + [-13.190177, 8.603542], + [-13.190681, 8.603341], + [-13.190773, 8.603332], + [-13.190992, 8.603131], + [-13.190853, 8.602812], + [-13.190859, 8.601895], + [-13.190315, 8.601886], + [-13.190219, 8.600627], + [-13.189612, 8.600147], + [-13.189813, 8.5999], + [-13.190311, 8.599463], + [-13.19079, 8.599133], + [-13.191218, 8.598743], + [-13.191246, 8.598718], + [-13.190664, 8.598079], + [-13.190138, 8.597702], + [-13.189725, 8.597055], + [-13.189711, 8.597038], + [-13.189674, 8.597037], + [-13.187441, 8.597459], + [-13.187309, 8.597478], + [-13.187241, 8.596986], + [-13.187089, 8.596709], + [-13.184561, 8.597695], + [-13.184454, 8.597151], + [-13.184156, 8.59629], + [-13.184108, 8.596115], + [-13.184043, 8.595926], + [-13.183929, 8.595135], + [-13.183876, 8.594777], + [-13.183744, 8.59408], + [-13.183692, 8.593738], + [-13.183405, 8.593629], + [-13.182832, 8.593762], + [-13.182102, 8.594015], + [-13.181848, 8.593668], + [-13.181582, 8.593326], + [-13.184576, 8.588138], + [-13.183297, 8.585922], + [-13.17875, 8.585416], + [-13.177916, 8.579584], + [-13.176249, 8.579583], + [-13.172083, 8.57875], + [-13.172082, 8.577084], + [-13.169582, 8.574584], + [-13.168749, 8.574584], + [-13.165417, 8.575416], + [-13.164565, 8.574567], + [-13.164521, 8.574607], + [-13.162944, 8.574607], + [-13.16313, 8.574991], + [-13.163499, 8.578281], + [-13.163569, 8.578994], + [-13.163895, 8.582482], + [-13.163941, 8.582858], + [-13.164036, 8.58383], + [-13.164101, 8.584393], + [-13.164188, 8.585316], + [-13.16437, 8.586373], + [-13.164786, 8.587677], + [-13.165389, 8.58901], + [-13.164657, 8.589529], + [-13.163644, 8.589444], + [-13.163913, 8.590226], + [-13.164171, 8.59024], + [-13.164874, 8.590356], + [-13.165237, 8.590417], + [-13.164146, 8.592418], + [-13.163542, 8.593573], + [-13.163594, 8.594595], + [-13.161798, 8.594488], + [-13.161268, 8.594796], + [-13.159993, 8.593762], + [-13.159597, 8.594555], + [-13.159669, 8.594569], + [-13.159571, 8.595106], + [-13.159074, 8.595813], + [-13.158982, 8.596192], + [-13.159966, 8.596016], + [-13.160019, 8.596203], + [-13.159477, 8.596591], + [-13.158948, 8.597692], + [-13.159104, 8.59815], + [-13.160391, 8.598967], + [-13.160391, 8.598968], + [-13.159724, 8.598701], + [-13.158207, 8.598411], + [-13.157807, 8.598406], + [-13.157231, 8.598444], + [-13.156663, 8.59847], + [-13.156337, 8.598436], + [-13.156064, 8.598362], + [-13.155755, 8.59817], + [-13.15533, 8.598058], + [-13.154879, 8.597978], + [-13.154477, 8.597998], + [-13.154242, 8.598038], + [-13.153986, 8.598149], + [-13.153665, 8.598325], + [-13.153132, 8.59865], + [-13.152854, 8.598775], + [-13.15265, 8.598814], + [-13.15222, 8.598821], + [-13.151731, 8.598792], + [-13.151584, 8.598727], + [-13.151392, 8.598504], + [-13.151331, 8.598311], + [-13.151214, 8.597861], + [-13.151128, 8.59732], + [-13.15114, 8.596858], + [-13.151198, 8.596634], + [-13.151205, 8.596338], + [-13.151145, 8.595871], + [-13.151036, 8.595421], + [-13.150937, 8.594911], + [-13.150815, 8.59461], + [-13.150572, 8.594263], + [-13.150491, 8.594054], + [-13.150469, 8.593881], + [-13.150469, 8.593693], + [-13.150507, 8.593548], + [-13.150612, 8.59341], + [-13.150729, 8.593324], + [-13.151007, 8.593182], + [-13.151335, 8.593024], + [-13.151471, 8.592917], + [-13.151549, 8.592909], + [-13.151561, 8.59296], + [-13.151514, 8.593106], + [-13.151514, 8.593246], + [-13.151591, 8.593469], + [-13.151704, 8.593624], + [-13.15164, 8.593294], + [-13.151669, 8.593123], + [-13.151717, 8.592972], + [-13.151661, 8.592814], + [-13.151471, 8.592793], + [-13.151024, 8.593036], + [-13.150742, 8.593221], + [-13.150578, 8.593324], + [-13.150421, 8.593479], + [-13.150386, 8.593595], + [-13.15048, 8.594283], + [-13.15059, 8.594457], + [-13.150763, 8.594807], + [-13.150946, 8.595486], + [-13.151049, 8.596081], + [-13.151075, 8.596385], + [-13.151058, 8.59666], + [-13.150997, 8.59676], + [-13.150811, 8.596844], + [-13.150682, 8.596807], + [-13.150568, 8.59669], + [-13.150206, 8.596478], + [-13.149875, 8.596336], + [-13.149628, 8.596328], + [-13.149031, 8.596359], + [-13.14815, 8.596435], + [-13.147429, 8.596491], + [-13.146467, 8.596589], + [-13.145842, 8.596623], + [-13.145118, 8.59659], + [-13.144789, 8.596585], + [-13.144515, 8.596444], + [-13.144432, 8.596298], + [-13.144367, 8.596311], + [-13.14415, 8.596482], + [-13.14399, 8.59647], + [-13.143665, 8.59652], + [-13.143422, 8.596645], + [-13.143162, 8.596856], + [-13.143036, 8.59707], + [-13.142963, 8.597375], + [-13.142963, 8.597572], + [-13.143002, 8.597807], + [-13.143097, 8.597958], + [-13.143201, 8.598129], + [-13.143331, 8.598267], + [-13.143539, 8.598438], + [-13.143846, 8.598626], + [-13.14402, 8.598716], + [-13.144363, 8.59884], + [-13.144967, 8.59898], + [-13.145243, 8.599041], + [-13.145777, 8.599144], + [-13.146128, 8.599218], + [-13.146526, 8.5994], + [-13.147384, 8.599781], + [-13.148151, 8.600175], + [-13.148758, 8.600539], + [-13.148916, 8.6007], + [-13.148915, 8.600702], + [-13.148463, 8.600649], + [-13.148194, 8.600655], + [-13.147758, 8.60071], + [-13.146973, 8.600855], + [-13.146409, 8.601025], + [-13.145673, 8.601195], + [-13.145403, 8.601274], + [-13.145091, 8.601376], + [-13.144711, 8.601412], + [-13.14395, 8.601189], + [-13.143238, 8.60106], + [-13.142545, 8.60083], + [-13.141851, 8.600496], + [-13.140797, 8.600194], + [-13.139993, 8.600011], + [-13.139319, 8.599763], + [-13.138723, 8.599489], + [-13.137864, 8.599162], + [-13.137454, 8.598956], + [-13.136657, 8.598478], + [-13.136154, 8.598308], + [-13.135632, 8.598235], + [-13.135062, 8.598246], + [-13.134498, 8.598325], + [-13.134144, 8.598522], + [-13.134154, 8.601889], + [-13.134547, 8.602244], + [-13.135086, 8.602698], + [-13.135362, 8.602965], + [-13.135448, 8.603298], + [-13.135405, 8.603469], + [-13.135276, 8.603536], + [-13.134828, 8.603542], + [-13.134135, 8.603615], + [-13.132449, 8.603747], + [-13.131418, 8.603821], + [-13.130308, 8.603862], + [-13.129462, 8.603845], + [-13.128744, 8.603771], + [-13.128008, 8.603578], + [-13.127726, 8.603433], + [-13.127493, 8.603183], + [-13.127377, 8.602934], + [-13.127469, 8.602607], + [-13.127671, 8.602377], + [-13.128229, 8.602055], + [-13.128823, 8.601456], + [-13.129332, 8.600855], + [-13.129651, 8.600291], + [-13.1297, 8.599715], + [-13.129701, 8.599284], + [-13.129602, 8.59886], + [-13.129333, 8.598532], + [-13.129069, 8.598264], + [-13.128498, 8.597955], + [-13.127517, 8.597452], + [-13.126518, 8.596962], + [-13.125917, 8.59664], + [-13.125333, 8.596142], + [-13.124726, 8.595687], + [-13.123975, 8.595083], + [-13.123399, 8.594657], + [-13.123044, 8.594547], + [-13.122252, 8.594457], + [-13.121468, 8.594529], + [-13.120775, 8.594753], + [-13.120602, 8.594638], + [-13.120449, 8.594603], + [-13.12029, 8.594633], + [-13.120143, 8.594712], + [-13.120039, 8.594862], + [-13.119965, 8.595123], + [-13.119909, 8.59527], + [-13.119314, 8.596088], + [-13.118462, 8.597034], + [-13.117499, 8.597975], + [-13.117126, 8.598283], + [-13.116769, 8.598465], + [-13.116445, 8.598466], + [-13.116255, 8.598422], + [-13.116114, 8.598325], + [-13.116034, 8.598217], + [-13.116046, 8.597992], + [-13.11615, 8.597652], + [-13.116347, 8.597294], + [-13.116672, 8.596821], + [-13.117057, 8.596246], + [-13.1175, 8.595396], + [-13.117825, 8.594547], + [-13.118253, 8.593353], + [-13.11842, 8.59263], + [-13.118671, 8.59183], + [-13.118738, 8.591193], + [-13.118714, 8.590527], + [-13.118696, 8.590175], + [-13.118555, 8.589745], + [-13.118357, 8.589252], + [-13.118081, 8.588804], + [-13.117819, 8.588386], + [-13.117543, 8.587974], + [-13.117266, 8.587631], + [-13.117206, 8.587697], + [-13.117099, 8.5888], + [-13.1154, 8.5893], + [-13.1149, 8.592099], + [-13.1143, 8.5926], + [-13.113499, 8.595399], + [-13.1112, 8.598499], + [-13.1093, 8.6007], + [-13.109299, 8.602399], + [-13.1088, 8.6035], + [-13.1093, 8.6065], + [-13.111, 8.610099], + [-13.1135, 8.611799], + [-13.1146, 8.6121], + [-13.1157, 8.613199], + [-13.1168, 8.6135], + [-13.1182, 8.614899], + [-13.121299, 8.616499], + [-13.1221, 8.617899], + [-13.124, 8.6187], + [-13.125999, 8.620099], + [-13.1265, 8.621199], + [-13.129899, 8.620999], + [-13.1326, 8.6196], + [-13.134899, 8.619599], + [-13.1363, 8.618199], + [-13.138999, 8.6179], + [-13.140399, 8.618699], + [-13.140699, 8.620399], + [-13.1396, 8.620399], + [-13.139299, 8.6196], + [-13.1382, 8.6193], + [-13.137099, 8.6199], + [-13.135099, 8.621799], + [-13.1332, 8.6224], + [-13.132099, 8.623199], + [-13.1301, 8.6235], + [-13.129599, 8.623999], + [-13.1271, 8.623999], + [-13.126799, 8.6235], + [-13.1249, 8.622899], + [-13.123499, 8.6215], + [-13.1218, 8.6215], + [-13.122099, 8.623199], + [-13.1229, 8.6237], + [-13.124299, 8.626799], + [-13.1246, 8.628799], + [-13.125099, 8.6288], + [-13.1251, 8.630699], + [-13.125999, 8.632399], + [-13.128799, 8.634599], + [-13.1288, 8.635099], + [-13.1313, 8.636], + [-13.1338, 8.637399], + [-13.134899, 8.6374], + [-13.1374, 8.638499], + [-13.139299, 8.6385], + [-13.1401, 8.638999], + [-13.141799, 8.639], + [-13.1451, 8.640099], + [-13.150699, 8.640099], + [-13.151299, 8.638799], + [-13.1513, 8.6357], + [-13.152899, 8.6351], + [-13.1529, 8.638199], + [-13.1526, 8.640699], + [-13.152665, 8.640751], + [-13.152684, 8.6406], + [-13.152816, 8.640449], + [-13.152916, 8.640167], + [-13.152973, 8.639706], + [-13.15303, 8.638728], + [-13.153017, 8.637383], + [-13.153224, 8.635692], + [-13.153167, 8.635251], + [-13.152996, 8.634707], + [-13.152902, 8.634508], + [-13.152881, 8.634239], + [-13.152953, 8.634097], + [-13.15311, 8.634027], + [-13.153331, 8.633914], + [-13.153603, 8.633743], + [-13.153662, 8.633637], + [-13.153862, 8.633226], + [-13.154091, 8.632908], + [-13.154348, 8.63259], + [-13.154521, 8.632464], + [-13.15476, 8.632295], + [-13.154878, 8.63219], + [-13.15505, 8.63213], + [-13.155155, 8.632092], + [-13.155281, 8.632105], + [-13.155369, 8.63216], + [-13.155459, 8.632274], + [-13.155513, 8.632403], + [-13.155567, 8.632625], + [-13.1556, 8.632841], + [-13.155597, 8.632985], + [-13.155569, 8.633122], + [-13.155552, 8.633232], + [-13.155473, 8.633515], + [-13.155392, 8.633674], + [-13.155335, 8.633823], + [-13.155315, 8.634015], + [-13.155317, 8.634215], + [-13.155335, 8.634337], + [-13.155384, 8.634503], + [-13.155426, 8.634577], + [-13.155485, 8.634644], + [-13.155613, 8.634707], + [-13.155799, 8.634801], + [-13.156032, 8.634862], + [-13.156283, 8.634888], + [-13.156457, 8.634874], + [-13.156656, 8.6349], + [-13.157149, 8.63498], + [-13.157437, 8.634994], + [-13.157696, 8.635], + [-13.157918, 8.634989], + [-13.158114, 8.634974], + [-13.158311, 8.634948], + [-13.158583, 8.634848], + [-13.158853, 8.634728], + [-13.159108, 8.634601], + [-13.159261, 8.634532], + [-13.159389, 8.63446], + [-13.159486, 8.634396], + [-13.159549, 8.634342], + [-13.159605, 8.634234], + [-13.159619, 8.634138], + [-13.159597, 8.633896], + [-13.159611, 8.633662], + [-13.159653, 8.633433], + [-13.159681, 8.633196], + [-13.159727, 8.633], + [-13.159758, 8.632833], + [-13.159772, 8.632768], + [-13.159819, 8.632713], + [-13.159869, 8.632713], + [-13.159971, 8.632755], + [-13.160114, 8.632857], + [-13.160246, 8.632927], + [-13.16032, 8.633086], + [-13.160373, 8.633251], + [-13.160409, 8.633425], + [-13.160444, 8.63351], + [-13.160517, 8.633668], + [-13.16058, 8.633774], + [-13.160702, 8.633901], + [-13.160854, 8.633994], + [-13.161049, 8.634062], + [-13.161222, 8.634079], + [-13.161453, 8.634079], + [-13.161625, 8.634048], + [-13.161887, 8.633989], + [-13.162074, 8.633978], + [-13.162293, 8.633977], + [-13.162432, 8.633941], + [-13.162581, 8.633909], + [-13.162689, 8.633881], + [-13.162844, 8.633762], + [-13.162948, 8.633653], + [-13.163037, 8.633527], + [-13.163077, 8.633436], + [-13.163097, 8.633302], + [-13.163088, 8.633206], + [-13.163067, 8.6331], + [-13.163008, 8.632918], + [-13.162893, 8.632657], + [-13.162803, 8.632489], + [-13.162711, 8.632294], + [-13.162671, 8.632157], + [-13.162662, 8.632076], + [-13.162675, 8.632032], + [-13.162736, 8.631959], + [-13.162876, 8.631856], + [-13.163067, 8.63169], + [-13.163514, 8.631441], + [-13.163644, 8.631358], + [-13.163792, 8.631258], + [-13.163886, 8.631208], + [-13.16399, 8.631188], + [-13.164117, 8.631198], + [-13.164197, 8.631227], + [-13.164367, 8.631347], + [-13.16451, 8.631483], + [-13.1646, 8.631608], + [-13.164626, 8.631672], + [-13.16465, 8.631772], + [-13.164678, 8.631882], + [-13.164703, 8.63196], + [-13.164749, 8.632039], + [-13.16479, 8.632097], + [-13.164862, 8.632156], + [-13.164903, 8.632178], + [-13.165023, 8.6322], + [-13.165103, 8.632209], + [-13.165187, 8.632204], + [-13.16525, 8.632179], + [-13.165278, 8.63215], + [-13.165317, 8.632092], + [-13.165372, 8.632027], + [-13.16544, 8.631916], + [-13.165471, 8.631889], + [-13.165542, 8.631879], + [-13.165632, 8.631893], + [-13.165687, 8.63192], + [-13.165745, 8.631994], + [-13.165805, 8.632068], + [-13.165904, 8.632146], + [-13.166015, 8.632203], + [-13.166111, 8.632247], + [-13.16621, 8.632274], + [-13.166363, 8.632287], + [-13.166503, 8.632277], + [-13.166648, 8.632259], + [-13.166763, 8.632258], + [-13.166858, 8.632272], + [-13.166955, 8.632296], + [-13.167026, 8.632297], + [-13.167215, 8.632241], + [-13.167278, 8.632227], + [-13.167318, 8.632201], + [-13.16738, 8.63214], + [-13.167423, 8.632083], + [-13.1675, 8.631901], + [-13.167574, 8.631716], + [-13.167664, 8.631514], + [-13.16777, 8.631372], + [-13.167841, 8.631261], + [-13.167867, 8.631154], + [-13.167889, 8.631087], + [-13.167923, 8.631064], + [-13.168019, 8.631061], + [-13.168134, 8.631076], + [-13.168187, 8.631063], + [-13.168222, 8.631034], + [-13.168621, 8.630534], + [-13.170718, 8.629761], + [-13.17138, 8.62985], + [-13.171471, 8.629692], + [-13.171425, 8.629378], + [-13.17054, 8.628751], + [-13.17054, 8.62875], + [-13.17375, 8.62875], + [-13.177489, 8.630993], + [-13.177546, 8.630894], + [-13.179984, 8.629699], + [-13.181335, 8.629638], + [-13.182687, 8.62937], + [-13.183799, 8.629915], + [-13.184351, 8.629841], + [-13.184584, 8.629205], + [-13.186071, 8.630383], + [-13.187675, 8.632027], + [-13.188749, 8.630417], + [-13.190416, 8.630416], + [-13.189583, 8.627916], + [-13.192083, 8.625417], + [-13.194582, 8.624583], + [-13.194582, 8.61625], + [-13.193546, 8.615212], + [-13.193547, 8.615211], + [-13.195741, 8.615809], + [-13.19616, 8.614567], + [-13.189955, 8.612758], + [-13.189955, 8.612756], + [-13.190392, 8.612774], + [-13.19213, 8.612814], + [-13.192381, 8.61308], + [-13.194299, 8.613671], + [-13.195274, 8.613809], + [-13.195892, 8.614166], + [-13.196668, 8.613805], + [-13.197169, 8.613956], + [-13.197371, 8.614244], + [-13.197991, 8.614372], + [-13.198426, 8.614721], + [-13.199349, 8.61285] + ] + ] + ], + "type": "MultiPolygon" + }, + "id": 204, + "properties": { + "cc:admin:id": ["44"], + "cc:oBld:total": 5025, + "cc:pop:fifteen-to-twenty-four": 4786.885628919421, + "cc:pop:grid3-total": 47140.762260326446, + "cc:pop:kontur-total": 24319.692869137656, + "cc:pop:men": 12695.559254283193, + "cc:pop:sixty-plus": 1619.799733369, + "cc:pop:total": 26449.61259383952, + "cc:pop:under-five": 4302.938383391442, + "cc:pop:women": 13754.053339556334, + "cc:pop:women-fiften-to-forty-nine": 6655.126989430284, + "cc:pop:wp-total": 27706.334256804097, + "cc:pop:wp-total-UN": 32127.10778326032, + "cc:id": "204", + "cc:Name": "Kasongha MCHP", + "cc:site": [-13.1876, 8.6092], + "user:parentName": "Kaffu Bullom", + "user:code": "OU_255011", + "user:orgUnitId": "OqBiNJjKQAu", + "user:level": "4", + "user:parentId": "vn9KJsLyP5f" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.962083, 7.541249], + [-11.962082, 7.537021], + [-11.9525, 7.5361], + [-11.949599, 7.535599], + [-11.946899, 7.534599], + [-11.939499, 7.530599], + [-11.936699, 7.529799], + [-11.933699, 7.529299], + [-11.9246, 7.529], + [-11.916999, 7.5296], + [-11.912699, 7.5306], + [-11.9054, 7.533299], + [-11.901599, 7.5354], + [-11.897399, 7.5366], + [-11.893099, 7.536899], + [-11.8888, 7.5366], + [-11.885999, 7.535999], + [-11.882899, 7.533999], + [-11.8731, 7.5226], + [-11.871399, 7.520199], + [-11.87, 7.5176], + [-11.868899, 7.513199], + [-11.868, 7.5043], + [-11.867499, 7.501399], + [-11.866499, 7.498699], + [-11.863199, 7.491999], + [-11.860499, 7.4835], + [-11.854499, 7.4864], + [-11.8479, 7.489099], + [-11.8452, 7.4912], + [-11.842099, 7.4958], + [-11.837799, 7.5032], + [-11.8293, 7.514599], + [-11.8237, 7.5198], + [-11.822099, 7.5226], + [-11.8211, 7.5269], + [-11.821499, 7.530199], + [-11.8229, 7.5348], + [-11.824599, 7.544599], + [-11.826, 7.5485], + [-11.8295, 7.5548], + [-11.830999, 7.5592], + [-11.831099, 7.563999], + [-11.829999, 7.566999], + [-11.827499, 7.5696], + [-11.8216, 7.572999], + [-11.8119, 7.577599], + [-11.8052, 7.580399], + [-11.798099, 7.581399], + [-11.792599, 7.581199], + [-11.7886, 7.5805], + [-11.787192, 7.580017], + [-11.786952, 7.580435], + [-11.785605, 7.580493], + [-11.786196, 7.581759], + [-11.785362, 7.583219], + [-11.785423, 7.583295], + [-11.786457, 7.583618], + [-11.78678, 7.583996], + [-11.787632, 7.583699], + [-11.788152, 7.583836], + [-11.788613, 7.584496], + [-11.788625, 7.585096], + [-11.789063, 7.585128], + [-11.789339, 7.5848], + [-11.789779, 7.584603], + [-11.790476, 7.584543], + [-11.791805, 7.584512], + [-11.792078, 7.584344], + [-11.7922, 7.584555], + [-11.792935, 7.585515], + [-11.79364, 7.586147], + [-11.793788, 7.586313], + [-11.79394, 7.586514], + [-11.794807, 7.588776], + [-11.79557, 7.590233], + [-11.795956, 7.590781], + [-11.797448, 7.592756], + [-11.798156, 7.593649], + [-11.798729, 7.594095], + [-11.80041, 7.594867], + [-11.802014, 7.595413], + [-11.803041, 7.595645], + [-11.805417, 7.592084], + [-11.80875, 7.591249], + [-11.812082, 7.589584], + [-11.817083, 7.599583], + [-11.825416, 7.600417], + [-11.828336, 7.602606], + [-11.832629, 7.601588], + [-11.833997, 7.600687], + [-11.835455, 7.59919], + [-11.836249, 7.598743], + [-11.83625, 7.606249], + [-11.841249, 7.606249], + [-11.842083, 7.602083], + [-11.844583, 7.60125], + [-11.851249, 7.601249], + [-11.853749, 7.600416], + [-11.85375, 7.599584], + [-11.858749, 7.599583], + [-11.86125, 7.592084], + [-11.864582, 7.592916], + [-11.867917, 7.59125], + [-11.869582, 7.592084], + [-11.872082, 7.594583], + [-11.874582, 7.590416], + [-11.872083, 7.585416], + [-11.876249, 7.58375], + [-11.877917, 7.586249], + [-11.882082, 7.586249], + [-11.888749, 7.57875], + [-11.891249, 7.579583], + [-11.891249, 7.57875], + [-11.88875, 7.576249], + [-11.88875, 7.56875], + [-11.898749, 7.567917], + [-11.902916, 7.567916], + [-11.90375, 7.565417], + [-11.907082, 7.564583], + [-11.909582, 7.562084], + [-11.909583, 7.560417], + [-11.91125, 7.560417], + [-11.91875, 7.564583], + [-11.922916, 7.563749], + [-11.924583, 7.559584], + [-11.929582, 7.557083], + [-11.930417, 7.554583], + [-11.934582, 7.55375], + [-11.935417, 7.554583], + [-11.938698, 7.55327], + [-11.938752, 7.553331], + [-11.939583, 7.552917], + [-11.944582, 7.55375], + [-11.947082, 7.556249], + [-11.950416, 7.552084], + [-11.952916, 7.552083], + [-11.95125, 7.54625], + [-11.952083, 7.546249], + [-11.95625, 7.54375], + [-11.960416, 7.544583], + [-11.962083, 7.541249] + ] + ], + "type": "Polygon" + }, + "id": 205, + "properties": { + "cc:admin:id": ["4"], + "cc:oBld:total": 32, + "cc:pop:fifteen-to-twenty-four": 2939.8307193664855, + "cc:pop:grid3-total": 10774.553259003558, + "cc:pop:kontur-total": 16583.05503770824, + "cc:pop:men": 7946.2217253539375, + "cc:pop:sixty-plus": 1149.759821389381, + "cc:pop:total": 16404.027393196913, + "cc:pop:under-five": 2753.117314981679, + "cc:pop:women": 8457.805667842975, + "cc:pop:women-fiften-to-forty-nine": 4014.577260399413, + "cc:pop:wp-total": 14535.54388867848, + "cc:pop:wp-total-UN": 16852.58838297655, + "cc:id": "205", + "cc:Name": "Kasse MCHP", + "cc:site": [-11.9198, 7.537], + "user:parentName": "Bargbo", + "user:code": "OU_621", + "user:orgUnitId": "cJkZLwhL8RP", + "user:level": "4", + "user:parentId": "zFDYIgyGmXG" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.987956, 8.828411], + [-11.986387, 8.827354], + [-11.985238, 8.826385], + [-11.985086, 8.825788], + [-11.97875, 8.832916], + [-11.976965, 8.832916], + [-11.976417, 8.830557], + [-11.97649, 8.829037], + [-11.975434, 8.824787], + [-11.972916, 8.825416], + [-11.970416, 8.822083], + [-11.962083, 8.823749], + [-11.961249, 8.824582], + [-11.95375, 8.82375], + [-11.95125, 8.82375], + [-11.951249, 8.825417], + [-11.948749, 8.827916], + [-11.942917, 8.82875], + [-11.942325, 8.83052], + [-11.93654, 8.830521], + [-11.935638, 8.832082], + [-11.937081, 8.832083], + [-11.937082, 8.832084], + [-11.934583, 8.840416], + [-11.932083, 8.843749], + [-11.929583, 8.841249], + [-11.928749, 8.83375], + [-11.923398, 8.835756], + [-11.923064, 8.835326], + [-11.922769, 8.835077], + [-11.922082, 8.841249], + [-11.921249, 8.841249], + [-11.917082, 8.837917], + [-11.91375, 8.837083], + [-11.912916, 8.835417], + [-11.91125, 8.835417], + [-11.90875, 8.837916], + [-11.908644, 8.838336], + [-11.901672, 8.838337], + [-11.897764, 8.845101], + [-11.890807, 8.845102], + [-11.8906, 8.850199], + [-11.8902, 8.853199], + [-11.8892, 8.856899], + [-11.887799, 8.8601], + [-11.885399, 8.8635], + [-11.8824, 8.866399], + [-11.8759, 8.8716], + [-11.873099, 8.8764], + [-11.8723, 8.881499], + [-11.8726, 8.8854], + [-11.8738, 8.8891], + [-11.878399, 8.896399], + [-11.8811, 8.9029], + [-11.8859, 8.909199], + [-11.8888, 8.906599], + [-11.896999, 8.902], + [-11.9002, 8.900699], + [-11.9046, 8.898499], + [-11.910399, 8.8971], + [-11.915799, 8.8948], + [-11.919399, 8.894], + [-11.925299, 8.8938], + [-11.929199, 8.893899], + [-11.931999, 8.894199], + [-11.934599, 8.895099], + [-11.940534, 8.897892], + [-11.9414, 8.8983], + [-11.9457, 8.9007], + [-11.949599, 8.902599], + [-11.952999, 8.905099], + [-11.960799, 8.8972], + [-11.963099, 8.8944], + [-11.9648, 8.890499], + [-11.9671, 8.886299], + [-11.969199, 8.882], + [-11.972899, 8.8773], + [-11.974399, 8.8751], + [-11.977899, 8.8678], + [-11.9786, 8.864999], + [-11.978799, 8.8568], + [-11.979499, 8.8534], + [-11.981699, 8.849], + [-11.983, 8.845799], + [-11.9848, 8.842299], + [-11.9857, 8.838899], + [-11.9862, 8.833599], + [-11.986999, 8.8303], + [-11.987956, 8.828411] + ] + ], + "type": "Polygon" + }, + "id": 206, + "properties": { + "cc:admin:id": ["106"], + "cc:oBld:total": 102, + "cc:pop:fifteen-to-twenty-four": 517.2655728073402, + "cc:pop:grid3-total": 2410.34533073733, + "cc:pop:kontur-total": 2898.5436062841018, + "cc:pop:men": 1285.756139255077, + "cc:pop:sixty-plus": 151.70908912221057, + "cc:pop:total": 2808.601686302129, + "cc:pop:under-five": 442.293161446822, + "cc:pop:women": 1522.845547047052, + "cc:pop:women-fiften-to-forty-nine": 759.1121706228338, + "cc:pop:wp-total": 2471.5839287331223, + "cc:pop:wp-total-UN": 2853.644729003169, + "cc:id": "206", + "cc:Name": "Kathanta Bana MCHP", + "cc:site": [-11.9286, 8.8772], + "user:parentName": "Paki Masabong", + "user:code": "OU_193298", + "user:orgUnitId": "pmzk0ho80aA", + "user:level": "4", + "user:parentId": "L8iA6eLwKNb" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.230252, 9.575347], + [-12.22906, 9.568792], + [-12.228639, 9.568845], + [-12.22812, 9.568395], + [-12.228115, 9.568394], + [-12.228749, 9.564583], + [-12.223365, 9.563909], + [-12.223639, 9.563328], + [-12.224064, 9.561216], + [-12.225186, 9.557788], + [-12.225934, 9.556468], + [-12.226015, 9.556002], + [-12.225751, 9.555451], + [-12.225709, 9.554583], + [-12.225384, 9.55391], + [-12.225268, 9.553079], + [-12.225175, 9.552267], + [-12.225339, 9.552101], + [-12.224389, 9.550914], + [-12.223782, 9.550777], + [-12.223499, 9.550529], + [-12.222369, 9.550257], + [-12.221916, 9.550335], + [-12.221393, 9.550776], + [-12.219954, 9.550576], + [-12.218221, 9.549684], + [-12.217048, 9.550031], + [-12.215017, 9.550329], + [-12.214457, 9.550236], + [-12.213749, 9.544583], + [-12.210417, 9.54125], + [-12.210488, 9.540962], + [-12.209415, 9.541575], + [-12.208856, 9.540518], + [-12.209337, 9.539549], + [-12.209889, 9.539037], + [-12.210916, 9.538604], + [-12.211067, 9.538645], + [-12.212916, 9.53125], + [-12.212916, 9.529436], + [-12.21176, 9.528506], + [-12.210853, 9.528056], + [-12.210841, 9.528039], + [-12.198751, 9.528749], + [-12.198751, 9.528748], + [-12.203597, 9.523903], + [-12.203591, 9.523898], + [-12.202983, 9.522621], + [-12.201996, 9.52167], + [-12.201073, 9.520691], + [-12.200187, 9.520176], + [-12.199395, 9.519963], + [-12.19887, 9.519578], + [-12.196198, 9.518467], + [-12.194809, 9.517763], + [-12.194583, 9.517082], + [-12.195417, 9.515417], + [-12.198749, 9.514582], + [-12.195461, 9.51261], + [-12.195411, 9.512706], + [-12.192917, 9.512083], + [-12.192082, 9.512082], + [-12.190115, 9.507493], + [-12.189248, 9.507534], + [-12.188233, 9.506645], + [-12.187794, 9.506557], + [-12.186982, 9.506756], + [-12.185665, 9.506368], + [-12.184234, 9.507123], + [-12.183187, 9.508534], + [-12.182398, 9.509176], + [-12.181574, 9.509556], + [-12.180967, 9.509578], + [-12.180504, 9.509389], + [-12.179282, 9.50808], + [-12.178589, 9.507479], + [-12.177745, 9.507446], + [-12.177083, 9.507548], + [-12.177083, 9.497917], + [-12.183179, 9.498525], + [-12.184012, 9.497083], + [-12.177917, 9.497082], + [-12.17375, 9.49375], + [-12.173749, 9.482538], + [-12.171037, 9.482873], + [-12.16803, 9.483063], + [-12.166033, 9.483344], + [-12.165212, 9.48334], + [-12.164599, 9.483087], + [-12.162522, 9.483921], + [-12.160799, 9.484001], + [-12.159026, 9.484369], + [-12.157794, 9.48431], + [-12.157064, 9.483793], + [-12.156011, 9.483494], + [-12.155309, 9.483999], + [-12.155195, 9.483177], + [-12.155126, 9.481963], + [-12.154835, 9.480919], + [-12.153699, 9.4814], + [-12.1511, 9.481999], + [-12.144, 9.482899], + [-12.1387, 9.485099], + [-12.1362, 9.485699], + [-12.1308, 9.486199], + [-12.1274, 9.487199], + [-12.1238, 9.488999], + [-12.120699, 9.4903], + [-12.1164, 9.492699], + [-12.113299, 9.4942], + [-12.110999, 9.4957], + [-12.105899, 9.4997], + [-12.100599, 9.5027], + [-12.095199, 9.5069], + [-12.090999, 9.5091], + [-12.0857, 9.511599], + [-12.080699, 9.5128], + [-12.075299, 9.515], + [-12.0716, 9.515699], + [-12.068699, 9.515899], + [-12.0475, 9.5158], + [-12.0362, 9.5162], + [-12.0403, 9.5221], + [-12.044, 9.5288], + [-12.0473, 9.533299], + [-12.0502, 9.5351], + [-12.056999, 9.537], + [-12.0601, 9.5393], + [-12.061199, 9.5428], + [-12.060499, 9.5458], + [-12.057599, 9.5516], + [-12.0567, 9.555999], + [-12.0577, 9.5601], + [-12.0599, 9.5629], + [-12.0629, 9.565], + [-12.0664, 9.566], + [-12.0721, 9.566199], + [-12.076399, 9.5655], + [-12.082299, 9.5635], + [-12.086699, 9.5626], + [-12.092799, 9.5623], + [-12.0973, 9.5627], + [-12.1014, 9.5638], + [-12.118699, 9.571999], + [-12.126199, 9.574699], + [-12.132399, 9.577299], + [-12.135099, 9.5724], + [-12.137, 9.568299], + [-12.1384, 9.566399], + [-12.140299, 9.5648], + [-12.144, 9.562899], + [-12.1502, 9.558199], + [-12.157999, 9.554], + [-12.1614, 9.5531], + [-12.164499, 9.553299], + [-12.166699, 9.554], + [-12.169, 9.5557], + [-12.171499, 9.558399], + [-12.1731, 9.5607], + [-12.1745, 9.5639], + [-12.1768, 9.5682], + [-12.1781, 9.5714], + [-12.1801, 9.575], + [-12.1823, 9.579499], + [-12.1847, 9.581699], + [-12.187199, 9.582599], + [-12.1899, 9.583], + [-12.1945, 9.583099], + [-12.199099, 9.5829], + [-12.202599, 9.5822], + [-12.2051, 9.580999], + [-12.21, 9.577099], + [-12.2125, 9.575899], + [-12.215299, 9.5754], + [-12.2192, 9.5752], + [-12.230252, 9.575347] + ] + ], + "type": "Polygon" + }, + "id": 207, + "properties": { + "cc:admin:id": ["121"], + "cc:oBld:total": 138, + "cc:pop:fifteen-to-twenty-four": 1329.5421021090017, + "cc:pop:grid3-total": 5390.969488115676, + "cc:pop:kontur-total": 7512.417514429211, + "cc:pop:men": 3938.130605389742, + "cc:pop:sixty-plus": 461.23064590287237, + "cc:pop:total": 7301.401896116644, + "cc:pop:under-five": 1181.2400250839955, + "cc:pop:women": 3363.2712907269006, + "cc:pop:women-fiften-to-forty-nine": 1658.5459353161036, + "cc:pop:wp-total": 7133.235966929105, + "cc:pop:wp-total-UN": 8268.159891059559, + "cc:id": "207", + "cc:Name": "Kathanta Yimbor CHC", + "cc:site": [-12.1699, 9.546], + "user:parentName": "Sella Limba", + "user:code": "OU_193291", + "user:orgUnitId": "NjyJYiIuKIG", + "user:level": "4", + "user:parentId": "j43EZb15rjI" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.856417, 9.088918], + [-11.856249, 9.088749], + [-11.853749, 9.085417], + [-11.85125, 9.084583], + [-11.849583, 9.08375], + [-11.849544, 9.08371], + [-11.849498, 9.083787], + [-11.849062, 9.083968], + [-11.848576, 9.084531], + [-11.8479, 9.084944], + [-11.847784, 9.085543], + [-11.847368, 9.086149], + [-11.847328, 9.086689], + [-11.845781, 9.08884], + [-11.84518, 9.089082], + [-11.844962, 9.088515], + [-11.84502, 9.088059], + [-11.84463, 9.087184], + [-11.84464, 9.086639], + [-11.845064, 9.085469], + [-11.845676, 9.0847], + [-11.846201, 9.08362], + [-11.846547, 9.083106], + [-11.846515, 9.082346], + [-11.846418, 9.08193], + [-11.846607, 9.081226], + [-11.847059, 9.080642], + [-11.848608, 9.079036], + [-11.8492, 9.07729], + [-11.848749, 9.074583], + [-11.842917, 9.070416], + [-11.84375, 9.067082], + [-11.844582, 9.062917], + [-11.840416, 9.062916], + [-11.837083, 9.060417], + [-11.836249, 9.057916], + [-11.835416, 9.05375], + [-11.833945, 9.053258], + [-11.835584, 9.050776], + [-11.834635, 9.048878], + [-11.833809, 9.048222], + [-11.833444, 9.047496], + [-11.83308, 9.045613], + [-11.832474, 9.044503], + [-11.832326, 9.042404], + [-11.832332, 9.042089], + [-11.826886, 9.038093], + [-11.826178, 9.038027], + [-11.825818, 9.037891], + [-11.825811, 9.037901], + [-11.825415, 9.037738], + [-11.823888, 9.037158], + [-11.823692, 9.036027], + [-11.823018, 9.036006], + [-11.820876, 9.032296], + [-11.822457, 9.029559], + [-11.822926, 9.029636], + [-11.823363, 9.029243], + [-11.823675, 9.028569], + [-11.823722, 9.027334], + [-11.823552, 9.025743], + [-11.823153, 9.024461], + [-11.821609, 9.023187], + [-11.820681, 9.021586], + [-11.820643, 9.019041], + [-11.821194, 9.018164], + [-11.820099, 9.018099], + [-11.8167, 9.017], + [-11.8105, 9.0132], + [-11.806999, 9.0119], + [-11.8017, 9.0119], + [-11.7966, 9.013999], + [-11.7912, 9.018799], + [-11.7896, 9.024299], + [-11.787499, 9.028299], + [-11.784999, 9.0306], + [-11.7799, 9.033999], + [-11.7782, 9.0359], + [-11.777099, 9.0388], + [-11.775099, 9.047899], + [-11.772899, 9.051299], + [-11.769599, 9.053899], + [-11.7613, 9.056399], + [-11.7585, 9.0577], + [-11.756499, 9.0597], + [-11.7549, 9.062599], + [-11.754, 9.066299], + [-11.7544, 9.071499], + [-11.756899, 9.075899], + [-11.7609, 9.078099], + [-11.7661, 9.078699], + [-11.783099, 9.0784], + [-11.7908, 9.0786], + [-11.7953, 9.0793], + [-11.8014, 9.081], + [-11.812299, 9.0821], + [-11.816399, 9.083999], + [-11.8185, 9.087], + [-11.8201, 9.0915], + [-11.821699, 9.098599], + [-11.821899, 9.1044], + [-11.8207, 9.112999], + [-11.8255, 9.111199], + [-11.8313, 9.109299], + [-11.8353, 9.106199], + [-11.842099, 9.0994], + [-11.845599, 9.0965], + [-11.8499, 9.094399], + [-11.8526, 9.092499], + [-11.855799, 9.0896], + [-11.856417, 9.088918] + ] + ], + "type": "Polygon" + }, + "id": 208, + "properties": { + "cc:admin:id": ["113"], + "cc:oBld:total": 278, + "cc:pop:fifteen-to-twenty-four": 657.9229767703104, + "cc:pop:grid3-total": 2916.91541849255, + "cc:pop:kontur-total": 3919.1325079607536, + "cc:pop:men": 1577.2836420758574, + "cc:pop:sixty-plus": 223.37951741816244, + "cc:pop:total": 3431.337242344571, + "cc:pop:under-five": 569.34215905473, + "cc:pop:women": 1854.0536002687131, + "cc:pop:women-fiften-to-forty-nine": 885.4503505450155, + "cc:pop:wp-total": 3210.0800044340403, + "cc:pop:wp-total-UN": 3721.7827558837253, + "cc:id": "208", + "cc:Name": "Kathombo MCHP", + "cc:site": [-11.7623, 9.0678], + "user:parentName": "Kalansogoia", + "user:code": "OU_268193", + "user:orgUnitId": "yEU926iVAJJ", + "user:level": "4", + "user:parentId": "smoyi1iYNK6" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.369582, 7.962917], + [-12.36125, 7.954584], + [-12.360306, 7.955054], + [-12.357627, 7.950414], + [-12.352235, 7.950413], + [-12.353749, 7.942084], + [-12.354828, 7.942083], + [-12.358347, 7.935988], + [-12.354442, 7.929221], + [-12.356638, 7.925417], + [-12.357083, 7.925416], + [-12.360416, 7.921249], + [-12.360417, 7.915834], + [-12.356119, 7.915833], + [-12.352212, 7.909068], + [-12.349572, 7.909067], + [-12.350417, 7.90625], + [-12.354582, 7.907083], + [-12.35125, 7.902916], + [-12.351936, 7.894671], + [-12.3474, 7.888299], + [-12.345999, 7.8833], + [-12.343, 7.882], + [-12.3355, 7.885499], + [-12.331399, 7.8879], + [-12.3263, 7.890099], + [-12.3242, 7.890499], + [-12.3219, 7.889899], + [-12.316499, 7.886], + [-12.311899, 7.8849], + [-12.3077, 7.885199], + [-12.299799, 7.888], + [-12.2913, 7.8892], + [-12.2841, 7.8933], + [-12.280599, 7.8979], + [-12.2766, 7.902199], + [-12.2729, 7.905499], + [-12.2695, 7.9082], + [-12.2683, 7.912999], + [-12.2702, 7.916499], + [-12.2726, 7.9181], + [-12.282999, 7.922699], + [-12.286299, 7.925199], + [-12.289699, 7.9293], + [-12.291, 7.9333], + [-12.291199, 7.937899], + [-12.2909, 7.941699], + [-12.2895, 7.945399], + [-12.288099, 7.9475], + [-12.2831, 7.952399], + [-12.281899, 7.9534], + [-12.278699, 7.954999], + [-12.2715, 7.955799], + [-12.2688, 7.956699], + [-12.265, 7.9592], + [-12.265299, 7.967999], + [-12.2658, 7.972499], + [-12.273699, 7.977299], + [-12.2788, 7.9787], + [-12.2842, 7.9809], + [-12.2879, 7.9815], + [-12.2939, 7.9817], + [-12.2977, 7.9823], + [-12.3031, 7.9844], + [-12.3068, 7.985], + [-12.314599, 7.985399], + [-12.316799, 7.985999], + [-12.318699, 7.987], + [-12.320299, 7.988799], + [-12.322999, 7.993499], + [-12.3257, 7.9967], + [-12.327899, 7.998499], + [-12.329799, 7.999499], + [-12.334582, 8.000603], + [-12.334583, 7.997084], + [-12.348749, 7.997083], + [-12.344583, 7.992916], + [-12.34375, 7.990417], + [-12.350416, 7.990416], + [-12.349583, 7.987916], + [-12.349583, 7.982917], + [-12.356249, 7.986249], + [-12.356249, 7.984583], + [-12.35375, 7.979584], + [-12.361249, 7.977916], + [-12.365416, 7.974583], + [-12.364583, 7.972083], + [-12.364583, 7.967084], + [-12.367082, 7.966249], + [-12.369582, 7.962917] + ] + ], + "type": "Polygon" + }, + "id": 209, + "properties": { + "cc:admin:id": ["1"], + "cc:oBld:total": 7, + "cc:pop:fifteen-to-twenty-four": 274.2528813886123, + "cc:pop:grid3-total": 4448.078109559269, + "cc:pop:kontur-total": 1398.847763180238, + "cc:pop:men": 673.5808862563341, + "cc:pop:sixty-plus": 87.65302386237629, + "cc:pop:total": 1450.7279692166496, + "cc:pop:under-five": 254.7189468248667, + "cc:pop:women": 777.1470829603154, + "cc:pop:women-fiften-to-forty-nine": 360.81752773402883, + "cc:pop:wp-total": 1733.7033936940136, + "cc:pop:wp-total-UN": 2001.4170930890068, + "cc:id": "209", + "cc:Name": "Kawaya MCHP", + "cc:site": [-12.2927, 7.9614], + "user:parentName": "Bagruwa", + "user:code": "OU_247050", + "user:orgUnitId": "qMbxFg9McOF", + "user:level": "4", + "user:parentId": "jPidqyo7cpF" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.239582, 8.905416], + [-11.238749, 8.902083], + [-11.236249, 8.900417], + [-11.227082, 8.903749], + [-11.21875, 8.892917], + [-11.222082, 8.887916], + [-11.22125, 8.881249], + [-11.221249, 8.867083], + [-11.217917, 8.862917], + [-11.217135, 8.862838], + [-11.217749, 8.861773], + [-11.213991, 8.855264], + [-11.21875, 8.854583], + [-11.225416, 8.854582], + [-11.228749, 8.851249], + [-11.227082, 8.84625], + [-11.224582, 8.843749], + [-11.22375, 8.839583], + [-11.226249, 8.837916], + [-11.227917, 8.832917], + [-11.232082, 8.832082], + [-11.228749, 8.82625], + [-11.227082, 8.827082], + [-11.224582, 8.826249], + [-11.22375, 8.823749], + [-11.227082, 8.81875], + [-11.21875, 8.820416], + [-11.218749, 8.81375], + [-11.212082, 8.817082], + [-11.205417, 8.81125], + [-11.207082, 8.807917], + [-11.200417, 8.804583], + [-11.197917, 8.804582], + [-11.198749, 8.802083], + [-11.193749, 8.800417], + [-11.189583, 8.800416], + [-11.18875, 8.799582], + [-11.188749, 8.79875], + [-11.182083, 8.799582], + [-11.177181, 8.797745], + [-11.176002, 8.798535], + [-11.175424, 8.798757], + [-11.171249, 8.794583], + [-11.169583, 8.795417], + [-11.166249, 8.798749], + [-11.152917, 8.79625], + [-11.154277, 8.800333], + [-11.154309, 8.800336], + [-11.158636, 8.812598], + [-11.151945, 8.812599], + [-11.151449, 8.813456], + [-11.14875, 8.812917], + [-11.147302, 8.812112], + [-11.147326, 8.811757], + [-11.146915, 8.811897], + [-11.141249, 8.80875], + [-11.137917, 8.80875], + [-11.134583, 8.811249], + [-11.133749, 8.809583], + [-11.129583, 8.80875], + [-11.128965, 8.808749], + [-11.127898, 8.808241], + [-11.126371, 8.808002], + [-11.125718, 8.808222], + [-11.124216, 8.808052], + [-11.123584, 8.8077], + [-11.122771, 8.807588], + [-11.122061, 8.806574], + [-11.120987, 8.808405], + [-11.120567, 8.80852], + [-11.120188, 8.808978], + [-11.120573, 8.809397], + [-11.120513, 8.810155], + [-11.121405, 8.811238], + [-11.121773, 8.812045], + [-11.121999, 8.812738], + [-11.117083, 8.81625], + [-11.117082, 8.81875], + [-11.110416, 8.821249], + [-11.104583, 8.82125], + [-11.102917, 8.822082], + [-11.103749, 8.82625], + [-11.10125, 8.827916], + [-11.09875, 8.827917], + [-11.09625, 8.82875], + [-11.095657, 8.831122], + [-11.09602, 8.830951], + [-11.096021, 8.830952], + [-11.095416, 8.834582], + [-11.09125, 8.834583], + [-11.09125, 8.838749], + [-11.092917, 8.842916], + [-11.095416, 8.842083], + [-11.097273, 8.844559], + [-11.097715, 8.843793], + [-11.097856, 8.843182], + [-11.097933, 8.842933], + [-11.099582, 8.844582], + [-11.09875, 8.84625], + [-11.09875, 8.849582], + [-11.102082, 8.852917], + [-11.102082, 8.857916], + [-11.092083, 8.857083], + [-11.094583, 8.865416], + [-11.102916, 8.865417], + [-11.102916, 8.86625], + [-11.102083, 8.875416], + [-11.109581, 8.875417], + [-11.10375, 8.880417], + [-11.10375, 8.884582], + [-11.106249, 8.884582], + [-11.109583, 8.882083], + [-11.115415, 8.880417], + [-11.115416, 8.880418], + [-11.112916, 8.892082], + [-11.107083, 8.89375], + [-11.112082, 8.903749], + [-11.117917, 8.90125], + [-11.122082, 8.902916], + [-11.12125, 8.912916], + [-11.126249, 8.91375], + [-11.12875, 8.915416], + [-11.129582, 8.915417], + [-11.12875, 8.925416], + [-11.12875, 8.926249], + [-11.133749, 8.924582], + [-11.135416, 8.92125], + [-11.137917, 8.919583], + [-11.141249, 8.922083], + [-11.142205, 8.923517], + [-11.14208, 8.923747], + [-11.145416, 8.927083], + [-11.145416, 8.928749], + [-11.14375, 8.932916], + [-11.14125, 8.934583], + [-11.14125, 8.937916], + [-11.142917, 8.937917], + [-11.151249, 8.940416], + [-11.15125, 8.941249], + [-11.153221, 8.944534], + [-11.160299, 8.9377], + [-11.165099, 8.9345], + [-11.1716, 8.932099], + [-11.1837, 8.926799], + [-11.1962, 8.922799], + [-11.2003, 8.922299], + [-11.211399, 8.9212], + [-11.217399, 8.9194], + [-11.221599, 8.9187], + [-11.225999, 8.9185], + [-11.227112, 8.918482], + [-11.227916, 8.91125], + [-11.22625, 8.910416], + [-11.22625, 8.908749], + [-11.22805, 8.90695], + [-11.228191, 8.907344], + [-11.22829, 8.908289], + [-11.229582, 8.909582], + [-11.231249, 8.909582], + [-11.239582, 8.905416] + ] + ], + "type": "Polygon" + }, + "id": 210, + "properties": { + "cc:admin:id": ["119"], + "cc:oBld:total": 1203, + "cc:pop:fifteen-to-twenty-four": 1411.8255656672916, + "cc:pop:grid3-total": 9542.140647017843, + "cc:pop:kontur-total": 7209.334123928741, + "cc:pop:men": 3551.721515432488, + "cc:pop:sixty-plus": 379.8924749918629, + "cc:pop:total": 7173.591273006294, + "cc:pop:under-five": 1253.0118144210626, + "cc:pop:women": 3621.869757573809, + "cc:pop:women-fiften-to-forty-nine": 1687.2045550521293, + "cc:pop:wp-total": 4494.492099632493, + "cc:pop:wp-total-UN": 5250.665683589997, + "cc:id": "210", + "cc:Name": "Kayima CHC", + "cc:site": [-11.1599, 8.8908], + "user:parentName": "Sandor", + "user:code": "OU_233370", + "user:orgUnitId": "k8ZPul89UDm", + "user:level": "4", + "user:parentId": "g5ptsn0SFX8" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.987083, 9.216249], + [-11.987082, 9.212917], + [-11.984583, 9.210416], + [-11.984582, 9.207917], + [-11.980417, 9.206249], + [-11.982082, 9.203749], + [-11.982082, 9.20125], + [-11.979583, 9.199583], + [-11.979582, 9.198749], + [-11.976835, 9.195316], + [-11.975792, 9.195553], + [-11.9749, 9.19556], + [-11.973505, 9.195163], + [-11.973411, 9.19517], + [-11.968113, 9.197818], + [-11.967857, 9.19646], + [-11.967173, 9.195089], + [-11.966355, 9.194067], + [-11.963625, 9.191464], + [-11.962832, 9.190189], + [-11.962395, 9.188976], + [-11.95375, 9.190416], + [-11.952889, 9.189986], + [-11.953989, 9.188647], + [-11.954422, 9.187892], + [-11.955404, 9.187535], + [-11.957082, 9.186278], + [-11.957082, 9.184583], + [-11.947083, 9.184583], + [-11.945416, 9.187082], + [-11.944036, 9.186163], + [-11.943869, 9.186369], + [-11.942916, 9.185417], + [-11.941456, 9.18493], + [-11.939812, 9.186925], + [-11.940416, 9.182083], + [-11.93625, 9.180417], + [-11.93625, 9.180245], + [-11.936528, 9.18014], + [-11.934582, 9.17625], + [-11.932916, 9.17625], + [-11.927917, 9.177083], + [-11.92625, 9.179582], + [-11.924583, 9.179582], + [-11.917916, 9.174583], + [-11.912917, 9.173749], + [-11.91125, 9.165417], + [-11.913749, 9.159583], + [-11.90625, 9.155417], + [-11.908749, 9.14875], + [-11.90375, 9.144583], + [-11.899583, 9.150416], + [-11.89625, 9.150416], + [-11.895416, 9.149582], + [-11.893749, 9.14625], + [-11.890166, 9.144458], + [-11.890188, 9.144111], + [-11.88375, 9.14125], + [-11.882917, 9.14125], + [-11.880155, 9.148152], + [-11.87999, 9.148148], + [-11.878749, 9.151249], + [-11.87625, 9.150416], + [-11.870417, 9.145417], + [-11.870416, 9.146671], + [-11.866119, 9.146671], + [-11.862213, 9.139906], + [-11.86043, 9.139906], + [-11.860103, 9.140167], + [-11.859894, 9.13968], + [-11.86008, 9.138751], + [-11.858049, 9.13875], + [-11.854143, 9.131985], + [-11.846331, 9.131985], + [-11.842425, 9.13875], + [-11.834612, 9.138751], + [-11.830705, 9.131985], + [-11.826154, 9.131985], + [-11.826299, 9.1335], + [-11.8258, 9.140099], + [-11.8242, 9.145899], + [-11.821199, 9.1524], + [-11.8177, 9.162299], + [-11.815999, 9.1681], + [-11.8144, 9.174699], + [-11.8128, 9.179299], + [-11.812608, 9.180416], + [-11.817083, 9.180417], + [-11.824582, 9.186249], + [-11.82375, 9.195416], + [-11.827917, 9.195417], + [-11.831249, 9.20125], + [-11.829583, 9.212916], + [-11.832083, 9.214582], + [-11.839583, 9.212917], + [-11.840417, 9.21375], + [-11.842083, 9.221249], + [-11.844583, 9.225416], + [-11.848749, 9.226249], + [-11.850416, 9.222083], + [-11.85128, 9.221651], + [-11.852301, 9.222705], + [-11.853686, 9.22364], + [-11.854784, 9.224077], + [-11.855291, 9.224544], + [-11.856211, 9.225781], + [-11.856396, 9.226278], + [-11.856401, 9.226413], + [-11.860416, 9.227083], + [-11.860417, 9.230416], + [-11.865416, 9.237082], + [-11.867082, 9.240416], + [-11.86375, 9.243749], + [-11.866249, 9.244583], + [-11.867083, 9.246249], + [-11.873749, 9.247916], + [-11.877083, 9.252082], + [-11.877182, 9.251984], + [-11.880338, 9.251984], + [-11.884244, 9.258749], + [-11.885457, 9.258749], + [-11.885275, 9.258165], + [-11.885087, 9.256594], + [-11.88446, 9.255392], + [-11.884368, 9.255068], + [-11.884369, 9.255067], + [-11.887916, 9.256249], + [-11.888235, 9.256887], + [-11.88851, 9.256952], + [-11.891442, 9.256382], + [-11.892083, 9.259582], + [-11.892917, 9.260416], + [-11.898685, 9.258254], + [-11.898891, 9.258601], + [-11.899694, 9.259685], + [-11.899672, 9.260146], + [-11.900693, 9.261963], + [-11.901132, 9.263095], + [-11.901316, 9.264176], + [-11.901745, 9.265138], + [-11.902067, 9.265256], + [-11.902945, 9.266864], + [-11.903708, 9.26786], + [-11.904663, 9.268147], + [-11.904931, 9.268602], + [-11.904941, 9.269194], + [-11.90476, 9.269615], + [-11.906277, 9.270915], + [-11.911099, 9.270916], + [-11.913034, 9.274266], + [-11.917082, 9.272917], + [-11.917916, 9.272916], + [-11.919577, 9.270842], + [-11.926796, 9.270841], + [-11.930268, 9.264828], + [-11.927083, 9.262917], + [-11.927082, 9.25875], + [-11.92375, 9.25625], + [-11.92375, 9.254583], + [-11.931249, 9.247083], + [-11.935042, 9.248166], + [-11.935572, 9.248906], + [-11.935824, 9.250097], + [-11.936198, 9.250858], + [-11.938749, 9.249583], + [-11.941249, 9.248749], + [-11.94125, 9.240417], + [-11.951249, 9.245416], + [-11.952082, 9.244582], + [-11.952916, 9.24125], + [-11.94851, 9.2317], + [-11.94962, 9.231647], + [-11.953637, 9.230724], + [-11.954737, 9.2307], + [-11.955953, 9.230922], + [-11.95718, 9.235314], + [-11.958042, 9.236443], + [-11.959582, 9.235416], + [-11.960417, 9.231249], + [-11.964771, 9.227516], + [-11.96491, 9.22628], + [-11.964456, 9.222712], + [-11.975416, 9.22125], + [-11.97625, 9.222082], + [-11.977917, 9.22125], + [-11.985416, 9.221249], + [-11.987083, 9.216249] + ] + ], + "type": "Polygon" + }, + "id": 211, + "properties": { + "cc:admin:id": ["7"], + "cc:oBld:total": 241, + "cc:pop:fifteen-to-twenty-four": 866.0774091450647, + "cc:pop:grid3-total": 3712.3512725705073, + "cc:pop:kontur-total": 5487.906127923586, + "cc:pop:men": 2195.3344955256293, + "cc:pop:sixty-plus": 272.4792353131934, + "cc:pop:total": 4779.596540936402, + "cc:pop:under-five": 758.7859254029538, + "cc:pop:women": 2584.262045410768, + "cc:pop:women-fiften-to-forty-nine": 1274.383172084885, + "cc:pop:wp-total": 4676.877520355156, + "cc:pop:wp-total-UN": 5443.374888435911, + "cc:id": "211", + "cc:Name": "Kayongoro MCHP", + "cc:site": [-11.9221, 9.2126], + "user:parentName": "Biriwa", + "user:code": "OU_193232", + "user:orgUnitId": "tEgxbwwrwUd", + "user:level": "4", + "user:parentId": "fwH9ipvXde9" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.748022, 8.97657], + [-11.747916, 8.976249], + [-11.747082, 8.972083], + [-11.744582, 8.969583], + [-11.742917, 8.969582], + [-11.742916, 8.967917], + [-11.738749, 8.964583], + [-11.736012, 8.964582], + [-11.738544, 8.960195], + [-11.734639, 8.953429], + [-11.738544, 8.946664], + [-11.738745, 8.946663], + [-11.737082, 8.945416], + [-11.735416, 8.937917], + [-11.732083, 8.934582], + [-11.732082, 8.92875], + [-11.728749, 8.927916], + [-11.725417, 8.923749], + [-11.726249, 8.914583], + [-11.72675, 8.912077], + [-11.727551, 8.91191], + [-11.727923, 8.912133], + [-11.728052, 8.912465], + [-11.727725, 8.912846], + [-11.726949, 8.912988], + [-11.72678, 8.913578], + [-11.726963, 8.914138], + [-11.727812, 8.91437], + [-11.728749, 8.913672], + [-11.72875, 8.912917], + [-11.729583, 8.911249], + [-11.732082, 8.909582], + [-11.732916, 8.907083], + [-11.733749, 8.907082], + [-11.73375, 8.906249], + [-11.734463, 8.898399], + [-11.732299, 8.898], + [-11.7284, 8.8985], + [-11.720099, 8.9023], + [-11.7155, 8.905199], + [-11.714, 8.9069], + [-11.713199, 8.9094], + [-11.7131, 8.913199], + [-11.713599, 8.926099], + [-11.7134, 8.931999], + [-11.712699, 8.935199], + [-11.7109, 8.937799], + [-11.7081, 8.940399], + [-11.7053, 8.941899], + [-11.703, 8.942299], + [-11.70125, 8.942367], + [-11.701249, 8.943485], + [-11.695725, 8.943486], + [-11.693002, 8.948201], + [-11.689583, 8.947917], + [-11.685417, 8.95125], + [-11.683749, 8.95625], + [-11.682917, 8.967082], + [-11.68375, 8.968749], + [-11.687916, 8.972082], + [-11.689746, 8.972083], + [-11.689288, 8.97329], + [-11.688129, 8.974924], + [-11.68125, 8.975417], + [-11.677917, 8.979583], + [-11.677916, 8.98408], + [-11.672288, 8.984081], + [-11.668381, 8.990846], + [-11.660569, 8.990847], + [-11.66043, 8.991087], + [-11.660935, 8.991994], + [-11.660308, 8.994161], + [-11.660377, 8.994582], + [-11.65625, 8.994583], + [-11.652878, 9.000652], + [-11.653909, 9.000523], + [-11.655029, 9.001574], + [-11.654878, 9.002028], + [-11.654365, 9.002103], + [-11.654144, 9.001974], + [-11.654172, 9.001579], + [-11.653968, 9.001221], + [-11.653654, 9.000988], + [-11.653205, 9.001111], + [-11.652499, 9.00087], + [-11.652365, 9.001025], + [-11.652431, 9.001399], + [-11.652163, 9.001652], + [-11.650644, 9.004752], + [-11.650643, 9.004762], + [-11.645417, 9.005417], + [-11.645416, 9.012083], + [-11.642083, 9.016249], + [-11.64125, 9.01625], + [-11.640416, 9.017082], + [-11.639583, 9.017083], + [-11.63625, 9.02125], + [-11.63625, 9.030416], + [-11.639582, 9.033749], + [-11.639583, 9.035416], + [-11.642082, 9.037916], + [-11.639771, 9.039073], + [-11.6413, 9.0409], + [-11.642599, 9.043299], + [-11.643299, 9.0459], + [-11.643099, 9.049399], + [-11.6408, 9.054599], + [-11.639, 9.061199], + [-11.6374, 9.0648], + [-11.6372, 9.068299], + [-11.6391, 9.0732], + [-11.640599, 9.079099], + [-11.642099, 9.083799], + [-11.6427, 9.090499], + [-11.653499, 9.0828], + [-11.6613, 9.079399], + [-11.667, 9.078299], + [-11.673099, 9.078], + [-11.679199, 9.078099], + [-11.6837, 9.0786], + [-11.686499, 9.079499], + [-11.688584, 9.08058], + [-11.692916, 9.07625], + [-11.692916, 9.062917], + [-11.691681, 9.061372], + [-11.692178, 9.060508], + [-11.688272, 9.053743], + [-11.690475, 9.049926], + [-11.69058, 9.049891], + [-11.691508, 9.048917], + [-11.692419, 9.048466], + [-11.692602, 9.047831], + [-11.692976, 9.047417], + [-11.693163, 9.046978], + [-11.692178, 9.046977], + [-11.688272, 9.040211], + [-11.690201, 9.036869], + [-11.690417, 9.037083], + [-11.696605, 9.037082], + [-11.695971, 9.035579], + [-11.695771, 9.034742], + [-11.695814, 9.034336], + [-11.698749, 9.033749], + [-11.705416, 9.029583], + [-11.708749, 9.030416], + [-11.710417, 9.029583], + [-11.713749, 9.029582], + [-11.714171, 9.024098], + [-11.710469, 9.017684], + [-11.714374, 9.010918], + [-11.71233, 9.007376], + [-11.714582, 9.006249], + [-11.717082, 9.002917], + [-11.71668, 9.00171], + [-11.717363, 9.000526], + [-11.720103, 9.000525], + [-11.720124, 9.000395], + [-11.720526, 8.999965], + [-11.721375, 8.999452], + [-11.721557, 8.999451], + [-11.724582, 8.995416], + [-11.72375, 8.984583], + [-11.722969, 8.9825], + [-11.724893, 8.979166], + [-11.724895, 8.979167], + [-11.725417, 8.981249], + [-11.727916, 8.983749], + [-11.729582, 8.983749], + [-11.732082, 8.982083], + [-11.732917, 8.981249], + [-11.746954, 8.976571], + [-11.748022, 8.97657] + ] + ], + "type": "Polygon" + }, + "id": 212, + "properties": { + "cc:admin:id": ["47"], + "cc:oBld:total": 61, + "cc:pop:fifteen-to-twenty-four": 998.4031936967399, + "cc:pop:grid3-total": 7006.453391191054, + "cc:pop:kontur-total": 5308.868464816387, + "cc:pop:men": 2572.114070418126, + "cc:pop:sixty-plus": 328.3045023132588, + "cc:pop:total": 5524.517476784607, + "cc:pop:under-five": 903.7325390920754, + "cc:pop:women": 2952.403406366481, + "cc:pop:women-fiften-to-forty-nine": 1405.8916843541224, + "cc:pop:wp-total": 4454.533899295265, + "cc:pop:wp-total-UN": 5155.701675189639, + "cc:id": "212", + "cc:Name": "Kemedugu MCHP", + "cc:site": [-11.6616, 9.0067], + "user:parentName": "Kalansogoia", + "user:code": "OU_268192", + "user:orgUnitId": "QMnoFLTLpkY", + "user:level": "4", + "user:parentId": "smoyi1iYNK6" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.17625, 8.080416], + [-12.176249, 8.079583], + [-12.167082, 8.073749], + [-12.16625, 8.072083], + [-12.167627, 8.066571], + [-12.162399, 8.0679], + [-12.157099, 8.0701], + [-12.151199, 8.0716], + [-12.1429, 8.075399], + [-12.1386, 8.077799], + [-12.135399, 8.0791], + [-12.131, 8.081299], + [-12.125099, 8.0828], + [-12.12, 8.085299], + [-12.116799, 8.0867], + [-12.112499, 8.088899], + [-12.109899, 8.089299], + [-12.1064, 8.088999], + [-12.101099, 8.086799], + [-12.0974, 8.086], + [-12.096405, 8.085949], + [-12.091049, 8.092965], + [-12.0905, 8.094295], + [-12.088277, 8.096678], + [-12.087514, 8.097795], + [-12.085147, 8.102083], + [-12.086188, 8.102084], + [-12.085535, 8.103143], + [-12.084909, 8.104561], + [-12.084632, 8.106134], + [-12.084573, 8.109099], + [-12.084379, 8.110588], + [-12.082406, 8.114103], + [-12.08148, 8.11496], + [-12.080686, 8.11545], + [-12.080554, 8.115926], + [-12.080719, 8.116391], + [-12.084144, 8.116819], + [-12.086016, 8.115974], + [-12.090589, 8.112531], + [-12.094582, 8.108718], + [-12.094583, 8.109913], + [-12.094681, 8.109802], + [-12.097003, 8.106693], + [-12.097484, 8.106467], + [-12.098412, 8.10661], + [-12.10243, 8.108468], + [-12.10444, 8.109052], + [-12.105162, 8.109541], + [-12.105607, 8.110339], + [-12.105715, 8.111161], + [-12.105439, 8.112221], + [-12.10467, 8.11415], + [-12.103501, 8.115438], + [-12.10118, 8.117212], + [-12.099831, 8.117976], + [-12.099337, 8.118106], + [-12.097809, 8.117701], + [-12.096535, 8.117582], + [-12.095752, 8.117678], + [-12.094284, 8.118607], + [-12.093779, 8.119584], + [-12.093609, 8.120954], + [-12.093526, 8.128137], + [-12.093045, 8.133021], + [-12.093017, 8.133749], + [-12.094148, 8.13375], + [-12.093899, 8.136249], + [-12.094367, 8.137799], + [-12.094228, 8.138289], + [-12.093707, 8.138642], + [-12.093674, 8.138749], + [-12.092424, 8.13875], + [-12.092563, 8.139525], + [-12.093212, 8.140419], + [-12.093874, 8.141074], + [-12.095524, 8.142219], + [-12.09852, 8.143791], + [-12.103128, 8.145803], + [-12.105896, 8.146757], + [-12.106137, 8.147007], + [-12.106138, 8.147531], + [-12.105595, 8.148747], + [-12.102179, 8.152963], + [-12.101636, 8.153284], + [-12.100324, 8.153534], + [-12.098532, 8.153214], + [-12.095974, 8.152079], + [-12.095594, 8.153216], + [-12.096963, 8.153749], + [-12.094583, 8.15375], + [-12.09375, 8.160416], + [-12.098749, 8.16125], + [-12.099583, 8.162084], + [-12.107082, 8.162916], + [-12.107916, 8.162917], + [-12.109561, 8.157983], + [-12.109586, 8.158001], + [-12.111395, 8.159929], + [-12.11271, 8.160105], + [-12.113271, 8.160384], + [-12.11421, 8.160389], + [-12.116976, 8.155599], + [-12.116249, 8.155416], + [-12.115417, 8.153749], + [-12.120416, 8.15125], + [-12.121107, 8.151249], + [-12.118463, 8.146669], + [-12.12181, 8.140873], + [-12.12625, 8.142084], + [-12.129582, 8.144583], + [-12.130417, 8.147083], + [-12.136133, 8.146607], + [-12.134713, 8.149069], + [-12.13862, 8.155834], + [-12.142916, 8.155834], + [-12.142917, 8.14875], + [-12.147082, 8.146249], + [-12.14625, 8.145416], + [-12.152916, 8.12625], + [-12.157083, 8.127916], + [-12.161249, 8.12625], + [-12.164582, 8.124583], + [-12.164582, 8.120417], + [-12.162083, 8.117916], + [-12.162082, 8.114584], + [-12.155417, 8.114583], + [-12.15375, 8.112916], + [-12.154583, 8.095417], + [-12.164582, 8.094583], + [-12.164583, 8.092083], + [-12.175416, 8.090416], + [-12.177082, 8.084583], + [-12.17625, 8.080416] + ] + ], + "type": "Polygon" + }, + "id": 213, + "properties": { + "cc:admin:id": ["60"], + "cc:oBld:total": 36, + "cc:pop:fifteen-to-twenty-four": 202.685190097332, + "cc:pop:grid3-total": 850.0524817922178, + "cc:pop:kontur-total": 1052.6629765196735, + "cc:pop:men": 548.9609518621678, + "cc:pop:sixty-plus": 67.9864640054849, + "cc:pop:total": 1157.9961583969362, + "cc:pop:under-five": 184.64602592651605, + "cc:pop:women": 609.0352065347686, + "cc:pop:women-fiften-to-forty-nine": 300.371620389776, + "cc:pop:wp-total": 1333.9127856435725, + "cc:pop:wp-total-UN": 1543.3418753253318, + "cc:id": "213", + "cc:Name": "Kenema Gbandoma MCHP", + "cc:site": [-12.1217, 8.0863], + "user:parentName": "Dasse", + "user:code": "OU_247024", + "user:orgUnitId": "s7SLtx8wmRA", + "user:level": "4", + "user:parentId": "RndxKqQGzUl" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.012082, 8.644584], + [-11.002083, 8.644584], + [-11.000416, 8.645416], + [-10.998677, 8.644546], + [-10.998857, 8.644242], + [-10.998898, 8.643826], + [-10.998677, 8.643253], + [-10.997562, 8.641566], + [-10.997202, 8.641007], + [-10.995733, 8.639016], + [-10.995702, 8.63899], + [-10.995829, 8.638693], + [-10.996616, 8.63781], + [-10.996914, 8.637156], + [-10.997102, 8.636788], + [-10.996702, 8.63635], + [-10.996112, 8.636347], + [-10.99576, 8.636309], + [-10.995431, 8.636277], + [-10.994948, 8.636323], + [-10.99443, 8.636436], + [-10.993937, 8.636835], + [-10.993663, 8.637053], + [-10.993424, 8.636892], + [-10.992955, 8.636585], + [-10.992861, 8.6365], + [-10.990939, 8.634885], + [-10.990698, 8.635402], + [-10.990174, 8.636756], + [-10.989774, 8.637293], + [-10.989772, 8.637292], + [-10.989581, 8.636157], + [-10.989067, 8.636639], + [-10.988999, 8.636815], + [-10.988852, 8.637145], + [-10.988843, 8.637155], + [-10.988842, 8.637159], + [-10.988664, 8.63733], + [-10.988593, 8.637383], + [-10.98846, 8.637504], + [-10.988443, 8.637486], + [-10.988394, 8.637511], + [-10.988378, 8.637508], + [-10.988247, 8.637698], + [-10.988215, 8.637755], + [-10.988197, 8.6378], + [-10.988004, 8.638532], + [-10.987995, 8.638534], + [-10.987979, 8.638612], + [-10.987829, 8.638958], + [-10.987838, 8.640246], + [-10.987902, 8.642014], + [-10.987821, 8.642878], + [-10.987724, 8.643425], + [-10.986465, 8.645467], + [-10.985655, 8.646978], + [-10.985552, 8.647049], + [-10.984707, 8.647437], + [-10.984762, 8.647554], + [-10.985041, 8.648899], + [-10.98608, 8.648913], + [-10.986645, 8.649011], + [-10.986964, 8.649314], + [-10.986964, 8.649315], + [-10.986586, 8.649446], + [-10.985751, 8.650271], + [-10.987848, 8.652008], + [-10.987875, 8.652055], + [-10.987835, 8.65219], + [-10.987645, 8.652676], + [-10.986569, 8.65304], + [-10.98567, 8.654128], + [-10.985962, 8.654557], + [-10.985987, 8.654909], + [-10.985144, 8.65591], + [-10.985256, 8.656222], + [-10.984165, 8.657048], + [-10.983543, 8.657286], + [-10.982224, 8.657633], + [-10.981584, 8.657856], + [-10.980105, 8.658586], + [-10.97972, 8.658476], + [-10.979078, 8.65848], + [-10.979245, 8.659233], + [-10.979061, 8.661244], + [-10.978224, 8.661357], + [-10.977867, 8.661695], + [-10.9778, 8.661686], + [-10.976736, 8.66174], + [-10.976447, 8.661689], + [-10.975733, 8.660847], + [-10.975556, 8.66155], + [-10.975559, 8.661671], + [-10.975599, 8.66252], + [-10.975981, 8.664115], + [-10.976016, 8.664178], + [-10.976218, 8.666286], + [-10.976129, 8.667149], + [-10.977631, 8.66838], + [-10.979236, 8.669986], + [-10.979766, 8.670482], + [-10.98008, 8.671285], + [-10.980286, 8.672492], + [-10.98032, 8.672493], + [-10.980722, 8.674523], + [-10.980673, 8.674672], + [-10.980059, 8.67494], + [-10.977042, 8.675643], + [-10.976829, 8.677512], + [-10.976583, 8.678834], + [-10.97673, 8.679623], + [-10.977392, 8.679296], + [-10.978249, 8.677838], + [-10.978459, 8.677701], + [-10.977917, 8.680416], + [-10.975417, 8.682917], + [-10.975417, 8.684582], + [-10.978475, 8.687642], + [-10.9785, 8.687599], + [-10.981699, 8.6837], + [-10.983099, 8.6816], + [-10.985, 8.677799], + [-10.9878, 8.674399], + [-10.9942, 8.667899], + [-10.997299, 8.6641], + [-10.999399, 8.66], + [-11.0014, 8.657099], + [-11.0044, 8.653699], + [-11.010599, 8.6478], + [-11.012082, 8.646776], + [-11.012082, 8.644584] + ] + ], + "type": "Polygon" + }, + "id": 214, + "properties": { + "cc:admin:id": ["33"], + "cc:oBld:total": 1827, + "cc:pop:fifteen-to-twenty-four": 1325.651766855794, + "cc:pop:grid3-total": 5857.054652227919, + "cc:pop:kontur-total": 8253.73495007776, + "cc:pop:men": 3546.385013847755, + "cc:pop:sixty-plus": 372.3394817975328, + "cc:pop:total": 6675.904659073623, + "cc:pop:under-five": 1041.6979465760248, + "cc:pop:women": 3129.51964522587, + "cc:pop:women-fiften-to-forty-nine": 1562.9474335010104, + "cc:pop:wp-total": 5147.698971191509, + "cc:pop:wp-total-UN": 5973.2524410433325, + "cc:id": "214", + "cc:Name": "Kensay MCHP", + "cc:site": [-10.9879, 8.6393], + "user:parentName": "Tankoro", + "user:code": "OU_233330", + "user:orgUnitId": "UjusePB4jmP", + "user:level": "4", + "user:parentId": "M2qEv692lS6" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [-13.164025, 8.19432], + [-13.163461, 8.171506], + [-13.155418, 8.171506], + [-13.130439, 8.196531], + [-13.107106, 8.201236], + [-13.099015, 8.213466], + [-13.096546, 8.214108], + [-13.096558, 8.214114], + [-13.098318, 8.214025], + [-13.098419, 8.214381], + [-13.099809, 8.21414], + [-13.099809, 8.214142], + [-13.099665, 8.214294], + [-13.099179, 8.214512], + [-13.099191, 8.214714], + [-13.098178, 8.215269], + [-13.098211, 8.215657], + [-13.098922, 8.215968], + [-13.099288, 8.216094], + [-13.099545, 8.2165], + [-13.100044, 8.216582], + [-13.101111, 8.217314], + [-13.101653, 8.218353], + [-13.101664, 8.21836], + [-13.10186, 8.218111], + [-13.102864, 8.217267], + [-13.10318, 8.217023], + [-13.103212, 8.218323], + [-13.104146, 8.219096], + [-13.104189, 8.219324], + [-13.104661, 8.219525], + [-13.105279, 8.219365], + [-13.106664, 8.219368], + [-13.107006, 8.219531], + [-13.108158, 8.219607], + [-13.108189, 8.219626], + [-13.108758, 8.218643], + [-13.116569, 8.218643], + [-13.118113, 8.221313], + [-13.118749, 8.22125], + [-13.11875, 8.224076], + [-13.123735, 8.224077], + [-13.12764, 8.230843], + [-13.123735, 8.237609], + [-13.12764, 8.244374], + [-13.135454, 8.244375], + [-13.137082, 8.247196], + [-13.137083, 8.248749], + [-13.147917, 8.259583], + [-13.155377, 8.252867], + [-13.154341, 8.251528], + [-13.15301, 8.249364], + [-13.153147, 8.24931], + [-13.154167, 8.250999], + [-13.157082, 8.250416], + [-13.15625, 8.248749], + [-13.157083, 8.245417], + [-13.159583, 8.245417], + [-13.16146, 8.248544], + [-13.163743, 8.237082], + [-13.153489, 8.211821], + [-13.164025, 8.19432] + ] + ], + [ + [ + [-13.239856, 8.097651], + [-13.219018, 8.101273], + [-13.21817, 8.111527], + [-13.207634, 8.110117], + [-13.205704, 8.122629], + [-13.191545, 8.132368], + [-13.188488, 8.139282], + [-13.191544, 8.142104], + [-13.207634, 8.124606], + [-13.219581, 8.118489], + [-13.219582, 8.111809], + [-13.235952, 8.106259], + [-13.239856, 8.097651] + ] + ], + [ + [ + [-13.250393, 8.0929], + [-13.240986, 8.094593], + [-13.243479, 8.100708], + [-13.250393, 8.0929] + ] + ] + ], + "type": "MultiPolygon" + }, + "id": 215, + "properties": { + "cc:admin:id": ["112"], + "cc:oBld:total": 1566, + "cc:pop:fifteen-to-twenty-four": 3251.956668510658, + "cc:pop:grid3-total": 9926.699834146179, + "cc:pop:kontur-total": 13289.778661548484, + "cc:pop:men": 7330.394652593037, + "cc:pop:sixty-plus": 1144.2805839462073, + "cc:pop:total": 14542.789188848088, + "cc:pop:under-five": 1724.7300715841334, + "cc:pop:women": 7212.394536255046, + "cc:pop:women-fiften-to-forty-nine": 3848.907196144636, + "cc:pop:wp-total": 11064.292692883664, + "cc:pop:wp-total-UN": 12832.687105942143, + "cc:id": "215", + "cc:Name": "Kent CHP", + "cc:site": [-13.1623, 8.1742], + "user:parentName": "Rural Western Area", + "user:code": "OU_278394", + "user:orgUnitId": "lELJZCBxz7H", + "user:level": "4", + "user:parentId": "qtr8GGlm4gg" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.686916, 8.909702], + [-11.6866, 8.9069], + [-11.685899, 8.904699], + [-11.684, 8.9011], + [-11.6826, 8.898], + [-11.680499, 8.894499], + [-11.6786, 8.8907], + [-11.676499, 8.887699], + [-11.6708, 8.8818], + [-11.669, 8.8792], + [-11.668299, 8.877099], + [-11.667599, 8.8701], + [-11.666599, 8.8677], + [-11.664399, 8.8653], + [-11.656999, 8.861599], + [-11.653599, 8.860799], + [-11.645399, 8.860599], + [-11.6423, 8.860099], + [-11.640499, 8.858999], + [-11.639, 8.857499], + [-11.6379, 8.8548], + [-11.6375, 8.8495], + [-11.637, 8.8469], + [-11.635, 8.8434], + [-11.630999, 8.838899], + [-11.6235, 8.8316], + [-11.620599, 8.829299], + [-11.617899, 8.8277], + [-11.6132, 8.8267], + [-11.6107, 8.8259], + [-11.6071, 8.824], + [-11.603899, 8.822699], + [-11.601699, 8.821199], + [-11.5956, 8.8155], + [-11.593499, 8.813799], + [-11.5845, 8.809], + [-11.581399, 8.807699], + [-11.5769, 8.8055], + [-11.571999, 8.804699], + [-11.5648, 8.8046], + [-11.5656, 8.8076], + [-11.566299, 8.812999], + [-11.566999, 8.815499], + [-11.5694, 8.8208], + [-11.569899, 8.8248], + [-11.569599, 8.829699], + [-11.5647, 8.839499], + [-11.5602, 8.845299], + [-11.557199, 8.8506], + [-11.553, 8.855999], + [-11.5487, 8.864599], + [-11.548099, 8.8681], + [-11.5478, 8.876299], + [-11.547299, 8.878799], + [-11.545799, 8.8811], + [-11.5397, 8.887799], + [-11.5377, 8.890699], + [-11.535999, 8.8946], + [-11.5324, 8.901999], + [-11.531985, 8.902353], + [-11.532917, 8.903749], + [-11.537916, 8.905417], + [-11.542081, 8.909582], + [-11.532917, 8.910417], + [-11.529583, 8.914583], + [-11.529583, 8.922082], + [-11.531249, 8.927083], + [-11.530416, 8.934582], + [-11.52125, 8.935417], + [-11.522082, 8.944582], + [-11.519583, 8.94625], + [-11.519583, 8.947082], + [-11.524582, 8.950416], + [-11.52375, 8.952083], + [-11.525416, 8.955416], + [-11.522917, 8.95625], + [-11.522916, 8.959582], + [-11.522083, 8.960417], + [-11.522083, 8.970416], + [-11.526249, 8.97125], + [-11.51875, 8.979583], + [-11.51875, 8.980417], + [-11.520417, 8.984582], + [-11.52125, 8.985417], + [-11.523749, 8.987082], + [-11.52125, 8.990417], + [-11.526249, 9.000416], + [-11.527916, 9.004583], + [-11.527916, 9.012082], + [-11.527083, 9.012083], + [-11.525417, 9.014583], + [-11.525417, 9.026249], + [-11.529583, 9.030416], + [-11.540417, 9.022083], + [-11.542083, 9.022083], + [-11.548749, 9.025417], + [-11.542917, 9.037083], + [-11.542917, 9.042082], + [-11.544197, 9.045284], + [-11.544993, 9.044721], + [-11.545832, 9.044592], + [-11.546515, 9.044696], + [-11.546808, 9.044985], + [-11.54704, 9.045291], + [-11.547916, 9.045339], + [-11.547916, 9.052082], + [-11.545417, 9.058749], + [-11.535417, 9.057083], + [-11.534583, 9.062916], + [-11.537083, 9.069582], + [-11.540416, 9.071249], + [-11.539583, 9.072916], + [-11.54625, 9.079582], + [-11.547917, 9.079583], + [-11.548749, 9.082916], + [-11.549582, 9.08375], + [-11.549583, 9.084582], + [-11.552917, 9.084583], + [-11.555416, 9.089582], + [-11.54875, 9.09375], + [-11.54875, 9.097082], + [-11.550416, 9.100416], + [-11.547083, 9.102083], + [-11.547083, 9.106249], + [-11.547917, 9.107916], + [-11.551249, 9.10875], + [-11.55125, 9.109583], + [-11.552083, 9.11375], + [-11.552917, 9.115416], + [-11.554582, 9.11625], + [-11.554583, 9.124582], + [-11.559583, 9.12875], + [-11.560416, 9.13125], + [-11.559788, 9.135022], + [-11.5626, 9.134499], + [-11.5757, 9.133599], + [-11.5785, 9.133099], + [-11.5846, 9.131399], + [-11.599499, 9.1299], + [-11.6032, 9.128599], + [-11.608499, 9.126], + [-11.6132, 9.122499], + [-11.620699, 9.115], + [-11.626699, 9.1083], + [-11.6317, 9.101199], + [-11.6343, 9.098699], + [-11.639799, 9.0945], + [-11.642699, 9.090499], + [-11.642099, 9.083799], + [-11.640599, 9.079099], + [-11.6391, 9.0732], + [-11.6372, 9.068299], + [-11.6374, 9.0648], + [-11.639, 9.061199], + [-11.6408, 9.054599], + [-11.643099, 9.049399], + [-11.643299, 9.0459], + [-11.642599, 9.043299], + [-11.6413, 9.0409], + [-11.637199, 9.035999], + [-11.632899, 9.027799], + [-11.632099, 9.024099], + [-11.631899, 9.019199], + [-11.6318, 9.004299], + [-11.6319, 9.001399], + [-11.632599, 8.9984], + [-11.6359, 8.9924], + [-11.6376, 8.990799], + [-11.643, 8.987999], + [-11.6458, 8.987299], + [-11.653299, 8.986499], + [-11.662099, 8.9824], + [-11.665899, 8.979], + [-11.668399, 8.9757], + [-11.671899, 8.9677], + [-11.672799, 8.9614], + [-11.673599, 8.9589], + [-11.6802, 8.953199], + [-11.6819, 8.951099], + [-11.683699, 8.948299], + [-11.6835, 8.9331], + [-11.683699, 8.9271], + [-11.6843, 8.924199], + [-11.6863, 8.919799], + [-11.686999, 8.9161], + [-11.687199, 8.9122], + [-11.686916, 8.909702] + ] + ], + "type": "Polygon" + }, + "id": 216, + "properties": { + "cc:admin:id": ["114"], + "cc:oBld:total": 119, + "cc:pop:fifteen-to-twenty-four": 3207.875217945267, + "cc:pop:grid3-total": 15259.48598958704, + "cc:pop:kontur-total": 17238.653243077766, + "cc:pop:men": 7866.091143799991, + "cc:pop:sixty-plus": 1086.5315684111417, + "cc:pop:total": 17028.979635631735, + "cc:pop:under-five": 2718.459276285925, + "cc:pop:women": 9162.888491831747, + "cc:pop:women-fiften-to-forty-nine": 4483.158442726877, + "cc:pop:wp-total": 16498.13046234029, + "cc:pop:wp-total-UN": 19116.549996868544, + "cc:id": "216", + "cc:Name": "Kholifaga MCHP", + "cc:site": [-11.5914, 9.0432], + "user:parentName": "Sambaia Bendugu", + "user:code": "OU_268171", + "user:orgUnitId": "lCEeiuv4NaB", + "user:level": "4", + "user:parentId": "r1RUyfVBkLp" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.592199, 7.8196], + [-11.590599, 7.8182], + [-11.5879, 7.8177], + [-11.5832, 7.818299], + [-11.5783, 7.820399], + [-11.5747, 7.821299], + [-11.567899, 7.8218], + [-11.563799, 7.8225], + [-11.557899, 7.8247], + [-11.554099, 7.8252], + [-11.5483, 7.825499], + [-11.5446, 7.826299], + [-11.539199, 7.8285], + [-11.533399, 7.83], + [-11.529, 7.831999], + [-11.526099, 7.8326], + [-11.522199, 7.832899], + [-11.5101, 7.8328], + [-11.5062, 7.833099], + [-11.503399, 7.8337], + [-11.498899, 7.8357], + [-11.493499, 7.836599], + [-11.482799, 7.836499], + [-11.478999, 7.836099], + [-11.4725, 7.8351], + [-11.474399, 7.841999], + [-11.474999, 7.846099], + [-11.475003, 7.846249], + [-11.478749, 7.846249], + [-11.48375, 7.842084], + [-11.492082, 7.842084], + [-11.497083, 7.847084], + [-11.497082, 7.856249], + [-11.492917, 7.862083], + [-11.48125, 7.862916], + [-11.481181, 7.862871], + [-11.479303, 7.866123], + [-11.480626, 7.868415], + [-11.477083, 7.87125], + [-11.477083, 7.883118], + [-11.478368, 7.881759], + [-11.479667, 7.881186], + [-11.479668, 7.881187], + [-11.479595, 7.881532], + [-11.488749, 7.884583], + [-11.489083, 7.884916], + [-11.490615, 7.884645], + [-11.490989, 7.884784], + [-11.491986, 7.884764], + [-11.492929, 7.885159], + [-11.49375, 7.885888], + [-11.494358, 7.886165], + [-11.495276, 7.887096], + [-11.496226, 7.88921], + [-11.497818, 7.89179], + [-11.501946, 7.896568], + [-11.502969, 7.897459], + [-11.503768, 7.898556], + [-11.504899, 7.899529], + [-11.505716, 7.900769], + [-11.506151, 7.901074], + [-11.507333, 7.901424], + [-11.508057, 7.901905], + [-11.511248, 7.897918], + [-11.51125, 7.897919], + [-11.51125, 7.898749], + [-11.517916, 7.897917], + [-11.517917, 7.901249], + [-11.520416, 7.901249], + [-11.52142, 7.898738], + [-11.522906, 7.898468], + [-11.525113, 7.897199], + [-11.527503, 7.896796], + [-11.528403, 7.896393], + [-11.528939, 7.897461], + [-11.529551, 7.897129], + [-11.534699, 7.895016], + [-11.537154, 7.894363], + [-11.537448, 7.89447], + [-11.539759, 7.894109], + [-11.541021, 7.893317], + [-11.541724, 7.893034], + [-11.53987, 7.891922], + [-11.53987, 7.891921], + [-11.540617, 7.891538], + [-11.542376, 7.891097], + [-11.543357, 7.891081], + [-11.544447, 7.891351], + [-11.546707, 7.890563], + [-11.550267, 7.891253], + [-11.552443, 7.892259], + [-11.553781, 7.892254], + [-11.555074, 7.89165], + [-11.556669, 7.890474], + [-11.5558, 7.888299], + [-11.5558, 7.884999], + [-11.5564, 7.882399], + [-11.558099, 7.8792], + [-11.5616, 7.874899], + [-11.5644, 7.869599], + [-11.5682, 7.8637], + [-11.5724, 7.860699], + [-11.575899, 7.8571], + [-11.577499, 7.8549], + [-11.578899, 7.8517], + [-11.5809, 7.848199], + [-11.582699, 7.8443], + [-11.5875, 7.837799], + [-11.5887, 7.835299], + [-11.59, 7.830299], + [-11.5925, 7.824699], + [-11.592899, 7.8219], + [-11.592199, 7.8196] + ] + ], + "type": "Polygon" + }, + "id": 217, + "properties": { + "cc:admin:id": ["2"], + "cc:oBld:total": 192, + "cc:pop:fifteen-to-twenty-four": 1576.512163390516, + "cc:pop:grid3-total": 6168.585061895677, + "cc:pop:kontur-total": 8694.68398376497, + "cc:pop:men": 4553.788392188136, + "cc:pop:sixty-plus": 622.9009425489135, + "cc:pop:total": 8818.081889146664, + "cc:pop:under-five": 1449.3964525136714, + "cc:pop:women": 4264.293496958528, + "cc:pop:women-fiften-to-forty-nine": 2035.345851660111, + "cc:pop:wp-total": 8372.787286378254, + "cc:pop:wp-total-UN": 9708.58780104055, + "cc:id": "217", + "cc:Name": "Kigbai MCHP", + "cc:site": [-11.5052, 7.8704], + "user:parentName": "Baoma", + "user:code": "OU_580", + "user:orgUnitId": "egv5Es0QlQP", + "user:level": "4", + "user:parentId": "vWbkYPRmKyS" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.252652, 8.474072], + [-13.25215, 8.473844], + [-13.252047, 8.473772], + [-13.251923, 8.473641], + [-13.25173, 8.473145], + [-13.251713, 8.47265], + [-13.25165, 8.471645], + [-13.251408, 8.471575], + [-13.251272, 8.471506], + [-13.251408, 8.471238], + [-13.25167, 8.470975], + [-13.251697, 8.470501], + [-13.251481, 8.469926], + [-13.251059, 8.469493], + [-13.251029, 8.468793], + [-13.251451, 8.467582], + [-13.250123, 8.468547], + [-13.249995, 8.469165], + [-13.249267, 8.470013], + [-13.249141, 8.470217], + [-13.249098, 8.470301], + [-13.249042, 8.47028], + [-13.248699, 8.470421], + [-13.248698, 8.47042], + [-13.248707, 8.469485], + [-13.247224, 8.469996], + [-13.246996, 8.470198], + [-13.246991, 8.470499], + [-13.246682, 8.470774], + [-13.246442, 8.470501], + [-13.246021, 8.470036], + [-13.245828, 8.469797], + [-13.245618, 8.469524], + [-13.245462, 8.469245], + [-13.245474, 8.469198], + [-13.245398, 8.469069], + [-13.245713, 8.468867], + [-13.245664, 8.468652], + [-13.246168, 8.4684], + [-13.247656, 8.467725], + [-13.247468, 8.467453], + [-13.247781, 8.467089], + [-13.247782, 8.466755], + [-13.247427, 8.466738], + [-13.247005, 8.466472], + [-13.246379, 8.466646], + [-13.24619, 8.466566], + [-13.245681, 8.465506], + [-13.245765, 8.465258], + [-13.245868, 8.464538], + [-13.245106, 8.46366], + [-13.244193, 8.462668], + [-13.244656, 8.462285], + [-13.243881, 8.462141], + [-13.243366, 8.461993], + [-13.243274, 8.462044], + [-13.24199, 8.462355], + [-13.242161, 8.463112], + [-13.242507, 8.463822], + [-13.241405, 8.464212], + [-13.240474, 8.465002], + [-13.23986, 8.465515], + [-13.239558, 8.465829], + [-13.239205, 8.466149], + [-13.239337, 8.466604], + [-13.239291, 8.467105], + [-13.239467, 8.46719], + [-13.239478, 8.467575], + [-13.23988, 8.468316], + [-13.239926, 8.468652], + [-13.240019, 8.469161], + [-13.240098, 8.469554], + [-13.240271, 8.471138], + [-13.239669, 8.471433], + [-13.2397, 8.471536], + [-13.239466, 8.471664], + [-13.23881, 8.471995], + [-13.238336, 8.472253], + [-13.239115, 8.472526], + [-13.239516, 8.472894], + [-13.239692, 8.473259], + [-13.23966, 8.474083], + [-13.240011, 8.474377], + [-13.239806, 8.474668], + [-13.239267, 8.475933], + [-13.239157, 8.475902], + [-13.238956, 8.476402], + [-13.238803, 8.476861], + [-13.238618, 8.477375], + [-13.240674, 8.478123], + [-13.240874, 8.477606], + [-13.242007, 8.478011], + [-13.242146, 8.477573], + [-13.241698, 8.477378], + [-13.241958, 8.476906], + [-13.24222, 8.476926], + [-13.242938, 8.477969], + [-13.243394, 8.478059], + [-13.243519, 8.478023], + [-13.243957, 8.477807], + [-13.244161, 8.477332], + [-13.244321, 8.476899], + [-13.244463, 8.476586], + [-13.244596, 8.476162], + [-13.244727, 8.475677], + [-13.246087, 8.476279], + [-13.24683, 8.475911], + [-13.246923, 8.475849], + [-13.248248, 8.477241], + [-13.248303, 8.477288], + [-13.248437, 8.47716], + [-13.249084, 8.476517], + [-13.249666, 8.475926], + [-13.24972, 8.475873], + [-13.249554, 8.475676], + [-13.24877, 8.474779], + [-13.248598, 8.474304], + [-13.249098, 8.473832], + [-13.249443, 8.472975], + [-13.249592, 8.472535], + [-13.250086, 8.47199], + [-13.250719, 8.471374], + [-13.251258, 8.471531], + [-13.250998, 8.47238], + [-13.250544, 8.473166], + [-13.250491, 8.473988], + [-13.25083, 8.474212], + [-13.250908, 8.474546], + [-13.251519, 8.475268], + [-13.251541, 8.475288], + [-13.251827, 8.475035], + [-13.252652, 8.474072] + ] + ], + "type": "Polygon" + }, + "id": 218, + "properties": { + "cc:admin:id": ["26"], + "cc:oBld:total": 2842, + "cc:pop:fifteen-to-twenty-four": 8115.266527644233, + "cc:pop:grid3-total": 29317.29360483192, + "cc:pop:kontur-total": 42051.00000000001, + "cc:pop:men": 17669.326893005345, + "cc:pop:sixty-plus": 2748.0960071349255, + "cc:pop:total": 35318.5455254067, + "cc:pop:under-five": 4074.5579751435175, + "cc:pop:women": 17649.218632401364, + "cc:pop:women-fiften-to-forty-nine": 9462.056016343078, + "cc:pop:wp-total": 33316.89719172023, + "cc:pop:wp-total-UN": 38620.70175722551, + "cc:id": "218", + "cc:Name": "KingHarman Rd. Hospital", + "cc:site": [-13.2482, 8.4731], + "user:parentName": "Freetown", + "user:code": "OU_278338", + "user:orgUnitId": "gei3Sqw8do7", + "user:level": "4", + "user:parentId": "C9uduqDZr9d" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.265385, 8.460923], + [-13.265215, 8.460455], + [-13.265136, 8.460262], + [-13.264883, 8.460008], + [-13.264202, 8.460729], + [-13.263861, 8.460655], + [-13.263627, 8.460895], + [-13.26316, 8.460453], + [-13.263529, 8.460046], + [-13.263347, 8.459605], + [-13.263542, 8.459471], + [-13.263856, 8.459102], + [-13.263082, 8.458662], + [-13.262399, 8.458184], + [-13.261623, 8.457629], + [-13.261417, 8.45721], + [-13.261184, 8.456911], + [-13.260539, 8.457333], + [-13.260362, 8.457337], + [-13.260355, 8.457362], + [-13.260064, 8.458081], + [-13.259881, 8.457918], + [-13.259397, 8.45657], + [-13.259116, 8.456241], + [-13.258585, 8.456366], + [-13.258305, 8.455909], + [-13.257653, 8.456232], + [-13.257109, 8.455515], + [-13.256957, 8.455556], + [-13.256569, 8.45558], + [-13.256023, 8.455152], + [-13.25492, 8.4547], + [-13.254356, 8.454523], + [-13.253647, 8.454726], + [-13.253279, 8.454311], + [-13.252963, 8.454318], + [-13.252626, 8.453413], + [-13.252315, 8.452844], + [-13.252236, 8.452698], + [-13.251589, 8.453437], + [-13.251435, 8.454047], + [-13.251305, 8.454411], + [-13.250959, 8.454528], + [-13.250735, 8.454883], + [-13.25042, 8.454631], + [-13.25053, 8.453711], + [-13.250015, 8.452878], + [-13.249395, 8.452466], + [-13.248399, 8.452217], + [-13.247372, 8.451937], + [-13.246011, 8.451668], + [-13.245908, 8.450746], + [-13.245619, 8.450009], + [-13.244216, 8.449704], + [-13.242875, 8.448341], + [-13.242861, 8.448495], + [-13.242416, 8.448726], + [-13.241451, 8.447839], + [-13.241165, 8.448167], + [-13.24051, 8.447734], + [-13.240861, 8.447113], + [-13.240865, 8.447053], + [-13.240849, 8.447004], + [-13.240592, 8.446918], + [-13.239779, 8.446697], + [-13.237317, 8.444614], + [-13.236545, 8.444262], + [-13.23592, 8.443413], + [-13.236859, 8.441786], + [-13.234448, 8.43761], + [-13.232918, 8.437916], + [-13.232917, 8.437915], + [-13.232917, 8.427917], + [-13.234582, 8.426249], + [-13.234583, 8.424584], + [-13.232107, 8.421489], + [-13.225558, 8.421489], + [-13.2108, 8.432299], + [-13.210477, 8.432827], + [-13.211021, 8.433079], + [-13.211937, 8.433209], + [-13.212465, 8.433314], + [-13.213419, 8.433837], + [-13.213594, 8.434171], + [-13.214861, 8.435077], + [-13.215255, 8.435393], + [-13.215944, 8.435856], + [-13.216291, 8.436413], + [-13.215622, 8.436689], + [-13.216342, 8.437627], + [-13.216689, 8.43738], + [-13.217057, 8.438212], + [-13.216599, 8.438287], + [-13.215831, 8.438368], + [-13.214854, 8.439638], + [-13.215607, 8.440008], + [-13.217147, 8.440018], + [-13.217148, 8.440019], + [-13.21706, 8.44035], + [-13.217718, 8.440433], + [-13.218798, 8.440897], + [-13.219163, 8.441421], + [-13.219244, 8.441808], + [-13.219117, 8.442212], + [-13.219462, 8.44243], + [-13.219671, 8.443187], + [-13.220015, 8.443803], + [-13.219921, 8.444059], + [-13.219762, 8.444518], + [-13.220385, 8.444883], + [-13.221977, 8.446076], + [-13.222806, 8.446336], + [-13.223594, 8.446299], + [-13.224865, 8.446454], + [-13.22494, 8.447049], + [-13.225804, 8.447802], + [-13.226216, 8.447189], + [-13.226319, 8.447029], + [-13.226813, 8.447388], + [-13.227342, 8.447778], + [-13.227858, 8.448224], + [-13.227606, 8.448641], + [-13.2284, 8.449658], + [-13.228042, 8.44982], + [-13.2283, 8.451184], + [-13.229058, 8.451215], + [-13.229038, 8.451346], + [-13.229434, 8.450898], + [-13.229617, 8.450738], + [-13.230197, 8.451055], + [-13.230662, 8.451316], + [-13.232294, 8.452695], + [-13.23284, 8.453449], + [-13.233231, 8.453005], + [-13.233623, 8.453534], + [-13.233224, 8.454017], + [-13.23385, 8.454832], + [-13.234175, 8.455123], + [-13.234539, 8.455499], + [-13.234759, 8.455352], + [-13.234881, 8.45547], + [-13.235482, 8.455198], + [-13.235794, 8.454879], + [-13.235919, 8.45471], + [-13.236015, 8.454549], + [-13.236336, 8.454037], + [-13.236707, 8.454103], + [-13.237899, 8.454828], + [-13.239664, 8.455994], + [-13.2395, 8.456422], + [-13.239719, 8.456613], + [-13.240063, 8.456874], + [-13.241012, 8.4574], + [-13.24167, 8.457698], + [-13.24253, 8.45789], + [-13.243093, 8.458401], + [-13.243543, 8.458589], + [-13.243726, 8.458208], + [-13.244488, 8.457941], + [-13.245031, 8.457772], + [-13.245232, 8.457906], + [-13.245635, 8.458139], + [-13.245926, 8.458182], + [-13.246647, 8.458265], + [-13.247784, 8.458437], + [-13.248744, 8.458159], + [-13.250538, 8.456817], + [-13.25133, 8.456957], + [-13.251331, 8.456959], + [-13.251301, 8.456982], + [-13.250965, 8.457234], + [-13.251024, 8.457577], + [-13.2512, 8.457752], + [-13.252601, 8.459002], + [-13.25223, 8.459049], + [-13.251817, 8.459398], + [-13.251443, 8.460167], + [-13.251356, 8.461434], + [-13.251743, 8.461942], + [-13.252429, 8.462385], + [-13.252611, 8.462066], + [-13.252655, 8.461808], + [-13.253083, 8.460797], + [-13.254797, 8.462299], + [-13.254591, 8.462548], + [-13.254545, 8.462919], + [-13.255328, 8.46302], + [-13.255293, 8.462922], + [-13.255388, 8.462928], + [-13.255409, 8.462916], + [-13.255456, 8.462743], + [-13.255457, 8.462742], + [-13.255834, 8.463048], + [-13.256702, 8.463623], + [-13.256967, 8.463044], + [-13.257258, 8.462828], + [-13.25686, 8.462302], + [-13.257302, 8.461804], + [-13.25751, 8.46208], + [-13.258151, 8.462637], + [-13.258456, 8.46264], + [-13.259004, 8.46324], + [-13.258972, 8.463396], + [-13.259602, 8.463384], + [-13.260536, 8.463325], + [-13.261114, 8.464091], + [-13.261287, 8.464318], + [-13.261204, 8.464667], + [-13.26124, 8.465833], + [-13.260847, 8.466555], + [-13.261503, 8.467446], + [-13.262066, 8.466651], + [-13.262353, 8.466528], + [-13.262981, 8.466101], + [-13.263458, 8.465088], + [-13.263473, 8.464397], + [-13.263761, 8.463586], + [-13.263553, 8.462372], + [-13.26395, 8.462369], + [-13.264238, 8.462551], + [-13.264631, 8.462083], + [-13.264811, 8.461829], + [-13.264858, 8.461273], + [-13.265359, 8.461192], + [-13.265385, 8.460923] + ] + ], + "type": "Polygon" + }, + "id": 219, + "properties": { + "cc:admin:id": ["26"], + "cc:oBld:total": 5644, + "cc:pop:fifteen-to-twenty-four": 9910.708016722661, + "cc:pop:grid3-total": 23022.30374324879, + "cc:pop:kontur-total": 35641.16257547161, + "cc:pop:men": 21959.11005702507, + "cc:pop:sixty-plus": 3368.862790499202, + "cc:pop:total": 43138.259022141756, + "cc:pop:under-five": 4990.127968494548, + "cc:pop:women": 21179.148965116692, + "cc:pop:women-fiften-to-forty-nine": 11332.88474910658, + "cc:pop:wp-total": 34515.75461495638, + "cc:pop:wp-total-UN": 40028.261490725585, + "cc:id": "219", + "cc:Name": "Kingtom Police Hospital (MI Room)", + "cc:site": [-13.2549, 8.4556], + "user:parentName": "Freetown", + "user:code": "OU_278324", + "user:orgUnitId": "lekPjgUm0o2", + "user:level": "4", + "user:parentId": "C9uduqDZr9d" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.206319, 8.47588], + [-13.205325, 8.474158], + [-13.205096, 8.474363], + [-13.204938, 8.474545], + [-13.204222, 8.474194], + [-13.204585, 8.473483], + [-13.20462, 8.473043], + [-13.204659, 8.473005], + [-13.202412, 8.469114], + [-13.199127, 8.469114], + [-13.198359, 8.468967], + [-13.197862, 8.468566], + [-13.197782, 8.468478], + [-13.197394, 8.467995], + [-13.197028, 8.467923], + [-13.1967, 8.468294], + [-13.196131, 8.468282], + [-13.196154, 8.467974], + [-13.196956, 8.467291], + [-13.196849, 8.466779], + [-13.196112, 8.466832], + [-13.196099, 8.466008], + [-13.195248, 8.46605], + [-13.194373, 8.466084], + [-13.19432, 8.465335], + [-13.194314, 8.464624], + [-13.193342, 8.46466], + [-13.192415, 8.464787], + [-13.192407, 8.465373], + [-13.191554, 8.465397], + [-13.190639, 8.465387], + [-13.190539, 8.465419], + [-13.1848, 8.4748], + [-13.1867, 8.482899], + [-13.194238, 8.482131], + [-13.195331, 8.481659], + [-13.195111, 8.480943], + [-13.195569, 8.480741], + [-13.195675, 8.48053], + [-13.195738, 8.48033], + [-13.19578, 8.480316], + [-13.195901, 8.480351], + [-13.196072, 8.480364], + [-13.196638, 8.480115], + [-13.19752, 8.480216], + [-13.198084, 8.479895], + [-13.198292, 8.480297], + [-13.199009, 8.480643], + [-13.199462, 8.479163], + [-13.19856, 8.47921], + [-13.198344, 8.479284], + [-13.198361, 8.47908], + [-13.197994, 8.478227], + [-13.198079, 8.477902], + [-13.198134, 8.477824], + [-13.199699, 8.478513], + [-13.200965, 8.478833], + [-13.201052, 8.47844], + [-13.20109, 8.478223], + [-13.201111, 8.477988], + [-13.201129, 8.477838], + [-13.200367, 8.477661], + [-13.198932, 8.476779], + [-13.198932, 8.476777], + [-13.200136, 8.476658], + [-13.200266, 8.476821], + [-13.200833, 8.477413], + [-13.201387, 8.477645], + [-13.201905, 8.477631], + [-13.202561, 8.477536], + [-13.20298, 8.477634], + [-13.203398, 8.477726], + [-13.204651, 8.477634], + [-13.205419, 8.477437], + [-13.206319, 8.47588] + ] + ], + "type": "Polygon" + }, + "id": 220, + "properties": { + "cc:admin:id": ["26"], + "cc:oBld:total": 5577, + "cc:pop:fifteen-to-twenty-four": 12667.468857309064, + "cc:pop:grid3-total": 67099.96712646846, + "cc:pop:kontur-total": 53599.42329387333, + "cc:pop:men": 27145.334541793593, + "cc:pop:sixty-plus": 4298.72734135676, + "cc:pop:total": 55346.35248392748, + "cc:pop:under-five": 6395.603532541634, + "cc:pop:women": 28201.0179421339, + "cc:pop:women-fiften-to-forty-nine": 15082.967360715193, + "cc:pop:wp-total": 58321.70137695668, + "cc:pop:wp-total-UN": 67610.99343866966, + "cc:id": "220", + "cc:Name": "Kissy Health Centre", + "cc:site": [-13.196, 8.4713], + "user:parentName": "Freetown", + "user:code": "OU_278340", + "user:orgUnitId": "FclfbEFMcf3", + "user:level": "4", + "user:parentId": "C9uduqDZr9d" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [-13.081199, 8.412099], + [-13.080399, 8.4099], + [-13.079299, 8.408499], + [-13.078199, 8.4054], + [-13.076299, 8.404599], + [-13.0757, 8.401799], + [-13.075699, 8.3979], + [-13.0746, 8.396499], + [-13.074299, 8.3951], + [-13.072599, 8.3929], + [-13.0713, 8.392899], + [-13.0699, 8.3915], + [-13.069299, 8.3893], + [-13.068699, 8.388999], + [-13.068499, 8.3865], + [-13.0674, 8.3838], + [-13.0657, 8.3821], + [-13.065399, 8.381], + [-13.0632, 8.380699], + [-13.061799, 8.3796], + [-13.060399, 8.379599], + [-13.058999, 8.3788], + [-13.0554, 8.378799], + [-13.055099, 8.3782], + [-13.0488, 8.3782], + [-13.048499, 8.377599], + [-13.0438, 8.377599], + [-13.0426, 8.377899], + [-13.041499, 8.3765], + [-13.0401, 8.375999], + [-13.039599, 8.374], + [-13.037599, 8.373399], + [-13.033499, 8.371499], + [-13.026899, 8.3705], + [-13.015, 8.3705], + [-13.010899, 8.3735], + [-13.005699, 8.377999], + [-13.002, 8.3761], + [-12.9983, 8.3748], + [-12.992599, 8.373399], + [-12.9865, 8.3715], + [-12.981799, 8.370799], + [-12.977, 8.370799], + [-12.9739, 8.371199], + [-12.966199, 8.3733], + [-12.9553, 8.375099], + [-12.9476, 8.377299], + [-12.9432, 8.377899], + [-12.936999, 8.378199], + [-12.9294, 8.3781], + [-12.927963, 8.377848], + [-12.926998, 8.379684], + [-12.929583, 8.382917], + [-12.930417, 8.387916], + [-12.93125, 8.387084], + [-12.932917, 8.387917], + [-12.93375, 8.389583], + [-12.93625, 8.390417], + [-12.937082, 8.39125], + [-12.938278, 8.39424], + [-12.937627, 8.394549], + [-12.937804, 8.394738], + [-12.937803, 8.394739], + [-12.934552, 8.396306], + [-12.93419, 8.3969], + [-12.933958, 8.397322], + [-12.932544, 8.398145], + [-12.931555, 8.398659], + [-12.931464, 8.399956], + [-12.932065, 8.401453], + [-12.933009, 8.402626], + [-12.933349, 8.402724], + [-12.933367, 8.403125], + [-12.933627, 8.403591], + [-12.934699, 8.403977], + [-12.935074, 8.404412], + [-12.936114, 8.404685], + [-12.937327, 8.404478], + [-12.937418, 8.406472], + [-12.937267, 8.408441], + [-12.937633, 8.409448], + [-12.937761, 8.410881], + [-12.937758, 8.41101], + [-12.939054, 8.411556], + [-12.939734, 8.412315], + [-12.940037, 8.412226], + [-12.940375, 8.41221], + [-12.941054, 8.412333], + [-12.941572, 8.41281], + [-12.942286, 8.413162], + [-12.945284, 8.413199], + [-12.94666, 8.413727], + [-12.947982, 8.413797], + [-12.945281, 8.420214], + [-12.944862, 8.421848], + [-12.944389, 8.422978], + [-12.943327, 8.424152], + [-12.943022, 8.424401], + [-12.942255, 8.425539], + [-12.941765, 8.429449], + [-12.940628, 8.432641], + [-12.940702, 8.434071], + [-12.940228, 8.435793], + [-12.940185, 8.43592], + [-12.940183, 8.435921], + [-12.939626, 8.435445], + [-12.938173, 8.434777], + [-12.937234, 8.434692], + [-12.936639, 8.434952], + [-12.936188, 8.43536], + [-12.935859, 8.435982], + [-12.935893, 8.436011], + [-12.937807, 8.438469], + [-12.937981, 8.440027], + [-12.938185, 8.440518], + [-12.939346, 8.43833], + [-12.939436, 8.438112], + [-12.940417, 8.439583], + [-12.943749, 8.44125], + [-12.942916, 8.44375], + [-12.940417, 8.445417], + [-12.93875, 8.449583], + [-12.940416, 8.452083], + [-12.939342, 8.454769], + [-12.939733, 8.455323], + [-12.941545, 8.45594], + [-12.942184, 8.456481], + [-12.942462, 8.456528], + [-12.943122, 8.456253], + [-12.9436, 8.455775], + [-12.944431, 8.455924], + [-12.944561, 8.458759], + [-12.945796, 8.461605], + [-12.946646, 8.461692], + [-12.947491, 8.462234], + [-12.948506, 8.462574], + [-12.94942, 8.462407], + [-12.950761, 8.461564], + [-12.951077, 8.461182], + [-12.951378, 8.461314], + [-12.950853, 8.461951], + [-12.950554, 8.463032], + [-12.950578, 8.464501], + [-12.950337, 8.465652], + [-12.950184, 8.465976], + [-12.94996, 8.466774], + [-12.949967, 8.467371], + [-12.950018, 8.467662], + [-12.950142, 8.467771], + [-12.950646, 8.467761], + [-12.951118, 8.4678], + [-12.951871, 8.467959], + [-12.952526, 8.468315], + [-12.953105, 8.467806], + [-12.953669, 8.467277], + [-12.954466, 8.466744], + [-12.954924, 8.466198], + [-12.955447, 8.46585], + [-12.955839, 8.4654], + [-12.956069, 8.465047], + [-12.956165, 8.464482], + [-12.956209, 8.463963], + [-12.956643, 8.46249], + [-12.957555, 8.461746], + [-12.957812, 8.461219], + [-12.957932, 8.460839], + [-12.958191, 8.460413], + [-12.958311, 8.460169], + [-12.958461, 8.460062], + [-12.958909, 8.460017], + [-12.95913, 8.46011], + [-12.959313, 8.460285], + [-12.959502, 8.46052], + [-12.959652, 8.460773], + [-12.959789, 8.461181], + [-12.959852, 8.461478], + [-12.960114, 8.461629], + [-12.960337, 8.461691], + [-12.960763, 8.461717], + [-12.961525, 8.461715], + [-12.96171, 8.461893], + [-12.961635, 8.46208], + [-12.961315, 8.461989], + [-12.961008, 8.462004], + [-12.960693, 8.462063], + [-12.960136, 8.462123], + [-12.959619, 8.461957], + [-12.959393, 8.461515], + [-12.959342, 8.461079], + [-12.959257, 8.460842], + [-12.959042, 8.460529], + [-12.95888, 8.460414], + [-12.95865, 8.460394], + [-12.958455, 8.460466], + [-12.958346, 8.460768], + [-12.958153, 8.461336], + [-12.957986, 8.46167], + [-12.957691, 8.462104], + [-12.957325, 8.462418], + [-12.957084, 8.462527], + [-12.956843, 8.462819], + [-12.956703, 8.463349], + [-12.956777, 8.464013], + [-12.956706, 8.464699], + [-12.956595, 8.464976], + [-12.956244, 8.465556], + [-12.955777, 8.466133], + [-12.955106, 8.466753], + [-12.954042, 8.467684], + [-12.953624, 8.468024], + [-12.953374, 8.468426], + [-12.953205, 8.468833], + [-12.953205, 8.468987], + [-12.953223, 8.469137], + [-12.953221, 8.469207], + [-12.953366, 8.471297], + [-12.953612, 8.471546], + [-12.953934, 8.471765], + [-12.95416, 8.472152], + [-12.954571, 8.472831], + [-12.954782, 8.473531], + [-12.954832, 8.474122], + [-12.954843, 8.474657], + [-12.954732, 8.475191], + [-12.954434, 8.475756], + [-12.95412, 8.476181], + [-12.953642, 8.476511], + [-12.95314, 8.476728], + [-12.952609, 8.476812], + [-12.951953, 8.476776], + [-12.950794, 8.477134], + [-12.950751, 8.477345], + [-12.95108, 8.478007], + [-12.951108, 8.478453], + [-12.951236, 8.479148], + [-12.951161, 8.479612], + [-12.951067, 8.479949], + [-12.950926, 8.480516], + [-12.950627, 8.481408], + [-12.950198, 8.482467], + [-12.949952, 8.483287], + [-12.949407, 8.484445], + [-12.948842, 8.485487], + [-12.948501, 8.485834], + [-12.948485, 8.48612], + [-12.948493, 8.486593], + [-12.948734, 8.486926], + [-12.949308, 8.487496], + [-12.949903, 8.488071], + [-12.950377, 8.488652], + [-12.950882, 8.489628], + [-12.95117, 8.490444], + [-12.951383, 8.491204], + [-12.951563, 8.491894], + [-12.951649, 8.492698], + [-12.951584, 8.494141], + [-12.951465, 8.495794], + [-12.951585, 8.496041], + [-12.951876, 8.49621], + [-12.952255, 8.496467], + [-12.952671, 8.49693], + [-12.9529, 8.4968], + [-12.9546, 8.4999], + [-12.955099, 8.501799], + [-12.9551, 8.503499], + [-12.955699, 8.5043], + [-12.955699, 8.506499], + [-12.954599, 8.5071], + [-12.9532, 8.5093], + [-12.953199, 8.5107], + [-12.9513, 8.5121], + [-12.9501, 8.513999], + [-12.949299, 8.5168], + [-12.9474, 8.518499], + [-12.945999, 8.520099], + [-12.942599, 8.5221], + [-12.9421, 8.5229], + [-12.9421, 8.524599], + [-12.9432, 8.525699], + [-12.944899, 8.5257], + [-12.946, 8.526799], + [-12.9488, 8.5268], + [-12.951799, 8.527599], + [-12.952399, 8.5282], + [-12.9521, 8.529899], + [-12.954899, 8.530999], + [-12.9554, 8.532099], + [-12.957399, 8.532099], + [-12.958199, 8.5307], + [-12.959299, 8.5301], + [-12.961299, 8.530399], + [-12.9615, 8.530999], + [-12.963199, 8.531299], + [-12.964, 8.5293], + [-12.966299, 8.529899], + [-12.965699, 8.530699], + [-12.9643, 8.531], + [-12.964599, 8.533199], + [-12.9651, 8.534299], + [-12.966499, 8.5346], + [-12.9674, 8.536499], + [-12.967899, 8.5368], + [-12.967899, 8.538499], + [-12.9674, 8.5393], + [-12.9674, 8.542399], + [-12.9676, 8.5438], + [-12.9676, 8.547399], + [-12.9671, 8.5482], + [-12.9671, 8.550099], + [-12.9676, 8.5513], + [-12.9679, 8.553499], + [-12.970699, 8.555399], + [-12.971, 8.556299], + [-12.973199, 8.557399], + [-12.9737, 8.558799], + [-12.975099, 8.5599], + [-12.975399, 8.5615], + [-12.9751, 8.563499], + [-12.976199, 8.563799], + [-12.977399, 8.562899], + [-12.977599, 8.5599], + [-12.978499, 8.5593], + [-12.983799, 8.5593], + [-12.983801, 8.559], + [-12.987899, 8.559], + [-12.9893, 8.559899], + [-12.993199, 8.559599], + [-12.994899, 8.558499], + [-12.9957, 8.5565], + [-12.996799, 8.556299], + [-12.9979, 8.554899], + [-13.0001, 8.5538], + [-13.002899, 8.5535], + [-13.006499, 8.554599], + [-13.0074, 8.555399], + [-13.0124, 8.5551], + [-13.014, 8.5571], + [-13.016, 8.558799], + [-13.017599, 8.5593], + [-13.019299, 8.561], + [-13.019599, 8.5618], + [-13.0193, 8.564899], + [-13.022099, 8.564899], + [-13.023799, 8.562899], + [-13.0243, 8.5613], + [-13.025099, 8.560999], + [-13.0254, 8.559599], + [-13.027399, 8.557399], + [-13.027399, 8.5554], + [-13.022899, 8.555999], + [-13.0218, 8.554599], + [-13.0218, 8.5529], + [-13.022399, 8.551499], + [-13.022399, 8.5499], + [-13.020399, 8.5488], + [-13.019599, 8.548799], + [-13.0176, 8.5474], + [-13.0179, 8.545999], + [-13.020099, 8.5435], + [-13.0226, 8.541299], + [-13.023499, 8.539599], + [-13.0235, 8.5382], + [-13.020999, 8.5368], + [-13.0174, 8.537099], + [-13.0174, 8.5363], + [-13.0213, 8.536], + [-13.023499, 8.536799], + [-13.024899, 8.538499], + [-13.024899, 8.5396], + [-13.024, 8.540999], + [-13.0204, 8.544299], + [-13.019, 8.545999], + [-13.019, 8.547099], + [-13.021499, 8.5479], + [-13.023799, 8.549899], + [-13.024, 8.552899], + [-13.024599, 8.554299], + [-13.025699, 8.5543], + [-13.0265, 8.551], + [-13.027599, 8.549599], + [-13.0279, 8.5474], + [-13.029899, 8.5446], + [-13.0315, 8.543199], + [-13.0335, 8.540999], + [-13.0371, 8.5393], + [-13.039599, 8.538999], + [-13.040699, 8.5365], + [-13.041499, 8.536299], + [-13.0415, 8.5351], + [-13.042399, 8.534899], + [-13.042399, 8.5332], + [-13.0396, 8.5318], + [-13.038199, 8.531499], + [-13.0365, 8.5301], + [-13.036499, 8.5293], + [-13.033999, 8.5263], + [-13.0318, 8.525099], + [-13.030999, 8.524], + [-13.0276, 8.5229], + [-13.027099, 8.526799], + [-13.025399, 8.528499], + [-13.023799, 8.528999], + [-13.0218, 8.529], + [-13.0204, 8.528199], + [-13.0204, 8.526799], + [-13.0215, 8.5257], + [-13.022899, 8.525099], + [-13.0229, 8.524], + [-13.024299, 8.5243], + [-13.024, 8.526299], + [-13.0224, 8.5271], + [-13.0218, 8.528199], + [-13.023799, 8.528199], + [-13.025999, 8.5268], + [-13.026199, 8.526299], + [-13.026199, 8.521], + [-13.0249, 8.5204], + [-13.024599, 8.5193], + [-13.0229, 8.517899], + [-13.0226, 8.515099], + [-13.025399, 8.5113], + [-13.027399, 8.5096], + [-13.029599, 8.508799], + [-13.0299, 8.508199], + [-13.032099, 8.507399], + [-13.0321, 8.506799], + [-13.0343, 8.505699], + [-13.036799, 8.5035], + [-13.037399, 8.501], + [-13.0357, 8.4988], + [-13.034, 8.4974], + [-13.0318, 8.4946], + [-13.0299, 8.492899], + [-13.027899, 8.4893], + [-13.0271, 8.4893], + [-13.0271, 8.490699], + [-13.029299, 8.492899], + [-13.029299, 8.494599], + [-13.0274, 8.495999], + [-13.0262, 8.496], + [-13.0251, 8.496799], + [-13.0251, 8.497899], + [-13.0262, 8.499299], + [-13.028499, 8.4993], + [-13.028499, 8.500099], + [-13.026199, 8.500099], + [-13.0249, 8.4982], + [-13.0243, 8.496799], + [-13.0257, 8.495399], + [-13.0285, 8.494599], + [-13.028499, 8.4938], + [-13.025999, 8.491799], + [-13.0257, 8.4893], + [-13.026499, 8.4876], + [-13.025699, 8.4868], + [-13.024299, 8.4871], + [-13.021299, 8.487099], + [-13.0199, 8.485999], + [-13.017899, 8.4824], + [-13.017399, 8.482399], + [-13.016299, 8.4807], + [-13.015099, 8.480399], + [-13.014601, 8.479], + [-13.018799, 8.480699], + [-13.0196, 8.4796], + [-13.020999, 8.479299], + [-13.020699, 8.473999], + [-13.020399, 8.4721], + [-13.0199, 8.471799], + [-13.019899, 8.4688], + [-13.0193, 8.468199], + [-13.0193, 8.466501], + [-13.019301, 8.4665], + [-13.019473, 8.466547], + [-13.019198, 8.46632], + [-13.018921, 8.465453], + [-13.018781, 8.464514], + [-13.018712, 8.463507], + [-13.018574, 8.462675], + [-13.018157, 8.461772], + [-13.017879, 8.462812], + [-13.018156, 8.463682], + [-13.018087, 8.465139], + [-13.017739, 8.465452], + [-13.016803, 8.465001], + [-13.016907, 8.465625], + [-13.01781, 8.465939], + [-13.018747, 8.466494], + [-13.018816, 8.4675], + [-13.019199, 8.468647], + [-13.019372, 8.46955], + [-13.01965, 8.471425], + [-13.019997, 8.473403], + [-13.020096, 8.473878], + [-13.017679, 8.473273], + [-13.017634, 8.473144], + [-13.018171, 8.472079], + [-13.01789, 8.47092], + [-13.017549, 8.470588], + [-13.01667, 8.470221], + [-13.016072, 8.470186], + [-13.014952, 8.470587], + [-13.013362, 8.470398], + [-13.013009, 8.470084], + [-13.013051, 8.469747], + [-13.013576, 8.469398], + [-13.013248, 8.468594], + [-13.013403, 8.468108], + [-13.013289, 8.4677], + [-13.01284, 8.467369], + [-13.01257, 8.467306], + [-13.01223, 8.464236], + [-13.012381, 8.464215], + [-13.01472, 8.465297], + [-13.015078, 8.46522], + [-13.015383, 8.464942], + [-13.015616, 8.463866], + [-13.015467, 8.463184], + [-13.014977, 8.462286], + [-13.013188, 8.460268], + [-13.012948, 8.460167], + [-13.012083, 8.460427], + [-13.012083, 8.459584], + [-13.0139, 8.457161], + [-13.014743, 8.457274], + [-13.016249, 8.45125], + [-13.016249, 8.449584], + [-13.014582, 8.449583], + [-13.007242, 8.443711], + [-13.007242, 8.44371], + [-13.011632, 8.441439], + [-13.012738, 8.441162], + [-13.014068, 8.441108], + [-13.014396, 8.440943], + [-13.015495, 8.438484], + [-13.015628, 8.438177], + [-13.016673, 8.435668], + [-13.019582, 8.436249], + [-13.019583, 8.43125], + [-13.019729, 8.431103], + [-13.019812, 8.431169], + [-13.021157, 8.425788], + [-13.021738, 8.425661], + [-13.023765, 8.426674], + [-13.023812, 8.426784], + [-13.024304, 8.426062], + [-13.02485, 8.425775], + [-13.02639, 8.424052], + [-13.028451, 8.424467], + [-13.028989, 8.424989], + [-13.029409, 8.424939], + [-13.029315, 8.423425], + [-13.030595, 8.42298], + [-13.030866, 8.422569], + [-13.030707, 8.422035], + [-13.030708, 8.422033], + [-13.033779, 8.423261], + [-13.03502, 8.422829], + [-13.036382, 8.423033], + [-13.037624, 8.423566], + [-13.037804, 8.42402], + [-13.037579, 8.424583], + [-13.039686, 8.424583], + [-13.039851, 8.424269], + [-13.040067, 8.424159], + [-13.040236, 8.423857], + [-13.040429, 8.424011], + [-13.040472, 8.424017], + [-13.040844, 8.420311], + [-13.041673, 8.420877], + [-13.042512, 8.421046], + [-13.04313, 8.42081], + [-13.043306, 8.420439], + [-13.043202, 8.419891], + [-13.042761, 8.419381], + [-13.0428, 8.418453], + [-13.04229, 8.417725], + [-13.041943, 8.417648], + [-13.041795, 8.417372], + [-13.041881, 8.417105], + [-13.044583, 8.418158], + [-13.045301, 8.418141], + [-13.04606, 8.4173], + [-13.046971, 8.41673], + [-13.047423, 8.416743], + [-13.04759, 8.417047], + [-13.047338, 8.417738], + [-13.047667, 8.418492], + [-13.04914, 8.419258], + [-13.04969, 8.419227], + [-13.050998, 8.420028], + [-13.051374, 8.42006], + [-13.051617, 8.419455], + [-13.051904, 8.419284], + [-13.053259, 8.41932], + [-13.053372, 8.419425], + [-13.052534, 8.422778], + [-13.052602, 8.422791], + [-13.053499, 8.4226], + [-13.0535, 8.421499], + [-13.0549, 8.4199], + [-13.056499, 8.419899], + [-13.0568, 8.4193], + [-13.0585, 8.4193], + [-13.060999, 8.419899], + [-13.063999, 8.417399], + [-13.0654, 8.4143], + [-13.068199, 8.4132], + [-13.070399, 8.4129], + [-13.0724, 8.414299], + [-13.076799, 8.4143], + [-13.078699, 8.413499], + [-13.0787, 8.412899], + [-13.081199, 8.412099] + ] + ], + [ + [ + [-12.962399, 8.5321], + [-12.960999, 8.531], + [-12.9593, 8.531], + [-12.9585, 8.532099], + [-12.9596, 8.5329], + [-12.962099, 8.532899], + [-12.962399, 8.5321] + ] + ], + [ + [ + [-13.022599, 8.4824], + [-13.021499, 8.4807], + [-13.019, 8.4815], + [-13.019, 8.482899], + [-13.021299, 8.484599], + [-13.0218, 8.485399], + [-13.022599, 8.485099], + [-13.022599, 8.4824] + ] + ] + ], + "type": "MultiPolygon" + }, + "id": 221, + "properties": { + "cc:admin:id": ["62"], + "cc:oBld:total": 648, + "cc:pop:fifteen-to-twenty-four": 2379.919814429936, + "cc:pop:grid3-total": 9428.954344145557, + "cc:pop:kontur-total": 16392.715948330282, + "cc:pop:men": 6296.810280758676, + "cc:pop:sixty-plus": 785.2804527545856, + "cc:pop:total": 13344.812472127807, + "cc:pop:under-five": 2209.141022371104, + "cc:pop:women": 7048.002191369133, + "cc:pop:women-fiften-to-forty-nine": 3615.074003721077, + "cc:pop:wp-total": 13535.317502527294, + "cc:pop:wp-total-UN": 15711.238065365204, + "cc:id": "221", + "cc:Name": "Kissy Koya MCHP", + "cc:site": [-12.9783, 8.4025], + "user:parentName": "Koya", + "user:code": "OU_254968", + "user:orgUnitId": "XLiqwElsFHO", + "user:level": "4", + "user:parentId": "pRHGAROvuyI" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.069104, 8.353874], + [-13.068996, 8.353388], + [-13.068562, 8.353015], + [-13.067193, 8.352871], + [-13.067221, 8.352648], + [-13.068329, 8.352177], + [-13.068654, 8.351349], + [-13.068666, 8.350956], + [-13.068446, 8.350563], + [-13.067965, 8.350423], + [-13.067487, 8.350523], + [-13.067486, 8.350522], + [-13.067916, 8.347084], + [-13.067776, 8.347084], + [-13.067775, 8.347082], + [-13.068523, 8.345785], + [-13.067296, 8.343854], + [-13.06776, 8.342543], + [-13.066667, 8.341899], + [-13.065687, 8.341538], + [-13.065117, 8.340538], + [-13.06593, 8.339199], + [-13.065232, 8.338966], + [-13.065382, 8.338493], + [-13.065318, 8.337917], + [-13.066249, 8.337916], + [-13.06625, 8.335306], + [-13.066951, 8.334036], + [-13.065636, 8.333694], + [-13.065428, 8.333676], + [-13.065427, 8.333674], + [-13.067178, 8.330572], + [-13.067609, 8.329739], + [-13.06714, 8.329727], + [-13.066628, 8.329318], + [-13.065981, 8.329216], + [-13.065981, 8.329214], + [-13.066457, 8.328678], + [-13.067045, 8.328371], + [-13.068184, 8.328032], + [-13.068391, 8.327675], + [-13.068422, 8.32764], + [-13.068003, 8.327264], + [-13.067177, 8.326846], + [-13.065847, 8.326426], + [-13.064907, 8.326223], + [-13.064415, 8.326174], + [-13.062732, 8.326475], + [-13.061624, 8.326767], + [-13.061031, 8.326913], + [-13.059995, 8.327179], + [-13.059625, 8.327276], + [-13.059497, 8.327246], + [-13.057938, 8.327671], + [-13.056374, 8.328075], + [-13.056384, 8.328138], + [-13.055027, 8.328534], + [-13.054898, 8.328028], + [-13.054424, 8.327484], + [-13.053864, 8.32754], + [-13.053539, 8.326932], + [-13.05271, 8.326908], + [-13.052717, 8.326388], + [-13.052557, 8.325645], + [-13.052481, 8.325593], + [-13.051576, 8.325557], + [-13.050939, 8.323307], + [-13.050886, 8.323277], + [-13.050131, 8.322319], + [-13.04982, 8.32243], + [-13.0491, 8.322257], + [-13.048874, 8.322194], + [-13.048956, 8.320943], + [-13.049273, 8.32097], + [-13.049968, 8.320514], + [-13.050456, 8.320243], + [-13.05033, 8.319463], + [-13.049855, 8.318968], + [-13.04965, 8.31857], + [-13.049676, 8.318419], + [-13.049631, 8.317847], + [-13.049611, 8.317755], + [-13.049225, 8.31748], + [-13.048827, 8.317182], + [-13.04663, 8.317486], + [-13.046605, 8.317928], + [-13.046798, 8.318335], + [-13.046624, 8.318926], + [-13.046222, 8.318795], + [-13.045467, 8.31851], + [-13.045068, 8.319471], + [-13.044799, 8.319397], + [-13.044071, 8.320434], + [-13.044754, 8.320851], + [-13.045714, 8.321475], + [-13.046241, 8.32205], + [-13.046266, 8.322106], + [-13.046337, 8.322496], + [-13.04644, 8.322861], + [-13.04611, 8.323115], + [-13.045079, 8.322897], + [-13.04518, 8.323831], + [-13.044465, 8.324382], + [-13.043828, 8.323486], + [-13.042024, 8.322191], + [-13.041198, 8.320361], + [-13.039851, 8.320279], + [-13.039627, 8.319799], + [-13.03898, 8.320002], + [-13.038796, 8.320261], + [-13.037794, 8.32025], + [-13.038373, 8.319547], + [-13.039084, 8.31709], + [-13.040703, 8.315154], + [-13.040968, 8.31449], + [-13.040664, 8.314311], + [-13.040297, 8.314225], + [-13.039842, 8.314411], + [-13.039127, 8.314051], + [-13.038826, 8.313638], + [-13.037758, 8.31296], + [-13.037677, 8.313065], + [-13.03698, 8.314647], + [-13.03632, 8.315727], + [-13.03547, 8.317096], + [-13.035186, 8.317708], + [-13.034373, 8.319874], + [-13.032223, 8.320841], + [-13.032741, 8.32161], + [-13.031853, 8.321983], + [-13.030302, 8.32262], + [-13.029869, 8.322686], + [-13.028933, 8.323554], + [-13.028481, 8.324417], + [-13.028099, 8.325055], + [-13.028287, 8.325496], + [-13.030024, 8.327247], + [-13.030258, 8.327517], + [-13.030673, 8.327475], + [-13.031195, 8.327106], + [-13.032002, 8.328044], + [-13.032163, 8.328327], + [-13.032511, 8.328858], + [-13.0317, 8.329676], + [-13.031742, 8.329793], + [-13.032075, 8.330548], + [-13.031892, 8.331223], + [-13.030749, 8.331609], + [-13.029242, 8.332094], + [-13.029476, 8.333115], + [-13.029712, 8.334015], + [-13.029769, 8.334771], + [-13.029629, 8.334767], + [-13.029642, 8.335129], + [-13.029654, 8.335339], + [-13.034512, 8.335486], + [-13.035576, 8.335394], + [-13.034524, 8.33554], + [-13.032918, 8.33558], + [-13.032348, 8.33557], + [-13.029648, 8.335475], + [-13.029674, 8.335832], + [-13.029642, 8.336402], + [-13.029634, 8.336744], + [-13.029647, 8.336863], + [-13.03153, 8.336728], + [-13.031553, 8.337717], + [-13.03155, 8.337898], + [-13.031522, 8.338358], + [-13.030557, 8.340183], + [-13.030524, 8.340525], + [-13.030617, 8.340759], + [-13.030924, 8.340801], + [-13.030933, 8.341242], + [-13.030975, 8.341707], + [-13.030969, 8.342165], + [-13.030254, 8.342206], + [-13.030138, 8.343054], + [-13.029802, 8.343339], + [-13.029814, 8.344115], + [-13.030204, 8.344956], + [-13.030228, 8.345148], + [-13.030126, 8.345436], + [-13.030141, 8.345448], + [-13.029834, 8.3465], + [-13.033749, 8.350417], + [-13.033749, 8.357083], + [-13.032781, 8.359502], + [-13.032349, 8.355344], + [-13.032289, 8.356846], + [-13.032188, 8.358352], + [-13.032317, 8.359345], + [-13.032917, 8.3603], + [-13.033593, 8.360965], + [-13.033979, 8.361526], + [-13.034702, 8.362119], + [-13.035165, 8.362557], + [-13.035697, 8.362628], + [-13.036087, 8.362344], + [-13.036242, 8.361953], + [-13.036632, 8.361066], + [-13.036775, 8.360829], + [-13.037591, 8.360876], + [-13.037935, 8.361172], + [-13.037817, 8.361645], + [-13.03751, 8.361966], + [-13.037439, 8.362403], + [-13.03745, 8.36303], + [-13.037591, 8.363458], + [-13.037533, 8.36393], + [-13.037295, 8.364499], + [-13.036977, 8.364878], + [-13.036182, 8.364913], + [-13.035744, 8.364641], + [-13.035116, 8.364204], + [-13.034738, 8.364216], + [-13.034264, 8.364654], + [-13.03379, 8.365115], + [-13.033282, 8.365282], + [-13.032678, 8.365743], + [-13.032382, 8.366442], + [-13.032346, 8.36707], + [-13.032464, 8.367472], + [-13.033245, 8.367566], + [-13.034051, 8.367389], + [-13.034962, 8.367176], + [-13.035922, 8.367519], + [-13.036811, 8.368432], + [-13.037403, 8.368858], + [-13.038432, 8.369556], + [-13.039061, 8.36964], + [-13.039297, 8.370102], + [-13.039261, 8.370835], + [-13.039107, 8.37106], + [-13.03867, 8.371001], + [-13.037923, 8.370623], + [-13.036671, 8.370503], + [-13.035794, 8.371706], + [-13.03554, 8.372159], + [-13.035214, 8.372867], + [-13.035172, 8.373355], + [-13.039601, 8.373972], + [-13.040118, 8.370118], + [-13.040119, 8.370117], + [-13.042894, 8.376512], + [-13.065426, 8.37623], + [-13.062653, 8.364852], + [-13.062655, 8.364852], + [-13.06321, 8.365857], + [-13.063818, 8.365735], + [-13.063124, 8.364536], + [-13.060861, 8.362497], + [-13.060942, 8.3621], + [-13.061215, 8.362], + [-13.062015, 8.362143], + [-13.063077, 8.362614], + [-13.063674, 8.362588], + [-13.064541, 8.362181], + [-13.064976, 8.361343], + [-13.065192, 8.360361], + [-13.065204, 8.359262], + [-13.064455, 8.357774], + [-13.064514, 8.357493], + [-13.064745, 8.357267], + [-13.065641, 8.357354], + [-13.06709, 8.357877], + [-13.067577, 8.3577], + [-13.068182, 8.356979], + [-13.068359, 8.355359], + [-13.069104, 8.353874] + ] + ], + "type": "Polygon" + }, + "id": 222, + "properties": { + "cc:admin:id": ["112"], + "cc:oBld:total": 10467, + "cc:pop:fifteen-to-twenty-four": 6357.79758024706, + "cc:pop:grid3-total": 74056.42797947662, + "cc:pop:kontur-total": 28690.30850841876, + "cc:pop:men": 12860.5195135903, + "cc:pop:sixty-plus": 2092.2388067086317, + "cc:pop:total": 26895.879867637697, + "cc:pop:under-five": 2966.7293137266065, + "cc:pop:women": 14035.36035404739, + "cc:pop:women-fiften-to-forty-nine": 7503.970756594845, + "cc:pop:wp-total": 30580.55444754185, + "cc:pop:wp-total-UN": 35454.5779778371, + "cc:id": "222", + "cc:Name": "Kissy Town CHP", + "cc:site": [-13.0424, 8.3371], + "user:parentName": "Rural Western Area", + "user:code": "OU_278396", + "user:orgUnitId": "lmNWdmeOYmV", + "user:level": "4", + "user:parentId": "qtr8GGlm4gg" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.08625, 8.832082], + [-11.086249, 8.831257], + [-11.085988, 8.831329], + [-11.085117, 8.831783], + [-11.083749, 8.830417], + [-11.079583, 8.829582], + [-11.080416, 8.82625], + [-11.075417, 8.820417], + [-11.077768, 8.814928], + [-11.077243, 8.813813], + [-11.07611, 8.812455], + [-11.07322, 8.807348], + [-11.075417, 8.806249], + [-11.077916, 8.802082], + [-11.077916, 8.800417], + [-11.077082, 8.799582], + [-11.069583, 8.797917], + [-11.067917, 8.79625], + [-11.069582, 8.793749], + [-11.067917, 8.790416], + [-11.068749, 8.78625], + [-11.064672, 8.786929], + [-11.064634, 8.787289], + [-11.063707, 8.78635], + [-11.063117, 8.786277], + [-11.062386, 8.785813], + [-11.059685, 8.785489], + [-11.057992, 8.784791], + [-11.057865, 8.784634], + [-11.057084, 8.785415], + [-11.057082, 8.785415], + [-11.05375, 8.777082], + [-11.053749, 8.767917], + [-11.047658, 8.768593], + [-11.047366, 8.768185], + [-11.047181, 8.767458], + [-11.04747, 8.767133], + [-11.046987, 8.765882], + [-11.047791, 8.764846], + [-11.048304, 8.764775], + [-11.048371, 8.764533], + [-11.04816, 8.764415], + [-11.047883, 8.764703], + [-11.047882, 8.764702], + [-11.048018, 8.764224], + [-11.048695, 8.764054], + [-11.048691, 8.763764], + [-11.048543, 8.763724], + [-11.045699, 8.7662], + [-11.037, 8.770699], + [-11.032199, 8.771399], + [-11.0281, 8.7711], + [-11.025599, 8.770399], + [-11.022, 8.7684], + [-11.018799, 8.766999], + [-11.0145, 8.7646], + [-11.011299, 8.763199], + [-11.007, 8.7608], + [-11.0037, 8.7595], + [-11.000299, 8.7578], + [-10.9926, 8.760999], + [-10.988299, 8.762899], + [-10.9848, 8.762799], + [-10.979999, 8.7607], + [-10.977099, 8.7604], + [-10.9744, 8.7612], + [-10.972999, 8.763], + [-10.971799, 8.7655], + [-10.9714, 8.767599], + [-10.973399, 8.773799], + [-10.973799, 8.7787], + [-10.973199, 8.7818], + [-10.971999, 8.783899], + [-10.969799, 8.7858], + [-10.962299, 8.7893], + [-10.959699, 8.7898], + [-10.951499, 8.7902], + [-10.948, 8.790899], + [-10.9435, 8.792799], + [-10.941, 8.793399], + [-10.9356, 8.793999], + [-10.9331, 8.794599], + [-10.927699, 8.7968], + [-10.924199, 8.7973], + [-10.9178, 8.797599], + [-10.9144, 8.798299], + [-10.9069, 8.801899], + [-10.9033, 8.803899], + [-10.902958, 8.803991], + [-10.903101, 8.804302], + [-10.903438, 8.804512], + [-10.904629, 8.804989], + [-10.907632, 8.805424], + [-10.90929, 8.803853], + [-10.909363, 8.804022], + [-10.909621, 8.803752], + [-10.910765, 8.803209], + [-10.910822, 8.803314], + [-10.911933, 8.802934], + [-10.912433, 8.802975], + [-10.912461, 8.802827], + [-10.913183, 8.802831], + [-10.913095, 8.803054], + [-10.911899, 8.803196], + [-10.910093, 8.803714], + [-10.909583, 8.804008], + [-10.909583, 8.807036], + [-10.916207, 8.807037], + [-10.920113, 8.813802], + [-10.919851, 8.814258], + [-10.923749, 8.814582], + [-10.924582, 8.815416], + [-10.92375, 8.827082], + [-10.92375, 8.827916], + [-10.943749, 8.829583], + [-10.943749, 8.837916], + [-10.939748, 8.841919], + [-10.940804, 8.843749], + [-10.939313, 8.84375], + [-10.940693, 8.846139], + [-10.945456, 8.84614], + [-10.945856, 8.853333], + [-10.950137, 8.853334], + [-10.954043, 8.860099], + [-10.958605, 8.8601], + [-10.95875, 8.86125], + [-10.960611, 8.861249], + [-10.960654, 8.860549], + [-10.960679, 8.859629], + [-10.960378, 8.858707], + [-10.960423, 8.858295], + [-10.961088, 8.857119], + [-10.961194, 8.856366], + [-10.961078, 8.856001], + [-10.964582, 8.855416], + [-10.967082, 8.85375], + [-10.969582, 8.854583], + [-10.970416, 8.855417], + [-10.970417, 8.856249], + [-10.96875, 8.860417], + [-10.96875, 8.869583], + [-10.969583, 8.870416], + [-10.970417, 8.870417], + [-10.972917, 8.87125], + [-10.97375, 8.871249], + [-10.977083, 8.870417], + [-10.983749, 8.870417], + [-10.98375, 8.874582], + [-10.985416, 8.875416], + [-10.987067, 8.875967], + [-10.986525, 8.876869], + [-10.984253, 8.878611], + [-10.98371, 8.879306], + [-10.983702, 8.879771], + [-10.983772, 8.880054], + [-10.983161, 8.882621], + [-10.985417, 8.88375], + [-10.988749, 8.884582], + [-10.991249, 8.882083], + [-10.992916, 8.882083], + [-10.992917, 8.888749], + [-10.997917, 8.88625], + [-11.000416, 8.887916], + [-11.000417, 8.890416], + [-11.004583, 8.892916], + [-11.005209, 8.892602], + [-11.004871, 8.892315], + [-11.003333, 8.891839], + [-11.001844, 8.891027], + [-11.001657, 8.890843], + [-11.002916, 8.889583], + [-11.005416, 8.890416], + [-11.007083, 8.887083], + [-11.012082, 8.887082], + [-11.014583, 8.88375], + [-11.018749, 8.883749], + [-11.01875, 8.87375], + [-11.024582, 8.87375], + [-11.02625, 8.875416], + [-11.02875, 8.875417], + [-11.033749, 8.878749], + [-11.037082, 8.880416], + [-11.041249, 8.87625], + [-11.04125, 8.875416], + [-11.043749, 8.873749], + [-11.043749, 8.872082], + [-11.042083, 8.86625], + [-11.047916, 8.867916], + [-11.054582, 8.864582], + [-11.054583, 8.85875], + [-11.055417, 8.857917], + [-11.056249, 8.857916], + [-11.05625, 8.856249], + [-11.058749, 8.854582], + [-11.062082, 8.84875], + [-11.066249, 8.84625], + [-11.069582, 8.847916], + [-11.072082, 8.844583], + [-11.073749, 8.84125], + [-11.079582, 8.840416], + [-11.079583, 8.83625], + [-11.080416, 8.836249], + [-11.082916, 8.832917], + [-11.085416, 8.832916], + [-11.08625, 8.832082] + ] + ], + "type": "Polygon" + }, + "id": 223, + "properties": { + "cc:admin:id": ["119"], + "cc:oBld:total": 900, + "cc:pop:fifteen-to-twenty-four": 983.6627961863794, + "cc:pop:grid3-total": 11061.07659316856, + "cc:pop:kontur-total": 4611.823693055679, + "cc:pop:men": 2484.6571466644014, + "cc:pop:sixty-plus": 291.39463440808447, + "cc:pop:total": 5037.858148663307, + "cc:pop:under-five": 828.7412785554454, + "cc:pop:women": 2553.2010019989057, + "cc:pop:women-fiften-to-forty-nine": 1246.8589640785383, + "cc:pop:wp-total": 5338.013664732921, + "cc:pop:wp-total-UN": 6189.332455781069, + "cc:id": "223", + "cc:Name": "Koakor MCHP", + "cc:site": [-10.9919, 8.7955], + "user:parentName": "Gbense", + "user:code": "OU_233377", + "user:orgUnitId": "EQc3n1juPFn", + "user:level": "4", + "user:parentId": "TQkG0sX9nca" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.016838, 8.640416], + [-11.016199, 8.637699], + [-11.014, 8.632499], + [-11.0137, 8.629], + [-11.0142, 8.626399], + [-11.0161, 8.622099], + [-11.016599, 8.6183], + [-11.016, 8.6148], + [-11.0122, 8.607], + [-11.009399, 8.6017], + [-11.005, 8.604699], + [-11.002299, 8.6072], + [-10.9999, 8.610099], + [-10.9976, 8.614599], + [-10.995799, 8.6168], + [-10.993199, 8.618199], + [-10.9892, 8.618799], + [-10.9796, 8.6188], + [-10.977666, 8.619174], + [-10.978676, 8.619663], + [-10.97877, 8.61985], + [-10.978829, 8.623082], + [-10.978347, 8.626093], + [-10.978423, 8.626262], + [-10.979127, 8.627208], + [-10.979294, 8.627663], + [-10.979595, 8.627849], + [-10.979731, 8.628014], + [-10.981167, 8.6274], + [-10.981259, 8.627386], + [-10.981787, 8.627187], + [-10.984239, 8.626281], + [-10.984335, 8.626482], + [-10.984202, 8.62854], + [-10.981786, 8.629823], + [-10.982083, 8.630416], + [-10.984582, 8.630416], + [-10.984583, 8.625417], + [-10.984996, 8.62521], + [-10.985007, 8.625674], + [-10.98523, 8.626432], + [-10.985302, 8.627209], + [-10.985683, 8.627754], + [-10.985844, 8.627954], + [-10.98591, 8.628707], + [-10.986544, 8.630013], + [-10.986267, 8.631505], + [-10.986729, 8.632301], + [-10.986537, 8.632675], + [-10.986704, 8.6342], + [-10.987538, 8.634607], + [-10.987656, 8.635094], + [-10.987925, 8.635088], + [-10.987966, 8.63546], + [-10.988329, 8.635583], + [-10.988439, 8.635806], + [-10.988189, 8.635985], + [-10.988226, 8.636152], + [-10.988745, 8.636388], + [-10.988843, 8.637154], + [-10.988852, 8.637145], + [-10.988999, 8.636815], + [-10.989067, 8.636639], + [-10.989581, 8.636158], + [-10.989773, 8.637294], + [-10.990174, 8.636756], + [-10.990698, 8.635402], + [-10.990939, 8.634885], + [-10.992543, 8.636232], + [-10.992861, 8.6365], + [-10.992955, 8.636585], + [-10.993424, 8.636892], + [-10.993663, 8.637053], + [-10.993937, 8.636835], + [-10.99443, 8.636436], + [-10.994948, 8.636323], + [-10.995431, 8.636277], + [-10.99576, 8.636309], + [-10.996112, 8.636347], + [-10.996703, 8.63635], + [-10.997102, 8.636788], + [-10.996914, 8.637156], + [-10.996616, 8.63781], + [-10.995829, 8.638693], + [-10.995702, 8.638989], + [-10.995733, 8.639016], + [-10.997202, 8.641007], + [-10.997562, 8.641566], + [-10.998677, 8.643253], + [-10.998898, 8.643826], + [-10.998857, 8.644242], + [-10.998677, 8.644547], + [-11.000417, 8.645416], + [-11.002083, 8.644584], + [-11.012082, 8.644584], + [-11.012083, 8.646776], + [-11.0135, 8.6458], + [-11.016399, 8.644899], + [-11.016999, 8.6411], + [-11.016838, 8.640416] + ] + ], + "type": "Polygon" + }, + "id": 224, + "properties": { + "cc:admin:id": ["33"], + "cc:oBld:total": 3400, + "cc:pop:fifteen-to-twenty-four": 3245.14270320467, + "cc:pop:grid3-total": 18059.334208672833, + "cc:pop:kontur-total": 17187.19718112196, + "cc:pop:men": 8786.567714622599, + "cc:pop:sixty-plus": 972.462343970899, + "cc:pop:total": 16577.12383753644, + "cc:pop:under-five": 2601.146387763743, + "cc:pop:women": 7790.556122913839, + "cc:pop:women-fiften-to-forty-nine": 3910.3553119668113, + "cc:pop:wp-total": 14311.438075863693, + "cc:pop:wp-total-UN": 16584.327973794807, + "cc:id": "224", + "cc:Name": "Koakoyima CHC", + "cc:site": [-10.9945, 8.6224], + "user:parentName": "Tankoro", + "user:code": "OU_233327", + "user:orgUnitId": "SnCrOCRrxGX", + "user:level": "4", + "user:parentId": "M2qEv692lS6" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.623042, 8.63689], + [-10.623499, 8.634599], + [-10.623299, 8.631999], + [-10.621999, 8.6287], + [-10.6185, 8.6245], + [-10.617, 8.622199], + [-10.6161, 8.6186], + [-10.615899, 8.614899], + [-10.6158, 8.5915], + [-10.615199, 8.5865], + [-10.612799, 8.581099], + [-10.611299, 8.575299], + [-10.6074, 8.5669], + [-10.6035, 8.5596], + [-10.6006, 8.5559], + [-10.602199, 8.5498], + [-10.594899, 8.564599], + [-10.590199, 8.5694], + [-10.5831, 8.5716], + [-10.5812, 8.575099], + [-10.582299, 8.591399], + [-10.579499, 8.5957], + [-10.575799, 8.597099], + [-10.5664, 8.5957], + [-10.559399, 8.601899], + [-10.5516, 8.6053], + [-10.544199, 8.611699], + [-10.531, 8.612999], + [-10.526199, 8.6098], + [-10.5229, 8.6102], + [-10.5156, 8.6181], + [-10.523499, 8.627299], + [-10.525, 8.6296], + [-10.526, 8.632], + [-10.5269, 8.6363], + [-10.5295, 8.6414], + [-10.533399, 8.649799], + [-10.5346, 8.6549], + [-10.537299, 8.661399], + [-10.538099, 8.667999], + [-10.5386, 8.670199], + [-10.5405, 8.6733], + [-10.549699, 8.682399], + [-10.551399, 8.6846], + [-10.5528, 8.6883], + [-10.5532, 8.6924], + [-10.553299, 8.700599], + [-10.5541, 8.704099], + [-10.5565, 8.7076], + [-10.560899, 8.711899], + [-10.572799, 8.6999], + [-10.576799, 8.6961], + [-10.5789, 8.694499], + [-10.582799, 8.6925], + [-10.5851, 8.690999], + [-10.5872, 8.689199], + [-10.601799, 8.6745], + [-10.605799, 8.6706], + [-10.608, 8.668899], + [-10.612499, 8.6665], + [-10.6149, 8.664399], + [-10.6164, 8.662399], + [-10.6194, 8.655699], + [-10.6201, 8.652199], + [-10.620299, 8.6458], + [-10.620799, 8.6424], + [-10.622999, 8.6371], + [-10.623042, 8.63689] + ] + ], + "type": "Polygon" + }, + "id": 225, + "properties": { + "cc:admin:id": ["30"], + "cc:oBld:total": 1455, + "cc:pop:fifteen-to-twenty-four": 853.2761739175045, + "cc:pop:grid3-total": 10567.570043852405, + "cc:pop:kontur-total": 5082.877831623048, + "cc:pop:men": 2069.592003625111, + "cc:pop:sixty-plus": 167.63787693987575, + "cc:pop:total": 4378.165308908645, + "cc:pop:under-five": 764.6074323701478, + "cc:pop:women": 2308.573305283535, + "cc:pop:women-fiften-to-forty-nine": 1164.6374897319395, + "cc:pop:wp-total": 3686.8412757019346, + "cc:pop:wp-total-UN": 4276.04014864237, + "cc:id": "225", + "cc:Name": "Koardu MCHP", + "cc:site": [-10.5828, 8.6151], + "user:parentName": "Gbane Kandor", + "user:code": "OU_233313", + "user:orgUnitId": "PwoQgMJNWbR", + "user:level": "4", + "user:parentId": "Zoy23SSHCPs" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.008749, 9.002083], + [-11.004582, 9.002082], + [-11.000417, 8.997917], + [-10.999583, 8.99375], + [-11.002916, 8.992916], + [-11.002083, 8.98625], + [-11.00125, 8.985416], + [-11.00125, 8.979583], + [-11.002916, 8.977916], + [-11.003749, 8.974583], + [-11.002917, 8.973749], + [-11.002916, 8.972916], + [-11.002083, 8.967917], + [-11.002083, 8.96625], + [-11.002916, 8.965416], + [-11.002916, 8.964582], + [-11.000417, 8.953749], + [-11.001249, 8.949583], + [-11.000417, 8.948749], + [-11.001249, 8.94375], + [-10.999583, 8.942082], + [-10.999583, 8.93375], + [-11.002083, 8.932916], + [-11.002082, 8.929583], + [-11.000417, 8.928749], + [-11.000416, 8.92625], + [-10.999583, 8.925416], + [-11.000187, 8.923], + [-10.999985, 8.922949], + [-10.999984, 8.922947], + [-11.000416, 8.922083], + [-10.999583, 8.920417], + [-11.002916, 8.918749], + [-11.003749, 8.917083], + [-11.002082, 8.916249], + [-11.00125, 8.912917], + [-11.001249, 8.910417], + [-10.999052, 8.909317], + [-10.999613, 8.908979], + [-11.00141, 8.90588], + [-11.002885, 8.904254], + [-11.002919, 8.904169], + [-11.002082, 8.903749], + [-11.00125, 8.900417], + [-11.001249, 8.897917], + [-10.997083, 8.894582], + [-11.000416, 8.890416], + [-11.000416, 8.887917], + [-10.997916, 8.88625], + [-10.992917, 8.888749], + [-10.992916, 8.882083], + [-10.99125, 8.882083], + [-10.988749, 8.884582], + [-10.985417, 8.88375], + [-10.983161, 8.882622], + [-10.983772, 8.880054], + [-10.983702, 8.879771], + [-10.98371, 8.879305], + [-10.984253, 8.878611], + [-10.986525, 8.876869], + [-10.987067, 8.875967], + [-10.985416, 8.875416], + [-10.98375, 8.874582], + [-10.983749, 8.870417], + [-10.977083, 8.870417], + [-10.97375, 8.871249], + [-10.972917, 8.87125], + [-10.970417, 8.870417], + [-10.969583, 8.870416], + [-10.96875, 8.869583], + [-10.96875, 8.860417], + [-10.970417, 8.856249], + [-10.970416, 8.855417], + [-10.969582, 8.854583], + [-10.967083, 8.85375], + [-10.964582, 8.855416], + [-10.961078, 8.856001], + [-10.961194, 8.856366], + [-10.961088, 8.857119], + [-10.960423, 8.858295], + [-10.960378, 8.858707], + [-10.960679, 8.859629], + [-10.960654, 8.860549], + [-10.960611, 8.861249], + [-10.95875, 8.86125], + [-10.958605, 8.8601], + [-10.954042, 8.860099], + [-10.950136, 8.853334], + [-10.945857, 8.853333], + [-10.945456, 8.84614], + [-10.940693, 8.846139], + [-10.939313, 8.843751], + [-10.939314, 8.84375], + [-10.940804, 8.843749], + [-10.939748, 8.841918], + [-10.943749, 8.837916], + [-10.943749, 8.829583], + [-10.92375, 8.827917], + [-10.92375, 8.835011], + [-10.923983, 8.835418], + [-10.92375, 8.835824], + [-10.923749, 8.837083], + [-10.921249, 8.839582], + [-10.91625, 8.839583], + [-10.912083, 8.842916], + [-10.909582, 8.848749], + [-10.908749, 8.848749], + [-10.907916, 8.842916], + [-10.900417, 8.842083], + [-10.900416, 8.84375], + [-10.898749, 8.844583], + [-10.888749, 8.84875], + [-10.888577, 8.84875], + [-10.888576, 8.848748], + [-10.888867, 8.843482], + [-10.882244, 8.843482], + [-10.880508, 8.846489], + [-10.877082, 8.84375], + [-10.867917, 8.84375], + [-10.862083, 8.852917], + [-10.861249, 8.857083], + [-10.857917, 8.860416], + [-10.855852, 8.860416], + [-10.85551, 8.859715], + [-10.847083, 8.860416], + [-10.844213, 8.85812], + [-10.84132, 8.863128], + [-10.833508, 8.863129], + [-10.829602, 8.869894], + [-10.82926, 8.869895], + [-10.828799, 8.8734], + [-10.828599, 8.8826], + [-10.8278, 8.886499], + [-10.826, 8.890899], + [-10.825399, 8.8937], + [-10.8251, 8.9013], + [-10.8255, 8.911799], + [-10.8343, 8.9156], + [-10.849499, 8.922799], + [-10.856899, 8.926899], + [-10.8604, 8.9294], + [-10.868199, 8.936299], + [-10.872999, 8.939299], + [-10.881799, 8.941599], + [-10.885099, 8.9434], + [-10.8883, 8.947], + [-10.8907, 8.9523], + [-10.8927, 8.9588], + [-10.8941, 8.9613], + [-10.8959, 8.9637], + [-10.899999, 8.967999], + [-10.904499, 8.971899], + [-10.911, 8.976], + [-10.919799, 8.982899], + [-10.9262, 8.9871], + [-10.9304, 8.9908], + [-10.9332, 8.994], + [-10.9375, 9.0003], + [-10.952099, 9.016399], + [-10.9601, 9.0304], + [-10.965599, 9.037699], + [-10.969299, 9.040699], + [-10.978799, 9.044199], + [-10.979702, 9.044343], + [-10.979774, 9.043692], + [-10.979366, 9.042982], + [-10.97997, 9.041935], + [-10.980416, 9.037917], + [-10.98304, 9.035816], + [-10.979366, 9.02945], + [-10.983271, 9.022685], + [-10.991083, 9.022684], + [-10.99499, 9.01592], + [-10.994427, 9.014943], + [-10.997622, 9.014676], + [-10.997872, 9.012429], + [-11.004582, 9.010416], + [-11.008749, 9.002083] + ] + ], + "type": "Polygon" + }, + "id": 226, + "properties": { + "cc:admin:id": ["119"], + "cc:oBld:total": 463, + "cc:pop:fifteen-to-twenty-four": 1194.4043449566389, + "cc:pop:grid3-total": 11944.0912586965, + "cc:pop:kontur-total": 6131.829764837404, + "cc:pop:men": 3029.6483013100374, + "cc:pop:sixty-plus": 358.8203417613098, + "cc:pop:total": 6137.622670749627, + "cc:pop:under-five": 1001.1828860456292, + "cc:pop:women": 3107.9743694395897, + "cc:pop:women-fiften-to-forty-nine": 1531.9462828115584, + "cc:pop:wp-total": 5064.408625710691, + "cc:pop:wp-total-UN": 5889.907719865519, + "cc:id": "226", + "cc:Name": "Kochero MCHP", + "cc:site": [-10.9094, 8.9077], + "user:parentName": "Sandor", + "user:code": "OU_233366", + "user:orgUnitId": "VF7LfO19vxS", + "user:level": "4", + "user:parentId": "g5ptsn0SFX8" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.955525, 8.63952], + [-10.955162, 8.638961], + [-10.954863, 8.63861], + [-10.954442, 8.638961], + [-10.953965, 8.63942], + [-10.953327, 8.638542], + [-10.953763, 8.638151], + [-10.95303, 8.637012], + [-10.951862, 8.635372], + [-10.952903, 8.634756], + [-10.952192, 8.633947], + [-10.952106, 8.633841], + [-10.951508, 8.633186], + [-10.950746, 8.632481], + [-10.950659, 8.632405], + [-10.950436, 8.632173], + [-10.950708, 8.631759], + [-10.95113, 8.631396], + [-10.951198, 8.631306], + [-10.950934, 8.630955], + [-10.950954, 8.630487], + [-10.950473, 8.630495], + [-10.950153, 8.630321], + [-10.950008, 8.630027], + [-10.948799, 8.6301], + [-10.945399, 8.631], + [-10.9419, 8.632899], + [-10.938699, 8.6342], + [-10.9345, 8.636699], + [-10.931399, 8.6381], + [-10.9278, 8.640099], + [-10.925399, 8.6409], + [-10.9218, 8.640899], + [-10.9184, 8.639499], + [-10.9151, 8.6361], + [-10.913399, 8.6329], + [-10.9085, 8.637399], + [-10.9055, 8.639699], + [-10.9021, 8.641299], + [-10.8999, 8.642599], + [-10.8971, 8.645199], + [-10.894399, 8.6489], + [-10.892299, 8.653], + [-10.8894, 8.656499], + [-10.8867, 8.658699], + [-10.8829, 8.660399], + [-10.879199, 8.6623], + [-10.876799, 8.663], + [-10.8734, 8.663599], + [-10.8707, 8.664699], + [-10.867599, 8.6671], + [-10.865199, 8.6701], + [-10.862699, 8.675], + [-10.860599, 8.6778], + [-10.8562, 8.682499], + [-10.854, 8.685299], + [-10.8512, 8.690599], + [-10.847099, 8.6958], + [-10.8439, 8.701699], + [-10.839699, 8.707], + [-10.8353, 8.715399], + [-10.8346, 8.7189], + [-10.8346, 8.735399], + [-10.842699, 8.738999], + [-10.846599, 8.742299], + [-10.8491, 8.7456], + [-10.850899, 8.749499], + [-10.8529, 8.7531], + [-10.855, 8.7574], + [-10.8578, 8.7605], + [-10.8607, 8.7628], + [-10.8658, 8.7654], + [-10.868999, 8.767999], + [-10.870799, 8.770099], + [-10.8719, 8.7721], + [-10.873499, 8.778499], + [-10.875699, 8.783799], + [-10.8769, 8.7889], + [-10.880005, 8.795111], + [-10.882917, 8.798749], + [-10.886571, 8.799271], + [-10.885115, 8.796748], + [-10.88902, 8.789983], + [-10.893432, 8.789982], + [-10.892082, 8.784583], + [-10.890416, 8.784582], + [-10.886305, 8.781157], + [-10.885114, 8.783216], + [-10.881416, 8.783217], + [-10.881174, 8.783505], + [-10.878563, 8.778982], + [-10.882037, 8.772962], + [-10.886249, 8.768749], + [-10.885417, 8.76125], + [-10.887083, 8.760417], + [-10.900416, 8.760416], + [-10.899582, 8.757082], + [-10.898749, 8.749583], + [-10.897917, 8.749582], + [-10.897917, 8.740417], + [-10.898749, 8.740416], + [-10.899583, 8.737083], + [-10.904582, 8.736249], + [-10.906249, 8.73125], + [-10.902429, 8.729976], + [-10.902571, 8.729806], + [-10.903792, 8.727091], + [-10.905339, 8.726393], + [-10.905834, 8.725769], + [-10.906528, 8.724462], + [-10.906752, 8.723062], + [-10.90718, 8.721736], + [-10.907462, 8.720678], + [-10.907651, 8.720027], + [-10.909952, 8.716022], + [-10.911128, 8.713556], + [-10.911354, 8.712646], + [-10.911476, 8.712254], + [-10.911659, 8.711874], + [-10.912562, 8.71065], + [-10.912949, 8.709805], + [-10.913253, 8.708702], + [-10.913307, 8.708479], + [-10.913488, 8.707856], + [-10.913688, 8.70745], + [-10.914098, 8.70663], + [-10.914295, 8.705148], + [-10.914931, 8.703155], + [-10.915517, 8.70184], + [-10.916378, 8.70047], + [-10.917161, 8.69952], + [-10.918083, 8.698949], + [-10.917803, 8.698791], + [-10.91785, 8.698293], + [-10.917672, 8.697741], + [-10.918142, 8.697709], + [-10.918174, 8.697175], + [-10.919417, 8.696076], + [-10.919313, 8.695054], + [-10.918987, 8.694855], + [-10.91932, 8.693881], + [-10.91967, 8.693663], + [-10.919865, 8.694007], + [-10.921249, 8.687083], + [-10.924582, 8.686249], + [-10.92478, 8.686052], + [-10.924864, 8.686109], + [-10.927916, 8.684582], + [-10.92625, 8.679583], + [-10.928749, 8.677082], + [-10.92875, 8.674583], + [-10.932083, 8.675417], + [-10.936116, 8.677433], + [-10.935941, 8.67699], + [-10.935634, 8.674194], + [-10.935719, 8.673754], + [-10.936256, 8.67284], + [-10.936762, 8.672902], + [-10.937118, 8.673423], + [-10.937708, 8.673728], + [-10.938113, 8.673748], + [-10.9392, 8.672713], + [-10.939564, 8.672586], + [-10.940258, 8.671925], + [-10.937917, 8.669583], + [-10.937917, 8.667916], + [-10.93875, 8.667084], + [-10.941401, 8.667083], + [-10.942324, 8.668089], + [-10.94273, 8.668114], + [-10.944691, 8.66887], + [-10.944804, 8.66874], + [-10.945428, 8.667246], + [-10.945422, 8.666885], + [-10.945297, 8.666769], + [-10.945186, 8.66687], + [-10.943518, 8.666611], + [-10.942814, 8.666148], + [-10.942243, 8.666083], + [-10.940771, 8.665479], + [-10.939592, 8.664275], + [-10.939817, 8.66413], + [-10.940817, 8.664744], + [-10.942198, 8.664311], + [-10.941728, 8.663333], + [-10.941368, 8.661812], + [-10.941363, 8.659769], + [-10.941977, 8.659318], + [-10.943222, 8.658177], + [-10.944642, 8.65677], + [-10.945838, 8.654421], + [-10.946903, 8.6539], + [-10.948649, 8.654083], + [-10.949978, 8.653773], + [-10.950086, 8.653758], + [-10.950447, 8.653632], + [-10.950906, 8.653203], + [-10.951449, 8.651856], + [-10.951763, 8.651647], + [-10.951809, 8.651413], + [-10.952234, 8.651166], + [-10.95292, 8.650667], + [-10.953152, 8.649865], + [-10.953133, 8.64879], + [-10.953212, 8.648545], + [-10.953059, 8.648121], + [-10.953, 8.647537], + [-10.953681, 8.647436], + [-10.954016, 8.647302], + [-10.953867, 8.647009], + [-10.953921, 8.646221], + [-10.953147, 8.646459], + [-10.952976, 8.646176], + [-10.952986, 8.645622], + [-10.952124, 8.64571], + [-10.952106, 8.645586], + [-10.952055, 8.645092], + [-10.951968, 8.644487], + [-10.954655, 8.644208], + [-10.954565, 8.643682], + [-10.954575, 8.643614], + [-10.954566, 8.643608], + [-10.954569, 8.642593], + [-10.954582, 8.642309], + [-10.954596, 8.642184], + [-10.954642, 8.641559], + [-10.955068, 8.639997], + [-10.955525, 8.63952] + ] + ], + "type": "Polygon" + }, + "id": 227, + "properties": { + "cc:admin:id": ["33"], + "cc:oBld:total": 5211, + "cc:pop:fifteen-to-twenty-four": 3443.587480210181, + "cc:pop:grid3-total": 20469.199993188122, + "cc:pop:kontur-total": 16900.860829994774, + "cc:pop:men": 9042.415224815504, + "cc:pop:sixty-plus": 924.6243399593542, + "cc:pop:total": 17018.211229941735, + "cc:pop:under-five": 2597.615326528325, + "cc:pop:women": 7975.796005126236, + "cc:pop:women-fiften-to-forty-nine": 4025.1738907804042, + "cc:pop:wp-total": 12624.788168591693, + "cc:pop:wp-total-UN": 14633.630611538469, + "cc:id": "227", + "cc:Name": "Koeyor MCHP", + "cc:site": [-10.9475, 8.6488], + "user:parentName": "Gbense", + "user:code": "OU_233384", + "user:orgUnitId": "zsqxu7ZZRpO", + "user:level": "4", + "user:parentId": "TQkG0sX9nca" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.969468, 8.645507], + [-10.969451, 8.645137], + [-10.969197, 8.644471], + [-10.968664, 8.6446], + [-10.968103, 8.644738], + [-10.968069, 8.643839], + [-10.967999, 8.643138], + [-10.967184, 8.643238], + [-10.967183, 8.643245], + [-10.967147, 8.643244], + [-10.966404, 8.642861], + [-10.966355, 8.642961], + [-10.963837, 8.642619], + [-10.963055, 8.642559], + [-10.963199, 8.641409], + [-10.963112, 8.641411], + [-10.961903, 8.641401], + [-10.961769, 8.641554], + [-10.961684, 8.641407], + [-10.961591, 8.64132], + [-10.961474, 8.640835], + [-10.961084, 8.641101], + [-10.959423, 8.639987], + [-10.957601, 8.639058], + [-10.957601, 8.639056], + [-10.958208, 8.63903], + [-10.958269, 8.638726], + [-10.958231, 8.638357], + [-10.959305, 8.638396], + [-10.959275, 8.638356], + [-10.958908, 8.637282], + [-10.95863, 8.636954], + [-10.958188, 8.636892], + [-10.958199, 8.636337], + [-10.957897, 8.636471], + [-10.957704, 8.636486], + [-10.957202, 8.635549], + [-10.956857, 8.635034], + [-10.956275, 8.634216], + [-10.955993, 8.633858], + [-10.95563, 8.634107], + [-10.95555, 8.63417], + [-10.955046, 8.63451], + [-10.954975, 8.634547], + [-10.9547, 8.634059], + [-10.954851, 8.63394], + [-10.954678, 8.633488], + [-10.954084, 8.633151], + [-10.953933, 8.633175], + [-10.953535, 8.632632], + [-10.953246, 8.632344], + [-10.953424, 8.631949], + [-10.953209, 8.631335], + [-10.953148, 8.630744], + [-10.953125, 8.630085], + [-10.953126, 8.62984], + [-10.950009, 8.630027], + [-10.950153, 8.63032], + [-10.950473, 8.630495], + [-10.950954, 8.630487], + [-10.950934, 8.630955], + [-10.951198, 8.631306], + [-10.95113, 8.631396], + [-10.950708, 8.631759], + [-10.950436, 8.632172], + [-10.950659, 8.632405], + [-10.950746, 8.632481], + [-10.951508, 8.633186], + [-10.952106, 8.633841], + [-10.952192, 8.633947], + [-10.952903, 8.634756], + [-10.951862, 8.635372], + [-10.95303, 8.637012], + [-10.953763, 8.638151], + [-10.953327, 8.638542], + [-10.953965, 8.63942], + [-10.954442, 8.638961], + [-10.954864, 8.63861], + [-10.955162, 8.638961], + [-10.955525, 8.63952], + [-10.955069, 8.639997], + [-10.954642, 8.641559], + [-10.954596, 8.642184], + [-10.954582, 8.642309], + [-10.954569, 8.642593], + [-10.954566, 8.643608], + [-10.954575, 8.643614], + [-10.954565, 8.643682], + [-10.954655, 8.644208], + [-10.951968, 8.644487], + [-10.952055, 8.645092], + [-10.952106, 8.645586], + [-10.952124, 8.64571], + [-10.952986, 8.645622], + [-10.952976, 8.646176], + [-10.953147, 8.646459], + [-10.953921, 8.646221], + [-10.953867, 8.647009], + [-10.954016, 8.647302], + [-10.953681, 8.647436], + [-10.953, 8.647537], + [-10.953059, 8.648121], + [-10.953212, 8.648545], + [-10.953133, 8.64879], + [-10.953152, 8.649865], + [-10.952921, 8.650667], + [-10.952234, 8.651166], + [-10.951809, 8.651413], + [-10.951764, 8.651647], + [-10.95287, 8.651506], + [-10.954437, 8.651736], + [-10.957048, 8.653125], + [-10.957563, 8.653539], + [-10.957662, 8.653826], + [-10.958478, 8.653447], + [-10.959073, 8.653151], + [-10.960038, 8.652825], + [-10.961098, 8.651825], + [-10.961282, 8.651372], + [-10.961947, 8.649564], + [-10.962114, 8.64949], + [-10.963126, 8.648855], + [-10.963755, 8.648643], + [-10.964578, 8.648652], + [-10.965375, 8.648046], + [-10.966109, 8.647562], + [-10.96639, 8.647333], + [-10.966695, 8.647224], + [-10.968113, 8.646566], + [-10.969312, 8.64593], + [-10.969468, 8.645507] + ] + ], + "type": "Polygon" + }, + "id": 228, + "properties": { + "cc:admin:id": ["33"], + "cc:oBld:total": 3218, + "cc:pop:fifteen-to-twenty-four": 2436.6189560157663, + "cc:pop:grid3-total": 19441.83106208039, + "cc:pop:kontur-total": 13973.116960050154, + "cc:pop:men": 6640.198015625703, + "cc:pop:sixty-plus": 744.1253457894477, + "cc:pop:total": 12542.835290337633, + "cc:pop:under-five": 1968.2498323718905, + "cc:pop:women": 5902.637274711929, + "cc:pop:women-fiften-to-forty-nine": 2962.1312792441527, + "cc:pop:wp-total": 11351.342650393948, + "cc:pop:wp-total-UN": 13163.67638309329, + "cc:id": "228", + "cc:Name": "Koidu Govt. Hospital", + "cc:site": [-10.965, 8.648], + "user:parentName": "Gbense", + "user:code": "OU_233387", + "user:orgUnitId": "OzjRQLn3G24", + "user:level": "4", + "user:parentId": "TQkG0sX9nca" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.979245, 8.659232], + [-10.979077, 8.65848], + [-10.976641, 8.657559], + [-10.975906, 8.657154], + [-10.975578, 8.654762], + [-10.975309, 8.652246], + [-10.974752, 8.652178], + [-10.974601, 8.650381], + [-10.974336, 8.650363], + [-10.974103, 8.651147], + [-10.973495, 8.651201], + [-10.972976, 8.651225], + [-10.973011, 8.650512], + [-10.973469, 8.650418], + [-10.973436, 8.649021], + [-10.973579, 8.648525], + [-10.972836, 8.648361], + [-10.972638, 8.648385], + [-10.972075, 8.648373], + [-10.971487, 8.64784], + [-10.971058, 8.647348], + [-10.970944, 8.647199], + [-10.970639, 8.646932], + [-10.970993, 8.646315], + [-10.971036, 8.645848], + [-10.970924, 8.645201], + [-10.969469, 8.645508], + [-10.969312, 8.64593], + [-10.968113, 8.646566], + [-10.966695, 8.647224], + [-10.96639, 8.647333], + [-10.966109, 8.647562], + [-10.965375, 8.648046], + [-10.964579, 8.648652], + [-10.963755, 8.648643], + [-10.963126, 8.648855], + [-10.962114, 8.64949], + [-10.961947, 8.649565], + [-10.961282, 8.651372], + [-10.961098, 8.651825], + [-10.960038, 8.652825], + [-10.959073, 8.653151], + [-10.958478, 8.653447], + [-10.957662, 8.653827], + [-10.957701, 8.654034], + [-10.957739, 8.654125], + [-10.958751, 8.65738], + [-10.958791, 8.657547], + [-10.958996, 8.658325], + [-10.959079, 8.658568], + [-10.959482, 8.659395], + [-10.961175, 8.660363], + [-10.961384, 8.660461], + [-10.964827, 8.662204], + [-10.964267, 8.661171], + [-10.963698, 8.660869], + [-10.964437, 8.660711], + [-10.965187, 8.660905], + [-10.964939, 8.662276], + [-10.964987, 8.662924], + [-10.965582, 8.662652], + [-10.966824, 8.663378], + [-10.967331, 8.663645], + [-10.969227, 8.664576], + [-10.971251, 8.665696], + [-10.971387, 8.665775], + [-10.971721, 8.666055], + [-10.973163, 8.666411], + [-10.97366, 8.666541], + [-10.974374, 8.666654], + [-10.976138, 8.667052], + [-10.976218, 8.666286], + [-10.976016, 8.664178], + [-10.975981, 8.664115], + [-10.975598, 8.662519], + [-10.975559, 8.661671], + [-10.975556, 8.661551], + [-10.975732, 8.660848], + [-10.975734, 8.660848], + [-10.976448, 8.661689], + [-10.976736, 8.66174], + [-10.9778, 8.661686], + [-10.977867, 8.661695], + [-10.978224, 8.661357], + [-10.979061, 8.661244], + [-10.979245, 8.659232] + ] + ], + "type": "Polygon" + }, + "id": 229, + "properties": { + "cc:admin:id": ["33"], + "cc:oBld:total": 3396, + "cc:pop:fifteen-to-twenty-four": 2421.099881305162, + "cc:pop:grid3-total": 17713.641013867884, + "cc:pop:kontur-total": 10107.506924770758, + "cc:pop:men": 6612.968991445455, + "cc:pop:sixty-plus": 741.4604784636178, + "cc:pop:total": 12480.111939745495, + "cc:pop:under-five": 1959.9542264482789, + "cc:pop:women": 5867.142948300037, + "cc:pop:women-fiften-to-forty-nine": 2949.8704529303177, + "cc:pop:wp-total": 11711.65465055892, + "cc:pop:wp-total-UN": 13578.769592255447, + "cc:id": "229", + "cc:Name": "Koidu Under Five Clinic", + "cc:site": [-10.9659, 8.6481], + "user:parentName": "Gbense", + "user:code": "OU_233376", + "user:orgUnitId": "Ls2ESQONh9S", + "user:level": "4", + "user:parentId": "TQkG0sX9nca" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.323015, 9.676496], + [-11.319582, 9.67375], + [-11.316255, 9.673987], + [-11.318554, 9.670002], + [-11.315332, 9.664422], + [-11.3087, 9.665299], + [-11.306, 9.665899], + [-11.3015, 9.667799], + [-11.298699, 9.6684], + [-11.294699, 9.6687], + [-11.2855, 9.6687], + [-11.2806, 9.669399], + [-11.2753, 9.671499], + [-11.272399, 9.6722], + [-11.266299, 9.672499], + [-11.2373, 9.6723], + [-11.230099, 9.6727], + [-11.227299, 9.6732], + [-11.222, 9.675599], + [-11.216199, 9.6771], + [-11.210699, 9.6793], + [-11.206899, 9.679899], + [-11.1855, 9.6798], + [-11.182499, 9.68], + [-11.179599, 9.6805], + [-11.173299, 9.683], + [-11.169499, 9.6835], + [-11.1637, 9.683799], + [-11.16, 9.684499], + [-11.155499, 9.6864], + [-11.1498, 9.6885], + [-11.1468, 9.691999], + [-11.1443, 9.693999], + [-11.140599, 9.6959], + [-11.1334, 9.700299], + [-11.1264, 9.702899], + [-11.1221, 9.705299], + [-11.1189, 9.706599], + [-11.1147, 9.708999], + [-11.111399, 9.7104], + [-11.107599, 9.7133], + [-11.1014, 9.719299], + [-11.099, 9.721999], + [-11.0972, 9.7249], + [-11.0955, 9.731699], + [-11.093399, 9.7369], + [-11.092099, 9.742599], + [-11.0902, 9.745699], + [-11.0849, 9.751299], + [-11.0828, 9.753999], + [-11.0809, 9.757899], + [-11.079099, 9.7605], + [-11.076199, 9.7637], + [-11.0678, 9.771999], + [-11.065399, 9.7748], + [-11.064, 9.7771], + [-11.0627, 9.782999], + [-11.0618, 9.785299], + [-11.0585, 9.792099], + [-11.056599, 9.7948], + [-11.0503, 9.802499], + [-11.0471, 9.805899], + [-11.069799, 9.828099], + [-11.096199, 9.845599], + [-11.0973, 9.847899], + [-11.142799, 9.869099], + [-11.154399, 9.8792], + [-11.1602, 9.8905], + [-11.1646, 9.9126], + [-11.1671, 9.9448], + [-11.171299, 9.966199], + [-11.174999, 9.975799], + [-11.194699, 9.991099], + [-11.205999, 9.999999], + [-11.2067, 10.000399], + [-11.236254, 9.999828], + [-11.242899, 9.9997], + [-11.245416, 9.999653], + [-11.245416, 9.987917], + [-11.243206, 9.985706], + [-11.243207, 9.985704], + [-11.243544, 9.985698], + [-11.242083, 9.98375], + [-11.242083, 9.981126], + [-11.242306, 9.980738], + [-11.242094, 9.98037], + [-11.243749, 9.973749], + [-11.242917, 9.970417], + [-11.244582, 9.968749], + [-11.246249, 9.959583], + [-11.247082, 9.959582], + [-11.249582, 9.957916], + [-11.252083, 9.950417], + [-11.25375, 9.950417], + [-11.257917, 9.955416], + [-11.259583, 9.955417], + [-11.262916, 9.958749], + [-11.259582, 9.939583], + [-11.25754, 9.939875], + [-11.257539, 9.939874], + [-11.260702, 9.934393], + [-11.256796, 9.927628], + [-11.254827, 9.927627], + [-11.255254, 9.924211], + [-11.254137, 9.924168], + [-11.250417, 9.91375], + [-11.256249, 9.907917], + [-11.258394, 9.907379], + [-11.258384, 9.907358], + [-11.258345, 9.907192], + [-11.258282, 9.905702], + [-11.257978, 9.905072], + [-11.257743, 9.904766], + [-11.257599, 9.904642], + [-11.262082, 9.897917], + [-11.254583, 9.894582], + [-11.252082, 9.887083], + [-11.249583, 9.887082], + [-11.247083, 9.884583], + [-11.245417, 9.880417], + [-11.252082, 9.870416], + [-11.252083, 9.865417], + [-11.250416, 9.865416], + [-11.249583, 9.859583], + [-11.250416, 9.85375], + [-11.245417, 9.852083], + [-11.245417, 9.85125], + [-11.248749, 9.848749], + [-11.24875, 9.847082], + [-11.257082, 9.844582], + [-11.257082, 9.842917], + [-11.252672, 9.83777], + [-11.25236, 9.838321], + [-11.252301, 9.838353], + [-11.252082, 9.837916], + [-11.244583, 9.834583], + [-11.24375, 9.833749], + [-11.24375, 9.832082], + [-11.247082, 9.829582], + [-11.247083, 9.827917], + [-11.242083, 9.82375], + [-11.24125, 9.822916], + [-11.24125, 9.821249], + [-11.245416, 9.81125], + [-11.244582, 9.809583], + [-11.242082, 9.80875], + [-11.241156, 9.808749], + [-11.240925, 9.804961], + [-11.242322, 9.794964], + [-11.24056, 9.79412], + [-11.240032, 9.794111], + [-11.238936, 9.794553], + [-11.237954, 9.794341], + [-11.236879, 9.792729], + [-11.234907, 9.791759], + [-11.233014, 9.791241], + [-11.232415, 9.790784], + [-11.232248, 9.790285], + [-11.231374, 9.789323], + [-11.229853, 9.78956], + [-11.229773, 9.789538], + [-11.229772, 9.789536], + [-11.239582, 9.787082], + [-11.244582, 9.774583], + [-11.246216, 9.774746], + [-11.244336, 9.771488], + [-11.248241, 9.764724], + [-11.256054, 9.764723], + [-11.257345, 9.762488], + [-11.262917, 9.762916], + [-11.26375, 9.761249], + [-11.264582, 9.757083], + [-11.25875, 9.752083], + [-11.258749, 9.750417], + [-11.25375, 9.744582], + [-11.25625, 9.742083], + [-11.258608, 9.742082], + [-11.256055, 9.737659], + [-11.256868, 9.73625], + [-11.257083, 9.736249], + [-11.261249, 9.732916], + [-11.261405, 9.730894], + [-11.267773, 9.730893], + [-11.271679, 9.724129], + [-11.267774, 9.717363], + [-11.271679, 9.710597], + [-11.279491, 9.710596], + [-11.283399, 9.703831], + [-11.29121, 9.70383], + [-11.295117, 9.697065], + [-11.302929, 9.697064], + [-11.306578, 9.690746], + [-11.30658, 9.690746], + [-11.307917, 9.692082], + [-11.315231, 9.684768], + [-11.315218, 9.684754], + [-11.314674, 9.683849], + [-11.314517, 9.683818], + [-11.314709, 9.682697], + [-11.315159, 9.682169], + [-11.318366, 9.679778], + [-11.321738, 9.677672], + [-11.323015, 9.676496] + ] + ], + "type": "Polygon" + }, + "id": 231, + "properties": { + "cc:admin:id": ["129"], + "cc:oBld:total": 1224, + "cc:pop:fifteen-to-twenty-four": 3097.4965678167027, + "cc:pop:grid3-total": 16424.02570575358, + "cc:pop:kontur-total": 17234.52973174387, + "cc:pop:men": 8095.218796667414, + "cc:pop:sixty-plus": 1074.436508229101, + "cc:pop:total": 16911.84840663152, + "cc:pop:under-five": 2765.933607103031, + "cc:pop:women": 8816.629609964119, + "cc:pop:women-fiften-to-forty-nine": 4305.690009818823, + "cc:pop:wp-total": 14011.711494776924, + "cc:pop:wp-total-UN": 16233.479924742598, + "cc:id": "231", + "cc:Name": "Koindukura MCHP", + "cc:site": [-11.1676, 9.8765], + "user:parentName": "Sulima (Koinadugu)", + "user:code": "OU_226229", + "user:orgUnitId": "bqSIIRuZ1qj", + "user:level": "4", + "user:parentId": "PaqugoqjRIj" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.155499, 7.625], + [-11.1513, 7.6227], + [-11.1483, 7.6205], + [-11.1443, 7.6167], + [-11.1426, 7.614599], + [-11.1418, 7.612599], + [-11.141899, 7.6098], + [-11.143899, 7.604799], + [-11.143599, 7.6019], + [-11.1422, 7.5994], + [-11.1405, 7.5975], + [-11.137199, 7.595399], + [-11.1343, 7.595], + [-11.1319, 7.596099], + [-11.13, 7.597599], + [-11.1278, 7.600199], + [-11.1265, 7.602299], + [-11.124499, 7.6066], + [-11.1216, 7.610099], + [-11.1184, 7.612299], + [-11.112199, 7.614], + [-11.106099, 7.6165], + [-11.103499, 7.6169], + [-11.098899, 7.6171], + [-11.0942, 7.6171], + [-11.0915, 7.6169], + [-11.0893, 7.6164], + [-11.086699, 7.614899], + [-11.082, 7.6112], + [-11.07875, 7.60945], + [-11.07875, 7.614583], + [-11.080416, 7.619583], + [-11.085416, 7.627916], + [-11.08625, 7.627917], + [-11.088749, 7.634583], + [-11.08625, 7.64125], + [-11.086943, 7.64749], + [-11.090336, 7.646045], + [-11.09393, 7.64459], + [-11.097845, 7.642333], + [-11.099422, 7.641377], + [-11.104583, 7.648749], + [-11.107082, 7.64875], + [-11.107082, 7.657083], + [-11.104583, 7.660416], + [-11.109582, 7.660417], + [-11.117083, 7.667916], + [-11.121248, 7.667917], + [-11.120417, 7.669584], + [-11.122082, 7.674583], + [-11.125401, 7.677901], + [-11.1258, 7.677499], + [-11.128099, 7.6748], + [-11.129699, 7.672], + [-11.1312, 7.665799], + [-11.133299, 7.6614], + [-11.1346, 7.658199], + [-11.136599, 7.6546], + [-11.1383, 7.650699], + [-11.142099, 7.6434], + [-11.144, 7.640999], + [-11.147499, 7.638199], + [-11.148499, 7.6362], + [-11.149299, 7.633], + [-11.1503, 7.6308], + [-11.155499, 7.625] + ] + ], + "type": "Polygon" + }, + "id": 232, + "properties": { + "cc:admin:id": ["28"], + "cc:oBld:total": 636, + "cc:pop:fifteen-to-twenty-four": 812.530458078752, + "cc:pop:grid3-total": 3017.527952073264, + "cc:pop:kontur-total": 4864.801612043499, + "cc:pop:men": 2031.3261451968801, + "cc:pop:sixty-plus": 245.79252067282022, + "cc:pop:total": 4194.942328548843, + "cc:pop:under-five": 660.0577497121963, + "cc:pop:women": 2163.6161833519627, + "cc:pop:women-fiften-to-forty-nine": 1086.5056489630454, + "cc:pop:wp-total": 3713.2982261070265, + "cc:pop:wp-total-UN": 4306.899356265056, + "cc:id": "232", + "cc:Name": "Kokoru CHP", + "cc:site": [-11.1165, 7.6297], + "user:parentName": "Gaura", + "user:code": "OU_222747", + "user:orgUnitId": "F2TAF765q1b", + "user:level": "4", + "user:parentId": "eROJsBwxQHt" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.266799, 8.723199], + [-12.266599, 8.7188], + [-12.264799, 8.7155], + [-12.262699, 8.7144], + [-12.2593, 8.7147], + [-12.256299, 8.7173], + [-12.2526, 8.724499], + [-12.248999, 8.731899], + [-12.245699, 8.734299], + [-12.2422, 8.734799], + [-12.239099, 8.732899], + [-12.2379, 8.729999], + [-12.2374, 8.7204], + [-12.2362, 8.7155], + [-12.234699, 8.7126], + [-12.232199, 8.7108], + [-12.2277, 8.7104], + [-12.2147, 8.715699], + [-12.210399, 8.7167], + [-12.202899, 8.717099], + [-12.1901, 8.7167], + [-12.1878, 8.722899], + [-12.186499, 8.7289], + [-12.1841, 8.734099], + [-12.182799, 8.7373], + [-12.1805, 8.741499], + [-12.179199, 8.7447], + [-12.176799, 8.749], + [-12.1741, 8.754199], + [-12.170099, 8.7592], + [-12.168099, 8.7633], + [-12.1657, 8.767599], + [-12.164399, 8.7708], + [-12.1621, 8.774999], + [-12.160799, 8.7782], + [-12.1585, 8.782499], + [-12.156999, 8.7857], + [-12.154899, 8.7888], + [-12.151699, 8.7922], + [-12.1491, 8.794499], + [-12.1464, 8.796399], + [-12.144169, 8.797489], + [-12.14375, 8.798749], + [-12.147916, 8.79875], + [-12.147972, 8.798805], + [-12.149031, 8.79815], + [-12.150827, 8.797534], + [-12.152029, 8.796758], + [-12.15331, 8.796207], + [-12.153749, 8.797083], + [-12.153749, 8.797917], + [-12.147917, 8.80125], + [-12.14625, 8.803749], + [-12.149582, 8.807083], + [-12.147917, 8.811249], + [-12.155429, 8.807835], + [-12.155626, 8.807475], + [-12.155699, 8.807382], + [-12.15625, 8.809582], + [-12.162082, 8.812083], + [-12.16125, 8.815417], + [-12.165417, 8.817916], + [-12.176068, 8.820374], + [-12.176042, 8.820592], + [-12.176067, 8.820624], + [-12.170417, 8.827083], + [-12.171673, 8.831481], + [-12.178553, 8.830511], + [-12.179562, 8.830354], + [-12.180843, 8.83018], + [-12.181669, 8.828118], + [-12.182305, 8.828916], + [-12.182699, 8.829885], + [-12.182714, 8.829927], + [-12.186427, 8.829246], + [-12.188248, 8.828643], + [-12.191733, 8.827218], + [-12.192917, 8.829582], + [-12.198074, 8.829068], + [-12.201504, 8.829068], + [-12.204583, 8.832916], + [-12.210416, 8.832916], + [-12.211133, 8.822882], + [-12.215782, 8.823021], + [-12.216767, 8.822925], + [-12.217387, 8.822795], + [-12.217621, 8.822733], + [-12.219127, 8.822276], + [-12.223458, 8.820669], + [-12.22375, 8.821249], + [-12.227083, 8.82125], + [-12.231249, 8.826249], + [-12.233749, 8.821249], + [-12.23246, 8.81738], + [-12.233203, 8.817203], + [-12.232799, 8.816718], + [-12.231774, 8.816178], + [-12.232917, 8.815417], + [-12.234582, 8.816249], + [-12.237082, 8.812083], + [-12.237916, 8.805417], + [-12.241249, 8.806249], + [-12.244582, 8.805416], + [-12.245417, 8.800416], + [-12.247916, 8.797917], + [-12.249582, 8.797916], + [-12.250416, 8.792083], + [-12.249583, 8.787917], + [-12.253749, 8.781249], + [-12.253749, 8.778749], + [-12.253082, 8.774751], + [-12.251859, 8.774907], + [-12.250625, 8.774746], + [-12.249772, 8.774278], + [-12.249642, 8.773594], + [-12.246972, 8.772688], + [-12.246001, 8.772481], + [-12.246027, 8.77193], + [-12.246075, 8.771727], + [-12.245957, 8.770927], + [-12.245352, 8.769613], + [-12.244794, 8.768965], + [-12.247621, 8.76579], + [-12.248806, 8.766082], + [-12.252288, 8.768228], + [-12.256171, 8.768819], + [-12.254583, 8.764582], + [-12.254582, 8.762082], + [-12.254178, 8.761275], + [-12.254029, 8.761358], + [-12.253948, 8.761449], + [-12.252917, 8.760416], + [-12.252917, 8.754583], + [-12.254582, 8.752916], + [-12.254583, 8.750416], + [-12.257082, 8.747916], + [-12.256592, 8.744972], + [-12.256593, 8.744972], + [-12.25695, 8.745252], + [-12.258366, 8.745906], + [-12.259339, 8.7459], + [-12.261214, 8.745078], + [-12.261636, 8.74456], + [-12.26284, 8.741593], + [-12.2598, 8.741799], + [-12.2566, 8.739399], + [-12.2602, 8.7319], + [-12.264699, 8.727399], + [-12.266799, 8.723199] + ] + ], + "type": "Polygon" + }, + "id": 233, + "properties": { + "cc:admin:id": ["83"], + "cc:oBld:total": 116, + "cc:pop:fifteen-to-twenty-four": 1191.4075667575244, + "cc:pop:grid3-total": 4145.140417415117, + "cc:pop:kontur-total": 7897.351187748396, + "cc:pop:men": 3057.8430935624247, + "cc:pop:sixty-plus": 409.1326243120228, + "cc:pop:total": 6533.895620219375, + "cc:pop:under-five": 1050.8837154619782, + "cc:pop:women": 3476.05252665695, + "cc:pop:women-fiften-to-forty-nine": 1678.9514535326937, + "cc:pop:wp-total": 4057.6863158179112, + "cc:pop:wp-total-UN": 4704.334129364424, + "cc:id": "233", + "cc:Name": "Kolisokor MCHP", + "cc:site": [-12.1982, 8.7685], + "user:parentName": "Makari Gbanti", + "user:code": "OU_193259", + "user:orgUnitId": "m7fBMpmVpSM", + "user:level": "4", + "user:parentId": "lY93YpCxJqf" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.832183, 8.847078], + [-10.832, 8.8347], + [-10.831799, 8.831599], + [-10.830999, 8.827599], + [-10.829099, 8.823099], + [-10.827, 8.8128], + [-10.8251, 8.8083], + [-10.824399, 8.805399], + [-10.823999, 8.799199], + [-10.8238, 8.7633], + [-10.823499, 8.757099], + [-10.822999, 8.754099], + [-10.8204, 8.7478], + [-10.8179, 8.7423], + [-10.8114, 8.741399], + [-10.8091, 8.740099], + [-10.8068, 8.7368], + [-10.804499, 8.734099], + [-10.7981, 8.7276], + [-10.7921, 8.722], + [-10.789299, 8.719999], + [-10.785399, 8.718099], + [-10.779999, 8.713899], + [-10.773599, 8.710499], + [-10.770099, 8.707599], + [-10.7661, 8.7035], + [-10.762799, 8.6993], + [-10.7561, 8.703299], + [-10.7515, 8.705599], + [-10.7464, 8.709599], + [-10.7445, 8.710799], + [-10.742399, 8.7115], + [-10.738099, 8.7125], + [-10.733, 8.714899], + [-10.7298, 8.716199], + [-10.7255, 8.718599], + [-10.721599, 8.7203], + [-10.7157, 8.7241], + [-10.713, 8.727699], + [-10.710599, 8.7298], + [-10.704, 8.733199], + [-10.700099, 8.7342], + [-10.6951, 8.734399], + [-10.691499, 8.734199], + [-10.689199, 8.733699], + [-10.6865, 8.7322], + [-10.682799, 8.728799], + [-10.6792, 8.7246], + [-10.6764, 8.7197], + [-10.673199, 8.7164], + [-10.6654, 8.7126], + [-10.662799, 8.711999], + [-10.658899, 8.7117], + [-10.6482, 8.711799], + [-10.6449, 8.712299], + [-10.642899, 8.713], + [-10.639299, 8.7149], + [-10.6317, 8.718499], + [-10.629099, 8.7191], + [-10.624199, 8.719399], + [-10.6092, 8.7192], + [-10.6052, 8.719599], + [-10.6017, 8.7207], + [-10.5968, 8.724499], + [-10.5949, 8.725599], + [-10.5918, 8.725899], + [-10.585999, 8.723799], + [-10.582199, 8.723199], + [-10.5754, 8.7228], + [-10.5726, 8.7222], + [-10.5672, 8.7201], + [-10.563, 8.719], + [-10.5606, 8.718], + [-10.5572, 8.7156], + [-10.5519, 8.720899], + [-10.548, 8.725299], + [-10.544799, 8.731], + [-10.542299, 8.7333], + [-10.537899, 8.7357], + [-10.5309, 8.741599], + [-10.5262, 8.7463], + [-10.5265, 8.7488], + [-10.5275, 8.756999], + [-10.535799, 8.772499], + [-10.553021, 8.786072], + [-10.559582, 8.785416], + [-10.561249, 8.783749], + [-10.562917, 8.780417], + [-10.565196, 8.779847], + [-10.56521, 8.780018], + [-10.566123, 8.779593], + [-10.56715, 8.779637], + [-10.56807, 8.779686], + [-10.569151, 8.780006], + [-10.569582, 8.780005], + [-10.569583, 8.782916], + [-10.572083, 8.78375], + [-10.574583, 8.787082], + [-10.57625, 8.787083], + [-10.57875, 8.789582], + [-10.581249, 8.789582], + [-10.589583, 8.782083], + [-10.596249, 8.787082], + [-10.59625, 8.788749], + [-10.600416, 8.792916], + [-10.600417, 8.794582], + [-10.605416, 8.800416], + [-10.60625, 8.804582], + [-10.60875, 8.808749], + [-10.617083, 8.805417], + [-10.622916, 8.80625], + [-10.627082, 8.809582], + [-10.627799, 8.818182], + [-10.627512, 8.818368], + [-10.626969, 8.818115], + [-10.62625, 8.824582], + [-10.62625, 8.825416], + [-10.629583, 8.825416], + [-10.636249, 8.82375], + [-10.637083, 8.82375], + [-10.643749, 8.827916], + [-10.645417, 8.832082], + [-10.656249, 8.82875], + [-10.657083, 8.829583], + [-10.671249, 8.829583], + [-10.670417, 8.839582], + [-10.674582, 8.840416], + [-10.67625, 8.840417], + [-10.683749, 8.842082], + [-10.685416, 8.84375], + [-10.685822, 8.844965], + [-10.685896, 8.844937], + [-10.686813, 8.844036], + [-10.68876, 8.843589], + [-10.689991, 8.84304], + [-10.690451, 8.842532], + [-10.691771, 8.841419], + [-10.692212, 8.841692], + [-10.693849, 8.841759], + [-10.694275, 8.84191], + [-10.697086, 8.843745], + [-10.697466, 8.844427], + [-10.697839, 8.846164], + [-10.698376, 8.84689], + [-10.698402, 8.846921], + [-10.700417, 8.84625], + [-10.705416, 8.847082], + [-10.70875, 8.842917], + [-10.71125, 8.842916], + [-10.720416, 8.840417], + [-10.722083, 8.841249], + [-10.729582, 8.839583], + [-10.730417, 8.840417], + [-10.732083, 8.847083], + [-10.735416, 8.847916], + [-10.737917, 8.844583], + [-10.742082, 8.84375], + [-10.742916, 8.849582], + [-10.742917, 8.852082], + [-10.753749, 8.847082], + [-10.754583, 8.842916], + [-10.757917, 8.842083], + [-10.764583, 8.845416], + [-10.768749, 8.844582], + [-10.775416, 8.832917], + [-10.779582, 8.832917], + [-10.78375, 8.839582], + [-10.79375, 8.842917], + [-10.795417, 8.842916], + [-10.798749, 8.842083], + [-10.800142, 8.840691], + [-10.803831, 8.847078], + [-10.811643, 8.847079], + [-10.815548, 8.853845], + [-10.811643, 8.86061], + [-10.815548, 8.867376], + [-10.811643, 8.874142], + [-10.815549, 8.880907], + [-10.823361, 8.880908], + [-10.827268, 8.887674], + [-10.82732, 8.887673], + [-10.8278, 8.886499], + [-10.8286, 8.882599], + [-10.828799, 8.8734], + [-10.829299, 8.8696], + [-10.831599, 8.8632], + [-10.832099, 8.8602], + [-10.832299, 8.854899], + [-10.832183, 8.847078] + ] + ], + "type": "Polygon" + }, + "id": 234, + "properties": { + "cc:admin:id": ["72"], + "cc:oBld:total": 1273, + "cc:pop:fifteen-to-twenty-four": 2277.0247541003982, + "cc:pop:grid3-total": 16905.259178999597, + "cc:pop:kontur-total": 13785.772353700595, + "cc:pop:men": 5719.106700727811, + "cc:pop:sixty-plus": 668.3585018733842, + "cc:pop:total": 12105.66593678524, + "cc:pop:under-five": 2026.4736532727884, + "cc:pop:women": 6386.559236057429, + "cc:pop:women-fiften-to-forty-nine": 3105.197797138846, + "cc:pop:wp-total": 8731.253289673195, + "cc:pop:wp-total-UN": 10134.35587416248, + "cc:id": "234", + "cc:Name": "Komba Yendeh CHP", + "cc:site": [-10.7089, 8.7864], + "user:parentName": "Lei", + "user:code": "OU_233351", + "user:orgUnitId": "T62lSjsZe9n", + "user:level": "4", + "user:parentId": "LhaAPLxdSFH" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.264999, 8.557199], + [-12.262099, 8.553699], + [-12.259799, 8.551999], + [-12.255899, 8.550099], + [-12.2485, 8.5446], + [-12.245399, 8.543199], + [-12.240999, 8.540799], + [-12.237799, 8.539399], + [-12.233499, 8.537099], + [-12.230299, 8.535699], + [-12.225899, 8.533499], + [-12.2199, 8.5321], + [-12.214599, 8.529799], + [-12.2086, 8.5284], + [-12.203299, 8.526099], + [-12.1965, 8.5244], + [-12.192899, 8.522599], + [-12.187599, 8.521599], + [-12.1799, 8.5215], + [-12.1749, 8.5209], + [-12.168499, 8.518499], + [-12.164599, 8.517899], + [-12.1574, 8.5178], + [-12.1544, 8.5175], + [-12.151499, 8.516899], + [-12.146999, 8.514999], + [-12.144099, 8.514499], + [-12.1374, 8.514], + [-12.1336, 8.5135], + [-12.1282, 8.5113], + [-12.122299, 8.509799], + [-12.116, 8.5073], + [-12.1122, 8.5067], + [-12.107099, 8.5066], + [-12.098, 8.506699], + [-12.0931, 8.506999], + [-12.086499, 8.5098], + [-12.081199, 8.5104], + [-12.068999, 8.5105], + [-12.065699, 8.5112], + [-12.0635, 8.512299], + [-12.062099, 8.513403], + [-12.062145, 8.519083], + [-12.061922, 8.519789], + [-12.061425, 8.520459], + [-12.061015, 8.52078], + [-12.06125, 8.521249], + [-12.062917, 8.52125], + [-12.06407, 8.522982], + [-12.062272, 8.525928], + [-12.062173, 8.526015], + [-12.062917, 8.537916], + [-12.07065, 8.537144], + [-12.066934, 8.543582], + [-12.07084, 8.550349], + [-12.066934, 8.557114], + [-12.07084, 8.56388], + [-12.066934, 8.570645], + [-12.059121, 8.570646], + [-12.05785, 8.572849], + [-12.060416, 8.575417], + [-12.05625, 8.585416], + [-12.05375, 8.587917], + [-12.056464, 8.592668], + [-12.055115, 8.593307], + [-12.053386, 8.593816], + [-12.04899, 8.594357], + [-12.049582, 8.597916], + [-12.057082, 8.603749], + [-12.05591, 8.606683], + [-12.0567, 8.607], + [-12.0602, 8.6076], + [-12.0626, 8.6084], + [-12.069399, 8.611499], + [-12.0722, 8.6135], + [-12.0747, 8.6159], + [-12.0766, 8.6188], + [-12.0784, 8.6225], + [-12.080499, 8.625199], + [-12.084399, 8.628499], + [-12.0883, 8.6303], + [-12.092699, 8.632699], + [-12.0959, 8.6339], + [-12.100199, 8.636299], + [-12.1034, 8.6376], + [-12.112399, 8.642299], + [-12.1154, 8.6445], + [-12.120999, 8.648999], + [-12.127199, 8.6418], + [-12.1297, 8.640099], + [-12.133099, 8.6391], + [-12.135999, 8.6387], + [-12.150499, 8.637999], + [-12.151799, 8.6324], + [-12.152899, 8.6298], + [-12.1558, 8.625899], + [-12.159899, 8.6218], + [-12.1622, 8.620099], + [-12.1648, 8.619099], + [-12.172399, 8.618099], + [-12.175499, 8.616599], + [-12.177599, 8.613799], + [-12.179399, 8.6068], + [-12.181599, 8.6027], + [-12.183, 8.6009], + [-12.1852, 8.5998], + [-12.1877, 8.5996], + [-12.192899, 8.600499], + [-12.197399, 8.602599], + [-12.2011, 8.603399], + [-12.2051, 8.603299], + [-12.2078, 8.602599], + [-12.2123, 8.600499], + [-12.215099, 8.5998], + [-12.218999, 8.5996], + [-12.222299, 8.6002], + [-12.224799, 8.6019], + [-12.226399, 8.6044], + [-12.227, 8.6076], + [-12.2271, 8.614], + [-12.2281, 8.616799], + [-12.2307, 8.618399], + [-12.2343, 8.618499], + [-12.237999, 8.6178], + [-12.242499, 8.6157], + [-12.247499, 8.6145], + [-12.249799, 8.613499], + [-12.2524, 8.610599], + [-12.2533, 8.607699], + [-12.253699, 8.6029], + [-12.254199, 8.6002], + [-12.255699, 8.5965], + [-12.255999, 8.5941], + [-12.255599, 8.591699], + [-12.253699, 8.587299], + [-12.253199, 8.584499], + [-12.2528, 8.5787], + [-12.2522, 8.575], + [-12.2508, 8.569699], + [-12.2529, 8.5636], + [-12.2549, 8.561], + [-12.2573, 8.5594], + [-12.262799, 8.5581], + [-12.264999, 8.557199] + ] + ], + "type": "Polygon" + }, + "id": 235, + "properties": { + "cc:admin:id": ["53"], + "cc:oBld:total": 283, + "cc:pop:fifteen-to-twenty-four": 2976.489595005881, + "cc:pop:grid3-total": 10401.677986860885, + "cc:pop:kontur-total": 16027.933581077265, + "cc:pop:men": 7416.000400865969, + "cc:pop:sixty-plus": 1031.7170391070827, + "cc:pop:total": 16122.514777956772, + "cc:pop:under-five": 2566.7560724874434, + "cc:pop:women": 8706.514377090805, + "cc:pop:women-fiften-to-forty-nine": 4223.902971780408, + "cc:pop:wp-total": 14059.815343161208, + "cc:pop:wp-total-UN": 16296.663669869324, + "cc:id": "235", + "cc:Name": "Komrabai Station MCHP", + "cc:site": [-12.0991, 8.5396], + "user:parentName": "Kholifa Mabang", + "user:code": "OU_268165", + "user:orgUnitId": "cUltUneFSan", + "user:level": "4", + "user:parentId": "fwxkctgmffZ" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.144582, 7.905416], + [-11.142083, 7.897917], + [-11.142082, 7.897084], + [-11.141249, 7.897083], + [-11.13875, 7.889584], + [-11.140416, 7.882084], + [-11.140416, 7.879584], + [-11.137917, 7.87625], + [-11.137916, 7.873749], + [-11.132645, 7.865467], + [-11.132599, 7.8655], + [-11.129099, 7.8664], + [-11.1212, 7.866599], + [-11.1147, 7.8664], + [-11.1111, 7.865899], + [-11.1067, 7.8638], + [-11.1046, 7.8631], + [-11.102499, 7.8629], + [-11.100199, 7.8631], + [-11.098199, 7.8637], + [-11.0946, 7.865599], + [-11.0915, 7.866999], + [-11.0849, 7.871299], + [-11.0828, 7.874299], + [-11.080499, 7.876499], + [-11.077199, 7.8776], + [-11.0689, 7.877899], + [-11.0643, 7.8776], + [-11.0607, 7.876399], + [-11.057399, 7.873799], + [-11.055199, 7.871299], + [-11.0526, 7.8679], + [-11.048399, 7.8746], + [-11.0432, 7.881599], + [-11.041599, 7.8848], + [-11.036, 7.903899], + [-11.0346, 7.909599], + [-11.0343, 7.9142], + [-11.035099, 7.9199], + [-11.035, 7.923399], + [-11.034299, 7.9268], + [-11.0317, 7.932199], + [-11.0297, 7.935399], + [-11.022099, 7.9451], + [-11.017399, 7.9547], + [-11.013099, 7.9601], + [-11.0049, 7.9685], + [-11.007999, 7.972699], + [-11.011299, 7.978599], + [-11.012628, 7.98034], + [-11.015599, 7.976489], + [-11.019788, 7.972936], + [-11.022912, 7.971781], + [-11.029022, 7.969857], + [-11.029583, 7.970417], + [-11.032083, 7.971249], + [-11.038749, 7.971249], + [-11.036625, 7.965585], + [-11.037726, 7.965314], + [-11.038846, 7.964569], + [-11.040053, 7.964129], + [-11.040415, 7.963894], + [-11.040417, 7.963895], + [-11.040417, 7.964584], + [-11.04375, 7.970417], + [-11.04625, 7.972083], + [-11.049582, 7.970417], + [-11.051249, 7.965416], + [-11.05125, 7.96125], + [-11.05375, 7.961249], + [-11.055417, 7.960416], + [-11.061249, 7.957083], + [-11.06125, 7.955417], + [-11.062916, 7.951249], + [-11.062917, 7.949584], + [-11.067082, 7.949584], + [-11.072083, 7.953749], + [-11.076249, 7.954583], + [-11.075417, 7.947917], + [-11.077082, 7.945417], + [-11.078749, 7.945416], + [-11.07875, 7.94375], + [-11.084582, 7.94375], + [-11.08625, 7.944583], + [-11.089582, 7.944583], + [-11.089583, 7.942916], + [-11.092917, 7.94125], + [-11.097082, 7.942916], + [-11.09875, 7.945416], + [-11.10125, 7.94375], + [-11.108749, 7.945416], + [-11.110417, 7.944584], + [-11.115416, 7.945416], + [-11.119582, 7.941249], + [-11.119583, 7.935044], + [-11.120189, 7.935049], + [-11.121997, 7.936371], + [-11.123496, 7.937006], + [-11.126885, 7.93704], + [-11.12803, 7.937205], + [-11.130417, 7.935417], + [-11.133749, 7.935416], + [-11.134583, 7.932917], + [-11.137916, 7.934583], + [-11.139582, 7.933749], + [-11.142916, 7.927916], + [-11.142082, 7.924583], + [-11.140417, 7.921249], + [-11.140417, 7.917916], + [-11.141249, 7.91375], + [-11.138607, 7.91331], + [-11.1386, 7.913311], + [-11.13855, 7.913299], + [-11.137895, 7.913191], + [-11.137481, 7.913222], + [-11.136201, 7.913952], + [-11.135557, 7.914155], + [-11.134235, 7.914022], + [-11.13375, 7.912083], + [-11.13375, 7.907917], + [-11.144582, 7.905416] + ] + ], + "type": "Polygon" + }, + "id": 236, + "properties": { + "cc:admin:id": ["105"], + "cc:oBld:total": 1162, + "cc:pop:fifteen-to-twenty-four": 1233.2683798311893, + "cc:pop:grid3-total": 11105.316349133525, + "cc:pop:kontur-total": 6453.319764180359, + "cc:pop:men": 3174.5048768431807, + "cc:pop:sixty-plus": 379.83873933182986, + "cc:pop:total": 6327.227118367342, + "cc:pop:under-five": 1023.4589070816196, + "cc:pop:women": 3152.722241524161, + "cc:pop:women-fiften-to-forty-nine": 1579.1362868825343, + "cc:pop:wp-total": 7950.271843581992, + "cc:pop:wp-total-UN": 9210.873264937605, + "cc:id": "236", + "cc:Name": "Konabu MCHP", + "cc:site": [-11.1034, 7.8955], + "user:parentName": "Nongowa", + "user:code": "OU_222713", + "user:orgUnitId": "mhJQYk2Jwym", + "user:level": "4", + "user:parentId": "KIUCimTXf8Q" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.204667, 8.258749], + [-12.2045, 8.2455], + [-12.204199, 8.241699], + [-12.203199, 8.238499], + [-12.2013, 8.2357], + [-12.1954, 8.2294], + [-12.1936, 8.226599], + [-12.193099, 8.224199], + [-12.192499, 8.219399], + [-12.191799, 8.216699], + [-12.189799, 8.212199], + [-12.189099, 8.208499], + [-12.1889, 8.2045], + [-12.1891, 8.200699], + [-12.1898, 8.197899], + [-12.191699, 8.1935], + [-12.192099, 8.190999], + [-12.191799, 8.187599], + [-12.1897, 8.182099], + [-12.1897, 8.1792], + [-12.1917, 8.173999], + [-12.1929, 8.168999], + [-12.194799, 8.1646], + [-12.195199, 8.1622], + [-12.194699, 8.159799], + [-12.192899, 8.155399], + [-12.192299, 8.151899], + [-12.1917, 8.1447], + [-12.1911, 8.1421], + [-12.190857, 8.141593], + [-12.187917, 8.140417], + [-12.186249, 8.143749], + [-12.183749, 8.144583], + [-12.18125, 8.142083], + [-12.181249, 8.13625], + [-12.177916, 8.137083], + [-12.17375, 8.13625], + [-12.17125, 8.13375], + [-12.169582, 8.136249], + [-12.16625, 8.135417], + [-12.161249, 8.12625], + [-12.157083, 8.127916], + [-12.152917, 8.12625], + [-12.14625, 8.145416], + [-12.147082, 8.14625], + [-12.142917, 8.14875], + [-12.142916, 8.155834], + [-12.138619, 8.155834], + [-12.134713, 8.149069], + [-12.136134, 8.146607], + [-12.130417, 8.147083], + [-12.129582, 8.144584], + [-12.12625, 8.142084], + [-12.12181, 8.140873], + [-12.118463, 8.146669], + [-12.121107, 8.151249], + [-12.120416, 8.15125], + [-12.115417, 8.15375], + [-12.11625, 8.155416], + [-12.116976, 8.155599], + [-12.114211, 8.160389], + [-12.113271, 8.160384], + [-12.11271, 8.160105], + [-12.111394, 8.159929], + [-12.109586, 8.158001], + [-12.109561, 8.157983], + [-12.107917, 8.162916], + [-12.11375, 8.169583], + [-12.117916, 8.170417], + [-12.120416, 8.173749], + [-12.122083, 8.17125], + [-12.12625, 8.170417], + [-12.132082, 8.182083], + [-12.132082, 8.185416], + [-12.130462, 8.185417], + [-12.131126, 8.186568], + [-12.12722, 8.193333], + [-12.130425, 8.198884], + [-12.12875, 8.199584], + [-12.127917, 8.201249], + [-12.137082, 8.206249], + [-12.134583, 8.209583], + [-12.137917, 8.209584], + [-12.142082, 8.212917], + [-12.135417, 8.220417], + [-12.13625, 8.223749], + [-12.149582, 8.226249], + [-12.151249, 8.22375], + [-12.15375, 8.222917], + [-12.161094, 8.22512], + [-12.16102, 8.225416], + [-12.162083, 8.225417], + [-12.169582, 8.229583], + [-12.169583, 8.232916], + [-12.170417, 8.233749], + [-12.172916, 8.234584], + [-12.171249, 8.241249], + [-12.167083, 8.246249], + [-12.167917, 8.247083], + [-12.175417, 8.249583], + [-12.180416, 8.249584], + [-12.180721, 8.253235], + [-12.183898, 8.253236], + [-12.187804, 8.260001], + [-12.192656, 8.260002], + [-12.192917, 8.262083], + [-12.193791, 8.262958], + [-12.193985, 8.262221], + [-12.194559, 8.261073], + [-12.194761, 8.260821], + [-12.197916, 8.262083], + [-12.19875, 8.263749], + [-12.203597, 8.26652], + [-12.2043, 8.264999], + [-12.204699, 8.2613], + [-12.204667, 8.258749] + ] + ], + "type": "Polygon" + }, + "id": 237, + "properties": { + "cc:admin:id": ["60"], + "cc:oBld:total": 12, + "cc:pop:fifteen-to-twenty-four": 359.92008644458497, + "cc:pop:grid3-total": 1987.4655179930064, + "cc:pop:kontur-total": 1940.4917797900393, + "cc:pop:men": 972.6695914631213, + "cc:pop:sixty-plus": 133.7310508847433, + "cc:pop:total": 2048.454025240751, + "cc:pop:under-five": 331.12049572600114, + "cc:pop:women": 1075.784433777629, + "cc:pop:women-fiften-to-forty-nine": 523.4661644970895, + "cc:pop:wp-total": 2244.947402752949, + "cc:pop:wp-total-UN": 2601.3990068886706, + "cc:id": "237", + "cc:Name": "Konda CHP", + "cc:site": [-12.1847, 8.1909], + "user:parentName": "Kori", + "user:code": "OU_246992", + "user:orgUnitId": "jkPHBqdn9SA", + "user:level": "4", + "user:parentId": "nV3OkyzF4US" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.662939, 9.019044], + [-10.661249, 9.017917], + [-10.65375, 9.017916], + [-10.652082, 9.015417], + [-10.649582, 9.014582], + [-10.647916, 9.012083], + [-10.637083, 9.012082], + [-10.635417, 9.007916], + [-10.635416, 9.002083], + [-10.633749, 9.00125], + [-10.632916, 9.001249], + [-10.62375, 8.997082], + [-10.622587, 8.994175], + [-10.622604, 8.994169], + [-10.620416, 8.985417], + [-10.615401, 8.985416], + [-10.612937, 8.981151], + [-10.605126, 8.98115], + [-10.601219, 8.974385], + [-10.598305, 8.974385], + [-10.594299, 9.0033], + [-10.5918, 9.009299], + [-10.5876, 9.0123], + [-10.586199, 9.0162], + [-10.5854, 9.031599], + [-10.5836, 9.0364], + [-10.5848, 9.043199], + [-10.585, 9.043399], + [-10.587699, 9.0432], + [-10.5962, 9.042099], + [-10.608499, 9.0413], + [-10.6144, 9.040299], + [-10.6211, 9.037299], + [-10.6292, 9.032399], + [-10.6348, 9.030699], + [-10.643699, 9.0299], + [-10.648, 9.028899], + [-10.6518, 9.026899], + [-10.660599, 9.0211], + [-10.662939, 9.019044] + ] + ], + "type": "Polygon" + }, + "id": 238, + "properties": { + "cc:admin:id": ["136"], + "cc:oBld:total": 19, + "cc:pop:fifteen-to-twenty-four": 121.22219855612299, + "cc:pop:grid3-total": 1550.7794126297151, + "cc:pop:kontur-total": 840.5911617894972, + "cc:pop:men": 290.3021984321922, + "cc:pop:sixty-plus": 35.75513630567407, + "cc:pop:total": 635.6508559700924, + "cc:pop:under-five": 96.44542029481103, + "cc:pop:women": 345.3486575379001, + "cc:pop:women-fiften-to-forty-nine": 174.94806232831021, + "cc:pop:wp-total": 629.2156032042877, + "cc:pop:wp-total-UN": 735.1012023344775, + "cc:id": "238", + "cc:Name": "Kondewakoro CHP", + "cc:site": [-10.5955, 9.017], + "user:parentName": "Toli", + "user:code": "OU_233315", + "user:orgUnitId": "ZSBnWFBpPPJ", + "user:level": "4", + "user:parentId": "FRxcUEwktoV" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.550899, 9.5663], + [-11.549999, 9.5647], + [-11.544799, 9.561499], + [-11.540799, 9.559899], + [-11.5363, 9.5577], + [-11.5312, 9.5566], + [-11.5287, 9.5558], + [-11.5211, 9.5521], + [-11.5172, 9.5488], + [-11.5147, 9.5455], + [-11.5107, 9.5372], + [-11.509499, 9.532099], + [-11.507199, 9.526799], + [-11.506499, 9.523299], + [-11.5061, 9.516], + [-11.5053, 9.5126], + [-11.503299, 9.508099], + [-11.502699, 9.505599], + [-11.5021, 9.5003], + [-11.5014, 9.4977], + [-11.499099, 9.492499], + [-11.4982, 9.4854], + [-11.4975, 9.4828], + [-11.4955, 9.4784], + [-11.494699, 9.4759], + [-11.4891, 9.4754], + [-11.4866, 9.476099], + [-11.483, 9.477999], + [-11.479899, 9.4793], + [-11.4756, 9.481799], + [-11.472499, 9.4831], + [-11.4682, 9.485499], + [-11.464999, 9.4869], + [-11.460599, 9.4891], + [-11.458099, 9.4897], + [-11.452699, 9.4902], + [-11.450199, 9.4909], + [-11.444799, 9.493], + [-11.440199, 9.4936], + [-11.4323, 9.493699], + [-11.4286, 9.494299], + [-11.423199, 9.4966], + [-11.4184, 9.497299], + [-11.417009, 9.497158], + [-11.414583, 9.499583], + [-11.414583, 9.509582], + [-11.417916, 9.509583], + [-11.417917, 9.517083], + [-11.42125, 9.521249], + [-11.430528, 9.522023], + [-11.430414, 9.522225], + [-11.43432, 9.52899], + [-11.442132, 9.528991], + [-11.446038, 9.535756], + [-11.443829, 9.539582], + [-11.446249, 9.539583], + [-11.44625, 9.549582], + [-11.454582, 9.557916], + [-11.460416, 9.555416], + [-11.460952, 9.548993], + [-11.462355, 9.548604], + [-11.463535, 9.548149], + [-11.464212, 9.547677], + [-11.466165, 9.547201], + [-11.46648, 9.547047], + [-11.466625, 9.54663], + [-11.466916, 9.546408], + [-11.467436, 9.546292], + [-11.467784, 9.546358], + [-11.469475, 9.549288], + [-11.465747, 9.555746], + [-11.468749, 9.558749], + [-11.471249, 9.560416], + [-11.471851, 9.562819], + [-11.475416, 9.56282], + [-11.475417, 9.565416], + [-11.488749, 9.56625], + [-11.487083, 9.571249], + [-11.487083, 9.572916], + [-11.487917, 9.573749], + [-11.492082, 9.57375], + [-11.492083, 9.577082], + [-11.49625, 9.580416], + [-11.502083, 9.57875], + [-11.503749, 9.58125], + [-11.504304, 9.584573], + [-11.504867, 9.584802], + [-11.50606, 9.585618], + [-11.506676, 9.586229], + [-11.506249, 9.587083], + [-11.505417, 9.593749], + [-11.50875, 9.596249], + [-11.514329, 9.59625], + [-11.516842, 9.598046], + [-11.51625, 9.600416], + [-11.51625, 9.601046], + [-11.518988, 9.600048], + [-11.519532, 9.599848], + [-11.519688, 9.599823], + [-11.52003, 9.599822], + [-11.5224, 9.598499], + [-11.5256, 9.597199], + [-11.534099, 9.5928], + [-11.5381, 9.589499], + [-11.544199, 9.5834], + [-11.546499, 9.5805], + [-11.547699, 9.578], + [-11.548899, 9.573], + [-11.550699, 9.568799], + [-11.550899, 9.5663] + ] + ], + "type": "Polygon" + }, + "id": 239, + "properties": { + "cc:admin:id": ["122"], + "cc:oBld:total": 418, + "cc:pop:fifteen-to-twenty-four": 1492.3613294179002, + "cc:pop:grid3-total": 2240.5251027993145, + "cc:pop:kontur-total": 8361.459151581264, + "cc:pop:men": 3761.396801773573, + "cc:pop:sixty-plus": 518.8968610599487, + "cc:pop:total": 8042.304163291476, + "cc:pop:under-five": 1304.1959014986244, + "cc:pop:women": 4280.907361517904, + "cc:pop:women-fiften-to-forty-nine": 2076.500841162622, + "cc:pop:wp-total": 5494.638169632651, + "cc:pop:wp-total-UN": 6367.344779045068, + "cc:id": "239", + "cc:Name": "Kondeya MCHP", + "cc:site": [-11.5287, 9.562], + "user:parentName": "Sengbeh", + "user:code": "OU_226234", + "user:orgUnitId": "OynYyQiFu82", + "user:level": "4", + "user:parentId": "VGAFxBXz16y" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.105124, 8.270222], + [-11.102917, 8.26875], + [-11.102083, 8.26625], + [-11.104582, 8.263749], + [-11.104582, 8.25625], + [-11.09366, 8.255522], + [-11.093659, 8.255417], + [-11.08375, 8.255417], + [-11.083749, 8.262083], + [-11.081249, 8.264583], + [-11.075416, 8.262917], + [-11.071055, 8.264162], + [-11.070587, 8.262084], + [-11.062083, 8.262084], + [-11.061249, 8.262916], + [-11.055461, 8.259298], + [-11.055481, 8.259253], + [-11.050416, 8.257084], + [-11.045417, 8.259584], + [-11.042082, 8.269583], + [-11.038749, 8.272916], + [-11.03125, 8.272917], + [-11.027083, 8.272084], + [-11.02625, 8.272083], + [-11.026249, 8.270416], + [-11.013248, 8.269652], + [-11.012654, 8.270416], + [-11.00616, 8.270417], + [-11.006266, 8.27063], + [-11.00807, 8.271978], + [-11.008376, 8.272582], + [-11.008471, 8.273747], + [-11.008255, 8.275315], + [-11.008224, 8.277525], + [-11.007246, 8.279612], + [-11.007157, 8.280262], + [-11.006652, 8.280853], + [-11.005729, 8.280853], + [-11.004991, 8.281088], + [-11.004204, 8.280912], + [-11.003266, 8.28074], + [-11.002218, 8.280765], + [-11.001215, 8.280983], + [-11.000403, 8.281523], + [-10.999858, 8.281529], + [-10.992083, 8.285417], + [-10.993749, 8.287917], + [-10.99324, 8.294534], + [-10.98898, 8.294535], + [-10.985072, 8.3013], + [-10.977261, 8.301301], + [-10.973354, 8.308066], + [-10.967888, 8.308067], + [-10.9669, 8.312599], + [-10.9659, 8.316099], + [-10.963999, 8.3204], + [-10.961799, 8.3237], + [-10.9544, 8.331799], + [-10.9518, 8.334899], + [-10.9469, 8.343299], + [-10.945599, 8.3468], + [-10.9441, 8.355799], + [-10.941999, 8.3612], + [-10.939799, 8.364199], + [-10.930899, 8.3707], + [-10.926799, 8.3744], + [-10.9207, 8.380399], + [-10.925499, 8.384199], + [-10.9283, 8.385999], + [-10.9334, 8.3872], + [-10.944499, 8.391899], + [-10.948399, 8.392899], + [-10.9528, 8.3933], + [-10.964699, 8.393599], + [-10.970599, 8.393999], + [-10.9747, 8.3947], + [-10.9792, 8.3961], + [-10.9833, 8.396399], + [-10.987499, 8.395299], + [-10.9899, 8.393799], + [-10.9933, 8.390899], + [-10.996199, 8.3875], + [-10.998599, 8.3838], + [-10.9999, 8.380499], + [-11.000799, 8.3767], + [-11.001499, 8.3667], + [-11.0022, 8.362699], + [-11.0041, 8.357199], + [-11.0084, 8.3505], + [-11.0111, 8.348399], + [-11.0151, 8.346099], + [-11.026599, 8.3402], + [-11.0337, 8.335699], + [-11.0364, 8.334599], + [-11.040599, 8.3339], + [-11.046499, 8.3336], + [-11.071899, 8.3336], + [-11.076199, 8.334099], + [-11.0803, 8.3355], + [-11.082699, 8.337099], + [-11.084799, 8.338999], + [-11.087999, 8.343399], + [-11.089614, 8.347204], + [-11.099582, 8.347916], + [-11.101249, 8.347084], + [-11.104582, 8.342916], + [-11.103749, 8.332084], + [-11.094583, 8.329584], + [-11.09375, 8.32375], + [-11.099855, 8.319001], + [-11.100641, 8.318993], + [-11.101582, 8.318737], + [-11.100599, 8.316699], + [-11.099899, 8.312999], + [-11.099699, 8.308999], + [-11.0996, 8.301], + [-11.099899, 8.2941], + [-11.1005, 8.291299], + [-11.1024, 8.286399], + [-11.1031, 8.282199], + [-11.1034, 8.275399], + [-11.104299, 8.272], + [-11.105124, 8.270222] + ] + ], + "type": "Polygon" + }, + "id": 241, + "properties": { + "cc:admin:id": ["75"], + "cc:oBld:total": 1066, + "cc:pop:fifteen-to-twenty-four": 3178.450015204332, + "cc:pop:grid3-total": 9505.600637668242, + "cc:pop:kontur-total": 17392.19503086026, + "cc:pop:men": 9224.639588166163, + "cc:pop:sixty-plus": 976.8365579584467, + "cc:pop:total": 16480.926805725983, + "cc:pop:under-five": 2544.089963291077, + "cc:pop:women": 7256.287217559814, + "cc:pop:women-fiften-to-forty-nine": 3597.5254445045844, + "cc:pop:wp-total": 13223.40608977462, + "cc:pop:wp-total-UN": 15338.325745519842, + "cc:id": "241", + "cc:Name": "Konjo MCHP", + "cc:site": [-11.0538, 8.2703], + "user:parentName": "Lower Bambara", + "user:code": "OU_222670", + "user:orgUnitId": "d7hw1ababST", + "user:level": "4", + "user:parentId": "hdEuw2ugkVF" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.688174, 9.340372], + [-12.686964, 9.339633], + [-12.6865, 9.339742], + [-12.68547, 9.339573], + [-12.684911, 9.339555], + [-12.684222, 9.339005], + [-12.683493, 9.339097], + [-12.682212, 9.338666], + [-12.681541, 9.338327], + [-12.680029, 9.338164], + [-12.678851, 9.336889], + [-12.678744, 9.336071], + [-12.674657, 9.335779], + [-12.674582, 9.335817], + [-12.67095, 9.335636], + [-12.670599, 9.336], + [-12.664699, 9.3416], + [-12.661899, 9.3436], + [-12.657899, 9.3456], + [-12.6545, 9.348299], + [-12.6481, 9.354699], + [-12.6443, 9.357799], + [-12.64, 9.360099], + [-12.637299, 9.3619], + [-12.6308, 9.368199], + [-12.6263, 9.372699], + [-12.623899, 9.3753], + [-12.621999, 9.3781], + [-12.620099, 9.382], + [-12.615299, 9.3883], + [-12.613199, 9.3925], + [-12.6108, 9.396699], + [-12.609599, 9.3999], + [-12.6072, 9.405099], + [-12.605999, 9.4109], + [-12.6042, 9.413899], + [-12.6024, 9.415799], + [-12.5989, 9.418099], + [-12.595699, 9.4188], + [-12.5907, 9.419099], + [-12.5875, 9.419999], + [-12.584, 9.421899], + [-12.580899, 9.4233], + [-12.5769, 9.425499], + [-12.5743, 9.426099], + [-12.569799, 9.425499], + [-12.564399, 9.4232], + [-12.5609, 9.4229], + [-12.5581, 9.423399], + [-12.553899, 9.4253], + [-12.548799, 9.4265], + [-12.546399, 9.4274], + [-12.5396, 9.4309], + [-12.5365, 9.434199], + [-12.535, 9.437099], + [-12.5335, 9.438999], + [-12.531699, 9.4405], + [-12.524899, 9.4438], + [-12.522499, 9.4446], + [-12.517399, 9.4457], + [-12.515199, 9.4468], + [-12.5107, 9.449799], + [-12.508, 9.453699], + [-12.5063, 9.455699], + [-12.5042, 9.457599], + [-12.502299, 9.4588], + [-12.500299, 9.4596], + [-12.495999, 9.4606], + [-12.490699, 9.4628], + [-12.486999, 9.4634], + [-12.4783, 9.463599], + [-12.475399, 9.4638], + [-12.472999, 9.4643], + [-12.4693, 9.4658], + [-12.473599, 9.480599], + [-12.4752, 9.4875], + [-12.477, 9.4931], + [-12.483699, 9.512099], + [-12.485399, 9.519199], + [-12.485399, 9.5234], + [-12.484145, 9.529045], + [-12.488305, 9.529045], + [-12.491106, 9.524193], + [-12.491143, 9.521496], + [-12.49132, 9.521199], + [-12.491308, 9.520716], + [-12.488306, 9.515513], + [-12.492212, 9.508748], + [-12.500024, 9.508748], + [-12.503931, 9.515513], + [-12.508325, 9.515513], + [-12.50875, 9.509583], + [-12.512916, 9.50625], + [-12.523749, 9.50625], + [-12.524555, 9.506853], + [-12.527369, 9.501982], + [-12.53518, 9.501981], + [-12.539087, 9.495217], + [-12.546449, 9.495217], + [-12.547083, 9.494583], + [-12.55625, 9.495417], + [-12.560416, 9.496249], + [-12.561374, 9.497207], + [-12.562525, 9.495217], + [-12.566479, 9.495216], + [-12.566177, 9.49498], + [-12.566177, 9.494978], + [-12.56715, 9.49476], + [-12.568428, 9.494822], + [-12.568988, 9.494653], + [-12.570767, 9.494309], + [-12.57088, 9.494274], + [-12.574244, 9.488451], + [-12.582055, 9.48845], + [-12.58482, 9.483664], + [-12.585533, 9.483751], + [-12.586635, 9.483276], + [-12.587023, 9.483271], + [-12.587787, 9.483652], + [-12.587954, 9.48393], + [-12.588723, 9.48423], + [-12.589062, 9.484662], + [-12.590104, 9.48357], + [-12.591102, 9.482937], + [-12.591428, 9.482373], + [-12.591944, 9.481687], + [-12.592294, 9.48042], + [-12.592499, 9.480051], + [-12.592632, 9.479605], + [-12.592559, 9.479101], + [-12.592493, 9.478871], + [-12.592763, 9.478813], + [-12.592237, 9.476747], + [-12.592613, 9.475931], + [-12.593323, 9.472362], + [-12.593263, 9.472083], + [-12.596249, 9.472082], + [-12.597083, 9.465417], + [-12.601249, 9.462917], + [-12.602916, 9.462916], + [-12.602917, 9.455417], + [-12.605417, 9.44875], + [-12.607083, 9.447917], + [-12.611249, 9.449582], + [-12.612083, 9.446249], + [-12.614582, 9.44375], + [-12.620416, 9.442916], + [-12.62125, 9.439582], + [-12.623749, 9.437083], + [-12.627916, 9.436249], + [-12.627208, 9.429878], + [-12.627084, 9.429923], + [-12.627083, 9.429922], + [-12.627083, 9.424583], + [-12.631249, 9.420416], + [-12.63125, 9.419297], + [-12.632918, 9.419212], + [-12.634088, 9.419309], + [-12.635846, 9.419068], + [-12.637433, 9.41919], + [-12.638372, 9.419041], + [-12.640244, 9.418219], + [-12.641021, 9.41812], + [-12.641699, 9.41685], + [-12.645277, 9.41339], + [-12.646317, 9.412537], + [-12.648049, 9.411847], + [-12.64875, 9.40625], + [-12.651249, 9.40375], + [-12.655416, 9.404582], + [-12.655417, 9.403749], + [-12.659863, 9.399303], + [-12.659923, 9.399285], + [-12.660675, 9.399238], + [-12.661011, 9.399246], + [-12.661589, 9.399379], + [-12.66295, 9.399483], + [-12.662963, 9.399316], + [-12.662638, 9.399032], + [-12.661744, 9.398783], + [-12.660761, 9.398017], + [-12.660653, 9.397625], + [-12.660874, 9.396937], + [-12.661301, 9.396647], + [-12.661488, 9.396227], + [-12.66131, 9.395894], + [-12.660174, 9.395446], + [-12.659987, 9.395105], + [-12.660252, 9.393825], + [-12.660128, 9.393387], + [-12.659783, 9.393282], + [-12.658182, 9.394192], + [-12.657561, 9.394298], + [-12.656467, 9.393798], + [-12.656264, 9.393097], + [-12.656796, 9.391878], + [-12.65676, 9.391317], + [-12.656224, 9.389313], + [-12.657917, 9.38875], + [-12.65875, 9.388749], + [-12.66375, 9.387082], + [-12.665416, 9.386249], + [-12.665417, 9.385416], + [-12.667544, 9.384353], + [-12.667636, 9.384624], + [-12.672082, 9.382082], + [-12.674067, 9.379437], + [-12.674374, 9.379622], + [-12.674769, 9.379505], + [-12.675322, 9.379058], + [-12.677725, 9.37905], + [-12.677701, 9.378777], + [-12.677764, 9.378612], + [-12.677648, 9.378573], + [-12.677496, 9.37798], + [-12.676689, 9.374901], + [-12.675754, 9.373203], + [-12.674848, 9.372099], + [-12.674139, 9.36972], + [-12.674044, 9.368279], + [-12.673712, 9.362273], + [-12.671971, 9.359575], + [-12.671463, 9.358105], + [-12.669328, 9.351595], + [-12.669005, 9.350621], + [-12.669583, 9.345417], + [-12.672082, 9.342917], + [-12.675416, 9.342082], + [-12.677917, 9.339583], + [-12.688174, 9.340372] + ] + ], + "type": "Polygon" + }, + "id": 243, + "properties": { + "cc:admin:id": ["9"], + "cc:oBld:total": 42, + "cc:pop:fifteen-to-twenty-four": 923.4765673650494, + "cc:pop:grid3-total": 2865.8219282997707, + "cc:pop:kontur-total": 5069.6670868942365, + "cc:pop:men": 2210.6558390833525, + "cc:pop:sixty-plus": 344.0810786821769, + "cc:pop:total": 4852.762694225397, + "cc:pop:under-five": 734.3572221943289, + "cc:pop:women": 2642.106855142043, + "cc:pop:women-fiften-to-forty-nine": 1254.1541843727034, + "cc:pop:wp-total": 3598.982957730356, + "cc:pop:wp-total-UN": 4168.006760802592, + "cc:id": "243", + "cc:Name": "Konta CHP", + "cc:site": [-12.66, 9.38], + "user:parentName": "Bramaia", + "user:code": "OU_211224", + "user:orgUnitId": "AQQCxQqDxLe", + "user:level": "4", + "user:parentId": "kbPmt60yi0L" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.620477, 8.514534], + [-12.619525, 8.513202], + [-12.6161, 8.5113], + [-12.612199, 8.509599], + [-12.607799, 8.507199], + [-12.6038, 8.5056], + [-12.600999, 8.503899], + [-12.597899, 8.502599], + [-12.595799, 8.501199], + [-12.593699, 8.498699], + [-12.591699, 8.494999], + [-12.5861, 8.4876], + [-12.5847, 8.4845], + [-12.5823, 8.4802], + [-12.580499, 8.476299], + [-12.573099, 8.4643], + [-12.570999, 8.462899], + [-12.5657, 8.4552], + [-12.560699, 8.450799], + [-12.556199, 8.445399], + [-12.553599, 8.442999], + [-12.549799, 8.440399], + [-12.5471, 8.4379], + [-12.544999, 8.435099], + [-12.541699, 8.429599], + [-12.539699, 8.4278], + [-12.535499, 8.4264], + [-12.531499, 8.4264], + [-12.5284, 8.4276], + [-12.526399, 8.4294], + [-12.524099, 8.4332], + [-12.5221, 8.438599], + [-12.5184, 8.451699], + [-12.514899, 8.455099], + [-12.510999, 8.4563], + [-12.506799, 8.456399], + [-12.502499, 8.455699], + [-12.496599, 8.453699], + [-12.492399, 8.452999], + [-12.486599, 8.4529], + [-12.482399, 8.4536], + [-12.466599, 8.4587], + [-12.463799, 8.4593], + [-12.4568, 8.460199], + [-12.4515, 8.462], + [-12.447099, 8.4653], + [-12.444399, 8.4685], + [-12.441099, 8.4738], + [-12.437499, 8.4782], + [-12.4303, 8.485399], + [-12.422299, 8.4916], + [-12.4201, 8.494399], + [-12.4188, 8.497299], + [-12.422599, 8.5016], + [-12.424099, 8.505099], + [-12.424899, 8.510899], + [-12.425499, 8.513599], + [-12.4277, 8.519], + [-12.428799, 8.525999], + [-12.429399, 8.528499], + [-12.4317, 8.5339], + [-12.4323, 8.5376], + [-12.432499, 8.541499], + [-12.4325, 8.564], + [-12.432699, 8.566799], + [-12.4334, 8.569399], + [-12.4359, 8.5724], + [-12.444199, 8.576699], + [-12.447499, 8.577999], + [-12.451799, 8.580299], + [-12.4551, 8.5816], + [-12.460286, 8.584348], + [-12.464583, 8.582917], + [-12.473749, 8.582916], + [-12.475416, 8.577917], + [-12.47625, 8.577916], + [-12.482082, 8.572084], + [-12.487467, 8.571484], + [-12.488075, 8.570837], + [-12.490547, 8.568695], + [-12.49102, 8.568066], + [-12.491729, 8.567099], + [-12.492831, 8.565052], + [-12.493889, 8.566316], + [-12.494361, 8.566633], + [-12.495182, 8.566729], + [-12.495805, 8.566608], + [-12.495941, 8.566683], + [-12.495417, 8.564583], + [-12.505929, 8.561579], + [-12.505729, 8.56114], + [-12.505839, 8.560526], + [-12.505741, 8.559928], + [-12.507082, 8.557917], + [-12.509582, 8.557084], + [-12.513749, 8.557916], + [-12.514582, 8.557917], + [-12.514583, 8.558749], + [-12.515416, 8.558749], + [-12.521249, 8.550417], + [-12.522083, 8.550416], + [-12.525417, 8.548749], + [-12.534796, 8.547306], + [-12.534708, 8.547163], + [-12.532943, 8.546631], + [-12.532074, 8.546125], + [-12.531085, 8.544675], + [-12.530862, 8.543989], + [-12.53091, 8.543248], + [-12.532045, 8.541778], + [-12.53222, 8.540684], + [-12.532157, 8.540399], + [-12.540308, 8.538518], + [-12.54051, 8.538666], + [-12.544878, 8.538899], + [-12.546234, 8.539542], + [-12.546514, 8.539516], + [-12.546734, 8.539352], + [-12.547396, 8.539418], + [-12.547746, 8.539269], + [-12.54792, 8.538899], + [-12.548076, 8.538454], + [-12.548184, 8.538079], + [-12.548369, 8.537496], + [-12.549178, 8.538765], + [-12.553603, 8.535815], + [-12.554588, 8.535487], + [-12.556518, 8.535204], + [-12.55664, 8.535117], + [-12.557917, 8.539583], + [-12.567143, 8.540292], + [-12.567026, 8.538413], + [-12.566615, 8.53753], + [-12.565924, 8.535832], + [-12.565503, 8.533588], + [-12.565129, 8.532949], + [-12.56513, 8.532947], + [-12.565593, 8.532805], + [-12.566023, 8.532901], + [-12.566065, 8.532945], + [-12.567154, 8.532598], + [-12.567379, 8.53216], + [-12.567736, 8.531973], + [-12.568582, 8.531914], + [-12.568748, 8.531833], + [-12.56875, 8.531834], + [-12.56875, 8.532083], + [-12.569583, 8.532084], + [-12.572916, 8.532916], + [-12.574285, 8.53246], + [-12.575036, 8.533338], + [-12.575408, 8.53378], + [-12.575594, 8.534246], + [-12.579582, 8.532917], + [-12.580417, 8.531249], + [-12.58482, 8.529894], + [-12.584449, 8.529761], + [-12.584228, 8.529405], + [-12.583426, 8.528792], + [-12.582734, 8.52788], + [-12.582402, 8.526889], + [-12.582309, 8.526579], + [-12.583089, 8.525923], + [-12.584531, 8.525875], + [-12.584902, 8.525721], + [-12.584917, 8.525726], + [-12.585383, 8.525519], + [-12.585869, 8.524315], + [-12.586861, 8.522855], + [-12.591586, 8.520605], + [-12.591857, 8.52056], + [-12.593444, 8.520122], + [-12.594572, 8.5203], + [-12.594933, 8.520154], + [-12.595651, 8.520278], + [-12.596241, 8.520651], + [-12.597317, 8.520675], + [-12.597712, 8.518313], + [-12.597906, 8.518281], + [-12.598379, 8.518613], + [-12.598673, 8.519095], + [-12.599639, 8.519502], + [-12.600365, 8.519482], + [-12.600289, 8.519789], + [-12.600763, 8.519943], + [-12.60122, 8.51981], + [-12.601891, 8.518374], + [-12.602743, 8.518242], + [-12.603168, 8.517702], + [-12.604422, 8.517276], + [-12.605487, 8.517412], + [-12.606114, 8.517277], + [-12.606275, 8.516394], + [-12.606728, 8.516025], + [-12.606971, 8.515518], + [-12.606594, 8.514752], + [-12.606117, 8.514204], + [-12.604491, 8.513395], + [-12.603095, 8.512989], + [-12.601892, 8.513026], + [-12.60263, 8.509813], + [-12.60625, 8.510417], + [-12.609582, 8.513749], + [-12.61125, 8.521249], + [-12.612917, 8.520417], + [-12.618083, 8.521708], + [-12.61825, 8.52124], + [-12.618651, 8.520861], + [-12.619313, 8.520371], + [-12.619623, 8.5188], + [-12.619694, 8.518734], + [-12.619849, 8.517765], + [-12.620402, 8.516361], + [-12.620332, 8.515505], + [-12.620477, 8.514534] + ] + ], + "type": "Polygon" + }, + "id": 244, + "properties": { + "cc:admin:id": ["93"], + "cc:oBld:total": 430, + "cc:pop:fifteen-to-twenty-four": 1516.5618795319317, + "cc:pop:grid3-total": 15743.191358601509, + "cc:pop:kontur-total": 7889.819727369384, + "cc:pop:men": 3727.804405382628, + "cc:pop:sixty-plus": 512.627999733054, + "cc:pop:total": 7883.452297289944, + "cc:pop:under-five": 1262.2993963542067, + "cc:pop:women": 4155.647891907312, + "cc:pop:women-fiften-to-forty-nine": 2013.5017521144462, + "cc:pop:wp-total": 7893.637192204593, + "cc:pop:wp-total-UN": 9177.495555984951, + "cc:id": "244", + "cc:Name": "Konta-Line MCHP", + "cc:site": [-12.5449, 8.4743], + "user:parentName": "Masimera", + "user:code": "OU_255033", + "user:orgUnitId": "nornKUJmQqn", + "user:level": "4", + "user:parentId": "EfWCa0Cc8WW" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.22519, 7.901175], + [-11.214583, 7.900416], + [-11.21125, 7.89625], + [-11.211249, 7.894468], + [-11.208202, 7.894468], + [-11.208065, 7.894231], + [-11.207916, 7.895417], + [-11.205416, 7.897083], + [-11.204651, 7.896624], + [-11.203069, 7.893884], + [-11.200084, 7.893883], + [-11.197082, 7.892084], + [-11.195417, 7.892084], + [-11.195242, 7.892779], + [-11.195241, 7.892779], + [-11.195082, 7.892131], + [-11.195237, 7.891191], + [-11.195259, 7.891148], + [-11.194242, 7.889728], + [-11.193844, 7.888585], + [-11.19376, 7.888271], + [-11.193416, 7.886819], + [-11.192856, 7.886187], + [-11.192196, 7.887214], + [-11.191899, 7.887692], + [-11.191822, 7.88787], + [-11.191665, 7.888592], + [-11.190957, 7.888403], + [-11.189896, 7.88809], + [-11.189388, 7.887935], + [-11.18879, 7.887768], + [-11.188433, 7.888705], + [-11.187742, 7.888482], + [-11.187887, 7.888043], + [-11.187195, 7.887811], + [-11.187585, 7.886671], + [-11.18733, 7.886577], + [-11.186974, 7.886461], + [-11.18657, 7.887597], + [-11.185984, 7.8874], + [-11.186085, 7.887118], + [-11.184886, 7.886652], + [-11.184717, 7.886596], + [-11.184169, 7.886376], + [-11.184098, 7.886409], + [-11.183213, 7.886733], + [-11.182582, 7.886752], + [-11.181967, 7.886552], + [-11.181764, 7.886859], + [-11.180918, 7.88663], + [-11.180191, 7.887315], + [-11.179981, 7.887336], + [-11.178417, 7.886417], + [-11.17813, 7.886627], + [-11.177753, 7.887775], + [-11.177728, 7.887838], + [-11.177457, 7.887833], + [-11.177024, 7.888457], + [-11.176604, 7.888154], + [-11.175681, 7.887481], + [-11.175334, 7.887225], + [-11.175176, 7.887311], + [-11.174849, 7.887939], + [-11.174372, 7.887742], + [-11.173935, 7.887381], + [-11.173643, 7.887802], + [-11.173207, 7.887503], + [-11.172855, 7.887929], + [-11.171649, 7.887157], + [-11.170973, 7.887511], + [-11.169775, 7.886904], + [-11.168491, 7.886488], + [-11.167685, 7.886535], + [-11.16736, 7.886732], + [-11.167539, 7.88568], + [-11.16701, 7.885551], + [-11.165727, 7.885205], + [-11.164554, 7.884867], + [-11.164238, 7.884714], + [-11.162645, 7.884267], + [-11.162561, 7.884317], + [-11.162168, 7.88555], + [-11.162105, 7.885782], + [-11.162014, 7.886484], + [-11.162748, 7.886742], + [-11.163102, 7.886621], + [-11.163453, 7.887324], + [-11.162984, 7.887503], + [-11.162106, 7.887481], + [-11.161078, 7.888031], + [-11.160823, 7.888371], + [-11.160521, 7.88798], + [-11.159958, 7.887768], + [-11.158907, 7.887682], + [-11.158759, 7.887743], + [-11.158566, 7.888023], + [-11.158542, 7.888053], + [-11.158447, 7.887979], + [-11.158144, 7.887734], + [-11.158018, 7.887554], + [-11.157159, 7.886653], + [-11.156808, 7.886673], + [-11.156493, 7.886475], + [-11.156362, 7.88625], + [-11.157916, 7.886249], + [-11.157916, 7.884584], + [-11.155873, 7.885093], + [-11.15581, 7.885008], + [-11.154583, 7.885416], + [-11.153521, 7.884354], + [-11.153103, 7.885013], + [-11.15329, 7.886168], + [-11.152998, 7.887121], + [-11.15268, 7.88747], + [-11.151519, 7.888165], + [-11.14893, 7.888166], + [-11.149582, 7.892083], + [-11.14625, 7.897083], + [-11.142083, 7.897084], + [-11.142083, 7.897917], + [-11.144582, 7.905416], + [-11.13375, 7.907917], + [-11.13375, 7.912083], + [-11.134235, 7.914022], + [-11.135557, 7.914155], + [-11.136201, 7.913952], + [-11.137481, 7.913222], + [-11.137895, 7.913191], + [-11.13855, 7.913299], + [-11.1386, 7.913311], + [-11.138607, 7.91331], + [-11.141249, 7.91375], + [-11.140417, 7.917916], + [-11.140417, 7.921249], + [-11.142082, 7.924583], + [-11.142916, 7.927917], + [-11.139583, 7.933749], + [-11.137917, 7.934583], + [-11.134583, 7.932917], + [-11.133749, 7.935416], + [-11.130417, 7.935417], + [-11.12803, 7.937206], + [-11.126885, 7.93704], + [-11.123496, 7.937006], + [-11.121997, 7.936371], + [-11.120188, 7.935049], + [-11.119583, 7.935044], + [-11.119582, 7.941249], + [-11.115417, 7.945417], + [-11.117082, 7.947917], + [-11.117083, 7.955416], + [-11.119583, 7.95375], + [-11.122916, 7.953749], + [-11.122917, 7.947917], + [-11.124582, 7.945417], + [-11.132916, 7.945417], + [-11.13375, 7.947084], + [-11.135417, 7.952083], + [-11.138358, 7.951495], + [-11.138427, 7.952577], + [-11.138251, 7.954157], + [-11.138044, 7.954878], + [-11.147916, 7.957917], + [-11.147917, 7.958749], + [-11.148749, 7.959584], + [-11.147917, 7.969583], + [-11.148092, 7.971516], + [-11.149608, 7.968892], + [-11.157419, 7.968892], + [-11.161327, 7.975656], + [-11.169138, 7.975657], + [-11.173045, 7.968892], + [-11.180857, 7.968892], + [-11.184763, 7.975656], + [-11.180858, 7.982423], + [-11.184763, 7.989188], + [-11.192576, 7.989189], + [-11.196051, 7.995206], + [-11.199192, 7.994757], + [-11.198299, 7.992699], + [-11.197499, 7.989099], + [-11.1973, 7.985199], + [-11.1973, 7.9803], + [-11.1979, 7.975599], + [-11.2001, 7.970299], + [-11.2015, 7.964399], + [-11.203999, 7.9584], + [-11.2051, 7.953299], + [-11.2077, 7.948099], + [-11.210899, 7.940799], + [-11.210899, 7.937499], + [-11.2099, 7.933699], + [-11.2103, 7.931399], + [-11.2124, 7.926299], + [-11.214799, 7.922], + [-11.216899, 7.9178], + [-11.220599, 7.9131], + [-11.221999, 7.9104], + [-11.223399, 7.9049], + [-11.22519, 7.901175] + ] + ], + "type": "Polygon" + }, + "id": 245, + "properties": { + "cc:admin:id": ["105"], + "cc:oBld:total": 7282, + "cc:pop:fifteen-to-twenty-four": 14955.380007563468, + "cc:pop:grid3-total": 43353.32018448246, + "cc:pop:kontur-total": 74242.62930732295, + "cc:pop:men": 38655.296908036675, + "cc:pop:sixty-plus": 4583.442163023928, + "cc:pop:total": 77573.63823703911, + "cc:pop:under-five": 12157.980001776728, + "cc:pop:women": 38918.34132900241, + "cc:pop:women-fiften-to-forty-nine": 19493.92822482333, + "cc:pop:wp-total": 58283.196176164405, + "cc:pop:wp-total-UN": 67608.12121167539, + "cc:id": "245", + "cc:Name": "Kordebotehun MCHP", + "cc:site": [-11.1828, 7.8991], + "user:parentName": "Nongowa", + "user:code": "OU_222701", + "user:orgUnitId": "lwHs72tP6Kh", + "user:level": "4", + "user:parentId": "KIUCimTXf8Q" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.513646, 8.048529], + [-12.512799, 8.0485], + [-12.493, 8.048699], + [-12.4877, 8.048], + [-12.483999, 8.045699], + [-12.481799, 8.043699], + [-12.4768, 8.0387], + [-12.472799, 8.035499], + [-12.4689, 8.0339], + [-12.4644, 8.0374], + [-12.463599, 8.0407], + [-12.461599, 8.0452], + [-12.460999, 8.0477], + [-12.460499, 8.0531], + [-12.459899, 8.0556], + [-12.457999, 8.06], + [-12.4574, 8.062799], + [-12.4572, 8.0676], + [-12.457299, 8.084399], + [-12.457399, 8.088299], + [-12.457899, 8.091599], + [-12.458599, 8.093699], + [-12.462499, 8.101199], + [-12.467099, 8.106999], + [-12.470099, 8.112299], + [-12.470523, 8.11281], + [-12.472083, 8.11125], + [-12.479241, 8.111249], + [-12.480187, 8.109611], + [-12.477474, 8.104909], + [-12.484582, 8.105416], + [-12.489582, 8.100416], + [-12.488825, 8.091316], + [-12.491218, 8.09171], + [-12.492221, 8.091657], + [-12.494394, 8.09076], + [-12.494473, 8.090665], + [-12.49375, 8.08125], + [-12.497818, 8.077181], + [-12.493749, 8.07718], + [-12.489844, 8.070415], + [-12.490418, 8.069419], + [-12.489583, 8.06875], + [-12.489562, 8.068435], + [-12.496801, 8.068434], + [-12.500708, 8.061669], + [-12.50852, 8.061668], + [-12.50875, 8.061271], + [-12.50875, 8.057435], + [-12.508804, 8.057429], + [-12.509431, 8.057551], + [-12.510284, 8.05797], + [-12.510563, 8.057934], + [-12.512113, 8.058719], + [-12.512966, 8.0588], + [-12.512917, 8.058749], + [-12.513646, 8.048529] + ] + ], + "type": "Polygon" + }, + "id": 246, + "properties": { + "cc:admin:id": ["59"], + "cc:oBld:total": 8, + "cc:pop:fifteen-to-twenty-four": 175.9569292123883, + "cc:pop:grid3-total": 862.260216962175, + "cc:pop:kontur-total": 617.456147144248, + "cc:pop:men": 477.88941240785937, + "cc:pop:sixty-plus": 71.97481082656502, + "cc:pop:total": 977.7236883279471, + "cc:pop:under-five": 163.22810803328713, + "cc:pop:women": 499.8342759200875, + "cc:pop:women-fiften-to-forty-nine": 239.9452746756803, + "cc:pop:wp-total": 808.2943331043574, + "cc:pop:wp-total-UN": 935.6037991245787, + "cc:id": "246", + "cc:Name": "Korgbotuma MCHP", + "cc:site": [-12.4627, 8.0525], + "user:parentName": "Kaiyamba", + "user:code": "OU_247060", + "user:orgUnitId": "hCm2Nh7C8BW", + "user:level": "4", + "user:parentId": "USQdmvrHh1Q" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.680416, 8.269584], + [-11.67125, 8.265417], + [-11.669582, 8.265416], + [-11.668278, 8.2615], + [-11.668753, 8.261253], + [-11.66375, 8.256249], + [-11.663749, 8.252084], + [-11.662082, 8.251249], + [-11.661249, 8.247917], + [-11.658749, 8.245417], + [-11.65375, 8.244583], + [-11.653749, 8.242917], + [-11.65125, 8.240417], + [-11.64875, 8.239583], + [-11.648749, 8.238749], + [-11.642083, 8.225417], + [-11.642916, 8.223749], + [-11.642916, 8.22125], + [-11.641249, 8.21625], + [-11.640416, 8.216249], + [-11.63625, 8.214583], + [-11.632917, 8.211249], + [-11.632917, 8.210417], + [-11.633749, 8.209583], + [-11.63375, 8.20625], + [-11.636249, 8.20125], + [-11.635417, 8.20125], + [-11.633749, 8.202083], + [-11.630597, 8.198932], + [-11.6266, 8.200699], + [-11.623999, 8.201199], + [-11.6205, 8.200799], + [-11.6153, 8.1985], + [-11.6127, 8.1979], + [-11.6091, 8.1977], + [-11.606399, 8.1979], + [-11.604299, 8.1987], + [-11.6015, 8.200599], + [-11.596, 8.205899], + [-11.593, 8.208199], + [-11.5891, 8.209999], + [-11.585499, 8.2119], + [-11.581499, 8.2135], + [-11.5775, 8.215899], + [-11.5758, 8.2173], + [-11.575, 8.2198], + [-11.5752, 8.223199], + [-11.577499, 8.227899], + [-11.5784, 8.2315], + [-11.5786, 8.2362], + [-11.578699, 8.249899], + [-11.5794, 8.2524], + [-11.582, 8.2585], + [-11.582399, 8.261899], + [-11.581999, 8.2641], + [-11.579899, 8.2689], + [-11.578199, 8.2756], + [-11.5746, 8.283099], + [-11.573199, 8.2854], + [-11.569699, 8.2897], + [-11.566499, 8.2954], + [-11.563899, 8.2986], + [-11.561, 8.300799], + [-11.5571, 8.302699], + [-11.554199, 8.3048], + [-11.552199, 8.3068], + [-11.550099, 8.3097], + [-11.5483, 8.313599], + [-11.546399, 8.3172], + [-11.545099, 8.3203], + [-11.5427, 8.324599], + [-11.541399, 8.3278], + [-11.538999, 8.3321], + [-11.536899, 8.3385], + [-11.536399, 8.3413], + [-11.5361, 8.345099], + [-11.539799, 8.348899], + [-11.5418, 8.3519], + [-11.5438, 8.3562], + [-11.5488, 8.3707], + [-11.5506, 8.3751], + [-11.553659, 8.381074], + [-11.559583, 8.380417], + [-11.562083, 8.392083], + [-11.566249, 8.391249], + [-11.567917, 8.389583], + [-11.569583, 8.387084], + [-11.577083, 8.397083], + [-11.579583, 8.397916], + [-11.583749, 8.393749], + [-11.582916, 8.382917], + [-11.57875, 8.379584], + [-11.578281, 8.379626], + [-11.57828, 8.379625], + [-11.582094, 8.373019], + [-11.578188, 8.366252], + [-11.582094, 8.359487], + [-11.589906, 8.359486], + [-11.593813, 8.352722], + [-11.601625, 8.352721], + [-11.605531, 8.345956], + [-11.611249, 8.345955], + [-11.61125, 8.344584], + [-11.612916, 8.34125], + [-11.615417, 8.338749], + [-11.621249, 8.337084], + [-11.622916, 8.337084], + [-11.629582, 8.341249], + [-11.63375, 8.351249], + [-11.641249, 8.351249], + [-11.645416, 8.347916], + [-11.646249, 8.337084], + [-11.644582, 8.335416], + [-11.642083, 8.32875], + [-11.640417, 8.325416], + [-11.640417, 8.320416], + [-11.64375, 8.316249], + [-11.652082, 8.315417], + [-11.657916, 8.315416], + [-11.65875, 8.312916], + [-11.671249, 8.308749], + [-11.672082, 8.304584], + [-11.667917, 8.297917], + [-11.670416, 8.294583], + [-11.670416, 8.292083], + [-11.669582, 8.28875], + [-11.662083, 8.287917], + [-11.662083, 8.287084], + [-11.667082, 8.282084], + [-11.671249, 8.283749], + [-11.673749, 8.281249], + [-11.672082, 8.27625], + [-11.669583, 8.274583], + [-11.669583, 8.272917], + [-11.678749, 8.271249], + [-11.680416, 8.269584] + ] + ], + "type": "Polygon" + }, + "id": 247, + "properties": { + "cc:admin:id": ["141"], + "cc:oBld:total": 6, + "cc:pop:fifteen-to-twenty-four": 1102.7380613845985, + "cc:pop:grid3-total": 7312.733324930592, + "cc:pop:kontur-total": 6058.650087789045, + "cc:pop:men": 2987.9942545681515, + "cc:pop:sixty-plus": 451.72117177584954, + "cc:pop:total": 6099.467863395095, + "cc:pop:under-five": 993.8178202608906, + "cc:pop:women": 3111.473608826943, + "cc:pop:women-fiften-to-forty-nine": 1495.4609814802802, + "cc:pop:wp-total": 6436.946362829612, + "cc:pop:wp-total-UN": 7463.443365744249, + "cc:id": "247", + "cc:Name": "Koribondo CHC", + "cc:site": [-11.58991, 8.26653], + "user:parentName": "Jaiama Bongor", + "user:code": "OU_820", + "user:orgUnitId": "mwN7QuEfT8m", + "user:level": "4", + "user:parentId": "daJPPxtIrQn" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.033456, 8.012216], + [-11.031899, 8.010599], + [-11.03, 8.008], + [-11.027999, 8.003799], + [-11.0241, 7.9979], + [-11.0211, 7.9957], + [-11.0188, 7.992899], + [-11.017, 7.9869], + [-11.0158, 7.9845], + [-11.0113, 7.9786], + [-11.008, 7.9727], + [-11.004899, 7.9685], + [-11.000599, 7.9735], + [-10.995799, 7.9822], + [-10.993899, 7.9892], + [-10.9931, 8.001599], + [-10.9922, 8.005599], + [-10.988871, 8.011789], + [-10.991812, 8.011789], + [-10.9955, 8.005402], + [-10.995417, 8.006249], + [-11.007082, 8.00625], + [-11.010147, 8.013142], + [-11.011646, 8.01099], + [-11.013452, 8.008448], + [-11.013515, 8.005869], + [-11.014013, 8.002338], + [-11.016249, 8.00625], + [-11.016843, 8.010994], + [-11.01746, 8.011643], + [-11.018623, 8.012143], + [-11.020089, 8.013873], + [-11.02375, 8.00875], + [-11.033456, 8.012216] + ] + ], + "type": "Polygon" + }, + "id": 248, + "properties": { + "cc:admin:id": ["75"], + "cc:oBld:total": 10, + "cc:pop:fifteen-to-twenty-four": 414.94519001611627, + "cc:pop:grid3-total": 1930.933814118556, + "cc:pop:kontur-total": 2046, + "cc:pop:men": 1214.5215476277817, + "cc:pop:sixty-plus": 128.98236306550712, + "cc:pop:total": 2169.74068237314, + "cc:pop:under-five": 335.9628097594318, + "cc:pop:women": 955.2191347453582, + "cc:pop:women-fiften-to-forty-nine": 476.94422753253076, + "cc:pop:wp-total": 2307.2189968756566, + "cc:pop:wp-total-UN": 2676.756983895019, + "cc:id": "248", + "cc:Name": "Kormende MCHP", + "cc:site": [-11.0083, 7.9827], + "user:parentName": "Jong", + "user:code": "OU_197393", + "user:orgUnitId": "S9QckzKX6Lg", + "user:level": "4", + "user:parentId": "VCtF1DbspR5" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.100416, 7.857084], + [-11.099583, 7.856249], + [-11.099582, 7.854584], + [-11.094583, 7.848749], + [-11.094582, 7.842084], + [-11.08375, 7.837916], + [-11.086249, 7.83125], + [-11.08363, 7.827319], + [-11.085265, 7.825901], + [-11.086404, 7.824835], + [-11.082917, 7.825416], + [-11.081249, 7.824583], + [-11.079583, 7.821249], + [-11.079582, 7.81375], + [-11.078497, 7.813749], + [-11.077015, 7.811182], + [-11.072917, 7.807083], + [-11.07375, 7.79625], + [-11.077082, 7.792917], + [-11.080265, 7.792007], + [-11.080917, 7.790878], + [-11.077012, 7.784112], + [-11.077701, 7.782917], + [-11.072083, 7.782916], + [-11.067917, 7.779584], + [-11.067082, 7.767917], + [-11.065416, 7.765417], + [-11.062082, 7.767916], + [-11.057083, 7.767917], + [-11.057082, 7.77125], + [-11.056249, 7.777917], + [-11.05375, 7.780416], + [-11.052083, 7.780417], + [-11.04875, 7.783749], + [-11.046059, 7.78375], + [-11.046234, 7.784111], + [-11.045761, 7.784112], + [-11.041856, 7.790877], + [-11.045445, 7.797096], + [-11.045444, 7.797097], + [-11.045416, 7.797084], + [-11.039583, 7.802917], + [-11.03875, 7.807916], + [-11.038781, 7.807947], + [-11.038819, 7.807948], + [-11.039028, 7.807917], + [-11.039583, 7.808749], + [-11.042916, 7.809584], + [-11.04125, 7.812083], + [-11.03875, 7.812084], + [-11.037484, 7.812505], + [-11.037392, 7.812219], + [-11.037274, 7.812084], + [-11.037083, 7.812084], + [-11.03625, 7.813749], + [-11.037917, 7.814584], + [-11.040417, 7.825416], + [-11.043519, 7.82453], + [-11.042316, 7.826616], + [-11.046189, 7.833325], + [-11.049583, 7.83375], + [-11.054582, 7.842083], + [-11.055416, 7.842917], + [-11.055416, 7.851249], + [-11.052083, 7.85375], + [-11.052082, 7.855417], + [-11.049583, 7.857917], + [-11.049582, 7.859619], + [-11.047934, 7.859566], + [-11.047083, 7.860417], + [-11.047083, 7.866], + [-11.0526, 7.8679], + [-11.055199, 7.871299], + [-11.057399, 7.873799], + [-11.0607, 7.8764], + [-11.0643, 7.8776], + [-11.0689, 7.877899], + [-11.077199, 7.8776], + [-11.0805, 7.876499], + [-11.0828, 7.874299], + [-11.0849, 7.871299], + [-11.091499, 7.867], + [-11.0946, 7.865599], + [-11.097916, 7.863849], + [-11.097917, 7.860465], + [-11.098439, 7.860288], + [-11.099847, 7.859926], + [-11.100416, 7.857084] + ] + ], + "type": "Polygon" + }, + "id": 249, + "properties": { + "cc:admin:id": ["15"], + "cc:oBld:total": 573, + "cc:pop:fifteen-to-twenty-four": 599.412662994964, + "cc:pop:grid3-total": 2744.748081094767, + "cc:pop:kontur-total": 2962.1750155960003, + "cc:pop:men": 1459.601619178765, + "cc:pop:sixty-plus": 192.259854199942, + "cc:pop:total": 3056.0094615046382, + "cc:pop:under-five": 491.9661856974241, + "cc:pop:women": 1596.407842325873, + "cc:pop:women-fiften-to-forty-nine": 811.6391184818946, + "cc:pop:wp-total": 3257.9538148835877, + "cc:pop:wp-total-UN": 3781.1362310734257, + "cc:id": "249", + "cc:Name": "Kornia MCHP", + "cc:site": [-11.0719, 7.8652], + "user:parentName": "Dama", + "user:code": "OU_222736", + "user:orgUnitId": "CSDGDOa7wHd", + "user:level": "4", + "user:parentId": "myQ4q1W6B4y" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.154952, 9.117359], + [-12.153749, 9.11375], + [-12.150417, 9.111249], + [-12.14875, 9.107916], + [-12.14875, 9.106249], + [-12.152916, 9.101249], + [-12.152082, 9.09875], + [-12.148749, 9.096249], + [-12.147082, 9.09125], + [-12.145416, 9.090417], + [-12.142189, 9.090416], + [-12.142476, 9.087537], + [-12.14235, 9.083037], + [-12.142845, 9.081755], + [-12.134583, 9.078749], + [-12.13625, 9.077082], + [-12.141249, 9.071249], + [-12.142082, 9.067083], + [-12.139582, 9.06625], + [-12.130417, 9.067917], + [-12.12923, 9.073848], + [-12.125718, 9.073849], + [-12.12441, 9.076111], + [-12.120416, 9.072917], + [-12.11375, 9.073749], + [-12.111249, 9.072083], + [-12.109583, 9.072082], + [-12.106249, 9.070417], + [-12.104582, 9.071249], + [-12.100416, 9.067083], + [-12.092083, 9.067083], + [-12.094582, 9.070417], + [-12.094582, 9.077082], + [-12.092083, 9.077917], + [-12.090417, 9.082083], + [-12.09125, 9.085416], + [-12.096382, 9.084775], + [-12.096459, 9.085698], + [-12.096178, 9.08686], + [-12.095409, 9.087773], + [-12.092441, 9.089186], + [-12.092266, 9.089767], + [-12.091403, 9.090981], + [-12.089701, 9.092506], + [-12.089017, 9.092839], + [-12.08789, 9.093127], + [-12.087414, 9.093214], + [-12.086218, 9.093203], + [-12.084709, 9.092542], + [-12.084318, 9.092671], + [-12.085417, 9.095416], + [-12.086045, 9.095731], + [-12.08606, 9.095723], + [-12.088989, 9.09964], + [-12.084583, 9.10625], + [-12.083749, 9.110416], + [-12.081826, 9.110898], + [-12.081524, 9.11319], + [-12.087081, 9.118749], + [-12.08375, 9.11875], + [-12.082917, 9.120417], + [-12.082916, 9.125416], + [-12.077082, 9.122083], + [-12.07125, 9.122083], + [-12.071249, 9.12375], + [-12.067083, 9.127917], + [-12.06125, 9.139583], + [-12.06125, 9.140417], + [-12.06711, 9.146276], + [-12.067076, 9.1463], + [-12.06625, 9.152916], + [-12.06625, 9.153669], + [-12.066408, 9.153678], + [-12.067703, 9.154189], + [-12.070074, 9.154144], + [-12.071817, 9.154509], + [-12.073305, 9.155717], + [-12.074944, 9.156566], + [-12.075778, 9.157177], + [-12.076096, 9.157807], + [-12.077473, 9.158608], + [-12.077091, 9.158958], + [-12.076299, 9.158997], + [-12.075626, 9.159689], + [-12.072799, 9.160617], + [-12.070398, 9.160432], + [-12.069587, 9.160319], + [-12.068968, 9.16047], + [-12.068421, 9.160697], + [-12.067644, 9.161257], + [-12.070417, 9.165416], + [-12.072083, 9.164583], + [-12.078749, 9.169582], + [-12.07875, 9.170416], + [-12.080417, 9.170417], + [-12.082083, 9.172916], + [-12.085416, 9.174582], + [-12.085416, 9.175417], + [-12.083725, 9.176544], + [-12.084785, 9.17798], + [-12.085746, 9.181023], + [-12.086163, 9.181402], + [-12.085757, 9.181603], + [-12.084731, 9.182652], + [-12.086793, 9.182759], + [-12.087132, 9.182987], + [-12.087631, 9.183942], + [-12.088248, 9.184289], + [-12.088707, 9.184928], + [-12.08946, 9.184896], + [-12.089367, 9.185284], + [-12.089042, 9.186759], + [-12.089262, 9.187133], + [-12.089607, 9.187334], + [-12.090295, 9.187457], + [-12.0921, 9.183999], + [-12.0971, 9.177399], + [-12.0995, 9.172799], + [-12.1024, 9.169199], + [-12.108999, 9.1624], + [-12.1108, 9.160299], + [-12.1123, 9.157499], + [-12.113399, 9.1529], + [-12.114099, 9.1508], + [-12.115299, 9.1489], + [-12.1177, 9.146099], + [-12.125799, 9.1376], + [-12.1289, 9.1333], + [-12.1328, 9.130499], + [-12.138399, 9.126], + [-12.143799, 9.123], + [-12.148099, 9.1195], + [-12.149999, 9.1183], + [-12.152999, 9.1174], + [-12.154952, 9.117359] + ] + ], + "type": "Polygon" + }, + "id": 250, + "properties": { + "cc:admin:id": ["32"], + "cc:oBld:total": 112, + "cc:pop:fifteen-to-twenty-four": 678.8976866177103, + "cc:pop:grid3-total": 3219.695406465812, + "cc:pop:kontur-total": 3713.3446136255593, + "cc:pop:men": 1674.1002072822746, + "cc:pop:sixty-plus": 251.26792617905986, + "cc:pop:total": 3524.5948946410645, + "cc:pop:under-five": 555.2051461633315, + "cc:pop:women": 1850.4946873587896, + "cc:pop:women-fiften-to-forty-nine": 909.7939059052989, + "cc:pop:wp-total": 3471.0764141946565, + "cc:pop:wp-total-UN": 4023.8055745272964, + "cc:id": "250", + "cc:Name": "Kortohun CHP", + "cc:site": [-12.1149, 9.1225], + "user:parentName": "Gbendembu Ngowahun", + "user:code": "OU_193284", + "user:orgUnitId": "z6v73gowbuM", + "user:level": "4", + "user:parentId": "BXJdOLvUrZB" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.635382, 7.417589], + [-11.634865, 7.417428], + [-11.63198, 7.418419], + [-11.631498, 7.41875], + [-11.628965, 7.418749], + [-11.62513, 7.412107], + [-11.628889, 7.405594], + [-11.617083, 7.406249], + [-11.617083, 7.405825], + [-11.618954, 7.404787], + [-11.61875, 7.404583], + [-11.619582, 7.397917], + [-11.618749, 7.395417], + [-11.60875, 7.39125], + [-11.608749, 7.38875], + [-11.606249, 7.385417], + [-11.602083, 7.386249], + [-11.599926, 7.384092], + [-11.599926, 7.384091], + [-11.600116, 7.384016], + [-11.597917, 7.382917], + [-11.597082, 7.37625], + [-11.58875, 7.379583], + [-11.587917, 7.370417], + [-11.587083, 7.367083], + [-11.587082, 7.36125], + [-11.577917, 7.36125], + [-11.57375, 7.364584], + [-11.572917, 7.375416], + [-11.575416, 7.377916], + [-11.575417, 7.379583], + [-11.579582, 7.382917], + [-11.579582, 7.384583], + [-11.576066, 7.384877], + [-11.572386, 7.391251], + [-11.576148, 7.39777], + [-11.575416, 7.397916], + [-11.567917, 7.397084], + [-11.570417, 7.407083], + [-11.572916, 7.41125], + [-11.568749, 7.415416], + [-11.559583, 7.415417], + [-11.554583, 7.410417], + [-11.553749, 7.414583], + [-11.552532, 7.416104], + [-11.55051, 7.419607], + [-11.545731, 7.419608], + [-11.545871, 7.419778], + [-11.54599, 7.420303], + [-11.54577, 7.426448], + [-11.546134, 7.430833], + [-11.541956, 7.430834], + [-11.53805, 7.437599], + [-11.538988, 7.439226], + [-11.537917, 7.439584], + [-11.53625, 7.442084], + [-11.538995, 7.448947], + [-11.539065, 7.448941], + [-11.542082, 7.45875], + [-11.542082, 7.459584], + [-11.540417, 7.466249], + [-11.542082, 7.470416], + [-11.542917, 7.473749], + [-11.54625, 7.477083], + [-11.552572, 7.477715], + [-11.552631, 7.477799], + [-11.554886, 7.479935], + [-11.556929, 7.48133], + [-11.558386, 7.482082], + [-11.5593, 7.481899], + [-11.5619, 7.479999], + [-11.564699, 7.4769], + [-11.5681, 7.471099], + [-11.570699, 7.4686], + [-11.5744, 7.466699], + [-11.5786, 7.463099], + [-11.5807, 7.460199], + [-11.5826, 7.456399], + [-11.5848, 7.453399], + [-11.590799, 7.4467], + [-11.5934, 7.4428], + [-11.5978, 7.44], + [-11.600699, 7.4395], + [-11.6037, 7.4409], + [-11.606399, 7.442899], + [-11.6075, 7.445499], + [-11.610799, 7.444699], + [-11.612999, 7.4434], + [-11.6176, 7.439799], + [-11.6235, 7.436599], + [-11.6269, 7.433499], + [-11.6292, 7.430399], + [-11.630899, 7.4265], + [-11.632899, 7.4229], + [-11.634199, 7.4198], + [-11.635382, 7.417589] + ] + ], + "type": "Polygon" + }, + "id": 251, + "properties": { + "cc:admin:id": ["27"], + "cc:oBld:total": 2, + "cc:pop:fifteen-to-twenty-four": 919.3848091947699, + "cc:pop:grid3-total": 4125.0777195288165, + "cc:pop:kontur-total": 5045.4342462172835, + "cc:pop:men": 2446.438397542042, + "cc:pop:sixty-plus": 354.59261756076637, + "cc:pop:total": 5077.755450540905, + "cc:pop:under-five": 840.6620548590834, + "cc:pop:women": 2631.3170529988643, + "cc:pop:women-fiften-to-forty-nine": 1255.0080079616057, + "cc:pop:wp-total": 5471.351141129838, + "cc:pop:wp-total-UN": 6347.766901363339, + "cc:id": "251", + "cc:Name": "Kowama MCHP", + "cc:site": [-11.5706, 7.4362], + "user:parentName": "Galliness Perri", + "user:code": "OU_260426", + "user:orgUnitId": "jr5hIZcJBXB", + "user:level": "4", + "user:parentId": "eNtRuQrrZeo" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.092029, 8.960195], + [-13.09066, 8.959852], + [-13.090585, 8.956788], + [-13.089903, 8.953656], + [-13.089583, 8.952754], + [-13.089583, 8.95125], + [-13.090452, 8.950814], + [-13.089379, 8.949437], + [-13.086815, 8.947955], + [-13.082083, 8.947256], + [-13.082083, 8.947915], + [-13.082081, 8.947916], + [-13.07875, 8.947083], + [-13.075417, 8.947082], + [-13.073749, 8.944583], + [-13.073291, 8.944582], + [-13.073233, 8.942917], + [-13.073187, 8.94125], + [-13.073926, 8.939827], + [-13.074782, 8.93863], + [-13.076178, 8.937661], + [-13.078371, 8.936921], + [-13.081417, 8.93621], + [-13.084294, 8.935668], + [-13.085547, 8.935753], + [-13.087143, 8.934415], + [-13.088562, 8.933332], + [-13.085899, 8.9334], + [-13.0793, 8.934499], + [-13.0749, 8.934], + [-13.0684, 8.9317], + [-13.062699, 8.930099], + [-13.0581, 8.9282], + [-13.054799, 8.927599], + [-13.048999, 8.9273], + [-13.0303, 8.9273], + [-13.024599, 8.9275], + [-13.0204, 8.9287], + [-13.014, 8.933299], + [-13.009299, 8.9361], + [-13.003, 8.940899], + [-12.9934, 8.9456], + [-12.99, 8.950699], + [-12.9881, 8.954799], + [-12.987499, 8.9615], + [-12.9869, 8.964099], + [-12.9856, 8.966399], + [-12.983299, 8.9691], + [-12.976799, 8.9755], + [-12.973999, 8.9777], + [-12.970391, 8.979719], + [-12.973002, 8.982852], + [-12.974217, 8.981891], + [-12.976617, 8.979826], + [-12.978083, 8.9788], + [-12.979418, 8.978134], + [-12.9807, 8.977615], + [-12.981688, 8.977359], + [-12.983194, 8.976991], + [-12.981251, 8.973752], + [-12.981251, 8.97375], + [-12.987917, 8.975417], + [-12.988476, 8.975977], + [-12.988127, 8.976061], + [-12.987657, 8.976141], + [-12.987338, 8.978052], + [-12.987641, 8.977985], + [-12.987916, 8.977909], + [-12.987917, 8.977917], + [-12.991149, 8.979532], + [-12.991065, 8.979686], + [-12.991243, 8.980656], + [-12.992206, 8.981399], + [-12.992298, 8.979957], + [-12.992669, 8.979329], + [-12.992998, 8.978279], + [-12.994018, 8.977565], + [-12.994583, 8.977542], + [-12.9951, 8.977221], + [-12.995737, 8.977208], + [-12.996795, 8.976264], + [-12.99789, 8.977648], + [-12.999432, 8.978584], + [-13.000155, 8.982874], + [-13.002672, 8.985123], + [-13.00314, 8.985735], + [-13.004365, 8.988685], + [-13.005386, 8.990337], + [-13.005957, 8.990906], + [-13.006434, 8.991351], + [-13.006458, 8.991389], + [-13.010416, 8.98875], + [-13.010417, 8.993466], + [-13.010871, 8.993367], + [-13.012042, 8.993287], + [-13.01317, 8.993257], + [-13.013341, 8.993446], + [-13.013545, 8.993113], + [-13.013753, 8.992924], + [-13.015104, 8.992294], + [-13.015864, 8.992169], + [-13.01638, 8.992089], + [-13.017463, 8.991939], + [-13.017917, 8.993749], + [-13.021249, 8.996249], + [-13.02125, 8.998949], + [-13.023103, 8.998408], + [-13.023101, 8.998923], + [-13.024136, 8.998929], + [-13.024135, 8.999443], + [-13.02517, 8.999449], + [-13.024916, 8.998676], + [-13.025434, 8.998677], + [-13.025179, 8.998162], + [-13.026731, 8.998298], + [-13.028286, 8.997921], + [-13.028286, 8.997923], + [-13.028029, 8.998177], + [-13.028027, 8.998434], + [-13.029323, 8.998184], + [-13.029589, 8.997155], + [-13.030367, 8.9969], + [-13.030459, 8.996474], + [-13.031146, 8.996647], + [-13.03141, 8.995619], + [-13.030894, 8.995615], + [-13.031153, 8.995359], + [-13.031154, 8.995102], + [-13.030896, 8.995101], + [-13.030637, 8.995354], + [-13.030636, 8.995354], + [-13.030899, 8.994328], + [-13.030639, 8.994454], + [-13.030253, 8.994323], + [-13.030383, 8.993938], + [-13.029998, 8.99355], + [-13.029871, 8.993035], + [-13.029872, 8.993034], + [-13.030388, 8.993036], + [-13.030392, 8.992264], + [-13.029616, 8.992259], + [-13.029617, 8.992002], + [-13.030653, 8.992008], + [-13.030781, 8.992523], + [-13.031166, 8.99304], + [-13.032202, 8.993047], + [-13.031939, 8.993817], + [-13.032457, 8.993821], + [-13.032455, 8.994335], + [-13.03427, 8.993831], + [-13.034271, 8.993832], + [-13.03418, 8.994256], + [-13.033751, 8.994343], + [-13.033749, 8.9946], + [-13.034266, 8.994602], + [-13.034357, 8.994434], + [-13.034785, 8.994605], + [-13.03479, 8.993833], + [-13.035048, 8.993834], + [-13.035045, 8.994607], + [-13.036598, 8.994743], + [-13.037079, 8.994509], + [-13.036034, 8.995461], + [-13.035241, 8.995593], + [-13.034652, 8.996181], + [-13.034766, 8.996147], + [-13.035813, 8.995852], + [-13.036861, 8.995579], + [-13.037796, 8.995419], + [-13.039823, 8.99576], + [-13.040347, 8.995828], + [-13.040963, 8.995646], + [-13.041099, 8.994598], + [-13.040918, 8.992844], + [-13.040895, 8.991318], + [-13.040827, 8.990042], + [-13.040667, 8.988469], + [-13.040577, 8.987401], + [-13.040606, 8.986441], + [-13.040367, 8.985688], + [-13.039632, 8.98492], + [-13.038775, 8.984389], + [-13.03757, 8.983382], + [-13.037683, 8.982781], + [-13.038181, 8.982158], + [-13.039255, 8.982818], + [-13.041072, 8.983375], + [-13.041133, 8.982653], + [-13.042251, 8.983116], + [-13.043162, 8.983373], + [-13.043903, 8.983418], + [-13.04454, 8.983194], + [-13.045319, 8.982645], + [-13.046551, 8.980865], + [-13.047244, 8.980228], + [-13.04803, 8.979863], + [-13.049014, 8.979885], + [-13.049913, 8.980369], + [-13.05073, 8.981204], + [-13.051268, 8.982431], + [-13.052162, 8.984166], + [-13.053245, 8.984337], + [-13.055779, 8.984224], + [-13.05951, 8.983796], + [-13.060877, 8.983084], + [-13.061505, 8.981916], + [-13.062245, 8.980349], + [-13.063669, 8.978726], + [-13.065406, 8.977131], + [-13.066118, 8.97491], + [-13.066603, 8.97323], + [-13.067868, 8.971887], + [-13.070416, 8.97125], + [-13.070689, 8.970977], + [-13.071729, 8.971263], + [-13.07415, 8.972317], + [-13.075424, 8.972933], + [-13.07625, 8.974582], + [-13.077916, 8.974582], + [-13.080416, 8.973749], + [-13.080416, 8.972917], + [-13.080198, 8.972698], + [-13.080389, 8.972539], + [-13.084205, 8.968837], + [-13.085225, 8.967727], + [-13.085226, 8.967727], + [-13.085417, 8.967917], + [-13.087342, 8.967916], + [-13.090545, 8.96461], + [-13.091969, 8.96233], + [-13.092029, 8.960195] + ] + ], + "type": "Polygon" + }, + "id": 252, + "properties": { + "cc:admin:id": ["115"], + "cc:oBld:total": 1577, + "cc:pop:fifteen-to-twenty-four": 1948.934341606828, + "cc:pop:grid3-total": 9784.76414156452, + "cc:pop:kontur-total": 10938.028147556573, + "cc:pop:men": 5163.413828715724, + "cc:pop:sixty-plus": 608.3448920345312, + "cc:pop:total": 11183.323622714986, + "cc:pop:under-five": 1725.1826017504686, + "cc:pop:women": 6019.90979399926, + "cc:pop:women-fiften-to-forty-nine": 2896.174474191345, + "cc:pop:wp-total": 9993.632327716266, + "cc:pop:wp-total-UN": 11605.743515780037, + "cc:id": "252", + "cc:Name": "Koya MCHP", + "cc:site": [-13.035, 8.9658], + "user:parentName": "Samu", + "user:code": "OU_211244", + "user:orgUnitId": "brnL0W3Fbsj", + "user:level": "4", + "user:parentId": "r06ohri9wA9" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.239343, 7.720817], + [-11.23892, 7.721562], + [-11.235966, 7.723747], + [-11.235143, 7.725709], + [-11.235141, 7.725709], + [-11.234871, 7.725242], + [-11.234582, 7.72625], + [-11.232082, 7.728749], + [-11.230416, 7.728749], + [-11.221711, 7.725848], + [-11.221612, 7.726249], + [-11.221249, 7.726249], + [-11.214583, 7.722084], + [-11.209583, 7.725417], + [-11.209007, 7.730595], + [-11.208203, 7.72964], + [-11.207452, 7.72933], + [-11.206493, 7.729375], + [-11.206112, 7.729243], + [-11.205992, 7.729449], + [-11.198181, 7.729449], + [-11.194273, 7.736214], + [-11.190943, 7.736214], + [-11.190814, 7.735309], + [-11.185187, 7.735308], + [-11.18128, 7.728544], + [-11.176877, 7.728543], + [-11.172917, 7.724584], + [-11.173749, 7.712917], + [-11.170416, 7.70875], + [-11.154583, 7.71125], + [-11.153749, 7.722083], + [-11.150417, 7.725417], + [-11.147916, 7.732083], + [-11.143287, 7.731422], + [-11.143247, 7.731638], + [-11.142083, 7.73125], + [-11.139582, 7.727917], + [-11.137916, 7.727916], + [-11.132917, 7.72375], + [-11.129583, 7.727084], + [-11.12875, 7.732083], + [-11.128307, 7.732525], + [-11.127464, 7.731067], + [-11.119653, 7.731067], + [-11.117386, 7.734991], + [-11.113749, 7.732084], + [-11.104893, 7.732821], + [-11.104765, 7.731479], + [-11.104369, 7.730896], + [-11.102647, 7.729384], + [-11.10173, 7.726604], + [-11.100597, 7.724141], + [-11.099575, 7.723435], + [-11.098759, 7.722193], + [-11.097782, 7.721336], + [-11.09625, 7.720417], + [-11.08375, 7.722083], + [-11.082916, 7.717917], + [-11.07125, 7.717083], + [-11.069052, 7.714337], + [-11.066862, 7.714337], + [-11.064697, 7.718086], + [-11.066249, 7.720417], + [-11.057083, 7.729583], + [-11.061635, 7.729583], + [-11.065541, 7.722818], + [-11.069837, 7.722818], + [-11.071249, 7.724584], + [-11.070997, 7.727868], + [-11.074674, 7.727869], + [-11.07858, 7.734634], + [-11.083749, 7.734635], + [-11.08375, 7.735417], + [-11.086249, 7.73875], + [-11.087083, 7.741249], + [-11.092917, 7.742917], + [-11.097083, 7.751249], + [-11.102082, 7.75125], + [-11.105416, 7.752916], + [-11.11125, 7.758749], + [-11.112083, 7.758749], + [-11.116249, 7.757084], + [-11.118747, 7.756251], + [-11.119786, 7.757651], + [-11.120319, 7.75813], + [-11.126209, 7.758131], + [-11.12621, 7.758132], + [-11.124554, 7.759839], + [-11.124099, 7.761031], + [-11.123599, 7.76153], + [-11.124235, 7.763046], + [-11.12455, 7.763454], + [-11.126612, 7.764046], + [-11.128951, 7.765381], + [-11.129332, 7.765855], + [-11.129813, 7.767221], + [-11.130741, 7.7683], + [-11.131347, 7.768826], + [-11.132695, 7.769479], + [-11.133762, 7.770693], + [-11.135589, 7.771907], + [-11.135888, 7.772753], + [-11.141249, 7.772083], + [-11.146833, 7.76929], + [-11.147073, 7.767492], + [-11.146854, 7.765087], + [-11.146906, 7.764495], + [-11.150417, 7.76625], + [-11.157083, 7.77125], + [-11.158749, 7.777084], + [-11.155209, 7.783455], + [-11.15482, 7.783275], + [-11.152917, 7.787083], + [-11.154973, 7.789483], + [-11.154868, 7.789484], + [-11.150963, 7.796249], + [-11.154869, 7.803014], + [-11.157817, 7.803014], + [-11.158749, 7.802084], + [-11.159583, 7.797917], + [-11.162916, 7.797917], + [-11.162917, 7.812083], + [-11.16609, 7.815257], + [-11.16609, 7.815259], + [-11.166005, 7.815319], + [-11.168059, 7.817888], + [-11.163914, 7.824904], + [-11.16151, 7.827723], + [-11.160362, 7.830425], + [-11.159713, 7.831159], + [-11.157858, 7.832362], + [-11.157375, 7.831901], + [-11.157083, 7.831915], + [-11.157082, 7.832083], + [-11.156568, 7.832084], + [-11.154995, 7.832956], + [-11.152909, 7.833763], + [-11.151395, 7.835445], + [-11.150878, 7.836862], + [-11.150172, 7.840306], + [-11.150204, 7.841048], + [-11.149581, 7.84137], + [-11.149265, 7.842638], + [-11.14963, 7.843711], + [-11.149472, 7.845984], + [-11.148317, 7.847797], + [-11.147593, 7.848449], + [-11.14751, 7.848761], + [-11.147758, 7.849446], + [-11.146777, 7.852198], + [-11.146244, 7.852824], + [-11.145695, 7.852947], + [-11.145214, 7.852866], + [-11.144098, 7.853631], + [-11.141861, 7.854168], + [-11.140881, 7.855099], + [-11.140205, 7.855991], + [-11.140285, 7.856456], + [-11.139955, 7.857001], + [-11.139436, 7.857022], + [-11.139248, 7.857254], + [-11.139624, 7.858774], + [-11.139796, 7.85894], + [-11.139569, 7.859022], + [-11.139578, 7.859213], + [-11.139025, 7.859907], + [-11.138638, 7.860084], + [-11.138617, 7.860266], + [-11.137178, 7.861595], + [-11.13421, 7.863135], + [-11.134117, 7.863449], + [-11.132908, 7.863879], + [-11.13218, 7.864447], + [-11.131048, 7.865013], + [-11.131441, 7.865797], + [-11.132599, 7.865499], + [-11.135099, 7.8637], + [-11.139699, 7.8593], + [-11.142799, 7.8568], + [-11.147699, 7.8542], + [-11.1506, 7.851999], + [-11.1577, 7.844899], + [-11.1607, 7.841199], + [-11.1633, 7.836299], + [-11.165499, 7.8334], + [-11.1674, 7.831299], + [-11.217799, 7.7808], + [-11.2209, 7.777899], + [-11.225499, 7.773999], + [-11.228099, 7.7693], + [-11.229999, 7.7654], + [-11.233099, 7.7616], + [-11.233392, 7.761302], + [-11.232884, 7.760363], + [-11.232614, 7.759414], + [-11.235106, 7.755369], + [-11.23532, 7.754707], + [-11.235412, 7.751534], + [-11.234231, 7.750806], + [-11.235779, 7.744869], + [-11.234353, 7.744423], + [-11.234516, 7.741394], + [-11.236023, 7.73875], + [-11.233961, 7.73875], + [-11.23396, 7.738748], + [-11.234189, 7.737983], + [-11.234679, 7.737639], + [-11.234911, 7.735983], + [-11.235631, 7.734726], + [-11.235228, 7.734526], + [-11.236136, 7.731498], + [-11.236383, 7.731174], + [-11.2363, 7.730953], + [-11.239343, 7.720817] + ] + ], + "type": "Polygon" + }, + "id": 253, + "properties": { + "cc:admin:id": ["15"], + "cc:oBld:total": 1550, + "cc:pop:fifteen-to-twenty-four": 1981.494111067261, + "cc:pop:grid3-total": 7408.536780029349, + "cc:pop:kontur-total": 10199.791053325109, + "cc:pop:men": 4810.566753171662, + "cc:pop:sixty-plus": 608.484032759446, + "cc:pop:total": 10108.169608628443, + "cc:pop:under-five": 1599.2310882930763, + "cc:pop:women": 5297.602855456778, + "cc:pop:women-fiften-to-forty-nine": 2671.0086638122457, + "cc:pop:wp-total": 8699.172907368655, + "cc:pop:wp-total-UN": 10097.383642870396, + "cc:id": "253", + "cc:Name": "Kpandebu CHC", + "cc:site": [-11.1959, 7.7551], + "user:parentName": "Dama", + "user:code": "OU_222740", + "user:orgUnitId": "TljiT6C5D0J", + "user:level": "4", + "user:parentId": "myQ4q1W6B4y" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.110416, 8.182917], + [-11.107916, 8.180417], + [-11.105416, 8.182084], + [-11.095417, 8.183749], + [-11.095417, 8.180416], + [-11.096249, 8.177084], + [-11.095417, 8.177083], + [-11.095416, 8.176249], + [-11.09375, 8.170417], + [-11.098773, 8.166829], + [-11.09876, 8.166775], + [-11.097997, 8.165627], + [-11.095381, 8.16379], + [-11.094829, 8.163215], + [-11.093483, 8.160369], + [-11.093023, 8.157818], + [-11.092981, 8.157717], + [-11.087917, 8.157084], + [-11.087916, 8.162083], + [-11.087344, 8.162656], + [-11.087257, 8.162925], + [-11.087491, 8.163076], + [-11.087422, 8.16393], + [-11.087421, 8.16393], + [-11.087119, 8.16364], + [-11.086968, 8.1636], + [-11.086945, 8.163743], + [-11.086944, 8.163743], + [-11.086751, 8.163545], + [-11.0862, 8.16384], + [-11.086184, 8.163815], + [-11.085417, 8.164584], + [-11.085416, 8.16875], + [-11.083749, 8.169583], + [-11.075417, 8.167917], + [-11.075417, 8.171249], + [-11.079014, 8.177007], + [-11.079396, 8.176712], + [-11.079582, 8.177084], + [-11.07875, 8.186249], + [-11.077917, 8.18625], + [-11.077083, 8.187084], + [-11.07625, 8.190416], + [-11.076249, 8.197917], + [-11.074583, 8.199584], + [-11.072917, 8.202916], + [-11.072083, 8.202917], + [-11.07125, 8.203749], + [-11.071222, 8.203884], + [-11.070628, 8.203796], + [-11.069793, 8.203909], + [-11.069197, 8.204561], + [-11.068968, 8.2053], + [-11.068133, 8.205601], + [-11.067373, 8.205301], + [-11.066764, 8.205839], + [-11.065816, 8.205575], + [-11.065498, 8.204975], + [-11.065616, 8.204857], + [-11.065321, 8.204575], + [-11.064659, 8.203637], + [-11.064857, 8.203455], + [-11.064866, 8.203438], + [-11.064737, 8.203335], + [-11.06465, 8.203282], + [-11.064073, 8.203097], + [-11.064009, 8.203133], + [-11.063156, 8.20404], + [-11.062663, 8.203944], + [-11.062089, 8.20356], + [-11.062121, 8.203505], + [-11.061885, 8.203303], + [-11.060854, 8.203261], + [-11.060661, 8.203168], + [-11.059208, 8.202931], + [-11.057362, 8.203209], + [-11.057159, 8.204009], + [-11.056126, 8.204792], + [-11.056554, 8.204809], + [-11.056706, 8.20459], + [-11.056978, 8.204576], + [-11.057248, 8.204965], + [-11.057164, 8.205307], + [-11.056732, 8.205374], + [-11.056461, 8.20529], + [-11.056451, 8.204965], + [-11.056219, 8.205136], + [-11.055966, 8.204959], + [-11.055481, 8.205317], + [-11.055805, 8.20604], + [-11.056012, 8.206709], + [-11.056013, 8.206887], + [-11.056261, 8.206756], + [-11.056754, 8.206943], + [-11.057262, 8.207457], + [-11.059148, 8.207634], + [-11.057148, 8.209163], + [-11.056319, 8.20948], + [-11.056248, 8.210266], + [-11.056667, 8.211175], + [-11.05714, 8.211819], + [-11.057221, 8.212044], + [-11.057194, 8.212694], + [-11.057487, 8.21325], + [-11.0582, 8.213779], + [-11.05852, 8.214147], + [-11.059465, 8.215289], + [-11.060168, 8.216177], + [-11.060183, 8.216279], + [-11.059754, 8.216421], + [-11.060086, 8.217128], + [-11.060735, 8.216994], + [-11.060825, 8.217153], + [-11.061051, 8.217195], + [-11.063348, 8.217399], + [-11.064328, 8.217076], + [-11.064698, 8.216748], + [-11.06471, 8.216689], + [-11.064017, 8.216368], + [-11.064017, 8.216366], + [-11.066094, 8.215927], + [-11.066637, 8.216109], + [-11.066772, 8.215792], + [-11.067605, 8.215667], + [-11.068139, 8.215578], + [-11.068125, 8.215185], + [-11.068123, 8.215047], + [-11.06815, 8.214786], + [-11.068366, 8.21468], + [-11.07006, 8.214501], + [-11.070375, 8.215102], + [-11.071159, 8.214988], + [-11.071008, 8.214347], + [-11.071009, 8.214346], + [-11.071633, 8.214214], + [-11.073175, 8.21395], + [-11.07495, 8.213655], + [-11.075189, 8.213765], + [-11.075471, 8.213623], + [-11.075787, 8.213402], + [-11.075874, 8.213493], + [-11.076329, 8.213173], + [-11.0763, 8.213045], + [-11.076513, 8.212885], + [-11.076512, 8.21283], + [-11.07659, 8.212822], + [-11.07749, 8.212035], + [-11.078011, 8.211346], + [-11.077916, 8.211185], + [-11.077917, 8.210417], + [-11.078573, 8.210417], + [-11.078551, 8.210582], + [-11.079365, 8.209549], + [-11.081512, 8.207895], + [-11.082736, 8.206085], + [-11.083158, 8.204861], + [-11.083664, 8.205322], + [-11.084273, 8.205879], + [-11.085252, 8.207364], + [-11.086087, 8.20791], + [-11.088749, 8.204584], + [-11.090416, 8.204583], + [-11.08875, 8.200417], + [-11.089583, 8.199583], + [-11.096249, 8.195417], + [-11.097083, 8.195416], + [-11.102083, 8.192917], + [-11.109582, 8.192916], + [-11.110416, 8.182917] + ] + ], + "type": "Polygon" + }, + "id": 254, + "properties": { + "cc:admin:id": ["75"], + "cc:oBld:total": 733, + "cc:pop:fifteen-to-twenty-four": 2446.0294079352398, + "cc:pop:grid3-total": 8278.225728923973, + "cc:pop:kontur-total": 8244.450565668903, + "cc:pop:men": 7120.079324982882, + "cc:pop:sixty-plus": 747.7789960814272, + "cc:pop:total": 12736.923972573808, + "cc:pop:under-five": 1981.0602296020816, + "cc:pop:women": 5616.844647590928, + "cc:pop:women-fiften-to-forty-nine": 2794.0665917947103, + "cc:pop:wp-total": 9913.032547665538, + "cc:pop:wp-total-UN": 11485.160547304726, + "cc:id": "254", + "cc:Name": "Kpandebu MCHP", + "cc:site": [-11.0713, 8.2141], + "user:parentName": "Lower Bambara", + "user:code": "OU_222653", + "user:orgUnitId": "PFZbQjwty2n", + "user:level": "4", + "user:parentId": "hdEuw2ugkVF" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.181301, 7.871026], + [-11.181202, 7.870925], + [-11.180856, 7.870768], + [-11.180758, 7.870682], + [-11.180388, 7.870446], + [-11.180047, 7.86942], + [-11.179527, 7.868596], + [-11.179242, 7.867619], + [-11.178873, 7.867357], + [-11.178786, 7.867058], + [-11.177684, 7.866911], + [-11.176425, 7.866601], + [-11.175719, 7.865877], + [-11.175688, 7.865388], + [-11.175868, 7.865023], + [-11.174887, 7.864637], + [-11.174706, 7.865121], + [-11.174841, 7.86585], + [-11.175003, 7.86606], + [-11.17479, 7.866689], + [-11.174392, 7.86615], + [-11.173661, 7.865829], + [-11.173657, 7.86568], + [-11.173363, 7.865521], + [-11.173056, 7.865617], + [-11.173317, 7.864911], + [-11.173332, 7.864899], + [-11.174118, 7.864013], + [-11.174535, 7.864109], + [-11.174692, 7.863526], + [-11.174471, 7.863463], + [-11.1742, 7.86341], + [-11.173553, 7.863268], + [-11.173149, 7.863461], + [-11.173197, 7.863575], + [-11.173196, 7.863577], + [-11.168965, 7.863576], + [-11.168475, 7.86273], + [-11.16723, 7.863031], + [-11.166599, 7.863407], + [-11.16604, 7.862407], + [-11.165724, 7.861717], + [-11.165683, 7.861684], + [-11.164461, 7.861024], + [-11.163371, 7.860604], + [-11.162956, 7.860339], + [-11.162916, 7.860417], + [-11.16125, 7.860417], + [-11.161249, 7.862083], + [-11.155417, 7.862083], + [-11.152916, 7.859584], + [-11.147083, 7.857916], + [-11.14625, 7.855417], + [-11.146072, 7.855063], + [-11.142799, 7.8568], + [-11.139699, 7.8593], + [-11.1351, 7.863699], + [-11.132646, 7.865467], + [-11.137916, 7.873749], + [-11.137917, 7.876249], + [-11.140416, 7.879584], + [-11.140416, 7.882084], + [-11.13875, 7.889583], + [-11.14125, 7.897083], + [-11.146249, 7.897083], + [-11.149582, 7.892083], + [-11.14893, 7.888166], + [-11.151519, 7.888165], + [-11.15268, 7.88747], + [-11.152998, 7.887121], + [-11.15329, 7.886168], + [-11.153103, 7.885013], + [-11.15352, 7.884354], + [-11.154583, 7.885416], + [-11.15581, 7.885007], + [-11.154736, 7.883541], + [-11.154444, 7.883439], + [-11.15445, 7.883132], + [-11.15641, 7.881537], + [-11.157254, 7.881018], + [-11.157497, 7.879587], + [-11.157917, 7.879032], + [-11.15834, 7.878684], + [-11.158276, 7.878509], + [-11.1585, 7.87817], + [-11.159089, 7.877912], + [-11.15927, 7.877978], + [-11.159632, 7.878025], + [-11.161045, 7.877247], + [-11.161385, 7.877049], + [-11.161511, 7.877225], + [-11.161613, 7.87772], + [-11.161982, 7.877982], + [-11.162314, 7.878203], + [-11.163145, 7.878799], + [-11.162375, 7.88013], + [-11.16199, 7.881215], + [-11.162551, 7.881432], + [-11.162911, 7.880847], + [-11.162821, 7.880532], + [-11.163004, 7.880131], + [-11.163487, 7.879447], + [-11.163665, 7.879271], + [-11.163701, 7.879107], + [-11.163781, 7.879148], + [-11.164446, 7.878393], + [-11.164703, 7.878508], + [-11.164972, 7.878155], + [-11.165054, 7.877946], + [-11.165221, 7.877959], + [-11.165945, 7.877876], + [-11.166549, 7.877568], + [-11.16657, 7.878149], + [-11.166649, 7.878715], + [-11.166974, 7.878614], + [-11.167118, 7.879054], + [-11.167581, 7.879249], + [-11.168827, 7.879323], + [-11.169332, 7.878988], + [-11.169265, 7.878669], + [-11.169632, 7.878535], + [-11.1701, 7.878022], + [-11.170378, 7.878141], + [-11.170065, 7.878767], + [-11.170279, 7.879136], + [-11.171402, 7.879347], + [-11.171975, 7.879654], + [-11.172135, 7.879727], + [-11.172391, 7.879811], + [-11.172189, 7.880081], + [-11.172443, 7.880803], + [-11.173363, 7.881327], + [-11.173723, 7.881665], + [-11.174148, 7.881258], + [-11.174547, 7.880146], + [-11.173866, 7.880438], + [-11.173742, 7.88049], + [-11.173741, 7.880489], + [-11.173945, 7.880102], + [-11.174203, 7.879523], + [-11.17425, 7.879483], + [-11.174582, 7.879014], + [-11.174983, 7.87856], + [-11.175652, 7.87744], + [-11.175747, 7.876399], + [-11.177422, 7.87596], + [-11.178223, 7.875772], + [-11.177824, 7.875477], + [-11.177679, 7.87504], + [-11.177715, 7.874901], + [-11.177767, 7.874851], + [-11.177857, 7.874814], + [-11.178326, 7.874819], + [-11.178577, 7.874589], + [-11.178594, 7.874517], + [-11.178708, 7.87388], + [-11.179201, 7.87411], + [-11.179467, 7.874226], + [-11.179716, 7.87376], + [-11.179874, 7.873503], + [-11.179877, 7.873401], + [-11.179734, 7.872051], + [-11.180513, 7.871252], + [-11.180972, 7.871504], + [-11.181077, 7.871529], + [-11.181301, 7.871026] + ] + ], + "type": "Polygon" + }, + "id": 255, + "properties": { + "cc:admin:id": ["105"], + "cc:oBld:total": 1730, + "cc:pop:fifteen-to-twenty-four": 3432.0779018792346, + "cc:pop:grid3-total": 11496.806766373988, + "cc:pop:kontur-total": 14287.14903573512, + "cc:pop:men": 8881.314887845312, + "cc:pop:sixty-plus": 1055.723752564715, + "cc:pop:total": 17820.67882025742, + "cc:pop:under-five": 2796.123763553825, + "cc:pop:women": 8939.363932412107, + "cc:pop:women-fiften-to-forty-nine": 4474.667127221913, + "cc:pop:wp-total": 14857.85267100837, + "cc:pop:wp-total-UN": 17238.237187597188, + "cc:id": "255", + "cc:Name": "Kpayama 1 MCHP", + "cc:site": [-11.1774, 7.8679], + "user:parentName": "Nongowa", + "user:code": "OU_222703", + "user:orgUnitId": "So2b8zJfcMa", + "user:level": "4", + "user:parentId": "KIUCimTXf8Q" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.18723, 7.865049], + [-11.186924, 7.863476], + [-11.186603, 7.862622], + [-11.186529, 7.86245], + [-11.186534, 7.862296], + [-11.186477, 7.862239], + [-11.18636, 7.862227], + [-11.186322, 7.862243], + [-11.186114, 7.862128], + [-11.185833, 7.86179], + [-11.184966, 7.862036], + [-11.182776, 7.862331], + [-11.182522, 7.86172], + [-11.182682, 7.86151], + [-11.18265, 7.861191], + [-11.181145, 7.860983], + [-11.180881, 7.860898], + [-11.180157, 7.860702], + [-11.179879, 7.860765], + [-11.180041, 7.860179], + [-11.180184, 7.85976], + [-11.179771, 7.85949], + [-11.179204, 7.859173], + [-11.179171, 7.860141], + [-11.178764, 7.860059], + [-11.178553, 7.859738], + [-11.177511, 7.859626], + [-11.177106, 7.859624], + [-11.176829, 7.859572], + [-11.176694, 7.859535], + [-11.176695, 7.859342], + [-11.176449, 7.859246], + [-11.17622, 7.859019], + [-11.176334, 7.858749], + [-11.176176, 7.858572], + [-11.17664, 7.858], + [-11.176968, 7.857849], + [-11.176894, 7.857756], + [-11.176791, 7.857551], + [-11.175987, 7.856799], + [-11.175733, 7.856635], + [-11.175408, 7.856334], + [-11.175127, 7.85679], + [-11.174932, 7.856693], + [-11.174117, 7.856214], + [-11.173913, 7.856108], + [-11.173734, 7.856002], + [-11.173504, 7.855862], + [-11.173348, 7.855739], + [-11.173093, 7.855544], + [-11.172995, 7.855408], + [-11.172971, 7.855192], + [-11.17301, 7.855076], + [-11.173348, 7.854573], + [-11.173298, 7.854218], + [-11.173378, 7.854077], + [-11.173611, 7.854109], + [-11.174579, 7.8547], + [-11.17487, 7.854364], + [-11.175262, 7.853977], + [-11.175144, 7.853881], + [-11.174484, 7.853633], + [-11.173524, 7.853493], + [-11.173214, 7.853332], + [-11.172881, 7.853257], + [-11.172824, 7.853053], + [-11.173685, 7.852254], + [-11.172577, 7.851819], + [-11.171388, 7.851696], + [-11.169974, 7.851006], + [-11.16788, 7.849341], + [-11.1672, 7.849073], + [-11.166194, 7.848961], + [-11.163428, 7.847728], + [-11.16375, 7.847083], + [-11.163749, 7.842084], + [-11.161451, 7.839785], + [-11.160699, 7.8412], + [-11.1577, 7.844899], + [-11.1506, 7.851999], + [-11.1477, 7.854199], + [-11.146073, 7.855063], + [-11.14625, 7.855417], + [-11.147083, 7.857916], + [-11.152916, 7.859583], + [-11.155417, 7.862083], + [-11.161249, 7.862083], + [-11.16125, 7.860417], + [-11.162916, 7.860417], + [-11.162956, 7.860339], + [-11.163371, 7.860604], + [-11.164461, 7.861024], + [-11.165683, 7.861684], + [-11.165724, 7.861717], + [-11.16604, 7.862407], + [-11.166599, 7.863407], + [-11.16723, 7.863031], + [-11.168475, 7.86273], + [-11.168965, 7.863576], + [-11.173197, 7.863577], + [-11.173149, 7.86346], + [-11.173553, 7.863268], + [-11.1742, 7.86341], + [-11.174471, 7.863463], + [-11.174692, 7.863525], + [-11.174536, 7.864109], + [-11.174118, 7.864013], + [-11.173332, 7.864899], + [-11.173318, 7.864911], + [-11.173056, 7.865617], + [-11.173363, 7.865521], + [-11.173657, 7.86568], + [-11.173661, 7.865828], + [-11.174393, 7.86615], + [-11.17479, 7.86669], + [-11.175003, 7.86606], + [-11.174841, 7.86585], + [-11.174706, 7.865121], + [-11.174886, 7.864637], + [-11.175868, 7.865022], + [-11.175688, 7.865388], + [-11.175719, 7.865877], + [-11.176426, 7.866601], + [-11.177684, 7.866911], + [-11.178787, 7.867058], + [-11.178873, 7.867356], + [-11.179243, 7.867619], + [-11.179527, 7.868596], + [-11.180047, 7.86942], + [-11.180389, 7.870446], + [-11.180758, 7.870682], + [-11.180856, 7.870768], + [-11.181202, 7.870925], + [-11.181302, 7.871026], + [-11.1817, 7.871269], + [-11.182265, 7.870765], + [-11.182434, 7.870635], + [-11.182736, 7.870456], + [-11.183284, 7.869963], + [-11.183478, 7.869986], + [-11.183778, 7.870026], + [-11.184262, 7.870062], + [-11.1837, 7.867934], + [-11.18377, 7.867091], + [-11.184675, 7.866295], + [-11.184892, 7.8661], + [-11.185276, 7.865821], + [-11.18649, 7.865194], + [-11.18723, 7.865049] + ] + ], + "type": "Polygon" + }, + "id": 256, + "properties": { + "cc:admin:id": ["105"], + "cc:oBld:total": 1708, + "cc:pop:fifteen-to-twenty-four": 2864.362596921175, + "cc:pop:grid3-total": 10761.190472192155, + "cc:pop:kontur-total": 18155.656934286166, + "cc:pop:men": 7408.404958233089, + "cc:pop:sixty-plus": 879.8581597336179, + "cc:pop:total": 14852.865036737554, + "cc:pop:under-five": 2333.499720627959, + "cc:pop:women": 7444.460078504469, + "cc:pop:women-fiften-to-forty-nine": 3728.743774416417, + "cc:pop:wp-total": 12569.141270274647, + "cc:pop:wp-total-UN": 14578.1865078097, + "cc:id": "256", + "cc:Name": "Kpayama 2 MCHP", + "cc:site": [-11.1796, 7.8657], + "user:parentName": "Nongowa", + "user:code": "OU_222719", + "user:orgUnitId": "geVF87N7qTw", + "user:level": "4", + "user:parentId": "KIUCimTXf8Q" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.147634, 7.882744], + [-12.147199, 7.881199], + [-12.1434, 7.874], + [-12.1398, 7.8675], + [-12.138699, 7.863399], + [-12.1382, 7.856099], + [-12.138299, 7.8457], + [-12.1389, 7.839899], + [-12.140399, 7.8308], + [-12.139599, 7.8266], + [-12.136, 7.821899], + [-12.134799, 7.818399], + [-12.1344, 7.812999], + [-12.135199, 7.803599], + [-12.133, 7.786], + [-12.1323, 7.782399], + [-12.133399, 7.7758], + [-12.1338, 7.771699], + [-12.1338, 7.7658], + [-12.133299, 7.761299], + [-12.132599, 7.7585], + [-12.1306, 7.7553], + [-12.1244, 7.749099], + [-12.1228, 7.7453], + [-12.122, 7.739199], + [-12.122199, 7.7234], + [-12.121899, 7.718799], + [-12.120999, 7.7147], + [-12.1187, 7.7108], + [-12.115699, 7.7086], + [-12.1128, 7.7078], + [-12.11238, 7.707771], + [-12.109354, 7.713012], + [-12.108896, 7.713013], + [-12.109582, 7.715417], + [-12.108749, 7.726249], + [-12.10496, 7.729281], + [-12.104034, 7.729282], + [-12.103859, 7.729584], + [-12.095417, 7.729583], + [-12.094582, 7.722084], + [-12.092916, 7.721249], + [-12.089639, 7.720595], + [-12.089372, 7.721249], + [-12.079583, 7.72125], + [-12.079582, 7.722084], + [-12.070417, 7.722084], + [-12.064583, 7.727083], + [-12.064092, 7.728553], + [-12.062127, 7.72803], + [-12.057586, 7.727488], + [-12.056086, 7.730082], + [-12.048275, 7.730082], + [-12.04669, 7.727338], + [-12.046249, 7.730416], + [-12.042917, 7.732916], + [-12.035416, 7.729583], + [-12.027424, 7.728354], + [-12.026804, 7.728512], + [-12.024508, 7.728825], + [-12.024329, 7.730962], + [-12.020931, 7.736848], + [-12.015926, 7.736849], + [-12.016249, 7.740417], + [-12.0079, 7.742693], + [-12.007899, 7.742692], + [-12.007798, 7.742295], + [-12.00125, 7.743749], + [-11.998749, 7.745416], + [-11.994542, 7.745417], + [-11.99476, 7.745797], + [-11.990855, 7.752562], + [-11.983042, 7.752563], + [-11.980913, 7.756249], + [-11.977083, 7.75625], + [-11.972083, 7.76125], + [-11.972082, 7.76603], + [-11.971031, 7.766299], + [-11.966855, 7.765527], + [-11.967764, 7.767105], + [-11.963858, 7.77387], + [-11.958631, 7.77387], + [-11.957916, 7.769584], + [-11.955416, 7.76625], + [-11.940417, 7.76625], + [-11.937917, 7.769584], + [-11.938749, 7.780416], + [-11.936249, 7.783749], + [-11.927083, 7.784583], + [-11.924491, 7.780696], + [-11.924584, 7.780625], + [-11.922082, 7.77875], + [-11.919582, 7.778749], + [-11.910417, 7.777917], + [-11.90875, 7.77875], + [-11.905417, 7.782917], + [-11.905416, 7.787916], + [-11.89875, 7.78875], + [-11.901249, 7.797083], + [-11.901487, 7.798031], + [-11.901926, 7.797786], + [-11.902068, 7.797697], + [-11.907114, 7.801481], + [-11.907125, 7.801484], + [-11.907753, 7.801086], + [-11.909583, 7.802916], + [-11.913749, 7.802917], + [-11.913749, 7.803], + [-11.913523, 7.803031], + [-11.913618, 7.803278], + [-11.913446, 7.80343], + [-11.91304, 7.803445], + [-11.913559, 7.809161], + [-11.915564, 7.812632], + [-11.923376, 7.812633], + [-11.926074, 7.817305], + [-11.925417, 7.821249], + [-11.936249, 7.823749], + [-11.937917, 7.82375], + [-11.939583, 7.830416], + [-11.942082, 7.83375], + [-11.941818, 7.834279], + [-11.940866, 7.834588], + [-11.939257, 7.834184], + [-11.938745, 7.833883], + [-11.938225, 7.833271], + [-11.937929, 7.833719], + [-11.937854, 7.834555], + [-11.939246, 7.835451], + [-11.940536, 7.837464], + [-11.940923, 7.837692], + [-11.941662, 7.838784], + [-11.942275, 7.839813], + [-11.942878, 7.84174], + [-11.942909, 7.842437], + [-11.942751, 7.843919], + [-11.943155, 7.844661], + [-11.944588, 7.846207], + [-11.944821, 7.846015], + [-11.944774, 7.845532], + [-11.945244, 7.84525], + [-11.946312, 7.845706], + [-11.946312, 7.845707], + [-11.945756, 7.846021], + [-11.945448, 7.846619], + [-11.947087, 7.847659], + [-11.949506, 7.849107], + [-11.950494, 7.849701], + [-11.95474, 7.852411], + [-11.957862, 7.853902], + [-11.95939, 7.854249], + [-11.959406, 7.855093], + [-11.959216, 7.855129], + [-11.961477, 7.859047], + [-11.960085, 7.86146], + [-11.960104, 7.861473], + [-11.96086, 7.862488], + [-11.96087, 7.862916], + [-11.964583, 7.862917], + [-11.965983, 7.869921], + [-11.96604, 7.869886], + [-11.966414, 7.869898], + [-11.967917, 7.880416], + [-11.973012, 7.880417], + [-11.973889, 7.881932], + [-11.982082, 7.88125], + [-11.98625, 7.897083], + [-11.989583, 7.898749], + [-11.994583, 7.899584], + [-11.999582, 7.903749], + [-11.999583, 7.914898], + [-12.001032, 7.915901], + [-12.002838, 7.916352], + [-12.002083, 7.925416], + [-12.006249, 7.930416], + [-12.009582, 7.932083], + [-12.012916, 7.932916], + [-12.014583, 7.933749], + [-12.01875, 7.93375], + [-12.030416, 7.939584], + [-12.030416, 7.943333], + [-12.024453, 7.943334], + [-12.021052, 7.949223], + [-12.025416, 7.952917], + [-12.02375, 7.956249], + [-12.021939, 7.957238], + [-12.020161, 7.960317], + [-12.024067, 7.967083], + [-12.02745, 7.967084], + [-12.027449, 7.967085], + [-12.027294, 7.967182], + [-12.027319, 7.968225], + [-12.027667, 7.969531], + [-12.0288, 7.971597], + [-12.02902, 7.972886], + [-12.029955, 7.974293], + [-12.030194, 7.977916], + [-12.030211, 7.977917], + [-12.030251, 7.978782], + [-12.029734, 7.980607], + [-12.029583, 7.983526], + [-12.028314, 7.986866], + [-12.03, 7.986799], + [-12.034399, 7.9861], + [-12.039099, 7.9847], + [-12.042099, 7.9841], + [-12.056099, 7.9832], + [-12.0606, 7.982399], + [-12.0693, 7.978499], + [-12.0756, 7.975099], + [-12.0839, 7.969899], + [-12.094999, 7.9658], + [-12.1016, 7.963699], + [-12.1126, 7.959099], + [-12.1166, 7.957999], + [-12.131399, 7.956499], + [-12.136899, 7.9541], + [-12.139699, 7.952099], + [-12.141799, 7.949099], + [-12.142899, 7.9448], + [-12.142999, 7.9388], + [-12.138599, 7.936999], + [-12.135299, 7.934299], + [-12.1324, 7.930199], + [-12.1315, 7.9267], + [-12.1312, 7.9238], + [-12.1314, 7.9153], + [-12.1331, 7.9105], + [-12.140099, 7.9036], + [-12.143599, 7.8994], + [-12.147399, 7.8921], + [-12.148299, 7.887799], + [-12.1481, 7.8844], + [-12.147634, 7.882744] + ] + ], + "type": "Polygon" + }, + "id": 257, + "properties": { + "cc:admin:id": ["11"], + "cc:oBld:total": 1460, + "cc:pop:fifteen-to-twenty-four": 6312.349579466968, + "cc:pop:grid3-total": 22762.71418858747, + "cc:pop:kontur-total": 34328.97295610457, + "cc:pop:men": 16280.13210164187, + "cc:pop:sixty-plus": 2638.8189986722573, + "cc:pop:total": 34165.387672286204, + "cc:pop:under-five": 5276.541594623773, + "cc:pop:women": 17885.25557064436, + "cc:pop:women-fiften-to-forty-nine": 8270.632816223453, + "cc:pop:wp-total": 28549.696332069645, + "cc:pop:wp-total-UN": 33111.308411553044, + "cc:id": "257", + "cc:Name": "Kpetema CHP", + "cc:site": [-11.9917, 7.82], + "user:parentName": "Bumpe Ngao", + "user:code": "OU_639", + "user:orgUnitId": "RTixJpRqS4C", + "user:level": "4", + "user:parentId": "BGGmAwx33dj" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.719107, 8.967544], + [-10.718799, 8.964899], + [-10.717199, 8.960099], + [-10.715599, 8.956899], + [-10.712, 8.9518], + [-10.7102, 8.9487], + [-10.708399, 8.944199], + [-10.7063, 8.9379], + [-10.702399, 8.9319], + [-10.6985, 8.932599], + [-10.6941, 8.934399], + [-10.690099, 8.9352], + [-10.6847, 8.935299], + [-10.6807, 8.9347], + [-10.675299, 8.932499], + [-10.671399, 8.931699], + [-10.666199, 8.9315], + [-10.6439, 8.9315], + [-10.6387, 8.931699], + [-10.6357, 8.932299], + [-10.6304, 8.934399], + [-10.627799, 8.934899], + [-10.6243, 8.934699], + [-10.618299, 8.932199], + [-10.609099, 8.9297], + [-10.605299, 8.9306], + [-10.601099, 8.9332], + [-10.595, 8.9378], + [-10.598199, 8.958999], + [-10.5972, 8.9634], + [-10.598399, 8.973699], + [-10.598305, 8.974384], + [-10.60122, 8.974385], + [-10.605126, 8.98115], + [-10.612937, 8.981151], + [-10.615401, 8.985416], + [-10.620416, 8.985417], + [-10.622604, 8.994169], + [-10.622587, 8.994175], + [-10.62375, 8.997082], + [-10.632916, 9.001249], + [-10.633749, 9.00125], + [-10.635416, 9.002083], + [-10.635417, 9.007916], + [-10.637083, 9.012082], + [-10.647916, 9.012083], + [-10.649583, 9.014582], + [-10.652083, 9.015417], + [-10.65375, 9.017916], + [-10.661249, 9.017917], + [-10.662939, 9.019043], + [-10.670499, 9.0124], + [-10.6739, 9.009799], + [-10.6765, 9.008599], + [-10.6817, 9.006799], + [-10.693699, 9.0016], + [-10.700299, 8.9993], + [-10.7037, 8.997199], + [-10.7069, 8.994499], + [-10.709799, 8.9915], + [-10.712399, 8.9883], + [-10.717799, 8.9788], + [-10.719, 8.974899], + [-10.719299, 8.9692], + [-10.719107, 8.967544] + ] + ], + "type": "Polygon" + }, + "id": 258, + "properties": { + "cc:admin:id": ["136"], + "cc:oBld:total": 177, + "cc:pop:fifteen-to-twenty-four": 386.99562999085634, + "cc:pop:grid3-total": 3454.654976428893, + "cc:pop:kontur-total": 2134.4095307790208, + "cc:pop:men": 919.5464931740825, + "cc:pop:sixty-plus": 113.7145951010396, + "cc:pop:total": 2016.0326472255963, + "cc:pop:under-five": 302.1334197896576, + "cc:pop:women": 1096.486154051515, + "cc:pop:women-fiften-to-forty-nine": 559.4964797322692, + "cc:pop:wp-total": 1666.4797542146375, + "cc:pop:wp-total-UN": 1922.784427724324, + "cc:id": "258", + "cc:Name": "Kpetema CHP (Toli)", + "cc:site": [-10.6539, 8.9599], + "user:parentName": "Toli", + "user:code": "OU_233316", + "user:orgUnitId": "GIRLSZ1tB00", + "user:level": "4", + "user:parentId": "FRxcUEwktoV" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.202916, 7.822084], + [-11.199043, 7.820147], + [-11.199028, 7.820185], + [-11.195417, 7.819583], + [-11.19125, 7.817084], + [-11.193749, 7.807917], + [-11.192242, 7.806409], + [-11.167399, 7.8313], + [-11.165499, 7.8334], + [-11.1633, 7.836299], + [-11.161451, 7.839784], + [-11.163749, 7.842084], + [-11.16375, 7.847083], + [-11.163428, 7.847727], + [-11.166194, 7.848961], + [-11.1672, 7.849073], + [-11.16788, 7.849341], + [-11.169974, 7.851006], + [-11.171388, 7.851696], + [-11.172577, 7.851819], + [-11.173684, 7.852253], + [-11.173684, 7.852255], + [-11.172824, 7.853054], + [-11.172881, 7.853257], + [-11.173214, 7.853332], + [-11.173524, 7.853493], + [-11.174484, 7.853633], + [-11.175144, 7.853881], + [-11.175262, 7.853977], + [-11.17487, 7.854364], + [-11.174579, 7.8547], + [-11.173611, 7.854109], + [-11.173379, 7.854077], + [-11.173298, 7.854218], + [-11.173348, 7.854573], + [-11.17301, 7.855076], + [-11.172971, 7.855192], + [-11.172995, 7.855407], + [-11.173093, 7.855544], + [-11.173348, 7.855739], + [-11.173504, 7.855862], + [-11.173734, 7.856002], + [-11.173913, 7.856108], + [-11.174117, 7.856214], + [-11.174932, 7.856693], + [-11.175127, 7.85679], + [-11.175408, 7.856334], + [-11.175733, 7.856635], + [-11.175987, 7.856799], + [-11.176791, 7.857551], + [-11.176894, 7.857756], + [-11.176968, 7.85785], + [-11.17664, 7.858], + [-11.176176, 7.858572], + [-11.176334, 7.858749], + [-11.17622, 7.859018], + [-11.176449, 7.859246], + [-11.176695, 7.859341], + [-11.176694, 7.859535], + [-11.176829, 7.859572], + [-11.177106, 7.859624], + [-11.177511, 7.859626], + [-11.178553, 7.859737], + [-11.178764, 7.860059], + [-11.179171, 7.860141], + [-11.179174, 7.860047], + [-11.179203, 7.859174], + [-11.179205, 7.859173], + [-11.179771, 7.85949], + [-11.180184, 7.859759], + [-11.180041, 7.860179], + [-11.179879, 7.860765], + [-11.180158, 7.860702], + [-11.180881, 7.860898], + [-11.181145, 7.860983], + [-11.18265, 7.861191], + [-11.182682, 7.86151], + [-11.182522, 7.86172], + [-11.182776, 7.862331], + [-11.184966, 7.862036], + [-11.185834, 7.86179], + [-11.186114, 7.862128], + [-11.186323, 7.862243], + [-11.18636, 7.862227], + [-11.186477, 7.862239], + [-11.186534, 7.862296], + [-11.186529, 7.86245], + [-11.186603, 7.862622], + [-11.186924, 7.863476], + [-11.18723, 7.865049], + [-11.187584, 7.866293], + [-11.188114, 7.865816], + [-11.189508, 7.866532], + [-11.191754, 7.867808], + [-11.192651, 7.868263], + [-11.193031, 7.868471], + [-11.193319, 7.867931], + [-11.193545, 7.867435], + [-11.193763, 7.866949], + [-11.193377, 7.866747], + [-11.191378, 7.865791], + [-11.191655, 7.865266], + [-11.191895, 7.864801], + [-11.192145, 7.864285], + [-11.192341, 7.863756], + [-11.192724, 7.862884], + [-11.192271, 7.862722], + [-11.192231, 7.862703], + [-11.191812, 7.862318], + [-11.192443, 7.861127], + [-11.190352, 7.859467], + [-11.190792, 7.859211], + [-11.191783, 7.858627], + [-11.193186, 7.857864], + [-11.194972, 7.856904], + [-11.194619, 7.856244], + [-11.194418, 7.855778], + [-11.194227, 7.85535], + [-11.194978, 7.854893], + [-11.195108, 7.854875], + [-11.195118, 7.854772], + [-11.195011, 7.854755], + [-11.194826, 7.854143], + [-11.194787, 7.853692], + [-11.195426, 7.85337], + [-11.19515, 7.852853], + [-11.194902, 7.85256], + [-11.19493, 7.852344], + [-11.196213, 7.851524], + [-11.195954, 7.850982], + [-11.196819, 7.850506], + [-11.196465, 7.850025], + [-11.195561, 7.849421], + [-11.195302, 7.849479], + [-11.195437, 7.849114], + [-11.194766, 7.848941], + [-11.194441, 7.848641], + [-11.194508, 7.848498], + [-11.195044, 7.847762], + [-11.195228, 7.846768], + [-11.195287, 7.846523], + [-11.195291, 7.846336], + [-11.1948, 7.845859], + [-11.194479, 7.845502], + [-11.194265, 7.844762], + [-11.194259, 7.844734], + [-11.1944, 7.844268], + [-11.194242, 7.842743], + [-11.193814, 7.842493], + [-11.193432, 7.842486], + [-11.193041, 7.842129], + [-11.192916, 7.842023], + [-11.192916, 7.839584], + [-11.192083, 7.837916], + [-11.192083, 7.83625], + [-11.196249, 7.832916], + [-11.19625, 7.832083], + [-11.199582, 7.830416], + [-11.199583, 7.82625], + [-11.200416, 7.825416], + [-11.200417, 7.82375], + [-11.202916, 7.822084] + ] + ], + "type": "Polygon" + }, + "id": 259, + "properties": { + "cc:admin:id": ["105"], + "cc:oBld:total": 3807, + "cc:pop:fifteen-to-twenty-four": 7228.418159844326, + "cc:pop:grid3-total": 25496.879668350626, + "cc:pop:kontur-total": 34784.664935769615, + "cc:pop:men": 18695.990976673344, + "cc:pop:sixty-plus": 2210.496970779751, + "cc:pop:total": 37463.39050444357, + "cc:pop:under-five": 5868.919566040043, + "cc:pop:women": 18767.399527770238, + "cc:pop:women-fiften-to-forty-nine": 9408.674295154166, + "cc:pop:wp-total": 30639.009222867535, + "cc:pop:wp-total-UN": 35521.997952780344, + "cc:id": "259", + "cc:Name": "Kpetema MCHP", + "cc:site": [-11.1857, 7.856], + "user:parentName": "Nongowa", + "user:code": "OU_222698", + "user:orgUnitId": "kDxbU1uSBFh", + "user:level": "4", + "user:parentId": "KIUCimTXf8Q" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.861285, 7.758854], + [-11.85861, 7.759029], + [-11.858749, 7.758749], + [-11.856249, 7.75375], + [-11.854583, 7.752916], + [-11.854583, 7.742084], + [-11.857082, 7.737084], + [-11.849582, 7.730417], + [-11.84125, 7.730416], + [-11.84125, 7.727916], + [-11.844582, 7.722083], + [-11.842917, 7.712917], + [-11.845414, 7.71125], + [-11.845281, 7.710653], + [-11.844242, 7.708371], + [-11.843068, 7.707201], + [-11.842417, 7.706001], + [-11.832917, 7.701249], + [-11.83375, 7.700416], + [-11.838749, 7.690417], + [-11.82875, 7.68875], + [-11.827082, 7.689583], + [-11.824583, 7.688749], + [-11.822083, 7.682084], + [-11.823125, 7.679479], + [-11.824948, 7.679538], + [-11.825416, 7.679324], + [-11.825416, 7.675417], + [-11.822082, 7.67375], + [-11.814593, 7.673749], + [-11.814637, 7.67332], + [-11.812917, 7.673749], + [-11.812916, 7.66875], + [-11.810417, 7.665417], + [-11.807918, 7.672078], + [-11.807917, 7.672079], + [-11.807916, 7.660417], + [-11.80333, 7.659107], + [-11.792, 7.670599], + [-11.786899, 7.675], + [-11.782699, 7.6771], + [-11.7784, 7.679499], + [-11.775199, 7.6808], + [-11.771599, 7.6827], + [-11.768499, 7.6835], + [-11.7627, 7.683999], + [-11.7594, 7.6851], + [-11.7555, 7.688499], + [-11.7531, 7.692099], + [-11.7559, 7.6939], + [-11.764199, 7.697899], + [-11.769299, 7.698899], + [-11.771999, 7.699999], + [-11.775999, 7.703399], + [-11.7783, 7.7065], + [-11.7797, 7.7096], + [-11.7817, 7.7132], + [-11.7836, 7.7174], + [-11.786, 7.7198], + [-11.798199, 7.7259], + [-11.800999, 7.7289], + [-11.8028, 7.7326], + [-11.804899, 7.736199], + [-11.8062, 7.7394], + [-11.808599, 7.743699], + [-11.810199, 7.747599], + [-11.814, 7.753199], + [-11.8177, 7.7546], + [-11.833999, 7.7546], + [-11.8377, 7.755], + [-11.8399, 7.7557], + [-11.843499, 7.757599], + [-11.8466, 7.759], + [-11.850999, 7.761299], + [-11.853599, 7.761799], + [-11.857, 7.761499], + [-11.859499, 7.7603], + [-11.861285, 7.758854] + ] + ], + "type": "Polygon" + }, + "id": 260, + "properties": { + "cc:admin:id": ["78"], + "cc:oBld:total": 497, + "cc:pop:fifteen-to-twenty-four": 1526.1442303318547, + "cc:pop:grid3-total": 7783.738276758743, + "cc:pop:kontur-total": 8080.296210605617, + "cc:pop:men": 4381.577755609781, + "cc:pop:sixty-plus": 582.7955020902026, + "cc:pop:total": 8462.847025185276, + "cc:pop:under-five": 1387.5289444530817, + "cc:pop:women": 4081.2692695754968, + "cc:pop:women-fiften-to-forty-nine": 1942.2071670948578, + "cc:pop:wp-total": 9158.553701653214, + "cc:pop:wp-total-UN": 10608.526952845716, + "cc:id": "260", + "cc:Name": "Kpetewoma CHP", + "cc:site": [-11.8153, 7.7346], + "user:parentName": "Lugbu", + "user:code": "OU_1058", + "user:orgUnitId": "mGmu0GJ5neg", + "user:level": "4", + "user:parentId": "kU8vhUkAGaT" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.745645, 7.953181], + [-11.743577, 7.952393], + [-11.743854, 7.951859], + [-11.745081, 7.949346], + [-11.744814, 7.949226], + [-11.744265, 7.948996], + [-11.743915, 7.948836], + [-11.743795, 7.948788], + [-11.743282, 7.948548], + [-11.743035, 7.949022], + [-11.741835, 7.950111], + [-11.741638, 7.950176], + [-11.74037, 7.950293], + [-11.74005, 7.950299], + [-11.73992, 7.950304], + [-11.73985, 7.949981], + [-11.739977, 7.949583], + [-11.739966, 7.949525], + [-11.739721, 7.949329], + [-11.738947, 7.948871], + [-11.738756, 7.949897], + [-11.738062, 7.949978], + [-11.737549, 7.949986], + [-11.737076, 7.950021], + [-11.736537, 7.950081], + [-11.736596, 7.951254], + [-11.736146, 7.951356], + [-11.735582, 7.951416], + [-11.735031, 7.951458], + [-11.734537, 7.951506], + [-11.734032, 7.95157], + [-11.733496, 7.951629], + [-11.733627, 7.953021], + [-11.733838, 7.955463], + [-11.733892, 7.956164], + [-11.733332, 7.95584], + [-11.732642, 7.955094], + [-11.732034, 7.954144], + [-11.731553, 7.953538], + [-11.731806, 7.954322], + [-11.731103, 7.954458], + [-11.730481, 7.954637], + [-11.730922, 7.956324], + [-11.730905, 7.956825], + [-11.730726, 7.957225], + [-11.729129, 7.957063], + [-11.729056, 7.957052], + [-11.727521, 7.956933], + [-11.727062, 7.957349], + [-11.726267, 7.957249], + [-11.725874, 7.957396], + [-11.725891, 7.95748], + [-11.725964, 7.957975], + [-11.725478, 7.957988], + [-11.725372, 7.959117], + [-11.723521, 7.958983], + [-11.723529, 7.959549], + [-11.723478, 7.96011], + [-11.723381, 7.960651], + [-11.72477, 7.960729], + [-11.724716, 7.961249], + [-11.724664, 7.961271], + [-11.724203, 7.961226], + [-11.723682, 7.961292], + [-11.723635, 7.961995], + [-11.724164, 7.962015], + [-11.724597, 7.962017], + [-11.725151, 7.961954], + [-11.725204, 7.961307], + [-11.725209, 7.961284], + [-11.725802, 7.961361], + [-11.726454, 7.960999], + [-11.726927, 7.961141], + [-11.728223, 7.960101], + [-11.7286, 7.960558], + [-11.728979, 7.961014], + [-11.729558, 7.961543], + [-11.729959, 7.961817], + [-11.72943, 7.962574], + [-11.728101, 7.962791], + [-11.727963, 7.963195], + [-11.728153, 7.963427], + [-11.729531, 7.96334], + [-11.730444, 7.963692], + [-11.730539, 7.963716], + [-11.730934, 7.965683], + [-11.731284, 7.966418], + [-11.731951, 7.967623], + [-11.732001, 7.967707], + [-11.733365, 7.966912], + [-11.733416, 7.966884], + [-11.733743, 7.967429], + [-11.734134, 7.967956], + [-11.734585, 7.968081], + [-11.73465, 7.967656], + [-11.735098, 7.967466], + [-11.735288, 7.967167], + [-11.735676, 7.966972], + [-11.736454, 7.966352], + [-11.736737, 7.96632], + [-11.736531, 7.96584], + [-11.736555, 7.965702], + [-11.737352, 7.965281], + [-11.737869, 7.965055], + [-11.737933, 7.965083], + [-11.73796, 7.965078], + [-11.738014, 7.965002], + [-11.738013, 7.964987], + [-11.737921, 7.96492], + [-11.73726, 7.964218], + [-11.73726, 7.964217], + [-11.738016, 7.963764], + [-11.739035, 7.963238], + [-11.738807, 7.96266], + [-11.738189, 7.962964], + [-11.737903, 7.962401], + [-11.737469, 7.961361], + [-11.738528, 7.961347], + [-11.739863, 7.96091], + [-11.739724, 7.96037], + [-11.739732, 7.959996], + [-11.73976, 7.959944], + [-11.740032, 7.959737], + [-11.741213, 7.959245], + [-11.741903, 7.958638], + [-11.741988, 7.957454], + [-11.741892, 7.956727], + [-11.74232, 7.956389], + [-11.743044, 7.956489], + [-11.743254, 7.95655], + [-11.743622, 7.956586], + [-11.743798, 7.955992], + [-11.744137, 7.956095], + [-11.744492, 7.955957], + [-11.745223, 7.954322], + [-11.745634, 7.953255], + [-11.745645, 7.953181] + ] + ], + "type": "Polygon" + }, + "id": 261, + "properties": { + "cc:admin:id": ["46"], + "cc:oBld:total": 3268, + "cc:pop:fifteen-to-twenty-four": 5338.852183736314, + "cc:pop:grid3-total": 33211.85767970271, + "cc:pop:kontur-total": 34609.43657140411, + "cc:pop:men": 14424.746747990583, + "cc:pop:sixty-plus": 2125.832122541924, + "cc:pop:total": 29763.49610416774, + "cc:pop:under-five": 4934.41850467881, + "cc:pop:women": 15338.74935617716, + "cc:pop:women-fiften-to-forty-nine": 7309.19644988442, + "cc:pop:wp-total": 33195.903016108045, + "cc:pop:wp-total-UN": 38485.218478654126, + "cc:id": "261", + "cc:Name": "Kpolies Clinic", + "cc:site": [-11.7344, 7.9579], + "user:parentName": "Kakua", + "user:code": "OU_172172", + "user:orgUnitId": "bM4Ky73uMao", + "user:level": "4", + "user:parentId": "U6Kr7Gtpidn" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.606703, 7.338981], + [-11.607082, 7.337083], + [-11.60625, 7.332916], + [-11.606249, 7.32511], + [-11.600622, 7.325109], + [-11.602082, 7.322916], + [-11.602916, 7.312917], + [-11.599582, 7.308749], + [-11.595499, 7.308069], + [-11.594872, 7.309386], + [-11.590417, 7.308749], + [-11.588749, 7.307917], + [-11.58375, 7.307917], + [-11.577083, 7.317916], + [-11.574583, 7.317917], + [-11.566164, 7.309497], + [-11.566254, 7.309044], + [-11.567011, 7.308203], + [-11.568799, 7.307484], + [-11.568999, 7.306204], + [-11.562917, 7.309584], + [-11.562082, 7.31125], + [-11.561649, 7.311249], + [-11.559, 7.306663], + [-11.552917, 7.306663], + [-11.552917, 7.31067], + [-11.552507, 7.311379], + [-11.544695, 7.31138], + [-11.541161, 7.317499], + [-11.540396, 7.317588], + [-11.538803, 7.31738], + [-11.53629, 7.316775], + [-11.536249, 7.316249], + [-11.534582, 7.307916], + [-11.52741, 7.305867], + [-11.524296, 7.311259], + [-11.516484, 7.31126], + [-11.51625, 7.310853], + [-11.51625, 7.309583], + [-11.518749, 7.30625], + [-11.507083, 7.30625], + [-11.506249, 7.30875], + [-11.502917, 7.31125], + [-11.502916, 7.312917], + [-11.500416, 7.315416], + [-11.487917, 7.315417], + [-11.487413, 7.31592], + [-11.489399, 7.320199], + [-11.4907, 7.3252], + [-11.4933, 7.3319], + [-11.494099, 7.339999], + [-11.494599, 7.343799], + [-11.497199, 7.349999], + [-11.497799, 7.353699], + [-11.498, 7.3566], + [-11.498032, 7.36157], + [-11.503931, 7.361571], + [-11.507836, 7.368336], + [-11.50751, 7.368903], + [-11.508793, 7.368923], + [-11.509765, 7.368403], + [-11.50999, 7.368337], + [-11.513749, 7.368336], + [-11.51375, 7.364584], + [-11.514582, 7.364584], + [-11.514583, 7.372916], + [-11.52059, 7.376348], + [-11.522628, 7.376348], + [-11.526535, 7.369584], + [-11.533868, 7.369584], + [-11.534583, 7.372916], + [-11.544019, 7.372917], + [-11.543626, 7.373364], + [-11.545416, 7.372917], + [-11.55375, 7.387916], + [-11.556249, 7.387916], + [-11.560416, 7.384584], + [-11.560707, 7.381101], + [-11.563538, 7.386001], + [-11.569114, 7.386002], + [-11.569583, 7.385416], + [-11.579582, 7.384583], + [-11.579582, 7.382917], + [-11.575417, 7.379584], + [-11.575416, 7.377917], + [-11.572917, 7.375416], + [-11.572932, 7.375209], + [-11.57375, 7.364584], + [-11.577917, 7.36125], + [-11.587083, 7.36125], + [-11.596542, 7.361977], + [-11.594788, 7.358938], + [-11.597788, 7.35374], + [-11.597917, 7.353749], + [-11.602916, 7.348749], + [-11.602917, 7.338641], + [-11.606506, 7.338641], + [-11.606703, 7.338981] + ] + ], + "type": "Polygon" + }, + "id": 262, + "properties": { + "cc:admin:id": ["27"], + "cc:oBld:total": 199, + "cc:pop:fifteen-to-twenty-four": 1073.4393675444855, + "cc:pop:grid3-total": 7934.480978049275, + "cc:pop:kontur-total": 5890.498528145374, + "cc:pop:men": 2861.825126429774, + "cc:pop:sixty-plus": 404.09405251880685, + "cc:pop:total": 5915.052889467105, + "cc:pop:under-five": 992.5600059124745, + "cc:pop:women": 3053.2277630373333, + "cc:pop:women-fiften-to-forty-nine": 1464.5329316816953, + "cc:pop:wp-total": 5273.540789747925, + "cc:pop:wp-total-UN": 6111.8351076693325, + "cc:id": "262", + "cc:Name": "Kpowubu MCHP", + "cc:site": [-11.5709, 7.3429], + "user:parentName": "Galliness Perri", + "user:code": "OU_260421", + "user:orgUnitId": "QkczRcSeNck", + "user:level": "4", + "user:parentId": "eNtRuQrrZeo" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.812, 8.205299], + [-11.812499, 8.196799], + [-11.812, 8.1854], + [-11.8105, 8.1802], + [-11.8057, 8.1719], + [-11.8005, 8.1648], + [-11.7965, 8.1587], + [-11.789399, 8.1511], + [-11.786099, 8.1523], + [-11.783099, 8.1528], + [-11.7769, 8.153199], + [-11.7729, 8.153999], + [-11.7685, 8.155899], + [-11.765599, 8.1565], + [-11.7617, 8.156599], + [-11.7579, 8.1559], + [-11.7524, 8.1537], + [-11.748399, 8.153], + [-11.743099, 8.1531], + [-11.739199, 8.1539], + [-11.733699, 8.1561], + [-11.729799, 8.1567], + [-11.723499, 8.156799], + [-11.6948, 8.1566], + [-11.6897, 8.156899], + [-11.6867, 8.157699], + [-11.681, 8.1607], + [-11.677399, 8.1655], + [-11.6707, 8.172599], + [-11.669, 8.174899], + [-11.665299, 8.1825], + [-11.664599, 8.1858], + [-11.6643, 8.191099], + [-11.6635, 8.193799], + [-11.661, 8.196699], + [-11.658099, 8.197699], + [-11.6538, 8.1972], + [-11.648999, 8.194899], + [-11.646499, 8.1943], + [-11.6434, 8.194499], + [-11.641299, 8.195], + [-11.637699, 8.1968], + [-11.6318, 8.198399], + [-11.630598, 8.198932], + [-11.63375, 8.202083], + [-11.635417, 8.20125], + [-11.636249, 8.20125], + [-11.63375, 8.20625], + [-11.633749, 8.209583], + [-11.632917, 8.210417], + [-11.632917, 8.211249], + [-11.63625, 8.214583], + [-11.640416, 8.216249], + [-11.64125, 8.21625], + [-11.642916, 8.22125], + [-11.642916, 8.223749], + [-11.642083, 8.225417], + [-11.648749, 8.238749], + [-11.64875, 8.239583], + [-11.651249, 8.240417], + [-11.653749, 8.242916], + [-11.65375, 8.244583], + [-11.658749, 8.245417], + [-11.661249, 8.247916], + [-11.662083, 8.251249], + [-11.663749, 8.252084], + [-11.66375, 8.256249], + [-11.668753, 8.261253], + [-11.668753, 8.261255], + [-11.668278, 8.2615], + [-11.669583, 8.265416], + [-11.67125, 8.265416], + [-11.676249, 8.262917], + [-11.679583, 8.265416], + [-11.682082, 8.265416], + [-11.681249, 8.25875], + [-11.680417, 8.258749], + [-11.68125, 8.252917], + [-11.682917, 8.252916], + [-11.688749, 8.250416], + [-11.68875, 8.247917], + [-11.690416, 8.246249], + [-11.69125, 8.242084], + [-11.694221, 8.241488], + [-11.694051, 8.241251], + [-11.694051, 8.24125], + [-11.697082, 8.241249], + [-11.704582, 8.237084], + [-11.706374, 8.243055], + [-11.706888, 8.243945], + [-11.706727, 8.244228], + [-11.707083, 8.245416], + [-11.707917, 8.246249], + [-11.709583, 8.24625], + [-11.712082, 8.248749], + [-11.712917, 8.252916], + [-11.71625, 8.252917], + [-11.72625, 8.263749], + [-11.730416, 8.26375], + [-11.734583, 8.267916], + [-11.743749, 8.267916], + [-11.74875, 8.262917], + [-11.750416, 8.26375], + [-11.75125, 8.266249], + [-11.755417, 8.269583], + [-11.763749, 8.269583], + [-11.76625, 8.264584], + [-11.774582, 8.266249], + [-11.77625, 8.268749], + [-11.787081, 8.267084], + [-11.787082, 8.267085], + [-11.78625, 8.269583], + [-11.795416, 8.273749], + [-11.797916, 8.262917], + [-11.802408, 8.264199], + [-11.801699, 8.260299], + [-11.8014, 8.2558], + [-11.8015, 8.249699], + [-11.8018, 8.243699], + [-11.8023, 8.240799], + [-11.805899, 8.226], + [-11.810499, 8.2113], + [-11.812, 8.205299] + ] + ], + "type": "Polygon" + }, + "id": 263, + "properties": { + "cc:admin:id": ["141"], + "cc:oBld:total": 52, + "cc:pop:fifteen-to-twenty-four": 1195.012695332675, + "cc:pop:grid3-total": 6753.429828981886, + "cc:pop:kontur-total": 6726.650787435592, + "cc:pop:men": 3225.265299342732, + "cc:pop:sixty-plus": 501.0882728450585, + "cc:pop:total": 6583.518981793656, + "cc:pop:under-five": 1079.4297004331554, + "cc:pop:women": 3358.2536824509266, + "cc:pop:women-fiften-to-forty-nine": 1626.4688177893827, + "cc:pop:wp-total": 5861.236849928567, + "cc:pop:wp-total-UN": 6803.872518021091, + "cc:id": "263", + "cc:Name": "Kpuabu MCHP", + "cc:site": [-11.7436, 8.1919], + "user:parentName": "Valunia", + "user:code": "OU_1144", + "user:orgUnitId": "S7KwVLbFlss", + "user:level": "4", + "user:parentId": "npWGUj37qDe" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.251865, 8.489656], + [-13.251831, 8.488063], + [-13.251184, 8.488035], + [-13.250036, 8.488035], + [-13.24943, 8.488026], + [-13.24932, 8.488025], + [-13.249442, 8.487041], + [-13.249332, 8.48625], + [-13.248956, 8.485841], + [-13.246035, 8.485669], + [-13.246077, 8.484521], + [-13.245124, 8.484687], + [-13.244975, 8.484718], + [-13.244694, 8.484752], + [-13.24458, 8.484687], + [-13.244255, 8.484318], + [-13.244259, 8.484312], + [-13.244, 8.484029], + [-13.244198, 8.483208], + [-13.244331, 8.482203], + [-13.243791, 8.482155], + [-13.24396, 8.480729], + [-13.243357, 8.480679], + [-13.243516, 8.47948], + [-13.243474, 8.47922], + [-13.24344, 8.479155], + [-13.243405, 8.479122], + [-13.242951, 8.47958], + [-13.242389, 8.479396], + [-13.241757, 8.479173], + [-13.240771, 8.478818], + [-13.240771, 8.478816], + [-13.241299, 8.478361], + [-13.240674, 8.478123], + [-13.238319, 8.477267], + [-13.23806, 8.477858], + [-13.238739, 8.478107], + [-13.238739, 8.478108], + [-13.237323, 8.478972], + [-13.237156, 8.478503], + [-13.236832, 8.478586], + [-13.23631, 8.478458], + [-13.236117, 8.478407], + [-13.235757, 8.478302], + [-13.235694, 8.47828], + [-13.235424, 8.483345], + [-13.234883, 8.483315], + [-13.234417, 8.483283], + [-13.234139, 8.48328], + [-13.233263, 8.485312], + [-13.233222, 8.485816], + [-13.233174, 8.486231], + [-13.231559, 8.486305], + [-13.231352, 8.486198], + [-13.230503, 8.486446], + [-13.230647, 8.486968], + [-13.230878, 8.487078], + [-13.231769, 8.488254], + [-13.232682, 8.489482], + [-13.232162, 8.489832], + [-13.233022, 8.491114], + [-13.233504, 8.491814], + [-13.234037, 8.491468], + [-13.234558, 8.491087], + [-13.234658, 8.491017], + [-13.23483, 8.49122], + [-13.235053, 8.491071], + [-13.235388, 8.491435], + [-13.235996, 8.49087], + [-13.236183, 8.491054], + [-13.2393, 8.4885], + [-13.248199, 8.494299], + [-13.251865, 8.489656] + ] + ], + "type": "Polygon" + }, + "id": 264, + "properties": { + "cc:admin:id": ["26"], + "cc:oBld:total": 4394, + "cc:pop:fifteen-to-twenty-four": 9962.679053601028, + "cc:pop:grid3-total": 48236.83042735001, + "cc:pop:kontur-total": 22126, + "cc:pop:men": 21708.962613044892, + "cc:pop:sixty-plus": 3376.727036709615, + "cc:pop:total": 43389.82629991606, + "cc:pop:under-five": 5006.486632741395, + "cc:pop:women": 21680.86368687117, + "cc:pop:women-fiften-to-forty-nine": 11624.82900211098, + "cc:pop:wp-total": 44082.89379036431, + "cc:pop:wp-total-UN": 51113.97478743125, + "cc:id": "264", + "cc:Name": "Kroo Bay CHC", + "cc:site": [-13.2407, 8.4868], + "user:parentName": "Freetown", + "user:code": "OU_278359", + "user:orgUnitId": "sM0Us0NkSez", + "user:level": "4", + "user:parentId": "C9uduqDZr9d" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.721008, 9.38876], + [-12.720532, 9.388645], + [-12.718953, 9.388045], + [-12.717967, 9.387944], + [-12.7154, 9.387011], + [-12.715259, 9.386927], + [-12.715141, 9.385311], + [-12.71463, 9.384537], + [-12.710417, 9.381675], + [-12.710416, 9.380416], + [-12.70906, 9.376351], + [-12.708436, 9.376526], + [-12.707619, 9.377162], + [-12.70375, 9.374583], + [-12.70375, 9.373749], + [-12.706229, 9.37065], + [-12.704678, 9.369148], + [-12.703952, 9.368358], + [-12.703515, 9.367607], + [-12.703152, 9.366638], + [-12.703189, 9.365714], + [-12.703571, 9.365639], + [-12.70031, 9.3657], + [-12.699025, 9.364589], + [-12.700416, 9.360417], + [-12.702082, 9.359582], + [-12.703749, 9.354583], + [-12.700417, 9.35125], + [-12.692083, 9.351249], + [-12.692082, 9.344583], + [-12.688749, 9.340417], + [-12.677917, 9.339583], + [-12.675417, 9.342082], + [-12.672082, 9.342917], + [-12.669583, 9.345417], + [-12.669005, 9.35062], + [-12.669329, 9.351596], + [-12.671463, 9.358105], + [-12.671971, 9.359575], + [-12.673712, 9.362273], + [-12.674045, 9.36828], + [-12.674139, 9.36972], + [-12.674848, 9.372099], + [-12.675754, 9.373203], + [-12.676689, 9.374901], + [-12.677496, 9.37798], + [-12.677648, 9.378573], + [-12.677764, 9.378612], + [-12.677701, 9.378777], + [-12.677725, 9.37905], + [-12.675322, 9.379058], + [-12.674769, 9.379505], + [-12.674374, 9.379622], + [-12.674068, 9.379437], + [-12.672082, 9.382082], + [-12.667636, 9.384624], + [-12.667635, 9.384624], + [-12.667544, 9.384353], + [-12.665417, 9.385416], + [-12.665416, 9.38625], + [-12.66375, 9.387082], + [-12.65875, 9.388749], + [-12.657917, 9.38875], + [-12.656224, 9.389314], + [-12.65676, 9.391317], + [-12.656796, 9.391878], + [-12.656264, 9.393098], + [-12.656468, 9.393798], + [-12.657561, 9.394298], + [-12.658182, 9.394192], + [-12.659782, 9.393282], + [-12.660128, 9.393387], + [-12.660252, 9.393825], + [-12.659987, 9.395105], + [-12.660174, 9.395446], + [-12.66131, 9.395893], + [-12.661488, 9.396226], + [-12.661301, 9.396648], + [-12.660874, 9.396937], + [-12.660653, 9.397626], + [-12.660762, 9.398017], + [-12.661744, 9.398783], + [-12.662638, 9.399032], + [-12.662963, 9.399315], + [-12.66295, 9.399483], + [-12.661589, 9.399379], + [-12.661011, 9.399246], + [-12.660675, 9.399238], + [-12.659923, 9.399285], + [-12.659863, 9.399304], + [-12.655417, 9.403749], + [-12.655416, 9.404582], + [-12.651249, 9.40375], + [-12.64875, 9.40625], + [-12.648049, 9.411847], + [-12.646317, 9.412537], + [-12.645277, 9.41339], + [-12.641699, 9.41685], + [-12.641021, 9.41812], + [-12.640244, 9.418219], + [-12.638372, 9.419041], + [-12.637433, 9.41919], + [-12.635846, 9.419068], + [-12.634088, 9.419309], + [-12.632918, 9.419212], + [-12.63125, 9.419297], + [-12.631249, 9.420417], + [-12.627083, 9.424583], + [-12.627083, 9.429923], + [-12.627207, 9.429878], + [-12.627209, 9.429878], + [-12.627916, 9.436249], + [-12.623749, 9.437083], + [-12.62125, 9.439583], + [-12.620416, 9.442916], + [-12.614583, 9.44375], + [-12.612083, 9.44625], + [-12.611249, 9.449582], + [-12.607083, 9.447917], + [-12.605417, 9.44875], + [-12.602917, 9.455417], + [-12.602916, 9.462916], + [-12.60125, 9.462917], + [-12.597083, 9.465417], + [-12.596249, 9.472082], + [-12.593263, 9.472083], + [-12.593323, 9.472362], + [-12.592613, 9.475931], + [-12.592237, 9.476747], + [-12.592763, 9.478813], + [-12.592493, 9.478871], + [-12.592559, 9.479101], + [-12.592632, 9.479605], + [-12.592499, 9.480051], + [-12.592294, 9.48042], + [-12.591944, 9.481687], + [-12.591428, 9.482373], + [-12.591102, 9.482937], + [-12.590104, 9.48357], + [-12.589062, 9.484662], + [-12.588723, 9.484231], + [-12.587954, 9.483931], + [-12.587787, 9.483653], + [-12.587023, 9.483271], + [-12.586635, 9.483276], + [-12.585534, 9.483751], + [-12.58482, 9.483664], + [-12.582055, 9.48845], + [-12.574244, 9.488451], + [-12.570881, 9.494274], + [-12.570767, 9.494309], + [-12.568988, 9.494653], + [-12.568428, 9.494822], + [-12.56715, 9.49476], + [-12.566176, 9.494979], + [-12.566479, 9.495215], + [-12.566478, 9.495216], + [-12.562525, 9.495217], + [-12.561375, 9.497207], + [-12.560416, 9.49625], + [-12.55625, 9.495417], + [-12.547083, 9.494583], + [-12.546449, 9.495217], + [-12.539087, 9.495217], + [-12.535181, 9.501981], + [-12.527369, 9.501982], + [-12.524555, 9.506853], + [-12.523749, 9.50625], + [-12.512916, 9.50625], + [-12.50875, 9.509583], + [-12.508325, 9.515513], + [-12.50393, 9.515513], + [-12.500024, 9.508748], + [-12.492212, 9.508748], + [-12.488306, 9.515514], + [-12.491308, 9.520715], + [-12.49132, 9.521199], + [-12.491143, 9.521496], + [-12.491106, 9.524194], + [-12.488306, 9.529045], + [-12.484145, 9.529046], + [-12.482999, 9.5342], + [-12.4827, 9.5399], + [-12.483199, 9.545599], + [-12.485799, 9.556399], + [-12.486099, 9.561699], + [-12.485599, 9.5657], + [-12.4832, 9.574999], + [-12.4829, 9.581599], + [-12.484099, 9.586299], + [-12.4857, 9.589099], + [-12.4881, 9.590599], + [-12.490799, 9.590899], + [-12.499999, 9.5879], + [-12.507099, 9.5854], + [-12.512199, 9.585], + [-12.516699, 9.5866], + [-12.5216, 9.590499], + [-12.531299, 9.593199], + [-12.5373, 9.5952], + [-12.541599, 9.595599], + [-12.545899, 9.5954], + [-12.5501, 9.594699], + [-12.556, 9.592799], + [-12.561799, 9.5921], + [-12.5662, 9.5922], + [-12.57, 9.5928], + [-12.576699, 9.594899], + [-12.583499, 9.596399], + [-12.5917, 9.599899], + [-12.6001, 9.6008], + [-12.614899, 9.606199], + [-12.621199, 9.6011], + [-12.630799, 9.5721], + [-12.636299, 9.565499], + [-12.636499, 9.5611], + [-12.6328, 9.552599], + [-12.634399, 9.5482], + [-12.642899, 9.549599], + [-12.647999, 9.547899], + [-12.657499, 9.539199], + [-12.660499, 9.532], + [-12.658599, 9.531799], + [-12.651199, 9.524499], + [-12.6493, 9.516699], + [-12.650699, 9.5089], + [-12.671999, 9.4754], + [-12.6713, 9.4692], + [-12.672699, 9.4669], + [-12.678499, 9.463699], + [-12.6794, 9.459999], + [-12.6803, 9.4506], + [-12.683899, 9.443], + [-12.68, 9.438899], + [-12.68, 9.4352], + [-12.685499, 9.430799], + [-12.6834, 9.4211], + [-12.686099, 9.417699], + [-12.6868, 9.4092], + [-12.688899, 9.4073], + [-12.691199, 9.407999], + [-12.6984, 9.416299], + [-12.703499, 9.415499], + [-12.7088, 9.410899], + [-12.7113, 9.401499], + [-12.7122, 9.3895], + [-12.716799, 9.3904], + [-12.719941, 9.392494], + [-12.721008, 9.38876] + ] + ], + "type": "Polygon" + }, + "id": 265, + "properties": { + "cc:admin:id": ["9"], + "cc:oBld:total": 1146, + "cc:pop:fifteen-to-twenty-four": 3402.901877309979, + "cc:pop:grid3-total": 24035.252909168717, + "cc:pop:kontur-total": 17914.053425299488, + "cc:pop:men": 8292.978870723246, + "cc:pop:sixty-plus": 1216.7198922028965, + "cc:pop:total": 18083.97242088641, + "cc:pop:under-five": 2807.833958852761, + "cc:pop:women": 9790.993550163164, + "cc:pop:women-fiften-to-forty-nine": 4706.151372862511, + "cc:pop:wp-total": 14911.965521067244, + "cc:pop:wp-total-UN": 17291.99888374986, + "cc:id": "265", + "cc:Name": "Kukuna CHP", + "cc:site": [-12.6704, 9.3884], + "user:parentName": "Bramaia", + "user:code": "OU_211223", + "user:orgUnitId": "M9JyYBZTqR7", + "user:level": "4", + "user:parentId": "kbPmt60yi0L" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.369264, 8.42204], + [-12.36625, 8.41375], + [-12.367916, 8.412916], + [-12.367917, 8.407917], + [-12.368749, 8.404584], + [-12.36625, 8.402083], + [-12.36375, 8.39625], + [-12.368749, 8.392083], + [-12.368749, 8.389584], + [-12.362917, 8.387083], + [-12.362917, 8.382084], + [-12.365416, 8.380416], + [-12.364458, 8.378978], + [-12.364566, 8.378903], + [-12.36125, 8.376249], + [-12.362917, 8.374584], + [-12.366249, 8.372916], + [-12.367082, 8.370417], + [-12.362082, 8.367917], + [-12.35875, 8.367916], + [-12.35875, 8.355417], + [-12.359582, 8.355416], + [-12.359583, 8.354584], + [-12.357917, 8.350417], + [-12.358418, 8.347906], + [-12.356399, 8.3483], + [-12.3506, 8.3483], + [-12.3464, 8.3474], + [-12.3387, 8.344], + [-12.333339, 8.34125], + [-12.330745, 8.34125], + [-12.328879, 8.344481], + [-12.332674, 8.351054], + [-12.332784, 8.351247], + [-12.328879, 8.358012], + [-12.321378, 8.358013], + [-12.324583, 8.360416], + [-12.335416, 8.36125], + [-12.335417, 8.367083], + [-12.340416, 8.374583], + [-12.341249, 8.377083], + [-12.341249, 8.384584], + [-12.338749, 8.386249], + [-12.330417, 8.387917], + [-12.330417, 8.39293], + [-12.331249, 8.392958], + [-12.331249, 8.393749], + [-12.327083, 8.401249], + [-12.321249, 8.402083], + [-12.314583, 8.40125], + [-12.312083, 8.411249], + [-12.30625, 8.407917], + [-12.302917, 8.412084], + [-12.301249, 8.419583], + [-12.29625, 8.420417], + [-12.294582, 8.422083], + [-12.292917, 8.422916], + [-12.290535, 8.421726], + [-12.290249, 8.422384], + [-12.282917, 8.424584], + [-12.282082, 8.427083], + [-12.277917, 8.432083], + [-12.27625, 8.432084], + [-12.280145, 8.437925], + [-12.281426, 8.437959], + [-12.281448, 8.438199], + [-12.281324, 8.4389], + [-12.285416, 8.439584], + [-12.287917, 8.442083], + [-12.288749, 8.442084], + [-12.284583, 8.451249], + [-12.282917, 8.45125], + [-12.282123, 8.458395], + [-12.281771, 8.458762], + [-12.280933, 8.459086], + [-12.281092, 8.460289], + [-12.281758, 8.461299], + [-12.283017, 8.462386], + [-12.284357, 8.464021], + [-12.28575, 8.465346], + [-12.28739, 8.466618], + [-12.288822, 8.46739], + [-12.287916, 8.46875], + [-12.285301, 8.469404], + [-12.284162, 8.468147], + [-12.282054, 8.466746], + [-12.280799, 8.466169], + [-12.279496, 8.46644], + [-12.279463, 8.468328], + [-12.279105, 8.468631], + [-12.279334, 8.46975], + [-12.278976, 8.470164], + [-12.278563, 8.471363], + [-12.278798, 8.471852], + [-12.278776, 8.473289], + [-12.277334, 8.474387], + [-12.277025, 8.474583], + [-12.281249, 8.474584], + [-12.282917, 8.477916], + [-12.286249, 8.47875], + [-12.285799, 8.480548], + [-12.281758, 8.479187], + [-12.281767, 8.479469], + [-12.282729, 8.481477], + [-12.285545, 8.484613], + [-12.285139, 8.485598], + [-12.28464, 8.487726], + [-12.285699, 8.488426], + [-12.286032, 8.488831], + [-12.286647, 8.489239], + [-12.289194, 8.490323], + [-12.290589, 8.491391], + [-12.291029, 8.492965], + [-12.291658, 8.49354], + [-12.290161, 8.494759], + [-12.289282, 8.494754], + [-12.28833, 8.495073], + [-12.286792, 8.495235], + [-12.285937, 8.495174], + [-12.284751, 8.495575], + [-12.283091, 8.495653], + [-12.282708, 8.496141], + [-12.283114, 8.496142], + [-12.28702, 8.502907], + [-12.294831, 8.502907], + [-12.298738, 8.496142], + [-12.30655, 8.496142], + [-12.310456, 8.502907], + [-12.30949, 8.504583], + [-12.311249, 8.504583], + [-12.31125, 8.499583], + [-12.314583, 8.495416], + [-12.317083, 8.494584], + [-12.319582, 8.494583], + [-12.322917, 8.487917], + [-12.325481, 8.485352], + [-12.325759, 8.48572], + [-12.325917, 8.48624], + [-12.326955, 8.487824], + [-12.327513, 8.489081], + [-12.328422, 8.490035], + [-12.329056, 8.489901], + [-12.330476, 8.489179], + [-12.331554, 8.489483], + [-12.333267, 8.489291], + [-12.33125, 8.484583], + [-12.332916, 8.479584], + [-12.332917, 8.479018], + [-12.334107, 8.479093], + [-12.340548, 8.480569], + [-12.340849, 8.47969], + [-12.341788, 8.478999], + [-12.34239, 8.477907], + [-12.343803, 8.476702], + [-12.344373, 8.475646], + [-12.34446, 8.474392], + [-12.343892, 8.473215], + [-12.343728, 8.471929], + [-12.343954, 8.469427], + [-12.343598, 8.468303], + [-12.345295, 8.467066], + [-12.346154, 8.466716], + [-12.34632, 8.466709], + [-12.346154, 8.465888], + [-12.345645, 8.465554], + [-12.345623, 8.465399], + [-12.345661, 8.46524], + [-12.345737, 8.465091], + [-12.34579, 8.464959], + [-12.346249, 8.464318], + [-12.346556, 8.464231], + [-12.346754, 8.463927], + [-12.346826, 8.463773], + [-12.346872, 8.463458], + [-12.346803, 8.463129], + [-12.346615, 8.463001], + [-12.346255, 8.463028], + [-12.345183, 8.463229], + [-12.34476, 8.462948], + [-12.344769, 8.462874], + [-12.345017, 8.462433], + [-12.346116, 8.461239], + [-12.346192, 8.460671], + [-12.346191, 8.460306], + [-12.346117, 8.460161], + [-12.346118, 8.46016], + [-12.347916, 8.460416], + [-12.348749, 8.460416], + [-12.349583, 8.45125], + [-12.355416, 8.445416], + [-12.355417, 8.442916], + [-12.360417, 8.441249], + [-12.362082, 8.438749], + [-12.362083, 8.43375], + [-12.362975, 8.433303], + [-12.361927, 8.429281], + [-12.364582, 8.42875], + [-12.367916, 8.429583], + [-12.367917, 8.424584], + [-12.368921, 8.42207], + [-12.369171, 8.422079], + [-12.369264, 8.42204] + ] + ], + "type": "Polygon" + }, + "id": 266, + "properties": { + "cc:admin:id": ["149"], + "cc:oBld:total": 282, + "cc:pop:fifteen-to-twenty-four": 1377.6971794320555, + "cc:pop:grid3-total": 5227.3154310323125, + "cc:pop:kontur-total": 7967.2001933520405, + "cc:pop:men": 3429.276591273324, + "cc:pop:sixty-plus": 474.14936154947287, + "cc:pop:total": 7393.1262037113065, + "cc:pop:under-five": 1187.2125984947666, + "cc:pop:women": 3963.8496124379826, + "cc:pop:women-fiften-to-forty-nine": 1953.0405928431235, + "cc:pop:wp-total": 6687.681145195112, + "cc:pop:wp-total-UN": 7757.494681496122, + "cc:id": "266", + "cc:Name": "Kumrabai Yoni MCHP", + "cc:site": [-12.3205, 8.4387], + "user:parentName": "Yoni", + "user:code": "OU_268233", + "user:orgUnitId": "bJ0VSATHwO2", + "user:level": "4", + "user:parentId": "NNE0YMCDZkO" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.827319, 8.887674], + [-10.827267, 8.887673], + [-10.823361, 8.880908], + [-10.815548, 8.880907], + [-10.811643, 8.874142], + [-10.815548, 8.867376], + [-10.811643, 8.86061], + [-10.815548, 8.853845], + [-10.811642, 8.847079], + [-10.803831, 8.847078], + [-10.800141, 8.840691], + [-10.798749, 8.842083], + [-10.795417, 8.842916], + [-10.79375, 8.842917], + [-10.78375, 8.839583], + [-10.779582, 8.832917], + [-10.775417, 8.832917], + [-10.768749, 8.844583], + [-10.764583, 8.845416], + [-10.757916, 8.842083], + [-10.754583, 8.842916], + [-10.753749, 8.847083], + [-10.742918, 8.852082], + [-10.742917, 8.852081], + [-10.742916, 8.849582], + [-10.742082, 8.84375], + [-10.737917, 8.844583], + [-10.735416, 8.847916], + [-10.732083, 8.847083], + [-10.730417, 8.840417], + [-10.729582, 8.839583], + [-10.722083, 8.841249], + [-10.720416, 8.840417], + [-10.71125, 8.842916], + [-10.70875, 8.842917], + [-10.705416, 8.847082], + [-10.700417, 8.84625], + [-10.698402, 8.846921], + [-10.698376, 8.84689], + [-10.697839, 8.846164], + [-10.697466, 8.844427], + [-10.697086, 8.843745], + [-10.694275, 8.84191], + [-10.693849, 8.841759], + [-10.692212, 8.841692], + [-10.691772, 8.841419], + [-10.690451, 8.842532], + [-10.689991, 8.84304], + [-10.68876, 8.843589], + [-10.686813, 8.844037], + [-10.685896, 8.844937], + [-10.685822, 8.844965], + [-10.685416, 8.84375], + [-10.683749, 8.842083], + [-10.67625, 8.840417], + [-10.674583, 8.840417], + [-10.674583, 8.844582], + [-10.67653, 8.849777], + [-10.676299, 8.84987], + [-10.675884, 8.850588], + [-10.675282, 8.851116], + [-10.677916, 8.85375], + [-10.677917, 8.857082], + [-10.679582, 8.859583], + [-10.679582, 8.862916], + [-10.67375, 8.864583], + [-10.67375, 8.876249], + [-10.674582, 8.877916], + [-10.668749, 8.879583], + [-10.664583, 8.888749], + [-10.667082, 8.89125], + [-10.664583, 8.895417], + [-10.663749, 8.900416], + [-10.662916, 8.900417], + [-10.654583, 8.902083], + [-10.654583, 8.911249], + [-10.657083, 8.912916], + [-10.662917, 8.91375], + [-10.663749, 8.922917], + [-10.660417, 8.928749], + [-10.65875, 8.92875], + [-10.65765, 8.931499], + [-10.666199, 8.9315], + [-10.671399, 8.931699], + [-10.6753, 8.9325], + [-10.6807, 8.9347], + [-10.6847, 8.935299], + [-10.690099, 8.9352], + [-10.6941, 8.934399], + [-10.6985, 8.932599], + [-10.7024, 8.931899], + [-10.7118, 8.930299], + [-10.726699, 8.9291], + [-10.734099, 8.9271], + [-10.738699, 8.9263], + [-10.7624, 8.925599], + [-10.766899, 8.9248], + [-10.771599, 8.9234], + [-10.774599, 8.9228], + [-10.790699, 8.922], + [-10.795399, 8.9215], + [-10.803, 8.919299], + [-10.811799, 8.9174], + [-10.825499, 8.911799], + [-10.8251, 8.9013], + [-10.825399, 8.8937], + [-10.826, 8.890899], + [-10.827319, 8.887674] + ] + ], + "type": "Polygon" + }, + "id": 267, + "properties": { + "cc:admin:id": ["72"], + "cc:oBld:total": 79, + "cc:pop:fifteen-to-twenty-four": 289.78577652496256, + "cc:pop:grid3-total": 3987.647263319247, + "cc:pop:kontur-total": 1690.9253955595696, + "cc:pop:men": 729.9481707083452, + "cc:pop:sixty-plus": 89.96733307482289, + "cc:pop:total": 1548.8822879336008, + "cc:pop:under-five": 249.79970429099603, + "cc:pop:women": 818.9341172252564, + "cc:pop:women-fiften-to-forty-nine": 404.73918183375184, + "cc:pop:wp-total": 2667.7566452851433, + "cc:pop:wp-total-UN": 3072.532714206861, + "cc:id": "267", + "cc:Name": "Kundundu MCHP", + "cc:site": [-10.6815, 8.8989], + "user:parentName": "Lei", + "user:code": "OU_233353", + "user:orgUnitId": "jYPY8mT8gn6", + "user:level": "4", + "user:parentId": "LhaAPLxdSFH" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.11993, 8.957892], + [-12.119081, 8.9573], + [-12.113199, 8.957299], + [-12.1103, 8.957], + [-12.1075, 8.9564], + [-12.102999, 8.954399], + [-12.097099, 8.952899], + [-12.0918, 8.9506], + [-12.0883, 8.95], + [-12.084899, 8.9506], + [-12.0766, 8.954299], + [-12.0714, 8.9577], + [-12.069899, 8.9606], + [-12.0697, 8.9642], + [-12.069799, 8.971799], + [-12.069099, 8.975499], + [-12.067199, 8.9786], + [-12.0645, 8.981199], + [-12.062199, 8.9829], + [-12.0586, 8.9847], + [-12.058899, 8.990799], + [-12.059, 8.996299], + [-12.0588, 8.998999], + [-12.058199, 9.001599], + [-12.056799, 9.0039], + [-12.0545, 9.006599], + [-12.050399, 9.0104], + [-12.0466, 9.0145], + [-12.047499, 9.016999], + [-12.047693, 9.018861], + [-12.047917, 9.01875], + [-12.057421, 9.01948], + [-12.057509, 9.019054], + [-12.058079, 9.013439], + [-12.058087, 9.012917], + [-12.063749, 9.012917], + [-12.065416, 9.012082], + [-12.065416, 9.004583], + [-12.062917, 9.002916], + [-12.062083, 8.999583], + [-12.071611, 8.996651], + [-12.071625, 8.99668], + [-12.075416, 8.995416], + [-12.072083, 8.992082], + [-12.07375, 8.989583], + [-12.077082, 8.990416], + [-12.078119, 8.988344], + [-12.078308, 8.988409], + [-12.079582, 8.984583], + [-12.07875, 8.982916], + [-12.086249, 8.981249], + [-12.08625, 8.977917], + [-12.092254, 8.977917], + [-12.09352, 8.979223], + [-12.095899, 8.980313], + [-12.097043, 8.980337], + [-12.092917, 8.972082], + [-12.09625, 8.969583], + [-12.102916, 8.972082], + [-12.103586, 8.96806], + [-12.103273, 8.967859], + [-12.103636, 8.966951], + [-12.103993, 8.966866], + [-12.106684, 8.964909], + [-12.107083, 8.962917], + [-12.117916, 8.961249], + [-12.11993, 8.957892] + ] + ], + "type": "Polygon" + }, + "id": 268, + "properties": { + "cc:admin:id": ["32"], + "cc:oBld:total": 35, + "cc:pop:fifteen-to-twenty-four": 580.1000381249428, + "cc:pop:grid3-total": 859.5366741280524, + "cc:pop:kontur-total": 2963.904690301353, + "cc:pop:men": 1458.1986089667926, + "cc:pop:sixty-plus": 204.10592594853208, + "cc:pop:total": 3090.0229515916258, + "cc:pop:under-five": 490.31505127328955, + "cc:pop:women": 1631.8243426248341, + "cc:pop:women-fiften-to-forty-nine": 798.0118337505696, + "cc:pop:wp-total": 1885.6496865629422, + "cc:pop:wp-total-UN": 2189.6353007016846, + "cc:id": "268", + "cc:Name": "Kunsho CHP", + "cc:site": [-12.0791, 8.9542], + "user:parentName": "Makari Gbanti", + "user:code": "OU_193254", + "user:orgUnitId": "tdhB1JXYBx2", + "user:level": "4", + "user:parentId": "lY93YpCxJqf" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [-12.9537, 8.506799], + [-12.953699, 8.5024], + [-12.9526, 8.5007], + [-12.952599, 8.4993], + [-12.952532, 8.499196], + [-12.951662, 8.498075], + [-12.950757, 8.496851], + [-12.950446, 8.496241], + [-12.950297, 8.495743], + [-12.950327, 8.493743], + [-12.95049, 8.492948], + [-12.950568, 8.492279], + [-12.950423, 8.491538], + [-12.950187, 8.490801], + [-12.949814, 8.490008], + [-12.949204, 8.489046], + [-12.94887, 8.488681], + [-12.948473, 8.487868], + [-12.947894, 8.487375], + [-12.947408, 8.486184], + [-12.94741, 8.485278], + [-12.947792, 8.484447], + [-12.948283, 8.483874], + [-12.948552, 8.483569], + [-12.948976, 8.482807], + [-12.948863, 8.482529], + [-12.948969, 8.48022], + [-12.948381, 8.479952], + [-12.944919, 8.483414], + [-12.942581, 8.483048], + [-12.942478, 8.483391], + [-12.941953, 8.48362], + [-12.939583, 8.48125], + [-12.940416, 8.472084], + [-12.934583, 8.469583], + [-12.935416, 8.46375], + [-12.931316, 8.461017], + [-12.931068, 8.461022], + [-12.929609, 8.460667], + [-12.928591, 8.460933], + [-12.928124, 8.461277], + [-12.928028, 8.461686], + [-12.928214, 8.462498], + [-12.928059, 8.463066], + [-12.927715, 8.463234], + [-12.927298, 8.463177], + [-12.927206, 8.462891], + [-12.926814, 8.462788], + [-12.926198, 8.463522], + [-12.926526, 8.464095], + [-12.926921, 8.466077], + [-12.926036, 8.4654], + [-12.925351, 8.4654], + [-12.924734, 8.465765], + [-12.924429, 8.46576], + [-12.924888, 8.464519], + [-12.925339, 8.463914], + [-12.925291, 8.463204], + [-12.923177, 8.462127], + [-12.921782, 8.462104], + [-12.921628, 8.461908], + [-12.921906, 8.461087], + [-12.92172, 8.460735], + [-12.917082, 8.461249], + [-12.916587, 8.459763], + [-12.916647, 8.459726], + [-12.915416, 8.455417], + [-12.91125, 8.45125], + [-12.907083, 8.451249], + [-12.902082, 8.447084], + [-12.893722, 8.44778], + [-12.893654, 8.448609], + [-12.894055, 8.450924], + [-12.894931, 8.452237], + [-12.89606, 8.453447], + [-12.896249, 8.453857], + [-12.896249, 8.458749], + [-12.887083, 8.455417], + [-12.887082, 8.454584], + [-12.884583, 8.454584], + [-12.880614, 8.45723], + [-12.880743, 8.457349], + [-12.880743, 8.457351], + [-12.877917, 8.457917], + [-12.877507, 8.458736], + [-12.877604, 8.459104], + [-12.876877, 8.462917], + [-12.869583, 8.462916], + [-12.867082, 8.45875], + [-12.86125, 8.45875], + [-12.860416, 8.462083], + [-12.857083, 8.462917], + [-12.856249, 8.465416], + [-12.853249, 8.466017], + [-12.853364, 8.466239], + [-12.853368, 8.466249], + [-12.852917, 8.46625], + [-12.851249, 8.468749], + [-12.84625, 8.46875], + [-12.847083, 8.470416], + [-12.850416, 8.470417], + [-12.850417, 8.478749], + [-12.849583, 8.479583], + [-12.842082, 8.474584], + [-12.840417, 8.474584], + [-12.837083, 8.477916], + [-12.837916, 8.48125], + [-12.835417, 8.48375], + [-12.83375, 8.489583], + [-12.83375, 8.494583], + [-12.839581, 8.494584], + [-12.834503, 8.499664], + [-12.83569, 8.50091], + [-12.838906, 8.502796], + [-12.839882, 8.502834], + [-12.840794, 8.503256], + [-12.841695, 8.503772], + [-12.842899, 8.505], + [-12.843419, 8.505334], + [-12.843699, 8.505331], + [-12.844919, 8.50471], + [-12.845706, 8.504152], + [-12.851025, 8.504152], + [-12.849583, 8.512083], + [-12.854413, 8.514154], + [-12.852209, 8.515346], + [-12.851153, 8.516894], + [-12.850945, 8.517307], + [-12.85375, 8.522916], + [-12.862916, 8.52125], + [-12.862917, 8.525416], + [-12.870316, 8.527636], + [-12.869408, 8.52909], + [-12.869626, 8.529847], + [-12.870832, 8.531405], + [-12.871216, 8.532246], + [-12.870793, 8.535362], + [-12.870902, 8.535913], + [-12.87149, 8.536495], + [-12.873923, 8.537742], + [-12.874405, 8.538224], + [-12.874623, 8.53871], + [-12.874633, 8.539176], + [-12.873908, 8.542238], + [-12.874977, 8.543131], + [-12.87581, 8.544598], + [-12.874583, 8.545416], + [-12.874576, 8.545417], + [-12.874739, 8.545839], + [-12.876294, 8.547021], + [-12.876572, 8.547824], + [-12.877104, 8.548217], + [-12.877584, 8.549195], + [-12.877852, 8.549406], + [-12.878887, 8.549511], + [-12.879626, 8.548856], + [-12.87987, 8.548435], + [-12.880571, 8.548848], + [-12.881021, 8.548095], + [-12.881607, 8.547817], + [-12.881934, 8.547862], + [-12.881759, 8.548465], + [-12.881096, 8.549074], + [-12.88071, 8.549211], + [-12.88043, 8.54911], + [-12.880109, 8.549433], + [-12.877799, 8.550076], + [-12.877601, 8.550228], + [-12.877558, 8.55068], + [-12.877238, 8.550988], + [-12.876907, 8.550981], + [-12.875852, 8.552217], + [-12.875475, 8.553268], + [-12.875516, 8.554675], + [-12.875485, 8.554781], + [-12.878409, 8.556146], + [-12.879727, 8.555008], + [-12.880472, 8.554821], + [-12.880827, 8.554521], + [-12.881576, 8.553128], + [-12.882225, 8.553155], + [-12.881791, 8.554446], + [-12.881043, 8.555597], + [-12.879879, 8.556831], + [-12.880416, 8.557083], + [-12.883069, 8.554961], + [-12.88307, 8.554962], + [-12.883018, 8.555037], + [-12.881775, 8.557993], + [-12.8823, 8.557799], + [-12.8853, 8.557199], + [-12.891499, 8.556699], + [-12.8952, 8.553], + [-12.9028, 8.560399], + [-12.915699, 8.5603], + [-12.922499, 8.560099], + [-12.919299, 8.5565], + [-12.9179, 8.556299], + [-12.917899, 8.554899], + [-12.9171, 8.5504], + [-12.9165, 8.548999], + [-12.9163, 8.5463], + [-12.918499, 8.545999], + [-12.920399, 8.544899], + [-12.9232, 8.541], + [-12.925399, 8.539899], + [-12.926299, 8.5385], + [-12.927099, 8.538199], + [-12.9271, 8.537099], + [-12.9279, 8.535999], + [-12.929899, 8.5351], + [-12.9313, 8.533999], + [-12.934899, 8.5332], + [-12.9365, 8.533199], + [-12.938199, 8.532399], + [-12.940399, 8.5304], + [-12.942099, 8.530399], + [-12.943999, 8.529299], + [-12.943799, 8.5274], + [-12.9415, 8.526799], + [-12.940399, 8.525999], + [-12.9401, 8.524299], + [-12.9401, 8.521], + [-12.940699, 8.520999], + [-12.9413, 8.519], + [-12.942599, 8.5176], + [-12.9449, 8.517399], + [-12.946799, 8.5162], + [-12.948199, 8.5149], + [-12.9485, 8.512399], + [-12.9493, 8.5113], + [-12.952099, 8.509899], + [-12.9521, 8.508999], + [-12.9537, 8.506799] + ] + ], + [ + [ + [-12.962099, 8.552599], + [-12.9615, 8.5476], + [-12.961, 8.547399], + [-12.960999, 8.5438], + [-12.9604, 8.542399], + [-12.960399, 8.5407], + [-12.959899, 8.5396], + [-12.958699, 8.539599], + [-12.9574, 8.5387], + [-12.955099, 8.5357], + [-12.9543, 8.535699], + [-12.953199, 8.5346], + [-12.9515, 8.534], + [-12.950099, 8.5321], + [-12.948999, 8.5315], + [-12.946, 8.5315], + [-12.944, 8.5313], + [-12.942599, 8.532399], + [-12.9415, 8.5326], + [-12.940699, 8.533999], + [-12.9376, 8.5343], + [-12.937099, 8.5351], + [-12.934, 8.536], + [-12.932399, 8.537399], + [-12.9307, 8.5374], + [-12.9296, 8.539], + [-12.929599, 8.540999], + [-12.928999, 8.5421], + [-12.9271, 8.543999], + [-12.9251, 8.5443], + [-12.9238, 8.5457], + [-12.9243, 8.548499], + [-12.9263, 8.549899], + [-12.9274, 8.5499], + [-12.928999, 8.551799], + [-12.929, 8.552599], + [-12.9318, 8.5526], + [-12.932899, 8.5532], + [-12.934, 8.554599], + [-12.9368, 8.556], + [-12.938799, 8.556299], + [-12.939, 8.556], + [-12.9429, 8.555999], + [-12.945099, 8.5557], + [-12.9471, 8.5549], + [-12.952399, 8.555399], + [-12.9529, 8.5549], + [-12.957099, 8.5546], + [-12.958499, 8.555099], + [-12.959, 8.554299], + [-12.962099, 8.552599] + ] + ] + ], + "type": "MultiPolygon" + }, + "id": 269, + "properties": { + "cc:admin:id": ["62"], + "cc:oBld:total": 108, + "cc:pop:fifteen-to-twenty-four": 1067.3064800293346, + "cc:pop:grid3-total": 2488.972546586717, + "cc:pop:kontur-total": 5350.714400273968, + "cc:pop:men": 2822.7199453776566, + "cc:pop:sixty-plus": 339.3161607358409, + "cc:pop:total": 5972.758108439642, + "cc:pop:under-five": 991.4596847399401, + "cc:pop:women": 3150.0381630619836, + "cc:pop:women-fiften-to-forty-nine": 1631.0438134495562, + "cc:pop:wp-total": 4658.542183826803, + "cc:pop:wp-total-UN": 5404.924450829349, + "cc:id": "269", + "cc:Name": "Kuranko MCHP", + "cc:site": [-12.8726, 8.4754], + "user:parentName": "Koya", + "user:code": "OU_254962", + "user:orgUnitId": "WUQrS4Yqmoy", + "user:level": "4", + "user:parentId": "pRHGAROvuyI" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [-13.257746, 8.994128], + [-13.257312, 8.99391], + [-13.255767, 8.993693], + [-13.253842, 8.993015], + [-13.252541, 8.991903], + [-13.25179, 8.990014], + [-13.252083, 8.987083], + [-13.253749, 8.986249], + [-13.256249, 8.980417], + [-13.253049, 8.978495], + [-13.253045, 8.978332], + [-13.253606, 8.97561], + [-13.253621, 8.97402], + [-13.253363, 8.972258], + [-13.253234, 8.969627], + [-13.252882, 8.964692], + [-13.253424, 8.955147], + [-13.253799, 8.954737], + [-13.253799, 8.9543], + [-13.250099, 8.953999], + [-13.2468, 8.9513], + [-13.246499, 8.9496], + [-13.245999, 8.949299], + [-13.245399, 8.9457], + [-13.2415, 8.9457], + [-13.2404, 8.946499], + [-13.2393, 8.9465], + [-13.2374, 8.9485], + [-13.237556, 8.949122], + [-13.237599, 8.949298], + [-13.237598, 8.949299], + [-13.2346, 8.949], + [-13.2318, 8.9482], + [-13.2301, 8.948199], + [-13.229599, 8.9471], + [-13.2279, 8.946499], + [-13.227399, 8.9451], + [-13.2257, 8.9438], + [-13.2232, 8.943499], + [-13.2226, 8.942599], + [-13.222599, 8.941], + [-13.221499, 8.940099], + [-13.220099, 8.9382], + [-13.2188, 8.937899], + [-13.2176, 8.9371], + [-13.216499, 8.9354], + [-13.2146, 8.9346], + [-13.213499, 8.9329], + [-13.2101, 8.9304], + [-13.209599, 8.929], + [-13.206, 8.927099], + [-13.2038, 8.9249], + [-13.2021, 8.922399], + [-13.201499, 8.920099], + [-13.199599, 8.916299], + [-13.197599, 8.9137], + [-13.196499, 8.913499], + [-13.194899, 8.9121], + [-13.192099, 8.9113], + [-13.1876, 8.911499], + [-13.186799, 8.9104], + [-13.185099, 8.9096], + [-13.182099, 8.909599], + [-13.178999, 8.9088], + [-13.1774, 8.9088], + [-13.176499, 8.909299], + [-13.174899, 8.908799], + [-13.1696, 8.908499], + [-13.168699, 8.9076], + [-13.166799, 8.907899], + [-13.1643, 8.9076], + [-13.163999, 8.9071], + [-13.1612, 8.9071], + [-13.160099, 8.908199], + [-13.1574, 8.9082], + [-13.156799, 8.9073], + [-13.1518, 8.910199], + [-13.149099, 8.912399], + [-13.1415, 8.9152], + [-13.133599, 8.9213], + [-13.1201, 8.928499], + [-13.117636, 8.929524], + [-13.120631, 8.933716], + [-13.12063, 8.933718], + [-13.120076, 8.933882], + [-13.120421, 8.934497], + [-13.122, 8.936051], + [-13.122655, 8.936934], + [-13.122969, 8.938358], + [-13.122954, 8.938484], + [-13.126248, 8.939582], + [-13.126248, 8.939584], + [-13.125543, 8.940289], + [-13.12633, 8.940837], + [-13.126722, 8.941402], + [-13.126711, 8.942944], + [-13.126673, 8.943624], + [-13.126102, 8.944682], + [-13.125248, 8.945564], + [-13.124583, 8.946057], + [-13.124582, 8.948749], + [-13.12375, 8.949583], + [-13.123749, 8.951249], + [-13.12246, 8.951679], + [-13.122365, 8.9507], + [-13.122129, 8.950463], + [-13.121823, 8.951258], + [-13.121047, 8.951255], + [-13.121172, 8.952029], + [-13.121037, 8.953058], + [-13.120259, 8.953183], + [-13.119998, 8.95344], + [-13.11948, 8.953566], + [-13.118823, 8.955366], + [-13.118945, 8.956654], + [-13.118427, 8.956523], + [-13.117391, 8.956647], + [-13.117388, 8.957162], + [-13.11687, 8.95716], + [-13.117119, 8.958964], + [-13.116471, 8.959219], + [-13.116554, 8.961706], + [-13.117916, 8.96375], + [-13.117243, 8.967788], + [-13.11785, 8.967987], + [-13.119696, 8.967363], + [-13.12158, 8.967173], + [-13.123394, 8.967324], + [-13.123548, 8.967583], + [-13.120871, 8.971224], + [-13.119689, 8.973072], + [-13.123749, 8.97375], + [-13.124577, 8.974578], + [-13.12482, 8.973175], + [-13.124652, 8.973003], + [-13.124822, 8.972788], + [-13.124396, 8.97231], + [-13.124442, 8.971369], + [-13.124704, 8.970855], + [-13.125224, 8.970343], + [-13.125253, 8.970264], + [-13.130035, 8.970264], + [-13.130036, 8.970265], + [-13.129922, 8.970549], + [-13.129858, 8.970844], + [-13.129998, 8.970977], + [-13.131005, 8.970504], + [-13.134773, 8.977029], + [-13.141105, 8.977028], + [-13.138666, 8.972737], + [-13.138702, 8.972715], + [-13.139142, 8.972466], + [-13.140053, 8.972465], + [-13.140941, 8.972261], + [-13.14199, 8.973264], + [-13.14379, 8.973856], + [-13.145863, 8.974311], + [-13.146956, 8.974607], + [-13.146341, 8.97413], + [-13.144814, 8.97381], + [-13.143675, 8.973468], + [-13.142241, 8.972967], + [-13.141375, 8.972216], + [-13.141243, 8.97209], + [-13.142083, 8.97125], + [-13.143603, 8.97125], + [-13.143747, 8.971466], + [-13.144265, 8.971598], + [-13.145038, 8.972375], + [-13.147881, 8.973676], + [-13.148019, 8.973627], + [-13.148749, 8.984582], + [-13.149833, 8.985667], + [-13.149832, 8.985668], + [-13.149117, 8.985665], + [-13.149246, 8.985923], + [-13.149361, 8.988757], + [-13.150913, 8.989023], + [-13.150917, 8.988508], + [-13.151183, 8.988637], + [-13.151428, 8.988394], + [-13.15185, 8.988284], + [-13.152916, 8.990416], + [-13.152083, 8.992083], + [-13.152082, 8.998174], + [-13.148792, 8.998673], + [-13.148354, 8.99889], + [-13.148905, 8.999553], + [-13.149266, 8.999716], + [-13.150314, 8.999562], + [-13.150582, 8.999375], + [-13.151745, 8.99973], + [-13.15848, 9.000723], + [-13.158874, 9.000822], + [-13.159583, 9.007916], + [-13.161249, 9.010417], + [-13.160417, 9.019582], + [-13.169736, 9.020299], + [-13.170551, 9.018408], + [-13.171176, 9.0149], + [-13.173666, 9.01577], + [-13.174348, 9.015877], + [-13.17435, 9.01588], + [-13.174583, 9.015416], + [-13.174583, 9.012916], + [-13.176609, 9.011397], + [-13.176716, 9.011825], + [-13.177233, 9.011829], + [-13.17749, 9.012473], + [-13.178007, 9.012604], + [-13.177883, 9.011832], + [-13.178532, 9.011448], + [-13.179569, 9.011453], + [-13.180862, 9.011847], + [-13.180464, 9.013647], + [-13.179943, 9.014419], + [-13.17981, 9.014932], + [-13.179292, 9.014931], + [-13.179291, 9.015188], + [-13.180067, 9.015321], + [-13.180195, 9.015707], + [-13.180064, 9.015964], + [-13.181331, 9.015553], + [-13.18239, 9.017317], + [-13.182388, 9.017779], + [-13.182905, 9.017782], + [-13.18304, 9.017011], + [-13.1833, 9.016753], + [-13.183431, 9.01624], + [-13.183171, 9.016495], + [-13.182913, 9.016494], + [-13.182914, 9.016237], + [-13.183084, 9.016148], + [-13.183306, 9.015465], + [-13.183312, 9.014434], + [-13.183707, 9.012891], + [-13.184226, 9.012893], + [-13.184228, 9.012379], + [-13.182932, 9.012629], + [-13.182934, 9.012115], + [-13.182157, 9.012239], + [-13.181377, 9.012621], + [-13.181381, 9.011849], + [-13.182417, 9.011853], + [-13.182422, 9.011081], + [-13.18294, 9.010954], + [-13.183459, 9.010572], + [-13.18346, 9.010573], + [-13.183326, 9.0116], + [-13.183454, 9.011987], + [-13.183712, 9.011988], + [-13.184234, 9.011475], + [-13.184752, 9.01135], + [-13.184753, 9.011093], + [-13.183977, 9.011088], + [-13.18398, 9.010316], + [-13.184241, 9.01006], + [-13.184499, 9.010061], + [-13.184499, 9.010318], + [-13.184238, 9.010574], + [-13.185015, 9.010707], + [-13.185789, 9.011483], + [-13.186218, 9.011526], + [-13.186308, 9.011357], + [-13.186737, 9.011271], + [-13.18683, 9.010588], + [-13.187088, 9.010589], + [-13.187087, 9.011103], + [-13.187345, 9.010975], + [-13.188129, 9.009821], + [-13.187352, 9.009816], + [-13.187228, 9.008786], + [-13.188142, 9.007373], + [-13.188401, 9.007374], + [-13.189175, 9.00815], + [-13.189691, 9.008283], + [-13.18969, 9.008797], + [-13.19021, 9.008413], + [-13.191248, 9.008033], + [-13.191376, 9.008548], + [-13.191592, 9.008718], + [-13.19228, 9.00881], + [-13.192413, 9.008295], + [-13.192289, 9.007265], + [-13.193458, 9.006756], + [-13.193844, 9.007014], + [-13.19372, 9.006241], + [-13.194368, 9.005987], + [-13.194366, 9.006501], + [-13.195119, 9.006587], + [-13.194954, 9.00729], + [-13.195568, 9.008199], + [-13.195479, 9.00972], + [-13.195749, 9.010802], + [-13.196127, 9.011544], + [-13.196509, 9.011765], + [-13.197593, 9.011887], + [-13.198433, 9.011734], + [-13.199297, 9.011807], + [-13.20043, 9.012416], + [-13.20219, 9.01421], + [-13.203267, 9.016756], + [-13.203687, 9.017363], + [-13.204902, 9.018405], + [-13.20527, 9.019703], + [-13.204129, 9.022284], + [-13.203832, 9.023114], + [-13.204206, 9.023895], + [-13.205256, 9.024529], + [-13.207429, 9.024664], + [-13.2076, 9.024774], + [-13.207688, 9.024489], + [-13.207496, 9.024344], + [-13.208342, 9.0226], + [-13.20926, 9.022699], + [-13.208726, 9.024213], + [-13.209308, 9.024739], + [-13.209829, 9.024099], + [-13.210348, 9.024102], + [-13.210324, 9.025081], + [-13.209306, 9.025385], + [-13.210597, 9.026164], + [-13.209549, 9.028477], + [-13.210567, 9.028951], + [-13.211885, 9.027717], + [-13.212041, 9.028834], + [-13.21375, 9.025417], + [-13.216593, 9.025853], + [-13.217014, 9.025412], + [-13.217169, 9.02529], + [-13.217288, 9.025005], + [-13.217753, 9.024794], + [-13.218231, 9.024714], + [-13.218627, 9.024762], + [-13.218936, 9.024835], + [-13.219108, 9.024898], + [-13.219161, 9.024803], + [-13.21913, 9.024577], + [-13.219138, 9.0244], + [-13.219279, 9.023307], + [-13.219153, 9.022481], + [-13.219581, 9.020056], + [-13.219604, 9.020011], + [-13.220416, 9.020416], + [-13.220487, 9.020392], + [-13.220838, 9.019688], + [-13.22523, 9.016022], + [-13.228124, 9.014981], + [-13.228393, 9.014824], + [-13.228187, 9.013999], + [-13.228751, 9.013721], + [-13.2293, 9.013259], + [-13.230211, 9.012526], + [-13.230558, 9.011852], + [-13.230471, 9.010812], + [-13.230103, 9.010399], + [-13.230212, 9.009748], + [-13.230841, 9.008771], + [-13.231881, 9.00784], + [-13.232539, 9.007371], + [-13.233529, 9.007321], + [-13.234263, 9.007774], + [-13.234811, 9.008642], + [-13.235375, 9.010421], + [-13.236221, 9.011331], + [-13.237067, 9.011266], + [-13.238109, 9.009834], + [-13.239497, 9.008338], + [-13.240255, 9.007232], + [-13.240321, 9.006343], + [-13.239844, 9.004694], + [-13.239432, 9.003522], + [-13.239376, 9.002557], + [-13.238735, 9.00255], + [-13.237937, 9.001995], + [-13.237625, 9.001266], + [-13.237677, 9.000434], + [-13.23777, 9.000271], + [-13.238019, 9.00052], + [-13.237868, 9.000729], + [-13.237886, 9.001371], + [-13.238563, 9.001891], + [-13.239735, 9.001857], + [-13.239974, 9.001612], + [-13.240384, 9.00125], + [-13.241618, 9.001249], + [-13.243166, 9.000208], + [-13.244385, 8.999294], + [-13.245394, 8.999], + [-13.246637, 8.999052], + [-13.247401, 8.99965], + [-13.247852, 9.000402], + [-13.248031, 9.000775], + [-13.249117, 9.000233], + [-13.249737, 9.001916], + [-13.25106, 9.003001], + [-13.251776, 9.003239], + [-13.252751, 9.003088], + [-13.252817, 9.002176], + [-13.252644, 8.998966], + [-13.252557, 8.997296], + [-13.25247, 8.997064], + [-13.253215, 8.995425], + [-13.253217, 8.995425], + [-13.254086, 8.996784], + [-13.257746, 8.994128] + ] + ], + [ + [ + [-13.162599, 8.9026], + [-13.1582, 8.9018], + [-13.1565, 8.9035], + [-13.1565, 8.905399], + [-13.1574, 8.905999], + [-13.160399, 8.905399], + [-13.162399, 8.903999], + [-13.162599, 8.9026] + ] + ], + [ + [ + [-13.240099, 8.9082], + [-13.239, 8.9082], + [-13.2379, 8.910099], + [-13.2363, 8.9104], + [-13.235999, 8.911299], + [-13.2343, 8.910399], + [-13.2343, 8.909599], + [-13.237599, 8.908799], + [-13.2376, 8.9063], + [-13.238999, 8.905999], + [-13.2379, 8.902899], + [-13.2379, 8.9013], + [-13.239599, 8.899599], + [-13.239, 8.8971], + [-13.237899, 8.8957], + [-13.2354, 8.893999], + [-13.234599, 8.8929], + [-13.2338, 8.892899], + [-13.233199, 8.8912], + [-13.2288, 8.8888], + [-13.228199, 8.8876], + [-13.226299, 8.8868], + [-13.2251, 8.8868], + [-13.2235, 8.8876], + [-13.222899, 8.888999], + [-13.2193, 8.889], + [-13.2168, 8.8899], + [-13.216499, 8.890399], + [-13.2149, 8.8904], + [-13.2126, 8.891499], + [-13.211, 8.8918], + [-13.209899, 8.892599], + [-13.2076, 8.8932], + [-13.206299, 8.8943], + [-13.2035, 8.8949], + [-13.201499, 8.896299], + [-13.1985, 8.8968], + [-13.1963, 8.898999], + [-13.197599, 8.9001], + [-13.1982, 8.901299], + [-13.1993, 8.9013], + [-13.201299, 8.902099], + [-13.2013, 8.902599], + [-13.2029, 8.9029], + [-13.2049, 8.9038], + [-13.208199, 8.907399], + [-13.2085, 8.908799], + [-13.209899, 8.9099], + [-13.2115, 8.913499], + [-13.212899, 8.9146], + [-13.214, 8.916299], + [-13.2176, 8.917599], + [-13.221299, 8.9176], + [-13.2213, 8.9179], + [-13.226299, 8.9179], + [-13.2265, 8.918999], + [-13.228799, 8.919], + [-13.2282, 8.920999], + [-13.2301, 8.921799], + [-13.233199, 8.921799], + [-13.2349, 8.9207], + [-13.237399, 8.920399], + [-13.237599, 8.9193], + [-13.2351, 8.9193], + [-13.234599, 8.919899], + [-13.2329, 8.9193], + [-13.2329, 8.9179], + [-13.233999, 8.917399], + [-13.234599, 8.916299], + [-13.2338, 8.914299], + [-13.2351, 8.9132], + [-13.237099, 8.912599], + [-13.2379, 8.911499], + [-13.239299, 8.910999], + [-13.240099, 8.9082] + ] + ], + [ + [ + [-13.204299, 8.911499], + [-13.2035, 8.909899], + [-13.203499, 8.9079], + [-13.202599, 8.907599], + [-13.201799, 8.906], + [-13.198799, 8.906], + [-13.1974, 8.9065], + [-13.1968, 8.907399], + [-13.1979, 8.908799], + [-13.1988, 8.9088], + [-13.200699, 8.909899], + [-13.2015, 8.910999], + [-13.202899, 8.911799], + [-13.204299, 8.911499] + ] + ], + [ + [ + [-13.250999, 8.8801], + [-13.249, 8.8793], + [-13.2474, 8.8801], + [-13.2476, 8.881299], + [-13.249899, 8.881299], + [-13.250999, 8.8801] + ] + ] + ], + "type": "MultiPolygon" + }, + "id": 270, + "properties": { + "cc:admin:id": ["115"], + "cc:oBld:total": 2658, + "cc:pop:fifteen-to-twenty-four": 3362.496890818232, + "cc:pop:grid3-total": 19153.84554331394, + "cc:pop:kontur-total": 19148.42174962937, + "cc:pop:men": 8923.476621959388, + "cc:pop:sixty-plus": 1074.5403556094025, + "cc:pop:total": 19308.564411731397, + "cc:pop:under-five": 2960.2422422448208, + "cc:pop:women": 10385.087789771987, + "cc:pop:women-fiften-to-forty-nine": 4985.035110927694, + "cc:pop:wp-total": 14581.218842202692, + "cc:pop:wp-total-UN": 16921.03587656195, + "cc:id": "270", + "cc:Name": "Kychom CHC", + "cc:site": [-13.1436, 8.928], + "user:parentName": "Samu", + "user:code": "OU_211253", + "user:orgUnitId": "PcADvhvcaI2", + "user:level": "4", + "user:parentId": "r06ohri9wA9" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.183272, 9.45625], + [-12.17875, 9.456249], + [-12.175417, 9.453749], + [-12.178749, 9.442917], + [-12.177082, 9.437917], + [-12.172917, 9.437083], + [-12.169582, 9.444582], + [-12.168749, 9.444582], + [-12.165416, 9.442083], + [-12.162083, 9.442082], + [-12.159583, 9.440417], + [-12.167082, 9.433749], + [-12.166249, 9.42375], + [-12.15625, 9.422917], + [-12.150417, 9.422917], + [-12.149582, 9.42375], + [-12.147083, 9.425416], + [-12.146249, 9.426249], + [-12.144583, 9.426249], + [-12.141651, 9.425348], + [-12.140545, 9.423432], + [-12.144451, 9.416667], + [-12.140544, 9.409901], + [-12.135932, 9.409901], + [-12.133749, 9.412082], + [-12.126694, 9.409967], + [-12.126072, 9.413512], + [-12.125617, 9.415905], + [-12.125288, 9.416852], + [-12.124031, 9.417865], + [-12.122917, 9.41847], + [-12.122917, 9.415416], + [-12.123598, 9.407911], + [-12.122332, 9.407669], + [-12.119918, 9.407654], + [-12.119583, 9.407701], + [-12.119583, 9.397917], + [-12.122917, 9.39375], + [-12.126227, 9.393087], + [-12.126223, 9.393007], + [-12.126028, 9.392083], + [-12.117917, 9.392082], + [-12.114842, 9.389009], + [-12.110341, 9.389008], + [-12.106433, 9.382244], + [-12.098622, 9.382244], + [-12.094715, 9.389009], + [-12.086903, 9.389008], + [-12.082996, 9.382244], + [-12.075184, 9.382244], + [-12.072068, 9.38764], + [-12.077082, 9.387083], + [-12.077082, 9.396659], + [-12.076721, 9.396592], + [-12.07375, 9.406249], + [-12.07168, 9.40625], + [-12.068635, 9.411522], + [-12.070416, 9.41375], + [-12.069761, 9.421617], + [-12.069759, 9.421617], + [-12.069384, 9.420803], + [-12.068194, 9.419768], + [-12.065584, 9.419974], + [-12.064314, 9.41987], + [-12.064003, 9.419587], + [-12.063383, 9.419815], + [-12.061838, 9.419276], + [-12.060835, 9.418567], + [-12.060388, 9.418377], + [-12.05918, 9.4166], + [-12.058597, 9.416207], + [-12.058576, 9.416172], + [-12.05625, 9.417917], + [-12.056249, 9.419583], + [-12.052916, 9.422083], + [-12.052083, 9.424582], + [-12.055642, 9.428143], + [-12.052808, 9.433051], + [-12.052073, 9.433052], + [-12.052081, 9.433334], + [-12.051616, 9.435238], + [-12.051597, 9.435277], + [-12.04625, 9.43375], + [-12.045416, 9.440416], + [-12.042916, 9.445417], + [-12.04056, 9.446359], + [-12.039525, 9.446377], + [-12.039158, 9.446126], + [-12.036012, 9.444493], + [-12.035182, 9.444368], + [-12.034693, 9.444129], + [-12.035417, 9.452082], + [-12.035839, 9.45242], + [-12.038781, 9.457518], + [-12.035257, 9.463622], + [-12.035417, 9.46375], + [-12.036109, 9.471377], + [-12.035444, 9.472281], + [-12.034765, 9.472736], + [-12.034075, 9.472796], + [-12.035136, 9.474635], + [-12.031231, 9.481401], + [-12.035136, 9.488167], + [-12.032321, 9.493042], + [-12.031868, 9.492941], + [-12.031096, 9.493085], + [-12.029583, 9.502916], + [-12.032917, 9.506249], + [-12.038749, 9.507082], + [-12.039583, 9.507083], + [-12.040416, 9.511249], + [-12.040996, 9.514733], + [-12.039437, 9.515611], + [-12.038844, 9.516105], + [-12.0475, 9.5158], + [-12.068699, 9.515899], + [-12.0716, 9.515699], + [-12.0753, 9.514999], + [-12.080699, 9.5128], + [-12.0857, 9.511599], + [-12.090999, 9.5091], + [-12.095199, 9.5069], + [-12.100599, 9.5027], + [-12.105899, 9.4997], + [-12.110999, 9.4957], + [-12.113299, 9.4942], + [-12.1164, 9.492699], + [-12.120699, 9.4903], + [-12.1238, 9.488999], + [-12.1274, 9.487199], + [-12.1308, 9.486199], + [-12.136199, 9.4857], + [-12.138699, 9.4851], + [-12.144, 9.482899], + [-12.151099, 9.482], + [-12.153699, 9.4814], + [-12.1589, 9.479199], + [-12.1648, 9.477699], + [-12.1693, 9.475699], + [-12.1731, 9.474999], + [-12.179412, 9.474753], + [-12.182916, 9.471249], + [-12.182917, 9.462083], + [-12.179583, 9.45875], + [-12.179329, 9.458242], + [-12.179713, 9.458041], + [-12.179925, 9.457644], + [-12.180335, 9.457348], + [-12.180943, 9.457122], + [-12.181734, 9.457094], + [-12.182889, 9.456375], + [-12.183272, 9.45625] + ] + ], + "type": "Polygon" + }, + "id": 271, + "properties": { + "cc:admin:id": ["116"], + "cc:oBld:total": 3, + "cc:pop:fifteen-to-twenty-four": 712.8310685870761, + "cc:pop:grid3-total": 3902.7716626292286, + "cc:pop:kontur-total": 3692.918499878933, + "cc:pop:men": 1838.543357224953, + "cc:pop:sixty-plus": 239.4336464880205, + "cc:pop:total": 3867.69645198044, + "cc:pop:under-five": 623.9402074138271, + "cc:pop:women": 2029.153094755487, + "cc:pop:women-fiften-to-forty-nine": 983.470196627208, + "cc:pop:wp-total": 3635.7514631227914, + "cc:pop:wp-total-UN": 4222.879715421213, + "cc:id": "271", + "cc:Name": "Laiya CHP", + "cc:site": [-12.1062, 9.4544], + "user:parentName": "Sanda Loko", + "user:code": "OU_193243", + "user:orgUnitId": "yg7uxUol97F", + "user:level": "4", + "user:parentId": "WXnNDWTiE9r" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.266811, 8.395846], + [-13.266499, 8.394614], + [-13.264946, 8.394614], + [-13.264942, 8.394708], + [-13.264535, 8.394694], + [-13.264256, 8.394422], + [-13.263917, 8.394558], + [-13.263257, 8.394278], + [-13.263041, 8.394062], + [-13.26236, 8.393899], + [-13.261574, 8.39435], + [-13.261084, 8.394704], + [-13.260592, 8.393823], + [-13.260528, 8.393853], + [-13.260327, 8.393526], + [-13.260479, 8.394039], + [-13.260224, 8.394224], + [-13.260494, 8.394916], + [-13.260747, 8.395365], + [-13.26129, 8.395989], + [-13.261605, 8.395758], + [-13.2617, 8.395918], + [-13.261769, 8.395884], + [-13.261931, 8.396135], + [-13.262498, 8.396949], + [-13.262863, 8.397495], + [-13.266811, 8.395846] + ] + ], + "type": "Polygon" + }, + "id": 272, + "properties": { + "cc:admin:id": ["112"], + "cc:oBld:total": 107, + "cc:pop:fifteen-to-twenty-four": 121.66654012713377, + "cc:pop:grid3-total": 376.0529532926694, + "cc:pop:kontur-total": 0, + "cc:pop:men": 272.6994663547306, + "cc:pop:sixty-plus": 43.821791553137054, + "cc:pop:total": 540.5991642585388, + "cc:pop:under-five": 63.70039429522309, + "cc:pop:women": 267.89969790380826, + "cc:pop:women-fiften-to-forty-nine": 141.10893236046593, + "cc:pop:wp-total": 500.7517837591253, + "cc:pop:wp-total-UN": 582.235441703232, + "cc:id": "272", + "cc:Name": "Lakka Hospital", + "cc:site": [-13.2632, 8.3972], + "user:parentName": "Rural Western Area", + "user:code": "OU_278378", + "user:orgUnitId": "K0d08d3sUOv", + "user:level": "4", + "user:parentId": "qtr8GGlm4gg" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.150439, 8.050082], + [-11.149607, 8.050081], + [-11.145701, 8.043316], + [-11.137889, 8.043316], + [-11.133982, 8.050081], + [-11.12617, 8.050081], + [-11.122263, 8.043316], + [-11.117463, 8.043315], + [-11.117083, 8.038749], + [-11.117082, 8.032084], + [-11.10625, 8.032083], + [-11.106249, 8.030417], + [-11.104716, 8.030417], + [-11.104562, 8.031266], + [-11.10411, 8.031148], + [-11.103886, 8.030927], + [-11.100416, 8.032083], + [-11.097083, 8.032084], + [-11.092916, 8.03625], + [-11.08875, 8.036249], + [-11.084582, 8.032084], + [-11.080417, 8.032917], + [-11.078749, 8.035416], + [-11.076404, 8.035886], + [-11.0784, 8.037], + [-11.0816, 8.0384], + [-11.0855, 8.0413], + [-11.090499, 8.046099], + [-11.0937, 8.0494], + [-11.0953, 8.0515], + [-11.098399, 8.056899], + [-11.1008, 8.059299], + [-11.1086, 8.0632], + [-11.113499, 8.063899], + [-11.117599, 8.0636], + [-11.1197, 8.062999], + [-11.125, 8.0597], + [-11.1299, 8.060099], + [-11.134899, 8.06], + [-11.138399, 8.059299], + [-11.142399, 8.0571], + [-11.145399, 8.055699], + [-11.148299, 8.053], + [-11.150439, 8.050082] + ] + ], + "type": "Polygon" + }, + "id": 273, + "properties": { + "cc:admin:id": ["105"], + "cc:oBld:total": 517, + "cc:pop:fifteen-to-twenty-four": 493.7277699609024, + "cc:pop:grid3-total": 3746.0764940294002, + "cc:pop:kontur-total": 2547.239171656827, + "cc:pop:men": 1277.2664016076524, + "cc:pop:sixty-plus": 150.36458288460327, + "cc:pop:total": 2539.622237044772, + "cc:pop:under-five": 399.7737702670042, + "cc:pop:women": 1262.35583543712, + "cc:pop:women-fiften-to-forty-nine": 636.0923528455057, + "cc:pop:wp-total": 2843.402280454873, + "cc:pop:wp-total-UN": 3295.2611180411677, + "cc:id": "273", + "cc:Name": "Largo CHC", + "cc:site": [-11.1054, 8.0538], + "user:parentName": "Nongowa", + "user:code": "OU_222699", + "user:orgUnitId": "iOA3z6Y3cq5", + "user:level": "4", + "user:parentId": "KIUCimTXf8Q" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.04432, 7.672916], + [-12.041399, 7.667399], + [-12.039799, 7.662899], + [-12.038099, 7.656099], + [-12.036899, 7.652799], + [-12.035199, 7.649699], + [-12.032699, 7.646899], + [-12.025699, 7.641999], + [-12.016999, 7.634999], + [-12.007999, 7.630799], + [-12.003699, 7.629899], + [-11.999199, 7.6298], + [-11.9933, 7.630099], + [-11.9845, 7.627], + [-11.979699, 7.624699], + [-11.9761, 7.6243], + [-11.9722, 7.6251], + [-11.969899, 7.6267], + [-11.967399, 7.6294], + [-11.966, 7.6322], + [-11.9664, 7.635199], + [-11.9683, 7.637599], + [-11.971799, 7.639999], + [-11.972442, 7.64175], + [-11.97259, 7.641433], + [-11.972591, 7.641433], + [-11.972917, 7.642083], + [-11.974436, 7.642589], + [-11.974041, 7.643324], + [-11.973928, 7.64359], + [-11.977917, 7.646249], + [-11.98125, 7.64625], + [-11.98625, 7.651249], + [-11.992916, 7.649584], + [-11.99125, 7.657916], + [-11.993107, 7.660392], + [-11.997496, 7.657337], + [-11.999471, 7.655305], + [-12.005416, 7.66125], + [-12.005417, 7.667916], + [-12.014582, 7.672916], + [-12.015417, 7.673749], + [-12.027916, 7.66875], + [-12.030416, 7.672083], + [-12.030417, 7.67304], + [-12.035469, 7.673041], + [-12.036632, 7.675055], + [-12.036686, 7.675049], + [-12.036685, 7.675146], + [-12.036984, 7.675662], + [-12.040416, 7.672917], + [-12.04432, 7.672916] + ] + ], + "type": "Polygon" + }, + "id": 274, + "properties": { + "cc:admin:id": ["11"], + "cc:oBld:total": 1, + "cc:pop:fifteen-to-twenty-four": 343.82848804099785, + "cc:pop:grid3-total": 924.4428714996455, + "cc:pop:kontur-total": 1900.9395877738152, + "cc:pop:men": 892.7134005688762, + "cc:pop:sixty-plus": 143.18021780712692, + "cc:pop:total": 1872.5924946534683, + "cc:pop:under-five": 291.3354472591342, + "cc:pop:women": 979.879094084592, + "cc:pop:women-fiften-to-forty-nine": 458.0566785208714, + "cc:pop:wp-total": 1476.7481176884028, + "cc:pop:wp-total-UN": 1716.2838547105823, + "cc:id": "274", + "cc:Name": "Lawana MCHP", + "cc:site": [-12.0149, 7.6424], + "user:parentName": "Kpanda Kemoh", + "user:code": "OU_197426", + "user:orgUnitId": "X7ZVgRPt31q", + "user:level": "4", + "user:parentId": "aWQTfvgPA5v" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.777917, 9.523299], + [-11.777916, 9.522083], + [-11.771249, 9.518749], + [-11.768301, 9.513345], + [-11.768302, 9.513344], + [-11.773034, 9.513343], + [-11.77694, 9.506578], + [-11.777325, 9.506577], + [-11.774582, 9.504583], + [-11.767082, 9.507082], + [-11.764583, 9.502082], + [-11.764583, 9.49625], + [-11.763749, 9.494583], + [-11.75125, 9.494582], + [-11.754582, 9.482917], + [-11.750094, 9.482418], + [-11.750707, 9.481354], + [-11.746802, 9.474589], + [-11.750707, 9.467822], + [-11.750142, 9.466843], + [-11.74125, 9.46625], + [-11.741249, 9.467083], + [-11.732269, 9.469328], + [-11.732267, 9.469327], + [-11.732277, 9.469243], + [-11.732255, 9.469158], + [-11.724582, 9.47125], + [-11.723749, 9.471249], + [-11.722083, 9.46875], + [-11.722917, 9.457083], + [-11.725054, 9.455372], + [-11.724725, 9.454801], + [-11.72863, 9.448035], + [-11.727083, 9.445353], + [-11.727082, 9.440417], + [-11.723749, 9.438749], + [-11.720417, 9.432083], + [-11.719583, 9.431249], + [-11.719582, 9.427635], + [-11.715436, 9.433371], + [-11.714965, 9.434711], + [-11.713711, 9.43699], + [-11.71317, 9.437441], + [-11.71306, 9.437495], + [-11.713059, 9.437494], + [-11.714711, 9.434585], + [-11.714745, 9.434076], + [-11.712082, 9.42875], + [-11.704797, 9.42875], + [-11.703999, 9.429299], + [-11.7018, 9.429999], + [-11.6989, 9.430299], + [-11.688199, 9.4304], + [-11.684699, 9.4314], + [-11.6772, 9.435099], + [-11.673599, 9.438], + [-11.6688, 9.442699], + [-11.665399, 9.4465], + [-11.6635, 9.4502], + [-11.6628, 9.457099], + [-11.6621, 9.459699], + [-11.6599, 9.463099], + [-11.656099, 9.4664], + [-11.6515, 9.4687], + [-11.6478, 9.4726], + [-11.6462, 9.4786], + [-11.6472, 9.481299], + [-11.6508, 9.4857], + [-11.655099, 9.494099], + [-11.6565, 9.5], + [-11.6574, 9.5022], + [-11.659, 9.505], + [-11.661099, 9.509299], + [-11.6637, 9.5123], + [-11.6675, 9.5161], + [-11.678299, 9.526599], + [-11.681299, 9.530399], + [-11.6823, 9.5335], + [-11.682899, 9.539299], + [-11.683699, 9.542499], + [-11.687699, 9.550199], + [-11.690199, 9.553099], + [-11.692699, 9.555299], + [-11.696899, 9.557399], + [-11.7024, 9.556699], + [-11.7049, 9.555999], + [-11.7102, 9.553799], + [-11.7161, 9.552299], + [-11.720499, 9.5501], + [-11.7236, 9.548799], + [-11.727899, 9.5464], + [-11.7311, 9.544999], + [-11.7354, 9.542599], + [-11.7385, 9.541299], + [-11.742799, 9.5389], + [-11.746699, 9.537], + [-11.752899, 9.5323], + [-11.7571, 9.530099], + [-11.7614, 9.527599], + [-11.7645, 9.526299], + [-11.768099, 9.5245], + [-11.770699, 9.5236], + [-11.7735, 9.5233], + [-11.777917, 9.523299] + ] + ], + "type": "Polygon" + }, + "id": 275, + "properties": { + "cc:admin:id": ["52"], + "cc:oBld:total": 157, + "cc:pop:fifteen-to-twenty-four": 521.6871028278765, + "cc:pop:grid3-total": 2649.4268285448284, + "cc:pop:kontur-total": 2767.633025297398, + "cc:pop:men": 1261.3497035577873, + "cc:pop:sixty-plus": 168.78685076046136, + "cc:pop:total": 2801.036855518924, + "cc:pop:under-five": 439.7762002653937, + "cc:pop:women": 1539.6871519611368, + "cc:pop:women-fiften-to-forty-nine": 747.768160178831, + "cc:pop:wp-total": 2554.3689102900425, + "cc:pop:wp-total-UN": 2956.461339745299, + "cc:id": "275", + "cc:Name": "Lengekoro MCHP", + "cc:site": [-11.6759, 9.4663], + "user:parentName": "Diang", + "user:code": "OU_226266", + "user:orgUnitId": "rs87nYgwbKv", + "user:level": "4", + "user:parentId": "Lt8U7GVWvSR" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.755417, 8.071903], + [-10.755416, 8.064584], + [-10.750417, 8.05875], + [-10.750416, 8.057917], + [-10.749583, 8.057083], + [-10.749582, 8.052917], + [-10.748749, 8.052916], + [-10.742008, 8.049171], + [-10.741417, 8.05036], + [-10.741416, 8.05036], + [-10.739583, 8.047916], + [-10.739583, 8.040417], + [-10.746249, 8.03375], + [-10.747082, 8.03125], + [-10.748749, 8.031249], + [-10.752916, 8.01875], + [-10.747082, 8.017084], + [-10.742082, 8.01875], + [-10.739263, 8.021007], + [-10.739175, 8.021528], + [-10.738583, 8.022966], + [-10.737772, 8.02396], + [-10.73767, 8.024043], + [-10.737083, 8.023749], + [-10.73625, 8.022916], + [-10.737916, 8.018749], + [-10.737916, 8.012917], + [-10.732916, 8.01125], + [-10.72625, 8.012916], + [-10.725416, 8.009584], + [-10.71375, 8.008749], + [-10.714583, 8.006249], + [-10.719582, 8.003749], + [-10.717082, 8.002084], + [-10.710968, 8.002084], + [-10.710875, 8.002276], + [-10.709553, 8.003402], + [-10.70887, 8.003714], + [-10.70689, 8.004451], + [-10.706249, 8.00125], + [-10.702082, 7.999583], + [-10.700416, 7.997084], + [-10.699582, 7.997083], + [-10.697916, 7.992917], + [-10.69375, 7.992916], + [-10.69375, 7.99125], + [-10.694582, 7.98875], + [-10.696249, 7.987083], + [-10.696249, 7.98375], + [-10.695416, 7.982084], + [-10.68875, 7.988749], + [-10.687903, 7.988468], + [-10.687999, 7.997799], + [-10.688199, 8.002899], + [-10.688699, 8.006799], + [-10.691, 8.0122], + [-10.6918, 8.0156], + [-10.692, 8.0192], + [-10.695199, 8.023399], + [-10.6971, 8.026799], + [-10.700399, 8.026999], + [-10.702999, 8.027599], + [-10.708299, 8.029799], + [-10.7134, 8.031], + [-10.722599, 8.035199], + [-10.725899, 8.037799], + [-10.729499, 8.041299], + [-10.731799, 8.044099], + [-10.7349, 8.0494], + [-10.7388, 8.0545], + [-10.7401, 8.0569], + [-10.741699, 8.062699], + [-10.7429, 8.064899], + [-10.745, 8.0668], + [-10.749099, 8.068799], + [-10.752699, 8.070799], + [-10.755417, 8.071903] + ] + ], + "type": "Polygon" + }, + "id": 276, + "properties": { + "cc:admin:id": ["90"], + "cc:oBld:total": 173, + "cc:pop:fifteen-to-twenty-four": 432.0371286989186, + "cc:pop:grid3-total": 783.612395105558, + "cc:pop:kontur-total": 3371.029790808892, + "cc:pop:men": 1056.548112960453, + "cc:pop:sixty-plus": 144.13397697218372, + "cc:pop:total": 2194.1822395027775, + "cc:pop:under-five": 359.152541321643, + "cc:pop:women": 1137.6341265423248, + "cc:pop:women-fiften-to-forty-nine": 587.9420217089224, + "cc:pop:wp-total": 1876.5966620105758, + "cc:pop:wp-total-UN": 2179.064573974701, + "cc:id": "276", + "cc:Name": "Levuma CHP", + "cc:site": [-10.7263, 8.0369], + "user:parentName": "Mandu", + "user:code": "OU_204911", + "user:orgUnitId": "Bf9R1R91mw4", + "user:level": "4", + "user:parentId": "yu4N82FFeLm" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.425924, 8.097507], + [-12.422018, 8.090741], + [-12.414206, 8.09074], + [-12.410299, 8.083976], + [-12.402487, 8.083976], + [-12.400733, 8.087013], + [-12.398536, 8.085854], + [-12.397289, 8.08492], + [-12.396672, 8.084116], + [-12.396189, 8.081741], + [-12.395806, 8.080903], + [-12.395671, 8.080903], + [-12.391766, 8.087667], + [-12.384473, 8.087668], + [-12.384472, 8.087666], + [-12.387082, 8.08375], + [-12.372917, 8.077084], + [-12.375416, 8.085415], + [-12.375415, 8.085416], + [-12.367916, 8.082916], + [-12.36375, 8.079584], + [-12.363749, 8.077084], + [-12.360417, 8.080416], + [-12.35875, 8.080417], + [-12.356155, 8.083658], + [-12.355483, 8.083179], + [-12.354424, 8.078562], + [-12.35273, 8.075757], + [-12.35125, 8.07625], + [-12.348749, 8.078749], + [-12.343749, 8.079584], + [-12.337917, 8.081249], + [-12.335417, 8.07875], + [-12.33375, 8.082916], + [-12.333524, 8.083097], + [-12.335846, 8.08712], + [-12.33194, 8.093885], + [-12.332055, 8.094085], + [-12.327082, 8.094584], + [-12.324583, 8.097084], + [-12.323749, 8.100417], + [-12.320417, 8.10375], + [-12.320416, 8.112083], + [-12.31875, 8.112917], + [-12.318749, 8.122083], + [-12.315416, 8.12375], + [-12.310417, 8.127917], + [-12.312082, 8.133749], + [-12.310869, 8.136784], + [-12.3121, 8.138299], + [-12.316, 8.1409], + [-12.3197, 8.1417], + [-12.327916, 8.141777], + [-12.327917, 8.135417], + [-12.331249, 8.135416], + [-12.332229, 8.127093], + [-12.336509, 8.127093], + [-12.336551, 8.1273], + [-12.336273, 8.128436], + [-12.336606, 8.130724], + [-12.336971, 8.13083], + [-12.337765, 8.13063], + [-12.339196, 8.131264], + [-12.339813, 8.131591], + [-12.340651, 8.132604], + [-12.342597, 8.133688], + [-12.34266, 8.133858], + [-12.344239, 8.133857], + [-12.345416, 8.132917], + [-12.345831, 8.131259], + [-12.345832, 8.131258], + [-12.348931, 8.136624], + [-12.356743, 8.136624], + [-12.359228, 8.13232], + [-12.35923, 8.132321], + [-12.359164, 8.132548], + [-12.366477, 8.132549], + [-12.370385, 8.139314], + [-12.378196, 8.139315], + [-12.382103, 8.146079], + [-12.386249, 8.146079], + [-12.38625, 8.142084], + [-12.397622, 8.142841], + [-12.396685, 8.141851], + [-12.396447, 8.141411], + [-12.396581, 8.140366], + [-12.397425, 8.138526], + [-12.397757, 8.138318], + [-12.397083, 8.132917], + [-12.399238, 8.130761], + [-12.39732, 8.129741], + [-12.397187, 8.129666], + [-12.400417, 8.127084], + [-12.406708, 8.127083], + [-12.403539, 8.121592], + [-12.404465, 8.1203], + [-12.400417, 8.116249], + [-12.40125, 8.104584], + [-12.407082, 8.100417], + [-12.410774, 8.100416], + [-12.411266, 8.100797], + [-12.41194, 8.101698], + [-12.411516, 8.102472], + [-12.411539, 8.103147], + [-12.412584, 8.10456], + [-12.413643, 8.105293], + [-12.414036, 8.106309], + [-12.41381, 8.107917], + [-12.413855, 8.108636], + [-12.413199, 8.110505], + [-12.413212, 8.111693], + [-12.412953, 8.112324], + [-12.411789, 8.113295], + [-12.41099, 8.113739], + [-12.409979, 8.115519], + [-12.409827, 8.115914], + [-12.410311, 8.115906], + [-12.410899, 8.11479], + [-12.411642, 8.11403], + [-12.413586, 8.112394], + [-12.413675, 8.111394], + [-12.413465, 8.110774], + [-12.413964, 8.10989], + [-12.414025, 8.109279], + [-12.414487, 8.108502], + [-12.41433, 8.10755], + [-12.414501, 8.10599], + [-12.414237, 8.105381], + [-12.41349, 8.104675], + [-12.412728, 8.10433], + [-12.411861, 8.103248], + [-12.411812, 8.10276], + [-12.412322, 8.10161], + [-12.412172, 8.101354], + [-12.411765, 8.101152], + [-12.411274, 8.100417], + [-12.417083, 8.100417], + [-12.421249, 8.103749], + [-12.42129, 8.104272], + [-12.422018, 8.104272], + [-12.425924, 8.097507] + ] + ], + "type": "Polygon" + }, + "id": 277, + "properties": { + "cc:admin:id": ["45"], + "cc:oBld:total": 40, + "cc:pop:fifteen-to-twenty-four": 204.26943562640048, + "cc:pop:grid3-total": 869.3803302144222, + "cc:pop:kontur-total": 1143.641394725114, + "cc:pop:men": 542.829711234235, + "cc:pop:sixty-plus": 78.9501871604398, + "cc:pop:total": 1141.8471594500759, + "cc:pop:under-five": 194.30088542081282, + "cc:pop:women": 599.0174482158408, + "cc:pop:women-fiften-to-forty-nine": 281.21958298170546, + "cc:pop:wp-total": 1486.1721154597333, + "cc:pop:wp-total-UN": 1721.1409312136184, + "cc:id": "277", + "cc:Name": "Levuma Kai MCHP", + "cc:site": [-12.372, 8.1168], + "user:parentName": "Kaiyamba", + "user:code": "OU_247065", + "user:orgUnitId": "BgOhMcH9bxq", + "user:level": "4", + "user:parentId": "USQdmvrHh1Q" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [-11.684967, 7.337306], + [-11.6851, 7.336799], + [-11.685199, 7.331499], + [-11.6849, 7.3276], + [-11.6843, 7.3239], + [-11.681999, 7.318499], + [-11.681299, 7.315699], + [-11.680699, 7.310899], + [-11.68, 7.3082], + [-11.677999, 7.303599], + [-11.677299, 7.299999], + [-11.6769, 7.2932], + [-11.6761, 7.2896], + [-11.6738, 7.2842], + [-11.6722, 7.2784], + [-11.6702, 7.2739], + [-11.669499, 7.271099], + [-11.669199, 7.264999], + [-11.668899, 7.2275], + [-11.666299, 7.224699], + [-11.665299, 7.222399], + [-11.6646, 7.2169], + [-11.6637, 7.2144], + [-11.6618, 7.2107], + [-11.660399, 7.207499], + [-11.658199, 7.203099], + [-11.657399, 7.199399], + [-11.657199, 7.188299], + [-11.657, 7.1853], + [-11.6565, 7.1824], + [-11.654199, 7.176999], + [-11.6524, 7.1703], + [-11.6501, 7.166], + [-11.648799, 7.162799], + [-11.6464, 7.1585], + [-11.644899, 7.154399], + [-11.642799, 7.150699], + [-11.639099, 7.144399], + [-11.638199, 7.141899], + [-11.637199, 7.137699], + [-11.634899, 7.132399], + [-11.634099, 7.128899], + [-11.6339, 7.1253], + [-11.633999, 7.1216], + [-11.6347, 7.118199], + [-11.636899, 7.1138], + [-11.6382, 7.110599], + [-11.640599, 7.1064], + [-11.641999, 7.1033], + [-11.6435, 7.100999], + [-11.6469, 7.096699], + [-11.6503, 7.090599], + [-11.654799, 7.0848], + [-11.6573, 7.080199], + [-11.6612, 7.075099], + [-11.6624, 7.072799], + [-11.6643, 7.066099], + [-11.6657, 7.063799], + [-11.6691, 7.059499], + [-11.6702, 7.057599], + [-11.672699, 7.0511], + [-11.674499, 7.0485], + [-11.6707, 7.046299], + [-11.669599, 7.0451], + [-11.667599, 7.044599], + [-11.665399, 7.0426], + [-11.664, 7.042399], + [-11.662899, 7.0413], + [-11.6613, 7.0407], + [-11.660699, 7.0396], + [-11.6576, 7.0379], + [-11.657099, 7.0368], + [-11.6557, 7.036799], + [-11.655399, 7.036], + [-11.6535, 7.034899], + [-11.652099, 7.0329], + [-11.650999, 7.032899], + [-11.650099, 7.031], + [-11.6471, 7.028799], + [-11.646299, 7.0276], + [-11.644899, 7.027099], + [-11.6426, 7.0246], + [-11.642099, 7.024599], + [-11.640099, 7.0224], + [-11.6388, 7.0218], + [-11.638199, 7.020999], + [-11.6346, 7.0188], + [-11.633799, 7.0174], + [-11.631, 7.016799], + [-11.629899, 7.0149], + [-11.6282, 7.014299], + [-11.6271, 7.0132], + [-11.624, 7.0171], + [-11.623799, 7.018799], + [-11.6221, 7.0201], + [-11.6213, 7.021499], + [-11.619899, 7.022099], + [-11.6179, 7.0221], + [-11.617099, 7.022899], + [-11.6154, 7.0235], + [-11.613999, 7.0249], + [-11.6104, 7.0257], + [-11.6096, 7.0265], + [-11.6088, 7.029299], + [-11.6082, 7.0296], + [-11.608199, 7.031799], + [-11.6071, 7.031499], + [-11.6071, 7.030099], + [-11.608199, 7.028499], + [-11.6079, 7.027099], + [-11.6088, 7.025699], + [-11.610399, 7.0243], + [-11.612899, 7.023999], + [-11.6149, 7.022099], + [-11.6168, 7.021], + [-11.619899, 7.020399], + [-11.621499, 7.018999], + [-11.6218, 7.017899], + [-11.622899, 7.017099], + [-11.6229, 7.0154], + [-11.623999, 7.012899], + [-11.623999, 7.011], + [-11.620999, 7.0074], + [-11.6193, 7.007099], + [-11.618799, 7.0051], + [-11.617899, 7.004299], + [-11.617099, 7.0021], + [-11.615399, 7.000399], + [-11.614899, 6.9985], + [-11.6135, 6.996299], + [-11.6135, 6.9929], + [-11.613199, 6.9918], + [-11.611499, 6.991799], + [-11.6107, 6.9882], + [-11.611499, 6.987899], + [-11.611499, 6.9868], + [-11.609, 6.986499], + [-11.608999, 6.984], + [-11.6076, 6.983499], + [-11.607399, 6.9826], + [-11.605399, 6.981799], + [-11.602599, 6.9796], + [-11.6001, 6.9788], + [-11.599299, 6.9779], + [-11.5976, 6.977599], + [-11.5976, 6.976], + [-11.59734, 6.974963], + [-11.591901, 6.97281], + [-11.590612, 6.972101], + [-11.58875, 6.974584], + [-11.588749, 6.979583], + [-11.585883, 6.979584], + [-11.585664, 6.980263], + [-11.584067, 6.9815], + [-11.582569, 6.983106], + [-11.581227, 6.984104], + [-11.580015, 6.984647], + [-11.578092, 6.98523], + [-11.575416, 6.991249], + [-11.571629, 6.991882], + [-11.572, 6.9927], + [-11.5734, 7.001], + [-11.575599, 7.006499], + [-11.577499, 7.013199], + [-11.579099, 7.016799], + [-11.579899, 7.019699], + [-11.580699, 7.027999], + [-11.581399, 7.031799], + [-11.5835, 7.0363], + [-11.585299, 7.042999], + [-11.587599, 7.048299], + [-11.589199, 7.054099], + [-11.591499, 7.059599], + [-11.592099, 7.063399], + [-11.5922, 7.0665], + [-11.592499, 7.107599], + [-11.592799, 7.113699], + [-11.593599, 7.117499], + [-11.595599, 7.121899], + [-11.5963, 7.1248], + [-11.5967, 7.1298], + [-11.5967, 7.148499], + [-11.596999, 7.154599], + [-11.5978, 7.1584], + [-11.599899, 7.1628], + [-11.600399, 7.166299], + [-11.5999, 7.169699], + [-11.5977, 7.174999], + [-11.5972, 7.177899], + [-11.5971, 7.185099], + [-11.5973, 7.1881], + [-11.5978, 7.1911], + [-11.600099, 7.196499], + [-11.600799, 7.199199], + [-11.601399, 7.204099], + [-11.601999, 7.206799], + [-11.604, 7.2113], + [-11.606299, 7.218399], + [-11.610799, 7.224599], + [-11.6119, 7.2267], + [-11.6125, 7.229], + [-11.612699, 7.231999], + [-11.612799, 7.241099], + [-11.612999, 7.244999], + [-11.613999, 7.248699], + [-11.615899, 7.252199], + [-11.6173, 7.2554], + [-11.619799, 7.259599], + [-11.6212, 7.2628], + [-11.623499, 7.267099], + [-11.6241, 7.27], + [-11.625, 7.276699], + [-11.627599, 7.281999], + [-11.6289, 7.2851], + [-11.6312, 7.2896], + [-11.6319, 7.2932], + [-11.632399, 7.300899], + [-11.633399, 7.304499], + [-11.635299, 7.307999], + [-11.6367, 7.3112], + [-11.639, 7.3156], + [-11.639799, 7.319299], + [-11.639999, 7.322199], + [-11.640099, 7.330199], + [-11.64, 7.336199], + [-11.639599, 7.3391], + [-11.6373, 7.3456], + [-11.637499, 7.348499], + [-11.6394, 7.3537], + [-11.640099, 7.357399], + [-11.640499, 7.363199], + [-11.6411, 7.366599], + [-11.6422, 7.3686], + [-11.645499, 7.372899], + [-11.646899, 7.375199], + [-11.648, 7.378499], + [-11.6514, 7.377699], + [-11.659699, 7.3736], + [-11.662, 7.371899], + [-11.6662, 7.367899], + [-11.668099, 7.3657], + [-11.669599, 7.3633], + [-11.671, 7.360199], + [-11.673299, 7.3558], + [-11.6746, 7.352699], + [-11.678299, 7.3467], + [-11.681699, 7.3439], + [-11.683999, 7.340999], + [-11.684967, 7.337306] + ] + ], + [ + [ + [-11.620399, 6.9951], + [-11.619, 6.9943], + [-11.619, 6.997099], + [-11.6196, 6.997899], + [-11.620099, 6.997899], + [-11.620399, 6.9951] + ] + ] + ], + "type": "MultiPolygon" + }, + "id": 278, + "properties": { + "cc:admin:id": ["64"], + "cc:oBld:total": 153, + "cc:pop:fifteen-to-twenty-four": 3488.2328645575326, + "cc:pop:grid3-total": 12104.522373261927, + "cc:pop:kontur-total": 18952.042898282085, + "cc:pop:men": 8876.572845912633, + "cc:pop:sixty-plus": 1307.177420596082, + "cc:pop:total": 19095.612750924727, + "cc:pop:under-five": 3129.0866432881453, + "cc:pop:women": 10219.039905012085, + "cc:pop:women-fiften-to-forty-nine": 4816.378422505241, + "cc:pop:wp-total": 17377.05769077497, + "cc:pop:wp-total-UN": 20146.80544543008, + "cc:id": "278", + "cc:Name": "Liya MCHP", + "cc:site": [-11.6021, 6.989], + "user:parentName": "Kpaka", + "user:code": "OU_260442", + "user:orgUnitId": "tBRDdxfKbMx", + "user:level": "4", + "user:parentId": "zSNUViKdkk3" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.393034, 7.806693], + [-11.392499, 7.805699], + [-11.3897, 7.8025], + [-11.387, 7.8005], + [-11.3787, 7.7963], + [-11.374799, 7.794499], + [-11.3688, 7.7899], + [-11.363399, 7.786999], + [-11.360599, 7.784799], + [-11.3552, 7.7798], + [-11.352999, 7.778199], + [-11.345399, 7.774399], + [-11.342999, 7.773599], + [-11.337899, 7.772499], + [-11.3335, 7.7703], + [-11.330299, 7.768899], + [-11.3259, 7.7665], + [-11.322699, 7.765199], + [-11.3137, 7.7606], + [-11.308199, 7.755599], + [-11.305799, 7.752799], + [-11.3026, 7.7478], + [-11.3005, 7.754899], + [-11.2992, 7.758099], + [-11.2969, 7.762399], + [-11.295599, 7.7656], + [-11.2932, 7.769799], + [-11.291899, 7.773], + [-11.2897, 7.777399], + [-11.2886, 7.782499], + [-11.2878, 7.784899], + [-11.2839, 7.792799], + [-11.281299, 7.7959], + [-11.271, 7.806099], + [-11.268399, 7.8093], + [-11.2673, 7.811799], + [-11.2669, 7.814399], + [-11.2667, 7.820699], + [-11.2663, 7.824299], + [-11.264099, 7.8296], + [-11.263599, 7.8321], + [-11.2631, 7.837399], + [-11.2626, 7.839599], + [-11.261699, 7.8415], + [-11.258099, 7.8461], + [-11.2566, 7.848999], + [-11.255199, 7.854899], + [-11.2528, 7.858399], + [-11.251, 7.860099], + [-11.248199, 7.862], + [-11.244399, 7.8639], + [-11.241799, 7.8658], + [-11.238699, 7.8694], + [-11.234499, 7.878], + [-11.2338, 7.881299], + [-11.2362, 7.8847], + [-11.2372, 7.8871], + [-11.2386, 7.8921], + [-11.24, 7.8944], + [-11.2441, 7.8994], + [-11.248099, 7.907299], + [-11.2487, 7.9094], + [-11.249499, 7.915599], + [-11.25, 7.9182], + [-11.252299, 7.923499], + [-11.253299, 7.927799], + [-11.254099, 7.930199], + [-11.2577, 7.935999], + [-11.2647, 7.940099], + [-11.269899, 7.941299], + [-11.272299, 7.942099], + [-11.275999, 7.943999], + [-11.2791, 7.9453], + [-11.283599, 7.947499], + [-11.287199, 7.948199], + [-11.296249, 7.948368], + [-11.29625, 7.946249], + [-11.304582, 7.943749], + [-11.304583, 7.942917], + [-11.305416, 7.942083], + [-11.302798, 7.93292], + [-11.308028, 7.932919], + [-11.311935, 7.926154], + [-11.310738, 7.924082], + [-11.308757, 7.923751], + [-11.308604, 7.923835], + [-11.308486, 7.923942], + [-11.307442, 7.924632], + [-11.305298, 7.925198], + [-11.304713, 7.925564], + [-11.303778, 7.92602], + [-11.30235, 7.926416], + [-11.299895, 7.927848], + [-11.299877, 7.92669], + [-11.29911, 7.925698], + [-11.299003, 7.92514], + [-11.296802, 7.924122], + [-11.297268, 7.923389], + [-11.297828, 7.920605], + [-11.297711, 7.920055], + [-11.297865, 7.919906], + [-11.300416, 7.920416], + [-11.30125, 7.918749], + [-11.305415, 7.917084], + [-11.305417, 7.917085], + [-11.305417, 7.921249], + [-11.312916, 7.917084], + [-11.315416, 7.917916], + [-11.317083, 7.918749], + [-11.319582, 7.917916], + [-11.320417, 7.911249], + [-11.323749, 7.90625], + [-11.327082, 7.905416], + [-11.327082, 7.895417], + [-11.325417, 7.893749], + [-11.335416, 7.886249], + [-11.33375, 7.882916], + [-11.334526, 7.882529], + [-11.334843, 7.883116], + [-11.335075, 7.883499], + [-11.335718, 7.883719], + [-11.336534, 7.883479], + [-11.337257, 7.883117], + [-11.337741, 7.882484], + [-11.338559, 7.882275], + [-11.339953, 7.881659], + [-11.341005, 7.880923], + [-11.339529, 7.879961], + [-11.338863, 7.879492], + [-11.338565, 7.879289], + [-11.338335, 7.879127], + [-11.338455, 7.878847], + [-11.338601, 7.87858], + [-11.338747, 7.878381], + [-11.339302, 7.877337], + [-11.339581, 7.877236], + [-11.339724, 7.8769], + [-11.340184, 7.876388], + [-11.341448, 7.875705], + [-11.341548, 7.873491], + [-11.342409, 7.873018], + [-11.342227, 7.872409], + [-11.342026, 7.871083], + [-11.341516, 7.86989], + [-11.341268, 7.868515], + [-11.341053, 7.867147], + [-11.340627, 7.866068], + [-11.340451, 7.865236], + [-11.340453, 7.865235], + [-11.342917, 7.867083], + [-11.344582, 7.866249], + [-11.34625, 7.859583], + [-11.34625, 7.852084], + [-11.350416, 7.850416], + [-11.350416, 7.844584], + [-11.349584, 7.844584], + [-11.349583, 7.844582], + [-11.351249, 7.839584], + [-11.352916, 7.839583], + [-11.355416, 7.83625], + [-11.355417, 7.834583], + [-11.357916, 7.830416], + [-11.357917, 7.822916], + [-11.36125, 7.820417], + [-11.367917, 7.825416], + [-11.371249, 7.826249], + [-11.374582, 7.822916], + [-11.37375, 7.817084], + [-11.377082, 7.812084], + [-11.382082, 7.812916], + [-11.385788, 7.811063], + [-11.385255, 7.809754], + [-11.385308, 7.809307], + [-11.385336, 7.809291], + [-11.386726, 7.809242], + [-11.388318, 7.808469], + [-11.392324, 7.80726], + [-11.393034, 7.806693] + ] + ], + "type": "Polygon" + }, + "id": 279, + "properties": { + "cc:admin:id": ["124"], + "cc:oBld:total": 1850, + "cc:pop:fifteen-to-twenty-four": 4001.053653402493, + "cc:pop:grid3-total": 11017.507211352226, + "cc:pop:kontur-total": 19403.90008133428, + "cc:pop:men": 10166.861913940942, + "cc:pop:sixty-plus": 1244.243920723912, + "cc:pop:total": 20792.83052418049, + "cc:pop:under-five": 3346.841617227699, + "cc:pop:women": 10625.968610239544, + "cc:pop:women-fiften-to-forty-nine": 5316.720854774191, + "cc:pop:wp-total": 18588.655656629657, + "cc:pop:wp-total-UN": 21533.482895959547, + "cc:id": "279", + "cc:Name": "London (Blama) MCHP", + "cc:site": [-11.3401, 7.8679], + "user:parentName": "Small Bo", + "user:code": "OU_222620", + "user:orgUnitId": "hIpcmjLrDDW", + "user:level": "4", + "user:parentId": "vzup1f6ynON" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.217057, 8.438212], + [-13.216688, 8.43738], + [-13.216341, 8.437627], + [-13.215622, 8.436689], + [-13.215623, 8.436688], + [-13.216291, 8.436413], + [-13.215944, 8.435855], + [-13.215255, 8.435393], + [-13.214861, 8.435077], + [-13.213594, 8.434171], + [-13.213419, 8.433837], + [-13.212465, 8.433314], + [-13.211937, 8.433209], + [-13.211021, 8.433079], + [-13.210477, 8.432828], + [-13.190539, 8.465418], + [-13.190639, 8.465387], + [-13.191554, 8.465397], + [-13.192407, 8.465372], + [-13.192415, 8.464786], + [-13.193342, 8.46466], + [-13.194314, 8.464624], + [-13.19432, 8.465335], + [-13.194373, 8.466084], + [-13.195249, 8.466049], + [-13.196099, 8.466008], + [-13.196112, 8.466832], + [-13.19685, 8.466779], + [-13.196956, 8.467292], + [-13.196154, 8.467975], + [-13.196131, 8.468282], + [-13.1967, 8.468294], + [-13.197028, 8.467923], + [-13.197395, 8.467995], + [-13.197782, 8.468478], + [-13.197862, 8.468566], + [-13.198359, 8.468967], + [-13.199127, 8.469114], + [-13.202412, 8.469113], + [-13.206319, 8.462348], + [-13.211847, 8.462347], + [-13.212201, 8.461963], + [-13.212017, 8.461525], + [-13.212206, 8.461219], + [-13.212796, 8.460892], + [-13.213416, 8.460111], + [-13.213909, 8.458538], + [-13.214303, 8.458439], + [-13.214353, 8.457911], + [-13.214872, 8.457563], + [-13.214944, 8.457081], + [-13.214782, 8.456392], + [-13.21507, 8.45625], + [-13.215164, 8.455919], + [-13.214921, 8.455044], + [-13.214551, 8.454436], + [-13.213829, 8.454083], + [-13.213442, 8.453466], + [-13.213443, 8.453464], + [-13.214728, 8.453323], + [-13.214022, 8.452679], + [-13.214005, 8.452208], + [-13.214319, 8.452043], + [-13.21413, 8.451633], + [-13.213927, 8.451164], + [-13.21372, 8.450745], + [-13.213492, 8.450373], + [-13.213535, 8.450347], + [-13.214162, 8.450033], + [-13.214348, 8.450479], + [-13.214936, 8.450189], + [-13.215394, 8.450034], + [-13.215367, 8.44957], + [-13.216035, 8.449054], + [-13.216268, 8.448702], + [-13.216336, 8.446649], + [-13.21647, 8.44538], + [-13.216477, 8.445229], + [-13.215326, 8.445233], + [-13.214431, 8.444557], + [-13.214068, 8.442812], + [-13.213712, 8.442119], + [-13.213746, 8.441543], + [-13.213771, 8.441076], + [-13.2143, 8.440196], + [-13.214854, 8.439638], + [-13.21583, 8.438368], + [-13.216599, 8.438287], + [-13.217057, 8.438212] + ] + ], + "type": "Polygon" + }, + "id": 280, + "properties": { + "cc:admin:id": ["26"], + "cc:oBld:total": 2059, + "cc:pop:fifteen-to-twenty-four": 6309.586572990715, + "cc:pop:grid3-total": 16245.572282609113, + "cc:pop:kontur-total": 34068.11941253413, + "cc:pop:men": 13704.207094584066, + "cc:pop:sixty-plus": 2137.7774494815035, + "cc:pop:total": 27620.118036044867, + "cc:pop:under-five": 3177.6252793503986, + "cc:pop:women": 13915.910941460803, + "cc:pop:women-fiften-to-forty-nine": 7431.735965078745, + "cc:pop:wp-total": 15777.94309279763, + "cc:pop:wp-total-UN": 18292.736620191838, + "cc:id": "280", + "cc:Name": "Looking Town MCHP", + "cc:site": [-13.1963, 8.4619], + "user:parentName": "Freetown", + "user:code": "OU_278344", + "user:orgUnitId": "Z7UAnjpK74g", + "user:level": "4", + "user:parentId": "C9uduqDZr9d" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.271599, 7.6283], + [-11.269099, 7.6255], + [-11.266399, 7.624399], + [-11.263499, 7.6242], + [-11.2529, 7.624299], + [-11.2491, 7.6241], + [-11.246299, 7.623499], + [-11.2419, 7.6215], + [-11.239299, 7.6211], + [-11.2359, 7.6213], + [-11.230399, 7.623399], + [-11.2275, 7.6234], + [-11.223099, 7.621599], + [-11.217099, 7.620299], + [-11.211, 7.6196], + [-11.2052, 7.623199], + [-11.201399, 7.6251], + [-11.1971, 7.627499], + [-11.193899, 7.6289], + [-11.1903, 7.630799], + [-11.1868, 7.631699], + [-11.182099, 7.632], + [-11.1743, 7.632], + [-11.171399, 7.631799], + [-11.1677, 7.6311], + [-11.1633, 7.6289], + [-11.160099, 7.627499], + [-11.1555, 7.625], + [-11.1503, 7.630799], + [-11.149413, 7.632751], + [-11.15003, 7.633822], + [-11.148978, 7.635644], + [-11.15125, 7.637917], + [-11.152917, 7.643749], + [-11.155417, 7.64125], + [-11.165416, 7.64125], + [-11.169582, 7.644584], + [-11.170187, 7.653036], + [-11.173468, 7.647354], + [-11.173975, 7.647354], + [-11.177917, 7.652083], + [-11.180416, 7.652916], + [-11.177083, 7.657917], + [-11.177083, 7.658359], + [-11.178968, 7.661623], + [-11.18678, 7.661623], + [-11.18809, 7.659356], + [-11.188399, 7.656569], + [-11.188153, 7.654908], + [-11.189329, 7.654908], + [-11.193234, 7.661673], + [-11.189329, 7.668439], + [-11.191432, 7.672083], + [-11.192916, 7.672083], + [-11.194069, 7.670932], + [-11.196906, 7.675844], + [-11.204718, 7.675845], + [-11.208625, 7.682609], + [-11.210722, 7.68261], + [-11.210417, 7.682917], + [-11.210417, 7.692083], + [-11.215416, 7.697083], + [-11.216249, 7.69875], + [-11.215507, 7.709151], + [-11.217711, 7.709152], + [-11.218451, 7.710432], + [-11.219583, 7.709584], + [-11.227052, 7.717052], + [-11.225465, 7.71883], + [-11.22174, 7.725726], + [-11.221711, 7.725847], + [-11.230416, 7.728749], + [-11.232082, 7.728749], + [-11.234582, 7.726249], + [-11.23487, 7.725243], + [-11.235142, 7.725711], + [-11.235966, 7.723746], + [-11.23892, 7.721562], + [-11.239339, 7.720824], + [-11.239341, 7.720824], + [-11.236301, 7.730952], + [-11.236383, 7.731175], + [-11.236136, 7.731498], + [-11.235228, 7.734526], + [-11.235631, 7.734726], + [-11.234911, 7.735983], + [-11.23468, 7.737639], + [-11.23419, 7.737983], + [-11.23396, 7.738749], + [-11.236023, 7.73875], + [-11.234515, 7.741394], + [-11.234353, 7.744423], + [-11.235779, 7.744869], + [-11.234231, 7.750806], + [-11.235412, 7.751534], + [-11.235321, 7.754706], + [-11.235106, 7.755369], + [-11.232614, 7.759415], + [-11.232884, 7.760363], + [-11.233393, 7.761302], + [-11.240699, 7.7539], + [-11.2426, 7.751099], + [-11.2435, 7.747899], + [-11.243699, 7.7441], + [-11.2433, 7.724399], + [-11.2434, 7.721499], + [-11.243999, 7.7179], + [-11.246, 7.713299], + [-11.2475, 7.707499], + [-11.2487, 7.705099], + [-11.2525, 7.700099], + [-11.2537, 7.697599], + [-11.254199, 7.6948], + [-11.254299, 7.689899], + [-11.2542, 7.678], + [-11.2539, 7.6731], + [-11.2531, 7.6695], + [-11.251, 7.665], + [-11.2502, 7.6615], + [-11.2501, 7.6579], + [-11.2505, 7.655299], + [-11.2518, 7.652199], + [-11.2547, 7.6479], + [-11.259, 7.644699], + [-11.263299, 7.6405], + [-11.2661, 7.6367], + [-11.269199, 7.634699], + [-11.271399, 7.6319], + [-11.271599, 7.6283] + ] + ], + "type": "Polygon" + }, + "id": 281, + "properties": { + "cc:admin:id": ["15"], + "cc:oBld:total": 1178, + "cc:pop:fifteen-to-twenty-four": 918.3067318473269, + "cc:pop:grid3-total": 4660.979691124545, + "cc:pop:kontur-total": 5515.430993782421, + "cc:pop:men": 2232.422073659395, + "cc:pop:sixty-plus": 287.1293922864415, + "cc:pop:total": 4681.815858393131, + "cc:pop:under-five": 746.2827582101052, + "cc:pop:women": 2449.393784733735, + "cc:pop:women-fiften-to-forty-nine": 1236.9771262786364, + "cc:pop:wp-total": 3946.781829307455, + "cc:pop:wp-total-UN": 4571.493410337899, + "cc:id": "281", + "cc:Name": "Loppa CHP", + "cc:site": [-11.2439, 7.6746], + "user:parentName": "Dama", + "user:code": "OU_222732", + "user:orgUnitId": "IW3guWF3uvF", + "user:level": "4", + "user:parentId": "myQ4q1W6B4y" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.046591, 8.888906], + [-12.0463, 8.8822], + [-12.045699, 8.879899], + [-12.044599, 8.877799], + [-12.0396, 8.8713], + [-12.038889, 8.869833], + [-12.038437, 8.870706], + [-12.037529, 8.87039], + [-12.037324, 8.871127], + [-12.037152, 8.871834], + [-12.036849, 8.872332], + [-12.036678, 8.872174], + [-12.036623, 8.872966], + [-12.03757, 8.874852], + [-12.037471, 8.874881], + [-12.037058, 8.874769], + [-12.036561, 8.874339], + [-12.036427, 8.87475], + [-12.03651, 8.875376], + [-12.036505, 8.875647], + [-12.036613, 8.876318], + [-12.035865, 8.876295], + [-12.034885, 8.876288], + [-12.035129, 8.878444], + [-12.035429, 8.87904], + [-12.034797, 8.879248], + [-12.034088, 8.879399], + [-12.033924, 8.879194], + [-12.033302, 8.879237], + [-12.033395, 8.879516], + [-12.033678, 8.880169], + [-12.033968, 8.880876], + [-12.034247, 8.881354], + [-12.032827, 8.881729], + [-12.032839, 8.882415], + [-12.033063, 8.883025], + [-12.033062, 8.883027], + [-12.031861, 8.883202], + [-12.031079, 8.882817], + [-12.030329, 8.883207], + [-12.030809, 8.883541], + [-12.031525, 8.884726], + [-12.03166, 8.884925], + [-12.031397, 8.885144], + [-12.03102, 8.885109], + [-12.031135, 8.885379], + [-12.030903, 8.885523], + [-12.030086, 8.885703], + [-12.030069, 8.886041], + [-12.029931, 8.886059], + [-12.029889, 8.885772], + [-12.028954, 8.885596], + [-12.027968, 8.885904], + [-12.027603, 8.886603], + [-12.027432, 8.886566], + [-12.027195, 8.88603], + [-12.026646, 8.886033], + [-12.02644, 8.886191], + [-12.026253, 8.886726], + [-12.026281, 8.887143], + [-12.02628, 8.887143], + [-12.02611, 8.887036], + [-12.026422, 8.887793], + [-12.027001, 8.887401], + [-12.028778, 8.88736], + [-12.030377, 8.888608], + [-12.030792, 8.888163], + [-12.031089, 8.88853], + [-12.031256, 8.888661], + [-12.031471, 8.88882], + [-12.032396, 8.889235], + [-12.033071, 8.889283], + [-12.033354, 8.889262], + [-12.033929, 8.889138], + [-12.03466, 8.888894], + [-12.035338, 8.888664], + [-12.036026, 8.888303], + [-12.036606, 8.887932], + [-12.036955, 8.888387], + [-12.037337, 8.888881], + [-12.039409, 8.88776], + [-12.039719, 8.887781], + [-12.039984, 8.888312], + [-12.04041, 8.888431], + [-12.04038, 8.889575], + [-12.04071, 8.890087], + [-12.041327, 8.890417], + [-12.042193, 8.889777], + [-12.043201, 8.890157], + [-12.042831, 8.890837], + [-12.041714, 8.891889], + [-12.042982, 8.892466], + [-12.043556, 8.892721], + [-12.043337, 8.893178], + [-12.044766, 8.894307], + [-12.044799, 8.89434], + [-12.044943, 8.894857], + [-12.044805, 8.895335], + [-12.044842, 8.895545], + [-12.045351, 8.895494], + [-12.045586, 8.896165], + [-12.045483, 8.896876], + [-12.045264, 8.897004], + [-12.045476, 8.89714], + [-12.045228, 8.897424], + [-12.045192, 8.898236], + [-12.044562, 8.899368], + [-12.044357, 8.899455], + [-12.044295, 8.899815], + [-12.043981, 8.900051], + [-12.044369, 8.900179], + [-12.044511, 8.899946], + [-12.044711, 8.900269], + [-12.044813, 8.899791], + [-12.044537, 8.899548], + [-12.045031, 8.899206], + [-12.045286, 8.89821], + [-12.045214, 8.898043], + [-12.045749, 8.896594], + [-12.04635, 8.896074], + [-12.046298, 8.895853], + [-12.045941, 8.895791], + [-12.045811, 8.895459], + [-12.045914, 8.895047], + [-12.046099, 8.894646], + [-12.046135, 8.894573], + [-12.046263, 8.894654], + [-12.04648, 8.894806], + [-12.046599, 8.8891], + [-12.046591, 8.888906] + ] + ], + "type": "Polygon" + }, + "id": 282, + "properties": { + "cc:admin:id": ["83"], + "cc:oBld:total": 3652, + "cc:pop:fifteen-to-twenty-four": 2727.063138237814, + "cc:pop:grid3-total": 38126.433943898795, + "cc:pop:kontur-total": 9870.011442674446, + "cc:pop:men": 7116.939907695677, + "cc:pop:sixty-plus": 941.6057496838417, + "cc:pop:total": 14737.044987661293, + "cc:pop:under-five": 2364.112433594603, + "cc:pop:women": 7620.105079965614, + "cc:pop:women-fiften-to-forty-nine": 3701.4421870849237, + "cc:pop:wp-total": 21381.393722534503, + "cc:pop:wp-total-UN": 24783.75599929462, + "cc:id": "282", + "cc:Name": "Loreto Clinic", + "cc:site": [-12.0437, 8.8868], + "user:parentName": "Bombali Sebora", + "user:code": "OU_193213", + "user:orgUnitId": "cgqkFdShPzg", + "user:level": "4", + "user:parentId": "KKkLOTpMXGV" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.021249, 8.174583], + [-11.017082, 8.171249], + [-11.01625, 8.168749], + [-11.016249, 8.163383], + [-11.0158, 8.163336], + [-11.015047, 8.16375], + [-11.008633, 8.16375], + [-11.004727, 8.170515], + [-10.999632, 8.170515], + [-10.997083, 8.165416], + [-10.997916, 8.159584], + [-10.99125, 8.155417], + [-10.989163, 8.151662], + [-10.989164, 8.151661], + [-10.994295, 8.15166], + [-10.998201, 8.144895], + [-10.997628, 8.143903], + [-10.996249, 8.143749], + [-10.994583, 8.137917], + [-10.996249, 8.136249], + [-10.996249, 8.125417], + [-10.992917, 8.125416], + [-10.991249, 8.12375], + [-10.988749, 8.12375], + [-10.981782, 8.127234], + [-10.981999, 8.1394], + [-10.9818, 8.142499], + [-10.9813, 8.144999], + [-10.979899, 8.1477], + [-10.9774, 8.150499], + [-10.974599, 8.152399], + [-10.971099, 8.1533], + [-10.9646, 8.1533], + [-10.9598, 8.1524], + [-10.955399, 8.150099], + [-10.948599, 8.1472], + [-10.946399, 8.1474], + [-10.9402, 8.150299], + [-10.9379, 8.1531], + [-10.9377, 8.156299], + [-10.9397, 8.159299], + [-10.9461, 8.1627], + [-10.9507, 8.1664], + [-10.953299, 8.169099], + [-10.954899, 8.171299], + [-10.955699, 8.173399], + [-10.955999, 8.175599], + [-10.9554, 8.178999], + [-10.951599, 8.1865], + [-10.950199, 8.1887], + [-10.946399, 8.1934], + [-10.942, 8.201899], + [-10.940199, 8.2059], + [-10.937999, 8.2087], + [-10.9348, 8.211899], + [-10.9314, 8.214899], + [-10.927799, 8.2176], + [-10.926699, 8.2196], + [-10.9254, 8.223599], + [-10.923808, 8.227083], + [-10.9218, 8.230599], + [-10.9273, 8.2343], + [-10.931999, 8.239499], + [-10.935699, 8.242699], + [-10.946799, 8.248999], + [-10.9495, 8.2516], + [-10.952699, 8.257699], + [-10.953999, 8.262199], + [-10.9547, 8.2659], + [-10.955499, 8.273699], + [-10.956599, 8.277399], + [-10.9587, 8.281], + [-10.9638, 8.2876], + [-10.966699, 8.292699], + [-10.968099, 8.295999], + [-10.968999, 8.3003], + [-10.9686, 8.304799], + [-10.967888, 8.308066], + [-10.973354, 8.308066], + [-10.97726, 8.301301], + [-10.985072, 8.3013], + [-10.988979, 8.294535], + [-10.99324, 8.294534], + [-10.993749, 8.287917], + [-10.992083, 8.285416], + [-10.999858, 8.281529], + [-11.000402, 8.281523], + [-11.001215, 8.280983], + [-11.002218, 8.280765], + [-11.003266, 8.28074], + [-11.004204, 8.280912], + [-11.00499, 8.281088], + [-11.005729, 8.280853], + [-11.006652, 8.280853], + [-11.007157, 8.280261], + [-11.007246, 8.279612], + [-11.008224, 8.277525], + [-11.008255, 8.275315], + [-11.008471, 8.273747], + [-11.008375, 8.272582], + [-11.00807, 8.271977], + [-11.006266, 8.270629], + [-11.005219, 8.268525], + [-11.00507, 8.266868], + [-11.004626, 8.265146], + [-11.003981, 8.263722], + [-11.003646, 8.26237], + [-11.006249, 8.260416], + [-11.00625, 8.254584], + [-11.007916, 8.25125], + [-11.004583, 8.251249], + [-11.004583, 8.244584], + [-11.007225, 8.244584], + [-11.007774, 8.246575], + [-11.008408, 8.246772], + [-11.008449, 8.246715], + [-11.00761, 8.243359], + [-11.007935, 8.24301], + [-11.00837, 8.242199], + [-11.00813, 8.241795], + [-11.007204, 8.241818], + [-11.006683, 8.24125], + [-11.007083, 8.241249], + [-11.008749, 8.240416], + [-11.010416, 8.23375], + [-11.017916, 8.233749], + [-11.018749, 8.230417], + [-11.016249, 8.227084], + [-11.009743, 8.223468], + [-11.009861, 8.223082], + [-11.010492, 8.222784], + [-11.011701, 8.222854], + [-11.011942, 8.222745], + [-11.012723, 8.221621], + [-11.012998, 8.220422], + [-11.015962, 8.220384], + [-11.017293, 8.218977], + [-11.017409, 8.218395], + [-11.016717, 8.218508], + [-11.014827, 8.217137], + [-11.013635, 8.215074], + [-11.012583, 8.214388], + [-11.010783, 8.212555], + [-11.010253, 8.212487], + [-11.009932, 8.212249], + [-11.009776, 8.211692], + [-11.01001, 8.211183], + [-11.009065, 8.209214], + [-11.008937, 8.208308], + [-11.008591, 8.20754], + [-11.010416, 8.207084], + [-11.01125, 8.208749], + [-11.014582, 8.204584], + [-11.010417, 8.204583], + [-11.007917, 8.202917], + [-11.007916, 8.19625], + [-11.006249, 8.196249], + [-11.002083, 8.190416], + [-11.002916, 8.184584], + [-11.004582, 8.179584], + [-11.007082, 8.177084], + [-11.012917, 8.175416], + [-11.021249, 8.174583] + ] + ], + "type": "Polygon" + }, + "id": 283, + "properties": { + "cc:admin:id": ["75"], + "cc:oBld:total": 1549, + "cc:pop:fifteen-to-twenty-four": 3048.235341183665, + "cc:pop:grid3-total": 9074.012806882663, + "cc:pop:kontur-total": 16116.883952251968, + "cc:pop:men": 8861.870643773598, + "cc:pop:sixty-plus": 926.6156050734678, + "cc:pop:total": 15820.448305021377, + "cc:pop:under-five": 2446.608058757685, + "cc:pop:women": 6958.577661247775, + "cc:pop:women-fiften-to-forty-nine": 3468.4146401241383, + "cc:pop:wp-total": 13242.501694335997, + "cc:pop:wp-total-UN": 15366.112942813586, + "cc:id": "283", + "cc:Name": "Lowoma CHC", + "cc:site": [-10.9907, 8.2187], + "user:parentName": "Lower Bambara", + "user:code": "OU_222656", + "user:orgUnitId": "IlMQTFvcq9r", + "user:level": "4", + "user:parentId": "hdEuw2ugkVF" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.278727, 8.449305], + [-13.278205, 8.44928], + [-13.278013, 8.449168], + [-13.277366, 8.448397], + [-13.276891, 8.44793], + [-13.275651, 8.448583], + [-13.275403, 8.448037], + [-13.274697, 8.447512], + [-13.274423, 8.447577], + [-13.273881, 8.448433], + [-13.273339, 8.448105], + [-13.272941, 8.448067], + [-13.272973, 8.447422], + [-13.273047, 8.446832], + [-13.273085, 8.446433], + [-13.273083, 8.446308], + [-13.273087, 8.446072], + [-13.272967, 8.445394], + [-13.271278, 8.445558], + [-13.270792, 8.443435], + [-13.270272, 8.443501], + [-13.270126, 8.443199], + [-13.26917, 8.443271], + [-13.268963, 8.44381], + [-13.268572, 8.443537], + [-13.26777, 8.442841], + [-13.267399, 8.442558], + [-13.267283, 8.441848], + [-13.267544, 8.44164], + [-13.267889, 8.441299], + [-13.268621, 8.440948], + [-13.268135, 8.440423], + [-13.267415, 8.440627], + [-13.266942, 8.440668], + [-13.266876, 8.440496], + [-13.266619, 8.439915], + [-13.265756, 8.440401], + [-13.264123, 8.438573], + [-13.264123, 8.438571], + [-13.26437, 8.43854], + [-13.264975, 8.437964], + [-13.265806, 8.437814], + [-13.267094, 8.437887], + [-13.267246, 8.436878], + [-13.265887, 8.436499], + [-13.265669, 8.436405], + [-13.265499, 8.43638], + [-13.26506, 8.4362], + [-13.263987, 8.436025], + [-13.262814, 8.435069], + [-13.26277, 8.434117], + [-13.262562, 8.433878], + [-13.261483, 8.433468], + [-13.261371, 8.433229], + [-13.261499, 8.432832], + [-13.260422, 8.432742], + [-13.25996, 8.432963], + [-13.259652, 8.432807], + [-13.259583, 8.432801], + [-13.259582, 8.432084], + [-13.257083, 8.432084], + [-13.257386, 8.433295], + [-13.256391, 8.43502], + [-13.255032, 8.435021], + [-13.255258, 8.435301], + [-13.255778, 8.436904], + [-13.256203, 8.438305], + [-13.257026, 8.4389], + [-13.257271, 8.439649], + [-13.257764, 8.440269], + [-13.257976, 8.440849], + [-13.257941, 8.441361], + [-13.257896, 8.441437], + [-13.257813, 8.441564], + [-13.257928, 8.441738], + [-13.257565, 8.442039], + [-13.257488, 8.442423], + [-13.256981, 8.442748], + [-13.2565, 8.441573], + [-13.256294, 8.441438], + [-13.255459, 8.441068], + [-13.254603, 8.44233], + [-13.255407, 8.442577], + [-13.25549, 8.443264], + [-13.255883, 8.443761], + [-13.255317, 8.443953], + [-13.25527, 8.444604], + [-13.255446, 8.444766], + [-13.25609, 8.444633], + [-13.256468, 8.44498], + [-13.257254, 8.445153], + [-13.258471, 8.445436], + [-13.25864, 8.445644], + [-13.258479, 8.446612], + [-13.258484, 8.446619], + [-13.258439, 8.446854], + [-13.258722, 8.44713], + [-13.258782, 8.447778], + [-13.258446, 8.447981], + [-13.257936, 8.448272], + [-13.257538, 8.447549], + [-13.256734, 8.447972], + [-13.257153, 8.448754], + [-13.257023, 8.450553], + [-13.256816, 8.450538], + [-13.256589, 8.451752], + [-13.256534, 8.452362], + [-13.256151, 8.45229], + [-13.25578, 8.452431], + [-13.255155, 8.452527], + [-13.254778, 8.452316], + [-13.25461, 8.453085], + [-13.254676, 8.453171], + [-13.25497, 8.453232], + [-13.25492, 8.454699], + [-13.256023, 8.455152], + [-13.256569, 8.45558], + [-13.256957, 8.455556], + [-13.25711, 8.455515], + [-13.257654, 8.456232], + [-13.258305, 8.455909], + [-13.258585, 8.456366], + [-13.259117, 8.456241], + [-13.259397, 8.45657], + [-13.259881, 8.457918], + [-13.260064, 8.458081], + [-13.260355, 8.457362], + [-13.260362, 8.457337], + [-13.260538, 8.457333], + [-13.261185, 8.456911], + [-13.261417, 8.45721], + [-13.261623, 8.457629], + [-13.262399, 8.458184], + [-13.263082, 8.458662], + [-13.263856, 8.459101], + [-13.263542, 8.459471], + [-13.263347, 8.459606], + [-13.263529, 8.460046], + [-13.26316, 8.460452], + [-13.263626, 8.460895], + [-13.263861, 8.460655], + [-13.264201, 8.460729], + [-13.264883, 8.460008], + [-13.265137, 8.460262], + [-13.265215, 8.460455], + [-13.265385, 8.460923], + [-13.265464, 8.461054], + [-13.265524, 8.461366], + [-13.265979, 8.461551], + [-13.267364, 8.461853], + [-13.267464, 8.461661], + [-13.268281, 8.461976], + [-13.267912, 8.462892], + [-13.268375, 8.463121], + [-13.269307, 8.461102], + [-13.269385, 8.461082], + [-13.269458, 8.461067], + [-13.269538, 8.460721], + [-13.269635, 8.460463], + [-13.269853, 8.459995], + [-13.270275, 8.459306], + [-13.270354, 8.459305], + [-13.270626, 8.459618], + [-13.27146, 8.461033], + [-13.271536, 8.460995], + [-13.27168, 8.461222], + [-13.272544, 8.460907], + [-13.272799, 8.46178], + [-13.273395, 8.461578], + [-13.273575, 8.461931], + [-13.273872, 8.461766], + [-13.274342, 8.460723], + [-13.274544, 8.460056], + [-13.275228, 8.459262], + [-13.276508, 8.460237], + [-13.278137, 8.460588], + [-13.278326, 8.459938], + [-13.278311, 8.459525], + [-13.278291, 8.458349], + [-13.278097, 8.457273], + [-13.277978, 8.456794], + [-13.277682, 8.455702], + [-13.277239, 8.455481], + [-13.276957, 8.455265], + [-13.276977, 8.455234], + [-13.276564, 8.454847], + [-13.277455, 8.454282], + [-13.277956, 8.454375], + [-13.278158, 8.454835], + [-13.278319, 8.454865], + [-13.278727, 8.449305] + ] + ], + "type": "Polygon" + }, + "id": 284, + "properties": { + "cc:admin:id": ["26"], + "cc:oBld:total": 6335, + "cc:pop:fifteen-to-twenty-four": 23985.787408272172, + "cc:pop:grid3-total": 43484.50616337683, + "cc:pop:kontur-total": 90598.12464442215, + "cc:pop:men": 52282.32674542119, + "cc:pop:sixty-plus": 8148.927390587522, + "cc:pop:total": 104488.08448532474, + "cc:pop:under-five": 12062.479720266963, + "cc:pop:women": 52205.75773990355, + "cc:pop:women-fiften-to-forty-nine": 27986.230432980272, + "cc:pop:wp-total": 87590.05378764348, + "cc:pop:wp-total-UN": 101546.94268277654, + "cc:id": "284", + "cc:Name": "Lumley Hospital", + "cc:site": [-13.2589, 8.4514], + "user:parentName": "Freetown", + "user:code": "OU_278358", + "user:orgUnitId": "PqlNXedmh7u", + "user:level": "4", + "user:parentId": "C9uduqDZr9d" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.21434, 8.62843], + [-13.214269, 8.628264], + [-13.20914, 8.626464], + [-13.208694, 8.626615], + [-13.208047, 8.627374], + [-13.207341, 8.626717], + [-13.206735, 8.626135], + [-13.207561, 8.625286], + [-13.207781, 8.625028], + [-13.209049, 8.623788], + [-13.209525, 8.623607], + [-13.210288, 8.623609], + [-13.211794, 8.623648], + [-13.212195, 8.623523], + [-13.213626, 8.622821], + [-13.213846, 8.622747], + [-13.21372, 8.622567], + [-13.212116, 8.620817], + [-13.211959, 8.620896], + [-13.212926, 8.621927], + [-13.212991, 8.622244], + [-13.212845, 8.622469], + [-13.212441, 8.622607], + [-13.211195, 8.622238], + [-13.211045, 8.621959], + [-13.211046, 8.621958], + [-13.211831, 8.621912], + [-13.21167, 8.621365], + [-13.211462, 8.621144], + [-13.211249, 8.621249], + [-13.208749, 8.619584], + [-13.202917, 8.61875], + [-13.200417, 8.619583], + [-13.198749, 8.617917], + [-13.195417, 8.618749], + [-13.194583, 8.61875], + [-13.194582, 8.624583], + [-13.192083, 8.625417], + [-13.189583, 8.627916], + [-13.190416, 8.630416], + [-13.18875, 8.630417], + [-13.187675, 8.632027], + [-13.186071, 8.630383], + [-13.184584, 8.629205], + [-13.184351, 8.629841], + [-13.183799, 8.629915], + [-13.182687, 8.62937], + [-13.181335, 8.629638], + [-13.179984, 8.629699], + [-13.177546, 8.630894], + [-13.177489, 8.630993], + [-13.173749, 8.62875], + [-13.170538, 8.62875], + [-13.171425, 8.629377], + [-13.171471, 8.629692], + [-13.171381, 8.62985], + [-13.170718, 8.629761], + [-13.168621, 8.630535], + [-13.168222, 8.631034], + [-13.168187, 8.631063], + [-13.168134, 8.631076], + [-13.168019, 8.631061], + [-13.167923, 8.631064], + [-13.167889, 8.631088], + [-13.167867, 8.631154], + [-13.167841, 8.631261], + [-13.16777, 8.631372], + [-13.167664, 8.631514], + [-13.167574, 8.631716], + [-13.1675, 8.631901], + [-13.167423, 8.632083], + [-13.16738, 8.63214], + [-13.167318, 8.632201], + [-13.167278, 8.632227], + [-13.167215, 8.632241], + [-13.167026, 8.632297], + [-13.166955, 8.632296], + [-13.166858, 8.632272], + [-13.166763, 8.632258], + [-13.166648, 8.632259], + [-13.166503, 8.632277], + [-13.166363, 8.632287], + [-13.16621, 8.632274], + [-13.166111, 8.632247], + [-13.166015, 8.632203], + [-13.165904, 8.632146], + [-13.165805, 8.632068], + [-13.165745, 8.631994], + [-13.165687, 8.63192], + [-13.165632, 8.631893], + [-13.165542, 8.631879], + [-13.165471, 8.631889], + [-13.16544, 8.631916], + [-13.165372, 8.632027], + [-13.165317, 8.632092], + [-13.165278, 8.63215], + [-13.16525, 8.632179], + [-13.165187, 8.632204], + [-13.165103, 8.632209], + [-13.165023, 8.6322], + [-13.164903, 8.632178], + [-13.164862, 8.632156], + [-13.16479, 8.632097], + [-13.164749, 8.632039], + [-13.164703, 8.63196], + [-13.164678, 8.631882], + [-13.16465, 8.631772], + [-13.164626, 8.631672], + [-13.1646, 8.631608], + [-13.164511, 8.631484], + [-13.164367, 8.631347], + [-13.164198, 8.631228], + [-13.164117, 8.631198], + [-13.16399, 8.631188], + [-13.163885, 8.631208], + [-13.163792, 8.631258], + [-13.163644, 8.631358], + [-13.163514, 8.631441], + [-13.163067, 8.63169], + [-13.162876, 8.631856], + [-13.162735, 8.63196], + [-13.162675, 8.632032], + [-13.162662, 8.632076], + [-13.162672, 8.632158], + [-13.162712, 8.632295], + [-13.162803, 8.632489], + [-13.162893, 8.632657], + [-13.163009, 8.632919], + [-13.163067, 8.6331], + [-13.163088, 8.633206], + [-13.163097, 8.633302], + [-13.163077, 8.633436], + [-13.163037, 8.633527], + [-13.162948, 8.633653], + [-13.162844, 8.633762], + [-13.162688, 8.633882], + [-13.162581, 8.633909], + [-13.162432, 8.633941], + [-13.162293, 8.633977], + [-13.162074, 8.633978], + [-13.161887, 8.633989], + [-13.161625, 8.634048], + [-13.161453, 8.634079], + [-13.161222, 8.634079], + [-13.161049, 8.634062], + [-13.160854, 8.633994], + [-13.160702, 8.633901], + [-13.16058, 8.633774], + [-13.160517, 8.633668], + [-13.160444, 8.63351], + [-13.160409, 8.633425], + [-13.160373, 8.633251], + [-13.16032, 8.633086], + [-13.160245, 8.632927], + [-13.160114, 8.632857], + [-13.159971, 8.632755], + [-13.159869, 8.632713], + [-13.159819, 8.632713], + [-13.159772, 8.632768], + [-13.159758, 8.632833], + [-13.159727, 8.633], + [-13.159682, 8.633195], + [-13.159653, 8.633433], + [-13.159612, 8.633661], + [-13.159597, 8.633896], + [-13.159619, 8.634137], + [-13.159605, 8.634234], + [-13.159549, 8.634342], + [-13.159486, 8.634396], + [-13.159388, 8.634461], + [-13.159261, 8.634532], + [-13.159108, 8.634601], + [-13.158853, 8.634728], + [-13.158582, 8.634849], + [-13.158312, 8.634947], + [-13.158115, 8.634973], + [-13.157918, 8.634989], + [-13.157695, 8.635], + [-13.157437, 8.634994], + [-13.15715, 8.634981], + [-13.156656, 8.6349], + [-13.156457, 8.634874], + [-13.156283, 8.634888], + [-13.156031, 8.634861], + [-13.155799, 8.634801], + [-13.155613, 8.634707], + [-13.155485, 8.634645], + [-13.155426, 8.634577], + [-13.155383, 8.634502], + [-13.155335, 8.634337], + [-13.155317, 8.634215], + [-13.155315, 8.634015], + [-13.155334, 8.633824], + [-13.155392, 8.633674], + [-13.155473, 8.633515], + [-13.155552, 8.633232], + [-13.155569, 8.633122], + [-13.155597, 8.632985], + [-13.1556, 8.632841], + [-13.155567, 8.632625], + [-13.155513, 8.632403], + [-13.155459, 8.632274], + [-13.155369, 8.63216], + [-13.155282, 8.632105], + [-13.155155, 8.632092], + [-13.15505, 8.63213], + [-13.154878, 8.63219], + [-13.15476, 8.632295], + [-13.154521, 8.632464], + [-13.154348, 8.63259], + [-13.154091, 8.632908], + [-13.153862, 8.633226], + [-13.153662, 8.633637], + [-13.153603, 8.633744], + [-13.153331, 8.633914], + [-13.15311, 8.634027], + [-13.152953, 8.634098], + [-13.152881, 8.63424], + [-13.152901, 8.634508], + [-13.152996, 8.634707], + [-13.153167, 8.635251], + [-13.153224, 8.635692], + [-13.153017, 8.637383], + [-13.15303, 8.638728], + [-13.152973, 8.639706], + [-13.152916, 8.640167], + [-13.152816, 8.640449], + [-13.152684, 8.6406], + [-13.152666, 8.640751], + [-13.155399, 8.642899], + [-13.1563, 8.645099], + [-13.157099, 8.645999], + [-13.1579, 8.6454], + [-13.161499, 8.6454], + [-13.164299, 8.6465], + [-13.164299, 8.647399], + [-13.1629, 8.647399], + [-13.162099, 8.6465], + [-13.1599, 8.6465], + [-13.1568, 8.6474], + [-13.1568, 8.650399], + [-13.1574, 8.6504], + [-13.159299, 8.653499], + [-13.160098, 8.654299], + [-13.1574, 8.6546], + [-13.1565, 8.656], + [-13.156299, 8.657599], + [-13.1557, 8.6576], + [-13.154899, 8.659299], + [-13.1529, 8.661199], + [-13.1537, 8.6607], + [-13.156199, 8.6641], + [-13.156699, 8.6674], + [-13.156476, 8.671124], + [-13.159168, 8.673418], + [-13.160162, 8.674159], + [-13.161099, 8.674624], + [-13.163333, 8.676954], + [-13.163136, 8.677346], + [-13.165416, 8.677917], + [-13.164635, 8.684947], + [-13.171249, 8.680978], + [-13.17125, 8.675529], + [-13.171611, 8.675502], + [-13.172045, 8.675446], + [-13.172539, 8.675374], + [-13.173936, 8.675068], + [-13.175864, 8.674632], + [-13.177265, 8.673883], + [-13.178223, 8.672916], + [-13.178923, 8.67161], + [-13.18064, 8.669017], + [-13.181404, 8.666122], + [-13.18206, 8.664618], + [-13.182307, 8.664806], + [-13.182318, 8.665173], + [-13.183031, 8.665299], + [-13.18398, 8.665985], + [-13.184137, 8.66586], + [-13.184941, 8.666176], + [-13.187191, 8.661486], + [-13.189582, 8.662083], + [-13.190416, 8.661249], + [-13.192597, 8.655432], + [-13.191943, 8.655166], + [-13.190008, 8.655607], + [-13.190006, 8.655606], + [-13.192223, 8.650945], + [-13.193328, 8.647799], + [-13.198504, 8.649687], + [-13.202232, 8.65157], + [-13.205294, 8.65278], + [-13.204583, 8.647084], + [-13.211095, 8.650339], + [-13.211538, 8.649855], + [-13.211691, 8.649393], + [-13.211727, 8.649319], + [-13.211561, 8.649281], + [-13.211284, 8.647404], + [-13.211334, 8.645148], + [-13.210933, 8.645622], + [-13.210837, 8.645607], + [-13.210684, 8.645536], + [-13.210681, 8.645517], + [-13.210471, 8.645056], + [-13.210464, 8.645043], + [-13.210538, 8.644962], + [-13.21077, 8.644695], + [-13.210909, 8.644011], + [-13.211675, 8.644264], + [-13.211863, 8.643869], + [-13.212094, 8.643187], + [-13.212418, 8.642507], + [-13.212868, 8.641656], + [-13.212875, 8.641163], + [-13.212245, 8.641144], + [-13.212, 8.641229], + [-13.211569, 8.640353], + [-13.21122, 8.639926], + [-13.211627, 8.639511], + [-13.211917, 8.639332], + [-13.211905, 8.639238], + [-13.212099, 8.639176], + [-13.212016, 8.638546], + [-13.212002, 8.638292], + [-13.212725, 8.63822], + [-13.212599, 8.637516], + [-13.212521, 8.637294], + [-13.212585, 8.636852], + [-13.212071, 8.636947], + [-13.212044, 8.636904], + [-13.211934, 8.63592], + [-13.212227, 8.635827], + [-13.212176, 8.63548], + [-13.211253, 8.635251], + [-13.211446, 8.634066], + [-13.211975, 8.634026], + [-13.211859, 8.633201], + [-13.211477, 8.633003], + [-13.211348, 8.630829], + [-13.212765, 8.630539], + [-13.212947, 8.630322], + [-13.213122, 8.630478], + [-13.213537, 8.630371], + [-13.213498, 8.62958], + [-13.21434, 8.62843] + ] + ], + "type": "Polygon" + }, + "id": 285, + "properties": { + "cc:admin:id": ["44"], + "cc:oBld:total": 1566, + "cc:pop:fifteen-to-twenty-four": 2755.0917179040102, + "cc:pop:grid3-total": 11962.108521698872, + "cc:pop:kontur-total": 16262.583507124793, + "cc:pop:men": 7336.27477407305, + "cc:pop:sixty-plus": 929.5865446442045, + "cc:pop:total": 15288.499276117116, + "cc:pop:under-five": 2483.8137635959406, + "cc:pop:women": 7952.224502044067, + "cc:pop:women-fiften-to-forty-nine": 3854.4047874321345, + "cc:pop:wp-total": 11895.319106438812, + "cc:pop:wp-total-UN": 13781.32112082547, + "cc:id": "285", + "cc:Name": "Lungi Govt. Hospital, Port Loko", + "cc:site": [-13.2042, 8.628], + "user:parentName": "Kaffu Bullom", + "user:code": "OU_255010", + "user:orgUnitId": "gsypzntLahf", + "user:level": "4", + "user:parentId": "vn9KJsLyP5f" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.186512, 8.562169], + [-13.185676, 8.561809], + [-13.185516, 8.561868], + [-13.185637, 8.562472], + [-13.185404, 8.562702], + [-13.185017, 8.562772], + [-13.184285, 8.561946], + [-13.183559, 8.562295], + [-13.183372, 8.562147], + [-13.183426, 8.561716], + [-13.183205, 8.561403], + [-13.182773, 8.561545], + [-13.182452, 8.56142], + [-13.182452, 8.560991], + [-13.18295, 8.560406], + [-13.182391, 8.559941], + [-13.182347, 8.559743], + [-13.182585, 8.558888], + [-13.182595, 8.557946], + [-13.181726, 8.558], + [-13.181311, 8.55784], + [-13.181763, 8.557713], + [-13.18214, 8.5576], + [-13.182248, 8.557546], + [-13.182594, 8.557059], + [-13.182614, 8.557003], + [-13.182773, 8.556426], + [-13.182868, 8.556123], + [-13.18346, 8.554723], + [-13.183586, 8.554508], + [-13.183713, 8.55475], + [-13.183977, 8.554794], + [-13.184063, 8.555173], + [-13.183499, 8.556132], + [-13.183632, 8.556065], + [-13.184175, 8.555785], + [-13.184583, 8.55375], + [-13.186192, 8.552676], + [-13.185099, 8.5504], + [-13.183999, 8.549899], + [-13.182599, 8.5471], + [-13.181499, 8.546499], + [-13.178499, 8.5424], + [-13.1774, 8.542399], + [-13.1765, 8.5415], + [-13.176499, 8.5399], + [-13.1751, 8.5382], + [-13.1732, 8.5371], + [-13.173199, 8.536], + [-13.1724, 8.534599], + [-13.172399, 8.5326], + [-13.1713, 8.530999], + [-13.170399, 8.5271], + [-13.169299, 8.5263], + [-13.167399, 8.5265], + [-13.1632, 8.5265], + [-13.162599, 8.5257], + [-13.1599, 8.525699], + [-13.1568, 8.5224], + [-13.156, 8.522099], + [-13.155399, 8.5199], + [-13.1529, 8.519599], + [-13.150999, 8.5179], + [-13.149599, 8.517899], + [-13.148199, 8.5162], + [-13.1468, 8.5162], + [-13.147099, 8.5207], + [-13.1454, 8.522099], + [-13.1443, 8.5221], + [-13.143999, 8.5229], + [-13.1424, 8.524299], + [-13.141, 8.5243], + [-13.140099, 8.525699], + [-13.139, 8.526], + [-13.1374, 8.528999], + [-13.136499, 8.5296], + [-13.1351, 8.5337], + [-13.1351, 8.539899], + [-13.1349, 8.541799], + [-13.13486, 8.5418], + [-13.134702, 8.542202], + [-13.137916, 8.545416], + [-13.139526, 8.547563], + [-13.139783, 8.547068], + [-13.140358, 8.545985], + [-13.140785, 8.545415], + [-13.141287, 8.545006], + [-13.14166, 8.544834], + [-13.142107, 8.544816], + [-13.142541, 8.544873], + [-13.143383, 8.545375], + [-13.144854, 8.546495], + [-13.145652, 8.546829], + [-13.146874, 8.547278], + [-13.14822, 8.547748], + [-13.148966, 8.548071], + [-13.149882, 8.548202], + [-13.150326, 8.548252], + [-13.150923, 8.548242], + [-13.151434, 8.548105], + [-13.151861, 8.54811], + [-13.152463, 8.548246], + [-13.152718, 8.548307], + [-13.152874, 8.548417], + [-13.153062, 8.548635], + [-13.153195, 8.548844], + [-13.15325, 8.549228], + [-13.153217, 8.549474], + [-13.153055, 8.549762], + [-13.152619, 8.550395], + [-13.150968, 8.551907], + [-13.150448, 8.552509], + [-13.150138, 8.553052], + [-13.149625, 8.555354], + [-13.149528, 8.555922], + [-13.149368, 8.556376], + [-13.148442, 8.557741], + [-13.148293, 8.558179], + [-13.148325, 8.559253], + [-13.14837, 8.55973], + [-13.148546, 8.559928], + [-13.149583, 8.559584], + [-13.152727, 8.559583], + [-13.152771, 8.559526], + [-13.152815, 8.55899], + [-13.152974, 8.558808], + [-13.156666, 8.5625], + [-13.156665, 8.562502], + [-13.156472, 8.562528], + [-13.157917, 8.565417], + [-13.157916, 8.566282], + [-13.157864, 8.56631], + [-13.157643, 8.566901], + [-13.15742, 8.567022], + [-13.157083, 8.566635], + [-13.157083, 8.568531], + [-13.158586, 8.569021], + [-13.160579, 8.569603], + [-13.160821, 8.569747], + [-13.161191, 8.569683], + [-13.161447, 8.569694], + [-13.161425, 8.570024], + [-13.161482, 8.571586], + [-13.162944, 8.574606], + [-13.164521, 8.574607], + [-13.164566, 8.574566], + [-13.165417, 8.575416], + [-13.168749, 8.574584], + [-13.169582, 8.574584], + [-13.172082, 8.577083], + [-13.172083, 8.578749], + [-13.176249, 8.579583], + [-13.172917, 8.57125], + [-13.179582, 8.569583], + [-13.179583, 8.56875], + [-13.180416, 8.567916], + [-13.180977, 8.566235], + [-13.180979, 8.566235], + [-13.181221, 8.566471], + [-13.181051, 8.566936], + [-13.181443, 8.567078], + [-13.181814, 8.56647], + [-13.181732, 8.565648], + [-13.182546, 8.564964], + [-13.183027, 8.564772], + [-13.183926, 8.563747], + [-13.184562, 8.563583], + [-13.184895, 8.563272], + [-13.185316, 8.563228], + [-13.185355, 8.563588], + [-13.185592, 8.563577], + [-13.185698, 8.563391], + [-13.185499, 8.562921], + [-13.185792, 8.56263], + [-13.185815, 8.562329], + [-13.186512, 8.562169] + ] + ], + "type": "Polygon" + }, + "id": 286, + "properties": { + "cc:admin:id": ["44"], + "cc:oBld:total": 1810, + "cc:pop:fifteen-to-twenty-four": 2557.0010821956002, + "cc:pop:grid3-total": 12971.336579811199, + "cc:pop:kontur-total": 14515.936029942568, + "cc:pop:men": 6786.724279038356, + "cc:pop:sixty-plus": 856.5220612194306, + "cc:pop:total": 14146.876736416256, + "cc:pop:under-five": 2293.986864540743, + "cc:pop:women": 7360.152457377896, + "cc:pop:women-fiften-to-forty-nine": 3554.525324414949, + "cc:pop:wp-total": 10492.89814386821, + "cc:pop:wp-total-UN": 12179.990527826423, + "cc:id": "286", + "cc:Name": "Lungi Town MCHP", + "cc:site": [-13.16, 8.55], + "user:parentName": "Kaffu Bullom", + "user:code": "OU_255008", + "user:orgUnitId": "ntQSuMb7J21", + "user:level": "4", + "user:parentId": "vn9KJsLyP5f" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.61618, 8.686401], + [-12.608678, 8.68765], + [-12.608678, 8.687649], + [-12.610161, 8.686733], + [-12.611676, 8.685004], + [-12.607918, 8.683749], + [-12.610457, 8.681843], + [-12.610141, 8.681056], + [-12.609484, 8.68024], + [-12.609025, 8.679309], + [-12.607874, 8.67809], + [-12.607194, 8.677646], + [-12.606917, 8.677224], + [-12.606936, 8.676861], + [-12.606509, 8.675972], + [-12.606732, 8.675863], + [-12.607103, 8.675684], + [-12.607938, 8.675743], + [-12.608529, 8.67557], + [-12.607916, 8.675416], + [-12.607082, 8.67375], + [-12.602083, 8.673749], + [-12.602083, 8.67125], + [-12.602916, 8.669583], + [-12.599443, 8.668425], + [-12.59954, 8.666869], + [-12.59952, 8.66564], + [-12.599165, 8.663963], + [-12.599748, 8.663827], + [-12.60003, 8.662189], + [-12.600395, 8.66129], + [-12.600364, 8.659731], + [-12.60052, 8.659393], + [-12.598914, 8.660129], + [-12.598915, 8.660248], + [-12.598914, 8.660249], + [-12.592917, 8.65875], + [-12.59267, 8.658259], + [-12.592154, 8.658313], + [-12.590635, 8.658896], + [-12.589279, 8.658553], + [-12.586515, 8.656835], + [-12.58625, 8.656591], + [-12.586249, 8.654824], + [-12.582626, 8.651113], + [-12.580031, 8.649394], + [-12.578657, 8.64876], + [-12.576928, 8.648574], + [-12.575305, 8.649103], + [-12.574653, 8.649843], + [-12.574315, 8.649976], + [-12.573699, 8.651359], + [-12.572566, 8.652285], + [-12.572103, 8.652461], + [-12.570917, 8.652259], + [-12.569249, 8.652461], + [-12.567109, 8.651316], + [-12.56365, 8.650962], + [-12.562117, 8.65002], + [-12.561474, 8.649534], + [-12.560895, 8.648776], + [-12.560574, 8.646344], + [-12.560289, 8.645426], + [-12.560448, 8.644509], + [-12.560216, 8.643654], + [-12.559174, 8.641698], + [-12.558825, 8.640101], + [-12.55871, 8.639344], + [-12.558986, 8.63774], + [-12.558906, 8.636418], + [-12.557765, 8.634884], + [-12.555597, 8.634723], + [-12.554385, 8.634116], + [-12.551184, 8.635297], + [-12.549846, 8.635351], + [-12.547608, 8.636073], + [-12.545959, 8.63609], + [-12.544889, 8.63587], + [-12.544675, 8.635464], + [-12.544906, 8.632811], + [-12.544747, 8.629611], + [-12.544943, 8.628342], + [-12.54553, 8.627486], + [-12.545388, 8.625512], + [-12.544933, 8.623934], + [-12.542938, 8.622062], + [-12.542916, 8.622084], + [-12.541309, 8.622083], + [-12.540519, 8.620822], + [-12.539927, 8.620417], + [-12.539582, 8.620416], + [-12.536778, 8.617612], + [-12.536135, 8.616533], + [-12.535044, 8.61526], + [-12.534611, 8.614935], + [-12.533942, 8.614706], + [-12.531994, 8.614673], + [-12.532916, 8.61375], + [-12.533005, 8.613572], + [-12.531124, 8.613957], + [-12.529055, 8.614935], + [-12.526987, 8.616654], + [-12.526242, 8.61792], + [-12.52569, 8.620249], + [-12.52618, 8.621321], + [-12.527035, 8.62191], + [-12.527705, 8.623559], + [-12.52788, 8.624746], + [-12.52731, 8.625752], + [-12.526714, 8.626245], + [-12.525715, 8.626635], + [-12.524813, 8.626583], + [-12.523884, 8.626255], + [-12.522246, 8.626423], + [-12.52125, 8.627916], + [-12.520021, 8.628326], + [-12.52002, 8.628324], + [-12.520024, 8.62831], + [-12.519996, 8.628153], + [-12.519231, 8.627901], + [-12.517833, 8.62671], + [-12.516836, 8.626269], + [-12.516298, 8.625755], + [-12.51544, 8.625742], + [-12.515671, 8.625933], + [-12.515671, 8.625934], + [-12.513834, 8.626066], + [-12.513647, 8.62624], + [-12.514229, 8.626911], + [-12.51483, 8.626732], + [-12.515516, 8.626899], + [-12.515685, 8.627536], + [-12.515978, 8.62753], + [-12.516165, 8.627832], + [-12.516248, 8.627619], + [-12.516521, 8.627527], + [-12.516592, 8.62772], + [-12.518405, 8.628863], + [-12.518405, 8.628864], + [-12.517279, 8.62924], + [-12.514759, 8.627189], + [-12.51259, 8.627279], + [-12.512156, 8.627984], + [-12.512517, 8.629963], + [-12.51298, 8.630745], + [-12.513729, 8.631569], + [-12.513897, 8.632038], + [-12.514079, 8.632857], + [-12.513945, 8.634089], + [-12.513647, 8.634627], + [-12.51267, 8.635082], + [-12.510463, 8.63544], + [-12.509352, 8.636692], + [-12.508845, 8.636923], + [-12.508821, 8.637083], + [-12.508274, 8.637083], + [-12.508271, 8.636951], + [-12.508985, 8.635674], + [-12.510082, 8.634957], + [-12.508549, 8.634588], + [-12.507341, 8.633785], + [-12.505992, 8.633771], + [-12.505095, 8.633486], + [-12.503636, 8.633634], + [-12.502692, 8.634056], + [-12.49925, 8.637582], + [-12.49925, 8.637581], + [-12.499562, 8.636331], + [-12.497404, 8.638727], + [-12.497402, 8.63886], + [-12.495849, 8.6402], + [-12.495564, 8.640209], + [-12.495391, 8.640901], + [-12.495488, 8.6409], + [-12.495546, 8.640996], + [-12.495545, 8.640998], + [-12.495467, 8.640986], + [-12.494882, 8.640734], + [-12.492523, 8.639309], + [-12.491674, 8.639515], + [-12.491002, 8.640226], + [-12.490565, 8.640387], + [-12.490669, 8.640934], + [-12.490547, 8.64129], + [-12.489503, 8.641546], + [-12.488917, 8.642317], + [-12.486957, 8.643956], + [-12.486112, 8.644896], + [-12.483642, 8.644701], + [-12.483391, 8.644373], + [-12.482807, 8.644222], + [-12.482709, 8.643971], + [-12.482904, 8.64293], + [-12.483525, 8.642572], + [-12.484359, 8.64162], + [-12.486156, 8.640801], + [-12.486482, 8.64111], + [-12.48737, 8.640491], + [-12.487697, 8.640402], + [-12.48765, 8.64034], + [-12.486739, 8.640372], + [-12.486532, 8.640249], + [-12.486361, 8.639628], + [-12.486436, 8.639203], + [-12.486924, 8.639206], + [-12.487082, 8.639128], + [-12.487082, 8.638982], + [-12.486831, 8.639109], + [-12.486247, 8.639004], + [-12.486388, 8.640369], + [-12.48629, 8.640522], + [-12.484564, 8.64115], + [-12.483807, 8.641589], + [-12.482696, 8.642701], + [-12.482448, 8.643708], + [-12.482196, 8.643987], + [-12.480431, 8.644064], + [-12.4799, 8.644376], + [-12.47881, 8.642998], + [-12.478344, 8.642754], + [-12.478599, 8.647699], + [-12.479399, 8.651399], + [-12.481599, 8.656699], + [-12.4829, 8.6618], + [-12.486899, 8.670099], + [-12.4893, 8.6744], + [-12.4907, 8.6776], + [-12.493199, 8.681899], + [-12.494377, 8.684706], + [-12.496313, 8.684208], + [-12.496742, 8.68425], + [-12.496861, 8.684155], + [-12.496904, 8.684306], + [-12.497455, 8.684527], + [-12.500413, 8.684661], + [-12.500646, 8.684547], + [-12.502652, 8.686052], + [-12.502833, 8.686683], + [-12.504367, 8.6882], + [-12.505364, 8.68731], + [-12.505946, 8.685504], + [-12.507294, 8.68439], + [-12.507978, 8.683446], + [-12.508094, 8.683109], + [-12.507849, 8.681641], + [-12.507851, 8.68164], + [-12.508279, 8.682022], + [-12.508776, 8.682126], + [-12.509226, 8.68224], + [-12.509349, 8.681478], + [-12.509677, 8.681014], + [-12.509673, 8.680693], + [-12.509844, 8.680682], + [-12.509904, 8.681753], + [-12.510717, 8.682878], + [-12.511298, 8.683439], + [-12.510873, 8.683723], + [-12.511019, 8.683763], + [-12.511367, 8.684876], + [-12.510681, 8.685526], + [-12.510821, 8.685567], + [-12.510927, 8.685954], + [-12.510912, 8.688853], + [-12.51074, 8.69037], + [-12.510852, 8.690375], + [-12.510976, 8.689814], + [-12.511839, 8.689804], + [-12.512521, 8.69116], + [-12.512718, 8.691249], + [-12.512917, 8.69125], + [-12.515417, 8.692916], + [-12.519918, 8.692273], + [-12.519955, 8.692343], + [-12.519908, 8.692512], + [-12.522916, 8.692082], + [-12.523482, 8.690953], + [-12.525888, 8.690867], + [-12.526977, 8.69133], + [-12.527653, 8.690804], + [-12.528066, 8.69084], + [-12.528314, 8.690858], + [-12.528315, 8.69086], + [-12.52818, 8.691756], + [-12.528155, 8.692247], + [-12.528145, 8.692766], + [-12.528177, 8.692775], + [-12.528604, 8.693561], + [-12.528565, 8.693798], + [-12.528547, 8.69425], + [-12.529225, 8.694394], + [-12.528924, 8.695376], + [-12.529222, 8.695651], + [-12.529598, 8.69541], + [-12.529808, 8.695046], + [-12.532654, 8.693485], + [-12.532744, 8.693591], + [-12.533539, 8.693134], + [-12.53364, 8.693308], + [-12.533735, 8.693436], + [-12.533837, 8.693931], + [-12.534138, 8.694326], + [-12.534241, 8.694407], + [-12.534119, 8.69448], + [-12.533886, 8.694697], + [-12.534062, 8.695315], + [-12.534672, 8.695171], + [-12.534954, 8.695479], + [-12.535073, 8.695493], + [-12.535334, 8.695897], + [-12.535336, 8.695992], + [-12.536983, 8.695612], + [-12.53691, 8.69506], + [-12.537058, 8.6944], + [-12.536418, 8.694368], + [-12.536493, 8.693985], + [-12.536501, 8.693653], + [-12.536613, 8.693527], + [-12.53728, 8.693305], + [-12.537595, 8.694448], + [-12.537525, 8.694995], + [-12.537648, 8.696018], + [-12.537863, 8.696227], + [-12.537808, 8.696499], + [-12.538261, 8.696488], + [-12.538198, 8.697853], + [-12.538943, 8.697953], + [-12.539165, 8.698078], + [-12.539559, 8.699615], + [-12.54032, 8.700191], + [-12.543348, 8.700911], + [-12.543347, 8.700913], + [-12.543128, 8.700983], + [-12.542151, 8.702488], + [-12.541202, 8.703216], + [-12.541196, 8.703228], + [-12.544583, 8.704582], + [-12.549582, 8.704583], + [-12.55125, 8.707916], + [-12.554485, 8.709857], + [-12.554654, 8.710407], + [-12.555032, 8.714386], + [-12.555995, 8.716624], + [-12.556112, 8.716943], + [-12.556283, 8.716978], + [-12.556668, 8.718027], + [-12.556524, 8.71823], + [-12.556677, 8.719088], + [-12.557168, 8.720295], + [-12.557647, 8.720635], + [-12.558628, 8.721841], + [-12.558906, 8.72273], + [-12.559973, 8.723565], + [-12.561166, 8.725221], + [-12.562041, 8.724662], + [-12.565391, 8.722797], + [-12.567491, 8.721686], + [-12.568608, 8.722452], + [-12.570231, 8.722515], + [-12.570288, 8.722673], + [-12.570702, 8.722502], + [-12.571359, 8.723033], + [-12.571848, 8.724401], + [-12.572979, 8.724991], + [-12.5739, 8.726144], + [-12.574948, 8.726595], + [-12.575466, 8.726488], + [-12.575881, 8.726629], + [-12.576976, 8.727403], + [-12.5779, 8.726999], + [-12.582199, 8.726], + [-12.584299, 8.7253], + [-12.586899, 8.7236], + [-12.5905, 8.720099], + [-12.593899, 8.7159], + [-12.5965, 8.710899], + [-12.601099, 8.705], + [-12.603799, 8.7013], + [-12.607599, 8.6986], + [-12.610099, 8.6964], + [-12.612499, 8.6935], + [-12.614899, 8.6885], + [-12.61618, 8.686401] + ] + ], + "type": "Polygon" + }, + "id": 287, + "properties": { + "cc:admin:id": ["93"], + "cc:oBld:total": 6796, + "cc:pop:fifteen-to-twenty-four": 4480.136921261133, + "cc:pop:grid3-total": 44867.70616899399, + "cc:pop:kontur-total": 22564.76751241193, + "cc:pop:men": 11147.104847634142, + "cc:pop:sixty-plus": 1506.6907136052948, + "cc:pop:total": 23871.09327877461, + "cc:pop:under-five": 3843.463384879191, + "cc:pop:women": 12723.988431140486, + "cc:pop:women-fiften-to-forty-nine": 6159.891949294521, + "cc:pop:wp-total": 19541.016752368534, + "cc:pop:wp-total-UN": 22673.597861265884, + "cc:id": "287", + "cc:Name": "Lunsar CHC", + "cc:site": [-12.5313, 8.6821], + "user:parentName": "Marampa", + "user:code": "OU_255057", + "user:orgUnitId": "q56204kKXgZ", + "user:level": "4", + "user:parentId": "RWvG1aFrr0r" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.330556, 8.531391], + [-12.327916, 8.52875], + [-12.327082, 8.528749], + [-12.320417, 8.526249], + [-12.323749, 8.518749], + [-12.316249, 8.514584], + [-12.305417, 8.514584], + [-12.302083, 8.513749], + [-12.302917, 8.509584], + [-12.305416, 8.50625], + [-12.307916, 8.504584], + [-12.309489, 8.504583], + [-12.310456, 8.502908], + [-12.30655, 8.496142], + [-12.298739, 8.496142], + [-12.294831, 8.502907], + [-12.28702, 8.502908], + [-12.286533, 8.50375], + [-12.278973, 8.50375], + [-12.278972, 8.503748], + [-12.279365, 8.50209], + [-12.278463, 8.500709], + [-12.277136, 8.497541], + [-12.275416, 8.49625], + [-12.267083, 8.496249], + [-12.267082, 8.495417], + [-12.255417, 8.495417], + [-12.257082, 8.500416], + [-12.253185, 8.499767], + [-12.253267, 8.499525], + [-12.253379, 8.499283], + [-12.25125, 8.49875], + [-12.247917, 8.500416], + [-12.247916, 8.502917], + [-12.24375, 8.506249], + [-12.242917, 8.507083], + [-12.242916, 8.508749], + [-12.23625, 8.509583], + [-12.235416, 8.509584], + [-12.232083, 8.510416], + [-12.229694, 8.512806], + [-12.229098, 8.512545], + [-12.228228, 8.511637], + [-12.22375, 8.512917], + [-12.223749, 8.522916], + [-12.219583, 8.522916], + [-12.217082, 8.519584], + [-12.215416, 8.519583], + [-12.207575, 8.517445], + [-12.20745, 8.517054], + [-12.206548, 8.515187], + [-12.206363, 8.514584], + [-12.202083, 8.514584], + [-12.19625, 8.517084], + [-12.194582, 8.51875], + [-12.192337, 8.522493], + [-12.1929, 8.5226], + [-12.1965, 8.5244], + [-12.203299, 8.526099], + [-12.2086, 8.5284], + [-12.214599, 8.529799], + [-12.2199, 8.5321], + [-12.2259, 8.5335], + [-12.230299, 8.535699], + [-12.2335, 8.5371], + [-12.237799, 8.539399], + [-12.240999, 8.540799], + [-12.245399, 8.543199], + [-12.248499, 8.544599], + [-12.255899, 8.550099], + [-12.259799, 8.551999], + [-12.262099, 8.553699], + [-12.265, 8.557199], + [-12.269599, 8.558799], + [-12.281199, 8.5542], + [-12.287699, 8.5519], + [-12.2962, 8.546899], + [-12.306199, 8.5435], + [-12.3103, 8.542599], + [-12.320599, 8.5418], + [-12.324699, 8.540599], + [-12.327499, 8.538299], + [-12.328515, 8.536382], + [-12.327916, 8.534584], + [-12.325596, 8.533423], + [-12.325595, 8.533421], + [-12.32587, 8.533234], + [-12.326533, 8.533166], + [-12.327109, 8.533258], + [-12.327222, 8.532901], + [-12.327613, 8.532753], + [-12.329139, 8.532752], + [-12.330256, 8.532058], + [-12.330556, 8.531391] + ] + ], + "type": "Polygon" + }, + "id": 288, + "properties": { + "cc:admin:id": ["149"], + "cc:oBld:total": 331, + "cc:pop:fifteen-to-twenty-four": 816.7933395920774, + "cc:pop:grid3-total": 3672.9988384383655, + "cc:pop:kontur-total": 4411.549074419465, + "cc:pop:men": 2028.198427632446, + "cc:pop:sixty-plus": 289.650510084456, + "cc:pop:total": 4361.037452233158, + "cc:pop:under-five": 710.9670304586546, + "cc:pop:women": 2332.8390246007134, + "cc:pop:women-fiften-to-forty-nine": 1159.867687721582, + "cc:pop:wp-total": 3385.704993784676, + "cc:pop:wp-total-UN": 3922.454046101218, + "cc:id": "288", + "cc:Name": "Mabai MCHP", + "cc:site": [-12.2494, 8.5395], + "user:parentName": "Kholifa Mabang", + "user:code": "OU_268164", + "user:orgUnitId": "xRsoZIRmnt4", + "user:level": "4", + "user:parentId": "fwxkctgmffZ" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.228832, 8.485004], + [-13.228645, 8.484085], + [-13.228093, 8.484198], + [-13.228015, 8.484202], + [-13.227596, 8.4841], + [-13.227549, 8.483624], + [-13.227564, 8.483084], + [-13.226653, 8.482963], + [-13.226568, 8.483158], + [-13.225753, 8.482884], + [-13.225451, 8.483549], + [-13.226265, 8.483955], + [-13.22615, 8.484276], + [-13.226104, 8.484395], + [-13.225956, 8.484828], + [-13.225888, 8.485021], + [-13.226856, 8.485489], + [-13.226813, 8.4858], + [-13.226795, 8.48603], + [-13.22679, 8.486255], + [-13.226425, 8.487275], + [-13.226313, 8.487574], + [-13.226126, 8.487804], + [-13.226141, 8.487874], + [-13.226136, 8.487916], + [-13.226205, 8.488002], + [-13.226298, 8.487987], + [-13.226576, 8.488186], + [-13.226347, 8.488853], + [-13.225932, 8.490046], + [-13.225864, 8.490481], + [-13.22652, 8.490556], + [-13.22678, 8.490829], + [-13.227023, 8.490703], + [-13.226813, 8.490385], + [-13.226729, 8.490148], + [-13.226574, 8.489789], + [-13.227373, 8.488516], + [-13.22732, 8.48827], + [-13.22705, 8.488135], + [-13.227337, 8.487295], + [-13.22744, 8.48663], + [-13.227703, 8.486632], + [-13.228663, 8.486341], + [-13.228498, 8.485747], + [-13.228316, 8.485137], + [-13.228832, 8.485004] + ] + ], + "type": "Polygon" + }, + "id": 289, + "properties": { + "cc:admin:id": ["26"], + "cc:oBld:total": 496, + "cc:pop:fifteen-to-twenty-four": 709.6288448050036, + "cc:pop:grid3-total": 8536.280704463741, + "cc:pop:kontur-total": 0, + "cc:pop:men": 1545.5113494808052, + "cc:pop:sixty-plus": 240.35560605069276, + "cc:pop:total": 3089.0124147991846, + "cc:pop:under-five": 355.86889988067287, + "cc:pop:women": 1543.50106531838, + "cc:pop:women-fiften-to-forty-nine": 827.6500897368462, + "cc:pop:wp-total": 2837.8273648475924, + "cc:pop:wp-total-UN": 3289.9216992572037, + "cc:id": "289", + "cc:Name": "Mabella MCHP", + "cc:site": [-13.2265, 8.4905], + "user:parentName": "Freetown", + "user:code": "OU_278329", + "user:orgUnitId": "MiYhwDprCCA", + "user:level": "4", + "user:parentId": "C9uduqDZr9d" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.046249, 9.43375], + [-12.03625, 9.434583], + [-12.032917, 9.438749], + [-12.032916, 9.439191], + [-12.032915, 9.43919], + [-12.031677, 9.437048], + [-12.031177, 9.43776], + [-12.029994, 9.438459], + [-12.026704, 9.441201], + [-12.025873, 9.440877], + [-12.02355, 9.436854], + [-12.022461, 9.436853], + [-12.022413, 9.436459], + [-12.021969, 9.435816], + [-12.021721, 9.435006], + [-12.021811, 9.434093], + [-12.021636, 9.433211], + [-12.021589, 9.431473], + [-12.020603, 9.429863], + [-12.020286, 9.428972], + [-12.019726, 9.428206], + [-12.019541, 9.427016], + [-12.013751, 9.432081], + [-12.013749, 9.432081], + [-12.012917, 9.427916], + [-12.015416, 9.420417], + [-12.010606, 9.419042], + [-12.010271, 9.41987], + [-12.008939, 9.421987], + [-12.008636, 9.421821], + [-12.008088, 9.420297], + [-12.007787, 9.41987], + [-12.007024, 9.419359], + [-12.006901, 9.418913], + [-12.006072, 9.418047], + [-12.005083, 9.415715], + [-12.00495, 9.414645], + [-12.004441, 9.413483], + [-12.004187, 9.413306], + [-12.004008, 9.412005], + [-12.002516, 9.409627], + [-12.004884, 9.408398], + [-12.005055, 9.408379], + [-12.005041, 9.408333], + [-12.001076, 9.408333], + [-11.997169, 9.415098], + [-11.993591, 9.415098], + [-11.993508, 9.414931], + [-11.993845, 9.414689], + [-11.995379, 9.411634], + [-11.99583, 9.409694], + [-11.995771, 9.408958], + [-11.994965, 9.407949], + [-11.994002, 9.407852], + [-11.992016, 9.408355], + [-11.991151, 9.408413], + [-11.989852, 9.407463], + [-11.989558, 9.407075], + [-11.989655, 9.406144], + [-11.989932, 9.40593], + [-11.990029, 9.40434], + [-11.989951, 9.403739], + [-11.98942, 9.403002], + [-11.989165, 9.402283], + [-11.989377, 9.401526], + [-11.989681, 9.401196], + [-11.991127, 9.400651], + [-11.991904, 9.399934], + [-11.992583, 9.398799], + [-11.993241, 9.397159], + [-11.994194, 9.391776], + [-11.993929, 9.390932], + [-11.993565, 9.39066], + [-11.992179, 9.390021], + [-11.990959, 9.389864], + [-11.989397, 9.387983], + [-11.990166, 9.385417], + [-11.985417, 9.385417], + [-11.982082, 9.384583], + [-11.974414, 9.384583], + [-11.973899, 9.3858], + [-11.9733, 9.389299], + [-11.9733, 9.396699], + [-11.975899, 9.398], + [-11.9799, 9.4036], + [-11.9838, 9.4116], + [-11.984499, 9.4144], + [-11.9842, 9.417899], + [-11.982099, 9.4232], + [-11.981499, 9.4259], + [-11.9809, 9.431699], + [-11.980199, 9.433999], + [-11.977699, 9.4373], + [-11.974899, 9.4396], + [-11.9697, 9.442499], + [-11.9677, 9.444399], + [-11.9666, 9.447199], + [-11.9669, 9.451499], + [-11.9693, 9.4567], + [-11.970099, 9.461299], + [-11.970099, 9.4633], + [-11.969499, 9.4671], + [-11.967499, 9.4716], + [-11.966899, 9.4752], + [-11.9666, 9.480999], + [-11.9661, 9.484799], + [-11.963999, 9.4902], + [-11.963299, 9.4928], + [-11.962599, 9.4983], + [-11.9605, 9.504399], + [-11.970699, 9.5027], + [-11.976399, 9.5027], + [-11.980699, 9.503099], + [-11.984599, 9.504499], + [-11.988, 9.507], + [-11.9919, 9.511], + [-11.9942, 9.5144], + [-11.997099, 9.520499], + [-11.9998, 9.524099], + [-12.005699, 9.527599], + [-12.0095, 9.5287], + [-12.0135, 9.528699], + [-12.0186, 9.527599], + [-12.0262, 9.523599], + [-12.036199, 9.5162], + [-12.038843, 9.516105], + [-12.039437, 9.515611], + [-12.040996, 9.514733], + [-12.040416, 9.511249], + [-12.039582, 9.507083], + [-12.038749, 9.507082], + [-12.032917, 9.506249], + [-12.029583, 9.502916], + [-12.031095, 9.493085], + [-12.031868, 9.492941], + [-12.03232, 9.493043], + [-12.035136, 9.488166], + [-12.031231, 9.4814], + [-12.035136, 9.474635], + [-12.034075, 9.472796], + [-12.034764, 9.472736], + [-12.035444, 9.472281], + [-12.036109, 9.471377], + [-12.035417, 9.46375], + [-12.035257, 9.463621], + [-12.038781, 9.457518], + [-12.035839, 9.452422], + [-12.035416, 9.452082], + [-12.034693, 9.444129], + [-12.034694, 9.444129], + [-12.035182, 9.444368], + [-12.036012, 9.444493], + [-12.039158, 9.446126], + [-12.039525, 9.446377], + [-12.04056, 9.446358], + [-12.042916, 9.445416], + [-12.045416, 9.440416], + [-12.046249, 9.43375] + ] + ], + "type": "Polygon" + }, + "id": 290, + "properties": { + "cc:admin:id": ["116"], + "cc:oBld:total": 1, + "cc:pop:fifteen-to-twenty-four": 593.8457670477393, + "cc:pop:grid3-total": 2701.453391569256, + "cc:pop:kontur-total": 3587.761777496117, + "cc:pop:men": 1517.8166050728596, + "cc:pop:sixty-plus": 195.92959099793532, + "cc:pop:total": 3196.3609577696093, + "cc:pop:under-five": 523.0766588561581, + "cc:pop:women": 1678.5443526967497, + "cc:pop:women-fiften-to-forty-nine": 812.9533308638923, + "cc:pop:wp-total": 3293.918390174994, + "cc:pop:wp-total-UN": 3815.372360644335, + "cc:id": "290", + "cc:Name": "Mabenteh Community Hospital", + "cc:site": [-11.98737, 9.44655], + "user:parentName": "Makari Gbanti", + "user:code": "OU_193250", + "user:orgUnitId": "taKiTcaf05H", + "user:level": "4", + "user:parentId": "lY93YpCxJqf" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.114582, 8.820416], + [-12.112082, 8.814583], + [-12.107916, 8.816249], + [-12.107082, 8.809583], + [-12.102917, 8.812082], + [-12.102268, 8.812083], + [-12.102258, 8.812107], + [-12.102575, 8.812354], + [-12.102236, 8.81251], + [-12.102275, 8.812892], + [-12.102274, 8.812893], + [-12.100416, 8.810417], + [-12.095417, 8.807917], + [-12.093749, 8.808749], + [-12.090434, 8.808198], + [-12.090373, 8.808245], + [-12.089813, 8.808292], + [-12.089573, 8.808997], + [-12.088635, 8.809583], + [-12.082917, 8.809583], + [-12.080924, 8.81224], + [-12.080035, 8.811319], + [-12.079546, 8.811216], + [-12.079182, 8.810956], + [-12.079157, 8.810424], + [-12.078893, 8.810511], + [-12.078668, 8.810366], + [-12.07831, 8.810529], + [-12.078103, 8.810051], + [-12.07778, 8.810071], + [-12.077888, 8.810724], + [-12.077742, 8.811078], + [-12.077742, 8.811844], + [-12.076676, 8.812211], + [-12.075721, 8.8131], + [-12.075215, 8.813454], + [-12.070417, 8.812082], + [-12.071601, 8.808529], + [-12.071652, 8.808578], + [-12.07168, 8.808695], + [-12.072082, 8.807083], + [-12.071249, 8.804583], + [-12.062917, 8.802917], + [-12.062082, 8.804583], + [-12.056893, 8.80588], + [-12.056983, 8.806248], + [-12.056982, 8.806249], + [-12.05625, 8.80625], + [-12.056249, 8.809583], + [-12.050417, 8.812082], + [-12.049583, 8.812083], + [-12.048749, 8.812917], + [-12.045393, 8.81426], + [-12.045999, 8.816048], + [-12.045827, 8.816285], + [-12.044254, 8.816734], + [-12.042875, 8.817402], + [-12.042195, 8.817367], + [-12.041252, 8.817045], + [-12.041109, 8.816974], + [-12.0393, 8.816187], + [-12.038919, 8.813568], + [-12.038237, 8.814153], + [-12.037751, 8.815246], + [-12.035891, 8.819553], + [-12.035863, 8.819649], + [-12.035607, 8.819529], + [-12.035302, 8.819275], + [-12.034538, 8.819072], + [-12.033919, 8.819216], + [-12.03347, 8.819571], + [-12.033081, 8.81898], + [-12.032506, 8.81942], + [-12.031987, 8.819656], + [-12.031846, 8.820005], + [-12.03222, 8.820911], + [-12.031981, 8.820997], + [-12.031583, 8.821917], + [-12.031493, 8.822695], + [-12.031063, 8.823354], + [-12.030041, 8.823411], + [-12.029679, 8.823258], + [-12.029051, 8.823317], + [-12.028034, 8.823691], + [-12.027601, 8.823983], + [-12.027262, 8.823505], + [-12.027006, 8.82373], + [-12.026744, 8.824025], + [-12.026629, 8.824079], + [-12.027099, 8.824412], + [-12.027429, 8.824293], + [-12.02778, 8.824505], + [-12.028107, 8.824804], + [-12.028345, 8.825339], + [-12.028228, 8.825809], + [-12.027795, 8.825916], + [-12.026592, 8.826661], + [-12.026143, 8.826956], + [-12.026249, 8.827429], + [-12.025503, 8.827705], + [-12.024407, 8.829077], + [-12.024779, 8.830567], + [-12.024667, 8.830807], + [-12.025554, 8.831038], + [-12.026121, 8.831909], + [-12.0262, 8.832296], + [-12.025967, 8.832639], + [-12.02596, 8.833242], + [-12.024317, 8.831975], + [-12.024123, 8.831998], + [-12.023571, 8.832053], + [-12.022637, 8.831712], + [-12.022141, 8.832147], + [-12.022093, 8.832401], + [-12.021322, 8.83233], + [-12.021119, 8.832525], + [-12.022129, 8.833228], + [-12.022217, 8.833554], + [-12.022725, 8.833838], + [-12.022561, 8.83441], + [-12.022254, 8.834489], + [-12.022091, 8.834757], + [-12.022059, 8.835425], + [-12.02192, 8.835816], + [-12.021917, 8.837119], + [-12.022369, 8.837493], + [-12.022471, 8.837898], + [-12.0271, 8.837043], + [-12.026716, 8.838453], + [-12.027098, 8.839284], + [-12.02714, 8.83983], + [-12.027463, 8.839942], + [-12.027573, 8.840215], + [-12.027389, 8.840782], + [-12.027639, 8.841072], + [-12.028708, 8.841149], + [-12.029448, 8.840297], + [-12.03012, 8.840077], + [-12.029744, 8.842486], + [-12.030276, 8.842739], + [-12.0309, 8.842588], + [-12.031253, 8.841901], + [-12.031848, 8.841455], + [-12.032024, 8.841141], + [-12.033083, 8.840956], + [-12.03363, 8.840282], + [-12.034794, 8.840679], + [-12.035592, 8.840671], + [-12.036171, 8.840526], + [-12.037571, 8.838648], + [-12.03821, 8.838796], + [-12.038382, 8.839016], + [-12.03879, 8.839027], + [-12.038961, 8.839277], + [-12.041448, 8.839036], + [-12.041323, 8.837475], + [-12.042141, 8.838845], + [-12.042766, 8.839474], + [-12.043074, 8.840475], + [-12.043804, 8.841815], + [-12.043812, 8.842082], + [-12.044583, 8.842082], + [-12.048749, 8.841249], + [-12.04875, 8.840417], + [-12.050416, 8.840416], + [-12.052082, 8.83625], + [-12.055105, 8.834436], + [-12.055107, 8.834437], + [-12.055871, 8.836837], + [-12.056471, 8.836483], + [-12.057561, 8.833299], + [-12.057813, 8.832386], + [-12.057996, 8.830782], + [-12.061249, 8.832083], + [-12.057917, 8.837082], + [-12.059583, 8.83875], + [-12.062916, 8.838749], + [-12.067083, 8.834583], + [-12.06875, 8.834583], + [-12.069583, 8.837082], + [-12.075416, 8.837916], + [-12.076978, 8.837134], + [-12.076781, 8.83686], + [-12.07679, 8.836777], + [-12.082916, 8.835416], + [-12.082083, 8.833749], + [-12.084583, 8.83125], + [-12.087082, 8.83125], + [-12.090416, 8.832916], + [-12.096249, 8.829583], + [-12.10125, 8.832916], + [-12.102339, 8.832554], + [-12.102371, 8.832711], + [-12.107916, 8.828749], + [-12.110416, 8.825416], + [-12.110417, 8.823749], + [-12.114582, 8.820416] + ] + ], + "type": "Polygon" + }, + "id": 291, + "properties": { + "cc:admin:id": ["8"], + "cc:oBld:total": 471, + "cc:pop:fifteen-to-twenty-four": 386.9259911882511, + "cc:pop:grid3-total": 3179.841090942723, + "cc:pop:kontur-total": 2049.81015325618, + "cc:pop:men": 1033.1871723548481, + "cc:pop:sixty-plus": 117.0122513014305, + "cc:pop:total": 2171.4654243950345, + "cc:pop:under-five": 358.45688075928103, + "cc:pop:women": 1138.2782520401865, + "cc:pop:women-fiften-to-forty-nine": 524.0176459657544, + "cc:pop:wp-total": 2344.530020318022, + "cc:pop:wp-total-UN": 2704.879941442698, + "cc:id": "291", + "cc:Name": "Mabolleh MCHP", + "cc:site": [-12.0543, 8.8214], + "user:parentName": "Bombali Sebora", + "user:code": "OU_193210", + "user:orgUnitId": "PybxeRWVSrI", + "user:level": "4", + "user:parentId": "KKkLOTpMXGV" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.792916, 8.547916], + [-12.789583, 8.539584], + [-12.792082, 8.534584], + [-12.787917, 8.53125], + [-12.783749, 8.537083], + [-12.77625, 8.537083], + [-12.77375, 8.534583], + [-12.772917, 8.532916], + [-12.776249, 8.525417], + [-12.769583, 8.524584], + [-12.768125, 8.525556], + [-12.76811, 8.525908], + [-12.764583, 8.527083], + [-12.763749, 8.527083], + [-12.759583, 8.52625], + [-12.759582, 8.52375], + [-12.758099, 8.523255], + [-12.757988, 8.523459], + [-12.756494, 8.525072], + [-12.754421, 8.526692], + [-12.753445, 8.527222], + [-12.753221, 8.527296], + [-12.750416, 8.519584], + [-12.74625, 8.519584], + [-12.742917, 8.520417], + [-12.741249, 8.52375], + [-12.740417, 8.523749], + [-12.740416, 8.522084], + [-12.724583, 8.52125], + [-12.722082, 8.510417], + [-12.715898, 8.511103], + [-12.715897, 8.511102], + [-12.715961, 8.510417], + [-12.710417, 8.510417], + [-12.70625, 8.51375], + [-12.706249, 8.515416], + [-12.704383, 8.515417], + [-12.704446, 8.515554], + [-12.704366, 8.515566], + [-12.7033, 8.51372], + [-12.695488, 8.51372], + [-12.691582, 8.520485], + [-12.683769, 8.520486], + [-12.683599, 8.520779], + [-12.68386, 8.521288], + [-12.684672, 8.522113], + [-12.683376, 8.524359], + [-12.687281, 8.531126], + [-12.684071, 8.536687], + [-12.683601, 8.536587], + [-12.683508, 8.536491], + [-12.681265, 8.538735], + [-12.682699, 8.5404], + [-12.683499, 8.543799], + [-12.683699, 8.547499], + [-12.6835, 8.551099], + [-12.682799, 8.5546], + [-12.680499, 8.5589], + [-12.677, 8.5669], + [-12.677399, 8.570399], + [-12.680599, 8.576999], + [-12.6831, 8.5813], + [-12.684499, 8.584399], + [-12.686099, 8.586699], + [-12.6927, 8.5937], + [-12.695399, 8.596299], + [-12.6976, 8.598], + [-12.701, 8.599299], + [-12.7037, 8.599399], + [-12.7062, 8.598899], + [-12.7114, 8.596499], + [-12.714999, 8.5959], + [-12.718599, 8.5958], + [-12.722299, 8.595999], + [-12.726, 8.5972], + [-12.733299, 8.598199], + [-12.737799, 8.5978], + [-12.745599, 8.5954], + [-12.7501, 8.593099], + [-12.7582, 8.586899], + [-12.7731, 8.571299], + [-12.777399, 8.5682], + [-12.780815, 8.566569], + [-12.781723, 8.563488], + [-12.782402, 8.560566], + [-12.783245, 8.560472], + [-12.783375, 8.559923], + [-12.783749, 8.559108], + [-12.78375, 8.555416], + [-12.789582, 8.552083], + [-12.790117, 8.549944], + [-12.791752, 8.549755], + [-12.792082, 8.549756], + [-12.792083, 8.54875], + [-12.792916, 8.547916] + ] + ], + "type": "Polygon" + }, + "id": 292, + "properties": { + "cc:admin:id": ["62"], + "cc:oBld:total": 120, + "cc:pop:fifteen-to-twenty-four": 1575.8643805309525, + "cc:pop:grid3-total": 6376.53561973946, + "cc:pop:kontur-total": 8408.510503115896, + "cc:pop:men": 4118.5411699542665, + "cc:pop:sixty-plus": 517.7447275637463, + "cc:pop:total": 8765.771492661013, + "cc:pop:under-five": 1454.1454158431166, + "cc:pop:women": 4647.230322706742, + "cc:pop:women-fiften-to-forty-nine": 2363.08709670123, + "cc:pop:wp-total": 6578.542436666858, + "cc:pop:wp-total-UN": 7640.2340779049055, + "cc:id": "292", + "cc:Name": "Mabora MCHP", + "cc:site": [-12.7381, 8.5531], + "user:parentName": "Koya", + "user:code": "OU_254961", + "user:orgUnitId": "fmkqsEx6MRo", + "user:level": "4", + "user:parentId": "pRHGAROvuyI" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.120999, 8.649], + [-12.1154, 8.6445], + [-12.112399, 8.642299], + [-12.1034, 8.6376], + [-12.100199, 8.636299], + [-12.0959, 8.6339], + [-12.092699, 8.632699], + [-12.0883, 8.6303], + [-12.084399, 8.628499], + [-12.080499, 8.625199], + [-12.0784, 8.6225], + [-12.0766, 8.6188], + [-12.0747, 8.6159], + [-12.072199, 8.613499], + [-12.069399, 8.611499], + [-12.0626, 8.6084], + [-12.060199, 8.607599], + [-12.056699, 8.606999], + [-12.054199, 8.605999], + [-12.051299, 8.603999], + [-12.0467, 8.5995], + [-12.045095, 8.597822], + [-12.041844, 8.6033], + [-12.038608, 8.606695], + [-12.035354, 8.614583], + [-12.030417, 8.614583], + [-12.027917, 8.612084], + [-12.026249, 8.617084], + [-12.022083, 8.620416], + [-12.027082, 8.62125], + [-12.028802, 8.62297], + [-12.024351, 8.629218], + [-12.017952, 8.633485], + [-12.017107, 8.634009], + [-12.016569, 8.634705], + [-12.016454, 8.635905], + [-12.016437, 8.635909], + [-12.016414, 8.636312], + [-12.016347, 8.637005], + [-12.010392, 8.637006], + [-12.013618, 8.644679], + [-12.00723, 8.647328], + [-12.010306, 8.654693], + [-12.005294, 8.659706], + [-12.008461, 8.667243], + [-12.003749, 8.667917], + [-11.99875, 8.669583], + [-11.99625, 8.678749], + [-11.998036, 8.681726], + [-11.998041, 8.681722], + [-11.998156, 8.681405], + [-11.999981, 8.679588], + [-12.000826, 8.678344], + [-12.001278, 8.677954], + [-12.002037, 8.677837], + [-12.003313, 8.678441], + [-12.0046, 8.6776], + [-12.008, 8.6767], + [-12.012099, 8.676999], + [-12.027799, 8.682499], + [-12.030699, 8.683199], + [-12.0337, 8.6835], + [-12.038299, 8.6835], + [-12.0428, 8.683099], + [-12.0457, 8.682399], + [-12.0503, 8.680799], + [-12.0547, 8.679899], + [-12.060699, 8.6797], + [-12.065099, 8.680199], + [-12.067899, 8.6812], + [-12.071199, 8.684499], + [-12.0752, 8.691899], + [-12.0786, 8.694099], + [-12.082499, 8.693899], + [-12.085299, 8.691799], + [-12.086399, 8.6882], + [-12.0851, 8.681], + [-12.085199, 8.6766], + [-12.0877, 8.671999], + [-12.0905, 8.669099], + [-12.0951, 8.6662], + [-12.105199, 8.6635], + [-12.1088, 8.661499], + [-12.112, 8.658799], + [-12.115099, 8.6558], + [-12.120999, 8.649] + ] + ], + "type": "Polygon" + }, + "id": 293, + "properties": { + "cc:admin:id": ["54"], + "cc:oBld:total": 173, + "cc:pop:fifteen-to-twenty-four": 1100.2276468092643, + "cc:pop:grid3-total": 6837.149526510828, + "cc:pop:kontur-total": 7021.3690256833415, + "cc:pop:men": 2787.960418983132, + "cc:pop:sixty-plus": 374.41782311857594, + "cc:pop:total": 5871.190076925677, + "cc:pop:under-five": 948.9752253600772, + "cc:pop:women": 3083.2296579425433, + "cc:pop:women-fiften-to-forty-nine": 1492.5252548248664, + "cc:pop:wp-total": 6769.081769359103, + "cc:pop:wp-total-UN": 7862.757723822172, + "cc:id": "293", + "cc:Name": "Maborie MCHP", + "cc:site": [-12.0682, 8.6506], + "user:parentName": "Kholifa Rowalla", + "user:code": "OU_268154", + "user:orgUnitId": "ApLCxUmnT6q", + "user:level": "4", + "user:parentId": "PQZJPIpTepd" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.316249, 9.166249], + [-12.310416, 9.15625], + [-12.304583, 9.152083], + [-12.306552, 9.150113], + [-12.306224, 9.150094], + [-12.305685, 9.149089], + [-12.305337, 9.147775], + [-12.304785, 9.14696], + [-12.304161, 9.144533], + [-12.303403, 9.143963], + [-12.303072, 9.143231], + [-12.303061, 9.143163], + [-12.30625, 9.14125], + [-12.312916, 9.140416], + [-12.312083, 9.137917], + [-12.312082, 9.137083], + [-12.308749, 9.132917], + [-12.302083, 9.130417], + [-12.299583, 9.12875], + [-12.302916, 9.117917], + [-12.301657, 9.116656], + [-12.302044, 9.116132], + [-12.302175, 9.114971], + [-12.301703, 9.113508], + [-12.294583, 9.112082], + [-12.293749, 9.108749], + [-12.292083, 9.10125], + [-12.290416, 9.097917], + [-12.284583, 9.097916], + [-12.28375, 9.095417], + [-12.288749, 9.092082], + [-12.289422, 9.08738], + [-12.290417, 9.087429], + [-12.291609, 9.087329], + [-12.293988, 9.086523], + [-12.296241, 9.08633], + [-12.300048, 9.085249], + [-12.300585, 9.084763], + [-12.301486, 9.083299], + [-12.303466, 9.08224], + [-12.305298, 9.080858], + [-12.305894, 9.080616], + [-12.305123, 9.080161], + [-12.30216, 9.079475], + [-12.299799, 9.08], + [-12.294599, 9.080099], + [-12.2849, 9.08], + [-12.2787, 9.080599], + [-12.2729, 9.082899], + [-12.266999, 9.0844], + [-12.2619, 9.086799], + [-12.258699, 9.0881], + [-12.2502, 9.092799], + [-12.2455, 9.096399], + [-12.2432, 9.097899], + [-12.2394, 9.099699], + [-12.235799, 9.1017], + [-12.231899, 9.1036], + [-12.228299, 9.1065], + [-12.224199, 9.1104], + [-12.2203, 9.114699], + [-12.2181, 9.1181], + [-12.216899, 9.1236], + [-12.214499, 9.1297], + [-12.214, 9.1334], + [-12.214099, 9.143999], + [-12.2136, 9.149199], + [-12.2114, 9.154499], + [-12.2107, 9.157999], + [-12.210695, 9.158461], + [-12.211169, 9.158488], + [-12.212529, 9.158747], + [-12.213687, 9.159678], + [-12.21445, 9.16078], + [-12.215818, 9.161742], + [-12.215755, 9.162579], + [-12.215249, 9.163746], + [-12.21519, 9.164161], + [-12.219582, 9.165416], + [-12.224582, 9.164582], + [-12.227083, 9.162917], + [-12.230043, 9.170315], + [-12.233255, 9.169392], + [-12.233458, 9.169322], + [-12.233814, 9.168776], + [-12.233685, 9.167102], + [-12.234868, 9.164577], + [-12.235375, 9.16382], + [-12.235523, 9.16254], + [-12.236004, 9.162233], + [-12.238119, 9.16166], + [-12.238258, 9.161554], + [-12.240416, 9.168749], + [-12.23875, 9.173749], + [-12.244582, 9.177916], + [-12.244583, 9.179582], + [-12.248749, 9.180416], + [-12.252082, 9.180417], + [-12.255416, 9.183749], + [-12.254583, 9.193749], + [-12.255417, 9.194582], + [-12.25625, 9.194583], + [-12.257083, 9.196249], + [-12.262082, 9.197082], + [-12.267588, 9.195706], + [-12.267824, 9.193789], + [-12.267825, 9.191552], + [-12.267437, 9.190067], + [-12.268583, 9.190775], + [-12.270409, 9.191487], + [-12.271283, 9.192015], + [-12.274792, 9.191963], + [-12.275044, 9.191993], + [-12.277083, 9.187917], + [-12.284583, 9.187917], + [-12.288762, 9.18911], + [-12.28896, 9.189791], + [-12.292082, 9.190416], + [-12.29375, 9.187083], + [-12.300416, 9.187916], + [-12.30125, 9.187083], + [-12.30375, 9.187916], + [-12.307082, 9.187082], + [-12.307083, 9.184582], + [-12.311249, 9.17625], + [-12.310109, 9.175109], + [-12.310837, 9.173844], + [-12.307896, 9.16875], + [-12.313749, 9.168749], + [-12.316249, 9.166249] + ] + ], + "type": "Polygon" + }, + "id": 294, + "properties": { + "cc:admin:id": ["118"], + "cc:oBld:total": 565, + "cc:pop:fifteen-to-twenty-four": 1187.1555666790725, + "cc:pop:grid3-total": 5278.435544404582, + "cc:pop:kontur-total": 7162.345680484918, + "cc:pop:men": 3019.02020963997, + "cc:pop:sixty-plus": 414.0478229957094, + "cc:pop:total": 6379.508493171923, + "cc:pop:under-five": 1002.168935849659, + "cc:pop:women": 3360.488283531954, + "cc:pop:women-fiften-to-forty-nine": 1646.025546999314, + "cc:pop:wp-total": 5887.102204434124, + "cc:pop:wp-total-UN": 6818.638755660598, + "cc:id": "294", + "cc:Name": "Mabunduka CHC", + "cc:site": [-12.2384, 9.1345], + "user:parentName": "Sanda Tendaren", + "user:code": "OU_193195", + "user:orgUnitId": "TmCsvdJLHoX", + "user:level": "4", + "user:parentId": "UhHipWG7J8b" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.239157, 8.475902], + [-13.238862, 8.475778], + [-13.23858, 8.475671], + [-13.237915, 8.475413], + [-13.23756, 8.475282], + [-13.237467, 8.475252], + [-13.237044, 8.475202], + [-13.236559, 8.47514], + [-13.236507, 8.475648], + [-13.235277, 8.475431], + [-13.234848, 8.474566], + [-13.233961, 8.475128], + [-13.231613, 8.475744], + [-13.230902, 8.476331], + [-13.230788, 8.476347], + [-13.230788, 8.476345], + [-13.231373, 8.475798], + [-13.231529, 8.474347], + [-13.230777, 8.473928], + [-13.230599, 8.473834], + [-13.230059, 8.473221], + [-13.229735, 8.47307], + [-13.229758, 8.47285], + [-13.229256, 8.473119], + [-13.22907, 8.472818], + [-13.228717, 8.472519], + [-13.228253, 8.472266], + [-13.227572, 8.47221], + [-13.227482, 8.472572], + [-13.227395, 8.473708], + [-13.227106, 8.474382], + [-13.22704, 8.474681], + [-13.227138, 8.475942], + [-13.2271, 8.476003], + [-13.227159, 8.476016], + [-13.227194, 8.476138], + [-13.227305, 8.476382], + [-13.227904, 8.477376], + [-13.22744, 8.477977], + [-13.226359, 8.478444], + [-13.225877, 8.478866], + [-13.225531, 8.478801], + [-13.225089, 8.478337], + [-13.225063, 8.47836], + [-13.225151, 8.479179], + [-13.225477, 8.479533], + [-13.225716, 8.480176], + [-13.227064, 8.481792], + [-13.226968, 8.482067], + [-13.22616, 8.481784], + [-13.225943, 8.482334], + [-13.225753, 8.482883], + [-13.226568, 8.483158], + [-13.226653, 8.482963], + [-13.227564, 8.483083], + [-13.227549, 8.483624], + [-13.227596, 8.4841], + [-13.228015, 8.484202], + [-13.228093, 8.484198], + [-13.228645, 8.484085], + [-13.228832, 8.485004], + [-13.228316, 8.485137], + [-13.228498, 8.485747], + [-13.228664, 8.486341], + [-13.230337, 8.485829], + [-13.230503, 8.486445], + [-13.231352, 8.486198], + [-13.231559, 8.486305], + [-13.233174, 8.486231], + [-13.233222, 8.485816], + [-13.233263, 8.485312], + [-13.234138, 8.48328], + [-13.234417, 8.483283], + [-13.234883, 8.483315], + [-13.235423, 8.483345], + [-13.235694, 8.47828], + [-13.235757, 8.478302], + [-13.236117, 8.478407], + [-13.23631, 8.478458], + [-13.236832, 8.478586], + [-13.237156, 8.478503], + [-13.237323, 8.478972], + [-13.23874, 8.478108], + [-13.23806, 8.477858], + [-13.238318, 8.477267], + [-13.238617, 8.477375], + [-13.238803, 8.476861], + [-13.238956, 8.476402], + [-13.239157, 8.475902] + ] + ], + "type": "Polygon" + }, + "id": 295, + "properties": { + "cc:admin:id": ["26"], + "cc:oBld:total": 2701, + "cc:pop:fifteen-to-twenty-four": 7013.7722018132345, + "cc:pop:grid3-total": 31665.904477539458, + "cc:pop:kontur-total": 41994.44063069069, + "cc:pop:men": 15278.31976702825, + "cc:pop:sixty-plus": 2380.0159048973737, + "cc:pop:total": 30538.076398036006, + "cc:pop:under-five": 3522.5755089244567, + "cc:pop:women": 15259.756631007758, + "cc:pop:women-fiften-to-forty-nine": 8179.814132946374, + "cc:pop:wp-total": 28439.03795462065, + "cc:pop:wp-total-UN": 32984.56075437068, + "cc:id": "295", + "cc:Name": "Macauley Satellite Hospital", + "cc:site": [-13.2283, 8.4795], + "user:parentName": "Freetown", + "user:code": "OU_278356", + "user:orgUnitId": "rIgJX4N0DGZ", + "user:level": "4", + "user:parentId": "C9uduqDZr9d" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.135482, 8.312083], + [-13.135453, 8.312033], + [-13.127917, 8.312032], + [-13.127916, 8.307084], + [-13.124878, 8.303286], + [-13.12764, 8.298501], + [-13.12375, 8.291762], + [-13.12375, 8.291709], + [-13.12764, 8.284969], + [-13.123735, 8.278203], + [-13.12764, 8.271438], + [-13.123735, 8.264671], + [-13.12764, 8.257906], + [-13.123735, 8.25114], + [-13.12764, 8.244375], + [-13.123735, 8.237608], + [-13.12764, 8.230843], + [-13.123734, 8.224077], + [-13.11875, 8.224076], + [-13.118749, 8.22125], + [-13.118112, 8.221313], + [-13.116569, 8.218643], + [-13.108758, 8.218643], + [-13.108189, 8.219626], + [-13.108158, 8.219607], + [-13.107006, 8.219531], + [-13.106664, 8.219368], + [-13.105279, 8.219365], + [-13.10466, 8.219525], + [-13.104189, 8.219325], + [-13.104146, 8.219097], + [-13.103212, 8.218323], + [-13.10318, 8.217022], + [-13.102864, 8.217267], + [-13.10186, 8.218111], + [-13.101664, 8.21836], + [-13.101653, 8.218353], + [-13.101111, 8.217314], + [-13.100044, 8.216582], + [-13.099545, 8.2165], + [-13.099288, 8.216095], + [-13.098922, 8.215968], + [-13.098211, 8.215657], + [-13.098178, 8.215268], + [-13.099191, 8.214713], + [-13.099179, 8.214511], + [-13.099665, 8.214294], + [-13.099811, 8.21414], + [-13.098419, 8.214381], + [-13.098318, 8.214025], + [-13.096558, 8.214114], + [-13.096545, 8.214108], + [-13.081798, 8.217936], + [-13.074364, 8.233176], + [-13.061241, 8.23821], + [-13.035415, 8.23346], + [-13.01848, 8.240421], + [-13.017391, 8.238637], + [-13.0175, 8.239203], + [-13.01742, 8.23958], + [-13.0182, 8.240375], + [-13.017651, 8.243579], + [-13.017186, 8.245699], + [-13.016325, 8.247158], + [-13.015463, 8.248948], + [-13.014338, 8.2512], + [-13.013382, 8.252785], + [-13.012736, 8.253367], + [-13.012217, 8.253653], + [-13.011422, 8.254647], + [-13.011223, 8.255574], + [-13.011753, 8.256634], + [-13.012548, 8.256435], + [-13.013476, 8.256105], + [-13.014933, 8.256105], + [-13.016988, 8.257098], + [-13.017983, 8.25796], + [-13.019373, 8.258821], + [-13.019904, 8.259948], + [-13.021031, 8.261075], + [-13.023681, 8.263393], + [-13.024344, 8.263925], + [-13.024637, 8.264667], + [-13.024604, 8.265819], + [-13.024332, 8.266838], + [-13.024502, 8.267686], + [-13.025281, 8.267687], + [-13.027385, 8.268432], + [-13.028539, 8.269246], + [-13.029761, 8.269858], + [-13.031457, 8.27023], + [-13.032809, 8.270608], + [-13.035553, 8.265857], + [-13.043365, 8.265857], + [-13.044563, 8.26793], + [-13.044583, 8.267917], + [-13.048319, 8.267917], + [-13.048956, 8.268899], + [-13.049993, 8.268959], + [-13.051515, 8.270658], + [-13.051971, 8.272255], + [-13.054812, 8.272912], + [-13.056368, 8.272148], + [-13.056433, 8.27217], + [-13.057001, 8.275007], + [-13.056998, 8.275629], + [-13.057157, 8.27579], + [-13.057916, 8.279583], + [-13.056161, 8.281777], + [-13.056322, 8.281681], + [-13.059918, 8.28685], + [-13.061726, 8.287118], + [-13.06185, 8.288535], + [-13.063529, 8.288802], + [-13.065582, 8.29216], + [-13.066376, 8.292308], + [-13.067082, 8.29125], + [-13.067623, 8.291249], + [-13.067527, 8.291139], + [-13.067274, 8.290108], + [-13.067513, 8.290014], + [-13.06875, 8.291249], + [-13.071249, 8.29125], + [-13.07375, 8.292084], + [-13.077082, 8.292916], + [-13.077083, 8.292083], + [-13.07974, 8.289958], + [-13.080112, 8.292835], + [-13.079593, 8.295353], + [-13.079491, 8.295783], + [-13.079195, 8.297167], + [-13.079066, 8.298079], + [-13.079302, 8.300051], + [-13.079526, 8.301867], + [-13.079538, 8.301937], + [-13.079672, 8.301962], + [-13.079803, 8.304075], + [-13.080526, 8.305094], + [-13.080298, 8.30571], + [-13.080351, 8.306275], + [-13.081478, 8.307297], + [-13.081531, 8.307377], + [-13.082092, 8.308035], + [-13.081621, 8.308403], + [-13.081507, 8.309187], + [-13.081027, 8.310199], + [-13.081406, 8.31103], + [-13.080763, 8.311871], + [-13.081008, 8.312981], + [-13.081247, 8.313076], + [-13.081024, 8.313756], + [-13.081443, 8.314959], + [-13.081446, 8.314963], + [-13.083057, 8.314289], + [-13.084911, 8.313321], + [-13.085276, 8.313146], + [-13.089535, 8.311234], + [-13.089843, 8.31108], + [-13.09031, 8.311243], + [-13.091083, 8.311851], + [-13.089955, 8.3142], + [-13.089151, 8.317635], + [-13.089856, 8.318126], + [-13.089737, 8.318596], + [-13.089432, 8.318959], + [-13.09426, 8.31796], + [-13.095534, 8.317354], + [-13.096426, 8.317248], + [-13.096487, 8.316756], + [-13.096063, 8.315918], + [-13.097508, 8.315638], + [-13.097747, 8.315959], + [-13.097756, 8.317245], + [-13.098203, 8.317903], + [-13.097426, 8.318647], + [-13.099624, 8.318118], + [-13.101368, 8.318147], + [-13.102585, 8.317991], + [-13.102585, 8.317992], + [-13.102188, 8.318635], + [-13.101702, 8.318905], + [-13.101735, 8.319583], + [-13.102917, 8.319584], + [-13.10875, 8.320417], + [-13.109582, 8.32125], + [-13.105417, 8.325417], + [-13.105417, 8.330416], + [-13.117082, 8.330417], + [-13.11625, 8.337083], + [-13.127082, 8.337083], + [-13.12625, 8.335416], + [-13.127916, 8.333749], + [-13.127917, 8.331249], + [-13.130416, 8.329583], + [-13.131249, 8.32625], + [-13.134582, 8.326249], + [-13.135416, 8.325416], + [-13.12875, 8.317917], + [-13.12875, 8.31375], + [-13.13125, 8.312084], + [-13.135482, 8.312083] + ] + ], + "type": "Polygon" + }, + "id": 296, + "properties": { + "cc:admin:id": ["112"], + "cc:oBld:total": 2513, + "cc:pop:fifteen-to-twenty-four": 4925.964687546915, + "cc:pop:grid3-total": 18595.516469066108, + "cc:pop:kontur-total": 21406.456940749962, + "cc:pop:men": 10799.689920404144, + "cc:pop:sixty-plus": 1698.9311675792887, + "cc:pop:total": 21739.0081798683, + "cc:pop:under-five": 2501.575905043718, + "cc:pop:women": 10939.318259464164, + "cc:pop:women-fiften-to-forty-nine": 5811.812163742352, + "cc:pop:wp-total": 16813.951536827248, + "cc:pop:wp-total-UN": 19503.777202109686, + "cc:id": "296", + "cc:Name": "MacDonald MCHP", + "cc:site": [-13.0796, 8.2837], + "user:parentName": "Rural Western Area", + "user:code": "OU_278387", + "user:orgUnitId": "FupvWBUFXr7", + "user:level": "4", + "user:parentId": "qtr8GGlm4gg" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.366199, 9.35], + [-12.362699, 9.345999], + [-12.360199, 9.344799], + [-12.355299, 9.343599], + [-12.3465, 9.3393], + [-12.341099, 9.334899], + [-12.3327, 9.3306], + [-12.329199, 9.329599], + [-12.3252, 9.3294], + [-12.3213, 9.329499], + [-12.317599, 9.3303], + [-12.313099, 9.3323], + [-12.3073, 9.333799], + [-12.3048, 9.335099], + [-12.2969, 9.342099], + [-12.2937, 9.343899], + [-12.288699, 9.3452], + [-12.283299, 9.3475], + [-12.279699, 9.3482], + [-12.2738, 9.348399], + [-12.2709, 9.3481], + [-12.2687, 9.3473], + [-12.2662, 9.344999], + [-12.264199, 9.340999], + [-12.259799, 9.3328], + [-12.256999, 9.3313], + [-12.254173, 9.331995], + [-12.254644, 9.333925], + [-12.255486, 9.334603], + [-12.257715, 9.333746], + [-12.258852, 9.333594], + [-12.259518, 9.333941], + [-12.260372, 9.336175], + [-12.261359, 9.335827], + [-12.261361, 9.335828], + [-12.261433, 9.336361], + [-12.260377, 9.337841], + [-12.260122, 9.339674], + [-12.2607, 9.340249], + [-12.262402, 9.340671], + [-12.262698, 9.341174], + [-12.262719, 9.341725], + [-12.262178, 9.342151], + [-12.261455, 9.342449], + [-12.261377, 9.342731], + [-12.262421, 9.343801], + [-12.262078, 9.344031], + [-12.262725, 9.34481], + [-12.262797, 9.344808], + [-12.262668, 9.346117], + [-12.262235, 9.346918], + [-12.261476, 9.347617], + [-12.260767, 9.347976], + [-12.259888, 9.348126], + [-12.259445, 9.348629], + [-12.259831, 9.349596], + [-12.261121, 9.348877], + [-12.262329, 9.348938], + [-12.263266, 9.348692], + [-12.264204, 9.348035], + [-12.264621, 9.349267], + [-12.265224, 9.35011], + [-12.265725, 9.352391], + [-12.266266, 9.353356], + [-12.267286, 9.354055], + [-12.267827, 9.353234], + [-12.268536, 9.352638], + [-12.268973, 9.352597], + [-12.270097, 9.353233], + [-12.27193, 9.349761], + [-12.272916, 9.349253], + [-12.272916, 9.350417], + [-12.27125, 9.352083], + [-12.269811, 9.359995], + [-12.271458, 9.359389], + [-12.272956, 9.359477], + [-12.274313, 9.359222], + [-12.274798, 9.358995], + [-12.275417, 9.362082], + [-12.278749, 9.36375], + [-12.275963, 9.368627], + [-12.276187, 9.368978], + [-12.276469, 9.369124], + [-12.277534, 9.369595], + [-12.278278, 9.369972], + [-12.278113, 9.370356], + [-12.277684, 9.371114], + [-12.278466, 9.372303], + [-12.279033, 9.372784], + [-12.278425, 9.373159], + [-12.277396, 9.375709], + [-12.276588, 9.378085], + [-12.281286, 9.380435], + [-12.281286, 9.380437], + [-12.280871, 9.380719], + [-12.281628, 9.382614], + [-12.282095, 9.382806], + [-12.282896, 9.383076], + [-12.283031, 9.383524], + [-12.282932, 9.383747], + [-12.290416, 9.382917], + [-12.291629, 9.383321], + [-12.291612, 9.383415], + [-12.290408, 9.386063], + [-12.290418, 9.387157], + [-12.290079, 9.388269], + [-12.289679, 9.390996], + [-12.295417, 9.394582], + [-12.298579, 9.394583], + [-12.298326, 9.394905], + [-12.298287, 9.395218], + [-12.297785, 9.395723], + [-12.297288, 9.397276], + [-12.2953, 9.399314], + [-12.294435, 9.399994], + [-12.295425, 9.399931], + [-12.297452, 9.400209], + [-12.298641, 9.400106], + [-12.299811, 9.400535], + [-12.301565, 9.400763], + [-12.30315, 9.40053], + [-12.30464, 9.399781], + [-12.304817, 9.399807], + [-12.306249, 9.406249], + [-12.30375, 9.409583], + [-12.30375, 9.411249], + [-12.308549, 9.41125], + [-12.307876, 9.411916], + [-12.308228, 9.412791], + [-12.308275, 9.414193], + [-12.308581, 9.415466], + [-12.30898, 9.41597], + [-12.307936, 9.416967], + [-12.30918, 9.417054], + [-12.308751, 9.41817], + [-12.3091, 9.418892], + [-12.309116, 9.418934], + [-12.312799, 9.4186], + [-12.315, 9.417899], + [-12.321599, 9.414599], + [-12.3248, 9.411399], + [-12.328599, 9.4037], + [-12.330199, 9.397], + [-12.332, 9.392499], + [-12.3327, 9.388799], + [-12.332999, 9.381], + [-12.333799, 9.3775], + [-12.336099, 9.3733], + [-12.337599, 9.3713], + [-12.3434, 9.367899], + [-12.3459, 9.366999], + [-12.3501, 9.366199], + [-12.356199, 9.3637], + [-12.361399, 9.3625], + [-12.363699, 9.361599], + [-12.364999, 9.3552], + [-12.366199, 9.35] + ] + ], + "type": "Polygon" + }, + "id": 297, + "properties": { + "cc:admin:id": ["116"], + "cc:oBld:total": 396, + "cc:pop:fifteen-to-twenty-four": 1547.6936145937334, + "cc:pop:grid3-total": 7879.777553083095, + "cc:pop:kontur-total": 8684.2508101676, + "cc:pop:men": 3965.8195540959805, + "cc:pop:sixty-plus": 517.7421162540717, + "cc:pop:total": 8354.516307028454, + "cc:pop:under-five": 1347.8418435280573, + "cc:pop:women": 4388.696752932474, + "cc:pop:women-fiften-to-forty-nine": 2123.937151571496, + "cc:pop:wp-total": 7426.1025579978495, + "cc:pop:wp-total-UN": 8603.62598888945, + "cc:id": "297", + "cc:Name": "Madina Fullah CHP", + "cc:site": [-12.3182, 9.3577], + "user:parentName": "Sanda Loko", + "user:code": "OU_193244", + "user:orgUnitId": "pJj2r2HElLE", + "user:level": "4", + "user:parentId": "WXnNDWTiE9r" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.052099, 7.360299], + [-12.0497, 7.3573], + [-12.047199, 7.354999], + [-12.044499, 7.352999], + [-12.040599, 7.350899], + [-12.038299, 7.348599], + [-12.0356, 7.3442], + [-12.034699, 7.3432], + [-12.0323, 7.3418], + [-12.029, 7.3409], + [-12.0273, 7.3399], + [-12.026299, 7.338199], + [-12.0253, 7.3348], + [-12.0243, 7.3326], + [-12.0218, 7.3298], + [-12.0181, 7.327], + [-12.014199, 7.325099], + [-12.011399, 7.322999], + [-12.008699, 7.320499], + [-12.0015, 7.3135], + [-11.9984, 7.3102], + [-11.9964, 7.3075], + [-11.994699, 7.304399], + [-11.992799, 7.3021], + [-11.989899, 7.300899], + [-11.983499, 7.298899], + [-11.9801, 7.2982], + [-11.9781, 7.298799], + [-11.973399, 7.3008], + [-11.969099, 7.3032], + [-11.9621, 7.306699], + [-11.959699, 7.3074], + [-11.953499, 7.307799], + [-11.934599, 7.3076], + [-11.9315, 7.307799], + [-11.9285, 7.308499], + [-11.9242, 7.310699], + [-11.921, 7.311999], + [-11.916799, 7.3145], + [-11.9093, 7.317999], + [-11.9054, 7.318799], + [-11.8943, 7.318899], + [-11.8903, 7.319199], + [-11.887499, 7.3198], + [-11.883099, 7.3217], + [-11.8796, 7.322199], + [-11.877099, 7.321899], + [-11.8747, 7.3211], + [-11.8718, 7.325], + [-11.8704, 7.329999], + [-11.877199, 7.340799], + [-11.882899, 7.348899], + [-11.884799, 7.354599], + [-11.885199, 7.358599], + [-11.884099, 7.3625], + [-11.8759, 7.3771], + [-11.8751, 7.382199], + [-11.8754, 7.3861], + [-11.8775, 7.3933], + [-11.878599, 7.406799], + [-11.8792, 7.4107], + [-11.8804, 7.413899], + [-11.883599, 7.417699], + [-11.887, 7.42], + [-11.893, 7.4223], + [-11.896, 7.4252], + [-11.897299, 7.4281], + [-11.8973, 7.430049], + [-11.903749, 7.432916], + [-11.904582, 7.434583], + [-11.900417, 7.437917], + [-11.900416, 7.447083], + [-11.89875, 7.447084], + [-11.895417, 7.460416], + [-11.895022, 7.460304], + [-11.892118, 7.465336], + [-11.892917, 7.465417], + [-11.900078, 7.466718], + [-11.901509, 7.466187], + [-11.903353, 7.466394], + [-11.903948, 7.466278], + [-11.904143, 7.466338], + [-11.904583, 7.464583], + [-11.907916, 7.46125], + [-11.914795, 7.460562], + [-11.914885, 7.460719], + [-11.91098, 7.467485], + [-11.914595, 7.473748], + [-11.90875, 7.474584], + [-11.908749, 7.477916], + [-11.90733, 7.481465], + [-11.908391, 7.48133], + [-11.910352, 7.480752], + [-11.912344, 7.480378], + [-11.915015, 7.480097], + [-11.915416, 7.480094], + [-11.915417, 7.487083], + [-11.920417, 7.48875], + [-11.921249, 7.490417], + [-11.92125, 7.494173], + [-11.924, 7.492199], + [-11.927199, 7.489], + [-11.9289, 7.486799], + [-11.9308, 7.4831], + [-11.9341, 7.48], + [-11.940799, 7.478], + [-11.9453, 7.475899], + [-11.948099, 7.4753], + [-11.954999, 7.4751], + [-11.957899, 7.475399], + [-11.9605, 7.4763], + [-11.967199, 7.479799], + [-11.973099, 7.484199], + [-11.974999, 7.485399], + [-11.977299, 7.486099], + [-11.9832, 7.486499], + [-12.002499, 7.4863], + [-12.008499, 7.486499], + [-12.011799, 7.486999], + [-12.0139, 7.4877], + [-12.019799, 7.490699], + [-12.022799, 7.4935], + [-12.027199, 7.502499], + [-12.0283, 7.5076], + [-12.0314, 7.514499], + [-12.035099, 7.5121], + [-12.037699, 7.509299], + [-12.0389, 7.505499], + [-12.039199, 7.501499], + [-12.0387, 7.4767], + [-12.038099, 7.472799], + [-12.035799, 7.467399], + [-12.034099, 7.461599], + [-12.032399, 7.458399], + [-12.028599, 7.453299], + [-12.027499, 7.449899], + [-12.027099, 7.4454], + [-12.0237, 7.4453], + [-12.0212, 7.444599], + [-12.016799, 7.440699], + [-12.015999, 7.438299], + [-12.0152, 7.4324], + [-12.014599, 7.430199], + [-12.0106, 7.4227], + [-12.0061, 7.4169], + [-12.0049, 7.414899], + [-12.004199, 7.411499], + [-12.004, 7.404699], + [-12.0048, 7.4011], + [-12.006599, 7.3981], + [-12.0084, 7.396299], + [-12.011499, 7.3942], + [-12.0136, 7.393499], + [-12.019899, 7.393], + [-12.023199, 7.3922], + [-12.029999, 7.389], + [-12.0321, 7.387599], + [-12.0358, 7.383599], + [-12.039299, 7.3774], + [-12.0434, 7.371999], + [-12.0461, 7.366799], + [-12.0487, 7.363599], + [-12.052099, 7.360299] + ] + ], + "type": "Polygon" + }, + "id": 298, + "properties": { + "cc:admin:id": ["10"], + "cc:oBld:total": 318, + "cc:pop:fifteen-to-twenty-four": 4450.718296745401, + "cc:pop:grid3-total": 19385.30200622025, + "cc:pop:kontur-total": 23868.48172880056, + "cc:pop:men": 11793.71304563867, + "cc:pop:sixty-plus": 1733.504287977342, + "cc:pop:total": 24458.093526625693, + "cc:pop:under-five": 4085.991002704347, + "cc:pop:women": 12664.380480987023, + "cc:pop:women-fiften-to-forty-nine": 6148.302175654788, + "cc:pop:wp-total": 20645.724011268183, + "cc:pop:wp-total-UN": 23933.1680506729, + "cc:id": "298", + "cc:Name": "Madina Gbonkobor MCHP", + "cc:site": [-11.9492, 7.4637], + "user:parentName": "Bum", + "user:code": "OU_226223", + "user:orgUnitId": "SZrG4yHGV4x", + "user:level": "4", + "user:parentId": "iUauWFeH8Qp" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.100417, 9.067082], + [-12.100416, 9.064582], + [-12.095417, 9.054583], + [-12.093325, 9.055628], + [-12.093518, 9.054091], + [-12.093215, 9.052375], + [-12.093311, 9.052353], + [-12.093842, 9.050909], + [-12.093849, 9.050365], + [-12.094517, 9.049518], + [-12.091249, 9.04625], + [-12.085417, 9.047082], + [-12.083749, 9.044583], + [-12.080416, 9.047916], + [-12.07875, 9.046249], + [-12.077916, 9.044583], + [-12.075417, 9.043749], + [-12.07375, 9.042083], + [-12.073749, 9.039583], + [-12.06625, 9.042916], + [-12.06375, 9.03875], + [-12.063749, 9.03625], + [-12.059583, 9.037916], + [-12.055667, 9.038569], + [-12.055715, 9.038157], + [-12.056369, 9.036917], + [-12.057586, 9.035701], + [-12.059406, 9.034221], + [-12.05965, 9.033927], + [-12.055485, 9.030357], + [-12.054251, 9.031499], + [-12.05375, 9.031249], + [-12.048032, 9.025532], + [-12.047999, 9.0268], + [-12.0477, 9.029599], + [-12.047, 9.031799], + [-12.045799, 9.0337], + [-12.0424, 9.037999], + [-12.041399, 9.04], + [-12.040899, 9.0421], + [-12.0404, 9.047399], + [-12.0398, 9.049999], + [-12.037799, 9.0545], + [-12.0365, 9.060299], + [-12.0352, 9.0653], + [-12.036199, 9.069299], + [-12.036099, 9.072599], + [-12.031, 9.0839], + [-12.031, 9.087599], + [-12.032799, 9.091699], + [-12.033299, 9.095], + [-12.032999, 9.098], + [-12.030799, 9.1037], + [-12.030299, 9.1075], + [-12.0301, 9.113299], + [-12.0294, 9.116999], + [-12.0273, 9.121399], + [-12.025999, 9.1246], + [-12.023099, 9.1301], + [-12.021199, 9.133199], + [-12.0187, 9.135199], + [-12.018476, 9.135312], + [-12.018679, 9.135656], + [-12.025416, 9.130417], + [-12.029583, 9.130417], + [-12.030038, 9.132239], + [-12.029129, 9.133738], + [-12.029448, 9.136573], + [-12.029205, 9.140774], + [-12.028956, 9.144076], + [-12.027755, 9.14899], + [-12.026382, 9.150007], + [-12.025703, 9.15033], + [-12.027083, 9.151249], + [-12.038749, 9.150416], + [-12.040417, 9.147083], + [-12.047082, 9.147917], + [-12.049583, 9.149582], + [-12.051738, 9.149045], + [-12.053193, 9.150733], + [-12.053473, 9.15102], + [-12.05466, 9.151423], + [-12.056138, 9.151345], + [-12.057348, 9.151638], + [-12.057847, 9.151481], + [-12.058712, 9.151877], + [-12.058952, 9.151572], + [-12.059227, 9.151503], + [-12.061811, 9.151552], + [-12.062374, 9.151121], + [-12.063236, 9.151115], + [-12.063383, 9.152916], + [-12.063439, 9.153604], + [-12.064606, 9.153798], + [-12.065298, 9.153623], + [-12.066249, 9.153669], + [-12.06625, 9.152916], + [-12.067076, 9.1463], + [-12.06711, 9.146276], + [-12.06125, 9.140417], + [-12.06125, 9.139582], + [-12.067083, 9.127917], + [-12.071249, 9.123749], + [-12.07125, 9.122083], + [-12.077083, 9.122083], + [-12.082916, 9.125416], + [-12.082917, 9.120417], + [-12.083749, 9.11875], + [-12.087082, 9.118749], + [-12.081524, 9.11319], + [-12.081825, 9.110898], + [-12.083749, 9.110416], + [-12.084583, 9.10625], + [-12.088989, 9.09964], + [-12.08606, 9.095723], + [-12.086045, 9.095731], + [-12.085416, 9.095416], + [-12.084318, 9.092671], + [-12.08471, 9.092542], + [-12.086218, 9.093203], + [-12.087414, 9.093214], + [-12.08789, 9.093127], + [-12.089017, 9.092839], + [-12.089701, 9.092506], + [-12.091403, 9.090981], + [-12.092266, 9.089767], + [-12.092441, 9.089185], + [-12.095408, 9.087773], + [-12.096179, 9.08686], + [-12.096459, 9.085698], + [-12.096383, 9.084775], + [-12.09125, 9.085416], + [-12.090417, 9.082083], + [-12.092082, 9.077917], + [-12.094582, 9.077082], + [-12.094582, 9.070417], + [-12.092084, 9.067083], + [-12.100417, 9.067082] + ] + ], + "type": "Polygon" + }, + "id": 299, + "properties": { + "cc:admin:id": ["32"], + "cc:oBld:total": 328, + "cc:pop:fifteen-to-twenty-four": 873.8439575966304, + "cc:pop:grid3-total": 4044.7703364584295, + "cc:pop:kontur-total": 4495.646663056575, + "cc:pop:men": 2172.802186321794, + "cc:pop:sixty-plus": 313.68475480341107, + "cc:pop:total": 4591.321513856772, + "cc:pop:under-five": 725.5805138732743, + "cc:pop:women": 2418.5193275349766, + "cc:pop:women-fiften-to-forty-nine": 1180.8137495809756, + "cc:pop:wp-total": 4383.548585437802, + "cc:pop:wp-total-UN": 5092.988288916014, + "cc:id": "299", + "cc:Name": "Madina Loko CHP", + "cc:site": [-12.0513, 9.094], + "user:parentName": "Gbendembu Ngowahun", + "user:code": "OU_193283", + "user:orgUnitId": "I48Qu6R0sGm", + "user:level": "4", + "user:parentId": "BXJdOLvUrZB" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.660899, 9.124899], + [-12.660599, 9.120699], + [-12.657899, 9.112199], + [-12.6577, 9.1069], + [-12.658899, 9.103471], + [-12.658126, 9.103746], + [-12.657213, 9.104681], + [-12.656928, 9.105306], + [-12.656698, 9.105609], + [-12.655416, 9.106249], + [-12.649869, 9.10625], + [-12.649033, 9.105714], + [-12.64844, 9.104859], + [-12.647607, 9.104483], + [-12.646646, 9.104063], + [-12.646264, 9.103365], + [-12.645133, 9.102083], + [-12.640518, 9.102083], + [-12.640535, 9.10428], + [-12.640586, 9.104413], + [-12.639583, 9.105416], + [-12.63125, 9.107916], + [-12.629, 9.098167], + [-12.630693, 9.096304], + [-12.627083, 9.09125], + [-12.627768, 9.088506], + [-12.627507, 9.088268], + [-12.627219, 9.087221], + [-12.623886, 9.083887], + [-12.623678, 9.08413], + [-12.62125, 9.082916], + [-12.617916, 9.07875], + [-12.609583, 9.083749], + [-12.601249, 9.077083], + [-12.596392, 9.077777], + [-12.596369, 9.077658], + [-12.594495, 9.077347], + [-12.592804, 9.075682], + [-12.59207, 9.075417], + [-12.579583, 9.075417], + [-12.575417, 9.07875], + [-12.575417, 9.089122], + [-12.575415, 9.089123], + [-12.572289, 9.083707], + [-12.576166, 9.076991], + [-12.575155, 9.075701], + [-12.573922, 9.075218], + [-12.573374, 9.074693], + [-12.572147, 9.074255], + [-12.571865, 9.074254], + [-12.571249, 9.06625], + [-12.567082, 9.062917], + [-12.561008, 9.062916], + [-12.561039, 9.061301], + [-12.561878, 9.058791], + [-12.563424, 9.057313], + [-12.566079, 9.055744], + [-12.567547, 9.05527], + [-12.570172, 9.054846], + [-12.572077, 9.054323], + [-12.572932, 9.054043], + [-12.573525, 9.053514], + [-12.57356, 9.053069], + [-12.573193, 9.052071], + [-12.572982, 9.050816], + [-12.573031, 9.049993], + [-12.573702, 9.047358], + [-12.574478, 9.046529], + [-12.576052, 9.044145], + [-12.579885, 9.041043], + [-12.580207, 9.040822], + [-12.580636, 9.040932], + [-12.581705, 9.040039], + [-12.582637, 9.038359], + [-12.582525, 9.037544], + [-12.583442, 9.034993], + [-12.583489, 9.033791], + [-12.583604, 9.033102], + [-12.584059, 9.032056], + [-12.58542, 9.029966], + [-12.586477, 9.029145], + [-12.587385, 9.028746], + [-12.588241, 9.028099], + [-12.589299, 9.026408], + [-12.589954, 9.024616], + [-12.590635, 9.02347], + [-12.591878, 9.022354], + [-12.592534, 9.02208], + [-12.594926, 9.021894], + [-12.596049, 9.021967], + [-12.598164, 9.021732], + [-12.600395, 9.020761], + [-12.603506, 9.020562], + [-12.604463, 9.020289], + [-12.605786, 9.01948], + [-12.606227, 9.019007], + [-12.606795, 9.017874], + [-12.608307, 9.015895], + [-12.608748, 9.015597], + [-12.611724, 9.015032], + [-12.609399, 9.013999], + [-12.6023, 9.011799], + [-12.598499, 9.0092], + [-12.595099, 9.01], + [-12.589799, 9.0125], + [-12.584299, 9.0139], + [-12.581499, 9.0153], + [-12.576499, 9.0193], + [-12.571999, 9.0215], + [-12.565699, 9.0263], + [-12.5547, 9.037999], + [-12.550199, 9.0418], + [-12.5452, 9.045299], + [-12.5424, 9.048499], + [-12.5413, 9.0528], + [-12.5416, 9.056699], + [-12.543, 9.0603], + [-12.5466, 9.0664], + [-12.546599, 9.0702], + [-12.544099, 9.0738], + [-12.5339, 9.080399], + [-12.53, 9.0799], + [-12.5279, 9.076899], + [-12.528499, 9.0735], + [-12.529899, 9.0707], + [-12.527199, 9.0682], + [-12.522399, 9.0671], + [-12.5187, 9.0677], + [-12.5162, 9.0694], + [-12.513199, 9.0752], + [-12.510799, 9.078099], + [-12.5076, 9.079899], + [-12.503899, 9.079599], + [-12.5021, 9.0779], + [-12.501451, 9.077012], + [-12.501182, 9.077516], + [-12.500347, 9.078382], + [-12.499199, 9.078987], + [-12.498437, 9.079146], + [-12.496601, 9.079181], + [-12.491965, 9.078926], + [-12.490845, 9.07961], + [-12.489878, 9.081725], + [-12.490383, 9.083048], + [-12.491097, 9.083861], + [-12.491537, 9.084642], + [-12.492174, 9.085142], + [-12.492986, 9.086347], + [-12.492899, 9.087376], + [-12.492624, 9.088299], + [-12.490845, 9.091303], + [-12.488933, 9.0938], + [-12.488648, 9.095112], + [-12.488997, 9.096751], + [-12.49034, 9.099093], + [-12.491861, 9.10109], + [-12.492409, 9.101091], + [-12.493208, 9.102475], + [-12.495862, 9.105062], + [-12.498979, 9.107426], + [-12.499866, 9.107862], + [-12.501036, 9.108131], + [-12.501035, 9.108132], + [-12.500142, 9.108191], + [-12.500199, 9.108304], + [-12.501694, 9.10838], + [-12.502249, 9.108542], + [-12.502407, 9.108682], + [-12.502206, 9.108876], + [-12.502424, 9.108914], + [-12.502958, 9.108639], + [-12.503422, 9.109168], + [-12.504237, 9.109478], + [-12.504473, 9.109785], + [-12.504503, 9.110437], + [-12.504002, 9.111917], + [-12.502809, 9.114158], + [-12.501435, 9.116013], + [-12.500056, 9.117722], + [-12.499756, 9.118013], + [-12.506927, 9.118014], + [-12.508582, 9.120877], + [-12.514582, 9.120416], + [-12.517304, 9.11715], + [-12.517306, 9.11715], + [-12.519752, 9.121389], + [-12.515846, 9.128154], + [-12.519753, 9.134919], + [-12.527565, 9.13492], + [-12.53147, 9.141686], + [-12.527565, 9.148452], + [-12.53147, 9.155217], + [-12.537103, 9.155218], + [-12.537904, 9.155568], + [-12.539274, 9.15569], + [-12.539513, 9.155617], + [-12.543189, 9.161983], + [-12.543749, 9.161984], + [-12.543749, 9.16375], + [-12.537916, 9.164583], + [-12.534583, 9.167917], + [-12.533933, 9.171168], + [-12.537324, 9.173549], + [-12.540048, 9.174234], + [-12.540877, 9.174057], + [-12.54254, 9.174424], + [-12.546056, 9.17338], + [-12.546357, 9.17342], + [-12.548162, 9.17424], + [-12.550463, 9.174415], + [-12.551805, 9.175082], + [-12.554675, 9.175231], + [-12.556449, 9.175657], + [-12.557916, 9.175746], + [-12.557917, 9.183749], + [-12.558821, 9.185107], + [-12.558682, 9.185108], + [-12.557665, 9.185276], + [-12.556203, 9.185899], + [-12.554955, 9.188059], + [-12.558862, 9.194824], + [-12.562555, 9.194825], + [-12.562083, 9.195417], + [-12.562083, 9.202916], + [-12.56392, 9.206589], + [-12.569998, 9.20659], + [-12.569431, 9.20787], + [-12.568034, 9.210084], + [-12.565298, 9.21144], + [-12.563502, 9.212907], + [-12.563407, 9.213703], + [-12.563005, 9.214621], + [-12.5668, 9.2128], + [-12.5708, 9.2125], + [-12.5747, 9.2129], + [-12.580599, 9.214799], + [-12.584699, 9.215599], + [-12.589, 9.215699], + [-12.593299, 9.215099], + [-12.5971, 9.213299], + [-12.605599, 9.2065], + [-12.611999, 9.203], + [-12.6155, 9.201599], + [-12.6208, 9.200099], + [-12.6306, 9.196699], + [-12.6332, 9.195499], + [-12.6368, 9.192899], + [-12.6423, 9.187799], + [-12.648599, 9.1813], + [-12.651199, 9.1778], + [-12.652699, 9.1744], + [-12.653599, 9.169899], + [-12.653299, 9.166399], + [-12.6513, 9.1582], + [-12.6509, 9.1553], + [-12.6507, 9.1508], + [-12.650999, 9.1465], + [-12.652, 9.1434], + [-12.656299, 9.138], + [-12.6579, 9.135099], + [-12.6596, 9.130799], + [-12.660899, 9.124899] + ] + ], + "type": "Polygon" + }, + "id": 300, + "properties": { + "cc:admin:id": ["117"], + "cc:oBld:total": 103, + "cc:pop:fifteen-to-twenty-four": 1451.7508681192828, + "cc:pop:grid3-total": 5927.5657081348845, + "cc:pop:kontur-total": 8305.010779382346, + "cc:pop:men": 3653.1975675944327, + "cc:pop:sixty-plus": 507.0595956019397, + "cc:pop:total": 7899.685533864066, + "cc:pop:under-five": 1295.8151288038132, + "cc:pop:women": 4246.487966269631, + "cc:pop:women-fiften-to-forty-nine": 2094.52056286184, + "cc:pop:wp-total": 6846.467202187134, + "cc:pop:wp-total-UN": 7932.216246244769, + "cc:id": "300", + "cc:Name": "Madina MCHP", + "cc:site": [-12.63086, 9.15972], + "user:parentName": "Buya Romende", + "user:code": "OU_255022", + "user:orgUnitId": "kFScvrF3wPo", + "user:level": "4", + "user:parentId": "Pc3JTyqnsmL" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.015599, 9.088999], + [-13.0121, 9.0845], + [-13.010099, 9.082699], + [-13.007199, 9.0808], + [-13.0014, 9.0794], + [-12.9992, 9.0784], + [-12.995, 9.074899], + [-12.992799, 9.070599], + [-12.992399, 9.066699], + [-12.9923, 9.0575], + [-12.9908, 9.0526], + [-12.987699, 9.049], + [-12.985, 9.0475], + [-12.9817, 9.0473], + [-12.9768, 9.049299], + [-12.972299, 9.0501], + [-12.9682, 9.0501], + [-12.9643, 9.0493], + [-12.9587, 9.053899], + [-12.956, 9.057199], + [-12.954099, 9.061], + [-12.949999, 9.0668], + [-12.9494, 9.069499], + [-12.950899, 9.073499], + [-12.951199, 9.075799], + [-12.950599, 9.079799], + [-12.947499, 9.084], + [-12.944599, 9.0863], + [-12.941399, 9.0884], + [-12.937699, 9.0943], + [-12.936, 9.098199], + [-12.934099, 9.1018], + [-12.932299, 9.1057], + [-12.929899, 9.109], + [-12.9229, 9.116099], + [-12.9204, 9.118899], + [-12.9189, 9.121199], + [-12.917499, 9.1243], + [-12.915199, 9.1286], + [-12.913899, 9.1317], + [-12.9114, 9.136999], + [-12.910299, 9.1421], + [-12.907898, 9.147202], + [-12.906699, 9.1504], + [-12.9045, 9.154799], + [-12.9035, 9.159799], + [-12.902499, 9.162099], + [-12.899699, 9.1645], + [-12.897, 9.165299], + [-12.8928, 9.165599], + [-12.8905, 9.1662], + [-12.8889, 9.1683], + [-12.8886, 9.172799], + [-12.890299, 9.175799], + [-12.896599, 9.1779], + [-12.898899, 9.180099], + [-12.900099, 9.1833], + [-12.899999, 9.1864], + [-12.899399, 9.1884], + [-12.897399, 9.192], + [-12.8955, 9.195899], + [-12.893099, 9.1987], + [-12.8911, 9.200599], + [-12.8887, 9.201899], + [-12.883199, 9.2039], + [-12.8818, 9.206], + [-12.880799, 9.2099], + [-12.8769, 9.218099], + [-12.8743, 9.221399], + [-12.8778, 9.2238], + [-12.8802, 9.2246], + [-12.8852, 9.2259], + [-12.887599, 9.2274], + [-12.888899, 9.2296], + [-12.889399, 9.232599], + [-12.888799, 9.236099], + [-12.887299, 9.2383], + [-12.8838, 9.242499], + [-12.8827, 9.2445], + [-12.8821, 9.248], + [-12.882199, 9.252099], + [-12.8832, 9.2555], + [-12.8852, 9.259], + [-12.888199, 9.265499], + [-12.8888, 9.267599], + [-12.8919, 9.271099], + [-12.8931, 9.2703], + [-12.9007, 9.271], + [-12.916499, 9.282599], + [-12.9265, 9.2865], + [-12.935099, 9.286699], + [-12.943799, 9.2756], + [-12.952399, 9.2493], + [-12.958799, 9.235299], + [-12.9542, 9.1898], + [-12.956199, 9.1822], + [-12.9702, 9.171799], + [-12.973199, 9.165099], + [-12.9734, 9.158899], + [-12.980899, 9.1324], + [-12.9916, 9.112799], + [-13.0021, 9.0974], + [-13.011799, 9.0909], + [-13.015599, 9.088999] + ] + ], + "type": "Polygon" + }, + "id": 302, + "properties": { + "cc:admin:id": ["34"], + "cc:oBld:total": 3020, + "cc:pop:fifteen-to-twenty-four": 5317.923974556117, + "cc:pop:grid3-total": 29237.70447769756, + "cc:pop:kontur-total": 34604.36801167716, + "cc:pop:men": 14181.83837488727, + "cc:pop:sixty-plus": 1785.9192349132027, + "cc:pop:total": 29453.585757440687, + "cc:pop:under-five": 4617.066623729841, + "cc:pop:women": 15271.747382553413, + "cc:pop:women-fiften-to-forty-nine": 7401.458894392236, + "cc:pop:wp-total": 25398.492785610437, + "cc:pop:wp-total-UN": 29465.05944473187, + "cc:id": "302", + "cc:Name": "Mafaray CHP", + "cc:site": [-12.9192, 9.2171], + "user:parentName": "Gbinleh Dixion", + "user:code": "OU_211215", + "user:orgUnitId": "OjRCvy71kAL", + "user:level": "4", + "user:parentId": "qIRCo0MfuGb" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.940099, 8.571399], + [-12.939599, 8.570399], + [-12.9376, 8.5699], + [-12.9357, 8.569899], + [-12.935699, 8.569299], + [-12.931299, 8.5665], + [-12.9293, 8.566499], + [-12.9282, 8.566], + [-12.9274, 8.5646], + [-12.927399, 8.5635], + [-12.9265, 8.563199], + [-12.926299, 8.5621], + [-12.9243, 8.561499], + [-12.922499, 8.5601], + [-12.915699, 8.5603], + [-12.9028, 8.560399], + [-12.8952, 8.553], + [-12.891499, 8.556699], + [-12.8853, 8.557199], + [-12.8823, 8.557799], + [-12.879599, 8.5588], + [-12.873599, 8.5622], + [-12.869599, 8.5635], + [-12.8653, 8.563999], + [-12.8579, 8.564199], + [-12.852399, 8.5623], + [-12.8476, 8.5625], + [-12.842899, 8.5642], + [-12.825899, 8.5645], + [-12.8047, 8.565799], + [-12.787999, 8.5649], + [-12.7818, 8.566099], + [-12.777399, 8.5682], + [-12.773099, 8.5713], + [-12.758199, 8.5869], + [-12.750099, 8.5931], + [-12.745599, 8.5954], + [-12.740017, 8.597118], + [-12.742082, 8.60125], + [-12.742917, 8.607083], + [-12.746249, 8.607916], + [-12.746249, 8.608749], + [-12.744583, 8.60875], + [-12.742083, 8.61125], + [-12.74125, 8.614583], + [-12.739583, 8.615417], + [-12.739288, 8.616888], + [-12.739105, 8.617022], + [-12.738837, 8.617346], + [-12.740416, 8.622084], + [-12.73625, 8.62625], + [-12.734582, 8.630416], + [-12.732083, 8.63125], + [-12.734582, 8.634583], + [-12.73375, 8.63625], + [-12.73375, 8.639833], + [-12.73577, 8.640166], + [-12.736834, 8.640523], + [-12.737192, 8.640841], + [-12.73877, 8.641504], + [-12.739039, 8.641598], + [-12.738759, 8.641884], + [-12.734336, 8.645778], + [-12.733912, 8.646325], + [-12.732896, 8.6489], + [-12.733339, 8.649181], + [-12.734727, 8.650686], + [-12.735831, 8.651144], + [-12.738468, 8.651672], + [-12.740767, 8.652115], + [-12.742916, 8.651454], + [-12.742917, 8.662083], + [-12.74875, 8.660417], + [-12.750416, 8.664583], + [-12.747083, 8.672083], + [-12.747083, 8.676249], + [-12.754068, 8.67625], + [-12.753878, 8.676936], + [-12.75409, 8.677404], + [-12.75428, 8.678095], + [-12.754243, 8.679417], + [-12.754307, 8.680381], + [-12.754076, 8.682695], + [-12.755046, 8.681901], + [-12.755737, 8.6816], + [-12.757964, 8.681199], + [-12.758575, 8.680901], + [-12.761249, 8.68625], + [-12.760077, 8.68918], + [-12.758785, 8.687562], + [-12.758577, 8.687403], + [-12.758076, 8.687552], + [-12.758009, 8.687131], + [-12.757385, 8.685933], + [-12.757385, 8.68555], + [-12.757602, 8.685277], + [-12.75747, 8.684988], + [-12.756996, 8.685053], + [-12.75641, 8.684333], + [-12.756522, 8.684791], + [-12.756419, 8.685137], + [-12.755831, 8.685633], + [-12.754903, 8.68511], + [-12.75355, 8.685081], + [-12.75319, 8.684726], + [-12.753075, 8.684249], + [-12.75266, 8.684174], + [-12.752328, 8.684614], + [-12.752403, 8.685146], + [-12.752001, 8.685177], + [-12.751791, 8.68603], + [-12.752233, 8.685633], + [-12.753473, 8.685335], + [-12.754919, 8.686019], + [-12.755789, 8.686039], + [-12.756891, 8.686331], + [-12.757214, 8.68667], + [-12.757492, 8.687512], + [-12.758029, 8.688169], + [-12.758769, 8.68839], + [-12.759491, 8.689871], + [-12.759776, 8.689932], + [-12.758426, 8.69331], + [-12.75903, 8.693662], + [-12.761249, 8.694576], + [-12.76125, 8.695745], + [-12.761314, 8.695741], + [-12.761823, 8.695102], + [-12.762527, 8.695549], + [-12.763813, 8.695166], + [-12.764127, 8.695367], + [-12.764193, 8.695695], + [-12.765616, 8.696603], + [-12.765693, 8.69665], + [-12.765997, 8.696967], + [-12.766515, 8.697041], + [-12.766949, 8.697369], + [-12.767413, 8.698376], + [-12.767856, 8.698166], + [-12.768115, 8.698313], + [-12.768865, 8.699208], + [-12.769292, 8.699995], + [-12.769911, 8.700095], + [-12.770586, 8.699786], + [-12.770671, 8.699979], + [-12.770668, 8.701144], + [-12.770115, 8.700882], + [-12.769624, 8.700371], + [-12.76917, 8.700645], + [-12.769014, 8.701112], + [-12.769069, 8.702044], + [-12.769347, 8.702849], + [-12.769782, 8.703169], + [-12.770531, 8.703059], + [-12.770869, 8.702832], + [-12.771135, 8.703249], + [-12.77115, 8.703241], + [-12.771869, 8.704405], + [-12.772352, 8.705165], + [-12.773008, 8.705606], + [-12.774103, 8.707029], + [-12.774273, 8.707659], + [-12.774151, 8.709317], + [-12.773197, 8.711927], + [-12.772742, 8.715985], + [-12.77268, 8.718156], + [-12.772772, 8.71824], + [-12.775555, 8.720803], + [-12.775371, 8.721615], + [-12.773792, 8.721339], + [-12.773815, 8.72153], + [-12.773883, 8.723023], + [-12.774229, 8.724576], + [-12.774249, 8.725197], + [-12.780347, 8.728012], + [-12.780545, 8.72772], + [-12.781855, 8.726874], + [-12.782621, 8.727091], + [-12.783579, 8.728104], + [-12.782452, 8.727695], + [-12.781986, 8.727733], + [-12.781051, 8.728285], + [-12.781013, 8.728319], + [-12.783749, 8.729582], + [-12.78375, 8.730416], + [-12.784582, 8.730417], + [-12.785417, 8.731249], + [-12.789582, 8.73125], + [-12.789732, 8.731622], + [-12.790265, 8.731746], + [-12.792125, 8.730976], + [-12.791963, 8.731311], + [-12.791006, 8.731827], + [-12.789934, 8.732126], + [-12.791249, 8.735416], + [-12.79125, 8.736409], + [-12.791595, 8.736077], + [-12.792535, 8.736775], + [-12.793834, 8.73681], + [-12.794783, 8.736126], + [-12.794785, 8.736127], + [-12.793474, 8.737435], + [-12.792849, 8.73751], + [-12.792172, 8.737138], + [-12.790287, 8.739139], + [-12.790416, 8.73934], + [-12.79202, 8.73949], + [-12.791988, 8.739703], + [-12.79125, 8.739821], + [-12.791249, 8.742082], + [-12.790586, 8.742415], + [-12.790831, 8.743332], + [-12.79213, 8.744512], + [-12.792876, 8.743359], + [-12.794065, 8.740917], + [-12.796737, 8.737729], + [-12.796809, 8.737719], + [-12.798102, 8.737568], + [-12.799209, 8.737671], + [-12.80097, 8.738168], + [-12.802089, 8.738757], + [-12.8019, 8.739026], + [-12.800776, 8.739541], + [-12.800974, 8.740351], + [-12.800711, 8.740692], + [-12.80042, 8.740444], + [-12.800116, 8.740658], + [-12.799346, 8.740298], + [-12.79919, 8.74082], + [-12.799642, 8.741037], + [-12.800116, 8.741745], + [-12.800226, 8.74226], + [-12.800585, 8.7424], + [-12.801013, 8.743361], + [-12.802049, 8.743047], + [-12.80354, 8.743253], + [-12.803473, 8.74294], + [-12.803417, 8.742533], + [-12.803462, 8.742189], + [-12.803574, 8.742005], + [-12.803646, 8.741822], + [-12.805046, 8.740275], + [-12.805098, 8.739807], + [-12.805448, 8.739418], + [-12.805898, 8.739239], + [-12.805926, 8.741375], + [-12.806108, 8.741887], + [-12.806823, 8.742087], + [-12.80701, 8.741787], + [-12.807292, 8.741887], + [-12.80793, 8.742968], + [-12.808132, 8.742851], + [-12.808229, 8.7422], + [-12.809011, 8.742637], + [-12.809141, 8.742399], + [-12.809142, 8.742398], + [-12.809641, 8.742838], + [-12.812966, 8.745638], + [-12.813503, 8.746364], + [-12.814538, 8.748643], + [-12.815486, 8.749544], + [-12.816511, 8.750006], + [-12.816742, 8.750085], + [-12.817231, 8.750033], + [-12.818249, 8.75051], + [-12.818717, 8.750928], + [-12.819295, 8.750998], + [-12.819537, 8.751262], + [-12.820246, 8.75139], + [-12.82045, 8.751374], + [-12.820884, 8.751289], + [-12.821249, 8.751133], + [-12.821249, 8.74875], + [-12.818704, 8.746487], + [-12.818649, 8.746489], + [-12.818648, 8.746488], + [-12.819088, 8.746054], + [-12.820709, 8.745591], + [-12.821662, 8.746012], + [-12.822245, 8.745744], + [-12.8227, 8.745154], + [-12.822829, 8.744129], + [-12.823141, 8.743636], + [-12.823085, 8.743425], + [-12.823952, 8.742118], + [-12.823584, 8.74195], + [-12.823583, 8.741949], + [-12.824165, 8.741148], + [-12.824564, 8.740966], + [-12.825911, 8.741119], + [-12.826002, 8.739946], + [-12.824586, 8.73865], + [-12.822773, 8.738767], + [-12.821479, 8.738503], + [-12.81889, 8.738617], + [-12.818626, 8.73926], + [-12.816812, 8.739636], + [-12.816549, 8.740277], + [-12.815249, 8.741428], + [-12.815248, 8.741427], + [-12.815252, 8.740657], + [-12.813698, 8.740906], + [-12.812784, 8.742189], + [-12.812514, 8.743989], + [-12.811867, 8.743986], + [-12.811613, 8.742955], + [-12.810949, 8.74366], + [-12.809701, 8.742796], + [-12.809701, 8.742795], + [-12.809841, 8.742639], + [-12.810289, 8.742281], + [-12.810689, 8.742045], + [-12.810979, 8.74194], + [-12.811755, 8.741378], + [-12.812785, 8.740606], + [-12.813577, 8.740227], + [-12.816425, 8.739065], + [-12.818032, 8.738438], + [-12.818925, 8.738099], + [-12.820019, 8.737518], + [-12.821171, 8.737311], + [-12.821984, 8.737251], + [-12.822762, 8.737302], + [-12.823357, 8.737414], + [-12.82455, 8.73783], + [-12.825658, 8.738321], + [-12.826734, 8.738652], + [-12.827965, 8.738799], + [-12.829664, 8.739043], + [-12.830311, 8.739206], + [-12.830839, 8.739435], + [-12.831981, 8.740107], + [-12.833637, 8.741046], + [-12.835504, 8.741332], + [-12.836381, 8.741314], + [-12.837497, 8.741084], + [-12.839931, 8.740785], + [-12.840344, 8.740645], + [-12.840845, 8.74036], + [-12.841484, 8.7398], + [-12.841913, 8.739486], + [-12.842185, 8.739081], + [-12.842382, 8.738567], + [-12.843714, 8.737493], + [-12.845004, 8.736504], + [-12.845704, 8.735653], + [-12.845816, 8.735169], + [-12.846157, 8.73463], + [-12.846427, 8.733995], + [-12.846486, 8.733014], + [-12.846715, 8.731682], + [-12.847983, 8.729041], + [-12.848357, 8.728055], + [-12.848646, 8.727488], + [-12.84933, 8.726742], + [-12.851646, 8.724395], + [-12.850644, 8.723409], + [-12.851764, 8.722252], + [-12.852666, 8.721671], + [-12.853842, 8.720925], + [-12.854824, 8.720463], + [-12.855264, 8.720288], + [-12.856123, 8.720149], + [-12.858113, 8.719887], + [-12.858606, 8.719745], + [-12.858923, 8.719513], + [-12.859335, 8.719286], + [-12.859695, 8.719191], + [-12.85992, 8.719148], + [-12.860581, 8.71929], + [-12.861399, 8.719204], + [-12.8614, 8.7134], + [-12.861499, 8.7084], + [-12.862099, 8.699599], + [-12.8611, 8.678999], + [-12.861399, 8.6731], + [-12.861999, 8.6691], + [-12.8633, 8.665399], + [-12.8668, 8.658499], + [-12.8763, 8.637099], + [-12.879399, 8.6313], + [-12.882699, 8.6269], + [-12.888299, 8.6217], + [-12.904299, 8.6123], + [-12.912199, 8.6068], + [-12.9183, 8.603699], + [-12.924399, 8.5985], + [-12.928099, 8.5947], + [-12.9303, 8.591699], + [-12.933099, 8.586499], + [-12.933, 8.579299], + [-12.938199, 8.5737], + [-12.940099, 8.571399] + ] + ], + "type": "Polygon" + }, + "id": 303, + "properties": { + "cc:admin:id": ["80"], + "cc:oBld:total": 538, + "cc:pop:fifteen-to-twenty-four": 4208.55058447403, + "cc:pop:grid3-total": 12352.108989778006, + "cc:pop:kontur-total": 22755.073557236527, + "cc:pop:men": 10650.663416328682, + "cc:pop:sixty-plus": 1156.3600529616438, + "cc:pop:total": 23281.40329942298, + "cc:pop:under-five": 3594.8623301061807, + "cc:pop:women": 12630.73988309431, + "cc:pop:women-fiften-to-forty-nine": 6247.39817696412, + "cc:pop:wp-total": 17340.20325750566, + "cc:pop:wp-total-UN": 20125.64389263533, + "cc:id": "303", + "cc:Name": "Maforay MCHP", + "cc:site": [-12.8051, 8.7137], + "user:parentName": "Maforki", + "user:code": "OU_254953", + "user:orgUnitId": "simyC07XwnS", + "user:level": "4", + "user:parentId": "JdqfYTIFZXN" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.094568, 8.975754], + [-13.094141, 8.974757], + [-13.092931, 8.974898], + [-13.091792, 8.975646], + [-13.091399, 8.975932], + [-13.08969, 8.976964], + [-13.088373, 8.977497], + [-13.086604, 8.97753], + [-13.085632, 8.97732], + [-13.084836, 8.977012], + [-13.084583, 8.976249], + [-13.084582, 8.974583], + [-13.082083, 8.974583], + [-13.082083, 8.975615], + [-13.082081, 8.975616], + [-13.081501, 8.975219], + [-13.080826, 8.974508], + [-13.080973, 8.974308], + [-13.080416, 8.97375], + [-13.077916, 8.974582], + [-13.07625, 8.974582], + [-13.075424, 8.972934], + [-13.07415, 8.972317], + [-13.07173, 8.971264], + [-13.07069, 8.970977], + [-13.070416, 8.97125], + [-13.067868, 8.971887], + [-13.066603, 8.973229], + [-13.066118, 8.97491], + [-13.065407, 8.977131], + [-13.063669, 8.978726], + [-13.062245, 8.980349], + [-13.061505, 8.981916], + [-13.060877, 8.983085], + [-13.05951, 8.983797], + [-13.055779, 8.984224], + [-13.053245, 8.984337], + [-13.052511, 8.984222], + [-13.052733, 8.985336], + [-13.052355, 8.9854], + [-13.051558, 8.986425], + [-13.051159, 8.988048], + [-13.052555, 8.990184], + [-13.053665, 8.990611], + [-13.054507, 8.990266], + [-13.054908, 8.991065], + [-13.055136, 8.991016], + [-13.057108, 8.990265], + [-13.058168, 8.989967], + [-13.059509, 8.989924], + [-13.060181, 8.990195], + [-13.060733, 8.99064], + [-13.061645, 8.990977], + [-13.062749, 8.991205], + [-13.063446, 8.991284], + [-13.06425, 8.991232], + [-13.064675, 8.991195], + [-13.065281, 8.991455], + [-13.06586, 8.992322], + [-13.066344, 8.993834], + [-13.066585, 8.994353], + [-13.066906, 8.994935], + [-13.066562, 8.995226], + [-13.065626, 8.994827], + [-13.064579, 8.993834], + [-13.064269, 8.993537], + [-13.063565, 8.9932], + [-13.063172, 8.993027], + [-13.062028, 8.992475], + [-13.061355, 8.992207], + [-13.060754, 8.992285], + [-13.060204, 8.992289], + [-13.060198, 8.992574], + [-13.060148, 8.992634], + [-13.06023, 8.99279], + [-13.060201, 8.99419], + [-13.060208, 8.994559], + [-13.060098, 8.995148], + [-13.059744, 8.995841], + [-13.059424, 8.996077], + [-13.059103, 8.996247], + [-13.058463, 8.996556], + [-13.058099, 8.996658], + [-13.057569, 8.997029], + [-13.057098, 8.997213], + [-13.056819, 8.997335], + [-13.056528, 8.997415], + [-13.056208, 8.99751], + [-13.056004, 8.99761], + [-13.055639, 8.998], + [-13.05547, 8.998155], + [-13.055317, 8.998417], + [-13.055426, 8.998811], + [-13.055485, 8.999033], + [-13.055807, 8.999293], + [-13.056068, 8.999378], + [-13.057193, 8.999921], + [-13.057977, 9.000456], + [-13.05839, 9.000697], + [-13.058822, 9.000816], + [-13.059099, 9.000941], + [-13.059356, 9.001169], + [-13.059457, 9.001455], + [-13.059449, 9.001608], + [-13.059533, 9.001971], + [-13.059349, 9.002599], + [-13.059334, 9.002701], + [-13.058989, 9.003272], + [-13.058364, 9.0039], + [-13.057927, 9.004353], + [-13.05743, 9.004775], + [-13.057255, 9.004987], + [-13.056889, 9.0055], + [-13.056677, 9.005982], + [-13.056601, 9.006107], + [-13.056397, 9.006375], + [-13.056039, 9.006734], + [-13.055869, 9.007032], + [-13.055714, 9.007349], + [-13.055657, 9.00762], + [-13.055655, 9.007824], + [-13.055662, 9.008075], + [-13.055667, 9.008295], + [-13.055636, 9.008902], + [-13.055657, 9.009529], + [-13.055676, 9.00982], + [-13.055537, 9.010096], + [-13.055289, 9.010224], + [-13.055158, 9.010264], + [-13.0548, 9.010381], + [-13.05426, 9.010668], + [-13.054172, 9.010846], + [-13.054308, 9.01093], + [-13.054537, 9.010724], + [-13.054815, 9.010571], + [-13.054958, 9.010464], + [-13.055107, 9.010391], + [-13.055323, 9.010296], + [-13.055641, 9.010297], + [-13.055827, 9.010351], + [-13.05587, 9.010386], + [-13.056084, 9.01055], + [-13.05633, 9.010779], + [-13.056549, 9.010965], + [-13.056548, 9.010966], + [-13.055417, 9.01125], + [-13.055061, 9.011962], + [-13.055207, 9.012329], + [-13.055438, 9.012344], + [-13.055604, 9.014338], + [-13.055454, 9.014787], + [-13.055968, 9.015504], + [-13.056612, 9.017777], + [-13.056563, 9.018296], + [-13.055583, 9.020027], + [-13.055711, 9.020197], + [-13.056109, 9.020388], + [-13.056249, 9.022082], + [-13.056648, 9.023275], + [-13.057082, 9.023233], + [-13.057083, 9.025416], + [-13.056249, 9.02875], + [-13.05125, 9.03375], + [-13.05375, 9.03625], + [-13.054583, 9.037917], + [-13.055416, 9.042082], + [-13.05375, 9.042917], + [-13.052083, 9.047082], + [-13.052917, 9.049582], + [-13.057916, 9.049583], + [-13.060416, 9.051249], + [-13.057917, 9.052917], + [-13.057917, 9.055416], + [-13.05922, 9.055851], + [-13.059614, 9.055707], + [-13.061911, 9.056382], + [-13.0694, 9.0522], + [-13.077881, 9.050428], + [-13.077621, 9.049368], + [-13.077642, 9.047905], + [-13.078157, 9.045711], + [-13.078427, 9.045061], + [-13.079349, 9.044127], + [-13.081852, 9.042161], + [-13.08362, 9.038534], + [-13.084433, 9.037947], + [-13.084682, 9.037823], + [-13.07973, 9.036201], + [-13.081249, 9.027083], + [-13.079582, 9.025417], + [-13.078192, 9.025417], + [-13.078191, 9.025415], + [-13.078475, 9.024605], + [-13.078492, 9.023025], + [-13.079999, 9.01856], + [-13.080535, 9.01551], + [-13.08067, 9.014583], + [-13.082521, 9.014582], + [-13.08261, 9.01424], + [-13.082611, 9.014239], + [-13.083364, 9.016117], + [-13.083392, 9.016117], + [-13.083653, 9.015861], + [-13.08443, 9.015737], + [-13.084428, 9.016251], + [-13.085075, 9.016513], + [-13.085845, 9.017805], + [-13.08636, 9.018323], + [-13.08643, 9.018749], + [-13.086865, 9.018749], + [-13.086752, 9.01781], + [-13.08727, 9.017683], + [-13.087924, 9.016785], + [-13.087926, 9.016271], + [-13.087669, 9.016011], + [-13.087672, 9.015239], + [-13.087158, 9.01472], + [-13.087041, 9.012145], + [-13.087042, 9.012144], + [-13.087559, 9.012145], + [-13.087188, 9.011658], + [-13.087046, 9.011371], + [-13.087734, 9.011285], + [-13.087698, 9.010601], + [-13.087957, 9.010344], + [-13.087959, 9.010087], + [-13.087444, 9.009569], + [-13.087316, 9.009053], + [-13.086539, 9.009048], + [-13.086803, 9.00802], + [-13.086286, 9.008016], + [-13.086287, 9.007502], + [-13.086041, 9.0075], + [-13.085416, 9.00625], + [-13.084913, 9.00625], + [-13.08487, 9.006207], + [-13.084968, 9.004583], + [-13.082158, 9.004582], + [-13.082249, 9.003951], + [-13.082139, 9.00303], + [-13.082082, 9.002916], + [-13.080658, 9.001491], + [-13.080541, 9.001138], + [-13.080683, 9.000356], + [-13.082035, 9.000071], + [-13.083283, 9.000463], + [-13.08556, 9.000497], + [-13.08492, 8.999429], + [-13.084849, 8.998148], + [-13.084849, 8.996582], + [-13.084899, 8.99625], + [-13.085168, 8.996249], + [-13.08517, 8.996189], + [-13.085489, 8.995229], + [-13.085062, 8.994552], + [-13.084607, 8.99375], + [-13.084079, 8.993749], + [-13.082998, 8.992844], + [-13.082891, 8.99181], + [-13.083495, 8.99092], + [-13.083781, 8.989781], + [-13.084172, 8.988322], + [-13.084456, 8.987788], + [-13.086094, 8.987147], + [-13.087554, 8.986327], + [-13.088846, 8.984874], + [-13.08875, 8.984582], + [-13.08911, 8.983863], + [-13.089262, 8.983813], + [-13.08923, 8.983623], + [-13.089583, 8.982917], + [-13.090402, 8.982916], + [-13.09051, 8.982732], + [-13.091827, 8.982732], + [-13.092681, 8.983479], + [-13.093501, 8.983977], + [-13.09382, 8.983479], + [-13.093963, 8.982269], + [-13.093646, 8.980859], + [-13.094294, 8.980696], + [-13.093715, 8.979741], + [-13.093465, 8.978887], + [-13.093536, 8.977997], + [-13.094319, 8.977106], + [-13.094568, 8.975754] + ] + ], + "type": "Polygon" + }, + "id": 304, + "properties": { + "cc:admin:id": ["115"], + "cc:oBld:total": 880, + "cc:pop:fifteen-to-twenty-four": 1179.1013741255006, + "cc:pop:grid3-total": 4250.952898458427, + "cc:pop:kontur-total": 6820.60800454324, + "cc:pop:men": 3077.5479969085195, + "cc:pop:sixty-plus": 388.574371188415, + "cc:pop:total": 6612.822432025872, + "cc:pop:under-five": 1016.4502930970405, + "cc:pop:women": 3535.2744351173556, + "cc:pop:women-fiften-to-forty-nine": 1708.274699025697, + "cc:pop:wp-total": 6763.178250941525, + "cc:pop:wp-total-UN": 7837.936184638629, + "cc:id": "304", + "cc:Name": "Mafufuneh MCHP", + "cc:site": [-13.0747, 9.0051], + "user:parentName": "Samu", + "user:code": "OU_211251", + "user:orgUnitId": "L3GgannGGKl", + "user:level": "4", + "user:parentId": "r06ohri9wA9" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.66242, 8.391836], + [-12.659582, 8.390417], + [-12.650417, 8.390417], + [-12.648749, 8.392083], + [-12.645209, 8.387943], + [-12.644105, 8.38652], + [-12.642265, 8.385727], + [-12.640494, 8.385115], + [-12.638949, 8.384972], + [-12.637784, 8.38437], + [-12.63695, 8.384791], + [-12.637046, 8.386049], + [-12.637253, 8.38659], + [-12.63702, 8.386838], + [-12.636999, 8.387407], + [-12.636607, 8.387807], + [-12.629236, 8.387193], + [-12.629203, 8.387291], + [-12.629521, 8.390347], + [-12.619583, 8.389584], + [-12.615417, 8.392917], + [-12.614583, 8.404583], + [-12.615658, 8.406018], + [-12.615295, 8.405836], + [-12.614039, 8.40552], + [-12.612878, 8.404746], + [-12.613189, 8.403719], + [-12.613688, 8.402779], + [-12.613654, 8.401912], + [-12.613302, 8.400814], + [-12.611622, 8.399768], + [-12.610662, 8.400152], + [-12.609137, 8.400185], + [-12.609123, 8.399492], + [-12.609587, 8.398751], + [-12.60407, 8.398751], + [-12.604489, 8.404209], + [-12.604316, 8.4043], + [-12.603291, 8.404406], + [-12.602934, 8.404595], + [-12.602493, 8.404849], + [-12.601159, 8.406825], + [-12.59968, 8.407943], + [-12.598848, 8.408828], + [-12.597873, 8.409069], + [-12.59706, 8.408986], + [-12.597372, 8.410272], + [-12.595417, 8.41125], + [-12.593749, 8.420416], + [-12.58625, 8.419584], + [-12.58125, 8.420417], + [-12.580652, 8.42281], + [-12.580904, 8.423012], + [-12.581007, 8.42305], + [-12.579583, 8.428749], + [-12.578749, 8.42875], + [-12.575416, 8.437916], + [-12.574496, 8.438837], + [-12.574495, 8.438836], + [-12.573733, 8.436394], + [-12.573633, 8.436112], + [-12.573489, 8.435417], + [-12.569583, 8.435417], + [-12.567917, 8.437084], + [-12.567917, 8.442083], + [-12.569582, 8.445416], + [-12.562352, 8.445417], + [-12.5633, 8.446858], + [-12.563584, 8.447328], + [-12.562748, 8.447869], + [-12.562451, 8.447891], + [-12.56212, 8.44799], + [-12.561368, 8.44872], + [-12.560698, 8.449009], + [-12.560238, 8.449031], + [-12.55961, 8.449492], + [-12.5607, 8.4508], + [-12.565699, 8.455199], + [-12.570999, 8.462899], + [-12.5731, 8.464299], + [-12.580899, 8.464], + [-12.589, 8.461199], + [-12.5999, 8.459499], + [-12.603599, 8.457399], + [-12.6055, 8.454599], + [-12.605699, 8.4505], + [-12.6027, 8.4433], + [-12.6018, 8.4378], + [-12.6022, 8.433], + [-12.6036, 8.429999], + [-12.6076, 8.4272], + [-12.614399, 8.4254], + [-12.6181, 8.423399], + [-12.6202, 8.421399], + [-12.623799, 8.4164], + [-12.626499, 8.4132], + [-12.6306, 8.409599], + [-12.639299, 8.4053], + [-12.6466, 8.403699], + [-12.649499, 8.4028], + [-12.652099, 8.4014], + [-12.6545, 8.399599], + [-12.661099, 8.3934], + [-12.66242, 8.391836] + ] + ], + "type": "Polygon" + }, + "id": 305, + "properties": { + "cc:admin:id": ["149"], + "cc:oBld:total": 281, + "cc:pop:fifteen-to-twenty-four": 401.4951085696849, + "cc:pop:grid3-total": 2201.538232723603, + "cc:pop:kontur-total": 2190.889340151596, + "cc:pop:men": 995.1589346301381, + "cc:pop:sixty-plus": 143.03554224746054, + "cc:pop:total": 2131.9165035531246, + "cc:pop:under-five": 349.22267312772124, + "cc:pop:women": 1136.7575689229864, + "cc:pop:women-fiften-to-forty-nine": 570.4003475006512, + "cc:pop:wp-total": 1617.9528183026073, + "cc:pop:wp-total-UN": 1875.4384551336982, + "cc:id": "305", + "cc:Name": "Magbaft MCHP", + "cc:site": [-12.5973, 8.4569], + "user:parentName": "Yoni", + "user:code": "OU_268248", + "user:orgUnitId": "XjpmsLNjyrz", + "user:level": "4", + "user:parentId": "NNE0YMCDZkO" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.274699, 8.907699], + [-12.273999, 8.9042], + [-12.268599, 8.8982], + [-12.264299, 8.897699], + [-12.2472, 8.8974], + [-12.2432, 8.897499], + [-12.2408, 8.8979], + [-12.2387, 8.8993], + [-12.2368, 8.904699], + [-12.235, 8.909099], + [-12.233799, 8.913399], + [-12.232099, 8.9155], + [-12.229499, 8.9163], + [-12.226499, 8.916599], + [-12.2182, 8.9164], + [-12.2152, 8.915999], + [-12.2128, 8.914799], + [-12.2098, 8.9112], + [-12.2076, 8.9095], + [-12.204899, 8.9087], + [-12.2028, 8.9091], + [-12.2013, 8.9106], + [-12.2012, 8.913199], + [-12.203, 8.9168], + [-12.2051, 8.9233], + [-12.207187, 8.927291], + [-12.210649, 8.924983], + [-12.211689, 8.925132], + [-12.217917, 8.932916], + [-12.223749, 8.930417], + [-12.224132, 8.92965], + [-12.224008, 8.929653], + [-12.222438, 8.929002], + [-12.220053, 8.926025], + [-12.218502, 8.924684], + [-12.220401, 8.922311], + [-12.226511, 8.922311], + [-12.229506, 8.927496], + [-12.231138, 8.926258], + [-12.232157, 8.92604], + [-12.232645, 8.926366], + [-12.233131, 8.927777], + [-12.232864, 8.92849], + [-12.232278, 8.929075], + [-12.238229, 8.929075], + [-12.242136, 8.922311], + [-12.246378, 8.92231], + [-12.246304, 8.921216], + [-12.244468, 8.918424], + [-12.244233, 8.917757], + [-12.244405, 8.917059], + [-12.244939, 8.916453], + [-12.246478, 8.915554], + [-12.252599, 8.912715], + [-12.253353, 8.91265], + [-12.257186, 8.913894], + [-12.259586, 8.913927], + [-12.2603, 8.913299], + [-12.263199, 8.9126], + [-12.268599, 8.9124], + [-12.270699, 8.912099], + [-12.273499, 8.910099], + [-12.274699, 8.907699] + ] + ], + "type": "Polygon" + }, + "id": 306, + "properties": { + "cc:admin:id": ["32"], + "cc:oBld:total": 1, + "cc:pop:fifteen-to-twenty-four": 88.74201575919119, + "cc:pop:grid3-total": 500.00000000000006, + "cc:pop:kontur-total": 471, + "cc:pop:men": 221.0136144607026, + "cc:pop:sixty-plus": 29.871007879595602, + "cc:pop:total": 469.96806303676476, + "cc:pop:under-five": 73.8710078795956, + "cc:pop:women": 248.9544485760622, + "cc:pop:women-fiften-to-forty-nine": 120.74201575919119, + "cc:pop:wp-total": 442, + "cc:pop:wp-total-UN": 516, + "cc:id": "306", + "cc:Name": "Magbaikoli MCHP", + "cc:site": [-12.2106, 8.9155], + "user:parentName": "Makari Gbanti", + "user:code": "OU_193252", + "user:orgUnitId": "cTU2WmWcJKx", + "user:level": "4", + "user:parentId": "lY93YpCxJqf" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.456413, 8.945252], + [-12.455099, 8.942399], + [-12.4514, 8.9366], + [-12.449299, 8.934599], + [-12.445099, 8.933099], + [-12.439799, 8.9329], + [-12.4331, 8.933299], + [-12.432999, 8.933299], + [-12.4244, 8.9327], + [-12.4202, 8.9319], + [-12.412399, 8.928699], + [-12.4038, 8.9239], + [-12.400399, 8.921099], + [-12.3915, 8.9133], + [-12.3849, 8.9089], + [-12.381399, 8.906099], + [-12.372399, 8.897499], + [-12.3548, 8.8798], + [-12.3515, 8.8768], + [-12.348299, 8.8749], + [-12.344799, 8.8741], + [-12.341399, 8.8745], + [-12.3382, 8.875799], + [-12.3323, 8.879399], + [-12.3249, 8.8827], + [-12.326699, 8.886999], + [-12.3274, 8.8899], + [-12.3278, 8.895], + [-12.327799, 8.901], + [-12.327499, 8.903399], + [-12.3259, 8.906299], + [-12.323099, 8.9083], + [-12.320799, 8.9089], + [-12.317799, 8.908999], + [-12.3056, 8.9089], + [-12.3022, 8.908299], + [-12.2993, 8.9066], + [-12.2966, 8.9041], + [-12.294899, 8.901899], + [-12.2907, 8.8927], + [-12.289599, 8.887], + [-12.287599, 8.884599], + [-12.2853, 8.8842], + [-12.2825, 8.886099], + [-12.2748, 8.893999], + [-12.2725, 8.896199], + [-12.2686, 8.8982], + [-12.274, 8.9042], + [-12.274699, 8.907699], + [-12.2735, 8.910099], + [-12.270699, 8.9121], + [-12.268599, 8.9124], + [-12.2632, 8.912599], + [-12.2603, 8.9133], + [-12.2578, 8.9155], + [-12.257, 8.918599], + [-12.2587, 8.922199], + [-12.2621, 8.925299], + [-12.2654, 8.9268], + [-12.269699, 8.927899], + [-12.271399, 8.9296], + [-12.271499, 8.932299], + [-12.270499, 8.9339], + [-12.268499, 8.934699], + [-12.2646, 8.934899], + [-12.2624, 8.9354], + [-12.2608, 8.937199], + [-12.2604, 8.939599], + [-12.261, 8.9421], + [-12.2625, 8.944099], + [-12.2651, 8.945299], + [-12.267999, 8.945099], + [-12.2724, 8.943], + [-12.274799, 8.943899], + [-12.275799, 8.9477], + [-12.274599, 8.9509], + [-12.272199, 8.953499], + [-12.2686, 8.955599], + [-12.2645, 8.9551], + [-12.260799, 8.955499], + [-12.256799, 8.9549], + [-12.2544, 8.9565], + [-12.2533, 8.9592], + [-12.2533, 8.961426], + [-12.253945, 8.962142], + [-12.25425, 8.962843], + [-12.254689, 8.961981], + [-12.26125, 8.967082], + [-12.262917, 8.967083], + [-12.266673, 8.970839], + [-12.267564, 8.970888], + [-12.270416, 8.968749], + [-12.271249, 8.965418], + [-12.27125, 8.965417], + [-12.274583, 8.967916], + [-12.279582, 8.967917], + [-12.282917, 8.970416], + [-12.284583, 8.969583], + [-12.287917, 8.972916], + [-12.292916, 8.972917], + [-12.293396, 8.972677], + [-12.293592, 8.973141], + [-12.293704, 8.973224], + [-12.295417, 8.972083], + [-12.296374, 8.97304], + [-12.296998, 8.972752], + [-12.298696, 8.974097], + [-12.299576, 8.974139], + [-12.300426, 8.974971], + [-12.300599, 8.975383], + [-12.300605, 8.975665], + [-12.30021, 8.976511], + [-12.300982, 8.977091], + [-12.301058, 8.977016], + [-12.301439, 8.975971], + [-12.302595, 8.975021], + [-12.302823, 8.973738], + [-12.303461, 8.973713], + [-12.304129, 8.973373], + [-12.304059, 8.972308], + [-12.305112, 8.971478], + [-12.30549, 8.971391], + [-12.30664, 8.9716], + [-12.308356, 8.972806], + [-12.3093, 8.972514], + [-12.309666, 8.972754], + [-12.310226, 8.972685], + [-12.310698, 8.972857], + [-12.31375, 8.970417], + [-12.317916, 8.970417], + [-12.322082, 8.974582], + [-12.322916, 8.970417], + [-12.324582, 8.96875], + [-12.33181, 8.96875], + [-12.331935, 8.968917], + [-12.332185, 8.967772], + [-12.332531, 8.967015], + [-12.332623, 8.965566], + [-12.332828, 8.964936], + [-12.33333, 8.964279], + [-12.334162, 8.962865], + [-12.335399, 8.96363], + [-12.338075, 8.963964], + [-12.339582, 8.964534], + [-12.339583, 8.96625], + [-12.34125, 8.973749], + [-12.34375, 8.977916], + [-12.347916, 8.973749], + [-12.350653, 8.966908], + [-12.351122, 8.96785], + [-12.353653, 8.969591], + [-12.356102, 8.970639], + [-12.35762, 8.971103], + [-12.359498, 8.972236], + [-12.360431, 8.972982], + [-12.361824, 8.97454], + [-12.362916, 8.976], + [-12.362917, 8.975416], + [-12.364583, 8.974582], + [-12.368749, 8.972916], + [-12.36875, 8.972082], + [-12.373749, 8.970417], + [-12.374583, 8.971249], + [-12.386248, 8.96875], + [-12.38625, 8.968751], + [-12.38625, 8.969208], + [-12.386494, 8.968531], + [-12.387232, 8.967645], + [-12.389003, 8.968668], + [-12.390509, 8.968947], + [-12.392158, 8.969052], + [-12.392793, 8.96893], + [-12.395041, 8.969279], + [-12.395526, 8.970127], + [-12.396562, 8.969671], + [-12.397712, 8.968885], + [-12.398562, 8.968857], + [-12.399488, 8.969262], + [-12.400474, 8.969313], + [-12.400969, 8.969016], + [-12.401554, 8.968194], + [-12.402813, 8.96344], + [-12.403744, 8.961289], + [-12.404523, 8.960806], + [-12.405559, 8.95973], + [-12.408054, 8.959238], + [-12.40883, 8.959148], + [-12.40918, 8.958931], + [-12.409443, 8.958516], + [-12.409543, 8.957603], + [-12.410348, 8.956247], + [-12.410361, 8.955905], + [-12.411472, 8.95553], + [-12.413165, 8.955532], + [-12.414138, 8.955723], + [-12.415358, 8.955458], + [-12.416723, 8.954443], + [-12.419328, 8.954514], + [-12.421242, 8.953203], + [-12.421249, 8.953197], + [-12.42125, 8.956463], + [-12.426308, 8.956463], + [-12.427083, 8.957083], + [-12.432919, 8.957082], + [-12.432865, 8.954957], + [-12.43335, 8.954229], + [-12.435959, 8.954198], + [-12.439804, 8.953329], + [-12.440788, 8.95296], + [-12.441762, 8.952263], + [-12.442402, 8.950626], + [-12.442449, 8.950012], + [-12.44211, 8.949466], + [-12.443365, 8.947293], + [-12.443366, 8.947293], + [-12.443635, 8.947515], + [-12.444375, 8.947372], + [-12.445035, 8.946985], + [-12.444965, 8.946467], + [-12.444312, 8.945473], + [-12.444212, 8.945176], + [-12.445417, 8.945417], + [-12.454582, 8.946249], + [-12.456249, 8.945417], + [-12.456413, 8.945252] + ] + ], + "type": "Polygon" + }, + "id": 307, + "properties": { + "cc:admin:id": ["73"], + "cc:oBld:total": 347, + "cc:pop:fifteen-to-twenty-four": 997.6784526247482, + "cc:pop:grid3-total": 4631.901685238718, + "cc:pop:kontur-total": 5460.949430762883, + "cc:pop:men": 2508.387922989648, + "cc:pop:sixty-plus": 356.61062238282295, + "cc:pop:total": 5409.0821512574885, + "cc:pop:under-five": 823.78468143664, + "cc:pop:women": 2900.6942282678424, + "cc:pop:women-fiften-to-forty-nine": 1398.4947649128876, + "cc:pop:wp-total": 4252.196211719003, + "cc:pop:wp-total-UN": 4931.110731661168, + "cc:id": "307", + "cc:Name": "Magbaingba MCHP", + "cc:site": [-12.34627, 8.92733], + "user:parentName": "Libeisaygahun", + "user:code": "OU_193306", + "user:orgUnitId": "DIQl5jJ17IE", + "user:level": "4", + "user:parentId": "hRZOIgQ0O1m" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.490443, 8.419154], + [-12.490416, 8.419074], + [-12.490416, 8.40875], + [-12.486649, 8.40875], + [-12.488446, 8.413587], + [-12.487925, 8.413785], + [-12.485988, 8.413642], + [-12.485082, 8.413835], + [-12.484582, 8.414584], + [-12.480428, 8.414584], + [-12.479743, 8.414766], + [-12.478112, 8.414459], + [-12.477917, 8.414322], + [-12.477916, 8.40625], + [-12.477083, 8.405416], + [-12.47625, 8.40375], + [-12.476249, 8.402084], + [-12.467917, 8.402083], + [-12.467917, 8.394584], + [-12.467082, 8.392917], + [-12.458749, 8.394583], + [-12.456947, 8.393502], + [-12.456747, 8.392902], + [-12.456838, 8.392615], + [-12.457519, 8.391947], + [-12.457965, 8.390774], + [-12.45875, 8.389681], + [-12.454583, 8.389681], + [-12.454582, 8.393749], + [-12.442917, 8.39375], + [-12.442082, 8.392917], + [-12.43625, 8.392916], + [-12.435416, 8.387917], + [-12.427917, 8.388749], + [-12.427916, 8.38625], + [-12.425783, 8.385182], + [-12.426308, 8.383809], + [-12.426249, 8.38375], + [-12.422917, 8.384583], + [-12.422916, 8.382084], + [-12.421175, 8.380343], + [-12.420646, 8.380533], + [-12.419302, 8.381254], + [-12.416499, 8.383159], + [-12.415667, 8.383535], + [-12.414765, 8.383665], + [-12.414009, 8.38399], + [-12.413407, 8.3829], + [-12.41272, 8.38258], + [-12.412516, 8.382324], + [-12.407432, 8.375746], + [-12.404928, 8.372084], + [-12.404582, 8.372084], + [-12.402916, 8.374583], + [-12.39875, 8.374583], + [-12.397916, 8.370417], + [-12.396339, 8.36884], + [-12.387273, 8.368619], + [-12.386249, 8.367084], + [-12.382917, 8.365417], + [-12.382916, 8.36375], + [-12.380596, 8.362977], + [-12.380582, 8.363], + [-12.380416, 8.362917], + [-12.37625, 8.364584], + [-12.376249, 8.366249], + [-12.374582, 8.365417], + [-12.36875, 8.365416], + [-12.366249, 8.36125], + [-12.362083, 8.367916], + [-12.367082, 8.370417], + [-12.366249, 8.372916], + [-12.362917, 8.374584], + [-12.36125, 8.376249], + [-12.364566, 8.378903], + [-12.364566, 8.378904], + [-12.364458, 8.378978], + [-12.365416, 8.380416], + [-12.362917, 8.382084], + [-12.362917, 8.387083], + [-12.368749, 8.389584], + [-12.368749, 8.392084], + [-12.36375, 8.39625], + [-12.36625, 8.402083], + [-12.368749, 8.404584], + [-12.367917, 8.407917], + [-12.367916, 8.412916], + [-12.36625, 8.41375], + [-12.369264, 8.42204], + [-12.369171, 8.422079], + [-12.368922, 8.42207], + [-12.367917, 8.424584], + [-12.367917, 8.428749], + [-12.372083, 8.429583], + [-12.377083, 8.42875], + [-12.37875, 8.432083], + [-12.382082, 8.433749], + [-12.38375, 8.436249], + [-12.385417, 8.43625], + [-12.387916, 8.438749], + [-12.38875, 8.445416], + [-12.389583, 8.445417], + [-12.394583, 8.450416], + [-12.403749, 8.450417], + [-12.404137, 8.45158], + [-12.403904, 8.451984], + [-12.40781, 8.458749], + [-12.418749, 8.45875], + [-12.41875, 8.464583], + [-12.427083, 8.467917], + [-12.430416, 8.470416], + [-12.430417, 8.473749], + [-12.437466, 8.476569], + [-12.437046, 8.477215], + [-12.435782, 8.478198], + [-12.43534, 8.479143], + [-12.434167, 8.480629], + [-12.43355, 8.482149], + [-12.4375, 8.478199], + [-12.441099, 8.4738], + [-12.444399, 8.4685], + [-12.447099, 8.4653], + [-12.4515, 8.462], + [-12.4568, 8.460199], + [-12.463799, 8.4593], + [-12.4666, 8.458699], + [-12.47996, 8.454386], + [-12.480177, 8.453884], + [-12.480159, 8.453451], + [-12.479833, 8.452004], + [-12.480202, 8.451638], + [-12.480412, 8.451139], + [-12.482128, 8.452138], + [-12.486249, 8.444584], + [-12.482917, 8.440416], + [-12.482916, 8.439583], + [-12.482083, 8.432084], + [-12.489353, 8.429174], + [-12.489081, 8.428684], + [-12.48855, 8.42734], + [-12.488483, 8.425672], + [-12.489327, 8.422961], + [-12.490443, 8.419154] + ] + ], + "type": "Polygon" + }, + "id": 308, + "properties": { + "cc:admin:id": ["149"], + "cc:oBld:total": 138, + "cc:pop:fifteen-to-twenty-four": 1036.046543115011, + "cc:pop:grid3-total": 4586.86294523184, + "cc:pop:kontur-total": 5687.958282743363, + "cc:pop:men": 2564.181591309615, + "cc:pop:sixty-plus": 353.60652505448206, + "cc:pop:total": 5524.940047153832, + "cc:pop:under-five": 891.1704712586259, + "cc:pop:women": 2960.7584558442168, + "cc:pop:women-fiften-to-forty-nine": 1465.508788677251, + "cc:pop:wp-total": 5926.139432728268, + "cc:pop:wp-total-UN": 6868.25882854942, + "cc:id": "308", + "cc:Name": "Magbass MCHP", + "cc:site": [-12.424, 8.4199], + "user:parentName": "Kholifa Rowalla", + "user:code": "OU_268152", + "user:orgUnitId": "sFgNRYS5pBo", + "user:level": "4", + "user:parentId": "PQZJPIpTepd" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.883072, 8.554958], + [-12.880416, 8.557083], + [-12.879879, 8.556831], + [-12.881043, 8.555597], + [-12.881791, 8.554446], + [-12.882225, 8.553155], + [-12.881577, 8.553128], + [-12.880827, 8.554521], + [-12.880472, 8.554821], + [-12.879727, 8.555008], + [-12.878409, 8.556146], + [-12.875485, 8.554782], + [-12.875516, 8.554675], + [-12.875475, 8.553268], + [-12.875851, 8.552217], + [-12.876906, 8.550981], + [-12.877238, 8.550988], + [-12.877558, 8.55068], + [-12.877601, 8.550227], + [-12.877799, 8.550076], + [-12.880109, 8.549432], + [-12.880429, 8.54911], + [-12.88071, 8.549211], + [-12.881096, 8.549074], + [-12.881759, 8.548464], + [-12.881934, 8.547862], + [-12.881608, 8.547817], + [-12.881021, 8.548096], + [-12.880571, 8.548848], + [-12.879871, 8.548435], + [-12.879626, 8.548856], + [-12.878887, 8.549511], + [-12.877852, 8.549406], + [-12.877584, 8.549195], + [-12.877104, 8.548217], + [-12.876571, 8.547824], + [-12.876294, 8.547022], + [-12.874738, 8.545839], + [-12.874576, 8.545417], + [-12.874583, 8.545416], + [-12.87581, 8.544597], + [-12.874977, 8.543131], + [-12.873908, 8.542238], + [-12.874633, 8.539176], + [-12.874623, 8.53871], + [-12.874405, 8.538224], + [-12.873923, 8.537742], + [-12.87149, 8.536495], + [-12.870901, 8.535913], + [-12.870793, 8.535362], + [-12.871216, 8.532247], + [-12.870832, 8.531405], + [-12.869626, 8.529847], + [-12.869408, 8.52909], + [-12.870317, 8.527637], + [-12.862917, 8.525417], + [-12.862916, 8.52125], + [-12.853749, 8.522916], + [-12.850945, 8.517307], + [-12.851153, 8.516894], + [-12.852209, 8.515346], + [-12.854415, 8.514155], + [-12.849583, 8.512083], + [-12.851024, 8.504152], + [-12.845706, 8.504152], + [-12.844919, 8.50471], + [-12.843801, 8.505279], + [-12.840546, 8.510917], + [-12.84181, 8.513109], + [-12.83375, 8.51125], + [-12.83125, 8.512917], + [-12.831249, 8.514584], + [-12.829565, 8.516829], + [-12.828906, 8.516765], + [-12.826954, 8.515659], + [-12.825618, 8.514445], + [-12.817917, 8.522916], + [-12.813749, 8.520417], + [-12.804583, 8.524584], + [-12.804582, 8.533749], + [-12.802083, 8.53625], + [-12.802916, 8.542916], + [-12.792917, 8.547917], + [-12.792083, 8.54875], + [-12.792082, 8.549757], + [-12.791752, 8.549755], + [-12.790118, 8.549944], + [-12.789582, 8.552084], + [-12.78375, 8.555417], + [-12.783749, 8.559108], + [-12.783375, 8.559923], + [-12.783246, 8.560472], + [-12.782403, 8.560566], + [-12.781723, 8.563488], + [-12.780816, 8.566569], + [-12.7818, 8.566099], + [-12.788, 8.5649], + [-12.8047, 8.565799], + [-12.825899, 8.5645], + [-12.842899, 8.5642], + [-12.8476, 8.5625], + [-12.852399, 8.5623], + [-12.8579, 8.564199], + [-12.8653, 8.563999], + [-12.869599, 8.5635], + [-12.8736, 8.562199], + [-12.879599, 8.5588], + [-12.881774, 8.557993], + [-12.883018, 8.555037], + [-12.883072, 8.554958] + ] + ], + "type": "Polygon" + }, + "id": 309, + "properties": { + "cc:admin:id": ["62"], + "cc:oBld:total": 14, + "cc:pop:fifteen-to-twenty-four": 573.5065588832755, + "cc:pop:grid3-total": 2050.426548665149, + "cc:pop:kontur-total": 3302.146236015282, + "cc:pop:men": 1515.1142831477, + "cc:pop:sixty-plus": 173.5799044054785, + "cc:pop:total": 3207.2312365383286, + "cc:pop:under-five": 532.8738262813439, + "cc:pop:women": 1692.1169533906289, + "cc:pop:women-fiften-to-forty-nine": 875.1677481572092, + "cc:pop:wp-total": 2552.7381522560377, + "cc:pop:wp-total-UN": 2958.392031894326, + "cc:id": "309", + "cc:Name": "Magbeni MCHP", + "cc:site": [-12.8132, 8.5552], + "user:parentName": "Koya", + "user:code": "OU_254963", + "user:orgUnitId": "UJ80rknbJtm", + "user:level": "4", + "user:parentId": "pRHGAROvuyI" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.528199, 8.741099], + [-12.525599, 8.737799], + [-12.522599, 8.732499], + [-12.518299, 8.727099], + [-12.516099, 8.722799], + [-12.5136, 8.7185], + [-12.512299, 8.715399], + [-12.509799, 8.711099], + [-12.508499, 8.707899], + [-12.506, 8.7036], + [-12.5041, 8.6998], + [-12.4992, 8.6936], + [-12.496999, 8.689299], + [-12.4945, 8.685], + [-12.493199, 8.681899], + [-12.4907, 8.6776], + [-12.4893, 8.6744], + [-12.486899, 8.670099], + [-12.4829, 8.6618], + [-12.481599, 8.656699], + [-12.479399, 8.651399], + [-12.4786, 8.6477], + [-12.4783, 8.6419], + [-12.4777, 8.6382], + [-12.4755, 8.6328], + [-12.4747, 8.6291], + [-12.4744, 8.6233], + [-12.4736, 8.6192], + [-12.471199, 8.613299], + [-12.470699, 8.609499], + [-12.4704, 8.6037], + [-12.4696, 8.6001], + [-12.4677, 8.5955], + [-12.4665, 8.5905], + [-12.4656, 8.5886], + [-12.463399, 8.585999], + [-12.4551, 8.5816], + [-12.451799, 8.580299], + [-12.447499, 8.577999], + [-12.444199, 8.576699], + [-12.4359, 8.5724], + [-12.4334, 8.569399], + [-12.432699, 8.566799], + [-12.4325, 8.564], + [-12.432499, 8.541499], + [-12.4323, 8.5376], + [-12.4317, 8.5339], + [-12.429399, 8.528499], + [-12.428799, 8.525999], + [-12.4277, 8.519], + [-12.425499, 8.513599], + [-12.424899, 8.510899], + [-12.424099, 8.505099], + [-12.422599, 8.5016], + [-12.418799, 8.4973], + [-12.4049, 8.4969], + [-12.400499, 8.496099], + [-12.395899, 8.494699], + [-12.3904, 8.4945], + [-12.375599, 8.498], + [-12.371999, 8.4999], + [-12.3689, 8.502699], + [-12.366199, 8.5059], + [-12.362099, 8.5121], + [-12.3593, 8.515199], + [-12.3559, 8.517599], + [-12.351999, 8.519], + [-12.341, 8.5211], + [-12.3364, 8.524099], + [-12.332799, 8.5283], + [-12.327499, 8.538299], + [-12.324699, 8.540599], + [-12.320599, 8.5418], + [-12.3103, 8.542599], + [-12.306199, 8.5435], + [-12.2962, 8.546899], + [-12.287699, 8.5519], + [-12.281199, 8.5542], + [-12.2696, 8.5588], + [-12.270199, 8.564499], + [-12.271699, 8.568199], + [-12.2751, 8.5716], + [-12.2823, 8.5755], + [-12.288899, 8.578299], + [-12.2956, 8.5803], + [-12.303299, 8.583799], + [-12.310599, 8.588199], + [-12.317799, 8.5914], + [-12.320799, 8.595099], + [-12.321599, 8.600099], + [-12.3198, 8.6085], + [-12.3198, 8.6128], + [-12.321099, 8.6199], + [-12.3201, 8.628799], + [-12.3207, 8.631599], + [-12.3235, 8.635299], + [-12.3264, 8.637099], + [-12.330399, 8.637499], + [-12.3373, 8.635899], + [-12.342999, 8.6354], + [-12.347299, 8.635799], + [-12.361499, 8.639799], + [-12.367899, 8.644099], + [-12.3743, 8.6478], + [-12.3764, 8.6498], + [-12.377999, 8.652299], + [-12.378699, 8.655099], + [-12.378799, 8.6594], + [-12.376599, 8.6683], + [-12.375899, 8.6821], + [-12.375199, 8.684899], + [-12.373099, 8.688199], + [-12.369899, 8.6903], + [-12.365699, 8.691], + [-12.355399, 8.6918], + [-12.351599, 8.6929], + [-12.346299, 8.6953], + [-12.3424, 8.697799], + [-12.34, 8.699799], + [-12.334699, 8.7077], + [-12.332099, 8.7101], + [-12.3279, 8.7131], + [-12.332899, 8.718399], + [-12.3354, 8.7216], + [-12.3368, 8.7249], + [-12.337299, 8.729299], + [-12.335999, 8.7336], + [-12.3307, 8.741599], + [-12.326299, 8.75], + [-12.324699, 8.756], + [-12.3243, 8.7616], + [-12.324399, 8.772999], + [-12.323899, 8.777099], + [-12.321899, 8.7816], + [-12.3179, 8.786299], + [-12.3173, 8.787499], + [-12.320899, 8.791999], + [-12.324599, 8.795099], + [-12.3272, 8.796599], + [-12.3296, 8.7971], + [-12.333499, 8.797299], + [-12.337399, 8.7971], + [-12.341199, 8.7963], + [-12.346399, 8.794], + [-12.3515, 8.792799], + [-12.3567, 8.790299], + [-12.364999, 8.7865], + [-12.3701, 8.785399], + [-12.3793, 8.780999], + [-12.3823, 8.778599], + [-12.389399, 8.7715], + [-12.393099, 8.7684], + [-12.401399, 8.7643], + [-12.4041, 8.763699], + [-12.406999, 8.7635], + [-12.415699, 8.7634], + [-12.419399, 8.7627], + [-12.423899, 8.7608], + [-12.426499, 8.7601], + [-12.4331, 8.759299], + [-12.441999, 8.7555], + [-12.446199, 8.7531], + [-12.4494, 8.751699], + [-12.4523, 8.749499], + [-12.4553, 8.746099], + [-12.4581, 8.7423], + [-12.463999, 8.7384], + [-12.466099, 8.7377], + [-12.4695, 8.7373], + [-12.476399, 8.737499], + [-12.479199, 8.738199], + [-12.484399, 8.740499], + [-12.4895, 8.7418], + [-12.4927, 8.7435], + [-12.4978, 8.747299], + [-12.5014, 8.7485], + [-12.5053, 8.7487], + [-12.514899, 8.748699], + [-12.520299, 8.7458], + [-12.524899, 8.7438], + [-12.528199, 8.741099] + ] + ], + "type": "Polygon" + }, + "id": 310, + "properties": { + "cc:admin:id": ["92"], + "cc:oBld:total": 585, + "cc:pop:fifteen-to-twenty-four": 10157.536026624184, + "cc:pop:grid3-total": 18121.53613459695, + "cc:pop:kontur-total": 54097.0136479929, + "cc:pop:men": 25944.286738292914, + "cc:pop:sixty-plus": 3422.841127593977, + "cc:pop:total": 54228.71319038776, + "cc:pop:under-five": 8700.745767853965, + "cc:pop:women": 28284.42645209484, + "cc:pop:women-fiften-to-forty-nine": 13740.348791379985, + "cc:pop:wp-total": 46930.19508373279, + "cc:pop:wp-total-UN": 54413.579509363444, + "cc:id": "310", + "cc:Name": "Magbil MCHP", + "cc:site": [-12.4889, 8.6935], + "user:parentName": "Marampa", + "user:code": "OU_255054", + "user:orgUnitId": "n9HIySyR00g", + "user:level": "4", + "user:parentId": "RWvG1aFrr0r" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.723339, 9.038648], + [-12.723299, 9.037299], + [-12.7215, 9.0294], + [-12.7211, 9.0248], + [-12.721999, 9.0173], + [-12.721799, 9.01], + [-12.719599, 9.0072], + [-12.717699, 9.0061], + [-12.7142, 9.0057], + [-12.7108, 9.0064], + [-12.708899, 9.0077], + [-12.7047, 9.011099], + [-12.702599, 9.0122], + [-12.699299, 9.0129], + [-12.692299, 9.013099], + [-12.6852, 9.0129], + [-12.6813, 9.0121], + [-12.676199, 9.009499], + [-12.6718, 9.0077], + [-12.6697, 9.0073], + [-12.663299, 9.0089], + [-12.658099, 9.009299], + [-12.6503, 9.009], + [-12.647599, 9.008299], + [-12.642199, 9.005999], + [-12.6393, 9.0055], + [-12.636399, 9.0054], + [-12.6335, 9.006], + [-12.6304, 9.008099], + [-12.626899, 9.0138], + [-12.625199, 9.015499], + [-12.6231, 9.016399], + [-12.620699, 9.0168], + [-12.617699, 9.016799], + [-12.6139, 9.016], + [-12.611724, 9.015033], + [-12.608748, 9.015597], + [-12.608306, 9.015896], + [-12.606795, 9.017874], + [-12.606227, 9.019007], + [-12.605786, 9.01948], + [-12.604463, 9.020289], + [-12.603506, 9.020562], + [-12.600395, 9.020761], + [-12.598164, 9.021732], + [-12.596049, 9.021967], + [-12.594926, 9.021894], + [-12.592534, 9.022079], + [-12.591877, 9.022354], + [-12.590634, 9.023471], + [-12.589954, 9.024616], + [-12.589299, 9.026408], + [-12.588241, 9.028099], + [-12.587385, 9.028746], + [-12.586477, 9.029145], + [-12.58542, 9.029966], + [-12.584059, 9.032056], + [-12.583604, 9.033102], + [-12.583489, 9.033791], + [-12.583442, 9.034993], + [-12.582525, 9.037544], + [-12.582637, 9.03836], + [-12.581705, 9.040039], + [-12.580637, 9.040932], + [-12.580207, 9.040822], + [-12.579885, 9.041043], + [-12.576052, 9.044145], + [-12.574478, 9.046529], + [-12.573702, 9.047359], + [-12.573031, 9.049993], + [-12.572982, 9.050816], + [-12.573193, 9.052071], + [-12.57356, 9.053069], + [-12.573525, 9.053515], + [-12.572932, 9.054043], + [-12.572077, 9.054323], + [-12.570172, 9.054846], + [-12.567547, 9.05527], + [-12.566079, 9.055744], + [-12.563424, 9.057313], + [-12.561878, 9.058791], + [-12.561039, 9.061301], + [-12.561008, 9.062916], + [-12.567082, 9.062917], + [-12.571249, 9.06625], + [-12.571866, 9.074254], + [-12.572147, 9.074255], + [-12.573374, 9.074693], + [-12.573922, 9.075218], + [-12.575155, 9.0757], + [-12.576166, 9.07699], + [-12.572289, 9.083708], + [-12.575416, 9.089125], + [-12.575417, 9.07875], + [-12.579583, 9.075417], + [-12.59207, 9.075417], + [-12.592804, 9.075682], + [-12.594495, 9.077346], + [-12.596369, 9.077658], + [-12.596392, 9.077777], + [-12.601249, 9.077083], + [-12.609583, 9.083749], + [-12.617917, 9.07875], + [-12.62125, 9.082916], + [-12.623678, 9.08413], + [-12.623886, 9.083887], + [-12.62722, 9.087221], + [-12.627508, 9.088268], + [-12.627768, 9.088506], + [-12.627083, 9.091249], + [-12.630693, 9.096304], + [-12.629, 9.098167], + [-12.63125, 9.107916], + [-12.639582, 9.105416], + [-12.640586, 9.104412], + [-12.640535, 9.10428], + [-12.640518, 9.102084], + [-12.640519, 9.102083], + [-12.645133, 9.102083], + [-12.646264, 9.103365], + [-12.646646, 9.104062], + [-12.647608, 9.104484], + [-12.64844, 9.104858], + [-12.649033, 9.105714], + [-12.64987, 9.106249], + [-12.655416, 9.106249], + [-12.656699, 9.105608], + [-12.656928, 9.105306], + [-12.657213, 9.104681], + [-12.658126, 9.103746], + [-12.658899, 9.10347], + [-12.6591, 9.102899], + [-12.6611, 9.1016], + [-12.663999, 9.1013], + [-12.667, 9.102199], + [-12.673799, 9.1008], + [-12.682499, 9.0966], + [-12.686199, 9.0936], + [-12.6885, 9.090699], + [-12.6942, 9.0809], + [-12.701399, 9.0749], + [-12.7074, 9.069399], + [-12.714099, 9.0626], + [-12.717999, 9.0573], + [-12.720799, 9.0507], + [-12.722499, 9.0452], + [-12.723399, 9.0407], + [-12.723339, 9.038648] + ] + ], + "type": "Polygon" + }, + "id": 311, + "properties": { + "cc:admin:id": ["117"], + "cc:oBld:total": 358, + "cc:pop:fifteen-to-twenty-four": 1991.619186181793, + "cc:pop:grid3-total": 12093.583857320045, + "cc:pop:kontur-total": 10854.855193892516, + "cc:pop:men": 5012.123280209263, + "cc:pop:sixty-plus": 696.8232988722993, + "cc:pop:total": 10818.943158559434, + "cc:pop:under-five": 1757.4178765825588, + "cc:pop:women": 5806.819878350174, + "cc:pop:women-fiften-to-forty-nine": 2850.7756377467636, + "cc:pop:wp-total": 9722.843272396636, + "cc:pop:wp-total-UN": 11266.650450520354, + "cc:id": "311", + "cc:Name": "Magbolonthor MCHP", + "cc:site": [-12.6722, 9.0644], + "user:parentName": "Sanda Magbolonthor", + "user:code": "OU_255001", + "user:orgUnitId": "XfVYz6l2rzg", + "user:level": "4", + "user:parentId": "HWjrSuoNPte" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.003313, 8.678442], + [-12.002036, 8.677837], + [-12.001278, 8.677954], + [-12.000826, 8.678344], + [-11.999981, 8.679588], + [-11.998156, 8.681405], + [-11.998041, 8.681722], + [-11.998036, 8.681726], + [-11.99625, 8.67875], + [-11.998749, 8.669583], + [-11.986932, 8.669582], + [-11.986019, 8.665818], + [-11.986048, 8.663652], + [-11.985472, 8.661837], + [-11.985347, 8.65943], + [-11.985703, 8.657732], + [-11.985463, 8.657258], + [-11.984558, 8.656813], + [-11.983374, 8.658822], + [-11.980886, 8.661739], + [-11.980162, 8.662397], + [-11.979641, 8.662672], + [-11.979553, 8.662715], + [-11.977542, 8.663784], + [-11.97719, 8.664224], + [-11.976944, 8.664943], + [-11.976308, 8.666909], + [-11.9741, 8.669421], + [-11.97296, 8.671558], + [-11.972447, 8.672362], + [-11.969116, 8.67604], + [-11.967208, 8.678751], + [-11.964738, 8.68244], + [-11.963192, 8.684835], + [-11.957039, 8.685955], + [-11.957011, 8.687057], + [-11.956429, 8.688109], + [-11.956493, 8.688971], + [-11.955139, 8.689191], + [-11.954168, 8.689023], + [-11.952732, 8.688485], + [-11.952266, 8.688047], + [-11.950274, 8.687885], + [-11.947779, 8.688435], + [-11.946352, 8.688358], + [-11.945656, 8.687894], + [-11.945494, 8.68902], + [-11.945301, 8.689393], + [-11.944512, 8.690242], + [-11.943486, 8.691915], + [-11.942328, 8.695826], + [-11.940352, 8.698749], + [-11.937917, 8.698749], + [-11.932917, 8.69625], + [-11.932916, 8.69875], + [-11.932083, 8.702082], + [-11.934582, 8.70375], + [-11.934583, 8.708984], + [-11.93349, 8.709698], + [-11.932928, 8.710044], + [-11.932591, 8.710249], + [-11.932609, 8.710519], + [-11.933631, 8.710876], + [-11.934326, 8.711513], + [-11.93565, 8.712684], + [-11.936021, 8.713415], + [-11.937008, 8.71567], + [-11.938023, 8.717904], + [-11.93781, 8.718137], + [-11.937506, 8.71806], + [-11.937209, 8.718297], + [-11.93722, 8.718518], + [-11.937314, 8.718652], + [-11.937488, 8.718811], + [-11.937339, 8.719192], + [-11.937248, 8.71944], + [-11.937411, 8.720133], + [-11.937416, 8.720163], + [-11.937442, 8.72024], + [-11.935206, 8.721509], + [-11.936012, 8.722142], + [-11.936893, 8.722957], + [-11.937119, 8.723246], + [-11.938054, 8.724529], + [-11.937427, 8.725143], + [-11.939254, 8.726636], + [-11.939513, 8.727119], + [-11.938494, 8.727517], + [-11.937594, 8.72786], + [-11.937527, 8.727921], + [-11.937996, 8.728859], + [-11.937998, 8.728866], + [-11.937954, 8.728968], + [-11.938608, 8.730484], + [-11.938626, 8.730528], + [-11.938756, 8.730886], + [-11.938762, 8.730894], + [-11.9467, 8.725399], + [-11.9493, 8.723099], + [-11.953699, 8.7182], + [-11.9584, 8.715199], + [-11.9681, 8.710499], + [-11.974799, 8.7086], + [-11.980199, 8.7066], + [-11.986399, 8.705499], + [-11.9887, 8.700999], + [-11.9937, 8.693599], + [-11.9977, 8.684899], + [-11.9998, 8.681599], + [-12.001699, 8.6795], + [-12.003313, 8.678442] + ] + ], + "type": "Polygon" + }, + "id": 312, + "properties": { + "cc:admin:id": ["54"], + "cc:oBld:total": 2541, + "cc:pop:fifteen-to-twenty-four": 3547.8680413739958, + "cc:pop:grid3-total": 15588.144745103335, + "cc:pop:kontur-total": 17951.841155664606, + "cc:pop:men": 9030.295864421954, + "cc:pop:sixty-plus": 1200.096335132703, + "cc:pop:total": 19085.41012513131, + "cc:pop:under-five": 3058.012922971783, + "cc:pop:women": 10055.114260709352, + "cc:pop:women-fiften-to-forty-nine": 4884.082585490972, + "cc:pop:wp-total": 15711.832459760708, + "cc:pop:wp-total-UN": 18219.933210307383, + "cc:id": "312", + "cc:Name": "Magburaka Govt. Hospital", + "cc:site": [-11.9388, 8.7208], + "user:parentName": "Kholifa Rowalla", + "user:code": "OU_268156", + "user:orgUnitId": "mEUUK7MHLSF", + "user:level": "4", + "user:parentId": "PQZJPIpTepd" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.208198, 9.386249], + [-12.204411, 9.37969], + [-12.200147, 9.379689], + [-12.199583, 9.372917], + [-12.199583, 9.372084], + [-12.199584, 9.372083], + [-12.201249, 9.372916], + [-12.202916, 9.367083], + [-12.203749, 9.362083], + [-12.19875, 9.359583], + [-12.198152, 9.357194], + [-12.198126, 9.357202], + [-12.197572, 9.357713], + [-12.19757, 9.357712], + [-12.19625, 9.35375], + [-12.199152, 9.347945], + [-12.1969, 9.346999], + [-12.1944, 9.344099], + [-12.1927, 9.3375], + [-12.1907, 9.333], + [-12.1887, 9.3291], + [-12.186299, 9.325999], + [-12.1829, 9.3225], + [-12.180699, 9.320599], + [-12.178299, 9.318999], + [-12.1706, 9.3155], + [-12.166999, 9.314799], + [-12.1544, 9.3147], + [-12.1497, 9.3141], + [-12.144299, 9.311899], + [-12.1364, 9.310299], + [-12.133, 9.3076], + [-12.1292, 9.311899], + [-12.124999, 9.3156], + [-12.121999, 9.3177], + [-12.118099, 9.3195], + [-12.1106, 9.323299], + [-12.1074, 9.325899], + [-12.104399, 9.3299], + [-12.102699, 9.3338], + [-12.098899, 9.3413], + [-12.096299, 9.3445], + [-12.0924, 9.347599], + [-12.084799, 9.3512], + [-12.080699, 9.3519], + [-12.075417, 9.352042], + [-12.075417, 9.356249], + [-12.078749, 9.360416], + [-12.075417, 9.36125], + [-12.072083, 9.365417], + [-12.072083, 9.374582], + [-12.077083, 9.379582], + [-12.084531, 9.379583], + [-12.082997, 9.382243], + [-12.086903, 9.389008], + [-12.094715, 9.389008], + [-12.098621, 9.382244], + [-12.106433, 9.382244], + [-12.110341, 9.389008], + [-12.114842, 9.389009], + [-12.117917, 9.392082], + [-12.126028, 9.392083], + [-12.126223, 9.393007], + [-12.126226, 9.393088], + [-12.122917, 9.39375], + [-12.119583, 9.397917], + [-12.119583, 9.407701], + [-12.119918, 9.407654], + [-12.122332, 9.407669], + [-12.123598, 9.407912], + [-12.122917, 9.415416], + [-12.122917, 9.418471], + [-12.124031, 9.417865], + [-12.125288, 9.416852], + [-12.125617, 9.415905], + [-12.126072, 9.413512], + [-12.126694, 9.409967], + [-12.133749, 9.412082], + [-12.135932, 9.409901], + [-12.140544, 9.409901], + [-12.144451, 9.416666], + [-12.140545, 9.423432], + [-12.141651, 9.425347], + [-12.144583, 9.426249], + [-12.146249, 9.426249], + [-12.147083, 9.425416], + [-12.149582, 9.42375], + [-12.150417, 9.422917], + [-12.15625, 9.422917], + [-12.166249, 9.42375], + [-12.167082, 9.43375], + [-12.159583, 9.440416], + [-12.162083, 9.442082], + [-12.165417, 9.442083], + [-12.168749, 9.444582], + [-12.169582, 9.444582], + [-12.172916, 9.437083], + [-12.177082, 9.437917], + [-12.178749, 9.442917], + [-12.175417, 9.453749], + [-12.17875, 9.456249], + [-12.183272, 9.456249], + [-12.184947, 9.455701], + [-12.191249, 9.44625], + [-12.192082, 9.446249], + [-12.194582, 9.44125], + [-12.193749, 9.43625], + [-12.190417, 9.432083], + [-12.189801, 9.432006], + [-12.189517, 9.431516], + [-12.193423, 9.42475], + [-12.201235, 9.424749], + [-12.203286, 9.421199], + [-12.203749, 9.421249], + [-12.204582, 9.419583], + [-12.204582, 9.409583], + [-12.202917, 9.408749], + [-12.202916, 9.40375], + [-12.20108, 9.403291], + [-12.200797, 9.402192], + [-12.197666, 9.402902], + [-12.19696, 9.40275], + [-12.19502, 9.401506], + [-12.194057, 9.400916], + [-12.193907, 9.40083], + [-12.194582, 9.395417], + [-12.195419, 9.39249], + [-12.201797, 9.392489], + [-12.2054, 9.38625], + [-12.208198, 9.386249] + ] + ], + "type": "Polygon" + }, + "id": 313, + "properties": { + "cc:admin:id": ["116"], + "cc:oBld:total": 46, + "cc:pop:fifteen-to-twenty-four": 814.2559010766182, + "cc:pop:grid3-total": 2832.6965371331216, + "cc:pop:kontur-total": 4293.13365711773, + "cc:pop:men": 2091.4714559179924, + "cc:pop:sixty-plus": 264.9688721848384, + "cc:pop:total": 4401.797894116527, + "cc:pop:under-five": 714.4823392044549, + "cc:pop:women": 2310.326438198534, + "cc:pop:women-fiften-to-forty-nine": 1118.1515615792548, + "cc:pop:wp-total": 4000.237954747155, + "cc:pop:wp-total-UN": 4646.163575404422, + "cc:id": "313", + "cc:Name": "Maharibo MCHP", + "cc:site": [-12.1498, 9.3911], + "user:parentName": "Sanda Loko", + "user:code": "OU_193241", + "user:orgUnitId": "CKJ9YS2AbWy", + "user:level": "4", + "user:parentId": "WXnNDWTiE9r" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.304899, 9.002599], + [-12.304599, 9.0003], + [-12.3033, 8.9984], + [-12.301599, 8.9968], + [-12.299499, 8.9958], + [-12.2975, 8.996], + [-12.2953, 8.997499], + [-12.287499, 9.005599], + [-12.2842, 9.005699], + [-12.2818, 9.004899], + [-12.2809, 9.002099], + [-12.2822, 8.999599], + [-12.284499, 8.9972], + [-12.285999, 8.9951], + [-12.286699, 8.992599], + [-12.286299, 8.990199], + [-12.282599, 8.982699], + [-12.280799, 8.980499], + [-12.278, 8.978], + [-12.2752, 8.9765], + [-12.272999, 8.975999], + [-12.2668, 8.9755], + [-12.263399, 8.974199], + [-12.261199, 8.972599], + [-12.2559, 8.9674], + [-12.2541, 8.9648], + [-12.2533, 8.962299], + [-12.2533, 8.9592], + [-12.2544, 8.956499], + [-12.2568, 8.9549], + [-12.260799, 8.955499], + [-12.2645, 8.9551], + [-12.268599, 8.955599], + [-12.272199, 8.953499], + [-12.274599, 8.9509], + [-12.275799, 8.947699], + [-12.274799, 8.943899], + [-12.2724, 8.943], + [-12.267999, 8.945099], + [-12.2651, 8.945299], + [-12.2625, 8.9441], + [-12.261, 8.942099], + [-12.2604, 8.939599], + [-12.2608, 8.937199], + [-12.2624, 8.935399], + [-12.2646, 8.934899], + [-12.268499, 8.934699], + [-12.270499, 8.933899], + [-12.271499, 8.932299], + [-12.2714, 8.9296], + [-12.269699, 8.9279], + [-12.2654, 8.9268], + [-12.2621, 8.925299], + [-12.2587, 8.922199], + [-12.257, 8.918599], + [-12.257799, 8.9155], + [-12.259586, 8.913928], + [-12.257186, 8.913894], + [-12.253353, 8.91265], + [-12.252599, 8.912715], + [-12.246478, 8.915554], + [-12.244939, 8.916454], + [-12.244405, 8.917059], + [-12.244233, 8.917757], + [-12.244468, 8.918424], + [-12.246304, 8.921215], + [-12.246378, 8.92231], + [-12.242137, 8.922311], + [-12.238229, 8.929075], + [-12.23228, 8.929075], + [-12.23228, 8.929074], + [-12.232864, 8.92849], + [-12.233131, 8.927777], + [-12.232644, 8.926366], + [-12.232157, 8.92604], + [-12.231138, 8.926258], + [-12.229506, 8.927497], + [-12.226511, 8.922311], + [-12.220402, 8.922311], + [-12.218502, 8.924684], + [-12.220053, 8.926025], + [-12.222439, 8.929002], + [-12.224008, 8.929653], + [-12.224131, 8.929649], + [-12.224132, 8.92965], + [-12.223749, 8.930417], + [-12.217917, 8.932916], + [-12.211689, 8.925132], + [-12.21065, 8.924983], + [-12.207187, 8.927292], + [-12.2074, 8.9277], + [-12.208099, 8.930499], + [-12.208299, 8.934199], + [-12.2075, 8.936699], + [-12.205799, 8.938199], + [-12.202599, 8.938399], + [-12.199899, 8.937599], + [-12.1955, 8.9356], + [-12.1916, 8.9349], + [-12.1838, 8.9349], + [-12.179199, 8.9356], + [-12.173299, 8.938099], + [-12.1704, 8.938299], + [-12.167899, 8.937299], + [-12.165399, 8.9339], + [-12.1631, 8.9323], + [-12.1609, 8.9322], + [-12.159099, 8.9334], + [-12.157499, 8.936], + [-12.1532, 8.941799], + [-12.15164, 8.94492], + [-12.152083, 8.946249], + [-12.158749, 8.949583], + [-12.154583, 8.955417], + [-12.154583, 8.958685], + [-12.155416, 8.958796], + [-12.155417, 8.960416], + [-12.157917, 8.960417], + [-12.162797, 8.964076], + [-12.163995, 8.964086], + [-12.165555, 8.963647], + [-12.166495, 8.963547], + [-12.167082, 8.963693], + [-12.167083, 8.969582], + [-12.169582, 8.975417], + [-12.16625, 8.979582], + [-12.162606, 8.980191], + [-12.162566, 8.981035], + [-12.163023, 8.983325], + [-12.163023, 8.983937], + [-12.166249, 8.984582], + [-12.167916, 8.984583], + [-12.167917, 8.996249], + [-12.168749, 8.997916], + [-12.16625, 9.000416], + [-12.164583, 9.000417], + [-12.165555, 9.00236], + [-12.168911, 9.00182], + [-12.168912, 9.001821], + [-12.168702, 9.002208], + [-12.168096, 9.003321], + [-12.171249, 9.004582], + [-12.17125, 9.005416], + [-12.172083, 9.005417], + [-12.178749, 9.00875], + [-12.177916, 9.012083], + [-12.177083, 9.017082], + [-12.177082, 9.017917], + [-12.172083, 9.026249], + [-12.172083, 9.027083], + [-12.174582, 9.032082], + [-12.175257, 9.03242], + [-12.177098, 9.031132], + [-12.178549, 9.029516], + [-12.180055, 9.028493], + [-12.180522, 9.028236], + [-12.181511, 9.027685], + [-12.182901, 9.026936], + [-12.185528, 9.024785], + [-12.186108, 9.023906], + [-12.186184, 9.02354], + [-12.186213, 9.023542], + [-12.187749, 9.023707], + [-12.186986, 9.024108], + [-12.186771, 9.02444], + [-12.186167, 9.024516], + [-12.185815, 9.024736], + [-12.185693, 9.025181], + [-12.186174, 9.025522], + [-12.186243, 9.026103], + [-12.186022, 9.026685], + [-12.185402, 9.027064], + [-12.185439, 9.027359], + [-12.18459, 9.027518], + [-12.184215, 9.028349], + [-12.183641, 9.028645], + [-12.182615, 9.029899], + [-12.182683, 9.030791], + [-12.182446, 9.031139], + [-12.181764, 9.031518], + [-12.178972, 9.031803], + [-12.178044, 9.032111], + [-12.177376, 9.032744], + [-12.176279, 9.032453], + [-12.175836, 9.032754], + [-12.179582, 9.038749], + [-12.18125, 9.040416], + [-12.186249, 9.040416], + [-12.190416, 9.037082], + [-12.19125, 9.027083], + [-12.200416, 9.027082], + [-12.202016, 9.025483], + [-12.204452, 9.029701], + [-12.212264, 9.029702], + [-12.216171, 9.036467], + [-12.223169, 9.036467], + [-12.22375, 9.03125], + [-12.22875, 9.027083], + [-12.237082, 9.027083], + [-12.240417, 9.030416], + [-12.245416, 9.02875], + [-12.252083, 9.031249], + [-12.254582, 9.030417], + [-12.257917, 9.035416], + [-12.261249, 9.036249], + [-12.262083, 9.035416], + [-12.267083, 9.03375], + [-12.272947, 9.033749], + [-12.2728, 9.0319], + [-12.273499, 9.0296], + [-12.274799, 9.0283], + [-12.280599, 9.0267], + [-12.2854, 9.024599], + [-12.288699, 9.022799], + [-12.290499, 9.0205], + [-12.2914, 9.017599], + [-12.291499, 9.014899], + [-12.2913, 9.0093], + [-12.295399, 9.0093], + [-12.298799, 9.008599], + [-12.302899, 9.005599], + [-12.304899, 9.002599] + ] + ], + "type": "Polygon" + }, + "id": 314, + "properties": { + "cc:admin:id": ["32"], + "cc:oBld:total": 240, + "cc:pop:fifteen-to-twenty-four": 956.9473739493418, + "cc:pop:grid3-total": 5298.408719679246, + "cc:pop:kontur-total": 4740.757032297681, + "cc:pop:men": 2376.864453189265, + "cc:pop:sixty-plus": 346.55231287407605, + "cc:pop:total": 5017.645016526608, + "cc:pop:under-five": 790.4573172628752, + "cc:pop:women": 2640.780563337342, + "cc:pop:women-fiften-to-forty-nine": 1293.1716486119399, + "cc:pop:wp-total": 5324.649702365459, + "cc:pop:wp-total-UN": 6181.489813403745, + "cc:id": "314", + "cc:Name": "Maharie MCHP", + "cc:site": [-12.224, 8.9515], + "user:parentName": "Gbendembu Ngowahun", + "user:code": "OU_193282", + "user:orgUnitId": "qEQFWnKh4gs", + "user:level": "4", + "user:parentId": "BXJdOLvUrZB" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.208077, 8.60719], + [-13.207399, 8.6046], + [-13.2068, 8.603999], + [-13.206499, 8.6021], + [-13.205099, 8.600399], + [-13.204599, 8.5974], + [-13.204, 8.5965], + [-13.203998, 8.596486], + [-13.201657, 8.596876], + [-13.201641, 8.596616], + [-13.201627, 8.596434], + [-13.201011, 8.596493], + [-13.200918, 8.596667], + [-13.199709, 8.596407], + [-13.198696, 8.596811], + [-13.198453, 8.596708], + [-13.198265, 8.596852], + [-13.197708, 8.596777], + [-13.197532, 8.596891], + [-13.196763, 8.596724], + [-13.195814, 8.596978], + [-13.195762, 8.59698], + [-13.193415, 8.596979], + [-13.193148, 8.598149], + [-13.193131, 8.598146], + [-13.19245, 8.598164], + [-13.191938, 8.598285], + [-13.191247, 8.598718], + [-13.191218, 8.598743], + [-13.19079, 8.599133], + [-13.190311, 8.599463], + [-13.189813, 8.5999], + [-13.189612, 8.600147], + [-13.190219, 8.600627], + [-13.190315, 8.601886], + [-13.190859, 8.601895], + [-13.190853, 8.602812], + [-13.190992, 8.603131], + [-13.190773, 8.603332], + [-13.190681, 8.603341], + [-13.190177, 8.603542], + [-13.189955, 8.603551], + [-13.190012, 8.603729], + [-13.190093, 8.60478], + [-13.190132, 8.605125], + [-13.190444, 8.605074], + [-13.190792, 8.605068], + [-13.191095, 8.605322], + [-13.19248, 8.605178], + [-13.193058, 8.604859], + [-13.193874, 8.605086], + [-13.193726, 8.605641], + [-13.192835, 8.606874], + [-13.192513, 8.607343], + [-13.192496, 8.607361], + [-13.192071, 8.607901], + [-13.192047, 8.60843], + [-13.194906, 8.606989], + [-13.19582, 8.606782], + [-13.196883, 8.60694], + [-13.196739, 8.607147], + [-13.195718, 8.608909], + [-13.195475, 8.609414], + [-13.194941, 8.610488], + [-13.195398, 8.610804], + [-13.196613, 8.610729], + [-13.197498, 8.61092], + [-13.197625, 8.61117], + [-13.198142, 8.611191], + [-13.200156, 8.609915], + [-13.200808, 8.60826], + [-13.200811, 8.608245], + [-13.201195, 8.608314], + [-13.201885, 8.608586], + [-13.202606, 8.608884], + [-13.202983, 8.60734], + [-13.203728, 8.607492], + [-13.204222, 8.607563], + [-13.204562, 8.607591], + [-13.205243, 8.607609], + [-13.204972, 8.6056], + [-13.205075, 8.605153], + [-13.205134, 8.604828], + [-13.205407, 8.60487], + [-13.206029, 8.604805], + [-13.206498, 8.605831], + [-13.206887, 8.606831], + [-13.206792, 8.60749], + [-13.20746, 8.6073], + [-13.207504, 8.607445], + [-13.208077, 8.60719] + ] + ], + "type": "Polygon" + }, + "id": 315, + "properties": { + "cc:admin:id": ["44"], + "cc:oBld:total": 1184, + "cc:pop:fifteen-to-twenty-four": 1465.6341790754234, + "cc:pop:grid3-total": 10667.984956496199, + "cc:pop:kontur-total": 7218.033783348991, + "cc:pop:men": 3851.758777283576, + "cc:pop:sixty-plus": 495.0008917416095, + "cc:pop:total": 8009.578854296768, + "cc:pop:under-five": 1285.4658918217067, + "cc:pop:women": 4157.820077013189, + "cc:pop:women-fiften-to-forty-nine": 2030.1523122613967, + "cc:pop:wp-total": 6479.458772786643, + "cc:pop:wp-total-UN": 7514.682804379287, + "cc:id": "315", + "cc:Name": "Mahera CHC", + "cc:site": [-13.199, 8.6037], + "user:parentName": "Kaffu Bullom", + "user:code": "OU_255018", + "user:orgUnitId": "LnToY3ExKxL", + "user:level": "4", + "user:parentId": "vn9KJsLyP5f" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.168059, 7.817888], + [-11.166006, 7.81532], + [-11.166006, 7.815318], + [-11.166091, 7.815258], + [-11.162917, 7.812083], + [-11.162916, 7.797917], + [-11.159583, 7.797917], + [-11.158749, 7.802084], + [-11.157818, 7.803014], + [-11.154869, 7.803014], + [-11.150963, 7.79625], + [-11.154868, 7.789484], + [-11.154973, 7.789483], + [-11.152917, 7.787083], + [-11.15482, 7.783276], + [-11.155209, 7.783456], + [-11.158749, 7.777083], + [-11.157082, 7.771249], + [-11.150417, 7.76625], + [-11.146906, 7.764495], + [-11.146854, 7.765087], + [-11.147073, 7.767492], + [-11.146834, 7.76929], + [-11.141249, 7.772083], + [-11.135887, 7.772753], + [-11.135589, 7.771908], + [-11.133762, 7.770693], + [-11.132695, 7.769479], + [-11.131347, 7.768826], + [-11.130741, 7.7683], + [-11.129813, 7.767221], + [-11.129332, 7.765855], + [-11.128951, 7.765381], + [-11.126612, 7.764046], + [-11.12455, 7.763455], + [-11.124235, 7.763046], + [-11.123599, 7.761529], + [-11.124099, 7.761031], + [-11.124554, 7.759839], + [-11.126211, 7.758131], + [-11.120319, 7.75813], + [-11.119786, 7.757651], + [-11.118747, 7.756251], + [-11.116249, 7.757084], + [-11.112083, 7.758749], + [-11.11125, 7.758749], + [-11.105416, 7.752916], + [-11.102082, 7.75125], + [-11.097083, 7.751249], + [-11.092916, 7.742917], + [-11.087083, 7.741249], + [-11.086249, 7.73875], + [-11.08375, 7.735417], + [-11.083749, 7.734635], + [-11.078579, 7.734634], + [-11.074673, 7.727869], + [-11.070997, 7.727868], + [-11.071249, 7.724584], + [-11.069836, 7.722818], + [-11.065542, 7.722818], + [-11.061636, 7.729583], + [-11.057083, 7.729584], + [-11.055922, 7.730745], + [-11.056399, 7.748999], + [-11.056291, 7.750519], + [-11.057917, 7.754583], + [-11.059769, 7.754769], + [-11.056028, 7.76125], + [-11.059877, 7.767916], + [-11.062082, 7.767916], + [-11.065416, 7.765417], + [-11.067082, 7.767916], + [-11.067917, 7.779583], + [-11.072083, 7.782916], + [-11.077701, 7.782917], + [-11.077012, 7.784112], + [-11.080917, 7.790878], + [-11.080266, 7.792007], + [-11.077083, 7.792917], + [-11.07375, 7.79625], + [-11.072917, 7.807083], + [-11.077015, 7.811182], + [-11.078498, 7.813749], + [-11.079582, 7.81375], + [-11.079583, 7.821249], + [-11.08125, 7.824583], + [-11.082917, 7.825416], + [-11.086403, 7.824835], + [-11.085265, 7.825901], + [-11.08363, 7.82732], + [-11.086249, 7.83125], + [-11.08375, 7.837916], + [-11.094582, 7.842084], + [-11.094583, 7.848749], + [-11.099582, 7.854583], + [-11.099583, 7.856249], + [-11.100416, 7.857084], + [-11.099848, 7.859926], + [-11.098439, 7.860288], + [-11.097917, 7.860466], + [-11.097917, 7.863849], + [-11.0982, 7.863699], + [-11.1002, 7.863099], + [-11.102499, 7.8629], + [-11.104599, 7.863099], + [-11.1067, 7.8638], + [-11.1111, 7.865899], + [-11.1147, 7.8664], + [-11.1212, 7.866599], + [-11.129099, 7.8664], + [-11.13144, 7.865797], + [-11.131048, 7.865012], + [-11.13218, 7.864447], + [-11.132908, 7.863879], + [-11.134117, 7.863448], + [-11.13421, 7.863135], + [-11.137178, 7.861595], + [-11.138617, 7.860266], + [-11.138638, 7.860084], + [-11.139025, 7.859907], + [-11.139578, 7.859212], + [-11.139569, 7.859022], + [-11.139796, 7.85894], + [-11.139624, 7.858774], + [-11.139248, 7.857253], + [-11.139436, 7.857022], + [-11.139954, 7.857001], + [-11.140285, 7.856456], + [-11.140205, 7.855991], + [-11.140881, 7.855099], + [-11.141861, 7.854168], + [-11.144098, 7.853631], + [-11.145214, 7.852866], + [-11.145695, 7.852947], + [-11.146244, 7.852823], + [-11.146777, 7.852198], + [-11.147758, 7.849446], + [-11.14751, 7.848762], + [-11.147592, 7.848449], + [-11.148317, 7.847797], + [-11.149472, 7.845984], + [-11.14963, 7.843711], + [-11.149265, 7.842638], + [-11.14958, 7.84137], + [-11.150204, 7.841048], + [-11.150172, 7.840306], + [-11.150878, 7.836862], + [-11.151362, 7.83553], + [-11.151395, 7.835445], + [-11.152909, 7.833763], + [-11.154995, 7.832956], + [-11.156567, 7.832084], + [-11.157082, 7.832083], + [-11.157083, 7.831914], + [-11.157376, 7.831901], + [-11.157858, 7.832362], + [-11.159713, 7.831159], + [-11.160362, 7.830425], + [-11.16151, 7.827723], + [-11.163914, 7.824904], + [-11.168059, 7.817888] + ] + ], + "type": "Polygon" + }, + "id": 316, + "properties": { + "cc:admin:id": ["15"], + "cc:oBld:total": 1570, + "cc:pop:fifteen-to-twenty-four": 2225.5776987737418, + "cc:pop:grid3-total": 9177.99416515438, + "cc:pop:kontur-total": 11455.070043705553, + "cc:pop:men": 5405.551878840341, + "cc:pop:sixty-plus": 689.2197092627655, + "cc:pop:total": 11361.316819183996, + "cc:pop:under-five": 1802.2316198296933, + "cc:pop:women": 5955.764940343655, + "cc:pop:women-fiften-to-forty-nine": 3001.4389268478367, + "cc:pop:wp-total": 10018.710830435874, + "cc:pop:wp-total-UN": 11614.369835087158, + "cc:id": "316", + "cc:Name": "Majihun MCHP", + "cc:site": [-11.1181, 7.8484], + "user:parentName": "Dama", + "user:code": "OU_222735", + "user:orgUnitId": "ShdRyzuLKA2", + "user:level": "4", + "user:parentId": "myQ4q1W6B4y" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [-12.960049, 8.587242], + [-12.9599, 8.587099], + [-12.959899, 8.5865], + [-12.9565, 8.5835], + [-12.9554, 8.5818], + [-12.955999, 8.580999], + [-12.955999, 8.5793], + [-12.954899, 8.5774], + [-12.9532, 8.5771], + [-12.953199, 8.5765], + [-12.951, 8.576299], + [-12.948499, 8.5749], + [-12.945699, 8.574899], + [-12.944299, 8.574299], + [-12.9401, 8.5714], + [-12.938199, 8.5737], + [-12.933, 8.5793], + [-12.933099, 8.5865], + [-12.930299, 8.5917], + [-12.928099, 8.5947], + [-12.9244, 8.598499], + [-12.918299, 8.6037], + [-12.912199, 8.6068], + [-12.904299, 8.6123], + [-12.8883, 8.621699], + [-12.8827, 8.626899], + [-12.8794, 8.631299], + [-12.876299, 8.6371], + [-12.8668, 8.658499], + [-12.8633, 8.665399], + [-12.861999, 8.6691], + [-12.861399, 8.6731], + [-12.8611, 8.678999], + [-12.862099, 8.699599], + [-12.861499, 8.7084], + [-12.8614, 8.7134], + [-12.8614, 8.719204], + [-12.861996, 8.719142], + [-12.862862, 8.718867], + [-12.864342, 8.717979], + [-12.865723, 8.716807], + [-12.866733, 8.716016], + [-12.86749, 8.715556], + [-12.868564, 8.714929], + [-12.869613, 8.714379], + [-12.87052, 8.713994], + [-12.871036, 8.713829], + [-12.871646, 8.713819], + [-12.872688, 8.713862], + [-12.874889, 8.714008], + [-12.875934, 8.713844], + [-12.876505, 8.713591], + [-12.877117, 8.712995], + [-12.878033, 8.711605], + [-12.879111, 8.709646], + [-12.87987, 8.708368], + [-12.880542, 8.707673], + [-12.882124, 8.706124], + [-12.882999, 8.704959], + [-12.883429, 8.704186], + [-12.883517, 8.703687], + [-12.883319, 8.702693], + [-12.882692, 8.702031], + [-12.881871, 8.701421], + [-12.880825, 8.700362], + [-12.879673, 8.69868], + [-12.878337, 8.69736], + [-12.87713, 8.696764], + [-12.876237, 8.696098], + [-12.875766, 8.695609], + [-12.874747, 8.693881], + [-12.87376, 8.690429], + [-12.873504, 8.68783], + [-12.873869, 8.686339], + [-12.874062, 8.686107], + [-12.877901, 8.685626], + [-12.878495, 8.684868], + [-12.880048, 8.682571], + [-12.883259, 8.675859], + [-12.884105, 8.674186], + [-12.880345, 8.671051], + [-12.8811, 8.670235], + [-12.882722, 8.668538], + [-12.884554, 8.666943], + [-12.88481, 8.666662], + [-12.885963, 8.665487], + [-12.886038, 8.664817], + [-12.88668, 8.664627], + [-12.886714, 8.664565], + [-12.889098, 8.668733], + [-12.889334, 8.668545], + [-12.88996, 8.667893], + [-12.890209, 8.667683], + [-12.890426, 8.667437], + [-12.890688, 8.666977], + [-12.890959, 8.665866], + [-12.891288, 8.664965], + [-12.891736, 8.664029], + [-12.892043, 8.663492], + [-12.893812, 8.660753], + [-12.89467, 8.658834], + [-12.895511, 8.656158], + [-12.895725, 8.655688], + [-12.895823, 8.655211], + [-12.895885, 8.65448], + [-12.895621, 8.653226], + [-12.895943, 8.652435], + [-12.89623, 8.651141], + [-12.896663, 8.649215], + [-12.896812, 8.647902], + [-12.896951, 8.646564], + [-12.89744, 8.643809], + [-12.89746, 8.64375], + [-12.892781, 8.64375], + [-12.89278, 8.643748], + [-12.892992, 8.642693], + [-12.893406, 8.641708], + [-12.894489, 8.639921], + [-12.896154, 8.637641], + [-12.897455, 8.636029], + [-12.897945, 8.635674], + [-12.899782, 8.634624], + [-12.901639, 8.633226], + [-12.904181, 8.631918], + [-12.906454, 8.630429], + [-12.906319, 8.629918], + [-12.90679, 8.629444], + [-12.91142, 8.635396], + [-12.913039, 8.633663], + [-12.913749, 8.632885], + [-12.91375, 8.626335], + [-12.914217, 8.625883], + [-12.915522, 8.624429], + [-12.916679, 8.622497], + [-12.918347, 8.618474], + [-12.921054, 8.613424], + [-12.922859, 8.609566], + [-12.924097, 8.607601], + [-12.925858, 8.604725], + [-12.931145, 8.605312], + [-12.934036, 8.598376], + [-12.934426, 8.597411], + [-12.934583, 8.596901], + [-12.934973, 8.596154], + [-12.935188, 8.595751], + [-12.935499, 8.5953], + [-12.935987, 8.594637], + [-12.936272, 8.594303], + [-12.936631, 8.594001], + [-12.936981, 8.593793], + [-12.937801, 8.593163], + [-12.938333, 8.592711], + [-12.938744, 8.592459], + [-12.939029, 8.59225], + [-12.939266, 8.592134], + [-12.93984, 8.592134], + [-12.94044, 8.59217], + [-12.941797, 8.592355], + [-12.943193, 8.592616], + [-12.943949, 8.592733], + [-12.9453, 8.59295], + [-12.946254, 8.593115], + [-12.94875, 8.588749], + [-12.960049, 8.587242] + ] + ], + [ + [ + [-12.956499, 8.5707], + [-12.956299, 8.5704], + [-12.9529, 8.5704], + [-12.951, 8.5701], + [-12.950699, 8.5696], + [-12.9485, 8.5696], + [-12.9485, 8.572599], + [-12.9493, 8.573199], + [-12.951499, 8.573599], + [-12.955999, 8.573799], + [-12.956499, 8.5707] + ] + ], + [ + [ + [-13.009299, 8.5715], + [-13.005699, 8.5718], + [-13.0001, 8.5718], + [-12.998999, 8.572599], + [-12.9968, 8.573199], + [-12.994899, 8.573199], + [-12.9924, 8.5726], + [-12.991799, 8.573199], + [-12.9885, 8.5726], + [-12.987899, 8.5721], + [-12.985699, 8.571499], + [-12.9832, 8.5704], + [-12.982599, 8.5688], + [-12.981199, 8.5676], + [-12.9776, 8.5679], + [-12.976499, 8.5688], + [-12.973199, 8.570399], + [-12.9701, 8.5701], + [-12.969899, 8.5696], + [-12.9668, 8.5688], + [-12.966499, 8.5682], + [-12.964299, 8.5676], + [-12.9615, 8.5676], + [-12.9607, 8.569], + [-12.961, 8.570099], + [-12.9621, 8.571], + [-12.964, 8.573499], + [-12.964899, 8.5735], + [-12.9651, 8.574599], + [-12.968199, 8.576799], + [-12.9682, 8.577599], + [-12.9707, 8.5785], + [-12.973499, 8.580399], + [-12.9737, 8.581299], + [-12.976, 8.5813], + [-12.9785, 8.583199], + [-12.9799, 8.583499], + [-12.9829, 8.582899], + [-12.984899, 8.581499], + [-12.986, 8.579599], + [-12.9888, 8.5779], + [-12.990699, 8.577599], + [-12.991, 8.5771], + [-12.992599, 8.577099], + [-12.995099, 8.576], + [-12.996299, 8.576299], + [-12.9988, 8.5743], + [-13.001299, 8.574299], + [-13.0018, 8.5738], + [-13.003499, 8.573999], + [-13.0038, 8.573199], + [-13.008799, 8.572599], + [-13.009299, 8.5715] + ] + ], + [ + [ + [-12.999299, 8.581], + [-12.9979, 8.5807], + [-12.9979, 8.582099], + [-12.999299, 8.582899], + [-12.9988, 8.582099], + [-12.999299, 8.581] + ] + ], + [ + [ + [-13.014299, 8.579599], + [-13.013799, 8.5782], + [-13.0126, 8.577899], + [-13.011799, 8.576499], + [-13.008799, 8.5751], + [-13.0051, 8.5751], + [-13.003199, 8.5754], + [-13.0018, 8.5768], + [-13.001299, 8.578499], + [-13.0001, 8.5785], + [-12.9993, 8.5793], + [-12.9993, 8.580399], + [-13.0007, 8.580999], + [-13.005399, 8.580699], + [-13.0063, 8.5801], + [-13.013199, 8.5801], + [-13.014299, 8.579599] + ] + ] + ], + "type": "MultiPolygon" + }, + "id": 317, + "properties": { + "cc:admin:id": ["74"], + "cc:oBld:total": 67, + "cc:pop:fifteen-to-twenty-four": 783.2017010748252, + "cc:pop:grid3-total": 3930.988080590905, + "cc:pop:kontur-total": 4595.076881468573, + "cc:pop:men": 2096.165171931673, + "cc:pop:sixty-plus": 225.96854348309364, + "cc:pop:total": 4432.162240330273, + "cc:pop:under-five": 673.6198567904501, + "cc:pop:women": 2335.9970683986003, + "cc:pop:women-fiften-to-forty-nine": 1162.6902680256671, + "cc:pop:wp-total": 3218.7100539805274, + "cc:pop:wp-total-UN": 3733.615388744997, + "cc:id": "317", + "cc:Name": "Makaba MCHP", + "cc:site": [-12.9152, 8.6074], + "user:parentName": "Maforki", + "user:code": "OU_254952", + "user:orgUnitId": "kSo9KSpHUPL", + "user:level": "4", + "user:parentId": "JdqfYTIFZXN" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.725999, 8.5972], + [-12.722299, 8.595999], + [-12.7186, 8.5958], + [-12.715, 8.595899], + [-12.711399, 8.5965], + [-12.706199, 8.5989], + [-12.703699, 8.599399], + [-12.701, 8.599299], + [-12.697599, 8.597999], + [-12.695399, 8.596299], + [-12.6927, 8.5937], + [-12.69174, 8.592683], + [-12.691139, 8.592486], + [-12.690258, 8.591864], + [-12.689565, 8.59183], + [-12.688245, 8.591963], + [-12.686438, 8.59268], + [-12.685663, 8.592676], + [-12.683846, 8.593438], + [-12.681515, 8.593681], + [-12.67944, 8.594441], + [-12.676859, 8.594087], + [-12.673086, 8.59448], + [-12.668321, 8.594296], + [-12.66625, 8.594402], + [-12.666249, 8.595348], + [-12.6652, 8.595386], + [-12.662842, 8.595826], + [-12.662287, 8.59578], + [-12.660027, 8.594969], + [-12.658993, 8.594832], + [-12.658103, 8.593773], + [-12.657659, 8.592974], + [-12.657152, 8.59255], + [-12.655383, 8.592493], + [-12.651943, 8.592809], + [-12.650721, 8.593237], + [-12.650376, 8.59371], + [-12.64993, 8.593265], + [-12.649877, 8.59331], + [-12.649572, 8.594173], + [-12.648345, 8.5959], + [-12.648345, 8.595898], + [-12.648771, 8.595119], + [-12.649037, 8.593614], + [-12.649717, 8.593051], + [-12.649583, 8.592916], + [-12.649582, 8.592312], + [-12.649433, 8.592328], + [-12.648858, 8.593054], + [-12.648118, 8.595411], + [-12.647338, 8.596049], + [-12.646821, 8.596176], + [-12.646945, 8.596949], + [-12.646812, 8.597463], + [-12.646035, 8.597717], + [-12.645642, 8.598487], + [-12.645507, 8.599258], + [-12.645197, 8.599708], + [-12.644362, 8.600011], + [-12.644294, 8.600416], + [-12.646033, 8.600417], + [-12.645624, 8.601319], + [-12.645233, 8.601703], + [-12.644715, 8.6017], + [-12.644179, 8.601396], + [-12.64383, 8.601985], + [-12.644542, 8.604984], + [-12.644563, 8.605692], + [-12.644817, 8.606209], + [-12.64488, 8.60711], + [-12.645185, 8.607697], + [-12.645199, 8.608203], + [-12.645961, 8.609825], + [-12.645974, 8.610661], + [-12.646894, 8.612054], + [-12.647399, 8.613214], + [-12.647754, 8.613206], + [-12.647599, 8.611741], + [-12.648326, 8.610806], + [-12.648371, 8.610534], + [-12.648322, 8.61002], + [-12.647777, 8.608778], + [-12.647879, 8.608279], + [-12.64945, 8.610634], + [-12.649485, 8.611975], + [-12.649308, 8.612419], + [-12.648753, 8.612843], + [-12.648704, 8.613303], + [-12.648263, 8.614086], + [-12.647954, 8.615549], + [-12.647602, 8.616271], + [-12.646746, 8.617082], + [-12.645395, 8.617417], + [-12.64526, 8.617643], + [-12.644924, 8.617676], + [-12.641647, 8.617313], + [-12.640218, 8.617643], + [-12.638746, 8.61888], + [-12.638171, 8.619734], + [-12.636162, 8.620068], + [-12.635022, 8.62083], + [-12.633585, 8.622474], + [-12.633056, 8.62262], + [-12.632919, 8.62287], + [-12.630872, 8.622716], + [-12.625577, 8.623335], + [-12.623276, 8.6232], + [-12.622461, 8.623408], + [-12.62203, 8.623373], + [-12.621743, 8.623097], + [-12.621729, 8.623306], + [-12.620627, 8.623705], + [-12.620578, 8.623934], + [-12.620299, 8.6241], + [-12.620085, 8.623892], + [-12.619877, 8.624567], + [-12.620098, 8.62441], + [-12.62003, 8.624659], + [-12.618846, 8.625534], + [-12.618608, 8.625914], + [-12.616771, 8.625107], + [-12.616581, 8.62478], + [-12.616443, 8.624858], + [-12.615706, 8.626307], + [-12.615624, 8.62886], + [-12.615794, 8.629521], + [-12.617042, 8.631634], + [-12.618225, 8.63409], + [-12.618855, 8.637768], + [-12.618854, 8.638378], + [-12.618527, 8.638889], + [-12.618072, 8.639364], + [-12.616632, 8.640309], + [-12.615295, 8.64082], + [-12.614412, 8.640944], + [-12.613922, 8.641306], + [-12.61368, 8.641826], + [-12.613573, 8.644109], + [-12.611462, 8.647873], + [-12.610056, 8.649346], + [-12.606606, 8.650564], + [-12.605609, 8.651056], + [-12.605156, 8.651405], + [-12.603935, 8.653439], + [-12.602162, 8.653433], + [-12.602035, 8.653464], + [-12.599827, 8.653096], + [-12.598581, 8.654233], + [-12.59856, 8.654246], + [-12.598345, 8.655746], + [-12.598151, 8.655874], + [-12.596663, 8.656235], + [-12.59652, 8.656393], + [-12.597028, 8.656939], + [-12.597429, 8.657027], + [-12.598008, 8.656895], + [-12.598207, 8.656699], + [-12.598209, 8.656699], + [-12.598181, 8.656893], + [-12.597171, 8.65753], + [-12.596788, 8.65753], + [-12.596493, 8.657319], + [-12.596225, 8.656561], + [-12.595967, 8.65657], + [-12.594859, 8.657707], + [-12.593837, 8.658138], + [-12.592671, 8.658259], + [-12.592917, 8.65875], + [-12.598915, 8.660249], + [-12.598914, 8.660129], + [-12.600519, 8.659394], + [-12.600364, 8.659731], + [-12.600395, 8.66129], + [-12.60003, 8.662189], + [-12.599749, 8.663827], + [-12.599165, 8.663963], + [-12.59952, 8.66564], + [-12.59954, 8.666869], + [-12.599443, 8.668425], + [-12.602916, 8.669583], + [-12.602083, 8.67125], + [-12.602083, 8.673749], + [-12.607082, 8.67375], + [-12.607917, 8.675416], + [-12.608527, 8.675569], + [-12.608527, 8.675571], + [-12.607938, 8.675743], + [-12.607104, 8.675684], + [-12.606509, 8.675972], + [-12.606936, 8.67686], + [-12.606917, 8.677223], + [-12.607194, 8.677646], + [-12.607874, 8.67809], + [-12.609025, 8.67931], + [-12.609484, 8.68024], + [-12.610141, 8.681056], + [-12.610458, 8.681843], + [-12.607917, 8.683749], + [-12.611676, 8.685004], + [-12.610161, 8.686733], + [-12.608675, 8.687651], + [-12.61618, 8.6864], + [-12.6185, 8.6826], + [-12.622299, 8.6799], + [-12.6254, 8.677099], + [-12.627, 8.675199], + [-12.6293, 8.670799], + [-12.632, 8.6678], + [-12.639299, 8.6639], + [-12.643199, 8.6623], + [-12.647499, 8.6599], + [-12.6506, 8.658499], + [-12.6535, 8.656399], + [-12.658199, 8.652], + [-12.661299, 8.6495], + [-12.666199, 8.6468], + [-12.669099, 8.6446], + [-12.675099, 8.6391], + [-12.677299, 8.6375], + [-12.6804, 8.636099], + [-12.684699, 8.6337], + [-12.6878, 8.632399], + [-12.692199, 8.6302], + [-12.697299, 8.6291], + [-12.6997, 8.628299], + [-12.707199, 8.6246], + [-12.710099, 8.6224], + [-12.717199, 8.6154], + [-12.7195, 8.612699], + [-12.7207, 8.610399], + [-12.7224, 8.603999], + [-12.7242, 8.600899], + [-12.725999, 8.5972] + ] + ], + "type": "Polygon" + }, + "id": 318, + "properties": { + "cc:admin:id": ["93"], + "cc:oBld:total": 81, + "cc:pop:fifteen-to-twenty-four": 576.4335104682073, + "cc:pop:grid3-total": 1747.644609555692, + "cc:pop:kontur-total": 3553.7813700521597, + "cc:pop:men": 1368.5122746893073, + "cc:pop:sixty-plus": 181.2196819353716, + "cc:pop:total": 2869.247682134644, + "cc:pop:under-five": 479.596657172297, + "cc:pop:women": 1500.735407445337, + "cc:pop:women-fiften-to-forty-nine": 727.6857103467227, + "cc:pop:wp-total": 2577.5246344182, + "cc:pop:wp-total-UN": 2975.8394014849005, + "cc:id": "318", + "cc:Name": "Makabo MCHP", + "cc:site": [-12.6622, 8.633], + "user:parentName": "Marampa", + "user:code": "OU_255056", + "user:orgUnitId": "en0j7qFnySQ", + "user:level": "4", + "user:parentId": "RWvG1aFrr0r" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.270416, 9.279582], + [-12.270416, 9.274583], + [-12.265416, 9.267917], + [-12.264058, 9.267811], + [-12.264874, 9.266396], + [-12.260969, 9.259631], + [-12.262561, 9.256871], + [-12.262195, 9.25321], + [-12.260699, 9.254], + [-12.2586, 9.254699], + [-12.2544, 9.255199], + [-12.2437, 9.2551], + [-12.239, 9.2545], + [-12.233599, 9.252299], + [-12.230199, 9.251599], + [-12.2244, 9.250899], + [-12.2147, 9.2465], + [-12.211699, 9.244199], + [-12.2019, 9.2345], + [-12.198999, 9.231899], + [-12.1967, 9.2302], + [-12.1922, 9.2279], + [-12.189499, 9.225999], + [-12.175899, 9.2127], + [-12.1732, 9.214999], + [-12.1711, 9.217599], + [-12.1683, 9.222899], + [-12.1665, 9.224899], + [-12.163799, 9.2274], + [-12.1576, 9.230799], + [-12.155399, 9.2325], + [-12.151299, 9.2364], + [-12.1464, 9.241599], + [-12.144499, 9.2447], + [-12.144099, 9.2469], + [-12.1439, 9.2505], + [-12.143999, 9.259799], + [-12.1447, 9.265199], + [-12.1465, 9.2683], + [-12.1507, 9.2733], + [-12.154099, 9.280799], + [-12.153609, 9.282082], + [-12.155417, 9.282083], + [-12.162082, 9.282917], + [-12.164583, 9.285416], + [-12.167916, 9.286249], + [-12.169583, 9.287082], + [-12.173482, 9.286433], + [-12.173275, 9.285198], + [-12.172939, 9.284136], + [-12.172671, 9.28174], + [-12.173305, 9.281683], + [-12.174126, 9.282197], + [-12.17466, 9.282963], + [-12.174944, 9.284221], + [-12.17575, 9.285109], + [-12.176663, 9.285711], + [-12.177617, 9.285863], + [-12.177883, 9.286045], + [-12.179997, 9.285645], + [-12.182159, 9.28593], + [-12.183078, 9.285311], + [-12.183731, 9.285189], + [-12.185899, 9.285571], + [-12.186708, 9.285291], + [-12.188469, 9.284294], + [-12.189156, 9.28273], + [-12.190717, 9.281092], + [-12.19108, 9.280247], + [-12.192906, 9.279014], + [-12.193822, 9.279884], + [-12.194125, 9.280343], + [-12.196249, 9.27875], + [-12.197916, 9.27875], + [-12.197917, 9.280416], + [-12.20125, 9.282916], + [-12.207916, 9.282083], + [-12.212916, 9.282082], + [-12.213749, 9.281249], + [-12.214583, 9.27625], + [-12.219156, 9.275597], + [-12.219504, 9.276378], + [-12.219447, 9.277669], + [-12.218868, 9.279791], + [-12.218783, 9.280416], + [-12.222916, 9.280416], + [-12.224582, 9.279582], + [-12.224583, 9.275417], + [-12.22625, 9.274583], + [-12.233749, 9.27625], + [-12.232083, 9.281249], + [-12.232083, 9.282082], + [-12.235876, 9.28398], + [-12.236084, 9.283654], + [-12.241249, 9.282916], + [-12.246249, 9.27875], + [-12.247083, 9.27375], + [-12.255416, 9.277916], + [-12.258636, 9.274697], + [-12.259216, 9.27641], + [-12.259578, 9.279762], + [-12.259523, 9.281056], + [-12.259589, 9.281919], + [-12.259666, 9.282313], + [-12.262083, 9.282916], + [-12.267916, 9.282083], + [-12.270416, 9.279582] + ] + ], + "type": "Polygon" + }, + "id": 319, + "properties": { + "cc:admin:id": ["31"], + "cc:oBld:total": 258, + "cc:pop:fifteen-to-twenty-four": 1134.9467806237026, + "cc:pop:grid3-total": 4740.201757817897, + "cc:pop:kontur-total": 6402.721770882088, + "cc:pop:men": 2951.5675628483177, + "cc:pop:sixty-plus": 418.8121310161483, + "cc:pop:total": 6204.2803163111075, + "cc:pop:under-five": 981.3496262643266, + "cc:pop:women": 3252.712753462789, + "cc:pop:women-fiften-to-forty-nine": 1578.5673969650259, + "cc:pop:wp-total": 5226.840795895873, + "cc:pop:wp-total-UN": 6066.767411013313, + "cc:id": "319", + "cc:Name": "Makaiba MCHP", + "cc:site": [-12.2088, 9.2598], + "user:parentName": "Gbanti Kamaranka", + "user:code": "OU_193219", + "user:orgUnitId": "ewh5SKxcCAl", + "user:level": "4", + "user:parentId": "e1eIKM1GIF3" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.706989, 8.667025], + [-11.706999, 8.666599], + [-11.7068, 8.6532], + [-11.7066, 8.6489], + [-11.705899, 8.6449], + [-11.7036, 8.6405], + [-11.702199, 8.637399], + [-11.699599, 8.633099], + [-11.696, 8.625199], + [-11.6961, 8.622399], + [-11.6974, 8.620099], + [-11.7017, 8.614499], + [-11.7052, 8.607799], + [-11.7062, 8.603099], + [-11.706299, 8.598], + [-11.705799, 8.594399], + [-11.705099, 8.592299], + [-11.703, 8.5884], + [-11.701599, 8.585199], + [-11.699, 8.5801], + [-11.697799, 8.574999], + [-11.6954, 8.5698], + [-11.6934, 8.5659], + [-11.691099, 8.562999], + [-11.6835, 8.5556], + [-11.6816, 8.5535], + [-11.6802, 8.5511], + [-11.679399, 8.548399], + [-11.6791, 8.5446], + [-11.679299, 8.5368], + [-11.679378, 8.53625], + [-11.675417, 8.53625], + [-11.672082, 8.539584], + [-11.66375, 8.54125], + [-11.660417, 8.545417], + [-11.660417, 8.554583], + [-11.665417, 8.559583], + [-11.66875, 8.559584], + [-11.673749, 8.564584], + [-11.673005, 8.574265], + [-11.667784, 8.574266], + [-11.667389, 8.574947], + [-11.66375, 8.574583], + [-11.657916, 8.567084], + [-11.652688, 8.572311], + [-11.652654, 8.572299], + [-11.652083, 8.574583], + [-11.655417, 8.575417], + [-11.657916, 8.582917], + [-11.652917, 8.586249], + [-11.649583, 8.58625], + [-11.647083, 8.595417], + [-11.647083, 8.600416], + [-11.650417, 8.59875], + [-11.654581, 8.601249], + [-11.654582, 8.60125], + [-11.649583, 8.606249], + [-11.647083, 8.60625], + [-11.647082, 8.607084], + [-11.645417, 8.607917], + [-11.645416, 8.609584], + [-11.639583, 8.615416], + [-11.637917, 8.615417], + [-11.63375, 8.617083], + [-11.632082, 8.618749], + [-11.627917, 8.617917], + [-11.626249, 8.61625], + [-11.622554, 8.618713], + [-11.625379, 8.620145], + [-11.625997, 8.620659], + [-11.628244, 8.622891], + [-11.629568, 8.623465], + [-11.630443, 8.623443], + [-11.631119, 8.623203], + [-11.632444, 8.622333], + [-11.632916, 8.62375], + [-11.632917, 8.624584], + [-11.633566, 8.627829], + [-11.6353, 8.6275], + [-11.6403, 8.6289], + [-11.647299, 8.629799], + [-11.650799, 8.630999], + [-11.653399, 8.633799], + [-11.654899, 8.636799], + [-11.656399, 8.638999], + [-11.659, 8.6417], + [-11.6616, 8.6437], + [-11.6659, 8.6456], + [-11.671199, 8.6488], + [-11.672599, 8.6507], + [-11.673099, 8.653299], + [-11.673199, 8.6561], + [-11.6731, 8.666699], + [-11.6739, 8.670399], + [-11.6753, 8.6728], + [-11.677899, 8.675499], + [-11.680599, 8.677299], + [-11.6828, 8.677899], + [-11.6854, 8.677799], + [-11.688, 8.677299], + [-11.692, 8.6755], + [-11.695699, 8.6754], + [-11.704099, 8.679999], + [-11.7065, 8.673199], + [-11.7069, 8.670399], + [-11.706989, 8.667025] + ] + ], + "type": "Polygon" + }, + "id": 320, + "properties": { + "cc:admin:id": ["69"], + "cc:oBld:total": 459, + "cc:pop:fifteen-to-twenty-four": 1802.0341903268445, + "cc:pop:grid3-total": 7610.581074960499, + "cc:pop:kontur-total": 9751.528103050145, + "cc:pop:men": 4731.368664426824, + "cc:pop:sixty-plus": 626.5310017359535, + "cc:pop:total": 9645.914930394863, + "cc:pop:under-five": 1536.1468545210266, + "cc:pop:women": 4914.546265968034, + "cc:pop:women-fiften-to-forty-nine": 2400.07691891335, + "cc:pop:wp-total": 7316.739770778618, + "cc:pop:wp-total-UN": 8485.365874731096, + "cc:id": "320", + "cc:Name": "Makali CHC", + "cc:site": [-11.6608, 8.6302], + "user:parentName": "Kunike Barina", + "user:code": "OU_268215", + "user:orgUnitId": "scc4QyxenJd", + "user:level": "4", + "user:parentId": "rXLor9Knq6l" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.780517, 8.381015], + [-12.780484, 8.380937], + [-12.780134, 8.379601], + [-12.779052, 8.379252], + [-12.777335, 8.379378], + [-12.776253, 8.379283], + [-12.77475, 8.378152], + [-12.766499, 8.376899], + [-12.759699, 8.374199], + [-12.7522, 8.3703], + [-12.7488, 8.3679], + [-12.7454, 8.3649], + [-12.7377, 8.3572], + [-12.7343, 8.3544], + [-12.731799, 8.353], + [-12.729, 8.3525], + [-12.7251, 8.3533], + [-12.7221, 8.3562], + [-12.721199, 8.3593], + [-12.7203, 8.367199], + [-12.716699, 8.369999], + [-12.7131, 8.369699], + [-12.7017, 8.3644], + [-12.700416, 8.36413], + [-12.699614, 8.364233], + [-12.696231, 8.363962], + [-12.695438, 8.364042], + [-12.691262, 8.366061], + [-12.689848, 8.366172], + [-12.690417, 8.369583], + [-12.692916, 8.37125], + [-12.693405, 8.373208], + [-12.693103, 8.373321], + [-12.692532, 8.373195], + [-12.690223, 8.376112], + [-12.688977, 8.379014], + [-12.69125, 8.379584], + [-12.693749, 8.382083], + [-12.69375, 8.383749], + [-12.69125, 8.38625], + [-12.691249, 8.393749], + [-12.689727, 8.394766], + [-12.690594, 8.396029], + [-12.690697, 8.396379], + [-12.690129, 8.39774], + [-12.689827, 8.398096], + [-12.689593, 8.399232], + [-12.689014, 8.401154], + [-12.68864, 8.40354], + [-12.688651, 8.404739], + [-12.688595, 8.405291], + [-12.688511, 8.406206], + [-12.688875, 8.406983], + [-12.689013, 8.409023], + [-12.691249, 8.409583], + [-12.692083, 8.409584], + [-12.692916, 8.417916], + [-12.69125, 8.425416], + [-12.687917, 8.427084], + [-12.687917, 8.427916], + [-12.690417, 8.435416], + [-12.695037, 8.438056], + [-12.695444, 8.437567], + [-12.695917, 8.437254], + [-12.696249, 8.437916], + [-12.695417, 8.439584], + [-12.697917, 8.451249], + [-12.700416, 8.452083], + [-12.705416, 8.447083], + [-12.707082, 8.434585], + [-12.707084, 8.434585], + [-12.708582, 8.435707], + [-12.708828, 8.435334], + [-12.709653, 8.435238], + [-12.709917, 8.434699], + [-12.709784, 8.434129], + [-12.70985, 8.433453], + [-12.710266, 8.432046], + [-12.709826, 8.430401], + [-12.715416, 8.427916], + [-12.715417, 8.42375], + [-12.727916, 8.423749], + [-12.732917, 8.41875], + [-12.735416, 8.42125], + [-12.735417, 8.426249], + [-12.737917, 8.428749], + [-12.745416, 8.428749], + [-12.747082, 8.423749], + [-12.74625, 8.418749], + [-12.754582, 8.414584], + [-12.757083, 8.417916], + [-12.760827, 8.41878], + [-12.760143, 8.417594], + [-12.764048, 8.410829], + [-12.767192, 8.410829], + [-12.769058, 8.410406], + [-12.770072, 8.410563], + [-12.765417, 8.40125], + [-12.775386, 8.400796], + [-12.7718, 8.394584], + [-12.774551, 8.389816], + [-12.772083, 8.387916], + [-12.780517, 8.381015] + ] + ], + "type": "Polygon" + }, + "id": 321, + "properties": { + "cc:admin:id": ["62"], + "cc:oBld:total": 38, + "cc:pop:fifteen-to-twenty-four": 316.8288002402285, + "cc:pop:grid3-total": 957.5910404483172, + "cc:pop:kontur-total": 2012.2162945379916, + "cc:pop:men": 829.6464313462609, + "cc:pop:sixty-plus": 100.5950048020884, + "cc:pop:total": 1762.3752648096806, + "cc:pop:under-five": 292.72921080161336, + "cc:pop:women": 932.7288334634196, + "cc:pop:women-fiften-to-forty-nine": 478.85130317419316, + "cc:pop:wp-total": 1719.18186424214, + "cc:pop:wp-total-UN": 1998.9932975521288, + "cc:id": "321", + "cc:Name": "Makalie MCHP", + "cc:site": [-12.7186, 8.4142], + "user:parentName": "Koya", + "user:code": "OU_254969", + "user:orgUnitId": "CgunjDKbM45", + "user:level": "4", + "user:parentId": "pRHGAROvuyI" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.125076, 8.818848], + [-12.11625, 8.819582], + [-12.115806, 8.819806], + [-12.115821, 8.820004], + [-12.114583, 8.820417], + [-12.110417, 8.82375], + [-12.110416, 8.825417], + [-12.107916, 8.828749], + [-12.102371, 8.832711], + [-12.10237, 8.83271], + [-12.102339, 8.832554], + [-12.101249, 8.832916], + [-12.096249, 8.829583], + [-12.090417, 8.832916], + [-12.087082, 8.83125], + [-12.084583, 8.83125], + [-12.082083, 8.83375], + [-12.082916, 8.835417], + [-12.07679, 8.836777], + [-12.076781, 8.836859], + [-12.076978, 8.837135], + [-12.075417, 8.837916], + [-12.069583, 8.837083], + [-12.068749, 8.834583], + [-12.067083, 8.834583], + [-12.062917, 8.838749], + [-12.059583, 8.83875], + [-12.057917, 8.837082], + [-12.061249, 8.832083], + [-12.057995, 8.830782], + [-12.057813, 8.832386], + [-12.057561, 8.833299], + [-12.056471, 8.836483], + [-12.055872, 8.836837], + [-12.05587, 8.836836], + [-12.055106, 8.834436], + [-12.052083, 8.836249], + [-12.050417, 8.840416], + [-12.04875, 8.840417], + [-12.048749, 8.84125], + [-12.044583, 8.842082], + [-12.043811, 8.842082], + [-12.043804, 8.841815], + [-12.043074, 8.840475], + [-12.042766, 8.839474], + [-12.042141, 8.838845], + [-12.041322, 8.837472], + [-12.041448, 8.839036], + [-12.038961, 8.839277], + [-12.03879, 8.839027], + [-12.038382, 8.839016], + [-12.03821, 8.838797], + [-12.037571, 8.838648], + [-12.036171, 8.840527], + [-12.035592, 8.840671], + [-12.034794, 8.840679], + [-12.03363, 8.840282], + [-12.033083, 8.840956], + [-12.032025, 8.841141], + [-12.031848, 8.841455], + [-12.031253, 8.841901], + [-12.0309, 8.842589], + [-12.030277, 8.842739], + [-12.029744, 8.842486], + [-12.03012, 8.840077], + [-12.029449, 8.840297], + [-12.028709, 8.841149], + [-12.027639, 8.841073], + [-12.027508, 8.841326], + [-12.026102, 8.841928], + [-12.025368, 8.842492], + [-12.024994, 8.843107], + [-12.024151, 8.842772], + [-12.02353, 8.842834], + [-12.022949, 8.842316], + [-12.022568, 8.842442], + [-12.02155, 8.842399], + [-12.021085, 8.841797], + [-12.020875, 8.84193], + [-12.02057, 8.842592], + [-12.020688, 8.84319], + [-12.020842, 8.843243], + [-12.020902, 8.843949], + [-12.020797, 8.844031], + [-12.020992, 8.844221], + [-12.020991, 8.844222], + [-12.019798, 8.84416], + [-12.019446, 8.844482], + [-12.018801, 8.844451], + [-12.018721, 8.844282], + [-12.016782, 8.84441], + [-12.016411, 8.844115], + [-12.01626, 8.844095], + [-12.015952, 8.844636], + [-12.016072, 8.845331], + [-12.016563, 8.84591], + [-12.017588, 8.846271], + [-12.017795, 8.846491], + [-12.015128, 8.846465], + [-12.014551, 8.846305], + [-12.014431, 8.846417], + [-12.013974, 8.847009], + [-12.011921, 8.84849], + [-12.010942, 8.851291], + [-12.009894, 8.853512], + [-12.00955, 8.854174], + [-12.004583, 8.855417], + [-12.003749, 8.857917], + [-12.001988, 8.859091], + [-12.00213, 8.85934], + [-11.999583, 8.861249], + [-11.998749, 8.86125], + [-11.994583, 8.862082], + [-11.988593, 8.860752], + [-11.988224, 8.860915], + [-11.98769, 8.861658], + [-11.987634, 8.862434], + [-11.987408, 8.862864], + [-11.987045, 8.863145], + [-11.987183, 8.863574], + [-11.98702, 8.863883], + [-11.987417, 8.864264], + [-11.987035, 8.864633], + [-11.987297, 8.864817], + [-11.987303, 8.865329], + [-11.986648, 8.866494], + [-11.986046, 8.867055], + [-11.984308, 8.86596], + [-11.983614, 8.865229], + [-11.982083, 8.86625], + [-11.981249, 8.870417], + [-11.980607, 8.874909], + [-11.980335, 8.874956], + [-11.978737, 8.874643], + [-11.977071, 8.87461], + [-11.973873, 8.875873], + [-11.972899, 8.8773], + [-11.969199, 8.882], + [-11.967099, 8.8863], + [-11.9648, 8.890499], + [-11.963099, 8.8944], + [-11.960799, 8.8972], + [-11.953, 8.905099], + [-11.956499, 8.907699], + [-11.960899, 8.909999], + [-11.963, 8.9114], + [-11.9668, 8.9149], + [-11.988399, 8.936299], + [-11.991499, 8.939299], + [-11.9946, 8.9419], + [-11.998999, 8.945199], + [-12.001299, 8.9383], + [-12.002899, 8.9316], + [-12.0048, 8.927099], + [-12.0054, 8.923499], + [-12.005599, 8.9148], + [-12.006099, 8.9101], + [-12.008199, 8.9047], + [-12.008899, 8.902], + [-12.009399, 8.8971], + [-12.009999, 8.8944], + [-12.0122, 8.888999], + [-12.012699, 8.885199], + [-12.0125, 8.8664], + [-12.0126, 8.863499], + [-12.0132, 8.860799], + [-12.017099, 8.8524], + [-12.0187, 8.850099], + [-12.0213, 8.8476], + [-12.0245, 8.846], + [-12.0273, 8.8465], + [-12.030099, 8.8489], + [-12.0311, 8.8513], + [-12.032399, 8.857099], + [-12.034299, 8.860699], + [-12.0356, 8.8639], + [-12.038099, 8.868199], + [-12.0396, 8.8713], + [-12.044599, 8.877799], + [-12.0457, 8.8799], + [-12.0463, 8.8822], + [-12.046599, 8.889099], + [-12.0464, 8.898599], + [-12.046599, 8.902199], + [-12.0473, 8.904699], + [-12.0487, 8.9068], + [-12.0504, 8.908099], + [-12.052499, 8.908799], + [-12.0561, 8.909099], + [-12.058799, 8.9089], + [-12.061399, 8.9082], + [-12.0689, 8.904599], + [-12.0711, 8.902999], + [-12.073799, 8.9004], + [-12.075399, 8.8982], + [-12.079599, 8.89], + [-12.0809, 8.886799], + [-12.0833, 8.882499], + [-12.0845, 8.879299], + [-12.086799, 8.8746], + [-12.088, 8.868999], + [-12.090499, 8.8639], + [-12.0917, 8.860699], + [-12.0937, 8.857099], + [-12.095899, 8.8526], + [-12.0989, 8.848899], + [-12.114499, 8.8333], + [-12.118099, 8.8294], + [-12.1199, 8.826699], + [-12.1218, 8.822799], + [-12.123899, 8.8201], + [-12.125076, 8.818848] + ] + ], + "type": "Polygon" + }, + "id": 322, + "properties": { + "cc:admin:id": ["8"], + "cc:oBld:total": 9189, + "cc:pop:fifteen-to-twenty-four": 15397.951924146351, + "cc:pop:grid3-total": 93686.52761133194, + "cc:pop:kontur-total": 86468.89580997435, + "cc:pop:men": 40254.654744994805, + "cc:pop:sixty-plus": 5247.477897907386, + "cc:pop:total": 83502.8935820819, + "cc:pop:under-five": 13434.941008807034, + "cc:pop:women": 43248.23883708712, + "cc:pop:women-fiften-to-forty-nine": 20917.976331215283, + "cc:pop:wp-total": 61763.44571223771, + "cc:pop:wp-total-UN": 71588.02998264018, + "cc:id": "322", + "cc:Name": "Makama MCHP", + "cc:site": [-12.0557, 8.8624], + "user:parentName": "Bombali Sebora", + "user:code": "OU_193209", + "user:orgUnitId": "Dbn6fyCgMBV", + "user:level": "4", + "user:parentId": "KKkLOTpMXGV" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.700415, 8.364129], + [-12.697899, 8.3636], + [-12.6938, 8.3636], + [-12.69, 8.364499], + [-12.684599, 8.3669], + [-12.6749, 8.371499], + [-12.6719, 8.373499], + [-12.668, 8.383799], + [-12.666, 8.387599], + [-12.661099, 8.3934], + [-12.654499, 8.3996], + [-12.6521, 8.401399], + [-12.649499, 8.4028], + [-12.646599, 8.4037], + [-12.639299, 8.4053], + [-12.6306, 8.409599], + [-12.626499, 8.4132], + [-12.623799, 8.4164], + [-12.6202, 8.421399], + [-12.6181, 8.423399], + [-12.614399, 8.4254], + [-12.6076, 8.4272], + [-12.6036, 8.43], + [-12.602199, 8.433], + [-12.6018, 8.437799], + [-12.602374, 8.441306], + [-12.604128, 8.438976], + [-12.604285, 8.439326], + [-12.605741, 8.440626], + [-12.606416, 8.440525], + [-12.607468, 8.440852], + [-12.608749, 8.441803], + [-12.60875, 8.440416], + [-12.61125, 8.43625], + [-12.612916, 8.43625], + [-12.61375, 8.437084], + [-12.620417, 8.437084], + [-12.625617, 8.438383], + [-12.625264, 8.440592], + [-12.625537, 8.440937], + [-12.625847, 8.440104], + [-12.626442, 8.439442], + [-12.629452, 8.437329], + [-12.630233, 8.436787], + [-12.631259, 8.436452], + [-12.632458, 8.435419], + [-12.634422, 8.434378], + [-12.642916, 8.437916], + [-12.642917, 8.433323], + [-12.643944, 8.434146], + [-12.644787, 8.435001], + [-12.646171, 8.435411], + [-12.647163, 8.435514], + [-12.647437, 8.435763], + [-12.647659, 8.435949], + [-12.647717, 8.436403], + [-12.649085, 8.435556], + [-12.65033, 8.435124], + [-12.651277, 8.435177], + [-12.65344, 8.434697], + [-12.654711, 8.434795], + [-12.656661, 8.433776], + [-12.657424, 8.433843], + [-12.658075, 8.434107], + [-12.659092, 8.434013], + [-12.65838, 8.433027], + [-12.658325, 8.43214], + [-12.657387, 8.429827], + [-12.657407, 8.429598], + [-12.657652, 8.429174], + [-12.663659, 8.429173], + [-12.66375, 8.427917], + [-12.671761, 8.427916], + [-12.671877, 8.427581], + [-12.673772, 8.427066], + [-12.675064, 8.426062], + [-12.677643, 8.424449], + [-12.680441, 8.421906], + [-12.681411, 8.421302], + [-12.684788, 8.424301], + [-12.684805, 8.424286], + [-12.686016, 8.423751], + [-12.685968, 8.424148], + [-12.685458, 8.424897], + [-12.687917, 8.427083], + [-12.691249, 8.425416], + [-12.692916, 8.417916], + [-12.692083, 8.409584], + [-12.691249, 8.409583], + [-12.689013, 8.409023], + [-12.688875, 8.406983], + [-12.688511, 8.406206], + [-12.688595, 8.405291], + [-12.688651, 8.404739], + [-12.68864, 8.403541], + [-12.689014, 8.401154], + [-12.689593, 8.399232], + [-12.689826, 8.398096], + [-12.690129, 8.39774], + [-12.690697, 8.396378], + [-12.690594, 8.396029], + [-12.689727, 8.394766], + [-12.691249, 8.393749], + [-12.69125, 8.38625], + [-12.693749, 8.383749], + [-12.69375, 8.382084], + [-12.691249, 8.379584], + [-12.688977, 8.379014], + [-12.690223, 8.376112], + [-12.692531, 8.373195], + [-12.693103, 8.373321], + [-12.693405, 8.373207], + [-12.692916, 8.37125], + [-12.690416, 8.369583], + [-12.689848, 8.366172], + [-12.691262, 8.366061], + [-12.695438, 8.364042], + [-12.696231, 8.363962], + [-12.699614, 8.364233], + [-12.700415, 8.364129] + ] + ], + "type": "Polygon" + }, + "id": 323, + "properties": { + "cc:admin:id": ["62"], + "cc:oBld:total": 77, + "cc:pop:fifteen-to-twenty-four": 294.651655285991, + "cc:pop:grid3-total": 2207.966249864426, + "cc:pop:kontur-total": 1642.4384546615788, + "cc:pop:men": 768.9402609768463, + "cc:pop:sixty-plus": 96.07398981785605, + "cc:pop:total": 1636.6773707967739, + "cc:pop:under-five": 272.77956179946233, + "cc:pop:women": 867.7371098199277, + "cc:pop:women-fiften-to-forty-nine": 438.5520702042783, + "cc:pop:wp-total": 1792.9756568184623, + "cc:pop:wp-total-UN": 2081.5951444890243, + "cc:id": "323", + "cc:Name": "Makarankay MCHP", + "cc:site": [-12.6539, 8.4068], + "user:parentName": "Koya", + "user:code": "OU_254966", + "user:orgUnitId": "XePkcmza9e8", + "user:level": "4", + "user:parentId": "pRHGAROvuyI" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.201249, 8.875416], + [-12.199582, 8.870417], + [-12.197082, 8.868749], + [-12.19625, 8.864583], + [-12.198749, 8.857082], + [-12.19625, 8.847083], + [-12.199582, 8.842917], + [-12.200217, 8.842599], + [-12.197796, 8.842598], + [-12.193891, 8.835833], + [-12.197779, 8.829097], + [-12.192917, 8.829582], + [-12.191733, 8.827218], + [-12.188248, 8.828643], + [-12.186427, 8.829246], + [-12.182714, 8.829927], + [-12.182699, 8.829885], + [-12.182305, 8.828916], + [-12.181669, 8.828118], + [-12.180843, 8.830181], + [-12.179562, 8.830354], + [-12.178552, 8.830512], + [-12.171672, 8.831481], + [-12.170417, 8.827082], + [-12.176067, 8.820624], + [-12.176042, 8.820592], + [-12.176068, 8.820375], + [-12.165417, 8.817916], + [-12.16125, 8.815417], + [-12.162082, 8.812083], + [-12.15625, 8.809583], + [-12.155699, 8.807382], + [-12.155626, 8.807475], + [-12.155429, 8.807835], + [-12.147919, 8.811248], + [-12.147917, 8.811248], + [-12.149582, 8.807083], + [-12.14625, 8.803749], + [-12.147917, 8.80125], + [-12.153749, 8.797916], + [-12.153749, 8.797083], + [-12.153311, 8.796208], + [-12.152029, 8.796758], + [-12.150827, 8.797534], + [-12.149031, 8.79815], + [-12.147972, 8.798805], + [-12.147916, 8.79875], + [-12.143751, 8.798749], + [-12.144169, 8.797489], + [-12.142099, 8.7985], + [-12.138499, 8.8014], + [-12.133799, 8.8065], + [-12.132499, 8.8085], + [-12.1306, 8.812399], + [-12.1286, 8.815099], + [-12.1239, 8.820099], + [-12.1218, 8.822799], + [-12.1199, 8.826699], + [-12.118099, 8.8294], + [-12.114499, 8.8333], + [-12.0989, 8.848899], + [-12.0959, 8.852599], + [-12.0937, 8.857099], + [-12.0917, 8.860699], + [-12.090499, 8.8639], + [-12.088, 8.868999], + [-12.086799, 8.8746], + [-12.0845, 8.879299], + [-12.083299, 8.8825], + [-12.0809, 8.886799], + [-12.080863, 8.886889], + [-12.08125, 8.887082], + [-12.085416, 8.88625], + [-12.088749, 8.887082], + [-12.092083, 8.88375], + [-12.097082, 8.884582], + [-12.097916, 8.880417], + [-12.099582, 8.87875], + [-12.103749, 8.87875], + [-12.105416, 8.884582], + [-12.099583, 8.88625], + [-12.099583, 8.890416], + [-12.101249, 8.890417], + [-12.102083, 8.892082], + [-12.105416, 8.892082], + [-12.107472, 8.891398], + [-12.107795, 8.892334], + [-12.108047, 8.893018], + [-12.108514, 8.893677], + [-12.111816, 8.896628], + [-12.112026, 8.897151], + [-12.111981, 8.899582], + [-12.116249, 8.899583], + [-12.11625, 8.901249], + [-12.11875, 8.903749], + [-12.124582, 8.902083], + [-12.129013, 8.903559], + [-12.128098, 8.904764], + [-12.129583, 8.90625], + [-12.130417, 8.909582], + [-12.134582, 8.911249], + [-12.135416, 8.912082], + [-12.134583, 8.920416], + [-12.137063, 8.925375], + [-12.137142, 8.925381], + [-12.147083, 8.919583], + [-12.151884, 8.922326], + [-12.151979, 8.922164], + [-12.15198, 8.922163], + [-12.154582, 8.925416], + [-12.153865, 8.934032], + [-12.154149, 8.934257], + [-12.155061, 8.935761], + [-12.156691, 8.937089], + [-12.1575, 8.935999], + [-12.1591, 8.933399], + [-12.1609, 8.9322], + [-12.163099, 8.932299], + [-12.165399, 8.9339], + [-12.1679, 8.937299], + [-12.1704, 8.938299], + [-12.173299, 8.9381], + [-12.179199, 8.9356], + [-12.181786, 8.935205], + [-12.182277, 8.934128], + [-12.183018, 8.933257], + [-12.1837, 8.931937], + [-12.184813, 8.930442], + [-12.185555, 8.929721], + [-12.18375, 8.927916], + [-12.184477, 8.916994], + [-12.184174, 8.916643], + [-12.184583, 8.915416], + [-12.187082, 8.913749], + [-12.187917, 8.90375], + [-12.192082, 8.900417], + [-12.195049, 8.900416], + [-12.195335, 8.899979], + [-12.195336, 8.898446], + [-12.195504, 8.8974], + [-12.196301, 8.895329], + [-12.196252, 8.894878], + [-12.19574, 8.894552], + [-12.194165, 8.894978], + [-12.192876, 8.893999], + [-12.192578, 8.893259], + [-12.192507, 8.890324], + [-12.192707, 8.890135], + [-12.192933, 8.890157], + [-12.19337, 8.890512], + [-12.193769, 8.890293], + [-12.19405, 8.889752], + [-12.194246, 8.888426], + [-12.194639, 8.887939], + [-12.190328, 8.887938], + [-12.193847, 8.886408], + [-12.194234, 8.886331], + [-12.194072, 8.885186], + [-12.192083, 8.884372], + [-12.192082, 8.883025], + [-12.191603, 8.882779], + [-12.194812, 8.882778], + [-12.195037, 8.882412], + [-12.194945, 8.881867], + [-12.195251, 8.881028], + [-12.195279, 8.878875], + [-12.196545, 8.87648], + [-12.196167, 8.875961], + [-12.195882, 8.875865], + [-12.195882, 8.875863], + [-12.201249, 8.875416] + ] + ], + "type": "Polygon" + }, + "id": 324, + "properties": { + "cc:admin:id": ["83"], + "cc:oBld:total": 214, + "cc:pop:fifteen-to-twenty-four": 1680.1081305440882, + "cc:pop:grid3-total": 10195.2912319142, + "cc:pop:kontur-total": 9747.971661787486, + "cc:pop:men": 4309.855682885321, + "cc:pop:sixty-plus": 565.304504514734, + "cc:pop:total": 9214.694571934404, + "cc:pop:under-five": 1480.0284893479807, + "cc:pop:women": 4904.838889049086, + "cc:pop:women-fiften-to-forty-nine": 2367.102432440391, + "cc:pop:wp-total": 8440.005611066848, + "cc:pop:wp-total-UN": 9788.593962070227, + "cc:id": "324", + "cc:Name": "Makarie MCHP", + "cc:site": [-12.1263, 8.8648], + "user:parentName": "Makari Gbanti", + "user:code": "OU_193253", + "user:orgUnitId": "wSHfjjFqUay", + "user:level": "4", + "user:parentId": "lY93YpCxJqf" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.146131, 8.435416], + [-12.142278, 8.428743], + [-12.134467, 8.428742], + [-12.132981, 8.42617], + [-12.136249, 8.422083], + [-12.136249, 8.419584], + [-12.132083, 8.414584], + [-12.131249, 8.409584], + [-12.130416, 8.408749], + [-12.12625, 8.407083], + [-12.126249, 8.400417], + [-12.12375, 8.398749], + [-12.123749, 8.392084], + [-12.12226, 8.390594], + [-12.121426, 8.391354], + [-12.120929, 8.392422], + [-12.11625, 8.390417], + [-12.117082, 8.38625], + [-12.117916, 8.384583], + [-12.117082, 8.382917], + [-12.112083, 8.380416], + [-12.112083, 8.379583], + [-12.117082, 8.377916], + [-12.112916, 8.374584], + [-12.110417, 8.37375], + [-12.110416, 8.372084], + [-12.105417, 8.37125], + [-12.105416, 8.376249], + [-12.10375, 8.377917], + [-12.104582, 8.38125], + [-12.100417, 8.385416], + [-12.097083, 8.385417], + [-12.09625, 8.387084], + [-12.096948, 8.39337], + [-12.094873, 8.392593], + [-12.09375, 8.392298], + [-12.093749, 8.394583], + [-12.091249, 8.397083], + [-12.087082, 8.395417], + [-12.083749, 8.395416], + [-12.081249, 8.39375], + [-12.07875, 8.39375], + [-12.077917, 8.39625], + [-12.077917, 8.402083], + [-12.082083, 8.407084], + [-12.082082, 8.410416], + [-12.079583, 8.412916], + [-12.074069, 8.413605], + [-12.074104, 8.412588], + [-12.074061, 8.412014], + [-12.067917, 8.407917], + [-12.060417, 8.41625], + [-12.060417, 8.417084], + [-12.06125, 8.417916], + [-12.062916, 8.41875], + [-12.063749, 8.419584], + [-12.065416, 8.422917], + [-12.064893, 8.424485], + [-12.064499, 8.424142], + [-12.062787, 8.423462], + [-12.061582, 8.423556], + [-12.058654, 8.424531], + [-12.057229, 8.425511], + [-12.0603, 8.4258], + [-12.062599, 8.427399], + [-12.0637, 8.4297], + [-12.063799, 8.4336], + [-12.0624, 8.439599], + [-12.063599, 8.444499], + [-12.063799, 8.448], + [-12.063399, 8.4505], + [-12.061199, 8.4558], + [-12.060699, 8.4585], + [-12.0605, 8.462299], + [-12.0605, 8.472899], + [-12.060599, 8.475599], + [-12.0612, 8.478099], + [-12.0629, 8.479999], + [-12.0679, 8.4816], + [-12.073499, 8.484399], + [-12.075299, 8.485899], + [-12.0779, 8.4897], + [-12.0814, 8.4934], + [-12.087499, 8.499599], + [-12.089999, 8.502499], + [-12.0931, 8.506999], + [-12.098, 8.506699], + [-12.107099, 8.5066], + [-12.111527, 8.506686], + [-12.111823, 8.504547], + [-12.111488, 8.499584], + [-12.113749, 8.499583], + [-12.116291, 8.495771], + [-12.117318, 8.496281], + [-12.119582, 8.494583], + [-12.120416, 8.492917], + [-12.115417, 8.486249], + [-12.114583, 8.482917], + [-12.127916, 8.482083], + [-12.12875, 8.478749], + [-12.128749, 8.472917], + [-12.124583, 8.470416], + [-12.124583, 8.46375], + [-12.132082, 8.459583], + [-12.13125, 8.457916], + [-12.131868, 8.455443], + [-12.135833, 8.455594], + [-12.136263, 8.455757], + [-12.136559, 8.456115], + [-12.136883, 8.456685], + [-12.136903, 8.457026], + [-12.137239, 8.456826], + [-12.137349, 8.456404], + [-12.136646, 8.44985], + [-12.13678, 8.449123], + [-12.138001, 8.448035], + [-12.13625, 8.448011], + [-12.13625, 8.437917], + [-12.13875, 8.435417], + [-12.146131, 8.435416] + ] + ], + "type": "Polygon" + }, + "id": 325, + "properties": { + "cc:admin:id": ["149"], + "cc:oBld:total": 1, + "cc:pop:fifteen-to-twenty-four": 619.522692315673, + "cc:pop:grid3-total": 3207.5432548902445, + "cc:pop:kontur-total": 3409.9594955986645, + "cc:pop:men": 1554.015979787524, + "cc:pop:sixty-plus": 215.1041572973853, + "cc:pop:total": 3345.998654769525, + "cc:pop:under-five": 541.4718953972985, + "cc:pop:women": 1791.9826749819997, + "cc:pop:women-fiften-to-forty-nine": 884.7813798345858, + "cc:pop:wp-total": 4805.2827825422, + "cc:pop:wp-total-UN": 5562.66370357461, + "cc:id": "325", + "cc:Name": "Makelleh MCHP", + "cc:site": [-12.102, 8.4718], + "user:parentName": "Yoni", + "user:code": "OU_268244", + "user:orgUnitId": "NwX8noGxLoz", + "user:level": "4", + "user:parentId": "NNE0YMCDZkO" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.011268, 8.744325], + [-12.0112, 8.7366], + [-12.010999, 8.732999], + [-12.010299, 8.730399], + [-12.0067, 8.7229], + [-12.0044, 8.72], + [-12.0024, 8.718], + [-11.9994, 8.716], + [-11.996199, 8.714499], + [-11.9932, 8.7124], + [-11.9905, 8.7098], + [-11.988924, 8.708148], + [-11.982632, 8.710218], + [-11.980889, 8.710642], + [-11.979471, 8.71143], + [-11.97846, 8.712261], + [-11.97385, 8.714465], + [-11.971853, 8.716586], + [-11.970718, 8.717491], + [-11.969597, 8.718282], + [-11.966312, 8.720203], + [-11.959979, 8.723022], + [-11.956043, 8.724099], + [-11.955035, 8.724459], + [-11.954824, 8.724834], + [-11.954112, 8.724797], + [-11.954134, 8.725158], + [-11.953443, 8.72513], + [-11.953224, 8.72543], + [-11.950919, 8.726455], + [-11.94985, 8.727473], + [-11.949512, 8.728115], + [-11.948925, 8.728563], + [-11.948484, 8.729298], + [-11.948471, 8.729397], + [-11.947917, 8.729583], + [-11.947916, 8.7299], + [-11.947822, 8.730008], + [-11.947786, 8.73007], + [-11.94837, 8.730527], + [-11.948378, 8.730521], + [-11.949244, 8.729459], + [-11.949299, 8.729307], + [-11.952083, 8.72875], + [-11.952451, 8.729486], + [-11.952218, 8.7296], + [-11.952065, 8.729836], + [-11.953749, 8.732083], + [-11.95375, 8.73493], + [-11.956306, 8.735437], + [-11.95744, 8.735921], + [-11.958124, 8.736419], + [-11.959773, 8.738227], + [-11.960342, 8.739079], + [-11.961384, 8.74176], + [-11.965416, 8.740416], + [-11.96625, 8.73875], + [-11.968749, 8.73875], + [-11.967917, 8.745416], + [-11.967917, 8.750416], + [-11.969583, 8.749583], + [-11.970417, 8.752082], + [-11.972916, 8.750417], + [-11.975415, 8.751249], + [-11.972083, 8.75375], + [-11.973781, 8.756014], + [-11.973808, 8.756019], + [-11.974878, 8.756822], + [-11.975636, 8.75779], + [-11.974889, 8.758279], + [-11.97499, 8.758821], + [-11.973775, 8.759173], + [-11.975445, 8.760518], + [-11.975915, 8.760886], + [-11.975984, 8.761603], + [-11.976807, 8.763482], + [-11.977238, 8.764044], + [-11.9786, 8.76518], + [-11.978595, 8.765404], + [-11.978804, 8.765336], + [-11.980268, 8.766672], + [-11.980443, 8.766894], + [-11.980649, 8.767238], + [-11.981387, 8.768273], + [-11.98283, 8.769511], + [-11.98297, 8.769613], + [-11.981962, 8.770124], + [-11.981794, 8.770348], + [-11.98242, 8.770587], + [-11.98202, 8.771206], + [-11.98197, 8.771994], + [-11.982284, 8.772387], + [-11.982141, 8.772901], + [-11.982826, 8.772857], + [-11.983074, 8.772669], + [-11.983311, 8.772832], + [-11.983438, 8.773279], + [-11.983305, 8.77358], + [-11.982912, 8.773806], + [-11.983323, 8.773969], + [-11.983305, 8.774332], + [-11.983055, 8.774688], + [-11.98253, 8.774935], + [-11.982767, 8.775617], + [-11.982647, 8.776471], + [-11.982645, 8.776472], + [-11.982152, 8.77625], + [-11.981918, 8.777019], + [-11.982097, 8.777083], + [-11.98287, 8.776657], + [-11.983635, 8.775692], + [-11.985319, 8.775027], + [-11.985626, 8.774671], + [-11.985627, 8.774672], + [-11.985611, 8.775648], + [-11.985993, 8.776055], + [-11.9875, 8.774799], + [-11.992299, 8.7721], + [-11.9969, 8.769999], + [-12.0005, 8.767199], + [-12.004399, 8.7633], + [-12.0065, 8.760499], + [-12.0104, 8.752599], + [-12.011, 8.750499], + [-12.011299, 8.7478], + [-12.011268, 8.744325] + ] + ], + "type": "Polygon" + }, + "id": 326, + "properties": { + "cc:admin:id": ["106"], + "cc:oBld:total": 327, + "cc:pop:fifteen-to-twenty-four": 740.5965838260848, + "cc:pop:grid3-total": 3214.5086464871347, + "cc:pop:kontur-total": 5269.04053410083, + "cc:pop:men": 1832.2555801024278, + "cc:pop:sixty-plus": 228.62513429624724, + "cc:pop:total": 4000.237839222008, + "cc:pop:under-five": 634.5529158915176, + "cc:pop:women": 2167.9822591195807, + "cc:pop:women-fiften-to-forty-nine": 1076.9846204913683, + "cc:pop:wp-total": 3428.170867184334, + "cc:pop:wp-total-UN": 3978.137821766695, + "cc:id": "326", + "cc:Name": "Makeni-Lol MCHP", + "cc:site": [-11.9981, 8.74], + "user:parentName": "Paki Masabong", + "user:code": "OU_193297", + "user:orgUnitId": "dmdYffw2I0F", + "user:level": "4", + "user:parentId": "L8iA6eLwKNb" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.604489, 8.404208], + [-12.603749, 8.394584], + [-12.592917, 8.397916], + [-12.592482, 8.399215], + [-12.591847, 8.398853], + [-12.58986, 8.398155], + [-12.587271, 8.397922], + [-12.584471, 8.399319], + [-12.583377, 8.399499], + [-12.583376, 8.399498], + [-12.583749, 8.39875], + [-12.582082, 8.397084], + [-12.57625, 8.394584], + [-12.575633, 8.398277], + [-12.574505, 8.397539], + [-12.568751, 8.400416], + [-12.56875, 8.400415], + [-12.568749, 8.392917], + [-12.56375, 8.392917], + [-12.562917, 8.394583], + [-12.562082, 8.394583], + [-12.55875, 8.392916], + [-12.557916, 8.387917], + [-12.55625, 8.38875], + [-12.553749, 8.393749], + [-12.55125, 8.392084], + [-12.551249, 8.390417], + [-12.549583, 8.38875], + [-12.549582, 8.38732], + [-12.549487, 8.387357], + [-12.546749, 8.389952], + [-12.546506, 8.390193], + [-12.545597, 8.389752], + [-12.545317, 8.389753], + [-12.545317, 8.389752], + [-12.54627, 8.388804], + [-12.546444, 8.388343], + [-12.546444, 8.387571], + [-12.546185, 8.386157], + [-12.546228, 8.385865], + [-12.54375, 8.389583], + [-12.54125, 8.389584], + [-12.541249, 8.391249], + [-12.529583, 8.391249], + [-12.529583, 8.384584], + [-12.529999, 8.384167], + [-12.526943, 8.384166], + [-12.523037, 8.377401], + [-12.520099, 8.377401], + [-12.517917, 8.379583], + [-12.51625, 8.379584], + [-12.517082, 8.38375], + [-12.509583, 8.38625], + [-12.508749, 8.391249], + [-12.505417, 8.39125], + [-12.500417, 8.393749], + [-12.499582, 8.39375], + [-12.494583, 8.395416], + [-12.492083, 8.397084], + [-12.4914, 8.403233], + [-12.492587, 8.403903], + [-12.492083, 8.405416], + [-12.487917, 8.408749], + [-12.490417, 8.40875], + [-12.490417, 8.419073], + [-12.490443, 8.419154], + [-12.489327, 8.422961], + [-12.488483, 8.425672], + [-12.48855, 8.42734], + [-12.489081, 8.428684], + [-12.489353, 8.429174], + [-12.482083, 8.432084], + [-12.482916, 8.439583], + [-12.482917, 8.440416], + [-12.486249, 8.444584], + [-12.482129, 8.452138], + [-12.480412, 8.451139], + [-12.480202, 8.451638], + [-12.479833, 8.452004], + [-12.480159, 8.453451], + [-12.480177, 8.453884], + [-12.479961, 8.454386], + [-12.4824, 8.453599], + [-12.486599, 8.4529], + [-12.49231, 8.452998], + [-12.4924, 8.453], + [-12.4966, 8.4537], + [-12.5025, 8.4557], + [-12.506799, 8.456399], + [-12.510999, 8.4563], + [-12.514899, 8.455099], + [-12.518399, 8.451699], + [-12.522099, 8.4386], + [-12.5241, 8.433199], + [-12.5264, 8.429399], + [-12.5284, 8.4276], + [-12.5315, 8.4264], + [-12.535499, 8.4264], + [-12.5397, 8.4278], + [-12.541699, 8.4296], + [-12.544999, 8.435099], + [-12.5471, 8.4379], + [-12.549799, 8.440399], + [-12.553599, 8.442999], + [-12.556199, 8.445399], + [-12.55961, 8.449491], + [-12.560237, 8.449031], + [-12.560698, 8.449009], + [-12.561368, 8.44872], + [-12.56212, 8.44799], + [-12.562451, 8.447891], + [-12.562747, 8.447869], + [-12.563584, 8.447327], + [-12.5633, 8.446858], + [-12.562353, 8.445418], + [-12.562353, 8.445417], + [-12.569582, 8.445416], + [-12.567917, 8.442083], + [-12.567917, 8.437084], + [-12.569582, 8.435417], + [-12.573489, 8.435417], + [-12.573633, 8.436112], + [-12.573733, 8.436394], + [-12.574496, 8.438837], + [-12.575416, 8.437916], + [-12.578749, 8.42875], + [-12.579583, 8.428749], + [-12.581007, 8.42305], + [-12.580904, 8.423012], + [-12.580652, 8.42281], + [-12.58125, 8.420417], + [-12.58625, 8.419584], + [-12.593749, 8.420416], + [-12.595417, 8.41125], + [-12.597372, 8.410271], + [-12.59706, 8.408986], + [-12.597873, 8.409069], + [-12.598847, 8.408828], + [-12.59968, 8.407943], + [-12.601159, 8.406825], + [-12.602493, 8.404849], + [-12.602934, 8.404595], + [-12.603291, 8.404406], + [-12.604316, 8.4043], + [-12.604489, 8.404208] + ] + ], + "type": "Polygon" + }, + "id": 327, + "properties": { + "cc:admin:id": ["149"], + "cc:oBld:total": 309, + "cc:pop:fifteen-to-twenty-four": 868.988469132906, + "cc:pop:grid3-total": 5627.4486377715, + "cc:pop:kontur-total": 4838.322382758435, + "cc:pop:men": 2159.5909712471253, + "cc:pop:sixty-plus": 301.86941992326723, + "cc:pop:total": 4643.415788137075, + "cc:pop:under-five": 751.2224916277471, + "cc:pop:women": 2483.824816889951, + "cc:pop:women-fiften-to-forty-nine": 1233.259323109475, + "cc:pop:wp-total": 4383.074029535575, + "cc:pop:wp-total-UN": 5081.896069375849, + "cc:id": "327", + "cc:Name": "Makeni-Rokfullah MCHP", + "cc:site": [-12.5409, 8.4255], + "user:parentName": "Yoni", + "user:code": "OU_268245", + "user:orgUnitId": "jbfISeV6Wdu", + "user:level": "4", + "user:parentId": "NNE0YMCDZkO" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.713749, 8.467084], + [-12.707082, 8.466249], + [-12.705363, 8.463097], + [-12.704983, 8.462903], + [-12.705158, 8.462721], + [-12.702083, 8.457084], + [-12.700417, 8.456249], + [-12.701249, 8.45375], + [-12.700417, 8.452084], + [-12.697916, 8.451249], + [-12.695417, 8.439584], + [-12.696249, 8.437917], + [-12.695918, 8.437254], + [-12.695444, 8.437567], + [-12.695037, 8.438056], + [-12.690417, 8.435416], + [-12.687917, 8.427917], + [-12.687916, 8.427084], + [-12.685458, 8.424898], + [-12.685968, 8.424148], + [-12.686016, 8.423751], + [-12.684805, 8.424286], + [-12.684787, 8.424301], + [-12.681411, 8.421302], + [-12.680441, 8.421906], + [-12.677643, 8.424449], + [-12.675064, 8.426062], + [-12.673772, 8.427066], + [-12.671877, 8.427582], + [-12.671761, 8.427916], + [-12.66375, 8.427917], + [-12.663659, 8.429173], + [-12.657652, 8.429174], + [-12.657407, 8.429598], + [-12.657387, 8.429827], + [-12.658325, 8.43214], + [-12.65838, 8.433026], + [-12.659091, 8.434012], + [-12.659091, 8.434014], + [-12.658075, 8.434107], + [-12.657424, 8.433843], + [-12.656662, 8.433776], + [-12.654712, 8.434795], + [-12.65344, 8.434697], + [-12.651277, 8.435177], + [-12.65033, 8.435124], + [-12.649085, 8.435556], + [-12.647717, 8.436403], + [-12.647659, 8.435949], + [-12.647437, 8.435763], + [-12.647162, 8.435514], + [-12.646171, 8.435411], + [-12.644787, 8.435002], + [-12.643944, 8.434146], + [-12.642917, 8.433323], + [-12.642917, 8.437915], + [-12.642915, 8.437916], + [-12.634423, 8.434378], + [-12.632458, 8.435419], + [-12.631259, 8.436452], + [-12.630233, 8.436787], + [-12.629452, 8.437329], + [-12.626442, 8.439442], + [-12.625847, 8.440104], + [-12.625537, 8.440936], + [-12.625264, 8.440592], + [-12.625617, 8.438383], + [-12.620417, 8.437084], + [-12.61375, 8.437084], + [-12.612916, 8.43625], + [-12.61125, 8.43625], + [-12.60875, 8.440417], + [-12.608749, 8.441802], + [-12.607468, 8.440852], + [-12.606416, 8.440525], + [-12.60574, 8.440626], + [-12.604285, 8.439326], + [-12.604128, 8.438976], + [-12.602374, 8.441307], + [-12.6027, 8.4433], + [-12.604351, 8.447262], + [-12.609582, 8.447917], + [-12.61125, 8.44875], + [-12.614582, 8.448749], + [-12.61625, 8.447917], + [-12.622916, 8.447917], + [-12.625417, 8.451249], + [-12.626422, 8.451586], + [-12.626664, 8.452961], + [-12.626572, 8.453503], + [-12.626445, 8.453749], + [-12.635416, 8.45375], + [-12.635251, 8.455733], + [-12.638562, 8.455734], + [-12.642468, 8.462499], + [-12.64651, 8.4625], + [-12.64625, 8.464583], + [-12.647083, 8.464584], + [-12.651643, 8.472941], + [-12.653121, 8.472346], + [-12.654483, 8.471255], + [-12.655179, 8.469801], + [-12.655921, 8.467466], + [-12.666249, 8.470416], + [-12.664583, 8.476249], + [-12.664293, 8.47654], + [-12.664847, 8.477499], + [-12.670346, 8.4775], + [-12.669471, 8.478551], + [-12.670117, 8.478865], + [-12.670412, 8.478866], + [-12.671323, 8.481396], + [-12.671892, 8.483105], + [-12.672615, 8.484492], + [-12.671599, 8.484661], + [-12.670852, 8.484987], + [-12.670472, 8.485347], + [-12.670244, 8.486011], + [-12.670338, 8.486931], + [-12.670708, 8.487292], + [-12.670795, 8.487763], + [-12.670978, 8.487929], + [-12.672869, 8.487332], + [-12.673446, 8.48771], + [-12.674373, 8.487902], + [-12.675596, 8.488759], + [-12.676545, 8.488593], + [-12.676853, 8.487758], + [-12.677359, 8.487385], + [-12.677626, 8.486648], + [-12.677628, 8.486647], + [-12.67986, 8.490513], + [-12.682658, 8.490514], + [-12.682917, 8.490417], + [-12.684583, 8.490417], + [-12.687917, 8.494583], + [-12.689313, 8.495048], + [-12.689211, 8.495231], + [-12.694583, 8.497916], + [-12.697917, 8.497916], + [-12.697916, 8.497083], + [-12.695417, 8.484583], + [-12.697917, 8.482917], + [-12.705416, 8.487083], + [-12.703749, 8.482084], + [-12.700417, 8.480416], + [-12.700936, 8.478856], + [-12.701825, 8.478905], + [-12.70254, 8.479125], + [-12.705417, 8.47625], + [-12.712082, 8.476249], + [-12.713749, 8.467084] + ] + ], + "type": "Polygon" + }, + "id": 328, + "properties": { + "cc:admin:id": ["62"], + "cc:oBld:total": 175, + "cc:pop:fifteen-to-twenty-four": 614.1326544322342, + "cc:pop:grid3-total": 5743.301790628677, + "cc:pop:kontur-total": 3178.395999469136, + "cc:pop:men": 1571.0712342923136, + "cc:pop:sixty-plus": 206.47446993110134, + "cc:pop:total": 3355.928191070231, + "cc:pop:under-five": 552.3311220028628, + "cc:pop:women": 1784.856956777918, + "cc:pop:women-fiften-to-forty-nine": 892.269649840683, + "cc:pop:wp-total": 3116.3347472192913, + "cc:pop:wp-total-UN": 3610.2700135855507, + "cc:id": "328", + "cc:Name": "Makiteh MCHP", + "cc:site": [-12.6678, 8.4556], + "user:parentName": "Koya", + "user:code": "OU_254974", + "user:orgUnitId": "YldSFPxB6WH", + "user:level": "4", + "user:parentId": "pRHGAROvuyI" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.321156, 8.597329], + [-12.320799, 8.5951], + [-12.317799, 8.591399], + [-12.310599, 8.588199], + [-12.303299, 8.583799], + [-12.2956, 8.5803], + [-12.288899, 8.578299], + [-12.2823, 8.5755], + [-12.275099, 8.571599], + [-12.271699, 8.568199], + [-12.270199, 8.564499], + [-12.269599, 8.5588], + [-12.265, 8.5572], + [-12.262799, 8.5581], + [-12.2573, 8.559399], + [-12.2549, 8.561], + [-12.2529, 8.5636], + [-12.2508, 8.5697], + [-12.2522, 8.575], + [-12.2528, 8.5787], + [-12.253199, 8.584499], + [-12.253699, 8.587299], + [-12.255599, 8.591699], + [-12.255999, 8.594099], + [-12.255699, 8.5965], + [-12.2542, 8.600199], + [-12.253808, 8.602315], + [-12.257414, 8.602316], + [-12.26132, 8.609081], + [-12.266068, 8.609081], + [-12.265417, 8.60125], + [-12.273265, 8.599109], + [-12.273278, 8.599587], + [-12.273835, 8.600752], + [-12.275327, 8.604275], + [-12.275922, 8.60473], + [-12.277719, 8.605268], + [-12.278775, 8.606531], + [-12.279334, 8.60659], + [-12.282082, 8.606271], + [-12.282083, 8.611249], + [-12.284583, 8.612084], + [-12.287083, 8.615416], + [-12.29079, 8.615417], + [-12.290748, 8.615649], + [-12.29375, 8.61625], + [-12.297916, 8.617917], + [-12.298749, 8.619584], + [-12.29125, 8.626249], + [-12.290417, 8.627916], + [-12.29125, 8.632083], + [-12.29375, 8.632083], + [-12.301249, 8.629584], + [-12.302917, 8.627917], + [-12.30875, 8.62875], + [-12.311249, 8.631249], + [-12.31125, 8.632916], + [-12.312917, 8.627916], + [-12.315417, 8.626249], + [-12.320637, 8.624011], + [-12.321099, 8.619899], + [-12.3198, 8.6128], + [-12.3198, 8.6085], + [-12.321599, 8.6001], + [-12.321156, 8.597329] + ] + ], + "type": "Polygon" + }, + "id": 329, + "properties": { + "cc:admin:id": ["85"], + "cc:oBld:total": 10, + "cc:pop:fifteen-to-twenty-four": 303.37888356820247, + "cc:pop:grid3-total": 2411.4030535167035, + "cc:pop:kontur-total": 1583.860665143615, + "cc:pop:men": 740.7884917482176, + "cc:pop:sixty-plus": 103.22562861488814, + "cc:pop:total": 1596.3013219431834, + "cc:pop:under-five": 258.9132485803268, + "cc:pop:women": 855.5128301949657, + "cc:pop:women-fiften-to-forty-nine": 424.14261855008414, + "cc:pop:wp-total": 1326.8961971819033, + "cc:pop:wp-total-UN": 1541.663058975797, + "cc:id": "329", + "cc:Name": "Makoba Bana MCHP", + "cc:site": [-12.3177, 8.6081], + "user:parentName": "Malal Mara", + "user:code": "OU_268188", + "user:orgUnitId": "KwSj4DlRWAm", + "user:level": "4", + "user:parentId": "EVkm2xYcf6Z" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.997064, 8.810262], + [-11.997099, 8.809299], + [-11.9964, 8.8058], + [-11.9947, 8.8026], + [-11.9883, 8.796], + [-11.9866, 8.7939], + [-11.9827, 8.786599], + [-11.9822, 8.7837], + [-11.982899, 8.7809], + [-11.985699, 8.7763], + [-11.985992, 8.776055], + [-11.985611, 8.775648], + [-11.985627, 8.77467], + [-11.985319, 8.775027], + [-11.983635, 8.775693], + [-11.98287, 8.776658], + [-11.982098, 8.777083], + [-11.981918, 8.777019], + [-11.982151, 8.77625], + [-11.982646, 8.776472], + [-11.982767, 8.775617], + [-11.98253, 8.774935], + [-11.983055, 8.774687], + [-11.983305, 8.774332], + [-11.983323, 8.773969], + [-11.982913, 8.773806], + [-11.983305, 8.773579], + [-11.983438, 8.773279], + [-11.983311, 8.772832], + [-11.983074, 8.772669], + [-11.982826, 8.772857], + [-11.982141, 8.772901], + [-11.982284, 8.772387], + [-11.98197, 8.771994], + [-11.98202, 8.771206], + [-11.98242, 8.770587], + [-11.981794, 8.770348], + [-11.981962, 8.770124], + [-11.98297, 8.769613], + [-11.98283, 8.769511], + [-11.981387, 8.768273], + [-11.980649, 8.767238], + [-11.980443, 8.766894], + [-11.980268, 8.766672], + [-11.978804, 8.765336], + [-11.978595, 8.765404], + [-11.9786, 8.765181], + [-11.977238, 8.764044], + [-11.976807, 8.763482], + [-11.975984, 8.761603], + [-11.975915, 8.760887], + [-11.975445, 8.760518], + [-11.973776, 8.759173], + [-11.973776, 8.759172], + [-11.97499, 8.75882], + [-11.974889, 8.758278], + [-11.975636, 8.75779], + [-11.974878, 8.756822], + [-11.973808, 8.756019], + [-11.973782, 8.756015], + [-11.972083, 8.75375], + [-11.975416, 8.75125], + [-11.972917, 8.750417], + [-11.970417, 8.752082], + [-11.969582, 8.749583], + [-11.967918, 8.750416], + [-11.967917, 8.750415], + [-11.967917, 8.745416], + [-11.968749, 8.73875], + [-11.96625, 8.73875], + [-11.965416, 8.740417], + [-11.961384, 8.74176], + [-11.960342, 8.739079], + [-11.959773, 8.738227], + [-11.958124, 8.736419], + [-11.95744, 8.735921], + [-11.956306, 8.735437], + [-11.95375, 8.73493], + [-11.953749, 8.732083], + [-11.952065, 8.729837], + [-11.952217, 8.7296], + [-11.95245, 8.729485], + [-11.952082, 8.72875], + [-11.949299, 8.729307], + [-11.949244, 8.729459], + [-11.948378, 8.730521], + [-11.948371, 8.730527], + [-11.947786, 8.73007], + [-11.947822, 8.730008], + [-11.947916, 8.7299], + [-11.947917, 8.729583], + [-11.948471, 8.729397], + [-11.948484, 8.729298], + [-11.948925, 8.728563], + [-11.949512, 8.728115], + [-11.94985, 8.727473], + [-11.950919, 8.726455], + [-11.953224, 8.72543], + [-11.953443, 8.72513], + [-11.954134, 8.725158], + [-11.954112, 8.724797], + [-11.954824, 8.724834], + [-11.955035, 8.724458], + [-11.956043, 8.724099], + [-11.959979, 8.723022], + [-11.966312, 8.720203], + [-11.969597, 8.718282], + [-11.970718, 8.717491], + [-11.971853, 8.716586], + [-11.97385, 8.714465], + [-11.97846, 8.712261], + [-11.979471, 8.71143], + [-11.980889, 8.710642], + [-11.982632, 8.710218], + [-11.988924, 8.708147], + [-11.986399, 8.7055], + [-11.980199, 8.7066], + [-11.974799, 8.7086], + [-11.9681, 8.710499], + [-11.958399, 8.7152], + [-11.953699, 8.7182], + [-11.9493, 8.723099], + [-11.946699, 8.7254], + [-11.9337, 8.734399], + [-11.926199, 8.7377], + [-11.9163, 8.745099], + [-11.91, 8.749299], + [-11.9069, 8.752099], + [-11.905569, 8.753726], + [-11.90668, 8.753873], + [-11.907672, 8.755095], + [-11.908765, 8.755835], + [-11.909589, 8.755818], + [-11.910021, 8.75564], + [-11.910326, 8.755357], + [-11.910965, 8.753176], + [-11.911381, 8.753196], + [-11.911769, 8.752657], + [-11.91176, 8.750766], + [-11.912138, 8.749523], + [-11.91537, 8.74789], + [-11.915416, 8.747895], + [-11.915417, 8.747917], + [-11.918749, 8.752917], + [-11.919481, 8.759501], + [-11.91924, 8.759766], + [-11.925416, 8.762083], + [-11.92375, 8.767082], + [-11.924583, 8.767916], + [-11.929582, 8.767084], + [-11.92875, 8.772082], + [-11.928749, 8.772433], + [-11.927115, 8.773808], + [-11.924769, 8.775974], + [-11.924202, 8.776819], + [-11.92389, 8.777029], + [-11.927083, 8.779582], + [-11.936249, 8.779583], + [-11.93875, 8.782082], + [-11.940612, 8.782549], + [-11.940607, 8.782559], + [-11.939958, 8.783015], + [-11.937545, 8.783322], + [-11.936017, 8.785151], + [-11.937917, 8.789582], + [-11.941249, 8.79125], + [-11.943749, 8.79375], + [-11.945416, 8.797083], + [-11.945417, 8.798749], + [-11.954582, 8.79875], + [-11.954583, 8.805416], + [-11.957082, 8.807916], + [-11.957083, 8.808467], + [-11.957351, 8.808399], + [-11.958489, 8.808558], + [-11.959973, 8.809146], + [-11.960574, 8.809231], + [-11.955417, 8.812917], + [-11.95375, 8.823749], + [-11.961249, 8.824582], + [-11.962083, 8.823749], + [-11.970416, 8.822083], + [-11.972917, 8.825416], + [-11.975434, 8.824787], + [-11.97649, 8.829037], + [-11.976417, 8.830557], + [-11.976965, 8.832916], + [-11.978749, 8.832916], + [-11.985086, 8.825789], + [-11.985087, 8.825789], + [-11.985238, 8.826385], + [-11.986387, 8.827354], + [-11.987956, 8.82841], + [-11.9908, 8.822799], + [-11.9954, 8.817099], + [-11.9965, 8.814699], + [-11.996999, 8.812], + [-11.997064, 8.810262] + ] + ], + "type": "Polygon" + }, + "id": 330, + "properties": { + "cc:admin:id": ["106"], + "cc:oBld:total": 2238, + "cc:pop:fifteen-to-twenty-four": 2393.1990971303007, + "cc:pop:grid3-total": 16565.064803953297, + "cc:pop:kontur-total": 12383.769142473782, + "cc:pop:men": 5895.810387106996, + "cc:pop:sixty-plus": 760.291237512171, + "cc:pop:total": 12906.104734623548, + "cc:pop:under-five": 2046.701931487748, + "cc:pop:women": 7010.294347516554, + "cc:pop:women-fiften-to-forty-nine": 3470.2324277461084, + "cc:pop:wp-total": 11233.78736084022, + "cc:pop:wp-total-UN": 13019.745230428694, + "cc:id": "330", + "cc:Name": "Makolor CHP", + "cc:site": [-11.9556, 8.7597], + "user:parentName": "Paki Masabong", + "user:code": "OU_193296", + "user:orgUnitId": "si34vmovtgR", + "user:level": "4", + "user:parentId": "L8iA6eLwKNb" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.623421, 8.647808], + [-11.61375, 8.644584], + [-11.605417, 8.647916], + [-11.604583, 8.647083], + [-11.603749, 8.644584], + [-11.58625, 8.644584], + [-11.586249, 8.649583], + [-11.585417, 8.649583], + [-11.585417, 8.633342], + [-11.588087, 8.632803], + [-11.590088, 8.632091], + [-11.591114, 8.631444], + [-11.592073, 8.630592], + [-11.592916, 8.629603], + [-11.592916, 8.625417], + [-11.58875, 8.621249], + [-11.587082, 8.617084], + [-11.581249, 8.618749], + [-11.580417, 8.616249], + [-11.580416, 8.60375], + [-11.57625, 8.602917], + [-11.574582, 8.602916], + [-11.570417, 8.599584], + [-11.569582, 8.59625], + [-11.564583, 8.595417], + [-11.563749, 8.59375], + [-11.561249, 8.592916], + [-11.560058, 8.589341], + [-11.561305, 8.588122], + [-11.561651, 8.587516], + [-11.56206, 8.58716], + [-11.563175, 8.58445], + [-11.563294, 8.583085], + [-11.56435, 8.580724], + [-11.5603, 8.584699], + [-11.5573, 8.588299], + [-11.5535, 8.5958], + [-11.5526, 8.6011], + [-11.552699, 8.612699], + [-11.5522, 8.617299], + [-11.5499, 8.622699], + [-11.5484, 8.628499], + [-11.5465, 8.632999], + [-11.545899, 8.6351], + [-11.5455, 8.6393], + [-11.5455, 8.651899], + [-11.5448, 8.655399], + [-11.5427, 8.659799], + [-11.541399, 8.663], + [-11.5389, 8.668099], + [-11.537399, 8.674], + [-11.536099, 8.6763], + [-11.532199, 8.6814], + [-11.5303, 8.685299], + [-11.5282, 8.688799], + [-11.5264, 8.692699], + [-11.5244, 8.696199], + [-11.5235, 8.6993], + [-11.5241, 8.702299], + [-11.5261, 8.703599], + [-11.5284, 8.703299], + [-11.536099, 8.6989], + [-11.5411, 8.694699], + [-11.5445, 8.692799], + [-11.5493, 8.690399], + [-11.5527, 8.689499], + [-11.559699, 8.6886], + [-11.565099, 8.6865], + [-11.567699, 8.6859], + [-11.572999, 8.6853], + [-11.5756, 8.684699], + [-11.5779, 8.683299], + [-11.583, 8.679399], + [-11.5883, 8.676399], + [-11.5937, 8.672099], + [-11.6015, 8.668099], + [-11.604, 8.667299], + [-11.608699, 8.6663], + [-11.6107, 8.665299], + [-11.616099, 8.6605], + [-11.619199, 8.6566], + [-11.623399, 8.6479], + [-11.623421, 8.647808] + ] + ], + "type": "Polygon" + }, + "id": 331, + "properties": { + "cc:admin:id": ["69"], + "cc:oBld:total": 1, + "cc:pop:fifteen-to-twenty-four": 842.6231235233179, + "cc:pop:grid3-total": 5265.953364363055, + "cc:pop:kontur-total": 4880.84366182994, + "cc:pop:men": 2208.547321074737, + "cc:pop:sixty-plus": 292.56223419860896, + "cc:pop:total": 4501.268066153719, + "cc:pop:under-five": 709.6446881975276, + "cc:pop:women": 2292.720745078983, + "cc:pop:women-fiften-to-forty-nine": 1120.2176415265856, + "cc:pop:wp-total": 4140.878639495394, + "cc:pop:wp-total-UN": 4793.876028749003, + "cc:id": "331", + "cc:Name": "Makoni Line MCHP", + "cc:site": [-11.5743, 8.6373], + "user:parentName": "Kunike Barina", + "user:code": "OU_268214", + "user:orgUnitId": "CebtBqqp1fp", + "user:level": "4", + "user:parentId": "rXLor9Knq6l" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.838749, 8.642917], + [-11.837083, 8.641249], + [-11.838749, 8.63375], + [-11.83625, 8.632917], + [-11.836152, 8.632819], + [-11.836028, 8.632958], + [-11.83375, 8.631249], + [-11.832916, 8.62625], + [-11.832083, 8.625416], + [-11.83125, 8.622917], + [-11.832916, 8.61625], + [-11.83375, 8.615416], + [-11.835416, 8.612917], + [-11.832917, 8.609583], + [-11.833749, 8.59875], + [-11.82625, 8.594583], + [-11.829582, 8.589584], + [-11.834582, 8.587083], + [-11.834582, 8.586249], + [-11.832917, 8.582083], + [-11.833749, 8.579584], + [-11.83375, 8.578749], + [-11.838749, 8.567917], + [-11.831249, 8.567083], + [-11.824583, 8.560417], + [-11.824583, 8.558749], + [-11.825416, 8.554584], + [-11.826591, 8.552821], + [-11.825299, 8.552099], + [-11.822099, 8.550799], + [-11.8177, 8.5484], + [-11.814499, 8.546999], + [-11.8102, 8.5446], + [-11.806999, 8.543299], + [-11.8027, 8.5409], + [-11.799499, 8.539599], + [-11.7951, 8.5372], + [-11.791899, 8.535899], + [-11.7876, 8.5335], + [-11.7837, 8.5317], + [-11.777199, 8.526799], + [-11.7688, 8.5223], + [-11.765499, 8.520999], + [-11.7612, 8.5186], + [-11.757999, 8.517299], + [-11.7537, 8.5149], + [-11.750499, 8.513499], + [-11.746099, 8.511199], + [-11.742899, 8.509799], + [-11.7386, 8.5075], + [-11.7343, 8.5054], + [-11.7286, 8.501], + [-11.722999, 8.497899], + [-11.719999, 8.495499], + [-11.714599, 8.490499], + [-11.7103, 8.487], + [-11.706099, 8.484799], + [-11.6984, 8.4803], + [-11.6947, 8.489199], + [-11.693, 8.495299], + [-11.6907, 8.500699], + [-11.6892, 8.506399], + [-11.687299, 8.5109], + [-11.6857, 8.517599], + [-11.6837, 8.521999], + [-11.682199, 8.528], + [-11.6797, 8.533999], + [-11.679299, 8.5368], + [-11.6791, 8.544599], + [-11.6794, 8.5484], + [-11.680199, 8.551099], + [-11.681599, 8.553499], + [-11.6835, 8.5556], + [-11.6911, 8.563], + [-11.6934, 8.5659], + [-11.695399, 8.569799], + [-11.697799, 8.574999], + [-11.699, 8.5801], + [-11.701599, 8.585199], + [-11.703, 8.5884], + [-11.7051, 8.5923], + [-11.7058, 8.5944], + [-11.706299, 8.597999], + [-11.7062, 8.603099], + [-11.705199, 8.6078], + [-11.7017, 8.614499], + [-11.6974, 8.620099], + [-11.6961, 8.622399], + [-11.696, 8.625199], + [-11.699599, 8.633099], + [-11.702199, 8.637399], + [-11.7036, 8.6405], + [-11.705899, 8.644899], + [-11.7066, 8.6489], + [-11.7068, 8.6532], + [-11.706999, 8.666599], + [-11.7069, 8.670399], + [-11.706499, 8.6732], + [-11.7041, 8.679999], + [-11.705599, 8.6817], + [-11.7068, 8.685], + [-11.7073, 8.6898], + [-11.707399, 8.698799], + [-11.7073, 8.702799], + [-11.7069, 8.706199], + [-11.706299, 8.7083], + [-11.7024, 8.715799], + [-11.6992, 8.720099], + [-11.6979, 8.722199], + [-11.6973, 8.724599], + [-11.6991, 8.7271], + [-11.70259, 8.733142], + [-11.702702, 8.733142], + [-11.706608, 8.726377], + [-11.71442, 8.726376], + [-11.718327, 8.719612], + [-11.726139, 8.719611], + [-11.730046, 8.712846], + [-11.732916, 8.712846], + [-11.732917, 8.715416], + [-11.735417, 8.717916], + [-11.743749, 8.715417], + [-11.744582, 8.71125], + [-11.746249, 8.710416], + [-11.74625, 8.709582], + [-11.747601, 8.709132], + [-11.747549, 8.708933], + [-11.752916, 8.70625], + [-11.757082, 8.705416], + [-11.757083, 8.701249], + [-11.758749, 8.700417], + [-11.760517, 8.702183], + [-11.765544, 8.702183], + [-11.76945, 8.695418], + [-11.772321, 8.695417], + [-11.772083, 8.694582], + [-11.772083, 8.687401], + [-11.776379, 8.687401], + [-11.780286, 8.694166], + [-11.784443, 8.694167], + [-11.784583, 8.692916], + [-11.793749, 8.692082], + [-11.794583, 8.690416], + [-11.798749, 8.689583], + [-11.806249, 8.690416], + [-11.810416, 8.683752], + [-11.811187, 8.693764], + [-11.811821, 8.693085], + [-11.813106, 8.692101], + [-11.813648, 8.691364], + [-11.814432, 8.68992], + [-11.815154, 8.689538], + [-11.815512, 8.689923], + [-11.816964, 8.690794], + [-11.818108, 8.691218], + [-11.820765, 8.691359], + [-11.824736, 8.691134], + [-11.825135, 8.69123], + [-11.82375, 8.682916], + [-11.827083, 8.677917], + [-11.831249, 8.677082], + [-11.83125, 8.674583], + [-11.829582, 8.674583], + [-11.820417, 8.675416], + [-11.81875, 8.67375], + [-11.82125, 8.665417], + [-11.823749, 8.662084], + [-11.822083, 8.660416], + [-11.82263, 8.657679], + [-11.826139, 8.657305], + [-11.835069, 8.656455], + [-11.836249, 8.656617], + [-11.836249, 8.65375], + [-11.834583, 8.651249], + [-11.837082, 8.647084], + [-11.837916, 8.646249], + [-11.837917, 8.645525], + [-11.838229, 8.645514], + [-11.838749, 8.642917] + ] + ], + "type": "Polygon" + }, + "id": 332, + "properties": { + "cc:admin:id": ["132"], + "cc:oBld:total": 228, + "cc:pop:fifteen-to-twenty-four": 2523.3785413433175, + "cc:pop:grid3-total": 17866.844704577805, + "cc:pop:kontur-total": 13806.292197050472, + "cc:pop:men": 6179.448039886663, + "cc:pop:sixty-plus": 889.5466903082762, + "cc:pop:total": 13406.016065685142, + "cc:pop:under-five": 2108.524030184982, + "cc:pop:women": 7226.568025798475, + "cc:pop:women-fiften-to-forty-nine": 3509.2013911835247, + "cc:pop:wp-total": 13614.691926816242, + "cc:pop:wp-total-UN": 15742.032755443066, + "cc:id": "332", + "cc:Name": "Makrugbeh MCHP", + "cc:site": [-11.8119, 8.6483], + "user:parentName": "Tane", + "user:code": "OU_268219", + "user:orgUnitId": "G5NCnFJ3bbV", + "user:level": "4", + "user:parentId": "xhyjU2SVewz" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.056249, 8.80625], + [-12.052084, 8.807082], + [-12.054582, 8.802917], + [-12.051249, 8.80125], + [-12.048749, 8.801249], + [-12.047917, 8.799583], + [-12.050416, 8.797082], + [-12.050416, 8.794583], + [-12.047083, 8.794583], + [-12.042917, 8.798749], + [-12.042083, 8.798749], + [-12.042083, 8.792082], + [-12.04375, 8.790417], + [-12.045416, 8.790416], + [-12.049582, 8.78625], + [-12.044841, 8.785063], + [-12.044842, 8.785062], + [-12.045103, 8.785053], + [-12.045661, 8.78407], + [-12.046031, 8.78253], + [-12.047425, 8.782726], + [-12.047998, 8.781377], + [-12.047745, 8.781367], + [-12.047189, 8.782423], + [-12.046955, 8.782514], + [-12.046053, 8.781887], + [-12.04582, 8.781577], + [-12.045683, 8.781107], + [-12.045016, 8.780797], + [-12.04326, 8.780458], + [-12.041443, 8.784204], + [-12.040576, 8.784467], + [-12.039386, 8.784272], + [-12.038758, 8.784007], + [-12.038424, 8.782576], + [-12.037625, 8.782135], + [-12.036858, 8.781419], + [-12.036784, 8.780444], + [-12.037716, 8.780369], + [-12.037707, 8.779888], + [-12.037352, 8.779114], + [-12.037015, 8.779075], + [-12.036513, 8.777929], + [-12.036538, 8.777609], + [-12.036924, 8.777178], + [-12.03684, 8.776853], + [-12.037084, 8.776255], + [-12.037572, 8.775846], + [-12.03585, 8.775713], + [-12.035341, 8.775865], + [-12.035205, 8.775831], + [-12.034582, 8.775417], + [-12.034231, 8.775592], + [-12.03314, 8.776059], + [-12.033108, 8.776154], + [-12.03125, 8.777083], + [-12.031134, 8.777256], + [-12.031633, 8.777145], + [-12.031634, 8.777146], + [-12.031249, 8.777917], + [-12.022917, 8.782082], + [-12.022082, 8.767917], + [-12.017986, 8.772013], + [-12.018528, 8.77251], + [-12.018407, 8.773932], + [-12.018574, 8.774253], + [-12.018384, 8.774545], + [-12.01831, 8.775541], + [-12.018617, 8.777455], + [-12.017944, 8.778028], + [-12.017181, 8.778241], + [-12.015926, 8.778187], + [-12.015694, 8.778129], + [-12.014734, 8.776455], + [-12.01447, 8.776342], + [-12.01423, 8.775733], + [-12.01424, 8.775304], + [-12.014459, 8.775208], + [-12.014439, 8.774997], + [-12.01409, 8.77435], + [-12.01417, 8.774064], + [-12.014004, 8.773687], + [-12.014579, 8.773372], + [-12.014332, 8.773067], + [-12.014216, 8.772422], + [-12.014325, 8.772371], + [-12.013749, 8.772082], + [-12.009582, 8.769583], + [-12.00625, 8.769582], + [-12.006249, 8.76875], + [-12.005876, 8.768004], + [-12.003201, 8.767822], + [-12.001126, 8.768243], + [-11.999721, 8.768553], + [-11.998959, 8.768958], + [-11.99718, 8.772233], + [-11.996875, 8.772004], + [-11.996048, 8.770591], + [-11.995244, 8.770756], + [-11.992299, 8.7721], + [-11.9875, 8.774799], + [-11.9857, 8.776299], + [-11.982899, 8.7809], + [-11.9822, 8.7837], + [-11.9827, 8.786599], + [-11.9866, 8.7939], + [-11.9883, 8.796], + [-11.9947, 8.8026], + [-11.9964, 8.8058], + [-11.997099, 8.809299], + [-11.996999, 8.812], + [-11.9965, 8.814699], + [-11.9954, 8.817099], + [-11.990799, 8.8228], + [-11.986999, 8.8303], + [-11.986199, 8.8336], + [-11.985699, 8.8389], + [-11.984801, 8.842294], + [-11.983, 8.845799], + [-11.981699, 8.849], + [-11.979499, 8.8534], + [-11.978799, 8.8568], + [-11.9786, 8.864999], + [-11.9779, 8.867799], + [-11.9744, 8.875099], + [-11.973873, 8.875872], + [-11.977071, 8.87461], + [-11.978737, 8.874643], + [-11.980335, 8.874956], + [-11.980607, 8.874909], + [-11.981249, 8.870417], + [-11.982083, 8.86625], + [-11.983614, 8.865229], + [-11.984308, 8.86596], + [-11.986046, 8.867055], + [-11.986648, 8.866494], + [-11.987303, 8.865329], + [-11.987297, 8.864817], + [-11.987035, 8.864633], + [-11.987417, 8.864265], + [-11.98702, 8.863884], + [-11.987183, 8.863574], + [-11.987045, 8.863145], + [-11.987409, 8.862864], + [-11.987634, 8.862433], + [-11.98769, 8.861658], + [-11.988224, 8.860914], + [-11.988594, 8.860752], + [-11.994583, 8.862082], + [-11.998749, 8.86125], + [-11.999582, 8.861249], + [-12.00213, 8.85934], + [-12.001988, 8.859091], + [-12.003749, 8.857916], + [-12.004583, 8.855417], + [-12.00955, 8.854174], + [-12.009894, 8.853512], + [-12.010942, 8.851291], + [-12.01192, 8.84849], + [-12.013974, 8.847009], + [-12.014431, 8.846417], + [-12.014551, 8.846305], + [-12.015128, 8.846465], + [-12.017796, 8.846491], + [-12.017588, 8.846271], + [-12.016563, 8.845911], + [-12.016072, 8.845332], + [-12.015952, 8.844636], + [-12.016259, 8.844095], + [-12.016412, 8.844115], + [-12.016782, 8.84441], + [-12.018721, 8.844282], + [-12.018801, 8.84445], + [-12.019446, 8.844482], + [-12.019798, 8.84416], + [-12.020993, 8.844222], + [-12.020797, 8.844031], + [-12.020902, 8.843949], + [-12.020842, 8.843243], + [-12.020687, 8.84319], + [-12.02057, 8.842592], + [-12.020874, 8.84193], + [-12.021085, 8.841797], + [-12.02155, 8.842399], + [-12.022568, 8.842442], + [-12.022949, 8.842316], + [-12.02353, 8.842834], + [-12.024151, 8.842772], + [-12.024994, 8.843107], + [-12.025368, 8.842492], + [-12.026102, 8.841928], + [-12.027508, 8.841325], + [-12.027638, 8.841073], + [-12.027389, 8.840782], + [-12.027573, 8.840216], + [-12.027463, 8.839942], + [-12.02714, 8.83983], + [-12.027098, 8.839284], + [-12.026716, 8.838453], + [-12.0271, 8.837043], + [-12.022471, 8.837898], + [-12.022369, 8.837494], + [-12.021917, 8.837119], + [-12.02192, 8.835816], + [-12.022059, 8.835425], + [-12.022091, 8.834756], + [-12.022254, 8.834489], + [-12.022561, 8.83441], + [-12.022725, 8.833838], + [-12.022217, 8.833555], + [-12.022129, 8.833229], + [-12.021119, 8.832525], + [-12.021322, 8.83233], + [-12.022093, 8.832401], + [-12.022141, 8.832146], + [-12.022637, 8.831712], + [-12.023571, 8.832053], + [-12.024123, 8.831998], + [-12.024318, 8.831975], + [-12.02596, 8.833243], + [-12.025967, 8.832639], + [-12.0262, 8.832296], + [-12.026121, 8.831909], + [-12.025554, 8.831038], + [-12.024667, 8.830807], + [-12.024779, 8.830567], + [-12.024407, 8.829077], + [-12.025502, 8.827705], + [-12.026249, 8.827429], + [-12.026143, 8.826955], + [-12.026592, 8.826661], + [-12.027795, 8.825916], + [-12.028227, 8.825809], + [-12.028345, 8.82534], + [-12.028107, 8.824804], + [-12.02778, 8.824505], + [-12.027429, 8.824293], + [-12.027098, 8.824412], + [-12.02663, 8.82408], + [-12.02663, 8.824078], + [-12.026744, 8.824025], + [-12.027006, 8.82373], + [-12.027262, 8.823505], + [-12.027601, 8.823983], + [-12.028034, 8.823691], + [-12.029051, 8.823317], + [-12.029679, 8.823258], + [-12.030041, 8.823411], + [-12.031062, 8.823354], + [-12.031493, 8.822695], + [-12.031583, 8.821917], + [-12.031981, 8.820997], + [-12.03222, 8.820911], + [-12.031846, 8.820006], + [-12.031987, 8.819656], + [-12.032506, 8.81942], + [-12.033081, 8.81898], + [-12.03347, 8.819571], + [-12.033919, 8.819216], + [-12.034538, 8.819072], + [-12.035302, 8.819275], + [-12.035607, 8.819529], + [-12.035862, 8.819649], + [-12.035891, 8.819553], + [-12.037751, 8.815246], + [-12.038237, 8.814153], + [-12.038918, 8.813568], + [-12.03892, 8.813569], + [-12.039089, 8.814729], + [-12.0393, 8.816187], + [-12.041109, 8.816974], + [-12.041252, 8.817045], + [-12.042195, 8.817367], + [-12.042875, 8.817402], + [-12.044254, 8.816734], + [-12.045827, 8.816284], + [-12.045999, 8.816048], + [-12.045393, 8.814259], + [-12.048749, 8.812917], + [-12.049583, 8.812083], + [-12.050417, 8.812082], + [-12.056249, 8.809582], + [-12.056249, 8.80625] + ] + ], + "type": "Polygon" + }, + "id": 333, + "properties": { + "cc:admin:id": ["8"], + "cc:oBld:total": 629, + "cc:pop:fifteen-to-twenty-four": 903.9315752650912, + "cc:pop:grid3-total": 5285.758949906287, + "cc:pop:kontur-total": 5208.598148894868, + "cc:pop:men": 2396.373807648333, + "cc:pop:sixty-plus": 285.1412048589192, + "cc:pop:total": 5048.9381418903495, + "cc:pop:under-five": 830.757219000047, + "cc:pop:women": 2652.5643342420162, + "cc:pop:women-fiften-to-forty-nine": 1241.2712056971047, + "cc:pop:wp-total": 2669.489882771359, + "cc:pop:wp-total-UN": 3076.877425986675, + "cc:id": "333", + "cc:Name": "Makump Bana MCHP", + "cc:site": [-12.0393, 8.8057], + "user:parentName": "Bombali Sebora", + "user:code": "OU_193211", + "user:orgUnitId": "E7IDb3nNiW7", + "user:level": "4", + "user:parentId": "KKkLOTpMXGV" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.671899, 8.3735], + [-12.6644, 8.374199], + [-12.658499, 8.374399], + [-12.6543, 8.3741], + [-12.6502, 8.3731], + [-12.646399, 8.370999], + [-12.639, 8.3659], + [-12.636399, 8.363499], + [-12.6329, 8.3593], + [-12.629999, 8.3572], + [-12.626099, 8.355999], + [-12.616299, 8.354499], + [-12.605, 8.3508], + [-12.5964, 8.3459], + [-12.589899, 8.343699], + [-12.5833, 8.3406], + [-12.578599, 8.337499], + [-12.5741, 8.3334], + [-12.570299, 8.328799], + [-12.568499, 8.325399], + [-12.567, 8.3193], + [-12.5671, 8.313999], + [-12.5696, 8.304099], + [-12.57, 8.299799], + [-12.570199, 8.2924], + [-12.564, 8.292999], + [-12.5597, 8.294099], + [-12.5523, 8.297699], + [-12.548999, 8.298299], + [-12.5309, 8.2953], + [-12.5271, 8.2935], + [-12.524001, 8.291486], + [-12.520417, 8.292084], + [-12.51875, 8.292916], + [-12.517917, 8.292084], + [-12.517082, 8.301249], + [-12.512083, 8.30375], + [-12.512083, 8.307917], + [-12.512809, 8.308642], + [-12.513741, 8.307578], + [-12.517082, 8.309583], + [-12.51875, 8.313749], + [-12.521249, 8.31375], + [-12.521249, 8.320416], + [-12.520416, 8.321249], + [-12.517917, 8.322084], + [-12.51625, 8.332083], + [-12.51875, 8.334584], + [-12.518749, 8.337084], + [-12.517083, 8.345416], + [-12.528749, 8.35125], + [-12.519583, 8.359584], + [-12.520417, 8.362917], + [-12.524582, 8.371249], + [-12.522083, 8.37375], + [-12.521249, 8.376249], + [-12.520099, 8.3774], + [-12.523038, 8.377401], + [-12.526944, 8.384166], + [-12.529998, 8.384167], + [-12.529583, 8.384584], + [-12.529583, 8.391249], + [-12.541249, 8.391249], + [-12.54125, 8.389584], + [-12.543749, 8.389583], + [-12.546227, 8.385867], + [-12.546185, 8.386157], + [-12.546444, 8.387571], + [-12.546444, 8.388343], + [-12.54627, 8.388804], + [-12.545316, 8.389753], + [-12.545597, 8.389752], + [-12.546505, 8.390193], + [-12.546749, 8.389952], + [-12.549487, 8.387357], + [-12.549582, 8.38732], + [-12.549583, 8.388749], + [-12.551249, 8.390417], + [-12.55125, 8.392083], + [-12.553749, 8.393749], + [-12.556249, 8.38875], + [-12.557916, 8.387917], + [-12.55875, 8.392916], + [-12.562082, 8.394583], + [-12.562916, 8.394583], + [-12.56375, 8.392917], + [-12.568749, 8.392917], + [-12.56875, 8.400416], + [-12.574506, 8.397538], + [-12.575633, 8.398277], + [-12.57625, 8.394584], + [-12.582082, 8.397084], + [-12.583749, 8.398749], + [-12.583375, 8.3995], + [-12.584471, 8.399319], + [-12.587271, 8.397922], + [-12.58986, 8.398155], + [-12.591847, 8.398853], + [-12.592482, 8.399215], + [-12.592917, 8.397916], + [-12.603749, 8.394584], + [-12.60407, 8.39875], + [-12.609585, 8.398751], + [-12.609586, 8.398752], + [-12.609123, 8.399493], + [-12.609137, 8.400185], + [-12.610662, 8.400152], + [-12.611623, 8.399768], + [-12.613302, 8.400814], + [-12.613654, 8.401912], + [-12.613688, 8.402779], + [-12.613189, 8.403719], + [-12.612878, 8.404745], + [-12.614039, 8.40552], + [-12.615295, 8.405836], + [-12.61566, 8.406019], + [-12.614583, 8.404583], + [-12.615417, 8.392917], + [-12.619582, 8.389584], + [-12.629521, 8.390347], + [-12.629203, 8.387291], + [-12.629236, 8.387193], + [-12.636607, 8.387807], + [-12.636999, 8.387407], + [-12.63702, 8.386838], + [-12.637253, 8.38659], + [-12.637046, 8.386049], + [-12.63695, 8.384791], + [-12.637785, 8.38437], + [-12.638949, 8.384972], + [-12.640494, 8.385115], + [-12.642264, 8.385726], + [-12.644105, 8.386519], + [-12.645209, 8.387943], + [-12.64875, 8.392083], + [-12.650417, 8.390417], + [-12.659582, 8.390417], + [-12.66242, 8.391835], + [-12.665999, 8.3876], + [-12.667999, 8.3838], + [-12.671899, 8.3735] + ] + ], + "type": "Polygon" + }, + "id": 334, + "properties": { + "cc:admin:id": ["149"], + "cc:oBld:total": 44, + "cc:pop:fifteen-to-twenty-four": 1102.432524232394, + "cc:pop:grid3-total": 6288.304338762895, + "cc:pop:kontur-total": 5867.975543043219, + "cc:pop:men": 2736.4860542352535, + "cc:pop:sixty-plus": 372.8081501969409, + "cc:pop:total": 5907.970479596414, + "cc:pop:under-five": 944.0753609207508, + "cc:pop:women": 3171.4844253611604, + "cc:pop:women-fiften-to-forty-nine": 1555.0149006118875, + "cc:pop:wp-total": 5318.511440993751, + "cc:pop:wp-total-UN": 6162.748928814397, + "cc:id": "334", + "cc:Name": "Makundu MCHP", + "cc:site": [-12.5722, 8.3622], + "user:parentName": "Yoni", + "user:code": "OU_268230", + "user:orgUnitId": "LWlh25dfvEA", + "user:level": "4", + "user:parentId": "NNE0YMCDZkO" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.795559, 8.83655], + [-12.780417, 8.831249], + [-12.780417, 8.830416], + [-12.783021, 8.825206], + [-12.783556, 8.825293], + [-12.784173, 8.825203], + [-12.785507, 8.824413], + [-12.78362, 8.824477], + [-12.781242, 8.823728], + [-12.780039, 8.823742], + [-12.779607, 8.823896], + [-12.778937, 8.82478], + [-12.779014, 8.825417], + [-12.777996, 8.826703], + [-12.77375, 8.827916], + [-12.773749, 8.825417], + [-12.770165, 8.818963], + [-12.770283, 8.818717], + [-12.760417, 8.816249], + [-12.762916, 8.807917], + [-12.759583, 8.80625], + [-12.75466, 8.809062], + [-12.754628, 8.809021], + [-12.754518, 8.808871], + [-12.754202, 8.80847], + [-12.754153, 8.808539], + [-12.750416, 8.807917], + [-12.740417, 8.807916], + [-12.740529, 8.806559], + [-12.740496, 8.806558], + [-12.737035, 8.800563], + [-12.736249, 8.802917], + [-12.732083, 8.806249], + [-12.730416, 8.806249], + [-12.72625, 8.805417], + [-12.726249, 8.804583], + [-12.725416, 8.803749], + [-12.719583, 8.79375], + [-12.717916, 8.793749], + [-12.714583, 8.790417], + [-12.714132, 8.788617], + [-12.713828, 8.788671], + [-12.712673, 8.789031], + [-12.710989, 8.790018], + [-12.708886, 8.790781], + [-12.708418, 8.791107], + [-12.706772, 8.791502], + [-12.705612, 8.791163], + [-12.703703, 8.790893], + [-12.702633, 8.79101], + [-12.700417, 8.791736], + [-12.700417, 8.790416], + [-12.701249, 8.785417], + [-12.69125, 8.78125], + [-12.689583, 8.787082], + [-12.685416, 8.787916], + [-12.683751, 8.787084], + [-12.683713, 8.78678], + [-12.678457, 8.783278], + [-12.677106, 8.78162], + [-12.676089, 8.781121], + [-12.673496, 8.779084], + [-12.67315, 8.778512], + [-12.672292, 8.777922], + [-12.671498, 8.777026], + [-12.670014, 8.775801], + [-12.667748, 8.775858], + [-12.667321, 8.775978], + [-12.667399, 8.7774], + [-12.667, 8.780099], + [-12.6655, 8.783399], + [-12.6622, 8.787499], + [-12.6609, 8.7898], + [-12.6609, 8.793099], + [-12.662799, 8.798], + [-12.662499, 8.801199], + [-12.6608, 8.804699], + [-12.659499, 8.8079], + [-12.6571, 8.812099], + [-12.655699, 8.8153], + [-12.6533, 8.819599], + [-12.651999, 8.8227], + [-12.65, 8.826299], + [-12.649199, 8.8297], + [-12.6489, 8.8333], + [-12.649, 8.837], + [-12.65, 8.8418], + [-12.654399, 8.849999], + [-12.6571, 8.8531], + [-12.66, 8.8554], + [-12.665399, 8.858299], + [-12.668099, 8.860299], + [-12.670599, 8.857], + [-12.6729, 8.853599], + [-12.677, 8.850999], + [-12.6792, 8.8505], + [-12.681599, 8.8513], + [-12.683599, 8.853099], + [-12.685299, 8.855099], + [-12.686299, 8.857199], + [-12.6868, 8.8594], + [-12.686999, 8.866699], + [-12.687299, 8.869399], + [-12.688, 8.871599], + [-12.689799, 8.874199], + [-12.6931, 8.8774], + [-12.697199, 8.879899], + [-12.6999, 8.881999], + [-12.7023, 8.8826], + [-12.705699, 8.882699], + [-12.709299, 8.881899], + [-12.7116, 8.880499], + [-12.7137, 8.878599], + [-12.720999, 8.8711], + [-12.7231, 8.8694], + [-12.7265, 8.868099], + [-12.737299, 8.867299], + [-12.740599, 8.8659], + [-12.7464, 8.861499], + [-12.7503, 8.859599], + [-12.754499, 8.8572], + [-12.758499, 8.8555], + [-12.7613, 8.853899], + [-12.7651, 8.852099], + [-12.7682, 8.849799], + [-12.773799, 8.8445], + [-12.7765, 8.8427], + [-12.7795, 8.841899], + [-12.785799, 8.8412], + [-12.787899, 8.8407], + [-12.794899, 8.8371], + [-12.795559, 8.83655] + ] + ], + "type": "Polygon" + }, + "id": 335, + "properties": { + "cc:admin:id": ["80"], + "cc:oBld:total": 106, + "cc:pop:fifteen-to-twenty-four": 1152.6789056699536, + "cc:pop:grid3-total": 5660.567542640789, + "cc:pop:kontur-total": 6110.946721959553, + "cc:pop:men": 2898.3195605716205, + "cc:pop:sixty-plus": 354.9555149878769, + "cc:pop:total": 6270.562302889229, + "cc:pop:under-five": 991.2812137358451, + "cc:pop:women": 3372.2427423176077, + "cc:pop:women-fiften-to-forty-nine": 1646.5774730929475, + "cc:pop:wp-total": 7343.959224777607, + "cc:pop:wp-total-UN": 8508.313945326541, + "cc:id": "335", + "cc:Name": "Malal MCHP", + "cc:site": [-12.7345, 8.8474], + "user:parentName": "Maforki", + "user:code": "OU_254947", + "user:orgUnitId": "FFU3PJ3pY7s", + "user:level": "4", + "user:parentId": "JdqfYTIFZXN" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.260296, 8.428255], + [-13.25639, 8.421489], + [-13.248578, 8.421488], + [-13.244671, 8.414723], + [-13.23686, 8.414722], + [-13.236734, 8.414506], + [-13.236523, 8.413456], + [-13.225558, 8.421488], + [-13.232107, 8.421489], + [-13.234582, 8.424583], + [-13.234582, 8.426249], + [-13.232917, 8.427917], + [-13.232917, 8.437916], + [-13.234449, 8.437611], + [-13.236859, 8.441786], + [-13.23592, 8.443413], + [-13.236546, 8.444262], + [-13.237317, 8.444614], + [-13.239779, 8.446697], + [-13.240592, 8.446918], + [-13.240849, 8.447004], + [-13.240865, 8.447053], + [-13.240861, 8.447113], + [-13.24051, 8.447734], + [-13.241165, 8.448167], + [-13.241451, 8.447839], + [-13.242416, 8.448726], + [-13.242861, 8.448494], + [-13.242874, 8.448343], + [-13.242876, 8.448342], + [-13.244217, 8.449704], + [-13.245619, 8.450009], + [-13.245908, 8.450746], + [-13.246011, 8.451668], + [-13.247372, 8.451937], + [-13.248399, 8.452217], + [-13.249395, 8.452466], + [-13.250015, 8.452878], + [-13.25053, 8.45371], + [-13.25042, 8.454631], + [-13.250735, 8.454883], + [-13.250959, 8.454528], + [-13.251304, 8.454411], + [-13.251435, 8.454047], + [-13.251589, 8.453437], + [-13.252236, 8.452698], + [-13.252626, 8.453413], + [-13.252964, 8.454318], + [-13.25328, 8.454311], + [-13.253648, 8.454726], + [-13.254355, 8.454523], + [-13.254919, 8.454699], + [-13.25497, 8.453232], + [-13.254676, 8.453172], + [-13.25461, 8.453085], + [-13.254777, 8.452317], + [-13.254779, 8.452316], + [-13.255155, 8.452527], + [-13.25578, 8.452431], + [-13.25615, 8.45229], + [-13.256534, 8.452362], + [-13.256589, 8.451752], + [-13.256816, 8.450538], + [-13.257022, 8.450553], + [-13.257153, 8.448754], + [-13.256734, 8.447971], + [-13.257538, 8.447549], + [-13.257936, 8.448272], + [-13.258446, 8.447981], + [-13.258782, 8.447778], + [-13.258721, 8.44713], + [-13.258439, 8.446854], + [-13.258484, 8.446619], + [-13.258479, 8.446612], + [-13.25864, 8.445644], + [-13.25847, 8.445436], + [-13.257254, 8.445153], + [-13.256468, 8.444981], + [-13.25609, 8.444633], + [-13.255446, 8.444766], + [-13.25527, 8.444604], + [-13.255317, 8.443953], + [-13.255883, 8.443761], + [-13.25549, 8.443264], + [-13.255407, 8.442577], + [-13.254603, 8.44233], + [-13.255459, 8.441068], + [-13.256294, 8.441438], + [-13.2565, 8.441572], + [-13.256981, 8.442748], + [-13.257488, 8.442422], + [-13.257565, 8.442038], + [-13.257928, 8.441737], + [-13.257813, 8.441564], + [-13.257896, 8.441437], + [-13.257941, 8.441361], + [-13.257976, 8.440849], + [-13.257764, 8.440269], + [-13.257271, 8.439649], + [-13.257025, 8.4389], + [-13.256202, 8.438305], + [-13.255778, 8.436904], + [-13.255258, 8.435301], + [-13.255033, 8.435021], + [-13.25639, 8.43502], + [-13.257385, 8.433295], + [-13.257083, 8.432084], + [-13.258086, 8.432083], + [-13.260296, 8.428255] + ] + ], + "type": "Polygon" + }, + "id": 336, + "properties": { + "cc:admin:id": ["26"], + "cc:oBld:total": 3114, + "cc:pop:fifteen-to-twenty-four": 13339.483458929335, + "cc:pop:grid3-total": 14761.921937352587, + "cc:pop:kontur-total": 69668.67288168309, + "cc:pop:men": 29170.450816245568, + "cc:pop:sixty-plus": 4542.152058321345, + "cc:pop:total": 58188.0232665576, + "cc:pop:under-five": 6728.897249117571, + "cc:pop:women": 29017.57245031204, + "cc:pop:women-fiften-to-forty-nine": 15554.51931947647, + "cc:pop:wp-total": 35804.97340228947, + "cc:pop:wp-total-UN": 41514.59472621525, + "cc:id": "336", + "cc:Name": "Malama MCHP", + "cc:site": [-13.2542, 8.4506], + "user:parentName": "Freetown", + "user:code": "OU_278327", + "user:orgUnitId": "kBrq7i12aan", + "user:level": "4", + "user:parentId": "C9uduqDZr9d" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.046152, 8.306916], + [-13.046121, 8.306298], + [-13.045598, 8.305461], + [-13.041685, 8.304861], + [-13.040417, 8.305294], + [-13.040416, 8.302084], + [-13.037243, 8.29891], + [-13.037622, 8.29692], + [-13.03507, 8.296737], + [-13.034583, 8.296249], + [-13.036147, 8.29312], + [-13.037642, 8.292796], + [-13.037434, 8.291862], + [-13.039582, 8.285416], + [-13.037917, 8.275417], + [-13.038749, 8.274583], + [-13.039582, 8.271249], + [-13.038975, 8.27052], + [-13.037972, 8.270943], + [-13.036614, 8.271656], + [-13.035427, 8.272198], + [-13.034442, 8.272639], + [-13.033526, 8.272402], + [-13.032815, 8.271453], + [-13.032169, 8.270944], + [-13.030914, 8.270739], + [-13.029693, 8.270367], + [-13.028641, 8.269926], + [-13.028064, 8.269518], + [-13.027215, 8.268975], + [-13.026335, 8.268433], + [-13.024908, 8.268398], + [-13.024163, 8.268026], + [-13.023722, 8.26738], + [-13.023822, 8.266194], + [-13.023959, 8.26565], + [-13.023959, 8.264904], + [-13.023857, 8.264226], + [-13.023721, 8.263886], + [-13.023043, 8.263445], + [-13.022805, 8.263276], + [-13.022262, 8.262766], + [-13.02121, 8.262087], + [-13.020395, 8.261341], + [-13.019582, 8.260629], + [-13.019378, 8.260052], + [-13.018631, 8.259034], + [-13.017444, 8.25839], + [-13.016325, 8.257542], + [-13.015238, 8.256863], + [-13.01378, 8.256727], + [-13.012727, 8.2571], + [-13.011709, 8.257608], + [-13.010488, 8.257269], + [-13.010183, 8.256387], + [-13.010387, 8.254962], + [-13.010489, 8.254216], + [-13.0111, 8.253334], + [-13.011812, 8.252926], + [-13.012693, 8.252417], + [-13.013236, 8.251705], + [-13.013644, 8.250653], + [-13.014119, 8.249499], + [-13.014391, 8.248787], + [-13.014696, 8.248244], + [-13.015748, 8.246683], + [-13.016188, 8.245327], + [-13.016426, 8.244241], + [-13.016595, 8.242985], + [-13.016698, 8.242543], + [-13.016771, 8.241527], + [-13.017419, 8.239581], + [-13.0175, 8.239204], + [-13.01739, 8.238636], + [-13.014574, 8.234024], + [-13.004885, 8.232378], + [-12.999993, 8.236516], + [-12.994018, 8.236988], + [-12.969205, 8.256153], + [-12.966201, 8.258472], + [-12.963182, 8.260806], + [-12.963132, 8.261229], + [-12.964024, 8.263893], + [-12.964696, 8.265432], + [-12.965827, 8.26611], + [-12.967916, 8.26628], + [-12.967917, 8.270416], + [-12.972575, 8.271082], + [-12.972571, 8.271088], + [-12.97257, 8.271602], + [-12.973473, 8.272123], + [-12.974106, 8.274702], + [-12.975136, 8.275222], + [-12.975134, 8.275995], + [-12.975907, 8.276258], + [-12.975902, 8.277545], + [-12.976935, 8.277551], + [-12.976928, 8.279096], + [-12.980726, 8.278227], + [-12.981161, 8.278661], + [-12.980977, 8.279286], + [-12.978992, 8.280138], + [-12.978984, 8.281683], + [-12.979362, 8.283747], + [-12.980772, 8.286071], + [-12.981548, 8.286205], + [-12.982059, 8.287109], + [-12.981148, 8.28865], + [-12.982215, 8.290289], + [-12.982797, 8.29072], + [-12.9829, 8.291265], + [-12.982256, 8.291911], + [-12.982545, 8.2923], + [-12.982082, 8.292917], + [-12.98125, 8.300416], + [-12.981927, 8.301093], + [-12.982628, 8.300612], + [-12.983103, 8.300129], + [-12.983375, 8.29954], + [-12.984747, 8.299902], + [-12.986206, 8.300799], + [-12.988682, 8.302348], + [-12.986027, 8.303748], + [-12.984793, 8.303899], + [-12.98375, 8.303672], + [-12.98375, 8.308749], + [-12.987917, 8.307084], + [-12.990416, 8.307084], + [-12.992083, 8.30875], + [-12.992917, 8.312083], + [-12.995416, 8.314583], + [-12.995417, 8.314711], + [-12.995995, 8.314768], + [-12.996352, 8.315229], + [-12.996844, 8.315448], + [-12.997906, 8.31534], + [-12.998749, 8.315563], + [-13.000043, 8.3154], + [-13.000542, 8.315566], + [-13.001471, 8.31529], + [-13.003344, 8.315835], + [-13.004762, 8.316871], + [-13.007258, 8.318658], + [-13.008506, 8.319428], + [-13.00972, 8.320002], + [-13.010417, 8.317917], + [-13.012083, 8.317084], + [-13.01375, 8.31875], + [-13.014583, 8.322916], + [-13.018749, 8.322917], + [-13.020015, 8.324181], + [-13.020891, 8.323879], + [-13.021547, 8.323352], + [-13.022133, 8.323338], + [-13.02292, 8.323195], + [-13.023797, 8.323288], + [-13.02411, 8.323249], + [-13.024297, 8.323118], + [-13.024935, 8.322866], + [-13.025524, 8.322664], + [-13.025549, 8.322695], + [-13.026109, 8.323478], + [-13.02754, 8.322751], + [-13.02786, 8.322636], + [-13.027398, 8.321222], + [-13.027588, 8.320843], + [-13.027371, 8.32044], + [-13.027371, 8.320438], + [-13.02794, 8.320628], + [-13.028479, 8.321222], + [-13.028429, 8.321288], + [-13.028337, 8.321572], + [-13.028367, 8.322621], + [-13.029869, 8.322685], + [-13.030301, 8.322621], + [-13.031854, 8.321982], + [-13.032741, 8.321609], + [-13.032223, 8.32084], + [-13.034373, 8.319874], + [-13.035186, 8.317708], + [-13.03547, 8.317096], + [-13.036321, 8.315726], + [-13.03698, 8.314647], + [-13.037677, 8.313065], + [-13.037757, 8.31296], + [-13.038826, 8.313638], + [-13.039127, 8.314051], + [-13.039842, 8.314411], + [-13.040296, 8.314225], + [-13.040664, 8.31431], + [-13.040056, 8.313772], + [-13.039791, 8.312548], + [-13.040505, 8.312357], + [-13.041546, 8.311685], + [-13.042305, 8.311453], + [-13.042867, 8.310466], + [-13.045186, 8.310037], + [-13.045476, 8.309612], + [-13.04514, 8.309151], + [-13.045328, 8.308414], + [-13.046152, 8.306916] + ] + ], + "type": "Polygon" + }, + "id": 337, + "properties": { + "cc:admin:id": ["112"], + "cc:oBld:total": 465, + "cc:pop:fifteen-to-twenty-four": 1666.1488619248748, + "cc:pop:grid3-total": 3664.4713227780308, + "cc:pop:kontur-total": 7565.384170441776, + "cc:pop:men": 3337.1673877632916, + "cc:pop:sixty-plus": 535.6281378063604, + "cc:pop:total": 6991.850356882479, + "cc:pop:under-five": 697.9127134539408, + "cc:pop:women": 3654.6829691191892, + "cc:pop:women-fiften-to-forty-nine": 1956.1593776330978, + "cc:pop:wp-total": 5452.23165189561, + "cc:pop:wp-total-UN": 6329.174441768516, + "cc:id": "337", + "cc:Name": "Malambay CHP", + "cc:site": [-13.0226, 8.314], + "user:parentName": "Rural Western Area", + "user:code": "OU_278373", + "user:orgUnitId": "ZoHdXy2ueVn", + "user:level": "4", + "user:parentId": "qtr8GGlm4gg" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.452082, 7.097083], + [-11.452082, 7.09625], + [-11.449583, 7.093749], + [-11.449582, 7.088426], + [-11.449202, 7.088425], + [-11.445297, 7.08166], + [-11.447691, 7.077512], + [-11.447395, 7.077084], + [-11.43875, 7.077083], + [-11.434583, 7.07375], + [-11.434583, 7.073294], + [-11.436693, 7.072583], + [-11.43375, 7.06375], + [-11.436249, 7.059584], + [-11.43125, 7.057083], + [-11.42125, 7.047084], + [-11.422916, 7.045416], + [-11.42125, 7.042917], + [-11.421249, 7.040679], + [-11.418929, 7.040678], + [-11.415024, 7.033913], + [-11.414752, 7.033913], + [-11.413749, 7.035416], + [-11.411031, 7.035961], + [-11.411062, 7.036378], + [-11.405417, 7.037084], + [-11.408749, 7.040417], + [-11.408749, 7.047896], + [-11.408332, 7.047961], + [-11.407093, 7.046846], + [-11.406286, 7.046741], + [-11.40545, 7.046254], + [-11.404937, 7.045678], + [-11.402888, 7.04535], + [-11.402416, 7.04502], + [-11.399844, 7.04502], + [-11.39875, 7.046911], + [-11.398749, 7.035417], + [-11.397083, 7.035417], + [-11.397082, 7.053749], + [-11.38625, 7.052084], + [-11.382917, 7.055417], + [-11.387917, 7.063749], + [-11.396249, 7.062917], + [-11.397083, 7.062084], + [-11.398749, 7.062084], + [-11.39875, 7.076249], + [-11.400417, 7.077084], + [-11.409821, 7.077807], + [-11.409808, 7.07793], + [-11.408555, 7.081031], + [-11.408101, 7.082182], + [-11.417083, 7.090416], + [-11.417917, 7.090416], + [-11.420416, 7.089583], + [-11.423749, 7.085417], + [-11.42375, 7.084937], + [-11.423751, 7.084936], + [-11.425765, 7.088425], + [-11.425579, 7.088749], + [-11.432917, 7.08875], + [-11.437082, 7.092083], + [-11.437083, 7.093749], + [-11.442916, 7.094584], + [-11.44625, 7.097083], + [-11.452082, 7.097083] + ] + ], + "type": "Polygon" + }, + "id": 338, + "properties": { + "cc:admin:id": ["127"], + "cc:oBld:total": 49, + "cc:pop:fifteen-to-twenty-four": 563.9364382006958, + "cc:pop:grid3-total": 2355.150589795205, + "cc:pop:kontur-total": 4299.429165762246, + "cc:pop:men": 1487.6991967901627, + "cc:pop:sixty-plus": 219.37766508778466, + "cc:pop:total": 3178.6414740212035, + "cc:pop:under-five": 533.5379048204046, + "cc:pop:women": 1690.9422772310415, + "cc:pop:women-fiften-to-forty-nine": 807.5506515476945, + "cc:pop:wp-total": 3120.826206637732, + "cc:pop:wp-total-UN": 3619.516963885439, + "cc:id": "338", + "cc:Name": "Malema 1 MCHP", + "cc:site": [-11.4081, 7.0705], + "user:parentName": "Soro-Gbeima", + "user:code": "OU_260416", + "user:orgUnitId": "dCvUVvKnhMe", + "user:level": "4", + "user:parentId": "d9iMR1MpuIO" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.984557, 8.656813], + [-11.982321, 8.65587], + [-11.978793, 8.654093], + [-11.977869, 8.656089], + [-11.977082, 8.658371], + [-11.977068, 8.658485], + [-11.977067, 8.658486], + [-11.976463, 8.656853], + [-11.976462, 8.656436], + [-11.975981, 8.65561], + [-11.976108, 8.654109], + [-11.975891, 8.652718], + [-11.972083, 8.652084], + [-11.970416, 8.653749], + [-11.967083, 8.651249], + [-11.965156, 8.647397], + [-11.964551, 8.647767], + [-11.964094, 8.648373], + [-11.963426, 8.649796], + [-11.962115, 8.652516], + [-11.957917, 8.650417], + [-11.957082, 8.645417], + [-11.953749, 8.646249], + [-11.950905, 8.643405], + [-11.951596, 8.642596], + [-11.951959, 8.641475], + [-11.950915, 8.64114], + [-11.950238, 8.64054], + [-11.949811, 8.640337], + [-11.950416, 8.637917], + [-11.949582, 8.63625], + [-11.944582, 8.636249], + [-11.943895, 8.633499], + [-11.943905, 8.633495], + [-11.945416, 8.622917], + [-11.941496, 8.622263], + [-11.939399, 8.6271], + [-11.937999, 8.632999], + [-11.9354, 8.636799], + [-11.9326, 8.639099], + [-11.930199, 8.6403], + [-11.9259, 8.641099], + [-11.9235, 8.641999], + [-11.9177, 8.645399], + [-11.9154, 8.648799], + [-11.9131, 8.651599], + [-11.909199, 8.654699], + [-11.905999, 8.6555], + [-11.902199, 8.6557], + [-11.8934, 8.655799], + [-11.891, 8.656299], + [-11.889099, 8.6571], + [-11.8845, 8.659999], + [-11.8812, 8.664099], + [-11.8787, 8.665899], + [-11.873099, 8.668], + [-11.8657, 8.677099], + [-11.862526, 8.683749], + [-11.862917, 8.68375], + [-11.863749, 8.684583], + [-11.86375, 8.686249], + [-11.869582, 8.690417], + [-11.872352, 8.69457], + [-11.872377, 8.69453], + [-11.872724, 8.692878], + [-11.872701, 8.692191], + [-11.877916, 8.689583], + [-11.881249, 8.689582], + [-11.884582, 8.687083], + [-11.889582, 8.687082], + [-11.890366, 8.6863], + [-11.894283, 8.689355], + [-11.896127, 8.690631], + [-11.901341, 8.691006], + [-11.901383, 8.6922], + [-11.901814, 8.69287], + [-11.90224, 8.694398], + [-11.90277, 8.695177], + [-11.903522, 8.697457], + [-11.90392, 8.697648], + [-11.904545, 8.697273], + [-11.905671, 8.697017], + [-11.906777, 8.696039], + [-11.907177, 8.696017], + [-11.907777, 8.695664], + [-11.907889, 8.695269], + [-11.908205, 8.695455], + [-11.908452, 8.695321], + [-11.908749, 8.69544], + [-11.90875, 8.697082], + [-11.914582, 8.699582], + [-11.916249, 8.698749], + [-11.917082, 8.695417], + [-11.919386, 8.693689], + [-11.92122, 8.695983], + [-11.922745, 8.698138], + [-11.923526, 8.699475], + [-11.923617, 8.699715], + [-11.925416, 8.697916], + [-11.924583, 8.69625], + [-11.926249, 8.695416], + [-11.92625, 8.69375], + [-11.931249, 8.694583], + [-11.932916, 8.695416], + [-11.932917, 8.696249], + [-11.937916, 8.698749], + [-11.940352, 8.698749], + [-11.942328, 8.695826], + [-11.943486, 8.691915], + [-11.944512, 8.690242], + [-11.945301, 8.689393], + [-11.945494, 8.68902], + [-11.945656, 8.687894], + [-11.946352, 8.688358], + [-11.947779, 8.688435], + [-11.950274, 8.687885], + [-11.952266, 8.688047], + [-11.952732, 8.688485], + [-11.954168, 8.689023], + [-11.955139, 8.689191], + [-11.956493, 8.688971], + [-11.956429, 8.688109], + [-11.957011, 8.687057], + [-11.957039, 8.685954], + [-11.963191, 8.684835], + [-11.964738, 8.68244], + [-11.967208, 8.678751], + [-11.969116, 8.67604], + [-11.972447, 8.672362], + [-11.97296, 8.671558], + [-11.9741, 8.669421], + [-11.976308, 8.666909], + [-11.976944, 8.664943], + [-11.97719, 8.664224], + [-11.977542, 8.663784], + [-11.979553, 8.662715], + [-11.979641, 8.662672], + [-11.980162, 8.662397], + [-11.980886, 8.661739], + [-11.983374, 8.658822], + [-11.984557, 8.656813] + ] + ], + "type": "Polygon" + }, + "id": 339, + "properties": { + "cc:admin:id": ["54"], + "cc:oBld:total": 955, + "cc:pop:fifteen-to-twenty-four": 1701.951550110174, + "cc:pop:grid3-total": 4580.667697852793, + "cc:pop:kontur-total": 9628.134328353364, + "cc:pop:men": 4338.511918227121, + "cc:pop:sixty-plus": 582.1658938651317, + "cc:pop:total": 9118.012308855778, + "cc:pop:under-five": 1486.7356538842175, + "cc:pop:women": 4779.500390628656, + "cc:pop:women-fiften-to-forty-nine": 2306.9738638894014, + "cc:pop:wp-total": 8128.019349404763, + "cc:pop:wp-total-UN": 9417.245293307991, + "cc:id": "339", + "cc:Name": "Malone MCHP", + "cc:site": [-11.9229, 8.6687], + "user:parentName": "Kholifa Rowalla", + "user:code": "OU_268157", + "user:orgUnitId": "F0uVXCVvOPO", + "user:level": "4", + "user:parentId": "PQZJPIpTepd" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.43083, 8.962878], + [-12.427484, 8.957083], + [-12.427082, 8.957082], + [-12.426307, 8.956464], + [-12.42125, 8.956463], + [-12.421249, 8.953196], + [-12.421242, 8.953203], + [-12.419328, 8.954514], + [-12.416723, 8.954443], + [-12.415358, 8.955458], + [-12.414138, 8.955723], + [-12.413165, 8.955532], + [-12.411472, 8.95553], + [-12.410361, 8.955906], + [-12.410348, 8.956248], + [-12.409543, 8.957603], + [-12.409443, 8.958516], + [-12.40918, 8.958931], + [-12.40883, 8.959148], + [-12.408054, 8.959238], + [-12.405559, 8.959731], + [-12.404523, 8.960806], + [-12.403745, 8.961289], + [-12.402813, 8.96344], + [-12.401554, 8.968194], + [-12.400969, 8.969016], + [-12.400475, 8.969313], + [-12.399488, 8.969262], + [-12.398562, 8.968857], + [-12.397712, 8.968885], + [-12.396562, 8.969671], + [-12.395526, 8.970127], + [-12.395041, 8.96928], + [-12.392793, 8.96893], + [-12.392158, 8.969052], + [-12.390509, 8.968947], + [-12.389003, 8.968668], + [-12.387233, 8.967645], + [-12.386494, 8.968531], + [-12.386251, 8.969203], + [-12.38625, 8.969202], + [-12.386249, 8.96875], + [-12.374583, 8.971249], + [-12.373749, 8.970417], + [-12.36875, 8.972082], + [-12.368749, 8.972917], + [-12.364583, 8.974582], + [-12.362917, 8.975416], + [-12.362916, 8.975999], + [-12.361824, 8.97454], + [-12.360431, 8.972982], + [-12.359498, 8.972236], + [-12.35762, 8.971103], + [-12.356102, 8.970639], + [-12.353653, 8.969591], + [-12.351122, 8.967851], + [-12.350654, 8.966907], + [-12.347916, 8.973749], + [-12.34375, 8.977916], + [-12.34125, 8.973749], + [-12.339583, 8.96625], + [-12.339582, 8.964534], + [-12.338075, 8.963964], + [-12.335399, 8.96363], + [-12.334162, 8.962865], + [-12.33333, 8.964279], + [-12.332828, 8.964936], + [-12.332623, 8.965566], + [-12.332531, 8.967015], + [-12.332185, 8.967772], + [-12.331936, 8.968916], + [-12.331934, 8.968916], + [-12.33181, 8.96875], + [-12.324583, 8.96875], + [-12.322917, 8.970417], + [-12.322082, 8.974581], + [-12.317916, 8.970417], + [-12.31375, 8.970417], + [-12.310699, 8.972857], + [-12.310226, 8.972685], + [-12.309666, 8.972754], + [-12.3093, 8.972514], + [-12.308355, 8.972806], + [-12.30664, 8.9716], + [-12.30549, 8.971391], + [-12.305112, 8.971478], + [-12.304059, 8.972309], + [-12.304129, 8.973374], + [-12.303461, 8.973713], + [-12.302823, 8.973738], + [-12.302595, 8.975021], + [-12.301439, 8.975972], + [-12.301058, 8.977016], + [-12.300982, 8.977091], + [-12.300209, 8.976511], + [-12.300605, 8.975665], + [-12.300599, 8.975383], + [-12.300426, 8.974971], + [-12.299576, 8.974139], + [-12.298695, 8.974097], + [-12.296997, 8.972752], + [-12.296373, 8.97304], + [-12.295416, 8.972083], + [-12.293703, 8.973225], + [-12.293591, 8.973141], + [-12.293395, 8.972677], + [-12.292916, 8.972917], + [-12.287917, 8.972916], + [-12.284582, 8.969583], + [-12.282917, 8.970416], + [-12.279582, 8.967917], + [-12.274583, 8.967916], + [-12.27125, 8.965417], + [-12.270416, 8.96875], + [-12.267565, 8.970888], + [-12.266673, 8.970839], + [-12.262916, 8.967083], + [-12.261249, 8.967082], + [-12.254689, 8.961981], + [-12.25425, 8.962842], + [-12.254249, 8.962842], + [-12.253945, 8.962142], + [-12.2533, 8.961427], + [-12.2533, 8.9623], + [-12.2541, 8.964799], + [-12.255899, 8.967399], + [-12.261199, 8.972599], + [-12.263399, 8.974199], + [-12.2668, 8.9755], + [-12.272999, 8.975999], + [-12.2752, 8.9765], + [-12.278, 8.978], + [-12.280799, 8.980499], + [-12.282599, 8.982699], + [-12.286299, 8.990199], + [-12.286699, 8.992599], + [-12.285999, 8.9951], + [-12.284499, 8.9972], + [-12.2822, 8.999599], + [-12.2809, 9.0021], + [-12.2818, 9.004899], + [-12.2842, 9.005699], + [-12.287499, 9.005599], + [-12.295299, 8.9975], + [-12.2975, 8.996], + [-12.2995, 8.9958], + [-12.301599, 8.9968], + [-12.303299, 8.998399], + [-12.304599, 9.0003], + [-12.304899, 9.002599], + [-12.3029, 9.005599], + [-12.2988, 9.008599], + [-12.295399, 9.0093], + [-12.2913, 9.0093], + [-12.291499, 9.014899], + [-12.291399, 9.0176], + [-12.290499, 9.020499], + [-12.288699, 9.022799], + [-12.285399, 9.0246], + [-12.2806, 9.026699], + [-12.2748, 9.0283], + [-12.2735, 9.0296], + [-12.2728, 9.0319], + [-12.273, 9.034399], + [-12.2748, 9.0376], + [-12.277799, 9.040599], + [-12.281, 9.0425], + [-12.2842, 9.042799], + [-12.2879, 9.042099], + [-12.2959, 9.037999], + [-12.2995, 9.034999], + [-12.306799, 9.0276], + [-12.309, 9.025899], + [-12.3179, 9.020999], + [-12.3241, 9.0185], + [-12.3266, 9.0187], + [-12.3287, 9.0201], + [-12.333299, 9.024399], + [-12.335999, 9.026599], + [-12.339899, 9.0286], + [-12.342599, 9.031299], + [-12.3455, 9.0361], + [-12.3482, 9.0393], + [-12.353999, 9.045699], + [-12.356399, 9.049199], + [-12.358599, 9.0519], + [-12.3593, 9.055], + [-12.359499, 9.058599], + [-12.359, 9.063599], + [-12.3564, 9.070799], + [-12.359699, 9.071899], + [-12.364899, 9.072899], + [-12.367299, 9.073699], + [-12.374199, 9.076999], + [-12.3772, 9.0791], + [-12.381099, 9.082899], + [-12.383999, 9.086299], + [-12.3863, 9.089599], + [-12.3891, 9.091099], + [-12.393799, 9.091499], + [-12.397899, 9.0912], + [-12.400399, 9.090399], + [-12.402999, 9.088499], + [-12.4056, 9.0848], + [-12.4114, 9.081099], + [-12.4139, 9.0805], + [-12.416599, 9.0811], + [-12.421799, 9.084099], + [-12.423399, 9.085799], + [-12.423679, 9.08632], + [-12.424582, 9.085416], + [-12.424583, 9.080514], + [-12.427223, 9.081789], + [-12.427757, 9.077517], + [-12.42492, 9.075835], + [-12.423841, 9.075325], + [-12.425416, 9.073749], + [-12.425417, 9.065417], + [-12.430416, 9.062916], + [-12.42375, 9.056249], + [-12.427916, 9.052916], + [-12.427917, 9.052082], + [-12.430416, 9.04125], + [-12.427083, 9.039583], + [-12.42625, 9.035417], + [-12.426199, 9.035382], + [-12.426255, 9.034924], + [-12.42551, 9.034923], + [-12.42375, 9.033749], + [-12.422083, 9.03125], + [-12.429582, 9.031249], + [-12.425417, 9.011251], + [-12.425418, 9.01125], + [-12.427082, 9.011249], + [-12.425417, 9.008749], + [-12.425417, 8.999583], + [-12.427327, 8.997671], + [-12.427229, 8.997501], + [-12.419417, 8.9975], + [-12.418124, 8.995261], + [-12.42125, 8.992916], + [-12.422082, 8.989583], + [-12.418848, 8.986347], + [-12.419713, 8.986346], + [-12.423619, 8.979581], + [-12.423137, 8.978744], + [-12.424093, 8.978965], + [-12.42483, 8.978887], + [-12.426816, 8.977784], + [-12.430166, 8.977163], + [-12.430371, 8.976993], + [-12.427083, 8.970416], + [-12.427083, 8.967083], + [-12.430416, 8.962917], + [-12.43083, 8.962878] + ] + ], + "type": "Polygon" + }, + "id": 340, + "properties": { + "cc:admin:id": ["73"], + "cc:oBld:total": 452, + "cc:pop:fifteen-to-twenty-four": 1424.677653578906, + "cc:pop:grid3-total": 6321.344278368194, + "cc:pop:kontur-total": 7880.762245846617, + "cc:pop:men": 3558.6694975594637, + "cc:pop:sixty-plus": 499.56689991691866, + "cc:pop:total": 7679.830359560688, + "cc:pop:under-five": 1179.5566965287494, + "cc:pop:women": 4121.160862001225, + "cc:pop:women-fiften-to-forty-nine": 1992.6191516219328, + "cc:pop:wp-total": 6661.213328118902, + "cc:pop:wp-total-UN": 7727.370446639399, + "cc:id": "340", + "cc:Name": "Mamaka MCHP", + "cc:site": [-12.3347, 9.0217], + "user:parentName": "Gbendembu Ngowahun", + "user:code": "OU_193279", + "user:orgUnitId": "d9uZeZ5fMUo", + "user:level": "4", + "user:parentId": "BXJdOLvUrZB" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [-13.123999, 8.5643], + [-13.1229, 8.564299], + [-13.123499, 8.5624], + [-13.1224, 8.559899], + [-13.122399, 8.5588], + [-13.1199, 8.559299], + [-13.1196, 8.5601], + [-13.119899, 8.564299], + [-13.121499, 8.5643], + [-13.121, 8.565999], + [-13.1196, 8.565699], + [-13.118799, 8.564], + [-13.1165, 8.5638], + [-13.1149, 8.5651], + [-13.114899, 8.566499], + [-13.1138, 8.566499], + [-13.113199, 8.5618], + [-13.1126, 8.561799], + [-13.112099, 8.5601], + [-13.1115, 8.560099], + [-13.111499, 8.5571], + [-13.1088, 8.5574], + [-13.108799, 8.558499], + [-13.1065, 8.5588], + [-13.1046, 8.561799], + [-13.105099, 8.5635], + [-13.1049, 8.566499], + [-13.105999, 8.5668], + [-13.1065, 8.567899], + [-13.108799, 8.568199], + [-13.109, 8.568799], + [-13.110699, 8.5685], + [-13.110999, 8.569599], + [-13.109, 8.5713], + [-13.109599, 8.5732], + [-13.1076, 8.5751], + [-13.1071, 8.577399], + [-13.1057, 8.5788], + [-13.105399, 8.5801], + [-13.1035, 8.5821], + [-13.103199, 8.583999], + [-13.1024, 8.5854], + [-13.1024, 8.586799], + [-13.106, 8.5882], + [-13.1068, 8.5907], + [-13.1074, 8.594299], + [-13.111199, 8.593699], + [-13.112399, 8.592099], + [-13.1124, 8.5907], + [-13.113999, 8.588799], + [-13.114599, 8.5868], + [-13.115699, 8.586499], + [-13.115999, 8.5849], + [-13.116499, 8.584599], + [-13.1165, 8.582899], + [-13.117099, 8.5818], + [-13.118199, 8.581299], + [-13.1185, 8.5793], + [-13.119899, 8.577399], + [-13.1201, 8.575699], + [-13.121299, 8.5738], + [-13.122599, 8.573799], + [-13.1226, 8.5713], + [-13.123799, 8.570399], + [-13.124599, 8.5688], + [-13.124599, 8.567099], + [-13.123999, 8.5643] + ] + ], + [ + [ + [-13.125099, 8.5424], + [-13.124299, 8.541799], + [-13.123799, 8.5387], + [-13.122899, 8.5376], + [-13.121, 8.5376], + [-13.1201, 8.538199], + [-13.119299, 8.5404], + [-13.1179, 8.542899], + [-13.116, 8.5446], + [-13.1154, 8.545999], + [-13.115699, 8.548699], + [-13.1157, 8.549899], + [-13.116799, 8.549899], + [-13.1182, 8.5485], + [-13.119599, 8.547899], + [-13.1207, 8.5468], + [-13.123499, 8.546799], + [-13.124599, 8.545399], + [-13.125099, 8.5424] + ] + ], + [ + [ + [-13.165389, 8.58901], + [-13.164786, 8.587677], + [-13.16437, 8.586373], + [-13.164188, 8.585316], + [-13.164101, 8.584393], + [-13.164036, 8.58383], + [-13.163941, 8.582858], + [-13.163895, 8.582482], + [-13.163568, 8.578993], + [-13.163499, 8.578281], + [-13.163129, 8.574991], + [-13.161482, 8.571586], + [-13.161425, 8.570024], + [-13.161447, 8.569694], + [-13.161191, 8.569683], + [-13.160821, 8.569747], + [-13.160579, 8.569603], + [-13.158586, 8.569021], + [-13.157083, 8.568532], + [-13.157083, 8.566638], + [-13.157084, 8.566637], + [-13.157421, 8.567022], + [-13.157642, 8.566901], + [-13.157864, 8.56631], + [-13.157916, 8.566282], + [-13.157916, 8.565416], + [-13.156472, 8.562529], + [-13.156667, 8.562501], + [-13.152974, 8.558808], + [-13.152815, 8.55899], + [-13.152771, 8.559526], + [-13.152727, 8.559583], + [-13.149583, 8.559584], + [-13.148546, 8.559928], + [-13.14837, 8.559729], + [-13.148325, 8.559253], + [-13.148293, 8.558179], + [-13.148442, 8.557741], + [-13.149368, 8.556376], + [-13.149528, 8.555922], + [-13.149625, 8.555354], + [-13.150138, 8.553052], + [-13.150448, 8.552509], + [-13.150968, 8.551907], + [-13.152619, 8.550395], + [-13.153055, 8.549762], + [-13.153217, 8.549474], + [-13.15325, 8.549228], + [-13.153195, 8.548844], + [-13.153063, 8.548636], + [-13.152874, 8.548417], + [-13.152718, 8.548307], + [-13.152463, 8.548246], + [-13.151861, 8.54811], + [-13.151434, 8.548105], + [-13.150923, 8.548242], + [-13.150326, 8.548252], + [-13.149882, 8.548202], + [-13.148966, 8.548071], + [-13.14822, 8.547748], + [-13.146874, 8.547278], + [-13.145652, 8.546829], + [-13.144854, 8.546495], + [-13.143383, 8.545375], + [-13.142541, 8.544873], + [-13.142107, 8.544816], + [-13.14166, 8.544834], + [-13.141287, 8.545006], + [-13.140785, 8.545415], + [-13.140358, 8.545985], + [-13.139783, 8.547068], + [-13.139526, 8.547563], + [-13.137916, 8.545416], + [-13.134702, 8.542203], + [-13.13486, 8.5418], + [-13.1343, 8.5418], + [-13.1338, 8.544299], + [-13.1324, 8.546], + [-13.1326, 8.547599], + [-13.133799, 8.547099], + [-13.135399, 8.5454], + [-13.136729, 8.545868], + [-13.137099, 8.546], + [-13.136799, 8.546499], + [-13.1354, 8.5463], + [-13.1326, 8.548999], + [-13.1315, 8.549], + [-13.1301, 8.549899], + [-13.1282, 8.5524], + [-13.128199, 8.554299], + [-13.1276, 8.556], + [-13.128199, 8.561299], + [-13.1282, 8.565099], + [-13.128799, 8.5663], + [-13.1282, 8.568499], + [-13.128199, 8.570099], + [-13.125699, 8.5735], + [-13.1238, 8.577399], + [-13.121799, 8.579], + [-13.119, 8.5832], + [-13.1185, 8.584899], + [-13.1174, 8.5857], + [-13.117207, 8.587696], + [-13.117267, 8.587631], + [-13.117543, 8.587974], + [-13.117818, 8.588385], + [-13.118082, 8.588805], + [-13.118357, 8.589252], + [-13.118555, 8.589745], + [-13.118696, 8.590175], + [-13.118714, 8.590527], + [-13.118738, 8.591193], + [-13.118671, 8.59183], + [-13.11842, 8.59263], + [-13.118253, 8.593353], + [-13.117825, 8.594547], + [-13.1175, 8.595396], + [-13.117057, 8.596246], + [-13.116672, 8.596821], + [-13.116347, 8.597294], + [-13.11615, 8.597652], + [-13.116046, 8.597992], + [-13.116034, 8.598217], + [-13.116114, 8.598325], + [-13.116255, 8.598422], + [-13.116445, 8.598466], + [-13.116769, 8.598465], + [-13.117126, 8.598283], + [-13.117499, 8.597975], + [-13.118462, 8.597034], + [-13.119314, 8.596088], + [-13.119909, 8.59527], + [-13.119965, 8.595123], + [-13.120039, 8.594862], + [-13.120143, 8.594712], + [-13.12029, 8.594633], + [-13.120449, 8.594603], + [-13.120602, 8.594638], + [-13.120775, 8.594753], + [-13.121468, 8.594529], + [-13.122252, 8.594457], + [-13.123045, 8.594548], + [-13.1234, 8.594657], + [-13.123975, 8.595083], + [-13.124726, 8.595687], + [-13.125333, 8.596142], + [-13.125917, 8.59664], + [-13.126518, 8.596962], + [-13.127517, 8.597452], + [-13.128498, 8.597955], + [-13.129069, 8.598265], + [-13.129333, 8.598532], + [-13.129602, 8.59886], + [-13.129701, 8.599284], + [-13.1297, 8.599715], + [-13.129651, 8.60029], + [-13.129332, 8.600855], + [-13.128823, 8.601456], + [-13.128229, 8.602055], + [-13.127671, 8.602377], + [-13.127469, 8.602608], + [-13.127377, 8.602934], + [-13.127493, 8.603183], + [-13.127726, 8.603432], + [-13.128008, 8.603578], + [-13.128745, 8.603772], + [-13.129462, 8.603845], + [-13.130308, 8.603862], + [-13.131419, 8.60382], + [-13.132449, 8.603747], + [-13.134135, 8.603615], + [-13.134828, 8.603542], + [-13.135276, 8.603535], + [-13.135405, 8.603468], + [-13.135448, 8.603299], + [-13.135362, 8.602966], + [-13.135086, 8.602698], + [-13.134547, 8.602244], + [-13.134154, 8.601889], + [-13.134144, 8.598522], + [-13.134498, 8.598325], + [-13.135062, 8.598246], + [-13.135632, 8.598235], + [-13.136154, 8.598308], + [-13.136657, 8.598478], + [-13.137454, 8.598956], + [-13.137864, 8.599162], + [-13.138723, 8.599489], + [-13.139319, 8.599763], + [-13.139993, 8.600011], + [-13.140797, 8.600194], + [-13.141851, 8.600496], + [-13.142545, 8.60083], + [-13.143238, 8.60106], + [-13.14395, 8.601189], + [-13.144711, 8.601412], + [-13.145091, 8.601376], + [-13.145403, 8.601274], + [-13.145673, 8.601195], + [-13.146409, 8.601025], + [-13.146973, 8.600855], + [-13.147758, 8.60071], + [-13.148194, 8.600655], + [-13.148463, 8.600649], + [-13.148917, 8.600702], + [-13.148758, 8.600539], + [-13.148151, 8.600175], + [-13.147384, 8.599781], + [-13.146526, 8.5994], + [-13.146128, 8.599218], + [-13.145777, 8.599144], + [-13.145243, 8.599041], + [-13.144967, 8.59898], + [-13.144363, 8.59884], + [-13.14402, 8.598716], + [-13.143846, 8.598626], + [-13.143539, 8.598438], + [-13.143331, 8.598267], + [-13.143201, 8.598129], + [-13.143097, 8.597958], + [-13.143002, 8.597807], + [-13.142963, 8.597572], + [-13.142963, 8.597375], + [-13.143036, 8.59707], + [-13.143162, 8.596856], + [-13.143422, 8.596645], + [-13.143665, 8.59652], + [-13.14399, 8.59647], + [-13.14415, 8.596482], + [-13.144367, 8.596311], + [-13.144432, 8.596298], + [-13.144515, 8.596443], + [-13.144789, 8.596585], + [-13.145118, 8.59659], + [-13.145842, 8.596623], + [-13.146467, 8.596589], + [-13.147429, 8.596491], + [-13.14815, 8.596435], + [-13.149031, 8.596359], + [-13.149628, 8.596328], + [-13.149875, 8.596336], + [-13.150206, 8.596478], + [-13.150568, 8.59669], + [-13.150682, 8.596807], + [-13.150811, 8.596844], + [-13.150997, 8.59676], + [-13.151058, 8.59666], + [-13.151075, 8.596385], + [-13.151049, 8.596081], + [-13.150946, 8.595486], + [-13.150763, 8.594807], + [-13.15059, 8.594457], + [-13.15048, 8.594283], + [-13.150386, 8.593595], + [-13.150421, 8.593478], + [-13.150578, 8.593324], + [-13.150742, 8.593221], + [-13.151024, 8.593036], + [-13.151471, 8.592793], + [-13.151661, 8.592814], + [-13.151717, 8.592972], + [-13.151669, 8.593123], + [-13.15164, 8.593294], + [-13.151703, 8.593621], + [-13.151702, 8.593621], + [-13.151591, 8.593469], + [-13.151514, 8.593246], + [-13.151514, 8.593106], + [-13.151561, 8.592959], + [-13.151549, 8.592909], + [-13.151471, 8.592917], + [-13.151335, 8.593024], + [-13.151007, 8.593182], + [-13.150729, 8.593324], + [-13.150612, 8.59341], + [-13.150507, 8.593548], + [-13.150469, 8.593693], + [-13.150469, 8.593881], + [-13.150491, 8.594054], + [-13.150572, 8.594263], + [-13.150815, 8.59461], + [-13.150937, 8.594911], + [-13.151036, 8.595421], + [-13.151145, 8.595871], + [-13.151205, 8.596338], + [-13.151198, 8.596634], + [-13.15114, 8.596858], + [-13.151128, 8.59732], + [-13.151214, 8.597861], + [-13.151331, 8.598311], + [-13.151392, 8.598504], + [-13.151584, 8.598727], + [-13.151731, 8.598792], + [-13.15222, 8.598821], + [-13.15265, 8.598814], + [-13.152854, 8.598775], + [-13.153132, 8.59865], + [-13.153665, 8.598325], + [-13.153986, 8.598149], + [-13.154242, 8.598038], + [-13.154477, 8.597998], + [-13.154879, 8.597978], + [-13.15533, 8.598058], + [-13.155755, 8.59817], + [-13.156064, 8.598362], + [-13.156337, 8.598436], + [-13.156663, 8.59847], + [-13.157231, 8.598444], + [-13.157807, 8.598406], + [-13.158207, 8.598411], + [-13.159724, 8.598701], + [-13.1604, 8.598972], + [-13.159104, 8.598151], + [-13.158948, 8.597692], + [-13.159476, 8.596591], + [-13.160019, 8.596203], + [-13.159966, 8.596016], + [-13.158983, 8.596192], + [-13.158982, 8.596191], + [-13.159074, 8.595813], + [-13.159571, 8.595106], + [-13.159669, 8.594569], + [-13.159598, 8.594555], + [-13.159597, 8.594554], + [-13.159993, 8.593763], + [-13.159994, 8.593762], + [-13.160082, 8.593833], + [-13.161269, 8.594796], + [-13.161798, 8.594488], + [-13.163594, 8.594595], + [-13.163542, 8.593572], + [-13.164146, 8.592418], + [-13.165237, 8.590417], + [-13.164171, 8.59024], + [-13.163913, 8.590226], + [-13.163644, 8.589444], + [-13.164657, 8.589529], + [-13.165389, 8.58901] + ] + ], + [ + [ + [-13.131799, 8.5371], + [-13.1307, 8.5363], + [-13.1293, 8.537899], + [-13.129599, 8.538999], + [-13.1296, 8.539899], + [-13.131499, 8.539899], + [-13.131799, 8.5371] + ] + ] + ], + "type": "MultiPolygon" + }, + "id": 341, + "properties": { + "cc:admin:id": ["44"], + "cc:oBld:total": 502, + "cc:pop:fifteen-to-twenty-four": 985.8259705923604, + "cc:pop:grid3-total": 2154.748785553579, + "cc:pop:kontur-total": 5386.133756619829, + "cc:pop:men": 2649.2701642717243, + "cc:pop:sixty-plus": 322.1368396241098, + "cc:pop:total": 5539.764625888995, + "cc:pop:under-five": 904.8108414888957, + "cc:pop:women": 2890.494461617272, + "cc:pop:women-fiften-to-forty-nine": 1375.4781896669936, + "cc:pop:wp-total": 3936.269539207663, + "cc:pop:wp-total-UN": 4560.630627465694, + "cc:id": "341", + "cc:Name": "Mamankie MCHP", + "cc:site": [-13.145, 8.5681], + "user:parentName": "Kaffu Bullom", + "user:code": "OU_255012", + "user:orgUnitId": "eP4F9eB76B0", + "user:level": "4", + "user:parentId": "vn9KJsLyP5f" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.196249, 8.517083], + [-12.190416, 8.50625], + [-12.187917, 8.506249], + [-12.186675, 8.505008], + [-12.186671, 8.504861], + [-12.186967, 8.503915], + [-12.187584, 8.502712], + [-12.18787, 8.500109], + [-12.187784, 8.498948], + [-12.188451, 8.496668], + [-12.188975, 8.495867], + [-12.188749, 8.495416], + [-12.187916, 8.492083], + [-12.187082, 8.482917], + [-12.180417, 8.488749], + [-12.177917, 8.488749], + [-12.177917, 8.48375], + [-12.178288, 8.483191], + [-12.180799, 8.48201], + [-12.181893, 8.480029], + [-12.187498, 8.476564], + [-12.188336, 8.476119], + [-12.186249, 8.47125], + [-12.185402, 8.470826], + [-12.184926, 8.471421], + [-12.184582, 8.47125], + [-12.175417, 8.472083], + [-12.175416, 8.462084], + [-12.172916, 8.462083], + [-12.172456, 8.46024], + [-12.172457, 8.460239], + [-12.172572, 8.460219], + [-12.169582, 8.45125], + [-12.168749, 8.451249], + [-12.156251, 8.44875], + [-12.161249, 8.442083], + [-12.161249, 8.441249], + [-12.158749, 8.437084], + [-12.154583, 8.43625], + [-12.15125, 8.437083], + [-12.147916, 8.435417], + [-12.13875, 8.435417], + [-12.13625, 8.437917], + [-12.13625, 8.448011], + [-12.137999, 8.448034], + [-12.138, 8.448036], + [-12.13678, 8.449124], + [-12.136646, 8.44985], + [-12.137349, 8.456404], + [-12.137239, 8.456826], + [-12.136903, 8.457026], + [-12.136883, 8.456685], + [-12.136559, 8.456115], + [-12.136262, 8.455757], + [-12.135833, 8.455594], + [-12.131868, 8.455443], + [-12.13125, 8.457916], + [-12.132082, 8.459584], + [-12.124583, 8.46375], + [-12.124583, 8.470416], + [-12.128749, 8.472917], + [-12.12875, 8.478749], + [-12.127917, 8.482083], + [-12.114583, 8.482917], + [-12.115417, 8.486249], + [-12.120416, 8.492917], + [-12.119582, 8.494583], + [-12.117318, 8.496281], + [-12.116292, 8.495771], + [-12.11375, 8.499583], + [-12.111488, 8.499584], + [-12.111823, 8.504547], + [-12.111528, 8.506686], + [-12.1122, 8.5067], + [-12.116, 8.5073], + [-12.122299, 8.509799], + [-12.1282, 8.5113], + [-12.1336, 8.5135], + [-12.1374, 8.514], + [-12.144099, 8.514499], + [-12.146999, 8.514999], + [-12.151499, 8.516899], + [-12.1544, 8.5175], + [-12.1574, 8.5178], + [-12.164599, 8.517899], + [-12.168499, 8.518499], + [-12.1749, 8.5209], + [-12.1799, 8.5215], + [-12.187599, 8.521599], + [-12.192336, 8.522493], + [-12.194582, 8.51875], + [-12.196249, 8.517083] + ] + ], + "type": "Polygon" + }, + "id": 342, + "properties": { + "cc:admin:id": ["149"], + "cc:oBld:total": 15, + "cc:pop:fifteen-to-twenty-four": 642.037581702414, + "cc:pop:grid3-total": 2728.5844657047946, + "cc:pop:kontur-total": 3492.6810480006907, + "cc:pop:men": 1590.9123623086614, + "cc:pop:sixty-plus": 213.99281873722418, + "cc:pop:total": 3439.8339314596506, + "cc:pop:under-five": 550.3795046716049, + "cc:pop:women": 1848.9215691509885, + "cc:pop:women-fiften-to-forty-nine": 908.7290408048966, + "cc:pop:wp-total": 3576.4855947011993, + "cc:pop:wp-total-UN": 4145.613363799878, + "cc:id": "342", + "cc:Name": "Mamanso Kafla MCHP", + "cc:site": [-12.1414, 8.4932], + "user:parentName": "Kholifa Mabang", + "user:code": "OU_268168", + "user:orgUnitId": "T1lTKu6zkHN", + "user:level": "4", + "user:parentId": "fwxkctgmffZ" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.70731, 8.690808], + [-11.707299, 8.689799], + [-11.7068, 8.685], + [-11.705599, 8.681699], + [-11.704099, 8.679999], + [-11.6957, 8.6754], + [-11.692, 8.6755], + [-11.687999, 8.6773], + [-11.6854, 8.677799], + [-11.6828, 8.677899], + [-11.6806, 8.677299], + [-11.677899, 8.675499], + [-11.6753, 8.6728], + [-11.673899, 8.670399], + [-11.6731, 8.666699], + [-11.673199, 8.6561], + [-11.673099, 8.653299], + [-11.672599, 8.6507], + [-11.6712, 8.6488], + [-11.6659, 8.6456], + [-11.6616, 8.6437], + [-11.659, 8.6417], + [-11.656399, 8.638999], + [-11.654899, 8.636799], + [-11.653399, 8.633799], + [-11.650799, 8.631], + [-11.647299, 8.629799], + [-11.6403, 8.6289], + [-11.635299, 8.6275], + [-11.6332, 8.6279], + [-11.6293, 8.630099], + [-11.627799, 8.6318], + [-11.625199, 8.6367], + [-11.6244, 8.639999], + [-11.624, 8.645399], + [-11.6234, 8.647899], + [-11.6192, 8.656599], + [-11.616099, 8.6605], + [-11.610699, 8.6653], + [-11.608699, 8.6663], + [-11.604, 8.667299], + [-11.6015, 8.668099], + [-11.5937, 8.672099], + [-11.5883, 8.676399], + [-11.583, 8.679399], + [-11.5779, 8.683299], + [-11.575599, 8.684699], + [-11.572999, 8.6853], + [-11.567699, 8.6859], + [-11.565099, 8.6865], + [-11.559699, 8.6886], + [-11.5527, 8.689499], + [-11.549299, 8.6904], + [-11.5445, 8.692799], + [-11.5411, 8.694699], + [-11.536099, 8.6989], + [-11.528399, 8.7033], + [-11.5261, 8.703599], + [-11.5241, 8.7023], + [-11.5235, 8.6993], + [-11.5244, 8.696199], + [-11.5264, 8.692699], + [-11.5282, 8.688799], + [-11.530299, 8.6853], + [-11.531232, 8.683386], + [-11.52625, 8.68125], + [-11.524582, 8.682083], + [-11.515417, 8.682917], + [-11.515416, 8.685417], + [-11.510417, 8.69125], + [-11.510416, 8.692916], + [-11.50979, 8.692916], + [-11.509708, 8.692406], + [-11.509262, 8.691795], + [-11.509247, 8.691585], + [-11.507916, 8.692916], + [-11.50625, 8.69375], + [-11.504582, 8.697082], + [-11.502083, 8.697917], + [-11.501249, 8.699582], + [-11.497083, 8.700417], + [-11.496249, 8.702917], + [-11.495416, 8.70625], + [-11.491249, 8.708749], + [-11.48625, 8.70875], + [-11.48375, 8.71625], + [-11.483749, 8.720416], + [-11.478605, 8.720417], + [-11.478423, 8.72241], + [-11.477916, 8.722917], + [-11.476249, 8.728749], + [-11.47375, 8.729582], + [-11.472917, 8.729583], + [-11.465417, 8.727917], + [-11.465417, 8.72875], + [-11.467916, 8.73375], + [-11.46625, 8.738749], + [-11.467083, 8.740417], + [-11.467916, 8.743749], + [-11.464583, 8.744582], + [-11.461879, 8.744582], + [-11.461266, 8.743571], + [-11.460667, 8.742894], + [-11.460465, 8.742083], + [-11.45875, 8.742083], + [-11.458749, 8.74375], + [-11.453175, 8.748628], + [-11.453174, 8.750103], + [-11.452541, 8.753009], + [-11.447395, 8.753406], + [-11.444067, 8.759166], + [-11.4375, 8.759167], + [-11.439583, 8.76125], + [-11.441249, 8.767082], + [-11.431731, 8.771477], + [-11.432043, 8.771752], + [-11.432671, 8.77286], + [-11.432963, 8.774172], + [-11.433427, 8.774811], + [-11.434012, 8.775064], + [-11.434825, 8.775153], + [-11.434833, 8.776672], + [-11.434172, 8.777751], + [-11.433522, 8.778304], + [-11.433441, 8.778876], + [-11.432425, 8.780307], + [-11.431799, 8.780489], + [-11.429518, 8.781778], + [-11.428667, 8.781956], + [-11.426871, 8.781895], + [-11.425728, 8.78168], + [-11.425605, 8.781706], + [-11.424583, 8.783749], + [-11.432081, 8.791249], + [-11.42409, 8.792704], + [-11.4244, 8.7932], + [-11.429399, 8.800299], + [-11.432099, 8.807099], + [-11.4338, 8.8198], + [-11.4355, 8.8257], + [-11.4385, 8.8322], + [-11.4426, 8.8433], + [-11.4442, 8.849], + [-11.445599, 8.858399], + [-11.447499, 8.863999], + [-11.457399, 8.883199], + [-11.4596, 8.8888], + [-11.4644, 8.9033], + [-11.466799, 8.908599], + [-11.4691, 8.911599], + [-11.473, 8.914299], + [-11.476599, 8.914899], + [-11.4811, 8.913499], + [-11.486399, 8.9125], + [-11.489599, 8.910899], + [-11.4916, 8.907599], + [-11.492199, 8.9048], + [-11.492499, 8.9], + [-11.493, 8.897699], + [-11.495299, 8.8933], + [-11.496799, 8.8914], + [-11.4993, 8.890299], + [-11.502299, 8.89], + [-11.5053, 8.89], + [-11.508399, 8.8904], + [-11.510999, 8.891599], + [-11.513399, 8.8937], + [-11.515799, 8.898099], + [-11.518499, 8.900799], + [-11.526, 8.904599], + [-11.529699, 8.904299], + [-11.532399, 8.901999], + [-11.535999, 8.8946], + [-11.5377, 8.890699], + [-11.5397, 8.887799], + [-11.545799, 8.8811], + [-11.547299, 8.878799], + [-11.5478, 8.876299], + [-11.548099, 8.8681], + [-11.548699, 8.8646], + [-11.552999, 8.856], + [-11.557199, 8.8506], + [-11.5602, 8.845299], + [-11.564699, 8.8395], + [-11.569599, 8.829699], + [-11.569899, 8.8248], + [-11.5694, 8.8208], + [-11.566999, 8.815499], + [-11.566299, 8.812999], + [-11.5656, 8.8076], + [-11.5648, 8.8046], + [-11.5665, 8.801299], + [-11.569, 8.796999], + [-11.5725, 8.789499], + [-11.5732, 8.785799], + [-11.573299, 8.7771], + [-11.573899, 8.7721], + [-11.5763, 8.765799], + [-11.576799, 8.760599], + [-11.5767, 8.7486], + [-11.577599, 8.745], + [-11.5788, 8.743099], + [-11.582699, 8.7381], + [-11.5852, 8.733499], + [-11.5881, 8.729899], + [-11.594099, 8.7237], + [-11.597099, 8.7198], + [-11.5999, 8.7132], + [-11.6029, 8.7126], + [-11.606599, 8.714299], + [-11.6101, 8.7151], + [-11.6159, 8.7154], + [-11.623699, 8.7154], + [-11.627599, 8.7152], + [-11.631199, 8.7147], + [-11.6362, 8.7127], + [-11.639899, 8.7127], + [-11.647199, 8.715899], + [-11.651499, 8.718399], + [-11.6547, 8.7198], + [-11.658699, 8.721899], + [-11.660799, 8.722499], + [-11.6662, 8.722599], + [-11.6688, 8.722199], + [-11.6745, 8.72], + [-11.677599, 8.720299], + [-11.6796, 8.7213], + [-11.6845, 8.7252], + [-11.6884, 8.726299], + [-11.6933, 8.725999], + [-11.697299, 8.724599], + [-11.6979, 8.722199], + [-11.6992, 8.720099], + [-11.7024, 8.715799], + [-11.7063, 8.708299], + [-11.7069, 8.706199], + [-11.7073, 8.702799], + [-11.707399, 8.698799], + [-11.70731, 8.690808] + ] + ], + "type": "Polygon" + }, + "id": 343, + "properties": { + "cc:admin:id": ["68"], + "cc:oBld:total": 126, + "cc:pop:fifteen-to-twenty-four": 2644.25397201483, + "cc:pop:grid3-total": 19786.224700493192, + "cc:pop:kontur-total": 14315.624531270494, + "cc:pop:men": 6790.302115679746, + "cc:pop:sixty-plus": 921.80166561089, + "cc:pop:total": 14429.163371726901, + "cc:pop:under-five": 2330.7357685216393, + "cc:pop:women": 7638.861256047154, + "cc:pop:women-fiften-to-forty-nine": 3727.1294674350506, + "cc:pop:wp-total": 17497.56640300319, + "cc:pop:wp-total-UN": 20276.282667454743, + "cc:id": "343", + "cc:Name": "Mamanso Sanka CHP", + "cc:site": [-11.549, 8.7192], + "user:parentName": "Kunike", + "user:code": "OU_268181", + "user:orgUnitId": "YFlZA0y0Vi6", + "user:level": "4", + "user:parentId": "l0ccv2yzfF3" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.075416, 8.874582], + [-13.07375, 8.870417], + [-13.073749, 8.869583], + [-13.067082, 8.864583], + [-13.062917, 8.865416], + [-13.062082, 8.864583], + [-13.058593, 8.865165], + [-13.059043, 8.867071], + [-13.060851, 8.867854], + [-13.061362, 8.869274], + [-13.057984, 8.871574], + [-13.057982, 8.871573], + [-13.057748, 8.869125], + [-13.052083, 8.871249], + [-13.05125, 8.872917], + [-13.051249, 8.873749], + [-13.048852, 8.873749], + [-13.049041, 8.872301], + [-13.048396, 8.871654], + [-13.046792, 8.870959], + [-13.043669, 8.867835], + [-13.043622, 8.867917], + [-13.042082, 8.867916], + [-13.038621, 8.86734], + [-13.036452, 8.869127], + [-13.035277, 8.870826], + [-13.034961, 8.871689], + [-13.034948, 8.871736], + [-13.034942, 8.871739], + [-13.034843, 8.872113], + [-13.034012, 8.873227], + [-13.03337, 8.873741], + [-13.031765, 8.875223], + [-13.03169, 8.875255], + [-13.029782, 8.871332], + [-13.029777, 8.871326], + [-13.029452, 8.871046], + [-13.027198, 8.870647], + [-13.026635, 8.870556], + [-13.026259, 8.870541], + [-13.026574, 8.872874], + [-13.026695, 8.873789], + [-13.026862, 8.874968], + [-13.02704, 8.876247], + [-13.023381, 8.876115], + [-13.023311, 8.876115], + [-13.020485, 8.876356], + [-13.021554, 8.884318], + [-13.018553, 8.883881], + [-13.015682, 8.883466], + [-13.015596, 8.883464], + [-13.015581, 8.88366], + [-13.00762, 8.883291], + [-13.010416, 8.889582], + [-13.010416, 8.890417], + [-13.008749, 8.892916], + [-13.005417, 8.892917], + [-13.002916, 8.89625], + [-12.999583, 8.897082], + [-12.998796, 8.896296], + [-12.998552, 8.896996], + [-12.998245, 8.896502], + [-12.997082, 8.897082], + [-12.990417, 8.89375], + [-12.987917, 8.896249], + [-12.987083, 8.89625], + [-12.986029, 8.898357], + [-12.986192, 8.898496], + [-12.986319, 8.898833], + [-12.982917, 8.902917], + [-12.982916, 8.905417], + [-12.979583, 8.911249], + [-12.975417, 8.91125], + [-12.972917, 8.912083], + [-12.972916, 8.917326], + [-12.972915, 8.917327], + [-12.971727, 8.915362], + [-12.971724, 8.918153], + [-12.969583, 8.917083], + [-12.968749, 8.917917], + [-12.96402, 8.920281], + [-12.96374, 8.920231], + [-12.961321, 8.920999], + [-12.961272, 8.921046], + [-12.95875, 8.920417], + [-12.95625, 8.920417], + [-12.955416, 8.922082], + [-12.954516, 8.921858], + [-12.954432, 8.92178], + [-12.954288, 8.921801], + [-12.952083, 8.92125], + [-12.94625, 8.924582], + [-12.94571, 8.924314], + [-12.943964, 8.925286], + [-12.941723, 8.926467], + [-12.939615, 8.926695], + [-12.93918, 8.926611], + [-12.938133, 8.927737], + [-12.936894, 8.927338], + [-12.936449, 8.926889], + [-12.935973, 8.926755], + [-12.934952, 8.927081], + [-12.934403, 8.927554], + [-12.932472, 8.928421], + [-12.93143, 8.928373], + [-12.929322, 8.930052], + [-12.92837, 8.931717], + [-12.928469, 8.932044], + [-12.928098, 8.932892], + [-12.926453, 8.932102], + [-12.925794, 8.931995], + [-12.924749, 8.932343], + [-12.924255, 8.932759], + [-12.923984, 8.933518], + [-12.924023, 8.934235], + [-12.923798, 8.934861], + [-12.923287, 8.933099], + [-12.92261, 8.932529], + [-12.921703, 8.932172], + [-12.921887, 8.931674], + [-12.924434, 8.931981], + [-12.924521, 8.930806], + [-12.924991, 8.930014], + [-12.926165, 8.929869], + [-12.928131, 8.929253], + [-12.92898, 8.928788], + [-12.929391, 8.927949], + [-12.929431, 8.927223], + [-12.920417, 8.927917], + [-12.919582, 8.929583], + [-12.91875, 8.93375], + [-12.919414, 8.938399], + [-12.955, 8.938399], + [-12.9593, 8.937899], + [-12.965299, 8.9355], + [-12.9687, 8.9349], + [-12.9721, 8.9355], + [-12.979699, 8.938999], + [-12.983999, 8.941399], + [-12.9873, 8.9427], + [-12.993399, 8.945599], + [-13.003, 8.940899], + [-13.009299, 8.9361], + [-13.014, 8.933299], + [-13.020399, 8.9287], + [-13.024599, 8.9275], + [-13.0303, 8.9273], + [-13.049, 8.9273], + [-13.054799, 8.927599], + [-13.058099, 8.928199], + [-13.062675, 8.930089], + [-13.063987, 8.929971], + [-13.065847, 8.929555], + [-13.064793, 8.927296], + [-13.063099, 8.928127], + [-13.060469, 8.928903], + [-13.058356, 8.928084], + [-13.056242, 8.926143], + [-13.05538, 8.924935], + [-13.055381, 8.924934], + [-13.057838, 8.923728], + [-13.06008, 8.923469], + [-13.062366, 8.924848], + [-13.064064, 8.925734], + [-13.060961, 8.919085], + [-13.060962, 8.919084], + [-13.061653, 8.918959], + [-13.06251, 8.919559], + [-13.062916, 8.918749], + [-13.06125, 8.91125], + [-13.060416, 8.910417], + [-13.05875, 8.910416], + [-13.058749, 8.90625], + [-13.057916, 8.906249], + [-13.057082, 8.90375], + [-13.050419, 8.904582], + [-13.050418, 8.904581], + [-13.053979, 8.900307], + [-13.056036, 8.901665], + [-13.057057, 8.90215], + [-13.058273, 8.901476], + [-13.059536, 8.900712], + [-13.061151, 8.899973], + [-13.061982, 8.899079], + [-13.063105, 8.898546], + [-13.063761, 8.897259], + [-13.06393, 8.897093], + [-13.064243, 8.896114], + [-13.063008, 8.895142], + [-13.063749, 8.892916], + [-13.062916, 8.890417], + [-13.060726, 8.888226], + [-13.060745, 8.888079], + [-13.060578, 8.888077], + [-13.060417, 8.887916], + [-13.060417, 8.886249], + [-13.062916, 8.883749], + [-13.062917, 8.88125], + [-13.071249, 8.881249], + [-13.072082, 8.880416], + [-13.072083, 8.879582], + [-13.075416, 8.874582] + ] + ], + "type": "Polygon" + }, + "id": 344, + "properties": { + "cc:admin:id": ["89"], + "cc:oBld:total": 238, + "cc:pop:fifteen-to-twenty-four": 3347.0233321234587, + "cc:pop:grid3-total": 13468.809203096063, + "cc:pop:kontur-total": 19063.66345940156, + "cc:pop:men": 8756.645386006583, + "cc:pop:sixty-plus": 1068.6585249981463, + "cc:pop:total": 18593.932662704883, + "cc:pop:under-five": 2843.930844683729, + "cc:pop:women": 9837.2872766983, + "cc:pop:women-fiften-to-forty-nine": 4771.402588836736, + "cc:pop:wp-total": 13504.576891595358, + "cc:pop:wp-total-UN": 15648.850111933802, + "cc:id": "344", + "cc:Name": "Mambolo CHC", + "cc:site": [-13.0288, 8.907], + "user:parentName": "Mambolo", + "user:code": "OU_211269", + "user:orgUnitId": "RAsstekPRco", + "user:level": "4", + "user:parentId": "xGMGhjA3y6J" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.710284, 7.76375], + [-11.708749, 7.763749], + [-11.70125, 7.762084], + [-11.698606, 7.758778], + [-11.697164, 7.761275], + [-11.701069, 7.768041], + [-11.697164, 7.774806], + [-11.694359, 7.774807], + [-11.69375, 7.775417], + [-11.693749, 7.777084], + [-11.691249, 7.779584], + [-11.688173, 7.780096], + [-11.684386, 7.778969], + [-11.683021, 7.778646], + [-11.684582, 7.781249], + [-11.684582, 7.782083], + [-11.683749, 7.782084], + [-11.672917, 7.787084], + [-11.672083, 7.792916], + [-11.672916, 7.79375], + [-11.667917, 7.799584], + [-11.669582, 7.804583], + [-11.668534, 7.804584], + [-11.668617, 7.80479], + [-11.657917, 7.807084], + [-11.658749, 7.815415], + [-11.655416, 7.812917], + [-11.65125, 7.812084], + [-11.648749, 7.823749], + [-11.644583, 7.822917], + [-11.644246, 7.823591], + [-11.644528, 7.823804], + [-11.642917, 7.825416], + [-11.64125, 7.825417], + [-11.63875, 7.828749], + [-11.636249, 7.82875], + [-11.632917, 7.829584], + [-11.632083, 7.830417], + [-11.632083, 7.835416], + [-11.63375, 7.835417], + [-11.637082, 7.83875], + [-11.640811, 7.848442], + [-11.643026, 7.849104], + [-11.643025, 7.849106], + [-11.640469, 7.849106], + [-11.636563, 7.855872], + [-11.640468, 7.862637], + [-11.639388, 7.864509], + [-11.643465, 7.862675], + [-11.64443, 7.861985], + [-11.644768, 7.861339], + [-11.645326, 7.860886], + [-11.646864, 7.860111], + [-11.649507, 7.859608], + [-11.651661, 7.858991], + [-11.652367, 7.858972], + [-11.652863, 7.85874], + [-11.654451, 7.859154], + [-11.65515, 7.859136], + [-11.657641, 7.858576], + [-11.657911, 7.858563], + [-11.659157, 7.858253], + [-11.659834, 7.858002], + [-11.660817, 7.857889], + [-11.665787, 7.858972], + [-11.668983, 7.85794], + [-11.669949, 7.857827], + [-11.67204, 7.858034], + [-11.673331, 7.858348], + [-11.673933, 7.858293], + [-11.674373, 7.857984], + [-11.67511, 7.857908], + [-11.677112, 7.856839], + [-11.68054, 7.856322], + [-11.680777, 7.856128], + [-11.683632, 7.855482], + [-11.684871, 7.85488], + [-11.686408, 7.854995], + [-11.687574, 7.854901], + [-11.689631, 7.854081], + [-11.691355, 7.852611], + [-11.692256, 7.852005], + [-11.692651, 7.851985], + [-11.693327, 7.852693], + [-11.693589, 7.853278], + [-11.693774, 7.854285], + [-11.693668, 7.85478], + [-11.694049, 7.855562], + [-11.694704, 7.856303], + [-11.694996, 7.856079], + [-11.69555, 7.856812], + [-11.695599, 7.856799], + [-11.697299, 7.851299], + [-11.697299, 7.8487], + [-11.696499, 7.846399], + [-11.691199, 7.836199], + [-11.690499, 7.833599], + [-11.6903, 7.8309], + [-11.690699, 7.8269], + [-11.692999, 7.8212], + [-11.693004, 7.821183], + [-11.6936, 7.818699], + [-11.694099, 7.8134], + [-11.6945, 7.8112], + [-11.6962, 7.808399], + [-11.702099, 7.802], + [-11.704199, 7.799], + [-11.7076, 7.792299], + [-11.708399, 7.7897], + [-11.708599, 7.7869], + [-11.7084, 7.769999], + [-11.7089, 7.766499], + [-11.709799, 7.7645], + [-11.710284, 7.76375] + ] + ], + "type": "Polygon" + }, + "id": 346, + "properties": { + "cc:admin:id": ["40"], + "cc:oBld:total": 962, + "cc:pop:fifteen-to-twenty-four": 1607.1899170972922, + "cc:pop:grid3-total": 4318.839406707224, + "cc:pop:kontur-total": 9127.250726730179, + "cc:pop:men": 4429.252665467628, + "cc:pop:sixty-plus": 679.1451533366778, + "cc:pop:total": 9157.629596514595, + "cc:pop:under-five": 1479.1589405128002, + "cc:pop:women": 4728.37693104696, + "cc:pop:women-fiften-to-forty-nine": 2205.234834269809, + "cc:pop:wp-total": 6074.385830339229, + "cc:pop:wp-total-UN": 7041.996908131765, + "cc:id": "346", + "cc:Name": "Mamboma MCHP", + "cc:site": [-11.6574, 7.8392], + "user:parentName": "Jaiama Bongor", + "user:code": "OU_828", + "user:orgUnitId": "w3vRmEz3J7t", + "user:level": "4", + "user:parentId": "daJPPxtIrQn" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.74625, 8.608749], + [-12.746249, 8.607917], + [-12.742917, 8.607083], + [-12.742082, 8.60125], + [-12.740016, 8.597118], + [-12.737799, 8.5978], + [-12.7333, 8.598199], + [-12.726, 8.5972], + [-12.7242, 8.600899], + [-12.7224, 8.603999], + [-12.7207, 8.610399], + [-12.7195, 8.612699], + [-12.717199, 8.6154], + [-12.710099, 8.6224], + [-12.707199, 8.6246], + [-12.6997, 8.628299], + [-12.697299, 8.6291], + [-12.692199, 8.6302], + [-12.6878, 8.632399], + [-12.684699, 8.6337], + [-12.6804, 8.636099], + [-12.677299, 8.6375], + [-12.675099, 8.6391], + [-12.669099, 8.6446], + [-12.666199, 8.6468], + [-12.661299, 8.6495], + [-12.658199, 8.652], + [-12.6535, 8.656399], + [-12.6506, 8.658499], + [-12.647499, 8.6599], + [-12.643199, 8.6623], + [-12.639299, 8.6639], + [-12.632, 8.6678], + [-12.6293, 8.670799], + [-12.627, 8.675199], + [-12.6254, 8.677099], + [-12.622299, 8.6799], + [-12.6185, 8.6826], + [-12.6149, 8.688499], + [-12.612499, 8.6935], + [-12.610099, 8.6964], + [-12.607599, 8.6986], + [-12.603799, 8.7013], + [-12.601099, 8.705], + [-12.5965, 8.710899], + [-12.593906, 8.715888], + [-12.593907, 8.715891], + [-12.595443, 8.71588], + [-12.596061, 8.715354], + [-12.596899, 8.715731], + [-12.597598, 8.716716], + [-12.598185, 8.717113], + [-12.599249, 8.71832], + [-12.600651, 8.721589], + [-12.601577, 8.722702], + [-12.602022, 8.723141], + [-12.603142, 8.723737], + [-12.604421, 8.724114], + [-12.605437, 8.724164], + [-12.604147, 8.73078], + [-12.608426, 8.733597], + [-12.609134, 8.734255], + [-12.609631, 8.73518], + [-12.61147, 8.736026], + [-12.612036, 8.736533], + [-12.612594, 8.737666], + [-12.613758, 8.738331], + [-12.613705, 8.73876], + [-12.613958, 8.739329], + [-12.614357, 8.741621], + [-12.614939, 8.742507], + [-12.615706, 8.744518], + [-12.616001, 8.744879], + [-12.616174, 8.745705], + [-12.615443, 8.747667], + [-12.615006, 8.74796], + [-12.614248, 8.749053], + [-12.613183, 8.750636], + [-12.613161, 8.750669], + [-12.612419, 8.752165], + [-12.612305, 8.753971], + [-12.612917, 8.754583], + [-12.618749, 8.754583], + [-12.61875, 8.756919], + [-12.61899, 8.756971], + [-12.619582, 8.758749], + [-12.616066, 8.764379], + [-12.616762, 8.765551], + [-12.617931, 8.766397], + [-12.618515, 8.768351], + [-12.620132, 8.770128], + [-12.619081, 8.769884], + [-12.617945, 8.769946], + [-12.61756, 8.770325], + [-12.617024, 8.770354], + [-12.616818, 8.770654], + [-12.6218, 8.7719], + [-12.6266, 8.7741], + [-12.628799, 8.774499], + [-12.631, 8.774499], + [-12.6336, 8.773699], + [-12.636199, 8.7719], + [-12.641999, 8.7662], + [-12.644799, 8.7641], + [-12.6506, 8.7614], + [-12.652799, 8.7613], + [-12.6605, 8.7647], + [-12.664399, 8.768099], + [-12.666299, 8.7707], + [-12.667199, 8.773799], + [-12.667321, 8.775977], + [-12.667748, 8.775858], + [-12.670014, 8.775801], + [-12.670843, 8.776485], + [-12.670416, 8.775417], + [-12.66875, 8.774582], + [-12.668749, 8.773916], + [-12.670466, 8.771243], + [-12.670384, 8.769765], + [-12.670124, 8.76923], + [-12.669929, 8.767698], + [-12.670242, 8.766721], + [-12.670509, 8.76682], + [-12.670556, 8.767782], + [-12.67146, 8.768356], + [-12.672666, 8.768814], + [-12.674405, 8.768699], + [-12.675403, 8.768011], + [-12.677119, 8.766339], + [-12.678006, 8.766488], + [-12.677487, 8.766005], + [-12.679582, 8.760417], + [-12.676241, 8.757074], + [-12.677954, 8.754417], + [-12.67826, 8.75324], + [-12.67938, 8.751842], + [-12.68039, 8.75112], + [-12.680706, 8.750737], + [-12.680905, 8.748326], + [-12.680804, 8.747731], + [-12.681338, 8.745241], + [-12.681376, 8.74516], + [-12.677917, 8.744582], + [-12.67922, 8.739368], + [-12.679202, 8.739364], + [-12.679201, 8.739363], + [-12.681249, 8.734582], + [-12.68125, 8.732083], + [-12.686249, 8.730416], + [-12.685417, 8.727083], + [-12.685417, 8.725333], + [-12.685418, 8.725332], + [-12.686947, 8.725775], + [-12.685269, 8.724687], + [-12.685361, 8.724099], + [-12.684491, 8.723841], + [-12.685765, 8.722568], + [-12.684432, 8.723046], + [-12.684146, 8.722905], + [-12.684145, 8.722904], + [-12.685465, 8.72177], + [-12.686439, 8.721343], + [-12.686827, 8.72089], + [-12.687229, 8.72001], + [-12.687351, 8.718761], + [-12.687634, 8.718522], + [-12.687635, 8.718523], + [-12.687392, 8.720847], + [-12.688123, 8.721649], + [-12.691065, 8.721429], + [-12.693208, 8.720747], + [-12.693874, 8.720797], + [-12.694464, 8.721137], + [-12.695282, 8.721294], + [-12.697296, 8.720623], + [-12.697372, 8.720587], + [-12.698276, 8.719694], + [-12.699188, 8.719323], + [-12.699736, 8.719412], + [-12.699879, 8.719112], + [-12.700325, 8.719112], + [-12.70059, 8.719382], + [-12.701411, 8.719022], + [-12.701918, 8.719101], + [-12.702365, 8.718499], + [-12.702315, 8.718019], + [-12.702618, 8.717095], + [-12.702557, 8.716484], + [-12.701696, 8.71511], + [-12.70119, 8.714601], + [-12.699996, 8.714953], + [-12.698524, 8.714894], + [-12.69762, 8.715143], + [-12.697062, 8.715074], + [-12.696727, 8.714532], + [-12.696148, 8.714481], + [-12.695297, 8.71382], + [-12.694525, 8.711945], + [-12.693673, 8.711594], + [-12.692253, 8.712346], + [-12.691694, 8.713098], + [-12.69071, 8.71395], + [-12.689797, 8.714652], + [-12.689494, 8.714632], + [-12.689494, 8.714631], + [-12.691389, 8.712846], + [-12.691612, 8.712365], + [-12.691319, 8.711683], + [-12.691461, 8.711302], + [-12.691876, 8.710991], + [-12.692028, 8.7105], + [-12.691208, 8.709567], + [-12.691176, 8.709076], + [-12.690344, 8.707822], + [-12.689483, 8.707691], + [-12.68934, 8.70693], + [-12.689341, 8.706929], + [-12.690161, 8.707311], + [-12.691176, 8.708413], + [-12.691481, 8.708473], + [-12.692485, 8.708443], + [-12.693206, 8.707572], + [-12.693207, 8.707571], + [-12.693398, 8.707842], + [-12.693246, 8.708182], + [-12.692678, 8.708804], + [-12.692111, 8.709016], + [-12.6923, 8.709803], + [-12.692912, 8.710903], + [-12.694276, 8.711007], + [-12.695924, 8.712035], + [-12.695745, 8.712355], + [-12.695868, 8.712859], + [-12.696275, 8.712945], + [-12.696624, 8.713252], + [-12.696587, 8.713533], + [-12.697752, 8.714469], + [-12.699561, 8.714469], + [-12.701653, 8.714189], + [-12.703605, 8.717184], + [-12.704939, 8.717558], + [-12.705357, 8.717129], + [-12.705819, 8.717162], + [-12.703873, 8.713683], + [-12.702784, 8.711742], + [-12.701655, 8.709747], + [-12.700586, 8.707849], + [-12.71108, 8.701908], + [-12.710404, 8.7007], + [-12.707727, 8.69597], + [-12.710085, 8.69465], + [-12.71102, 8.69624], + [-12.711618, 8.697274], + [-12.712082, 8.695417], + [-12.704583, 8.689583], + [-12.704583, 8.684583], + [-12.707916, 8.682916], + [-12.712189, 8.678643], + [-12.712347, 8.678689], + [-12.716532, 8.681676], + [-12.718749, 8.68248], + [-12.71875, 8.677083], + [-12.720416, 8.675416], + [-12.721249, 8.672083], + [-12.721754, 8.671578], + [-12.722739, 8.669871], + [-12.72112, 8.667065], + [-12.722371, 8.666207], + [-12.726457, 8.663994], + [-12.726624, 8.664041], + [-12.723914, 8.659281], + [-12.720697, 8.653587], + [-12.720822, 8.653314], + [-12.721636, 8.65199], + [-12.722264, 8.651692], + [-12.722774, 8.65089], + [-12.72271, 8.650025], + [-12.723577, 8.647503], + [-12.723943, 8.646054], + [-12.724039, 8.645229], + [-12.725289, 8.644976], + [-12.725588, 8.644404], + [-12.727432, 8.643998], + [-12.727545, 8.643413], + [-12.728422, 8.64274], + [-12.729645, 8.641439], + [-12.7296, 8.64051], + [-12.72976, 8.640139], + [-12.730647, 8.639381], + [-12.731164, 8.638665], + [-12.729276, 8.637697], + [-12.729582, 8.637083], + [-12.727917, 8.629585], + [-12.727918, 8.629584], + [-12.732083, 8.631249], + [-12.734582, 8.630416], + [-12.73625, 8.62625], + [-12.740416, 8.622083], + [-12.738837, 8.617346], + [-12.739105, 8.617022], + [-12.739288, 8.616887], + [-12.739583, 8.615417], + [-12.741249, 8.614583], + [-12.742083, 8.611249], + [-12.744582, 8.60875], + [-12.74625, 8.608749] + ] + ], + "type": "Polygon" + }, + "id": 347, + "properties": { + "cc:admin:id": ["80"], + "cc:oBld:total": 793, + "cc:pop:fifteen-to-twenty-four": 2868.0789542530615, + "cc:pop:grid3-total": 18768.05379675041, + "cc:pop:kontur-total": 15708.071547169688, + "cc:pop:men": 7199.166438862831, + "cc:pop:sixty-plus": 906.3011988251379, + "cc:pop:total": 15539.807546424057, + "cc:pop:under-five": 2466.636897875492, + "cc:pop:women": 8340.641107561232, + "cc:pop:women-fiften-to-forty-nine": 4067.0927907707555, + "cc:pop:wp-total": 15436.565950602275, + "cc:pop:wp-total-UN": 17881.967889108997, + "cc:id": "347", + "cc:Name": "Mamusa MCHP", + "cc:site": [-12.6215, 8.7006], + "user:parentName": "Marampa", + "user:code": "OU_255058", + "user:orgUnitId": "FRX63UWciyO", + "user:level": "4", + "user:parentId": "RWvG1aFrr0r" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.056499, 8.657399], + [-13.0562, 8.6532], + [-13.0557, 8.6512], + [-13.0543, 8.650399], + [-13.054299, 8.6468], + [-13.052599, 8.6451], + [-13.0513, 8.6451], + [-13.047599, 8.648499], + [-13.045399, 8.649299], + [-13.0443, 8.6493], + [-13.043499, 8.650099], + [-13.0404, 8.6499], + [-13.040099, 8.6493], + [-13.038499, 8.6496], + [-13.0354, 8.6496], + [-13.033799, 8.6501], + [-13.0307, 8.652099], + [-13.0299, 8.653699], + [-13.028999, 8.654], + [-13.0282, 8.6565], + [-13.028199, 8.6579], + [-13.0271, 8.6596], + [-13.027099, 8.661299], + [-13.0265, 8.6621], + [-13.026499, 8.663999], + [-13.0254, 8.663499], + [-13.0254, 8.6607], + [-13.025999, 8.660399], + [-13.026, 8.6554], + [-13.026799, 8.654899], + [-13.027099, 8.6529], + [-13.026499, 8.6526], + [-13.0224, 8.6526], + [-13.022099, 8.653499], + [-13.021, 8.6535], + [-13.0185, 8.654899], + [-13.0174, 8.6549], + [-13.016799, 8.655699], + [-13.0154, 8.655699], + [-13.0154, 8.654899], + [-13.0179, 8.6532], + [-13.020099, 8.652899], + [-13.021499, 8.6518], + [-13.023499, 8.651499], + [-13.025099, 8.6504], + [-13.0265, 8.650399], + [-13.028499, 8.648999], + [-13.0301, 8.6457], + [-13.031499, 8.6451], + [-13.033499, 8.6451], + [-13.0351, 8.6457], + [-13.0385, 8.6462], + [-13.0424, 8.646199], + [-13.046799, 8.645699], + [-13.0482, 8.643799], + [-13.049299, 8.6413], + [-13.050699, 8.640399], + [-13.0513, 8.6393], + [-13.053799, 8.637099], + [-13.054, 8.6338], + [-13.0551, 8.630999], + [-13.055099, 8.630835], + [-13.055047, 8.630921], + [-13.055011, 8.630799], + [-13.054862, 8.630605], + [-13.054623, 8.630303], + [-13.054533, 8.630191], + [-13.054463, 8.629987], + [-13.054389, 8.629651], + [-13.054297, 8.629442], + [-13.054208, 8.629311], + [-13.054134, 8.629278], + [-13.054008, 8.62935], + [-13.053931, 8.629441], + [-13.053874, 8.62959], + [-13.053762, 8.629799], + [-13.053585, 8.630001], + [-13.053229, 8.630113], + [-13.052661, 8.630214], + [-13.052412, 8.630233], + [-13.052259, 8.63021], + [-13.052202, 8.630053], + [-13.052199, 8.629957], + [-13.052222, 8.629855], + [-13.052299, 8.629753], + [-13.052507, 8.629579], + [-13.052508, 8.62958], + [-13.052395, 8.629721], + [-13.052285, 8.62984], + [-13.052275, 8.629988], + [-13.052295, 8.630082], + [-13.052328, 8.630141], + [-13.052521, 8.630171], + [-13.052771, 8.630115], + [-13.053202, 8.630044], + [-13.053505, 8.629964], + [-13.053631, 8.62986], + [-13.053721, 8.62974], + [-13.053792, 8.629494], + [-13.053901, 8.629251], + [-13.053967, 8.629149], + [-13.054091, 8.629132], + [-13.054394, 8.629112], + [-13.054513, 8.628501], + [-13.054639, 8.627755], + [-13.054635, 8.627132], + [-13.054556, 8.625864], + [-13.054382, 8.62515], + [-13.054202, 8.62473], + [-13.05405, 8.624162], + [-13.053973, 8.623734], + [-13.053955, 8.623353], + [-13.053868, 8.623118], + [-13.053776, 8.623013], + [-13.053669, 8.623018], + [-13.053559, 8.623062], + [-13.053291, 8.623291], + [-13.052952, 8.623597], + [-13.052681, 8.624045], + [-13.052204, 8.624505], + [-13.051464, 8.625044], + [-13.051192, 8.625173], + [-13.050858, 8.625306], + [-13.050443, 8.625484], + [-13.050194, 8.625572], + [-13.04992, 8.625566], + [-13.049606, 8.625637], + [-13.049291, 8.625739], + [-13.049126, 8.625831], + [-13.049041, 8.62605], + [-13.049041, 8.626232], + [-13.049198, 8.626534], + [-13.049397, 8.626861], + [-13.04973, 8.627291], + [-13.050103, 8.627732], + [-13.050274, 8.628019], + [-13.050343, 8.628256], + [-13.050309, 8.628729], + [-13.05023, 8.62886], + [-13.050012, 8.628993], + [-13.049575, 8.629173], + [-13.049205, 8.629265], + [-13.048744, 8.629444], + [-13.048197, 8.629622], + [-13.047844, 8.62968], + [-13.047522, 8.629663], + [-13.04728, 8.629614], + [-13.046819, 8.629472], + [-13.046591, 8.629407], + [-13.046362, 8.629266], + [-13.046172, 8.629076], + [-13.046013, 8.628928], + [-13.045878, 8.628814], + [-13.045753, 8.628812], + [-13.045635, 8.62883], + [-13.045459, 8.628898], + [-13.045236, 8.629035], + [-13.044942, 8.629223], + [-13.044848, 8.629257], + [-13.044745, 8.629253], + [-13.044675, 8.629246], + [-13.044591, 8.62927], + [-13.044503, 8.629338], + [-13.044431, 8.629407], + [-13.044317, 8.629477], + [-13.044289, 8.629537], + [-13.04429, 8.629613], + [-13.044335, 8.629709], + [-13.044335, 8.62978], + [-13.044302, 8.629835], + [-13.044225, 8.629875], + [-13.044109, 8.629861], + [-13.043986, 8.629809], + [-13.043892, 8.629779], + [-13.043785, 8.629775], + [-13.043609, 8.62975], + [-13.04361, 8.629748], + [-13.043769, 8.629752], + [-13.043909, 8.629744], + [-13.044147, 8.629831], + [-13.044213, 8.629824], + [-13.04429, 8.629754], + [-13.044258, 8.629663], + [-13.044237, 8.629581], + [-13.044253, 8.629518], + [-13.044269, 8.629472], + [-13.044388, 8.629389], + [-13.044551, 8.629232], + [-13.04463, 8.629188], + [-13.044812, 8.629179], + [-13.044954, 8.629136], + [-13.045126, 8.629031], + [-13.045286, 8.628878], + [-13.045511, 8.628754], + [-13.045675, 8.628678], + [-13.045539, 8.628404], + [-13.045313, 8.627834], + [-13.045235, 8.627419], + [-13.045113, 8.626857], + [-13.045052, 8.626725], + [-13.044939, 8.626647], + [-13.04475, 8.626594], + [-13.044438, 8.626581], + [-13.044182, 8.626613], + [-13.043941, 8.626685], + [-13.043765, 8.626682], + [-13.043616, 8.626659], + [-13.043088, 8.626473], + [-13.042912, 8.626453], + [-13.042781, 8.626473], + [-13.042698, 8.626558], + [-13.042618, 8.626709], + [-13.042541, 8.627012], + [-13.042539, 8.627173], + [-13.042561, 8.627593], + [-13.042561, 8.627844], + [-13.042505, 8.628057], + [-13.042408, 8.628277], + [-13.042202, 8.628459], + [-13.042056, 8.628498], + [-13.041794, 8.628507], + [-13.041704, 8.628475], + [-13.041737, 8.628383], + [-13.041907, 8.628428], + [-13.042075, 8.628415], + [-13.04223, 8.628363], + [-13.042343, 8.628192], + [-13.042432, 8.628044], + [-13.042465, 8.627797], + [-13.042466, 8.627593], + [-13.042404, 8.627312], + [-13.0424, 8.626932], + [-13.042513, 8.62656], + [-13.042635, 8.626407], + [-13.042738, 8.626337], + [-13.042946, 8.626286], + [-13.04318, 8.626317], + [-13.043472, 8.626415], + [-13.043741, 8.626508], + [-13.043943, 8.626499], + [-13.04429, 8.626397], + [-13.044586, 8.626351], + [-13.044915, 8.626359], + [-13.044713, 8.625843], + [-13.044357, 8.625003], + [-13.044168, 8.624592], + [-13.044107, 8.624425], + [-13.044078, 8.624118], + [-13.043722, 8.623408], + [-13.04357, 8.62325], + [-13.043284, 8.62317], + [-13.042771, 8.623118], + [-13.042034, 8.62304], + [-13.041576, 8.623012], + [-13.041496, 8.623184], + [-13.041493, 8.623369], + [-13.041544, 8.623462], + [-13.04183, 8.623597], + [-13.041784, 8.623681], + [-13.042, 8.623747], + [-13.042098, 8.623816], + [-13.042137, 8.623932], + [-13.04224, 8.624031], + [-13.04225, 8.62424], + [-13.042367, 8.624364], + [-13.042512, 8.624384], + [-13.042682, 8.624481], + [-13.042762, 8.624592], + [-13.042639, 8.624671], + [-13.042372, 8.624686], + [-13.042282, 8.624761], + [-13.042118, 8.624964], + [-13.04201, 8.624992], + [-13.041958, 8.624918], + [-13.04192, 8.6247], + [-13.041808, 8.624677], + [-13.041709, 8.624876], + [-13.041648, 8.624978], + [-13.04146, 8.625058], + [-13.041459, 8.625416], + [-13.041356, 8.625574], + [-13.041252, 8.625713], + [-13.04113, 8.625778], + [-13.041036, 8.625708], + [-13.040904, 8.625542], + [-13.040792, 8.625579], + [-13.04074, 8.625736], + [-13.040819, 8.625881], + [-13.040834, 8.626012], + [-13.040966, 8.626313], + [-13.041046, 8.626379], + [-13.041158, 8.626517], + [-13.041228, 8.626638], + [-13.04121, 8.626765], + [-13.041172, 8.626858], + [-13.041065, 8.627044], + [-13.041051, 8.627131], + [-13.041251, 8.627586], + [-13.041263, 8.627849], + [-13.041146, 8.627587], + [-13.041015, 8.627402], + [-13.040908, 8.627183], + [-13.040813, 8.627189], + [-13.040759, 8.627307], + [-13.04066, 8.62733], + [-13.040491, 8.627291], + [-13.040353, 8.627251], + [-13.039995, 8.627226], + [-13.039134, 8.627386], + [-13.038533, 8.627643], + [-13.03819, 8.628089], + [-13.037894, 8.627856], + [-13.037582, 8.62797], + [-13.037462, 8.627951], + [-13.037383, 8.627885], + [-13.037432, 8.627817], + [-13.037536, 8.627786], + [-13.037654, 8.627767], + [-13.037575, 8.627681], + [-13.037446, 8.6276], + [-13.037443, 8.627495], + [-13.037581, 8.627505], + [-13.037681, 8.627543], + [-13.037837, 8.627629], + [-13.037915, 8.627708], + [-13.03797, 8.627698], + [-13.038111, 8.627584], + [-13.038233, 8.627554], + [-13.03831, 8.627612], + [-13.038359, 8.627632], + [-13.038424, 8.6275], + [-13.038482, 8.627306], + [-13.038459, 8.627225], + [-13.03836, 8.627133], + [-13.038247, 8.627074], + [-13.038171, 8.627037], + [-13.03808, 8.626804], + [-13.037967, 8.626761], + [-13.037838, 8.626745], + [-13.037671, 8.62682], + [-13.037535, 8.626823], + [-13.03732, 8.626816], + [-13.037242, 8.626754], + [-13.037157, 8.626636], + [-13.037157, 8.62653], + [-13.03722, 8.626432], + [-13.037349, 8.62631], + [-13.037503, 8.626229], + [-13.037814, 8.626277], + [-13.037861, 8.626248], + [-13.037902, 8.626077], + [-13.037945, 8.625646], + [-13.037945, 8.625318], + [-13.03791, 8.62502], + [-13.037795, 8.624904], + [-13.037609, 8.624818], + [-13.037367, 8.624857], + [-13.037147, 8.624905], + [-13.036935, 8.624983], + [-13.036735, 8.62509], + [-13.036549, 8.625248], + [-13.036401, 8.625321], + [-13.036179, 8.625342], + [-13.035976, 8.625384], + [-13.035693, 8.625475], + [-13.035543, 8.625462], + [-13.03544, 8.625445], + [-13.035385, 8.625317], + [-13.035361, 8.625141], + [-13.035215, 8.624999], + [-13.035216, 8.624998], + [-13.035394, 8.625096], + [-13.035492, 8.62531], + [-13.035591, 8.625391], + [-13.035774, 8.625352], + [-13.036001, 8.62529], + [-13.036462, 8.625146], + [-13.036577, 8.62504], + [-13.036618, 8.624867], + [-13.036662, 8.624797], + [-13.036712, 8.624849], + [-13.036802, 8.624868], + [-13.0369, 8.624838], + [-13.037205, 8.624667], + [-13.037363, 8.62462], + [-13.037608, 8.624671], + [-13.037873, 8.62481], + [-13.037963, 8.624873], + [-13.038031, 8.624847], + [-13.038057, 8.624649], + [-13.037891, 8.624035], + [-13.037731, 8.623594], + [-13.037688, 8.623394], + [-13.037582, 8.623319], + [-13.03739, 8.623268], + [-13.037284, 8.62327], + [-13.037042, 8.623341], + [-13.036747, 8.623314], + [-13.03636, 8.623234], + [-13.036138, 8.623221], + [-13.035915, 8.62326], + [-13.035915, 8.623258], + [-13.036069, 8.623206], + [-13.036124, 8.62316], + [-13.036131, 8.623104], + [-13.036097, 8.623035], + [-13.036072, 8.622963], + [-13.036079, 8.622855], + [-13.036101, 8.622987], + [-13.036224, 8.623118], + [-13.036609, 8.623183], + [-13.037027, 8.623192], + [-13.037333, 8.62309], + [-13.037587, 8.623081], + [-13.037803, 8.623177], + [-13.037897, 8.623266], + [-13.037973, 8.62336], + [-13.038104, 8.623626], + [-13.038209, 8.62397], + [-13.038277, 8.624128], + [-13.038396, 8.624057], + [-13.038479, 8.623985], + [-13.038522, 8.624039], + [-13.038523, 8.624204], + [-13.038582, 8.624365], + [-13.038618, 8.624523], + [-13.03854, 8.624635], + [-13.038472, 8.62457], + [-13.038377, 8.624553], + [-13.03835, 8.624947], + [-13.038383, 8.625013], + [-13.038463, 8.624957], + [-13.038622, 8.6248], + [-13.038791, 8.624825], + [-13.038888, 8.624948], + [-13.038905, 8.625147], + [-13.038795, 8.625279], + [-13.038649, 8.625296], + [-13.038387, 8.625454], + [-13.03833, 8.625638], + [-13.03833, 8.626183], + [-13.038423, 8.626617], + [-13.038609, 8.626867], + [-13.038799, 8.626999], + [-13.038981, 8.626979], + [-13.039284, 8.626819], + [-13.03968, 8.626469], + [-13.040063, 8.626035], + [-13.040467, 8.625562], + [-13.040572, 8.625269], + [-13.040654, 8.624934], + [-13.040607, 8.624684], + [-13.040501, 8.624411], + [-13.040382, 8.624119], + [-13.040324, 8.623846], + [-13.040222, 8.623869], + [-13.040155, 8.624046], + [-13.040029, 8.62402], + [-13.040029, 8.623941], + [-13.040088, 8.623652], + [-13.040042, 8.623481], + [-13.039976, 8.623408], + [-13.040069, 8.623284], + [-13.040248, 8.623278], + [-13.040334, 8.623283], + [-13.040454, 8.622949], + [-13.040541, 8.622745], + [-13.040441, 8.622744], + [-13.040249, 8.622587], + [-13.040109, 8.622502], + [-13.040076, 8.622619], + [-13.040062, 8.622725], + [-13.039942, 8.622816], + [-13.03969, 8.622909], + [-13.039669, 8.623027], + [-13.039583, 8.623079], + [-13.039477, 8.622908], + [-13.039284, 8.622732], + [-13.039019, 8.62262], + [-13.038807, 8.622554], + [-13.038807, 8.622553], + [-13.038965, 8.622403], + [-13.039204, 8.62256], + [-13.039411, 8.622691], + [-13.039623, 8.622691], + [-13.039809, 8.622593], + [-13.039829, 8.622487], + [-13.039803, 8.622278], + [-13.039916, 8.622179], + [-13.039113, 8.621937], + [-13.038667, 8.622624], + [-13.038527, 8.622638], + [-13.038238, 8.621189], + [-13.038545, 8.621166], + [-13.037464, 8.616298], + [-13.037042, 8.616136], + [-13.035841, 8.616062], + [-13.035668, 8.615826], + [-13.03565, 8.615357], + [-13.036, 8.614303], + [-13.035877, 8.614107], + [-13.035273, 8.613906], + [-13.03435, 8.613961], + [-13.033783, 8.614187], + [-13.033592, 8.615496], + [-13.033455, 8.615593], + [-13.033042, 8.615502], + [-13.03242, 8.614887], + [-13.031706, 8.614845], + [-13.031571, 8.615253], + [-13.031804, 8.615966], + [-13.031286, 8.616586], + [-13.030762, 8.616234], + [-13.030103, 8.616117], + [-13.029406, 8.615441], + [-13.028212, 8.614814], + [-13.026887, 8.614758], + [-13.025117, 8.613748], + [-13.02436, 8.613692], + [-13.023614, 8.613053], + [-13.02302, 8.613647], + [-13.023886, 8.615458], + [-13.023884, 8.615459], + [-13.023299, 8.614725], + [-13.022444, 8.613441], + [-13.021542, 8.612256], + [-13.019848, 8.61012], + [-13.019603, 8.609731], + [-13.019451, 8.609266], + [-13.0194, 8.608832], + [-13.019548, 8.608479], + [-13.02065, 8.607383], + [-13.021168, 8.606859], + [-13.021542, 8.606388], + [-13.021771, 8.605717], + [-13.022086, 8.604678], + [-13.022264, 8.60394], + [-13.022574, 8.603225], + [-13.022709, 8.60301], + [-13.021, 8.603998], + [-13.021, 8.6015], + [-13.021499, 8.600399], + [-13.0215, 8.5985], + [-13.020399, 8.5965], + [-13.018999, 8.5957], + [-13.0168, 8.5954], + [-13.016499, 8.595999], + [-13.0138, 8.596], + [-13.012399, 8.5954], + [-13.0096, 8.5951], + [-13.0049, 8.5951], + [-13.0038, 8.5963], + [-13.003799, 8.5974], + [-13.002399, 8.5987], + [-12.9993, 8.600699], + [-12.997399, 8.601299], + [-12.9918, 8.6013], + [-12.988199, 8.6004], + [-12.9843, 8.600399], + [-12.9821, 8.5996], + [-12.981499, 8.5987], + [-12.9796, 8.5985], + [-12.979299, 8.5979], + [-12.9771, 8.5968], + [-12.976199, 8.596799], + [-12.974899, 8.5954], + [-12.973699, 8.595399], + [-12.972099, 8.5935], + [-12.9693, 8.5929], + [-12.9693, 8.599299], + [-12.971, 8.600399], + [-12.9726, 8.6004], + [-12.973999, 8.6015], + [-12.974299, 8.604299], + [-12.974899, 8.606], + [-12.974899, 8.607899], + [-12.974599, 8.6079], + [-12.975008, 8.608827], + [-12.975208, 8.608958], + [-12.974541, 8.609625], + [-12.974735, 8.609796], + [-12.976429, 8.610704], + [-12.976817, 8.610767], + [-12.977256, 8.61092], + [-12.977658, 8.6111], + [-12.978151, 8.611483], + [-12.978951, 8.6124], + [-12.979333, 8.612798], + [-12.980937, 8.614612], + [-12.980203, 8.615882], + [-12.979766, 8.615965], + [-12.978603, 8.61597], + [-12.977484, 8.616383], + [-12.9765, 8.617348], + [-12.974757, 8.619873], + [-12.973843, 8.622266], + [-12.973233, 8.623357], + [-12.97294, 8.623731], + [-12.972512, 8.624028], + [-12.971959, 8.624126], + [-12.971715, 8.624124], + [-12.971377, 8.623915], + [-12.971276, 8.623486], + [-12.971516, 8.623019], + [-12.971344, 8.62312], + [-12.971104, 8.623246], + [-12.9709, 8.623332], + [-12.970766, 8.623469], + [-12.970631, 8.62358], + [-12.970411, 8.623548], + [-12.970164, 8.623443], + [-12.969971, 8.623464], + [-12.969719, 8.623523], + [-12.969452, 8.623533], + [-12.969086, 8.623661], + [-12.968807, 8.623804], + [-12.968501, 8.623989], + [-12.968196, 8.624048], + [-12.967794, 8.624407], + [-12.967536, 8.624635], + [-12.967306, 8.624848], + [-12.967102, 8.625023], + [-12.966859, 8.625172], + [-12.966538, 8.625246], + [-12.966296, 8.625278], + [-12.965996, 8.625288], + [-12.965846, 8.625277], + [-12.965572, 8.625102], + [-12.965019, 8.624964], + [-12.964606, 8.624933], + [-12.96406, 8.625017], + [-12.963567, 8.625252], + [-12.963308, 8.625533], + [-12.961763, 8.626556], + [-12.961083, 8.627123], + [-12.960949, 8.627293], + [-12.960783, 8.627484], + [-12.960696, 8.627596], + [-12.960562, 8.627675], + [-12.960278, 8.627712], + [-12.960176, 8.627755], + [-12.960305, 8.627828], + [-12.960588, 8.627814], + [-12.960841, 8.627712], + [-12.961163, 8.627272], + [-12.961973, 8.626625], + [-12.962992, 8.626063], + [-12.963335, 8.625777], + [-12.963577, 8.625516], + [-12.963926, 8.625293], + [-12.96435, 8.625071], + [-12.964591, 8.625061], + [-12.964896, 8.625118], + [-12.965106, 8.625156], + [-12.965396, 8.625257], + [-12.96567, 8.6254], + [-12.966008, 8.625558], + [-12.966389, 8.625532], + [-12.966881, 8.625453], + [-12.967488, 8.625182], + [-12.967911, 8.624817], + [-12.968159, 8.624572], + [-12.96847, 8.624308], + [-12.968786, 8.624179], + [-12.969232, 8.624052], + [-12.969693, 8.623925], + [-12.97016, 8.623921], + [-12.970406, 8.624095], + [-12.970813, 8.624423], + [-12.971089, 8.624609], + [-12.97035, 8.625198], + [-12.969811, 8.625713], + [-12.969542, 8.626371], + [-12.968432, 8.627818], + [-12.967821, 8.628709], + [-12.967418, 8.62978], + [-12.967398, 8.629825], + [-12.967397, 8.629825], + [-12.967195, 8.629475], + [-12.967121, 8.629677], + [-12.966389, 8.629831], + [-12.966379, 8.630105], + [-12.966636, 8.63053], + [-12.966146, 8.631392], + [-12.963398, 8.631861], + [-12.961496, 8.631728], + [-12.959957, 8.631298], + [-12.959521, 8.631827], + [-12.958964, 8.631828], + [-12.959226, 8.632518], + [-12.959125, 8.633376], + [-12.959533, 8.633128], + [-12.959956, 8.633085], + [-12.960401, 8.633534], + [-12.961221, 8.633758], + [-12.962172, 8.632916], + [-12.964027, 8.633121], + [-12.965495, 8.632746], + [-12.965894, 8.632853], + [-12.966032, 8.633215], + [-12.965949, 8.633465], + [-12.964992, 8.634154], + [-12.964778, 8.634568], + [-12.964871, 8.635109], + [-12.965262, 8.63552], + [-12.966051, 8.635558], + [-12.966083, 8.635583], + [-12.957382, 8.644284], + [-12.957381, 8.644284], + [-12.957272, 8.644169], + [-12.957282, 8.643433], + [-12.958634, 8.642365], + [-12.958676, 8.641993], + [-12.957019, 8.642802], + [-12.95572, 8.643018], + [-12.954807, 8.643008], + [-12.953854, 8.642781], + [-12.953349, 8.64249], + [-12.953109, 8.642096], + [-12.952983, 8.640863], + [-12.952783, 8.640783], + [-12.952226, 8.645797], + [-12.95202, 8.645852], + [-12.95125, 8.651249], + [-12.952916, 8.652917], + [-12.952916, 8.65875], + [-12.947917, 8.66125], + [-12.94668, 8.663719], + [-12.945661, 8.663373], + [-12.9456, 8.663383], + [-12.945416, 8.66375], + [-12.941249, 8.665416], + [-12.937083, 8.664584], + [-12.937083, 8.666534], + [-12.938565, 8.667648], + [-12.939736, 8.669452], + [-12.939479, 8.67017], + [-12.939951, 8.671122], + [-12.940009, 8.671912], + [-12.939879, 8.67211], + [-12.93918, 8.672211], + [-12.938268, 8.671753], + [-12.93756, 8.670914], + [-12.936735, 8.670469], + [-12.936355, 8.669597], + [-12.935776, 8.669011], + [-12.932917, 8.669583], + [-12.927916, 8.673749], + [-12.920417, 8.669583], + [-12.920416, 8.668265], + [-12.919993, 8.668113], + [-12.919614, 8.667899], + [-12.91923, 8.667632], + [-12.918874, 8.667338], + [-12.9186, 8.667094], + [-12.918407, 8.666816], + [-12.918215, 8.666665], + [-12.918034, 8.666542], + [-12.917815, 8.666436], + [-12.917646, 8.666419], + [-12.917558, 8.66645], + [-12.917362, 8.6666], + [-12.917002, 8.666929], + [-12.916831, 8.66713], + [-12.916671, 8.667257], + [-12.916289, 8.667427], + [-12.916023, 8.667521], + [-12.915024, 8.667534], + [-12.913628, 8.667018], + [-12.913362, 8.666776], + [-12.913164, 8.666556], + [-12.913161, 8.666421], + [-12.913119, 8.6663], + [-12.912788, 8.666087], + [-12.912517, 8.665998], + [-12.912157, 8.665931], + [-12.911856, 8.665897], + [-12.911136, 8.665749], + [-12.910968, 8.665729], + [-12.91077, 8.665745], + [-12.91056, 8.66574], + [-12.910189, 8.665716], + [-12.910059, 8.665676], + [-12.909601, 8.665498], + [-12.909428, 8.665191], + [-12.909169, 8.665085], + [-12.909014, 8.665102], + [-12.908793, 8.665297], + [-12.908565, 8.665542], + [-12.908172, 8.665842], + [-12.907772, 8.666061], + [-12.9073, 8.666196], + [-12.906844, 8.66624], + [-12.906602, 8.666228], + [-12.905971, 8.666268], + [-12.905574, 8.666245], + [-12.905112, 8.666257], + [-12.904715, 8.666312], + [-12.904219, 8.666479], + [-12.903741, 8.666627], + [-12.903044, 8.666767], + [-12.902261, 8.6669], + [-12.90184, 8.667039], + [-12.90132, 8.667219], + [-12.900689, 8.667749], + [-12.900364, 8.668246], + [-12.900094, 8.66854], + [-12.899715, 8.668788], + [-12.899318, 8.668898], + [-12.899052, 8.668884], + [-12.898832, 8.668796], + [-12.898645, 8.668666], + [-12.898442, 8.668331], + [-12.898301, 8.667735], + [-12.898131, 8.66724], + [-12.897886, 8.666804], + [-12.897689, 8.66662], + [-12.897506, 8.666606], + [-12.89723, 8.666617], + [-12.896713, 8.666705], + [-12.896131, 8.666838], + [-12.895865, 8.666992], + [-12.895758, 8.667144], + [-12.895692, 8.667574], + [-12.895744, 8.667998], + [-12.895819, 8.668574], + [-12.89593, 8.668911], + [-12.896165, 8.669165], + [-12.896447, 8.669344], + [-12.896745, 8.669485], + [-12.897179, 8.66974], + [-12.897351, 8.669931], + [-12.897411, 8.670082], + [-12.897455, 8.670402], + [-12.897437, 8.67071], + [-12.897313, 8.670894], + [-12.895589, 8.671452], + [-12.895278, 8.671582], + [-12.894515, 8.672057], + [-12.893176, 8.672777], + [-12.892755, 8.672961], + [-12.892529, 8.673005], + [-12.892336, 8.67301], + [-12.892159, 8.672981], + [-12.8919, 8.672835], + [-12.891676, 8.672634], + [-12.891514, 8.672422], + [-12.891372, 8.672003], + [-12.891352, 8.671609], + [-12.8914, 8.671282], + [-12.891528, 8.670782], + [-12.891792, 8.670478], + [-12.892155, 8.670161], + [-12.892394, 8.6699], + [-12.8926, 8.66956], + [-12.892804, 8.669249], + [-12.893028, 8.668885], + [-12.893162, 8.66852], + [-12.893207, 8.668012], + [-12.89319, 8.667629], + [-12.893059, 8.667257], + [-12.892822, 8.666879], + [-12.89261, 8.666674], + [-12.892266, 8.666623], + [-12.89169, 8.666738], + [-12.891351, 8.666825], + [-12.891082, 8.666895], + [-12.890688, 8.666978], + [-12.890426, 8.667437], + [-12.890209, 8.667683], + [-12.88996, 8.667893], + [-12.889334, 8.668545], + [-12.889097, 8.668733], + [-12.886715, 8.664564], + [-12.88668, 8.664627], + [-12.886038, 8.664817], + [-12.885963, 8.665487], + [-12.88481, 8.666662], + [-12.884554, 8.666943], + [-12.882722, 8.668538], + [-12.8811, 8.670235], + [-12.880345, 8.671051], + [-12.884106, 8.674186], + [-12.883259, 8.675859], + [-12.880048, 8.682571], + [-12.878496, 8.684867], + [-12.877901, 8.685626], + [-12.874062, 8.686106], + [-12.87387, 8.686339], + [-12.873504, 8.687831], + [-12.873759, 8.690428], + [-12.874747, 8.693881], + [-12.875767, 8.69561], + [-12.876237, 8.696098], + [-12.87713, 8.696764], + [-12.878337, 8.69736], + [-12.879673, 8.69868], + [-12.880825, 8.700362], + [-12.881871, 8.701421], + [-12.882692, 8.702031], + [-12.88332, 8.702694], + [-12.883517, 8.703687], + [-12.883429, 8.704186], + [-12.883, 8.704958], + [-12.882123, 8.706125], + [-12.880542, 8.707673], + [-12.879871, 8.708367], + [-12.879509, 8.708977], + [-12.882596, 8.709419], + [-12.881303, 8.710642], + [-12.881351, 8.710846], + [-12.88141, 8.711075], + [-12.881609, 8.711412], + [-12.881757, 8.711597], + [-12.881894, 8.711657], + [-12.882173, 8.711663], + [-12.882489, 8.711645], + [-12.882732, 8.711635], + [-12.88308, 8.711713], + [-12.883322, 8.711735], + [-12.883489, 8.711756], + [-12.883804, 8.711906], + [-12.884169, 8.712137], + [-12.884557, 8.712364], + [-12.885032, 8.712661], + [-12.885553, 8.71294], + [-12.886006, 8.713137], + [-12.8864, 8.713275], + [-12.886715, 8.713303], + [-12.887083, 8.713329], + [-12.887558, 8.713387], + [-12.88786, 8.713398], + [-12.888331, 8.713379], + [-12.888697, 8.713446], + [-12.889997, 8.714396], + [-12.890153, 8.714501], + [-12.890506, 8.714744], + [-12.890616, 8.714846], + [-12.890749, 8.715136], + [-12.890859, 8.715612], + [-12.890921, 8.716115], + [-12.890921, 8.716525], + [-12.890903, 8.71669], + [-12.890963, 8.716813], + [-12.891109, 8.716969], + [-12.891504, 8.717238], + [-12.892272, 8.717692], + [-12.892621, 8.717866], + [-12.893011, 8.717984], + [-12.893248, 8.71805], + [-12.893525, 8.718215], + [-12.893748, 8.718446], + [-12.894106, 8.718807], + [-12.894169, 8.718916], + [-12.894266, 8.719122], + [-12.894421, 8.719266], + [-12.894643, 8.719345], + [-12.894844, 8.719366], + [-12.895037, 8.719339], + [-12.895247, 8.719275], + [-12.895383, 8.719181], + [-12.895563, 8.719071], + [-12.895894, 8.718962], + [-12.896328, 8.718814], + [-12.896587, 8.718799], + [-12.896901, 8.718786], + [-12.897354, 8.718797], + [-12.897786, 8.718845], + [-12.898489, 8.719005], + [-12.899111, 8.719208], + [-12.899697, 8.719382], + [-12.901584, 8.720015], + [-12.901939, 8.720272], + [-12.902392, 8.720625], + [-12.903084, 8.72119], + [-12.904155, 8.721594], + [-12.904525, 8.721656], + [-12.9051, 8.721756], + [-12.905615, 8.721696], + [-12.906042, 8.721597], + [-12.906206, 8.721459], + [-12.906328, 8.721398], + [-12.906493, 8.721393], + [-12.906908, 8.721489], + [-12.907458, 8.721626], + [-12.907916, 8.721867], + [-12.909086, 8.722584], + [-12.909382, 8.722731], + [-12.90955, 8.722918], + [-12.909839, 8.723222], + [-12.909984, 8.723287], + [-12.910198, 8.723406], + [-12.910266, 8.723536], + [-12.910273, 8.72381], + [-12.910335, 8.724197], + [-12.910377, 8.724575], + [-12.910403, 8.724943], + [-12.910496, 8.725679], + [-12.910535, 8.725899], + [-12.910622, 8.726168], + [-12.910811, 8.726544], + [-12.91094, 8.726886], + [-12.911024, 8.72725], + [-12.91114, 8.727566], + [-12.911244, 8.727862], + [-12.911268, 8.7281], + [-12.911357, 8.728283], + [-12.911629, 8.728467], + [-12.911851, 8.728545], + [-12.912123, 8.728522], + [-12.912546, 8.728426], + [-12.912838, 8.728259], + [-12.913144, 8.72803], + [-12.913323, 8.72772], + [-12.913386, 8.727475], + [-12.913353, 8.727328], + [-12.913337, 8.727109], + [-12.913387, 8.72698], + [-12.913491, 8.72684], + [-12.913686, 8.726692], + [-12.914207, 8.726359], + [-12.914555, 8.726143], + [-12.914782, 8.726037], + [-12.915081, 8.726023], + [-12.915303, 8.726028], + [-12.91552, 8.72613], + [-12.915677, 8.726268], + [-12.915987, 8.726703], + [-12.916291, 8.726988], + [-12.916938, 8.727705], + [-12.91752, 8.72828], + [-12.917652, 8.728489], + [-12.917717, 8.728708], + [-12.917811, 8.72906], + [-12.917868, 8.729279], + [-12.917915, 8.729336], + [-12.918105, 8.729368], + [-12.918199, 8.72936], + [-12.918373, 8.729279], + [-12.918646, 8.729016], + [-12.91892, 8.728772], + [-12.919234, 8.728381], + [-12.919394, 8.728031], + [-12.919484, 8.727759], + [-12.919689, 8.727333], + [-12.919818, 8.727234], + [-12.92009, 8.727044], + [-12.920411, 8.726725], + [-12.920742, 8.726432], + [-12.920941, 8.726135], + [-12.921258, 8.725835], + [-12.922293, 8.726078], + [-12.922873, 8.725833], + [-12.923233, 8.725415], + [-12.923871, 8.72542], + [-12.924304, 8.726193], + [-12.924181, 8.727301], + [-12.924863, 8.727243], + [-12.924854, 8.727656], + [-12.925203, 8.727784], + [-12.925351, 8.727676], + [-12.925317, 8.727144], + [-12.925417, 8.727137], + [-12.925416, 8.719583], + [-12.923616, 8.717332], + [-12.930124, 8.717332], + [-12.930416, 8.717838], + [-12.930417, 8.718749], + [-12.931661, 8.719994], + [-12.93403, 8.724097], + [-12.930864, 8.729582], + [-12.937916, 8.729583], + [-12.93875, 8.732916], + [-12.943789, 8.737956], + [-12.939899, 8.74095], + [-12.93838, 8.741793], + [-12.938024, 8.741971], + [-12.938056, 8.742028], + [-12.938303, 8.74226], + [-12.939568, 8.741561], + [-12.940019, 8.741283], + [-12.940302, 8.741431], + [-12.94131, 8.741007], + [-12.942397, 8.740948], + [-12.942702, 8.740915], + [-12.943726, 8.739885], + [-12.943188, 8.739504], + [-12.942652, 8.739457], + [-12.942651, 8.739455], + [-12.943852, 8.738618], + [-12.94625, 8.740417], + [-12.948749, 8.747082], + [-12.947917, 8.749583], + [-12.947917, 8.756249], + [-12.951249, 8.760417], + [-12.947917, 8.765416], + [-12.950417, 8.767917], + [-12.954582, 8.770416], + [-12.95625, 8.77375], + [-12.958478, 8.774864], + [-12.958695, 8.774654], + [-12.967082, 8.775416], + [-12.968749, 8.777916], + [-12.96875, 8.778855], + [-12.971905, 8.778855], + [-12.972007, 8.76089], + [-12.976273, 8.757691], + [-12.977083, 8.757083], + [-12.984582, 8.757082], + [-12.98375, 8.752916], + [-12.992916, 8.751249], + [-12.995383, 8.748783], + [-12.994184, 8.747823], + [-12.993185, 8.746547], + [-12.992916, 8.747082], + [-12.990417, 8.747082], + [-12.990839, 8.746025], + [-12.990841, 8.746025], + [-12.990922, 8.746071], + [-12.99625, 8.735417], + [-12.998749, 8.73625], + [-13.001152, 8.738651], + [-13.002442, 8.737754], + [-13.002617, 8.737802], + [-13.00258, 8.738456], + [-13.003092, 8.739838], + [-13.003991, 8.740985], + [-13.004701, 8.741208], + [-13.005039, 8.741997], + [-13.0054, 8.742206], + [-13.005749, 8.742268], + [-13.006111, 8.74212], + [-13.006587, 8.741343], + [-13.007522, 8.740849], + [-13.007659, 8.740505], + [-13.007398, 8.740184], + [-13.006323, 8.739665], + [-13.0054, 8.738136], + [-13.004945, 8.737932], + [-13.004771, 8.73676], + [-13.005126, 8.735983], + [-13.006361, 8.734886], + [-13.007466, 8.734331], + [-13.010131, 8.734324], + [-13.011122, 8.734786], + [-13.012274, 8.735551], + [-13.012783, 8.73148], + [-13.012801, 8.731481], + [-13.012917, 8.731249], + [-13.013352, 8.726023], + [-13.014418, 8.723726], + [-13.015231, 8.723066], + [-13.015797, 8.722894], + [-13.016552, 8.723023], + [-13.017249, 8.723353], + [-13.017727, 8.723352], + [-13.0178, 8.723124], + [-13.016029, 8.72186], + [-13.01571, 8.721142], + [-13.01584, 8.720125], + [-13.014012, 8.719522], + [-13.013996, 8.719533], + [-13.013995, 8.719532], + [-13.014583, 8.715417], + [-13.01625, 8.712917], + [-13.017746, 8.711793], + [-13.019408, 8.708916], + [-13.025416, 8.709582], + [-13.02625, 8.705416], + [-13.028334, 8.701248], + [-13.030568, 8.702291], + [-13.037364, 8.707735], + [-13.037984, 8.706523], + [-13.036962, 8.705814], + [-13.035677, 8.704938], + [-13.035978, 8.70465], + [-13.036979, 8.704199], + [-13.036743, 8.701254], + [-13.037021, 8.700054], + [-13.036916, 8.69945], + [-13.036917, 8.699449], + [-13.037848, 8.69969], + [-13.038559, 8.699366], + [-13.03949, 8.699429], + [-13.040835, 8.699966], + [-13.041281, 8.699886], + [-13.041342, 8.699593], + [-13.041126, 8.699034], + [-13.040453, 8.698022], + [-13.040758, 8.697452], + [-13.040305, 8.696643], + [-13.04033, 8.695614], + [-13.040767, 8.69482], + [-13.041442, 8.694148], + [-13.041508, 8.692883], + [-13.043065, 8.691454], + [-13.043114, 8.69125], + [-13.048445, 8.691249], + [-13.048677, 8.691032], + [-13.048653, 8.689864], + [-13.048637, 8.689748], + [-13.048639, 8.689626], + [-13.048652, 8.689537], + [-13.048703, 8.68937], + [-13.0488, 8.689232], + [-13.04887, 8.689155], + [-13.048975, 8.689056], + [-13.04907, 8.689011], + [-13.049212, 8.688998], + [-13.049297, 8.689021], + [-13.049399, 8.689066], + [-13.049539, 8.689199], + [-13.04963, 8.689313], + [-13.049668, 8.689411], + [-13.049717, 8.689622], + [-13.049815, 8.689764], + [-13.049868, 8.689808], + [-13.049943, 8.689843], + [-13.050073, 8.689852], + [-13.050117, 8.689828], + [-13.050123, 8.689775], + [-13.050118, 8.6896], + [-13.050073, 8.689315], + [-13.049995, 8.689114], + [-13.049873, 8.68887], + [-13.049818, 8.688789], + [-13.049704, 8.688669], + [-13.049436, 8.688455], + [-13.049087, 8.687999], + [-13.048938, 8.687797], + [-13.048801, 8.68766], + [-13.048709, 8.687556], + [-13.048624, 8.6874], + [-13.048586, 8.687281], + [-13.048553, 8.687156], + [-13.048533, 8.686993], + [-13.048533, 8.68688], + [-13.048545, 8.686719], + [-13.048576, 8.686556], + [-13.048654, 8.686445], + [-13.048679, 8.686393], + [-13.048651, 8.68636], + [-13.048366, 8.686346], + [-13.047985, 8.686355], + [-13.047598, 8.686394], + [-13.047193, 8.686406], + [-13.046929, 8.68643], + [-13.046653, 8.686505], + [-13.046325, 8.686662], + [-13.046057, 8.686712], + [-13.045867, 8.686709], + [-13.045737, 8.686752], + [-13.045614, 8.686817], + [-13.045543, 8.686862], + [-13.045487, 8.686958], + [-13.045482, 8.68711], + [-13.045445, 8.687388], + [-13.045355, 8.687548], + [-13.045217, 8.687678], + [-13.045082, 8.687709], + [-13.044944, 8.687793], + [-13.04484, 8.687925], + [-13.044674, 8.68817], + [-13.044607, 8.688238], + [-13.044514, 8.688242], + [-13.044308, 8.688366], + [-13.044183, 8.688523], + [-13.044064, 8.688716], + [-13.043909, 8.68901], + [-13.04381, 8.689267], + [-13.043746, 8.689463], + [-13.043675, 8.689601], + [-13.043574, 8.689675], + [-13.043427, 8.689765], + [-13.043128, 8.689896], + [-13.043079, 8.689961], + [-13.043036, 8.689964], + [-13.042939, 8.689934], + [-13.042876, 8.689974], + [-13.042782, 8.690003], + [-13.042734, 8.689989], + [-13.042671, 8.689981], + [-13.042644, 8.690009], + [-13.042634, 8.690069], + [-13.042665, 8.690302], + [-13.042668, 8.69042], + [-13.042642, 8.690505], + [-13.042534, 8.690673], + [-13.042473, 8.690757], + [-13.042401, 8.690797], + [-13.042327, 8.690794], + [-13.042188, 8.690719], + [-13.042086, 8.690634], + [-13.041908, 8.690423], + [-13.041787, 8.690264], + [-13.041682, 8.690177], + [-13.041551, 8.690158], + [-13.041441, 8.690197], + [-13.041383, 8.690224], + [-13.041317, 8.690292], + [-13.041279, 8.69036], + [-13.041269, 8.690501], + [-13.041254, 8.69081], + [-13.041199, 8.691147], + [-13.041104, 8.691316], + [-13.040981, 8.691469], + [-13.040832, 8.691583], + [-13.040719, 8.691635], + [-13.040641, 8.691677], + [-13.040634, 8.691725], + [-13.040643, 8.691758], + [-13.040668, 8.691796], + [-13.040738, 8.691851], + [-13.040902, 8.691941], + [-13.040902, 8.691942], + [-13.040718, 8.691858], + [-13.04065, 8.691808], + [-13.040587, 8.691723], + [-13.040554, 8.691692], + [-13.040505, 8.691715], + [-13.040326, 8.691842], + [-13.040192, 8.69195], + [-13.040084, 8.692105], + [-13.040006, 8.692269], + [-13.039963, 8.692469], + [-13.039946, 8.692565], + [-13.039904, 8.692645], + [-13.039644, 8.692876], + [-13.039593, 8.693006], + [-13.039576, 8.693098], + [-13.039562, 8.693225], + [-13.039593, 8.69336], + [-13.039647, 8.693629], + [-13.039684, 8.693957], + [-13.03971, 8.694224], + [-13.039739, 8.694418], + [-13.039778, 8.694569], + [-13.039796, 8.694662], + [-13.039784, 8.694766], + [-13.039753, 8.694848], + [-13.039707, 8.694939], + [-13.039637, 8.695029], + [-13.039604, 8.695075], + [-13.039601, 8.695171], + [-13.039586, 8.69524], + [-13.039506, 8.695359], + [-13.039455, 8.695431], + [-13.039423, 8.695488], + [-13.039398, 8.695616], + [-13.039398, 8.695667], + [-13.039404, 8.695717], + [-13.039444, 8.695815], + [-13.039463, 8.695951], + [-13.039504, 8.696051], + [-13.039569, 8.696205], + [-13.039568, 8.696252], + [-13.039524, 8.696256], + [-13.039487, 8.696251], + [-13.039445, 8.696273], + [-13.039417, 8.696314], + [-13.039397, 8.69641], + [-13.039346, 8.696557], + [-13.03931, 8.696588], + [-13.039231, 8.696625], + [-13.039077, 8.696763], + [-13.039042, 8.696819], + [-13.039038, 8.696892], + [-13.039078, 8.696948], + [-13.03912, 8.696967], + [-13.039253, 8.696997], + [-13.039457, 8.697019], + [-13.039646, 8.697005], + [-13.039731, 8.69703], + [-13.039775, 8.697056], + [-13.039823, 8.697117], + [-13.039858, 8.697183], + [-13.039844, 8.697244], + [-13.039758, 8.697334], + [-13.039693, 8.697343], + [-13.039638, 8.697313], + [-13.039586, 8.697266], + [-13.039446, 8.697274], + [-13.039397, 8.697299], + [-13.039323, 8.697366], + [-13.0393, 8.697488], + [-13.039276, 8.697601], + [-13.039282, 8.697684], + [-13.03932, 8.697707], + [-13.039442, 8.697747], + [-13.039603, 8.697778], + [-13.039603, 8.697779], + [-13.039443, 8.697779], + [-13.039392, 8.69775], + [-13.039279, 8.697724], + [-13.039227, 8.697744], + [-13.039115, 8.697805], + [-13.039013, 8.697837], + [-13.038894, 8.697832], + [-13.038894, 8.697831], + [-13.039107, 8.697777], + [-13.039172, 8.697748], + [-13.039231, 8.697696], + [-13.039236, 8.697553], + [-13.039257, 8.697405], + [-13.03931, 8.69729], + [-13.039278, 8.697216], + [-13.039215, 8.697211], + [-13.039127, 8.697226], + [-13.039082, 8.697212], + [-13.03905, 8.697176], + [-13.039053, 8.697133], + [-13.039116, 8.697128], + [-13.039177, 8.697125], + [-13.039214, 8.697093], + [-13.039234, 8.697041], + [-13.03918, 8.697018], + [-13.039095, 8.69699], + [-13.039011, 8.696907], + [-13.038988, 8.696847], + [-13.038999, 8.696799], + [-13.039069, 8.696713], + [-13.039261, 8.696541], + [-13.039348, 8.696459], + [-13.039372, 8.696376], + [-13.039352, 8.696289], + [-13.039326, 8.69622], + [-13.039311, 8.696151], + [-13.039304, 8.696093], + [-13.039319, 8.696025], + [-13.039334, 8.695889], + [-13.039315, 8.695798], + [-13.039276, 8.695761], + [-13.03927, 8.695647], + [-13.039334, 8.695593], + [-13.039395, 8.695497], + [-13.039397, 8.695419], + [-13.039362, 8.695321], + [-13.039364, 8.695171], + [-13.039396, 8.695097], + [-13.039482, 8.695008], + [-13.039648, 8.694844], + [-13.039758, 8.694666], + [-13.039758, 8.694571], + [-13.039678, 8.694342], + [-13.039647, 8.694062], + [-13.039624, 8.693755], + [-13.039582, 8.69356], + [-13.039502, 8.693317], + [-13.039486, 8.693093], + [-13.039503, 8.692972], + [-13.03968, 8.692799], + [-13.039767, 8.692737], + [-13.039852, 8.692628], + [-13.039931, 8.692395], + [-13.039952, 8.692254], + [-13.039963, 8.69211], + [-13.040021, 8.691985], + [-13.040095, 8.691941], + [-13.040196, 8.69185], + [-13.040349, 8.691727], + [-13.040659, 8.691538], + [-13.040879, 8.691396], + [-13.041012, 8.691276], + [-13.041067, 8.691174], + [-13.04107, 8.691101], + [-13.041053, 8.691001], + [-13.041046, 8.690819], + [-13.041086, 8.690597], + [-13.041145, 8.690387], + [-13.041205, 8.690286], + [-13.041271, 8.69019], + [-13.041372, 8.690122], + [-13.041526, 8.690079], + [-13.041727, 8.690092], + [-13.041959, 8.690222], + [-13.042298, 8.690487], + [-13.042359, 8.690489], + [-13.042412, 8.690457], + [-13.042411, 8.690371], + [-13.04238, 8.690323], + [-13.042323, 8.690225], + [-13.042316, 8.690174], + [-13.042338, 8.69012], + [-13.042485, 8.689942], + [-13.042693, 8.689695], + [-13.042867, 8.689596], + [-13.042997, 8.689548], + [-13.043226, 8.689613], + [-13.043324, 8.689664], + [-13.043408, 8.689507], + [-13.043465, 8.689334], + [-13.043511, 8.689283], + [-13.043641, 8.689072], + [-13.043775, 8.688669], + [-13.04382, 8.688564], + [-13.043812, 8.68844], + [-13.043778, 8.688364], + [-13.043826, 8.688269], + [-13.04393, 8.688151], + [-13.044147, 8.68797], + [-13.044356, 8.687804], + [-13.044606, 8.687639], + [-13.044671, 8.68757], + [-13.044694, 8.687345], + [-13.044756, 8.687224], + [-13.044836, 8.687076], + [-13.044996, 8.686893], + [-13.045219, 8.686665], + [-13.045285, 8.686568], + [-13.045273, 8.686481], + [-13.045235, 8.686414], + [-13.045059, 8.686373], + [-13.044817, 8.686314], + [-13.044698, 8.686295], + [-13.044678, 8.686243], + [-13.045447, 8.686287], + [-13.045647, 8.686283], + [-13.045762, 8.68625], + [-13.045852, 8.686195], + [-13.046031, 8.686003], + [-13.046254, 8.685788], + [-13.04637, 8.685689], + [-13.046549, 8.685625], + [-13.046775, 8.685644], + [-13.046989, 8.685732], + [-13.047154, 8.685733], + [-13.047409, 8.68566], + [-13.047633, 8.685636], + [-13.047877, 8.685673], + [-13.047982, 8.685732], + [-13.048083, 8.685865], + [-13.048253, 8.686038], + [-13.048472, 8.6861], + [-13.048628, 8.686105], + [-13.048919, 8.686039], + [-13.049144, 8.685947], + [-13.049263, 8.685859], + [-13.049308, 8.685656], + [-13.049303, 8.685411], + [-13.049287, 8.68521], + [-13.049317, 8.685055], + [-13.049473, 8.684549], + [-13.049554, 8.684269], + [-13.049629, 8.684057], + [-13.049632, 8.683877], + [-13.049657, 8.683791], + [-13.049738, 8.683681], + [-13.049873, 8.683521], + [-13.050114, 8.683325], + [-13.050216, 8.6832], + [-13.050202, 8.683166], + [-13.050147, 8.68311], + [-13.050042, 8.683061], + [-13.049977, 8.683056], + [-13.049884, 8.683055], + [-13.049825, 8.683028], + [-13.049772, 8.68295], + [-13.049789, 8.682898], + [-13.049814, 8.682856], + [-13.049805, 8.682803], + [-13.049734, 8.682675], + [-13.049703, 8.682608], + [-13.04967, 8.682466], + [-13.049671, 8.682467], + [-13.049748, 8.682649], + [-13.049855, 8.682825], + [-13.049865, 8.682874], + [-13.049839, 8.682922], + [-13.049824, 8.682973], + [-13.049889, 8.683025], + [-13.049934, 8.683032], + [-13.050013, 8.683004], + [-13.050105, 8.683013], + [-13.050162, 8.683044], + [-13.050213, 8.683111], + [-13.050248, 8.683149], + [-13.050302, 8.683155], + [-13.050367, 8.683136], + [-13.051363, 8.682473], + [-13.0518, 8.681799], + [-13.054299, 8.681299], + [-13.055099, 8.680099], + [-13.0549, 8.6757], + [-13.055099, 8.6738], + [-13.053999, 8.6713], + [-13.052899, 8.6713], + [-13.049899, 8.672899], + [-13.0471, 8.672899], + [-13.0476, 8.6721], + [-13.048999, 8.672099], + [-13.051799, 8.670699], + [-13.0524, 8.6696], + [-13.053799, 8.668499], + [-13.0538, 8.6674], + [-13.054599, 8.665399], + [-13.0546, 8.6626], + [-13.055699, 8.660699], + [-13.056, 8.6582], + [-13.056499, 8.657399] + ] + ], + "type": "Polygon" + }, + "id": 348, + "properties": { + "cc:admin:id": ["74"], + "cc:oBld:total": 136, + "cc:pop:fifteen-to-twenty-four": 2618.777973248552, + "cc:pop:grid3-total": 7236.029943213852, + "cc:pop:kontur-total": 14732.654928629192, + "cc:pop:men": 6918.764249360037, + "cc:pop:sixty-plus": 768.8495081172188, + "cc:pop:total": 14665.885894977731, + "cc:pop:under-five": 2232.347083116533, + "cc:pop:women": 7747.121645617687, + "cc:pop:women-fiften-to-forty-nine": 3848.712583133243, + "cc:pop:wp-total": 12631.03496426915, + "cc:pop:wp-total-UN": 14630.356775147597, + "cc:id": "348", + "cc:Name": "Mana II CHP", + "cc:site": [-12.9693, 8.7077], + "user:parentName": "Lokomasama", + "user:code": "OU_254984", + "user:orgUnitId": "U9klfqqGlRa", + "user:level": "4", + "user:parentId": "fRLX08WHWpL" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.189844, 8.714789], + [-12.189499, 8.712199], + [-12.1827, 8.6942], + [-12.180099, 8.688799], + [-12.1764, 8.6802], + [-12.17, 8.6698], + [-12.164799, 8.662699], + [-12.160899, 8.655299], + [-12.157099, 8.646699], + [-12.154599, 8.642899], + [-12.150734, 8.638279], + [-12.148583, 8.638632], + [-12.144257, 8.640115], + [-12.142448, 8.640381], + [-12.137961, 8.640547], + [-12.131894, 8.641896], + [-12.128805, 8.641937], + [-12.127622, 8.642302], + [-12.127157, 8.642615], + [-12.126195, 8.643527], + [-12.125564, 8.645242], + [-12.125387, 8.646249], + [-12.129582, 8.64625], + [-12.131249, 8.647917], + [-12.125225, 8.659212], + [-12.125246, 8.659286], + [-12.127998, 8.658257], + [-12.127999, 8.658258], + [-12.126189, 8.660432], + [-12.125483, 8.661232], + [-12.124862, 8.661933], + [-12.125185, 8.662714], + [-12.126191, 8.663752], + [-12.127159, 8.664499], + [-12.128578, 8.664196], + [-12.128107, 8.665881], + [-12.127994, 8.666189], + [-12.131249, 8.66674], + [-12.131249, 8.672082], + [-12.127916, 8.676249], + [-12.121497, 8.67625], + [-12.121932, 8.676537], + [-12.123158, 8.678452], + [-12.123679, 8.678679], + [-12.123891, 8.680312], + [-12.123827, 8.681931], + [-12.123192, 8.683428], + [-12.122351, 8.683285], + [-12.121894, 8.684748], + [-12.121782, 8.685306], + [-12.121635, 8.685552], + [-12.121443, 8.685584], + [-12.121521, 8.685771], + [-12.121606, 8.686133], + [-12.121628, 8.686414], + [-12.121626, 8.686416], + [-12.121645, 8.686707], + [-12.121652, 8.686712], + [-12.121679, 8.687063], + [-12.122939, 8.706078], + [-12.123182, 8.70937], + [-12.121335, 8.710339], + [-12.119861, 8.711484], + [-12.118509, 8.711937], + [-12.118422, 8.711932], + [-12.120416, 8.717917], + [-12.120416, 8.720416], + [-12.110062, 8.721567], + [-12.110152, 8.721635], + [-12.110833, 8.721884], + [-12.1119, 8.722742], + [-12.112871, 8.723861], + [-12.11278, 8.724317], + [-12.111665, 8.726407], + [-12.111622, 8.726702], + [-12.111829, 8.727255], + [-12.110967, 8.72875], + [-12.105536, 8.728751], + [-12.107917, 8.732082], + [-12.114582, 8.735416], + [-12.115417, 8.737082], + [-12.117082, 8.737083], + [-12.11625, 8.738749], + [-12.115417, 8.73875], + [-12.112917, 8.740417], + [-12.109583, 8.748749], + [-12.114477, 8.752246], + [-12.114205, 8.752398], + [-12.112917, 8.752499], + [-12.102917, 8.758749], + [-12.102917, 8.760416], + [-12.10625, 8.764582], + [-12.108749, 8.765417], + [-12.109583, 8.767916], + [-12.113749, 8.771249], + [-12.118027, 8.77125], + [-12.116658, 8.773625], + [-12.120564, 8.78039], + [-12.128377, 8.780391], + [-12.131673, 8.786103], + [-12.131179, 8.786528], + [-12.131105, 8.786962], + [-12.130838, 8.787294], + [-12.128534, 8.788003], + [-12.12839, 8.788321], + [-12.128415, 8.789675], + [-12.128228, 8.790195], + [-12.127268, 8.790217], + [-12.126805, 8.790539], + [-12.125962, 8.790501], + [-12.12521, 8.790805], + [-12.124857, 8.790725], + [-12.124475, 8.790935], + [-12.126303, 8.791545], + [-12.12647, 8.79147], + [-12.130131, 8.79513], + [-12.131222, 8.795131], + [-12.132571, 8.797468], + [-12.132672, 8.797355], + [-12.134126, 8.796975], + [-12.134478, 8.801543], + [-12.134877, 8.801228], + [-12.135585, 8.801135], + [-12.138504, 8.801395], + [-12.1421, 8.798499], + [-12.146399, 8.7964], + [-12.146555, 8.79629], + [-12.1491, 8.794499], + [-12.1517, 8.792199], + [-12.154899, 8.7888], + [-12.156999, 8.7857], + [-12.1585, 8.782499], + [-12.160799, 8.7782], + [-12.1621, 8.774999], + [-12.164399, 8.7708], + [-12.1657, 8.767599], + [-12.168099, 8.7633], + [-12.170099, 8.7592], + [-12.1741, 8.754199], + [-12.176799, 8.749], + [-12.179199, 8.7447], + [-12.1805, 8.741499], + [-12.1828, 8.737299], + [-12.1841, 8.734099], + [-12.1865, 8.728899], + [-12.1878, 8.722899], + [-12.190099, 8.716699], + [-12.189844, 8.714789] + ] + ], + "type": "Polygon" + }, + "id": 349, + "properties": { + "cc:admin:id": ["8"], + "cc:oBld:total": 122, + "cc:pop:fifteen-to-twenty-four": 576.1167582789794, + "cc:pop:grid3-total": 4966.824395512495, + "cc:pop:kontur-total": 3244.407409313504, + "cc:pop:men": 1523.6686981922223, + "cc:pop:sixty-plus": 185.34419794382293, + "cc:pop:total": 3209.6101448177747, + "cc:pop:under-five": 523.3090982244062, + "cc:pop:women": 1685.9414466255514, + "cc:pop:women-fiften-to-forty-nine": 797.3776667785564, + "cc:pop:wp-total": 2410.2011748557475, + "cc:pop:wp-total-UN": 2790.6035566007204, + "cc:id": "349", + "cc:Name": "Manewa MCHP", + "cc:site": [-12.1419, 8.703], + "user:parentName": "Malal Mara", + "user:code": "OU_268189", + "user:orgUnitId": "CTnuuI55SOj", + "user:level": "4", + "user:parentId": "EVkm2xYcf6Z" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.156691, 8.93709], + [-12.155061, 8.935761], + [-12.154149, 8.934257], + [-12.153865, 8.934032], + [-12.154582, 8.925417], + [-12.15198, 8.922163], + [-12.151884, 8.922326], + [-12.147083, 8.919583], + [-12.137142, 8.925381], + [-12.137063, 8.925375], + [-12.134583, 8.920416], + [-12.135416, 8.912083], + [-12.134582, 8.911249], + [-12.130417, 8.909582], + [-12.129582, 8.90625], + [-12.128098, 8.904765], + [-12.129013, 8.90356], + [-12.124582, 8.902083], + [-12.118749, 8.903749], + [-12.11625, 8.90125], + [-12.116249, 8.899583], + [-12.111982, 8.899582], + [-12.112026, 8.897151], + [-12.111816, 8.896628], + [-12.108514, 8.893677], + [-12.108047, 8.893018], + [-12.107795, 8.892334], + [-12.107471, 8.891398], + [-12.105416, 8.892082], + [-12.102083, 8.892082], + [-12.101249, 8.890417], + [-12.099583, 8.890416], + [-12.099583, 8.88625], + [-12.105416, 8.884582], + [-12.103749, 8.87875], + [-12.099582, 8.87875], + [-12.097917, 8.880417], + [-12.097082, 8.884582], + [-12.092083, 8.88375], + [-12.08875, 8.887082], + [-12.085416, 8.88625], + [-12.08125, 8.887082], + [-12.080863, 8.88689], + [-12.079599, 8.89], + [-12.0754, 8.898199], + [-12.0738, 8.900399], + [-12.0711, 8.902999], + [-12.0689, 8.904599], + [-12.065794, 8.906091], + [-12.066249, 8.907916], + [-12.066249, 8.908749], + [-12.062916, 8.910417], + [-12.062083, 8.914582], + [-12.064582, 8.921249], + [-12.06375, 8.922083], + [-12.064582, 8.929582], + [-12.064583, 8.937082], + [-12.063749, 8.938749], + [-12.06125, 8.939583], + [-12.060998, 8.940087], + [-12.061502, 8.940454], + [-12.060417, 8.942083], + [-12.062082, 8.94958], + [-12.06208, 8.94958], + [-12.05625, 8.94375], + [-12.054583, 8.947083], + [-12.054583, 8.948749], + [-12.056249, 8.950417], + [-12.05375, 8.95375], + [-12.054583, 8.957916], + [-12.057916, 8.959582], + [-12.059582, 8.962082], + [-12.05375, 8.968749], + [-12.057082, 8.97125], + [-12.060416, 8.976249], + [-12.057154, 8.978859], + [-12.056307, 8.978723], + [-12.056087, 8.978714], + [-12.055582, 8.983764], + [-12.0586, 8.984699], + [-12.0622, 8.982899], + [-12.0645, 8.981199], + [-12.0672, 8.978599], + [-12.069099, 8.975499], + [-12.069799, 8.9718], + [-12.0697, 8.9642], + [-12.0699, 8.9606], + [-12.0714, 8.957699], + [-12.0766, 8.954299], + [-12.084899, 8.9506], + [-12.0883, 8.95], + [-12.0918, 8.9506], + [-12.097099, 8.952899], + [-12.102999, 8.954399], + [-12.107499, 8.956399], + [-12.1103, 8.957], + [-12.1132, 8.9573], + [-12.130099, 8.9573], + [-12.135, 8.956999], + [-12.1384, 8.955799], + [-12.145099, 8.9524], + [-12.147299, 8.9507], + [-12.150799, 8.9466], + [-12.1532, 8.941799], + [-12.156691, 8.93709] + ] + ], + "type": "Polygon" + }, + "id": 350, + "properties": { + "cc:admin:id": ["83"], + "cc:oBld:total": 228, + "cc:pop:fifteen-to-twenty-four": 1106.1183641293524, + "cc:pop:grid3-total": 3251.0925172304414, + "cc:pop:kontur-total": 5761.578406806161, + "cc:pop:men": 2857.416897095843, + "cc:pop:sixty-plus": 384.4979627926795, + "cc:pop:total": 6117.1742964687755, + "cc:pop:under-five": 988.2431116288208, + "cc:pop:women": 3259.757399372932, + "cc:pop:women-fiften-to-forty-nine": 1568.9332446405767, + "cc:pop:wp-total": 4636.25420793697, + "cc:pop:wp-total-UN": 5371.418026835293, + "cc:id": "350", + "cc:Name": "Mangay Loko MCHP", + "cc:site": [-12.0882, 8.9213], + "user:parentName": "Makari Gbanti", + "user:code": "OU_193265", + "user:orgUnitId": "gaOSAjPM07w", + "user:level": "4", + "user:parentId": "lY93YpCxJqf" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.888608, 8.86383], + [-12.884766, 8.867619], + [-12.883154, 8.869522], + [-12.882082, 8.867917], + [-12.877083, 8.870417], + [-12.877083, 8.870491], + [-12.877175, 8.870462], + [-12.877562, 8.870594], + [-12.877559, 8.871108], + [-12.876385, 8.872518], + [-12.874561, 8.874311], + [-12.872873, 8.87546], + [-12.871959, 8.876356], + [-12.871182, 8.876611], + [-12.870048, 8.877794], + [-12.869685, 8.877941], + [-12.872916, 8.878749], + [-12.873739, 8.879162], + [-12.870761, 8.882147], + [-12.866292, 8.88895], + [-12.86367, 8.886853], + [-12.860417, 8.893949], + [-12.860416, 8.899399], + [-12.859128, 8.900242], + [-12.854451, 8.90279], + [-12.852111, 8.904323], + [-12.850826, 8.905935], + [-12.84875, 8.905417], + [-12.851249, 8.912916], + [-12.8519, 8.914216], + [-12.852439, 8.914759], + [-12.852634, 8.915498], + [-12.852488, 8.916249], + [-12.84875, 8.916249], + [-12.847082, 8.912917], + [-12.840812, 8.912132], + [-12.839887, 8.909597], + [-12.839543, 8.908615], + [-12.838987, 8.907083], + [-12.833893, 8.907082], + [-12.833361, 8.90642], + [-12.83311, 8.908674], + [-12.833392, 8.909233], + [-12.833466, 8.910647], + [-12.833939, 8.911302], + [-12.833708, 8.911406], + [-12.832943, 8.910177], + [-12.832916, 8.910417], + [-12.832573, 8.91076], + [-12.832571, 8.91076], + [-12.832179, 8.909799], + [-12.831913, 8.909307], + [-12.830031, 8.90717], + [-12.828632, 8.905321], + [-12.826873, 8.902448], + [-12.826346, 8.901907], + [-12.825241, 8.901731], + [-12.825269, 8.902083], + [-12.825268, 8.902084], + [-12.823649, 8.9005], + [-12.823618, 8.900234], + [-12.822606, 8.899102], + [-12.822174, 8.899057], + [-12.819549, 8.89649], + [-12.819195, 8.89529], + [-12.818392, 8.89357], + [-12.817065, 8.891612], + [-12.816068, 8.889007], + [-12.816544, 8.88558], + [-12.816466, 8.884716], + [-12.817916, 8.883749], + [-12.818486, 8.88033], + [-12.818376, 8.880017], + [-12.815562, 8.876456], + [-12.814399, 8.875868], + [-12.812524, 8.87578], + [-12.811034, 8.876102], + [-12.809515, 8.87725], + [-12.806803, 8.880275], + [-12.808773, 8.882739], + [-12.807519, 8.883842], + [-12.806507, 8.883902], + [-12.805851, 8.884226], + [-12.802008, 8.887875], + [-12.80049, 8.889964], + [-12.800102, 8.891053], + [-12.800578, 8.891495], + [-12.800578, 8.8922], + [-12.80037, 8.892476], + [-12.798198, 8.891391], + [-12.798255, 8.891171], + [-12.798039, 8.891311], + [-12.797146, 8.890865], + [-12.796989, 8.891142], + [-12.795857, 8.892451], + [-12.795039, 8.893098], + [-12.794115, 8.893511], + [-12.790675, 8.898632], + [-12.79053, 8.900574], + [-12.793609, 8.901088], + [-12.793683, 8.904841], + [-12.794233, 8.908489], + [-12.794814, 8.909652], + [-12.794963, 8.910564], + [-12.79486, 8.913197], + [-12.795172, 8.913287], + [-12.795008, 8.915493], + [-12.794115, 8.915214], + [-12.793758, 8.915759], + [-12.794309, 8.917759], + [-12.794829, 8.918216], + [-12.795098, 8.918922], + [-12.795842, 8.920025], + [-12.795812, 8.920422], + [-12.795053, 8.920775], + [-12.793698, 8.920864], + [-12.792581, 8.921893], + [-12.791658, 8.922468], + [-12.791568, 8.922805], + [-12.791807, 8.924497], + [-12.793005, 8.926248], + [-12.793004, 8.92625], + [-12.791399, 8.92625], + [-12.792372, 8.927925], + [-12.793072, 8.928808], + [-12.793146, 8.929264], + [-12.792967, 8.929957], + [-12.792224, 8.931325], + [-12.792193, 8.933444], + [-12.791628, 8.935635], + [-12.790254, 8.938131], + [-12.793533, 8.9386], + [-12.792745, 8.940668], + [-12.7927, 8.942006], + [-12.792833, 8.94261], + [-12.791941, 8.944698], + [-12.791819, 8.945599], + [-12.791313, 8.947118], + [-12.79024, 8.948449], + [-12.78908, 8.949406], + [-12.786111, 8.95053], + [-12.782615, 8.951466], + [-12.781607, 8.951488], + [-12.780871, 8.949282], + [-12.779611, 8.949024], + [-12.769775, 8.956084], + [-12.769092, 8.955635], + [-12.767666, 8.956516], + [-12.767141, 8.957114], + [-12.766956, 8.958108], + [-12.764041, 8.9602], + [-12.763637, 8.960341], + [-12.763635, 8.96034], + [-12.763055, 8.955698], + [-12.762639, 8.955648], + [-12.761755, 8.955769], + [-12.759558, 8.956497], + [-12.756173, 8.959192], + [-12.754048, 8.960453], + [-12.75325, 8.96074], + [-12.750958, 8.962191], + [-12.748498, 8.964621], + [-12.746889, 8.965899], + [-12.746214, 8.96616], + [-12.745454, 8.966712], + [-12.745138, 8.96717], + [-12.744437, 8.967673], + [-12.741988, 8.970542], + [-12.741253, 8.973091], + [-12.741207, 8.973756], + [-12.742652, 8.97626], + [-12.744762, 8.97626], + [-12.744394, 8.975227], + [-12.74394, 8.9726], + [-12.745715, 8.970577], + [-12.746144, 8.970516], + [-12.746923, 8.969799], + [-12.747053, 8.969583], + [-12.748749, 8.969583], + [-12.749583, 8.970417], + [-12.757082, 8.972916], + [-12.760416, 8.972917], + [-12.762917, 8.976249], + [-12.770417, 8.97625], + [-12.774582, 8.977917], + [-12.777083, 8.980416], + [-12.782917, 8.97625], + [-12.787916, 8.977083], + [-12.787916, 8.983749], + [-12.785417, 8.984583], + [-12.78375, 8.987916], + [-12.787916, 8.989582], + [-12.787917, 8.989734], + [-12.78802, 8.989686], + [-12.78875, 8.996249], + [-12.79125, 8.99625], + [-12.795417, 9.001249], + [-12.797917, 9.002083], + [-12.799583, 9.005416], + [-12.800416, 9.005417], + [-12.802083, 9.006249], + [-12.804582, 9.006249], + [-12.805417, 8.99875], + [-12.810416, 8.999583], + [-12.810417, 9.003749], + [-12.812382, 9.00375], + [-12.812079, 9.004297], + [-12.812104, 9.005446], + [-12.812398, 9.006956], + [-12.812373, 9.008067], + [-12.81295, 9.008487], + [-12.813436, 9.008449], + [-12.814122, 9.008464], + [-12.81375, 9.009582], + [-12.815417, 9.013749], + [-12.817916, 9.01375], + [-12.817917, 9.014582], + [-12.819622, 9.016288], + [-12.821, 9.014699], + [-12.8249, 9.008499], + [-12.829299, 9.0024], + [-12.8324, 8.997199], + [-12.840199, 8.9876], + [-12.8434, 8.982399], + [-12.8477, 8.976399], + [-12.853199, 8.967], + [-12.857299, 8.9574], + [-12.8611, 8.949999], + [-12.8634, 8.946699], + [-12.870799, 8.9386], + [-12.873399, 8.9354], + [-12.879399, 8.9241], + [-12.8794, 8.923999], + [-12.882899, 8.9115], + [-12.8836, 8.907299], + [-12.883899, 8.901299], + [-12.8838, 8.8811], + [-12.884, 8.876699], + [-12.8846, 8.873699], + [-12.887599, 8.8661], + [-12.888608, 8.86383] + ] + ], + "type": "Polygon" + }, + "id": 351, + "properties": { + "cc:admin:id": ["13"], + "cc:oBld:total": 922, + "cc:pop:fifteen-to-twenty-four": 2358.7475198273064, + "cc:pop:grid3-total": 13819.18622035301, + "cc:pop:kontur-total": 13443.475747189295, + "cc:pop:men": 6176.793847760121, + "cc:pop:sixty-plus": 722.6503319083021, + "cc:pop:total": 13048.15200205932, + "cc:pop:under-five": 2022.7396775187374, + "cc:pop:women": 6871.358154299209, + "cc:pop:women-fiften-to-forty-nine": 3415.7383744058197, + "cc:pop:wp-total": 8645.181551446736, + "cc:pop:wp-total-UN": 10026.74282644902, + "cc:id": "351", + "cc:Name": "Mange CHC", + "cc:site": [-12.8567, 8.9244], + "user:parentName": "Bureh Kasseh Maconteh", + "user:code": "OU_255043", + "user:orgUnitId": "w3mBVfrWhXl", + "user:level": "4", + "user:parentId": "TA7NvKjsn4A" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.727083, 8.581249], + [-10.727082, 8.573749], + [-10.725416, 8.569584], + [-10.722917, 8.56875], + [-10.722916, 8.567084], + [-10.721249, 8.56625], + [-10.714583, 8.56875], + [-10.707376, 8.574355], + [-10.707375, 8.574354], + [-10.707508, 8.5736], + [-10.708469, 8.571823], + [-10.710106, 8.569524], + [-10.710129, 8.566688], + [-10.710308, 8.56584], + [-10.709362, 8.56561], + [-10.7068, 8.563987], + [-10.705684, 8.563756], + [-10.705452, 8.563652], + [-10.704794, 8.563644], + [-10.704237, 8.563746], + [-10.703493, 8.565102], + [-10.702293, 8.566325], + [-10.702035, 8.564272], + [-10.702271, 8.56375], + [-10.702083, 8.56375], + [-10.694583, 8.567916], + [-10.688749, 8.564584], + [-10.687916, 8.564583], + [-10.68375, 8.56375], + [-10.682916, 8.567083], + [-10.677083, 8.567083], + [-10.674583, 8.55875], + [-10.67375, 8.55875], + [-10.670957, 8.565731], + [-10.670956, 8.565732], + [-10.670861, 8.565674], + [-10.67072, 8.565642], + [-10.66875, 8.569583], + [-10.677082, 8.572084], + [-10.677082, 8.577916], + [-10.676249, 8.577917], + [-10.674583, 8.586249], + [-10.674582, 8.590416], + [-10.669583, 8.590417], + [-10.66875, 8.592916], + [-10.670416, 8.597083], + [-10.667917, 8.597917], + [-10.66625, 8.602083], + [-10.665417, 8.602084], + [-10.664583, 8.605416], + [-10.66375, 8.60625], + [-10.662917, 8.607917], + [-10.665417, 8.61625], + [-10.667083, 8.617916], + [-10.667794, 8.617917], + [-10.667907, 8.617398], + [-10.668515, 8.616232], + [-10.668809, 8.615863], + [-10.669582, 8.616249], + [-10.669583, 8.617084], + [-10.676544, 8.622652], + [-10.676543, 8.622653], + [-10.676495, 8.622665], + [-10.675906, 8.623098], + [-10.675636, 8.623766], + [-10.674529, 8.624862], + [-10.674058, 8.624983], + [-10.675417, 8.630416], + [-10.677082, 8.63125], + [-10.677083, 8.633749], + [-10.678641, 8.635826], + [-10.67973, 8.635227], + [-10.680771, 8.634977], + [-10.682086, 8.633688], + [-10.682103, 8.633222], + [-10.682387, 8.632905], + [-10.683314, 8.632716], + [-10.683328, 8.632539], + [-10.683658, 8.63229], + [-10.68381, 8.632343], + [-10.684315, 8.631603], + [-10.68508, 8.629406], + [-10.685485, 8.629362], + [-10.685938, 8.629016], + [-10.686308, 8.626677], + [-10.68631, 8.626677], + [-10.687082, 8.632083], + [-10.685417, 8.634583], + [-10.687083, 8.636249], + [-10.687917, 8.63625], + [-10.68875, 8.639583], + [-10.695416, 8.63875], + [-10.697082, 8.640416], + [-10.697081, 8.640417], + [-10.689583, 8.64375], + [-10.692082, 8.647916], + [-10.689583, 8.651249], + [-10.692082, 8.652916], + [-10.692917, 8.655416], + [-10.696189, 8.65607], + [-10.696495, 8.655589], + [-10.697039, 8.652609], + [-10.69875, 8.653749], + [-10.700416, 8.653749], + [-10.705463, 8.647982], + [-10.70541, 8.647922], + [-10.707916, 8.645416], + [-10.70375, 8.639584], + [-10.706249, 8.636249], + [-10.707082, 8.629584], + [-10.706249, 8.629583], + [-10.704039, 8.622216], + [-10.704074, 8.622225], + [-10.70375, 8.62125], + [-10.704583, 8.620416], + [-10.708749, 8.618749], + [-10.707083, 8.616249], + [-10.710416, 8.613749], + [-10.707083, 8.610417], + [-10.707916, 8.60875], + [-10.71125, 8.607084], + [-10.713749, 8.607084], + [-10.715417, 8.607916], + [-10.717082, 8.604583], + [-10.715417, 8.599584], + [-10.718749, 8.59875], + [-10.722082, 8.600416], + [-10.722916, 8.600416], + [-10.722231, 8.592871], + [-10.722447, 8.592797], + [-10.723336, 8.592822], + [-10.723483, 8.592729], + [-10.727082, 8.58625], + [-10.72625, 8.585416], + [-10.727083, 8.581249] + ] + ], + "type": "Polygon" + }, + "id": 352, + "properties": { + "cc:admin:id": ["125"], + "cc:oBld:total": 769, + "cc:pop:fifteen-to-twenty-four": 717.3726782917946, + "cc:pop:grid3-total": 6095.865287085639, + "cc:pop:kontur-total": 3205.46813915473, + "cc:pop:men": 1673.1807413877034, + "cc:pop:sixty-plus": 190.4749679214938, + "cc:pop:total": 3587.8633914589727, + "cc:pop:under-five": 598.1491823353506, + "cc:pop:women": 1914.68265007127, + "cc:pop:women-fiften-to-forty-nine": 926.4588298588218, + "cc:pop:wp-total": 2707.7741344757605, + "cc:pop:wp-total-UN": 3127.3940134729232, + "cc:id": "352", + "cc:Name": "Manjama MCHP", + "cc:site": [-10.6971, 8.6102], + "user:parentName": "Soa", + "user:code": "OU_233319", + "user:orgUnitId": "mMvt6zhCclb", + "user:level": "4", + "user:parentId": "iGHlidSFdpu" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.75375, 8.033749], + [-11.753749, 8.03125], + [-11.75125, 8.027917], + [-11.74625, 8.025416], + [-11.746249, 8.01625], + [-11.745417, 8.015416], + [-11.744582, 8.013749], + [-11.739582, 8.00875], + [-11.733749, 8.010416], + [-11.73125, 8.008749], + [-11.730416, 8.004584], + [-11.72928, 8.004205], + [-11.729017, 8.004583], + [-11.724583, 8.004583], + [-11.722916, 8.002084], + [-11.719583, 8.002917], + [-11.719582, 8.00375], + [-11.711303, 8.006008], + [-11.711487, 8.006622], + [-11.711314, 8.007091], + [-11.71151, 8.007386], + [-11.711368, 8.007725], + [-11.711988, 8.00852], + [-11.711765, 8.009089], + [-11.711335, 8.009626], + [-11.709583, 8.008749], + [-11.708749, 8.00625], + [-11.708476, 8.006067], + [-11.708313, 8.006413], + [-11.707492, 8.006369], + [-11.707407, 8.005943], + [-11.707102, 8.005625], + [-11.70686, 8.005145], + [-11.706865, 8.004994], + [-11.703749, 8.002917], + [-11.69625, 8.00625], + [-11.69125, 8.011249], + [-11.68875, 8.01125], + [-11.688419, 8.014217], + [-11.688139, 8.014314], + [-11.687648, 8.014167], + [-11.687485, 8.013607], + [-11.687067, 8.013759], + [-11.685317, 8.01369], + [-11.684954, 8.014013], + [-11.684779, 8.013987], + [-11.683784, 8.01336], + [-11.682593, 8.013262], + [-11.68197, 8.013301], + [-11.680533, 8.012254], + [-11.680103, 8.011842], + [-11.67802, 8.015447], + [-11.673861, 8.015448], + [-11.673108, 8.016403], + [-11.672077, 8.018147], + [-11.671348, 8.019495], + [-11.671217, 8.019983], + [-11.670416, 8.019583], + [-11.666249, 8.015417], + [-11.665416, 8.015416], + [-11.659583, 8.012917], + [-11.657917, 8.015416], + [-11.657083, 8.01625], + [-11.656249, 8.020417], + [-11.654583, 8.022084], + [-11.654583, 8.026249], + [-11.657916, 8.029584], + [-11.654583, 8.033749], + [-11.650417, 8.035417], + [-11.647083, 8.039583], + [-11.647083, 8.040416], + [-11.649204, 8.047485], + [-11.649581, 8.046886], + [-11.649582, 8.046886], + [-11.649583, 8.047123], + [-11.649798, 8.047497], + [-11.649583, 8.047871], + [-11.649583, 8.047917], + [-11.652917, 8.052083], + [-11.663749, 8.052917], + [-11.663749, 8.055416], + [-11.659583, 8.05625], + [-11.657083, 8.05875], + [-11.656368, 8.067334], + [-11.6587, 8.067199], + [-11.662399, 8.0665], + [-11.6679, 8.064299], + [-11.6728, 8.0637], + [-11.6779, 8.063699], + [-11.6813, 8.062799], + [-11.6857, 8.060799], + [-11.6924, 8.058999], + [-11.6968, 8.0572], + [-11.700099, 8.0572], + [-11.705299, 8.059199], + [-11.7103, 8.0605], + [-11.7156, 8.063], + [-11.7237, 8.0666], + [-11.7279, 8.0673], + [-11.7366, 8.0675], + [-11.7407, 8.0682], + [-11.745784, 8.070181], + [-11.747535, 8.068625], + [-11.743928, 8.062376], + [-11.747833, 8.055611], + [-11.749776, 8.05561], + [-11.74875, 8.054583], + [-11.74875, 8.052084], + [-11.752916, 8.047916], + [-11.752083, 8.039584], + [-11.752916, 8.037916], + [-11.752917, 8.037083], + [-11.75375, 8.033749] + ] + ], + "type": "Polygon" + }, + "id": 353, + "properties": { + "cc:admin:id": ["46"], + "cc:oBld:total": 206, + "cc:pop:fifteen-to-twenty-four": 224.76052657315807, + "cc:pop:grid3-total": 1545.3713108572333, + "cc:pop:kontur-total": 1158.1775925796196, + "cc:pop:men": 555.875343227882, + "cc:pop:sixty-plus": 74.87054161136834, + "cc:pop:total": 1149.9169205812236, + "cc:pop:under-five": 209.76030882622638, + "cc:pop:women": 594.0415773533415, + "cc:pop:women-fiften-to-forty-nine": 289.63085043759475, + "cc:pop:wp-total": 1515.6651907084995, + "cc:pop:wp-total-UN": 1751.3502454513916, + "cc:id": "353", + "cc:Name": "Manjama UMC CHC", + "cc:site": [-11.7289, 8.0145], + "user:parentName": "Kakua", + "user:code": "OU_969", + "user:orgUnitId": "Z9ny6QeqsgX", + "user:level": "4", + "user:parentId": "U6Kr7Gtpidn" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.227099, 8.107799], + [-12.2239, 8.1031], + [-12.2224, 8.1004], + [-12.221699, 8.097399], + [-12.2213, 8.092199], + [-12.221199, 8.0635], + [-12.217699, 8.062699], + [-12.213199, 8.060599], + [-12.207299, 8.059199], + [-12.202, 8.0568], + [-12.1985, 8.0561], + [-12.194, 8.056199], + [-12.191, 8.056999], + [-12.1871, 8.059099], + [-12.183899, 8.0604], + [-12.1787, 8.062999], + [-12.1736, 8.064199], + [-12.1683, 8.066399], + [-12.167628, 8.066571], + [-12.16625, 8.072083], + [-12.167083, 8.073749], + [-12.176249, 8.079584], + [-12.17625, 8.080417], + [-12.177082, 8.084583], + [-12.175417, 8.090416], + [-12.164583, 8.092084], + [-12.164582, 8.094584], + [-12.154583, 8.095417], + [-12.15375, 8.112916], + [-12.155417, 8.114583], + [-12.162082, 8.114584], + [-12.162083, 8.117916], + [-12.164582, 8.120417], + [-12.164583, 8.124583], + [-12.16125, 8.12625], + [-12.166249, 8.135416], + [-12.169582, 8.136249], + [-12.17125, 8.13375], + [-12.17375, 8.13625], + [-12.177916, 8.137083], + [-12.181249, 8.13625], + [-12.18125, 8.142083], + [-12.18375, 8.144583], + [-12.186249, 8.143749], + [-12.187917, 8.140417], + [-12.190857, 8.141592], + [-12.189, 8.1377], + [-12.1884, 8.1338], + [-12.1891, 8.1301], + [-12.1926, 8.124199], + [-12.196, 8.121799], + [-12.200899, 8.1179], + [-12.204099, 8.1163], + [-12.211299, 8.1154], + [-12.214599, 8.1145], + [-12.222099, 8.1109], + [-12.227099, 8.107799] + ] + ], + "type": "Polygon" + }, + "id": 354, + "properties": { + "cc:admin:id": ["60"], + "cc:oBld:total": 96, + "cc:pop:fifteen-to-twenty-four": 304.82633178956706, + "cc:pop:grid3-total": 2303.742045378382, + "cc:pop:kontur-total": 1574.424464791499, + "cc:pop:men": 826.6954840959713, + "cc:pop:sixty-plus": 112.12042136647275, + "cc:pop:total": 1734.592833407598, + "cc:pop:under-five": 284.7329971756341, + "cc:pop:women": 907.8973493116265, + "cc:pop:women-fiften-to-forty-nine": 446.35621119654877, + "cc:pop:wp-total": 1871.712100274145, + "cc:pop:wp-total-UN": 2171.2385747517696, + "cc:id": "354", + "cc:Name": "Manjeihun MCHP", + "cc:site": [-12.2155, 8.0889], + "user:parentName": "Kori", + "user:code": "OU_246998", + "user:orgUnitId": "J3wTSn87RP2", + "user:level": "4", + "user:parentId": "nV3OkyzF4US" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.012383, 9.202917], + [-12.012082, 9.202917], + [-12.007916, 9.204582], + [-12.005417, 9.204583], + [-12.002916, 9.202083], + [-11.997083, 9.205416], + [-11.996897, 9.205603], + [-11.996909, 9.205721], + [-11.99769, 9.206725], + [-11.997847, 9.207407], + [-11.998589, 9.208834], + [-11.998539, 9.212773], + [-11.998039, 9.212595], + [-11.996497, 9.211471], + [-11.995252, 9.210085], + [-11.995161, 9.210029], + [-11.994582, 9.212917], + [-11.987083, 9.21625], + [-11.985416, 9.221249], + [-11.977917, 9.22125], + [-11.97625, 9.222082], + [-11.975416, 9.22125], + [-11.964456, 9.222712], + [-11.96491, 9.22628], + [-11.964772, 9.227516], + [-11.960417, 9.23125], + [-11.959583, 9.235416], + [-11.958042, 9.236443], + [-11.95718, 9.235314], + [-11.955953, 9.230922], + [-11.954737, 9.2307], + [-11.953637, 9.230724], + [-11.94962, 9.231647], + [-11.948509, 9.2317], + [-11.952916, 9.241249], + [-11.952083, 9.244582], + [-11.95125, 9.245416], + [-11.94125, 9.240417], + [-11.941249, 9.24875], + [-11.938749, 9.249583], + [-11.936198, 9.250858], + [-11.935824, 9.250097], + [-11.935572, 9.248906], + [-11.935042, 9.248167], + [-11.93125, 9.247083], + [-11.92375, 9.254583], + [-11.92375, 9.256249], + [-11.927082, 9.25875], + [-11.927083, 9.262916], + [-11.939582, 9.270417], + [-11.939582, 9.277916], + [-11.931369, 9.276822], + [-11.931375, 9.276826], + [-11.932045, 9.277021], + [-11.932296, 9.277366], + [-11.934054, 9.278177], + [-11.935339, 9.279185], + [-11.936721, 9.279455], + [-11.93712, 9.279751], + [-11.938749, 9.279826], + [-11.938749, 9.282083], + [-11.935417, 9.286249], + [-11.937916, 9.287083], + [-11.93875, 9.293749], + [-11.945416, 9.297082], + [-11.94625, 9.298749], + [-11.948406, 9.299288], + [-11.948358, 9.299513], + [-11.948863, 9.299507], + [-11.952082, 9.302082], + [-11.954246, 9.306409], + [-11.954379, 9.306358], + [-11.95553, 9.306358], + [-11.956727, 9.306684], + [-11.9579, 9.303799], + [-11.960199, 9.2995], + [-11.9616, 9.296499], + [-11.9635, 9.293699], + [-11.966499, 9.2907], + [-11.9687, 9.289299], + [-11.971799, 9.288], + [-11.9754, 9.285999], + [-11.9792, 9.284299], + [-11.982, 9.282399], + [-11.9844, 9.279999], + [-11.9859, 9.277999], + [-11.9886, 9.272799], + [-11.9926, 9.267399], + [-11.9938, 9.265099], + [-11.9952, 9.259299], + [-11.9973, 9.256199], + [-12.002499, 9.2505], + [-12.004099, 9.2482], + [-12.005, 9.245999], + [-12.005399, 9.240599], + [-12.0052, 9.2305], + [-12.005699, 9.2266], + [-12.0079, 9.221299], + [-12.0094, 9.215399], + [-12.0116, 9.210099], + [-12.0123, 9.206699], + [-12.012419, 9.2031], + [-12.012383, 9.202917] + ] + ], + "type": "Polygon" + }, + "id": 355, + "properties": { + "cc:admin:id": ["7"], + "cc:oBld:total": 388, + "cc:pop:fifteen-to-twenty-four": 725.6362928856946, + "cc:pop:grid3-total": 4682.943440947906, + "cc:pop:kontur-total": 4447.092456665918, + "cc:pop:men": 1835.772496574588, + "cc:pop:sixty-plus": 236.98546962507424, + "cc:pop:total": 3979.7227279137646, + "cc:pop:under-five": 628.3301121866174, + "cc:pop:women": 2143.9502313391768, + "cc:pop:women-fiften-to-forty-nine": 1061.3979955335985, + "cc:pop:wp-total": 3313.2241786459567, + "cc:pop:wp-total-UN": 3847.599850533072, + "cc:id": "355", + "cc:Name": "Manjoro MCHP", + "cc:site": [-11.9738, 9.2684], + "user:parentName": "Biriwa", + "user:code": "OU_193237", + "user:orgUnitId": "Uwcj0mz78BV", + "user:level": "4", + "user:parentId": "fwH9ipvXde9" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.528493, 9.837446], + [-11.5283, 9.8291], + [-11.5276, 9.8258], + [-11.526499, 9.823799], + [-11.5231, 9.8195], + [-11.5218, 9.8176], + [-11.521099, 9.815499], + [-11.520699, 9.812699], + [-11.5205, 9.7992], + [-11.519799, 9.7956], + [-11.5152, 9.787], + [-11.5114, 9.7823], + [-11.510199, 9.780399], + [-11.509399, 9.778299], + [-11.508399, 9.774099], + [-11.506099, 9.768799], + [-11.504599, 9.762899], + [-11.5006, 9.7546], + [-11.498699, 9.750999], + [-11.497699, 9.747599], + [-11.497199, 9.742299], + [-11.496499, 9.739799], + [-11.494199, 9.734499], + [-11.493299, 9.727399], + [-11.492599, 9.724899], + [-11.490599, 9.720399], + [-11.489999, 9.717799], + [-11.4894, 9.7125], + [-11.4887, 9.71], + [-11.4864, 9.7047], + [-11.485199, 9.699599], + [-11.480799, 9.690499], + [-11.479099, 9.688299], + [-11.4751, 9.6841], + [-11.469499, 9.678899], + [-11.466799, 9.677099], + [-11.464699, 9.676399], + [-11.4588, 9.675], + [-11.455199, 9.673099], + [-11.4513, 9.6713], + [-11.449299, 9.669699], + [-11.4435, 9.6644], + [-11.440799, 9.662399], + [-11.436899, 9.660499], + [-11.4326, 9.6581], + [-11.429399, 9.656799], + [-11.4241, 9.6543], + [-11.4182, 9.6529], + [-11.4128, 9.6507], + [-11.407699, 9.649499], + [-11.404699, 9.648099], + [-11.3987, 9.6442], + [-11.3959, 9.650199], + [-11.394599, 9.6535], + [-11.3922, 9.658699], + [-11.3908, 9.664599], + [-11.3886, 9.669899], + [-11.387399, 9.6749], + [-11.385799, 9.6781], + [-11.381399, 9.6839], + [-11.3778, 9.691399], + [-11.3764, 9.697299], + [-11.374199, 9.7026], + [-11.373699, 9.7051], + [-11.373199, 9.7104], + [-11.372499, 9.7129], + [-11.370399, 9.7183], + [-11.369999, 9.7221], + [-11.3697, 9.727899], + [-11.369, 9.731599], + [-11.367099, 9.7361], + [-11.366599, 9.7386], + [-11.366, 9.743899], + [-11.3654, 9.746499], + [-11.363499, 9.751], + [-11.3629, 9.754599], + [-11.3627, 9.760499], + [-11.3621, 9.764199], + [-11.359899, 9.7701], + [-11.3592, 9.7751], + [-11.3592, 9.782899], + [-11.358934, 9.784456], + [-11.364422, 9.784457], + [-11.366179, 9.787499], + [-11.36625, 9.787082], + [-11.369583, 9.782916], + [-11.380416, 9.782083], + [-11.387082, 9.782083], + [-11.387917, 9.782917], + [-11.395416, 9.783749], + [-11.39875, 9.782083], + [-11.407082, 9.785417], + [-11.410417, 9.792916], + [-11.414582, 9.792083], + [-11.41625, 9.792082], + [-11.423749, 9.79125], + [-11.42625, 9.792916], + [-11.432916, 9.793749], + [-11.432828, 9.794102], + [-11.433583, 9.79541], + [-11.434582, 9.795411], + [-11.434583, 9.798749], + [-11.437917, 9.802916], + [-11.448749, 9.803749], + [-11.44875, 9.804582], + [-11.449583, 9.805416], + [-11.458749, 9.805417], + [-11.459583, 9.80625], + [-11.46125, 9.811249], + [-11.467916, 9.810417], + [-11.47125, 9.809583], + [-11.471977, 9.809948], + [-11.471092, 9.811691], + [-11.470794, 9.811925], + [-11.47125, 9.813749], + [-11.483749, 9.812083], + [-11.485417, 9.814582], + [-11.487916, 9.815417], + [-11.487916, 9.818749], + [-11.487082, 9.819583], + [-11.48625, 9.826249], + [-11.488749, 9.827083], + [-11.487917, 9.830416], + [-11.493634, 9.832323], + [-11.493634, 9.832324], + [-11.493511, 9.832372], + [-11.491367, 9.832764], + [-11.491074, 9.833048], + [-11.491474, 9.833608], + [-11.493421, 9.833899], + [-11.49375, 9.832916], + [-11.498749, 9.829583], + [-11.505417, 9.833749], + [-11.512917, 9.830417], + [-11.51375, 9.830417], + [-11.51625, 9.832082], + [-11.522082, 9.829583], + [-11.522083, 9.839582], + [-11.528493, 9.837446] + ] + ], + "type": "Polygon" + }, + "id": 356, + "properties": { + "cc:admin:id": ["19"], + "cc:oBld:total": 55, + "cc:pop:fifteen-to-twenty-four": 572.3690708784742, + "cc:pop:grid3-total": 2619.974260973715, + "cc:pop:kontur-total": 3272.2902859229166, + "cc:pop:men": 1579.1068177245263, + "cc:pop:sixty-plus": 208.30841009115534, + "cc:pop:total": 3215.7889874875186, + "cc:pop:under-five": 535.4666478313859, + "cc:pop:women": 1636.6821697629928, + "cc:pop:women-fiften-to-forty-nine": 840.6467611148495, + "cc:pop:wp-total": 3243.4913970516013, + "cc:pop:wp-total-UN": 3767.584852801028, + "cc:id": "356", + "cc:Name": "Manna MCHP", + "cc:site": [-11.4945, 9.7533], + "user:parentName": "Dembelia Sinkunia", + "user:code": "OU_226215", + "user:orgUnitId": "gowgzHWc8FT", + "user:level": "4", + "user:parentId": "Mr4au3jR9bt" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.132599, 7.982008], + [-12.132696, 7.980943], + [-12.132402, 7.978676], + [-12.132014, 7.977595], + [-12.131603, 7.977165], + [-12.130958, 7.976875], + [-12.128977, 7.97696], + [-12.12865, 7.976727], + [-12.128386, 7.976274], + [-12.129582, 7.972084], + [-12.130415, 7.972084], + [-12.130416, 7.97208], + [-12.130416, 7.957084], + [-12.125642, 7.957084], + [-12.1166, 7.957999], + [-12.112599, 7.9591], + [-12.1016, 7.963699], + [-12.094999, 7.9658], + [-12.0839, 7.969899], + [-12.0756, 7.975099], + [-12.0693, 7.978499], + [-12.060599, 7.9824], + [-12.056099, 7.9832], + [-12.042099, 7.9841], + [-12.039099, 7.9847], + [-12.034399, 7.9861], + [-12.03, 7.986799], + [-12.0098, 7.987599], + [-12.0054, 7.988399], + [-12.0007, 7.989799], + [-11.9978, 7.990299], + [-11.9843, 7.990799], + [-11.9799, 7.991199], + [-11.975999, 7.9926], + [-11.9726, 7.9957], + [-11.9713, 7.998399], + [-11.9752, 8.0018], + [-11.979499, 8.0051], + [-11.9806, 8.0071], + [-11.9817, 8.0111], + [-11.983, 8.0132], + [-11.986199, 8.017099], + [-11.987599, 8.019299], + [-11.991099, 8.025899], + [-11.9929, 8.0298], + [-11.9951, 8.0327], + [-12.001299, 8.039299], + [-12.002899, 8.041499], + [-12.0044, 8.0447], + [-12.006799, 8.048899], + [-12.0081, 8.0521], + [-12.010499, 8.056399], + [-12.0124, 8.0603], + [-12.014, 8.0624], + [-12.019899, 8.068199], + [-12.022599, 8.070499], + [-12.0295, 8.0754], + [-12.034299, 8.077799], + [-12.0382, 8.0795], + [-12.041799, 8.081499], + [-12.045, 8.0828], + [-12.049399, 8.084999], + [-12.054999, 8.087099], + [-12.0566, 8.089599], + [-12.073699, 8.089699], + [-12.079599, 8.0894], + [-12.0825, 8.088699], + [-12.0869, 8.086699], + [-12.090599, 8.0859], + [-12.0935, 8.0858], + [-12.097399, 8.085999], + [-12.097866, 8.0861], + [-12.099543, 8.083684], + [-12.100323, 8.081811], + [-12.10218, 8.075061], + [-12.102413, 8.072514], + [-12.1016, 8.064384], + [-12.10102, 8.061082], + [-12.098332, 8.049763], + [-12.097685, 8.043948], + [-12.097055, 8.040748], + [-12.096445, 8.040807], + [-12.09625, 8.040416], + [-12.097916, 8.037917], + [-12.09987, 8.037917], + [-12.101599, 8.037607], + [-12.102578, 8.036932], + [-12.103292, 8.035694], + [-12.103111, 8.034864], + [-12.104075, 8.034606], + [-12.106718, 8.030872], + [-12.107302, 8.030328], + [-12.106873, 8.029684], + [-12.107399, 8.029286], + [-12.108194, 8.028195], + [-12.108989, 8.028392], + [-12.110152, 8.027208], + [-12.111322, 8.024966], + [-12.113338, 8.022633], + [-12.11498, 8.020037], + [-12.114997, 8.019545], + [-12.114499, 8.018617], + [-12.113868, 8.018561], + [-12.113404, 8.018008], + [-12.112899, 8.016325], + [-12.112823, 8.015446], + [-12.112284, 8.014467], + [-12.112164, 8.013268], + [-12.112491, 8.012106], + [-12.112076, 8.011322], + [-12.112092, 8.01101], + [-12.110872, 8.009754], + [-12.110034, 8.009305], + [-12.109775, 8.009003], + [-12.109571, 8.007871], + [-12.110544, 8.006518], + [-12.110885, 8.00625], + [-12.10875, 8.006249], + [-12.108545, 8.00584], + [-12.109107, 8.005649], + [-12.110029, 8.004978], + [-12.111086, 8.004492], + [-12.111536, 8.003752], + [-12.112145, 8.001976], + [-12.113665, 8.000575], + [-12.115442, 7.99748], + [-12.116101, 7.995881], + [-12.117754, 7.993716], + [-12.119578, 7.992798], + [-12.120557, 7.992705], + [-12.121284, 7.992804], + [-12.121608, 7.993], + [-12.12274, 7.994404], + [-12.123117, 7.994632], + [-12.123478, 7.994675], + [-12.123873, 7.994499], + [-12.124821, 7.993684], + [-12.126145, 7.992162], + [-12.126229, 7.990996], + [-12.127181, 7.990188], + [-12.127896, 7.989166], + [-12.128905, 7.986541], + [-12.129339, 7.985912], + [-12.129433, 7.984972], + [-12.129105, 7.984019], + [-12.129152, 7.983461], + [-12.129363, 7.983159], + [-12.13029, 7.982556], + [-12.132266, 7.982335], + [-12.132599, 7.982008] + ] + ], + "type": "Polygon" + }, + "id": 357, + "properties": { + "cc:admin:id": ["16"], + "cc:oBld:total": 187, + "cc:pop:fifteen-to-twenty-four": 1163.3936738920393, + "cc:pop:grid3-total": 5345.480169350704, + "cc:pop:kontur-total": 6681.9773699920615, + "cc:pop:men": 3151.2228103520483, + "cc:pop:sixty-plus": 415.0958654221069, + "cc:pop:total": 6655.302707566023, + "cc:pop:under-five": 1066.3893044431043, + "cc:pop:women": 3504.0798972139737, + "cc:pop:women-fiften-to-forty-nine": 1737.2593619630975, + "cc:pop:wp-total": 5023.8049533797275, + "cc:pop:wp-total-UN": 5822.163930775121, + "cc:id": "357", + "cc:Name": "Mano CHC", + "cc:site": [-12.089, 8.0408], + "user:parentName": "Dasse", + "user:code": "OU_247019", + "user:orgUnitId": "va2lE4FiVVb", + "user:level": "4", + "user:parentId": "RndxKqQGzUl" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.159062, 7.488359], + [-11.153106, 7.488358], + [-11.1492, 7.481593], + [-11.153106, 7.474827], + [-11.1492, 7.468061], + [-11.153106, 7.461295], + [-11.1492, 7.45453], + [-11.148529, 7.454529], + [-11.148819, 7.45343], + [-11.148111, 7.452803], + [-11.148184, 7.452521], + [-11.148939, 7.452374], + [-11.149289, 7.451771], + [-11.149211, 7.451282], + [-11.149478, 7.451069], + [-11.150541, 7.45085], + [-11.150735, 7.450943], + [-11.151198, 7.44446], + [-11.149199, 7.440998], + [-11.141387, 7.440997], + [-11.137482, 7.434231], + [-11.141387, 7.427466], + [-11.137482, 7.4207], + [-11.129669, 7.420699], + [-11.125763, 7.413935], + [-11.129668, 7.407169], + [-11.125763, 7.400402], + [-11.129668, 7.393637], + [-11.125763, 7.38687], + [-11.129668, 7.380105], + [-11.125762, 7.37334], + [-11.11795, 7.373339], + [-11.116397, 7.370649], + [-11.117068, 7.369997], + [-11.121243, 7.367165], + [-11.122641, 7.367042], + [-11.123701, 7.36625], + [-11.125205, 7.364287], + [-11.125606, 7.363235], + [-11.127499, 7.360798], + [-11.128133, 7.359169], + [-11.12691, 7.3589], + [-11.126171, 7.361096], + [-11.124238, 7.364211], + [-11.121966, 7.36619], + [-11.120523, 7.366343], + [-11.11656, 7.369296], + [-11.114841, 7.369891], + [-11.113904, 7.371489], + [-11.113259, 7.373027], + [-11.113873, 7.37379], + [-11.114072, 7.374626], + [-11.11375, 7.375952], + [-11.11309, 7.376621], + [-11.111554, 7.376668], + [-11.109559, 7.377262], + [-11.105259, 7.381936], + [-11.102449, 7.386262], + [-11.102449, 7.386809], + [-11.103323, 7.388379], + [-11.103062, 7.389688], + [-11.102111, 7.390723], + [-11.100713, 7.39086], + [-11.099269, 7.390281], + [-11.097273, 7.389003], + [-11.096521, 7.389049], + [-11.092098, 7.392383], + [-11.089781, 7.392227], + [-11.086079, 7.391647], + [-11.08759, 7.389027], + [-11.083699, 7.39], + [-11.077199, 7.39], + [-11.071999, 7.3913], + [-11.065599, 7.3946], + [-11.055899, 7.3991], + [-11.0467, 7.406299], + [-11.0396, 7.412699], + [-11.036999, 7.4173], + [-11.0312, 7.420499], + [-11.0273, 7.4244], + [-11.029199, 7.4302], + [-11.027299, 7.431499], + [-11.0221, 7.4257], + [-11.0208, 7.433499], + [-11.0204, 7.4336], + [-11.0204, 7.433799], + [-11.024599, 7.436699], + [-11.026199, 7.438499], + [-11.029799, 7.446099], + [-11.0305, 7.4497], + [-11.030699, 7.458399], + [-11.031299, 7.462699], + [-11.033699, 7.468399], + [-11.0345, 7.472], + [-11.034699, 7.476899], + [-11.034699, 7.4817], + [-11.034099, 7.4854], + [-11.031599, 7.4921], + [-11.0311, 7.4963], + [-11.0311, 7.503999], + [-11.030799, 7.5074], + [-11.030099, 7.5095], + [-11.0282, 7.512999], + [-11.026899, 7.5162], + [-11.0245, 7.520399], + [-11.023199, 7.5236], + [-11.021, 7.527999], + [-11.019599, 7.5339], + [-11.017999, 7.537], + [-11.014499, 7.5413], + [-11.01, 7.550399], + [-11.008299, 7.557099], + [-11.006299, 7.5602], + [-11.0017, 7.565099], + [-11, 7.567299], + [-10.998899, 7.5694], + [-10.997199, 7.5757], + [-10.995299, 7.5788], + [-10.99, 7.584499], + [-10.9878, 7.587499], + [-10.986, 7.591299], + [-10.984, 7.594899], + [-10.982699, 7.5981], + [-10.980599, 7.6025], + [-10.9788, 7.611399], + [-10.983299, 7.609], + [-10.9876, 7.606499], + [-10.9907, 7.605099], + [-10.994299, 7.6032], + [-10.9964, 7.602499], + [-10.9997, 7.602099], + [-11.007499, 7.602], + [-11.011699, 7.6015], + [-11.017499, 7.5992], + [-11.02, 7.5988], + [-11.023499, 7.599], + [-11.0297, 7.6015], + [-11.0335, 7.6021], + [-11.0384, 7.602099], + [-11.042199, 7.6016], + [-11.047899, 7.5991], + [-11.0528, 7.5983], + [-11.058699, 7.598499], + [-11.0626, 7.5994], + [-11.070399, 7.603399], + [-11.076799, 7.608399], + [-11.081999, 7.611199], + [-11.082074, 7.611258], + [-11.084582, 7.608749], + [-11.084583, 7.602917], + [-11.085416, 7.601249], + [-11.084583, 7.598749], + [-11.087083, 7.59375], + [-11.091249, 7.592083], + [-11.090417, 7.587084], + [-11.095416, 7.588749], + [-11.097083, 7.586249], + [-11.103749, 7.584583], + [-11.104583, 7.582083], + [-11.110416, 7.580416], + [-11.112916, 7.565417], + [-11.111486, 7.565286], + [-11.109373, 7.561624], + [-11.112164, 7.556788], + [-11.115416, 7.557083], + [-11.117641, 7.554859], + [-11.120176, 7.554859], + [-11.121998, 7.556584], + [-11.12375, 7.555417], + [-11.128749, 7.555416], + [-11.12875, 7.552084], + [-11.129756, 7.55074], + [-11.128264, 7.548155], + [-11.132169, 7.54139], + [-11.137082, 7.541389], + [-11.137083, 7.53625], + [-11.13765, 7.53554], + [-11.142238, 7.535539], + [-11.143241, 7.533802], + [-11.141638, 7.531676], + [-11.142916, 7.53125], + [-11.149297, 7.534252], + [-11.153199, 7.527494], + [-11.154998, 7.527493], + [-11.152916, 7.517084], + [-11.15125, 7.517083], + [-11.151604, 7.512824], + [-11.151606, 7.512823], + [-11.153107, 7.515421], + [-11.158547, 7.515421], + [-11.155417, 7.512916], + [-11.154583, 7.50125], + [-11.158749, 7.497083], + [-11.15875, 7.48875], + [-11.159062, 7.488359] + ] + ], + "type": "Polygon" + }, + "id": 359, + "properties": { + "cc:admin:id": ["138"], + "cc:oBld:total": 1238, + "cc:pop:fifteen-to-twenty-four": 1831.9215101000116, + "cc:pop:grid3-total": 12593.178505676688, + "cc:pop:kontur-total": 10856.445721786777, + "cc:pop:men": 4488.941187628743, + "cc:pop:sixty-plus": 584.3238517774412, + "cc:pop:total": 9398.991818015942, + "cc:pop:under-five": 1422.7030320759159, + "cc:pop:women": 4910.050630387202, + "cc:pop:women-fiften-to-forty-nine": 2419.7391303184204, + "cc:pop:wp-total": 9964.545999101492, + "cc:pop:wp-total-UN": 11548.430009082138, + "cc:id": "359", + "cc:Name": "Mano Njeigbla CHP", + "cc:site": [-11.0995, 7.5238], + "user:parentName": "Tunkia", + "user:code": "OU_222638", + "user:orgUnitId": "Fbq6Vxa4MIx", + "user:level": "4", + "user:parentId": "l7pFejMtUoF" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.740799, 7.725599], + [-11.740199, 7.723399], + [-11.738699, 7.720699], + [-11.7373, 7.7176], + [-11.7325, 7.7091], + [-11.7281, 7.7037], + [-11.725099, 7.698399], + [-11.72, 7.6918], + [-11.7188, 7.6884], + [-11.7186, 7.683399], + [-11.719099, 7.678], + [-11.7215, 7.672299], + [-11.7221, 7.669599], + [-11.722599, 7.6641], + [-11.723199, 7.6598], + [-11.721799, 7.654599], + [-11.716899, 7.641], + [-11.713099, 7.6448], + [-11.709, 7.648299], + [-11.706799, 7.6495], + [-11.703299, 7.6503], + [-11.696, 7.650499], + [-11.6925, 7.651099], + [-11.685, 7.654699], + [-11.681399, 7.6567], + [-11.678999, 7.6575], + [-11.674599, 7.6584], + [-11.668599, 7.661], + [-11.663499, 7.6621], + [-11.6578, 7.664599], + [-11.655699, 7.665], + [-11.6474, 7.665399], + [-11.6447, 7.665799], + [-11.6387, 7.668399], + [-11.633499, 7.6695], + [-11.6284, 7.671999], + [-11.625199, 7.6733], + [-11.616299, 7.6781], + [-11.613499, 7.6804], + [-11.6049, 7.689099], + [-11.6016, 7.692199], + [-11.598599, 7.6943], + [-11.594799, 7.6963], + [-11.591999, 7.6984], + [-11.5853, 7.704499], + [-11.5814, 7.707199], + [-11.5788, 7.711099], + [-11.575799, 7.7145], + [-11.5574, 7.733099], + [-11.5533, 7.736999], + [-11.550399, 7.739], + [-11.546499, 7.741], + [-11.543799, 7.7431], + [-11.5384, 7.748099], + [-11.5355, 7.750199], + [-11.5317, 7.751899], + [-11.5281, 7.753899], + [-11.524799, 7.7555], + [-11.5221, 7.7581], + [-11.5203, 7.761799], + [-11.5189, 7.763899], + [-11.516, 7.766899], + [-11.513199, 7.7688], + [-11.509499, 7.7707], + [-11.5064, 7.773099], + [-11.4952, 7.784199], + [-11.492999, 7.787], + [-11.490199, 7.7923], + [-11.4882, 7.794999], + [-11.4864, 7.796799], + [-11.484399, 7.7983], + [-11.4765, 7.801999], + [-11.4743, 7.8025], + [-11.473199, 7.8089], + [-11.4714, 7.822699], + [-11.471599, 7.829499], + [-11.4725, 7.835099], + [-11.477428, 7.835857], + [-11.477207, 7.835285], + [-11.478234, 7.834454], + [-11.480245, 7.832817], + [-11.482105, 7.831549], + [-11.484416, 7.82961], + [-11.48672, 7.82826], + [-11.488258, 7.827091], + [-11.492291, 7.825708], + [-11.493022, 7.82508], + [-11.493437, 7.824428], + [-11.499579, 7.825445], + [-11.500494, 7.825383], + [-11.50125, 7.817084], + [-11.503749, 7.815417], + [-11.506305, 7.815416], + [-11.505005, 7.813163], + [-11.506843, 7.80998], + [-11.512082, 7.810416], + [-11.514583, 7.80875], + [-11.518244, 7.809031], + [-11.52063, 7.813163], + [-11.528442, 7.813164], + [-11.532348, 7.806398], + [-11.539594, 7.806397], + [-11.539583, 7.806249], + [-11.540884, 7.803648], + [-11.54637, 7.803648], + [-11.550276, 7.810414], + [-11.552918, 7.810413], + [-11.556249, 7.807083], + [-11.557083, 7.80125], + [-11.565416, 7.80125], + [-11.569582, 7.804583], + [-11.569583, 7.79625], + [-11.572053, 7.793162], + [-11.57194, 7.793059], + [-11.572917, 7.792084], + [-11.574583, 7.79125], + [-11.583749, 7.79125], + [-11.585058, 7.79234], + [-11.583433, 7.789523], + [-11.587339, 7.782759], + [-11.595152, 7.782759], + [-11.599057, 7.789523], + [-11.597141, 7.792844], + [-11.598292, 7.791405], + [-11.598685, 7.792081], + [-11.604193, 7.792081], + [-11.604372, 7.790353], + [-11.603481, 7.787918], + [-11.603482, 7.787917], + [-11.61125, 7.787917], + [-11.616249, 7.789583], + [-11.618515, 7.792755], + [-11.622073, 7.786593], + [-11.624092, 7.786592], + [-11.623854, 7.786354], + [-11.623855, 7.786353], + [-11.630129, 7.786352], + [-11.634035, 7.779587], + [-11.641848, 7.779586], + [-11.642083, 7.77918], + [-11.642083, 7.776251], + [-11.642084, 7.776251], + [-11.642207, 7.776349], + [-11.645962, 7.776348], + [-11.649869, 7.769584], + [-11.654304, 7.769583], + [-11.654583, 7.767916], + [-11.654583, 7.759584], + [-11.662916, 7.760416], + [-11.662917, 7.754584], + [-11.673753, 7.754584], + [-11.673941, 7.754262], + [-11.676249, 7.755416], + [-11.68125, 7.749584], + [-11.687916, 7.753749], + [-11.690416, 7.754583], + [-11.69125, 7.749583], + [-11.69125, 7.74375], + [-11.695416, 7.742083], + [-11.694828, 7.739729], + [-11.694878, 7.739711], + [-11.695023, 7.739674], + [-11.696897, 7.739208], + [-11.6981, 7.739413], + [-11.699462, 7.740127], + [-11.699673, 7.74], + [-11.699805, 7.740241], + [-11.699877, 7.740375], + [-11.700739, 7.740383], + [-11.700818, 7.740304], + [-11.700878, 7.740422], + [-11.701654, 7.742852], + [-11.701544, 7.74317], + [-11.703193, 7.744864], + [-11.70375, 7.742084], + [-11.709582, 7.739583], + [-11.710417, 7.737917], + [-11.714583, 7.737916], + [-11.71875, 7.737083], + [-11.720416, 7.735416], + [-11.720417, 7.728334], + [-11.726378, 7.728334], + [-11.730283, 7.735098], + [-11.729139, 7.737083], + [-11.732082, 7.737083], + [-11.736249, 7.732917], + [-11.737524, 7.73196], + [-11.738999, 7.7296], + [-11.740399, 7.727999], + [-11.740799, 7.725599] + ] + ], + "type": "Polygon" + }, + "id": 360, + "properties": { + "cc:admin:id": ["40"], + "cc:oBld:total": 1061, + "cc:pop:fifteen-to-twenty-four": 4067.9197054648143, + "cc:pop:grid3-total": 15762.665923140572, + "cc:pop:kontur-total": 22472.391441121094, + "cc:pop:men": 11109.53133766035, + "cc:pop:sixty-plus": 1673.6087776584777, + "cc:pop:total": 22859.935983250834, + "cc:pop:under-five": 3741.0351912558235, + "cc:pop:women": 11750.404645590488, + "cc:pop:women-fiften-to-forty-nine": 5574.296674952199, + "cc:pop:wp-total": 21782.05295696239, + "cc:pop:wp-total-UN": 25255.266504161504, + "cc:id": "360", + "cc:Name": "Mano-Jaiama CHP", + "cc:site": [-11.6135, 7.749], + "user:parentName": "Jaiama Bongor", + "user:code": "OU_822", + "user:orgUnitId": "hLGkoHmvBgI", + "user:level": "4", + "user:parentId": "daJPPxtIrQn" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.500199, 9.453999], + [-11.4989, 9.448199], + [-11.499, 9.4455], + [-11.5011, 9.440399], + [-11.501399, 9.4369], + [-11.5007, 9.4341], + [-11.4986, 9.43], + [-11.497199, 9.426799], + [-11.4947, 9.4226], + [-11.4933, 9.4194], + [-11.4909, 9.4151], + [-11.489499, 9.411999], + [-11.487, 9.4077], + [-11.485599, 9.404499], + [-11.4832, 9.4002], + [-11.481799, 9.397099], + [-11.4794, 9.3928], + [-11.477999, 9.389599], + [-11.475499, 9.385399], + [-11.474099, 9.382199], + [-11.4719, 9.3778], + [-11.4703, 9.372], + [-11.467999, 9.366699], + [-11.4662, 9.3599], + [-11.464199, 9.355499], + [-11.463499, 9.352899], + [-11.462899, 9.347599], + [-11.462299, 9.345099], + [-11.460299, 9.340599], + [-11.459699, 9.337999], + [-11.4586, 9.331], + [-11.456399, 9.325699], + [-11.455799, 9.323099], + [-11.4551, 9.3178], + [-11.4544, 9.3153], + [-11.452399, 9.310799], + [-11.451699, 9.307099], + [-11.4513, 9.3003], + [-11.4505, 9.2967], + [-11.448199, 9.291299], + [-11.447699, 9.288499], + [-11.4475, 9.2855], + [-11.4475, 9.2745], + [-11.4473, 9.2706], + [-11.446699, 9.267699], + [-11.444399, 9.261799], + [-11.443699, 9.257499], + [-11.4435, 9.2495], + [-11.4424, 9.2456], + [-11.440399, 9.243799], + [-11.4377, 9.2422], + [-11.434599, 9.240999], + [-11.4291, 9.239599], + [-11.425799, 9.237199], + [-11.4213, 9.229], + [-11.419999, 9.225799], + [-11.4177, 9.2214], + [-11.4162, 9.2156], + [-11.413799, 9.210299], + [-11.4122, 9.2072], + [-11.4106, 9.2049], + [-11.4046, 9.1985], + [-11.4027, 9.1958], + [-11.401899, 9.193699], + [-11.400899, 9.189499], + [-11.398599, 9.184199], + [-11.397099, 9.178399], + [-11.395299, 9.175199], + [-11.391472, 9.170417], + [-11.382083, 9.170416], + [-11.379766, 9.168678], + [-11.379981, 9.168315], + [-11.378749, 9.167083], + [-11.37375, 9.165417], + [-11.372486, 9.164152], + [-11.37074, 9.167175], + [-11.369978, 9.167176], + [-11.369977, 9.167174], + [-11.370416, 9.165417], + [-11.35375, 9.16375], + [-11.353749, 9.164582], + [-11.352916, 9.166249], + [-11.34875, 9.170416], + [-11.347916, 9.170417], + [-11.342917, 9.173749], + [-11.342083, 9.17375], + [-11.339583, 9.177083], + [-11.338749, 9.180417], + [-11.33625, 9.182916], + [-11.334583, 9.182917], + [-11.333749, 9.184583], + [-11.32125, 9.189583], + [-11.317916, 9.192916], + [-11.313749, 9.192916], + [-11.309582, 9.189583], + [-11.305417, 9.191249], + [-11.302917, 9.192083], + [-11.302916, 9.197082], + [-11.29625, 9.197083], + [-11.291, 9.199709], + [-11.291179, 9.200393], + [-11.291672, 9.201487], + [-11.292525, 9.202561], + [-11.291442, 9.204436], + [-11.28363, 9.204436], + [-11.280887, 9.199687], + [-11.275417, 9.201249], + [-11.273749, 9.20125], + [-11.267916, 9.202917], + [-11.257917, 9.203749], + [-11.255416, 9.202083], + [-11.249583, 9.20375], + [-11.246249, 9.207082], + [-11.239583, 9.207082], + [-11.234583, 9.205417], + [-11.23375, 9.205417], + [-11.23125, 9.207083], + [-11.229583, 9.210416], + [-11.229582, 9.212082], + [-11.227917, 9.215417], + [-11.227916, 9.217916], + [-11.225417, 9.21875], + [-11.22125, 9.22375], + [-11.222082, 9.227083], + [-11.216249, 9.23125], + [-11.210417, 9.231249], + [-11.207083, 9.22875], + [-11.205727, 9.224682], + [-11.206708, 9.22437], + [-11.206811, 9.22435], + [-11.20125, 9.219583], + [-11.201249, 9.219161], + [-11.201226, 9.21916], + [-11.19732, 9.212395], + [-11.19488, 9.212395], + [-11.194582, 9.21625], + [-11.184582, 9.217082], + [-11.182917, 9.215416], + [-11.182916, 9.213749], + [-11.174582, 9.20375], + [-11.170417, 9.204583], + [-11.167082, 9.209582], + [-11.165244, 9.210962], + [-11.162164, 9.205629], + [-11.154351, 9.205628], + [-11.150445, 9.198863], + [-11.142634, 9.198863], + [-11.138727, 9.205628], + [-11.130915, 9.205628], + [-11.128367, 9.201215], + [-11.138749, 9.200416], + [-11.142082, 9.196249], + [-11.142082, 9.187083], + [-11.137082, 9.182083], + [-11.12625, 9.182917], + [-11.124317, 9.185331], + [-11.119196, 9.185332], + [-11.118391, 9.186724], + [-11.11625, 9.184583], + [-11.111249, 9.189582], + [-11.10375, 9.192917], + [-11.104582, 9.194583], + [-11.102916, 9.199582], + [-11.101249, 9.199583], + [-11.092917, 9.203749], + [-11.09125, 9.202082], + [-11.091249, 9.196469], + [-11.090099, 9.1993], + [-11.088099, 9.2029], + [-11.0861, 9.207099], + [-11.083599, 9.209699], + [-11.0756, 9.213799], + [-11.072399, 9.2151], + [-11.064299, 9.2193], + [-11.060699, 9.2222], + [-11.0337, 9.249399], + [-11.0293, 9.253399], + [-11.027299, 9.2548], + [-11.0241, 9.256099], + [-11.020499, 9.2581], + [-11.0166, 9.259799], + [-11.013899, 9.2618], + [-11.011499, 9.2642], + [-11.009699, 9.2669], + [-11.007799, 9.2707], + [-11.005599, 9.2735], + [-11.0007, 9.278899], + [-10.9991, 9.281099], + [-10.9982, 9.283499], + [-10.997299, 9.2878], + [-10.995099, 9.293], + [-10.994499, 9.2965], + [-10.9944, 9.300099], + [-10.9977, 9.301], + [-11.0022, 9.3031], + [-11.006599, 9.303899], + [-11.009299, 9.3038], + [-11.0127, 9.302999], + [-11.0152, 9.301099], + [-11.0176, 9.2979], + [-11.0201, 9.2966], + [-11.0238, 9.2962], + [-11.0267, 9.2962], + [-11.029599, 9.296599], + [-11.031799, 9.297399], + [-11.033799, 9.298599], + [-11.0385, 9.3022], + [-11.0425, 9.303599], + [-11.050299, 9.303899], + [-11.053999, 9.304599], + [-11.061499, 9.308299], + [-11.0644, 9.3111], + [-11.067, 9.3156], + [-11.0699, 9.317899], + [-11.072399, 9.318599], + [-11.074999, 9.3185], + [-11.077499, 9.3178], + [-11.081, 9.315799], + [-11.087699, 9.3125], + [-11.090399, 9.3115], + [-11.0934, 9.3112], + [-11.099599, 9.3111], + [-11.103599, 9.311499], + [-11.106599, 9.312099], + [-11.111899, 9.314399], + [-11.1149, 9.3148], + [-11.12, 9.315], + [-11.13375, 9.314999], + [-11.166499, 9.3149], + [-11.172699, 9.315399], + [-11.1749, 9.316], + [-11.178499, 9.317899], + [-11.182399, 9.319599], + [-11.1853, 9.3212], + [-11.1891, 9.323], + [-11.191, 9.3246], + [-11.1926, 9.3265], + [-11.194399, 9.330199], + [-11.1961, 9.3331], + [-11.1978, 9.337], + [-11.200199, 9.341299], + [-11.201999, 9.345199], + [-11.204, 9.3488], + [-11.2054, 9.352], + [-11.2092, 9.3593], + [-11.212, 9.3623], + [-11.220099, 9.366399], + [-11.223399, 9.367799], + [-11.2258, 9.3693], + [-11.228, 9.3712], + [-11.232699, 9.376199], + [-11.234099, 9.378599], + [-11.2357, 9.3845], + [-11.238299, 9.389699], + [-11.2396, 9.3928], + [-11.2419, 9.3973], + [-11.2426, 9.4009], + [-11.242999, 9.408699], + [-11.244, 9.4122], + [-11.245899, 9.415799], + [-11.2473, 9.419], + [-11.249799, 9.423199], + [-11.2512, 9.4264], + [-11.253599, 9.430699], + [-11.2554, 9.4345], + [-11.2575, 9.4381], + [-11.261199, 9.446099], + [-11.262199, 9.453599], + [-11.2631, 9.456999], + [-11.2667, 9.462599], + [-11.269899, 9.463899], + [-11.273399, 9.4639], + [-11.276799, 9.4632], + [-11.281299, 9.4612], + [-11.283799, 9.4605], + [-11.289099, 9.4599], + [-11.292099, 9.4591], + [-11.2941, 9.457899], + [-11.299, 9.453999], + [-11.303, 9.451999], + [-11.307199, 9.4496], + [-11.3104, 9.448199], + [-11.3147, 9.445799], + [-11.3219, 9.4433], + [-11.332399, 9.445699], + [-11.3391, 9.4495], + [-11.339899, 9.451999], + [-11.3382, 9.455299], + [-11.3332, 9.460299], + [-11.331299, 9.4625], + [-11.3301, 9.4646], + [-11.3295, 9.467699], + [-11.329599, 9.472199], + [-11.3305, 9.475599], + [-11.3344, 9.4812], + [-11.3369, 9.482399], + [-11.339599, 9.482699], + [-11.3555, 9.4824], + [-11.3585, 9.4825], + [-11.362299, 9.483099], + [-11.3677, 9.4853], + [-11.3736, 9.4869], + [-11.3789, 9.4891], + [-11.3827, 9.4898], + [-11.3895, 9.4901], + [-11.393099, 9.490799], + [-11.3978, 9.4927], + [-11.4003, 9.4933], + [-11.405699, 9.493999], + [-11.408199, 9.494599], + [-11.413499, 9.496799], + [-11.4184, 9.497299], + [-11.4232, 9.496599], + [-11.4286, 9.494299], + [-11.4323, 9.493699], + [-11.440199, 9.4936], + [-11.444799, 9.493], + [-11.450199, 9.4909], + [-11.452699, 9.4902], + [-11.458099, 9.4897], + [-11.460599, 9.4891], + [-11.464999, 9.4869], + [-11.4682, 9.485499], + [-11.472499, 9.4831], + [-11.4756, 9.481799], + [-11.479899, 9.4793], + [-11.483, 9.477999], + [-11.4866, 9.476099], + [-11.4891, 9.4754], + [-11.494699, 9.475899], + [-11.4944, 9.4661], + [-11.4945, 9.463199], + [-11.4952, 9.460499], + [-11.496699, 9.458], + [-11.500199, 9.453999] + ] + ], + "type": "Polygon" + }, + "id": 362, + "properties": { + "cc:admin:id": ["99"], + "cc:oBld:total": 421, + "cc:pop:fifteen-to-twenty-four": 2100.154147313279, + "cc:pop:grid3-total": 25519.548522520363, + "cc:pop:kontur-total": 11950.220765661546, + "cc:pop:men": 5265.286325195799, + "cc:pop:sixty-plus": 691.6720542390011, + "cc:pop:total": 11329.712389361932, + "cc:pop:under-five": 1796.786813936149, + "cc:pop:women": 6064.426064166141, + "cc:pop:women-fiften-to-forty-nine": 3007.7029157915954, + "cc:pop:wp-total": 13161.214913952812, + "cc:pop:wp-total-UN": 15238.115636381917, + "cc:id": "362", + "cc:Name": "Mansadu MCHP", + "cc:site": [-11.33447, 9.40638], + "user:parentName": "Mongo", + "user:code": "OU_226246", + "user:orgUnitId": "GyH8bjdOTsD", + "user:level": "4", + "user:parentId": "OTFepb1k9Db" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.093099, 8.506999], + [-12.089999, 8.502499], + [-12.087499, 8.499599], + [-12.0814, 8.4934], + [-12.0779, 8.4897], + [-12.075299, 8.485899], + [-12.073499, 8.484399], + [-12.0679, 8.4816], + [-12.0629, 8.48], + [-12.061199, 8.478099], + [-12.060599, 8.475599], + [-12.0605, 8.4729], + [-12.0605, 8.4623], + [-12.060699, 8.4585], + [-12.0612, 8.455799], + [-12.063399, 8.4505], + [-12.063799, 8.447999], + [-12.063599, 8.444499], + [-12.0624, 8.439599], + [-12.063799, 8.4336], + [-12.0637, 8.4297], + [-12.062599, 8.4274], + [-12.060299, 8.4258], + [-12.0571, 8.4255], + [-12.052399, 8.427599], + [-12.048099, 8.428099], + [-12.0451, 8.427399], + [-12.039899, 8.4236], + [-12.037599, 8.4228], + [-12.035599, 8.4232], + [-12.0306, 8.425499], + [-12.028193, 8.426916], + [-12.026588, 8.429735], + [-12.025417, 8.431425], + [-12.025416, 8.43375], + [-12.019583, 8.436249], + [-12.012917, 8.433749], + [-12.010416, 8.43125], + [-12.007916, 8.432916], + [-12.002917, 8.43125], + [-11.999582, 8.432916], + [-11.99125, 8.432084], + [-11.990698, 8.434843], + [-11.990437, 8.434762], + [-11.990252, 8.434731], + [-11.988749, 8.44375], + [-11.987916, 8.443749], + [-11.985416, 8.43875], + [-11.983749, 8.437916], + [-11.982916, 8.434584], + [-11.98254, 8.434396], + [-11.978618, 8.436989], + [-11.977916, 8.432084], + [-11.975303, 8.433128], + [-11.975352, 8.433229], + [-11.975327, 8.433378], + [-11.972717, 8.434682], + [-11.971647, 8.434682], + [-11.967739, 8.427917], + [-11.962917, 8.427917], + [-11.962917, 8.432084], + [-11.962915, 8.432085], + [-11.959738, 8.426583], + [-11.954386, 8.426583], + [-11.954582, 8.428749], + [-11.942083, 8.42875], + [-11.93625, 8.43125], + [-11.935416, 8.435417], + [-11.927691, 8.437476], + [-11.926332, 8.433977], + [-11.926184, 8.43308], + [-11.925129, 8.431252], + [-11.921072, 8.431251], + [-11.921526, 8.430899], + [-11.921817, 8.429116], + [-11.921818, 8.428097], + [-11.922223, 8.426751], + [-11.92348, 8.426537], + [-11.922761, 8.425837], + [-11.921621, 8.425892], + [-11.920275, 8.422424], + [-11.920271, 8.422409], + [-11.91989, 8.422537], + [-11.91992, 8.422665], + [-11.921304, 8.426227], + [-11.919437, 8.428914], + [-11.918548, 8.429269], + [-11.917737, 8.429318], + [-11.916392, 8.429], + [-11.914594, 8.428267], + [-11.911567, 8.426685], + [-11.911662, 8.427072], + [-11.909897, 8.426077], + [-11.908562, 8.425503], + [-11.908004, 8.425454], + [-11.90875, 8.432916], + [-11.912916, 8.43375], + [-11.911881, 8.438929], + [-11.911731, 8.439062], + [-11.911791, 8.439376], + [-11.910737, 8.444647], + [-11.910328, 8.444656], + [-11.910318, 8.444653], + [-11.904583, 8.44875], + [-11.904582, 8.455416], + [-11.90375, 8.45625], + [-11.902917, 8.458749], + [-11.904583, 8.459584], + [-11.907082, 8.464584], + [-11.90375, 8.469584], + [-11.903749, 8.471616], + [-11.901656, 8.473667], + [-11.900948, 8.473932], + [-11.900371, 8.473507], + [-11.900121, 8.472989], + [-11.899704, 8.47283], + [-11.898461, 8.473666], + [-11.898181, 8.473519], + [-11.898021, 8.473083], + [-11.897303, 8.472764], + [-11.897291, 8.472288], + [-11.897066, 8.471916], + [-11.896627, 8.471927], + [-11.896239, 8.472331], + [-11.896294, 8.472817], + [-11.896937, 8.474027], + [-11.897152, 8.474876], + [-11.896969, 8.475672], + [-11.896037, 8.475162], + [-11.895562, 8.473965], + [-11.894803, 8.473434], + [-11.893902, 8.473655], + [-11.89375, 8.47375], + [-11.894582, 8.474584], + [-11.89375, 8.487083], + [-11.897082, 8.490417], + [-11.897082, 8.49625], + [-11.892916, 8.498749], + [-11.885417, 8.500417], + [-11.884583, 8.502083], + [-11.888193, 8.507859], + [-11.888597, 8.507614], + [-11.888598, 8.507615], + [-11.890417, 8.511249], + [-11.896249, 8.513749], + [-11.897916, 8.513749], + [-11.900416, 8.51125], + [-11.901249, 8.507918], + [-11.901251, 8.507918], + [-11.903749, 8.510417], + [-11.90375, 8.519583], + [-11.90875, 8.524583], + [-11.917082, 8.523749], + [-11.917917, 8.51875], + [-11.924582, 8.514584], + [-11.930416, 8.514584], + [-11.933749, 8.516249], + [-11.933239, 8.521355], + [-11.935156, 8.524674], + [-11.942591, 8.524675], + [-11.939583, 8.527084], + [-11.938937, 8.530314], + [-11.938984, 8.530396], + [-11.946796, 8.530397], + [-11.950171, 8.53624], + [-11.956249, 8.534583], + [-11.958749, 8.532917], + [-11.95875, 8.529583], + [-11.962082, 8.527916], + [-11.965417, 8.524584], + [-11.973749, 8.524584], + [-11.974582, 8.52625], + [-11.969583, 8.537084], + [-11.971634, 8.54255], + [-11.973547, 8.542101], + [-11.975198, 8.541841], + [-11.977302, 8.541841], + [-11.977916, 8.541633], + [-11.977917, 8.546249], + [-11.981249, 8.549583], + [-11.987916, 8.550417], + [-11.99186, 8.554361], + [-11.9938, 8.551799], + [-11.996599, 8.5492], + [-11.999999, 8.548099], + [-12.002499, 8.5397], + [-12.0056, 8.5343], + [-12.0074, 8.532799], + [-12.012199, 8.5301], + [-12.015999, 8.5283], + [-12.017999, 8.5269], + [-12.0213, 8.523699], + [-12.0249, 8.519099], + [-12.0273, 8.518099], + [-12.0301, 8.5177], + [-12.0342, 8.5177], + [-12.049, 8.517999], + [-12.052099, 8.5179], + [-12.055099, 8.5175], + [-12.0588, 8.515999], + [-12.063499, 8.5123], + [-12.0657, 8.511199], + [-12.069, 8.510499], + [-12.081199, 8.5104], + [-12.086499, 8.5098], + [-12.093099, 8.506999] + ] + ], + "type": "Polygon" + }, + "id": 363, + "properties": { + "cc:admin:id": ["36"], + "cc:oBld:total": 114, + "cc:pop:fifteen-to-twenty-four": 2346.5960395922434, + "cc:pop:grid3-total": 18299.390498796976, + "cc:pop:kontur-total": 14112.230460787538, + "cc:pop:men": 5878.659604482672, + "cc:pop:sixty-plus": 811.4821205632722, + "cc:pop:total": 12767.698501561254, + "cc:pop:under-five": 2015.2392721537994, + "cc:pop:women": 6889.038897078576, + "cc:pop:women-fiften-to-forty-nine": 3346.217791826306, + "cc:pop:wp-total": 15577.472376460348, + "cc:pop:wp-total-UN": 18070.60356498585, + "cc:id": "363", + "cc:Name": "Mansumana CHP", + "cc:site": [-11.9882, 8.4737], + "user:parentName": "Gbonkonlenken", + "user:code": "OU_268210", + "user:orgUnitId": "RVAkLOVWSWc", + "user:level": "4", + "user:parentId": "P69SId31eDp" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.960575, 8.809231], + [-11.959973, 8.809146], + [-11.958489, 8.808558], + [-11.957351, 8.808399], + [-11.957083, 8.808467], + [-11.957082, 8.807917], + [-11.954583, 8.805417], + [-11.954582, 8.79875], + [-11.945417, 8.798749], + [-11.945416, 8.797083], + [-11.943749, 8.79375], + [-11.941249, 8.79125], + [-11.937916, 8.789582], + [-11.936017, 8.78515], + [-11.937545, 8.783322], + [-11.939958, 8.783015], + [-11.940607, 8.782559], + [-11.940612, 8.782549], + [-11.938749, 8.782082], + [-11.936249, 8.779583], + [-11.927083, 8.779582], + [-11.923891, 8.77703], + [-11.923891, 8.777028], + [-11.924202, 8.776819], + [-11.924769, 8.775974], + [-11.927115, 8.773808], + [-11.928749, 8.772433], + [-11.92875, 8.772082], + [-11.929582, 8.767083], + [-11.924583, 8.767916], + [-11.92375, 8.767083], + [-11.925416, 8.762083], + [-11.91924, 8.759767], + [-11.919481, 8.759501], + [-11.918749, 8.752917], + [-11.915417, 8.747917], + [-11.915416, 8.747896], + [-11.91537, 8.74789], + [-11.912138, 8.749522], + [-11.91176, 8.750766], + [-11.911769, 8.752657], + [-11.911382, 8.753196], + [-11.910966, 8.753176], + [-11.910325, 8.755358], + [-11.910021, 8.75564], + [-11.909589, 8.755818], + [-11.908764, 8.755835], + [-11.907672, 8.755095], + [-11.90668, 8.753873], + [-11.905569, 8.753727], + [-11.904199, 8.7554], + [-11.8988, 8.764899], + [-11.897699, 8.7685], + [-11.8963, 8.776299], + [-11.8952, 8.779699], + [-11.893699, 8.7829], + [-11.889, 8.789999], + [-11.887799, 8.7932], + [-11.8872, 8.7967], + [-11.887899, 8.801199], + [-11.8892, 8.8043], + [-11.892699, 8.810699], + [-11.8937, 8.8146], + [-11.893999, 8.819899], + [-11.8936, 8.823699], + [-11.891499, 8.828], + [-11.890807, 8.845101], + [-11.897764, 8.845101], + [-11.901671, 8.838337], + [-11.908644, 8.838336], + [-11.90875, 8.837916], + [-11.91125, 8.835417], + [-11.912916, 8.835417], + [-11.91375, 8.837082], + [-11.917082, 8.837917], + [-11.921249, 8.841249], + [-11.922082, 8.841249], + [-11.922769, 8.835077], + [-11.923064, 8.835326], + [-11.923398, 8.835756], + [-11.928749, 8.83375], + [-11.929583, 8.841249], + [-11.932082, 8.843749], + [-11.934583, 8.840416], + [-11.937082, 8.832083], + [-11.935638, 8.832082], + [-11.936539, 8.830521], + [-11.942325, 8.83052], + [-11.942917, 8.828749], + [-11.948749, 8.827916], + [-11.951249, 8.825416], + [-11.95125, 8.82375], + [-11.953749, 8.823749], + [-11.955416, 8.812917], + [-11.960575, 8.809231] + ] + ], + "type": "Polygon" + }, + "id": 364, + "properties": { + "cc:admin:id": ["106"], + "cc:oBld:total": 117, + "cc:pop:fifteen-to-twenty-four": 589.0112013700708, + "cc:pop:grid3-total": 3515.822129734147, + "cc:pop:kontur-total": 3173.153264110274, + "cc:pop:men": 1451.285063450132, + "cc:pop:sixty-plus": 184.3785409931301, + "cc:pop:total": 3164.442488848442, + "cc:pop:under-five": 503.5258581461282, + "cc:pop:women": 1713.1574253983097, + "cc:pop:women-fiften-to-forty-nine": 851.1224068337737, + "cc:pop:wp-total": 2841.495251108387, + "cc:pop:wp-total-UN": 3292.605975716285, + "cc:id": "364", + "cc:Name": "Mapaki CHC", + "cc:site": [-11.9078, 8.7882], + "user:parentName": "Paki Masabong", + "user:code": "OU_193301", + "user:orgUnitId": "mshIal30ffW", + "user:level": "4", + "user:parentId": "L8iA6eLwKNb" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.105292, 8.751664], + [-13.101385, 8.744898], + [-13.096172, 8.744897], + [-13.09625, 8.744582], + [-13.096249, 8.74375], + [-13.095416, 8.742917], + [-13.085417, 8.739583], + [-13.082917, 8.741249], + [-13.081686, 8.738175], + [-13.080306, 8.738538], + [-13.07961, 8.738736], + [-13.079201, 8.737871], + [-13.078967, 8.737747], + [-13.079155, 8.737295], + [-13.079041, 8.736639], + [-13.080038, 8.735492], + [-13.080413, 8.734741], + [-13.080191, 8.73389], + [-13.077946, 8.732453], + [-13.077203, 8.732481], + [-13.075205, 8.73375], + [-13.072113, 8.728393], + [-13.07375, 8.727082], + [-13.074582, 8.715417], + [-13.073749, 8.714583], + [-13.062917, 8.717916], + [-13.062083, 8.714583], + [-13.062916, 8.712083], + [-13.059957, 8.712082], + [-13.059917, 8.711932], + [-13.059469, 8.71061], + [-13.057852, 8.710852], + [-13.058494, 8.709625], + [-13.055821, 8.709918], + [-13.04993, 8.71049], + [-13.049537, 8.707742], + [-13.049687, 8.706405], + [-13.050026, 8.705027], + [-13.049583, 8.704583], + [-13.050213, 8.704267], + [-13.050455, 8.703288], + [-13.051236, 8.703756], + [-13.051249, 8.703749], + [-13.051451, 8.700721], + [-13.051453, 8.700721], + [-13.051482, 8.70075], + [-13.051904, 8.700121], + [-13.05175, 8.700003], + [-13.051826, 8.699609], + [-13.051759, 8.699043], + [-13.051308, 8.698641], + [-13.05075, 8.698481], + [-13.050884, 8.698243], + [-13.050514, 8.698096], + [-13.050316, 8.697437], + [-13.050729, 8.697042], + [-13.050456, 8.697117], + [-13.049917, 8.696839], + [-13.049086, 8.695898], + [-13.048995, 8.69555], + [-13.049027, 8.69499], + [-13.049463, 8.693845], + [-13.050239, 8.693163], + [-13.051125, 8.692758], + [-13.050528, 8.69128], + [-13.050534, 8.6901], + [-13.05101, 8.689735], + [-13.050639, 8.689767], + [-13.050432, 8.689515], + [-13.050439, 8.689804], + [-13.05035, 8.690054], + [-13.050232, 8.690242], + [-13.050143, 8.690321], + [-13.049911, 8.690356], + [-13.049691, 8.690354], + [-13.049583, 8.690305], + [-13.04949, 8.690179], + [-13.049455, 8.690056], + [-13.04944, 8.689712], + [-13.049374, 8.689391], + [-13.049289, 8.689174], + [-13.04919, 8.689136], + [-13.049126, 8.689141], + [-13.049063, 8.689205], + [-13.049001, 8.689325], + [-13.048933, 8.689631], + [-13.04888, 8.69003], + [-13.048886, 8.690484], + [-13.048883, 8.690925], + [-13.048911, 8.691096], + [-13.048964, 8.691206], + [-13.049172, 8.691361], + [-13.049344, 8.691561], + [-13.049396, 8.691679], + [-13.049402, 8.69189], + [-13.049327, 8.692031], + [-13.049204, 8.692229], + [-13.049088, 8.692361], + [-13.048842, 8.692528], + [-13.048595, 8.692801], + [-13.048465, 8.69291], + [-13.048178, 8.692981], + [-13.047948, 8.693108], + [-13.047776, 8.69322], + [-13.047637, 8.693285], + [-13.047564, 8.693336], + [-13.047531, 8.693411], + [-13.047556, 8.693483], + [-13.047682, 8.693666], + [-13.0478, 8.693958], + [-13.047793, 8.694059], + [-13.047793, 8.694179], + [-13.047849, 8.694307], + [-13.048079, 8.694658], + [-13.048197, 8.694913], + [-13.04832, 8.69511], + [-13.048342, 8.695246], + [-13.048292, 8.695375], + [-13.048173, 8.695511], + [-13.048058, 8.695607], + [-13.047973, 8.695775], + [-13.047961, 8.695891], + [-13.047986, 8.695972], + [-13.048032, 8.696036], + [-13.048122, 8.696066], + [-13.048188, 8.696091], + [-13.048344, 8.696041], + [-13.048499, 8.695986], + [-13.048627, 8.695927], + [-13.04869, 8.695941], + [-13.048815, 8.695985], + [-13.048833, 8.69602], + [-13.048835, 8.696072], + [-13.048788, 8.696192], + [-13.048767, 8.696308], + [-13.048794, 8.696347], + [-13.048862, 8.696351], + [-13.048949, 8.69634], + [-13.048987, 8.696286], + [-13.049029, 8.696252], + [-13.049085, 8.69626], + [-13.049097, 8.696391], + [-13.049188, 8.696544], + [-13.049204, 8.696596], + [-13.049267, 8.696648], + [-13.049351, 8.696671], + [-13.049491, 8.696696], + [-13.04956, 8.696764], + [-13.049588, 8.696828], + [-13.049606, 8.696925], + [-13.049638, 8.697236], + [-13.049625, 8.697342], + [-13.049566, 8.697413], + [-13.049544, 8.69752], + [-13.049556, 8.697587], + [-13.049734, 8.697735], + [-13.050039, 8.697882], + [-13.050173, 8.697989], + [-13.050246, 8.698123], + [-13.050227, 8.698211], + [-13.050185, 8.698281], + [-13.050122, 8.698355], + [-13.050106, 8.698412], + [-13.050124, 8.698471], + [-13.050232, 8.698571], + [-13.050316, 8.698615], + [-13.050418, 8.698746], + [-13.050455, 8.698805], + [-13.050539, 8.698829], + [-13.050641, 8.698827], + [-13.050725, 8.698841], + [-13.050771, 8.698805], + [-13.050773, 8.698806], + [-13.050748, 8.698904], + [-13.050715, 8.699082], + [-13.050679, 8.6992], + [-13.050674, 8.699333], + [-13.050717, 8.69941], + [-13.050744, 8.699542], + [-13.050742, 8.699663], + [-13.050725, 8.699788], + [-13.050441, 8.699784], + [-13.050367, 8.699749], + [-13.050382, 8.699673], + [-13.050439, 8.699518], + [-13.050432, 8.699346], + [-13.050439, 8.699306], + [-13.050519, 8.699216], + [-13.050535, 8.699156], + [-13.050549, 8.699082], + [-13.050482, 8.699006], + [-13.050432, 8.698969], + [-13.050419, 8.698859], + [-13.050305, 8.69871], + [-13.050109, 8.698596], + [-13.050038, 8.698539], + [-13.050027, 8.698485], + [-13.050065, 8.698332], + [-13.050109, 8.698276], + [-13.050167, 8.69821], + [-13.050183, 8.698164], + [-13.050141, 8.698064], + [-13.050012, 8.697924], + [-13.049907, 8.697862], + [-13.049684, 8.697749], + [-13.049608, 8.697742], + [-13.049506, 8.697709], + [-13.049485, 8.697677], + [-13.049485, 8.697652], + [-13.049516, 8.697574], + [-13.049521, 8.697402], + [-13.049554, 8.697361], + [-13.049591, 8.697293], + [-13.049587, 8.697119], + [-13.049556, 8.696983], + [-13.049541, 8.696881], + [-13.049505, 8.696777], + [-13.049419, 8.696738], + [-13.049296, 8.696705], + [-13.04908, 8.696669], + [-13.048987, 8.696649], + [-13.048797, 8.696615], + [-13.048732, 8.696579], + [-13.048651, 8.696474], + [-13.04865, 8.696434], + [-13.048675, 8.696277], + [-13.048719, 8.696208], + [-13.048759, 8.69614], + [-13.048764, 8.696075], + [-13.048699, 8.696011], + [-13.048628, 8.695982], + [-13.048516, 8.696031], + [-13.048381, 8.696109], + [-13.048285, 8.696178], + [-13.048182, 8.696221], + [-13.048118, 8.696225], + [-13.048038, 8.696151], + [-13.047944, 8.696048], + [-13.047915, 8.695982], + [-13.047909, 8.69591], + [-13.047924, 8.695758], + [-13.047983, 8.695629], + [-13.048089, 8.695475], + [-13.048147, 8.695407], + [-13.048224, 8.695248], + [-13.048209, 8.695176], + [-13.048155, 8.695029], + [-13.048066, 8.694766], + [-13.047821, 8.694419], + [-13.047712, 8.694269], + [-13.047676, 8.694155], + [-13.047692, 8.694096], + [-13.047719, 8.693963], + [-13.047689, 8.693907], + [-13.047573, 8.693822], + [-13.047501, 8.693797], + [-13.047461, 8.693713], + [-13.047393, 8.693297], + [-13.047632, 8.693106], + [-13.047686, 8.693087], + [-13.047731, 8.693042], + [-13.047802, 8.692948], + [-13.047866, 8.692886], + [-13.04807, 8.692715], + [-13.048158, 8.692635], + [-13.048273, 8.692548], + [-13.048429, 8.692475], + [-13.048522, 8.692442], + [-13.048661, 8.692374], + [-13.048872, 8.692201], + [-13.048983, 8.692114], + [-13.049075, 8.692028], + [-13.049106, 8.69194], + [-13.049111, 8.691826], + [-13.049023, 8.691651], + [-13.04886, 8.691403], + [-13.04878, 8.691257], + [-13.048677, 8.691033], + [-13.048445, 8.69125], + [-13.043113, 8.69125], + [-13.043065, 8.691454], + [-13.041508, 8.692884], + [-13.041442, 8.694148], + [-13.040767, 8.69482], + [-13.040331, 8.695614], + [-13.040305, 8.696643], + [-13.040758, 8.697451], + [-13.040453, 8.698021], + [-13.041126, 8.699034], + [-13.041342, 8.699592], + [-13.041281, 8.699886], + [-13.040834, 8.699966], + [-13.03949, 8.699429], + [-13.038559, 8.699366], + [-13.037848, 8.69969], + [-13.036916, 8.699449], + [-13.037021, 8.700054], + [-13.036743, 8.701254], + [-13.036979, 8.704199], + [-13.035978, 8.70465], + [-13.035677, 8.704938], + [-13.036962, 8.705814], + [-13.037984, 8.706522], + [-13.037365, 8.707735], + [-13.030568, 8.702291], + [-13.028334, 8.701248], + [-13.02625, 8.705416], + [-13.025416, 8.709582], + [-13.019408, 8.708916], + [-13.017746, 8.711794], + [-13.01625, 8.712917], + [-13.014583, 8.715416], + [-13.013995, 8.719533], + [-13.014012, 8.719522], + [-13.01584, 8.720124], + [-13.01571, 8.721142], + [-13.01603, 8.72186], + [-13.0178, 8.723124], + [-13.017727, 8.723352], + [-13.017249, 8.723353], + [-13.016552, 8.723023], + [-13.015797, 8.722894], + [-13.015231, 8.723066], + [-13.014418, 8.723726], + [-13.013352, 8.726022], + [-13.012917, 8.731249], + [-13.012801, 8.731481], + [-13.012783, 8.731479], + [-13.012274, 8.735551], + [-13.011122, 8.734786], + [-13.010131, 8.734324], + [-13.007466, 8.73433], + [-13.006361, 8.734886], + [-13.005125, 8.735984], + [-13.004771, 8.736761], + [-13.004945, 8.737932], + [-13.005401, 8.738136], + [-13.006324, 8.739665], + [-13.007398, 8.740184], + [-13.007659, 8.740504], + [-13.007522, 8.740849], + [-13.006587, 8.741344], + [-13.006111, 8.742121], + [-13.00575, 8.742268], + [-13.0054, 8.742206], + [-13.005038, 8.741997], + [-13.004701, 8.741208], + [-13.00399, 8.740985], + [-13.003092, 8.739838], + [-13.00258, 8.738456], + [-13.002617, 8.737803], + [-13.002442, 8.737754], + [-13.001151, 8.738651], + [-12.998749, 8.73625], + [-12.99625, 8.735417], + [-12.990922, 8.746071], + [-12.99092, 8.746071], + [-12.990839, 8.746025], + [-12.990417, 8.747082], + [-12.992916, 8.747082], + [-12.993185, 8.746548], + [-12.994184, 8.747823], + [-12.995382, 8.748782], + [-12.995382, 8.748784], + [-12.992916, 8.75125], + [-12.98375, 8.752917], + [-12.984582, 8.757082], + [-12.977083, 8.757083], + [-12.972008, 8.76089], + [-12.971832, 8.792082], + [-12.977083, 8.792083], + [-12.981249, 8.800416], + [-12.98125, 8.802082], + [-12.98375, 8.80375], + [-12.986686, 8.804924], + [-12.986687, 8.805007], + [-12.98895, 8.805761], + [-12.989158, 8.805484], + [-12.98969, 8.80545], + [-12.990272, 8.806066], + [-12.990895, 8.805992], + [-12.992177, 8.80511], + [-12.992489, 8.804482], + [-12.992414, 8.80394], + [-12.992166, 8.803631], + [-12.99123, 8.803673], + [-12.990972, 8.803482], + [-12.991614, 8.802753], + [-12.992607, 8.802649], + [-12.993438, 8.803499], + [-12.995454, 8.802475], + [-12.996757, 8.803045], + [-12.997129, 8.803866], + [-12.999455, 8.805961], + [-12.999542, 8.806547], + [-12.999856, 8.808905], + [-13.001297, 8.810194], + [-13.001586, 8.810838], + [-13.001667, 8.811652], + [-13.001054, 8.812932], + [-13.00176, 8.814629], + [-13.007916, 8.81375], + [-13.007916, 8.822082], + [-13.006379, 8.824133], + [-13.006454, 8.824172], + [-13.006249, 8.824582], + [-13.002917, 8.827082], + [-12.997917, 8.827083], + [-12.997082, 8.827916], + [-12.996249, 8.827917], + [-12.99375, 8.82875], + [-12.99375, 8.832082], + [-12.996789, 8.837402], + [-12.996787, 8.837403], + [-12.99554, 8.836613], + [-12.995242, 8.836598], + [-12.994212, 8.838387], + [-12.994204, 8.838997], + [-12.993175, 8.838803], + [-12.993761, 8.839682], + [-12.994754, 8.8408], + [-12.995373, 8.841868], + [-12.995223, 8.842484], + [-12.995229, 8.844077], + [-13.013499, 8.8423], + [-13.024199, 8.8385], + [-13.0303, 8.836699], + [-13.038699, 8.835], + [-13.0462, 8.833099], + [-13.0596, 8.831699], + [-13.0686, 8.829299], + [-13.0732, 8.828899], + [-13.089284, 8.828687], + [-13.088749, 8.827083], + [-13.087916, 8.827082], + [-13.087082, 8.824583], + [-13.085646, 8.825302], + [-13.085644, 8.825301], + [-13.083907, 8.818118], + [-13.087024, 8.816073], + [-13.087793, 8.817879], + [-13.089868, 8.817245], + [-13.090302, 8.814697], + [-13.090416, 8.814583], + [-13.090336, 8.814502], + [-13.09055, 8.813242], + [-13.090941, 8.809909], + [-13.089646, 8.81016], + [-13.089374, 8.812474], + [-13.088738, 8.810413], + [-13.084379, 8.810612], + [-13.081654, 8.810623], + [-13.081231, 8.810436], + [-13.082082, 8.809582], + [-13.082083, 8.805645], + [-13.084669, 8.805962], + [-13.08375, 8.804582], + [-13.08375, 8.79625], + [-13.084041, 8.795083], + [-13.083879, 8.795017], + [-13.083691, 8.794111], + [-13.082807, 8.793522], + [-13.082973, 8.792486], + [-13.084297, 8.792355], + [-13.084903, 8.793301], + [-13.085416, 8.79125], + [-13.084582, 8.790416], + [-13.082083, 8.785416], + [-13.087082, 8.777917], + [-13.088368, 8.777917], + [-13.088399, 8.777992], + [-13.089179, 8.778328], + [-13.090416, 8.777916], + [-13.092916, 8.77125], + [-13.096249, 8.772082], + [-13.099949, 8.766163], + [-13.100101, 8.766196], + [-13.100234, 8.766269], + [-13.102916, 8.762917], + [-13.103749, 8.75625], + [-13.102693, 8.756168], + [-13.102692, 8.756167], + [-13.105292, 8.751664] + ] + ], + "type": "Polygon" + }, + "id": 365, + "properties": { + "cc:admin:id": ["74"], + "cc:oBld:total": 86, + "cc:pop:fifteen-to-twenty-four": 2227.689401752167, + "cc:pop:grid3-total": 3850.474760631991, + "cc:pop:kontur-total": 14028.956985300265, + "cc:pop:men": 6096.765627838687, + "cc:pop:sixty-plus": 601.8993275452746, + "cc:pop:total": 12831.195541078481, + "cc:pop:under-five": 1905.4619492046822, + "cc:pop:women": 6734.429913239794, + "cc:pop:women-fiften-to-forty-nine": 3353.2494376371787, + "cc:pop:wp-total": 9120.82295996668, + "cc:pop:wp-total-UN": 10579.289612721028, + "cc:id": "365", + "cc:Name": "Mapillah MCHP", + "cc:site": [-13.0371, 8.7502], + "user:parentName": "Lokomasama", + "user:code": "OU_254987", + "user:orgUnitId": "SIxGTeya5lN", + "user:level": "4", + "user:parentId": "fRLX08WHWpL" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.620133, 8.770129], + [-12.618515, 8.768351], + [-12.61793, 8.766397], + [-12.616762, 8.765551], + [-12.616066, 8.764379], + [-12.619582, 8.758749], + [-12.618989, 8.756971], + [-12.61875, 8.756919], + [-12.618749, 8.754583], + [-12.612917, 8.754583], + [-12.612304, 8.753971], + [-12.612419, 8.752165], + [-12.613162, 8.750668], + [-12.614248, 8.749053], + [-12.615006, 8.74796], + [-12.615442, 8.747667], + [-12.616174, 8.745704], + [-12.616001, 8.744879], + [-12.615706, 8.744518], + [-12.614939, 8.742507], + [-12.614357, 8.741621], + [-12.613958, 8.739329], + [-12.613705, 8.738761], + [-12.613758, 8.738331], + [-12.612594, 8.737667], + [-12.612036, 8.736533], + [-12.61147, 8.736026], + [-12.609631, 8.735181], + [-12.609134, 8.734255], + [-12.608426, 8.733597], + [-12.604147, 8.730781], + [-12.605437, 8.724164], + [-12.604421, 8.724114], + [-12.603142, 8.723737], + [-12.602021, 8.72314], + [-12.601576, 8.722701], + [-12.600651, 8.721589], + [-12.599249, 8.718319], + [-12.598185, 8.717113], + [-12.597598, 8.716716], + [-12.596899, 8.715732], + [-12.596061, 8.715354], + [-12.595443, 8.71588], + [-12.593907, 8.715891], + [-12.593905, 8.715888], + [-12.593899, 8.7159], + [-12.590499, 8.7201], + [-12.5869, 8.723599], + [-12.584299, 8.7253], + [-12.582199, 8.726], + [-12.5779, 8.726999], + [-12.5731, 8.729099], + [-12.571, 8.729599], + [-12.567399, 8.7299], + [-12.5559, 8.729999], + [-12.5521, 8.731099], + [-12.5484, 8.735599], + [-12.5459, 8.738299], + [-12.542799, 8.740299], + [-12.540099, 8.741], + [-12.5372, 8.741299], + [-12.5282, 8.7411], + [-12.524899, 8.7438], + [-12.520299, 8.7458], + [-12.5149, 8.7487], + [-12.517799, 8.751399], + [-12.520499, 8.753099], + [-12.522799, 8.755199], + [-12.5256, 8.758699], + [-12.531699, 8.762399], + [-12.5343, 8.7632], + [-12.5445, 8.7638], + [-12.5483, 8.7651], + [-12.5547, 8.769299], + [-12.5623, 8.764399], + [-12.566, 8.763599], + [-12.575199, 8.7634], + [-12.578899, 8.7631], + [-12.5809, 8.762499], + [-12.5857, 8.7603], + [-12.5902, 8.7597], + [-12.593, 8.7598], + [-12.5958, 8.7606], + [-12.603099, 8.764099], + [-12.6074, 8.7665], + [-12.6158, 8.7704], + [-12.616817, 8.770654], + [-12.617023, 8.770354], + [-12.61756, 8.770325], + [-12.617945, 8.769945], + [-12.619081, 8.769884], + [-12.620133, 8.770129] + ] + ], + "type": "Polygon" + }, + "id": 367, + "properties": { + "cc:admin:id": ["80"], + "cc:oBld:total": 9, + "cc:pop:fifteen-to-twenty-four": 425.6409673494305, + "cc:pop:grid3-total": 2276.9003709044127, + "cc:pop:kontur-total": 2198.4815727474634, + "cc:pop:men": 1056.2916113687131, + "cc:pop:sixty-plus": 139.90016911292102, + "cc:pop:total": 2280.0534327673313, + "cc:pop:under-five": 366.7067373807899, + "cc:pop:women": 1223.7618213986186, + "cc:pop:women-fiften-to-forty-nine": 596.4775982710261, + "cc:pop:wp-total": 3029.831650316127, + "cc:pop:wp-total-UN": 3516.7458913850633, + "cc:id": "367", + "cc:Name": "Maronko MCHP", + "cc:site": [-12.5689, 8.7344], + "user:parentName": "Maforki", + "user:code": "OU_254958", + "user:orgUnitId": "UoLtRvXxNaB", + "user:level": "4", + "user:parentId": "JdqfYTIFZXN" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.897083, 8.761249], + [-11.897082, 8.754583], + [-11.89125, 8.750209], + [-11.89125, 8.750207], + [-11.891382, 8.750037], + [-11.891431, 8.749947], + [-11.891249, 8.749583], + [-11.885417, 8.746249], + [-11.88625, 8.744582], + [-11.888749, 8.73375], + [-11.887916, 8.732917], + [-11.882083, 8.733749], + [-11.87875, 8.733749], + [-11.878233, 8.7322], + [-11.887184, 8.728958], + [-11.887487, 8.727276], + [-11.887525, 8.726111], + [-11.87625, 8.722083], + [-11.874583, 8.717917], + [-11.87625, 8.714583], + [-11.878749, 8.714582], + [-11.879583, 8.712916], + [-11.884582, 8.710416], + [-11.88375, 8.707917], + [-11.879961, 8.704129], + [-11.877791, 8.703826], + [-11.875994, 8.703032], + [-11.875589, 8.702677], + [-11.873943, 8.702336], + [-11.872886, 8.702722], + [-11.872471, 8.702604], + [-11.87153, 8.702821], + [-11.870802, 8.702651], + [-11.870956, 8.702016], + [-11.871571, 8.701591], + [-11.875817, 8.698719], + [-11.875416, 8.697917], + [-11.871374, 8.697242], + [-11.871407, 8.696707], + [-11.87182, 8.69545], + [-11.872352, 8.69457], + [-11.869582, 8.690417], + [-11.86375, 8.68625], + [-11.863749, 8.684583], + [-11.862916, 8.68375], + [-11.862526, 8.68375], + [-11.861499, 8.6859], + [-11.8608, 8.689499], + [-11.8608, 8.700099], + [-11.8601, 8.703799], + [-11.856499, 8.7112], + [-11.8539, 8.714099], + [-11.8508, 8.7163], + [-11.8479, 8.720799], + [-11.8467, 8.723499], + [-11.846299, 8.7258], + [-11.8461, 8.734499], + [-11.845599, 8.7369], + [-11.8446, 8.738899], + [-11.843499, 8.7402], + [-11.840099, 8.7434], + [-11.8362, 8.7465], + [-11.835299, 8.7491], + [-11.834499, 8.755], + [-11.832499, 8.7603], + [-11.8309, 8.766699], + [-11.829999, 8.7686], + [-11.828299, 8.7708], + [-11.825099, 8.7739], + [-11.822899, 8.7756], + [-11.8196, 8.7773], + [-11.8225, 8.7809], + [-11.8274, 8.79], + [-11.828, 8.7929], + [-11.828199, 8.795899], + [-11.8282, 8.812299], + [-11.828399, 8.816399], + [-11.8294, 8.8197], + [-11.8306, 8.8216], + [-11.832499, 8.823699], + [-11.8354, 8.8259], + [-11.843799, 8.830099], + [-11.850599, 8.833299], + [-11.8528, 8.834], + [-11.856299, 8.834399], + [-11.8728, 8.834499], + [-11.8758, 8.834399], + [-11.879299, 8.834], + [-11.8815, 8.833299], + [-11.8862, 8.830699], + [-11.891499, 8.827999], + [-11.8936, 8.823699], + [-11.893999, 8.819899], + [-11.8937, 8.8146], + [-11.892699, 8.810699], + [-11.8892, 8.8043], + [-11.8879, 8.8012], + [-11.8872, 8.7967], + [-11.887799, 8.7932], + [-11.888999, 8.79], + [-11.89366, 8.782959], + [-11.889696, 8.779561], + [-11.889693, 8.779596], + [-11.889249, 8.780962], + [-11.888716, 8.780807], + [-11.888751, 8.780553], + [-11.888557, 8.780295], + [-11.88785, 8.779983], + [-11.886837, 8.780259], + [-11.885268, 8.779801], + [-11.885208, 8.779755], + [-11.884759, 8.779574], + [-11.884607, 8.779609], + [-11.883627, 8.779322], + [-11.883951, 8.779172], + [-11.884339, 8.778709], + [-11.885524, 8.77911], + [-11.886715, 8.780134], + [-11.887797, 8.779752], + [-11.888144, 8.779792], + [-11.888567, 8.780085], + [-11.888724, 8.779991], + [-11.88874, 8.778071], + [-11.888459, 8.777082], + [-11.888306, 8.776975], + [-11.887618, 8.777062], + [-11.886867, 8.776408], + [-11.886599, 8.77564], + [-11.886751, 8.775123], + [-11.886516, 8.774587], + [-11.886732, 8.773012], + [-11.886669, 8.771266], + [-11.886942, 8.770268], + [-11.887895, 8.768629], + [-11.887963, 8.768067], + [-11.88881, 8.767658], + [-11.889006, 8.767787], + [-11.889626, 8.768012], + [-11.890062, 8.76784], + [-11.891414, 8.766838], + [-11.892658, 8.765073], + [-11.893323, 8.764484], + [-11.89478, 8.763811], + [-11.895064, 8.763772], + [-11.897083, 8.761249] + ] + ], + "type": "Polygon" + }, + "id": 368, + "properties": { + "cc:admin:id": ["54"], + "cc:oBld:total": 791, + "cc:pop:fifteen-to-twenty-four": 1791.0272455221734, + "cc:pop:grid3-total": 5906.254411459395, + "cc:pop:kontur-total": 8568.164324569785, + "cc:pop:men": 4536.224044691587, + "cc:pop:sixty-plus": 611.5133506665294, + "cc:pop:total": 9558.500475039233, + "cc:pop:under-five": 1548.2652420394975, + "cc:pop:women": 5022.276430347648, + "cc:pop:women-fiften-to-forty-nine": 2428.3583187253553, + "cc:pop:wp-total": 8711.98426570418, + "cc:pop:wp-total-UN": 10094.67272931997, + "cc:id": "368", + "cc:Name": "Masanga Leprosy Hospital", + "cc:site": [-11.8371, 8.7505], + "user:parentName": "Kholifa Rowalla", + "user:code": "OU_268159", + "user:orgUnitId": "wB4R3E1X6pC", + "user:level": "4", + "user:parentId": "PQZJPIpTepd" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.367699, 9.369299], + [-12.366799, 9.3654], + [-12.363699, 9.3616], + [-12.361399, 9.3625], + [-12.356199, 9.3637], + [-12.3501, 9.366199], + [-12.3459, 9.366999], + [-12.3434, 9.367899], + [-12.3376, 9.3713], + [-12.336099, 9.3733], + [-12.333799, 9.3775], + [-12.332999, 9.381], + [-12.3327, 9.388799], + [-12.332, 9.392499], + [-12.330199, 9.397], + [-12.328599, 9.4037], + [-12.324799, 9.4114], + [-12.321599, 9.414599], + [-12.314999, 9.4179], + [-12.312799, 9.4186], + [-12.308399, 9.419], + [-12.2963, 9.419], + [-12.2914, 9.4187], + [-12.288599, 9.418099], + [-12.283999, 9.416099], + [-12.280399, 9.415399], + [-12.2745, 9.4151], + [-12.2707, 9.4146], + [-12.2653, 9.4123], + [-12.261899, 9.4116], + [-12.2583, 9.4116], + [-12.2548, 9.412299], + [-12.248999, 9.4146], + [-12.243899, 9.4152], + [-12.233199, 9.4152], + [-12.2303, 9.415499], + [-12.227699, 9.4163], + [-12.221999, 9.4198], + [-12.219099, 9.4239], + [-12.2151, 9.428899], + [-12.2122, 9.434299], + [-12.2078, 9.440099], + [-12.206751, 9.442085], + [-12.207411, 9.442828], + [-12.2081, 9.442429], + [-12.214582, 9.44125], + [-12.215416, 9.442082], + [-12.212917, 9.454582], + [-12.218352, 9.455263], + [-12.21836, 9.455416], + [-12.21875, 9.455417], + [-12.219583, 9.457082], + [-12.231249, 9.454583], + [-12.232083, 9.45375], + [-12.238002, 9.455065], + [-12.238086, 9.454834], + [-12.243749, 9.456249], + [-12.24375, 9.461249], + [-12.245417, 9.462916], + [-12.247917, 9.462917], + [-12.250417, 9.465416], + [-12.258749, 9.462917], + [-12.259508, 9.468219], + [-12.260416, 9.468012], + [-12.260417, 9.468749], + [-12.262082, 9.469583], + [-12.264582, 9.472082], + [-12.265017, 9.473822], + [-12.26456, 9.474354], + [-12.26207, 9.475676], + [-12.261716, 9.476072], + [-12.261749, 9.477475], + [-12.26158, 9.478334], + [-12.263343, 9.47771], + [-12.264194, 9.47763], + [-12.265057, 9.477623], + [-12.266214, 9.477261], + [-12.26731, 9.477186], + [-12.268522, 9.476402], + [-12.26913, 9.476315], + [-12.269042, 9.476068], + [-12.268774, 9.475977], + [-12.268532, 9.474745], + [-12.268056, 9.474199], + [-12.267874, 9.473586], + [-12.26785, 9.47356], + [-12.269582, 9.47125], + [-12.275416, 9.471249], + [-12.275416, 9.465417], + [-12.274583, 9.464582], + [-12.275417, 9.462083], + [-12.27625, 9.462082], + [-12.28125, 9.46125], + [-12.284938, 9.46125], + [-12.28487, 9.461622], + [-12.286249, 9.462082], + [-12.289582, 9.460416], + [-12.291249, 9.45875], + [-12.292083, 9.455416], + [-12.294582, 9.452916], + [-12.293283, 9.449014], + [-12.294923, 9.446221], + [-12.295146, 9.445696], + [-12.297916, 9.446249], + [-12.299583, 9.447916], + [-12.303749, 9.447916], + [-12.307916, 9.444583], + [-12.30795, 9.444548], + [-12.307928, 9.444389], + [-12.307877, 9.444313], + [-12.307877, 9.444311], + [-12.311249, 9.443749], + [-12.31125, 9.442916], + [-12.314582, 9.440416], + [-12.315417, 9.43625], + [-12.320008, 9.436905], + [-12.321343, 9.434319], + [-12.321723, 9.431899], + [-12.321803, 9.430786], + [-12.321736, 9.430225], + [-12.322694, 9.430159], + [-12.323739, 9.429659], + [-12.325747, 9.429256], + [-12.327446, 9.427421], + [-12.328531, 9.426796], + [-12.330438, 9.426775], + [-12.332083, 9.424582], + [-12.338749, 9.422082], + [-12.33815, 9.417892], + [-12.337783, 9.417794], + [-12.336797, 9.416979], + [-12.336427, 9.416329], + [-12.33594, 9.415946], + [-12.335431, 9.415811], + [-12.337917, 9.412083], + [-12.344582, 9.410417], + [-12.351617, 9.409713], + [-12.351559, 9.409584], + [-12.35156, 9.409583], + [-12.352082, 9.409582], + [-12.352083, 9.402917], + [-12.354582, 9.401249], + [-12.354583, 9.392087], + [-12.355085, 9.391701], + [-12.355473, 9.391304], + [-12.356716, 9.39087], + [-12.358438, 9.390728], + [-12.358793, 9.390495], + [-12.359936, 9.390336], + [-12.359356, 9.389885], + [-12.359104, 9.389231], + [-12.359105, 9.38923], + [-12.36067, 9.389645], + [-12.36087, 9.389735], + [-12.360417, 9.387916], + [-12.363749, 9.387082], + [-12.36527, 9.385561], + [-12.3654, 9.383799], + [-12.367599, 9.3745], + [-12.367699, 9.369299] + ] + ], + "type": "Polygon" + }, + "id": 369, + "properties": { + "cc:admin:id": ["121"], + "cc:oBld:total": 403, + "cc:pop:fifteen-to-twenty-four": 1740.9154079426369, + "cc:pop:grid3-total": 8226.103948703836, + "cc:pop:kontur-total": 9862.707757569327, + "cc:pop:men": 5131.297443224982, + "cc:pop:sixty-plus": 596.792745426593, + "cc:pop:total": 9519.676308811173, + "cc:pop:under-five": 1546.0047132058496, + "cc:pop:women": 4388.378865586195, + "cc:pop:women-fiften-to-forty-nine": 2158.053759826685, + "cc:pop:wp-total": 9782.281524123895, + "cc:pop:wp-total-UN": 11338.390808981703, + "cc:id": "369", + "cc:Name": "Masankorie CHP", + "cc:site": [-12.2807, 9.4457], + "user:parentName": "Sella Limba", + "user:code": "OU_193288", + "user:orgUnitId": "eyfrdOUUkXO", + "user:level": "4", + "user:parentId": "j43EZb15rjI" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.047085, 9.015848], + [-12.046599, 9.0145], + [-12.0443, 9.0126], + [-12.0401, 9.0101], + [-12.036799, 9.008699], + [-12.032599, 9.006299], + [-12.026599, 9.003699], + [-12.024499, 9.0035], + [-12.018, 9.006199], + [-12.0138, 9.008699], + [-12.0106, 9.010199], + [-12.009953, 9.0106], + [-12.012917, 9.018749], + [-12.015415, 9.019583], + [-12.01375, 9.020417], + [-12.013749, 9.025416], + [-12.01125, 9.02875], + [-12.01125, 9.036249], + [-12.019316, 9.037716], + [-12.019582, 9.037462], + [-12.019583, 9.046249], + [-12.026579, 9.043451], + [-12.02658, 9.043453], + [-12.026384, 9.043843], + [-12.025754, 9.046752], + [-12.025728, 9.047416], + [-12.026065, 9.048315], + [-12.026067, 9.049535], + [-12.026158, 9.049931], + [-12.026622, 9.050081], + [-12.027212, 9.049867], + [-12.027798, 9.050034], + [-12.029476, 9.049859], + [-12.029557, 9.049831], + [-12.030314, 9.049597], + [-12.030438, 9.049604], + [-12.03136, 9.049682], + [-12.031982, 9.049563], + [-12.03266, 9.049581], + [-12.029583, 9.059582], + [-12.037082, 9.052916], + [-12.037083, 9.05092], + [-12.038035, 9.05168], + [-12.038629, 9.052631], + [-12.039799, 9.05], + [-12.0404, 9.047399], + [-12.040899, 9.0421], + [-12.0414, 9.039999], + [-12.0424, 9.037999], + [-12.045799, 9.0337], + [-12.046999, 9.0318], + [-12.047699, 9.0296], + [-12.048, 9.026799], + [-12.048099, 9.022799], + [-12.0475, 9.017], + [-12.047085, 9.015848] + ] + ], + "type": "Polygon" + }, + "id": 370, + "properties": { + "cc:admin:id": ["7"], + "cc:oBld:total": 16, + "cc:pop:fifteen-to-twenty-four": 175.66367201394584, + "cc:pop:grid3-total": 812.2610744479591, + "cc:pop:kontur-total": 890.1689984303327, + "cc:pop:men": 444.17821047250146, + "cc:pop:sixty-plus": 56.71625836793939, + "cc:pop:total": 965.1366015813526, + "cc:pop:under-five": 151.62526846588952, + "cc:pop:women": 520.9583911088512, + "cc:pop:women-fiften-to-forty-nine": 258.8592494069895, + "cc:pop:wp-total": 777.6877180510608, + "cc:pop:wp-total-UN": 902.5929973096971, + "cc:id": "370", + "cc:Name": "Maselleh MCHP", + "cc:site": [-12.0432, 9.0166], + "user:parentName": "Safroko Limba", + "user:code": "OU_193269", + "user:orgUnitId": "CY8cV5khn7e", + "user:level": "4", + "user:parentId": "XG8HGAbrbbL" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.787916, 8.531249], + [-12.785416, 8.52375], + [-12.777917, 8.523749], + [-12.777917, 8.514584], + [-12.777083, 8.514583], + [-12.777083, 8.512084], + [-12.780417, 8.508749], + [-12.786249, 8.499584], + [-12.781249, 8.495417], + [-12.777083, 8.494584], + [-12.775417, 8.494583], + [-12.775417, 8.492916], + [-12.77625, 8.488749], + [-12.776851, 8.488149], + [-12.778388, 8.48852], + [-12.780941, 8.48864], + [-12.780738, 8.487713], + [-12.775921, 8.487057], + [-12.774168, 8.486165], + [-12.772255, 8.485168], + [-12.771858, 8.485051], + [-12.775417, 8.482916], + [-12.779582, 8.477084], + [-12.779582, 8.47625], + [-12.777916, 8.476249], + [-12.767917, 8.47125], + [-12.773749, 8.46625], + [-12.774798, 8.466249], + [-12.772635, 8.462505], + [-12.766874, 8.462504], + [-12.767083, 8.46125], + [-12.769582, 8.457917], + [-12.770416, 8.45625], + [-12.766249, 8.452917], + [-12.75625, 8.449584], + [-12.75625, 8.455416], + [-12.758749, 8.459584], + [-12.757917, 8.467916], + [-12.758749, 8.47125], + [-12.751249, 8.472916], + [-12.74625, 8.47125], + [-12.746249, 8.470417], + [-12.74375, 8.469584], + [-12.74125, 8.472084], + [-12.740416, 8.473749], + [-12.735417, 8.474584], + [-12.732519, 8.4769], + [-12.732617, 8.477537], + [-12.732366, 8.480788], + [-12.731249, 8.480417], + [-12.71875, 8.483749], + [-12.714582, 8.47875], + [-12.712916, 8.478749], + [-12.712082, 8.47625], + [-12.705417, 8.47625], + [-12.702541, 8.479125], + [-12.701825, 8.478905], + [-12.700937, 8.478856], + [-12.700417, 8.480416], + [-12.703749, 8.482084], + [-12.705415, 8.487082], + [-12.697917, 8.482917], + [-12.695417, 8.484584], + [-12.697917, 8.497084], + [-12.697916, 8.503591], + [-12.6978, 8.5036], + [-12.695358, 8.504167], + [-12.694118, 8.50417], + [-12.693616, 8.504245], + [-12.693086, 8.509558], + [-12.695488, 8.513719], + [-12.7033, 8.51372], + [-12.704367, 8.515566], + [-12.704446, 8.515554], + [-12.704383, 8.515418], + [-12.704384, 8.515417], + [-12.706249, 8.515416], + [-12.70625, 8.513749], + [-12.710417, 8.510417], + [-12.715961, 8.510417], + [-12.715898, 8.511103], + [-12.722082, 8.510417], + [-12.724583, 8.521249], + [-12.740416, 8.522083], + [-12.740417, 8.523749], + [-12.741249, 8.52375], + [-12.742917, 8.520416], + [-12.74625, 8.519584], + [-12.750416, 8.519584], + [-12.753221, 8.527296], + [-12.753445, 8.527222], + [-12.754421, 8.526692], + [-12.756494, 8.525072], + [-12.757988, 8.523459], + [-12.758099, 8.523255], + [-12.759582, 8.52375], + [-12.759583, 8.526249], + [-12.763749, 8.527083], + [-12.764583, 8.527083], + [-12.76811, 8.525908], + [-12.768125, 8.525555], + [-12.769583, 8.524584], + [-12.776248, 8.525416], + [-12.776249, 8.525418], + [-12.772917, 8.532916], + [-12.77375, 8.534583], + [-12.77625, 8.537083], + [-12.783749, 8.537083], + [-12.787916, 8.531249] + ] + ], + "type": "Polygon" + }, + "id": 371, + "properties": { + "cc:admin:id": ["62"], + "cc:oBld:total": 1423, + "cc:pop:fifteen-to-twenty-four": 2778.85518343186, + "cc:pop:grid3-total": 21107.617711792558, + "cc:pop:kontur-total": 14948.428205118767, + "cc:pop:men": 7010.982949513156, + "cc:pop:sixty-plus": 940.893038686543, + "cc:pop:total": 15059.915651765068, + "cc:pop:under-five": 2459.043453985561, + "cc:pop:women": 8048.932702251907, + "cc:pop:women-fiften-to-forty-nine": 3973.213823386342, + "cc:pop:wp-total": 11397.71044721477, + "cc:pop:wp-total-UN": 13220.870120257083, + "cc:id": "371", + "cc:Name": "Masiaka CHC", + "cc:site": [-12.7499, 8.4919], + "user:parentName": "Koya", + "user:code": "OU_254964", + "user:orgUnitId": "EURoFVjowXs", + "user:level": "4", + "user:parentId": "pRHGAROvuyI" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.145099, 9.102299], + [-11.144699, 9.1001], + [-11.1382, 9.0949], + [-11.1341, 9.0912], + [-11.131099, 9.088999], + [-11.125199, 9.085699], + [-11.120499, 9.081999], + [-11.1122, 9.0778], + [-11.109799, 9.076999], + [-11.104699, 9.075899], + [-11.1003, 9.0737], + [-11.096299, 9.071899], + [-11.093499, 9.069699], + [-11.087, 9.0633], + [-11.081799, 9.0576], + [-11.077499, 9.059], + [-11.071299, 9.0599], + [-11.065099, 9.059999], + [-11.0621, 9.0598], + [-11.0592, 9.0592], + [-11.055199, 9.057399], + [-11.0464, 9.0516], + [-11.035399, 9.0432], + [-11.030199, 9.041499], + [-11.025999, 9.0412], + [-11.020399, 9.0415], + [-11.016399, 9.0423], + [-11.010399, 9.0442], + [-11.005999, 9.0449], + [-10.998399, 9.0452], + [-10.9877, 9.0452], + [-10.9832, 9.0449], + [-10.9788, 9.0442], + [-10.9693, 9.040699], + [-10.965599, 9.037699], + [-10.9601, 9.0304], + [-10.952099, 9.016399], + [-10.9375, 9.0003], + [-10.9332, 8.994], + [-10.9304, 8.9908], + [-10.9262, 8.9871], + [-10.919799, 8.982899], + [-10.911, 8.976], + [-10.904499, 8.971899], + [-10.9, 8.968], + [-10.8959, 8.9637], + [-10.8941, 8.9613], + [-10.8927, 8.9588], + [-10.8907, 8.9523], + [-10.8883, 8.947], + [-10.885099, 8.9434], + [-10.881799, 8.941599], + [-10.872999, 8.939299], + [-10.868199, 8.936299], + [-10.8604, 8.9294], + [-10.856899, 8.926899], + [-10.849499, 8.922799], + [-10.8343, 8.9156], + [-10.825499, 8.9118], + [-10.8118, 8.917399], + [-10.803, 8.919299], + [-10.795399, 8.9215], + [-10.790699, 8.922], + [-10.7746, 8.922799], + [-10.771599, 8.9234], + [-10.766899, 8.9248], + [-10.762399, 8.9256], + [-10.738699, 8.9263], + [-10.734099, 8.9271], + [-10.726699, 8.9291], + [-10.7118, 8.930299], + [-10.7024, 8.9319], + [-10.7063, 8.9379], + [-10.708399, 8.944199], + [-10.7102, 8.9487], + [-10.712, 8.9518], + [-10.715599, 8.956899], + [-10.717199, 8.960099], + [-10.718799, 8.964899], + [-10.719299, 8.969199], + [-10.719, 8.974899], + [-10.717799, 8.9788], + [-10.712399, 8.9883], + [-10.709799, 8.9915], + [-10.7069, 8.994499], + [-10.7037, 8.997199], + [-10.700299, 8.9993], + [-10.693699, 9.0016], + [-10.6817, 9.006799], + [-10.6765, 9.008599], + [-10.6739, 9.009799], + [-10.670499, 9.0124], + [-10.660599, 9.0211], + [-10.6518, 9.026899], + [-10.648, 9.028899], + [-10.643699, 9.0299], + [-10.6348, 9.030699], + [-10.6292, 9.032399], + [-10.6211, 9.037299], + [-10.614399, 9.0403], + [-10.608499, 9.0413], + [-10.5962, 9.042099], + [-10.5877, 9.043199], + [-10.585, 9.0434], + [-10.594, 9.054899], + [-10.612999, 9.066699], + [-10.621999, 9.069499], + [-10.6227, 9.0677], + [-10.6331, 9.0695], + [-10.6603, 9.081499], + [-10.6751, 9.081399], + [-10.7082, 9.0755], + [-10.7299, 9.0792], + [-10.733399, 9.0843], + [-10.730099, 9.0914], + [-10.7262, 9.116599], + [-10.726099, 9.131099], + [-10.714499, 9.1439], + [-10.7143, 9.163499], + [-10.7206, 9.177299], + [-10.7262, 9.176299], + [-10.7318, 9.1742], + [-10.735299, 9.174], + [-10.7379, 9.1744], + [-10.742399, 9.176399], + [-10.745199, 9.177099], + [-10.7503, 9.177399], + [-10.7565, 9.177299], + [-10.7594, 9.176799], + [-10.7649, 9.174399], + [-10.7707, 9.172799], + [-10.7758, 9.170499], + [-10.7786, 9.1699], + [-10.781699, 9.1709], + [-10.783399, 9.1746], + [-10.783499, 9.1797], + [-10.782799, 9.1835], + [-10.780599, 9.1889], + [-10.779899, 9.1916], + [-10.779399, 9.1965], + [-10.778699, 9.1992], + [-10.7766, 9.204699], + [-10.7762, 9.207599], + [-10.7761, 9.2127], + [-10.776299, 9.240799], + [-10.776599, 9.244799], + [-10.777299, 9.247699], + [-10.7796, 9.2521], + [-10.783099, 9.260099], + [-10.784299, 9.267099], + [-10.7854, 9.269099], + [-10.7879, 9.270199], + [-10.790699, 9.2699], + [-10.7956, 9.2677], + [-10.7981, 9.2676], + [-10.8004, 9.2682], + [-10.8109, 9.2732], + [-10.8134, 9.2738], + [-10.8188, 9.2744], + [-10.8213, 9.2751], + [-10.8268, 9.2772], + [-10.8306, 9.2777], + [-10.837399, 9.277999], + [-10.840199, 9.278599], + [-10.848499, 9.282799], + [-10.854299, 9.287199], + [-10.8564, 9.288299], + [-10.8597, 9.2889], + [-10.8656, 9.2891], + [-10.869699, 9.289799], + [-10.876, 9.2922], + [-10.880899, 9.292599], + [-10.884799, 9.292], + [-10.8905, 9.2896], + [-10.895399, 9.2891], + [-10.8994, 9.2896], + [-10.9044, 9.291599], + [-10.908099, 9.291599], + [-10.919499, 9.2862], + [-10.923099, 9.286299], + [-10.930299, 9.289499], + [-10.934599, 9.291999], + [-10.9378, 9.2934], + [-10.941399, 9.295299], + [-10.9435, 9.296], + [-10.947, 9.2964], + [-10.951, 9.2965], + [-10.959999, 9.2965], + [-10.964899, 9.2962], + [-10.9678, 9.295499], + [-10.9721, 9.293499], + [-10.9755, 9.2929], + [-10.979, 9.2935], + [-10.986599, 9.296999], + [-10.990999, 9.299199], + [-10.994399, 9.300099], + [-10.994499, 9.2965], + [-10.995099, 9.293], + [-10.997299, 9.2878], + [-10.998199, 9.2835], + [-10.999099, 9.2811], + [-11.0007, 9.278899], + [-11.005599, 9.2735], + [-11.007799, 9.2707], + [-11.009699, 9.2669], + [-11.0115, 9.264199], + [-11.013899, 9.2618], + [-11.016599, 9.2598], + [-11.020499, 9.2581], + [-11.0241, 9.256099], + [-11.027299, 9.2548], + [-11.0293, 9.253399], + [-11.0337, 9.249399], + [-11.060699, 9.2222], + [-11.064299, 9.2193], + [-11.072399, 9.2151], + [-11.0756, 9.213799], + [-11.083599, 9.2097], + [-11.086099, 9.207099], + [-11.088099, 9.2029], + [-11.090099, 9.1993], + [-11.0914, 9.196099], + [-11.093699, 9.1918], + [-11.095, 9.188699], + [-11.0969, 9.185099], + [-11.0977, 9.182699], + [-11.0986, 9.178399], + [-11.1008, 9.173099], + [-11.1014, 9.170599], + [-11.1018, 9.165199], + [-11.1024, 9.162699], + [-11.1046, 9.157399], + [-11.1057, 9.152299], + [-11.1066, 9.149999], + [-11.1082, 9.147099], + [-11.1094, 9.143899], + [-11.111799, 9.1397], + [-11.113599, 9.1358], + [-11.1152, 9.133599], + [-11.120199, 9.1283], + [-11.122399, 9.1255], + [-11.1243, 9.121699], + [-11.1272, 9.117799], + [-11.131899, 9.1129], + [-11.135899, 9.1092], + [-11.1384, 9.107499], + [-11.1419, 9.105999], + [-11.144299, 9.103999], + [-11.145099, 9.102299] + ] + ], + "type": "Polygon" + }, + "id": 372, + "properties": { + "cc:admin:id": ["96"], + "cc:oBld:total": 4959, + "cc:pop:fifteen-to-twenty-four": 9691.614029655193, + "cc:pop:grid3-total": 42497.50929749201, + "cc:pop:kontur-total": 57430.39508125605, + "cc:pop:men": 24329.991583597235, + "cc:pop:sixty-plus": 3488.605676142014, + "cc:pop:total": 52829.499752405194, + "cc:pop:under-five": 8309.50870856584, + "cc:pop:women": 28499.50816880798, + "cc:pop:women-fiften-to-forty-nine": 13769.508473858228, + "cc:pop:wp-total": 45551.623676567, + "cc:pop:wp-total-UN": 52874.931450931246, + "cc:id": "372", + "cc:Name": "Masofinia MCHP", + "cc:site": [-11.0375, 9.0803], + "user:parentName": "Neya", + "user:code": "OU_226278", + "user:orgUnitId": "eKoXODABUJe", + "user:level": "4", + "user:parentId": "GFk45MOxzJJ" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.07084, 8.550349], + [-12.066934, 8.543583], + [-12.070651, 8.537143], + [-12.062916, 8.537916], + [-12.062173, 8.526015], + [-12.062272, 8.525928], + [-12.06407, 8.522982], + [-12.062916, 8.52125], + [-12.06125, 8.521249], + [-12.061015, 8.52078], + [-12.061425, 8.520459], + [-12.061922, 8.519789], + [-12.062145, 8.519083], + [-12.062098, 8.513403], + [-12.0588, 8.515999], + [-12.055099, 8.5175], + [-12.052099, 8.5179], + [-12.049, 8.517999], + [-12.0342, 8.5177], + [-12.0301, 8.5177], + [-12.0273, 8.518099], + [-12.0249, 8.5191], + [-12.0213, 8.523699], + [-12.017999, 8.5269], + [-12.015999, 8.5283], + [-12.012199, 8.5301], + [-12.0074, 8.532799], + [-12.0056, 8.5343], + [-12.002499, 8.5397], + [-12, 8.548099], + [-12.0023, 8.5549], + [-12.0066, 8.5629], + [-12.0092, 8.5653], + [-12.0138, 8.5678], + [-12.017, 8.5703], + [-12.021099, 8.573999], + [-12.023899, 8.576299], + [-12.028199, 8.578399], + [-12.0311, 8.5805], + [-12.035499, 8.584599], + [-12.038299, 8.588199], + [-12.040299, 8.591999], + [-12.0423, 8.5949], + [-12.0467, 8.5995], + [-12.051299, 8.603999], + [-12.054199, 8.605999], + [-12.055909, 8.606683], + [-12.057082, 8.60375], + [-12.049583, 8.597917], + [-12.04899, 8.594357], + [-12.053386, 8.593816], + [-12.055115, 8.593307], + [-12.056464, 8.592668], + [-12.05375, 8.587917], + [-12.05625, 8.585416], + [-12.060416, 8.575417], + [-12.057849, 8.57285], + [-12.059121, 8.570646], + [-12.066933, 8.570645], + [-12.07084, 8.56388], + [-12.066934, 8.557114], + [-12.07084, 8.550349] + ] + ], + "type": "Polygon" + }, + "id": 373, + "properties": { + "cc:admin:id": ["53"], + "cc:oBld:total": 10, + "cc:pop:fifteen-to-twenty-four": 634.7514771249729, + "cc:pop:grid3-total": 2237.5309974059687, + "cc:pop:kontur-total": 2669.101148161607, + "cc:pop:men": 1581.9267254225742, + "cc:pop:sixty-plus": 219.91727861578264, + "cc:pop:total": 3435.6974716455666, + "cc:pop:under-five": 546.8051073356078, + "cc:pop:women": 1853.7707462229926, + "cc:pop:women-fiften-to-forty-nine": 901.6568491104929, + "cc:pop:wp-total": 2644.977795964031, + "cc:pop:wp-total-UN": 3067.6882394647178, + "cc:id": "373", + "cc:Name": "Masoko MCHP", + "cc:site": [-12.0327, 8.5431], + "user:parentName": "Kholifa Rowalla", + "user:code": "OU_268158", + "user:orgUnitId": "D6B4jrCpCwu", + "user:level": "4", + "user:parentId": "PQZJPIpTepd" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.927916, 8.947083], + [-11.922916, 8.94375], + [-11.918749, 8.942916], + [-11.914583, 8.938749], + [-11.91375, 8.93625], + [-11.914582, 8.93375], + [-11.912082, 8.932916], + [-11.90875, 8.928749], + [-11.908749, 8.922083], + [-11.89875, 8.922916], + [-11.89625, 8.92125], + [-11.899582, 8.910417], + [-11.89625, 8.90375], + [-11.895876, 8.90263], + [-11.8888, 8.906599], + [-11.8859, 8.9092], + [-11.882999, 8.9149], + [-11.8785, 8.925099], + [-11.8771, 8.929599], + [-11.8766, 8.9336], + [-11.8776, 8.9401], + [-11.883199, 8.949499], + [-11.887699, 8.955299], + [-11.889499, 8.959499], + [-11.889499, 8.964], + [-11.886699, 8.9682], + [-11.8827, 8.971799], + [-11.8776, 8.975099], + [-11.8739, 8.978299], + [-11.868999, 8.9854], + [-11.8652, 8.989399], + [-11.8623, 8.991199], + [-11.859099, 8.9922], + [-11.8551, 8.992299], + [-11.851299, 8.991499], + [-11.846999, 8.9899], + [-11.8426, 8.9897], + [-11.8388, 8.9919], + [-11.8365, 8.9968], + [-11.8353, 9.007199], + [-11.834, 9.011599], + [-11.832, 9.014599], + [-11.829099, 9.016699], + [-11.823499, 9.018299], + [-11.821195, 9.018164], + [-11.820643, 9.019041], + [-11.820681, 9.021586], + [-11.821609, 9.023187], + [-11.823154, 9.024461], + [-11.823552, 9.025743], + [-11.823722, 9.027334], + [-11.823675, 9.028569], + [-11.823363, 9.029243], + [-11.822927, 9.029636], + [-11.822457, 9.02956], + [-11.820876, 9.032296], + [-11.823018, 9.036006], + [-11.823693, 9.036027], + [-11.823888, 9.037158], + [-11.825415, 9.037738], + [-11.825811, 9.037901], + [-11.825819, 9.037891], + [-11.826178, 9.038027], + [-11.826887, 9.038093], + [-11.832332, 9.042088], + [-11.832326, 9.042404], + [-11.832474, 9.044503], + [-11.83308, 9.045613], + [-11.833444, 9.047496], + [-11.833809, 9.048222], + [-11.834635, 9.048878], + [-11.835584, 9.050776], + [-11.833944, 9.053258], + [-11.835417, 9.05375], + [-11.836249, 9.057916], + [-11.837083, 9.060416], + [-11.840417, 9.062916], + [-11.844582, 9.062917], + [-11.84375, 9.067082], + [-11.842917, 9.070416], + [-11.84875, 9.074583], + [-11.8492, 9.07729], + [-11.848609, 9.079036], + [-11.847059, 9.080642], + [-11.846607, 9.081226], + [-11.846418, 9.081931], + [-11.846515, 9.082346], + [-11.846547, 9.083107], + [-11.846201, 9.08362], + [-11.845676, 9.0847], + [-11.845064, 9.085469], + [-11.84464, 9.08664], + [-11.84463, 9.087184], + [-11.84502, 9.088058], + [-11.844962, 9.088514], + [-11.845181, 9.089082], + [-11.84578, 9.08884], + [-11.847328, 9.086689], + [-11.847368, 9.086149], + [-11.847784, 9.085543], + [-11.8479, 9.084944], + [-11.848576, 9.084531], + [-11.849062, 9.083968], + [-11.849498, 9.083787], + [-11.849544, 9.08371], + [-11.849583, 9.08375], + [-11.85125, 9.084583], + [-11.85375, 9.085417], + [-11.856249, 9.088749], + [-11.856417, 9.088917], + [-11.8587, 9.086399], + [-11.8605, 9.083699], + [-11.8626, 9.079499], + [-11.8661, 9.075099], + [-11.869199, 9.0721], + [-11.871899, 9.0701], + [-11.875799, 9.0683], + [-11.876826, 9.067726], + [-11.875946, 9.066313], + [-11.875822, 9.065488], + [-11.875822, 9.065391], + [-11.875843, 9.064763], + [-11.876221, 9.063915], + [-11.876584, 9.062938], + [-11.876448, 9.061221], + [-11.87538, 9.060267], + [-11.874942, 9.060263], + [-11.874131, 9.059555], + [-11.873335, 9.057905], + [-11.873235, 9.057111], + [-11.873284, 9.056416], + [-11.873708, 9.055347], + [-11.873937, 9.053889], + [-11.873704, 9.0533], + [-11.873829, 9.051485], + [-11.873518, 9.050888], + [-11.873483, 9.050275], + [-11.87455, 9.048813], + [-11.874968, 9.048156], + [-11.875946, 9.047451], + [-11.87702, 9.04618], + [-11.877256, 9.045146], + [-11.877355, 9.043565], + [-11.878624, 9.041635], + [-11.878835, 9.040684], + [-11.881903, 9.037886], + [-11.882824, 9.037312], + [-11.884066, 9.035659], + [-11.883719, 9.035226], + [-11.883276, 9.034593], + [-11.882268, 9.034347], + [-11.8815, 9.03313], + [-11.881126, 9.032927], + [-11.880731, 9.032083], + [-11.884582, 9.032082], + [-11.884583, 9.022917], + [-11.885416, 9.020417], + [-11.882082, 9.017082], + [-11.879583, 9.012917], + [-11.887011, 9.011678], + [-11.886888, 9.010775], + [-11.887243, 9.009684], + [-11.887982, 9.009123], + [-11.888684, 9.00904], + [-11.889094, 9.008803], + [-11.889388, 9.008685], + [-11.889527, 9.008822], + [-11.889681, 9.00898], + [-11.889859, 9.008717], + [-11.890173, 9.008886], + [-11.890417, 9.007917], + [-11.894582, 9.007916], + [-11.894582, 9.004582], + [-11.892917, 8.99875], + [-11.900416, 9.000416], + [-11.902916, 8.997083], + [-11.897917, 8.990417], + [-11.897916, 8.989365], + [-11.896233, 8.988106], + [-11.895915, 8.988], + [-11.897083, 8.986249], + [-11.900416, 8.985416], + [-11.900416, 8.98111], + [-11.900278, 8.981115], + [-11.899559, 8.980753], + [-11.900416, 8.980491], + [-11.900417, 8.977083], + [-11.903139, 8.970275], + [-11.908182, 8.969216], + [-11.911287, 8.967121], + [-11.912917, 8.968749], + [-11.921249, 8.968749], + [-11.92125, 8.964583], + [-11.926249, 8.960416], + [-11.927916, 8.957083], + [-11.92625, 8.954582], + [-11.927916, 8.947083] + ] + ], + "type": "Polygon" + }, + "id": 374, + "properties": { + "cc:admin:id": ["113"], + "cc:oBld:total": 172, + "cc:pop:fifteen-to-twenty-four": 899.3371699072025, + "cc:pop:grid3-total": 6418.787205408733, + "cc:pop:kontur-total": 5078.161905751716, + "cc:pop:men": 2158.484316485318, + "cc:pop:sixty-plus": 310.63753605057946, + "cc:pop:total": 4694.388163714603, + "cc:pop:under-five": 786.9859477589823, + "cc:pop:women": 2535.903847229286, + "cc:pop:women-fiften-to-forty-nine": 1206.2410018677765, + "cc:pop:wp-total": 6363.422569032187, + "cc:pop:wp-total-UN": 7372.58110982385, + "cc:id": "374", + "cc:Name": "Masongbo Limba MCHP", + "cc:site": [-11.8873, 8.9817], + "user:parentName": "Safroko Limba", + "user:code": "OU_193272", + "user:orgUnitId": "PhR1PdMTzhW", + "user:level": "4", + "user:parentId": "XG8HGAbrbbL" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.988683, 8.302348], + [-12.986205, 8.300798], + [-12.984747, 8.299902], + [-12.983375, 8.29954], + [-12.983103, 8.300129], + [-12.982628, 8.300612], + [-12.981926, 8.301093], + [-12.98125, 8.300416], + [-12.982082, 8.292917], + [-12.982545, 8.292299], + [-12.982256, 8.291911], + [-12.9829, 8.291265], + [-12.982797, 8.29072], + [-12.982215, 8.290289], + [-12.981148, 8.288651], + [-12.982059, 8.287109], + [-12.981547, 8.286205], + [-12.980771, 8.286071], + [-12.979362, 8.283747], + [-12.978984, 8.281683], + [-12.978992, 8.280138], + [-12.980977, 8.279285], + [-12.981161, 8.278662], + [-12.980726, 8.278227], + [-12.976928, 8.279096], + [-12.976935, 8.277551], + [-12.975902, 8.277545], + [-12.975907, 8.276258], + [-12.975134, 8.275996], + [-12.975136, 8.275223], + [-12.974106, 8.274702], + [-12.973472, 8.272123], + [-12.97257, 8.271603], + [-12.972571, 8.271088], + [-12.972575, 8.271082], + [-12.967917, 8.270416], + [-12.967916, 8.26628], + [-12.965827, 8.26611], + [-12.964695, 8.265432], + [-12.964024, 8.263893], + [-12.963132, 8.261229], + [-12.963181, 8.260806], + [-12.960947, 8.26253], + [-12.942977, 8.256933], + [-12.911178, 8.269822], + [-12.89796, 8.279325], + [-12.896172, 8.296118], + [-12.903793, 8.303551], + [-12.911489, 8.339463], + [-12.917917, 8.33875], + [-12.922917, 8.345416], + [-12.927782, 8.346806], + [-12.927493, 8.339946], + [-12.927881, 8.339328], + [-12.928575, 8.339054], + [-12.929236, 8.338378], + [-12.930831, 8.337359], + [-12.930832, 8.337359], + [-12.932917, 8.342916], + [-12.934582, 8.34375], + [-12.934583, 8.346249], + [-12.937083, 8.347083], + [-12.939583, 8.34625], + [-12.944582, 8.347083], + [-12.944583, 8.340417], + [-12.944876, 8.339829], + [-12.946781, 8.342244], + [-12.948582, 8.343583], + [-12.949583, 8.342084], + [-12.951249, 8.342916], + [-12.956249, 8.338749], + [-12.957083, 8.33375], + [-12.964582, 8.335416], + [-12.965657, 8.330581], + [-12.965624, 8.330545], + [-12.96561, 8.330199], + [-12.965679, 8.33007], + [-12.965773, 8.330063], + [-12.96625, 8.327917], + [-12.968921, 8.328584], + [-12.970209, 8.328124], + [-12.970417, 8.327917], + [-12.97285, 8.329133], + [-12.973105, 8.328424], + [-12.972978, 8.328059], + [-12.973828, 8.326054], + [-12.974011, 8.325057], + [-12.97532, 8.324951], + [-12.976082, 8.325349], + [-12.97666, 8.325367], + [-12.976913, 8.325687], + [-12.978369, 8.323192], + [-12.978786, 8.322094], + [-12.978929, 8.320312], + [-12.980705, 8.320311], + [-12.981249, 8.315417], + [-12.98125, 8.31375], + [-12.983749, 8.308749], + [-12.98375, 8.303673], + [-12.984793, 8.303899], + [-12.986027, 8.303748], + [-12.988683, 8.302348] + ] + ], + "type": "Polygon" + }, + "id": 375, + "properties": { + "cc:admin:id": ["112"], + "cc:oBld:total": 60, + "cc:pop:fifteen-to-twenty-four": 949.4076033702129, + "cc:pop:grid3-total": 1342.9458111104386, + "cc:pop:kontur-total": 4120.494286340015, + "cc:pop:men": 1976.7226899919624, + "cc:pop:sixty-plus": 294.711989023287, + "cc:pop:total": 4137.2073273359365, + "cc:pop:under-five": 441.95439278414216, + "cc:pop:women": 2160.4846373439736, + "cc:pop:women-fiften-to-forty-nine": 1150.59171007193, + "cc:pop:wp-total": 3274.8507447623747, + "cc:pop:wp-total-UN": 3777.2940689233546, + "cc:id": "375", + "cc:Name": "Masorie CHP", + "cc:site": [-12.942, 8.3144], + "user:parentName": "Rural Western Area", + "user:code": "OU_278381", + "user:orgUnitId": "xWjiTeok0Sr", + "user:level": "4", + "user:parentId": "qtr8GGlm4gg" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.150733, 8.638278], + [-12.150499, 8.638], + [-12.136, 8.638699], + [-12.133099, 8.6391], + [-12.1297, 8.6401], + [-12.127199, 8.6418], + [-12.121, 8.648999], + [-12.1151, 8.655799], + [-12.112, 8.658799], + [-12.1088, 8.661499], + [-12.105199, 8.6635], + [-12.0951, 8.6662], + [-12.090499, 8.6691], + [-12.087699, 8.672], + [-12.0852, 8.6766], + [-12.0851, 8.681], + [-12.086399, 8.688199], + [-12.0853, 8.691799], + [-12.0825, 8.693899], + [-12.078599, 8.694099], + [-12.0752, 8.6919], + [-12.071199, 8.684499], + [-12.067899, 8.6812], + [-12.065099, 8.680199], + [-12.060699, 8.6797], + [-12.054699, 8.6799], + [-12.0503, 8.680799], + [-12.0457, 8.682399], + [-12.0428, 8.683099], + [-12.040262, 8.683326], + [-12.040181, 8.683749], + [-12.03875, 8.68375], + [-12.03875, 8.687916], + [-12.042083, 8.696249], + [-12.048749, 8.695417], + [-12.049582, 8.695417], + [-12.051249, 8.698749], + [-12.052916, 8.704583], + [-12.051599, 8.710511], + [-12.051597, 8.710511], + [-12.051362, 8.710308], + [-12.050832, 8.71086], + [-12.050489, 8.71089], + [-12.049537, 8.709773], + [-12.049008, 8.709517], + [-12.048794, 8.709587], + [-12.051741, 8.71469], + [-12.052917, 8.71375], + [-12.059913, 8.71375], + [-12.059904, 8.713851], + [-12.060509, 8.714995], + [-12.060488, 8.7156], + [-12.060618, 8.715818], + [-12.06073, 8.715486], + [-12.061388, 8.715203], + [-12.062011, 8.71519], + [-12.062829, 8.714726], + [-12.063134, 8.71477], + [-12.063054, 8.715324], + [-12.06328, 8.716813], + [-12.062871, 8.717719], + [-12.067092, 8.71772], + [-12.070721, 8.724005], + [-12.072083, 8.722917], + [-12.077082, 8.722917], + [-12.082083, 8.728749], + [-12.08375, 8.72875], + [-12.085416, 8.732083], + [-12.080417, 8.734582], + [-12.080255, 8.734906], + [-12.082466, 8.735926], + [-12.085416, 8.736659], + [-12.085416, 8.737916], + [-12.077083, 8.74625], + [-12.077917, 8.747916], + [-12.087916, 8.749583], + [-12.087917, 8.754582], + [-12.088877, 8.756506], + [-12.089209, 8.755043], + [-12.091751, 8.754147], + [-12.092082, 8.753978], + [-12.092083, 8.755417], + [-12.100417, 8.763749], + [-12.102916, 8.762082], + [-12.102917, 8.758749], + [-12.112918, 8.752498], + [-12.114205, 8.752398], + [-12.114477, 8.752245], + [-12.109583, 8.748749], + [-12.112916, 8.740417], + [-12.115416, 8.73875], + [-12.116249, 8.738749], + [-12.117082, 8.737083], + [-12.115417, 8.737082], + [-12.114582, 8.735417], + [-12.107917, 8.732082], + [-12.105537, 8.728751], + [-12.110967, 8.72875], + [-12.111829, 8.727254], + [-12.111622, 8.726703], + [-12.111665, 8.726407], + [-12.11278, 8.724317], + [-12.112871, 8.723861], + [-12.1119, 8.722742], + [-12.110833, 8.721884], + [-12.110152, 8.721635], + [-12.110064, 8.721568], + [-12.110064, 8.721566], + [-12.120416, 8.720416], + [-12.120416, 8.717917], + [-12.118422, 8.711932], + [-12.118509, 8.711937], + [-12.119861, 8.711484], + [-12.121335, 8.710339], + [-12.123182, 8.70937], + [-12.122938, 8.706077], + [-12.121679, 8.687063], + [-12.121652, 8.686712], + [-12.121645, 8.686707], + [-12.121626, 8.686416], + [-12.121628, 8.686414], + [-12.121606, 8.686133], + [-12.121521, 8.685771], + [-12.121443, 8.685584], + [-12.121635, 8.685552], + [-12.121782, 8.685306], + [-12.121894, 8.684748], + [-12.12235, 8.683285], + [-12.123192, 8.683428], + [-12.123827, 8.681931], + [-12.123891, 8.680312], + [-12.123679, 8.678679], + [-12.123157, 8.678452], + [-12.121932, 8.676537], + [-12.121499, 8.67625], + [-12.127916, 8.676249], + [-12.13125, 8.672082], + [-12.131249, 8.66674], + [-12.127994, 8.66619], + [-12.128107, 8.665881], + [-12.128578, 8.664196], + [-12.127158, 8.664499], + [-12.126191, 8.663752], + [-12.125185, 8.662714], + [-12.124862, 8.661933], + [-12.125483, 8.661232], + [-12.126189, 8.660432], + [-12.128001, 8.658256], + [-12.125248, 8.659286], + [-12.125246, 8.659285], + [-12.125225, 8.659212], + [-12.131249, 8.647917], + [-12.129582, 8.64625], + [-12.125387, 8.646249], + [-12.125564, 8.645242], + [-12.126195, 8.643527], + [-12.127157, 8.642615], + [-12.127621, 8.642303], + [-12.128805, 8.641937], + [-12.131894, 8.641896], + [-12.137961, 8.640547], + [-12.142448, 8.640381], + [-12.144257, 8.640115], + [-12.148583, 8.638632], + [-12.150733, 8.638278] + ] + ], + "type": "Polygon" + }, + "id": 376, + "properties": { + "cc:admin:id": ["8"], + "cc:oBld:total": 33, + "cc:pop:fifteen-to-twenty-four": 427.8632850166972, + "cc:pop:grid3-total": 2934.1620889285628, + "cc:pop:kontur-total": 2318.6100233687935, + "cc:pop:men": 1135.3226209754512, + "cc:pop:sixty-plus": 140.92082788631126, + "cc:pop:total": 2384.121555158282, + "cc:pop:under-five": 383.7605028584453, + "cc:pop:women": 1248.7989341828302, + "cc:pop:women-fiften-to-forty-nine": 591.8184006774726, + "cc:pop:wp-total": 1669.3310386182457, + "cc:pop:wp-total-UN": 1931.8062715143667, + "cc:id": "376", + "cc:Name": "Masory MCHP", + "cc:site": [-12.0972, 8.7112], + "user:parentName": "Bombali Sebora", + "user:code": "OU_193201", + "user:orgUnitId": "dqHvtpUqLwB", + "user:level": "4", + "user:parentId": "KKkLOTpMXGV" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.269369, 8.682298], + [-11.268758, 8.680422], + [-11.268742, 8.680061], + [-11.269203, 8.679366], + [-11.26915, 8.677169], + [-11.268684, 8.67628], + [-11.268874, 8.673431], + [-11.268187, 8.672107], + [-11.26783, 8.671751], + [-11.267831, 8.67175], + [-11.268181, 8.671756], + [-11.268148, 8.670831], + [-11.268545, 8.668169], + [-11.268422, 8.665001], + [-11.268199, 8.664754], + [-11.2682, 8.664381], + [-11.26782, 8.663986], + [-11.26704, 8.66423], + [-11.266329, 8.664749], + [-11.267092, 8.665577], + [-11.266981, 8.665829], + [-11.266822, 8.665668], + [-11.260417, 8.66625], + [-11.25375, 8.669582], + [-11.254582, 8.65875], + [-11.253141, 8.657789], + [-11.252695, 8.658019], + [-11.251719, 8.658057], + [-11.25063, 8.658496], + [-11.249812, 8.659556], + [-11.249215, 8.660711], + [-11.248655, 8.661307], + [-11.246301, 8.662119], + [-11.244859, 8.663294], + [-11.243613, 8.663656], + [-11.243105, 8.664079], + [-11.240968, 8.666778], + [-11.239262, 8.668073], + [-11.237839, 8.669746], + [-11.237307, 8.67064], + [-11.237083, 8.670416], + [-11.237082, 8.667084], + [-11.232917, 8.659584], + [-11.232916, 8.657084], + [-11.22625, 8.657084], + [-11.227082, 8.659584], + [-11.227082, 8.667083], + [-11.224366, 8.667627], + [-11.224387, 8.667704], + [-11.224342, 8.668096], + [-11.220416, 8.668749], + [-11.215416, 8.66375], + [-11.21125, 8.66375], + [-11.212082, 8.672082], + [-11.210636, 8.673049], + [-11.2138, 8.676699], + [-11.218499, 8.679299], + [-11.219799, 8.6817], + [-11.219899, 8.6854], + [-11.2191, 8.688899], + [-11.2175, 8.6922], + [-11.2174, 8.6947], + [-11.2188, 8.6965], + [-11.2216, 8.696999], + [-11.229899, 8.6969], + [-11.233499, 8.697999], + [-11.2349, 8.7001], + [-11.236, 8.703499], + [-11.237999, 8.706299], + [-11.2411, 8.707799], + [-11.245, 8.7083], + [-11.2508, 8.708099], + [-11.254099, 8.707099], + [-11.2567, 8.705199], + [-11.258699, 8.7033], + [-11.260299, 8.7011], + [-11.2621, 8.697099], + [-11.266299, 8.689], + [-11.26909, 8.685349], + [-11.268762, 8.683766], + [-11.268931, 8.683048], + [-11.269369, 8.682298] + ] + ], + "type": "Polygon" + }, + "id": 377, + "properties": { + "cc:admin:id": ["101"], + "cc:oBld:total": 308, + "cc:pop:fifteen-to-twenty-four": 458.75604898251987, + "cc:pop:grid3-total": 4752.218948358866, + "cc:pop:kontur-total": 2376.853034732805, + "cc:pop:men": 1333.5199097175016, + "cc:pop:sixty-plus": 133.77135091891193, + "cc:pop:total": 2437.4138085787527, + "cc:pop:under-five": 370.5753561555466, + "cc:pop:women": 1103.893898861251, + "cc:pop:women-fiften-to-forty-nine": 573.1276984200715, + "cc:pop:wp-total": 2280.3977772154567, + "cc:pop:wp-total-UN": 2641.0996736399165, + "cc:id": "377", + "cc:Name": "Massabendu CHP", + "cc:site": [-11.2511, 8.6949], + "user:parentName": "Nimiyama", + "user:code": "OU_233335", + "user:orgUnitId": "Z0q0Y3GRugt", + "user:level": "4", + "user:parentId": "qgQ49DH9a0v" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.988698, 8.067584], + [-10.9884, 8.0634], + [-10.9878, 8.0609], + [-10.9819, 8.0491], + [-10.981, 8.0458], + [-10.980699, 8.041799], + [-10.980299, 8.0246], + [-10.9767, 8.027899], + [-10.974199, 8.0308], + [-10.97, 8.037999], + [-10.9665, 8.045499], + [-10.964799, 8.0513], + [-10.963899, 8.0649], + [-10.962599, 8.069299], + [-10.960174, 8.071899], + [-10.960352, 8.072532], + [-10.960198, 8.073229], + [-10.960426, 8.074166], + [-10.960679, 8.074207], + [-10.961121, 8.075258], + [-10.960653, 8.075406], + [-10.960612, 8.075596], + [-10.960175, 8.075612], + [-10.959588, 8.075889], + [-10.959256, 8.075796], + [-10.958712, 8.076135], + [-10.958166, 8.076691], + [-10.957255, 8.078742], + [-10.9574, 8.079568], + [-10.957649, 8.079663], + [-10.958058, 8.080258], + [-10.959089, 8.080997], + [-10.959266, 8.080992], + [-10.957833, 8.079568], + [-10.957481, 8.07874], + [-10.958074, 8.077326], + [-10.958743, 8.076384], + [-10.959273, 8.076049], + [-10.960835, 8.075725], + [-10.961384, 8.075307], + [-10.961278, 8.074663], + [-10.960825, 8.074203], + [-10.960732, 8.07375], + [-10.971249, 8.073749], + [-10.97125, 8.07125], + [-10.972916, 8.070417], + [-10.977917, 8.072916], + [-10.983749, 8.072916], + [-10.987811, 8.070885], + [-10.988005, 8.069249], + [-10.988679, 8.068219], + [-10.988699, 8.0676], + [-10.988698, 8.067584] + ] + ], + "type": "Polygon" + }, + "id": 378, + "properties": { + "cc:admin:id": ["86"], + "cc:oBld:total": 119, + "cc:pop:fifteen-to-twenty-four": 275.06728697684144, + "cc:pop:grid3-total": 668.0449034748857, + "cc:pop:kontur-total": 1512.8523008883233, + "cc:pop:men": 704.3526472509245, + "cc:pop:sixty-plus": 86.41038496320866, + "cc:pop:total": 1408.7052945018486, + "cc:pop:under-five": 223.2812305612976, + "cc:pop:women": 704.3526472509245, + "cc:pop:women-fiften-to-forty-nine": 344.89406905762286, + "cc:pop:wp-total": 1047.9967856281614, + "cc:pop:wp-total-UN": 1214.5479706434785, + "cc:id": "378", + "cc:Name": "Massahun MCHP", + "cc:site": [-10.968, 8.0509], + "user:parentName": "Nongowa", + "user:code": "OU_222712", + "user:orgUnitId": "GA7eQkgK5mX", + "user:level": "4", + "user:parentId": "KIUCimTXf8Q" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.749268, 7.28212], + [-11.748926, 7.281817], + [-11.747027, 7.281451], + [-11.744967, 7.280422], + [-11.743245, 7.279933], + [-11.739446, 7.27935], + [-11.737917, 7.278963], + [-11.737916, 7.278306], + [-11.737038, 7.278044], + [-11.736658, 7.277794], + [-11.73495, 7.275782], + [-11.731762, 7.273696], + [-11.727696, 7.267084], + [-11.726373, 7.265974], + [-11.726931, 7.260946], + [-11.726587, 7.260733], + [-11.726759, 7.260049], + [-11.727273, 7.260375], + [-11.727979, 7.261176], + [-11.728322, 7.261755], + [-11.728782, 7.263569], + [-11.729412, 7.264418], + [-11.730109, 7.265035], + [-11.731417, 7.265785], + [-11.732294, 7.266771], + [-11.733074, 7.267115], + [-11.733571, 7.26708], + [-11.734983, 7.266078], + [-11.734938, 7.264187], + [-11.735175, 7.262502], + [-11.735992, 7.260348], + [-11.738194, 7.257875], + [-11.73943, 7.256142], + [-11.737399, 7.2556], + [-11.732899, 7.2556], + [-11.729499, 7.2564], + [-11.725199, 7.2584], + [-11.7227, 7.258599], + [-11.7202, 7.2577], + [-11.718099, 7.255999], + [-11.7113, 7.2492], + [-11.7073, 7.2459], + [-11.702299, 7.243199], + [-11.6949, 7.2377], + [-11.691699, 7.236299], + [-11.687999, 7.234399], + [-11.685599, 7.233599], + [-11.681299, 7.232699], + [-11.676, 7.2303], + [-11.671799, 7.228899], + [-11.6689, 7.2275], + [-11.669199, 7.264999], + [-11.6695, 7.2711], + [-11.6702, 7.2739], + [-11.6722, 7.2784], + [-11.6738, 7.2842], + [-11.6761, 7.2896], + [-11.6769, 7.2932], + [-11.677299, 7.299999], + [-11.677999, 7.303599], + [-11.68, 7.3082], + [-11.680699, 7.310899], + [-11.681299, 7.315699], + [-11.681999, 7.318499], + [-11.6843, 7.3239], + [-11.6849, 7.3276], + [-11.685199, 7.331499], + [-11.685099, 7.3368], + [-11.683999, 7.340999], + [-11.681699, 7.3439], + [-11.678299, 7.3467], + [-11.6746, 7.352699], + [-11.673299, 7.3558], + [-11.671, 7.360199], + [-11.669599, 7.3633], + [-11.668099, 7.3657], + [-11.6662, 7.367899], + [-11.662, 7.371899], + [-11.659699, 7.3736], + [-11.6514, 7.377699], + [-11.648, 7.3785], + [-11.6456, 7.379899], + [-11.6444, 7.381999], + [-11.643896, 7.383603], + [-11.644583, 7.382916], + [-11.64625, 7.379584], + [-11.654582, 7.38125], + [-11.656533, 7.385151], + [-11.656828, 7.384906], + [-11.657083, 7.385416], + [-11.661249, 7.384584], + [-11.662083, 7.38625], + [-11.668749, 7.387916], + [-11.672916, 7.387916], + [-11.673749, 7.38375], + [-11.67375, 7.382917], + [-11.680416, 7.382083], + [-11.683749, 7.377916], + [-11.683749, 7.36875], + [-11.682084, 7.36625], + [-11.688749, 7.36625], + [-11.688749, 7.367917], + [-11.685417, 7.37125], + [-11.685417, 7.378749], + [-11.696619, 7.380243], + [-11.696619, 7.380245], + [-11.6965, 7.380276], + [-11.696341, 7.380541], + [-11.69587, 7.381743], + [-11.695832, 7.382717], + [-11.696544, 7.384558], + [-11.696611, 7.386712], + [-11.697308, 7.387338], + [-11.698498, 7.387822], + [-11.698751, 7.388165], + [-11.698921, 7.38864], + [-11.698873, 7.389907], + [-11.699168, 7.390609], + [-11.698757, 7.390997], + [-11.698707, 7.391655], + [-11.698032, 7.392657], + [-11.697166, 7.39294], + [-11.696588, 7.393499], + [-11.696227, 7.39363], + [-11.695536, 7.393374], + [-11.695046, 7.392913], + [-11.69452, 7.392798], + [-11.694065, 7.3938], + [-11.694279, 7.394637], + [-11.694613, 7.395084], + [-11.694707, 7.396629], + [-11.696178, 7.399013], + [-11.696444, 7.399167], + [-11.698737, 7.399841], + [-11.699089, 7.39933], + [-11.699537, 7.399588], + [-11.700013, 7.399363], + [-11.700202, 7.39938], + [-11.699946, 7.399327], + [-11.699339, 7.399025], + [-11.69828, 7.397842], + [-11.697881, 7.398401], + [-11.69733, 7.398782], + [-11.696533, 7.398617], + [-11.696304, 7.398642], + [-11.695288, 7.39701], + [-11.694969, 7.396079], + [-11.694947, 7.395495], + [-11.695163, 7.395033], + [-11.694667, 7.394624], + [-11.694435, 7.394148], + [-11.694365, 7.393886], + [-11.694581, 7.39344], + [-11.694954, 7.393255], + [-11.695987, 7.394017], + [-11.696755, 7.394054], + [-11.697616, 7.393524], + [-11.698106, 7.393], + [-11.699443, 7.390928], + [-11.69985, 7.389926], + [-11.699695, 7.389482], + [-11.699525, 7.387916], + [-11.697726, 7.386342], + [-11.697753, 7.385885], + [-11.698411, 7.384988], + [-11.697385, 7.384062], + [-11.697516, 7.383643], + [-11.696857, 7.38273], + [-11.696681, 7.381767], + [-11.699325, 7.378316], + [-11.699649, 7.377542], + [-11.699721, 7.376487], + [-11.699326, 7.376123], + [-11.69892, 7.373271], + [-11.699722, 7.372627], + [-11.701588, 7.370358], + [-11.702344, 7.369967], + [-11.702728, 7.369994], + [-11.704343, 7.371947], + [-11.70543, 7.372649], + [-11.706213, 7.372622], + [-11.707185, 7.371529], + [-11.707236, 7.371502], + [-11.707063, 7.370526], + [-11.706574, 7.369699], + [-11.706019, 7.369363], + [-11.705581, 7.368143], + [-11.705585, 7.367055], + [-11.705801, 7.366688], + [-11.705449, 7.365809], + [-11.70545, 7.365808], + [-11.705662, 7.365815], + [-11.705946, 7.36423], + [-11.705517, 7.361813], + [-11.705868, 7.361445], + [-11.705785, 7.361277], + [-11.70522, 7.361183], + [-11.704658, 7.360569], + [-11.704491, 7.359559], + [-11.704763, 7.358799], + [-11.704781, 7.358771], + [-11.70553, 7.357913], + [-11.706823, 7.357931], + [-11.707568, 7.357639], + [-11.708072, 7.356888], + [-11.707976, 7.356392], + [-11.708228, 7.355923], + [-11.709237, 7.355364], + [-11.710661, 7.353849], + [-11.711256, 7.353749], + [-11.712349, 7.35435], + [-11.712916, 7.352084], + [-11.713749, 7.351249], + [-11.712917, 7.345417], + [-11.715729, 7.345416], + [-11.717632, 7.342216], + [-11.718323, 7.340477], + [-11.719068, 7.337466], + [-11.720419, 7.33471], + [-11.721047, 7.332993], + [-11.720373, 7.329206], + [-11.718929, 7.326157], + [-11.718704, 7.32491], + [-11.718805, 7.323324], + [-11.719184, 7.322515], + [-11.719077, 7.31976], + [-11.71927, 7.31929], + [-11.719775, 7.319175], + [-11.720808, 7.319375], + [-11.72156, 7.319583], + [-11.722376, 7.320105], + [-11.724765, 7.320583], + [-11.726007, 7.319752], + [-11.726566, 7.319098], + [-11.728375, 7.316587], + [-11.728515, 7.315856], + [-11.729284, 7.314193], + [-11.730895, 7.311266], + [-11.732912, 7.308237], + [-11.733966, 7.305897], + [-11.735239, 7.305281], + [-11.735791, 7.305174], + [-11.738952, 7.303503], + [-11.739637, 7.302807], + [-11.73976, 7.302325], + [-11.739537, 7.301634], + [-11.739809, 7.29949], + [-11.741339, 7.295733], + [-11.742308, 7.293869], + [-11.743031, 7.291508], + [-11.743912, 7.289784], + [-11.744506, 7.287146], + [-11.747267, 7.284625], + [-11.748474, 7.283834], + [-11.748377, 7.283664], + [-11.749268, 7.28212] + ] + ], + "type": "Polygon" + }, + "id": 379, + "properties": { + "cc:admin:id": ["66"], + "cc:oBld:total": 55, + "cc:pop:fifteen-to-twenty-four": 2023.6255348725915, + "cc:pop:grid3-total": 11069.260624395669, + "cc:pop:kontur-total": 11466.356967525317, + "cc:pop:men": 5552.30670067452, + "cc:pop:sixty-plus": 857.8364856471, + "cc:pop:total": 11425.384199763124, + "cc:pop:under-five": 1911.7530385288214, + "cc:pop:women": 5873.077499088601, + "cc:pop:women-fiften-to-forty-nine": 2826.52517172472, + "cc:pop:wp-total": 9285.003942806608, + "cc:pop:wp-total-UN": 10757.87553730853, + "cc:id": "379", + "cc:Name": "Massam MCHP", + "cc:site": [-11.686, 7.3549], + "user:parentName": "Kpaka", + "user:code": "OU_260441", + "user:orgUnitId": "vpNGJvZ0ljF", + "user:level": "4", + "user:parentId": "zSNUViKdkk3" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.798999, 9.2037], + [-12.797799, 9.200499], + [-12.795599, 9.1995], + [-12.790199, 9.198799], + [-12.786999, 9.197399], + [-12.7847, 9.194999], + [-12.781199, 9.1874], + [-12.7732, 9.1815], + [-12.769299, 9.179799], + [-12.7648, 9.1776], + [-12.758899, 9.176099], + [-12.752699, 9.173599], + [-12.749899, 9.173099], + [-12.746899, 9.1729], + [-12.743, 9.173099], + [-12.7393, 9.173799], + [-12.734, 9.176199], + [-12.7282, 9.177699], + [-12.7237, 9.179699], + [-12.720899, 9.1803], + [-12.715999, 9.1806], + [-12.7019, 9.1806], + [-12.6986, 9.179999], + [-12.6961, 9.1784], + [-12.694499, 9.176499], + [-12.690899, 9.168999], + [-12.690199, 9.165199], + [-12.69, 9.1521], + [-12.689699, 9.149199], + [-12.688799, 9.146599], + [-12.6855, 9.1398], + [-12.6829, 9.1347], + [-12.681399, 9.128799], + [-12.6772, 9.1205], + [-12.672399, 9.114299], + [-12.6694, 9.1073], + [-12.666999, 9.1022], + [-12.663999, 9.1013], + [-12.6611, 9.1016], + [-12.6591, 9.1029], + [-12.6577, 9.1069], + [-12.6579, 9.1122], + [-12.660599, 9.120699], + [-12.660899, 9.1249], + [-12.6596, 9.130799], + [-12.6579, 9.135099], + [-12.656299, 9.138], + [-12.652, 9.1434], + [-12.651, 9.146499], + [-12.6507, 9.1508], + [-12.6509, 9.1553], + [-12.6513, 9.1582], + [-12.653299, 9.166399], + [-12.653599, 9.1699], + [-12.652699, 9.1744], + [-12.651199, 9.1778], + [-12.648599, 9.1813], + [-12.6423, 9.187799], + [-12.6368, 9.192899], + [-12.6332, 9.195499], + [-12.630599, 9.1967], + [-12.6208, 9.200099], + [-12.6155, 9.201599], + [-12.611999, 9.203], + [-12.605599, 9.2065], + [-12.5971, 9.213299], + [-12.5933, 9.215099], + [-12.589, 9.215699], + [-12.584699, 9.215599], + [-12.580599, 9.214799], + [-12.5747, 9.2129], + [-12.570799, 9.2125], + [-12.5668, 9.2128], + [-12.561799, 9.2152], + [-12.5569, 9.219299], + [-12.5552, 9.2215], + [-12.554099, 9.2257], + [-12.553699, 9.2366], + [-12.552199, 9.2437], + [-12.550399, 9.2479], + [-12.548199, 9.250499], + [-12.545299, 9.251999], + [-12.5418, 9.252499], + [-12.5374, 9.2509], + [-12.5343, 9.247099], + [-12.532499, 9.241499], + [-12.531699, 9.2322], + [-12.530199, 9.2289], + [-12.525899, 9.2272], + [-12.5221, 9.2283], + [-12.5202, 9.2322], + [-12.519399, 9.2415], + [-12.5164, 9.256699], + [-12.5136, 9.268599], + [-12.512299, 9.271699], + [-12.509699, 9.274199], + [-12.506499, 9.275299], + [-12.5024, 9.2746], + [-12.4978, 9.270599], + [-12.495899, 9.266199], + [-12.494, 9.2573], + [-12.493, 9.2542], + [-12.491399, 9.2514], + [-12.489199, 9.2499], + [-12.4855, 9.2501], + [-12.4831, 9.2522], + [-12.4795, 9.258799], + [-12.4776, 9.264099], + [-12.473699, 9.266799], + [-12.4686, 9.266599], + [-12.464599, 9.2643], + [-12.4563, 9.2639], + [-12.4516, 9.263], + [-12.448799, 9.261899], + [-12.442899, 9.258], + [-12.4395, 9.2572], + [-12.435599, 9.2591], + [-12.434099, 9.2618], + [-12.4297, 9.273899], + [-12.4284, 9.278399], + [-12.4278, 9.282299], + [-12.4273, 9.291999], + [-12.426599, 9.295899], + [-12.424699, 9.299299], + [-12.4187, 9.304999], + [-12.411099, 9.296599], + [-12.400599, 9.285899], + [-12.3953, 9.2806], + [-12.3919, 9.2778], + [-12.388, 9.2758], + [-12.3838, 9.275], + [-12.3799, 9.2752], + [-12.3768, 9.2765], + [-12.3753, 9.2787], + [-12.375, 9.281799], + [-12.376499, 9.286199], + [-12.3784, 9.288899], + [-12.3853, 9.2941], + [-12.393199, 9.300899], + [-12.3967, 9.3037], + [-12.406399, 9.309299], + [-12.413099, 9.3127], + [-12.4104, 9.317399], + [-12.4083, 9.322099], + [-12.4063, 9.325099], + [-12.400899, 9.3305], + [-12.397499, 9.3363], + [-12.393399, 9.346], + [-12.391, 9.349299], + [-12.3889, 9.351199], + [-12.385699, 9.352699], + [-12.3809, 9.353099], + [-12.3726, 9.3508], + [-12.3662, 9.35], + [-12.364999, 9.3552], + [-12.3637, 9.361599], + [-12.366799, 9.3654], + [-12.367699, 9.3693], + [-12.367599, 9.3745], + [-12.365399, 9.3838], + [-12.3651, 9.3879], + [-12.3657, 9.3918], + [-12.3676, 9.395799], + [-12.370199, 9.398299], + [-12.375399, 9.400899], + [-12.3808, 9.4019], + [-12.390899, 9.401999], + [-12.395099, 9.4024], + [-12.398199, 9.4037], + [-12.400799, 9.4062], + [-12.402399, 9.4108], + [-12.402799, 9.424099], + [-12.403999, 9.431299], + [-12.407799, 9.438999], + [-12.4096, 9.4449], + [-12.4104, 9.4519], + [-12.4105, 9.463599], + [-12.411899, 9.466999], + [-12.413399, 9.469499], + [-12.4162, 9.471199], + [-12.4204, 9.470999], + [-12.428799, 9.4684], + [-12.433399, 9.4666], + [-12.4378, 9.465799], + [-12.4423, 9.465399], + [-12.450099, 9.4653], + [-12.469299, 9.465799], + [-12.472999, 9.4643], + [-12.475399, 9.4638], + [-12.4783, 9.463599], + [-12.486999, 9.4634], + [-12.4907, 9.462799], + [-12.495999, 9.4606], + [-12.5003, 9.459599], + [-12.5023, 9.458799], + [-12.504199, 9.4576], + [-12.506299, 9.4557], + [-12.507999, 9.4537], + [-12.5107, 9.4498], + [-12.5152, 9.446799], + [-12.5174, 9.445699], + [-12.522499, 9.4446], + [-12.524899, 9.4438], + [-12.531699, 9.4405], + [-12.5335, 9.438999], + [-12.535, 9.437099], + [-12.5365, 9.434199], + [-12.5396, 9.4309], + [-12.5464, 9.427399], + [-12.5488, 9.426499], + [-12.5539, 9.425299], + [-12.558099, 9.4234], + [-12.560899, 9.4229], + [-12.564399, 9.4232], + [-12.569799, 9.425499], + [-12.5743, 9.426099], + [-12.5769, 9.425499], + [-12.580899, 9.4233], + [-12.584, 9.421899], + [-12.5875, 9.419999], + [-12.5907, 9.419099], + [-12.595699, 9.4188], + [-12.598899, 9.418099], + [-12.6024, 9.415799], + [-12.6042, 9.413899], + [-12.605999, 9.4109], + [-12.6072, 9.405099], + [-12.609599, 9.3999], + [-12.6108, 9.396699], + [-12.613199, 9.3925], + [-12.615299, 9.3883], + [-12.620099, 9.382], + [-12.621999, 9.3781], + [-12.6239, 9.375299], + [-12.6263, 9.372699], + [-12.630799, 9.3682], + [-12.637299, 9.3619], + [-12.64, 9.360099], + [-12.6443, 9.357799], + [-12.6481, 9.354699], + [-12.654499, 9.3483], + [-12.655784, 9.347279], + [-12.6579, 9.345599], + [-12.661899, 9.3436], + [-12.6647, 9.341599], + [-12.670599, 9.336], + [-12.673099, 9.3334], + [-12.675499, 9.3303], + [-12.6776, 9.325999], + [-12.679899, 9.3217], + [-12.6813, 9.318599], + [-12.6832, 9.315899], + [-12.6866, 9.311599], + [-12.6905, 9.303799], + [-12.6912, 9.301599], + [-12.6923, 9.2965], + [-12.693699, 9.2941], + [-12.6954, 9.291999], + [-12.705599, 9.2818], + [-12.7082, 9.279499], + [-12.7104, 9.277999], + [-12.7136, 9.276599], + [-12.717799, 9.2742], + [-12.720999, 9.2729], + [-12.725299, 9.2706], + [-12.7285, 9.269199], + [-12.7319, 9.266699], + [-12.741099, 9.2576], + [-12.743899, 9.2556], + [-12.747, 9.254199], + [-12.751299, 9.2518], + [-12.7545, 9.250599], + [-12.758899, 9.2484], + [-12.764799, 9.2471], + [-12.7678, 9.245499], + [-12.770299, 9.2432], + [-12.772299, 9.2405], + [-12.774499, 9.2359], + [-12.7776, 9.231999], + [-12.7812, 9.228499], + [-12.784, 9.226399], + [-12.7879, 9.224499], + [-12.7909, 9.222299], + [-12.7936, 9.219599], + [-12.7948, 9.217399], + [-12.796399, 9.2107], + [-12.798499, 9.2062], + [-12.798999, 9.2037] + ] + ], + "type": "Polygon" + }, + "id": 380, + "properties": { + "cc:admin:id": ["137"], + "cc:oBld:total": 2481, + "cc:pop:fifteen-to-twenty-four": 11608.871138244729, + "cc:pop:grid3-total": 48760.438529064035, + "cc:pop:kontur-total": 63322.79768354242, + "cc:pop:men": 29224.04630902568, + "cc:pop:sixty-plus": 4060.128021635624, + "cc:pop:total": 61437.29470657933, + "cc:pop:under-five": 10008.089322402067, + "cc:pop:women": 32213.248397553598, + "cc:pop:women-fiften-to-forty-nine": 16026.983629296408, + "cc:pop:wp-total": 53187.607837890704, + "cc:pop:wp-total-UN": 61685.44252485015, + "cc:id": "380", + "cc:Name": "Masselleh MCHP", + "cc:site": [-12.7107, 9.2148], + "user:parentName": "Tonko Limba", + "user:code": "OU_211275", + "user:orgUnitId": "cag6vQQ9SQk", + "user:level": "4", + "user:parentId": "y5X4mP5XylL" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.530417, 8.667916], + [-11.530416, 8.666249], + [-11.525417, 8.65875], + [-11.524583, 8.658749], + [-11.524583, 8.64875], + [-11.525416, 8.64375], + [-11.519583, 8.644583], + [-11.515416, 8.640417], + [-11.509583, 8.642083], + [-11.509214, 8.641347], + [-11.5088, 8.641612], + [-11.507083, 8.63875], + [-11.510416, 8.633749], + [-11.510416, 8.632084], + [-11.507917, 8.630416], + [-11.507916, 8.62625], + [-11.505416, 8.625416], + [-11.501249, 8.617917], + [-11.499583, 8.617083], + [-11.500417, 8.615417], + [-11.502916, 8.614583], + [-11.502917, 8.612916], + [-11.509582, 8.608749], + [-11.510416, 8.60375], + [-11.508749, 8.602917], + [-11.499583, 8.602916], + [-11.499583, 8.597576], + [-11.499648, 8.597563], + [-11.50069, 8.596912], + [-11.502671, 8.596248], + [-11.502889, 8.596318], + [-11.503584, 8.595961], + [-11.505416, 8.595694], + [-11.505416, 8.59125], + [-11.499856, 8.591944], + [-11.499833, 8.592084], + [-11.496249, 8.592083], + [-11.494583, 8.590416], + [-11.493749, 8.582917], + [-11.485417, 8.57375], + [-11.487916, 8.56875], + [-11.483749, 8.569583], + [-11.482916, 8.567083], + [-11.482083, 8.555417], + [-11.493749, 8.555416], + [-11.49375, 8.552099], + [-11.493097, 8.55243], + [-11.492673, 8.552496], + [-11.492654, 8.552497], + [-11.48875, 8.54625], + [-11.487916, 8.54125], + [-11.484583, 8.54125], + [-11.479583, 8.547916], + [-11.479582, 8.549584], + [-11.47375, 8.554584], + [-11.474206, 8.555954], + [-11.474154, 8.555995], + [-11.472719, 8.556832], + [-11.472167, 8.557681], + [-11.470588, 8.559117], + [-11.471249, 8.563749], + [-11.470416, 8.565417], + [-11.46125, 8.569583], + [-11.458749, 8.565417], + [-11.44872, 8.565417], + [-11.449075, 8.567186], + [-11.450532, 8.569475], + [-11.451131, 8.570744], + [-11.451194, 8.573387], + [-11.451724, 8.574823], + [-11.449515, 8.575149], + [-11.448866, 8.57507], + [-11.4484, 8.574729], + [-11.446609, 8.574218], + [-11.444583, 8.574742], + [-11.444583, 8.579583], + [-11.455416, 8.58375], + [-11.455416, 8.594582], + [-11.455415, 8.594583], + [-11.453749, 8.59375], + [-11.450218, 8.595515], + [-11.449036, 8.595515], + [-11.445129, 8.588751], + [-11.43875, 8.588751], + [-11.43875, 8.592916], + [-11.443749, 8.597917], + [-11.442082, 8.602917], + [-11.432083, 8.612083], + [-11.428749, 8.612084], + [-11.42375, 8.612917], + [-11.423749, 8.620417], + [-11.42092, 8.625368], + [-11.421041, 8.625415], + [-11.419582, 8.631249], + [-11.417917, 8.633749], + [-11.40875, 8.632917], + [-11.40784, 8.632007], + [-11.407827, 8.63202], + [-11.40782, 8.632543], + [-11.408577, 8.633325], + [-11.40979, 8.635246], + [-11.40993, 8.635584], + [-11.414583, 8.63625], + [-11.417916, 8.641249], + [-11.407083, 8.64625], + [-11.407083, 8.650416], + [-11.408749, 8.651249], + [-11.40875, 8.652916], + [-11.410415, 8.65375], + [-11.402083, 8.659584], + [-11.402916, 8.665416], + [-11.402083, 8.670416], + [-11.40125, 8.670417], + [-11.399052, 8.678474], + [-11.398718, 8.678413], + [-11.398351, 8.677732], + [-11.397933, 8.677575], + [-11.397362, 8.677938], + [-11.397409, 8.678112], + [-11.397198, 8.678387], + [-11.396617, 8.678436], + [-11.396471, 8.678177], + [-11.39625, 8.678256], + [-11.39625, 8.685416], + [-11.399581, 8.689582], + [-11.38875, 8.68875], + [-11.387355, 8.68968], + [-11.389099, 8.695399], + [-11.3916, 8.7008], + [-11.393499, 8.706499], + [-11.3942, 8.7105], + [-11.394899, 8.718899], + [-11.396099, 8.724099], + [-11.399599, 8.7314], + [-11.399999, 8.7356], + [-11.3991, 8.741199], + [-11.3989, 8.7451], + [-11.399199, 8.749099], + [-11.400199, 8.752699], + [-11.4023, 8.7571], + [-11.408499, 8.764599], + [-11.410899, 8.767999], + [-11.4129, 8.7722], + [-11.416999, 8.781999], + [-11.421899, 8.789199], + [-11.42409, 8.792703], + [-11.432082, 8.791249], + [-11.424583, 8.783749], + [-11.425605, 8.781705], + [-11.425728, 8.78168], + [-11.426871, 8.781895], + [-11.428667, 8.781956], + [-11.429518, 8.781778], + [-11.431799, 8.780489], + [-11.432425, 8.780306], + [-11.433441, 8.778876], + [-11.433522, 8.778304], + [-11.434172, 8.777751], + [-11.434833, 8.776672], + [-11.434825, 8.775153], + [-11.434012, 8.775064], + [-11.433427, 8.774811], + [-11.432963, 8.774172], + [-11.432671, 8.77286], + [-11.432043, 8.771752], + [-11.431732, 8.771477], + [-11.431732, 8.771476], + [-11.441249, 8.767082], + [-11.439582, 8.76125], + [-11.437501, 8.759167], + [-11.444067, 8.759166], + [-11.447395, 8.753405], + [-11.45254, 8.753009], + [-11.453174, 8.750103], + [-11.453175, 8.748628], + [-11.458749, 8.743749], + [-11.45875, 8.742083], + [-11.460465, 8.742083], + [-11.460667, 8.742894], + [-11.461266, 8.743571], + [-11.461879, 8.744582], + [-11.464583, 8.744582], + [-11.467916, 8.743749], + [-11.467083, 8.740417], + [-11.46625, 8.738749], + [-11.467916, 8.73375], + [-11.465417, 8.72875], + [-11.465417, 8.727917], + [-11.472917, 8.729583], + [-11.47375, 8.729582], + [-11.476249, 8.728749], + [-11.477916, 8.722917], + [-11.478423, 8.722409], + [-11.478605, 8.720417], + [-11.483749, 8.720416], + [-11.48375, 8.71625], + [-11.486249, 8.70875], + [-11.491249, 8.708749], + [-11.495416, 8.706249], + [-11.496249, 8.702917], + [-11.497083, 8.700417], + [-11.501249, 8.699582], + [-11.502083, 8.697917], + [-11.504582, 8.697082], + [-11.506249, 8.69375], + [-11.507916, 8.692916], + [-11.509246, 8.691586], + [-11.509248, 8.691586], + [-11.509262, 8.691794], + [-11.509708, 8.692406], + [-11.50979, 8.692916], + [-11.510416, 8.692916], + [-11.510417, 8.691249], + [-11.515416, 8.685416], + [-11.515417, 8.682917], + [-11.524582, 8.682083], + [-11.526249, 8.681249], + [-11.524583, 8.67125], + [-11.530417, 8.667916] + ] + ], + "type": "Polygon" + }, + "id": 381, + "properties": { + "cc:admin:id": ["68"], + "cc:oBld:total": 386, + "cc:pop:fifteen-to-twenty-four": 6113.888841841939, + "cc:pop:grid3-total": 34833.77281683168, + "cc:pop:kontur-total": 33120.68674034925, + "cc:pop:men": 15573.583193289529, + "cc:pop:sixty-plus": 2096.1313396413675, + "cc:pop:total": 33054.23017023331, + "cc:pop:under-five": 5304.683367814812, + "cc:pop:women": 17480.646976943775, + "cc:pop:women-fiften-to-forty-nine": 8509.460743549065, + "cc:pop:wp-total": 22148.988296201125, + "cc:pop:wp-total-UN": 25682.752147812236, + "cc:id": "381", + "cc:Name": "Massingbi CHC", + "cc:site": [-11.4735, 8.6419], + "user:parentName": "Kunike", + "user:code": "OU_268176", + "user:orgUnitId": "OY7mYDATra3", + "user:level": "4", + "user:parentId": "l0ccv2yzfF3" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.046479, 8.894807], + [-12.046263, 8.894654], + [-12.046136, 8.894573], + [-12.046099, 8.894646], + [-12.045913, 8.895048], + [-12.045811, 8.895459], + [-12.04594, 8.895791], + [-12.046298, 8.895853], + [-12.04635, 8.896074], + [-12.04575, 8.896594], + [-12.045214, 8.898043], + [-12.045286, 8.89821], + [-12.045032, 8.899206], + [-12.044537, 8.899549], + [-12.044813, 8.899791], + [-12.044712, 8.900267], + [-12.04471, 8.900267], + [-12.044511, 8.899946], + [-12.044369, 8.900179], + [-12.043982, 8.900052], + [-12.043982, 8.90005], + [-12.044295, 8.899815], + [-12.044357, 8.899455], + [-12.044562, 8.899368], + [-12.045192, 8.898236], + [-12.045228, 8.897424], + [-12.045476, 8.89714], + [-12.045264, 8.897003], + [-12.045482, 8.896876], + [-12.045586, 8.896164], + [-12.04535, 8.895494], + [-12.044841, 8.895545], + [-12.044805, 8.895335], + [-12.044943, 8.894857], + [-12.044798, 8.89434], + [-12.044766, 8.894307], + [-12.043337, 8.893179], + [-12.043556, 8.892722], + [-12.042981, 8.892465], + [-12.041714, 8.89189], + [-12.042831, 8.890837], + [-12.043201, 8.890158], + [-12.042193, 8.889777], + [-12.041328, 8.890417], + [-12.04071, 8.890088], + [-12.04038, 8.889575], + [-12.04041, 8.888431], + [-12.039984, 8.888312], + [-12.039719, 8.887781], + [-12.039409, 8.88776], + [-12.037337, 8.888881], + [-12.036955, 8.888387], + [-12.036606, 8.887932], + [-12.036026, 8.888303], + [-12.035339, 8.888663], + [-12.03466, 8.888894], + [-12.033929, 8.889138], + [-12.033354, 8.889262], + [-12.033071, 8.889283], + [-12.032396, 8.889236], + [-12.03147, 8.888819], + [-12.031256, 8.888661], + [-12.031089, 8.88853], + [-12.030791, 8.888163], + [-12.030377, 8.888608], + [-12.028778, 8.88736], + [-12.027001, 8.887401], + [-12.026423, 8.887793], + [-12.026424, 8.887798], + [-12.026411, 8.887806], + [-12.026338, 8.887871], + [-12.026288, 8.887808], + [-12.025847, 8.887707], + [-12.025832, 8.887701], + [-12.025815, 8.887658], + [-12.0258, 8.887634], + [-12.025802, 8.887624], + [-12.025561, 8.886997], + [-12.024493, 8.886015], + [-12.023681, 8.886108], + [-12.022741, 8.885869], + [-12.022125, 8.886063], + [-12.020674, 8.886018], + [-12.019429, 8.885596], + [-12.019386, 8.885404], + [-12.0181, 8.885407], + [-12.017408, 8.885013], + [-12.017218, 8.884702], + [-12.01704, 8.88525], + [-12.017019, 8.88617], + [-12.016002, 8.886451], + [-12.014778, 8.887097], + [-12.013764, 8.887351], + [-12.012531, 8.888421], + [-12.011836, 8.890458], + [-12.011348, 8.891088], + [-12.01, 8.894399], + [-12.0094, 8.897099], + [-12.00929, 8.898173], + [-12.012083, 8.902082], + [-12.016198, 8.90126], + [-12.016198, 8.901261], + [-12.015907, 8.901889], + [-12.016247, 8.902906], + [-12.022895, 8.902907], + [-12.024077, 8.904952], + [-12.024256, 8.904955], + [-12.024571, 8.904138], + [-12.024926, 8.904183], + [-12.025331, 8.904472], + [-12.025609, 8.905038], + [-12.026043, 8.905156], + [-12.026254, 8.904968], + [-12.026564, 8.9047], + [-12.02688, 8.904309], + [-12.027272, 8.904057], + [-12.027325, 8.903744], + [-12.027842, 8.903491], + [-12.027941, 8.903526], + [-12.028391, 8.903869], + [-12.029108, 8.904802], + [-12.029526, 8.905164], + [-12.030736, 8.904353], + [-12.03085, 8.904284], + [-12.031524, 8.903766], + [-12.032201, 8.90331], + [-12.033767, 8.90454], + [-12.035151, 8.902702], + [-12.036044, 8.903202], + [-12.036084, 8.903229], + [-12.036338, 8.903369], + [-12.036637, 8.903982], + [-12.037049, 8.903873], + [-12.037871, 8.904132], + [-12.038552, 8.9041], + [-12.038785, 8.903622], + [-12.040047, 8.902564], + [-12.041583, 8.901027], + [-12.04239, 8.899657], + [-12.04282, 8.900295], + [-12.04299, 8.900485], + [-12.043367, 8.900934], + [-12.044055, 8.902058], + [-12.044204, 8.902574], + [-12.044347, 8.903113], + [-12.044494, 8.903621], + [-12.044681, 8.90337], + [-12.044869, 8.903027], + [-12.044971, 8.902637], + [-12.044847, 8.902213], + [-12.045289, 8.901313], + [-12.045487, 8.900444], + [-12.046117, 8.900403], + [-12.046478, 8.900029], + [-12.0464, 8.898599], + [-12.046479, 8.894807] + ] + ], + "type": "Polygon" + }, + "id": 382, + "properties": { + "cc:admin:id": ["83"], + "cc:oBld:total": 3490, + "cc:pop:fifteen-to-twenty-four": 3112.010923968095, + "cc:pop:grid3-total": 36279.5306884395, + "cc:pop:kontur-total": 15895.93410286195, + "cc:pop:men": 8078.765414935565, + "cc:pop:sixty-plus": 1070.3907104672803, + "cc:pop:total": 16887.81444736781, + "cc:pop:under-five": 2716.3066944499774, + "cc:pop:women": 8809.04903243225, + "cc:pop:women-fiften-to-forty-nine": 4274.311536059192, + "cc:pop:wp-total": 22233.18023789105, + "cc:pop:wp-total-UN": 25768.103279700117, + "cc:id": "382", + "cc:Name": "Masuba MCHP", + "cc:site": [-12.0366, 8.8914], + "user:parentName": "Bombali Sebora", + "user:code": "OU_193202", + "user:orgUnitId": "XzmWizbR343", + "user:level": "4", + "user:parentId": "KKkLOTpMXGV" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.8438, 8.505279], + [-12.843698, 8.505331], + [-12.843418, 8.505334], + [-12.8429, 8.505001], + [-12.841695, 8.503772], + [-12.840794, 8.503256], + [-12.839882, 8.502834], + [-12.838905, 8.502796], + [-12.835691, 8.500911], + [-12.834503, 8.499664], + [-12.839582, 8.494584], + [-12.83375, 8.494583], + [-12.833749, 8.489584], + [-12.82875, 8.48125], + [-12.830416, 8.477084], + [-12.827916, 8.474584], + [-12.824583, 8.475416], + [-12.823514, 8.473277], + [-12.823733, 8.472963], + [-12.823271, 8.473147], + [-12.822916, 8.472084], + [-12.817084, 8.471249], + [-12.820416, 8.467083], + [-12.820416, 8.462084], + [-12.81375, 8.462083], + [-12.813749, 8.45875], + [-12.812083, 8.457084], + [-12.808749, 8.462083], + [-12.802917, 8.462916], + [-12.802082, 8.455417], + [-12.79375, 8.453749], + [-12.789582, 8.45125], + [-12.784583, 8.45375], + [-12.785416, 8.463749], + [-12.782956, 8.465718], + [-12.782893, 8.466249], + [-12.77375, 8.46625], + [-12.767917, 8.471249], + [-12.777916, 8.476249], + [-12.779582, 8.47625], + [-12.779582, 8.477084], + [-12.775417, 8.482916], + [-12.771857, 8.485051], + [-12.772255, 8.485168], + [-12.774126, 8.486144], + [-12.775921, 8.487057], + [-12.780738, 8.487713], + [-12.780941, 8.488639], + [-12.78094, 8.48864], + [-12.778388, 8.48852], + [-12.776851, 8.488149], + [-12.77625, 8.48875], + [-12.775417, 8.492916], + [-12.775417, 8.494583], + [-12.777083, 8.494584], + [-12.781249, 8.495416], + [-12.786249, 8.499584], + [-12.780417, 8.508749], + [-12.777083, 8.512084], + [-12.777083, 8.514583], + [-12.777917, 8.514584], + [-12.777917, 8.523749], + [-12.785417, 8.52375], + [-12.787917, 8.531249], + [-12.792082, 8.534583], + [-12.789583, 8.539584], + [-12.792917, 8.547916], + [-12.802916, 8.542916], + [-12.802083, 8.53625], + [-12.804582, 8.533749], + [-12.804583, 8.524583], + [-12.813749, 8.520417], + [-12.817916, 8.522916], + [-12.825617, 8.514445], + [-12.826954, 8.515659], + [-12.828906, 8.516765], + [-12.829565, 8.516828], + [-12.831249, 8.514583], + [-12.83125, 8.512916], + [-12.833749, 8.51125], + [-12.841811, 8.51311], + [-12.840546, 8.510917], + [-12.8438, 8.505279] + ] + ], + "type": "Polygon" + }, + "id": 383, + "properties": { + "cc:admin:id": ["62"], + "cc:oBld:total": 49, + "cc:pop:fifteen-to-twenty-four": 671.9107184932498, + "cc:pop:grid3-total": 2997.6171967875134, + "cc:pop:kontur-total": 3676.511992264813, + "cc:pop:men": 1728.9575941979576, + "cc:pop:sixty-plus": 236.4083436472346, + "cc:pop:total": 3692.2961064164424, + "cc:pop:under-five": 613.3826844027403, + "cc:pop:women": 1963.3385122184848, + "cc:pop:women-fiften-to-forty-nine": 978.4924522312431, + "cc:pop:wp-total": 4101.798206408071, + "cc:pop:wp-total-UN": 4754.808563000292, + "cc:id": "383", + "cc:Name": "Masumana MCHP", + "cc:site": [-12.801, 8.4898], + "user:parentName": "Koya", + "user:code": "OU_254965", + "user:orgUnitId": "UlgEReuUPM4", + "user:level": "4", + "user:parentId": "pRHGAROvuyI" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.470899, 9.1184], + [-12.464199, 9.117799], + [-12.456599, 9.117399], + [-12.452999, 9.116199], + [-12.4505, 9.1129], + [-12.4506, 9.109899], + [-12.452399, 9.1071], + [-12.458899, 9.1009], + [-12.460099, 9.0985], + [-12.459899, 9.0962], + [-12.458299, 9.095], + [-12.4559, 9.0948], + [-12.4533, 9.095499], + [-12.4454, 9.099699], + [-12.443299, 9.1014], + [-12.4368, 9.107799], + [-12.434599, 9.109199], + [-12.431, 9.109899], + [-12.4284, 9.109699], + [-12.4264, 9.108799], + [-12.4249, 9.1073], + [-12.423799, 9.104999], + [-12.4235, 9.102299], + [-12.4242, 9.098999], + [-12.426099, 9.094699], + [-12.426399, 9.0922], + [-12.4256, 9.0899], + [-12.4234, 9.0858], + [-12.4218, 9.0841], + [-12.416599, 9.0811], + [-12.4139, 9.0805], + [-12.411399, 9.0811], + [-12.4056, 9.0848], + [-12.402999, 9.088499], + [-12.400399, 9.0904], + [-12.397899, 9.0912], + [-12.3938, 9.091499], + [-12.3891, 9.0911], + [-12.3863, 9.089599], + [-12.383999, 9.086299], + [-12.381099, 9.082899], + [-12.3772, 9.0791], + [-12.3742, 9.077], + [-12.367299, 9.073699], + [-12.364899, 9.072899], + [-12.359699, 9.071899], + [-12.356399, 9.0708], + [-12.3533, 9.071699], + [-12.3506, 9.072799], + [-12.349, 9.074499], + [-12.3477, 9.079299], + [-12.346299, 9.0816], + [-12.3436, 9.083299], + [-12.341, 9.083099], + [-12.3384, 9.081199], + [-12.336999, 9.079099], + [-12.334399, 9.073099], + [-12.332699, 9.065899], + [-12.331099, 9.0636], + [-12.328699, 9.062099], + [-12.3266, 9.062], + [-12.3234, 9.0636], + [-12.3148, 9.072199], + [-12.3112, 9.075199], + [-12.3034, 9.079199], + [-12.302161, 9.079475], + [-12.305123, 9.08016], + [-12.305893, 9.080617], + [-12.305298, 9.080858], + [-12.303466, 9.08224], + [-12.301486, 9.0833], + [-12.300585, 9.084763], + [-12.300048, 9.085249], + [-12.296241, 9.08633], + [-12.293988, 9.086523], + [-12.291609, 9.087329], + [-12.290417, 9.087429], + [-12.289422, 9.08738], + [-12.288749, 9.092082], + [-12.28375, 9.095417], + [-12.284583, 9.097916], + [-12.290417, 9.097917], + [-12.292083, 9.10125], + [-12.293749, 9.108749], + [-12.294583, 9.112082], + [-12.301704, 9.113508], + [-12.302175, 9.114971], + [-12.302044, 9.116132], + [-12.301657, 9.116656], + [-12.302916, 9.117917], + [-12.299583, 9.128749], + [-12.302083, 9.130417], + [-12.308749, 9.132916], + [-12.312082, 9.137083], + [-12.312083, 9.137917], + [-12.312916, 9.140417], + [-12.30625, 9.14125], + [-12.303062, 9.143163], + [-12.303072, 9.143231], + [-12.303403, 9.143962], + [-12.304162, 9.144533], + [-12.304785, 9.14696], + [-12.305337, 9.147775], + [-12.305685, 9.149089], + [-12.306225, 9.150094], + [-12.306551, 9.150113], + [-12.304583, 9.152082], + [-12.310416, 9.15625], + [-12.316249, 9.166249], + [-12.313749, 9.168749], + [-12.307896, 9.16875], + [-12.310837, 9.173844], + [-12.310109, 9.175108], + [-12.31125, 9.17625], + [-12.316249, 9.177917], + [-12.31625, 9.182083], + [-12.317601, 9.187487], + [-12.317898, 9.187425], + [-12.31867, 9.187424], + [-12.321123, 9.187363], + [-12.321898, 9.187108], + [-12.323415, 9.185852], + [-12.323601, 9.185656], + [-12.324268, 9.186356], + [-12.324493, 9.187028], + [-12.325389, 9.187998], + [-12.325995, 9.188872], + [-12.326154, 9.189405], + [-12.326153, 9.189407], + [-12.324781, 9.189721], + [-12.324768, 9.189786], + [-12.332082, 9.191249], + [-12.332916, 9.19125], + [-12.329583, 9.19875], + [-12.330417, 9.202082], + [-12.337083, 9.205416], + [-12.337996, 9.205416], + [-12.338417, 9.204708], + [-12.338552, 9.204583], + [-12.340417, 9.204583], + [-12.342917, 9.20625], + [-12.350416, 9.209582], + [-12.349771, 9.214099], + [-12.3513, 9.214099], + [-12.354199, 9.2139], + [-12.356799, 9.2133], + [-12.361199, 9.2111], + [-12.3644, 9.209699], + [-12.368699, 9.2075], + [-12.371499, 9.2068], + [-12.3744, 9.2066], + [-12.397399, 9.206699], + [-12.401199, 9.205299], + [-12.404599, 9.199999], + [-12.4055, 9.196299], + [-12.4059, 9.190999], + [-12.4067, 9.188], + [-12.4085, 9.185199], + [-12.414299, 9.1788], + [-12.4181, 9.174199], + [-12.4221, 9.173099], + [-12.428399, 9.172999], + [-12.430099, 9.1653], + [-12.431799, 9.1596], + [-12.435399, 9.1521], + [-12.4375, 9.148799], + [-12.441199, 9.1447], + [-12.445299, 9.141], + [-12.4485, 9.138599], + [-12.4527, 9.136099], + [-12.457, 9.132499], + [-12.4631, 9.126499], + [-12.470899, 9.1184] + ] + ], + "type": "Polygon" + }, + "id": 384, + "properties": { + "cc:admin:id": ["118"], + "cc:oBld:total": 214, + "cc:pop:fifteen-to-twenty-four": 1528.9025075585619, + "cc:pop:grid3-total": 7052.802690360744, + "cc:pop:kontur-total": 8417.404844222954, + "cc:pop:men": 3829.8904679836783, + "cc:pop:sixty-plus": 536.6322020579679, + "cc:pop:total": 8103.553327327672, + "cc:pop:under-five": 1270.011904694533, + "cc:pop:women": 4273.662859343996, + "cc:pop:women-fiften-to-forty-nine": 2079.9839086177376, + "cc:pop:wp-total": 6952.054702665991, + "cc:pop:wp-total-UN": 8073.637297764002, + "cc:id": "384", + "cc:Name": "Mateboi CHC", + "cc:site": [-12.3627, 9.1038], + "user:parentName": "Sanda Tendaren", + "user:code": "OU_193197", + "user:orgUnitId": "EXbPGmEUdnc", + "user:level": "4", + "user:parentId": "UhHipWG7J8b" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.855569, 8.712237], + [-11.852916, 8.709583], + [-11.850417, 8.709583], + [-11.84943, 8.710569], + [-11.84923, 8.710465], + [-11.846249, 8.717917], + [-11.842916, 8.717916], + [-11.832917, 8.71375], + [-11.83324, 8.71267], + [-11.835416, 8.705417], + [-11.837082, 8.703749], + [-11.837082, 8.699583], + [-11.83575, 8.699139], + [-11.832358, 8.699139], + [-11.831146, 8.70081], + [-11.825418, 8.702082], + [-11.825417, 8.702081], + [-11.825416, 8.700417], + [-11.819582, 8.699582], + [-11.817083, 8.697916], + [-11.823025, 8.691231], + [-11.820765, 8.691359], + [-11.818108, 8.691218], + [-11.816964, 8.690794], + [-11.815512, 8.689923], + [-11.815154, 8.689538], + [-11.814433, 8.68992], + [-11.813648, 8.691364], + [-11.813106, 8.692101], + [-11.811821, 8.693085], + [-11.811187, 8.693763], + [-11.810416, 8.68375], + [-11.806249, 8.690416], + [-11.798749, 8.689583], + [-11.794583, 8.690417], + [-11.793749, 8.692083], + [-11.784583, 8.692917], + [-11.784443, 8.694167], + [-11.780285, 8.694166], + [-11.776379, 8.687401], + [-11.772083, 8.687401], + [-11.772083, 8.694582], + [-11.772321, 8.695417], + [-11.769451, 8.695418], + [-11.765545, 8.702183], + [-11.760517, 8.702183], + [-11.758749, 8.700417], + [-11.757083, 8.701249], + [-11.757082, 8.705416], + [-11.752916, 8.70625], + [-11.747549, 8.708933], + [-11.747601, 8.709133], + [-11.74625, 8.709583], + [-11.746249, 8.710417], + [-11.744583, 8.71125], + [-11.743749, 8.715417], + [-11.735417, 8.717916], + [-11.732917, 8.715416], + [-11.732916, 8.712846], + [-11.730046, 8.712846], + [-11.72614, 8.719611], + [-11.718327, 8.719612], + [-11.714421, 8.726376], + [-11.706608, 8.726377], + [-11.702702, 8.733142], + [-11.70259, 8.733143], + [-11.7032, 8.7342], + [-11.7045, 8.7374], + [-11.708399, 8.744699], + [-11.710499, 8.747199], + [-11.7126, 8.7486], + [-11.715, 8.7496], + [-11.719299, 8.751899], + [-11.7233, 8.7535], + [-11.7289, 8.7572], + [-11.730099, 8.7595], + [-11.731, 8.7663], + [-11.7323, 8.7693], + [-11.7356, 8.773799], + [-11.741399, 8.775799], + [-11.745899, 8.777899], + [-11.7498, 8.7795], + [-11.754499, 8.7823], + [-11.756099, 8.784099], + [-11.7568, 8.7866], + [-11.757099, 8.794099], + [-11.757499, 8.796499], + [-11.7587, 8.7991], + [-11.7616, 8.803399], + [-11.7648, 8.804699], + [-11.769099, 8.804699], + [-11.772099, 8.8037], + [-11.774099, 8.8025], + [-11.7783, 8.798999], + [-11.7824, 8.797499], + [-11.787799, 8.7968], + [-11.790299, 8.7963], + [-11.7948, 8.794399], + [-11.7974, 8.793799], + [-11.803599, 8.7931], + [-11.806099, 8.7924], + [-11.812799, 8.7892], + [-11.8147, 8.787699], + [-11.8164, 8.785299], + [-11.8196, 8.7773], + [-11.822899, 8.7756], + [-11.825099, 8.7739], + [-11.828299, 8.7708], + [-11.83, 8.768599], + [-11.8309, 8.766699], + [-11.832499, 8.7603], + [-11.834499, 8.755], + [-11.835299, 8.7491], + [-11.836199, 8.7465], + [-11.8401, 8.743399], + [-11.843499, 8.7402], + [-11.8446, 8.738899], + [-11.8456, 8.736899], + [-11.846099, 8.7345], + [-11.846299, 8.7258], + [-11.8467, 8.723499], + [-11.8479, 8.720799], + [-11.850799, 8.7163], + [-11.853899, 8.7141], + [-11.855569, 8.712237] + ] + ], + "type": "Polygon" + }, + "id": 385, + "properties": { + "cc:admin:id": ["132"], + "cc:oBld:total": 61, + "cc:pop:fifteen-to-twenty-four": 916.6828681264158, + "cc:pop:grid3-total": 8222.695357722918, + "cc:pop:kontur-total": 5368.125988847084, + "cc:pop:men": 2274.6956667238437, + "cc:pop:sixty-plus": 317.6118205965985, + "cc:pop:total": 4930.319400380442, + "cc:pop:under-five": 787.6072162883133, + "cc:pop:women": 2655.6237336565982, + "cc:pop:women-fiften-to-forty-nine": 1294.6131189247137, + "cc:pop:wp-total": 4795.306956862929, + "cc:pop:wp-total-UN": 5544.418793572716, + "cc:id": "385", + "cc:Name": "Mathonkara MCHP", + "cc:site": [-11.8134, 8.7537], + "user:parentName": "Tane", + "user:code": "OU_268218", + "user:orgUnitId": "rLaGvUnv2BF", + "user:level": "4", + "user:parentId": "xhyjU2SVewz" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.941999, 8.6211], + [-11.9353, 8.6158], + [-11.929999, 8.613099], + [-11.924299, 8.608699], + [-11.920099, 8.606599], + [-11.9158, 8.6041], + [-11.912599, 8.602799], + [-11.9081, 8.6006], + [-11.903, 8.5995], + [-11.900499, 8.598699], + [-11.8926, 8.5947], + [-11.886599, 8.590099], + [-11.882399, 8.587999], + [-11.8781, 8.5856], + [-11.874899, 8.584299], + [-11.870499, 8.581899], + [-11.8659, 8.5796], + [-11.860599, 8.575399], + [-11.859501, 8.57483], + [-11.858768, 8.576099], + [-11.860417, 8.57625], + [-11.862916, 8.578749], + [-11.86375, 8.582916], + [-11.867916, 8.585417], + [-11.870417, 8.589583], + [-11.87375, 8.592084], + [-11.874582, 8.594584], + [-11.872083, 8.599584], + [-11.873749, 8.604583], + [-11.87125, 8.608749], + [-11.874582, 8.61125], + [-11.87125, 8.61375], + [-11.872083, 8.617083], + [-11.878749, 8.619584], + [-11.877082, 8.623749], + [-11.873769, 8.625076], + [-11.873819, 8.625133], + [-11.876983, 8.629902], + [-11.87783, 8.631715], + [-11.876275, 8.632326], + [-11.873895, 8.632954], + [-11.874582, 8.637083], + [-11.877083, 8.635417], + [-11.88125, 8.635417], + [-11.883749, 8.640417], + [-11.88125, 8.647916], + [-11.882917, 8.649583], + [-11.885417, 8.650417], + [-11.886886, 8.658495], + [-11.889099, 8.6571], + [-11.890999, 8.6563], + [-11.893399, 8.6558], + [-11.902199, 8.6557], + [-11.905999, 8.6555], + [-11.909199, 8.654699], + [-11.9131, 8.651599], + [-11.9154, 8.648799], + [-11.9177, 8.645399], + [-11.9235, 8.641999], + [-11.9259, 8.641099], + [-11.930199, 8.6403], + [-11.9326, 8.639099], + [-11.9354, 8.636799], + [-11.937999, 8.632999], + [-11.9394, 8.627099], + [-11.941999, 8.6211] + ] + ], + "type": "Polygon" + }, + "id": 386, + "properties": { + "cc:admin:id": ["132"], + "cc:oBld:total": 392, + "cc:pop:fifteen-to-twenty-four": 441.4882862617629, + "cc:pop:grid3-total": 2563.2458021657467, + "cc:pop:kontur-total": 2927.850577003015, + "cc:pop:men": 1079.9184156848653, + "cc:pop:sixty-plus": 157.267880156615, + "cc:pop:total": 2345.589328833026, + "cc:pop:under-five": 367.75624750406473, + "cc:pop:women": 1265.6709131481612, + "cc:pop:women-fiften-to-forty-nine": 611.1540011748388, + "cc:pop:wp-total": 1860.0833873799015, + "cc:pop:wp-total-UN": 2158.3245178478255, + "cc:id": "386", + "cc:Name": "Mathufulie MCHP", + "cc:site": [-11.9027, 8.6354], + "user:parentName": "Tane", + "user:code": "OU_268223", + "user:orgUnitId": "OTn9VMNEkdo", + "user:level": "4", + "user:parentId": "xhyjU2SVewz" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.886885, 8.658495], + [-11.885416, 8.650417], + [-11.882917, 8.649583], + [-11.88125, 8.647916], + [-11.883749, 8.640417], + [-11.88125, 8.635417], + [-11.877083, 8.635417], + [-11.874584, 8.637083], + [-11.874582, 8.637082], + [-11.873895, 8.632953], + [-11.876275, 8.632326], + [-11.87783, 8.631715], + [-11.876983, 8.629902], + [-11.873819, 8.625133], + [-11.87377, 8.625075], + [-11.877082, 8.623749], + [-11.878749, 8.619584], + [-11.872083, 8.617083], + [-11.87125, 8.61375], + [-11.874582, 8.61125], + [-11.87125, 8.608749], + [-11.873749, 8.604583], + [-11.872083, 8.599584], + [-11.874582, 8.594583], + [-11.873749, 8.592084], + [-11.870417, 8.589583], + [-11.867916, 8.585417], + [-11.86375, 8.582916], + [-11.862916, 8.57875], + [-11.860416, 8.57625], + [-11.858768, 8.576099], + [-11.8595, 8.57483], + [-11.855199, 8.572599], + [-11.852399, 8.570399], + [-11.8477, 8.566], + [-11.8448, 8.5638], + [-11.839499, 8.560999], + [-11.833799, 8.556499], + [-11.8296, 8.5545], + [-11.826592, 8.552821], + [-11.825416, 8.554584], + [-11.824583, 8.558749], + [-11.824583, 8.560416], + [-11.83125, 8.567083], + [-11.838749, 8.567917], + [-11.83375, 8.578749], + [-11.833749, 8.579584], + [-11.832917, 8.582083], + [-11.834582, 8.586249], + [-11.834582, 8.587083], + [-11.829583, 8.589584], + [-11.82625, 8.594583], + [-11.833749, 8.59875], + [-11.832917, 8.609583], + [-11.835416, 8.612917], + [-11.83375, 8.615416], + [-11.832917, 8.61625], + [-11.83125, 8.622916], + [-11.832083, 8.625416], + [-11.832916, 8.62625], + [-11.83375, 8.631249], + [-11.836028, 8.632958], + [-11.836152, 8.632819], + [-11.83625, 8.632917], + [-11.838749, 8.63375], + [-11.837083, 8.641249], + [-11.838749, 8.642917], + [-11.83823, 8.645514], + [-11.837917, 8.645525], + [-11.837916, 8.646249], + [-11.837082, 8.647084], + [-11.834583, 8.651249], + [-11.836249, 8.653749], + [-11.836249, 8.656617], + [-11.835069, 8.656455], + [-11.826139, 8.657305], + [-11.822631, 8.657679], + [-11.822083, 8.660416], + [-11.823749, 8.662084], + [-11.82125, 8.665417], + [-11.81875, 8.673749], + [-11.820417, 8.675416], + [-11.829582, 8.674583], + [-11.831249, 8.674583], + [-11.831249, 8.677082], + [-11.827082, 8.677917], + [-11.82375, 8.682917], + [-11.825135, 8.69123], + [-11.824736, 8.691134], + [-11.823026, 8.691231], + [-11.817083, 8.697916], + [-11.819583, 8.699582], + [-11.825416, 8.700417], + [-11.825417, 8.702082], + [-11.831146, 8.700809], + [-11.832359, 8.699139], + [-11.83575, 8.699139], + [-11.837082, 8.699582], + [-11.837082, 8.703749], + [-11.835417, 8.705417], + [-11.832917, 8.713749], + [-11.842916, 8.717916], + [-11.846249, 8.717916], + [-11.84923, 8.710465], + [-11.849429, 8.710569], + [-11.850417, 8.709583], + [-11.852916, 8.709583], + [-11.855569, 8.712236], + [-11.8565, 8.711199], + [-11.860099, 8.7038], + [-11.8608, 8.700099], + [-11.8608, 8.6895], + [-11.861499, 8.6859], + [-11.8657, 8.677099], + [-11.873099, 8.668], + [-11.8787, 8.665899], + [-11.8812, 8.664099], + [-11.8845, 8.66], + [-11.886885, 8.658495] + ] + ], + "type": "Polygon" + }, + "id": 387, + "properties": { + "cc:admin:id": ["132"], + "cc:oBld:total": 1349, + "cc:pop:fifteen-to-twenty-four": 2629.946755649177, + "cc:pop:grid3-total": 10771.851966023405, + "cc:pop:kontur-total": 13383.14524257341, + "cc:pop:men": 6469.535878744691, + "cc:pop:sixty-plus": 915.4045716097028, + "cc:pop:total": 14027.81743141095, + "cc:pop:under-five": 2218.0618536126813, + "cc:pop:women": 7558.281552666258, + "cc:pop:women-fiften-to-forty-nine": 3655.897691356754, + "cc:pop:wp-total": 9651.91763867125, + "cc:pop:wp-total-UN": 11180.655047205835, + "cc:id": "387", + "cc:Name": "Matotoka CHC", + "cc:site": [-11.8591, 8.6573], + "user:parentName": "Tane", + "user:code": "OU_268221", + "user:orgUnitId": "KcCbIDzRcui", + "user:level": "4", + "user:parentId": "xhyjU2SVewz" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.269299, 7.733899], + [-12.2674, 7.7283], + [-12.2654, 7.7245], + [-12.262499, 7.721299], + [-12.2585, 7.7173], + [-12.2549, 7.7145], + [-12.2522, 7.7131], + [-12.2422, 7.710499], + [-12.237199, 7.707299], + [-12.2328, 7.7031], + [-12.2292, 7.6985], + [-12.226699, 7.692099], + [-12.2246, 7.6855], + [-12.224799, 7.685399], + [-12.2211, 7.6809], + [-12.218, 7.6778], + [-12.2158, 7.676], + [-12.209399, 7.671699], + [-12.1983, 7.6619], + [-12.194899, 7.659699], + [-12.1883, 7.6567], + [-12.1854, 7.656], + [-12.181099, 7.6556], + [-12.1738, 7.656099], + [-12.170299, 7.6569], + [-12.1596, 7.661299], + [-12.1563, 7.661699], + [-12.155948, 7.661625], + [-12.155509, 7.663379], + [-12.155507, 7.66338], + [-12.155147, 7.663162], + [-12.154861, 7.664301], + [-12.152756, 7.663503], + [-12.151107, 7.663468], + [-12.149908, 7.663906], + [-12.146015, 7.664792], + [-12.142145, 7.664493], + [-12.141024, 7.664511], + [-12.14082, 7.663703], + [-12.139704, 7.663721], + [-12.137623, 7.665184], + [-12.137228, 7.665852], + [-12.137088, 7.667073], + [-12.137274, 7.668041], + [-12.139343, 7.671302], + [-12.14018, 7.67303], + [-12.14075, 7.67508], + [-12.14097, 7.676566], + [-12.140958, 7.679354], + [-12.140726, 7.681726], + [-12.139983, 7.684203], + [-12.139808, 7.685574], + [-12.140366, 7.687221], + [-12.141505, 7.688627], + [-12.144132, 7.690217], + [-12.147084, 7.691623], + [-12.148852, 7.694018], + [-12.150665, 7.694687], + [-12.15299, 7.69501], + [-12.157174, 7.695078], + [-12.163706, 7.69395], + [-12.165237, 7.693975], + [-12.1666, 7.694659], + [-12.167636, 7.695897], + [-12.169412, 7.699498], + [-12.170743, 7.701321], + [-12.171747, 7.702152], + [-12.172795, 7.702302], + [-12.176808, 7.701438], + [-12.178478, 7.70124], + [-12.179182, 7.701422], + [-12.179519, 7.701862], + [-12.179749, 7.704352], + [-12.179611, 7.705127], + [-12.178861, 7.705991], + [-12.176976, 7.707054], + [-12.176134, 7.707114], + [-12.172136, 7.705263], + [-12.17088, 7.705233], + [-12.168253, 7.705892], + [-12.166024, 7.707032], + [-12.163587, 7.709544], + [-12.16339, 7.709933], + [-12.164067, 7.711627], + [-12.162913, 7.713339], + [-12.161137, 7.715488], + [-12.161425, 7.7177], + [-12.162566, 7.720774], + [-12.16325, 7.721767], + [-12.16371, 7.722057], + [-12.164375, 7.722153], + [-12.165857, 7.721646], + [-12.166248, 7.721249], + [-12.166488, 7.720515], + [-12.16662, 7.719845], + [-12.166571, 7.719584], + [-12.167779, 7.719583], + [-12.167441, 7.718304], + [-12.166322, 7.716308], + [-12.166077, 7.715358], + [-12.166077, 7.714349], + [-12.166407, 7.71416], + [-12.167103, 7.714099], + [-12.167769, 7.71438], + [-12.168749, 7.71532], + [-12.168796, 7.71537], + [-12.169704, 7.714462], + [-12.169705, 7.714462], + [-12.172441, 7.718705], + [-12.17323, 7.720785], + [-12.173299, 7.721445], + [-12.173115, 7.722266], + [-12.172051, 7.724285], + [-12.171193, 7.725477], + [-12.169462, 7.727382], + [-12.168029, 7.72937], + [-12.166384, 7.732147], + [-12.165747, 7.733871], + [-12.164415, 7.739426], + [-12.164247, 7.740822], + [-12.164713, 7.743084], + [-12.165733, 7.745225], + [-12.165896, 7.74637], + [-12.165802, 7.748298], + [-12.165931, 7.750097], + [-12.166283, 7.75157], + [-12.166229, 7.752916], + [-12.164966, 7.752917], + [-12.164972, 7.754345], + [-12.164299, 7.76097], + [-12.164896, 7.763414], + [-12.165241, 7.764281], + [-12.165923, 7.765214], + [-12.166416, 7.765569], + [-12.166906, 7.765523], + [-12.168668, 7.764864], + [-12.169867, 7.763551], + [-12.17351, 7.763551], + [-12.173512, 7.763572], + [-12.17339, 7.764667], + [-12.172864, 7.765632], + [-12.17218, 7.766359], + [-12.172405, 7.767701], + [-12.173574, 7.766923], + [-12.173697, 7.767656], + [-12.174149, 7.768309], + [-12.177717, 7.771534], + [-12.179733, 7.773037], + [-12.181892, 7.773704], + [-12.181958, 7.773694], + [-12.183088, 7.771738], + [-12.184736, 7.771737], + [-12.184949, 7.77139], + [-12.185109, 7.769197], + [-12.184581, 7.767428], + [-12.184994, 7.766397], + [-12.186098, 7.76579], + [-12.187326, 7.765558], + [-12.187617, 7.766719], + [-12.190769, 7.76598], + [-12.191742, 7.766054], + [-12.196967, 7.767575], + [-12.201802, 7.768704], + [-12.204921, 7.769158], + [-12.209266, 7.769509], + [-12.214578, 7.769146], + [-12.215038, 7.769286], + [-12.215368, 7.769646], + [-12.2177, 7.768699], + [-12.222799, 7.7662], + [-12.2288, 7.764799], + [-12.233199, 7.7626], + [-12.2364, 7.761299], + [-12.240599, 7.7589], + [-12.243699, 7.7575], + [-12.246999, 7.7551], + [-12.260599, 7.7416], + [-12.269299, 7.733899] + ] + ], + "type": "Polygon" + }, + "id": 388, + "properties": { + "cc:admin:id": ["76"], + "cc:oBld:total": 139, + "cc:pop:fifteen-to-twenty-four": 938.0241257620153, + "cc:pop:grid3-total": 4576.520610325272, + "cc:pop:kontur-total": 4915.610437653004, + "cc:pop:men": 2557.0446756764086, + "cc:pop:sixty-plus": 382.23346310157666, + "cc:pop:total": 5132.730214275541, + "cc:pop:under-five": 892.2831636651277, + "cc:pop:women": 2575.685538599132, + "cc:pop:women-fiften-to-forty-nine": 1222.255486162208, + "cc:pop:wp-total": 4492.642202425537, + "cc:pop:wp-total-UN": 5202.016122629563, + "cc:id": "388", + "cc:Name": "Mattru Jong MCHP", + "cc:site": [-12.16964, 7.68708], + "user:parentName": "Jong", + "user:code": "OU_197389", + "user:orgUnitId": "PnMPARoMhWW", + "user:level": "4", + "user:parentId": "VCtF1DbspR5" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.826455, 7.913333], + [-11.824833, 7.91287], + [-11.823974, 7.912989], + [-11.822725, 7.912576], + [-11.823026, 7.91228], + [-11.823494, 7.912156], + [-11.823715, 7.911066], + [-11.823279, 7.909793], + [-11.820417, 7.912083], + [-11.817083, 7.912084], + [-11.813749, 7.915416], + [-11.804583, 7.915416], + [-11.802083, 7.91375], + [-11.802082, 7.917916], + [-11.795292, 7.917917], + [-11.791385, 7.911151], + [-11.787182, 7.911151], + [-11.784582, 7.913749], + [-11.78125, 7.91375], + [-11.778749, 7.912084], + [-11.776977, 7.912084], + [-11.776708, 7.912433], + [-11.769583, 7.909584], + [-11.76875, 7.909584], + [-11.757916, 7.914583], + [-11.749583, 7.91125], + [-11.749502, 7.91021], + [-11.743889, 7.910209], + [-11.74299, 7.90886], + [-11.746877, 7.907227], + [-11.746143, 7.906063], + [-11.745525, 7.90628], + [-11.745066, 7.906116], + [-11.744337, 7.906313], + [-11.742186, 7.905626], + [-11.741491, 7.90556], + [-11.74125, 7.905633], + [-11.741249, 7.90375], + [-11.737916, 7.899584], + [-11.728846, 7.898827], + [-11.728846, 7.898826], + [-11.729453, 7.898312], + [-11.729645, 7.898199], + [-11.729833, 7.89769], + [-11.730684, 7.897075], + [-11.731147, 7.897294], + [-11.731536, 7.897096], + [-11.728749, 7.892917], + [-11.725121, 7.892312], + [-11.72511, 7.892355], + [-11.72507, 7.892998], + [-11.725281, 7.893806], + [-11.72514, 7.895585], + [-11.724522, 7.896359], + [-11.724406, 7.898019], + [-11.724527, 7.89856], + [-11.724369, 7.899067], + [-11.724237, 7.899505], + [-11.723688, 7.899848], + [-11.721991, 7.901632], + [-11.721336, 7.902607], + [-11.721326, 7.902614], + [-11.720417, 7.901249], + [-11.723749, 7.894584], + [-11.721249, 7.892084], + [-11.717318, 7.891428], + [-11.717223, 7.891964], + [-11.716877, 7.892925], + [-11.716014, 7.893952], + [-11.714577, 7.894549], + [-11.714814, 7.89311], + [-11.714445, 7.891524], + [-11.711006, 7.886951], + [-11.710089, 7.885527], + [-11.709192, 7.883045], + [-11.709617, 7.886103], + [-11.710589, 7.888414], + [-11.709583, 7.88875], + [-11.708749, 7.889583], + [-11.69875, 7.889583], + [-11.698749, 7.88625], + [-11.698385, 7.886068], + [-11.698499, 7.895699], + [-11.699, 7.9019], + [-11.6997, 7.904], + [-11.701599, 7.907599], + [-11.702999, 7.910799], + [-11.7051, 7.9143], + [-11.706899, 7.918099], + [-11.7094, 7.920799], + [-11.717099, 7.924899], + [-11.7211, 7.9266], + [-11.725399, 7.928899], + [-11.7286, 7.9303], + [-11.732999, 7.932599], + [-11.7362, 7.9339], + [-11.739799, 7.935899], + [-11.7437, 7.9378], + [-11.7468, 7.9399], + [-11.749699, 7.942599], + [-11.7529, 7.9462], + [-11.7568, 7.950899], + [-11.7594, 7.9518], + [-11.763699, 7.952299], + [-11.766899, 7.953199], + [-11.770599, 7.954999], + [-11.7739, 7.9563], + [-11.779099, 7.958799], + [-11.7842, 7.96], + [-11.792699, 7.963699], + [-11.7963, 7.9657], + [-11.8002, 7.9675], + [-11.8045, 7.9699], + [-11.8077, 7.9712], + [-11.8127, 7.9737], + [-11.816999, 7.975399], + [-11.8171, 7.971499], + [-11.818699, 7.9656], + [-11.8191, 7.961999], + [-11.819099, 7.956299], + [-11.8188, 7.934799], + [-11.8196, 7.9299], + [-11.821799, 7.9255], + [-11.8231, 7.922399], + [-11.825599, 7.9173], + [-11.826455, 7.913333] + ] + ], + "type": "Polygon" + }, + "id": 389, + "properties": { + "cc:admin:id": ["134"], + "cc:oBld:total": 5129, + "cc:pop:fifteen-to-twenty-four": 8937.832980406445, + "cc:pop:grid3-total": 21370.040289445882, + "cc:pop:kontur-total": 51901.23063702677, + "cc:pop:men": 25580.819892692547, + "cc:pop:sixty-plus": 3348.163500221735, + "cc:pop:total": 50719.420086254126, + "cc:pop:under-five": 8341.216402023429, + "cc:pop:women": 25138.600193561575, + "cc:pop:women-fiften-to-forty-nine": 12098.92630438272, + "cc:pop:wp-total": 41564.62891977796, + "cc:pop:wp-total-UN": 48199.15453588626, + "cc:id": "389", + "cc:Name": "Mattru on the Rail MCHP", + "cc:site": [-11.7885, 7.9431], + "user:parentName": "Tikonko", + "user:code": "OU_1114", + "user:orgUnitId": "Qu0QOykPdcD", + "user:level": "4", + "user:parentId": "sxRd2XOzFbz" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.768619, 8.441982], + [-12.768196, 8.44125], + [-12.761251, 8.441249], + [-12.763749, 8.43625], + [-12.75375, 8.430417], + [-12.749584, 8.42875], + [-12.755416, 8.424583], + [-12.756249, 8.41875], + [-12.757082, 8.417916], + [-12.754582, 8.414584], + [-12.74625, 8.41875], + [-12.747082, 8.423749], + [-12.745416, 8.428749], + [-12.737916, 8.428749], + [-12.735417, 8.426249], + [-12.735416, 8.42125], + [-12.732916, 8.41875], + [-12.727916, 8.423749], + [-12.715417, 8.42375], + [-12.715416, 8.427916], + [-12.709826, 8.430402], + [-12.710266, 8.432047], + [-12.70985, 8.433453], + [-12.709784, 8.434129], + [-12.709917, 8.4347], + [-12.709653, 8.435238], + [-12.708828, 8.435335], + [-12.708582, 8.435708], + [-12.707083, 8.434584], + [-12.705416, 8.447083], + [-12.700417, 8.452084], + [-12.701249, 8.45375], + [-12.700417, 8.456249], + [-12.702083, 8.457084], + [-12.705158, 8.462721], + [-12.704983, 8.462902], + [-12.705363, 8.463097], + [-12.707083, 8.466249], + [-12.713749, 8.467084], + [-12.712083, 8.47625], + [-12.712917, 8.478749], + [-12.714583, 8.47875], + [-12.71875, 8.483749], + [-12.731249, 8.480417], + [-12.732366, 8.480788], + [-12.732617, 8.477537], + [-12.732519, 8.4769], + [-12.735417, 8.474583], + [-12.740416, 8.473749], + [-12.74125, 8.472084], + [-12.74375, 8.469584], + [-12.746249, 8.470416], + [-12.74625, 8.47125], + [-12.75125, 8.472916], + [-12.758749, 8.471249], + [-12.757917, 8.467916], + [-12.758749, 8.459584], + [-12.75625, 8.455416], + [-12.75625, 8.449585], + [-12.756392, 8.449631], + [-12.766249, 8.452916], + [-12.767865, 8.454209], + [-12.764713, 8.448748], + [-12.768619, 8.441982] + ] + ], + "type": "Polygon" + }, + "id": 390, + "properties": { + "cc:admin:id": ["62"], + "cc:oBld:total": 25, + "cc:pop:fifteen-to-twenty-four": 306.6659406881854, + "cc:pop:grid3-total": 2267.8920333918427, + "cc:pop:kontur-total": 1680.171696470848, + "cc:pop:men": 793.1844203562953, + "cc:pop:sixty-plus": 100.69594088503139, + "cc:pop:total": 1701.7921911801022, + "cc:pop:under-five": 281.6415674531837, + "cc:pop:women": 908.6077708238072, + "cc:pop:women-fiften-to-forty-nine": 459.52468232832166, + "cc:pop:wp-total": 1677.1797518799312, + "cc:pop:wp-total-UN": 1938.8768757476005, + "cc:id": "390", + "cc:Name": "Mawoma MCHP", + "cc:site": [-12.734, 8.4622], + "user:parentName": "Koya", + "user:code": "OU_254973", + "user:orgUnitId": "Srnpwq8jKbp", + "user:level": "4", + "user:parentId": "pRHGAROvuyI" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.122142, 8.289524], + [-12.1136, 8.2877], + [-12.105899, 8.284199], + [-12.101099, 8.280599], + [-12.0911, 8.2711], + [-12.087399, 8.268499], + [-12.083299, 8.266999], + [-12.073399, 8.265699], + [-12.0643, 8.2617], + [-12.060899, 8.259299], + [-12.0522, 8.2513], + [-12.048499, 8.248899], + [-12.045599, 8.247999], + [-12.0411, 8.2474], + [-12.0366, 8.2474], + [-12.0337, 8.247799], + [-12.0299, 8.2496], + [-12.0272, 8.252899], + [-12.0265, 8.2561], + [-12.026799, 8.261299], + [-12.029599, 8.271999], + [-12.030699, 8.284099], + [-12.032, 8.2896], + [-12.034799, 8.294699], + [-12.0371, 8.297399], + [-12.0403, 8.2993], + [-12.0465, 8.3017], + [-12.0499, 8.3041], + [-12.052699, 8.307199], + [-12.054499, 8.311], + [-12.054399, 8.315199], + [-12.052899, 8.319], + [-12.048999, 8.3247], + [-12.0442, 8.332999], + [-12.039899, 8.342799], + [-12.0363, 8.346999], + [-12.032199, 8.3507], + [-12.026799, 8.3539], + [-12.021, 8.357999], + [-12.0093, 8.364099], + [-12.0036, 8.367699], + [-11.9982, 8.373099], + [-11.993699, 8.3772], + [-11.9914, 8.380699], + [-11.9904, 8.3834], + [-11.9916, 8.3869], + [-11.997899, 8.393799], + [-11.999899, 8.396399], + [-12.0017, 8.397999], + [-12.005, 8.3987], + [-12.0088, 8.398799], + [-12.016599, 8.3985], + [-12.019399, 8.398599], + [-12.022499, 8.3994], + [-12.024199, 8.4007], + [-12.025499, 8.4032], + [-12.025299, 8.406799], + [-12.0233, 8.411099], + [-12.0216, 8.416899], + [-12.019599, 8.4212], + [-12.0195, 8.424099], + [-12.021, 8.426499], + [-12.0239, 8.427999], + [-12.027199, 8.4275], + [-12.0306, 8.425499], + [-12.035599, 8.4232], + [-12.037599, 8.4228], + [-12.039899, 8.4236], + [-12.0451, 8.427399], + [-12.0481, 8.428099], + [-12.052399, 8.427599], + [-12.057099, 8.4255], + [-12.057228, 8.425511], + [-12.058654, 8.424531], + [-12.061581, 8.423557], + [-12.062787, 8.423462], + [-12.064499, 8.424142], + [-12.064892, 8.424486], + [-12.065416, 8.422917], + [-12.06375, 8.419584], + [-12.062916, 8.41875], + [-12.06125, 8.417916], + [-12.060417, 8.417084], + [-12.060417, 8.41625], + [-12.067916, 8.407917], + [-12.074061, 8.412013], + [-12.074104, 8.412588], + [-12.074069, 8.413605], + [-12.079582, 8.412916], + [-12.082082, 8.410416], + [-12.082082, 8.407084], + [-12.077917, 8.402083], + [-12.077917, 8.39625], + [-12.078749, 8.39375], + [-12.081249, 8.39375], + [-12.08375, 8.395416], + [-12.087082, 8.395417], + [-12.091249, 8.397083], + [-12.093749, 8.394583], + [-12.09375, 8.392298], + [-12.094873, 8.392593], + [-12.096948, 8.39337], + [-12.09625, 8.387084], + [-12.097082, 8.385417], + [-12.100416, 8.385416], + [-12.104582, 8.381249], + [-12.10375, 8.377917], + [-12.105416, 8.376249], + [-12.105416, 8.37125], + [-12.102917, 8.365417], + [-12.111249, 8.365416], + [-12.112082, 8.36125], + [-12.114582, 8.358749], + [-12.114582, 8.35625], + [-12.11375, 8.355416], + [-12.112917, 8.35375], + [-12.113749, 8.352917], + [-12.110417, 8.349584], + [-12.109582, 8.34625], + [-12.107916, 8.346249], + [-12.107083, 8.34375], + [-12.112916, 8.340417], + [-12.113676, 8.339656], + [-12.111801, 8.339064], + [-12.110409, 8.338938], + [-12.107965, 8.337938], + [-12.105218, 8.336448], + [-12.106249, 8.335416], + [-12.107083, 8.33125], + [-12.110416, 8.330416], + [-12.111249, 8.329583], + [-12.111249, 8.327917], + [-12.109582, 8.327916], + [-12.107083, 8.325417], + [-12.111371, 8.321128], + [-12.110881, 8.320746], + [-12.110693, 8.320443], + [-12.110675, 8.320395], + [-12.109479, 8.318666], + [-12.108595, 8.317734], + [-12.10831, 8.316838], + [-12.107917, 8.316707], + [-12.107917, 8.312917], + [-12.113749, 8.309583], + [-12.11125, 8.305417], + [-12.111249, 8.302084], + [-12.108751, 8.299584], + [-12.114582, 8.299583], + [-12.114583, 8.297083], + [-12.122142, 8.289524] + ], + [ + [-12.068472, 8.31114], + [-12.072377, 8.317905], + [-12.068472, 8.32467], + [-12.064682, 8.324671], + [-12.064026, 8.325526], + [-12.061227, 8.328179], + [-12.060365, 8.327604], + [-12.063805, 8.324113], + [-12.065493, 8.322021], + [-12.066546, 8.320283], + [-12.067059, 8.319078], + [-12.067199, 8.318509], + [-12.06625, 8.317084], + [-12.066705, 8.315714], + [-12.063392, 8.313611], + [-12.061804, 8.312062], + [-12.060494, 8.310301], + [-12.058359, 8.306446], + [-12.059293, 8.305979], + [-12.061199, 8.309493], + [-12.062094, 8.310766], + [-12.062436, 8.311139], + [-12.068472, 8.31114] + ] + ], + "type": "Polygon" + }, + "id": 391, + "properties": { + "cc:admin:id": ["149"], + "cc:oBld:total": 3, + "cc:pop:fifteen-to-twenty-four": 1072.5379959713084, + "cc:pop:grid3-total": 8544.136035115207, + "cc:pop:kontur-total": 6240.05566932031, + "cc:pop:men": 2656.963537807892, + "cc:pop:sixty-plus": 372.3845767103416, + "cc:pop:total": 5717.25937515708, + "cc:pop:under-five": 923.1308284220945, + "cc:pop:women": 3060.29583734919, + "cc:pop:women-fiften-to-forty-nine": 1512.845607361821, + "cc:pop:wp-total": 9820.84899590248, + "cc:pop:wp-total-UN": 11399.366388879604, + "cc:id": "391", + "cc:Name": "Mayogbor MCHP", + "cc:site": [-12.0345, 8.3737], + "user:parentName": "Yoni", + "user:code": "OU_268227", + "user:orgUnitId": "XiORvSsxn6s", + "user:level": "4", + "user:parentId": "NNE0YMCDZkO" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.045094, 8.597822], + [-12.042299, 8.594899], + [-12.040299, 8.591999], + [-12.038299, 8.588199], + [-12.0355, 8.5846], + [-12.0311, 8.5805], + [-12.028199, 8.578399], + [-12.023899, 8.576299], + [-12.021099, 8.573999], + [-12.017, 8.5703], + [-12.0138, 8.5678], + [-12.0092, 8.5653], + [-12.0066, 8.562899], + [-12.0023, 8.5549], + [-11.999999, 8.5481], + [-11.9966, 8.549199], + [-11.993799, 8.5518], + [-11.990999, 8.5555], + [-11.987899, 8.5622], + [-11.987199, 8.5646], + [-11.986399, 8.568799], + [-11.984699, 8.5716], + [-11.982299, 8.573299], + [-11.9788, 8.573799], + [-11.9691, 8.5736], + [-11.966399, 8.5738], + [-11.9643, 8.5744], + [-11.962, 8.5767], + [-11.9611, 8.579], + [-11.961699, 8.581899], + [-11.9638, 8.5852], + [-11.966599, 8.591399], + [-11.966599, 8.593799], + [-11.9642, 8.599599], + [-11.9622, 8.602299], + [-11.959, 8.605199], + [-11.957, 8.606599], + [-11.953799, 8.608], + [-11.949899, 8.6109], + [-11.947, 8.613799], + [-11.9446, 8.616599], + [-11.942, 8.621099], + [-11.941496, 8.622262], + [-11.945416, 8.622917], + [-11.943905, 8.633495], + [-11.943895, 8.633499], + [-11.944583, 8.636249], + [-11.949583, 8.63625], + [-11.950416, 8.637917], + [-11.949811, 8.640337], + [-11.950238, 8.64054], + [-11.950915, 8.64114], + [-11.951959, 8.641475], + [-11.951596, 8.642596], + [-11.950905, 8.643404], + [-11.95375, 8.646249], + [-11.957082, 8.645417], + [-11.957917, 8.650417], + [-11.962115, 8.652516], + [-11.963426, 8.649796], + [-11.964094, 8.648373], + [-11.964551, 8.647767], + [-11.965156, 8.647397], + [-11.967083, 8.651249], + [-11.970416, 8.653749], + [-11.972083, 8.652084], + [-11.975892, 8.652718], + [-11.976108, 8.654109], + [-11.975981, 8.65561], + [-11.976462, 8.656435], + [-11.976463, 8.656853], + [-11.977067, 8.658489], + [-11.977082, 8.658371], + [-11.977869, 8.656089], + [-11.978793, 8.654093], + [-11.982321, 8.65587], + [-11.984557, 8.656812], + [-11.985463, 8.657257], + [-11.985703, 8.657732], + [-11.985347, 8.65943], + [-11.985472, 8.661837], + [-11.986048, 8.663652], + [-11.986019, 8.665818], + [-11.986933, 8.669582], + [-11.998749, 8.669582], + [-12.003749, 8.667917], + [-12.008461, 8.667243], + [-12.005294, 8.659706], + [-12.010306, 8.654692], + [-12.00723, 8.647328], + [-12.013618, 8.644679], + [-12.010392, 8.637006], + [-12.016347, 8.637005], + [-12.016414, 8.636312], + [-12.016437, 8.635909], + [-12.016454, 8.635905], + [-12.016569, 8.634705], + [-12.017107, 8.634009], + [-12.017952, 8.633485], + [-12.024351, 8.629218], + [-12.028802, 8.62297], + [-12.027082, 8.62125], + [-12.022085, 8.620417], + [-12.022084, 8.620415], + [-12.026249, 8.617083], + [-12.027917, 8.612084], + [-12.030417, 8.614583], + [-12.035354, 8.614583], + [-12.038608, 8.606695], + [-12.041844, 8.6033], + [-12.045094, 8.597822] + ] + ], + "type": "Polygon" + }, + "id": 392, + "properties": { + "cc:admin:id": ["54"], + "cc:oBld:total": 855, + "cc:pop:fifteen-to-twenty-four": 1283.2483544004372, + "cc:pop:grid3-total": 4912.741146889429, + "cc:pop:kontur-total": 7657.19408877112, + "cc:pop:men": 3269.3907315748525, + "cc:pop:sixty-plus": 450.8215538930236, + "cc:pop:total": 6850.854786648586, + "cc:pop:under-five": 1129.5983037753158, + "cc:pop:women": 3581.4640550737327, + "cc:pop:women-fiften-to-forty-nine": 1709.9688424525643, + "cc:pop:wp-total": 6405.246734015389, + "cc:pop:wp-total-UN": 7423.486999899389, + "cc:id": "392", + "cc:Name": "Mayossoh MCHP", + "cc:site": [-11.983, 8.592], + "user:parentName": "Kholifa Rowalla", + "user:code": "OU_268160", + "user:orgUnitId": "vQYIk5G9NxP", + "user:level": "4", + "user:parentId": "PQZJPIpTepd" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [-12.500999, 7.468499], + [-12.500999, 7.4671], + [-12.499899, 7.4657], + [-12.4985, 7.4662], + [-12.4976, 7.4676], + [-12.4979, 7.468999], + [-12.500099, 7.468999], + [-12.500999, 7.468499] + ] + ], + [ + [ + [-12.655416, 7.49875], + [-12.654582, 7.497917], + [-12.652916, 7.497916], + [-12.64875, 7.497083], + [-12.64875, 7.487917], + [-12.649322, 7.485623], + [-12.648499, 7.4851], + [-12.647399, 7.485099], + [-12.646299, 7.484299], + [-12.6418, 7.4826], + [-12.6379, 7.4818], + [-12.637099, 7.4807], + [-12.6343, 7.4793], + [-12.632899, 7.479299], + [-12.629599, 7.477399], + [-12.626, 7.4757], + [-12.6226, 7.4749], + [-12.622099, 7.4743], + [-12.6176, 7.4726], + [-12.617399, 7.472099], + [-12.614, 7.4704], + [-12.6118, 7.469899], + [-12.610699, 7.469], + [-12.6079, 7.468199], + [-12.606799, 7.467399], + [-12.6032, 7.465699], + [-12.601799, 7.4643], + [-12.599299, 7.463499], + [-12.5954, 7.4612], + [-12.5913, 7.459899], + [-12.589, 7.458199], + [-12.588199, 7.4571], + [-12.5871, 7.456799], + [-12.584899, 7.4549], + [-12.583699, 7.454599], + [-12.580999, 7.451], + [-12.580399, 7.450999], + [-12.578499, 7.4482], + [-12.5774, 7.4474], + [-12.577099, 7.4463], + [-12.576, 7.445399], + [-12.574899, 7.4429], + [-12.5737, 7.441799], + [-12.573499, 7.4407], + [-12.5715, 7.4387], + [-12.571499, 7.4376], + [-12.570399, 7.4368], + [-12.568799, 7.437099], + [-12.5671, 7.4363], + [-12.567099, 7.4332], + [-12.566299, 7.432899], + [-12.564, 7.4307], + [-12.563499, 7.4285], + [-12.5629, 7.427899], + [-12.5629, 7.4221], + [-12.563199, 7.421], + [-12.5624, 7.420399], + [-12.5624, 7.4185], + [-12.563199, 7.416499], + [-12.5632, 7.413999], + [-12.564299, 7.4124], + [-12.565999, 7.411799], + [-12.566799, 7.4104], + [-12.566799, 7.4076], + [-12.5663, 7.407099], + [-12.565999, 7.4043], + [-12.564599, 7.402899], + [-12.564, 7.4004], + [-12.564, 7.3968], + [-12.564299, 7.3954], + [-12.562599, 7.392599], + [-12.559599, 7.3893], + [-12.5568, 7.3893], + [-12.556499, 7.3899], + [-12.549, 7.3899], + [-12.548999, 7.3901], + [-12.5451, 7.3901], + [-12.545099, 7.3904], + [-12.5401, 7.3904], + [-12.536499, 7.392099], + [-12.5335, 7.392399], + [-12.531, 7.393199], + [-12.5288, 7.3935], + [-12.529, 7.395999], + [-12.530099, 7.397399], + [-12.5301, 7.398999], + [-12.5307, 7.3996], + [-12.530999, 7.402899], + [-12.5301, 7.4035], + [-12.5299, 7.405399], + [-12.530999, 7.4065], + [-12.5313, 7.4088], + [-12.5321, 7.410399], + [-12.5332, 7.4112], + [-12.533799, 7.413199], + [-12.5338, 7.414899], + [-12.5349, 7.416], + [-12.5354, 7.4182], + [-12.535699, 7.420999], + [-12.5357, 7.425099], + [-12.535999, 7.426499], + [-12.5349, 7.4274], + [-12.534899, 7.429899], + [-12.5343, 7.4304], + [-12.534299, 7.433199], + [-12.5338, 7.4346], + [-12.533799, 7.441799], + [-12.5332, 7.4435], + [-12.533199, 7.445399], + [-12.5324, 7.4471], + [-12.532399, 7.451299], + [-12.531499, 7.4526], + [-12.5313, 7.4549], + [-12.531299, 7.458499], + [-12.5304, 7.4612], + [-12.530699, 7.464299], + [-12.5299, 7.4651], + [-12.530099, 7.467599], + [-12.5285, 7.471299], + [-12.526299, 7.474299], + [-12.5232, 7.476499], + [-12.522899, 7.4771], + [-12.5196, 7.479899], + [-12.5179, 7.481799], + [-12.5157, 7.4826], + [-12.515399, 7.4838], + [-12.5124, 7.485099], + [-12.510099, 7.486799], + [-12.5079, 7.4874], + [-12.5071, 7.488799], + [-12.5063, 7.4888], + [-12.5035, 7.491799], + [-12.5012, 7.4937], + [-12.5004, 7.4951], + [-12.500615, 7.49675], + [-12.500652, 7.496826], + [-12.501154, 7.497318], + [-12.50185, 7.497764], + [-12.502381, 7.498121], + [-12.502794, 7.498829], + [-12.502875, 7.499441], + [-12.502779, 7.500051], + [-12.502624, 7.500594], + [-12.502259, 7.501264], + [-12.501363, 7.502099], + [-12.500519, 7.502985], + [-12.499909, 7.50394], + [-12.499952, 7.504513], + [-12.500231, 7.505099], + [-12.501079, 7.506215], + [-12.501798, 7.506364], + [-12.502581, 7.506311], + [-12.504822, 7.506213], + [-12.506082, 7.506816], + [-12.506398, 7.507813], + [-12.506424, 7.508679], + [-12.506502, 7.510253], + [-12.506659, 7.511145], + [-12.506739, 7.511249], + [-12.507389, 7.511249], + [-12.506576, 7.509839], + [-12.510482, 7.503074], + [-12.512848, 7.503074], + [-12.51375, 7.50375], + [-12.518685, 7.50375], + [-12.522201, 7.509839], + [-12.530014, 7.50984], + [-12.530982, 7.511518], + [-12.530417, 7.512084], + [-12.534762, 7.520775], + [-12.535967, 7.520348], + [-12.536235, 7.520657], + [-12.53623, 7.521686], + [-12.536082, 7.521743], + [-12.536099, 7.521943], + [-12.536874, 7.521819], + [-12.537903, 7.522212], + [-12.538285, 7.523244], + [-12.538281, 7.524017], + [-12.538918, 7.525565], + [-12.539433, 7.525697], + [-12.542951, 7.530422], + [-12.544041, 7.529732], + [-12.540597, 7.525318], + [-12.540728, 7.524803], + [-12.540108, 7.52455], + [-12.540232, 7.523558], + [-12.540734, 7.523643], + [-12.541252, 7.52326], + [-12.541372, 7.522359], + [-12.543366, 7.522359], + [-12.545787, 7.526554], + [-12.545318, 7.527337], + [-12.545179, 7.528145], + [-12.545458, 7.528451], + [-12.547993, 7.528452], + [-12.549164, 7.528786], + [-12.549441, 7.529426], + [-12.549107, 7.529734], + [-12.548745, 7.530207], + [-12.54855, 7.530792], + [-12.548495, 7.531822], + [-12.548745, 7.53263], + [-12.54908, 7.533215], + [-12.54986, 7.533606], + [-12.55167, 7.533579], + [-12.553258, 7.533773], + [-12.553845, 7.534776], + [-12.554299, 7.534632], + [-12.554299, 7.5343], + [-12.553199, 7.5335], + [-12.5507, 7.533199], + [-12.5507, 7.5324], + [-12.5521, 7.5321], + [-12.555099, 7.5324], + [-12.5551, 7.535999], + [-12.556299, 7.5376], + [-12.5565, 7.5393], + [-12.556499, 7.542399], + [-12.555399, 7.543699], + [-12.554, 7.5443], + [-12.5535, 7.547099], + [-12.5535, 7.549599], + [-12.5546, 7.5499], + [-12.5557, 7.550999], + [-12.558799, 7.551299], + [-12.560099, 7.5504], + [-12.561299, 7.550399], + [-12.562399, 7.549], + [-12.563799, 7.548499], + [-12.564, 7.547599], + [-12.565699, 7.5468], + [-12.567599, 7.5468], + [-12.569299, 7.5476], + [-12.5701, 7.5524], + [-12.5701, 7.557599], + [-12.5707, 7.558499], + [-12.572399, 7.559], + [-12.574599, 7.5607], + [-12.5743, 7.562399], + [-12.5746, 7.564], + [-12.5746, 7.568199], + [-12.5763, 7.570699], + [-12.579599, 7.573199], + [-12.582399, 7.575999], + [-12.583699, 7.578799], + [-12.583499, 7.581299], + [-12.5824, 7.584], + [-12.5826, 7.585699], + [-12.588499, 7.5857], + [-12.5901, 7.5865], + [-12.593199, 7.5874], + [-12.5949, 7.589], + [-12.595399, 7.590999], + [-12.5954, 7.592599], + [-12.5949, 7.5932], + [-12.594899, 7.595099], + [-12.594299, 7.5965], + [-12.5915, 7.5987], + [-12.5904, 7.6007], + [-12.590399, 7.602399], + [-12.5899, 7.6029], + [-12.589599, 7.605399], + [-12.589, 7.606], + [-12.589, 7.6088], + [-12.5899, 7.609299], + [-12.593199, 7.609299], + [-12.5951, 7.6079], + [-12.596499, 7.607599], + [-12.597099, 7.6068], + [-12.597099, 7.604], + [-12.5965, 7.603499], + [-12.596499, 7.6013], + [-12.596, 7.600099], + [-12.596199, 7.5976], + [-12.5974, 7.5949], + [-12.5987, 7.5938], + [-12.602099, 7.5938], + [-12.604, 7.594599], + [-12.6054, 7.5946], + [-12.606799, 7.596], + [-12.6065, 7.599299], + [-12.6071, 7.5999], + [-12.6076, 7.602099], + [-12.608999, 7.603199], + [-12.609, 7.604299], + [-12.611299, 7.606499], + [-12.6115, 7.608499], + [-12.614599, 7.608199], + [-12.6143, 7.6035], + [-12.6154, 7.600699], + [-12.615999, 7.5968], + [-12.617099, 7.595999], + [-12.6171, 7.5899], + [-12.617599, 7.5888], + [-12.6204, 7.5871], + [-12.623999, 7.5871], + [-12.625099, 7.587399], + [-12.626499, 7.5904], + [-12.6268, 7.592899], + [-12.628499, 7.592899], + [-12.629299, 7.5904], + [-12.629899, 7.590099], + [-12.630999, 7.587601], + [-12.631001, 7.587601], + [-12.631488, 7.588149], + [-12.63162, 7.587898], + [-12.632546, 7.587172], + [-12.633345, 7.5866], + [-12.633831, 7.58585], + [-12.633632, 7.584258], + [-12.632584, 7.581431], + [-12.63203, 7.580866], + [-12.631601, 7.580474], + [-12.630925, 7.58017], + [-12.630246, 7.579921], + [-12.629729, 7.580027], + [-12.629177, 7.57992], + [-12.629266, 7.579403], + [-12.629694, 7.5791], + [-12.630176, 7.578743], + [-12.630443, 7.578101], + [-12.630638, 7.577371], + [-12.630425, 7.57721], + [-12.630301, 7.577691], + [-12.630158, 7.578101], + [-12.629907, 7.578618], + [-12.629515, 7.578994], + [-12.62891, 7.579118], + [-12.62866, 7.579617], + [-12.628428, 7.579955], + [-12.628054, 7.580206], + [-12.627572, 7.580883], + [-12.627162, 7.581596], + [-12.626788, 7.582238], + [-12.626485, 7.582666], + [-12.625824, 7.583023], + [-12.625417, 7.583035], + [-12.625417, 7.579583], + [-12.627745, 7.576671], + [-12.62717, 7.576668], + [-12.626393, 7.57705], + [-12.625371, 7.575242], + [-12.625631, 7.574986], + [-12.626404, 7.574989], + [-12.626412, 7.573702], + [-12.62744, 7.574351], + [-12.627508, 7.573865], + [-12.625417, 7.571249], + [-12.625417, 7.56375], + [-12.63211, 7.560402], + [-12.632165, 7.560082], + [-12.631131, 7.560332], + [-12.630492, 7.5593], + [-12.630495, 7.558784], + [-12.631399, 7.558531], + [-12.631402, 7.558016], + [-12.632177, 7.557892], + [-12.63282, 7.558281], + [-12.633075, 7.559055], + [-12.633589, 7.559574], + [-12.633714, 7.560089], + [-12.635002, 7.560482], + [-12.635779, 7.56023], + [-12.636294, 7.560231], + [-12.636552, 7.56049], + [-12.637841, 7.560627], + [-12.637844, 7.560112], + [-12.638618, 7.560115], + [-12.638754, 7.559086], + [-12.638949, 7.558958], + [-12.639362, 7.558959], + [-12.639679, 7.558538], + [-12.640407, 7.558265], + [-12.640611, 7.557335], + [-12.641263, 7.555022], + [-12.637691, 7.549662], + [-12.63782, 7.549591], + [-12.639179, 7.548635], + [-12.642293, 7.546424], + [-12.643603, 7.546172], + [-12.645793, 7.546171], + [-12.645416, 7.545417], + [-12.639583, 7.545416], + [-12.642082, 7.539584], + [-12.645416, 7.540416], + [-12.647916, 7.537917], + [-12.651249, 7.537083], + [-12.651249, 7.534584], + [-12.650417, 7.532083], + [-12.650416, 7.530417], + [-12.649582, 7.530416], + [-12.647917, 7.527083], + [-12.647917, 7.517084], + [-12.648749, 7.516249], + [-12.64875, 7.515417], + [-12.652082, 7.516249], + [-12.652316, 7.516249], + [-12.652577, 7.516092], + [-12.653002, 7.516249], + [-12.653749, 7.516249], + [-12.65375, 7.50375], + [-12.655416, 7.49875] + ] + ], + [ + [ + [-12.517099, 7.468699], + [-12.516299, 7.466], + [-12.5154, 7.4651], + [-12.5129, 7.4651], + [-12.511, 7.466], + [-12.510399, 7.467399], + [-12.5088, 7.4687], + [-12.5088, 7.470099], + [-12.5101, 7.470699], + [-12.5118, 7.4704], + [-12.515099, 7.470399], + [-12.516299, 7.469], + [-12.517099, 7.468699] + ] + ], + [ + [ + [-12.557399, 7.384299], + [-12.556799, 7.3832], + [-12.5551, 7.3843], + [-12.5551, 7.385099], + [-12.557399, 7.384299] + ] + ] + ], + "type": "MultiPolygon" + }, + "id": 393, + "properties": { + "cc:admin:id": ["18"], + "cc:oBld:total": 402, + "cc:pop:fifteen-to-twenty-four": 1468.0859564124976, + "cc:pop:grid3-total": 6683.648321662169, + "cc:pop:kontur-total": 6762.6522220056895, + "cc:pop:men": 3914.748157923872, + "cc:pop:sixty-plus": 642.8980394991024, + "cc:pop:total": 8285.870128248265, + "cc:pop:under-five": 1369.6827850603343, + "cc:pop:women": 4371.121970324397, + "cc:pop:women-fiften-to-forty-nine": 2145.65379555006, + "cc:pop:wp-total": 7347.390182985575, + "cc:pop:wp-total-UN": 8518.745576773255, + "cc:id": "393", + "cc:Name": "Mbokie CHP", + "cc:site": [-12.56, 7.5], + "user:parentName": "Sittia", + "user:code": "OU_197401", + "user:orgUnitId": "nImgPWDVQIa", + "user:level": "4", + "user:parentId": "g8DdBm7EmUt" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.570462, 7.956986], + [-11.569882, 7.957096], + [-11.569222, 7.956655], + [-11.568189, 7.953036], + [-11.568458, 7.952875], + [-11.567917, 7.95125], + [-11.565417, 7.947084], + [-11.56578, 7.945989], + [-11.566194, 7.945896], + [-11.566208, 7.945894], + [-11.567082, 7.944584], + [-11.564583, 7.94125], + [-11.561451, 7.938745], + [-11.562163, 7.937856], + [-11.561712, 7.937636], + [-11.561069, 7.937869], + [-11.560639, 7.937823], + [-11.560051, 7.938123], + [-11.55873, 7.937172], + [-11.558101, 7.936366], + [-11.557202, 7.93591], + [-11.556906, 7.93581], + [-11.556285, 7.936236], + [-11.555567, 7.936304], + [-11.554636, 7.935805], + [-11.553992, 7.937207], + [-11.552793, 7.937718], + [-11.552758, 7.937758], + [-11.551249, 7.936249], + [-11.550665, 7.933325], + [-11.550914, 7.933244], + [-11.551444, 7.933616], + [-11.552082, 7.933695], + [-11.552082, 7.932917], + [-11.548749, 7.930417], + [-11.539583, 7.930416], + [-11.539582, 7.925969], + [-11.536265, 7.927033], + [-11.535798, 7.927409], + [-11.535073, 7.927586], + [-11.535182, 7.925487], + [-11.534329, 7.926326], + [-11.532488, 7.929266], + [-11.531617, 7.930087], + [-11.52875, 7.922917], + [-11.532916, 7.920416], + [-11.533749, 7.912917], + [-11.532917, 7.910417], + [-11.530417, 7.909584], + [-11.522917, 7.912083], + [-11.519583, 7.916247], + [-11.519583, 7.90625], + [-11.521249, 7.904583], + [-11.52125, 7.90375], + [-11.519584, 7.903194], + [-11.520594, 7.901605], + [-11.520416, 7.90125], + [-11.517917, 7.901249], + [-11.517916, 7.897917], + [-11.51125, 7.898749], + [-11.511249, 7.897917], + [-11.508057, 7.901905], + [-11.507333, 7.901424], + [-11.506151, 7.901074], + [-11.505716, 7.900769], + [-11.504899, 7.899529], + [-11.503768, 7.898556], + [-11.502969, 7.897459], + [-11.501946, 7.896568], + [-11.497818, 7.89179], + [-11.496226, 7.88921], + [-11.495276, 7.887096], + [-11.494358, 7.886165], + [-11.49375, 7.885888], + [-11.492929, 7.885159], + [-11.491986, 7.884764], + [-11.490989, 7.884784], + [-11.490615, 7.884645], + [-11.488547, 7.885012], + [-11.486168, 7.885205], + [-11.485954, 7.885087], + [-11.48584, 7.885288], + [-11.484216, 7.885878], + [-11.48375, 7.886348], + [-11.483749, 7.888627], + [-11.483541, 7.88863], + [-11.482715, 7.889291], + [-11.482089, 7.889621], + [-11.481428, 7.889738], + [-11.481261, 7.890155], + [-11.480757, 7.890563], + [-11.480932, 7.890846], + [-11.481098, 7.890824], + [-11.481013, 7.891061], + [-11.480711, 7.891498], + [-11.480571, 7.89182], + [-11.480137, 7.892173], + [-11.48111, 7.89242], + [-11.481501, 7.892696], + [-11.48174, 7.892286], + [-11.481917, 7.892205], + [-11.487082, 7.899583], + [-11.487916, 7.899584], + [-11.487917, 7.903609], + [-11.487915, 7.90361], + [-11.487453, 7.903538], + [-11.487524, 7.904224], + [-11.487837, 7.904871], + [-11.488306, 7.905345], + [-11.489099, 7.909353], + [-11.489168, 7.909361], + [-11.490221, 7.908796], + [-11.491361, 7.908624], + [-11.492916, 7.909202], + [-11.492917, 7.910416], + [-11.497916, 7.915417], + [-11.498749, 7.917916], + [-11.496249, 7.920417], + [-11.492083, 7.926249], + [-11.492083, 7.927916], + [-11.502082, 7.92875], + [-11.502917, 7.932916], + [-11.507083, 7.937083], + [-11.507917, 7.937084], + [-11.509351, 7.938039], + [-11.507432, 7.939814], + [-11.506493, 7.940324], + [-11.505344, 7.940664], + [-11.50564, 7.941028], + [-11.509687, 7.941762], + [-11.509809, 7.941822], + [-11.510358, 7.942904], + [-11.510838, 7.944393], + [-11.511262, 7.946485], + [-11.511257, 7.947843], + [-11.511318, 7.947841], + [-11.51145, 7.947989], + [-11.512311, 7.947874], + [-11.512933, 7.947979], + [-11.514406, 7.948797], + [-11.512917, 7.956249], + [-11.515416, 7.960417], + [-11.513938, 7.965838], + [-11.521363, 7.965839], + [-11.524146, 7.970656], + [-11.525416, 7.96875], + [-11.525748, 7.96875], + [-11.528621, 7.973726], + [-11.532927, 7.973727], + [-11.532916, 7.97375], + [-11.53125, 7.974584], + [-11.528374, 7.982492], + [-11.5304, 7.981999], + [-11.538299, 7.9817], + [-11.541999, 7.9808], + [-11.549299, 7.9775], + [-11.553599, 7.9751], + [-11.557499, 7.9732], + [-11.561, 7.970299], + [-11.5633, 7.967399], + [-11.5653, 7.963099], + [-11.5672, 7.960499], + [-11.570462, 7.956986] + ] + ], + "type": "Polygon" + }, + "id": 394, + "properties": { + "cc:admin:id": ["2"], + "cc:oBld:total": 163, + "cc:pop:fifteen-to-twenty-four": 1359.5979862115912, + "cc:pop:grid3-total": 3885.133606183255, + "cc:pop:kontur-total": 6878.751106563167, + "cc:pop:men": 3931.7607315994114, + "cc:pop:sixty-plus": 537.4126426718628, + "cc:pop:total": 7615.362496317589, + "cc:pop:under-five": 1249.5458161579277, + "cc:pop:women": 3683.6017647181784, + "cc:pop:women-fiften-to-forty-nine": 1757.0113154415626, + "cc:pop:wp-total": 6735.496441683759, + "cc:pop:wp-total-UN": 7808.255344505183, + "cc:id": "394", + "cc:Name": "Mbundorbu MCHP", + "cc:site": [-11.511, 7.9235], + "user:parentName": "Baoma", + "user:code": "OU_581", + "user:orgUnitId": "EuoA3Crpqts", + "user:level": "4", + "user:parentId": "vWbkYPRmKyS" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.4226, 9.522224], + [-11.422077, 9.521319], + [-11.421249, 9.521249], + [-11.417917, 9.517083], + [-11.417916, 9.509583], + [-11.414583, 9.509582], + [-11.414583, 9.499583], + [-11.417008, 9.497158], + [-11.413499, 9.496799], + [-11.4082, 9.4946], + [-11.4057, 9.494], + [-11.4003, 9.4933], + [-11.3978, 9.4927], + [-11.393099, 9.490799], + [-11.3895, 9.4901], + [-11.3827, 9.4898], + [-11.3789, 9.4891], + [-11.3736, 9.4869], + [-11.3677, 9.4853], + [-11.362299, 9.483099], + [-11.3585, 9.4825], + [-11.3555, 9.4824], + [-11.339599, 9.482699], + [-11.3369, 9.482399], + [-11.3344, 9.4812], + [-11.3305, 9.475599], + [-11.329599, 9.472199], + [-11.3295, 9.467699], + [-11.3301, 9.4646], + [-11.331299, 9.4625], + [-11.3332, 9.460299], + [-11.338199, 9.455299], + [-11.339899, 9.451999], + [-11.339099, 9.4495], + [-11.3324, 9.4457], + [-11.321899, 9.4433], + [-11.3147, 9.445799], + [-11.3104, 9.448199], + [-11.307199, 9.4496], + [-11.303, 9.451999], + [-11.299, 9.453999], + [-11.2941, 9.457899], + [-11.2921, 9.459099], + [-11.289099, 9.4599], + [-11.283799, 9.4605], + [-11.281299, 9.4612], + [-11.2768, 9.463199], + [-11.273399, 9.4639], + [-11.2699, 9.463899], + [-11.266699, 9.462599], + [-11.263099, 9.456999], + [-11.262199, 9.453599], + [-11.261321, 9.447015], + [-11.261167, 9.447459], + [-11.258749, 9.44625], + [-11.25372, 9.44625], + [-11.253696, 9.446601], + [-11.253874, 9.448039], + [-11.254512, 9.449638], + [-11.254548, 9.450204], + [-11.254352, 9.450675], + [-11.254485, 9.451236], + [-11.254468, 9.451765], + [-11.254829, 9.452554], + [-11.254807, 9.453109], + [-11.254469, 9.453181], + [-11.254096, 9.453241], + [-11.25353, 9.45318], + [-11.25352, 9.453554], + [-11.253167, 9.454021], + [-11.25288, 9.454912], + [-11.252096, 9.455596], + [-11.250884, 9.455986], + [-11.252082, 9.459582], + [-11.242083, 9.462917], + [-11.24375, 9.469582], + [-11.245191, 9.470737], + [-11.237674, 9.470738], + [-11.233768, 9.477503], + [-11.237673, 9.484269], + [-11.233768, 9.491034], + [-11.225955, 9.491035], + [-11.222048, 9.4978], + [-11.214236, 9.497801], + [-11.21033, 9.504566], + [-11.202518, 9.504567], + [-11.19861, 9.511332], + [-11.190799, 9.511333], + [-11.186892, 9.518098], + [-11.17908, 9.518099], + [-11.175174, 9.524864], + [-11.179079, 9.53163], + [-11.175174, 9.538395], + [-11.167361, 9.538396], + [-11.163973, 9.544265], + [-11.164425, 9.544351], + [-11.165214, 9.544072], + [-11.165614, 9.544465], + [-11.166039, 9.544605], + [-11.166803, 9.544195], + [-11.167014, 9.544308], + [-11.167051, 9.544753], + [-11.167218, 9.544885], + [-11.167493, 9.544596], + [-11.167494, 9.544156], + [-11.167495, 9.544155], + [-11.16839, 9.54684], + [-11.167796, 9.546881], + [-11.166273, 9.548366], + [-11.164841, 9.54926], + [-11.16264, 9.550144], + [-11.160581, 9.550712], + [-11.159518, 9.550788], + [-11.158341, 9.550848], + [-11.156002, 9.554896], + [-11.148191, 9.554897], + [-11.147665, 9.555807], + [-11.147917, 9.559582], + [-11.151313, 9.562301], + [-11.150886, 9.562574], + [-11.149808, 9.56295], + [-11.149079, 9.564299], + [-11.148901, 9.565753], + [-11.148398, 9.566304], + [-11.148027, 9.567604], + [-11.147526, 9.568293], + [-11.150695, 9.573784], + [-11.14679, 9.580549], + [-11.142666, 9.580549], + [-11.140416, 9.57875], + [-11.13081, 9.57875], + [-11.1313, 9.5798], + [-11.132099, 9.583499], + [-11.132499, 9.590599], + [-11.1325, 9.611099], + [-11.132899, 9.617099], + [-11.1336, 9.62], + [-11.1356, 9.6245], + [-11.1364, 9.6282], + [-11.1367, 9.6351], + [-11.136799, 9.658499], + [-11.137199, 9.665599], + [-11.1379, 9.6684], + [-11.139999, 9.672699], + [-11.140399, 9.6753], + [-11.140199, 9.678699], + [-11.1391, 9.681199], + [-11.1353, 9.686099], + [-11.1342, 9.6882], + [-11.133599, 9.6916], + [-11.1334, 9.700299], + [-11.140599, 9.6959], + [-11.1443, 9.693999], + [-11.1468, 9.691999], + [-11.1498, 9.688499], + [-11.155499, 9.6864], + [-11.16, 9.684499], + [-11.1637, 9.683799], + [-11.169499, 9.6835], + [-11.173299, 9.683], + [-11.179599, 9.6805], + [-11.1825, 9.679999], + [-11.1855, 9.6798], + [-11.206899, 9.679899], + [-11.210699, 9.6793], + [-11.2162, 9.677099], + [-11.222, 9.675599], + [-11.227299, 9.6732], + [-11.2301, 9.672699], + [-11.2373, 9.6723], + [-11.266299, 9.672499], + [-11.272399, 9.6722], + [-11.2753, 9.671499], + [-11.2806, 9.669399], + [-11.2855, 9.6687], + [-11.294699, 9.6687], + [-11.2987, 9.668399], + [-11.3015, 9.667799], + [-11.306, 9.665899], + [-11.3087, 9.665299], + [-11.315499, 9.664399], + [-11.3248, 9.660099], + [-11.3271, 9.658399], + [-11.331199, 9.6543], + [-11.333899, 9.651], + [-11.337999, 9.643], + [-11.340451, 9.637345], + [-11.341187, 9.625594], + [-11.341933, 9.625383], + [-11.342386, 9.625501], + [-11.342696, 9.625692], + [-11.345123, 9.621492], + [-11.352935, 9.621491], + [-11.356841, 9.614726], + [-11.352936, 9.60796], + [-11.354678, 9.604941], + [-11.35625, 9.606249], + [-11.366249, 9.606249], + [-11.371249, 9.601249], + [-11.370417, 9.590417], + [-11.381249, 9.591249], + [-11.38125, 9.590416], + [-11.382917, 9.589582], + [-11.387917, 9.579583], + [-11.390416, 9.577083], + [-11.393749, 9.577916], + [-11.39875, 9.574583], + [-11.402082, 9.573749], + [-11.392083, 9.561249], + [-11.397917, 9.55625], + [-11.402916, 9.557082], + [-11.40375, 9.552916], + [-11.408133, 9.548532], + [-11.407732, 9.548258], + [-11.407732, 9.548256], + [-11.40875, 9.547916], + [-11.415416, 9.541249], + [-11.415416, 9.539583], + [-11.412916, 9.537083], + [-11.407917, 9.536249], + [-11.40714, 9.535472], + [-11.410882, 9.528991], + [-11.418694, 9.52899], + [-11.4226, 9.522224] + ] + ], + "type": "Polygon" + }, + "id": 395, + "properties": { + "cc:admin:id": ["122"], + "cc:oBld:total": 311, + "cc:pop:fifteen-to-twenty-four": 2253.9483360010327, + "cc:pop:grid3-total": 6328.540222038933, + "cc:pop:kontur-total": 14447.808626627344, + "cc:pop:men": 5662.444783834117, + "cc:pop:sixty-plus": 786.861797756811, + "cc:pop:total": 12095.382702023206, + "cc:pop:under-five": 1961.8116965107417, + "cc:pop:women": 6432.937918189092, + "cc:pop:women-fiften-to-forty-nine": 3118.0605722414552, + "cc:pop:wp-total": 9253.15060225184, + "cc:pop:wp-total-UN": 10723.620241716317, + "cc:id": "395", + "cc:Name": "MCH Static", + "cc:site": [-11.30152, 9.5283], + "user:parentName": "Wara Wara Yagala", + "user:code": "OU_226259", + "user:orgUnitId": "kpDoH80fwdX", + "user:level": "4", + "user:parentId": "EZPwuUTeIIG" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.056314, 7.750209], + [-11.056399, 7.748999], + [-11.056074, 7.736579], + [-11.053749, 7.735417], + [-11.044582, 7.737084], + [-11.042926, 7.737083], + [-11.042744, 7.73625], + [-11.039582, 7.736249], + [-11.035417, 7.732083], + [-11.035797, 7.726739], + [-11.032905, 7.72173], + [-11.025093, 7.721729], + [-11.022623, 7.717451], + [-11.022917, 7.717083], + [-11.022916, 7.707917], + [-11.020417, 7.705417], + [-11.019901, 7.70336], + [-11.018742, 7.704208], + [-11.017578, 7.704354], + [-11.016295, 7.703812], + [-11.014585, 7.704279], + [-11.013139, 7.705063], + [-11.011849, 7.70436], + [-11.011412, 7.70329], + [-11.011883, 7.699735], + [-11.012568, 7.697129], + [-11.011249, 7.69625], + [-11.00375, 7.696249], + [-11.003749, 7.694584], + [-10.99875, 7.692083], + [-10.990416, 7.682084], + [-10.987917, 7.682917], + [-10.984582, 7.687083], + [-10.982916, 7.687916], + [-10.982083, 7.687917], + [-10.981249, 7.687083], + [-10.974583, 7.683749], + [-10.972082, 7.680417], + [-10.965417, 7.680417], + [-10.968749, 7.695416], + [-10.967916, 7.699583], + [-10.964582, 7.703749], + [-10.954582, 7.704583], + [-10.94875, 7.692084], + [-10.949024, 7.690707], + [-10.948625, 7.690706], + [-10.94472, 7.683942], + [-10.948625, 7.677176], + [-10.944719, 7.67041], + [-10.936908, 7.670409], + [-10.933, 7.663644], + [-10.925188, 7.663643], + [-10.921282, 7.656878], + [-10.913469, 7.656877], + [-10.909564, 7.650112], + [-10.913469, 7.643346], + [-10.909563, 7.636581], + [-10.90418, 7.636581], + [-10.904299, 7.6387], + [-10.903499, 7.6439], + [-10.8984, 7.655199], + [-10.895299, 7.658399], + [-10.891299, 7.6606], + [-10.8894, 7.6635], + [-10.8889, 7.667], + [-10.8894, 7.6707], + [-10.894, 7.680799], + [-10.898299, 7.684799], + [-10.901999, 7.688999], + [-10.9059, 7.695099], + [-10.909699, 7.6983], + [-10.910899, 7.7006], + [-10.910899, 7.703199], + [-10.908999, 7.706799], + [-10.906199, 7.7096], + [-10.9004, 7.7138], + [-10.8958, 7.720099], + [-10.8946, 7.7233], + [-10.8949, 7.727799], + [-10.903199, 7.742299], + [-10.907199, 7.754599], + [-10.9091, 7.759099], + [-10.9142, 7.7599], + [-10.9236, 7.7609], + [-10.933299, 7.762599], + [-10.941999, 7.7607], + [-10.949899, 7.76], + [-10.958899, 7.7605], + [-10.962099, 7.761899], + [-10.964399, 7.7657], + [-10.965799, 7.774599], + [-10.9671, 7.7794], + [-10.9685, 7.7827], + [-10.9728, 7.789899], + [-10.9765, 7.7931], + [-10.9806, 7.7955], + [-10.988, 7.8006], + [-10.994299, 7.803999], + [-11.0035, 7.797099], + [-11.011399, 7.7932], + [-11.0138, 7.792399], + [-11.0172, 7.791699], + [-11.021199, 7.7898], + [-11.0255, 7.786399], + [-11.0309, 7.783399], + [-11.035099, 7.7798], + [-11.037099, 7.7769], + [-11.038999, 7.773], + [-11.040499, 7.7709], + [-11.047399, 7.7634], + [-11.05, 7.7597], + [-11.053, 7.757499], + [-11.055399, 7.7546], + [-11.056199, 7.7518], + [-11.056314, 7.750209] + ] + ], + "type": "Polygon" + }, + "id": 397, + "properties": { + "cc:admin:id": ["28"], + "cc:oBld:total": 1564, + "cc:pop:fifteen-to-twenty-four": 1967.0072530399796, + "cc:pop:grid3-total": 6609.758577745678, + "cc:pop:kontur-total": 9518.601928542159, + "cc:pop:men": 4918.002926684879, + "cc:pop:sixty-plus": 605.1218822319429, + "cc:pop:total": 10150.470683265852, + "cc:pop:under-five": 1599.6102292407356, + "cc:pop:women": 5232.467756580977, + "cc:pop:women-fiften-to-forty-nine": 2635.0764614940135, + "cc:pop:wp-total": 9798.757349229605, + "cc:pop:wp-total-UN": 11367.35056330804, + "cc:id": "397", + "cc:Name": "Mendekelema CHP", + "cc:site": [-10.9767, 7.7661], + "user:parentName": "Gaura", + "user:code": "OU_222746", + "user:orgUnitId": "sYjp3h6amhA", + "user:level": "4", + "user:parentId": "eROJsBwxQHt" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.539899, 8.176399], + [-11.5387, 8.171699], + [-11.539499, 8.1677], + [-11.539399, 8.1651], + [-11.537399, 8.160199], + [-11.5367, 8.1576], + [-11.536456, 8.155417], + [-11.536249, 8.155416], + [-11.532916, 8.147916], + [-11.53125, 8.137084], + [-11.531249, 8.136249], + [-11.523749, 8.129584], + [-11.512917, 8.129583], + [-11.513749, 8.12625], + [-11.507917, 8.12375], + [-11.507082, 8.122084], + [-11.505769, 8.122083], + [-11.506033, 8.121626], + [-11.506129, 8.120904], + [-11.507023, 8.119993], + [-11.507875, 8.119469], + [-11.508745, 8.118394], + [-11.508979, 8.117721], + [-11.508759, 8.116095], + [-11.507924, 8.114608], + [-11.507927, 8.114584], + [-11.504583, 8.114583], + [-11.497917, 8.112084], + [-11.496249, 8.112916], + [-11.490416, 8.10375], + [-11.488749, 8.102917], + [-11.48125, 8.102916], + [-11.480416, 8.099584], + [-11.47875, 8.098749], + [-11.479582, 8.08875], + [-11.477082, 8.08625], + [-11.46375, 8.08375], + [-11.462916, 8.085416], + [-11.45875, 8.088749], + [-11.453268, 8.089435], + [-11.453499, 8.096399], + [-11.453499, 8.1033], + [-11.4529, 8.107199], + [-11.4507, 8.112599], + [-11.45, 8.1163], + [-11.450199, 8.120199], + [-11.450899, 8.122899], + [-11.453199, 8.1282], + [-11.453399, 8.132499], + [-11.452399, 8.1357], + [-11.4482, 8.1423], + [-11.4495, 8.145], + [-11.451499, 8.149799], + [-11.4538, 8.1527], + [-11.4566, 8.1552], + [-11.4617, 8.1582], + [-11.4641, 8.1602], + [-11.4663, 8.162799], + [-11.4703, 8.1642], + [-11.4747, 8.164399], + [-11.488099, 8.1643], + [-11.4922, 8.164099], + [-11.4949, 8.163399], + [-11.502499, 8.1597], + [-11.5068, 8.1574], + [-11.510199, 8.1568], + [-11.513599, 8.1575], + [-11.515599, 8.158999], + [-11.516699, 8.160399], + [-11.5178, 8.1631], + [-11.5181, 8.1666], + [-11.5181, 8.178699], + [-11.5182, 8.187999], + [-11.521, 8.186999], + [-11.5253, 8.185799], + [-11.5298, 8.183799], + [-11.536299, 8.182199], + [-11.538999, 8.179899], + [-11.539899, 8.176399] + ] + ], + "type": "Polygon" + }, + "id": 398, + "properties": { + "cc:admin:id": ["3"], + "cc:oBld:total": 122, + "cc:pop:fifteen-to-twenty-four": 627.2400203044792, + "cc:pop:grid3-total": 2025.5589904293467, + "cc:pop:kontur-total": 3466.191627263664, + "cc:pop:men": 1642.380871201434, + "cc:pop:sixty-plus": 248.9750089832172, + "cc:pop:total": 3521.435353057578, + "cc:pop:under-five": 587.3450180894217, + "cc:pop:women": 1879.0544818561434, + "cc:pop:women-fiften-to-forty-nine": 891.2061807270686, + "cc:pop:wp-total": 2350.0363292400216, + "cc:pop:wp-total-UN": 2733.0754777372345, + "cc:id": "398", + "cc:Name": "Mendewa MCHP", + "cc:site": [-11.4844, 8.1597], + "user:parentName": "Bargbe", + "user:code": "OU_598", + "user:orgUnitId": "YWXXO0XMkQe", + "user:level": "4", + "user:parentId": "dGheVylzol6" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.909583, 8.938749], + [-12.909582, 8.9384], + [-12.906499, 8.938399], + [-12.902499, 8.937899], + [-12.8971, 8.9357], + [-12.8919, 8.9344], + [-12.8893, 8.9332], + [-12.886099, 8.931099], + [-12.8794, 8.9241], + [-12.873399, 8.9354], + [-12.870799, 8.9386], + [-12.8634, 8.946699], + [-12.8611, 8.949999], + [-12.857299, 8.9574], + [-12.853199, 8.967], + [-12.8477, 8.976399], + [-12.8434, 8.982399], + [-12.8402, 8.987599], + [-12.8324, 8.997199], + [-12.8293, 9.002399], + [-12.8249, 9.008499], + [-12.820999, 9.0147], + [-12.818399, 9.0177], + [-12.8089, 9.027599], + [-12.805799, 9.0319], + [-12.803499, 9.0373], + [-12.798, 9.053999], + [-12.796299, 9.061], + [-12.7959, 9.0662], + [-12.796399, 9.072799], + [-12.798269, 9.079484], + [-12.807082, 9.078749], + [-12.808306, 9.077527], + [-12.810447, 9.081233], + [-12.817082, 9.081233], + [-12.817083, 9.072083], + [-12.822082, 9.071249], + [-12.825949, 9.06893], + [-12.82629, 9.070316], + [-12.826303, 9.070416], + [-12.827916, 9.070417], + [-12.829583, 9.072082], + [-12.832082, 9.072082], + [-12.835417, 9.067916], + [-12.840416, 9.067083], + [-12.843671, 9.067082], + [-12.843607, 9.066666], + [-12.842358, 9.06267], + [-12.842032, 9.061622], + [-12.842032, 9.060575], + [-12.842656, 9.059261], + [-12.843391, 9.058179], + [-12.85394, 9.060287], + [-12.854731, 9.059377], + [-12.855417, 9.054583], + [-12.858749, 9.053749], + [-12.859583, 9.051249], + [-12.866249, 9.046249], + [-12.865688, 9.043441], + [-12.865689, 9.043439], + [-12.865859, 9.043413], + [-12.865416, 9.042083], + [-12.862917, 9.042082], + [-12.862917, 9.03292], + [-12.864732, 9.036539], + [-12.866928, 9.038538], + [-12.868632, 9.039416], + [-12.869226, 9.039295], + [-12.871109, 9.039702], + [-12.871323, 9.039905], + [-12.871402, 9.040392], + [-12.871186, 9.040955], + [-12.871428, 9.041191], + [-12.872477, 9.040171], + [-12.874516, 9.039274], + [-12.880463, 9.038696], + [-12.881232, 9.038544], + [-12.883369, 9.037641], + [-12.880782, 9.033245], + [-12.879909, 9.033451], + [-12.87842, 9.03015], + [-12.881249, 9.029582], + [-12.882694, 9.02308], + [-12.882651, 9.023071], + [-12.88265, 9.023069], + [-12.884582, 9.017916], + [-12.884583, 9.016249], + [-12.885417, 9.009583], + [-12.887083, 9.008749], + [-12.891249, 9.004583], + [-12.895416, 8.999582], + [-12.89375, 8.996249], + [-12.89375, 8.995416], + [-12.894582, 8.99125], + [-12.892083, 8.98625], + [-12.897916, 8.985416], + [-12.898396, 8.983498], + [-12.898398, 8.983497], + [-12.898445, 8.983525], + [-12.899582, 8.98125], + [-12.897083, 8.97875], + [-12.897916, 8.977082], + [-12.892917, 8.967917], + [-12.892083, 8.967082], + [-12.896285, 8.96218], + [-12.897198, 8.962642], + [-12.901249, 8.957916], + [-12.900064, 8.953568], + [-12.900065, 8.953568], + [-12.900442, 8.953987], + [-12.90077, 8.954077], + [-12.904797, 8.952968], + [-12.906143, 8.95184], + [-12.907028, 8.950575], + [-12.907312, 8.950523], + [-12.907879, 8.949194], + [-12.908041, 8.947715], + [-12.908602, 8.94509], + [-12.904583, 8.943749], + [-12.909583, 8.938749] + ] + ], + "type": "Polygon" + }, + "id": 399, + "properties": { + "cc:admin:id": ["82"], + "cc:oBld:total": 533, + "cc:pop:fifteen-to-twenty-four": 1836.912649630395, + "cc:pop:grid3-total": 6161.14971183096, + "cc:pop:kontur-total": 9857.283996816985, + "cc:pop:men": 4605.950224252585, + "cc:pop:sixty-plus": 667.0972708712574, + "cc:pop:total": 9750.726146619572, + "cc:pop:under-five": 1529.0187924155684, + "cc:pop:women": 5144.7759223669855, + "cc:pop:women-fiften-to-forty-nine": 2442.778905420709, + "cc:pop:wp-total": 10849.444962392046, + "cc:pop:wp-total-UN": 12582.73673387518, + "cc:id": "399", + "cc:Name": "Menicurve MCHP", + "cc:site": [-12.8594, 9.0139], + "user:parentName": "Magbema", + "user:code": "OU_211230", + "user:orgUnitId": "VjVYaKZ9t4K", + "user:level": "4", + "user:parentId": "QywkxFudXrC" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.886249, 8.454583], + [-12.885416, 8.452917], + [-12.882916, 8.452083], + [-12.882339, 8.448041], + [-12.883323, 8.447784], + [-12.884257, 8.448155], + [-12.884237, 8.447092], + [-12.883033, 8.446112], + [-12.880386, 8.446521], + [-12.878755, 8.446441], + [-12.876744, 8.44567], + [-12.875115, 8.445413], + [-12.874835, 8.445223], + [-12.87512, 8.444511], + [-12.876634, 8.440754], + [-12.876331, 8.440373], + [-12.878125, 8.436998], + [-12.878422, 8.436433], + [-12.877856, 8.436068], + [-12.875116, 8.433374], + [-12.874423, 8.432172], + [-12.873868, 8.431486], + [-12.872197, 8.42962], + [-12.870958, 8.428721], + [-12.869886, 8.428318], + [-12.86938, 8.427938], + [-12.869332, 8.427801], + [-12.869531, 8.42757], + [-12.868955, 8.426692], + [-12.868342, 8.42584], + [-12.866867, 8.42505], + [-12.864728, 8.424505], + [-12.862814, 8.424361], + [-12.860779, 8.423513], + [-12.860469, 8.422785], + [-12.860018, 8.420259], + [-12.859793, 8.419794], + [-12.860431, 8.418714], + [-12.86206, 8.418101], + [-12.857712, 8.4181], + [-12.853807, 8.411335], + [-12.857712, 8.404569], + [-12.857453, 8.40412], + [-12.853749, 8.407083], + [-12.845417, 8.407084], + [-12.834582, 8.402916], + [-12.83375, 8.397083], + [-12.836634, 8.39492], + [-12.8367, 8.394805], + [-12.836787, 8.394804], + [-12.837082, 8.394583], + [-12.837083, 8.392916], + [-12.842916, 8.385417], + [-12.847916, 8.384583], + [-12.849582, 8.382916], + [-12.844583, 8.372917], + [-12.841788, 8.365929], + [-12.841831, 8.366237], + [-12.841288, 8.370871], + [-12.839855, 8.372667], + [-12.83864, 8.374631], + [-12.837587, 8.374603], + [-12.837396, 8.373646], + [-12.837577, 8.373581], + [-12.839179, 8.372995], + [-12.840325, 8.372002], + [-12.841013, 8.370729], + [-12.841191, 8.36905], + [-12.841064, 8.366275], + [-12.840554, 8.364568], + [-12.839943, 8.363245], + [-12.839078, 8.361946], + [-12.837831, 8.360164], + [-12.837806, 8.359299], + [-12.838009, 8.358434], + [-12.83839, 8.357874], + [-12.839359, 8.357313], + [-12.840428, 8.357084], + [-12.841522, 8.357033], + [-12.842414, 8.356346], + [-12.843609, 8.355277], + [-12.845112, 8.353622], + [-12.84608, 8.352934], + [-12.846995, 8.352452], + [-12.847912, 8.352121], + [-12.849108, 8.35207], + [-12.850508, 8.352552], + [-12.851705, 8.352781], + [-12.852723, 8.353036], + [-12.853284, 8.352883], + [-12.854098, 8.352425], + [-12.854608, 8.351407], + [-12.855345, 8.350288], + [-12.855829, 8.349626], + [-12.856033, 8.349167], + [-12.856185, 8.348403], + [-12.856008, 8.347436], + [-12.855294, 8.346315], + [-12.854403, 8.345271], + [-12.85361, 8.344434], + [-12.852902, 8.34371], + [-12.851391, 8.342683], + [-12.850258, 8.342197], + [-12.848699, 8.343], + [-12.841099, 8.3459], + [-12.836399, 8.349], + [-12.827091, 8.356393], + [-12.827584, 8.357193], + [-12.828512, 8.356836], + [-12.830091, 8.357378], + [-12.832289, 8.35744], + [-12.836128, 8.358058], + [-12.836699, 8.358738], + [-12.836816, 8.361056], + [-12.838357, 8.362869], + [-12.839404, 8.366185], + [-12.839489, 8.3688], + [-12.839091, 8.370601], + [-12.83875, 8.370685], + [-12.838749, 8.37245], + [-12.838337, 8.372696], + [-12.837001, 8.373045], + [-12.835855, 8.373396], + [-12.83436, 8.373333], + [-12.832959, 8.372919], + [-12.831559, 8.372919], + [-12.829777, 8.372951], + [-12.828313, 8.373174], + [-12.826594, 8.373619], + [-12.825291, 8.373778], + [-12.824368, 8.374479], + [-12.824113, 8.375783], + [-12.824304, 8.37696], + [-12.826149, 8.379378], + [-12.826626, 8.380652], + [-12.826054, 8.38568], + [-12.826085, 8.387461], + [-12.826436, 8.38918], + [-12.826849, 8.390611], + [-12.827358, 8.391566], + [-12.828378, 8.392554], + [-12.829522, 8.394048], + [-12.829872, 8.39529], + [-12.829363, 8.395926], + [-12.828378, 8.395926], + [-12.822709, 8.394164], + [-12.822508, 8.395249], + [-12.822473, 8.395241], + [-12.820189, 8.394635], + [-12.819323, 8.395017], + [-12.817745, 8.396391], + [-12.816498, 8.397181], + [-12.816604, 8.397536], + [-12.818991, 8.399649], + [-12.819348, 8.400669], + [-12.818457, 8.401381], + [-12.817134, 8.401253], + [-12.816446, 8.400771], + [-12.814817, 8.400821], + [-12.812348, 8.404868], + [-12.811741, 8.406407], + [-12.81162, 8.407849], + [-12.812109, 8.409154], + [-12.81212, 8.40919], + [-12.812208, 8.410792], + [-12.811839, 8.412888], + [-12.812026, 8.413521], + [-12.812492, 8.414484], + [-12.814583, 8.412917], + [-12.817916, 8.414584], + [-12.82088, 8.421252], + [-12.820956, 8.421226], + [-12.822082, 8.422917], + [-12.82375, 8.429583], + [-12.825417, 8.430417], + [-12.825416, 8.433749], + [-12.82375, 8.434584], + [-12.823749, 8.43625], + [-12.82125, 8.43875], + [-12.822082, 8.447916], + [-12.81625, 8.44625], + [-12.815417, 8.44875], + [-12.816249, 8.452916], + [-12.816249, 8.454583], + [-12.812083, 8.455417], + [-12.812083, 8.457083], + [-12.813749, 8.45875], + [-12.81375, 8.462083], + [-12.820416, 8.462084], + [-12.820416, 8.467084], + [-12.817083, 8.471249], + [-12.822916, 8.472083], + [-12.823271, 8.473147], + [-12.82373, 8.472964], + [-12.823732, 8.472964], + [-12.823514, 8.473277], + [-12.824583, 8.475416], + [-12.827917, 8.474584], + [-12.830416, 8.477083], + [-12.82875, 8.481249], + [-12.833749, 8.489583], + [-12.835416, 8.48375], + [-12.837916, 8.481249], + [-12.837083, 8.477916], + [-12.840416, 8.474584], + [-12.842082, 8.474584], + [-12.849582, 8.479583], + [-12.850417, 8.478749], + [-12.850416, 8.470417], + [-12.847083, 8.470416], + [-12.84625, 8.46875], + [-12.851249, 8.468749], + [-12.852916, 8.46625], + [-12.853368, 8.466249], + [-12.85325, 8.466016], + [-12.856249, 8.465416], + [-12.857083, 8.462917], + [-12.860416, 8.462083], + [-12.86125, 8.45875], + [-12.867082, 8.45875], + [-12.869583, 8.462916], + [-12.876878, 8.462916], + [-12.877604, 8.459104], + [-12.877506, 8.458736], + [-12.877916, 8.457917], + [-12.880744, 8.45735], + [-12.880614, 8.45723], + [-12.880614, 8.457229], + [-12.884582, 8.454584], + [-12.886249, 8.454583] + ] + ], + "type": "Polygon" + }, + "id": 400, + "properties": { + "cc:admin:id": ["62"], + "cc:oBld:total": 513, + "cc:pop:fifteen-to-twenty-four": 2326.9009372218934, + "cc:pop:grid3-total": 13069.832925840352, + "cc:pop:kontur-total": 13640.29117421964, + "cc:pop:men": 5927.309499516221, + "cc:pop:sixty-plus": 791.3642073308181, + "cc:pop:total": 12711.66268446219, + "cc:pop:under-five": 2092.460764182734, + "cc:pop:women": 6784.353184945969, + "cc:pop:women-fiften-to-forty-nine": 3363.185686319205, + "cc:pop:wp-total": 10000.855587309445, + "cc:pop:wp-total-UN": 11574.004852810018, + "cc:id": "400", + "cc:Name": "Mile 38 CHP", + "cc:site": [-12.8543, 8.4529], + "user:parentName": "Koya", + "user:code": "OU_254975", + "user:orgUnitId": "WoqN1oUBX2R", + "user:level": "4", + "user:parentId": "pRHGAROvuyI" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.805199, 7.900599], + [-10.799799, 7.897299], + [-10.7919, 7.8935], + [-10.7898, 7.8928], + [-10.787099, 7.8926], + [-10.7822, 7.893], + [-10.7756, 7.895699], + [-10.770599, 7.897], + [-10.765299, 7.8993], + [-10.761799, 7.8999], + [-10.7508, 7.900199], + [-10.747299, 7.9009], + [-10.7397, 7.904399], + [-10.7355, 7.906799], + [-10.732299, 7.9081], + [-10.728, 7.910499], + [-10.7249, 7.911999], + [-10.7176, 7.917399], + [-10.712599, 7.9202], + [-10.708799, 7.9233], + [-10.7043, 7.927399], + [-10.7032, 7.928399], + [-10.697899, 7.9313], + [-10.695499, 7.9339], + [-10.6922, 7.940599], + [-10.691399, 7.9446], + [-10.691099, 7.9519], + [-10.6904, 7.955499], + [-10.6885, 7.959999], + [-10.687899, 7.9629], + [-10.6877, 7.9689], + [-10.687903, 7.988467], + [-10.68875, 7.988749], + [-10.695417, 7.982084], + [-10.696249, 7.98375], + [-10.696249, 7.987083], + [-10.694582, 7.98875], + [-10.69375, 7.99125], + [-10.69375, 7.992916], + [-10.697917, 7.992917], + [-10.699583, 7.997083], + [-10.700417, 7.997084], + [-10.702083, 7.999583], + [-10.706249, 8.00125], + [-10.70689, 8.004451], + [-10.70887, 8.003714], + [-10.709553, 8.003402], + [-10.710875, 8.002276], + [-10.710968, 8.002084], + [-10.717082, 8.002084], + [-10.719581, 8.003749], + [-10.719581, 8.00375], + [-10.714583, 8.00625], + [-10.71375, 8.008749], + [-10.725416, 8.009583], + [-10.72625, 8.012916], + [-10.732916, 8.01125], + [-10.737916, 8.012916], + [-10.737916, 8.018749], + [-10.73625, 8.022916], + [-10.737083, 8.023749], + [-10.73767, 8.024043], + [-10.737773, 8.023959], + [-10.738583, 8.022966], + [-10.739175, 8.021528], + [-10.739262, 8.021007], + [-10.742083, 8.018749], + [-10.747083, 8.017084], + [-10.752916, 8.018749], + [-10.758749, 8.01625], + [-10.759582, 8.016249], + [-10.759583, 8.015416], + [-10.762082, 8.014583], + [-10.762353, 8.014042], + [-10.76083, 8.011297], + [-10.760831, 8.011296], + [-10.767917, 8.012083], + [-10.773749, 8.010417], + [-10.778749, 8.007917], + [-10.781577, 8.010743], + [-10.784294, 8.010743], + [-10.7837, 8.009499], + [-10.7835, 8.0073], + [-10.7849, 8.002599], + [-10.7853, 7.998399], + [-10.7855, 7.990699], + [-10.7861, 7.986599], + [-10.788499, 7.980799], + [-10.788899, 7.976], + [-10.7881, 7.9712], + [-10.7857, 7.9658], + [-10.785099, 7.962099], + [-10.784999, 7.957199], + [-10.7847, 7.9284], + [-10.7848, 7.925499], + [-10.7854, 7.922699], + [-10.787599, 7.9183], + [-10.7889, 7.915099], + [-10.7926, 7.907899], + [-10.7953, 7.904899], + [-10.802099, 7.9018], + [-10.805199, 7.900599] + ] + ], + "type": "Polygon" + }, + "id": 401, + "properties": { + "cc:admin:id": ["90"], + "cc:oBld:total": 2684, + "cc:pop:fifteen-to-twenty-four": 4677.190602455763, + "cc:pop:grid3-total": 21447.51064279746, + "cc:pop:kontur-total": 25382.445215673324, + "cc:pop:men": 11469.849957366963, + "cc:pop:sixty-plus": 1462.346209157311, + "cc:pop:total": 23903.03039397338, + "cc:pop:under-five": 3817.898814891212, + "cc:pop:women": 12433.180436606408, + "cc:pop:women-fiften-to-forty-nine": 6325.217353558545, + "cc:pop:wp-total": 21309.937476137773, + "cc:pop:wp-total-UN": 24710.100589138798, + "cc:id": "401", + "cc:Name": "Mobai CHC", + "cc:site": [-10.7542, 7.9935], + "user:parentName": "Mandu", + "user:code": "OU_204912", + "user:orgUnitId": "MXdbul7bBqV", + "user:level": "4", + "user:parentId": "yu4N82FFeLm" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.243199, 8.662599], + [-13.242599, 8.6607], + [-13.241799, 8.660399], + [-13.2407, 8.658799], + [-13.240399, 8.6568], + [-13.239899, 8.656799], + [-13.2385, 8.6537], + [-13.238499, 8.6526], + [-13.2368, 8.6501], + [-13.236799, 8.649], + [-13.2354, 8.6476], + [-13.235099, 8.6462], + [-13.2332, 8.644], + [-13.2313, 8.643199], + [-13.230999, 8.6418], + [-13.2299, 8.640699], + [-13.229899, 8.6393], + [-13.229, 8.6379], + [-13.227599, 8.6371], + [-13.226499, 8.637099], + [-13.2238, 8.634299], + [-13.223199, 8.6326], + [-13.2221, 8.632099], + [-13.221799, 8.6307], + [-13.2204, 8.629899], + [-13.220026, 8.629386], + [-13.219885, 8.629628], + [-13.218346, 8.629629], + [-13.219713, 8.63088], + [-13.220104, 8.632464], + [-13.220063, 8.633408], + [-13.220104, 8.634173], + [-13.218855, 8.634157], + [-13.218259, 8.634267], + [-13.218256, 8.634269], + [-13.218211, 8.634214], + [-13.218121, 8.634314], + [-13.216737, 8.634607], + [-13.216705, 8.6346], + [-13.216635, 8.634962], + [-13.21655, 8.635169], + [-13.215534, 8.634798], + [-13.215838, 8.635822], + [-13.21615, 8.636711], + [-13.216103, 8.63707], + [-13.215061, 8.636542], + [-13.214143, 8.636091], + [-13.214019, 8.636625], + [-13.212586, 8.636852], + [-13.212521, 8.637294], + [-13.212599, 8.637516], + [-13.212725, 8.63822], + [-13.212002, 8.638292], + [-13.212016, 8.638546], + [-13.212099, 8.639176], + [-13.211905, 8.639239], + [-13.211917, 8.639333], + [-13.211627, 8.639511], + [-13.21122, 8.639926], + [-13.211569, 8.640353], + [-13.212001, 8.641229], + [-13.212245, 8.641144], + [-13.212875, 8.641163], + [-13.212868, 8.641656], + [-13.212418, 8.642507], + [-13.212094, 8.643187], + [-13.211863, 8.643869], + [-13.211676, 8.644264], + [-13.210909, 8.644011], + [-13.210771, 8.644695], + [-13.210537, 8.644963], + [-13.210464, 8.645044], + [-13.210471, 8.645056], + [-13.210681, 8.645517], + [-13.210684, 8.645536], + [-13.210837, 8.645607], + [-13.210933, 8.645622], + [-13.211333, 8.64515], + [-13.211334, 8.64515], + [-13.211284, 8.647404], + [-13.211561, 8.649281], + [-13.211727, 8.649319], + [-13.211691, 8.649393], + [-13.211538, 8.649854], + [-13.211096, 8.650339], + [-13.204583, 8.647084], + [-13.205294, 8.652779], + [-13.205293, 8.65278], + [-13.202232, 8.65157], + [-13.198504, 8.649687], + [-13.193328, 8.647799], + [-13.192223, 8.650945], + [-13.190006, 8.655607], + [-13.191943, 8.655166], + [-13.192597, 8.655432], + [-13.190416, 8.661249], + [-13.189582, 8.662083], + [-13.187192, 8.661486], + [-13.184941, 8.666176], + [-13.184137, 8.66586], + [-13.18398, 8.665985], + [-13.183031, 8.665299], + [-13.182318, 8.665174], + [-13.182307, 8.664806], + [-13.182061, 8.664618], + [-13.181404, 8.666122], + [-13.18064, 8.669017], + [-13.178923, 8.67161], + [-13.178224, 8.672915], + [-13.177266, 8.673883], + [-13.175863, 8.674633], + [-13.173936, 8.675068], + [-13.172539, 8.675374], + [-13.172045, 8.675446], + [-13.171611, 8.675502], + [-13.17125, 8.67553], + [-13.171249, 8.680979], + [-13.164635, 8.684948], + [-13.165416, 8.677917], + [-13.163137, 8.677347], + [-13.163333, 8.676955], + [-13.161099, 8.674624], + [-13.160162, 8.674159], + [-13.159168, 8.673418], + [-13.156476, 8.671125], + [-13.156399, 8.6724], + [-13.153999, 8.6787], + [-13.152699, 8.687499], + [-13.1507, 8.691499], + [-13.147299, 8.6953], + [-13.143199, 8.6991], + [-13.139799, 8.7018], + [-13.134, 8.7052], + [-13.1312, 8.7094], + [-13.1309, 8.714699], + [-13.131899, 8.719299], + [-13.135599, 8.726299], + [-13.1377, 8.728199], + [-13.140799, 8.729599], + [-13.1491, 8.7308], + [-13.1527, 8.7327], + [-13.156299, 8.735699], + [-13.157691, 8.736698], + [-13.157917, 8.736249], + [-13.160417, 8.73375], + [-13.166446, 8.731739], + [-13.166478, 8.731203], + [-13.166365, 8.730605], + [-13.16547, 8.728097], + [-13.168989, 8.729265], + [-13.170061, 8.729302], + [-13.172449, 8.729782], + [-13.174582, 8.72125], + [-13.17375, 8.720416], + [-13.17375, 8.711249], + [-13.180417, 8.70875], + [-13.193749, 8.711249], + [-13.192083, 8.700417], + [-13.193596, 8.696632], + [-13.193281, 8.696228], + [-13.197917, 8.692917], + [-13.198749, 8.692917], + [-13.199583, 8.693749], + [-13.201249, 8.69375], + [-13.202097, 8.694596], + [-13.205127, 8.694596], + [-13.207091, 8.691196], + [-13.206132, 8.689861], + [-13.205427, 8.688412], + [-13.204986, 8.6874], + [-13.212916, 8.685416], + [-13.21375, 8.684583], + [-13.214866, 8.684024], + [-13.215011, 8.68322], + [-13.215987, 8.680824], + [-13.216941, 8.680035], + [-13.216943, 8.680035], + [-13.216959, 8.680245], + [-13.22125, 8.682082], + [-13.225416, 8.682082], + [-13.230416, 8.672916], + [-13.230416, 8.67125], + [-13.22875, 8.66875], + [-13.230416, 8.66625], + [-13.235416, 8.665417], + [-13.23625, 8.666249], + [-13.242599, 8.665544], + [-13.2426, 8.6635], + [-13.243199, 8.662599] + ] + ], + "type": "Polygon" + }, + "id": 402, + "properties": { + "cc:admin:id": ["44"], + "cc:oBld:total": 2115, + "cc:pop:fifteen-to-twenty-four": 2641.333321003215, + "cc:pop:grid3-total": 12418.370333847854, + "cc:pop:kontur-total": 14532.864232729631, + "cc:pop:men": 7043.873000569453, + "cc:pop:sixty-plus": 875.7433880495429, + "cc:pop:total": 14673.185122701154, + "cc:pop:under-five": 2394.2773511166456, + "cc:pop:women": 7629.3121221316915, + "cc:pop:women-fiften-to-forty-nine": 3675.809728455046, + "cc:pop:wp-total": 12337.779103161787, + "cc:pop:wp-total-UN": 14305.37273629185, + "cc:id": "402", + "cc:Name": "Modia MCHP", + "cc:site": [-13.2239, 8.6414], + "user:parentName": "Magbema", + "user:code": "OU_211233", + "user:orgUnitId": "ua3kNk4uraZ", + "user:level": "4", + "user:parentId": "QywkxFudXrC" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.935916, 8.115068], + [-11.934779, 8.115016], + [-11.934583, 8.114855], + [-11.934582, 8.107084], + [-11.93125, 8.102084], + [-11.931249, 8.11458], + [-11.926249, 8.104584], + [-11.920417, 8.110416], + [-11.91875, 8.110416], + [-11.917916, 8.108749], + [-11.914583, 8.102917], + [-11.914582, 8.102012], + [-11.913362, 8.102805], + [-11.905417, 8.102083], + [-11.904582, 8.095417], + [-11.902916, 8.092917], + [-11.902082, 8.092916], + [-11.897917, 8.08625], + [-11.897802, 8.08625], + [-11.8968, 8.091999], + [-11.8957, 8.095899], + [-11.892899, 8.1013], + [-11.889, 8.109799], + [-11.884899, 8.1151], + [-11.877, 8.1229], + [-11.8737, 8.131599], + [-11.8712, 8.136599], + [-11.877799, 8.137599], + [-11.8817, 8.138], + [-11.887399, 8.138199], + [-11.892099, 8.138], + [-11.8956, 8.137299], + [-11.9009, 8.134999], + [-11.905999, 8.1339], + [-11.911199, 8.1313], + [-11.9144, 8.129999], + [-11.918699, 8.1276], + [-11.921799, 8.1263], + [-11.926099, 8.1239], + [-11.9292, 8.122499], + [-11.9314, 8.120999], + [-11.934582, 8.118029], + [-11.934583, 8.116131], + [-11.934608, 8.11614], + [-11.935561, 8.115845], + [-11.935916, 8.115068] + ] + ], + "type": "Polygon" + }, + "id": 403, + "properties": { + "cc:admin:id": ["61"], + "cc:oBld:total": 0, + "cc:pop:fifteen-to-twenty-four": 146.64909550413472, + "cc:pop:grid3-total": 256.0762972672625, + "cc:pop:kontur-total": 452, + "cc:pop:men": 373.817635169958, + "cc:pop:sixty-plus": 61.496738463543906, + "cc:pop:total": 799.8488611829524, + "cc:pop:under-five": 136.79471946959612, + "cc:pop:women": 426.03122601299447, + "cc:pop:women-fiften-to-forty-nine": 208.14583396767858, + "cc:pop:wp-total": 733.298730901167, + "cc:pop:wp-total-UN": 846.0310577038981, + "cc:id": "403", + "cc:Name": "Mofombo MCHP", + "cc:site": [-11.897, 8.1361], + "user:parentName": "Kowa", + "user:code": "OU_247035", + "user:orgUnitId": "kqyeoWyfDmQ", + "user:level": "4", + "user:parentId": "xIKjidMrico" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.978755, 8.22586], + [-11.973479, 8.225859], + [-11.969573, 8.219094], + [-11.96887, 8.219094], + [-11.968749, 8.220417], + [-11.964582, 8.22375], + [-11.958749, 8.223749], + [-11.952083, 8.222917], + [-11.94875, 8.22125], + [-11.94875, 8.209584], + [-11.947916, 8.20625], + [-11.942083, 8.209583], + [-11.939583, 8.209584], + [-11.938795, 8.211156], + [-11.935963, 8.206252], + [-11.939869, 8.199486], + [-11.93867, 8.19741], + [-11.932083, 8.197917], + [-11.931349, 8.198796], + [-11.926605, 8.198796], + [-11.922698, 8.192031], + [-11.921792, 8.192031], + [-11.920671, 8.193431], + [-11.916956, 8.193431], + [-11.913051, 8.186666], + [-11.916081, 8.181418], + [-11.914582, 8.182083], + [-11.910417, 8.182083], + [-11.910417, 8.179583], + [-11.912916, 8.17125], + [-11.910416, 8.170416], + [-11.907082, 8.165417], + [-11.90526, 8.16496], + [-11.905434, 8.164453], + [-11.905717, 8.161349], + [-11.905753, 8.16125], + [-11.904815, 8.16125], + [-11.904734, 8.161389], + [-11.896922, 8.161388], + [-11.89375, 8.155894], + [-11.893749, 8.164583], + [-11.890417, 8.168749], + [-11.877083, 8.168749], + [-11.872917, 8.165416], + [-11.872083, 8.159584], + [-11.876249, 8.153749], + [-11.876249, 8.152084], + [-11.870416, 8.14875], + [-11.863218, 8.14875], + [-11.862299, 8.1497], + [-11.857699, 8.1531], + [-11.854999, 8.1542], + [-11.852199, 8.1547], + [-11.849299, 8.154799], + [-11.8436, 8.1542], + [-11.8376, 8.1524], + [-11.8332, 8.1516], + [-11.8161, 8.151], + [-11.8115, 8.1505], + [-11.807499, 8.149199], + [-11.799799, 8.145199], + [-11.795499, 8.144199], + [-11.7893, 8.1437], + [-11.7894, 8.151099], + [-11.7965, 8.1587], + [-11.8005, 8.1648], + [-11.805699, 8.171899], + [-11.810499, 8.180199], + [-11.812, 8.1854], + [-11.812499, 8.196799], + [-11.811999, 8.2053], + [-11.810499, 8.2113], + [-11.805899, 8.226], + [-11.802299, 8.2408], + [-11.801799, 8.2437], + [-11.801598, 8.247747], + [-11.80625, 8.247084], + [-11.812357, 8.249373], + [-11.813623, 8.247183], + [-11.816501, 8.247183], + [-11.816502, 8.247184], + [-11.814842, 8.249259], + [-11.814891, 8.249344], + [-11.822703, 8.249344], + [-11.826609, 8.242579], + [-11.828175, 8.242578], + [-11.828176, 8.24258], + [-11.827917, 8.24375], + [-11.846249, 8.247916], + [-11.848749, 8.24125], + [-11.849582, 8.239584], + [-11.853749, 8.238749], + [-11.854583, 8.235416], + [-11.857082, 8.232917], + [-11.862916, 8.232083], + [-11.862917, 8.230425], + [-11.863015, 8.230709], + [-11.863934, 8.231777], + [-11.864691, 8.23223], + [-11.864907, 8.231693], + [-11.86502, 8.231404], + [-11.865031, 8.230862], + [-11.864849, 8.230351], + [-11.864126, 8.229448], + [-11.867083, 8.227084], + [-11.873749, 8.227084], + [-11.87375, 8.238749], + [-11.876249, 8.241249], + [-11.879543, 8.236859], + [-11.879544, 8.236859], + [-11.879162, 8.238107], + [-11.877811, 8.241567], + [-11.877619, 8.243423], + [-11.878326, 8.247916], + [-11.882082, 8.247916], + [-11.885417, 8.245417], + [-11.891249, 8.24625], + [-11.892917, 8.247084], + [-11.896994, 8.253199], + [-11.899403, 8.252995], + [-11.904582, 8.240417], + [-11.910416, 8.24125], + [-11.914583, 8.244584], + [-11.915417, 8.253749], + [-11.918749, 8.252083], + [-11.92125, 8.249584], + [-11.931249, 8.250416], + [-11.930417, 8.257916], + [-11.932917, 8.262083], + [-11.940416, 8.264583], + [-11.944582, 8.262084], + [-11.947916, 8.262084], + [-11.952082, 8.265416], + [-11.952388, 8.268157], + [-11.959043, 8.268157], + [-11.960617, 8.26543], + [-11.96153, 8.265461], + [-11.963343, 8.264639], + [-11.964121, 8.264022], + [-11.964435, 8.263466], + [-11.967179, 8.26566], + [-11.9679, 8.264399], + [-11.9692, 8.261199], + [-11.971599, 8.2561], + [-11.9728, 8.250999], + [-11.9749, 8.245699], + [-11.9756, 8.241999], + [-11.975899, 8.2362], + [-11.976399, 8.2324], + [-11.978499, 8.2271], + [-11.978755, 8.22586] + ] + ], + "type": "Polygon" + }, + "id": 404, + "properties": { + "cc:admin:id": ["48"], + "cc:oBld:total": 62, + "cc:pop:fifteen-to-twenty-four": 488.33412264511276, + "cc:pop:grid3-total": 2586.3043816117333, + "cc:pop:kontur-total": 3536.5766306960586, + "cc:pop:men": 1344.1775200193022, + "cc:pop:sixty-plus": 126.46383984144992, + "cc:pop:total": 2998.140398067478, + "cc:pop:under-five": 459.36833783989454, + "cc:pop:women": 1653.9628780481753, + "cc:pop:women-fiften-to-forty-nine": 789.2728358383393, + "cc:pop:wp-total": 1676.5808990779062, + "cc:pop:wp-total-UN": 1938.3319329975177, + "cc:id": "404", + "cc:Name": "Mogbuama MCHP", + "cc:site": [-11.8951, 8.2071], + "user:parentName": "Kamaje", + "user:code": "OU_247009", + "user:orgUnitId": "wGsBlwh6Zzt", + "user:level": "4", + "user:parentId": "LsYpCyYxSLY" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.63125, 7.745416], + [-12.631249, 7.737656], + [-12.631004, 7.737668], + [-12.630362, 7.737903], + [-12.629698, 7.738846], + [-12.629741, 7.739531], + [-12.630254, 7.741221], + [-12.630125, 7.741778], + [-12.629761, 7.742229], + [-12.62852, 7.74257], + [-12.627792, 7.742336], + [-12.627621, 7.741907], + [-12.627684, 7.740366], + [-12.627492, 7.739702], + [-12.626978, 7.739316], + [-12.625094, 7.738846], + [-12.624623, 7.738374], + [-12.624087, 7.73634], + [-12.623745, 7.735804], + [-12.622888, 7.735012], + [-12.622525, 7.734863], + [-12.622132, 7.735071], + [-12.620459, 7.735781], + [-12.617909, 7.735823], + [-12.616396, 7.73521], + [-12.613987, 7.734085], + [-12.612141, 7.733578], + [-12.610568, 7.73334], + [-12.610299, 7.735699], + [-12.608399, 7.7401], + [-12.6066, 7.744899], + [-12.602299, 7.746999], + [-12.597, 7.747299], + [-12.5928, 7.7469], + [-12.588999, 7.746199], + [-12.581999, 7.743599], + [-12.5755, 7.7431], + [-12.569499, 7.7431], + [-12.5657, 7.7435], + [-12.5627, 7.745299], + [-12.5592, 7.7511], + [-12.5569, 7.761899], + [-12.5583, 7.7678], + [-12.5588, 7.7729], + [-12.559099, 7.782899], + [-12.559699, 7.787199], + [-12.563499, 7.795299], + [-12.565799, 7.799499], + [-12.567699, 7.806199], + [-12.5699, 7.8105], + [-12.573699, 7.819099], + [-12.575, 7.8241], + [-12.5774, 7.8293], + [-12.5782, 7.8329], + [-12.5783, 7.8358], + [-12.578399, 7.853199], + [-12.578502, 7.855292], + [-12.580416, 7.856249], + [-12.584582, 7.856249], + [-12.58625, 7.852084], + [-12.591249, 7.851249], + [-12.590417, 7.844584], + [-12.590862, 7.842799], + [-12.589508, 7.842289], + [-12.586559, 7.840687], + [-12.584583, 7.835416], + [-12.589047, 7.832229], + [-12.590076, 7.832639], + [-12.59069, 7.832787], + [-12.592083, 7.827917], + [-12.597916, 7.832916], + [-12.599428, 7.83342], + [-12.599929, 7.83285], + [-12.601999, 7.831853], + [-12.60354, 7.830645], + [-12.604395, 7.828728], + [-12.605231, 7.827314], + [-12.606039, 7.826324], + [-12.606944, 7.824793], + [-12.605982, 7.823347], + [-12.613037, 7.823346], + [-12.616485, 7.817376], + [-12.614582, 7.817084], + [-12.605417, 7.818749], + [-12.607916, 7.81125], + [-12.616249, 7.812083], + [-12.621249, 7.807083], + [-12.618749, 7.80375], + [-12.617219, 7.802984], + [-12.617783, 7.801875], + [-12.618088, 7.800502], + [-12.617417, 7.798012], + [-12.618965, 7.798147], + [-12.620474, 7.797898], + [-12.620841, 7.798442], + [-12.622139, 7.798442], + [-12.62304, 7.796882], + [-12.622977, 7.796753], + [-12.623119, 7.794179], + [-12.623485, 7.793462], + [-12.624629, 7.792546], + [-12.625505, 7.792612], + [-12.625974, 7.7918], + [-12.625982, 7.790331], + [-12.624696, 7.78955], + [-12.624959, 7.788522], + [-12.622767, 7.788251], + [-12.622517, 7.786706], + [-12.622936, 7.78629], + [-12.62214, 7.78491], + [-12.626046, 7.778145], + [-12.62214, 7.771379], + [-12.622374, 7.770973], + [-12.621577, 7.770214], + [-12.621586, 7.768412], + [-12.621332, 7.767895], + [-12.621978, 7.76764], + [-12.6225, 7.766741], + [-12.624053, 7.765978], + [-12.625476, 7.765599], + [-12.625093, 7.764824], + [-12.623292, 7.763526], + [-12.620463, 7.761837], + [-12.622015, 7.760943], + [-12.62215, 7.760172], + [-12.622796, 7.759917], + [-12.621898, 7.75914], + [-12.620218, 7.759258], + [-12.619702, 7.759128], + [-12.619949, 7.760932], + [-12.618917, 7.760927], + [-12.61717, 7.758842], + [-12.616944, 7.74443], + [-12.61875, 7.744569], + [-12.619523, 7.745087], + [-12.620039, 7.744962], + [-12.620304, 7.743934], + [-12.621075, 7.744581], + [-12.622279, 7.744548], + [-12.622751, 7.744978], + [-12.622361, 7.74549], + [-12.623649, 7.746013], + [-12.623381, 7.747814], + [-12.624417, 7.747305], + [-12.625398, 7.750212], + [-12.627916, 7.749583], + [-12.63125, 7.745416] + ] + ], + "type": "Polygon" + }, + "id": 405, + "properties": { + "cc:admin:id": ["135"], + "cc:oBld:total": 0, + "cc:pop:fifteen-to-twenty-four": 189.9171795723813, + "cc:pop:grid3-total": 1043.7983735907244, + "cc:pop:kontur-total": 933.6538671717977, + "cc:pop:men": 459.7525499850826, + "cc:pop:sixty-plus": 69.97146048131972, + "cc:pop:total": 953.6338164354773, + "cc:pop:under-five": 158.93873872025202, + "cc:pop:women": 493.8812664503949, + "cc:pop:women-fiften-to-forty-nine": 229.91019920157174, + "cc:pop:wp-total": 1377.8043619499956, + "cc:pop:wp-total-UN": 1607.413752751065, + "cc:id": "405", + "cc:Name": "Mogbwemo CHP", + "cc:site": [-12.57751, 7.77689], + "user:parentName": "Imperi", + "user:code": "OU_197415", + "user:orgUnitId": "jIkxZKctVhB", + "user:level": "4", + "user:parentId": "XEyIRFd9pct" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.905699, 8.0393], + [-12.9051, 8.038499], + [-12.905099, 8.036], + [-12.9043, 8.0349], + [-12.904299, 8.0337], + [-12.901, 8.031199], + [-12.9007, 8.0276], + [-12.901499, 8.025999], + [-12.9013, 8.0246], + [-12.8996, 8.024599], + [-12.8996, 8.023799], + [-12.900699, 8.022899], + [-12.8999, 8.021299], + [-12.899899, 8.0199], + [-12.899, 8.0176], + [-12.8985, 8.017399], + [-12.898499, 8.0157], + [-12.8976, 8.015099], + [-12.897599, 8.013199], + [-12.897099, 8.010699], + [-12.895999, 8.0076], + [-12.8951, 8.007099], + [-12.8954, 8.005699], + [-12.8954, 8.0026], + [-12.8957, 8.002599], + [-12.895699, 7.9976], + [-12.892601, 7.997399], + [-12.893699, 7.996299], + [-12.894599, 7.993999], + [-12.894899, 7.9896], + [-12.894599, 7.988499], + [-12.8926, 7.9846], + [-12.8915, 7.983999], + [-12.8915, 7.980101], + [-12.891799, 7.980099], + [-12.891799, 7.9771], + [-12.891, 7.975099], + [-12.890999, 7.973199], + [-12.890399, 7.9718], + [-12.8896, 7.971499], + [-12.8896, 7.970099], + [-12.891299, 7.968799], + [-12.890699, 7.965399], + [-12.8896, 7.9632], + [-12.888499, 7.962399], + [-12.8879, 7.960999], + [-12.8879, 7.956499], + [-12.888754, 7.95175], + [-12.884795, 7.951456], + [-12.875848, 7.949056], + [-12.875219, 7.948807], + [-12.874021, 7.954193], + [-12.868174, 7.95202], + [-12.861513, 7.949325], + [-12.860002, 7.948327], + [-12.860417, 7.947083], + [-12.8638, 7.944376], + [-12.859162, 7.944375], + [-12.857102, 7.94081], + [-12.855224, 7.94023], + [-12.851881, 7.93761], + [-12.847443, 7.937609], + [-12.84518, 7.933692], + [-12.840287, 7.930844], + [-12.839164, 7.930844], + [-12.838749, 7.932916], + [-12.837102, 7.934014], + [-12.836199, 7.933054], + [-12.834575, 7.93162], + [-12.833005, 7.93143], + [-12.829703, 7.931375], + [-12.827564, 7.930536], + [-12.825562, 7.929372], + [-12.824316, 7.927477], + [-12.822421, 7.925528], + [-12.820066, 7.924256], + [-12.816873, 7.922768], + [-12.814436, 7.921713], + [-12.811323, 7.919791], + [-12.810159, 7.920061], + [-12.808913, 7.922498], + [-12.807993, 7.923715], + [-12.807362, 7.924165], + [-12.810204, 7.929087], + [-12.813312, 7.929088], + [-12.812917, 7.929584], + [-12.81363, 7.937441], + [-12.813629, 7.937442], + [-12.813508, 7.93741], + [-12.811421, 7.941262], + [-12.813215, 7.944106], + [-12.814115, 7.944884], + [-12.814357, 7.947976], + [-12.815121, 7.950041], + [-12.814583, 7.950345], + [-12.814583, 7.95125], + [-12.815416, 7.954583], + [-12.812082, 7.961249], + [-12.808749, 7.961249], + [-12.804583, 7.95875], + [-12.805416, 7.968749], + [-12.801674, 7.971244], + [-12.801673, 7.971243], + [-12.801446, 7.970321], + [-12.8008, 7.970575], + [-12.80135, 7.97146], + [-12.800417, 7.972084], + [-12.80125, 7.975417], + [-12.802082, 7.990416], + [-12.799583, 7.990417], + [-12.798749, 7.992916], + [-12.797916, 7.99375], + [-12.79625, 7.999583], + [-12.796249, 8.002083], + [-12.79375, 8.002084], + [-12.792665, 8.00371], + [-12.79136, 8.003247], + [-12.791723, 8.005786], + [-12.79224, 8.006816], + [-12.792847, 8.007419], + [-12.793265, 8.010463], + [-12.792565, 8.015747], + [-12.793989, 8.018819], + [-12.794339, 8.020296], + [-12.794866, 8.021361], + [-12.797006, 8.024028], + [-12.797744, 8.025601], + [-12.7979, 8.0257], + [-12.805999, 8.029099], + [-12.8105, 8.0299], + [-12.8135, 8.030099], + [-12.836499, 8.0299], + [-12.8394, 8.0301], + [-12.842299, 8.030699], + [-12.849899, 8.034499], + [-12.853099, 8.036599], + [-12.857899, 8.041299], + [-12.861999, 8.043899], + [-12.8647, 8.0446], + [-12.868499, 8.045099], + [-12.8724, 8.044899], + [-12.8762, 8.043799], + [-12.880599, 8.0421], + [-12.884599, 8.0413], + [-12.889599, 8.041], + [-12.8959, 8.041], + [-12.905398, 8.0415], + [-12.9045, 8.043499], + [-12.905399, 8.042599], + [-12.905699, 8.0393] + ] + ], + "type": "Polygon" + }, + "id": 406, + "properties": { + "cc:admin:id": ["51"], + "cc:oBld:total": 22, + "cc:pop:fifteen-to-twenty-four": 1975.7365487945563, + "cc:pop:grid3-total": 4499.990199845788, + "cc:pop:kontur-total": 10897.92638829226, + "cc:pop:men": 5148.321030011066, + "cc:pop:sixty-plus": 713.1553380815842, + "cc:pop:total": 10816.569485969982, + "cc:pop:under-five": 1807.9252486691023, + "cc:pop:women": 5668.24845595891, + "cc:pop:women-fiften-to-forty-nine": 2586.632333813424, + "cc:pop:wp-total": 9176.057335212157, + "cc:pop:wp-total-UN": 10640.371886707959, + "cc:id": "406", + "cc:Name": "Mokainsumana CHP", + "cc:site": [-12.8198, 7.994], + "user:parentName": "Kargboro", + "user:code": "OU_247074", + "user:orgUnitId": "bLYNonGzr0Y", + "user:level": "4", + "user:parentId": "Z9QaI6sxTwW" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.773417, 8.023893], + [-12.770361, 8.0186], + [-12.7616, 8.018599], + [-12.759599, 8.018499], + [-12.7557, 8.0175], + [-12.752199, 8.015899], + [-12.745499, 8.014099], + [-12.7401, 8.0119], + [-12.7361, 8.0113], + [-12.7143, 8.0112], + [-12.7071, 8.011599], + [-12.704299, 8.0122], + [-12.698899, 8.0145], + [-12.695, 8.014999], + [-12.6921, 8.0149], + [-12.688499, 8.013899], + [-12.684899, 8.011999], + [-12.6772, 8.0084], + [-12.6745, 8.0077], + [-12.668399, 8.0074], + [-12.6436, 8.007599], + [-12.6406, 8.0075], + [-12.6368, 8.0067], + [-12.635188, 8.005912], + [-12.62375, 8.01125], + [-12.624583, 8.022084], + [-12.62875, 8.025416], + [-12.632082, 8.025417], + [-12.632083, 8.027916], + [-12.638749, 8.027917], + [-12.643091, 8.029778], + [-12.642484, 8.032411], + [-12.640945, 8.035594], + [-12.639817, 8.03737], + [-12.639477, 8.03921], + [-12.639933, 8.040653], + [-12.642917, 8.04125], + [-12.646861, 8.04125], + [-12.644702, 8.04499], + [-12.648608, 8.051755], + [-12.651314, 8.051756], + [-12.65125, 8.052084], + [-12.657082, 8.057917], + [-12.657082, 8.059584], + [-12.654475, 8.062192], + [-12.65509, 8.063029], + [-12.656691, 8.064179], + [-12.659723, 8.064729], + [-12.660639, 8.064702], + [-12.661765, 8.065033], + [-12.662702, 8.064816], + [-12.66125, 8.072083], + [-12.667083, 8.076249], + [-12.674582, 8.07625], + [-12.674583, 8.084583], + [-12.67375, 8.091249], + [-12.677083, 8.094583], + [-12.682916, 8.095416], + [-12.686249, 8.09625], + [-12.683355, 8.10421], + [-12.686571, 8.109312], + [-12.686934, 8.113692], + [-12.68771, 8.113439], + [-12.68925, 8.110417], + [-12.689583, 8.110417], + [-12.691236, 8.11207], + [-12.690165, 8.113711], + [-12.688217, 8.115374], + [-12.688731, 8.115892], + [-12.689352, 8.120146], + [-12.688829, 8.121432], + [-12.689463, 8.123495], + [-12.690884, 8.123503], + [-12.693091, 8.121971], + [-12.694064, 8.122192], + [-12.694582, 8.12375], + [-12.693344, 8.128086], + [-12.693404, 8.128117], + [-12.693199, 8.128735], + [-12.69399, 8.129161], + [-12.695807, 8.130391], + [-12.697595, 8.131888], + [-12.700212, 8.133653], + [-12.701791, 8.134256], + [-12.703391, 8.134381], + [-12.70549, 8.134174], + [-12.708045, 8.134195], + [-12.710643, 8.135088], + [-12.712195, 8.13572], + [-12.714282, 8.136605], + [-12.715603, 8.136789], + [-12.717361, 8.136632], + [-12.718763, 8.136084], + [-12.719365, 8.135749], + [-12.719865, 8.13471], + [-12.720709, 8.133504], + [-12.720235, 8.132555], + [-12.720429, 8.132225], + [-12.722235, 8.129954], + [-12.724372, 8.127601], + [-12.726424, 8.125835], + [-12.728087, 8.124224], + [-12.729437, 8.122094], + [-12.730293, 8.119732], + [-12.730634, 8.11875], + [-12.732014, 8.118749], + [-12.732057, 8.118634], + [-12.732539, 8.116341], + [-12.73234, 8.113699], + [-12.732407, 8.111189], + [-12.733071, 8.109244], + [-12.734717, 8.107415], + [-12.737459, 8.105737], + [-12.73827, 8.105292], + [-12.737601, 8.103951], + [-12.739951, 8.102819], + [-12.737916, 8.09875], + [-12.735644, 8.099317], + [-12.734975, 8.097733], + [-12.73473, 8.095157], + [-12.73409, 8.094122], + [-12.733712, 8.092318], + [-12.732813, 8.091153], + [-12.732298, 8.091021], + [-12.732045, 8.08986], + [-12.731531, 8.089343], + [-12.730756, 8.089209], + [-12.730505, 8.088049], + [-12.730417, 8.087973], + [-12.730417, 8.084583], + [-12.735081, 8.080436], + [-12.735082, 8.080437], + [-12.735005, 8.08069], + [-12.735417, 8.080416], + [-12.73625, 8.079584], + [-12.74375, 8.087083], + [-12.748749, 8.084583], + [-12.73875, 8.074584], + [-12.737916, 8.064584], + [-12.734583, 8.062916], + [-12.737917, 8.059584], + [-12.743749, 8.059583], + [-12.747916, 8.056249], + [-12.747917, 8.054584], + [-12.74875, 8.054584], + [-12.749583, 8.056249], + [-12.75932, 8.055225], + [-12.759875, 8.054266], + [-12.765733, 8.054265], + [-12.767082, 8.052917], + [-12.767082, 8.04375], + [-12.76375, 8.038749], + [-12.765417, 8.032083], + [-12.766842, 8.030659], + [-12.769511, 8.030658], + [-12.773417, 8.023893] + ] + ], + "type": "Polygon" + }, + "id": 407, + "properties": { + "cc:admin:id": ["12"], + "cc:oBld:total": 34, + "cc:pop:fifteen-to-twenty-four": 1381.8088733227223, + "cc:pop:grid3-total": 4696.329131550472, + "cc:pop:kontur-total": 7593.415819714935, + "cc:pop:men": 3436.1831101829202, + "cc:pop:sixty-plus": 474.48920518000324, + "cc:pop:total": 7366.514795560358, + "cc:pop:under-five": 1269.642502595982, + "cc:pop:women": 3930.331685377436, + "cc:pop:women-fiften-to-forty-nine": 1852.9721497902906, + "cc:pop:wp-total": 6085.931208247618, + "cc:pop:wp-total-UN": 7060.183568852149, + "cc:id": "407", + "cc:Name": "Mokaiyegbeh MCHP", + "cc:site": [-12.7277, 8.0385], + "user:parentName": "Bumpeh", + "user:code": "OU_247026", + "user:orgUnitId": "WxMmxNU6Gla", + "user:level": "4", + "user:parentId": "nOYt1LtFSyU" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.291036, 7.934153], + [-12.290999, 7.933299], + [-12.289699, 7.9293], + [-12.286299, 7.925199], + [-12.282999, 7.922699], + [-12.2726, 7.9181], + [-12.2702, 7.916499], + [-12.2683, 7.912999], + [-12.268903, 7.910585], + [-12.264688, 7.911052], + [-12.262465, 7.909476], + [-12.261555, 7.908594], + [-12.25988, 7.907592], + [-12.258034, 7.906973], + [-12.25875, 7.90125], + [-12.262916, 7.897917], + [-12.269747, 7.897916], + [-12.272017, 7.893984], + [-12.269444, 7.889528], + [-12.266249, 7.892083], + [-12.256249, 7.892083], + [-12.254583, 7.890416], + [-12.254582, 7.881903], + [-12.253655, 7.882092], + [-12.25322, 7.882335], + [-12.252562, 7.882165], + [-12.252499, 7.881683], + [-12.251955, 7.880787], + [-12.253189, 7.880292], + [-12.2538, 7.87987], + [-12.253969, 7.879651], + [-12.247916, 7.872084], + [-12.242917, 7.872084], + [-12.239583, 7.874583], + [-12.238749, 7.870417], + [-12.235416, 7.86625], + [-12.226638, 7.865574], + [-12.229388, 7.860811], + [-12.225826, 7.854643], + [-12.225657, 7.854676], + [-12.22375, 7.854392], + [-12.223749, 7.85625], + [-12.220416, 7.859583], + [-12.213749, 7.852917], + [-12.20875, 7.851249], + [-12.207916, 7.850416], + [-12.203749, 7.847917], + [-12.20125, 7.847916], + [-12.202781, 7.84179], + [-12.202044, 7.840514], + [-12.194232, 7.840513], + [-12.193758, 7.839692], + [-12.194126, 7.83934], + [-12.194091, 7.838529], + [-12.192154, 7.838205], + [-12.19229, 7.837992], + [-12.19242, 7.836822], + [-12.191686, 7.83499], + [-12.191609, 7.833602], + [-12.192034, 7.831967], + [-12.192578, 7.831241], + [-12.193367, 7.830715], + [-12.199957, 7.828491], + [-12.205658, 7.826793], + [-12.206493, 7.825584], + [-12.206505, 7.825551], + [-12.206813, 7.824447], + [-12.206956, 7.82177], + [-12.206816, 7.81939], + [-12.203268, 7.811582], + [-12.202346, 7.809947], + [-12.201274, 7.808641], + [-12.198272, 7.807195], + [-12.197522, 7.80643], + [-12.196728, 7.804858], + [-12.196567, 7.802915], + [-12.196802, 7.800461], + [-12.196728, 7.799644], + [-12.195209, 7.796408], + [-12.194867, 7.794465], + [-12.195012, 7.793903], + [-12.195466, 7.793254], + [-12.197869, 7.790082], + [-12.198639, 7.789298], + [-12.199578, 7.789005], + [-12.201152, 7.788881], + [-12.202062, 7.788969], + [-12.203738, 7.78972], + [-12.206856, 7.789106], + [-12.207773, 7.788694], + [-12.208105, 7.788368], + [-12.207766, 7.786357], + [-12.208142, 7.784409], + [-12.210677, 7.781239], + [-12.212073, 7.777553], + [-12.215376, 7.771119], + [-12.215504, 7.770075], + [-12.215367, 7.769647], + [-12.214499, 7.77], + [-12.2093, 7.772599], + [-12.2042, 7.773699], + [-12.198999, 7.776], + [-12.1922, 7.777599], + [-12.1869, 7.779999], + [-12.181, 7.781399], + [-12.175999, 7.7835], + [-12.171799, 7.7842], + [-12.1635, 7.784399], + [-12.1595, 7.784999], + [-12.154, 7.787099], + [-12.149999, 7.7879], + [-12.1447, 7.788099], + [-12.1404, 7.7878], + [-12.137499, 7.787299], + [-12.133, 7.786], + [-12.135199, 7.803599], + [-12.1344, 7.812999], + [-12.134799, 7.818399], + [-12.136, 7.821899], + [-12.139599, 7.8266], + [-12.140399, 7.8308], + [-12.1389, 7.839899], + [-12.138299, 7.8457], + [-12.1382, 7.856099], + [-12.138699, 7.863399], + [-12.1398, 7.8675], + [-12.1434, 7.874], + [-12.1472, 7.8812], + [-12.1481, 7.8844], + [-12.148299, 7.887799], + [-12.147399, 7.8921], + [-12.1436, 7.899399], + [-12.140099, 7.9036], + [-12.1331, 7.9105], + [-12.1314, 7.915299], + [-12.1312, 7.923799], + [-12.1315, 7.9267], + [-12.1324, 7.930199], + [-12.1353, 7.9343], + [-12.1386, 7.936999], + [-12.143, 7.938799], + [-12.1455, 7.938], + [-12.148299, 7.938099], + [-12.151068, 7.939092], + [-12.151321, 7.938205], + [-12.15118, 7.937335], + [-12.150326, 7.936275], + [-12.14773, 7.935051], + [-12.145772, 7.9345], + [-12.145514, 7.933768], + [-12.145391, 7.932355], + [-12.14637, 7.930819], + [-12.147705, 7.930252], + [-12.14899, 7.929423], + [-12.149612, 7.929242], + [-12.15371, 7.930022], + [-12.154365, 7.929956], + [-12.157426, 7.927903], + [-12.158749, 7.926519], + [-12.15875, 7.927083], + [-12.159477, 7.927809], + [-12.159792, 7.9275], + [-12.161249, 7.927384], + [-12.16125, 7.929518], + [-12.162082, 7.929653], + [-12.162083, 7.930417], + [-12.16375, 7.934584], + [-12.167083, 7.937083], + [-12.172082, 7.937916], + [-12.173749, 7.932917], + [-12.175416, 7.932083], + [-12.177917, 7.927084], + [-12.183744, 7.928378], + [-12.185008, 7.930998], + [-12.192081, 7.929584], + [-12.192082, 7.929585], + [-12.190417, 7.937084], + [-12.190417, 7.947083], + [-12.198749, 7.947084], + [-12.200416, 7.945416], + [-12.19875, 7.934583], + [-12.203576, 7.932515], + [-12.204002, 7.933447], + [-12.20442, 7.93385], + [-12.204351, 7.93484], + [-12.204908, 7.936726], + [-12.204377, 7.938392], + [-12.204295, 7.940805], + [-12.205165, 7.940806], + [-12.207663, 7.945133], + [-12.210416, 7.944584], + [-12.212916, 7.942083], + [-12.21446, 7.93745], + [-12.213449, 7.935135], + [-12.213589, 7.934899], + [-12.21359, 7.9349], + [-12.214583, 7.937083], + [-12.222234, 7.937083], + [-12.220127, 7.933432], + [-12.224033, 7.926667], + [-12.231729, 7.926667], + [-12.231529, 7.929294], + [-12.23399, 7.929294], + [-12.237917, 7.924584], + [-12.245145, 7.924027], + [-12.245617, 7.926761], + [-12.245633, 7.928232], + [-12.245345, 7.93013], + [-12.244504, 7.932498], + [-12.245708, 7.934582], + [-12.25352, 7.934583], + [-12.25375, 7.934981], + [-12.25375, 7.940416], + [-12.253577, 7.940633], + [-12.254844, 7.942825], + [-12.262655, 7.942825], + [-12.266562, 7.93606], + [-12.274374, 7.93606], + [-12.27678, 7.940226], + [-12.276735, 7.940919], + [-12.279905, 7.94092], + [-12.283811, 7.947685], + [-12.28791, 7.947686], + [-12.2881, 7.947499], + [-12.2895, 7.945399], + [-12.290899, 7.9417], + [-12.291199, 7.9379], + [-12.291036, 7.934153] + ] + ], + "type": "Polygon" + }, + "id": 408, + "properties": { + "cc:admin:id": ["140"], + "cc:oBld:total": 5, + "cc:pop:fifteen-to-twenty-four": 1205.189546731726, + "cc:pop:grid3-total": 9977.059718179866, + "cc:pop:kontur-total": 6528.272854865114, + "cc:pop:men": 3034.7032525998534, + "cc:pop:sixty-plus": 430.0540717590508, + "cc:pop:total": 6447.786178832591, + "cc:pop:under-five": 1124.2329076669328, + "cc:pop:women": 3413.0829262327384, + "cc:pop:women-fiften-to-forty-nine": 1627.3469830899337, + "cc:pop:wp-total": 6862.19121680614, + "cc:pop:wp-total-UN": 7958.813084134591, + "cc:id": "408", + "cc:Name": "Mokanji CHC", + "cc:site": [-12.1913, 7.9032], + "user:parentName": "Lower Banta", + "user:code": "OU_247015", + "user:orgUnitId": "cNAp6CJeLxk", + "user:level": "4", + "user:parentId": "W5fN3G6y1VI" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.507264, 8.042456], + [-12.503358, 8.03569], + [-12.49875, 8.035689], + [-12.498749, 8.035417], + [-12.498296, 8.035032], + [-12.499453, 8.033027], + [-12.495548, 8.026261], + [-12.498708, 8.020787], + [-12.495417, 8.017083], + [-12.497082, 8.014584], + [-12.500416, 8.012916], + [-12.500416, 8.012084], + [-12.48875, 8.004583], + [-12.48875, 8.003749], + [-12.492916, 7.999584], + [-12.500416, 7.997916], + [-12.500417, 7.98665], + [-12.500644, 7.986478], + [-12.495416, 7.98125], + [-12.487917, 7.98125], + [-12.484582, 7.982083], + [-12.482082, 7.97875], + [-12.480416, 7.978749], + [-12.476249, 7.97375], + [-12.474582, 7.973749], + [-12.472363, 7.97153], + [-12.472363, 7.971529], + [-12.474545, 7.969981], + [-12.47375, 7.969583], + [-12.473749, 7.96875], + [-12.472916, 7.968749], + [-12.470417, 7.965417], + [-12.469583, 7.959584], + [-12.473829, 7.951798], + [-12.474368, 7.95194], + [-12.474687, 7.952005], + [-12.474715, 7.952009], + [-12.474762, 7.952017], + [-12.475416, 7.94875], + [-12.472916, 7.948749], + [-12.465034, 7.944451], + [-12.464888, 7.947191], + [-12.464626, 7.947758], + [-12.464337, 7.948629], + [-12.464738, 7.948642], + [-12.465357, 7.948387], + [-12.465797, 7.948617], + [-12.466167, 7.948812], + [-12.46569, 7.948933], + [-12.46533, 7.949004], + [-12.465126, 7.949069], + [-12.464957, 7.949107], + [-12.464179, 7.949102], + [-12.462397, 7.953133], + [-12.461822, 7.954371], + [-12.460417, 7.94875], + [-12.460416, 7.947916], + [-12.459582, 7.94375], + [-12.457082, 7.942916], + [-12.455417, 7.940417], + [-12.452916, 7.947083], + [-12.44625, 7.94625], + [-12.444582, 7.948749], + [-12.43625, 7.947084], + [-12.435416, 7.94625], + [-12.432917, 7.94625], + [-12.428751, 7.949582], + [-12.42875, 7.949581], + [-12.428749, 7.947917], + [-12.426249, 7.945417], + [-12.419583, 7.942916], + [-12.417916, 7.937084], + [-12.41625, 7.937084], + [-12.413749, 7.938749], + [-12.409583, 7.938749], + [-12.407916, 7.937084], + [-12.407082, 7.937083], + [-12.40375, 7.935417], + [-12.402916, 7.940416], + [-12.397745, 7.939769], + [-12.399878, 7.935417], + [-12.387083, 7.935417], + [-12.387082, 7.935987], + [-12.383136, 7.935988], + [-12.382916, 7.937084], + [-12.379582, 7.941249], + [-12.36961, 7.941963], + [-12.370066, 7.942754], + [-12.368766, 7.945004], + [-12.367083, 7.944584], + [-12.36125, 7.954583], + [-12.369582, 7.962916], + [-12.367083, 7.966249], + [-12.364583, 7.967084], + [-12.364583, 7.972083], + [-12.365416, 7.974584], + [-12.361249, 7.977916], + [-12.35375, 7.979584], + [-12.356249, 7.984583], + [-12.356249, 7.986249], + [-12.349583, 7.982917], + [-12.349583, 7.987916], + [-12.350416, 7.990416], + [-12.34375, 7.990417], + [-12.344583, 7.992916], + [-12.348748, 7.997082], + [-12.348748, 7.997083], + [-12.334583, 7.997084], + [-12.334583, 8.000603], + [-12.3363, 8.001], + [-12.343799, 8.0046], + [-12.347199, 8.008], + [-12.3487, 8.0109], + [-12.351899, 8.013899], + [-12.353399, 8.014699], + [-12.3588, 8.0161], + [-12.364199, 8.018299], + [-12.368099, 8.018799], + [-12.386, 8.0187], + [-12.389, 8.0188], + [-12.392599, 8.019599], + [-12.400999, 8.023699], + [-12.406099, 8.027599], + [-12.409299, 8.029399], + [-12.415199, 8.030899], + [-12.4201, 8.033], + [-12.4245, 8.033799], + [-12.460499, 8.0338], + [-12.4644, 8.037399], + [-12.4689, 8.0339], + [-12.4728, 8.0355], + [-12.4768, 8.0387], + [-12.481799, 8.043699], + [-12.483999, 8.045699], + [-12.487699, 8.047999], + [-12.492999, 8.048699], + [-12.503722, 8.048591], + [-12.507264, 8.042456] + ] + ], + "type": "Polygon" + }, + "id": 409, + "properties": { + "cc:admin:id": ["1"], + "cc:oBld:total": 73, + "cc:pop:fifteen-to-twenty-four": 853.0670419294031, + "cc:pop:grid3-total": 4762.986370455327, + "cc:pop:kontur-total": 4964.9510693303955, + "cc:pop:men": 2127.701696915423, + "cc:pop:sixty-plus": 284.28364740873604, + "cc:pop:total": 4595.140124222604, + "cc:pop:under-five": 813.8022022963157, + "cc:pop:women": 2467.438427307181, + "cc:pop:women-fiften-to-forty-nine": 1142.848392675649, + "cc:pop:wp-total": 3942.3430177450377, + "cc:pop:wp-total-UN": 4565.105979507235, + "cc:id": "409", + "cc:Name": "Mokassie MCHP", + "cc:site": [-12.4112, 8.0022], + "user:parentName": "Bagruwa", + "user:code": "OU_247052", + "user:orgUnitId": "kd2Aqw5S07V", + "user:level": "4", + "user:parentId": "jPidqyo7cpF" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.438999, 8.2729], + [-12.4362, 8.2706], + [-12.4339, 8.2679], + [-12.431999, 8.264099], + [-12.427199, 8.257], + [-12.423099, 8.256499], + [-12.4181, 8.2553], + [-12.412099, 8.2568], + [-12.4082, 8.256999], + [-12.4048, 8.2567], + [-12.402599, 8.255999], + [-12.398899, 8.254299], + [-12.393, 8.2528], + [-12.3875, 8.2506], + [-12.3863, 8.250367], + [-12.384583, 8.252084], + [-12.384582, 8.25375], + [-12.377916, 8.259583], + [-12.370417, 8.259584], + [-12.363749, 8.262916], + [-12.355417, 8.262917], + [-12.352916, 8.27125], + [-12.34375, 8.272083], + [-12.339088, 8.261985], + [-12.338682, 8.261985], + [-12.334776, 8.26875], + [-12.330229, 8.268749], + [-12.330222, 8.268456], + [-12.325417, 8.267083], + [-12.319582, 8.262917], + [-12.315417, 8.264584], + [-12.315416, 8.267083], + [-12.307917, 8.267084], + [-12.30625, 8.269583], + [-12.30375, 8.270417], + [-12.302916, 8.274583], + [-12.29875, 8.274583], + [-12.294583, 8.272917], + [-12.290417, 8.279583], + [-12.287917, 8.280416], + [-12.284582, 8.277084], + [-12.27625, 8.277916], + [-12.276249, 8.270417], + [-12.270417, 8.270417], + [-12.265766, 8.272741], + [-12.265485, 8.273155], + [-12.267082, 8.27875], + [-12.266249, 8.280417], + [-12.26125, 8.285417], + [-12.261249, 8.287084], + [-12.257083, 8.29125], + [-12.257082, 8.294583], + [-12.252083, 8.292084], + [-12.24875, 8.294583], + [-12.247248, 8.29158], + [-12.245652, 8.298644], + [-12.244678, 8.303202], + [-12.244224, 8.304604], + [-12.230417, 8.305417], + [-12.232082, 8.315416], + [-12.224583, 8.315417], + [-12.225869, 8.319919], + [-12.225173, 8.320314], + [-12.224583, 8.322083], + [-12.22625, 8.324583], + [-12.227916, 8.325417], + [-12.22625, 8.330417], + [-12.227082, 8.33375], + [-12.2257, 8.337899], + [-12.2321, 8.3413], + [-12.2414, 8.3475], + [-12.246699, 8.350199], + [-12.250399, 8.351599], + [-12.2547, 8.3522], + [-12.260599, 8.352499], + [-12.264999, 8.3523], + [-12.2679, 8.351799], + [-12.271799, 8.3502], + [-12.276199, 8.3467], + [-12.278799, 8.3436], + [-12.282099, 8.3384], + [-12.283999, 8.3362], + [-12.2863, 8.334299], + [-12.290299, 8.3321], + [-12.293699, 8.3306], + [-12.2966, 8.329899], + [-12.2997, 8.3296], + [-12.307299, 8.329799], + [-12.3115, 8.3307], + [-12.319399, 8.334099], + [-12.338699, 8.343999], + [-12.346399, 8.347399], + [-12.3506, 8.3483], + [-12.356399, 8.3483], + [-12.360499, 8.3475], + [-12.367099, 8.3445], + [-12.3718, 8.341199], + [-12.3773, 8.335899], + [-12.386999, 8.3259], + [-12.3899, 8.322399], + [-12.3943, 8.316599], + [-12.404399, 8.3079], + [-12.4087, 8.3051], + [-12.412099, 8.3044], + [-12.4158, 8.3054], + [-12.418299, 8.3077], + [-12.421299, 8.314099], + [-12.424, 8.317199], + [-12.426999, 8.318199], + [-12.430399, 8.316399], + [-12.4319, 8.312999], + [-12.432199, 8.3012], + [-12.4325, 8.298199], + [-12.4345, 8.290799], + [-12.4364, 8.281299], + [-12.438999, 8.2729] + ] + ], + "type": "Polygon" + }, + "id": 410, + "properties": { + "cc:admin:id": ["23"], + "cc:oBld:total": 52, + "cc:pop:fifteen-to-twenty-four": 1074.8783607758762, + "cc:pop:grid3-total": 4074.6237584895684, + "cc:pop:kontur-total": 6113.188968764823, + "cc:pop:men": 2875.0895323276964, + "cc:pop:sixty-plus": 462.34306107085024, + "cc:pop:total": 6077.211727869349, + "cc:pop:under-five": 986.9738879406583, + "cc:pop:women": 3202.1221955416513, + "cc:pop:women-fiften-to-forty-nine": 1564.1966140819634, + "cc:pop:wp-total": 5854.5583157541605, + "cc:pop:wp-total-UN": 6790.8897103371655, + "cc:id": "410", + "cc:Name": "Mokellay MCHP", + "cc:site": [-12.2935, 8.297], + "user:parentName": "Fakunya", + "user:code": "OU_247094", + "user:orgUnitId": "RxmgoSlw9YF", + "user:level": "4", + "user:parentId": "vULnao2hV5v" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.751645, 7.832939], + [-12.751612, 7.832762], + [-12.747599, 7.832899], + [-12.741899, 7.832199], + [-12.738799, 7.831099], + [-12.731899, 7.8266], + [-12.7271, 7.8255], + [-12.7129, 7.8249], + [-12.7097, 7.8241], + [-12.7051, 7.8225], + [-12.701, 7.8214], + [-12.697699, 7.8214], + [-12.693599, 7.8225], + [-12.6864, 7.8264], + [-12.683799, 7.8293], + [-12.6787, 7.839399], + [-12.676799, 7.8416], + [-12.674699, 7.8435], + [-12.6642, 7.848799], + [-12.661699, 7.8507], + [-12.658399, 7.8545], + [-12.6546, 7.861799], + [-12.652899, 7.8659], + [-12.6486, 7.874099], + [-12.6468, 7.876499], + [-12.642099, 7.880099], + [-12.6364, 7.8817], + [-12.6323, 7.8848], + [-12.628199, 7.8925], + [-12.625, 7.900099], + [-12.622599, 7.9071], + [-12.618999, 7.910199], + [-12.6125, 7.912399], + [-12.6082, 7.9145], + [-12.607399, 7.919099], + [-12.604, 7.923899], + [-12.6024, 7.927099], + [-12.601099, 7.9321], + [-12.5974, 7.940299], + [-12.5952, 7.9447], + [-12.5945, 7.9489], + [-12.5945, 7.957899], + [-12.595299, 7.962199], + [-12.5992, 7.970201], + [-12.6017, 7.9745], + [-12.605299, 7.981799], + [-12.606, 7.9854], + [-12.6067, 7.995799], + [-12.613399, 7.997199], + [-12.617999, 7.999199], + [-12.621333, 8.000081], + [-12.622961, 7.99925], + [-12.623763, 7.999303], + [-12.624755, 7.999088], + [-12.624878, 7.999078], + [-12.625918, 8.000197], + [-12.626343, 8.000219], + [-12.627849, 7.999705], + [-12.629521, 7.999557], + [-12.631354, 7.998941], + [-12.63205, 7.998067], + [-12.632082, 7.998057], + [-12.632083, 7.996249], + [-12.638749, 7.994583], + [-12.640416, 7.992084], + [-12.642698, 7.992083], + [-12.642807, 7.991548], + [-12.643483, 7.985432], + [-12.644853, 7.982271], + [-12.646509, 7.981718], + [-12.646399, 7.981593], + [-12.646399, 7.981592], + [-12.655416, 7.977084], + [-12.657916, 7.979584], + [-12.657917, 7.982916], + [-12.661249, 7.982916], + [-12.66125, 7.97625], + [-12.663749, 7.973749], + [-12.66375, 7.970417], + [-12.66455, 7.969215], + [-12.663323, 7.969192], + [-12.662916, 7.968743], + [-12.662917, 7.962917], + [-12.674582, 7.957084], + [-12.677916, 7.957083], + [-12.677451, 7.94917], + [-12.682644, 7.94917], + [-12.68655, 7.955935], + [-12.688167, 7.955935], + [-12.691249, 7.952083], + [-12.692081, 7.947095], + [-12.692083, 7.947096], + [-12.692083, 7.949583], + [-12.695417, 7.953749], + [-12.700416, 7.955416], + [-12.702683, 7.953149], + [-12.702606, 7.953077], + [-12.707916, 7.946249], + [-12.707083, 7.942084], + [-12.709582, 7.93875], + [-12.711249, 7.938749], + [-12.71125, 7.937083], + [-12.714582, 7.93375], + [-12.717916, 7.934583], + [-12.718749, 7.929584], + [-12.71913, 7.929201], + [-12.719112, 7.929174], + [-12.71924, 7.927084], + [-12.72125, 7.927083], + [-12.724684, 7.924411], + [-12.724739, 7.922961], + [-12.726364, 7.923104], + [-12.728749, 7.921249], + [-12.72875, 7.920416], + [-12.731561, 7.919361], + [-12.72989, 7.918346], + [-12.729335, 7.918175], + [-12.728437, 7.918385], + [-12.725891, 7.915415], + [-12.72902, 7.909993], + [-12.725115, 7.903229], + [-12.726863, 7.900198], + [-12.726249, 7.899584], + [-12.725417, 7.899583], + [-12.725416, 7.898849], + [-12.721988, 7.898848], + [-12.718083, 7.892084], + [-12.721096, 7.886862], + [-12.71375, 7.886249], + [-12.717416, 7.876716], + [-12.717479, 7.876728], + [-12.719582, 7.870417], + [-12.720416, 7.869583], + [-12.720417, 7.86875], + [-12.723749, 7.867083], + [-12.724583, 7.862084], + [-12.725416, 7.861249], + [-12.725417, 7.852084], + [-12.732917, 7.84375], + [-12.73455, 7.843749], + [-12.734999, 7.842973], + [-12.742811, 7.842972], + [-12.746268, 7.836986], + [-12.746872, 7.836329], + [-12.74688, 7.835042], + [-12.749521, 7.83428], + [-12.749845, 7.83385], + [-12.750991, 7.833567], + [-12.751645, 7.832939] + ] + ], + "type": "Polygon" + }, + "id": 411, + "properties": { + "cc:admin:id": ["51"], + "cc:oBld:total": 54, + "cc:pop:fifteen-to-twenty-four": 1038.4545600639667, + "cc:pop:grid3-total": 3172.1198660650193, + "cc:pop:kontur-total": 5412.051133500226, + "cc:pop:men": 2561.8717666143616, + "cc:pop:sixty-plus": 316.898597579879, + "cc:pop:total": 5492.700926405039, + "cc:pop:under-five": 964.9083739962441, + "cc:pop:women": 2930.829159790682, + "cc:pop:women-fiften-to-forty-nine": 1256.1287567383567, + "cc:pop:wp-total": 3976.254548298547, + "cc:pop:wp-total-UN": 4614.692621414966, + "cc:id": "411", + "cc:Name": "Mokobo MCHP", + "cc:site": [-12.6452, 7.9544], + "user:parentName": "Kargboro", + "user:code": "OU_247075", + "user:orgUnitId": "SC0nM3cbGHy", + "user:level": "4", + "user:parentId": "Z9QaI6sxTwW" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.821265, 7.921234], + [-12.821073, 7.921125], + [-12.817953, 7.920121], + [-12.814858, 7.918752], + [-12.812769, 7.917723], + [-12.810695, 7.917736], + [-12.809003, 7.918529], + [-12.807417, 7.92022], + [-12.806517, 7.921543], + [-12.805354, 7.923446], + [-12.803134, 7.924451], + [-12.798217, 7.925825], + [-12.789864, 7.928309], + [-12.786269, 7.93016], + [-12.78508, 7.931249], + [-12.77625, 7.931249], + [-12.77375, 7.929584], + [-12.773749, 7.927917], + [-12.769583, 7.931249], + [-12.765924, 7.931249], + [-12.763471, 7.927004], + [-12.760454, 7.927003], + [-12.759682, 7.925271], + [-12.758158, 7.923719], + [-12.758083, 7.92218], + [-12.756593, 7.921022], + [-12.756464, 7.921011], + [-12.757916, 7.91375], + [-12.756744, 7.91375], + [-12.756807, 7.914911], + [-12.756265, 7.915208], + [-12.755809, 7.914349], + [-12.755046, 7.91375], + [-12.747917, 7.91375], + [-12.747696, 7.914188], + [-12.744781, 7.912828], + [-12.744662, 7.910637], + [-12.740714, 7.910633], + [-12.73856, 7.911777], + [-12.735108, 7.911958], + [-12.734582, 7.914582], + [-12.730649, 7.909994], + [-12.729021, 7.909994], + [-12.725891, 7.915414], + [-12.728438, 7.918385], + [-12.729335, 7.918175], + [-12.72989, 7.918346], + [-12.731561, 7.919361], + [-12.73156, 7.919363], + [-12.72875, 7.920417], + [-12.72875, 7.921249], + [-12.736249, 7.922917], + [-12.739582, 7.927916], + [-12.739582, 7.928249], + [-12.738633, 7.928159], + [-12.739583, 7.929584], + [-12.739582, 7.939583], + [-12.73625, 7.943749], + [-12.735257, 7.944081], + [-12.735371, 7.944949], + [-12.735027, 7.948324], + [-12.734536, 7.950985], + [-12.736561, 7.951166], + [-12.73716, 7.949409], + [-12.737916, 7.950417], + [-12.732917, 7.965416], + [-12.729583, 7.96625], + [-12.727917, 7.967917], + [-12.727082, 7.979583], + [-12.719583, 7.98125], + [-12.71625, 7.985417], + [-12.715417, 7.989583], + [-12.717082, 7.997084], + [-12.71625, 7.999584], + [-12.716249, 8.009583], + [-12.714632, 8.011201], + [-12.7361, 8.0113], + [-12.7401, 8.0119], + [-12.745499, 8.014099], + [-12.752199, 8.015899], + [-12.7557, 8.0175], + [-12.759599, 8.018499], + [-12.7616, 8.018599], + [-12.779099, 8.018599], + [-12.7831, 8.0189], + [-12.786799, 8.019899], + [-12.790399, 8.021899], + [-12.793599, 8.022999], + [-12.797743, 8.025601], + [-12.797006, 8.024028], + [-12.794866, 8.021361], + [-12.794339, 8.020296], + [-12.793989, 8.018819], + [-12.792565, 8.015748], + [-12.793265, 8.010463], + [-12.792847, 8.007419], + [-12.79224, 8.006816], + [-12.791723, 8.005786], + [-12.79136, 8.003248], + [-12.791361, 8.003247], + [-12.792664, 8.00371], + [-12.79375, 8.002084], + [-12.796249, 8.002083], + [-12.79625, 7.999583], + [-12.797916, 7.99375], + [-12.798749, 7.992916], + [-12.799582, 7.990417], + [-12.802082, 7.990416], + [-12.80125, 7.975417], + [-12.800417, 7.972084], + [-12.80135, 7.971459], + [-12.8008, 7.970574], + [-12.801446, 7.970321], + [-12.801674, 7.971244], + [-12.805416, 7.968749], + [-12.804583, 7.958751], + [-12.804584, 7.958751], + [-12.80875, 7.961249], + [-12.812082, 7.961249], + [-12.815416, 7.954583], + [-12.814583, 7.95125], + [-12.814583, 7.950345], + [-12.815121, 7.950041], + [-12.814357, 7.947976], + [-12.814115, 7.944884], + [-12.813215, 7.944106], + [-12.811421, 7.941263], + [-12.813508, 7.93741], + [-12.81363, 7.937442], + [-12.812917, 7.929584], + [-12.813312, 7.929088], + [-12.810203, 7.929087], + [-12.807362, 7.924165], + [-12.807993, 7.923715], + [-12.808913, 7.922498], + [-12.810158, 7.920061], + [-12.811323, 7.919791], + [-12.814436, 7.921713], + [-12.816873, 7.922768], + [-12.820066, 7.924256], + [-12.820416, 7.924445], + [-12.820417, 7.922084], + [-12.821265, 7.921234] + ] + ], + "type": "Polygon" + }, + "id": 412, + "properties": { + "cc:admin:id": ["51"], + "cc:oBld:total": 12, + "cc:pop:fifteen-to-twenty-four": 892.8450707495813, + "cc:pop:grid3-total": 2069.5279699242997, + "cc:pop:kontur-total": 4809.19979855616, + "cc:pop:men": 2247.993020295065, + "cc:pop:sixty-plus": 279.67496794428, + "cc:pop:total": 4783.969584487105, + "cc:pop:under-five": 807.9939091989797, + "cc:pop:women": 2535.9765641920394, + "cc:pop:women-fiften-to-forty-nine": 1127.5913738227696, + "cc:pop:wp-total": 3915.423458123729, + "cc:pop:wp-total-UN": 4545.4879042301, + "cc:id": "412", + "cc:Name": "Mokongbetty MCHP", + "cc:site": [-12.7681, 8.0006], + "user:parentName": "Kargboro", + "user:code": "OU_247078", + "user:orgUnitId": "BedE3DKQDFf", + "user:level": "4", + "user:parentId": "Z9QaI6sxTwW" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.993999, 8.237], + [-12.9907, 8.2368], + [-12.9901, 8.237099], + [-12.989299, 8.2357], + [-12.9879, 8.2346], + [-12.9876, 8.231], + [-12.9871, 8.229899], + [-12.987099, 8.2274], + [-12.986, 8.225399], + [-12.986, 8.2232], + [-12.986799, 8.2215], + [-12.9863, 8.221199], + [-12.9865, 8.219599], + [-12.987599, 8.2174], + [-12.989899, 8.217399], + [-12.990999, 8.215999], + [-12.992099, 8.2129], + [-12.992899, 8.211799], + [-12.992899, 8.2088], + [-12.991, 8.2065], + [-12.989599, 8.204], + [-12.9846, 8.1993], + [-12.984299, 8.1982], + [-12.9835, 8.197899], + [-12.983499, 8.1968], + [-12.9807, 8.195099], + [-12.978199, 8.1921], + [-12.976199, 8.191299], + [-12.975399, 8.1899], + [-12.974299, 8.188999], + [-12.9693, 8.1838], + [-12.9685, 8.183499], + [-12.967899, 8.182099], + [-12.9649, 8.179599], + [-12.964, 8.1782], + [-12.963999, 8.1771], + [-12.9632, 8.1763], + [-12.961299, 8.175999], + [-12.959599, 8.1729], + [-12.9587, 8.172599], + [-12.958499, 8.1715], + [-12.956799, 8.170399], + [-12.956, 8.169], + [-12.955999, 8.1679], + [-12.954, 8.166499], + [-12.953499, 8.1635], + [-12.952599, 8.163199], + [-12.950999, 8.1615], + [-12.948499, 8.160699], + [-12.9446, 8.1565], + [-12.943499, 8.156299], + [-12.942399, 8.155099], + [-12.940099, 8.151], + [-12.939299, 8.150699], + [-12.9379, 8.1476], + [-12.937399, 8.147599], + [-12.936299, 8.1451], + [-12.935699, 8.145099], + [-12.935099, 8.1429], + [-12.934, 8.1424], + [-12.933999, 8.1412], + [-12.9329, 8.140699], + [-12.9324, 8.1396], + [-12.9321, 8.1374], + [-12.932899, 8.1357], + [-12.9315, 8.135399], + [-12.930999, 8.1346], + [-12.929, 8.1332], + [-12.928999, 8.132599], + [-12.9268, 8.1293], + [-12.926799, 8.127599], + [-12.926299, 8.1251], + [-12.9251, 8.124599], + [-12.925399, 8.1229], + [-12.9238, 8.121799], + [-12.923199, 8.119], + [-12.9221, 8.117599], + [-12.921499, 8.1157], + [-12.9207, 8.114899], + [-12.921, 8.1118], + [-12.921799, 8.1107], + [-12.920099, 8.1085], + [-12.918999, 8.108199], + [-12.918199, 8.1068], + [-12.915999, 8.106199], + [-12.914599, 8.104599], + [-12.911, 8.100999], + [-12.911, 8.0979], + [-12.913499, 8.095399], + [-12.913199, 8.0935], + [-12.9124, 8.092899], + [-12.912099, 8.0915], + [-12.9104, 8.0913], + [-12.909599, 8.092399], + [-12.9071, 8.0921], + [-12.906799, 8.0926], + [-12.9026, 8.093999], + [-12.902099, 8.0926], + [-12.901, 8.091499], + [-12.899599, 8.0887], + [-12.8987, 8.0882], + [-12.899599, 8.0868], + [-12.8979, 8.0857], + [-12.897899, 8.0829], + [-12.896199, 8.081], + [-12.890199, 8.087499], + [-12.8809, 8.0913], + [-12.879899, 8.0942], + [-12.878, 8.097499], + [-12.875099, 8.099999], + [-12.872899, 8.1007], + [-12.8697, 8.100799], + [-12.8641, 8.0987], + [-12.862599, 8.1038], + [-12.8611, 8.111599], + [-12.8606, 8.117799], + [-12.8598, 8.121599], + [-12.858599, 8.124499], + [-12.855999, 8.127599], + [-12.852799, 8.129599], + [-12.844299, 8.1317], + [-12.840999, 8.1331], + [-12.836999, 8.1352], + [-12.8347, 8.137299], + [-12.832999, 8.1395], + [-12.8305, 8.144299], + [-12.829571, 8.147133], + [-12.830485, 8.146685], + [-12.831525, 8.145274], + [-12.83194, 8.144393], + [-12.836008, 8.143884], + [-12.835921, 8.145168], + [-12.834368, 8.145676], + [-12.833717, 8.146703], + [-12.834357, 8.147736], + [-12.836035, 8.148003], + [-12.836936, 8.148908], + [-12.838485, 8.149174], + [-12.839782, 8.148152], + [-12.839784, 8.148153], + [-12.840294, 8.149314], + [-12.838478, 8.150463], + [-12.836406, 8.151354], + [-12.836283, 8.15294], + [-12.835488, 8.153926], + [-12.83587, 8.154828], + [-12.836898, 8.155864], + [-12.83714, 8.156767], + [-12.836501, 8.157192], + [-12.835859, 8.156762], + [-12.835403, 8.156683], + [-12.83375, 8.158749], + [-12.837083, 8.161249], + [-12.839582, 8.162084], + [-12.839583, 8.167083], + [-12.842916, 8.16875], + [-12.842917, 8.172916], + [-12.84375, 8.172917], + [-12.844583, 8.176249], + [-12.846249, 8.177084], + [-12.847083, 8.179583], + [-12.851249, 8.17875], + [-12.852917, 8.182083], + [-12.857916, 8.182084], + [-12.85625, 8.187083], + [-12.857916, 8.190417], + [-12.85375, 8.194584], + [-12.85375, 8.196249], + [-12.855417, 8.198749], + [-12.862917, 8.202083], + [-12.86875, 8.200417], + [-12.876249, 8.202084], + [-12.8781, 8.204551], + [-12.878194, 8.205572], + [-12.878118, 8.209928], + [-12.879583, 8.210417], + [-12.88375, 8.215416], + [-12.885416, 8.215417], + [-12.88625, 8.220416], + [-12.893749, 8.224584], + [-12.895416, 8.231249], + [-12.891857, 8.235995], + [-12.892888, 8.236176], + [-12.89356, 8.236458], + [-12.895012, 8.237355], + [-12.896017, 8.238435], + [-12.89679, 8.239016], + [-12.898613, 8.2397], + [-12.899033, 8.240426], + [-12.902082, 8.240427], + [-12.902083, 8.250416], + [-12.904789, 8.250417], + [-12.905172, 8.251289], + [-12.905166, 8.252594], + [-12.907338, 8.252595], + [-12.911243, 8.259359], + [-12.907338, 8.266126], + [-12.909983, 8.270707], + [-12.9112, 8.269799], + [-12.9151, 8.267499], + [-12.9196, 8.266099], + [-12.9319, 8.263399], + [-12.9357, 8.261799], + [-12.943, 8.2569], + [-12.948299, 8.2576], + [-12.9528, 8.261199], + [-12.957399, 8.262699], + [-12.961, 8.262499], + [-12.9651, 8.260699], + [-12.9703, 8.257899], + [-12.9746, 8.254399], + [-12.9782, 8.250199], + [-12.9816, 8.244999], + [-12.985699, 8.2411], + [-12.990899, 8.2382], + [-12.993999, 8.237] + ] + ], + "type": "Polygon" + }, + "id": 413, + "properties": { + "cc:admin:id": ["111"], + "cc:oBld:total": 237, + "cc:pop:fifteen-to-twenty-four": 1587.0274169889453, + "cc:pop:grid3-total": 9904.322603989613, + "cc:pop:kontur-total": 8921.981474152371, + "cc:pop:men": 4377.311173994344, + "cc:pop:sixty-plus": 580.5631962029934, + "cc:pop:total": 9250.830136259272, + "cc:pop:under-five": 1584.0396076287898, + "cc:pop:women": 4873.518962264929, + "cc:pop:women-fiften-to-forty-nine": 2212.5542712481442, + "cc:pop:wp-total": 7867.407125579509, + "cc:pop:wp-total-UN": 9116.099854410171, + "cc:id": "413", + "cc:Name": "Mokorbu MCHP", + "cc:site": [-12.9307, 8.1926], + "user:parentName": "Ribbi", + "user:code": "OU_247040", + "user:orgUnitId": "cHqboEGRUiY", + "user:level": "4", + "user:parentId": "gy8rmvYT4cj" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.350728, 8.193114], + [-12.3499, 8.1898], + [-12.3498, 8.1868], + [-12.3497, 8.1608], + [-12.3496, 8.1569], + [-12.3489, 8.1536], + [-12.347799, 8.151499], + [-12.3453, 8.1486], + [-12.3424, 8.1464], + [-12.338599, 8.144499], + [-12.3344, 8.1427], + [-12.330299, 8.141799], + [-12.3197, 8.1417], + [-12.315999, 8.140899], + [-12.312099, 8.138299], + [-12.309499, 8.135099], + [-12.306299, 8.129299], + [-12.3039, 8.1265], + [-12.3018, 8.1247], + [-12.2997, 8.1237], + [-12.297499, 8.123199], + [-12.2904, 8.1223], + [-12.284399, 8.1199], + [-12.2811, 8.1198], + [-12.2787, 8.1209], + [-12.2769, 8.123399], + [-12.275199, 8.125099], + [-12.2722, 8.126499], + [-12.268699, 8.126899], + [-12.265099, 8.126699], + [-12.261799, 8.125499], + [-12.2566, 8.1228], + [-12.2546, 8.1214], + [-12.252899, 8.119599], + [-12.250499, 8.1154], + [-12.247699, 8.113], + [-12.244899, 8.112099], + [-12.2396, 8.1115], + [-12.2371, 8.111], + [-12.232499, 8.108999], + [-12.2271, 8.1078], + [-12.222099, 8.1109], + [-12.2146, 8.114499], + [-12.211299, 8.1154], + [-12.2041, 8.1163], + [-12.2009, 8.117899], + [-12.196, 8.121799], + [-12.1926, 8.1242], + [-12.1891, 8.1301], + [-12.1884, 8.1338], + [-12.188999, 8.137699], + [-12.1911, 8.1421], + [-12.1917, 8.1447], + [-12.192299, 8.151899], + [-12.192899, 8.155399], + [-12.194699, 8.159799], + [-12.195199, 8.1622], + [-12.194799, 8.1646], + [-12.1929, 8.168999], + [-12.1917, 8.173999], + [-12.1897, 8.1792], + [-12.1897, 8.182099], + [-12.191766, 8.187511], + [-12.198749, 8.185417], + [-12.199582, 8.185417], + [-12.201249, 8.192916], + [-12.199583, 8.196249], + [-12.204583, 8.196249], + [-12.21375, 8.195417], + [-12.217917, 8.19875], + [-12.219583, 8.209583], + [-12.224582, 8.212083], + [-12.225417, 8.213749], + [-12.232916, 8.217083], + [-12.238749, 8.217083], + [-12.24125, 8.214584], + [-12.243749, 8.21375], + [-12.24625, 8.220416], + [-12.247917, 8.220417], + [-12.250417, 8.222916], + [-12.256935, 8.221467], + [-12.256562, 8.219729], + [-12.259582, 8.217916], + [-12.263749, 8.212917], + [-12.272916, 8.217083], + [-12.273749, 8.217083], + [-12.27375, 8.208089], + [-12.277647, 8.207592], + [-12.278536, 8.207176], + [-12.278872, 8.207032], + [-12.279839, 8.206625], + [-12.285519, 8.206323], + [-12.28816, 8.20633], + [-12.289792, 8.207093], + [-12.293749, 8.209397], + [-12.29375, 8.20625], + [-12.300416, 8.205416], + [-12.30125, 8.20375], + [-12.304583, 8.205417], + [-12.322082, 8.205416], + [-12.326249, 8.202083], + [-12.326249, 8.200416], + [-12.322407, 8.192731], + [-12.323709, 8.192417], + [-12.324748, 8.191666], + [-12.32763, 8.191666], + [-12.331536, 8.198431], + [-12.336336, 8.198432], + [-12.336336, 8.198433], + [-12.335417, 8.199583], + [-12.335043, 8.199617], + [-12.335195, 8.19988], + [-12.337539, 8.199879], + [-12.337917, 8.198749], + [-12.342082, 8.195417], + [-12.345584, 8.195416], + [-12.346914, 8.193115], + [-12.350728, 8.193114] + ] + ], + "type": "Polygon" + }, + "id": 414, + "properties": { + "cc:admin:id": ["23"], + "cc:oBld:total": 12, + "cc:pop:fifteen-to-twenty-four": 781.3752713516125, + "cc:pop:grid3-total": 5592.066801316591, + "cc:pop:kontur-total": 4213.810155921514, + "cc:pop:men": 2081.8298641819742, + "cc:pop:sixty-plus": 345.870054183136, + "cc:pop:total": 4389.952667937957, + "cc:pop:under-five": 702.70583828131, + "cc:pop:women": 2308.1228037559813, + "cc:pop:women-fiften-to-forty-nine": 1138.2142791857716, + "cc:pop:wp-total": 4924.962825710028, + "cc:pop:wp-total-UN": 5709.022626748603, + "cc:id": "414", + "cc:Name": "Mokorewa MCHP", + "cc:site": [-12.2484, 8.1689], + "user:parentName": "Fakunya", + "user:code": "OU_247090", + "user:orgUnitId": "sAO5hEWo4z5", + "user:level": "4", + "user:parentId": "vULnao2hV5v" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [-12.803799, 7.7891], + [-12.7993, 7.7876], + [-12.796499, 7.786299], + [-12.794, 7.7857], + [-12.793499, 7.785099], + [-12.7907, 7.784299], + [-12.7901, 7.7771], + [-12.7907, 7.776299], + [-12.7907, 7.7707], + [-12.7904, 7.770699], + [-12.790399, 7.7674], + [-12.788999, 7.7632], + [-12.7874, 7.7618], + [-12.786799, 7.760099], + [-12.785399, 7.7579], + [-12.783199, 7.7565], + [-12.7785, 7.756499], + [-12.7779, 7.7543], + [-12.7768, 7.7524], + [-12.774599, 7.7501], + [-12.7712, 7.7485], + [-12.770099, 7.748499], + [-12.7682, 7.747399], + [-12.766799, 7.7457], + [-12.763199, 7.744], + [-12.7596, 7.7443], + [-12.758799, 7.746499], + [-12.7568, 7.747599], + [-12.7549, 7.747099], + [-12.7546, 7.745399], + [-12.754599, 7.7424], + [-12.753199, 7.741799], + [-12.750399, 7.739899], + [-12.748499, 7.7362], + [-12.7443, 7.7324], + [-12.743999, 7.731], + [-12.7432, 7.730699], + [-12.742899, 7.7293], + [-12.742099, 7.728799], + [-12.739899, 7.7249], + [-12.738999, 7.724599], + [-12.737599, 7.7229], + [-12.7354, 7.7218], + [-12.735399, 7.7213], + [-12.7329, 7.720399], + [-12.730399, 7.7179], + [-12.7288, 7.717399], + [-12.727399, 7.7163], + [-12.725699, 7.717399], + [-12.724299, 7.7165], + [-12.7224, 7.716], + [-12.721499, 7.7149], + [-12.720699, 7.714899], + [-12.719599, 7.713199], + [-12.7165, 7.7104], + [-12.715999, 7.709], + [-12.715099, 7.708499], + [-12.714599, 7.7063], + [-12.713999, 7.705999], + [-12.713199, 7.704], + [-12.710699, 7.7015], + [-12.7085, 7.7013], + [-12.707599, 7.701799], + [-12.7046, 7.7018], + [-12.702899, 7.702599], + [-12.7018, 7.7026], + [-12.700999, 7.703499], + [-12.699599, 7.7035], + [-12.696, 7.704899], + [-12.694, 7.705999], + [-12.6929, 7.706], + [-12.6915, 7.706799], + [-12.6846, 7.7068], + [-12.683199, 7.7079], + [-12.6812, 7.708499], + [-12.6796, 7.708499], + [-12.679299, 7.7079], + [-12.677399, 7.707599], + [-12.676299, 7.7065], + [-12.6743, 7.706499], + [-12.671499, 7.705099], + [-12.667099, 7.703999], + [-12.6629, 7.7015], + [-12.662099, 7.7001], + [-12.659, 7.6999], + [-12.658199, 7.700699], + [-12.6568, 7.700699], + [-12.655699, 7.6985], + [-12.652099, 7.696799], + [-12.649299, 7.6963], + [-12.6454, 7.6963], + [-12.6432, 7.696], + [-12.6424, 7.696299], + [-12.641799, 7.6951], + [-12.638799, 7.694], + [-12.6354, 7.694], + [-12.633199, 7.6935], + [-12.6299, 7.6935], + [-12.629899, 7.6938], + [-12.625399, 7.693799], + [-12.6218, 7.6926], + [-12.621799, 7.6913], + [-12.6199, 7.6896], + [-12.619899, 7.688999], + [-12.617399, 7.6885], + [-12.614, 7.688499], + [-12.613999, 7.6882], + [-12.6107, 7.688199], + [-12.610699, 7.6879], + [-12.6076, 7.6876], + [-12.606799, 7.6871], + [-12.6026, 7.6868], + [-12.600999, 7.6863], + [-12.5962, 7.6863], + [-12.5937, 7.686499], + [-12.591299, 7.6849], + [-12.589, 7.6846], + [-12.5865, 7.6849], + [-12.5843, 7.686799], + [-12.5829, 7.6865], + [-12.5857, 7.6879], + [-12.590899, 7.691299], + [-12.595399, 7.694499], + [-12.597199, 7.697799], + [-12.599199, 7.699799], + [-12.5997, 7.7041], + [-12.603299, 7.711899], + [-12.606399, 7.717299], + [-12.6078, 7.7207], + [-12.610299, 7.7257], + [-12.610799, 7.731299], + [-12.610568, 7.733339], + [-12.612141, 7.733578], + [-12.613987, 7.734085], + [-12.616396, 7.73521], + [-12.617909, 7.735823], + [-12.620459, 7.735781], + [-12.622132, 7.735071], + [-12.622524, 7.734863], + [-12.622888, 7.735012], + [-12.623745, 7.735804], + [-12.624087, 7.73634], + [-12.624623, 7.738374], + [-12.625094, 7.738845], + [-12.626978, 7.739316], + [-12.627492, 7.739701], + [-12.627684, 7.740366], + [-12.627621, 7.741907], + [-12.627792, 7.742335], + [-12.628521, 7.74257], + [-12.629761, 7.742228], + [-12.630125, 7.741778], + [-12.630254, 7.741222], + [-12.629741, 7.739531], + [-12.629698, 7.738846], + [-12.630361, 7.737903], + [-12.631004, 7.737668], + [-12.631249, 7.737655], + [-12.63125, 7.739634], + [-12.631993, 7.739634], + [-12.632211, 7.739259], + [-12.632213, 7.739259], + [-12.632395, 7.742827], + [-12.632609, 7.743256], + [-12.633166, 7.743363], + [-12.63391, 7.742955], + [-12.634164, 7.743393], + [-12.634002, 7.743449], + [-12.633659, 7.743942], + [-12.63261, 7.746617], + [-12.632739, 7.747581], + [-12.633552, 7.747988], + [-12.634708, 7.747239], + [-12.635608, 7.746961], + [-12.635778, 7.747261], + [-12.635158, 7.748673], + [-12.636892, 7.751521], + [-12.636871, 7.752507], + [-12.637278, 7.754754], + [-12.638069, 7.754754], + [-12.640146, 7.752293], + [-12.639676, 7.751843], + [-12.638733, 7.751414], + [-12.63837, 7.750943], + [-12.638542, 7.750344], + [-12.638991, 7.75013], + [-12.639741, 7.750279], + [-12.64141, 7.750108], + [-12.642245, 7.749723], + [-12.644022, 7.74833], + [-12.64413, 7.747346], + [-12.644643, 7.747368], + [-12.645179, 7.747774], + [-12.646463, 7.748096], + [-12.64657, 7.748951], + [-12.646357, 7.749402], + [-12.64642, 7.749636], + [-12.647299, 7.750558], + [-12.647898, 7.750878], + [-12.648455, 7.750579], + [-12.648669, 7.750087], + [-12.648305, 7.7503], + [-12.647642, 7.750173], + [-12.646743, 7.749359], + [-12.647127, 7.748501], + [-12.647063, 7.74786], + [-12.646592, 7.747625], + [-12.645629, 7.747474], + [-12.6452, 7.747153], + [-12.644408, 7.747004], + [-12.643809, 7.747239], + [-12.643722, 7.747966], + [-12.643423, 7.748544], + [-12.642438, 7.749252], + [-12.641153, 7.749915], + [-12.639312, 7.749958], + [-12.63882, 7.74983], + [-12.638285, 7.750173], + [-12.637942, 7.750729], + [-12.63822, 7.751456], + [-12.639611, 7.752678], + [-12.638584, 7.753812], + [-12.637835, 7.754369], + [-12.637343, 7.754241], + [-12.637127, 7.751158], + [-12.635479, 7.748698], + [-12.635616, 7.748233], + [-12.636246, 7.747464], + [-12.6363, 7.746945], + [-12.636108, 7.746753], + [-12.635741, 7.746677], + [-12.635901, 7.746401], + [-12.643712, 7.746401], + [-12.644249, 7.745472], + [-12.646508, 7.745367], + [-12.646628, 7.746912], + [-12.64673, 7.747083], + [-12.648365, 7.747083], + [-12.648437, 7.746666], + [-12.647414, 7.745243], + [-12.648188, 7.745118], + [-12.649224, 7.74448], + [-12.649997, 7.74487], + [-12.650779, 7.743715], + [-12.653277, 7.742917], + [-12.653278, 7.742918], + [-12.65336, 7.74373], + [-12.651028, 7.745392], + [-12.651537, 7.746682], + [-12.655413, 7.74606], + [-12.656984, 7.742334], + [-12.658277, 7.741826], + [-12.658278, 7.741827], + [-12.657745, 7.744913], + [-12.658317, 7.744633], + [-12.659338, 7.7464], + [-12.664315, 7.746401], + [-12.664322, 7.746496], + [-12.666256, 7.746764], + [-12.66638, 7.747795], + [-12.664566, 7.749073], + [-12.666364, 7.750886], + [-12.669065, 7.752703], + [-12.670487, 7.75218], + [-12.671056, 7.753166], + [-12.671044, 7.753186], + [-12.670871, 7.753229], + [-12.670903, 7.753432], + [-12.667448, 7.759416], + [-12.668509, 7.760042], + [-12.671778, 7.761367], + [-12.668879, 7.766391], + [-12.671399, 7.770758], + [-12.677083, 7.767917], + [-12.679582, 7.767917], + [-12.681249, 7.769584], + [-12.682082, 7.775417], + [-12.679872, 7.787211], + [-12.678524, 7.788146], + [-12.68125, 7.792916], + [-12.687082, 7.792083], + [-12.689583, 7.790417], + [-12.698749, 7.790417], + [-12.698061, 7.798682], + [-12.69817, 7.798629], + [-12.698171, 7.79863], + [-12.697917, 7.800416], + [-12.694659, 7.803022], + [-12.695388, 7.803464], + [-12.695608, 7.803557], + [-12.69625, 7.802917], + [-12.701249, 7.802917], + [-12.70125, 7.807883], + [-12.702202, 7.809299], + [-12.702581, 7.810974], + [-12.70451, 7.812402], + [-12.704372, 7.813818], + [-12.703338, 7.814069], + [-12.70125, 7.813964], + [-12.701249, 7.814352], + [-12.701026, 7.814314], + [-12.70017, 7.814265], + [-12.699312, 7.814718], + [-12.698732, 7.815222], + [-12.697801, 7.816003], + [-12.697195, 7.816584], + [-12.69591, 7.816835], + [-12.694978, 7.816986], + [-12.694271, 7.817189], + [-12.694023, 7.817524], + [-12.696182, 7.817525], + [-12.696181, 7.817526], + [-12.695046, 7.817819], + [-12.694375, 7.818214], + [-12.693628, 7.818923], + [-12.69347, 7.819788], + [-12.693706, 7.820301], + [-12.69469, 7.821088], + [-12.695872, 7.821797], + [-12.695939, 7.821871], + [-12.6977, 7.8214], + [-12.700999, 7.8214], + [-12.7051, 7.8225], + [-12.7097, 7.8241], + [-12.712899, 7.824899], + [-12.7271, 7.8255], + [-12.731899, 7.8266], + [-12.738799, 7.831099], + [-12.7419, 7.8322], + [-12.747599, 7.832899], + [-12.753399, 7.8327], + [-12.764399, 7.831099], + [-12.769099, 7.8285], + [-12.772199, 7.8259], + [-12.7751, 7.822799], + [-12.7787, 7.818299], + [-12.786, 7.811199], + [-12.793099, 7.8031], + [-12.7967, 7.797699], + [-12.803799, 7.7891] + ] + ], + [ + [ + [-12.638499, 7.6585], + [-12.6354, 7.6576], + [-12.6343, 7.659], + [-12.6351, 7.661299], + [-12.6365, 7.660999], + [-12.638499, 7.659299], + [-12.638499, 7.6585] + ] + ], + [ + [ + [-12.650999, 7.6574], + [-12.6482, 7.6574], + [-12.647099, 7.6579], + [-12.6429, 7.6588], + [-12.639899, 7.660999], + [-12.6368, 7.6615], + [-12.6368, 7.662399], + [-12.645399, 7.662399], + [-12.647399, 7.661], + [-12.648799, 7.6593], + [-12.649299, 7.659299], + [-12.650999, 7.6574] + ] + ], + [ + [ + [-12.695999, 7.6746], + [-12.6926, 7.674299], + [-12.691299, 7.6726], + [-12.6874, 7.6724], + [-12.685399, 7.6732], + [-12.681199, 7.6743], + [-12.6768, 7.676499], + [-12.674899, 7.678499], + [-12.6738, 7.679], + [-12.6738, 7.680099], + [-12.677899, 7.680399], + [-12.6779, 7.6807], + [-12.683999, 7.6807], + [-12.6865, 7.6812], + [-12.691299, 7.681699], + [-12.693799, 7.681799], + [-12.694899, 7.6787], + [-12.695099, 7.6771], + [-12.695699, 7.677099], + [-12.695999, 7.6746] + ] + ] + ], + "type": "MultiPolygon" + }, + "id": 415, + "properties": { + "cc:admin:id": ["135"], + "cc:oBld:total": 0, + "cc:pop:fifteen-to-twenty-four": 950.5393494123598, + "cc:pop:grid3-total": 4777.0920959341065, + "cc:pop:kontur-total": 5525.454013637867, + "cc:pop:men": 2213.7055505109997, + "cc:pop:sixty-plus": 305.81588260120486, + "cc:pop:total": 4565.5383015294565, + "cc:pop:under-five": 797.4043110486972, + "cc:pop:women": 2351.8327510184567, + "cc:pop:women-fiften-to-forty-nine": 1112.220193649902, + "cc:pop:wp-total": 3286.5547976118783, + "cc:pop:wp-total-UN": 3808.1986094368117, + "cc:id": "415", + "cc:Name": "Mokpanabom MCHP", + "cc:site": [-12.7241, 7.7678], + "user:parentName": "Timidale", + "user:code": "OU_247048", + "user:orgUnitId": "qcYG2Id7GS8", + "user:level": "4", + "user:parentId": "AovmOHadayb" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.99476, 7.745796], + [-11.994541, 7.745417], + [-11.992916, 7.745416], + [-11.988749, 7.742083], + [-11.987916, 7.732916], + [-11.987083, 7.722917], + [-11.990417, 7.71875], + [-11.994319, 7.717969], + [-11.990855, 7.711968], + [-11.991813, 7.710307], + [-11.991054, 7.71023], + [-11.989295, 7.707183], + [-11.984583, 7.707182], + [-11.984582, 7.690417], + [-11.976326, 7.689729], + [-11.9743, 7.693236], + [-11.968995, 7.693236], + [-11.968995, 7.693235], + [-11.970871, 7.690888], + [-11.970599, 7.690417], + [-11.96375, 7.690416], + [-11.962775, 7.689442], + [-11.962883, 7.689291], + [-11.964771, 7.687798], + [-11.966098, 7.686514], + [-11.966678, 7.685796], + [-11.967378, 7.684454], + [-11.967651, 7.683679], + [-11.967864, 7.681754], + [-11.966579, 7.681855], + [-11.965732, 7.681267], + [-11.964559, 7.680859], + [-11.963219, 7.681105], + [-11.962751, 7.681007], + [-11.961685, 7.680374], + [-11.961525, 7.679819], + [-11.960455, 7.679164], + [-11.959772, 7.678993], + [-11.958178, 7.678122], + [-11.958178, 7.678121], + [-11.958426, 7.677896], + [-11.95764, 7.676535], + [-11.957172, 7.676635], + [-11.955579, 7.676476], + [-11.953917, 7.675852], + [-11.952416, 7.675068], + [-11.952134, 7.675567], + [-11.95204, 7.675592], + [-11.950417, 7.674376], + [-11.949848, 7.675204], + [-11.9473, 7.677828], + [-11.94721, 7.677929], + [-11.9472, 7.6782], + [-11.947299, 7.6865], + [-11.947, 7.689199], + [-11.946299, 7.6917], + [-11.9439, 7.696499], + [-11.942, 7.699899], + [-11.937699, 7.7053], + [-11.9357, 7.709599], + [-11.933699, 7.7131], + [-11.9319, 7.716999], + [-11.9299, 7.719899], + [-11.924899, 7.7252], + [-11.922699, 7.7281], + [-11.920299, 7.7326], + [-11.9182, 7.735399], + [-11.9145, 7.739399], + [-11.912, 7.742599], + [-11.908899, 7.7484], + [-11.9054, 7.751999], + [-11.901899, 7.754099], + [-11.8959, 7.755199], + [-11.8913, 7.7567], + [-11.886899, 7.766199], + [-11.8844, 7.768399], + [-11.883686, 7.768686], + [-11.885416, 7.770417], + [-11.887083, 7.774583], + [-11.893749, 7.777084], + [-11.896249, 7.779583], + [-11.896276, 7.779584], + [-11.89625, 7.77963], + [-11.89625, 7.781737], + [-11.899547, 7.787449], + [-11.898801, 7.788743], + [-11.905416, 7.787916], + [-11.905417, 7.782916], + [-11.90875, 7.77875], + [-11.910417, 7.777917], + [-11.919582, 7.778749], + [-11.922083, 7.77875], + [-11.924583, 7.780625], + [-11.924583, 7.780626], + [-11.924491, 7.780695], + [-11.927083, 7.784583], + [-11.936249, 7.783749], + [-11.938749, 7.780416], + [-11.937917, 7.769584], + [-11.940416, 7.76625], + [-11.955416, 7.76625], + [-11.957916, 7.769584], + [-11.958631, 7.77387], + [-11.963858, 7.77387], + [-11.967764, 7.767104], + [-11.966856, 7.765528], + [-11.971031, 7.766299], + [-11.972082, 7.766029], + [-11.972083, 7.76125], + [-11.977082, 7.75625], + [-11.980912, 7.756249], + [-11.983042, 7.752563], + [-11.990854, 7.752562], + [-11.99476, 7.745796] + ] + ], + "type": "Polygon" + }, + "id": 416, + "properties": { + "cc:admin:id": ["11"], + "cc:oBld:total": 4, + "cc:pop:fifteen-to-twenty-four": 778.1368645373294, + "cc:pop:grid3-total": 5249.981030721525, + "cc:pop:kontur-total": 4398.542353616622, + "cc:pop:men": 2010.2037227177943, + "cc:pop:sixty-plus": 325.8678541758856, + "cc:pop:total": 4214.393934802015, + "cc:pop:under-five": 650.4834466630797, + "cc:pop:women": 2204.1902120842196, + "cc:pop:women-fiften-to-forty-nine": 1019.4003991710075, + "cc:pop:wp-total": 3538.5810532659434, + "cc:pop:wp-total-UN": 4100.643125762625, + "cc:id": "416", + "cc:Name": "Mokpende MCHP", + "cc:site": [-11.9505, 7.712], + "user:parentName": "Bumpe Ngao", + "user:code": "OU_644", + "user:orgUnitId": "am6EFqHGKeU", + "user:level": "4", + "user:parentId": "BGGmAwx33dj" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.994499, 7.600399], + [-11.9903, 7.5911], + [-11.986799, 7.584499], + [-11.984599, 7.574199], + [-11.9811, 7.5607], + [-11.977299, 7.549599], + [-11.975199, 7.545899], + [-11.971599, 7.541699], + [-11.969399, 7.539899], + [-11.9658, 7.5379], + [-11.9629, 7.5371], + [-11.962083, 7.537021], + [-11.962082, 7.541249], + [-11.960417, 7.544583], + [-11.95625, 7.54375], + [-11.952083, 7.546249], + [-11.95125, 7.54625], + [-11.952916, 7.552083], + [-11.950417, 7.552084], + [-11.947083, 7.556249], + [-11.944582, 7.55375], + [-11.939583, 7.552917], + [-11.938753, 7.553331], + [-11.938699, 7.55327], + [-11.935417, 7.554583], + [-11.934582, 7.55375], + [-11.930417, 7.554583], + [-11.929582, 7.557084], + [-11.924583, 7.559584], + [-11.922916, 7.56375], + [-11.918749, 7.564583], + [-11.91125, 7.560417], + [-11.909583, 7.560417], + [-11.909582, 7.562084], + [-11.907083, 7.564583], + [-11.90375, 7.565417], + [-11.902916, 7.567916], + [-11.898749, 7.567917], + [-11.88875, 7.56875], + [-11.88875, 7.576249], + [-11.891249, 7.578749], + [-11.891249, 7.579583], + [-11.88875, 7.57875], + [-11.882082, 7.586249], + [-11.877917, 7.586249], + [-11.876249, 7.58375], + [-11.872083, 7.585417], + [-11.874582, 7.590416], + [-11.872083, 7.594583], + [-11.869582, 7.592084], + [-11.867916, 7.59125], + [-11.864582, 7.592916], + [-11.86125, 7.592084], + [-11.858749, 7.599583], + [-11.85375, 7.599584], + [-11.853749, 7.600417], + [-11.851249, 7.601249], + [-11.844582, 7.60125], + [-11.842083, 7.602084], + [-11.841249, 7.606249], + [-11.836249, 7.60625], + [-11.830417, 7.607916], + [-11.829654, 7.608678], + [-11.830296, 7.609229], + [-11.830418, 7.609341], + [-11.834582, 7.614186], + [-11.836119, 7.616362], + [-11.837454, 7.617107], + [-11.838163, 7.617277], + [-11.841249, 7.616833], + [-11.841249, 7.617917], + [-11.840563, 7.624102], + [-11.867199, 7.624299], + [-11.8713, 7.6251], + [-11.8771, 7.6274], + [-11.881399, 7.627999], + [-11.8862, 7.628099], + [-11.893499, 7.6279], + [-11.8979, 7.626999], + [-11.901999, 7.6249], + [-11.905199, 7.6236], + [-11.909399, 7.6212], + [-11.9126, 7.619799], + [-11.9169, 7.617399], + [-11.92, 7.616099], + [-11.924299, 7.6137], + [-11.9275, 7.612299], + [-11.931799, 7.61], + [-11.934999, 7.6086], + [-11.939199, 7.6062], + [-11.9424, 7.604899], + [-11.946699, 7.6025], + [-11.9499, 7.601099], + [-11.954099, 7.5987], + [-11.961299, 7.5961], + [-11.968599, 7.598699], + [-11.9721, 7.6007], + [-11.9755, 7.6017], + [-11.981, 7.601999], + [-11.986599, 7.6017], + [-11.994499, 7.600399] + ] + ], + "type": "Polygon" + }, + "id": 417, + "properties": { + "cc:admin:id": ["4"], + "cc:oBld:total": 7, + "cc:pop:fifteen-to-twenty-four": 2606.4951507173487, + "cc:pop:grid3-total": 5142.945725617078, + "cc:pop:kontur-total": 14771.854603591677, + "cc:pop:men": 7042.130839591438, + "cc:pop:sixty-plus": 1012.4178310071422, + "cc:pop:total": 14544.650442234928, + "cc:pop:under-five": 2446.9273005591735, + "cc:pop:women": 7502.519602643493, + "cc:pop:women-fiften-to-forty-nine": 3552.0942945182223, + "cc:pop:wp-total": 11589.088675114413, + "cc:pop:wp-total-UN": 13437.14600089609, + "cc:id": "417", + "cc:Name": "Momajo MCHP", + "cc:site": [-11.9379, 7.5753], + "user:parentName": "Bargbo", + "user:code": "OU_625", + "user:orgUnitId": "fA43H8Ds0Ja", + "user:level": "4", + "user:parentId": "zFDYIgyGmXG" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.833899, 8.299599], + [-11.832499, 8.296699], + [-11.829799, 8.293599], + [-11.8118, 8.2766], + [-11.806699, 8.271399], + [-11.804199, 8.268299], + [-11.8025, 8.2647], + [-11.802408, 8.2642], + [-11.797917, 8.262917], + [-11.795416, 8.273749], + [-11.78625, 8.269584], + [-11.787082, 8.267084], + [-11.77625, 8.268749], + [-11.774582, 8.26625], + [-11.76625, 8.264584], + [-11.763749, 8.269583], + [-11.755416, 8.269583], + [-11.75125, 8.26625], + [-11.750416, 8.26375], + [-11.74875, 8.262917], + [-11.743749, 8.267916], + [-11.734583, 8.267916], + [-11.730416, 8.26375], + [-11.726249, 8.263749], + [-11.716249, 8.252917], + [-11.712917, 8.252916], + [-11.712082, 8.24875], + [-11.709582, 8.24625], + [-11.707917, 8.246249], + [-11.707082, 8.245416], + [-11.706727, 8.244228], + [-11.706888, 8.243946], + [-11.706374, 8.243055], + [-11.704582, 8.237084], + [-11.697083, 8.241249], + [-11.69405, 8.24125], + [-11.694221, 8.241487], + [-11.694221, 8.241489], + [-11.69125, 8.242084], + [-11.690417, 8.246249], + [-11.68875, 8.247917], + [-11.688749, 8.250417], + [-11.682917, 8.252916], + [-11.68125, 8.252917], + [-11.680417, 8.258749], + [-11.68125, 8.25875], + [-11.682082, 8.265416], + [-11.679582, 8.265416], + [-11.676249, 8.262917], + [-11.67125, 8.265416], + [-11.680416, 8.269584], + [-11.678749, 8.27125], + [-11.669583, 8.272917], + [-11.669583, 8.274583], + [-11.672083, 8.27625], + [-11.673749, 8.28125], + [-11.671249, 8.283749], + [-11.667083, 8.282084], + [-11.662083, 8.287084], + [-11.662083, 8.287916], + [-11.669583, 8.28875], + [-11.670416, 8.292083], + [-11.670416, 8.294583], + [-11.667917, 8.297917], + [-11.672082, 8.304583], + [-11.671249, 8.308749], + [-11.65875, 8.312917], + [-11.657916, 8.315416], + [-11.652082, 8.315417], + [-11.64375, 8.31625], + [-11.640417, 8.320417], + [-11.640417, 8.325416], + [-11.642083, 8.32875], + [-11.644582, 8.335416], + [-11.646249, 8.337084], + [-11.646088, 8.339189], + [-11.648309, 8.33919], + [-11.647917, 8.339584], + [-11.647917, 8.347916], + [-11.653749, 8.347084], + [-11.658524, 8.345038], + [-11.656383, 8.348749], + [-11.659765, 8.354607], + [-11.667916, 8.35375], + [-11.667958, 8.353339], + [-11.675546, 8.353338], + [-11.678056, 8.348993], + [-11.68375, 8.350417], + [-11.687082, 8.350416], + [-11.68875, 8.349584], + [-11.698749, 8.349584], + [-11.699583, 8.352916], + [-11.70125, 8.352917], + [-11.706249, 8.356249], + [-11.70375, 8.362083], + [-11.707917, 8.366249], + [-11.70875, 8.366249], + [-11.717082, 8.36375], + [-11.722083, 8.368749], + [-11.725416, 8.369583], + [-11.727082, 8.370416], + [-11.724583, 8.381249], + [-11.729583, 8.38125], + [-11.730416, 8.38375], + [-11.727083, 8.389583], + [-11.733749, 8.395416], + [-11.73375, 8.397083], + [-11.734583, 8.397084], + [-11.73625, 8.409583], + [-11.739582, 8.409584], + [-11.740417, 8.411249], + [-11.746249, 8.413749], + [-11.749583, 8.409584], + [-11.752916, 8.411249], + [-11.754583, 8.413749], + [-11.757091, 8.415631], + [-11.7574, 8.415199], + [-11.759299, 8.4108], + [-11.762499, 8.4008], + [-11.764799, 8.3953], + [-11.7671, 8.391999], + [-11.770099, 8.389], + [-11.7749, 8.3864], + [-11.783899, 8.3846], + [-11.7885, 8.382899], + [-11.795199, 8.3811], + [-11.8028, 8.377699], + [-11.8113, 8.373099], + [-11.816599, 8.3686], + [-11.8211, 8.363399], + [-11.823, 8.360099], + [-11.826199, 8.351], + [-11.8204, 8.3437], + [-11.817899, 8.339699], + [-11.816, 8.3353], + [-11.8147, 8.3309], + [-11.8144, 8.327499], + [-11.8159, 8.3219], + [-11.8178, 8.318899], + [-11.8206, 8.316399], + [-11.8268, 8.312599], + [-11.831799, 8.307899], + [-11.833799, 8.303499], + [-11.833899, 8.299599] + ] + ], + "type": "Polygon" + }, + "id": 418, + "properties": { + "cc:admin:id": ["141"], + "cc:oBld:total": 0, + "cc:pop:fifteen-to-twenty-four": 1926.9302815437825, + "cc:pop:grid3-total": 7880.920438347356, + "cc:pop:kontur-total": 10514.62031098852, + "cc:pop:men": 5206.303993919756, + "cc:pop:sixty-plus": 815.5086752818731, + "cc:pop:total": 10633.604165806499, + "cc:pop:under-five": 1742.201307692304, + "cc:pop:women": 5427.300171886743, + "cc:pop:women-fiften-to-forty-nine": 2627.2927154521017, + "cc:pop:wp-total": 8754.420190942601, + "cc:pop:wp-total-UN": 10149.045051658279, + "cc:id": "418", + "cc:Name": "Mongere CHC", + "cc:site": [-11.7347, 8.3228], + "user:parentName": "Valunia", + "user:code": "OU_1122", + "user:orgUnitId": "PC3Ag91n82e", + "user:level": "4", + "user:parentId": "npWGUj37qDe" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.319595, 7.798232], + [-12.317562, 7.795599], + [-12.316889, 7.794421], + [-12.316168, 7.79125], + [-12.315417, 7.791249], + [-12.315218, 7.790972], + [-12.315249, 7.790947], + [-12.315627, 7.790255], + [-12.315633, 7.789699], + [-12.315027, 7.789899], + [-12.314687, 7.789721], + [-12.314392, 7.788573], + [-12.314183, 7.788346], + [-12.313824, 7.788398], + [-12.31389, 7.789057], + [-12.314035, 7.789314], + [-12.314034, 7.789315], + [-12.311878, 7.786297], + [-12.310873, 7.786409], + [-12.310763, 7.786443], + [-12.308508, 7.787318], + [-12.306403, 7.788096], + [-12.303817, 7.789058], + [-12.303216, 7.787376], + [-12.302795, 7.786947], + [-12.302322, 7.786879], + [-12.301089, 7.787465], + [-12.300378, 7.787285], + [-12.298137, 7.78725], + [-12.297336, 7.787315], + [-12.297256, 7.786782], + [-12.297198, 7.785562], + [-12.296379, 7.785632], + [-12.296426, 7.786398], + [-12.296447, 7.78665], + [-12.296424, 7.786732], + [-12.296417, 7.787342], + [-12.296456, 7.787636], + [-12.296683, 7.788705], + [-12.296722, 7.788934], + [-12.296784, 7.789701], + [-12.29679, 7.789825], + [-12.296813, 7.79039], + [-12.296809, 7.790854], + [-12.295588, 7.790658], + [-12.29455, 7.790983], + [-12.294285, 7.790542], + [-12.293727, 7.790079], + [-12.293031, 7.789968], + [-12.292746, 7.7906], + [-12.293025, 7.791302], + [-12.293455, 7.79201], + [-12.292463, 7.793143], + [-12.291735, 7.793741], + [-12.298099, 7.795099], + [-12.3028, 7.7965], + [-12.316499, 7.797599], + [-12.319595, 7.798232] + ] + ], + "type": "Polygon" + }, + "id": 419, + "properties": { + "cc:admin:id": ["39"], + "cc:oBld:total": 2, + "cc:pop:fifteen-to-twenty-four": 444.49946090302984, + "cc:pop:grid3-total": 5691.277599930893, + "cc:pop:kontur-total": 2223.1412104147544, + "cc:pop:men": 1231.5261203136688, + "cc:pop:sixty-plus": 176.21574071382068, + "cc:pop:total": 2484.371843404118, + "cc:pop:under-five": 423.64963017985883, + "cc:pop:women": 1252.8457230904498, + "cc:pop:women-fiften-to-forty-nine": 599.9750167373165, + "cc:pop:wp-total": 1735.8794131030036, + "cc:pop:wp-total-UN": 2018.0913732695167, + "cc:id": "419", + "cc:Name": "Moriba Town CHC", + "cc:site": [-12.2977, 7.7936], + "user:parentName": "Imperi", + "user:code": "OU_197417", + "user:orgUnitId": "xMn4Wki9doK", + "user:level": "4", + "user:parentId": "XEyIRFd9pct" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.508755, 7.887004], + [-12.508636, 7.885803], + [-12.507895, 7.883842], + [-12.506851, 7.881773], + [-12.506262, 7.878396], + [-12.505325, 7.87611], + [-12.504366, 7.875195], + [-12.502494, 7.875151], + [-12.501472, 7.875438], + [-12.501019, 7.874657], + [-12.497996, 7.874657], + [-12.496376, 7.874879], + [-12.493722, 7.874912], + [-12.49314, 7.874774], + [-12.492298, 7.876231], + [-12.485796, 7.873739], + [-12.48515, 7.87316], + [-12.484333, 7.871765], + [-12.483992, 7.87071], + [-12.48389, 7.867892], + [-12.483891, 7.867891], + [-12.485628, 7.86789], + [-12.485722, 7.861911], + [-12.485552, 7.860175], + [-12.485076, 7.859595], + [-12.484293, 7.858438], + [-12.483239, 7.856431], + [-12.482399, 7.854359], + [-12.481488, 7.854358], + [-12.479187, 7.850372], + [-12.478696, 7.849001], + [-12.477803, 7.845994], + [-12.476939, 7.84485], + [-12.474844, 7.843812], + [-12.473072, 7.841544], + [-12.470978, 7.839103], + [-12.470308, 7.837376], + [-12.470438, 7.83474], + [-12.471345, 7.833141], + [-12.473915, 7.831349], + [-12.476119, 7.830203], + [-12.480289, 7.828971], + [-12.484565, 7.827784], + [-12.486769, 7.826941], + [-12.487892, 7.826077], + [-12.488259, 7.825105], + [-12.487784, 7.823788], + [-12.486207, 7.822361], + [-12.480763, 7.819876], + [-12.474411, 7.817673], + [-12.470545, 7.815923], + [-12.464475, 7.81264], + [-12.461235, 7.811085], + [-12.458814, 7.810155], + [-12.455806, 7.809934], + [-12.452273, 7.803818], + [-12.449212, 7.803817], + [-12.448866, 7.803122], + [-12.448537, 7.800288], + [-12.448932, 7.797519], + [-12.449092, 7.797146], + [-12.448599, 7.7978], + [-12.4472, 7.8016], + [-12.4476, 7.805599], + [-12.449599, 7.809599], + [-12.450099, 7.811999], + [-12.449599, 7.8144], + [-12.4474, 7.816699], + [-12.443999, 7.8178], + [-12.437399, 7.8186], + [-12.4298, 7.821099], + [-12.4278, 7.821299], + [-12.422305, 7.8215], + [-12.4145, 7.8213], + [-12.411299, 7.820899], + [-12.4053, 7.8198], + [-12.4009, 7.822299], + [-12.398399, 7.8249], + [-12.395899, 7.8283], + [-12.393999, 7.8322], + [-12.3915, 7.836499], + [-12.390199, 7.8399], + [-12.3883, 7.843499], + [-12.387399, 7.8466], + [-12.3872, 7.8513], + [-12.3872, 7.856799], + [-12.3878, 7.860899], + [-12.3904, 7.8647], + [-12.3954, 7.8675], + [-12.3991, 7.8693], + [-12.4031, 7.8709], + [-12.408799, 7.874499], + [-12.410199, 7.8777], + [-12.4102, 7.881999], + [-12.409199, 7.8855], + [-12.405299, 7.893099], + [-12.4005, 7.897999], + [-12.399299, 7.8988], + [-12.3958, 7.900399], + [-12.3915, 7.902799], + [-12.388399, 7.9042], + [-12.3844, 7.906299], + [-12.380999, 7.906899], + [-12.3771, 7.906399], + [-12.3688, 7.9022], + [-12.3637, 7.8982], + [-12.3613, 7.8969], + [-12.358699, 7.896199], + [-12.3537, 7.895699], + [-12.3521, 7.8949], + [-12.351937, 7.894671], + [-12.35125, 7.902916], + [-12.354581, 7.907082], + [-12.35458, 7.907083], + [-12.350417, 7.90625], + [-12.349571, 7.909067], + [-12.352213, 7.909068], + [-12.35612, 7.915833], + [-12.360417, 7.915835], + [-12.360416, 7.92125], + [-12.357083, 7.925416], + [-12.356639, 7.925417], + [-12.354442, 7.929222], + [-12.358347, 7.935988], + [-12.354829, 7.942083], + [-12.35375, 7.942084], + [-12.352235, 7.950413], + [-12.357627, 7.950414], + [-12.360307, 7.955054], + [-12.36125, 7.954583], + [-12.367082, 7.944584], + [-12.368766, 7.945003], + [-12.370066, 7.942753], + [-12.36961, 7.941964], + [-12.369611, 7.941963], + [-12.379582, 7.941249], + [-12.382916, 7.937084], + [-12.383136, 7.935988], + [-12.387082, 7.935987], + [-12.387084, 7.935417], + [-12.399878, 7.935417], + [-12.399878, 7.935418], + [-12.397744, 7.939769], + [-12.402916, 7.940416], + [-12.40375, 7.935417], + [-12.407082, 7.937083], + [-12.407917, 7.937084], + [-12.409583, 7.938749], + [-12.413749, 7.938749], + [-12.416249, 7.937084], + [-12.417916, 7.937084], + [-12.419583, 7.942916], + [-12.426249, 7.945417], + [-12.428749, 7.947916], + [-12.42875, 7.949583], + [-12.432917, 7.94625], + [-12.435416, 7.94625], + [-12.43625, 7.947084], + [-12.444582, 7.948749], + [-12.44625, 7.94625], + [-12.452916, 7.947083], + [-12.455416, 7.940418], + [-12.455417, 7.940418], + [-12.457083, 7.942916], + [-12.459583, 7.94375], + [-12.460416, 7.947916], + [-12.460417, 7.94875], + [-12.461823, 7.954373], + [-12.462397, 7.953133], + [-12.464178, 7.949102], + [-12.464957, 7.949107], + [-12.465126, 7.949069], + [-12.46533, 7.949004], + [-12.46569, 7.948933], + [-12.466168, 7.948812], + [-12.465357, 7.948387], + [-12.464738, 7.948642], + [-12.464337, 7.948629], + [-12.464626, 7.947758], + [-12.464888, 7.947191], + [-12.465033, 7.944451], + [-12.472917, 7.948749], + [-12.475416, 7.948749], + [-12.475417, 7.939857], + [-12.476374, 7.939035], + [-12.480275, 7.937901], + [-12.482916, 7.93816], + [-12.482917, 7.92625], + [-12.490416, 7.925416], + [-12.489583, 7.922084], + [-12.489583, 7.920417], + [-12.489698, 7.920071], + [-12.489762, 7.920123], + [-12.489145, 7.918267], + [-12.490924, 7.917172], + [-12.492741, 7.915639], + [-12.494034, 7.915388], + [-12.495073, 7.914494], + [-12.495077, 7.913979], + [-12.495593, 7.913982], + [-12.496252, 7.911925], + [-12.496262, 7.910122], + [-12.496017, 7.908061], + [-12.495763, 7.907287], + [-12.49566, 7.907182], + [-12.496249, 7.907083], + [-12.49625, 7.902917], + [-12.497916, 7.900416], + [-12.497917, 7.897467], + [-12.49854, 7.896486], + [-12.49983, 7.896621], + [-12.500089, 7.896494], + [-12.499964, 7.895979], + [-12.499708, 7.895719], + [-12.49984, 7.895206], + [-12.501392, 7.894699], + [-12.501656, 7.893671], + [-12.502173, 7.893673], + [-12.50231, 7.892644], + [-12.502833, 7.891359], + [-12.50256, 7.890456], + [-12.507241, 7.889857], + [-12.502561, 7.890448], + [-12.50256, 7.890446], + [-12.508755, 7.887004] + ] + ], + "type": "Polygon" + }, + "id": 420, + "properties": { + "cc:admin:id": ["1"], + "cc:oBld:total": 0, + "cc:pop:fifteen-to-twenty-four": 1195.6247291285677, + "cc:pop:grid3-total": 6503.705692729369, + "cc:pop:kontur-total": 6022.712684351944, + "cc:pop:men": 2908.9347090236515, + "cc:pop:sixty-plus": 370.64883477968425, + "cc:pop:total": 6305.390674397342, + "cc:pop:under-five": 1128.0745649638345, + "cc:pop:women": 3396.455965373688, + "cc:pop:women-fiften-to-forty-nine": 1561.427953562368, + "cc:pop:wp-total": 5199.287404211981, + "cc:pop:wp-total-UN": 6012.556137404347, + "cc:id": "420", + "cc:Name": "Mosenegor MCHP", + "cc:site": [-12.4188, 7.8704], + "user:parentName": "Bagruwa", + "user:code": "OU_247051", + "user:orgUnitId": "HHz1kAG1LKn", + "user:level": "4", + "user:parentId": "jPidqyo7cpF" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.327916, 7.852084], + [-12.323749, 7.84375], + [-12.319583, 7.844583], + [-12.319582, 7.842917], + [-12.317903, 7.841572], + [-12.318893, 7.839858], + [-12.322567, 7.839857], + [-12.322082, 7.837917], + [-12.321249, 7.837916], + [-12.31625, 7.835416], + [-12.318749, 7.827083], + [-12.317917, 7.822917], + [-12.315417, 7.822083], + [-12.315417, 7.820417], + [-12.316249, 7.818749], + [-12.316249, 7.816722], + [-12.31252, 7.817296], + [-12.312498, 7.817195], + [-12.313205, 7.816411], + [-12.318539, 7.810555], + [-12.317082, 7.809583], + [-12.31375, 7.80375], + [-12.316046, 7.802371], + [-12.313998, 7.800631], + [-12.313493, 7.800538], + [-12.312954, 7.797315], + [-12.302799, 7.796499], + [-12.298099, 7.795099], + [-12.2906, 7.7935], + [-12.287299, 7.791899], + [-12.284499, 7.787699], + [-12.283499, 7.783599], + [-12.282699, 7.773999], + [-12.280599, 7.765799], + [-12.2802, 7.7618], + [-12.280499, 7.7579], + [-12.282699, 7.747399], + [-12.2817, 7.7423], + [-12.278699, 7.7386], + [-12.2695, 7.7337], + [-12.269299, 7.7339], + [-12.260599, 7.7416], + [-12.247, 7.755099], + [-12.2437, 7.757499], + [-12.240599, 7.7589], + [-12.2364, 7.761299], + [-12.233199, 7.7626], + [-12.2288, 7.764799], + [-12.222799, 7.7662], + [-12.2177, 7.768699], + [-12.215368, 7.769647], + [-12.215504, 7.770075], + [-12.215376, 7.771119], + [-12.212073, 7.777553], + [-12.210677, 7.781239], + [-12.208142, 7.784409], + [-12.207766, 7.786357], + [-12.208105, 7.788369], + [-12.207773, 7.788694], + [-12.206856, 7.789106], + [-12.203738, 7.78972], + [-12.202062, 7.788969], + [-12.201152, 7.788881], + [-12.199578, 7.789005], + [-12.198639, 7.789299], + [-12.197869, 7.790082], + [-12.195466, 7.793254], + [-12.195013, 7.793903], + [-12.194867, 7.794465], + [-12.195209, 7.796408], + [-12.196728, 7.799644], + [-12.196802, 7.800461], + [-12.196567, 7.802915], + [-12.196728, 7.804858], + [-12.197522, 7.80643], + [-12.198272, 7.807195], + [-12.201274, 7.808641], + [-12.202346, 7.809947], + [-12.203268, 7.811582], + [-12.206816, 7.81939], + [-12.206956, 7.82177], + [-12.206813, 7.824447], + [-12.206505, 7.825551], + [-12.206493, 7.825584], + [-12.205658, 7.826794], + [-12.199957, 7.828491], + [-12.193367, 7.830715], + [-12.192578, 7.831241], + [-12.192034, 7.831967], + [-12.191609, 7.833602], + [-12.191686, 7.83499], + [-12.19242, 7.836822], + [-12.19229, 7.837992], + [-12.192153, 7.838205], + [-12.194092, 7.838529], + [-12.194126, 7.83934], + [-12.193758, 7.839692], + [-12.194232, 7.840513], + [-12.202045, 7.840514], + [-12.202781, 7.84179], + [-12.20125, 7.847916], + [-12.20375, 7.847917], + [-12.207916, 7.850416], + [-12.20875, 7.851249], + [-12.213749, 7.852917], + [-12.220416, 7.859583], + [-12.223749, 7.856249], + [-12.22375, 7.854392], + [-12.225657, 7.854676], + [-12.225826, 7.854643], + [-12.229388, 7.86081], + [-12.226638, 7.865574], + [-12.235417, 7.86625], + [-12.238749, 7.870417], + [-12.239583, 7.874583], + [-12.242917, 7.872084], + [-12.247917, 7.872084], + [-12.253969, 7.87965], + [-12.2538, 7.87987], + [-12.253189, 7.880292], + [-12.251955, 7.880787], + [-12.252499, 7.881683], + [-12.252562, 7.882164], + [-12.25322, 7.882335], + [-12.253655, 7.882092], + [-12.254582, 7.881903], + [-12.254583, 7.890416], + [-12.25625, 7.892083], + [-12.266249, 7.892083], + [-12.26873, 7.890098], + [-12.269445, 7.889528], + [-12.272017, 7.893983], + [-12.269747, 7.897916], + [-12.262917, 7.897917], + [-12.258749, 7.90125], + [-12.258034, 7.906973], + [-12.259881, 7.907593], + [-12.261555, 7.908594], + [-12.262465, 7.909476], + [-12.264689, 7.911052], + [-12.268903, 7.910584], + [-12.2695, 7.908199], + [-12.2729, 7.905499], + [-12.2766, 7.902199], + [-12.280599, 7.8979], + [-12.2841, 7.8933], + [-12.2913, 7.8892], + [-12.299799, 7.888], + [-12.3077, 7.885199], + [-12.311899, 7.8849], + [-12.316499, 7.886], + [-12.321548, 7.889645], + [-12.320417, 7.886249], + [-12.322082, 7.880417], + [-12.322916, 7.877917], + [-12.326249, 7.876249], + [-12.325416, 7.874584], + [-12.32375, 7.872916], + [-12.32375, 7.864584], + [-12.322917, 7.863749], + [-12.324583, 7.862083], + [-12.327916, 7.852084] + ] + ], + "type": "Polygon" + }, + "id": 421, + "properties": { + "cc:admin:id": ["140"], + "cc:oBld:total": 9, + "cc:pop:fifteen-to-twenty-four": 2174.3494377845277, + "cc:pop:grid3-total": 11044.214912989723, + "cc:pop:kontur-total": 11585.064970029076, + "cc:pop:men": 5622.691712491445, + "cc:pop:sixty-plus": 828.9076803378787, + "cc:pop:total": 11876.350436354955, + "cc:pop:under-five": 2026.0823392285674, + "cc:pop:women": 6253.658723863516, + "cc:pop:women-fiften-to-forty-nine": 2991.1763494818733, + "cc:pop:wp-total": 10075.936221948548, + "cc:pop:wp-total-UN": 11682.912811622089, + "cc:id": "421", + "cc:Name": "Mosenessie Junction MCHP", + "cc:site": [-12.2689, 7.8374], + "user:parentName": "Lower Banta", + "user:code": "OU_247014", + "user:orgUnitId": "XmfqaErvQ2T", + "user:level": "4", + "user:parentId": "W5fN3G6y1VI" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.036249, 8.63625], + [-11.029583, 8.629583], + [-11.029583, 8.624584], + [-11.030417, 8.624583], + [-11.032082, 8.615417], + [-11.030417, 8.614584], + [-11.030416, 8.6132], + [-11.030317, 8.613193], + [-11.030163, 8.613308], + [-11.030161, 8.613308], + [-11.029987, 8.612433], + [-11.029945, 8.612838], + [-11.029634, 8.613101], + [-11.029345, 8.612467], + [-11.028363, 8.611729], + [-11.028192, 8.611272], + [-11.027554, 8.610652], + [-11.028139, 8.609254], + [-11.027931, 8.608599], + [-11.028084, 8.607173], + [-11.028488, 8.60698], + [-11.028604, 8.606976], + [-11.028642, 8.606783], + [-11.026559, 8.607105], + [-11.024471, 8.607895], + [-11.023709, 8.608254], + [-11.023391, 8.607934], + [-11.02316, 8.606954], + [-11.023213, 8.606514], + [-11.023663, 8.60317], + [-11.024158, 8.602696], + [-11.024712, 8.602478], + [-11.020417, 8.60125], + [-11.020226, 8.601438], + [-11.020112, 8.601284], + [-11.019019, 8.600374], + [-11.018115, 8.599722], + [-11.016001, 8.599497], + [-11.015439, 8.599215], + [-11.014929, 8.599227], + [-11.014583, 8.598982], + [-11.014037, 8.598811], + [-11.012555, 8.597237], + [-11.011939, 8.597325], + [-11.010595, 8.596801], + [-11.010066, 8.596116], + [-11.009936, 8.595677], + [-11.009736, 8.596201], + [-11.009282, 8.595999], + [-11.0094, 8.601699], + [-11.0122, 8.607], + [-11.015999, 8.614799], + [-11.016599, 8.618299], + [-11.0161, 8.622099], + [-11.0142, 8.626399], + [-11.0137, 8.629], + [-11.014, 8.632499], + [-11.016199, 8.637699], + [-11.016999, 8.641099], + [-11.0164, 8.644899], + [-11.020599, 8.647299], + [-11.0245, 8.6491], + [-11.028799, 8.651499], + [-11.032099, 8.652899], + [-11.033728, 8.65377], + [-11.03375, 8.653749], + [-11.034366, 8.649434], + [-11.033992, 8.64945], + [-11.033991, 8.649449], + [-11.035416, 8.64375], + [-11.034583, 8.642916], + [-11.036249, 8.63625] + ] + ], + "type": "Polygon" + }, + "id": 422, + "properties": { + "cc:admin:id": ["100"], + "cc:oBld:total": 587, + "cc:pop:fifteen-to-twenty-four": 558.7583998834218, + "cc:pop:grid3-total": 3317.032265509479, + "cc:pop:kontur-total": 3377.8855137059077, + "cc:pop:men": 1654.8837083628969, + "cc:pop:sixty-plus": 177.3606671337483, + "cc:pop:total": 3008.5260921849595, + "cc:pop:under-five": 477.5691792680622, + "cc:pop:women": 1353.6423838220624, + "cc:pop:women-fiften-to-forty-nine": 674.3813700077195, + "cc:pop:wp-total": 2062.3153072545183, + "cc:pop:wp-total-UN": 2391.352625587104, + "cc:id": "422", + "cc:Name": "Motema CHP", + "cc:site": [-11.0224, 8.6117], + "user:parentName": "Nimikoro", + "user:code": "OU_233399", + "user:orgUnitId": "g3O1pGAfgK1", + "user:level": "4", + "user:parentId": "DmaLM8WYmWv" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.863924, 8.329136], + [-12.858163, 8.327407], + [-12.858057, 8.327916], + [-12.857916, 8.327916], + [-12.855417, 8.325417], + [-12.855416, 8.32375], + [-12.852917, 8.322084], + [-12.851249, 8.31875], + [-12.850416, 8.318749], + [-12.849583, 8.307917], + [-12.852917, 8.30375], + [-12.857082, 8.302916], + [-12.857082, 8.299584], + [-12.852916, 8.302916], + [-12.842083, 8.302084], + [-12.842679, 8.310444], + [-12.840871, 8.309363], + [-12.839767, 8.309018], + [-12.838644, 8.308439], + [-12.8363, 8.307974], + [-12.835679, 8.307989], + [-12.835678, 8.307988], + [-12.837524, 8.306305], + [-12.839488, 8.303976], + [-12.839852, 8.303637], + [-12.840469, 8.303385], + [-12.841655, 8.301656], + [-12.839583, 8.299584], + [-12.837916, 8.29875], + [-12.825416, 8.298749], + [-12.820417, 8.29125], + [-12.8208, 8.288172], + [-12.820177, 8.287092], + [-12.812365, 8.287091], + [-12.808458, 8.280326], + [-12.804833, 8.280325], + [-12.804702, 8.278621], + [-12.806689, 8.277177], + [-12.805416, 8.272084], + [-12.802082, 8.269583], + [-12.800417, 8.264584], + [-12.801547, 8.260623], + [-12.801428, 8.260417], + [-12.793616, 8.260416], + [-12.789709, 8.253651], + [-12.782183, 8.253651], + [-12.781249, 8.254583], + [-12.780513, 8.254829], + [-12.77977, 8.25354], + [-12.782016, 8.24965], + [-12.781249, 8.250417], + [-12.772082, 8.250416], + [-12.770524, 8.246361], + [-12.775973, 8.24636], + [-12.779879, 8.239595], + [-12.779157, 8.238344], + [-12.777742, 8.2394], + [-12.777273, 8.238593], + [-12.776499, 8.237898], + [-12.773587, 8.234188], + [-12.772917, 8.232829], + [-12.772916, 8.23125], + [-12.771478, 8.229573], + [-12.765292, 8.229573], + [-12.761385, 8.236338], + [-12.754364, 8.236338], + [-12.75375, 8.235416], + [-12.754583, 8.222917], + [-12.757546, 8.220546], + [-12.755621, 8.220546], + [-12.752303, 8.226293], + [-12.752916, 8.22875], + [-12.743542, 8.230192], + [-12.743712, 8.230353], + [-12.743945, 8.230781], + [-12.74315, 8.232672], + [-12.742782, 8.232741], + [-12.741357, 8.233366], + [-12.731546, 8.234305], + [-12.731199, 8.2349], + [-12.7292, 8.237199], + [-12.7263, 8.2396], + [-12.725399, 8.2415], + [-12.724399, 8.2455], + [-12.721799, 8.2511], + [-12.719999, 8.254299], + [-12.717399, 8.256299], + [-12.714799, 8.2569], + [-12.7067, 8.257199], + [-12.7032, 8.257899], + [-12.6988, 8.260099], + [-12.695699, 8.2614], + [-12.691299, 8.2636], + [-12.688699, 8.2642], + [-12.6834, 8.264699], + [-12.6808, 8.265399], + [-12.676299, 8.2673], + [-12.669599, 8.269], + [-12.665099, 8.2711], + [-12.662599, 8.2716], + [-12.6572, 8.272099], + [-12.6551, 8.272699], + [-12.653099, 8.2737], + [-12.648799, 8.2771], + [-12.6456, 8.278799], + [-12.639799, 8.2803], + [-12.633999, 8.282699], + [-12.628199, 8.2832], + [-12.6226, 8.2832], + [-12.6185, 8.282699], + [-12.6128, 8.2801], + [-12.6096, 8.2788], + [-12.6053, 8.2764], + [-12.6021, 8.274999], + [-12.5952, 8.269], + [-12.593699, 8.2737], + [-12.59, 8.279199], + [-12.5873, 8.281799], + [-12.582699, 8.2845], + [-12.577399, 8.2881], + [-12.5702, 8.2924], + [-12.57, 8.299799], + [-12.5696, 8.304099], + [-12.567099, 8.314], + [-12.567, 8.3193], + [-12.5685, 8.3254], + [-12.5703, 8.3288], + [-12.574099, 8.333399], + [-12.5786, 8.3375], + [-12.5833, 8.3406], + [-12.589899, 8.343699], + [-12.5964, 8.3459], + [-12.605, 8.3508], + [-12.616299, 8.354499], + [-12.626099, 8.355999], + [-12.629999, 8.3572], + [-12.6329, 8.3593], + [-12.636399, 8.363499], + [-12.639, 8.3659], + [-12.646399, 8.370999], + [-12.6502, 8.3731], + [-12.6543, 8.3741], + [-12.658499, 8.374399], + [-12.6644, 8.374199], + [-12.671899, 8.373499], + [-12.6749, 8.371499], + [-12.6846, 8.366899], + [-12.689999, 8.3645], + [-12.6938, 8.3636], + [-12.697899, 8.3636], + [-12.701699, 8.364399], + [-12.713099, 8.369699], + [-12.716699, 8.369999], + [-12.720299, 8.367199], + [-12.721199, 8.3593], + [-12.7221, 8.356199], + [-12.725099, 8.3533], + [-12.729, 8.3525], + [-12.731799, 8.353], + [-12.7343, 8.3544], + [-12.7377, 8.3572], + [-12.745399, 8.364899], + [-12.7488, 8.3679], + [-12.7522, 8.3703], + [-12.759699, 8.374199], + [-12.7665, 8.3769], + [-12.777699, 8.378599], + [-12.7817, 8.3795], + [-12.7918, 8.3829], + [-12.8037, 8.3883], + [-12.8092, 8.388499], + [-12.814099, 8.385899], + [-12.816699, 8.381999], + [-12.817099, 8.378], + [-12.8153, 8.3725], + [-12.8147, 8.367199], + [-12.8152, 8.3634], + [-12.817399, 8.3606], + [-12.8262, 8.357099], + [-12.836399, 8.349], + [-12.841099, 8.3459], + [-12.848699, 8.343], + [-12.8551, 8.339699], + [-12.8584, 8.337099], + [-12.8603, 8.334799], + [-12.863924, 8.329136] + ] + ], + "type": "Polygon" + }, + "id": 423, + "properties": { + "cc:admin:id": ["111"], + "cc:oBld:total": 464, + "cc:pop:fifteen-to-twenty-four": 2316.6885369362717, + "cc:pop:grid3-total": 16377.735523345918, + "cc:pop:kontur-total": 14077.310560926118, + "cc:pop:men": 6353.623137043917, + "cc:pop:sixty-plus": 869.5764852349838, + "cc:pop:total": 13466.3253042056, + "cc:pop:under-five": 2298.3886853444933, + "cc:pop:women": 7112.702167161673, + "cc:pop:women-fiften-to-forty-nine": 3250.0235424057873, + "cc:pop:wp-total": 11633.67160296068, + "cc:pop:wp-total-UN": 13479.340672953116, + "cc:id": "423", + "cc:Name": "Motoni MCHP", + "cc:site": [-12.7935, 8.3054], + "user:parentName": "Ribbi", + "user:code": "OU_247043", + "user:orgUnitId": "fvytjjnlQlK", + "user:level": "4", + "user:parentId": "gy8rmvYT4cj" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.911243, 8.25936], + [-12.907337, 8.252595], + [-12.905166, 8.252594], + [-12.905172, 8.251289], + [-12.904788, 8.250417], + [-12.902083, 8.250416], + [-12.902082, 8.240427], + [-12.899033, 8.240426], + [-12.898613, 8.239701], + [-12.89679, 8.239016], + [-12.896017, 8.238435], + [-12.895012, 8.237355], + [-12.89356, 8.236458], + [-12.892888, 8.236176], + [-12.891858, 8.235995], + [-12.895416, 8.231249], + [-12.893749, 8.224584], + [-12.88625, 8.220417], + [-12.885416, 8.215417], + [-12.883749, 8.215416], + [-12.879582, 8.210417], + [-12.878118, 8.209928], + [-12.878194, 8.205572], + [-12.878099, 8.204551], + [-12.876249, 8.202084], + [-12.86875, 8.200417], + [-12.862916, 8.202083], + [-12.855417, 8.19875], + [-12.85375, 8.19625], + [-12.85375, 8.194583], + [-12.857916, 8.190416], + [-12.85625, 8.187083], + [-12.857916, 8.182084], + [-12.852917, 8.182083], + [-12.851249, 8.17875], + [-12.847082, 8.179583], + [-12.846249, 8.177084], + [-12.844582, 8.176249], + [-12.843749, 8.172917], + [-12.842917, 8.172916], + [-12.842916, 8.16875], + [-12.839583, 8.167083], + [-12.839582, 8.162084], + [-12.837083, 8.161249], + [-12.83375, 8.15875], + [-12.835402, 8.156683], + [-12.835859, 8.156762], + [-12.836502, 8.157192], + [-12.83714, 8.156766], + [-12.836898, 8.155865], + [-12.83587, 8.154828], + [-12.835488, 8.153926], + [-12.836283, 8.15294], + [-12.836406, 8.151354], + [-12.838478, 8.150463], + [-12.840294, 8.149313], + [-12.839783, 8.148152], + [-12.838485, 8.149174], + [-12.836936, 8.148908], + [-12.836035, 8.148003], + [-12.834356, 8.147736], + [-12.833717, 8.146702], + [-12.834368, 8.145676], + [-12.835921, 8.145168], + [-12.836009, 8.143884], + [-12.83194, 8.144393], + [-12.831525, 8.145274], + [-12.830485, 8.146685], + [-12.829571, 8.147134], + [-12.828599, 8.150099], + [-12.8268, 8.151899], + [-12.8186, 8.1534], + [-12.8158, 8.1554], + [-12.8148, 8.1584], + [-12.8152, 8.1608], + [-12.8173, 8.1651], + [-12.817999, 8.1699], + [-12.817299, 8.174799], + [-12.815999, 8.1772], + [-12.814099, 8.1793], + [-12.808199, 8.1853], + [-12.805399, 8.187499], + [-12.8028, 8.188299], + [-12.798299, 8.186799], + [-12.794799, 8.186299], + [-12.7902, 8.1861], + [-12.7856, 8.186799], + [-12.783199, 8.1879], + [-12.7744, 8.194799], + [-12.771599, 8.1987], + [-12.7668, 8.203399], + [-12.7613, 8.206399], + [-12.7574, 8.209699], + [-12.7492, 8.217999], + [-12.7464, 8.220599], + [-12.7441, 8.222299], + [-12.7402, 8.224199], + [-12.737999, 8.2258], + [-12.734399, 8.2294], + [-12.731546, 8.234304], + [-12.741357, 8.233366], + [-12.742782, 8.232741], + [-12.743149, 8.232672], + [-12.743945, 8.230781], + [-12.743712, 8.230353], + [-12.743543, 8.230193], + [-12.743544, 8.230191], + [-12.752916, 8.228749], + [-12.752302, 8.226294], + [-12.755621, 8.220546], + [-12.757545, 8.220546], + [-12.754583, 8.222917], + [-12.75375, 8.235416], + [-12.754365, 8.236338], + [-12.761385, 8.236338], + [-12.765291, 8.229573], + [-12.771479, 8.229573], + [-12.772916, 8.23125], + [-12.772917, 8.232829], + [-12.773587, 8.234188], + [-12.776499, 8.237898], + [-12.777273, 8.238593], + [-12.777743, 8.2394], + [-12.779157, 8.238344], + [-12.779879, 8.239594], + [-12.778661, 8.241707], + [-12.775974, 8.24636], + [-12.770523, 8.246361], + [-12.772083, 8.250416], + [-12.781249, 8.250417], + [-12.782012, 8.249655], + [-12.782013, 8.249656], + [-12.77977, 8.253541], + [-12.780513, 8.254828], + [-12.781249, 8.254583], + [-12.782182, 8.253651], + [-12.789709, 8.253651], + [-12.793616, 8.260416], + [-12.801429, 8.260417], + [-12.801547, 8.260623], + [-12.800417, 8.264584], + [-12.802083, 8.269583], + [-12.805417, 8.272084], + [-12.806689, 8.277177], + [-12.804702, 8.278622], + [-12.804833, 8.280325], + [-12.808459, 8.280326], + [-12.812365, 8.287091], + [-12.820178, 8.287092], + [-12.8208, 8.288172], + [-12.820417, 8.291249], + [-12.825417, 8.298749], + [-12.837916, 8.29875], + [-12.839583, 8.299584], + [-12.841655, 8.301656], + [-12.84047, 8.303385], + [-12.839852, 8.303637], + [-12.839488, 8.303976], + [-12.837524, 8.306305], + [-12.835677, 8.307989], + [-12.8363, 8.307974], + [-12.838644, 8.308439], + [-12.839767, 8.309018], + [-12.840871, 8.309363], + [-12.842679, 8.310444], + [-12.842083, 8.302084], + [-12.852916, 8.302916], + [-12.857082, 8.299585], + [-12.857082, 8.302916], + [-12.852917, 8.30375], + [-12.849583, 8.307917], + [-12.850417, 8.318749], + [-12.85125, 8.31875], + [-12.852917, 8.322083], + [-12.855416, 8.323749], + [-12.855417, 8.325416], + [-12.857917, 8.327916], + [-12.858056, 8.327916], + [-12.858162, 8.327407], + [-12.858163, 8.327407], + [-12.863924, 8.329135], + [-12.8667, 8.324799], + [-12.8689, 8.319199], + [-12.871, 8.311499], + [-12.872699, 8.3084], + [-12.8746, 8.306], + [-12.877, 8.304399], + [-12.8867, 8.302299], + [-12.8917, 8.299799], + [-12.896199, 8.296099], + [-12.8959, 8.2885], + [-12.896199, 8.2841], + [-12.897999, 8.2793], + [-12.904099, 8.2751], + [-12.909982, 8.270707], + [-12.907338, 8.266125], + [-12.911243, 8.25936] + ] + ], + "type": "Polygon" + }, + "id": 424, + "properties": { + "cc:admin:id": ["111"], + "cc:oBld:total": 444, + "cc:pop:fifteen-to-twenty-four": 1274.5976674256578, + "cc:pop:grid3-total": 7534.0458666600325, + "cc:pop:kontur-total": 7521.1848455736545, + "cc:pop:men": 3507.447083429983, + "cc:pop:sixty-plus": 467.68006741978206, + "cc:pop:total": 7432.480071014042, + "cc:pop:under-five": 1270.5976674256574, + "cc:pop:women": 3925.032987584056, + "cc:pop:women-fiften-to-forty-nine": 1781.2630780731936, + "cc:pop:wp-total": 6382.634265714052, + "cc:pop:wp-total-UN": 7405.619102068446, + "cc:id": "424", + "cc:Name": "Motonkoh MCHP", + "cc:site": [-12.8429, 8.2624], + "user:parentName": "Ribbi", + "user:code": "OU_247041", + "user:orgUnitId": "BpWJ3cRsO6g", + "user:level": "4", + "user:parentId": "gy8rmvYT4cj" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.880448, 8.092608], + [-12.878123, 8.092729], + [-12.877083, 8.093142], + [-12.877082, 8.092084], + [-12.875453, 8.089911], + [-12.874184, 8.090195], + [-12.871264, 8.091181], + [-12.86728, 8.092225], + [-12.866061, 8.092167], + [-12.865035, 8.091374], + [-12.861708, 8.086809], + [-12.857298, 8.082612], + [-12.85343, 8.080271], + [-12.848556, 8.078261], + [-12.842618, 8.076152], + [-12.839435, 8.075498], + [-12.837752, 8.075542], + [-12.835819, 8.075928], + [-12.833739, 8.078999], + [-12.832071, 8.083133], + [-12.83033, 8.086687], + [-12.827478, 8.089032], + [-12.824914, 8.090025], + [-12.819595, 8.090483], + [-12.815824, 8.090604], + [-12.81326, 8.090386], + [-12.813018, 8.090241], + [-12.811591, 8.088283], + [-12.809077, 8.085188], + [-12.806007, 8.082553], + [-12.803346, 8.080885], + [-12.799454, 8.08074], + [-12.797035, 8.081188], + [-12.794559, 8.081873], + [-12.791676, 8.082466], + [-12.788457, 8.082455], + [-12.78587, 8.081811], + [-12.783455, 8.081253], + [-12.780001, 8.080276], + [-12.77755, 8.080487], + [-12.775199, 8.081192], + [-12.773588, 8.082802], + [-12.771497, 8.085188], + [-12.770104, 8.086386], + [-12.768242, 8.087765], + [-12.76539, 8.089093], + [-12.762658, 8.09006], + [-12.759587, 8.090641], + [-12.756806, 8.091367], + [-12.754364, 8.09231], + [-12.751439, 8.093977], + [-12.748634, 8.095864], + [-12.747063, 8.097628], + [-12.745246, 8.099445], + [-12.744356, 8.100463], + [-12.741382, 8.102132], + [-12.737601, 8.103952], + [-12.73827, 8.105293], + [-12.737459, 8.105737], + [-12.734717, 8.107415], + [-12.73307, 8.109244], + [-12.732407, 8.111189], + [-12.73234, 8.113699], + [-12.732539, 8.116341], + [-12.732057, 8.118634], + [-12.732015, 8.118749], + [-12.730635, 8.11875], + [-12.730293, 8.119732], + [-12.729437, 8.122094], + [-12.728087, 8.124224], + [-12.726424, 8.125835], + [-12.724372, 8.127601], + [-12.722234, 8.129955], + [-12.720429, 8.132225], + [-12.720236, 8.132556], + [-12.72071, 8.133504], + [-12.721278, 8.132694], + [-12.722961, 8.130845], + [-12.724802, 8.128799], + [-12.724804, 8.128799], + [-12.725144, 8.130161], + [-12.724578, 8.130649], + [-12.723789, 8.131691], + [-12.723661, 8.132961], + [-12.724041, 8.134252], + [-12.724558, 8.134256], + [-12.725086, 8.134985], + [-12.727138, 8.135043], + [-12.727395, 8.135429], + [-12.728234, 8.135539], + [-12.728304, 8.135747], + [-12.728167, 8.13595], + [-12.72584, 8.136194], + [-12.725451, 8.136579], + [-12.725446, 8.137351], + [-12.726345, 8.138386], + [-12.727118, 8.138648], + [-12.727116, 8.139163], + [-12.729182, 8.139432], + [-12.729185, 8.138918], + [-12.730218, 8.138923], + [-12.730295, 8.138629], + [-12.73125, 8.139583], + [-12.73167, 8.139584], + [-12.731759, 8.140735], + [-12.730208, 8.140985], + [-12.730271, 8.141176], + [-12.730417, 8.141249], + [-12.734583, 8.140417], + [-12.73703, 8.147265], + [-12.737412, 8.147077], + [-12.738962, 8.146958], + [-12.738702, 8.147342], + [-12.738185, 8.14734], + [-12.737163, 8.14764], + [-12.737651, 8.149006], + [-12.737918, 8.149142], + [-12.738301, 8.150045], + [-12.739457, 8.150953], + [-12.739975, 8.150828], + [-12.740216, 8.151808], + [-12.740524, 8.15175], + [-12.74075, 8.15109], + [-12.741265, 8.151351], + [-12.741262, 8.151866], + [-12.740656, 8.152289], + [-12.740483, 8.152633], + [-12.741347, 8.152469], + [-12.741257, 8.152895], + [-12.74074, 8.152893], + [-12.740736, 8.153407], + [-12.740222, 8.153148], + [-12.739956, 8.154176], + [-12.739699, 8.154174], + [-12.739701, 8.15366], + [-12.739443, 8.153659], + [-12.739694, 8.154947], + [-12.740469, 8.154953], + [-12.740333, 8.156496], + [-12.74007, 8.157268], + [-12.740581, 8.158044], + [-12.7407, 8.159031], + [-12.740637, 8.159171], + [-12.743749, 8.160417], + [-12.744583, 8.163749], + [-12.745417, 8.164584], + [-12.751249, 8.169583], + [-12.750417, 8.173749], + [-12.755416, 8.17375], + [-12.757917, 8.174584], + [-12.760533, 8.177855], + [-12.760411, 8.177939], + [-12.757759, 8.180992], + [-12.761185, 8.183457], + [-12.763094, 8.185585], + [-12.763618, 8.186679], + [-12.765069, 8.188746], + [-12.768033, 8.190661], + [-12.769536, 8.191243], + [-12.770416, 8.191971], + [-12.771208, 8.193808], + [-12.771719, 8.19446], + [-12.772989, 8.195582], + [-12.773607, 8.195903], + [-12.7744, 8.194799], + [-12.783199, 8.1879], + [-12.785599, 8.1868], + [-12.790199, 8.1861], + [-12.794799, 8.186299], + [-12.7983, 8.1868], + [-12.8028, 8.188299], + [-12.805399, 8.187499], + [-12.8082, 8.185299], + [-12.814099, 8.1793], + [-12.815999, 8.1772], + [-12.817299, 8.174799], + [-12.817999, 8.1699], + [-12.8173, 8.1651], + [-12.8152, 8.1608], + [-12.8148, 8.1584], + [-12.8158, 8.155399], + [-12.8186, 8.1534], + [-12.8268, 8.151899], + [-12.828599, 8.150099], + [-12.830499, 8.1443], + [-12.832999, 8.1395], + [-12.8347, 8.137299], + [-12.837, 8.135199], + [-12.840999, 8.1331], + [-12.844299, 8.1317], + [-12.852799, 8.129599], + [-12.855999, 8.127599], + [-12.858599, 8.124499], + [-12.8598, 8.121599], + [-12.8606, 8.117799], + [-12.8611, 8.111599], + [-12.862599, 8.1038], + [-12.864099, 8.0987], + [-12.8697, 8.100799], + [-12.872899, 8.1007], + [-12.875099, 8.1], + [-12.877999, 8.097499], + [-12.879899, 8.0942], + [-12.880448, 8.092608] + ] + ], + "type": "Polygon" + }, + "id": 425, + "properties": { + "cc:admin:id": ["12"], + "cc:oBld:total": 227, + "cc:pop:fifteen-to-twenty-four": 1033.8289699682864, + "cc:pop:grid3-total": 5603.44417103059, + "cc:pop:kontur-total": 5392.077753511764, + "cc:pop:men": 2579.0143247558944, + "cc:pop:sixty-plus": 350.022499392338, + "cc:pop:total": 5525.869100881216, + "cc:pop:under-five": 948.710657428134, + "cc:pop:women": 2946.854776125322, + "cc:pop:women-fiften-to-forty-nine": 1387.8293211865723, + "cc:pop:wp-total": 4585.174852818969, + "cc:pop:wp-total-UN": 5325.050246957593, + "cc:id": "425", + "cc:Name": "Motorbong MCHP", + "cc:site": [-12.8337, 8.121], + "user:parentName": "Bumpeh", + "user:code": "OU_247030", + "user:orgUnitId": "Gtnbmf4LkOz", + "user:level": "4", + "user:parentId": "nOYt1LtFSyU" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.088749, 7.609584], + [-12.080952, 7.611], + [-12.079913, 7.608711], + [-12.080322, 7.606887], + [-12.081397, 7.603276], + [-12.082046, 7.602389], + [-12.080899, 7.601399], + [-12.0749, 7.5952], + [-12.0728, 7.5933], + [-12.070199, 7.5917], + [-12.066699, 7.5914], + [-12.063799, 7.5932], + [-12.0571, 7.599699], + [-12.0545, 7.601199], + [-12.051, 7.600899], + [-12.048299, 7.599199], + [-12.0458, 7.5965], + [-12.0441, 7.5933], + [-12.042899, 7.588199], + [-12.0404, 7.5821], + [-12.0388, 7.5762], + [-12.0368, 7.5721], + [-12.0362, 7.57], + [-12.0359, 7.567299], + [-12.036065, 7.564399], + [-12.033749, 7.562083], + [-12.02875, 7.56125], + [-12.025944, 7.572472], + [-12.026145, 7.573451], + [-12.026472, 7.574079], + [-12.027487, 7.575004], + [-12.026249, 7.575416], + [-12.022937, 7.575116], + [-12.019964, 7.580265], + [-12.012151, 7.580265], + [-12.008859, 7.574564], + [-12.00875, 7.574582], + [-12.008749, 7.582083], + [-12.005417, 7.586249], + [-11.997191, 7.586997], + [-11.9971, 7.586658], + [-11.995607, 7.587405], + [-11.995925, 7.588454], + [-11.995906, 7.590132], + [-11.995854, 7.590416], + [-11.992083, 7.590417], + [-11.990476, 7.591489], + [-11.994499, 7.6004], + [-11.993499, 7.6107], + [-11.9933, 7.630099], + [-11.999199, 7.6298], + [-12.003699, 7.629899], + [-12.008, 7.6308], + [-12.017, 7.635], + [-12.025699, 7.641999], + [-12.032699, 7.646899], + [-12.034196, 7.648575], + [-12.0369, 7.648576], + [-12.036904, 7.648571], + [-12.037083, 7.64875], + [-12.042082, 7.648749], + [-12.049582, 7.639583], + [-12.050253, 7.637906], + [-12.049906, 7.637697], + [-12.051238, 7.635391], + [-12.051239, 7.635391], + [-12.05125, 7.635416], + [-12.059582, 7.634584], + [-12.06625, 7.647083], + [-12.072916, 7.647083], + [-12.073355, 7.646643], + [-12.071554, 7.643521], + [-12.075459, 7.636756], + [-12.080213, 7.636755], + [-12.080416, 7.636249], + [-12.079583, 7.627917], + [-12.079582, 7.62375], + [-12.076859, 7.61762], + [-12.080977, 7.617145], + [-12.083188, 7.617662], + [-12.085609, 7.61759], + [-12.08625, 7.61375], + [-12.088749, 7.609584] + ] + ], + "type": "Polygon" + }, + "id": 426, + "properties": { + "cc:admin:id": ["65"], + "cc:oBld:total": 5, + "cc:pop:fifteen-to-twenty-four": 721.9298318923321, + "cc:pop:grid3-total": 5457.525350770474, + "cc:pop:kontur-total": 3763.7452592962436, + "cc:pop:men": 1870.8569838282424, + "cc:pop:sixty-plus": 259.5839371954044, + "cc:pop:total": 3883.3719691332503, + "cc:pop:under-five": 662.5834243413694, + "cc:pop:women": 2012.5149853050095, + "cc:pop:women-fiften-to-forty-nine": 956.7802881667835, + "cc:pop:wp-total": 2872.4396321681234, + "cc:pop:wp-total-UN": 3331.8275751201445, + "cc:id": "426", + "cc:Name": "Motuo CHC", + "cc:site": [-12.0474, 7.614], + "user:parentName": "Kpanda Kemoh", + "user:code": "OU_197427", + "user:orgUnitId": "rCKWdLr4B8K", + "user:level": "4", + "user:parentId": "aWQTfvgPA5v" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.905399, 8.0415], + [-12.895899, 8.041], + [-12.8896, 8.041], + [-12.8846, 8.041299], + [-12.880599, 8.0421], + [-12.8762, 8.043799], + [-12.8724, 8.044899], + [-12.8685, 8.045099], + [-12.8647, 8.0446], + [-12.861999, 8.043899], + [-12.857899, 8.041299], + [-12.853099, 8.036599], + [-12.849899, 8.034499], + [-12.842299, 8.030699], + [-12.8394, 8.0301], + [-12.836499, 8.0299], + [-12.8135, 8.030099], + [-12.810499, 8.029899], + [-12.805999, 8.029099], + [-12.7979, 8.0257], + [-12.7936, 8.023], + [-12.790399, 8.021899], + [-12.786799, 8.019899], + [-12.783099, 8.018899], + [-12.779099, 8.018599], + [-12.770362, 8.0186], + [-12.773417, 8.023893], + [-12.769512, 8.030658], + [-12.766841, 8.030659], + [-12.765417, 8.032084], + [-12.76375, 8.038749], + [-12.767082, 8.04375], + [-12.767082, 8.052917], + [-12.765734, 8.054266], + [-12.759875, 8.054266], + [-12.75932, 8.055225], + [-12.749583, 8.056249], + [-12.748749, 8.054584], + [-12.747917, 8.054584], + [-12.747916, 8.05625], + [-12.74375, 8.059583], + [-12.737916, 8.059584], + [-12.734583, 8.062916], + [-12.737917, 8.064584], + [-12.73875, 8.074583], + [-12.748052, 8.083885], + [-12.748749, 8.084584], + [-12.743749, 8.087083], + [-12.73625, 8.079584], + [-12.735417, 8.080416], + [-12.735005, 8.08069], + [-12.735082, 8.080435], + [-12.730417, 8.084584], + [-12.730417, 8.087973], + [-12.730505, 8.088049], + [-12.730757, 8.089209], + [-12.731531, 8.089343], + [-12.732045, 8.08986], + [-12.732298, 8.091021], + [-12.732814, 8.091153], + [-12.733712, 8.092318], + [-12.73409, 8.094122], + [-12.73473, 8.095157], + [-12.734975, 8.097733], + [-12.735645, 8.099317], + [-12.737917, 8.09875], + [-12.739952, 8.102819], + [-12.741383, 8.102131], + [-12.744356, 8.100463], + [-12.745246, 8.099445], + [-12.747063, 8.097628], + [-12.748634, 8.095864], + [-12.751439, 8.093977], + [-12.754364, 8.09231], + [-12.756806, 8.091367], + [-12.759587, 8.090641], + [-12.762658, 8.09006], + [-12.76539, 8.089093], + [-12.768242, 8.087765], + [-12.770104, 8.086386], + [-12.771497, 8.085188], + [-12.773588, 8.082802], + [-12.775198, 8.081192], + [-12.77755, 8.080487], + [-12.780001, 8.080276], + [-12.783455, 8.081253], + [-12.78587, 8.081811], + [-12.788457, 8.082455], + [-12.791676, 8.082466], + [-12.794559, 8.081873], + [-12.797035, 8.081188], + [-12.799454, 8.08074], + [-12.803346, 8.080885], + [-12.806007, 8.082553], + [-12.809077, 8.085188], + [-12.811591, 8.088283], + [-12.813018, 8.090241], + [-12.81326, 8.090386], + [-12.815824, 8.090604], + [-12.819595, 8.090483], + [-12.824914, 8.090025], + [-12.827478, 8.089032], + [-12.83033, 8.086687], + [-12.832071, 8.083133], + [-12.833739, 8.078999], + [-12.835818, 8.075928], + [-12.837752, 8.075542], + [-12.839434, 8.075498], + [-12.842618, 8.076152], + [-12.848556, 8.078261], + [-12.85343, 8.080271], + [-12.857298, 8.082612], + [-12.861708, 8.086809], + [-12.865035, 8.091374], + [-12.866062, 8.092167], + [-12.86728, 8.092225], + [-12.871264, 8.091181], + [-12.874184, 8.090195], + [-12.875453, 8.08991], + [-12.877082, 8.092083], + [-12.877083, 8.093142], + [-12.878123, 8.092729], + [-12.880448, 8.092607], + [-12.8809, 8.091299], + [-12.890199, 8.087499], + [-12.896199, 8.080999], + [-12.896, 8.080399], + [-12.896, 8.0771], + [-12.896799, 8.075999], + [-12.897099, 8.0746], + [-12.898499, 8.073499], + [-12.8993, 8.071299], + [-12.901499, 8.069599], + [-12.9015, 8.064], + [-12.901799, 8.0632], + [-12.9001, 8.062399], + [-12.900099, 8.0593], + [-12.8996, 8.058999], + [-12.8999, 8.056499], + [-12.8999, 8.0524], + [-12.900999, 8.051499], + [-12.901, 8.048199], + [-12.902099, 8.0463], + [-12.902899, 8.045999], + [-12.9032, 8.0443], + [-12.904499, 8.043499], + [-12.905399, 8.0415] + ] + ], + "type": "Polygon" + }, + "id": 427, + "properties": { + "cc:admin:id": ["12"], + "cc:oBld:total": 12, + "cc:pop:fifteen-to-twenty-four": 1180.0848373162776, + "cc:pop:grid3-total": 6351.312786181341, + "cc:pop:kontur-total": 6316.2498927042725, + "cc:pop:men": 2960.570550904342, + "cc:pop:sixty-plus": 417.1479898605272, + "cc:pop:total": 6334.464947600011, + "cc:pop:under-five": 1078.287669447539, + "cc:pop:women": 3373.8943966956685, + "cc:pop:women-fiften-to-forty-nine": 1604.276410978698, + "cc:pop:wp-total": 5623.990138840804, + "cc:pop:wp-total-UN": 6538.9852630585665, + "cc:id": "427", + "cc:Name": "Moyeamoh CHP", + "cc:site": [-12.7739, 8.0743], + "user:parentName": "Bumpeh", + "user:code": "OU_247028", + "user:orgUnitId": "WhCQNekdIwM", + "user:level": "4", + "user:parentId": "nOYt1LtFSyU" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.217772, 8.459394], + [-13.217614, 8.458768], + [-13.216946, 8.457431], + [-13.216836, 8.457127], + [-13.216174, 8.455539], + [-13.21603, 8.455259], + [-13.21672, 8.454962], + [-13.216429, 8.454289], + [-13.215645, 8.454502], + [-13.215617, 8.45444], + [-13.215348, 8.45355], + [-13.215323, 8.453508], + [-13.215055, 8.453441], + [-13.215292, 8.450677], + [-13.215276, 8.450623], + [-13.215394, 8.450035], + [-13.214936, 8.450189], + [-13.214348, 8.450479], + [-13.214162, 8.450033], + [-13.213535, 8.450347], + [-13.213492, 8.450373], + [-13.21372, 8.450745], + [-13.213927, 8.451164], + [-13.21413, 8.451633], + [-13.214319, 8.452043], + [-13.214005, 8.452208], + [-13.214022, 8.452679], + [-13.214727, 8.453323], + [-13.213442, 8.453465], + [-13.213829, 8.454082], + [-13.214551, 8.454436], + [-13.214921, 8.455044], + [-13.215164, 8.45592], + [-13.21507, 8.45625], + [-13.214782, 8.456392], + [-13.214944, 8.457081], + [-13.214873, 8.457563], + [-13.214353, 8.457912], + [-13.214303, 8.458439], + [-13.21391, 8.458538], + [-13.213416, 8.46011], + [-13.212796, 8.460892], + [-13.212206, 8.461219], + [-13.212017, 8.461525], + [-13.212201, 8.461964], + [-13.211846, 8.462347], + [-13.20632, 8.462348], + [-13.202413, 8.469113], + [-13.204659, 8.473005], + [-13.20462, 8.473043], + [-13.204585, 8.473483], + [-13.204222, 8.474193], + [-13.204938, 8.474545], + [-13.205096, 8.474363], + [-13.205326, 8.474158], + [-13.206319, 8.47588], + [-13.20542, 8.477437], + [-13.204651, 8.477634], + [-13.203398, 8.477726], + [-13.20298, 8.477634], + [-13.202561, 8.477536], + [-13.201905, 8.477631], + [-13.201387, 8.477645], + [-13.200833, 8.477413], + [-13.200266, 8.476821], + [-13.200136, 8.476658], + [-13.19893, 8.476778], + [-13.200367, 8.477661], + [-13.201129, 8.477838], + [-13.201111, 8.477988], + [-13.20109, 8.478223], + [-13.201052, 8.47844], + [-13.200965, 8.478833], + [-13.199699, 8.478513], + [-13.198134, 8.477824], + [-13.198079, 8.477902], + [-13.197994, 8.478226], + [-13.198361, 8.479079], + [-13.198344, 8.479284], + [-13.19856, 8.47921], + [-13.199462, 8.479163], + [-13.19901, 8.480643], + [-13.200423, 8.480659], + [-13.200929, 8.48024], + [-13.201145, 8.479484], + [-13.20251, 8.479704], + [-13.203724, 8.480458], + [-13.204709, 8.480696], + [-13.204895, 8.48112], + [-13.205186, 8.480808], + [-13.205324, 8.480726], + [-13.205866, 8.480531], + [-13.205968, 8.480419], + [-13.206127, 8.480109], + [-13.206185, 8.480027], + [-13.206216, 8.479891], + [-13.206225, 8.479777], + [-13.206151, 8.479757], + [-13.206148, 8.479529], + [-13.206167, 8.479371], + [-13.206219, 8.478833], + [-13.20675, 8.477975], + [-13.206848, 8.477449], + [-13.206777, 8.477385], + [-13.206781, 8.47736], + [-13.206838, 8.477315], + [-13.206789, 8.477093], + [-13.207193, 8.477076], + [-13.207342, 8.476961], + [-13.207875, 8.476602], + [-13.208264, 8.476332], + [-13.207208, 8.47451], + [-13.207277, 8.472903], + [-13.206851, 8.472525], + [-13.207015, 8.472239], + [-13.207134, 8.471157], + [-13.206974, 8.47095], + [-13.206961, 8.47093], + [-13.207015, 8.470893], + [-13.207344, 8.470849], + [-13.208077, 8.471852], + [-13.208251, 8.471407], + [-13.208155, 8.470071], + [-13.208373, 8.468548], + [-13.208811, 8.468205], + [-13.209128, 8.467784], + [-13.209415, 8.467723], + [-13.210114, 8.46856], + [-13.210457, 8.469237], + [-13.210812, 8.469398], + [-13.210873, 8.469419], + [-13.211209, 8.468622], + [-13.211155, 8.465849], + [-13.211661, 8.464607], + [-13.211993, 8.464118], + [-13.211994, 8.464118], + [-13.212151, 8.464272], + [-13.212415, 8.464533], + [-13.213006, 8.463802], + [-13.213014, 8.463737], + [-13.213577, 8.462042], + [-13.214706, 8.462513], + [-13.214802, 8.46234], + [-13.214924, 8.462002], + [-13.215063, 8.461554], + [-13.215258, 8.460868], + [-13.215358, 8.460405], + [-13.215697, 8.459404], + [-13.21728, 8.459686], + [-13.217772, 8.459394] + ] + ], + "type": "Polygon" + }, + "id": 428, + "properties": { + "cc:admin:id": ["26"], + "cc:oBld:total": 1815, + "cc:pop:fifteen-to-twenty-four": 4891.372580138035, + "cc:pop:grid3-total": 19423.885563315554, + "cc:pop:kontur-total": 23900, + "cc:pop:men": 10525.03926261622, + "cc:pop:sixty-plus": 1658.50026968249, + "cc:pop:total": 21371.475874353735, + "cc:pop:under-five": 2471.354078290041, + "cc:pop:women": 10846.436611737518, + "cc:pop:women-fiften-to-forty-nine": 5797.260849432636, + "cc:pop:wp-total": 16089.971787039372, + "cc:pop:wp-total-UN": 18656.000935308162, + "cc:id": "428", + "cc:Name": "Moyiba CHC", + "cc:site": [-13.2064, 8.473], + "user:parentName": "Freetown", + "user:code": "OU_278331", + "user:orgUnitId": "zEsMdeJOty4", + "user:level": "4", + "user:parentId": "C9uduqDZr9d" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.397681, 8.147171], + [-12.397426, 8.146901], + [-12.397164, 8.147057], + [-12.396552, 8.148171], + [-12.396108, 8.149405], + [-12.395446, 8.149993], + [-12.394513, 8.15041], + [-12.39315, 8.151624], + [-12.393124, 8.152672], + [-12.392804, 8.153027], + [-12.39277, 8.15343], + [-12.39252, 8.153793], + [-12.391123, 8.155096], + [-12.389582, 8.154583], + [-12.38625, 8.150417], + [-12.386249, 8.14608], + [-12.382102, 8.146079], + [-12.378196, 8.139315], + [-12.370384, 8.139314], + [-12.366477, 8.132549], + [-12.359165, 8.132548], + [-12.359164, 8.132547], + [-12.359232, 8.132313], + [-12.356743, 8.136624], + [-12.348931, 8.136624], + [-12.345832, 8.131257], + [-12.345416, 8.132917], + [-12.34424, 8.133857], + [-12.34266, 8.133858], + [-12.342597, 8.133688], + [-12.340651, 8.132604], + [-12.339813, 8.131591], + [-12.339196, 8.131264], + [-12.337764, 8.13063], + [-12.336971, 8.13083], + [-12.336606, 8.130725], + [-12.336273, 8.128436], + [-12.336551, 8.1273], + [-12.336509, 8.127093], + [-12.332229, 8.127093], + [-12.331249, 8.135416], + [-12.327917, 8.135417], + [-12.327917, 8.141777], + [-12.3303, 8.1418], + [-12.334399, 8.142699], + [-12.338599, 8.144499], + [-12.342399, 8.146399], + [-12.3453, 8.1486], + [-12.347799, 8.151499], + [-12.348899, 8.153599], + [-12.3496, 8.1569], + [-12.3497, 8.1608], + [-12.349799, 8.186799], + [-12.34988, 8.189206], + [-12.356249, 8.187084], + [-12.357083, 8.187083], + [-12.362916, 8.184584], + [-12.365021, 8.185635], + [-12.365824, 8.184518], + [-12.36667, 8.18386], + [-12.367243, 8.183748], + [-12.367601, 8.183437], + [-12.367917, 8.18252], + [-12.368235, 8.182545], + [-12.368558, 8.181664], + [-12.368879, 8.181259], + [-12.3698, 8.181382], + [-12.370334, 8.1815], + [-12.37061, 8.181405], + [-12.371046, 8.181073], + [-12.372256, 8.179104], + [-12.372756, 8.17831], + [-12.372946, 8.177687], + [-12.372926, 8.177666], + [-12.376247, 8.173003], + [-12.376761, 8.17288], + [-12.376921, 8.173214], + [-12.377228, 8.172895], + [-12.378686, 8.173688], + [-12.379259, 8.173782], + [-12.381091, 8.173644], + [-12.383091, 8.173248], + [-12.383671, 8.173584], + [-12.384866, 8.1738], + [-12.385302, 8.17405], + [-12.385694, 8.173989], + [-12.386151, 8.173675], + [-12.386435, 8.172905], + [-12.386298, 8.172423], + [-12.385257, 8.172009], + [-12.3847, 8.171302], + [-12.384031, 8.169276], + [-12.383095, 8.167803], + [-12.382911, 8.166734], + [-12.383091, 8.166545], + [-12.38405, 8.166877], + [-12.384474, 8.166771], + [-12.386782, 8.165265], + [-12.387405, 8.163184], + [-12.387667, 8.162926], + [-12.387941, 8.162934], + [-12.388314, 8.162692], + [-12.389413, 8.161402], + [-12.390962, 8.1602], + [-12.392376, 8.158535], + [-12.393022, 8.158232], + [-12.393546, 8.157682], + [-12.394425, 8.156477], + [-12.394858, 8.155504], + [-12.395309, 8.155084], + [-12.395308, 8.154529], + [-12.395009, 8.153882], + [-12.394785, 8.153737], + [-12.394464, 8.15384], + [-12.393687, 8.152988], + [-12.393698, 8.152008], + [-12.39386, 8.151589], + [-12.394694, 8.150707], + [-12.39543, 8.150612], + [-12.395752, 8.150102], + [-12.396346, 8.14969], + [-12.396558, 8.14892], + [-12.397627, 8.147243], + [-12.397681, 8.147171] + ] + ], + "type": "Polygon" + }, + "id": 429, + "properties": { + "cc:admin:id": ["45"], + "cc:oBld:total": 271, + "cc:pop:fifteen-to-twenty-four": 176.7874176103576, + "cc:pop:grid3-total": 943.7141441883449, + "cc:pop:kontur-total": 994.5462978791564, + "cc:pop:men": 441.7298698687865, + "cc:pop:sixty-plus": 51, + "cc:pop:total": 908.1496704414304, + "cc:pop:under-five": 168.78741761035758, + "cc:pop:women": 466.4198005726439, + "cc:pop:women-fiften-to-forty-nine": 224.78741761035758, + "cc:pop:wp-total": 620.8672732285709, + "cc:pop:wp-total-UN": 721.6734243270994, + "cc:id": "429", + "cc:Name": "Moyollo MCHP", + "cc:site": [-12.3533, 8.159], + "user:parentName": "Fakunya", + "user:code": "OU_247093", + "user:orgUnitId": "UgUcwzbEv2C", + "user:level": "4", + "user:parentId": "vULnao2hV5v" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.122899, 7.6535], + [-12.118199, 7.651999], + [-12.112, 7.6495], + [-12.108, 7.6465], + [-12.104699, 7.642599], + [-12.103299, 7.639399], + [-12.100999, 7.634999], + [-12.100399, 7.632399], + [-12.1003, 7.6284], + [-12.100999, 7.6245], + [-12.1064, 7.613399], + [-12.1075, 7.610099], + [-12.108299, 7.6036], + [-12.105399, 7.6048], + [-12.1004, 7.606399], + [-12.0969, 7.608099], + [-12.094499, 7.608599], + [-12.092, 7.608199], + [-12.0873, 7.6059], + [-12.0838, 7.6039], + [-12.082047, 7.602389], + [-12.081397, 7.603276], + [-12.080322, 7.606887], + [-12.079913, 7.608711], + [-12.080953, 7.611], + [-12.088747, 7.609584], + [-12.088749, 7.609585], + [-12.08625, 7.61375], + [-12.085609, 7.61759], + [-12.083188, 7.617662], + [-12.080977, 7.617145], + [-12.076859, 7.617621], + [-12.079582, 7.62375], + [-12.079583, 7.627917], + [-12.080417, 7.636249], + [-12.083066, 7.63625], + [-12.080959, 7.639901], + [-12.084864, 7.646667], + [-12.080959, 7.653432], + [-12.075202, 7.653433], + [-12.079583, 7.657083], + [-12.081953, 7.657084], + [-12.081123, 7.658523], + [-12.08503, 7.665288], + [-12.090543, 7.665289], + [-12.08875, 7.667084], + [-12.08875, 7.680378], + [-12.093288, 7.680379], + [-12.095822, 7.684768], + [-12.0992, 7.680599], + [-12.105999, 7.6682], + [-12.109199, 7.6643], + [-12.112, 7.661699], + [-12.117699, 7.6579], + [-12.122899, 7.6535] + ] + ], + "type": "Polygon" + }, + "id": 430, + "properties": { + "cc:admin:id": ["65"], + "cc:oBld:total": 2, + "cc:pop:fifteen-to-twenty-four": 277.71538929518164, + "cc:pop:grid3-total": 1261.2372110805943, + "cc:pop:kontur-total": 1606.5714562457629, + "cc:pop:men": 713.4726728040092, + "cc:pop:sixty-plus": 99.9338151934078, + "cc:pop:total": 1480.084130744423, + "cc:pop:under-five": 251.12429810343278, + "cc:pop:women": 766.6114579404135, + "cc:pop:women-fiften-to-forty-nine": 366.89244498358676, + "cc:pop:wp-total": 1129.6835562264146, + "cc:pop:wp-total-UN": 1308.6834663105342, + "cc:id": "430", + "cc:Name": "Moyowa MCHP", + "cc:site": [-12.1005, 7.6449], + "user:parentName": "Jong", + "user:code": "OU_197387", + "user:orgUnitId": "sY1WN6LjmAx", + "user:level": "4", + "user:parentId": "VCtF1DbspR5" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.230417, 8.731249], + [-13.230416, 8.730416], + [-13.226127, 8.725413], + [-13.226448, 8.724936], + [-13.227585, 8.723766], + [-13.230187, 8.722745], + [-13.230163, 8.722667], + [-13.22893, 8.72212], + [-13.226012, 8.721481], + [-13.224895, 8.720818], + [-13.224407, 8.720351], + [-13.224113, 8.720227], + [-13.225724, 8.71951], + [-13.226385, 8.719079], + [-13.228386, 8.717917], + [-13.227916, 8.717916], + [-13.224582, 8.714583], + [-13.223749, 8.714582], + [-13.21875, 8.712082], + [-13.220026, 8.708891], + [-13.218349, 8.708884], + [-13.218257, 8.708937], + [-13.217917, 8.707916], + [-13.217917, 8.707083], + [-13.222916, 8.702083], + [-13.222916, 8.701696], + [-13.219099, 8.7032], + [-13.2126, 8.704099], + [-13.2091, 8.704999], + [-13.206199, 8.7072], + [-13.203599, 8.7105], + [-13.201399, 8.7144], + [-13.198299, 8.717899], + [-13.194999, 8.7194], + [-13.1861, 8.7244], + [-13.1839, 8.7288], + [-13.183199, 8.735699], + [-13.180799, 8.7404], + [-13.176899, 8.743899], + [-13.1698, 8.746799], + [-13.1659, 8.7454], + [-13.165495, 8.745038], + [-13.164748, 8.746027], + [-13.163088, 8.746169], + [-13.161257, 8.74602], + [-13.160464, 8.74616], + [-13.159809, 8.746163], + [-13.161249, 8.756249], + [-13.157917, 8.757083], + [-13.154582, 8.760416], + [-13.150417, 8.760417], + [-13.150417, 8.762082], + [-13.150635, 8.763613], + [-13.155867, 8.763614], + [-13.159772, 8.770379], + [-13.160416, 8.77038], + [-13.160416, 8.77443], + [-13.159244, 8.774785], + [-13.157917, 8.775352], + [-13.157917, 8.775416], + [-13.161249, 8.782917], + [-13.160417, 8.786249], + [-13.15875, 8.787083], + [-13.158443, 8.788309], + [-13.158654, 8.788346], + [-13.158653, 8.78886], + [-13.159081, 8.788951], + [-13.159167, 8.789636], + [-13.16072, 8.789515], + [-13.162012, 8.790165], + [-13.162016, 8.789651], + [-13.162532, 8.78978], + [-13.162766, 8.789774], + [-13.163749, 8.791249], + [-13.164219, 8.792659], + [-13.164218, 8.792659], + [-13.164072, 8.792622], + [-13.163815, 8.792364], + [-13.163037, 8.79236], + [-13.162652, 8.791973], + [-13.162783, 8.791458], + [-13.161486, 8.791967], + [-13.16135, 8.793511], + [-13.161089, 8.793769], + [-13.161087, 8.794283], + [-13.161215, 8.794541], + [-13.16225, 8.794547], + [-13.161724, 8.796347], + [-13.161982, 8.796349], + [-13.162243, 8.796094], + [-13.162498, 8.796866], + [-13.163017, 8.796611], + [-13.16302, 8.796097], + [-13.163278, 8.796098], + [-13.163277, 8.796613], + [-13.163383, 8.796614], + [-13.163384, 8.796615], + [-13.162916, 8.797082], + [-13.162083, 8.797083], + [-13.159583, 8.802082], + [-13.159582, 8.80375], + [-13.159071, 8.805799], + [-13.1626, 8.8061], + [-13.167099, 8.807299], + [-13.177, 8.8119], + [-13.177199, 8.8155], + [-13.171, 8.821699], + [-13.1689, 8.825], + [-13.1681, 8.8289], + [-13.168899, 8.833099], + [-13.169082, 8.833727], + [-13.169136, 8.83375], + [-13.170416, 8.833749], + [-13.17114, 8.830132], + [-13.171335, 8.830084], + [-13.171533, 8.829942], + [-13.171689, 8.829825], + [-13.171787, 8.829763], + [-13.172715, 8.830071], + [-13.172978, 8.830488], + [-13.173037, 8.83061], + [-13.173267, 8.831139], + [-13.173459, 8.83134], + [-13.173723, 8.831388], + [-13.174141, 8.831319], + [-13.174286, 8.831144], + [-13.174523, 8.830662], + [-13.174603, 8.83061], + [-13.174763, 8.830635], + [-13.17487, 8.830636], + [-13.175074, 8.830598], + [-13.175386, 8.830407], + [-13.175637, 8.83019], + [-13.175718, 8.830021], + [-13.175756, 8.829904], + [-13.175901, 8.829613], + [-13.17603, 8.829501], + [-13.176437, 8.829189], + [-13.175791, 8.829251], + [-13.17579, 8.829249], + [-13.179582, 8.827083], + [-13.180417, 8.827917], + [-13.185416, 8.828749], + [-13.187082, 8.828749], + [-13.188749, 8.822083], + [-13.18875, 8.82125], + [-13.189411, 8.821439], + [-13.189571, 8.822506], + [-13.192685, 8.821105], + [-13.19562, 8.820511], + [-13.19625, 8.822082], + [-13.199707, 8.823235], + [-13.199954, 8.818176], + [-13.201769, 8.81754], + [-13.202811, 8.816387], + [-13.203588, 8.816518], + [-13.204369, 8.815749], + [-13.205406, 8.815497], + [-13.206249, 8.8155], + [-13.20625, 8.814582], + [-13.213425, 8.810995], + [-13.213591, 8.810512], + [-13.214203, 8.809734], + [-13.21204, 8.805837], + [-13.21245, 8.805353], + [-13.213113, 8.805262], + [-13.213553, 8.803062], + [-13.213665, 8.803086], + [-13.214582, 8.80125], + [-13.20875, 8.794582], + [-13.209583, 8.792916], + [-13.213749, 8.791249], + [-13.214372, 8.788136], + [-13.214303, 8.788107], + [-13.216249, 8.782917], + [-13.212917, 8.782916], + [-13.212917, 8.777473], + [-13.213481, 8.777293], + [-13.214599, 8.776516], + [-13.217242, 8.776591], + [-13.218272, 8.776485], + [-13.217917, 8.775416], + [-13.222916, 8.773749], + [-13.229582, 8.767916], + [-13.226249, 8.762917], + [-13.220417, 8.761249], + [-13.222916, 8.757082], + [-13.220417, 8.752082], + [-13.219582, 8.744583], + [-13.217083, 8.742917], + [-13.217083, 8.740417], + [-13.222082, 8.737083], + [-13.227916, 8.737083], + [-13.229582, 8.736249], + [-13.229583, 8.732766], + [-13.229907, 8.732774], + [-13.230417, 8.731249] + ] + ], + "type": "Polygon" + }, + "id": 431, + "properties": { + "cc:admin:id": ["74"], + "cc:oBld:total": 153, + "cc:pop:fifteen-to-twenty-four": 1537.9129904598356, + "cc:pop:grid3-total": 4201.168108210551, + "cc:pop:kontur-total": 9017.626190355108, + "cc:pop:men": 4001.4810250880655, + "cc:pop:sixty-plus": 462.9883915344908, + "cc:pop:total": 8496.97995315898, + "cc:pop:under-five": 1318.5714833501654, + "cc:pop:women": 4495.498928070919, + "cc:pop:women-fiften-to-forty-nine": 2235.8294878894903, + "cc:pop:wp-total": 8067.825812434049, + "cc:pop:wp-total-UN": 9353.482329460907, + "cc:id": "431", + "cc:Name": "Musaia CHP", + "cc:site": [-13.18594, 8.79137], + "user:parentName": "Lokomasama", + "user:code": "OU_254986", + "user:orgUnitId": "sTOXJA2KcY2", + "user:level": "4", + "user:parentId": "fRLX08WHWpL" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.681991, 8.086036], + [-11.681999, 8.085699], + [-11.6819, 8.0779], + [-11.6812, 8.0728], + [-11.6785, 8.0662], + [-11.677899, 8.0637], + [-11.6728, 8.0637], + [-11.6679, 8.064299], + [-11.662399, 8.0665], + [-11.658699, 8.0672], + [-11.6535, 8.067499], + [-11.6189, 8.0675], + [-11.6137, 8.0673], + [-11.610799, 8.066599], + [-11.602, 8.0623], + [-11.5959, 8.0572], + [-11.5917, 8.0541], + [-11.591916, 8.076783], + [-11.594583, 8.07625], + [-11.597082, 8.079583], + [-11.597083, 8.081249], + [-11.600417, 8.08125], + [-11.602917, 8.087916], + [-11.603749, 8.087917], + [-11.60375, 8.088749], + [-11.604582, 8.08875], + [-11.604583, 8.095416], + [-11.606249, 8.09625], + [-11.607082, 8.098749], + [-11.607083, 8.099583], + [-11.607917, 8.099584], + [-11.608749, 8.104583], + [-11.607916, 8.106249], + [-11.602917, 8.10625], + [-11.602916, 8.113749], + [-11.599583, 8.117917], + [-11.600416, 8.121249], + [-11.600417, 8.122083], + [-11.599582, 8.122084], + [-11.59875, 8.126249], + [-11.59875, 8.128651], + [-11.603184, 8.128251], + [-11.60453, 8.127864], + [-11.60625, 8.129583], + [-11.612082, 8.131249], + [-11.615416, 8.129584], + [-11.61625, 8.132083], + [-11.624582, 8.132916], + [-11.622083, 8.13875], + [-11.622917, 8.144583], + [-11.63125, 8.142917], + [-11.632916, 8.149583], + [-11.627917, 8.157083], + [-11.640417, 8.157917], + [-11.641249, 8.167083], + [-11.642082, 8.167917], + [-11.642082, 8.170416], + [-11.639583, 8.172917], + [-11.639582, 8.17375], + [-11.637917, 8.176249], + [-11.642916, 8.18125], + [-11.642916, 8.184583], + [-11.642083, 8.185417], + [-11.642083, 8.193749], + [-11.642412, 8.194734], + [-11.6434, 8.194499], + [-11.6465, 8.1943], + [-11.649, 8.1949], + [-11.6538, 8.197199], + [-11.658099, 8.197699], + [-11.660999, 8.196699], + [-11.6635, 8.193799], + [-11.6643, 8.191099], + [-11.664599, 8.1858], + [-11.665299, 8.1825], + [-11.668999, 8.1749], + [-11.6707, 8.172599], + [-11.677399, 8.1655], + [-11.680999, 8.160699], + [-11.6785, 8.1569], + [-11.676, 8.1541], + [-11.6726, 8.1511], + [-11.669299, 8.148699], + [-11.667999, 8.146899], + [-11.6657, 8.1412], + [-11.6622, 8.1365], + [-11.6607, 8.133399], + [-11.661, 8.1301], + [-11.6625, 8.126599], + [-11.6639, 8.120699], + [-11.667799, 8.1124], + [-11.669299, 8.1102], + [-11.674899, 8.1042], + [-11.6776, 8.100699], + [-11.679, 8.097499], + [-11.6812, 8.093099], + [-11.681899, 8.0895], + [-11.681991, 8.086036] + ] + ], + "type": "Polygon" + }, + "id": 432, + "properties": { + "cc:admin:id": ["98"], + "cc:oBld:total": 56, + "cc:pop:fifteen-to-twenty-four": 1631.5271801371428, + "cc:pop:grid3-total": 6181.752039706859, + "cc:pop:kontur-total": 8217.244410615658, + "cc:pop:men": 4273.8115229827135, + "cc:pop:sixty-plus": 649.3319350495361, + "cc:pop:total": 9105.460284050178, + "cc:pop:under-five": 1526.5814414328925, + "cc:pop:women": 4831.648761067465, + "cc:pop:women-fiften-to-forty-nine": 2289.4513785792433, + "cc:pop:wp-total": 7752.175366995634, + "cc:pop:wp-total-UN": 9002.75494456605, + "cc:id": "432", + "cc:Name": "Nengbema CHC", + "cc:site": [-11.6528, 8.1271], + "user:parentName": "Niawa Lenga", + "user:code": "OU_1082", + "user:orgUnitId": "rm60vuHyQXj", + "user:level": "4", + "user:parentId": "I4jWcnFmgEC" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.794793, 8.736119], + [-12.793834, 8.73681], + [-12.792535, 8.736775], + [-12.791595, 8.736077], + [-12.791251, 8.736408], + [-12.79125, 8.736407], + [-12.791249, 8.735416], + [-12.789934, 8.732126], + [-12.791006, 8.731827], + [-12.791963, 8.73131], + [-12.792126, 8.730975], + [-12.790265, 8.731746], + [-12.789731, 8.731622], + [-12.789582, 8.73125], + [-12.785417, 8.731249], + [-12.784582, 8.730417], + [-12.78375, 8.730416], + [-12.783749, 8.729583], + [-12.781014, 8.72832], + [-12.781051, 8.728285], + [-12.781986, 8.727733], + [-12.782452, 8.727695], + [-12.783581, 8.728105], + [-12.782621, 8.727092], + [-12.781856, 8.726874], + [-12.780545, 8.72772], + [-12.780347, 8.728012], + [-12.774248, 8.725197], + [-12.774229, 8.724576], + [-12.773883, 8.723023], + [-12.773815, 8.72153], + [-12.773792, 8.721339], + [-12.775371, 8.721615], + [-12.775555, 8.720803], + [-12.77268, 8.718156], + [-12.772742, 8.715985], + [-12.773197, 8.711927], + [-12.774152, 8.709316], + [-12.774273, 8.707659], + [-12.774103, 8.70703], + [-12.773008, 8.705606], + [-12.772352, 8.705165], + [-12.771869, 8.704405], + [-12.77115, 8.703241], + [-12.771135, 8.703249], + [-12.770868, 8.702832], + [-12.770531, 8.703059], + [-12.769782, 8.703169], + [-12.769346, 8.702849], + [-12.769069, 8.702044], + [-12.769014, 8.701112], + [-12.76917, 8.700645], + [-12.769625, 8.700371], + [-12.770115, 8.700882], + [-12.770668, 8.701144], + [-12.770671, 8.699979], + [-12.770585, 8.699786], + [-12.769912, 8.700095], + [-12.769292, 8.699995], + [-12.768865, 8.699208], + [-12.768115, 8.698313], + [-12.767856, 8.698166], + [-12.767412, 8.698376], + [-12.766949, 8.697369], + [-12.766514, 8.697041], + [-12.765996, 8.696967], + [-12.765693, 8.69665], + [-12.765616, 8.696603], + [-12.764193, 8.695696], + [-12.764127, 8.695367], + [-12.763813, 8.695166], + [-12.762527, 8.695549], + [-12.761824, 8.695102], + [-12.761314, 8.695741], + [-12.76125, 8.695745], + [-12.761249, 8.694576], + [-12.75903, 8.693662], + [-12.758426, 8.693311], + [-12.759776, 8.689932], + [-12.75949, 8.689871], + [-12.758768, 8.68839], + [-12.758028, 8.688169], + [-12.757492, 8.687512], + [-12.757214, 8.68667], + [-12.756891, 8.686331], + [-12.755789, 8.686039], + [-12.754919, 8.686019], + [-12.753473, 8.685335], + [-12.752233, 8.685634], + [-12.751793, 8.686028], + [-12.751791, 8.686028], + [-12.752001, 8.685177], + [-12.752403, 8.685146], + [-12.752328, 8.684614], + [-12.75266, 8.684174], + [-12.753075, 8.684249], + [-12.75319, 8.684725], + [-12.75355, 8.685081], + [-12.754903, 8.68511], + [-12.755831, 8.685633], + [-12.756418, 8.685137], + [-12.756522, 8.684791], + [-12.756411, 8.684337], + [-12.756412, 8.684336], + [-12.756997, 8.685053], + [-12.75747, 8.684988], + [-12.757602, 8.685277], + [-12.757385, 8.68555], + [-12.757385, 8.685933], + [-12.758009, 8.687131], + [-12.758076, 8.687552], + [-12.758577, 8.687403], + [-12.758785, 8.687562], + [-12.760077, 8.68918], + [-12.761249, 8.68625], + [-12.758574, 8.680901], + [-12.757964, 8.681199], + [-12.755737, 8.6816], + [-12.755046, 8.681901], + [-12.754076, 8.682694], + [-12.754307, 8.680381], + [-12.754243, 8.679417], + [-12.75428, 8.678095], + [-12.75409, 8.677404], + [-12.753878, 8.676936], + [-12.754068, 8.67625], + [-12.747083, 8.676249], + [-12.747083, 8.672083], + [-12.750416, 8.664583], + [-12.74875, 8.660417], + [-12.742917, 8.662083], + [-12.742916, 8.651454], + [-12.740767, 8.652115], + [-12.738467, 8.651671], + [-12.735831, 8.651144], + [-12.734727, 8.650686], + [-12.733339, 8.649181], + [-12.732896, 8.648901], + [-12.733912, 8.646325], + [-12.734336, 8.645778], + [-12.738759, 8.641884], + [-12.739039, 8.641598], + [-12.73877, 8.641504], + [-12.737192, 8.640841], + [-12.736834, 8.640523], + [-12.73577, 8.640166], + [-12.73375, 8.639833], + [-12.73375, 8.63625], + [-12.734582, 8.634584], + [-12.732082, 8.63125], + [-12.727917, 8.629584], + [-12.729582, 8.637083], + [-12.729276, 8.637697], + [-12.731164, 8.638665], + [-12.730647, 8.639381], + [-12.72976, 8.640139], + [-12.7296, 8.64051], + [-12.729645, 8.64144], + [-12.728422, 8.64274], + [-12.727545, 8.643414], + [-12.727432, 8.643998], + [-12.725588, 8.644405], + [-12.725289, 8.644976], + [-12.724039, 8.645229], + [-12.723943, 8.646054], + [-12.723577, 8.647503], + [-12.72271, 8.650025], + [-12.722774, 8.650891], + [-12.722265, 8.651692], + [-12.721637, 8.65199], + [-12.720822, 8.653314], + [-12.720697, 8.653587], + [-12.723915, 8.659282], + [-12.726623, 8.66404], + [-12.726457, 8.663994], + [-12.722371, 8.666207], + [-12.72112, 8.667065], + [-12.722739, 8.669871], + [-12.721754, 8.671578], + [-12.72125, 8.672083], + [-12.720417, 8.675416], + [-12.71875, 8.677083], + [-12.718749, 8.682479], + [-12.716532, 8.681676], + [-12.712347, 8.678689], + [-12.71219, 8.678643], + [-12.707916, 8.682916], + [-12.704583, 8.684583], + [-12.704583, 8.689582], + [-12.712082, 8.695417], + [-12.711618, 8.697273], + [-12.71102, 8.69624], + [-12.710085, 8.69465], + [-12.707727, 8.69597], + [-12.710404, 8.7007], + [-12.71108, 8.701908], + [-12.700586, 8.707849], + [-12.701655, 8.709747], + [-12.702785, 8.711743], + [-12.703874, 8.713684], + [-12.705819, 8.717162], + [-12.705357, 8.717129], + [-12.704939, 8.717558], + [-12.703605, 8.717184], + [-12.701653, 8.714189], + [-12.699561, 8.714469], + [-12.697751, 8.714469], + [-12.696587, 8.713534], + [-12.696624, 8.713253], + [-12.696275, 8.712945], + [-12.695868, 8.712859], + [-12.695745, 8.712355], + [-12.695924, 8.712035], + [-12.694276, 8.711007], + [-12.692912, 8.710903], + [-12.6923, 8.709803], + [-12.692111, 8.709016], + [-12.692678, 8.708804], + [-12.693246, 8.708182], + [-12.693398, 8.707842], + [-12.693206, 8.707571], + [-12.692485, 8.708443], + [-12.691481, 8.708473], + [-12.691176, 8.708413], + [-12.690161, 8.707311], + [-12.68934, 8.706929], + [-12.689483, 8.707691], + [-12.690345, 8.707822], + [-12.691176, 8.709075], + [-12.691208, 8.709566], + [-12.692028, 8.7105], + [-12.691877, 8.710991], + [-12.691461, 8.711303], + [-12.691319, 8.711683], + [-12.691612, 8.712365], + [-12.691389, 8.712846], + [-12.689493, 8.714632], + [-12.689796, 8.714652], + [-12.69071, 8.71395], + [-12.691694, 8.713098], + [-12.692253, 8.712346], + [-12.693673, 8.711594], + [-12.694526, 8.711945], + [-12.695297, 8.713819], + [-12.696149, 8.714481], + [-12.696728, 8.714532], + [-12.697062, 8.715073], + [-12.69762, 8.715143], + [-12.698524, 8.714894], + [-12.699996, 8.714953], + [-12.701191, 8.714601], + [-12.701696, 8.71511], + [-12.702557, 8.716484], + [-12.702618, 8.717095], + [-12.702315, 8.718019], + [-12.702365, 8.718499], + [-12.701918, 8.719101], + [-12.701412, 8.719022], + [-12.70059, 8.719382], + [-12.700325, 8.719112], + [-12.699879, 8.719112], + [-12.699736, 8.719412], + [-12.699188, 8.719323], + [-12.698276, 8.719694], + [-12.697372, 8.720587], + [-12.697297, 8.720623], + [-12.695283, 8.721294], + [-12.694464, 8.721137], + [-12.693874, 8.720797], + [-12.693208, 8.720747], + [-12.691065, 8.721429], + [-12.688123, 8.721649], + [-12.687392, 8.720847], + [-12.687635, 8.718521], + [-12.687352, 8.718761], + [-12.687229, 8.72001], + [-12.686827, 8.72089], + [-12.686439, 8.721343], + [-12.685465, 8.72177], + [-12.684145, 8.722904], + [-12.684432, 8.723046], + [-12.685762, 8.72257], + [-12.684491, 8.723841], + [-12.685361, 8.724098], + [-12.685269, 8.724686], + [-12.686942, 8.725773], + [-12.686941, 8.725774], + [-12.685417, 8.725332], + [-12.685417, 8.727083], + [-12.686249, 8.730416], + [-12.68125, 8.732083], + [-12.681249, 8.734582], + [-12.679201, 8.739364], + [-12.679219, 8.739368], + [-12.67922, 8.739369], + [-12.677917, 8.744582], + [-12.681376, 8.74516], + [-12.681338, 8.745241], + [-12.680804, 8.747731], + [-12.680905, 8.748326], + [-12.680706, 8.750738], + [-12.68039, 8.75112], + [-12.67938, 8.751842], + [-12.67826, 8.75324], + [-12.677954, 8.754417], + [-12.676242, 8.757074], + [-12.679582, 8.760417], + [-12.677487, 8.766005], + [-12.678004, 8.766487], + [-12.67712, 8.766339], + [-12.675403, 8.768011], + [-12.674406, 8.768699], + [-12.672666, 8.768814], + [-12.67146, 8.768356], + [-12.670556, 8.767783], + [-12.670508, 8.76682], + [-12.670243, 8.766721], + [-12.669929, 8.767698], + [-12.670124, 8.76923], + [-12.670384, 8.769765], + [-12.670466, 8.771243], + [-12.66875, 8.773918], + [-12.66875, 8.774582], + [-12.670416, 8.775416], + [-12.670844, 8.776485], + [-12.671499, 8.777027], + [-12.672291, 8.777921], + [-12.67315, 8.778512], + [-12.673496, 8.779084], + [-12.676089, 8.781121], + [-12.677106, 8.78162], + [-12.678456, 8.783276], + [-12.683712, 8.78678], + [-12.683751, 8.787083], + [-12.685416, 8.787916], + [-12.689582, 8.787082], + [-12.69125, 8.78125], + [-12.701249, 8.785416], + [-12.700417, 8.790416], + [-12.700417, 8.791736], + [-12.702633, 8.79101], + [-12.703703, 8.790893], + [-12.705612, 8.791163], + [-12.706772, 8.791502], + [-12.708418, 8.791108], + [-12.708886, 8.790781], + [-12.710989, 8.790018], + [-12.712673, 8.789031], + [-12.713829, 8.78867], + [-12.716155, 8.788258], + [-12.717839, 8.786939], + [-12.719348, 8.786362], + [-12.720269, 8.78583], + [-12.722233, 8.785176], + [-12.723327, 8.783939], + [-12.723616, 8.783349], + [-12.724002, 8.782925], + [-12.724876, 8.782487], + [-12.726359, 8.782119], + [-12.719606, 8.779869], + [-12.719487, 8.779695], + [-12.719314, 8.779154], + [-12.719085, 8.777707], + [-12.719239, 8.777313], + [-12.721682, 8.77761], + [-12.722566, 8.777253], + [-12.723373, 8.775869], + [-12.72331, 8.775526], + [-12.722823, 8.774918], + [-12.722814, 8.774431], + [-12.723069, 8.774015], + [-12.723647, 8.773626], + [-12.72429, 8.773547], + [-12.724631, 8.773728], + [-12.725096, 8.775583], + [-12.725518, 8.776087], + [-12.726195, 8.776026], + [-12.727236, 8.774697], + [-12.727335, 8.773912], + [-12.726399, 8.771789], + [-12.725915, 8.769926], + [-12.726593, 8.769087], + [-12.728363, 8.768681], + [-12.730675, 8.76867], + [-12.733321, 8.768309], + [-12.736262, 8.766943], + [-12.737577, 8.765057], + [-12.738989, 8.764086], + [-12.739598, 8.763911], + [-12.742393, 8.763945], + [-12.743758, 8.76414], + [-12.745256, 8.764944], + [-12.745905, 8.764978], + [-12.749091, 8.764457], + [-12.750765, 8.764352], + [-12.752983, 8.76557], + [-12.753476, 8.765575], + [-12.755454, 8.76522], + [-12.756246, 8.764175], + [-12.757301, 8.763364], + [-12.758768, 8.762621], + [-12.760639, 8.761348], + [-12.761564, 8.760946], + [-12.762365, 8.760922], + [-12.762659, 8.761242], + [-12.762822, 8.762502], + [-12.763188, 8.762429], + [-12.763485, 8.762816], + [-12.765237, 8.763581], + [-12.766898, 8.764843], + [-12.767245, 8.765761], + [-12.767383, 8.766864], + [-12.767756, 8.767248], + [-12.769228, 8.765908], + [-12.770246, 8.765902], + [-12.770523, 8.764499], + [-12.770982, 8.763704], + [-12.771788, 8.763044], + [-12.772347, 8.76282], + [-12.772327, 8.762436], + [-12.771871, 8.752972], + [-12.771587, 8.751729], + [-12.771125, 8.750807], + [-12.77033, 8.749875], + [-12.769733, 8.749423], + [-12.767756, 8.748616], + [-12.767756, 8.748615], + [-12.768139, 8.748609], + [-12.77055, 8.749288], + [-12.771479, 8.749545], + [-12.775428, 8.750936], + [-12.7761, 8.751037], + [-12.777032, 8.752692], + [-12.776985, 8.752738], + [-12.777155, 8.753473], + [-12.778378, 8.752733], + [-12.778614, 8.752554], + [-12.779317, 8.751977], + [-12.779718, 8.751593], + [-12.779488, 8.751139], + [-12.779426, 8.751023], + [-12.779427, 8.751021], + [-12.779986, 8.750937], + [-12.780896, 8.750892], + [-12.782334, 8.751504], + [-12.782159, 8.751266], + [-12.782621, 8.75115], + [-12.782949, 8.750706], + [-12.782001, 8.750225], + [-12.781383, 8.749958], + [-12.781243, 8.749914], + [-12.780742, 8.749435], + [-12.780199, 8.748339], + [-12.779788, 8.746958], + [-12.779808, 8.74695], + [-12.780244, 8.746855], + [-12.780565, 8.746936], + [-12.780758, 8.747213], + [-12.781144, 8.747237], + [-12.782653, 8.746677], + [-12.782921, 8.746392], + [-12.783516, 8.746512], + [-12.784379, 8.74702], + [-12.784518, 8.747923], + [-12.785637, 8.747419], + [-12.786463, 8.747556], + [-12.786463, 8.747558], + [-12.786165, 8.747939], + [-12.786402, 8.748736], + [-12.786695, 8.748793], + [-12.78786, 8.747773], + [-12.787727, 8.746881], + [-12.787489, 8.746943], + [-12.787425, 8.746754], + [-12.787497, 8.74651], + [-12.787832, 8.745407], + [-12.788269, 8.744901], + [-12.788517, 8.744192], + [-12.788868, 8.744216], + [-12.788933, 8.744814], + [-12.789316, 8.745106], + [-12.790056, 8.744751], + [-12.790631, 8.743892], + [-12.790607, 8.743716], + [-12.790439, 8.74342], + [-12.789714, 8.743805], + [-12.789284, 8.743797], + [-12.789179, 8.742529], + [-12.788995, 8.742418], + [-12.788725, 8.742433], + [-12.788558, 8.742347], + [-12.788398, 8.742111], + [-12.788813, 8.740786], + [-12.78898, 8.740588], + [-12.789244, 8.740375], + [-12.789491, 8.740241], + [-12.789985, 8.740023], + [-12.791988, 8.739702], + [-12.79202, 8.73949], + [-12.790416, 8.739341], + [-12.790287, 8.739138], + [-12.792171, 8.737138], + [-12.79285, 8.73751], + [-12.793474, 8.737435], + [-12.794793, 8.736119] + ] + ], + "type": "Polygon" + }, + "id": 433, + "properties": { + "cc:admin:id": ["80"], + "cc:oBld:total": 662, + "cc:pop:fifteen-to-twenty-four": 1576.5044627480445, + "cc:pop:grid3-total": 5249.073091261847, + "cc:pop:kontur-total": 8909.396374166165, + "cc:pop:men": 3986.5140217463477, + "cc:pop:sixty-plus": 445.3442292543429, + "cc:pop:total": 8677.654046406558, + "cc:pop:under-five": 1342.754951743122, + "cc:pop:women": 4691.140024660209, + "cc:pop:women-fiften-to-forty-nine": 2297.8837320657703, + "cc:pop:wp-total": 7371.91163274846, + "cc:pop:wp-total-UN": 8549.842376363144, + "cc:id": "433", + "cc:Name": "New Maforkie CHP", + "cc:site": [-12.762, 8.747], + "user:parentName": "Maforki", + "user:code": "OU_254948", + "user:orgUnitId": "lzz1UhTzO4E", + "user:level": "4", + "user:parentId": "JdqfYTIFZXN" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.039297, 8.370102], + [-13.03906, 8.36964], + [-13.038432, 8.369556], + [-13.037403, 8.368858], + [-13.036811, 8.368432], + [-13.035922, 8.367519], + [-13.034962, 8.367176], + [-13.034051, 8.367389], + [-13.033245, 8.367566], + [-13.032464, 8.367472], + [-13.032346, 8.367069], + [-13.032382, 8.366442], + [-13.032678, 8.365742], + [-13.033282, 8.365282], + [-13.03379, 8.365115], + [-13.034264, 8.364654], + [-13.034738, 8.364216], + [-13.035117, 8.364204], + [-13.035744, 8.364641], + [-13.036183, 8.364913], + [-13.036977, 8.364878], + [-13.037295, 8.364499], + [-13.037533, 8.36393], + [-13.037591, 8.363458], + [-13.03745, 8.36303], + [-13.037439, 8.362403], + [-13.03751, 8.361966], + [-13.037816, 8.361645], + [-13.037935, 8.361172], + [-13.037591, 8.360876], + [-13.036775, 8.360829], + [-13.036632, 8.361066], + [-13.036242, 8.361953], + [-13.036087, 8.362345], + [-13.035697, 8.362628], + [-13.035165, 8.362557], + [-13.034702, 8.362119], + [-13.033979, 8.361526], + [-13.033593, 8.360965], + [-13.032917, 8.3603], + [-13.032316, 8.359345], + [-13.032188, 8.358352], + [-13.032289, 8.356846], + [-13.032348, 8.355357], + [-13.03235, 8.355357], + [-13.032781, 8.359505], + [-13.033749, 8.357083], + [-13.033749, 8.350417], + [-13.029834, 8.346501], + [-13.030141, 8.345448], + [-13.030126, 8.345436], + [-13.030228, 8.345148], + [-13.030204, 8.344956], + [-13.029814, 8.344115], + [-13.029802, 8.343339], + [-13.030137, 8.343054], + [-13.030254, 8.342206], + [-13.030969, 8.342165], + [-13.030975, 8.341707], + [-13.030933, 8.341242], + [-13.030924, 8.340801], + [-13.030616, 8.340759], + [-13.030524, 8.340525], + [-13.030557, 8.340183], + [-13.031522, 8.338358], + [-13.03155, 8.337898], + [-13.031553, 8.337717], + [-13.03153, 8.336728], + [-13.029647, 8.336863], + [-13.029634, 8.336744], + [-13.029641, 8.336403], + [-13.029674, 8.335832], + [-13.029648, 8.335475], + [-13.032348, 8.33557], + [-13.032918, 8.33558], + [-13.034524, 8.33554], + [-13.035615, 8.33539], + [-13.034512, 8.335486], + [-13.029654, 8.335339], + [-13.029642, 8.335129], + [-13.029629, 8.334767], + [-13.029769, 8.334771], + [-13.029712, 8.334015], + [-13.029476, 8.333115], + [-13.029242, 8.332094], + [-13.030749, 8.331609], + [-13.031892, 8.331223], + [-13.032075, 8.330549], + [-13.031742, 8.329793], + [-13.0317, 8.329676], + [-13.032511, 8.328858], + [-13.032163, 8.328327], + [-13.032002, 8.328044], + [-13.031194, 8.327106], + [-13.030674, 8.327475], + [-13.030257, 8.327517], + [-13.030024, 8.327247], + [-13.028286, 8.325495], + [-13.028099, 8.325054], + [-13.028481, 8.324417], + [-13.028932, 8.323554], + [-13.029869, 8.322686], + [-13.028367, 8.322621], + [-13.028337, 8.321572], + [-13.028429, 8.321288], + [-13.028479, 8.321223], + [-13.027939, 8.320628], + [-13.02737, 8.320438], + [-13.027588, 8.320842], + [-13.027398, 8.321222], + [-13.02786, 8.322636], + [-13.02754, 8.322751], + [-13.026109, 8.323478], + [-13.025549, 8.322695], + [-13.025524, 8.322664], + [-13.024935, 8.322866], + [-13.024297, 8.323118], + [-13.02411, 8.323249], + [-13.023797, 8.323288], + [-13.02292, 8.323195], + [-13.022133, 8.323338], + [-13.021547, 8.323352], + [-13.020891, 8.323879], + [-13.020015, 8.324182], + [-13.018749, 8.322917], + [-13.014583, 8.322916], + [-13.013749, 8.31875], + [-13.012082, 8.317084], + [-13.010417, 8.317917], + [-13.00972, 8.320002], + [-13.008506, 8.319428], + [-13.007258, 8.318658], + [-13.004762, 8.316871], + [-13.003344, 8.315835], + [-13.001471, 8.31529], + [-13.000542, 8.315566], + [-13.000043, 8.3154], + [-12.998749, 8.315563], + [-12.997906, 8.31534], + [-12.996844, 8.315448], + [-12.996351, 8.315229], + [-12.995995, 8.314768], + [-12.995417, 8.314711], + [-12.995416, 8.314583], + [-12.992917, 8.312084], + [-12.992082, 8.30875], + [-12.990416, 8.307084], + [-12.987917, 8.307084], + [-12.98375, 8.30875], + [-12.98125, 8.31375], + [-12.981249, 8.315417], + [-12.980706, 8.320311], + [-12.978929, 8.320312], + [-12.978786, 8.322094], + [-12.978369, 8.323192], + [-12.976902, 8.325707], + [-12.976983, 8.325776], + [-12.977517, 8.326093], + [-12.979824, 8.323534], + [-12.980295, 8.323437], + [-12.980845, 8.323788], + [-12.982672, 8.326447], + [-12.982947, 8.327813], + [-12.984521, 8.327866], + [-12.984854, 8.328536], + [-12.985433, 8.32885], + [-12.98581, 8.330691], + [-12.9863, 8.331496], + [-12.988243, 8.331653], + [-12.989849, 8.332457], + [-12.9914, 8.332101], + [-12.991657, 8.33213], + [-12.991666, 8.332221], + [-12.992083, 8.332084], + [-12.992916, 8.334583], + [-12.989583, 8.33625], + [-12.989583, 8.338749], + [-12.989833, 8.339248], + [-12.990462, 8.338962], + [-12.990733, 8.338825], + [-12.991248, 8.338573], + [-12.992793, 8.33786], + [-12.99315, 8.33768], + [-12.993236, 8.339285], + [-12.992161, 8.33988], + [-12.988943, 8.341725], + [-12.989, 8.341842], + [-12.989883, 8.34334], + [-12.990927, 8.34562], + [-12.990903, 8.346921], + [-12.992916, 8.346249], + [-12.994583, 8.34375], + [-12.997916, 8.344583], + [-12.999858, 8.343128], + [-12.999826, 8.344414], + [-12.999694, 8.346194], + [-13.000084, 8.346694], + [-12.99875, 8.34625], + [-12.99625, 8.350416], + [-13.000416, 8.350417], + [-13.001499, 8.350777], + [-13.001467, 8.350909], + [-13.002089, 8.350599], + [-13.002092, 8.350908], + [-13.001931, 8.35127], + [-13.001564, 8.35293], + [-13.002346, 8.353887], + [-13.003991, 8.355316], + [-13.004187, 8.355278], + [-13.004562, 8.354776], + [-13.004646, 8.354867], + [-13.004918, 8.355189], + [-13.00682, 8.355654], + [-13.007263, 8.355928], + [-13.006926, 8.356181], + [-13.006723, 8.357346], + [-13.006617, 8.357742], + [-13.006216, 8.357733], + [-13.005054, 8.358173], + [-13.004583, 8.359584], + [-13.005416, 8.363749], + [-13.007082, 8.364584], + [-13.007916, 8.367083], + [-13.008371, 8.367537], + [-13.010913, 8.367817], + [-13.009928, 8.368964], + [-13.010529, 8.370534], + [-13.012931, 8.369855], + [-13.013268, 8.371897], + [-13.014952, 8.370539], + [-13.035171, 8.373355], + [-13.035214, 8.372867], + [-13.03554, 8.372159], + [-13.035794, 8.371706], + [-13.03667, 8.370503], + [-13.037923, 8.370623], + [-13.03867, 8.371001], + [-13.039107, 8.37106], + [-13.039261, 8.370835], + [-13.039297, 8.370102] + ] + ], + "type": "Polygon" + }, + "id": 434, + "properties": { + "cc:admin:id": ["112"], + "cc:oBld:total": 3158, + "cc:pop:fifteen-to-twenty-four": 4326.891690238057, + "cc:pop:grid3-total": 11462.08440422695, + "cc:pop:kontur-total": 17121.26006333641, + "cc:pop:men": 8672.86882989575, + "cc:pop:sixty-plus": 1420.4765131972474, + "cc:pop:total": 18244.34459283029, + "cc:pop:under-five": 1946.46559162951, + "cc:pop:women": 9571.475762934542, + "cc:pop:women-fiften-to-forty-nine": 5138.244438636365, + "cc:pop:wp-total": 14082.629293982847, + "cc:pop:wp-total-UN": 16348.573156269562, + "cc:id": "434", + "cc:Name": "Newton CHC", + "cc:site": [-13.0212, 8.3336], + "user:parentName": "Rural Western Area", + "user:code": "OU_278382", + "user:orgUnitId": "m3VnSQbE8CD", + "user:level": "4", + "user:parentId": "qtr8GGlm4gg" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.065417, 8.598749], + [-11.065416, 8.597027], + [-11.064899, 8.597435], + [-11.06354, 8.597389], + [-11.064284, 8.5962], + [-11.063532, 8.595926], + [-11.063073, 8.595564], + [-11.063355, 8.595044], + [-11.063231, 8.594766], + [-11.062009, 8.595355], + [-11.061607, 8.596262], + [-11.061526, 8.596325], + [-11.061435, 8.596165], + [-11.061035, 8.595917], + [-11.057516, 8.594004], + [-11.057465, 8.593978], + [-11.057461, 8.593924], + [-11.058646, 8.593198], + [-11.058908, 8.592497], + [-11.058307, 8.592159], + [-11.057145, 8.592083], + [-11.056773, 8.592061], + [-11.055211, 8.59226], + [-11.054861, 8.592038], + [-11.05474, 8.591527], + [-11.054741, 8.591525], + [-11.054735, 8.591506], + [-11.054646, 8.591134], + [-11.054435, 8.590823], + [-11.052765, 8.590088], + [-11.049596, 8.591654], + [-11.048122, 8.590699], + [-11.047409, 8.589911], + [-11.047136, 8.589856], + [-11.046745, 8.590004], + [-11.045921, 8.590775], + [-11.04548, 8.591413], + [-11.045134, 8.592458], + [-11.044939, 8.592551], + [-11.044403, 8.592457], + [-11.043534, 8.592859], + [-11.043474, 8.592924], + [-11.042917, 8.589584], + [-11.042916, 8.587917], + [-11.037083, 8.587916], + [-11.036514, 8.586212], + [-11.036325, 8.586255], + [-11.03562, 8.586692], + [-11.03496, 8.587695], + [-11.034031, 8.58991], + [-11.033376, 8.591178], + [-11.027919, 8.587084], + [-11.033749, 8.587083], + [-11.039582, 8.583749], + [-11.034583, 8.57875], + [-11.02875, 8.580416], + [-11.026249, 8.57375], + [-11.024583, 8.573749], + [-11.023749, 8.572917], + [-11.02125, 8.572084], + [-11.020416, 8.570417], + [-11.017082, 8.572083], + [-11.012212, 8.571388], + [-11.011999, 8.5727], + [-11.0099, 8.577999], + [-11.0093, 8.580999], + [-11.0091, 8.587199], + [-11.009282, 8.595998], + [-11.009736, 8.596201], + [-11.0099, 8.595769], + [-11.009935, 8.595679], + [-11.009937, 8.595679], + [-11.010066, 8.596116], + [-11.010595, 8.5968], + [-11.01194, 8.597325], + [-11.012556, 8.597237], + [-11.014038, 8.598811], + [-11.014583, 8.598982], + [-11.01493, 8.599227], + [-11.015439, 8.599215], + [-11.016001, 8.599497], + [-11.018115, 8.599722], + [-11.019019, 8.600374], + [-11.020112, 8.601284], + [-11.020227, 8.601438], + [-11.020417, 8.60125], + [-11.02471, 8.602477], + [-11.024709, 8.602478], + [-11.024158, 8.602696], + [-11.023663, 8.60317], + [-11.023213, 8.606514], + [-11.02316, 8.606954], + [-11.023392, 8.607934], + [-11.02371, 8.608254], + [-11.024471, 8.607895], + [-11.026559, 8.607105], + [-11.028642, 8.606783], + [-11.028604, 8.606976], + [-11.028488, 8.60698], + [-11.028085, 8.607173], + [-11.027931, 8.608599], + [-11.028139, 8.609255], + [-11.027554, 8.610651], + [-11.028192, 8.611272], + [-11.028363, 8.611728], + [-11.029345, 8.612466], + [-11.029635, 8.613101], + [-11.029945, 8.612838], + [-11.029986, 8.612438], + [-11.029987, 8.612438], + [-11.030162, 8.613308], + [-11.030316, 8.613193], + [-11.030416, 8.6132], + [-11.030417, 8.614583], + [-11.032082, 8.615417], + [-11.030417, 8.624583], + [-11.029583, 8.624584], + [-11.029583, 8.629583], + [-11.036249, 8.636249], + [-11.034583, 8.642916], + [-11.035417, 8.643749], + [-11.038749, 8.64375], + [-11.040416, 8.644583], + [-11.042082, 8.637084], + [-11.040417, 8.635417], + [-11.040416, 8.634584], + [-11.03875, 8.633749], + [-11.040416, 8.630417], + [-11.039477, 8.629477], + [-11.04005, 8.628481], + [-11.036145, 8.621715], + [-11.039397, 8.616081], + [-11.040777, 8.616674], + [-11.041334, 8.616786], + [-11.042032, 8.616595], + [-11.041804, 8.616357], + [-11.03939, 8.615143], + [-11.039848, 8.614372], + [-11.039285, 8.613169], + [-11.039201, 8.613143], + [-11.038703, 8.612373], + [-11.038492, 8.612183], + [-11.038668, 8.611773], + [-11.039123, 8.610635], + [-11.039305, 8.610225], + [-11.039678, 8.609782], + [-11.04045, 8.609599], + [-11.040756, 8.609514], + [-11.040829, 8.609323], + [-11.041777, 8.608675], + [-11.042197, 8.608278], + [-11.040969, 8.606838], + [-11.041221, 8.606224], + [-11.041273, 8.605998], + [-11.041568, 8.604962], + [-11.041682, 8.604782], + [-11.041988, 8.604348], + [-11.04308, 8.603396], + [-11.04438, 8.601202], + [-11.045447, 8.599529], + [-11.046662, 8.599067], + [-11.047598, 8.600575], + [-11.047917, 8.600417], + [-11.049583, 8.601249], + [-11.054582, 8.600417], + [-11.055667, 8.602041], + [-11.055884, 8.60198], + [-11.056621, 8.601551], + [-11.058749, 8.602083], + [-11.065417, 8.598749] + ] + ], + "type": "Polygon" + }, + "id": 435, + "properties": { + "cc:admin:id": ["100"], + "cc:oBld:total": 435, + "cc:pop:fifteen-to-twenty-four": 946.604091030608, + "cc:pop:grid3-total": 6285.714778493051, + "cc:pop:kontur-total": 4499.279743900395, + "cc:pop:men": 2809.9512318130837, + "cc:pop:sixty-plus": 295.23793426011457, + "cc:pop:total": 5089.645044890086, + "cc:pop:under-five": 818.2690281087678, + "cc:pop:women": 2279.693813077002, + "cc:pop:women-fiften-to-forty-nine": 1143.0205871714438, + "cc:pop:wp-total": 4110.351303972021, + "cc:pop:wp-total-UN": 4757.74683560631, + "cc:id": "435", + "cc:Name": "Ngaiya MCHP", + "cc:site": [-11.0394, 8.6095], + "user:parentName": "Nimikoro", + "user:code": "OU_233404", + "user:orgUnitId": "YnuwSqXPx9H", + "user:level": "4", + "user:parentId": "DmaLM8WYmWv" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.591989, 8.084583], + [-11.5917, 8.0541], + [-11.591, 8.0501], + [-11.589599, 8.047499], + [-11.587399, 8.045699], + [-11.584047, 8.044112], + [-11.584302, 8.044705], + [-11.58608, 8.046823], + [-11.58125, 8.049584], + [-11.583749, 8.056249], + [-11.57875, 8.05875], + [-11.577916, 8.060417], + [-11.574583, 8.061249], + [-11.573749, 8.060417], + [-11.572082, 8.060416], + [-11.567083, 8.059584], + [-11.565416, 8.060416], + [-11.562083, 8.060416], + [-11.559582, 8.057084], + [-11.55125, 8.057084], + [-11.547083, 8.05875], + [-11.547617, 8.060622], + [-11.544313, 8.060623], + [-11.543749, 8.066249], + [-11.53875, 8.069583], + [-11.533749, 8.067084], + [-11.52625, 8.067083], + [-11.525416, 8.06625], + [-11.522083, 8.065417], + [-11.517082, 8.068749], + [-11.512917, 8.067917], + [-11.50963, 8.06923], + [-11.508436, 8.067771], + [-11.505417, 8.069584], + [-11.505416, 8.077917], + [-11.503749, 8.079583], + [-11.497917, 8.080417], + [-11.495417, 8.082084], + [-11.495416, 8.086249], + [-11.487917, 8.08625], + [-11.489582, 8.090417], + [-11.489582, 8.092084], + [-11.487083, 8.09375], + [-11.485416, 8.097084], + [-11.480417, 8.099584], + [-11.48125, 8.102916], + [-11.488749, 8.102917], + [-11.490416, 8.103749], + [-11.49625, 8.112916], + [-11.497917, 8.112084], + [-11.504583, 8.114583], + [-11.507927, 8.114584], + [-11.507924, 8.114608], + [-11.508759, 8.116095], + [-11.508979, 8.117721], + [-11.508745, 8.118394], + [-11.507875, 8.119469], + [-11.507023, 8.119993], + [-11.506129, 8.120905], + [-11.506033, 8.121626], + [-11.505769, 8.122083], + [-11.507082, 8.122084], + [-11.507917, 8.123749], + [-11.513749, 8.126249], + [-11.512917, 8.129583], + [-11.523749, 8.129584], + [-11.531249, 8.136249], + [-11.53125, 8.137084], + [-11.532916, 8.147916], + [-11.536249, 8.155416], + [-11.536456, 8.155416], + [-11.5364, 8.154899], + [-11.5366, 8.151299], + [-11.5377, 8.148099], + [-11.5402, 8.144099], + [-11.5418, 8.142699], + [-11.547999, 8.140599], + [-11.550899, 8.1384], + [-11.5534, 8.135699], + [-11.5564, 8.1316], + [-11.56, 8.129099], + [-11.5632, 8.125899], + [-11.565399, 8.123], + [-11.567199, 8.1191], + [-11.5689, 8.116899], + [-11.572299, 8.1138], + [-11.577699, 8.1109], + [-11.582199, 8.1073], + [-11.584899, 8.1045], + [-11.587299, 8.1015], + [-11.589099, 8.0975], + [-11.591, 8.093999], + [-11.5918, 8.090499], + [-11.591999, 8.0856], + [-11.591989, 8.084583] + ] + ], + "type": "Polygon" + }, + "id": 436, + "properties": { + "cc:admin:id": ["3"], + "cc:oBld:total": 29, + "cc:pop:fifteen-to-twenty-four": 1242.0687580128754, + "cc:pop:grid3-total": 6762.185408988462, + "cc:pop:kontur-total": 7229.460917082887, + "cc:pop:men": 3258.3194011077076, + "cc:pop:sixty-plus": 491.001835704578, + "cc:pop:total": 6982.3913491310195, + "cc:pop:under-five": 1165.0898416459222, + "cc:pop:women": 3724.071948023309, + "cc:pop:women-fiften-to-forty-nine": 1777.0264804916524, + "cc:pop:wp-total": 6572.389030484032, + "cc:pop:wp-total-UN": 7618.653260537516, + "cc:id": "436", + "cc:Name": "Ngalu CHC", + "cc:site": [-11.5574, 8.1074], + "user:parentName": "Bargbe", + "user:code": "OU_595", + "user:orgUnitId": "CvBAqD6RzLZ", + "user:level": "4", + "user:parentId": "dGheVylzol6" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.222171, 7.533798], + [-11.218265, 7.527033], + [-11.210453, 7.527033], + [-11.206547, 7.533798], + [-11.204879, 7.533798], + [-11.206249, 7.532083], + [-11.206249, 7.522917], + [-11.201249, 7.517917], + [-11.197377, 7.517916], + [-11.194828, 7.513501], + [-11.198733, 7.506735], + [-11.198622, 7.506542], + [-11.196546, 7.506353], + [-11.196237, 7.506735], + [-11.194712, 7.507864], + [-11.194006, 7.508793], + [-11.193333, 7.510707], + [-11.190123, 7.516996], + [-11.188182, 7.516847], + [-11.186769, 7.516017], + [-11.186102, 7.515387], + [-11.185753, 7.514699], + [-11.185473, 7.513488], + [-11.186283, 7.512084], + [-11.183749, 7.512084], + [-11.17375, 7.512916], + [-11.171249, 7.50125], + [-11.15875, 7.497084], + [-11.154583, 7.50125], + [-11.155417, 7.512916], + [-11.158545, 7.515421], + [-11.153107, 7.515421], + [-11.151604, 7.512821], + [-11.15125, 7.517083], + [-11.152917, 7.517084], + [-11.154998, 7.527493], + [-11.1532, 7.527494], + [-11.149298, 7.534252], + [-11.142916, 7.53125], + [-11.141638, 7.531676], + [-11.143242, 7.533801], + [-11.142239, 7.535539], + [-11.137651, 7.53554], + [-11.137083, 7.53625], + [-11.137082, 7.541389], + [-11.13217, 7.54139], + [-11.128264, 7.548155], + [-11.129756, 7.55074], + [-11.12875, 7.552084], + [-11.128749, 7.555416], + [-11.12375, 7.555417], + [-11.121998, 7.556584], + [-11.120176, 7.554859], + [-11.117641, 7.554859], + [-11.115416, 7.557083], + [-11.112165, 7.556788], + [-11.109373, 7.561624], + [-11.111487, 7.565286], + [-11.112916, 7.565417], + [-11.110416, 7.580416], + [-11.104583, 7.582084], + [-11.103749, 7.584584], + [-11.097083, 7.58625], + [-11.095416, 7.588749], + [-11.090417, 7.587084], + [-11.091249, 7.592083], + [-11.087083, 7.59375], + [-11.084583, 7.598749], + [-11.085416, 7.601249], + [-11.084583, 7.602917], + [-11.084582, 7.608749], + [-11.082075, 7.611258], + [-11.086699, 7.614899], + [-11.089299, 7.616399], + [-11.0915, 7.6169], + [-11.0942, 7.6171], + [-11.098899, 7.6171], + [-11.103499, 7.6169], + [-11.106099, 7.6165], + [-11.112199, 7.614], + [-11.118399, 7.6123], + [-11.1216, 7.610099], + [-11.124499, 7.6066], + [-11.1265, 7.602299], + [-11.1278, 7.600199], + [-11.129999, 7.5976], + [-11.1319, 7.596099], + [-11.134299, 7.595], + [-11.136916, 7.59536], + [-11.14125, 7.589584], + [-11.146607, 7.591592], + [-11.146607, 7.591594], + [-11.146477, 7.591703], + [-11.15125, 7.593749], + [-11.155416, 7.59375], + [-11.154583, 7.607916], + [-11.154841, 7.608432], + [-11.160979, 7.608433], + [-11.162832, 7.61164], + [-11.167916, 7.611249], + [-11.171249, 7.607083], + [-11.17125, 7.599584], + [-11.178577, 7.59885], + [-11.177997, 7.597416], + [-11.176714, 7.596283], + [-11.17625, 7.595258], + [-11.17625, 7.587916], + [-11.17688, 7.587287], + [-11.178175, 7.589529], + [-11.185986, 7.589529], + [-11.187346, 7.587174], + [-11.187302, 7.586596], + [-11.190244, 7.581499], + [-11.186339, 7.574734], + [-11.187568, 7.572604], + [-11.18757, 7.572605], + [-11.187454, 7.572977], + [-11.187708, 7.574994], + [-11.188199, 7.57642], + [-11.189425, 7.578536], + [-11.194724, 7.578536], + [-11.198553, 7.571905], + [-11.198508, 7.5719], + [-11.197157, 7.571663], + [-11.194828, 7.567627], + [-11.198733, 7.560862], + [-11.206546, 7.560861], + [-11.210452, 7.554096], + [-11.206547, 7.54733], + [-11.210452, 7.540564], + [-11.218265, 7.540563], + [-11.222171, 7.533798] + ] + ], + "type": "Polygon" + }, + "id": 437, + "properties": { + "cc:admin:id": ["138"], + "cc:oBld:total": 1796, + "cc:pop:fifteen-to-twenty-four": 2048.8088278091423, + "cc:pop:grid3-total": 7925.347009414623, + "cc:pop:kontur-total": 11138.04698160422, + "cc:pop:men": 4986.770712313275, + "cc:pop:sixty-plus": 684.0228349142659, + "cc:pop:total": 10414.869598051351, + "cc:pop:under-five": 1554.907021306783, + "cc:pop:women": 5428.098885738078, + "cc:pop:women-fiften-to-forty-nine": 2662.4023433998545, + "cc:pop:wp-total": 7564.163423035158, + "cc:pop:wp-total-UN": 8775.604560177242, + "cc:id": "437", + "cc:Name": "Ngegbwema CHC", + "cc:site": [-11.1552, 7.5797], + "user:parentName": "Tunkia", + "user:code": "OU_222641", + "user:orgUnitId": "P4upLKrpkHP", + "user:level": "4", + "user:parentId": "l7pFejMtUoF" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.453356, 8.104232], + [-11.4535, 8.103299], + [-11.4535, 8.0964], + [-11.4532, 8.0874], + [-11.452699, 8.083599], + [-11.4514, 8.078599], + [-11.4527, 8.072699], + [-11.453199, 8.067699], + [-11.453099, 8.062499], + [-11.4528, 8.0595], + [-11.4521, 8.0567], + [-11.4501, 8.0522], + [-11.449399, 8.049399], + [-11.449199, 8.045399], + [-11.448999, 8.034399], + [-11.447999, 8.030699], + [-11.446099, 8.028099], + [-11.4428, 8.025299], + [-11.441699, 8.0235], + [-11.438899, 8.022199], + [-11.4339, 8.0207], + [-11.4258, 8.022799], + [-11.4236, 8.024], + [-11.42, 8.0298], + [-11.419199, 8.0331], + [-11.4189, 8.038399], + [-11.4184, 8.040599], + [-11.416899, 8.0434], + [-11.414399, 8.0461], + [-11.411499, 8.0482], + [-11.407499, 8.0501], + [-11.404799, 8.0523], + [-11.3994, 8.057199], + [-11.3972, 8.058899], + [-11.393399, 8.0607], + [-11.3891, 8.063099], + [-11.385899, 8.0644], + [-11.3815, 8.066599], + [-11.3765, 8.067799], + [-11.373999, 8.0686], + [-11.3665, 8.072399], + [-11.3615, 8.076399], + [-11.3592, 8.077899], + [-11.355299, 8.0796], + [-11.351599, 8.0819], + [-11.3508, 8.086799], + [-11.3504, 8.091], + [-11.350499, 8.096799], + [-11.3509, 8.1012], + [-11.3525, 8.1071], + [-11.357399, 8.121799], + [-11.3589, 8.1286], + [-11.362299, 8.140699], + [-11.3638, 8.1444], + [-11.3657, 8.1475], + [-11.369499, 8.152399], + [-11.3736, 8.156399], + [-11.3779, 8.1574], + [-11.3833, 8.1597], + [-11.3859, 8.1603], + [-11.391299, 8.160899], + [-11.393799, 8.161599], + [-11.3982, 8.163599], + [-11.402599, 8.164099], + [-11.405599, 8.163399], + [-11.409599, 8.1603], + [-11.416599, 8.1532], + [-11.420599, 8.1501], + [-11.4273, 8.146799], + [-11.4298, 8.145899], + [-11.434, 8.144999], + [-11.4369, 8.143399], + [-11.439999, 8.1409], + [-11.441999, 8.14], + [-11.444199, 8.1401], + [-11.448199, 8.142299], + [-11.452399, 8.1357], + [-11.453399, 8.132499], + [-11.453199, 8.1282], + [-11.450899, 8.122899], + [-11.450199, 8.120199], + [-11.45, 8.1163], + [-11.4507, 8.112599], + [-11.452899, 8.1072], + [-11.453356, 8.104232] + ] + ], + "type": "Polygon" + }, + "id": 438, + "properties": { + "cc:admin:id": ["0"], + "cc:oBld:total": 433, + "cc:pop:fifteen-to-twenty-four": 2488.3614854320635, + "cc:pop:grid3-total": 4782.629937512357, + "cc:pop:kontur-total": 14194.861983609617, + "cc:pop:men": 6693.724503427629, + "cc:pop:sixty-plus": 1016.9038059908537, + "cc:pop:total": 13914.510348316915, + "cc:pop:under-five": 2329.62038453871, + "cc:pop:women": 7220.7858448892885, + "cc:pop:women-fiften-to-forty-nine": 3462.3313247053707, + "cc:pop:wp-total": 12091.520245034686, + "cc:pop:wp-total-UN": 14018.138484854904, + "cc:id": "438", + "cc:Name": "Ngelehun CHC", + "cc:site": [-11.4197, 8.1039], + "user:parentName": "Badjia", + "user:code": "OU_559", + "user:orgUnitId": "DiszpKrYNg8", + "user:level": "4", + "user:parentId": "YuQRtpLP10I" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.208799, 8.019499], + [-11.207799, 8.014999], + [-11.2059, 8.0114], + [-11.204599, 8.008199], + [-11.2019, 8.0031], + [-11.2006, 7.998], + [-11.199192, 7.994758], + [-11.196051, 7.995206], + [-11.192576, 7.989189], + [-11.184763, 7.989188], + [-11.180858, 7.982423], + [-11.184763, 7.975657], + [-11.180857, 7.968892], + [-11.173045, 7.968892], + [-11.169138, 7.975657], + [-11.161326, 7.975656], + [-11.157419, 7.968892], + [-11.149608, 7.968892], + [-11.148092, 7.971513], + [-11.147917, 7.969583], + [-11.148749, 7.959584], + [-11.147917, 7.958749], + [-11.147916, 7.957917], + [-11.138044, 7.954879], + [-11.138251, 7.954157], + [-11.138427, 7.952577], + [-11.138357, 7.951495], + [-11.135416, 7.952083], + [-11.13375, 7.947084], + [-11.132916, 7.945417], + [-11.124583, 7.945417], + [-11.122917, 7.947917], + [-11.122916, 7.953749], + [-11.119583, 7.95375], + [-11.117083, 7.955416], + [-11.117082, 7.947917], + [-11.115416, 7.945417], + [-11.110417, 7.944584], + [-11.108749, 7.945416], + [-11.10125, 7.94375], + [-11.09875, 7.945416], + [-11.097082, 7.942917], + [-11.092917, 7.94125], + [-11.089583, 7.942917], + [-11.089582, 7.944583], + [-11.08625, 7.944583], + [-11.084582, 7.94375], + [-11.07875, 7.94375], + [-11.078749, 7.945416], + [-11.077083, 7.945417], + [-11.075417, 7.947917], + [-11.076249, 7.954583], + [-11.072082, 7.953749], + [-11.067082, 7.949584], + [-11.062917, 7.949584], + [-11.062916, 7.951249], + [-11.06125, 7.955417], + [-11.061249, 7.957084], + [-11.055417, 7.960416], + [-11.05375, 7.961249], + [-11.05125, 7.96125], + [-11.051249, 7.965416], + [-11.049582, 7.970417], + [-11.04625, 7.972083], + [-11.04375, 7.970417], + [-11.040417, 7.964584], + [-11.040416, 7.963894], + [-11.040053, 7.964129], + [-11.038846, 7.964569], + [-11.037726, 7.965314], + [-11.036625, 7.965585], + [-11.038749, 7.971249], + [-11.032083, 7.971249], + [-11.029583, 7.970417], + [-11.029022, 7.969857], + [-11.022912, 7.971781], + [-11.019788, 7.972936], + [-11.015599, 7.976489], + [-11.012628, 7.980341], + [-11.015799, 7.984499], + [-11.016999, 7.986899], + [-11.0188, 7.992899], + [-11.0211, 7.9957], + [-11.0241, 7.9979], + [-11.027999, 8.003799], + [-11.03, 8.008], + [-11.031899, 8.010599], + [-11.0345, 8.0133], + [-11.043899, 8.022599], + [-11.0461, 8.0244], + [-11.0484, 8.0258], + [-11.054299, 8.027299], + [-11.0597, 8.0295], + [-11.0656, 8.0309], + [-11.074099, 8.034599], + [-11.076404, 8.035885], + [-11.078749, 8.035416], + [-11.080417, 8.032916], + [-11.084582, 8.032084], + [-11.08875, 8.036249], + [-11.092916, 8.03625], + [-11.097083, 8.032084], + [-11.100416, 8.032083], + [-11.103886, 8.030927], + [-11.10411, 8.031147], + [-11.104562, 8.031266], + [-11.104717, 8.030417], + [-11.106249, 8.030417], + [-11.10625, 8.032083], + [-11.117082, 8.032084], + [-11.117083, 8.038749], + [-11.117464, 8.043315], + [-11.122264, 8.043316], + [-11.12617, 8.050081], + [-11.133982, 8.050081], + [-11.137889, 8.043316], + [-11.145702, 8.043316], + [-11.149608, 8.050082], + [-11.150439, 8.050081], + [-11.1505, 8.049999], + [-11.1557, 8.046599], + [-11.1576, 8.045799], + [-11.160899, 8.0452], + [-11.1638, 8.0451], + [-11.184599, 8.045299], + [-11.1875, 8.045099], + [-11.190299, 8.0444], + [-11.192699, 8.043], + [-11.1948, 8.041199], + [-11.200099, 8.0358], + [-11.203999, 8.0312], + [-11.2061, 8.026799], + [-11.208799, 8.019499] + ] + ], + "type": "Polygon" + }, + "id": 439, + "properties": { + "cc:admin:id": ["105"], + "cc:oBld:total": 1240, + "cc:pop:fifteen-to-twenty-four": 1365.1876997558827, + "cc:pop:grid3-total": 11317.711471905523, + "cc:pop:kontur-total": 7572.673850879168, + "cc:pop:men": 3524.0488084918925, + "cc:pop:sixty-plus": 428.9261171960202, + "cc:pop:total": 7015.827128870311, + "cc:pop:under-five": 1110.9581140889686, + "cc:pop:women": 3491.778320378419, + "cc:pop:women-fiften-to-forty-nine": 1755.022790264831, + "cc:pop:wp-total": 10709.279982108563, + "cc:pop:wp-total-UN": 12424.133967882957, + "cc:id": "439", + "cc:Name": "Ngelehun MCHP", + "cc:site": [-11.113, 8.0125], + "user:parentName": "Nongowa", + "user:code": "OU_222700", + "user:orgUnitId": "FwKJ7gYEv8U", + "user:level": "4", + "user:parentId": "KIUCimTXf8Q" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.739583, 7.928249], + [-12.739582, 7.927916], + [-12.736249, 7.922917], + [-12.72875, 7.92125], + [-12.726364, 7.923105], + [-12.724739, 7.922961], + [-12.724684, 7.924412], + [-12.72125, 7.927083], + [-12.71924, 7.927084], + [-12.719112, 7.929174], + [-12.71913, 7.929201], + [-12.718749, 7.929584], + [-12.717916, 7.934583], + [-12.714583, 7.93375], + [-12.71125, 7.937084], + [-12.711249, 7.938749], + [-12.709583, 7.93875], + [-12.707083, 7.942083], + [-12.707916, 7.94625], + [-12.702606, 7.953077], + [-12.702683, 7.953148], + [-12.702683, 7.953149], + [-12.700417, 7.955416], + [-12.695416, 7.953749], + [-12.692083, 7.949584], + [-12.692082, 7.947084], + [-12.69125, 7.952083], + [-12.688167, 7.955935], + [-12.686549, 7.955935], + [-12.682643, 7.94917], + [-12.677451, 7.94917], + [-12.677916, 7.957083], + [-12.674582, 7.957084], + [-12.662917, 7.962917], + [-12.662917, 7.968742], + [-12.663323, 7.969192], + [-12.66455, 7.969215], + [-12.66375, 7.970417], + [-12.663749, 7.973749], + [-12.66125, 7.97625], + [-12.661249, 7.982916], + [-12.657917, 7.982916], + [-12.657916, 7.979584], + [-12.655416, 7.977084], + [-12.646398, 7.981593], + [-12.646508, 7.981718], + [-12.646508, 7.981719], + [-12.644854, 7.982271], + [-12.643483, 7.985432], + [-12.642807, 7.991548], + [-12.642698, 7.992083], + [-12.640417, 7.992084], + [-12.638749, 7.994584], + [-12.632083, 7.99625], + [-12.632082, 7.998056], + [-12.63205, 7.998067], + [-12.631354, 7.998942], + [-12.629521, 7.999557], + [-12.627849, 7.999705], + [-12.626342, 8.000219], + [-12.625917, 8.000196], + [-12.624878, 7.999078], + [-12.624755, 7.999088], + [-12.623763, 7.999303], + [-12.622962, 7.99925], + [-12.621334, 8.000081], + [-12.6248, 8.001], + [-12.629099, 8.003199], + [-12.6323, 8.0045], + [-12.636799, 8.006699], + [-12.640599, 8.007499], + [-12.6436, 8.007599], + [-12.668399, 8.0074], + [-12.6745, 8.0077], + [-12.6772, 8.0084], + [-12.684899, 8.011999], + [-12.688499, 8.013899], + [-12.6921, 8.0149], + [-12.695, 8.014999], + [-12.698899, 8.0145], + [-12.704299, 8.0122], + [-12.707099, 8.0116], + [-12.714299, 8.0112], + [-12.714631, 8.011201], + [-12.716249, 8.009583], + [-12.71625, 7.999584], + [-12.717082, 7.997083], + [-12.715417, 7.989583], + [-12.716249, 7.985417], + [-12.719583, 7.981249], + [-12.727082, 7.979583], + [-12.727917, 7.967917], + [-12.729583, 7.966249], + [-12.732917, 7.965416], + [-12.737916, 7.950417], + [-12.73716, 7.949408], + [-12.736561, 7.951166], + [-12.734536, 7.950985], + [-12.735027, 7.948324], + [-12.735371, 7.944949], + [-12.735257, 7.944081], + [-12.73625, 7.943749], + [-12.739582, 7.939583], + [-12.739583, 7.929584], + [-12.738633, 7.928159], + [-12.738634, 7.928158], + [-12.739583, 7.928249] + ] + ], + "type": "Polygon" + }, + "id": 440, + "properties": { + "cc:admin:id": ["51"], + "cc:oBld:total": 9, + "cc:pop:fifteen-to-twenty-four": 563.7575837133527, + "cc:pop:grid3-total": 1256.491944847112, + "cc:pop:kontur-total": 3157.9478265024954, + "cc:pop:men": 1412.5440017985027, + "cc:pop:sixty-plus": 181.14586342664404, + "cc:pop:total": 3018.5607843357056, + "cc:pop:under-five": 515.8569258164093, + "cc:pop:women": 1606.0167825372034, + "cc:pop:women-fiften-to-forty-nine": 709.567408469537, + "cc:pop:wp-total": 2055.81566995375, + "cc:pop:wp-total-UN": 2392.719338401694, + "cc:id": "440", + "cc:Name": "Ngiehun MCHP", + "cc:site": [-12.6751, 7.9867], + "user:parentName": "Kargboro", + "user:code": "OU_247070", + "user:orgUnitId": "hBPtNXkQ3mP", + "user:level": "4", + "user:parentId": "Z9QaI6sxTwW" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.226267, 7.533799], + [-11.222172, 7.533799], + [-11.218265, 7.540563], + [-11.210452, 7.540564], + [-11.206547, 7.54733], + [-11.210452, 7.554096], + [-11.206546, 7.560861], + [-11.198733, 7.560862], + [-11.194828, 7.567627], + [-11.197158, 7.571663], + [-11.198508, 7.5719], + [-11.198553, 7.571905], + [-11.194725, 7.578536], + [-11.189425, 7.578536], + [-11.188199, 7.57642], + [-11.187708, 7.574994], + [-11.187454, 7.572977], + [-11.187573, 7.572596], + [-11.186339, 7.574733], + [-11.190244, 7.5815], + [-11.187302, 7.586596], + [-11.187346, 7.587175], + [-11.185987, 7.589529], + [-11.178175, 7.589529], + [-11.176879, 7.587287], + [-11.17625, 7.587917], + [-11.17625, 7.595258], + [-11.176714, 7.596283], + [-11.177997, 7.597416], + [-11.178577, 7.59885], + [-11.17125, 7.599584], + [-11.17125, 7.601893], + [-11.176652, 7.601894], + [-11.180373, 7.608339], + [-11.177917, 7.60875], + [-11.174583, 7.612917], + [-11.174583, 7.622083], + [-11.177916, 7.626249], + [-11.178176, 7.626315], + [-11.176652, 7.628956], + [-11.178409, 7.631999], + [-11.1821, 7.631999], + [-11.1868, 7.631699], + [-11.1903, 7.630799], + [-11.193899, 7.6289], + [-11.1971, 7.627499], + [-11.201399, 7.6251], + [-11.2052, 7.623199], + [-11.210999, 7.619599], + [-11.214999, 7.613299], + [-11.2158, 7.609399], + [-11.215999, 7.603], + [-11.216399, 7.5996], + [-11.2186, 7.593799], + [-11.2193, 7.589899], + [-11.219499, 7.5835], + [-11.220199, 7.5801], + [-11.2224, 7.574799], + [-11.222899, 7.570599], + [-11.2228, 7.5576], + [-11.222999, 7.5529], + [-11.2236, 7.550199], + [-11.225899, 7.544599], + [-11.226399, 7.5385], + [-11.226267, 7.533799] + ] + ], + "type": "Polygon" + }, + "id": 441, + "properties": { + "cc:admin:id": ["138"], + "cc:oBld:total": 419, + "cc:pop:fifteen-to-twenty-four": 331.42659632108035, + "cc:pop:grid3-total": 2133.457595080457, + "cc:pop:kontur-total": 1764.0018124128958, + "cc:pop:men": 804.8219239887583, + "cc:pop:sixty-plus": 104.49971053736662, + "cc:pop:total": 1684.8155741541966, + "cc:pop:under-five": 254.9633464130387, + "cc:pop:women": 879.9936501654386, + "cc:pop:women-fiften-to-forty-nine": 433.6948748806835, + "cc:pop:wp-total": 1432.3096822583316, + "cc:pop:wp-total-UN": 1655.5755129006423, + "cc:id": "441", + "cc:Name": "Ngiewahun CHP", + "cc:site": [-11.2013, 7.6059], + "user:parentName": "Tunkia", + "user:code": "OU_222636", + "user:orgUnitId": "KuGO75X47Gk", + "user:level": "4", + "user:parentId": "l7pFejMtUoF" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.917603, 7.736044], + [-11.917116, 7.735954], + [-11.916808, 7.7361], + [-11.909471, 7.735536], + [-11.907519, 7.737613], + [-11.906329, 7.739397], + [-11.902753, 7.743629], + [-11.901539, 7.746471], + [-11.896555, 7.744255], + [-11.898303, 7.741412], + [-11.897995, 7.740476], + [-11.897687, 7.739236], + [-11.897834, 7.738774], + [-11.899162, 7.738175], + [-11.899503, 7.737559], + [-11.89984, 7.737282], + [-11.898938, 7.73654], + [-11.898, 7.73614], + [-11.897415, 7.736061], + [-11.89413, 7.736307], + [-11.892067, 7.735906], + [-11.891891, 7.735802], + [-11.892083, 7.735417], + [-11.903749, 7.736249], + [-11.907082, 7.73375], + [-11.905417, 7.729583], + [-11.907082, 7.72375], + [-11.911249, 7.720416], + [-11.910416, 7.712917], + [-11.90125, 7.713749], + [-11.897916, 7.70625], + [-11.892083, 7.707916], + [-11.892082, 7.707915], + [-11.89125, 7.704583], + [-11.89125, 7.697916], + [-11.89375, 7.69625], + [-11.902082, 7.697083], + [-11.902082, 7.693749], + [-11.900655, 7.687323], + [-11.900166, 7.687375], + [-11.898749, 7.679584], + [-11.886709, 7.67878], + [-11.885728, 7.677084], + [-11.885416, 7.677083], + [-11.881149, 7.672817], + [-11.875453, 7.672817], + [-11.871547, 7.679582], + [-11.873111, 7.682292], + [-11.873111, 7.682293], + [-11.867233, 7.682827], + [-11.867015, 7.682167], + [-11.863749, 7.686249], + [-11.859582, 7.688749], + [-11.852917, 7.688749], + [-11.849406, 7.685942], + [-11.848587, 7.687259], + [-11.848336, 7.688622], + [-11.847461, 7.689947], + [-11.84704, 7.691498], + [-11.845416, 7.690417], + [-11.83875, 7.690417], + [-11.83375, 7.700416], + [-11.832917, 7.701249], + [-11.842418, 7.706001], + [-11.843068, 7.707201], + [-11.844242, 7.708371], + [-11.845281, 7.710653], + [-11.845414, 7.711251], + [-11.842917, 7.712917], + [-11.844582, 7.722083], + [-11.84125, 7.727917], + [-11.84125, 7.730416], + [-11.849582, 7.730417], + [-11.857082, 7.737083], + [-11.854583, 7.742084], + [-11.854583, 7.752916], + [-11.85625, 7.75375], + [-11.858749, 7.758749], + [-11.85861, 7.759028], + [-11.861285, 7.758853], + [-11.8637, 7.756899], + [-11.866799, 7.7552], + [-11.872599, 7.7535], + [-11.876299, 7.7518], + [-11.8783, 7.751199], + [-11.881399, 7.751], + [-11.884099, 7.7516], + [-11.8864, 7.7529], + [-11.8913, 7.756699], + [-11.8959, 7.755199], + [-11.901899, 7.754099], + [-11.9054, 7.751999], + [-11.908899, 7.7484], + [-11.912, 7.742599], + [-11.9145, 7.739399], + [-11.917603, 7.736044] + ] + ], + "type": "Polygon" + }, + "id": 442, + "properties": { + "cc:admin:id": ["78"], + "cc:oBld:total": 14, + "cc:pop:fifteen-to-twenty-four": 796.2001020627531, + "cc:pop:grid3-total": 2968.2713535475696, + "cc:pop:kontur-total": 5124.478066177796, + "cc:pop:men": 2282.1337962815, + "cc:pop:sixty-plus": 300.78360806501036, + "cc:pop:total": 4393.603398842878, + "cc:pop:under-five": 710.7168367596275, + "cc:pop:women": 2111.469602561378, + "cc:pop:women-fiften-to-forty-nine": 1002.501546327309, + "cc:pop:wp-total": 4271.134990608548, + "cc:pop:wp-total-UN": 4953.935407061006, + "cc:id": "442", + "cc:Name": "Ngieyehun MCHP", + "cc:site": [-11.8714, 7.6946], + "user:parentName": "Lugbu", + "user:code": "OU_1065", + "user:orgUnitId": "al4GkB6X2X3", + "user:level": "4", + "user:parentId": "kU8vhUkAGaT" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.84125, 7.617916], + [-11.841249, 7.616832], + [-11.838163, 7.617277], + [-11.837454, 7.617107], + [-11.836119, 7.616361], + [-11.834582, 7.614186], + [-11.830418, 7.609341], + [-11.830296, 7.609229], + [-11.829654, 7.608679], + [-11.830417, 7.607916], + [-11.836249, 7.606249], + [-11.836249, 7.598743], + [-11.835455, 7.59919], + [-11.833997, 7.600687], + [-11.832629, 7.601588], + [-11.828335, 7.602606], + [-11.825416, 7.600417], + [-11.817083, 7.599584], + [-11.812082, 7.589584], + [-11.80875, 7.591249], + [-11.805417, 7.592084], + [-11.803042, 7.595645], + [-11.802014, 7.595413], + [-11.80041, 7.594867], + [-11.79873, 7.594096], + [-11.798156, 7.593649], + [-11.797447, 7.592755], + [-11.795956, 7.590781], + [-11.79557, 7.590233], + [-11.794807, 7.588776], + [-11.79394, 7.586514], + [-11.793788, 7.586313], + [-11.79364, 7.586147], + [-11.792935, 7.585515], + [-11.7922, 7.584555], + [-11.792077, 7.584344], + [-11.791805, 7.584512], + [-11.790476, 7.584543], + [-11.789779, 7.584603], + [-11.789339, 7.5848], + [-11.789064, 7.585128], + [-11.788625, 7.585097], + [-11.788613, 7.584497], + [-11.788152, 7.583837], + [-11.787633, 7.583699], + [-11.78678, 7.583996], + [-11.786457, 7.583619], + [-11.785422, 7.583294], + [-11.785362, 7.583219], + [-11.786195, 7.581759], + [-11.785605, 7.580493], + [-11.786952, 7.580435], + [-11.787191, 7.580017], + [-11.781599, 7.578099], + [-11.777699, 7.5777], + [-11.773299, 7.5785], + [-11.7708, 7.5802], + [-11.769199, 7.5829], + [-11.769, 7.587399], + [-11.770899, 7.592999], + [-11.7718, 7.5971], + [-11.771799, 7.602699], + [-11.7701, 7.607699], + [-11.767799, 7.6104], + [-11.7627, 7.613799], + [-11.7594, 7.616799], + [-11.7565, 7.620199], + [-11.7551, 7.6228], + [-11.7546, 7.626899], + [-11.756299, 7.633899], + [-11.756799, 7.639299], + [-11.754899, 7.646399], + [-11.752599, 7.6497], + [-11.748499, 7.6536], + [-11.745099, 7.6556], + [-11.737, 7.6593], + [-11.737399, 7.668899], + [-11.738099, 7.672299], + [-11.742299, 7.680599], + [-11.7452, 7.6841], + [-11.753099, 7.692099], + [-11.7555, 7.688499], + [-11.7594, 7.6851], + [-11.7627, 7.683999], + [-11.768499, 7.6835], + [-11.771599, 7.6827], + [-11.775199, 7.6808], + [-11.7784, 7.679499], + [-11.782699, 7.6771], + [-11.786899, 7.675], + [-11.792, 7.670599], + [-11.805899, 7.6565], + [-11.809999, 7.6519], + [-11.8133, 7.646099], + [-11.8156, 7.643099], + [-11.8195, 7.638799], + [-11.821799, 7.6358], + [-11.8245, 7.631099], + [-11.827099, 7.6286], + [-11.832999, 7.6256], + [-11.834899, 7.6248], + [-11.8373, 7.624299], + [-11.840199, 7.6241], + [-11.840562, 7.624102], + [-11.84125, 7.617916] + ] + ], + "type": "Polygon" + }, + "id": 443, + "properties": { + "cc:admin:id": ["4"], + "cc:oBld:total": 573, + "cc:pop:fifteen-to-twenty-four": 2573.886613496613, + "cc:pop:grid3-total": 9518.818960887886, + "cc:pop:kontur-total": 15366.537526744205, + "cc:pop:men": 6965.481594629107, + "cc:pop:sixty-plus": 1013.9170974131214, + "cc:pop:total": 14343.624475539984, + "cc:pop:under-five": 2395.2874462690725, + "cc:pop:women": 7378.142880910875, + "cc:pop:women-fiften-to-forty-nine": 3516.0757314660677, + "cc:pop:wp-total": 12866.973185575605, + "cc:pop:wp-total-UN": 14930.564234701942, + "cc:id": "443", + "cc:Name": "Niagorehun CHP", + "cc:site": [-11.7684, 7.6817], + "user:parentName": "Bargbo", + "user:code": "OU_617", + "user:orgUnitId": "p9ZtyC3LQ9f", + "user:level": "4", + "user:parentId": "zFDYIgyGmXG" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.701249, 8.943485], + [-11.701249, 8.942367], + [-11.695212, 8.942599], + [-11.6924, 8.942999], + [-11.689999, 8.944], + [-11.6837, 8.9483], + [-11.6819, 8.951099], + [-11.6802, 8.953199], + [-11.6736, 8.9589], + [-11.672799, 8.9614], + [-11.671899, 8.9677], + [-11.6684, 8.975699], + [-11.665899, 8.979], + [-11.6621, 8.982399], + [-11.653299, 8.986499], + [-11.6458, 8.987299], + [-11.642999, 8.988], + [-11.6376, 8.990799], + [-11.635899, 8.9924], + [-11.6326, 8.998399], + [-11.631899, 9.0014], + [-11.6318, 9.0043], + [-11.631899, 9.019199], + [-11.632099, 9.024099], + [-11.6329, 9.0278], + [-11.637199, 9.035999], + [-11.639771, 9.039072], + [-11.642082, 9.037916], + [-11.639583, 9.035417], + [-11.639582, 9.03375], + [-11.63625, 9.030416], + [-11.63625, 9.02125], + [-11.639582, 9.017083], + [-11.640416, 9.017082], + [-11.64125, 9.01625], + [-11.642082, 9.016249], + [-11.645416, 9.012082], + [-11.645417, 9.005417], + [-11.650643, 9.004762], + [-11.650644, 9.004752], + [-11.652163, 9.001652], + [-11.652431, 9.001398], + [-11.652365, 9.001025], + [-11.652499, 9.00087], + [-11.653206, 9.001111], + [-11.653655, 9.000988], + [-11.653968, 9.001221], + [-11.654172, 9.001579], + [-11.654144, 9.001973], + [-11.654365, 9.002103], + [-11.654878, 9.002027], + [-11.655029, 9.001575], + [-11.653908, 9.000523], + [-11.652879, 9.000653], + [-11.652878, 9.000651], + [-11.656249, 8.994583], + [-11.660377, 8.994582], + [-11.660308, 8.994161], + [-11.660935, 8.991994], + [-11.66043, 8.991087], + [-11.660568, 8.990847], + [-11.66838, 8.990846], + [-11.672287, 8.984081], + [-11.677916, 8.98408], + [-11.677917, 8.979582], + [-11.681249, 8.975417], + [-11.688128, 8.974924], + [-11.689288, 8.97329], + [-11.689746, 8.972083], + [-11.687916, 8.972082], + [-11.68375, 8.968749], + [-11.682917, 8.967082], + [-11.683749, 8.95625], + [-11.685416, 8.95125], + [-11.689583, 8.947917], + [-11.693001, 8.948201], + [-11.695725, 8.943486], + [-11.701249, 8.943485] + ] + ], + "type": "Polygon" + }, + "id": 445, + "properties": { + "cc:admin:id": ["47"], + "cc:oBld:total": 3, + "cc:pop:fifteen-to-twenty-four": 12.462882595299021, + "cc:pop:grid3-total": 64.69026455541376, + "cc:pop:kontur-total": 94.0210391899269, + "cc:pop:men": 31.687904528502983, + "cc:pop:sixty-plus": 4.620306685779276, + "cc:pop:total": 68.02601738770056, + "cc:pop:under-five": 10.638650833597358, + "cc:pop:women": 36.33811285919758, + "cc:pop:women-fiften-to-forty-nine": 18.055032443454248, + "cc:pop:wp-total": 154.67063917580185, + "cc:pop:wp-total-UN": 176.79179798431014, + "cc:id": "445", + "cc:Name": "Ninkikoro MCHP", + "cc:site": [-11.6387, 8.9903], + "user:parentName": "Sambaia Bendugu", + "user:code": "OU_268172", + "user:orgUnitId": "YXdC9hjYPqQ", + "user:level": "4", + "user:parentId": "r1RUyfVBkLp" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.386299, 8.250367], + [-12.383899, 8.249899], + [-12.3782, 8.2497], + [-12.375599, 8.249199], + [-12.3735, 8.247999], + [-12.3701, 8.2428], + [-12.3662, 8.2345], + [-12.3654, 8.2306], + [-12.3652, 8.2166], + [-12.364599, 8.2137], + [-12.362799, 8.210399], + [-12.3568, 8.204], + [-12.3545, 8.201], + [-12.3509, 8.1938], + [-12.350728, 8.193115], + [-12.346914, 8.193115], + [-12.345584, 8.195416], + [-12.342083, 8.195417], + [-12.337917, 8.19875], + [-12.337539, 8.199879], + [-12.335195, 8.19988], + [-12.335044, 8.199618], + [-12.335416, 8.199583], + [-12.336337, 8.198432], + [-12.331535, 8.198431], + [-12.327629, 8.191666], + [-12.324748, 8.191666], + [-12.323709, 8.192417], + [-12.322407, 8.192731], + [-12.326249, 8.200416], + [-12.326249, 8.202083], + [-12.322083, 8.205416], + [-12.304583, 8.205417], + [-12.30125, 8.20375], + [-12.300416, 8.205417], + [-12.29375, 8.20625], + [-12.293749, 8.209397], + [-12.289792, 8.207093], + [-12.28816, 8.20633], + [-12.285519, 8.206323], + [-12.279839, 8.206625], + [-12.278871, 8.207033], + [-12.278536, 8.207176], + [-12.277647, 8.207592], + [-12.27375, 8.20809], + [-12.273749, 8.217083], + [-12.272916, 8.217083], + [-12.26375, 8.212917], + [-12.259582, 8.217916], + [-12.256562, 8.21973], + [-12.256935, 8.221468], + [-12.250417, 8.222916], + [-12.247916, 8.220417], + [-12.246249, 8.220416], + [-12.243749, 8.21375], + [-12.24125, 8.214584], + [-12.238749, 8.217083], + [-12.232917, 8.217084], + [-12.234582, 8.219584], + [-12.234583, 8.226249], + [-12.23625, 8.22625], + [-12.239582, 8.228749], + [-12.240416, 8.231249], + [-12.241249, 8.245416], + [-12.23875, 8.247084], + [-12.238749, 8.247917], + [-12.23625, 8.25125], + [-12.23875, 8.26125], + [-12.23875, 8.273749], + [-12.239308, 8.277103], + [-12.239307, 8.277104], + [-12.238939, 8.27689], + [-12.236584, 8.275692], + [-12.233138, 8.281661], + [-12.234825, 8.284583], + [-12.236249, 8.284584], + [-12.237917, 8.286249], + [-12.23875, 8.28625], + [-12.241249, 8.295416], + [-12.234583, 8.297084], + [-12.230417, 8.305416], + [-12.244224, 8.304604], + [-12.244678, 8.303202], + [-12.245652, 8.298644], + [-12.247248, 8.291582], + [-12.24875, 8.294583], + [-12.252083, 8.292084], + [-12.257082, 8.294583], + [-12.257083, 8.291249], + [-12.261249, 8.287083], + [-12.26125, 8.285416], + [-12.266249, 8.280417], + [-12.267082, 8.27875], + [-12.265485, 8.273155], + [-12.265766, 8.272741], + [-12.270417, 8.270417], + [-12.276249, 8.270417], + [-12.27625, 8.277916], + [-12.284582, 8.277084], + [-12.287917, 8.280416], + [-12.290416, 8.279583], + [-12.294583, 8.272917], + [-12.29875, 8.274583], + [-12.302916, 8.274583], + [-12.30375, 8.270417], + [-12.306249, 8.269583], + [-12.307916, 8.267084], + [-12.315416, 8.267083], + [-12.315417, 8.264583], + [-12.319582, 8.262917], + [-12.325417, 8.267083], + [-12.330222, 8.268456], + [-12.330229, 8.268749], + [-12.334776, 8.26875], + [-12.338682, 8.261985], + [-12.339088, 8.261985], + [-12.34375, 8.272083], + [-12.352916, 8.27125], + [-12.355417, 8.262917], + [-12.363749, 8.262916], + [-12.370417, 8.259584], + [-12.377916, 8.259583], + [-12.384582, 8.253749], + [-12.384583, 8.252084], + [-12.386299, 8.250367] + ] + ], + "type": "Polygon" + }, + "id": 446, + "properties": { + "cc:admin:id": ["23"], + "cc:oBld:total": 255, + "cc:pop:fifteen-to-twenty-four": 1386.3172714595455, + "cc:pop:grid3-total": 9319.099126767764, + "cc:pop:kontur-total": 7748.269642595077, + "cc:pop:men": 3678.2395545236504, + "cc:pop:sixty-plus": 585.873610348335, + "cc:pop:total": 7758.696971915836, + "cc:pop:under-five": 1259.3909233411239, + "cc:pop:women": 4080.457417392185, + "cc:pop:women-fiften-to-forty-nine": 1990.1891635335269, + "cc:pop:wp-total": 6434.852619905478, + "cc:pop:wp-total-UN": 7452.969231696593, + "cc:id": "446", + "cc:Name": "Njagbahun (Fakunya) MCHP", + "cc:site": [-12.2836, 8.2615], + "user:parentName": "Fakunya", + "user:code": "OU_247088", + "user:orgUnitId": "QoROdPmIdY1", + "user:level": "4", + "user:parentId": "vULnao2hV5v" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.088668, 8.242917], + [-11.084583, 8.242917], + [-11.082916, 8.243749], + [-11.073749, 8.239584], + [-11.07125, 8.239584], + [-11.070812, 8.239801], + [-11.070735, 8.239031], + [-11.070564, 8.238545], + [-11.07055, 8.238211], + [-11.07048, 8.238118], + [-11.069542, 8.237316], + [-11.069417, 8.237084], + [-11.067083, 8.237084], + [-11.06375, 8.240416], + [-11.062083, 8.240417], + [-11.05931, 8.243883], + [-11.059309, 8.243882], + [-11.059239, 8.243237], + [-11.058453, 8.241404], + [-11.058036, 8.240853], + [-11.057246, 8.240353], + [-11.056807, 8.240253], + [-11.056553, 8.240209], + [-11.055296, 8.240224], + [-11.054778, 8.240118], + [-11.054212, 8.239677], + [-11.052917, 8.242916], + [-11.051249, 8.242084], + [-11.04625, 8.24375], + [-11.044583, 8.247084], + [-11.046249, 8.252917], + [-11.04375, 8.254584], + [-11.043749, 8.255417], + [-11.03692, 8.255905], + [-11.037785, 8.257405], + [-11.03388, 8.26417], + [-11.02625, 8.264171], + [-11.02625, 8.272083], + [-11.027083, 8.272084], + [-11.03125, 8.272917], + [-11.038749, 8.272916], + [-11.042082, 8.269583], + [-11.045417, 8.259584], + [-11.050417, 8.257084], + [-11.055481, 8.259253], + [-11.055482, 8.259255], + [-11.055461, 8.259298], + [-11.061249, 8.262916], + [-11.062083, 8.262084], + [-11.070587, 8.262084], + [-11.071055, 8.264162], + [-11.075417, 8.262917], + [-11.081249, 8.264583], + [-11.083749, 8.262083], + [-11.08375, 8.24875], + [-11.087082, 8.244584], + [-11.08821, 8.244207], + [-11.088668, 8.242917] + ] + ], + "type": "Polygon" + }, + "id": 447, + "properties": { + "cc:admin:id": ["75"], + "cc:oBld:total": 96, + "cc:pop:fifteen-to-twenty-four": 377.01084615303853, + "cc:pop:grid3-total": 1135.8265920200913, + "cc:pop:kontur-total": 2250.1484700036212, + "cc:pop:men": 1096.0939243168084, + "cc:pop:sixty-plus": 115.03454299716715, + "cc:pop:total": 1957.2897132587973, + "cc:pop:under-five": 302.13773654449756, + "cc:pop:women": 861.1957889419889, + "cc:pop:women-fiften-to-forty-nine": 429.44350082960693, + "cc:pop:wp-total": 1709.1926888192022, + "cc:pop:wp-total-UN": 1983.3180197393197, + "cc:id": "447", + "cc:Name": "Njagbahun MCHP", + "cc:site": [-11.0612, 8.2517], + "user:parentName": "Lower Bambara", + "user:code": "OU_222660", + "user:orgUnitId": "VjygCFzqcYu", + "user:level": "4", + "user:parentId": "hdEuw2ugkVF" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.18906, 8.587238], + [-11.1889, 8.5759], + [-11.188499, 8.569799], + [-11.187899, 8.566799], + [-11.185899, 8.562399], + [-11.185099, 8.558499], + [-11.184799, 8.552299], + [-11.184698, 8.539584], + [-11.174583, 8.539583], + [-11.172791, 8.537793], + [-11.170961, 8.537793], + [-11.167054, 8.544557], + [-11.159243, 8.544558], + [-11.155335, 8.551323], + [-11.147524, 8.551324], + [-11.143618, 8.55809], + [-11.147249, 8.56438], + [-11.147249, 8.564381], + [-11.145416, 8.562917], + [-11.140333, 8.562917], + [-11.138466, 8.566147], + [-11.135056, 8.566147], + [-11.134975, 8.565976], + [-11.134364, 8.565483], + [-11.134273, 8.564916], + [-11.134358, 8.56443], + [-11.132083, 8.56625], + [-11.13125, 8.577916], + [-11.132607, 8.579614], + [-11.135804, 8.585153], + [-11.131899, 8.591918], + [-11.127217, 8.591918], + [-11.127082, 8.59125], + [-11.124582, 8.589583], + [-11.123749, 8.585417], + [-11.119582, 8.582084], + [-11.109583, 8.582917], + [-11.104583, 8.592084], + [-11.106249, 8.597083], + [-11.102083, 8.597917], + [-11.100416, 8.605416], + [-11.097917, 8.608749], + [-11.094716, 8.60875], + [-11.094671, 8.608807], + [-11.094019, 8.609178], + [-11.093508, 8.60917], + [-11.093476, 8.609343], + [-11.093395, 8.609341], + [-11.092731, 8.610351], + [-11.093026, 8.610894], + [-11.093112, 8.610882], + [-11.093877, 8.611189], + [-11.094946, 8.61128], + [-11.095509, 8.611701], + [-11.096334, 8.611914], + [-11.095416, 8.61375], + [-11.092917, 8.619583], + [-11.092917, 8.620416], + [-11.096249, 8.62125], + [-11.09625, 8.622916], + [-11.101249, 8.627916], + [-11.101249, 8.628749], + [-11.097082, 8.632916], + [-11.090417, 8.63125], + [-11.089583, 8.637917], + [-11.089583, 8.638749], + [-11.090417, 8.640416], + [-11.091249, 8.640417], + [-11.09125, 8.647083], + [-11.092917, 8.647084], + [-11.094582, 8.652083], + [-11.092917, 8.656249], + [-11.094583, 8.657917], + [-11.096249, 8.663749], + [-11.094328, 8.668234], + [-11.095013, 8.669319], + [-11.096203, 8.67003], + [-11.097316, 8.67006], + [-11.100174, 8.669781], + [-11.101516, 8.671177], + [-11.102962, 8.672064], + [-11.10673, 8.672189], + [-11.104583, 8.677916], + [-11.107082, 8.680417], + [-11.107083, 8.685416], + [-11.118749, 8.691249], + [-11.119583, 8.687917], + [-11.122083, 8.687083], + [-11.122424, 8.687561], + [-11.122328, 8.687729], + [-11.126234, 8.694494], + [-11.134046, 8.694495], + [-11.137953, 8.701259], + [-11.145765, 8.701259], + [-11.146397, 8.700167], + [-11.147021, 8.700515], + [-11.147364, 8.701723], + [-11.146525, 8.703848], + [-11.1481, 8.700699], + [-11.1487, 8.698499], + [-11.148999, 8.6957], + [-11.148999, 8.691899], + [-11.1487, 8.681299], + [-11.148899, 8.6775], + [-11.1496, 8.674399], + [-11.153499, 8.6666], + [-11.157999, 8.6608], + [-11.1609, 8.655599], + [-11.1631, 8.653099], + [-11.167999, 8.648999], + [-11.171599, 8.6414], + [-11.173699, 8.639], + [-11.178499, 8.6361], + [-11.180999, 8.6334], + [-11.184799, 8.6257], + [-11.1854, 8.622999], + [-11.185699, 8.6162], + [-11.186299, 8.6121], + [-11.188499, 8.6062], + [-11.189099, 8.6022], + [-11.189199, 8.596999], + [-11.18906, 8.587238] + ] + ], + "type": "Polygon" + }, + "id": 448, + "properties": { + "cc:admin:id": ["100"], + "cc:oBld:total": 1404, + "cc:pop:fifteen-to-twenty-four": 1450.9292939544316, + "cc:pop:grid3-total": 15411.523939854038, + "cc:pop:kontur-total": 7802.861424579451, + "cc:pop:men": 4295.978654199577, + "cc:pop:sixty-plus": 465.9113297423579, + "cc:pop:total": 7794.521684342386, + "cc:pop:under-five": 1247.8560278181994, + "cc:pop:women": 3498.5430301428064, + "cc:pop:women-fiften-to-forty-nine": 1727.8999225952907, + "cc:pop:wp-total": 8039.942689306178, + "cc:pop:wp-total-UN": 9305.669906779684, + "cc:id": "448", + "cc:Name": "Njagbwema CHP", + "cc:site": [-11.1434, 8.6408], + "user:parentName": "Nimikoro", + "user:code": "OU_233403", + "user:orgUnitId": "MUnd4KWox8m", + "user:level": "4", + "user:parentId": "DmaLM8WYmWv" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.890242, 8.655482], + [-10.890125, 8.655123], + [-10.889543, 8.65496], + [-10.889467, 8.654616], + [-10.889702, 8.653342], + [-10.889929, 8.653234], + [-10.89014, 8.653149], + [-10.890135, 8.653135], + [-10.889768, 8.652793], + [-10.889128, 8.653183], + [-10.8887, 8.653264], + [-10.888245, 8.653095], + [-10.88788, 8.65256], + [-10.888089, 8.652353], + [-10.887859, 8.652157], + [-10.888008, 8.651991], + [-10.887779, 8.651705], + [-10.887922, 8.651425], + [-10.887563, 8.651397], + [-10.88715, 8.65108], + [-10.8864, 8.650994], + [-10.88642, 8.650734], + [-10.885799, 8.650614], + [-10.885058, 8.651965], + [-10.884386, 8.651958], + [-10.883594, 8.652442], + [-10.883262, 8.652199], + [-10.883014, 8.652687], + [-10.883385, 8.652898], + [-10.883469, 8.653359], + [-10.88327, 8.653699], + [-10.882891, 8.653578], + [-10.882574, 8.65394], + [-10.882384, 8.653662], + [-10.882303, 8.653661], + [-10.882916, 8.64875], + [-10.882083, 8.64625], + [-10.882082, 8.645425], + [-10.881906, 8.645266], + [-10.882916, 8.643749], + [-10.882916, 8.63875], + [-10.874582, 8.637916], + [-10.872916, 8.636249], + [-10.870417, 8.634584], + [-10.869582, 8.632084], + [-10.867083, 8.630417], + [-10.867082, 8.628749], + [-10.862916, 8.625417], + [-10.860487, 8.624809], + [-10.861351, 8.621844], + [-10.862788, 8.620169], + [-10.863252, 8.618367], + [-10.864032, 8.617165], + [-10.864068, 8.617084], + [-10.861249, 8.617083], + [-10.852917, 8.61375], + [-10.852916, 8.60875], + [-10.848749, 8.610416], + [-10.842917, 8.604584], + [-10.842862, 8.604583], + [-10.843013, 8.604451], + [-10.844113, 8.602343], + [-10.842916, 8.59875], + [-10.837916, 8.592917], + [-10.83625, 8.592916], + [-10.836249, 8.58875], + [-10.832083, 8.583749], + [-10.830417, 8.577084], + [-10.836249, 8.569583], + [-10.83625, 8.564604], + [-10.836456, 8.564246], + [-10.83625, 8.563887], + [-10.836249, 8.562917], + [-10.835416, 8.56125], + [-10.830416, 8.559584], + [-10.826051, 8.559583], + [-10.826003, 8.559224], + [-10.824582, 8.55875], + [-10.818749, 8.558749], + [-10.817083, 8.556249], + [-10.817082, 8.548561], + [-10.8095, 8.556199], + [-10.806199, 8.5584], + [-10.802399, 8.5592], + [-10.792099, 8.559299], + [-10.787699, 8.559099], + [-10.785099, 8.558699], + [-10.7774, 8.5571], + [-10.773899, 8.5624], + [-10.773199, 8.565], + [-10.772599, 8.5708], + [-10.771899, 8.5736], + [-10.7701, 8.578099], + [-10.7696, 8.581499], + [-10.770199, 8.584899], + [-10.772199, 8.589399], + [-10.773, 8.5931], + [-10.7733, 8.599], + [-10.7735, 8.619099], + [-10.773399, 8.6221], + [-10.7727, 8.625799], + [-10.7706, 8.630199], + [-10.769299, 8.6334], + [-10.7669, 8.637599], + [-10.7649, 8.641599], + [-10.7602, 8.647699], + [-10.759227, 8.649623], + [-10.760417, 8.650417], + [-10.763749, 8.652083], + [-10.764583, 8.653749], + [-10.76625, 8.65375], + [-10.76875, 8.657083], + [-10.771434, 8.658157], + [-10.771638, 8.658048], + [-10.771928, 8.656702], + [-10.772964, 8.655311], + [-10.773628, 8.653631], + [-10.774486, 8.652087], + [-10.774615, 8.651324], + [-10.77445, 8.650549], + [-10.774846, 8.649648], + [-10.77563, 8.648534], + [-10.777238, 8.647239], + [-10.780416, 8.650417], + [-10.780417, 8.657083], + [-10.787916, 8.655417], + [-10.790417, 8.659583], + [-10.796249, 8.659584], + [-10.800416, 8.655417], + [-10.803749, 8.655417], + [-10.80625, 8.659583], + [-10.812965, 8.660255], + [-10.81265, 8.661411], + [-10.812666, 8.662851], + [-10.813161, 8.665213], + [-10.812982, 8.667383], + [-10.814582, 8.667916], + [-10.822916, 8.662917], + [-10.824583, 8.664583], + [-10.826632, 8.664071], + [-10.826916, 8.664524], + [-10.827432, 8.665281], + [-10.827788, 8.665353], + [-10.828829, 8.666139], + [-10.829082, 8.666721], + [-10.829987, 8.66566], + [-10.831188, 8.665643], + [-10.832116, 8.665977], + [-10.833417, 8.667188], + [-10.833575, 8.667924], + [-10.833526, 8.668968], + [-10.83316, 8.669948], + [-10.833078, 8.670689], + [-10.832653, 8.671207], + [-10.83219, 8.671467], + [-10.832083, 8.671545], + [-10.832083, 8.675416], + [-10.833749, 8.677082], + [-10.835417, 8.674583], + [-10.842082, 8.674582], + [-10.838751, 8.667084], + [-10.850416, 8.668749], + [-10.850417, 8.677916], + [-10.853156, 8.679012], + [-10.853907, 8.678501], + [-10.856267, 8.676992], + [-10.856804, 8.676467], + [-10.856966, 8.676026], + [-10.856967, 8.676025], + [-10.85744, 8.677177], + [-10.857417, 8.678], + [-10.857149, 8.678865], + [-10.857234, 8.679056], + [-10.858114, 8.680455], + [-10.860599, 8.6778], + [-10.862699, 8.675], + [-10.865199, 8.6701], + [-10.8676, 8.667099], + [-10.8707, 8.664699], + [-10.8734, 8.663599], + [-10.876799, 8.663], + [-10.879199, 8.6623], + [-10.8829, 8.660399], + [-10.886699, 8.6587], + [-10.889399, 8.6565], + [-10.890242, 8.655482] + ] + ], + "type": "Polygon" + }, + "id": 449, + "properties": { + "cc:admin:id": ["24"], + "cc:oBld:total": 828, + "cc:pop:fifteen-to-twenty-four": 952.6003853036747, + "cc:pop:grid3-total": 8889.275851620989, + "cc:pop:kontur-total": 4783.322943911579, + "cc:pop:men": 2336.8755780334695, + "cc:pop:sixty-plus": 230.35384534721084, + "cc:pop:total": 4731.81692260354, + "cc:pop:under-five": 760.0637586667893, + "cc:pop:women": 2394.9413445700716, + "cc:pop:women-fiften-to-forty-nine": 1182.954230650885, + "cc:pop:wp-total": 3746.1116209689853, + "cc:pop:wp-total-UN": 4339.310954449472, + "cc:id": "449", + "cc:Name": "Njagbwema Fiama CHC", + "cc:site": [-10.8235, 8.6276], + "user:parentName": "Fiama", + "user:code": "OU_233362", + "user:orgUnitId": "sLKHXoBIqSs", + "user:level": "4", + "user:parentId": "CF243RPvNY7" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.144299, 8.3261], + [-11.142699, 8.325099], + [-11.140699, 8.324499], + [-11.136999, 8.3243], + [-11.133099, 8.3245], + [-11.1303, 8.325399], + [-11.128, 8.326799], + [-11.1245, 8.329699], + [-11.122599, 8.330899], + [-11.1196, 8.331699], + [-11.117, 8.3317], + [-11.114399, 8.330999], + [-11.110892, 8.329246], + [-11.1078, 8.3277], + [-11.1058, 8.3261], + [-11.1033, 8.3223], + [-11.101582, 8.318738], + [-11.100641, 8.318993], + [-11.099855, 8.319001], + [-11.09375, 8.323749], + [-11.094583, 8.329583], + [-11.103749, 8.332084], + [-11.104582, 8.342916], + [-11.101249, 8.347083], + [-11.099583, 8.347916], + [-11.089614, 8.347205], + [-11.0908, 8.35], + [-11.094599, 8.363999], + [-11.0963, 8.367299], + [-11.0997, 8.369499], + [-11.103599, 8.368999], + [-11.110299, 8.3648], + [-11.116599, 8.3616], + [-11.1205, 8.360499], + [-11.128999, 8.3595], + [-11.131799, 8.3589], + [-11.137099, 8.3565], + [-11.139999, 8.354599], + [-11.142599, 8.350399], + [-11.143499, 8.3447], + [-11.143699, 8.3343], + [-11.144299, 8.3261] + ] + ], + "type": "Polygon" + }, + "id": 450, + "properties": { + "cc:admin:id": ["75"], + "cc:oBld:total": 74, + "cc:pop:fifteen-to-twenty-four": 162.9999979423594, + "cc:pop:grid3-total": 316.9999989711797, + "cc:pop:kontur-total": 844.9997641244225, + "cc:pop:men": 472.000257020123, + "cc:pop:sixty-plus": 49.99999939985483, + "cc:pop:total": 842.9999893688571, + "cc:pop:under-five": 128.99999837103456, + "cc:pop:women": 370.9997323487341, + "cc:pop:women-fiften-to-forty-nine": 183.99999768515437, + "cc:pop:wp-total": 827.9999943414883, + "cc:pop:wp-total-UN": 958.9999933984031, + "cc:id": "450", + "cc:Name": "Njagbwema MCHP", + "cc:site": [-11.1371, 8.355], + "user:parentName": "Gorama Kono", + "user:code": "OU_233358", + "user:orgUnitId": "aV9VVijeVB2", + "user:level": "4", + "user:parentId": "GWTIxJO9pRo" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.582156, 8.263242], + [-11.582399, 8.261899], + [-11.582, 8.2585], + [-11.5794, 8.2524], + [-11.578699, 8.2499], + [-11.575299, 8.251], + [-11.5725, 8.253299], + [-11.570599, 8.255999], + [-11.568999, 8.256999], + [-11.5653, 8.257499], + [-11.561399, 8.256499], + [-11.5582, 8.2525], + [-11.5521, 8.2457], + [-11.5499, 8.2429], + [-11.547899, 8.239099], + [-11.5451, 8.2354], + [-11.5415, 8.2324], + [-11.5376, 8.2306], + [-11.5355, 8.2292], + [-11.5313, 8.225], + [-11.528099, 8.219299], + [-11.525599, 8.216199], + [-11.521099, 8.211499], + [-11.5189, 8.2087], + [-11.5166, 8.2036], + [-11.5162, 8.2013], + [-11.517599, 8.1966], + [-11.518, 8.193099], + [-11.518199, 8.187999], + [-11.5181, 8.178699], + [-11.5181, 8.1666], + [-11.5178, 8.1631], + [-11.516699, 8.160399], + [-11.515599, 8.158999], + [-11.513599, 8.1575], + [-11.510199, 8.1568], + [-11.5068, 8.1574], + [-11.502499, 8.1597], + [-11.4949, 8.163399], + [-11.4922, 8.164099], + [-11.488099, 8.1643], + [-11.4747, 8.164399], + [-11.470299, 8.164199], + [-11.466299, 8.162799], + [-11.4641, 8.1602], + [-11.4617, 8.1582], + [-11.4566, 8.1552], + [-11.4538, 8.1527], + [-11.451499, 8.149799], + [-11.4495, 8.145], + [-11.448199, 8.1423], + [-11.444199, 8.1401], + [-11.442, 8.14], + [-11.439999, 8.1409], + [-11.4369, 8.143399], + [-11.434, 8.144999], + [-11.4298, 8.145899], + [-11.4273, 8.146799], + [-11.420599, 8.1501], + [-11.416599, 8.1532], + [-11.409599, 8.1603], + [-11.405599, 8.1634], + [-11.402599, 8.164099], + [-11.3982, 8.163599], + [-11.393799, 8.161599], + [-11.391299, 8.160899], + [-11.3859, 8.1603], + [-11.3833, 8.1597], + [-11.3779, 8.1574], + [-11.3736, 8.1564], + [-11.3705, 8.162599], + [-11.3682, 8.169299], + [-11.367, 8.174899], + [-11.3669, 8.179699], + [-11.3665, 8.183499], + [-11.375999, 8.190099], + [-11.383199, 8.194699], + [-11.391599, 8.201999], + [-11.3948, 8.2045], + [-11.3982, 8.2063], + [-11.4048, 8.2085], + [-11.410899, 8.2118], + [-11.414099, 8.2153], + [-11.418299, 8.227199], + [-11.421799, 8.234799], + [-11.425799, 8.242199], + [-11.4281, 8.2452], + [-11.431799, 8.248799], + [-11.4348, 8.251], + [-11.446599, 8.256699], + [-11.454099, 8.260799], + [-11.4574, 8.2635], + [-11.460399, 8.266599], + [-11.4655, 8.2739], + [-11.473499, 8.283399], + [-11.4755, 8.2871], + [-11.478099, 8.295799], + [-11.479499, 8.301799], + [-11.480599, 8.317099], + [-11.4817, 8.3208], + [-11.4838, 8.3251], + [-11.486999, 8.329299], + [-11.4946, 8.336699], + [-11.511399, 8.337499], + [-11.515999, 8.338099], + [-11.527799, 8.341899], + [-11.536099, 8.345099], + [-11.536399, 8.3413], + [-11.536899, 8.3385], + [-11.538999, 8.3321], + [-11.541399, 8.3278], + [-11.5427, 8.324599], + [-11.545099, 8.3203], + [-11.546399, 8.3172], + [-11.5483, 8.313599], + [-11.550099, 8.3097], + [-11.552199, 8.3068], + [-11.554199, 8.3048], + [-11.5571, 8.302699], + [-11.561, 8.300799], + [-11.563899, 8.2986], + [-11.566499, 8.2954], + [-11.569699, 8.2897], + [-11.573199, 8.2854], + [-11.5746, 8.283099], + [-11.578199, 8.2756], + [-11.579899, 8.2689], + [-11.581999, 8.2641], + [-11.582156, 8.263242] + ] + ], + "type": "Polygon" + }, + "id": 451, + "properties": { + "cc:admin:id": ["58"], + "cc:oBld:total": 1185, + "cc:pop:fifteen-to-twenty-four": 5106.016924123656, + "cc:pop:grid3-total": 16156.857670073534, + "cc:pop:kontur-total": 27837.519726541133, + "cc:pop:men": 13780.690776398324, + "cc:pop:sixty-plus": 1971.1063322830728, + "cc:pop:total": 28589.16639571421, + "cc:pop:under-five": 4707.712560525509, + "cc:pop:women": 14808.475619315876, + "cc:pop:women-fiften-to-forty-nine": 7029.5599802668, + "cc:pop:wp-total": 24654.63591823763, + "cc:pop:wp-total-UN": 28604.621388309482, + "cc:id": "451", + "cc:Name": "Njala CHC", + "cc:site": [-11.4596, 8.2006], + "user:parentName": "Komboya", + "user:code": "OU_1038", + "user:orgUnitId": "QsAwd531Cpd", + "user:level": "4", + "user:parentId": "JdhagCUEMbj" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.106249, 8.597083], + [-11.104582, 8.592084], + [-11.102916, 8.592917], + [-11.09875, 8.594583], + [-11.095417, 8.59375], + [-11.095416, 8.592917], + [-11.093749, 8.592916], + [-11.09125, 8.590417], + [-11.089582, 8.584584], + [-11.087769, 8.58413], + [-11.087804, 8.58375], + [-11.085416, 8.583749], + [-11.085032, 8.582597], + [-11.085295, 8.5827], + [-11.085799, 8.582678], + [-11.085046, 8.581861], + [-11.084744, 8.581731], + [-11.084583, 8.58125], + [-11.085978, 8.580319], + [-11.08566, 8.579951], + [-11.084852, 8.579393], + [-11.08436, 8.578715], + [-11.083992, 8.577874], + [-11.084021, 8.577531], + [-11.083438, 8.577088], + [-11.083347, 8.576645], + [-11.083126, 8.576421], + [-11.083226, 8.575889], + [-11.082786, 8.575283], + [-11.083505, 8.574878], + [-11.082917, 8.574583], + [-11.082916, 8.572917], + [-11.079582, 8.569584], + [-11.077083, 8.570416], + [-11.076249, 8.567917], + [-11.072917, 8.565416], + [-11.072917, 8.563749], + [-11.075416, 8.562083], + [-11.075416, 8.559584], + [-11.074979, 8.558711], + [-11.074638, 8.559007], + [-11.074172, 8.559116], + [-11.072928, 8.559017], + [-11.072856, 8.559075], + [-11.072082, 8.557917], + [-11.069582, 8.557916], + [-11.067082, 8.555417], + [-11.064582, 8.555416], + [-11.06375, 8.552916], + [-11.06375, 8.55125], + [-11.065531, 8.549468], + [-11.062295, 8.549267], + [-11.06158, 8.549259], + [-11.061599, 8.549376], + [-11.062428, 8.552213], + [-11.062851, 8.552916], + [-11.05875, 8.552916], + [-11.058749, 8.549583], + [-11.05625, 8.54125], + [-11.056249, 8.540417], + [-11.052083, 8.53125], + [-11.049583, 8.530416], + [-11.048749, 8.52625], + [-11.04375, 8.522917], + [-11.044583, 8.522083], + [-11.046249, 8.517084], + [-11.046249, 8.515417], + [-11.040416, 8.512916], + [-11.039583, 8.510416], + [-11.039583, 8.505417], + [-11.041249, 8.502084], + [-11.037083, 8.49875], + [-11.034583, 8.49625], + [-11.034582, 8.49125], + [-11.025417, 8.495416], + [-11.022917, 8.495416], + [-11.022083, 8.485417], + [-11.02324, 8.483968], + [-11.020545, 8.4793], + [-11.012733, 8.479299], + [-11.008826, 8.472534], + [-11.007034, 8.472534], + [-11.0083, 8.4738], + [-11.010499, 8.476799], + [-11.013, 8.4812], + [-11.018199, 8.4879], + [-11.019199, 8.491299], + [-11.019399, 8.493999], + [-11.0192, 8.496699], + [-11.0186, 8.499199], + [-11.017, 8.502699], + [-11.0166, 8.5051], + [-11.017, 8.5075], + [-11.0189, 8.5119], + [-11.019499, 8.515299], + [-11.019499, 8.5181], + [-11.019099, 8.5208], + [-11.016699, 8.5264], + [-11.0162, 8.529899], + [-11.016, 8.5341], + [-11.016199, 8.547899], + [-11.0161, 8.550999], + [-11.015599, 8.5541], + [-11.0136, 8.559499], + [-11.0128, 8.563399], + [-11.0125, 8.569599], + [-11.012212, 8.571387], + [-11.017082, 8.572083], + [-11.020416, 8.570417], + [-11.02125, 8.572083], + [-11.023749, 8.572917], + [-11.024583, 8.573749], + [-11.02625, 8.57375], + [-11.02875, 8.580416], + [-11.034583, 8.57875], + [-11.039582, 8.58375], + [-11.03375, 8.587083], + [-11.027917, 8.587084], + [-11.033376, 8.591178], + [-11.034031, 8.58991], + [-11.03496, 8.587695], + [-11.03562, 8.586692], + [-11.036325, 8.586255], + [-11.036514, 8.586211], + [-11.037083, 8.587916], + [-11.042916, 8.587917], + [-11.042917, 8.589584], + [-11.043474, 8.592925], + [-11.043534, 8.592859], + [-11.044402, 8.592457], + [-11.044939, 8.592551], + [-11.045134, 8.592457], + [-11.04548, 8.591413], + [-11.045921, 8.590775], + [-11.046745, 8.590004], + [-11.047137, 8.589856], + [-11.04741, 8.589911], + [-11.048122, 8.590699], + [-11.049596, 8.591654], + [-11.052765, 8.590088], + [-11.054436, 8.590823], + [-11.054646, 8.591134], + [-11.054735, 8.591506], + [-11.054741, 8.591525], + [-11.05474, 8.591527], + [-11.054862, 8.592038], + [-11.055212, 8.59226], + [-11.056773, 8.592061], + [-11.058308, 8.592159], + [-11.058908, 8.592497], + [-11.058647, 8.593198], + [-11.057461, 8.593924], + [-11.057465, 8.593978], + [-11.057516, 8.594004], + [-11.061035, 8.595917], + [-11.061435, 8.596164], + [-11.061527, 8.596325], + [-11.061607, 8.596262], + [-11.062009, 8.595355], + [-11.063232, 8.594766], + [-11.063355, 8.595045], + [-11.063073, 8.595563], + [-11.063532, 8.595926], + [-11.064284, 8.5962], + [-11.06354, 8.597389], + [-11.064899, 8.597435], + [-11.065416, 8.597027], + [-11.065417, 8.598749], + [-11.06625, 8.599583], + [-11.069287, 8.598367], + [-11.069054, 8.598105], + [-11.069019, 8.597819], + [-11.069099, 8.597636], + [-11.069121, 8.597599], + [-11.0693, 8.597253], + [-11.069346, 8.597204], + [-11.069489, 8.59709], + [-11.069927, 8.596829], + [-11.070055, 8.596513], + [-11.07108, 8.596311], + [-11.071646, 8.596491], + [-11.071962, 8.596434], + [-11.07243, 8.597101], + [-11.073766, 8.597971], + [-11.074263, 8.5981], + [-11.073941, 8.599252], + [-11.075116, 8.5986], + [-11.075951, 8.5984], + [-11.076426, 8.598675], + [-11.077222, 8.598846], + [-11.077616, 8.598813], + [-11.078367, 8.598265], + [-11.078967, 8.598219], + [-11.079384, 8.598597], + [-11.080022, 8.598264], + [-11.079806, 8.598983], + [-11.080078, 8.599868], + [-11.080219, 8.601176], + [-11.081314, 8.603151], + [-11.082917, 8.602084], + [-11.086249, 8.602916], + [-11.087234, 8.60144], + [-11.087513, 8.602455], + [-11.087962, 8.604294], + [-11.088719, 8.60424], + [-11.089804, 8.603863], + [-11.090373, 8.604316], + [-11.090373, 8.604318], + [-11.089802, 8.604585], + [-11.089802, 8.605134], + [-11.090223, 8.605417], + [-11.090188, 8.60674], + [-11.090657, 8.607144], + [-11.091962, 8.607471], + [-11.092843, 8.60798], + [-11.09303, 8.609141], + [-11.093396, 8.60934], + [-11.093475, 8.609343], + [-11.093508, 8.60917], + [-11.094018, 8.609178], + [-11.094671, 8.608807], + [-11.094716, 8.60875], + [-11.097916, 8.608749], + [-11.100416, 8.605416], + [-11.102083, 8.597917], + [-11.106249, 8.597083] + ] + ], + "type": "Polygon" + }, + "id": 452, + "properties": { + "cc:admin:id": ["100"], + "cc:oBld:total": 911, + "cc:pop:fifteen-to-twenty-four": 879.5069770303846, + "cc:pop:grid3-total": 4558.07445591467, + "cc:pop:kontur-total": 4496.497575689362, + "cc:pop:men": 2616.6977102836527, + "cc:pop:sixty-plus": 265.78576105883695, + "cc:pop:total": 4709.648866022719, + "cc:pop:under-five": 775.2483983827208, + "cc:pop:women": 2092.951155739064, + "cc:pop:women-fiften-to-forty-nine": 1039.6808326776925, + "cc:pop:wp-total": 4226.057426268574, + "cc:pop:wp-total-UN": 4895.578898383434, + "cc:id": "452", + "cc:Name": "Njala CHP", + "cc:site": [-11.054, 8.5732], + "user:parentName": "Nimikoro", + "user:code": "OU_233401", + "user:orgUnitId": "vPz4Irz7sxR", + "user:level": "4", + "user:parentId": "DmaLM8WYmWv" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.106137, 8.147007], + [-12.105896, 8.146756], + [-12.103128, 8.145803], + [-12.09852, 8.143791], + [-12.095524, 8.142219], + [-12.093875, 8.141075], + [-12.093213, 8.14042], + [-12.092563, 8.139525], + [-12.092424, 8.13875], + [-12.093674, 8.138749], + [-12.093707, 8.138641], + [-12.094228, 8.138289], + [-12.094367, 8.137799], + [-12.093899, 8.136249], + [-12.094148, 8.13375], + [-12.093018, 8.133749], + [-12.093017, 8.133748], + [-12.093045, 8.133021], + [-12.093526, 8.128137], + [-12.093609, 8.120954], + [-12.093779, 8.119583], + [-12.094284, 8.118606], + [-12.095752, 8.117678], + [-12.096535, 8.117582], + [-12.097809, 8.117701], + [-12.099337, 8.118106], + [-12.099831, 8.117976], + [-12.10118, 8.117212], + [-12.103501, 8.115438], + [-12.104669, 8.11415], + [-12.10544, 8.11222], + [-12.105715, 8.11116], + [-12.105607, 8.110339], + [-12.105162, 8.109541], + [-12.10444, 8.109052], + [-12.10243, 8.108468], + [-12.098412, 8.10661], + [-12.097485, 8.106467], + [-12.097003, 8.106693], + [-12.094681, 8.109802], + [-12.094584, 8.109911], + [-12.094583, 8.10991], + [-12.094582, 8.108717], + [-12.090589, 8.112531], + [-12.086016, 8.115974], + [-12.084145, 8.11682], + [-12.080718, 8.116391], + [-12.080554, 8.115927], + [-12.080686, 8.115449], + [-12.08148, 8.11496], + [-12.082406, 8.114103], + [-12.084379, 8.110588], + [-12.084573, 8.109099], + [-12.084632, 8.106134], + [-12.084909, 8.104561], + [-12.085535, 8.103143], + [-12.086189, 8.102084], + [-12.085148, 8.102084], + [-12.085147, 8.102082], + [-12.087514, 8.097795], + [-12.088277, 8.096678], + [-12.0905, 8.094295], + [-12.091049, 8.092965], + [-12.096404, 8.085949], + [-12.0935, 8.0858], + [-12.0906, 8.085899], + [-12.0869, 8.086699], + [-12.0825, 8.088699], + [-12.079599, 8.0894], + [-12.073699, 8.089699], + [-12.0566, 8.0896], + [-12.053199, 8.0921], + [-12.050799, 8.093], + [-12.046499, 8.094], + [-12.0414, 8.096399], + [-12.038199, 8.0977], + [-12.033, 8.100299], + [-12.027899, 8.1014], + [-12.0227, 8.103799], + [-12.018499, 8.1059], + [-12.013999, 8.1097], + [-12.0029, 8.120899], + [-12.0003, 8.123599], + [-11.998099, 8.1265], + [-11.996299, 8.1303], + [-11.994, 8.134599], + [-11.992699, 8.1377], + [-11.9902, 8.142999], + [-11.9888, 8.148899], + [-11.986899, 8.1534], + [-11.9863, 8.157099], + [-11.986246, 8.159583], + [-11.98625, 8.159584], + [-11.989583, 8.162083], + [-11.992916, 8.162916], + [-11.994582, 8.158749], + [-11.99375, 8.155417], + [-12.007082, 8.157083], + [-12.00875, 8.155417], + [-12.012082, 8.155416], + [-12.01125, 8.153751], + [-12.011251, 8.153749], + [-12.027916, 8.150416], + [-12.026353, 8.146246], + [-12.030545, 8.146246], + [-12.034452, 8.153011], + [-12.038841, 8.153012], + [-12.03875, 8.153749], + [-12.039583, 8.154583], + [-12.043749, 8.15625], + [-12.04625, 8.158749], + [-12.052943, 8.158749], + [-12.053091, 8.157494], + [-12.053242, 8.155085], + [-12.057916, 8.15375], + [-12.062082, 8.15125], + [-12.065417, 8.154583], + [-12.067083, 8.154583], + [-12.074056, 8.152491], + [-12.075449, 8.154582], + [-12.078955, 8.160427], + [-12.079721, 8.162112], + [-12.080436, 8.164319], + [-12.081009, 8.166726], + [-12.081961, 8.166488], + [-12.081592, 8.164553], + [-12.080589, 8.161859], + [-12.077032, 8.155121], + [-12.073339, 8.149578], + [-12.072777, 8.14828], + [-12.072641, 8.146478], + [-12.072811, 8.145467], + [-12.074524, 8.140694], + [-12.075138, 8.139479], + [-12.075558, 8.139074], + [-12.076256, 8.139002], + [-12.078038, 8.139514], + [-12.081046, 8.140717], + [-12.082431, 8.141587], + [-12.083236, 8.142207], + [-12.085199, 8.145244], + [-12.087714, 8.148139], + [-12.09124, 8.151117], + [-12.093802, 8.152522], + [-12.095593, 8.153216], + [-12.095974, 8.152079], + [-12.098532, 8.153214], + [-12.100324, 8.153534], + [-12.101637, 8.153284], + [-12.102179, 8.152963], + [-12.105595, 8.148747], + [-12.106137, 8.147531], + [-12.106137, 8.147007] + ] + ], + "type": "Polygon" + }, + "id": 453, + "properties": { + "cc:admin:id": ["60"], + "cc:oBld:total": 636, + "cc:pop:fifteen-to-twenty-four": 2442.524463563318, + "cc:pop:grid3-total": 9312.635098338782, + "cc:pop:kontur-total": 14035.863932594977, + "cc:pop:men": 6522.589668133209, + "cc:pop:sixty-plus": 959.7502362942521, + "cc:pop:total": 13737.460476259706, + "cc:pop:under-five": 2247.800863962433, + "cc:pop:women": 7214.870808126498, + "cc:pop:women-fiften-to-forty-nine": 3456.9905013585176, + "cc:pop:wp-total": 9868.085699403804, + "cc:pop:wp-total-UN": 11433.2770646883, + "cc:id": "453", + "cc:Name": "Njala University Hospital", + "cc:site": [-12.0716, 8.1111], + "user:parentName": "Kori", + "user:code": "OU_246995", + "user:orgUnitId": "Bpvug2zxHEZ", + "user:level": "4", + "user:parentId": "nV3OkyzF4US" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.499036, 7.396222], + [-11.498899, 7.395899], + [-11.498399, 7.393099], + [-11.4982, 7.3873], + [-11.498, 7.3566], + [-11.4978, 7.3537], + [-11.497199, 7.349999], + [-11.494599, 7.343799], + [-11.494099, 7.339999], + [-11.493299, 7.331899], + [-11.4907, 7.3252], + [-11.489399, 7.320199], + [-11.4855, 7.3118], + [-11.4831, 7.3075], + [-11.481699, 7.304299], + [-11.4792, 7.3001], + [-11.477899, 7.296899], + [-11.475526, 7.292395], + [-11.472917, 7.292916], + [-11.472083, 7.292917], + [-11.470199, 7.291975], + [-11.470591, 7.293346], + [-11.470432, 7.293731], + [-11.470668, 7.294778], + [-11.470904, 7.295162], + [-11.471116, 7.295178], + [-11.471377, 7.296088], + [-11.471861, 7.296173], + [-11.472605, 7.296836], + [-11.472924, 7.297575], + [-11.472878, 7.298192], + [-11.472357, 7.299513], + [-11.473207, 7.302485], + [-11.470245, 7.305416], + [-11.466486, 7.305417], + [-11.466028, 7.306442], + [-11.463339, 7.308793], + [-11.463801, 7.311379], + [-11.4629, 7.313453], + [-11.462357, 7.317523], + [-11.461957, 7.31776], + [-11.461601, 7.318591], + [-11.460227, 7.319392], + [-11.459582, 7.31875], + [-11.457357, 7.318305], + [-11.455847, 7.318869], + [-11.454509, 7.321084], + [-11.452913, 7.322427], + [-11.450831, 7.324778], + [-11.449797, 7.327356], + [-11.445573, 7.330159], + [-11.44264, 7.330084], + [-11.440511, 7.329631], + [-11.43691, 7.329557], + [-11.434766, 7.330099], + [-11.433642, 7.329752], + [-11.43346, 7.329345], + [-11.433839, 7.328833], + [-11.433262, 7.328728], + [-11.432669, 7.329224], + [-11.431484, 7.328909], + [-11.43086, 7.32945], + [-11.429994, 7.328939], + [-11.429182, 7.329149], + [-11.42855, 7.329805], + [-11.427722, 7.330092], + [-11.426818, 7.330982], + [-11.426089, 7.333567], + [-11.426262, 7.335715], + [-11.42507, 7.34016], + [-11.425092, 7.341006], + [-11.424508, 7.343484], + [-11.424075, 7.343674], + [-11.423353, 7.344436], + [-11.422813, 7.345329], + [-11.422396, 7.345613], + [-11.421852, 7.346355], + [-11.421718, 7.346925], + [-11.421765, 7.349813], + [-11.421024, 7.350244], + [-11.420407, 7.350299], + [-11.420005, 7.350548], + [-11.419363, 7.352325], + [-11.419643, 7.352725], + [-11.420049, 7.352699], + [-11.42005, 7.3527], + [-11.419777, 7.353226], + [-11.419428, 7.353264], + [-11.418933, 7.354574], + [-11.418503, 7.354707], + [-11.4185, 7.354715], + [-11.418499, 7.354715], + [-11.417394, 7.353832], + [-11.417236, 7.354364], + [-11.41729, 7.355532], + [-11.417602, 7.356694], + [-11.418122, 7.357801], + [-11.417897, 7.358302], + [-11.418932, 7.358659], + [-11.418933, 7.358661], + [-11.418477, 7.359585], + [-11.418062, 7.359897], + [-11.417789, 7.360721], + [-11.4169, 7.360568], + [-11.416799, 7.361395], + [-11.414348, 7.363471], + [-11.413626, 7.36428], + [-11.412736, 7.366144], + [-11.412402, 7.366395], + [-11.412723, 7.367444], + [-11.412493, 7.368619], + [-11.41264, 7.369682], + [-11.412142, 7.370847], + [-11.412182, 7.371148], + [-11.411755, 7.371243], + [-11.411201, 7.372216], + [-11.410324, 7.373303], + [-11.410258, 7.37383], + [-11.410633, 7.373867], + [-11.411168, 7.373147], + [-11.411322, 7.372616], + [-11.412545, 7.371105], + [-11.412549, 7.372693], + [-11.412377, 7.373397], + [-11.412122, 7.373414], + [-11.411873, 7.373854], + [-11.410785, 7.374567], + [-11.40991, 7.374367], + [-11.407719, 7.376333], + [-11.407527, 7.376334], + [-11.40703, 7.377132], + [-11.406937, 7.37771], + [-11.406897, 7.379794], + [-11.410207, 7.380267], + [-11.411012, 7.378945], + [-11.411178, 7.378116], + [-11.416249, 7.37875], + [-11.419582, 7.383749], + [-11.419583, 7.384583], + [-11.422083, 7.385417], + [-11.427916, 7.391249], + [-11.424583, 7.397916], + [-11.428749, 7.400416], + [-11.42875, 7.402083], + [-11.433729, 7.406351], + [-11.433699, 7.406423], + [-11.43875, 7.412916], + [-11.442083, 7.412917], + [-11.447083, 7.422916], + [-11.451249, 7.41875], + [-11.452649, 7.418284], + [-11.45265, 7.418284], + [-11.452965, 7.419515], + [-11.462916, 7.418749], + [-11.462917, 7.412917], + [-11.469582, 7.412917], + [-11.470933, 7.414266], + [-11.477629, 7.414266], + [-11.479706, 7.41786], + [-11.488749, 7.41375], + [-11.489582, 7.412916], + [-11.48875, 7.402917], + [-11.491257, 7.402602], + [-11.495416, 7.402083], + [-11.497916, 7.399583], + [-11.499036, 7.396222] + ] + ], + "type": "Polygon" + }, + "id": 454, + "properties": { + "cc:admin:id": ["5"], + "cc:oBld:total": 141, + "cc:pop:fifteen-to-twenty-four": 2168.90704069366, + "cc:pop:grid3-total": 4972.159576098363, + "cc:pop:kontur-total": 12150.190150445525, + "cc:pop:men": 5816.604032422398, + "cc:pop:sixty-plus": 895.5949157242369, + "cc:pop:total": 11958.71917912526, + "cc:pop:under-five": 2026.6041221926007, + "cc:pop:women": 6142.115146702862, + "cc:pop:women-fiften-to-forty-nine": 2911.645527378347, + "cc:pop:wp-total": 10154.89121449366, + "cc:pop:wp-total-UN": 11771.158775217402, + "cc:id": "454", + "cc:Name": "Njaluahun CHP", + "cc:site": [-11.4446, 7.3924], + "user:parentName": "Barri", + "user:code": "OU_260433", + "user:orgUnitId": "kvzdkXBxHoN", + "user:level": "4", + "user:parentId": "RzKeCma9qb1" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.029499, 8.075399], + [-12.0226, 8.0705], + [-12.0199, 8.0682], + [-12.014, 8.0624], + [-12.0124, 8.0603], + [-12.010499, 8.056399], + [-12.0081, 8.0521], + [-12.006799, 8.048899], + [-12.0044, 8.0447], + [-12.002899, 8.041499], + [-12.001299, 8.039299], + [-11.9951, 8.0327], + [-11.9929, 8.0298], + [-11.991099, 8.025899], + [-11.987599, 8.019299], + [-11.986199, 8.017099], + [-11.983, 8.0132], + [-11.9817, 8.0111], + [-11.9806, 8.0071], + [-11.9795, 8.0051], + [-11.9752, 8.0018], + [-11.971299, 7.9984], + [-11.965699, 7.9993], + [-11.959699, 8.0011], + [-11.9558, 8.001599], + [-11.950499, 8.001299], + [-11.943299, 7.999699], + [-11.9393, 7.9996], + [-11.9336, 8.000699], + [-11.9304, 8.000599], + [-11.927199, 7.999399], + [-11.9234, 7.9974], + [-11.917599, 7.992499], + [-11.9071, 7.9882], + [-11.900499, 7.985899], + [-11.8904, 7.9809], + [-11.8823, 7.9793], + [-11.8786, 7.9781], + [-11.8736, 7.9744], + [-11.868599, 7.9726], + [-11.8627, 7.9723], + [-11.858199, 7.9727], + [-11.854199, 7.9738], + [-11.8431, 7.978599], + [-11.836099, 7.9797], + [-11.8287, 7.979799], + [-11.823499, 7.977099], + [-11.817, 7.9754], + [-11.819899, 7.983899], + [-11.8213, 7.987299], + [-11.825699, 7.991999], + [-11.827799, 7.9951], + [-11.829299, 8.000099], + [-11.8294, 8.0037], + [-11.841799, 8.014799], + [-11.846099, 8.018199], + [-11.8497, 8.0201], + [-11.8561, 8.0223], + [-11.8625, 8.0255], + [-11.8659, 8.0278], + [-11.8735, 8.034], + [-11.8913, 8.0454], + [-11.896599, 8.049999], + [-11.900399, 8.054099], + [-11.902399, 8.057499], + [-11.9036, 8.0608], + [-11.904199, 8.0648], + [-11.9039, 8.068899], + [-11.901999, 8.0745], + [-11.8987, 8.081099], + [-11.897802, 8.086249], + [-11.897917, 8.08625], + [-11.902082, 8.092916], + [-11.902917, 8.092917], + [-11.904582, 8.095417], + [-11.905417, 8.102083], + [-11.913363, 8.102805], + [-11.914582, 8.102012], + [-11.914583, 8.102917], + [-11.917916, 8.108749], + [-11.91875, 8.110416], + [-11.920416, 8.110416], + [-11.92625, 8.104584], + [-11.931249, 8.114583], + [-11.93125, 8.102087], + [-11.931251, 8.102086], + [-11.934582, 8.107084], + [-11.934583, 8.114855], + [-11.934779, 8.115016], + [-11.935916, 8.115068], + [-11.935561, 8.115845], + [-11.934608, 8.11614], + [-11.934583, 8.11613], + [-11.934583, 8.118028], + [-11.937399, 8.1154], + [-11.9395, 8.113699], + [-11.9418, 8.112299], + [-11.944899, 8.1109], + [-11.948399, 8.1089], + [-11.9515, 8.107499], + [-11.9538, 8.105999], + [-11.9581, 8.102599], + [-11.9635, 8.099599], + [-11.969999, 8.0946], + [-11.9746, 8.092099], + [-11.9804, 8.087699], + [-11.989299, 8.0828], + [-11.9925, 8.081499], + [-11.9968, 8.079099], + [-12.003899, 8.0757], + [-12.006, 8.074999], + [-12.0097, 8.0747], + [-12.0154, 8.0747], + [-12.029499, 8.075399] + ] + ], + "type": "Polygon" + }, + "id": 455, + "properties": { + "cc:admin:id": ["61"], + "cc:oBld:total": 74, + "cc:pop:fifteen-to-twenty-four": 1411.6740045343058, + "cc:pop:grid3-total": 7973.234247563648, + "cc:pop:kontur-total": 7215.395994246224, + "cc:pop:men": 3558.966029031775, + "cc:pop:sixty-plus": 561.7417109538814, + "cc:pop:total": 7617.110469501815, + "cc:pop:under-five": 1290.5252027698195, + "cc:pop:women": 4058.144440470038, + "cc:pop:women-fiften-to-forty-nine": 2010.3104006726937, + "cc:pop:wp-total": 6545.707931304519, + "cc:pop:wp-total-UN": 7602.490657940399, + "cc:id": "455", + "cc:Name": "Njama CHC", + "cc:site": [-11.941, 8.0822], + "user:parentName": "Kowa", + "user:code": "OU_247034", + "user:orgUnitId": "hzf90qz08AW", + "user:level": "4", + "user:parentId": "xIKjidMrico" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.69174, 8.592682], + [-12.6861, 8.5867], + [-12.6845, 8.5844], + [-12.6831, 8.5813], + [-12.680599, 8.576999], + [-12.6774, 8.570399], + [-12.677, 8.566899], + [-12.680499, 8.5589], + [-12.682799, 8.5546], + [-12.6835, 8.551099], + [-12.683699, 8.547499], + [-12.6835, 8.5438], + [-12.6827, 8.5404], + [-12.680199, 8.5375], + [-12.675099, 8.534699], + [-12.671899, 8.532199], + [-12.666099, 8.527099], + [-12.6566, 8.5222], + [-12.652999, 8.521499], + [-12.6442, 8.5214], + [-12.6394, 8.520899], + [-12.633999, 8.518599], + [-12.628099, 8.517199], + [-12.6197, 8.5133], + [-12.619526, 8.513203], + [-12.620477, 8.514534], + [-12.620332, 8.515505], + [-12.620402, 8.516361], + [-12.619849, 8.517765], + [-12.619694, 8.518734], + [-12.619623, 8.5188], + [-12.619314, 8.520371], + [-12.618651, 8.520861], + [-12.61825, 8.52124], + [-12.618083, 8.521708], + [-12.612917, 8.520417], + [-12.61125, 8.521249], + [-12.609582, 8.51375], + [-12.606249, 8.510417], + [-12.60263, 8.509813], + [-12.601892, 8.513026], + [-12.603095, 8.512989], + [-12.604491, 8.513395], + [-12.606117, 8.514204], + [-12.606594, 8.514752], + [-12.606971, 8.515518], + [-12.606728, 8.516025], + [-12.606275, 8.516394], + [-12.606114, 8.517277], + [-12.605487, 8.517412], + [-12.604422, 8.517276], + [-12.603168, 8.517703], + [-12.602743, 8.518242], + [-12.601891, 8.518374], + [-12.601221, 8.51981], + [-12.600763, 8.519943], + [-12.600289, 8.519789], + [-12.600365, 8.519482], + [-12.599639, 8.519502], + [-12.598673, 8.519095], + [-12.598379, 8.518613], + [-12.597905, 8.518281], + [-12.597712, 8.518314], + [-12.597317, 8.520675], + [-12.596241, 8.520651], + [-12.595651, 8.520278], + [-12.594933, 8.520154], + [-12.594572, 8.5203], + [-12.593444, 8.520122], + [-12.591857, 8.52056], + [-12.591586, 8.520605], + [-12.586861, 8.522856], + [-12.585869, 8.524315], + [-12.585383, 8.52552], + [-12.584917, 8.525726], + [-12.584902, 8.525721], + [-12.584531, 8.525875], + [-12.583089, 8.525923], + [-12.582309, 8.526579], + [-12.582402, 8.526889], + [-12.582734, 8.52788], + [-12.583426, 8.528792], + [-12.584228, 8.529405], + [-12.584449, 8.52976], + [-12.584818, 8.529894], + [-12.584818, 8.529895], + [-12.580417, 8.53125], + [-12.579582, 8.532917], + [-12.575594, 8.534246], + [-12.575408, 8.53378], + [-12.575036, 8.533338], + [-12.574285, 8.53246], + [-12.572916, 8.532916], + [-12.569583, 8.532084], + [-12.56875, 8.532083], + [-12.568749, 8.531833], + [-12.568582, 8.531914], + [-12.567736, 8.531973], + [-12.56738, 8.53216], + [-12.567154, 8.532599], + [-12.566065, 8.532945], + [-12.566023, 8.532901], + [-12.565593, 8.532805], + [-12.565129, 8.532948], + [-12.565503, 8.533588], + [-12.565924, 8.535832], + [-12.566615, 8.53753], + [-12.567026, 8.538413], + [-12.567142, 8.540292], + [-12.557917, 8.539583], + [-12.55664, 8.535117], + [-12.556518, 8.535204], + [-12.554588, 8.535487], + [-12.553602, 8.535816], + [-12.549178, 8.538765], + [-12.54837, 8.537495], + [-12.548184, 8.538079], + [-12.548076, 8.538454], + [-12.54792, 8.538899], + [-12.547746, 8.539269], + [-12.547397, 8.539418], + [-12.546734, 8.539352], + [-12.546514, 8.539516], + [-12.546234, 8.539542], + [-12.544878, 8.538899], + [-12.54051, 8.538666], + [-12.540307, 8.538519], + [-12.532157, 8.5404], + [-12.53222, 8.540684], + [-12.532045, 8.541779], + [-12.53091, 8.543248], + [-12.530862, 8.543989], + [-12.531085, 8.544675], + [-12.532074, 8.546125], + [-12.532943, 8.546631], + [-12.534708, 8.547163], + [-12.534796, 8.547305], + [-12.534795, 8.547307], + [-12.525417, 8.548749], + [-12.522083, 8.550416], + [-12.52125, 8.550417], + [-12.515416, 8.558749], + [-12.514583, 8.558749], + [-12.514582, 8.557917], + [-12.513749, 8.557916], + [-12.509582, 8.557084], + [-12.507082, 8.557917], + [-12.505741, 8.55993], + [-12.505839, 8.560526], + [-12.505729, 8.56114], + [-12.505929, 8.56158], + [-12.495417, 8.564584], + [-12.49594, 8.566682], + [-12.495805, 8.566608], + [-12.495182, 8.566729], + [-12.494361, 8.566633], + [-12.493889, 8.566316], + [-12.492832, 8.565052], + [-12.491729, 8.567099], + [-12.49102, 8.568066], + [-12.490547, 8.568695], + [-12.488075, 8.570837], + [-12.487468, 8.571484], + [-12.482083, 8.572084], + [-12.47625, 8.577916], + [-12.475417, 8.577917], + [-12.473749, 8.582916], + [-12.464583, 8.582917], + [-12.460286, 8.584349], + [-12.4634, 8.586], + [-12.465599, 8.588599], + [-12.4665, 8.5905], + [-12.467699, 8.595499], + [-12.469599, 8.600099], + [-12.470399, 8.603699], + [-12.470699, 8.609499], + [-12.471199, 8.613299], + [-12.4736, 8.6192], + [-12.4744, 8.6233], + [-12.4747, 8.6291], + [-12.475499, 8.632799], + [-12.477699, 8.638199], + [-12.478299, 8.641899], + [-12.478344, 8.642753], + [-12.47881, 8.642998], + [-12.479901, 8.644376], + [-12.480431, 8.644064], + [-12.482196, 8.643987], + [-12.482447, 8.643708], + [-12.482696, 8.6427], + [-12.483807, 8.641589], + [-12.484564, 8.64115], + [-12.486289, 8.640522], + [-12.486388, 8.640369], + [-12.486247, 8.639004], + [-12.486831, 8.639109], + [-12.487081, 8.638983], + [-12.487082, 8.638983], + [-12.487082, 8.639128], + [-12.486924, 8.639206], + [-12.486437, 8.639203], + [-12.486361, 8.639628], + [-12.486533, 8.640249], + [-12.486739, 8.640372], + [-12.48765, 8.64034], + [-12.487697, 8.640402], + [-12.48737, 8.640491], + [-12.486482, 8.64111], + [-12.486156, 8.640801], + [-12.484359, 8.641619], + [-12.483525, 8.642572], + [-12.482904, 8.64293], + [-12.482709, 8.643971], + [-12.482806, 8.644222], + [-12.483391, 8.644372], + [-12.483642, 8.644701], + [-12.486112, 8.644896], + [-12.486957, 8.643956], + [-12.488917, 8.642317], + [-12.489502, 8.641546], + [-12.490547, 8.64129], + [-12.490669, 8.640934], + [-12.490565, 8.640387], + [-12.491002, 8.640226], + [-12.491674, 8.639514], + [-12.492524, 8.639309], + [-12.494882, 8.640734], + [-12.495467, 8.640986], + [-12.495546, 8.640997], + [-12.495488, 8.640901], + [-12.495392, 8.640901], + [-12.495391, 8.6409], + [-12.495564, 8.640209], + [-12.495849, 8.6402], + [-12.497402, 8.63886], + [-12.497404, 8.638726], + [-12.49956, 8.636333], + [-12.499562, 8.636334], + [-12.499249, 8.637585], + [-12.502692, 8.634056], + [-12.503637, 8.633634], + [-12.505095, 8.633486], + [-12.505992, 8.633771], + [-12.507341, 8.633785], + [-12.508549, 8.634588], + [-12.510081, 8.634956], + [-12.510081, 8.634958], + [-12.508985, 8.635674], + [-12.508271, 8.636951], + [-12.508274, 8.637083], + [-12.508821, 8.637083], + [-12.508845, 8.636922], + [-12.509352, 8.636692], + [-12.510463, 8.63544], + [-12.51267, 8.635082], + [-12.513647, 8.634627], + [-12.513945, 8.634089], + [-12.514079, 8.632857], + [-12.513897, 8.632038], + [-12.513729, 8.631569], + [-12.51298, 8.630745], + [-12.512517, 8.629963], + [-12.512156, 8.627984], + [-12.512589, 8.627279], + [-12.514759, 8.627189], + [-12.517279, 8.62924], + [-12.518406, 8.628863], + [-12.516592, 8.62772], + [-12.516521, 8.627527], + [-12.516248, 8.627619], + [-12.516165, 8.627831], + [-12.515977, 8.62753], + [-12.515685, 8.627536], + [-12.515516, 8.6269], + [-12.51483, 8.626732], + [-12.514229, 8.626911], + [-12.513647, 8.626239], + [-12.513834, 8.626066], + [-12.515672, 8.625934], + [-12.515442, 8.625743], + [-12.515442, 8.625742], + [-12.516298, 8.625755], + [-12.516836, 8.626269], + [-12.517833, 8.62671], + [-12.519231, 8.627901], + [-12.519996, 8.628152], + [-12.520024, 8.62831], + [-12.520019, 8.628326], + [-12.521249, 8.627916], + [-12.522246, 8.626422], + [-12.523884, 8.626255], + [-12.524813, 8.626583], + [-12.525715, 8.626635], + [-12.526714, 8.626245], + [-12.52731, 8.625752], + [-12.52788, 8.624746], + [-12.527705, 8.623559], + [-12.527035, 8.62191], + [-12.526179, 8.621321], + [-12.52569, 8.62025], + [-12.526242, 8.61792], + [-12.526987, 8.616654], + [-12.529055, 8.614935], + [-12.531124, 8.613957], + [-12.533004, 8.613571], + [-12.533005, 8.613573], + [-12.532916, 8.61375], + [-12.531993, 8.614672], + [-12.533942, 8.614706], + [-12.534611, 8.614935], + [-12.535044, 8.61526], + [-12.536135, 8.616533], + [-12.536778, 8.617612], + [-12.539582, 8.620416], + [-12.539928, 8.620417], + [-12.540519, 8.620822], + [-12.541309, 8.622083], + [-12.542916, 8.622084], + [-12.542938, 8.622062], + [-12.544934, 8.623934], + [-12.545388, 8.625512], + [-12.54553, 8.627486], + [-12.544943, 8.628342], + [-12.544747, 8.629611], + [-12.544906, 8.632811], + [-12.544675, 8.635464], + [-12.544889, 8.63587], + [-12.545959, 8.63609], + [-12.547608, 8.636073], + [-12.549846, 8.635351], + [-12.551184, 8.635297], + [-12.554385, 8.634116], + [-12.555597, 8.634723], + [-12.557765, 8.634884], + [-12.558906, 8.636418], + [-12.558986, 8.63774], + [-12.55871, 8.639344], + [-12.558826, 8.640102], + [-12.559174, 8.641698], + [-12.560217, 8.643655], + [-12.560448, 8.64451], + [-12.560289, 8.645426], + [-12.560574, 8.646344], + [-12.560894, 8.648776], + [-12.561475, 8.649535], + [-12.562117, 8.65002], + [-12.56365, 8.650962], + [-12.567109, 8.651316], + [-12.56925, 8.652461], + [-12.570917, 8.652259], + [-12.572103, 8.652461], + [-12.572566, 8.652285], + [-12.573699, 8.651359], + [-12.574314, 8.649976], + [-12.574653, 8.649843], + [-12.575305, 8.649102], + [-12.576928, 8.648574], + [-12.578657, 8.64876], + [-12.580031, 8.649394], + [-12.582625, 8.651112], + [-12.586249, 8.654823], + [-12.58625, 8.65659], + [-12.586514, 8.656834], + [-12.589279, 8.658553], + [-12.590634, 8.658896], + [-12.592154, 8.658313], + [-12.593837, 8.658138], + [-12.594859, 8.657707], + [-12.595967, 8.65657], + [-12.596226, 8.656561], + [-12.596493, 8.657319], + [-12.596788, 8.65753], + [-12.59717, 8.65753], + [-12.598181, 8.656892], + [-12.598209, 8.656698], + [-12.598008, 8.656896], + [-12.597429, 8.657027], + [-12.597027, 8.656939], + [-12.59652, 8.656393], + [-12.596663, 8.656234], + [-12.598151, 8.655874], + [-12.598345, 8.655745], + [-12.59856, 8.654246], + [-12.598581, 8.654233], + [-12.599827, 8.653096], + [-12.602034, 8.653463], + [-12.602162, 8.653433], + [-12.603935, 8.653439], + [-12.605156, 8.651405], + [-12.605609, 8.651056], + [-12.606606, 8.650564], + [-12.610056, 8.649346], + [-12.611462, 8.647873], + [-12.613573, 8.644109], + [-12.61368, 8.641826], + [-12.613921, 8.641306], + [-12.614412, 8.640944], + [-12.615295, 8.64082], + [-12.616632, 8.640309], + [-12.618072, 8.639364], + [-12.618527, 8.638889], + [-12.618854, 8.638378], + [-12.618855, 8.637768], + [-12.618225, 8.63409], + [-12.617042, 8.631634], + [-12.615794, 8.629521], + [-12.615624, 8.62886], + [-12.615706, 8.626307], + [-12.616443, 8.624857], + [-12.616582, 8.62478], + [-12.616771, 8.625107], + [-12.618608, 8.625914], + [-12.618846, 8.625534], + [-12.62003, 8.624658], + [-12.620099, 8.624409], + [-12.619879, 8.624566], + [-12.619877, 8.624565], + [-12.620084, 8.623893], + [-12.620299, 8.6241], + [-12.620578, 8.623934], + [-12.620627, 8.623704], + [-12.621729, 8.623305], + [-12.621743, 8.623098], + [-12.62203, 8.623373], + [-12.622461, 8.623408], + [-12.623276, 8.6232], + [-12.625577, 8.623335], + [-12.630872, 8.622716], + [-12.632919, 8.62287], + [-12.633056, 8.622619], + [-12.633585, 8.622474], + [-12.635022, 8.62083], + [-12.636162, 8.620068], + [-12.638171, 8.619734], + [-12.638746, 8.61888], + [-12.640218, 8.617643], + [-12.641646, 8.617312], + [-12.644924, 8.617676], + [-12.64526, 8.617643], + [-12.645395, 8.617416], + [-12.646745, 8.617082], + [-12.647602, 8.616272], + [-12.647954, 8.615549], + [-12.648263, 8.614086], + [-12.648704, 8.613303], + [-12.648753, 8.612843], + [-12.649308, 8.612418], + [-12.649485, 8.611975], + [-12.649449, 8.610634], + [-12.647879, 8.608277], + [-12.647777, 8.608777], + [-12.648322, 8.61002], + [-12.648371, 8.610534], + [-12.648326, 8.610807], + [-12.647599, 8.611741], + [-12.647754, 8.613206], + [-12.647398, 8.613214], + [-12.646894, 8.612054], + [-12.645974, 8.610662], + [-12.645961, 8.609825], + [-12.645199, 8.608203], + [-12.645185, 8.607697], + [-12.64488, 8.60711], + [-12.644817, 8.606209], + [-12.644563, 8.605692], + [-12.644542, 8.604984], + [-12.64383, 8.601985], + [-12.644179, 8.601396], + [-12.644716, 8.6017], + [-12.645233, 8.601703], + [-12.645624, 8.601319], + [-12.646034, 8.600417], + [-12.644294, 8.600416], + [-12.644361, 8.600011], + [-12.645196, 8.599708], + [-12.645507, 8.599258], + [-12.645642, 8.598487], + [-12.646034, 8.597717], + [-12.646812, 8.597463], + [-12.646945, 8.596949], + [-12.646821, 8.596176], + [-12.647338, 8.596049], + [-12.648118, 8.59541], + [-12.648858, 8.593054], + [-12.649433, 8.592328], + [-12.649582, 8.592313], + [-12.649583, 8.592916], + [-12.649717, 8.593052], + [-12.649037, 8.593614], + [-12.648771, 8.595119], + [-12.648337, 8.595913], + [-12.649572, 8.594173], + [-12.649876, 8.593311], + [-12.64993, 8.593265], + [-12.650376, 8.59371], + [-12.650721, 8.593236], + [-12.651942, 8.59281], + [-12.655383, 8.592493], + [-12.657153, 8.59255], + [-12.657659, 8.592974], + [-12.658103, 8.593773], + [-12.658993, 8.594832], + [-12.660027, 8.594969], + [-12.662287, 8.59578], + [-12.662842, 8.595826], + [-12.6652, 8.595386], + [-12.666249, 8.595348], + [-12.66625, 8.594402], + [-12.668321, 8.594296], + [-12.673086, 8.59448], + [-12.676859, 8.594087], + [-12.67944, 8.594441], + [-12.681516, 8.59368], + [-12.683847, 8.593437], + [-12.685662, 8.592676], + [-12.686438, 8.59268], + [-12.688246, 8.591962], + [-12.689564, 8.59183], + [-12.690258, 8.591864], + [-12.691139, 8.592486], + [-12.69174, 8.592682] + ] + ], + "type": "Polygon" + }, + "id": 457, + "properties": { + "cc:admin:id": ["93"], + "cc:oBld:total": 509, + "cc:pop:fifteen-to-twenty-four": 1560.2905216755726, + "cc:pop:grid3-total": 12374.514939360639, + "cc:pop:kontur-total": 8256.146965308464, + "cc:pop:men": 3697.0040258165272, + "cc:pop:sixty-plus": 482.57021366255583, + "cc:pop:total": 7737.060783920854, + "cc:pop:under-five": 1320.3133581442744, + "cc:pop:women": 4040.0567581043288, + "cc:pop:women-fiften-to-forty-nine": 1968.5403841284701, + "cc:pop:wp-total": 6902.008134541418, + "cc:pop:wp-total-UN": 8003.850840395791, + "cc:id": "457", + "cc:Name": "Nonkoba CHP", + "cc:site": [-12.5806, 8.5937], + "user:parentName": "Masimera", + "user:code": "OU_255040", + "user:orgUnitId": "fdsRQbuuAuh", + "user:level": "4", + "user:parentId": "EfWCa0Cc8WW" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.829998, 7.567001], + [-11.827384, 7.567032], + [-11.828154, 7.566134], + [-11.82853, 7.564874], + [-11.82902, 7.564854], + [-11.827916, 7.56375], + [-11.820636, 7.563749], + [-11.818724, 7.56046], + [-11.816745, 7.561619], + [-11.816558, 7.561354], + [-11.816503, 7.562805], + [-11.815532, 7.563173], + [-11.815167, 7.563407], + [-11.814869, 7.563749], + [-11.81107, 7.563749], + [-11.811069, 7.560444], + [-11.811054, 7.558642], + [-11.811874, 7.557982], + [-11.811091, 7.557944], + [-11.809686, 7.557227], + [-11.809273, 7.557727], + [-11.809289, 7.55879], + [-11.809454, 7.559215], + [-11.809111, 7.559881], + [-11.808725, 7.559997], + [-11.808302, 7.559789], + [-11.807932, 7.559423], + [-11.807749, 7.558976], + [-11.80777, 7.558206], + [-11.807562, 7.557583], + [-11.807582, 7.557407], + [-11.807405, 7.557094], + [-11.806789, 7.55694], + [-11.805834, 7.557524], + [-11.805421, 7.557923], + [-11.805249, 7.558566], + [-11.804327, 7.559609], + [-11.803602, 7.55996], + [-11.80329, 7.559646], + [-11.80319, 7.559157], + [-11.80343, 7.558769], + [-11.803753, 7.558625], + [-11.804723, 7.557599], + [-11.804889, 7.556722], + [-11.804857, 7.556339], + [-11.804439, 7.556152], + [-11.80431, 7.55587], + [-11.804187, 7.55518], + [-11.804353, 7.554796], + [-11.804395, 7.5541], + [-11.804299, 7.554053], + [-11.803393, 7.554812], + [-11.802338, 7.556129], + [-11.802337, 7.55613], + [-11.802267, 7.554398], + [-11.802776, 7.553292], + [-11.802369, 7.552759], + [-11.802652, 7.552441], + [-11.801113, 7.550979], + [-11.799667, 7.551865], + [-11.797003, 7.55253], + [-11.79541, 7.553178], + [-11.794738, 7.552961], + [-11.791337, 7.552571], + [-11.790629, 7.552462], + [-11.789046, 7.551798], + [-11.788964, 7.551717], + [-11.788201, 7.544512], + [-11.787916, 7.544584], + [-11.786249, 7.545416], + [-11.782083, 7.545417], + [-11.782082, 7.546249], + [-11.77625, 7.54625], + [-11.772083, 7.549583], + [-11.767916, 7.547917], + [-11.76125, 7.549583], + [-11.760416, 7.547084], + [-11.757082, 7.54625], + [-11.752916, 7.547083], + [-11.747917, 7.545417], + [-11.747916, 7.543749], + [-11.746249, 7.542917], + [-11.744583, 7.542917], + [-11.737917, 7.548749], + [-11.736249, 7.54125], + [-11.735016, 7.540839], + [-11.735058, 7.54095], + [-11.735057, 7.540951], + [-11.729583, 7.539584], + [-11.72765, 7.539584], + [-11.7282, 7.5421], + [-11.728699, 7.550699], + [-11.7286, 7.560599], + [-11.7281, 7.564899], + [-11.7272, 7.568099], + [-11.731, 7.5715], + [-11.738399, 7.5755], + [-11.740799, 7.5789], + [-11.741399, 7.5809], + [-11.740799, 7.584899], + [-11.7387, 7.588599], + [-11.735799, 7.5918], + [-11.726099, 7.6013], + [-11.722699, 7.6059], + [-11.720599, 7.6116], + [-11.720099, 7.6144], + [-11.7197, 7.627499], + [-11.7193, 7.631699], + [-11.7175, 7.637699], + [-11.7169, 7.640999], + [-11.721799, 7.654599], + [-11.7232, 7.659799], + [-11.737, 7.659299], + [-11.745099, 7.6556], + [-11.748499, 7.6536], + [-11.752599, 7.6497], + [-11.754899, 7.6464], + [-11.756799, 7.639299], + [-11.756299, 7.633899], + [-11.7546, 7.626899], + [-11.7551, 7.6228], + [-11.7565, 7.620199], + [-11.7594, 7.616799], + [-11.7627, 7.613799], + [-11.767799, 7.6104], + [-11.770099, 7.6077], + [-11.771799, 7.602699], + [-11.771799, 7.597099], + [-11.770899, 7.592999], + [-11.769, 7.587399], + [-11.7692, 7.5829], + [-11.7708, 7.5802], + [-11.7733, 7.5785], + [-11.7777, 7.5777], + [-11.7816, 7.5781], + [-11.788599, 7.580499], + [-11.7926, 7.5812], + [-11.7981, 7.581399], + [-11.805199, 7.5804], + [-11.8119, 7.577599], + [-11.8216, 7.572999], + [-11.827499, 7.5696], + [-11.829998, 7.567001] + ] + ], + "type": "Polygon" + }, + "id": 458, + "properties": { + "cc:admin:id": ["88"], + "cc:oBld:total": 261, + "cc:pop:fifteen-to-twenty-four": 774.704440286819, + "cc:pop:grid3-total": 6584.3888963517265, + "cc:pop:kontur-total": 5763.802690059365, + "cc:pop:men": 2213.0987368908736, + "cc:pop:sixty-plus": 322.86863168356615, + "cc:pop:total": 4415.193666650239, + "cc:pop:under-five": 731.7060738759052, + "cc:pop:women": 2202.094929759366, + "cc:pop:women-fiften-to-forty-nine": 1031.5750144130745, + "cc:pop:wp-total": 4442.852119897084, + "cc:pop:wp-total-UN": 5147.128936069404, + "cc:id": "458", + "cc:Name": "Nyandehun MCHP", + "cc:site": [-11.76, 7.5891], + "user:parentName": "Malen", + "user:code": "OU_260394", + "user:orgUnitId": "mVvEwzoFutG", + "user:level": "4", + "user:parentId": "DfUfwjM9am5" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.143182, 8.158616], + [-11.1431, 8.1516], + [-11.1425, 8.1474], + [-11.140099, 8.141699], + [-11.138199, 8.134899], + [-11.1359, 8.1296], + [-11.1354, 8.1266], + [-11.135199, 8.120299], + [-11.135, 8.0908], + [-11.134824, 8.088095], + [-11.129582, 8.088749], + [-11.119583, 8.08125], + [-11.119583, 8.074584], + [-11.122716, 8.070666], + [-11.120146, 8.066216], + [-11.112335, 8.066216], + [-11.108429, 8.072981], + [-11.104275, 8.072982], + [-11.103117, 8.074493], + [-11.102083, 8.076249], + [-11.10204, 8.07625], + [-11.102024, 8.076276], + [-11.101958, 8.076413], + [-11.094583, 8.077084], + [-11.092083, 8.089582], + [-11.088749, 8.0875], + [-11.085708, 8.0875], + [-11.081802, 8.094266], + [-11.08355, 8.097297], + [-11.081268, 8.101249], + [-11.074583, 8.10125], + [-11.072083, 8.10375], + [-11.069227, 8.109462], + [-11.069097, 8.109375], + [-11.068749, 8.110416], + [-11.067917, 8.111249], + [-11.060416, 8.10375], + [-11.05875, 8.103749], + [-11.058299, 8.10285], + [-11.058177, 8.10289], + [-11.057082, 8.10125], + [-11.055417, 8.101249], + [-11.055416, 8.099584], + [-11.052916, 8.097084], + [-11.050417, 8.097084], + [-11.049583, 8.09875], + [-11.050416, 8.103749], + [-11.047917, 8.112916], + [-11.05141, 8.116411], + [-11.050322, 8.117646], + [-11.049884, 8.118446], + [-11.05125, 8.11875], + [-11.054582, 8.122916], + [-11.054583, 8.127976], + [-11.055219, 8.129079], + [-11.063033, 8.12908], + [-11.065416, 8.133208], + [-11.065417, 8.1368], + [-11.070532, 8.136801], + [-11.074439, 8.143566], + [-11.077636, 8.143567], + [-11.07625, 8.145417], + [-11.07875, 8.150416], + [-11.087082, 8.147917], + [-11.087083, 8.157083], + [-11.087917, 8.157084], + [-11.092982, 8.157717], + [-11.093023, 8.157818], + [-11.093483, 8.160369], + [-11.094829, 8.163215], + [-11.095381, 8.16379], + [-11.097997, 8.165627], + [-11.098759, 8.166774], + [-11.098773, 8.166828], + [-11.09375, 8.170417], + [-11.095416, 8.176249], + [-11.095417, 8.177083], + [-11.096249, 8.177084], + [-11.095417, 8.180416], + [-11.095417, 8.183749], + [-11.105416, 8.182084], + [-11.107916, 8.180417], + [-11.110416, 8.182917], + [-11.109582, 8.192916], + [-11.102083, 8.192917], + [-11.097083, 8.195417], + [-11.098749, 8.199584], + [-11.09875, 8.20239], + [-11.099674, 8.199969], + [-11.102201, 8.196636], + [-11.102986, 8.196439], + [-11.103885, 8.196341], + [-11.104954, 8.197098], + [-11.105568, 8.197344], + [-11.108218, 8.197717], + [-11.10852, 8.197856], + [-11.107916, 8.202084], + [-11.102917, 8.20875], + [-11.10375, 8.214583], + [-11.10625, 8.217083], + [-11.107911, 8.217084], + [-11.105417, 8.217917], + [-11.10625, 8.232083], + [-11.111249, 8.232917], + [-11.11375, 8.244583], + [-11.116101, 8.244583], + [-11.1172, 8.242299], + [-11.1185, 8.239099], + [-11.1203, 8.235599], + [-11.1212, 8.231999], + [-11.121499, 8.2243], + [-11.122099, 8.2206], + [-11.1241, 8.216099], + [-11.1255, 8.210299], + [-11.1273, 8.207099], + [-11.133699, 8.1999], + [-11.1354, 8.196699], + [-11.136899, 8.1908], + [-11.139099, 8.1855], + [-11.140499, 8.1797], + [-11.142499, 8.1752], + [-11.143099, 8.1724], + [-11.143299, 8.168499], + [-11.143182, 8.158616] + ] + ], + "type": "Polygon" + }, + "id": 460, + "properties": { + "cc:admin:id": ["75"], + "cc:oBld:total": 1674, + "cc:pop:fifteen-to-twenty-four": 3723.8589495634988, + "cc:pop:grid3-total": 12167.656707665883, + "cc:pop:kontur-total": 17709.508934438538, + "cc:pop:men": 10810.881709140729, + "cc:pop:sixty-plus": 1143.7417972438698, + "cc:pop:total": 19310.910080592326, + "cc:pop:under-five": 2981.7131620068367, + "cc:pop:women": 8500.028371451599, + "cc:pop:women-fiften-to-forty-nine": 4223.182131339487, + "cc:pop:wp-total": 15488.124921017323, + "cc:pop:wp-total-UN": 17960.013285410798, + "cc:id": "460", + "cc:Name": "Panguma Mission Hosp.", + "cc:site": [-11.1368, 8.1846], + "user:parentName": "Lower Bambara", + "user:code": "OU_222664", + "user:orgUnitId": "PEZNsGbZaVJ", + "user:level": "4", + "user:parentId": "hdEuw2ugkVF" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.06625, 8.908749], + [-12.066249, 8.907916], + [-12.065793, 8.906091], + [-12.0614, 8.908199], + [-12.058799, 8.9089], + [-12.056099, 8.909099], + [-12.0525, 8.9088], + [-12.0504, 8.908099], + [-12.0487, 8.906799], + [-12.0473, 8.904699], + [-12.0466, 8.9022], + [-12.046478, 8.90003], + [-12.046117, 8.900403], + [-12.045488, 8.900444], + [-12.045289, 8.901313], + [-12.044847, 8.902214], + [-12.044971, 8.902636], + [-12.044869, 8.903027], + [-12.044681, 8.90337], + [-12.044494, 8.90362], + [-12.044493, 8.90362], + [-12.044348, 8.903114], + [-12.044205, 8.902575], + [-12.044055, 8.902058], + [-12.043367, 8.900934], + [-12.04299, 8.900485], + [-12.04282, 8.900295], + [-12.04239, 8.899657], + [-12.041583, 8.901027], + [-12.040047, 8.902564], + [-12.038785, 8.903622], + [-12.038552, 8.9041], + [-12.037871, 8.904132], + [-12.037048, 8.903873], + [-12.036637, 8.903982], + [-12.036338, 8.90337], + [-12.036084, 8.903229], + [-12.036044, 8.903202], + [-12.035151, 8.902702], + [-12.033768, 8.90454], + [-12.032201, 8.90331], + [-12.031524, 8.903766], + [-12.03085, 8.904284], + [-12.030736, 8.904353], + [-12.029525, 8.905164], + [-12.029108, 8.904802], + [-12.028391, 8.903869], + [-12.027941, 8.903526], + [-12.027842, 8.903491], + [-12.027325, 8.903744], + [-12.027272, 8.904058], + [-12.02688, 8.904309], + [-12.026564, 8.9047], + [-12.026254, 8.904968], + [-12.026043, 8.905156], + [-12.025609, 8.905038], + [-12.02533, 8.904472], + [-12.024926, 8.904183], + [-12.024571, 8.904138], + [-12.024257, 8.904955], + [-12.024076, 8.904952], + [-12.022895, 8.902907], + [-12.016246, 8.902906], + [-12.015907, 8.901889], + [-12.016199, 8.90126], + [-12.012083, 8.902082], + [-12.00929, 8.898174], + [-12.0089, 8.901999], + [-12.0082, 8.904699], + [-12.006099, 8.9101], + [-12.005599, 8.9148], + [-12.0054, 8.923499], + [-12.0048, 8.927099], + [-12.002899, 8.9316], + [-12.001299, 8.9383], + [-11.999, 8.9452], + [-12.000699, 8.947999], + [-12.0024, 8.95], + [-12.015699, 8.963199], + [-12.020599, 8.967299], + [-12.0246, 8.9691], + [-12.0289, 8.9715], + [-12.0321, 8.9728], + [-12.036499, 8.975199], + [-12.0397, 8.9765], + [-12.0432, 8.9786], + [-12.0472, 8.9803], + [-12.051499, 8.982499], + [-12.055581, 8.983764], + [-12.056086, 8.978714], + [-12.056307, 8.978723], + [-12.057154, 8.978858], + [-12.060416, 8.976249], + [-12.057082, 8.97125], + [-12.05375, 8.968749], + [-12.059582, 8.962082], + [-12.057916, 8.959583], + [-12.054582, 8.957916], + [-12.05375, 8.95375], + [-12.056249, 8.950417], + [-12.054583, 8.948749], + [-12.054583, 8.947083], + [-12.05625, 8.94375], + [-12.062082, 8.949582], + [-12.060417, 8.942083], + [-12.061502, 8.940454], + [-12.060998, 8.940088], + [-12.061249, 8.939583], + [-12.063749, 8.938749], + [-12.064583, 8.937082], + [-12.064582, 8.929582], + [-12.06375, 8.922083], + [-12.064582, 8.921249], + [-12.062083, 8.914582], + [-12.062917, 8.910417], + [-12.06625, 8.908749] + ] + ], + "type": "Polygon" + }, + "id": 461, + "properties": { + "cc:admin:id": ["83"], + "cc:oBld:total": 2014, + "cc:pop:fifteen-to-twenty-four": 3442.8387006225817, + "cc:pop:grid3-total": 15039.778346644665, + "cc:pop:kontur-total": 19004.295738469034, + "cc:pop:men": 8882.15118064986, + "cc:pop:sixty-plus": 1174.592988581614, + "cc:pop:total": 18864.450715091527, + "cc:pop:under-five": 3035.23800698558, + "cc:pop:women": 9982.299534441656, + "cc:pop:women-fiften-to-forty-nine": 4828.210558149765, + "cc:pop:wp-total": 15794.527905399962, + "cc:pop:wp-total-UN": 18317.354274609526, + "cc:id": "461", + "cc:Name": "Panlap MCHP", + "cc:site": [-12.031, 8.9164], + "user:parentName": "Makari Gbanti", + "user:code": "OU_193258", + "user:orgUnitId": "zLiMZ1WrxdG", + "user:level": "4", + "user:parentId": "lY93YpCxJqf" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.756781, 7.950878], + [-11.7529, 7.9462], + [-11.7497, 7.9426], + [-11.746799, 7.939899], + [-11.7437, 7.9378], + [-11.740761, 7.936368], + [-11.740733, 7.936443], + [-11.741119, 7.936642], + [-11.740977, 7.937052], + [-11.740625, 7.936912], + [-11.739723, 7.936503], + [-11.739559, 7.936878], + [-11.740552, 7.937437], + [-11.740749, 7.937636], + [-11.740706, 7.937774], + [-11.740631, 7.937966], + [-11.740507, 7.938328], + [-11.7392, 7.937757], + [-11.739057, 7.938058], + [-11.739021, 7.938137], + [-11.739007, 7.938172], + [-11.73808, 7.937753], + [-11.737718, 7.93758], + [-11.737434, 7.937544], + [-11.737189, 7.93819], + [-11.737064, 7.938681], + [-11.736939, 7.939185], + [-11.73931, 7.939822], + [-11.739381, 7.940339], + [-11.739164, 7.94117], + [-11.739386, 7.941327], + [-11.739286, 7.941731], + [-11.739581, 7.941812], + [-11.740384, 7.942021], + [-11.740209, 7.942497], + [-11.740024, 7.942991], + [-11.73989, 7.943501], + [-11.739765, 7.944015], + [-11.7396, 7.944468], + [-11.739384, 7.944744], + [-11.739309, 7.944928], + [-11.739147, 7.945411], + [-11.738731, 7.946618], + [-11.741346, 7.947756], + [-11.741853, 7.947966], + [-11.743281, 7.948547], + [-11.743795, 7.948788], + [-11.743915, 7.948836], + [-11.744265, 7.948996], + [-11.744814, 7.949226], + [-11.745081, 7.949346], + [-11.743854, 7.951859], + [-11.743577, 7.952393], + [-11.745645, 7.95318], + [-11.745635, 7.953254], + [-11.745222, 7.954323], + [-11.744493, 7.955957], + [-11.744138, 7.956095], + [-11.743798, 7.955992], + [-11.743623, 7.956586], + [-11.743254, 7.95655], + [-11.743311, 7.957357], + [-11.745497, 7.957476], + [-11.74536, 7.957098], + [-11.745382, 7.957025], + [-11.745651, 7.956908], + [-11.745827, 7.956496], + [-11.745931, 7.956016], + [-11.74682, 7.956056], + [-11.74694, 7.956627], + [-11.746768, 7.957182], + [-11.746967, 7.95752], + [-11.747018, 7.957638], + [-11.747336, 7.957692], + [-11.747407, 7.957169], + [-11.747455, 7.95665], + [-11.748648, 7.95675], + [-11.748668, 7.956505], + [-11.748753, 7.95645], + [-11.749055, 7.956908], + [-11.749408, 7.957357], + [-11.750504, 7.956545], + [-11.750868, 7.957057], + [-11.752838, 7.955484], + [-11.752884, 7.955421], + [-11.753047, 7.955047], + [-11.75326, 7.95454], + [-11.753488, 7.954162], + [-11.753585, 7.954103], + [-11.753668, 7.954017], + [-11.753557, 7.953864], + [-11.753476, 7.953758], + [-11.754348, 7.952437], + [-11.754753, 7.952248], + [-11.755421, 7.951871], + [-11.756499, 7.951194], + [-11.756781, 7.950878] + ] + ], + "type": "Polygon" + }, + "id": 462, + "properties": { + "cc:admin:id": ["46"], + "cc:oBld:total": 2024, + "cc:pop:fifteen-to-twenty-four": 5056.620100995391, + "cc:pop:grid3-total": 13749.924997588507, + "cc:pop:kontur-total": 38424.3993309766, + "cc:pop:men": 13660.72206652848, + "cc:pop:sixty-plus": 2019.8124003886805, + "cc:pop:total": 28203.145879545595, + "cc:pop:under-five": 4675.993380969809, + "cc:pop:women": 14542.42381301711, + "cc:pop:women-fiften-to-forty-nine": 6930.639675846667, + "cc:pop:wp-total": 22106.94817684858, + "cc:pop:wp-total-UN": 25626.280840906074, + "cc:id": "462", + "cc:Name": "Paramedical CHC", + "cc:site": [-11.7486, 7.9498], + "user:parentName": "Kakua", + "user:code": "OU_834", + "user:orgUnitId": "tSBcgrTDdB8", + "user:level": "4", + "user:parentId": "U6Kr7Gtpidn" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.236182, 8.491054], + [-13.235996, 8.49087], + [-13.235388, 8.491435], + [-13.235052, 8.491071], + [-13.23483, 8.49122], + [-13.234658, 8.491017], + [-13.234558, 8.491087], + [-13.234037, 8.491468], + [-13.233503, 8.491814], + [-13.233022, 8.491114], + [-13.232162, 8.489832], + [-13.232682, 8.489482], + [-13.231768, 8.488253], + [-13.230878, 8.487078], + [-13.230646, 8.486968], + [-13.230502, 8.486445], + [-13.230337, 8.485829], + [-13.228664, 8.486341], + [-13.227703, 8.486632], + [-13.227441, 8.48663], + [-13.227337, 8.487295], + [-13.22705, 8.488135], + [-13.22732, 8.488269], + [-13.227373, 8.488516], + [-13.226574, 8.48979], + [-13.226729, 8.490148], + [-13.226813, 8.490385], + [-13.227023, 8.490703], + [-13.226779, 8.490829], + [-13.22652, 8.490557], + [-13.225864, 8.490481], + [-13.225932, 8.490046], + [-13.226348, 8.488852], + [-13.226576, 8.488186], + [-13.226297, 8.487987], + [-13.226204, 8.488002], + [-13.226136, 8.487917], + [-13.226141, 8.487874], + [-13.226126, 8.487804], + [-13.226313, 8.487574], + [-13.226425, 8.487275], + [-13.22679, 8.486255], + [-13.226795, 8.48603], + [-13.226813, 8.4858], + [-13.226856, 8.485489], + [-13.225888, 8.485022], + [-13.226104, 8.484395], + [-13.22615, 8.484276], + [-13.226265, 8.483955], + [-13.225451, 8.48355], + [-13.225266, 8.483947], + [-13.225092, 8.484394], + [-13.224856, 8.48478], + [-13.224737, 8.484956], + [-13.224499, 8.485319], + [-13.224308, 8.485671], + [-13.224218, 8.485648], + [-13.224145, 8.485878], + [-13.224019, 8.486309], + [-13.223443, 8.486275], + [-13.223352, 8.486514], + [-13.222106, 8.486012], + [-13.221987, 8.485968], + [-13.221665, 8.485861], + [-13.221116, 8.485638], + [-13.219966, 8.48513], + [-13.219767, 8.485699], + [-13.219723, 8.485684], + [-13.219516, 8.486219], + [-13.219474, 8.486334], + [-13.219349, 8.486733], + [-13.219139, 8.487371], + [-13.218317, 8.487065], + [-13.218053, 8.488015], + [-13.217508, 8.487872], + [-13.217079, 8.487751], + [-13.216955, 8.488086], + [-13.216769, 8.488564], + [-13.216553, 8.489137], + [-13.216356, 8.489693], + [-13.21634, 8.489753], + [-13.215717, 8.49148], + [-13.215466, 8.492364], + [-13.215703, 8.492639], + [-13.216284, 8.492806], + [-13.216372, 8.493219], + [-13.216387, 8.493482], + [-13.216866, 8.493475], + [-13.2201, 8.491], + [-13.233199, 8.493499], + [-13.236182, 8.491054] + ] + ], + "type": "Polygon" + }, + "id": 463, + "properties": { + "cc:admin:id": ["26"], + "cc:oBld:total": 3200, + "cc:pop:fifteen-to-twenty-four": 4780.3699907024, + "cc:pop:grid3-total": 50886.817157764344, + "cc:pop:kontur-total": 2926, + "cc:pop:men": 10411.134709966498, + "cc:pop:sixty-plus": 1622.4072192741876, + "cc:pop:total": 20809.621699025607, + "cc:pop:under-five": 2400.8117629071735, + "cc:pop:women": 10398.48698905911, + "cc:pop:women-fiften-to-forty-nine": 5573.272152424925, + "cc:pop:wp-total": 21354.08239001436, + "cc:pop:wp-total-UN": 24764.478052509996, + "cc:id": "463", + "cc:Name": "PCM Hospital", + "cc:site": [-13.2191, 8.49], + "user:parentName": "Freetown", + "user:code": "OU_278328", + "user:orgUnitId": "LqH7ZGU9KAx", + "user:level": "4", + "user:parentId": "C9uduqDZr9d" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.72864, 7.549691], + [-11.7282, 7.5421], + [-11.7275, 7.5389], + [-11.725599, 7.534499], + [-11.724099, 7.5277], + [-11.722299, 7.5247], + [-11.7173, 7.5229], + [-11.712799, 7.520899], + [-11.709999, 7.520199], + [-11.7052, 7.5197], + [-11.7024, 7.5191], + [-11.696899, 7.516899], + [-11.693099, 7.516399], + [-11.6873, 7.5161], + [-11.6836, 7.5154], + [-11.6789, 7.5135], + [-11.6762, 7.5128], + [-11.6714, 7.5123], + [-11.6685, 7.5117], + [-11.6639, 7.5098], + [-11.6612, 7.5091], + [-11.6563, 7.5085], + [-11.6536, 7.5079], + [-11.648899, 7.505999], + [-11.645299, 7.505299], + [-11.638499, 7.504899], + [-11.634799, 7.504199], + [-11.630099, 7.502299], + [-11.6274, 7.5017], + [-11.6225, 7.5011], + [-11.6197, 7.5005], + [-11.6152, 7.4985], + [-11.6118, 7.4977], + [-11.608499, 7.5003], + [-11.604699, 7.5021], + [-11.6004, 7.504499], + [-11.597199, 7.5058], + [-11.5929, 7.508199], + [-11.589699, 7.5095], + [-11.586199, 7.5115], + [-11.5823, 7.513299], + [-11.580374, 7.514628], + [-11.587082, 7.522083], + [-11.587917, 7.527084], + [-11.59125, 7.529583], + [-11.597916, 7.529584], + [-11.597083, 7.540416], + [-11.604582, 7.544584], + [-11.602451, 7.550981], + [-11.602984, 7.550809], + [-11.608178, 7.550835], + [-11.610799, 7.5496], + [-11.6144, 7.546499], + [-11.6178, 7.542299], + [-11.625799, 7.5363], + [-11.6295, 7.534099], + [-11.6323, 7.533299], + [-11.6366, 7.532799], + [-11.640999, 7.5327], + [-11.645399, 7.532899], + [-11.649699, 7.533699], + [-11.6537, 7.5354], + [-11.662599, 7.541199], + [-11.665999, 7.543799], + [-11.6699, 7.5479], + [-11.680699, 7.564299], + [-11.683099, 7.567199], + [-11.686, 7.5695], + [-11.6936, 7.5731], + [-11.6978, 7.5739], + [-11.702099, 7.573999], + [-11.704999, 7.5737], + [-11.7078, 7.573099], + [-11.7136, 7.571099], + [-11.721199, 7.5697], + [-11.727199, 7.568099], + [-11.7281, 7.564899], + [-11.728599, 7.5606], + [-11.728699, 7.5507], + [-11.72864, 7.549691] + ] + ], + "type": "Polygon" + }, + "id": 464, + "properties": { + "cc:admin:id": ["128"], + "cc:oBld:total": 3, + "cc:pop:fifteen-to-twenty-four": 2856.9966442226305, + "cc:pop:grid3-total": 4667.769631970212, + "cc:pop:kontur-total": 16145.897481414591, + "cc:pop:men": 7675.899786350719, + "cc:pop:sixty-plus": 1118.0231439560516, + "cc:pop:total": 15832.08733369578, + "cc:pop:under-five": 2618.8083056412747, + "cc:pop:women": 8156.187547345063, + "cc:pop:women-fiften-to-forty-nine": 3899.062504886084, + "cc:pop:wp-total": 15771.418659725221, + "cc:pop:wp-total-UN": 18285.95193301526, + "cc:id": "464", + "cc:Name": "Pehala MCHP", + "cc:site": [-11.6188, 7.5234], + "user:parentName": "Kpanga Kabonde", + "user:code": "OU_260402", + "user:orgUnitId": "CqARw68kXbB", + "user:level": "4", + "user:parentId": "QwMiPiME3bA" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.567518, 7.589274], + [-11.5677, 7.587999], + [-11.567799, 7.584299], + [-11.5672, 7.5808], + [-11.5661, 7.5783], + [-11.5614, 7.5726], + [-11.558899, 7.567999], + [-11.5543, 7.5623], + [-11.5531, 7.560299], + [-11.552499, 7.557199], + [-11.5523, 7.5489], + [-11.552353, 7.547921], + [-11.549582, 7.549583], + [-11.547082, 7.548749], + [-11.545417, 7.546249], + [-11.545416, 7.540417], + [-11.54031, 7.546251], + [-11.538691, 7.545235], + [-11.533619, 7.541823], + [-11.529582, 7.53375], + [-11.526572, 7.535556], + [-11.525682, 7.534135], + [-11.518482, 7.534134], + [-11.514575, 7.52737], + [-11.507241, 7.527369], + [-11.507814, 7.519337], + [-11.507024, 7.519119], + [-11.505417, 7.51926], + [-11.505416, 7.50875], + [-11.502724, 7.505386], + [-11.502206, 7.505997], + [-11.50075, 7.507121], + [-11.499926, 7.508532], + [-11.498702, 7.510042], + [-11.497725, 7.51092], + [-11.496903, 7.51206], + [-11.495099, 7.516], + [-11.4929, 7.5204], + [-11.4923, 7.524699], + [-11.4927, 7.5274], + [-11.493499, 7.530299], + [-11.4951, 7.534], + [-11.4971, 7.5387], + [-11.4978, 7.5431], + [-11.498199, 7.549099], + [-11.498299, 7.5615], + [-11.4981, 7.576799], + [-11.497499, 7.5811], + [-11.4957, 7.589199], + [-11.4956, 7.594799], + [-11.4982, 7.6071], + [-11.499299, 7.620699], + [-11.5009, 7.6267], + [-11.502599, 7.631199], + [-11.504399, 7.634499], + [-11.514, 7.6467], + [-11.5168, 7.6487], + [-11.521999, 7.651599], + [-11.5359, 7.657599], + [-11.5412, 7.656399], + [-11.546099, 7.6536], + [-11.549099, 7.6505], + [-11.5507, 7.647299], + [-11.551399, 7.643599], + [-11.551199, 7.639099], + [-11.5483, 7.628], + [-11.547699, 7.623199], + [-11.547199, 7.616599], + [-11.5471, 7.6069], + [-11.5475, 7.603899], + [-11.5485, 7.601], + [-11.550999, 7.5982], + [-11.553999, 7.5968], + [-11.5589, 7.5963], + [-11.566099, 7.596799], + [-11.567199, 7.5915], + [-11.567518, 7.589274] + ] + ], + "type": "Polygon" + }, + "id": 465, + "properties": { + "cc:admin:id": ["109"], + "cc:oBld:total": 256, + "cc:pop:fifteen-to-twenty-four": 2008.5170368802842, + "cc:pop:grid3-total": 6690.436305828985, + "cc:pop:kontur-total": 11212.076249695063, + "cc:pop:men": 5317.4661922172045, + "cc:pop:sixty-plus": 794.2787161800443, + "cc:pop:total": 11256.329993902928, + "cc:pop:under-five": 1880.916841467195, + "cc:pop:women": 5938.863801685719, + "cc:pop:women-fiften-to-forty-nine": 2832.4423862586627, + "cc:pop:wp-total": 9109.556226532623, + "cc:pop:wp-total-UN": 10555.52975657169, + "cc:id": "465", + "cc:Name": "Pejewa MCHP", + "cc:site": [-11.5063, 7.5872], + "user:parentName": "Pejeh", + "user:code": "OU_260390", + "user:orgUnitId": "BTXwf2gl7av", + "user:level": "4", + "user:parentId": "N233eZJZ1bh" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.497083, 7.856249], + [-11.497082, 7.847084], + [-11.492082, 7.842084], + [-11.48375, 7.842084], + [-11.47875, 7.846249], + [-11.475003, 7.84625], + [-11.475099, 7.8514], + [-11.4743, 7.855399], + [-11.472699, 7.8591], + [-11.467, 7.866799], + [-11.4608, 7.878299], + [-11.4566, 7.884399], + [-11.454099, 7.8883], + [-11.451799, 7.8911], + [-11.449, 7.893499], + [-11.444094, 7.896802], + [-11.444397, 7.896937], + [-11.445036, 7.898562], + [-11.446039, 7.899953], + [-11.447313, 7.90103], + [-11.447159, 7.903485], + [-11.447121, 7.903573], + [-11.448316, 7.906758], + [-11.448781, 7.906699], + [-11.450752, 7.907107], + [-11.45253, 7.906736], + [-11.452915, 7.906436], + [-11.452916, 7.906436], + [-11.452917, 7.912083], + [-11.453749, 7.912917], + [-11.45375, 7.915261], + [-11.453848, 7.915178], + [-11.455737, 7.914591], + [-11.4572, 7.914317], + [-11.457349, 7.914248], + [-11.457662, 7.915807], + [-11.46142, 7.914035], + [-11.464677, 7.913019], + [-11.465725, 7.912545], + [-11.466161, 7.912608], + [-11.467829, 7.912239], + [-11.468391, 7.911837], + [-11.469476, 7.910496], + [-11.469716, 7.909971], + [-11.469988, 7.907963], + [-11.470768, 7.906762], + [-11.471007, 7.906118], + [-11.470982, 7.905536], + [-11.472567, 7.903147], + [-11.4743, 7.900014], + [-11.474525, 7.89852], + [-11.474094, 7.897122], + [-11.474316, 7.896534], + [-11.47301, 7.895879], + [-11.473249, 7.895421], + [-11.473688, 7.893754], + [-11.474859, 7.892623], + [-11.475534, 7.89246], + [-11.476492, 7.890829], + [-11.47786, 7.890013], + [-11.479072, 7.888789], + [-11.48013, 7.888306], + [-11.480813, 7.887552], + [-11.482122, 7.887059], + [-11.482729, 7.886553], + [-11.483667, 7.88643], + [-11.484216, 7.885878], + [-11.48584, 7.885288], + [-11.485954, 7.885087], + [-11.486168, 7.885205], + [-11.488547, 7.885012], + [-11.489082, 7.884916], + [-11.488749, 7.884583], + [-11.479595, 7.881532], + [-11.479668, 7.881186], + [-11.478368, 7.881759], + [-11.477084, 7.883117], + [-11.477083, 7.883117], + [-11.477083, 7.87125], + [-11.480626, 7.868414], + [-11.479303, 7.866123], + [-11.48118, 7.862871], + [-11.48125, 7.862916], + [-11.492916, 7.862083], + [-11.497083, 7.856249] + ] + ], + "type": "Polygon" + }, + "id": 466, + "properties": { + "cc:admin:id": ["2"], + "cc:oBld:total": 171, + "cc:pop:fifteen-to-twenty-four": 294.3644878680363, + "cc:pop:grid3-total": 254.06814855836606, + "cc:pop:kontur-total": 1357.406052437179, + "cc:pop:men": 857.9373601697285, + "cc:pop:sixty-plus": 116.10551689791335, + "cc:pop:total": 1659.2080551922384, + "cc:pop:under-five": 269.306895832326, + "cc:pop:women": 801.2706950225099, + "cc:pop:women-fiften-to-forty-nine": 381.62151137130184, + "cc:pop:wp-total": 1535.4560249364986, + "cc:pop:wp-total-UN": 1776.1051616132902, + "cc:id": "466", + "cc:Name": "Pelewahun MCHP", + "cc:site": [-11.4587, 7.8851], + "user:parentName": "Lower Bambara", + "user:code": "OU_222669", + "user:orgUnitId": "MQHszd6K6V5", + "user:level": "4", + "user:parentId": "hdEuw2ugkVF" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.778899, 8.0742], + [-10.766, 8.075099], + [-10.763099, 8.074899], + [-10.760399, 8.074299], + [-10.7559, 8.0721], + [-10.752699, 8.070799], + [-10.749099, 8.068799], + [-10.745, 8.0668], + [-10.742899, 8.064899], + [-10.741699, 8.062699], + [-10.740099, 8.056899], + [-10.738799, 8.054499], + [-10.734899, 8.049399], + [-10.731799, 8.044099], + [-10.729499, 8.041299], + [-10.7259, 8.0378], + [-10.7226, 8.0352], + [-10.7134, 8.031], + [-10.708299, 8.029799], + [-10.702999, 8.027599], + [-10.7004, 8.027], + [-10.697099, 8.026799], + [-10.693299, 8.026099], + [-10.690999, 8.024999], + [-10.686999, 8.022699], + [-10.680399, 8.0204], + [-10.6772, 8.0204], + [-10.673, 8.021899], + [-10.670099, 8.022299], + [-10.667199, 8.022199], + [-10.661899, 8.0205], + [-10.658499, 8.0206], + [-10.653099, 8.0222], + [-10.6443, 8.023099], + [-10.6401, 8.023999], + [-10.6286, 8.029199], + [-10.6265, 8.029499], + [-10.625099, 8.029299], + [-10.619399, 8.027699], + [-10.610999, 8.026799], + [-10.6077, 8.0257], + [-10.606499, 8.0242], + [-10.6001, 8.026299], + [-10.598799, 8.027], + [-10.5973, 8.0277], + [-10.598699, 8.0347], + [-10.598299, 8.0386], + [-10.597699, 8.0412], + [-10.5954, 8.047099], + [-10.5949, 8.051399], + [-10.594999, 8.063399], + [-10.595399, 8.068299], + [-10.596, 8.0711], + [-10.5984, 8.0769], + [-10.5991, 8.0831], + [-10.5991, 8.0951], + [-10.599399, 8.098099], + [-10.599999, 8.100899], + [-10.604199, 8.109499], + [-10.608199, 8.114999], + [-10.613999, 8.116999], + [-10.619299, 8.119299], + [-10.625299, 8.120699], + [-10.6306, 8.1229], + [-10.6369, 8.1245], + [-10.645, 8.1284], + [-10.6488, 8.1315], + [-10.657499, 8.139799], + [-10.659899, 8.141499], + [-10.6631, 8.1429], + [-10.666699, 8.144799], + [-10.6735, 8.1465], + [-10.682, 8.1503], + [-10.684, 8.1516], + [-10.687999, 8.154899], + [-10.689999, 8.156299], + [-10.694, 8.1581], + [-10.6967, 8.1601], + [-10.700799, 8.164099], + [-10.7037, 8.1677], + [-10.706, 8.1723], + [-10.710299, 8.177599], + [-10.7131, 8.181399], + [-10.717199, 8.1779], + [-10.719299, 8.1753], + [-10.720999, 8.1715], + [-10.723, 8.167899], + [-10.7242, 8.164699], + [-10.726499, 8.1604], + [-10.728299, 8.1566], + [-10.730399, 8.1539], + [-10.7332, 8.151399], + [-10.7388, 8.148299], + [-10.7454, 8.143399], + [-10.75, 8.140999], + [-10.7529, 8.138799], + [-10.7554, 8.135999], + [-10.7564, 8.133999], + [-10.7569, 8.131699], + [-10.757099, 8.128999], + [-10.7568, 8.124], + [-10.7559, 8.1201], + [-10.7541, 8.1165], + [-10.7534, 8.1138], + [-10.7538, 8.11], + [-10.7559, 8.107199], + [-10.7614, 8.097199], + [-10.7638, 8.094999], + [-10.7662, 8.093999], + [-10.770199, 8.0931], + [-10.7722, 8.091999], + [-10.7739, 8.089099], + [-10.7755, 8.083699], + [-10.7767, 8.081399], + [-10.778799, 8.078799], + [-10.778899, 8.0742] + ] + ], + "type": "Polygon" + }, + "id": 467, + "properties": { + "cc:admin:id": ["139"], + "cc:oBld:total": 5257, + "cc:pop:fifteen-to-twenty-four": 9047.903156129922, + "cc:pop:grid3-total": 29394.246118258165, + "cc:pop:kontur-total": 48666.24482538305, + "cc:pop:men": 22359.147000544745, + "cc:pop:sixty-plus": 2821.8281145066667, + "cc:pop:total": 46489.50304834467, + "cc:pop:under-five": 7397.426433589453, + "cc:pop:women": 24130.35604779991, + "cc:pop:women-fiften-to-forty-nine": 12231.323418553231, + "cc:pop:wp-total": 40220.190515309, + "cc:pop:wp-total-UN": 46641.01235098604, + "cc:id": "467", + "cc:Name": "Pendembu CHC", + "cc:site": [-10.6953, 8.0961], + "user:parentName": "Upper Bambara", + "user:code": "OU_204916", + "user:orgUnitId": "pJv8NJlJNhU", + "user:level": "4", + "user:parentId": "LfTkc0S4b5k" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [-13.095699, 8.603799], + [-13.095699, 8.5987], + [-13.094, 8.5971], + [-13.093999, 8.5957], + [-13.092899, 8.595099], + [-13.091, 8.5926], + [-13.090999, 8.5915], + [-13.0901, 8.590699], + [-13.089899, 8.5876], + [-13.0896, 8.587599], + [-13.089599, 8.5846], + [-13.088799, 8.584], + [-13.086499, 8.584599], + [-13.083999, 8.5835], + [-13.0812, 8.583499], + [-13.078699, 8.5826], + [-13.076299, 8.5829], + [-13.071, 8.582899], + [-13.069599, 8.5818], + [-13.0671, 8.580999], + [-13.0665, 8.580399], + [-13.0665, 8.5776], + [-13.065999, 8.5754], + [-13.063999, 8.5743], + [-13.062399, 8.574299], + [-13.0607, 8.573799], + [-13.0607, 8.5721], + [-13.062399, 8.5707], + [-13.061299, 8.5699], + [-13.0601, 8.5701], + [-13.060099, 8.5726], + [-13.0585, 8.574599], + [-13.0562, 8.5743], + [-13.056499, 8.575999], + [-13.0551, 8.5768], + [-13.0543, 8.579299], + [-13.0529, 8.5804], + [-13.052899, 8.5821], + [-13.0518, 8.583999], + [-13.051, 8.5843], + [-13.0496, 8.587099], + [-13.0488, 8.5871], + [-13.047599, 8.588499], + [-13.0465, 8.5885], + [-13.045699, 8.589299], + [-13.0432, 8.5904], + [-13.042399, 8.5915], + [-13.0404, 8.592099], + [-13.0388, 8.5921], + [-13.038199, 8.592599], + [-13.036, 8.5929], + [-13.035999, 8.5935], + [-13.0326, 8.5943], + [-13.029, 8.597599], + [-13.028799, 8.5987], + [-13.0265, 8.600699], + [-13.0257, 8.6007], + [-13.0246, 8.601799], + [-13.0232, 8.6021], + [-13.0229, 8.602899], + [-13.02271, 8.60301], + [-13.022575, 8.603224], + [-13.022264, 8.60394], + [-13.022086, 8.604678], + [-13.021771, 8.605717], + [-13.021542, 8.606388], + [-13.021168, 8.606859], + [-13.020649, 8.607384], + [-13.019548, 8.608478], + [-13.0194, 8.608832], + [-13.019452, 8.609267], + [-13.019603, 8.609731], + [-13.019847, 8.610119], + [-13.021542, 8.612256], + [-13.022444, 8.613441], + [-13.023299, 8.614725], + [-13.023889, 8.615465], + [-13.02302, 8.613647], + [-13.023614, 8.613053], + [-13.024361, 8.613692], + [-13.025117, 8.613748], + [-13.026887, 8.614758], + [-13.028212, 8.614814], + [-13.029406, 8.615441], + [-13.030104, 8.616117], + [-13.030762, 8.616234], + [-13.031286, 8.616586], + [-13.031804, 8.615965], + [-13.031571, 8.615253], + [-13.031706, 8.614845], + [-13.03242, 8.614887], + [-13.033043, 8.615502], + [-13.033455, 8.615593], + [-13.033592, 8.615496], + [-13.033783, 8.614186], + [-13.03435, 8.613961], + [-13.035273, 8.613906], + [-13.035878, 8.614107], + [-13.036, 8.614303], + [-13.03565, 8.615357], + [-13.035668, 8.615826], + [-13.035841, 8.616062], + [-13.037042, 8.616136], + [-13.037464, 8.616298], + [-13.038545, 8.621165], + [-13.038544, 8.621166], + [-13.038238, 8.621189], + [-13.038528, 8.622638], + [-13.038666, 8.622624], + [-13.039113, 8.621937], + [-13.039915, 8.622179], + [-13.039803, 8.622278], + [-13.039829, 8.622487], + [-13.039809, 8.622593], + [-13.039623, 8.622691], + [-13.03941, 8.622691], + [-13.039204, 8.62256], + [-13.038965, 8.622403], + [-13.038806, 8.622553], + [-13.039019, 8.62262], + [-13.039284, 8.622732], + [-13.039477, 8.622908], + [-13.039584, 8.623079], + [-13.039669, 8.623027], + [-13.03969, 8.622908], + [-13.039942, 8.622816], + [-13.040062, 8.622724], + [-13.040076, 8.622619], + [-13.040109, 8.622502], + [-13.040249, 8.622587], + [-13.040442, 8.622744], + [-13.040541, 8.622745], + [-13.040454, 8.622949], + [-13.040335, 8.623283], + [-13.040248, 8.623278], + [-13.040069, 8.623284], + [-13.039976, 8.623408], + [-13.040042, 8.623481], + [-13.040088, 8.623652], + [-13.040029, 8.623941], + [-13.040029, 8.62402], + [-13.040155, 8.624046], + [-13.040222, 8.623869], + [-13.040324, 8.623846], + [-13.040382, 8.624119], + [-13.040501, 8.624411], + [-13.040608, 8.624685], + [-13.040654, 8.624935], + [-13.040572, 8.625269], + [-13.040468, 8.625562], + [-13.040063, 8.626035], + [-13.03968, 8.626469], + [-13.039285, 8.626818], + [-13.038981, 8.626979], + [-13.038799, 8.626999], + [-13.038609, 8.626867], + [-13.038423, 8.626617], + [-13.03833, 8.626183], + [-13.03833, 8.625638], + [-13.038386, 8.625454], + [-13.038649, 8.625296], + [-13.038795, 8.625279], + [-13.038905, 8.625147], + [-13.038888, 8.624948], + [-13.038791, 8.624826], + [-13.038623, 8.6248], + [-13.038463, 8.624957], + [-13.038383, 8.625013], + [-13.03835, 8.624948], + [-13.038377, 8.624553], + [-13.038472, 8.62457], + [-13.038539, 8.624635], + [-13.038618, 8.624523], + [-13.038582, 8.624365], + [-13.038523, 8.624204], + [-13.038522, 8.624039], + [-13.038479, 8.623985], + [-13.038396, 8.624057], + [-13.038276, 8.624128], + [-13.038209, 8.62397], + [-13.038104, 8.623626], + [-13.037973, 8.62336], + [-13.037897, 8.623266], + [-13.037803, 8.623177], + [-13.037587, 8.623081], + [-13.037333, 8.62309], + [-13.037027, 8.623192], + [-13.036609, 8.623183], + [-13.036224, 8.623118], + [-13.036101, 8.622988], + [-13.036079, 8.622847], + [-13.036072, 8.622963], + [-13.036097, 8.623035], + [-13.036131, 8.623103], + [-13.036125, 8.62316], + [-13.036069, 8.623206], + [-13.035903, 8.623262], + [-13.036138, 8.623221], + [-13.03636, 8.623234], + [-13.036747, 8.623314], + [-13.037042, 8.623341], + [-13.037284, 8.62327], + [-13.03739, 8.623268], + [-13.037582, 8.623319], + [-13.037688, 8.623393], + [-13.037731, 8.623594], + [-13.037891, 8.624035], + [-13.038057, 8.624649], + [-13.038032, 8.624847], + [-13.037963, 8.624873], + [-13.037873, 8.62481], + [-13.037608, 8.624671], + [-13.037364, 8.62462], + [-13.037205, 8.624667], + [-13.0369, 8.624838], + [-13.036802, 8.624868], + [-13.036712, 8.62485], + [-13.036663, 8.624797], + [-13.036618, 8.624867], + [-13.036578, 8.62504], + [-13.036462, 8.625145], + [-13.036001, 8.62529], + [-13.035774, 8.625352], + [-13.035591, 8.625391], + [-13.035492, 8.62531], + [-13.035394, 8.625097], + [-13.03521, 8.624995], + [-13.035361, 8.62514], + [-13.035385, 8.625317], + [-13.03544, 8.625445], + [-13.035543, 8.625462], + [-13.035693, 8.625475], + [-13.035976, 8.625384], + [-13.036179, 8.625342], + [-13.036401, 8.625321], + [-13.036549, 8.625248], + [-13.036735, 8.62509], + [-13.036935, 8.624983], + [-13.037147, 8.624905], + [-13.037367, 8.624857], + [-13.03761, 8.624818], + [-13.037795, 8.624904], + [-13.03791, 8.625019], + [-13.037945, 8.625318], + [-13.037945, 8.625646], + [-13.037902, 8.626077], + [-13.037862, 8.626248], + [-13.037814, 8.626277], + [-13.037503, 8.626229], + [-13.037349, 8.62631], + [-13.03722, 8.626432], + [-13.037157, 8.62653], + [-13.037157, 8.626636], + [-13.037242, 8.626754], + [-13.03732, 8.626816], + [-13.037535, 8.626823], + [-13.037671, 8.62682], + [-13.037838, 8.626745], + [-13.037967, 8.626761], + [-13.03808, 8.626803], + [-13.038171, 8.627037], + [-13.038247, 8.627074], + [-13.03836, 8.627133], + [-13.038459, 8.627224], + [-13.038482, 8.627307], + [-13.038424, 8.6275], + [-13.038359, 8.627632], + [-13.03831, 8.627612], + [-13.038233, 8.627554], + [-13.038111, 8.627584], + [-13.037971, 8.627698], + [-13.037915, 8.627708], + [-13.037837, 8.627629], + [-13.037681, 8.627543], + [-13.037581, 8.627505], + [-13.037443, 8.627495], + [-13.037446, 8.627599], + [-13.037575, 8.627681], + [-13.037654, 8.627767], + [-13.037535, 8.627787], + [-13.037433, 8.627817], + [-13.037383, 8.627885], + [-13.037463, 8.627951], + [-13.037581, 8.62797], + [-13.037895, 8.627856], + [-13.03819, 8.628089], + [-13.038533, 8.627642], + [-13.039134, 8.627386], + [-13.039995, 8.627226], + [-13.040353, 8.627251], + [-13.040491, 8.627291], + [-13.04066, 8.62733], + [-13.040759, 8.627307], + [-13.040813, 8.627189], + [-13.040908, 8.627183], + [-13.041015, 8.627402], + [-13.041146, 8.627587], + [-13.041264, 8.627853], + [-13.041251, 8.627586], + [-13.041051, 8.627131], + [-13.041065, 8.627044], + [-13.041172, 8.626858], + [-13.04121, 8.626765], + [-13.041228, 8.626639], + [-13.041158, 8.626517], + [-13.041046, 8.626379], + [-13.040966, 8.626313], + [-13.040834, 8.626012], + [-13.040819, 8.625881], + [-13.04074, 8.625736], + [-13.040791, 8.625579], + [-13.040905, 8.625542], + [-13.041036, 8.625708], + [-13.041131, 8.625778], + [-13.041252, 8.625713], + [-13.041356, 8.625574], + [-13.041459, 8.625415], + [-13.04146, 8.625058], + [-13.041647, 8.624978], + [-13.041709, 8.624876], + [-13.041808, 8.624677], + [-13.04192, 8.6247], + [-13.041958, 8.624918], + [-13.04201, 8.624992], + [-13.042117, 8.624964], + [-13.042282, 8.624761], + [-13.042371, 8.624686], + [-13.042639, 8.624671], + [-13.042762, 8.624592], + [-13.042682, 8.624481], + [-13.042512, 8.624384], + [-13.042367, 8.624364], + [-13.04225, 8.62424], + [-13.04224, 8.624031], + [-13.042137, 8.623933], + [-13.042098, 8.623817], + [-13.042, 8.623747], + [-13.041785, 8.623682], + [-13.041784, 8.62368], + [-13.04183, 8.623598], + [-13.041543, 8.623462], + [-13.041493, 8.623369], + [-13.041497, 8.623183], + [-13.041577, 8.623012], + [-13.042034, 8.62304], + [-13.042772, 8.623119], + [-13.043284, 8.62317], + [-13.04357, 8.623248], + [-13.043722, 8.623408], + [-13.044078, 8.624118], + [-13.044107, 8.624425], + [-13.044168, 8.624592], + [-13.044357, 8.625003], + [-13.044713, 8.625843], + [-13.044915, 8.626359], + [-13.044586, 8.626351], + [-13.04429, 8.626397], + [-13.043943, 8.626499], + [-13.043741, 8.626508], + [-13.043472, 8.626415], + [-13.04318, 8.626317], + [-13.042946, 8.626286], + [-13.042738, 8.626337], + [-13.042635, 8.626407], + [-13.042513, 8.62656], + [-13.0424, 8.626932], + [-13.042404, 8.627312], + [-13.042466, 8.627593], + [-13.042465, 8.627797], + [-13.042432, 8.628044], + [-13.042343, 8.628192], + [-13.04223, 8.628364], + [-13.042075, 8.628415], + [-13.041907, 8.628428], + [-13.041737, 8.628383], + [-13.041704, 8.628474], + [-13.041794, 8.628507], + [-13.042056, 8.628498], + [-13.042202, 8.628459], + [-13.042409, 8.628277], + [-13.042505, 8.628057], + [-13.042562, 8.627843], + [-13.042561, 8.627593], + [-13.042539, 8.627173], + [-13.042542, 8.627011], + [-13.042619, 8.626708], + [-13.042698, 8.626558], + [-13.042781, 8.626473], + [-13.042912, 8.626453], + [-13.043087, 8.626472], + [-13.043616, 8.626659], + [-13.043766, 8.626683], + [-13.043941, 8.626685], + [-13.044182, 8.626613], + [-13.044437, 8.626581], + [-13.04475, 8.626594], + [-13.044939, 8.626647], + [-13.045052, 8.626725], + [-13.045112, 8.626856], + [-13.045235, 8.627419], + [-13.045313, 8.627834], + [-13.045539, 8.628404], + [-13.045675, 8.628678], + [-13.045511, 8.628754], + [-13.045286, 8.628878], + [-13.045126, 8.629031], + [-13.044954, 8.629136], + [-13.044812, 8.629179], + [-13.04463, 8.629188], + [-13.044551, 8.629232], + [-13.044388, 8.629389], + [-13.04427, 8.629472], + [-13.044253, 8.629518], + [-13.044237, 8.629581], + [-13.044258, 8.629663], + [-13.04429, 8.629754], + [-13.044214, 8.629824], + [-13.044147, 8.629831], + [-13.043909, 8.629744], + [-13.043768, 8.629752], + [-13.043593, 8.629748], + [-13.043785, 8.629775], + [-13.043892, 8.629779], + [-13.043986, 8.629809], + [-13.044109, 8.629861], + [-13.044225, 8.629875], + [-13.044302, 8.629834], + [-13.044335, 8.62978], + [-13.044335, 8.629709], + [-13.04429, 8.629613], + [-13.044289, 8.629537], + [-13.044316, 8.629477], + [-13.044431, 8.629407], + [-13.044503, 8.629338], + [-13.044591, 8.62927], + [-13.044675, 8.629246], + [-13.044745, 8.629253], + [-13.044848, 8.629257], + [-13.044942, 8.629223], + [-13.045236, 8.629035], + [-13.045459, 8.628898], + [-13.045635, 8.62883], + [-13.045754, 8.628812], + [-13.045879, 8.628814], + [-13.046013, 8.628928], + [-13.046172, 8.629076], + [-13.046362, 8.629266], + [-13.046591, 8.629407], + [-13.046819, 8.629472], + [-13.047279, 8.629613], + [-13.047521, 8.629662], + [-13.047845, 8.62968], + [-13.048197, 8.629622], + [-13.048744, 8.629444], + [-13.049205, 8.629265], + [-13.049575, 8.629173], + [-13.050012, 8.628993], + [-13.05023, 8.628859], + [-13.050308, 8.628729], + [-13.050343, 8.628256], + [-13.050274, 8.628019], + [-13.050103, 8.627732], + [-13.04973, 8.627291], + [-13.049397, 8.626861], + [-13.049198, 8.626534], + [-13.049041, 8.626232], + [-13.049041, 8.62605], + [-13.049126, 8.625831], + [-13.049291, 8.625739], + [-13.049606, 8.625637], + [-13.04992, 8.625566], + [-13.050194, 8.625572], + [-13.050443, 8.625484], + [-13.050858, 8.625306], + [-13.051192, 8.625173], + [-13.051464, 8.625044], + [-13.052204, 8.624505], + [-13.052681, 8.624045], + [-13.052952, 8.623597], + [-13.053291, 8.623291], + [-13.053559, 8.623062], + [-13.053669, 8.623018], + [-13.053776, 8.623013], + [-13.053868, 8.623118], + [-13.053955, 8.623353], + [-13.053973, 8.623734], + [-13.05405, 8.624162], + [-13.054202, 8.62473], + [-13.054382, 8.62515], + [-13.054556, 8.625864], + [-13.054635, 8.627132], + [-13.054639, 8.627755], + [-13.054513, 8.628501], + [-13.054394, 8.629112], + [-13.054091, 8.629132], + [-13.053968, 8.629149], + [-13.053901, 8.629251], + [-13.053792, 8.629494], + [-13.053721, 8.62974], + [-13.053631, 8.62986], + [-13.053505, 8.629964], + [-13.053202, 8.630044], + [-13.052771, 8.630115], + [-13.052521, 8.630171], + [-13.052328, 8.630142], + [-13.052295, 8.630082], + [-13.052275, 8.629988], + [-13.052285, 8.62984], + [-13.052395, 8.629721], + [-13.052514, 8.629573], + [-13.052299, 8.629753], + [-13.052222, 8.629855], + [-13.052199, 8.629957], + [-13.052202, 8.630053], + [-13.052259, 8.63021], + [-13.052412, 8.630233], + [-13.052661, 8.630214], + [-13.053229, 8.630113], + [-13.053585, 8.630001], + [-13.053762, 8.629799], + [-13.053874, 8.62959], + [-13.053931, 8.629441], + [-13.054008, 8.62935], + [-13.054134, 8.629278], + [-13.054208, 8.629311], + [-13.054297, 8.629442], + [-13.054389, 8.629651], + [-13.054463, 8.629987], + [-13.054533, 8.630191], + [-13.054623, 8.630303], + [-13.054862, 8.630605], + [-13.055011, 8.630799], + [-13.055048, 8.630922], + [-13.0551, 8.630834], + [-13.0551, 8.6296], + [-13.057099, 8.628799], + [-13.0579, 8.626799], + [-13.059599, 8.6246], + [-13.060099, 8.624599], + [-13.0607, 8.6221], + [-13.062399, 8.6201], + [-13.065699, 8.619299], + [-13.067099, 8.618199], + [-13.067399, 8.6171], + [-13.0651, 8.6157], + [-13.0643, 8.613999], + [-13.0643, 8.6101], + [-13.064599, 8.609001], + [-13.066299, 8.6107], + [-13.066, 8.614599], + [-13.0665, 8.615399], + [-13.069599, 8.6151], + [-13.0699, 8.614299], + [-13.072399, 8.6129], + [-13.0726, 8.612399], + [-13.076299, 8.6107], + [-13.078499, 8.6093], + [-13.079599, 8.609299], + [-13.0804, 8.6085], + [-13.081499, 8.608499], + [-13.0826, 8.6076], + [-13.085399, 8.6068], + [-13.088799, 8.6065], + [-13.088801, 8.6063], + [-13.092399, 8.606299], + [-13.093999, 8.6051], + [-13.094899, 8.605099], + [-13.095699, 8.603799] + ] + ], + [ + [ + [-13.041499, 8.570099], + [-13.041299, 8.5674], + [-13.0399, 8.5676], + [-13.0388, 8.5701], + [-13.039, 8.572099], + [-13.039599, 8.572399], + [-13.040699, 8.571799], + [-13.041499, 8.570099] + ] + ], + [ + [ + [-13.088999, 8.5632], + [-13.0879, 8.561499], + [-13.087599, 8.5593], + [-13.0871, 8.558999], + [-13.087099, 8.5574], + [-13.0865, 8.557399], + [-13.086499, 8.5554], + [-13.086, 8.554299], + [-13.086, 8.5513], + [-13.0862, 8.551299], + [-13.0862, 8.5468], + [-13.086799, 8.545399], + [-13.0868, 8.5438], + [-13.087399, 8.542399], + [-13.0868, 8.5401], + [-13.087599, 8.539299], + [-13.087099, 8.5376], + [-13.085699, 8.5371], + [-13.0829, 8.537099], + [-13.080999, 8.5357], + [-13.0801, 8.5357], + [-13.079599, 8.5368], + [-13.0765, 8.537099], + [-13.075699, 8.5365], + [-13.0746, 8.5371], + [-13.0751, 8.539], + [-13.075099, 8.540999], + [-13.0737, 8.5415], + [-13.073499, 8.542899], + [-13.0701, 8.5435], + [-13.067599, 8.5451], + [-13.065099, 8.5454], + [-13.0604, 8.5454], + [-13.060099, 8.5468], + [-13.0587, 8.547599], + [-13.0576, 8.5476], + [-13.0576, 8.549899], + [-13.0604, 8.552599], + [-13.062099, 8.5532], + [-13.062599, 8.5543], + [-13.0626, 8.556799], + [-13.062099, 8.559], + [-13.061, 8.561799], + [-13.0601, 8.5621], + [-13.0604, 8.564599], + [-13.061799, 8.564899], + [-13.0632, 8.5643], + [-13.0657, 8.566299], + [-13.069599, 8.565999], + [-13.0707, 8.5646], + [-13.073999, 8.5646], + [-13.0743, 8.5651], + [-13.077099, 8.5665], + [-13.0782, 8.567899], + [-13.0796, 8.568499], + [-13.080999, 8.568199], + [-13.0812, 8.5674], + [-13.083699, 8.566299], + [-13.0837, 8.5657], + [-13.0879, 8.565699], + [-13.088799, 8.565099], + [-13.088999, 8.5632] + ] + ], + [ + [ + [-13.073699, 8.577899], + [-13.0729, 8.576299], + [-13.072899, 8.5751], + [-13.0693, 8.5718], + [-13.069299, 8.5704], + [-13.067899, 8.5696], + [-13.0663, 8.5704], + [-13.067399, 8.5726], + [-13.0674, 8.574899], + [-13.0679, 8.576499], + [-13.068999, 8.577099], + [-13.069, 8.578199], + [-13.069899, 8.5785], + [-13.0704, 8.579899], + [-13.0713, 8.580099], + [-13.072599, 8.579299], + [-13.073699, 8.577899] + ] + ] + ], + "type": "MultiPolygon" + }, + "id": 469, + "properties": { + "cc:admin:id": ["74"], + "cc:oBld:total": 456, + "cc:pop:fifteen-to-twenty-four": 2846.5054643174108, + "cc:pop:grid3-total": 13728.577397705216, + "cc:pop:kontur-total": 11367.873752079051, + "cc:pop:men": 6772.834830976729, + "cc:pop:sixty-plus": 930.6398262659822, + "cc:pop:total": 14261.821284552698, + "cc:pop:under-five": 2037.265094130434, + "cc:pop:women": 7488.986453575968, + "cc:pop:women-fiften-to-forty-nine": 3802.110482086071, + "cc:pop:wp-total": 11053.830270807373, + "cc:pop:wp-total-UN": 12813.7527392875, + "cc:id": "469", + "cc:Name": "Pepel CHP", + "cc:site": [-13.0547, 8.5893], + "user:parentName": "Lokomasama", + "user:code": "OU_254985", + "user:orgUnitId": "XXlzHWzhf5d", + "user:level": "4", + "user:parentId": "fRLX08WHWpL" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.125401, 7.677902], + [-11.122082, 7.674583], + [-11.120417, 7.669584], + [-11.121249, 7.667917], + [-11.117082, 7.667916], + [-11.109582, 7.660417], + [-11.104584, 7.660416], + [-11.107082, 7.657083], + [-11.107082, 7.64875], + [-11.104582, 7.648749], + [-11.099422, 7.641378], + [-11.097845, 7.642333], + [-11.09393, 7.64459], + [-11.090336, 7.646045], + [-11.086943, 7.64749], + [-11.08625, 7.64125], + [-11.088749, 7.634583], + [-11.08625, 7.627917], + [-11.085416, 7.627916], + [-11.080416, 7.619584], + [-11.073749, 7.619584], + [-11.067917, 7.62125], + [-11.067917, 7.624583], + [-11.06875, 7.625417], + [-11.068749, 7.632083], + [-11.064318, 7.637253], + [-11.064132, 7.637142], + [-11.063433, 7.636534], + [-11.062421, 7.631745], + [-11.061249, 7.632917], + [-11.058749, 7.637916], + [-11.055417, 7.641249], + [-11.05171, 7.64125], + [-11.051978, 7.641716], + [-11.048073, 7.648481], + [-11.042083, 7.648482], + [-11.042082, 7.649584], + [-11.038749, 7.65375], + [-11.03375, 7.654583], + [-11.027917, 7.652917], + [-11.02375, 7.664583], + [-11.027083, 7.669583], + [-11.031249, 7.67125], + [-11.031249, 7.679583], + [-11.02756, 7.68401], + [-11.025417, 7.687723], + [-11.025416, 7.692916], + [-11.02375, 7.694583], + [-11.02125, 7.694583], + [-11.01538, 7.691649], + [-11.015357, 7.691694], + [-11.014453, 7.692543], + [-11.013378, 7.693227], + [-11.012662, 7.694135], + [-11.012903, 7.694793], + [-11.012783, 7.696313], + [-11.011883, 7.699735], + [-11.011412, 7.70329], + [-11.011849, 7.704359], + [-11.013139, 7.705063], + [-11.014585, 7.704279], + [-11.016295, 7.703812], + [-11.017579, 7.704354], + [-11.018742, 7.704208], + [-11.019902, 7.703361], + [-11.020417, 7.705416], + [-11.022916, 7.707917], + [-11.022917, 7.717083], + [-11.022623, 7.71745], + [-11.025093, 7.721729], + [-11.032906, 7.72173], + [-11.035798, 7.726739], + [-11.035417, 7.732083], + [-11.039583, 7.736249], + [-11.042743, 7.73625], + [-11.042926, 7.737083], + [-11.044582, 7.737084], + [-11.053749, 7.735417], + [-11.056074, 7.736578], + [-11.0559, 7.7299], + [-11.056099, 7.7242], + [-11.0569, 7.7211], + [-11.0581, 7.719199], + [-11.061899, 7.715], + [-11.0653, 7.711699], + [-11.0692, 7.708399], + [-11.0749, 7.705099], + [-11.0777, 7.702899], + [-11.082999, 7.6979], + [-11.086, 7.696], + [-11.0909, 7.695199], + [-11.099699, 7.6951], + [-11.1024, 7.694899], + [-11.1048, 7.694099], + [-11.111599, 7.6908], + [-11.1145, 7.688699], + [-11.117199, 7.6862], + [-11.125401, 7.677902] + ] + ], + "type": "Polygon" + }, + "id": 470, + "properties": { + "cc:admin:id": ["28"], + "cc:oBld:total": 1293, + "cc:pop:fifteen-to-twenty-four": 1660.9225625761076, + "cc:pop:grid3-total": 4886.846450796073, + "cc:pop:kontur-total": 8444.098749677189, + "cc:pop:men": 4152.791651933385, + "cc:pop:sixty-plus": 544.8266490041154, + "cc:pop:total": 8547.219271042588, + "cc:pop:under-five": 1385.299713850417, + "cc:pop:women": 4394.427619109199, + "cc:pop:women-fiften-to-forty-nine": 2248.7773857021143, + "cc:pop:wp-total": 5828.8662607161195, + "cc:pop:wp-total-UN": 6758.481517104375, + "cc:id": "470", + "cc:Name": "Perrie MCHP", + "cc:site": [-11.0787, 7.6621], + "user:parentName": "Gaura", + "user:code": "OU_222745", + "user:orgUnitId": "f6xGA6BZBLO", + "user:level": "4", + "user:parentId": "eROJsBwxQHt" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.165494, 8.745038], + [-13.163099, 8.742899], + [-13.160199, 8.7385], + [-13.156299, 8.735699], + [-13.152699, 8.732699], + [-13.149099, 8.7308], + [-13.1408, 8.7296], + [-13.137699, 8.728199], + [-13.1356, 8.726299], + [-13.1319, 8.7193], + [-13.1309, 8.7147], + [-13.1312, 8.7094], + [-13.133999, 8.7052], + [-13.1398, 8.701799], + [-13.1432, 8.699099], + [-13.147299, 8.6953], + [-13.150699, 8.6915], + [-13.152699, 8.687499], + [-13.153999, 8.6787], + [-13.156399, 8.672399], + [-13.156699, 8.6674], + [-13.156199, 8.6641], + [-13.153699, 8.6607], + [-13.152899, 8.6612], + [-13.1501, 8.6626], + [-13.1485, 8.664299], + [-13.147599, 8.667899], + [-13.147099, 8.6685], + [-13.146199, 8.670999], + [-13.1454, 8.6718], + [-13.144599, 8.674299], + [-13.143499, 8.675399], + [-13.1424, 8.674899], + [-13.143999, 8.6732], + [-13.144599, 8.6721], + [-13.1454, 8.6688], + [-13.146799, 8.667099], + [-13.1468, 8.6654], + [-13.147899, 8.664299], + [-13.148799, 8.6626], + [-13.1488, 8.661299], + [-13.1496, 8.6599], + [-13.150999, 8.658799], + [-13.1515, 8.6568], + [-13.152399, 8.6554], + [-13.1538, 8.654599], + [-13.1543, 8.652899], + [-13.154299, 8.6496], + [-13.152099, 8.6451], + [-13.150099, 8.6438], + [-13.1468, 8.643499], + [-13.144599, 8.6426], + [-13.1424, 8.6429], + [-13.141499, 8.6438], + [-13.1376, 8.644299], + [-13.136799, 8.644899], + [-13.1346, 8.6449], + [-13.132599, 8.645699], + [-13.1315, 8.6457], + [-13.131299, 8.648199], + [-13.1304, 8.649], + [-13.130399, 8.654299], + [-13.1296, 8.654599], + [-13.129, 8.6512], + [-13.1285, 8.6499], + [-13.129, 8.649599], + [-13.128999, 8.643999], + [-13.128499, 8.6426], + [-13.1274, 8.642099], + [-13.127099, 8.641], + [-13.126, 8.640099], + [-13.125099, 8.6382], + [-13.1235, 8.6379], + [-13.1207, 8.639899], + [-13.1188, 8.6401], + [-13.117899, 8.640699], + [-13.116499, 8.6404], + [-13.1132, 8.6407], + [-13.111799, 8.641799], + [-13.1093, 8.6426], + [-13.108499, 8.643799], + [-13.1074, 8.644], + [-13.105399, 8.645399], + [-13.1043, 8.6457], + [-13.1043, 8.647399], + [-13.105099, 8.648999], + [-13.1068, 8.6504], + [-13.108999, 8.653699], + [-13.108999, 8.655399], + [-13.1082, 8.6563], + [-13.108199, 8.6582], + [-13.1046, 8.660999], + [-13.104599, 8.660999], + [-13.104, 8.660099], + [-13.105699, 8.659599], + [-13.107399, 8.658199], + [-13.1074, 8.6563], + [-13.108199, 8.655399], + [-13.108199, 8.6537], + [-13.107399, 8.6524], + [-13.106, 8.6518], + [-13.105399, 8.651], + [-13.104, 8.6504], + [-13.103799, 8.6496], + [-13.1021, 8.6493], + [-13.1004, 8.6501], + [-13.100099, 8.651], + [-13.0976, 8.6526], + [-13.0954, 8.656299], + [-13.095399, 8.657599], + [-13.0946, 8.6596], + [-13.0946, 8.662598], + [-13.094598, 8.662599], + [-13.093799, 8.662099], + [-13.0935, 8.6593], + [-13.094299, 8.657899], + [-13.094, 8.655999], + [-13.094, 8.6518], + [-13.094599, 8.651], + [-13.096499, 8.650399], + [-13.0985, 8.6485], + [-13.100399, 8.647899], + [-13.101199, 8.647099], + [-13.1018, 8.6454], + [-13.102899, 8.6443], + [-13.104599, 8.643799], + [-13.1074, 8.6413], + [-13.109, 8.640699], + [-13.111, 8.6393], + [-13.1146, 8.6382], + [-13.118999, 8.638199], + [-13.122099, 8.636499], + [-13.122599, 8.635399], + [-13.122599, 8.6332], + [-13.121299, 8.6313], + [-13.1193, 8.6301], + [-13.118999, 8.628999], + [-13.117599, 8.6282], + [-13.1165, 8.628199], + [-13.115099, 8.6268], + [-13.1135, 8.626499], + [-13.1121, 8.6257], + [-13.111799, 8.6246], + [-13.110699, 8.624299], + [-13.109299, 8.622599], + [-13.107599, 8.6212], + [-13.106799, 8.621199], + [-13.104899, 8.6187], + [-13.103199, 8.618199], + [-13.101199, 8.6154], + [-13.0993, 8.616], + [-13.098499, 8.6168], + [-13.095999, 8.6174], + [-13.0929, 8.617599], + [-13.0904, 8.6165], + [-13.088799, 8.615399], + [-13.084, 8.6151], + [-13.082599, 8.615999], + [-13.081, 8.616], + [-13.079899, 8.6165], + [-13.0771, 8.6165], + [-13.076799, 8.6171], + [-13.074, 8.6182], + [-13.0729, 8.619599], + [-13.0721, 8.6196], + [-13.070399, 8.621199], + [-13.0693, 8.6215], + [-13.0679, 8.622599], + [-13.067599, 8.623499], + [-13.0663, 8.6243], + [-13.066499, 8.625999], + [-13.0643, 8.6262], + [-13.063499, 8.627099], + [-13.062399, 8.6271], + [-13.061, 8.6285], + [-13.060999, 8.629599], + [-13.0601, 8.6304], + [-13.0599, 8.632099], + [-13.0599, 8.643799], + [-13.0596, 8.6438], + [-13.0596, 8.647399], + [-13.0599, 8.6474], + [-13.0599, 8.653999], + [-13.0596, 8.655999], + [-13.0607, 8.659299], + [-13.0613, 8.6596], + [-13.062599, 8.662599], + [-13.0629, 8.665399], + [-13.0635, 8.6657], + [-13.0643, 8.667899], + [-13.0654, 8.669299], + [-13.067099, 8.6693], + [-13.067899, 8.6699], + [-13.0679, 8.673199], + [-13.0682, 8.6732], + [-13.0685, 8.676199], + [-13.070099, 8.6782], + [-13.069599, 8.680099], + [-13.0679, 8.679599], + [-13.067899, 8.678799], + [-13.0663, 8.6751], + [-13.0654, 8.674299], + [-13.064899, 8.6715], + [-13.063499, 8.670099], + [-13.062899, 8.6674], + [-13.0618, 8.666799], + [-13.060999, 8.6646], + [-13.059899, 8.6635], + [-13.0585, 8.6638], + [-13.0576, 8.666], + [-13.0576, 8.670399], + [-13.058199, 8.6713], + [-13.0579, 8.675999], + [-13.057599, 8.677099], + [-13.0565, 8.6776], + [-13.056199, 8.681499], + [-13.0546, 8.6821], + [-13.053199, 8.6832], + [-13.050701, 8.683499], + [-13.050701, 8.683498], + [-13.051363, 8.682474], + [-13.050368, 8.683136], + [-13.050302, 8.683155], + [-13.050247, 8.683149], + [-13.050213, 8.683111], + [-13.050162, 8.683044], + [-13.050104, 8.683013], + [-13.050013, 8.683004], + [-13.049934, 8.683032], + [-13.049888, 8.683025], + [-13.049824, 8.682973], + [-13.049838, 8.682923], + [-13.049865, 8.682874], + [-13.049855, 8.682825], + [-13.049747, 8.682648], + [-13.049667, 8.682456], + [-13.049703, 8.682608], + [-13.049734, 8.682675], + [-13.049805, 8.682803], + [-13.049814, 8.682856], + [-13.049789, 8.682898], + [-13.049772, 8.68295], + [-13.049825, 8.683028], + [-13.049884, 8.683055], + [-13.049977, 8.683056], + [-13.050042, 8.683061], + [-13.050147, 8.68311], + [-13.050202, 8.683166], + [-13.050216, 8.6832], + [-13.050114, 8.683325], + [-13.049873, 8.683521], + [-13.049738, 8.683681], + [-13.049656, 8.683791], + [-13.049632, 8.683877], + [-13.049629, 8.684057], + [-13.049554, 8.684269], + [-13.049473, 8.684549], + [-13.049317, 8.685055], + [-13.049287, 8.68521], + [-13.049303, 8.685411], + [-13.049308, 8.685656], + [-13.049262, 8.68586], + [-13.049143, 8.685948], + [-13.048919, 8.686039], + [-13.048628, 8.686105], + [-13.048472, 8.6861], + [-13.048252, 8.686038], + [-13.048083, 8.685865], + [-13.047982, 8.685732], + [-13.047877, 8.685673], + [-13.047633, 8.685636], + [-13.047409, 8.68566], + [-13.047154, 8.685733], + [-13.046989, 8.685732], + [-13.046775, 8.685644], + [-13.046549, 8.685625], + [-13.04637, 8.685689], + [-13.046254, 8.685788], + [-13.046031, 8.686003], + [-13.045852, 8.686195], + [-13.045762, 8.68625], + [-13.045647, 8.686283], + [-13.045447, 8.686287], + [-13.044678, 8.686243], + [-13.044698, 8.686294], + [-13.044817, 8.686314], + [-13.045059, 8.686373], + [-13.045235, 8.686413], + [-13.045273, 8.686481], + [-13.045285, 8.686569], + [-13.045219, 8.686665], + [-13.044996, 8.686893], + [-13.044836, 8.687076], + [-13.044756, 8.687224], + [-13.044694, 8.687345], + [-13.044671, 8.68757], + [-13.044606, 8.687639], + [-13.044356, 8.687804], + [-13.044147, 8.68797], + [-13.04393, 8.688151], + [-13.043826, 8.688269], + [-13.043778, 8.688365], + [-13.043812, 8.68844], + [-13.04382, 8.688564], + [-13.043775, 8.688669], + [-13.043641, 8.689072], + [-13.043511, 8.689283], + [-13.043465, 8.689334], + [-13.043408, 8.689507], + [-13.043325, 8.689664], + [-13.043226, 8.689613], + [-13.042998, 8.689548], + [-13.042867, 8.689596], + [-13.042693, 8.689695], + [-13.042484, 8.689943], + [-13.042338, 8.69012], + [-13.042316, 8.690175], + [-13.042323, 8.690225], + [-13.04238, 8.690323], + [-13.042411, 8.690371], + [-13.042412, 8.690457], + [-13.042359, 8.690489], + [-13.042298, 8.690487], + [-13.041959, 8.690222], + [-13.041727, 8.690092], + [-13.041526, 8.690079], + [-13.041372, 8.690122], + [-13.041271, 8.69019], + [-13.041205, 8.690286], + [-13.041145, 8.690387], + [-13.041086, 8.690597], + [-13.041046, 8.690819], + [-13.041053, 8.691001], + [-13.04107, 8.691101], + [-13.041067, 8.691174], + [-13.041012, 8.691276], + [-13.040879, 8.691396], + [-13.040659, 8.691538], + [-13.040349, 8.691727], + [-13.040196, 8.69185], + [-13.040095, 8.691941], + [-13.040022, 8.691985], + [-13.039963, 8.69211], + [-13.039952, 8.692254], + [-13.039931, 8.692395], + [-13.039852, 8.692628], + [-13.039767, 8.692737], + [-13.03968, 8.692799], + [-13.039502, 8.692972], + [-13.039486, 8.693093], + [-13.039502, 8.693317], + [-13.039582, 8.69356], + [-13.039624, 8.693755], + [-13.039647, 8.694062], + [-13.039678, 8.694342], + [-13.039758, 8.694571], + [-13.039758, 8.694666], + [-13.039648, 8.694844], + [-13.039482, 8.695008], + [-13.039396, 8.695097], + [-13.039364, 8.695171], + [-13.039362, 8.695321], + [-13.039397, 8.695419], + [-13.039395, 8.695497], + [-13.039334, 8.695593], + [-13.03927, 8.695647], + [-13.039276, 8.695761], + [-13.039316, 8.695798], + [-13.039334, 8.695889], + [-13.039319, 8.696025], + [-13.039304, 8.696093], + [-13.039311, 8.696151], + [-13.039326, 8.69622], + [-13.039352, 8.696289], + [-13.039372, 8.696376], + [-13.039348, 8.696459], + [-13.039261, 8.696541], + [-13.039069, 8.696713], + [-13.038999, 8.696799], + [-13.038988, 8.696847], + [-13.039011, 8.696907], + [-13.039095, 8.69699], + [-13.03918, 8.697018], + [-13.039234, 8.697041], + [-13.039215, 8.697093], + [-13.039177, 8.697125], + [-13.039116, 8.697128], + [-13.039053, 8.697134], + [-13.03905, 8.697176], + [-13.039082, 8.697211], + [-13.039128, 8.697226], + [-13.039215, 8.697211], + [-13.039278, 8.697216], + [-13.03931, 8.69729], + [-13.039257, 8.697405], + [-13.039236, 8.697553], + [-13.039231, 8.697696], + [-13.039172, 8.697748], + [-13.039107, 8.697777], + [-13.038888, 8.697833], + [-13.039013, 8.697837], + [-13.039115, 8.697805], + [-13.039227, 8.697744], + [-13.039279, 8.697724], + [-13.039392, 8.69775], + [-13.039443, 8.697779], + [-13.039613, 8.697779], + [-13.039442, 8.697747], + [-13.03932, 8.697707], + [-13.039282, 8.697685], + [-13.039276, 8.697601], + [-13.0393, 8.697488], + [-13.039323, 8.697366], + [-13.039397, 8.697299], + [-13.039446, 8.697274], + [-13.039586, 8.697266], + [-13.039638, 8.697313], + [-13.039694, 8.697343], + [-13.039758, 8.697334], + [-13.039844, 8.697243], + [-13.039858, 8.697183], + [-13.039823, 8.697117], + [-13.039775, 8.697056], + [-13.039731, 8.69703], + [-13.039646, 8.697005], + [-13.039457, 8.697019], + [-13.039253, 8.696997], + [-13.03912, 8.696967], + [-13.039078, 8.696948], + [-13.039038, 8.696892], + [-13.039042, 8.696819], + [-13.039077, 8.696763], + [-13.039231, 8.696625], + [-13.03931, 8.696588], + [-13.039345, 8.696557], + [-13.039397, 8.69641], + [-13.039417, 8.696314], + [-13.039445, 8.696273], + [-13.039487, 8.696251], + [-13.039524, 8.696256], + [-13.039567, 8.696252], + [-13.039569, 8.696205], + [-13.039504, 8.696051], + [-13.039463, 8.695951], + [-13.039444, 8.695815], + [-13.039404, 8.695717], + [-13.039398, 8.695667], + [-13.039398, 8.695616], + [-13.039423, 8.695488], + [-13.039455, 8.695431], + [-13.039505, 8.69536], + [-13.039586, 8.69524], + [-13.039601, 8.695171], + [-13.039604, 8.695074], + [-13.039637, 8.695029], + [-13.039708, 8.694938], + [-13.039752, 8.694849], + [-13.039784, 8.694766], + [-13.039796, 8.694661], + [-13.039778, 8.694569], + [-13.039739, 8.694418], + [-13.03971, 8.694224], + [-13.039684, 8.693957], + [-13.039647, 8.693629], + [-13.039593, 8.69336], + [-13.039562, 8.693225], + [-13.039576, 8.693098], + [-13.039593, 8.693006], + [-13.039644, 8.692876], + [-13.039905, 8.692644], + [-13.039946, 8.692564], + [-13.039963, 8.692469], + [-13.040006, 8.692269], + [-13.040083, 8.692106], + [-13.040191, 8.691951], + [-13.040325, 8.691843], + [-13.040505, 8.691715], + [-13.040554, 8.691692], + [-13.040587, 8.691723], + [-13.04065, 8.691808], + [-13.040718, 8.691858], + [-13.040926, 8.691954], + [-13.040738, 8.691851], + [-13.040668, 8.691796], + [-13.040643, 8.691758], + [-13.040634, 8.691725], + [-13.04064, 8.691677], + [-13.040719, 8.691635], + [-13.040832, 8.691583], + [-13.040981, 8.691469], + [-13.041104, 8.691316], + [-13.041199, 8.691147], + [-13.041254, 8.69081], + [-13.041269, 8.690501], + [-13.041278, 8.69036], + [-13.041317, 8.690292], + [-13.041383, 8.690224], + [-13.041441, 8.690197], + [-13.04155, 8.690158], + [-13.041682, 8.690177], + [-13.041787, 8.690264], + [-13.041908, 8.690423], + [-13.042086, 8.690634], + [-13.042188, 8.690719], + [-13.042327, 8.690794], + [-13.0424, 8.690797], + [-13.042473, 8.690757], + [-13.042534, 8.690673], + [-13.042642, 8.690505], + [-13.042668, 8.69042], + [-13.042665, 8.690302], + [-13.042634, 8.690069], + [-13.042644, 8.690009], + [-13.042671, 8.689981], + [-13.042734, 8.689989], + [-13.042782, 8.690003], + [-13.042876, 8.689974], + [-13.042939, 8.689934], + [-13.043036, 8.689964], + [-13.043079, 8.689961], + [-13.043128, 8.689895], + [-13.043229, 8.68985], + [-13.043427, 8.689765], + [-13.043574, 8.689675], + [-13.043675, 8.689601], + [-13.043746, 8.689463], + [-13.04381, 8.689267], + [-13.043909, 8.68901], + [-13.044064, 8.688716], + [-13.044183, 8.688523], + [-13.044308, 8.688366], + [-13.044513, 8.688242], + [-13.044606, 8.688238], + [-13.044674, 8.68817], + [-13.04484, 8.687925], + [-13.044944, 8.687793], + [-13.045082, 8.687709], + [-13.045216, 8.687678], + [-13.045355, 8.687548], + [-13.045446, 8.687388], + [-13.045482, 8.68711], + [-13.045487, 8.686957], + [-13.045543, 8.686863], + [-13.045614, 8.686817], + [-13.045737, 8.686752], + [-13.045868, 8.686709], + [-13.046057, 8.686712], + [-13.046325, 8.686662], + [-13.046653, 8.686505], + [-13.046929, 8.68643], + [-13.047193, 8.686406], + [-13.047598, 8.686394], + [-13.047985, 8.686355], + [-13.048366, 8.686346], + [-13.048651, 8.68636], + [-13.048679, 8.686393], + [-13.048654, 8.686445], + [-13.048576, 8.686556], + [-13.048545, 8.686719], + [-13.048533, 8.68688], + [-13.048533, 8.686993], + [-13.048553, 8.687156], + [-13.048586, 8.687281], + [-13.048624, 8.6874], + [-13.048709, 8.687556], + [-13.048801, 8.68766], + [-13.048938, 8.687797], + [-13.049087, 8.687999], + [-13.049436, 8.688455], + [-13.049704, 8.688669], + [-13.049818, 8.688789], + [-13.049873, 8.68887], + [-13.049995, 8.689114], + [-13.050073, 8.689315], + [-13.050118, 8.6896], + [-13.050123, 8.689775], + [-13.050118, 8.689828], + [-13.050073, 8.689852], + [-13.049943, 8.689843], + [-13.049868, 8.689808], + [-13.049815, 8.689764], + [-13.049717, 8.689622], + [-13.049668, 8.689411], + [-13.04963, 8.689313], + [-13.049539, 8.689199], + [-13.049399, 8.689065], + [-13.049297, 8.689021], + [-13.049212, 8.688998], + [-13.04907, 8.689011], + [-13.048975, 8.689056], + [-13.04887, 8.689155], + [-13.0488, 8.689232], + [-13.048703, 8.68937], + [-13.048652, 8.689537], + [-13.048639, 8.689626], + [-13.048637, 8.689748], + [-13.048653, 8.689864], + [-13.048677, 8.691032], + [-13.04878, 8.691257], + [-13.04886, 8.691403], + [-13.049023, 8.691651], + [-13.049111, 8.691826], + [-13.049106, 8.69194], + [-13.049076, 8.692028], + [-13.048983, 8.692114], + [-13.048872, 8.692201], + [-13.048661, 8.692374], + [-13.048522, 8.692442], + [-13.048429, 8.692475], + [-13.048273, 8.692548], + [-13.048158, 8.692635], + [-13.04807, 8.692715], + [-13.047866, 8.692886], + [-13.047802, 8.692948], + [-13.047731, 8.693042], + [-13.047686, 8.693087], + [-13.047632, 8.693106], + [-13.047393, 8.693297], + [-13.047461, 8.693713], + [-13.047501, 8.693797], + [-13.047573, 8.693822], + [-13.047689, 8.693907], + [-13.047719, 8.693963], + [-13.047692, 8.694096], + [-13.047676, 8.694155], + [-13.047712, 8.694269], + [-13.047821, 8.694419], + [-13.048066, 8.694766], + [-13.048155, 8.695029], + [-13.048209, 8.695176], + [-13.048224, 8.695248], + [-13.048147, 8.695407], + [-13.048089, 8.695475], + [-13.047983, 8.695629], + [-13.047924, 8.695759], + [-13.047909, 8.695911], + [-13.047915, 8.695982], + [-13.047943, 8.696047], + [-13.048038, 8.696151], + [-13.048118, 8.696225], + [-13.048182, 8.696221], + [-13.048285, 8.696178], + [-13.048381, 8.696109], + [-13.048516, 8.696031], + [-13.048628, 8.695982], + [-13.048699, 8.696011], + [-13.048764, 8.696074], + [-13.048759, 8.69614], + [-13.048719, 8.696208], + [-13.048675, 8.696277], + [-13.04865, 8.696434], + [-13.048651, 8.696474], + [-13.048732, 8.696579], + [-13.048797, 8.696615], + [-13.048987, 8.696649], + [-13.04908, 8.696669], + [-13.049296, 8.696705], + [-13.049419, 8.696738], + [-13.049506, 8.696777], + [-13.049541, 8.696881], + [-13.049556, 8.696983], + [-13.049587, 8.697119], + [-13.049591, 8.697293], + [-13.049554, 8.697361], + [-13.049521, 8.697402], + [-13.049516, 8.697574], + [-13.049485, 8.697652], + [-13.049485, 8.697676], + [-13.049506, 8.697709], + [-13.049608, 8.697742], + [-13.049684, 8.697749], + [-13.049907, 8.697862], + [-13.050012, 8.697924], + [-13.050141, 8.698064], + [-13.050183, 8.698164], + [-13.050167, 8.69821], + [-13.050109, 8.698276], + [-13.050065, 8.698332], + [-13.050027, 8.698485], + [-13.050039, 8.698539], + [-13.050109, 8.698596], + [-13.050305, 8.69871], + [-13.050419, 8.698858], + [-13.050432, 8.698969], + [-13.050482, 8.699006], + [-13.050549, 8.699082], + [-13.050535, 8.699156], + [-13.050519, 8.699216], + [-13.050439, 8.699306], + [-13.050432, 8.699346], + [-13.050439, 8.699518], + [-13.050382, 8.699673], + [-13.050367, 8.699749], + [-13.050441, 8.699784], + [-13.050725, 8.699788], + [-13.050742, 8.699663], + [-13.050744, 8.699542], + [-13.050717, 8.69941], + [-13.050674, 8.699333], + [-13.050679, 8.6992], + [-13.050715, 8.699082], + [-13.050748, 8.698904], + [-13.050773, 8.698804], + [-13.050725, 8.698841], + [-13.050641, 8.698827], + [-13.050539, 8.698829], + [-13.050454, 8.698805], + [-13.050418, 8.698746], + [-13.050316, 8.698615], + [-13.050232, 8.698571], + [-13.050124, 8.698471], + [-13.050106, 8.698413], + [-13.050122, 8.698355], + [-13.050185, 8.698281], + [-13.050227, 8.698211], + [-13.050246, 8.698123], + [-13.050173, 8.697989], + [-13.050039, 8.697882], + [-13.049734, 8.697735], + [-13.049556, 8.697587], + [-13.049544, 8.69752], + [-13.049566, 8.697413], + [-13.049625, 8.697342], + [-13.049638, 8.697236], + [-13.049606, 8.696925], + [-13.049588, 8.696828], + [-13.04956, 8.696764], + [-13.049491, 8.696696], + [-13.049351, 8.696671], + [-13.049267, 8.696648], + [-13.049204, 8.696597], + [-13.049188, 8.696544], + [-13.049097, 8.696391], + [-13.049085, 8.69626], + [-13.04903, 8.696252], + [-13.048987, 8.696286], + [-13.048949, 8.696341], + [-13.048862, 8.696351], + [-13.048793, 8.696347], + [-13.048767, 8.696308], + [-13.048788, 8.696192], + [-13.048835, 8.696072], + [-13.048833, 8.69602], + [-13.048815, 8.695986], + [-13.04869, 8.695941], + [-13.048628, 8.695927], + [-13.048499, 8.695986], + [-13.048344, 8.696041], + [-13.048188, 8.696091], + [-13.048122, 8.696066], + [-13.048032, 8.696037], + [-13.047986, 8.695972], + [-13.047961, 8.695891], + [-13.047973, 8.695775], + [-13.048058, 8.695607], + [-13.048173, 8.695511], + [-13.048292, 8.695375], + [-13.048342, 8.695245], + [-13.04832, 8.69511], + [-13.048197, 8.694913], + [-13.048079, 8.694658], + [-13.047849, 8.694307], + [-13.047793, 8.694179], + [-13.047793, 8.694059], + [-13.0478, 8.693958], + [-13.047682, 8.693666], + [-13.047556, 8.693483], + [-13.047531, 8.693411], + [-13.047564, 8.693335], + [-13.047637, 8.693285], + [-13.047776, 8.69322], + [-13.047948, 8.693108], + [-13.048178, 8.692981], + [-13.048465, 8.69291], + [-13.048595, 8.692801], + [-13.048842, 8.692528], + [-13.049088, 8.692361], + [-13.049204, 8.692229], + [-13.049327, 8.692031], + [-13.049402, 8.691889], + [-13.049396, 8.691679], + [-13.049344, 8.691561], + [-13.049172, 8.691361], + [-13.048963, 8.691206], + [-13.048911, 8.691096], + [-13.048883, 8.690925], + [-13.048886, 8.690484], + [-13.04888, 8.69003], + [-13.048933, 8.689631], + [-13.049001, 8.689325], + [-13.049063, 8.689205], + [-13.049126, 8.689141], + [-13.04919, 8.689136], + [-13.04929, 8.689174], + [-13.049374, 8.689391], + [-13.04944, 8.689712], + [-13.049455, 8.690056], + [-13.04949, 8.690179], + [-13.049584, 8.690305], + [-13.049691, 8.690354], + [-13.049911, 8.690356], + [-13.050143, 8.690321], + [-13.050232, 8.690242], + [-13.05035, 8.690054], + [-13.050439, 8.689804], + [-13.050432, 8.689517], + [-13.050639, 8.689767], + [-13.051008, 8.689735], + [-13.050534, 8.6901], + [-13.050528, 8.69128], + [-13.051125, 8.692758], + [-13.050239, 8.693163], + [-13.049463, 8.693845], + [-13.049027, 8.69499], + [-13.048995, 8.69555], + [-13.049086, 8.695898], + [-13.049917, 8.696839], + [-13.050457, 8.697117], + [-13.050727, 8.697043], + [-13.050316, 8.697437], + [-13.050514, 8.698096], + [-13.050884, 8.698242], + [-13.05075, 8.69848], + [-13.051308, 8.698641], + [-13.051759, 8.699042], + [-13.051826, 8.699609], + [-13.05175, 8.700003], + [-13.051904, 8.700121], + [-13.051483, 8.70075], + [-13.051452, 8.70072], + [-13.051249, 8.703749], + [-13.051236, 8.703756], + [-13.050455, 8.703288], + [-13.050213, 8.704267], + [-13.049583, 8.704583], + [-13.050026, 8.705027], + [-13.049687, 8.706405], + [-13.049537, 8.707742], + [-13.04993, 8.71049], + [-13.055821, 8.709918], + [-13.058493, 8.709625], + [-13.058494, 8.709626], + [-13.057852, 8.710852], + [-13.059469, 8.71061], + [-13.059917, 8.711932], + [-13.059957, 8.712082], + [-13.062916, 8.712083], + [-13.062083, 8.714583], + [-13.062917, 8.717916], + [-13.07375, 8.714583], + [-13.074582, 8.715417], + [-13.07375, 8.727082], + [-13.072113, 8.728393], + [-13.075206, 8.73375], + [-13.077202, 8.732481], + [-13.077946, 8.732453], + [-13.080191, 8.73389], + [-13.080413, 8.734742], + [-13.080038, 8.735492], + [-13.079041, 8.73664], + [-13.079155, 8.737295], + [-13.078967, 8.737747], + [-13.079202, 8.737871], + [-13.07961, 8.738736], + [-13.080306, 8.738538], + [-13.081687, 8.738175], + [-13.082917, 8.741249], + [-13.085417, 8.739583], + [-13.095416, 8.742916], + [-13.096249, 8.74375], + [-13.09625, 8.744582], + [-13.103749, 8.744583], + [-13.104583, 8.750416], + [-13.10875, 8.753749], + [-13.117916, 8.753749], + [-13.120417, 8.752083], + [-13.122083, 8.75375], + [-13.127916, 8.756249], + [-13.128749, 8.756249], + [-13.12875, 8.755417], + [-13.130416, 8.755416], + [-13.13375, 8.752082], + [-13.139582, 8.750416], + [-13.139583, 8.749583], + [-13.144162, 8.750891], + [-13.144417, 8.750144], + [-13.145363, 8.748245], + [-13.145379, 8.748138], + [-13.150416, 8.74625], + [-13.153749, 8.74875], + [-13.157917, 8.757082], + [-13.161249, 8.756249], + [-13.159809, 8.746163], + [-13.160464, 8.74616], + [-13.161257, 8.74602], + [-13.163088, 8.746169], + [-13.164748, 8.746027], + [-13.165494, 8.745038] + ] + ], + "type": "Polygon" + }, + "id": 471, + "properties": { + "cc:admin:id": ["74"], + "cc:oBld:total": 150, + "cc:pop:fifteen-to-twenty-four": 2846.590947590114, + "cc:pop:grid3-total": 7132.750337353561, + "cc:pop:kontur-total": 15302.30783505159, + "cc:pop:men": 7408.120168895929, + "cc:pop:sixty-plus": 862.2356319510981, + "cc:pop:total": 15740.24995706009, + "cc:pop:under-five": 2426.028956723263, + "cc:pop:women": 8332.129788164159, + "cc:pop:women-fiften-to-forty-nine": 4139.837383814885, + "cc:pop:wp-total": 12440.006818189968, + "cc:pop:wp-total-UN": 14435.392118257176, + "cc:id": "471", + "cc:Name": "Petifu CHC", + "cc:site": [-13.1078, 8.6953], + "user:parentName": "Lokomasama", + "user:code": "OU_254983", + "user:orgUnitId": "ke2gwHKHP3z", + "user:level": "4", + "user:parentId": "fRLX08WHWpL" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.592082, 8.510667], + [-11.587799, 8.502499], + [-11.584899, 8.498599], + [-11.58, 8.4938], + [-11.576399, 8.4978], + [-11.5724, 8.503899], + [-11.5697, 8.507199], + [-11.558399, 8.519], + [-11.5507, 8.526499], + [-11.546, 8.530099], + [-11.539499, 8.5334], + [-11.535399, 8.5345], + [-11.5278, 8.534899], + [-11.5218, 8.5342], + [-11.509099, 8.529999], + [-11.497, 8.5246], + [-11.494199, 8.523999], + [-11.4899, 8.5237], + [-11.486834, 8.523914], + [-11.48625, 8.526249], + [-11.488748, 8.529584], + [-11.48125, 8.53125], + [-11.482083, 8.538749], + [-11.484583, 8.541249], + [-11.487916, 8.54125], + [-11.48875, 8.54625], + [-11.492654, 8.552496], + [-11.492673, 8.552496], + [-11.493097, 8.55243], + [-11.493748, 8.552099], + [-11.49375, 8.5521], + [-11.493749, 8.555416], + [-11.482083, 8.555417], + [-11.482917, 8.567084], + [-11.48375, 8.569583], + [-11.487916, 8.56875], + [-11.485417, 8.573749], + [-11.493749, 8.582916], + [-11.494583, 8.590417], + [-11.49625, 8.592084], + [-11.499833, 8.592084], + [-11.499856, 8.591944], + [-11.505416, 8.59125], + [-11.505416, 8.595694], + [-11.503584, 8.595961], + [-11.50289, 8.596318], + [-11.502671, 8.596248], + [-11.50069, 8.596912], + [-11.499648, 8.597563], + [-11.499583, 8.597576], + [-11.499583, 8.602916], + [-11.508749, 8.602917], + [-11.510416, 8.603749], + [-11.509583, 8.608749], + [-11.502917, 8.612917], + [-11.502916, 8.614583], + [-11.500417, 8.615417], + [-11.499583, 8.617083], + [-11.50125, 8.617917], + [-11.505417, 8.625416], + [-11.507916, 8.62625], + [-11.507917, 8.630416], + [-11.510416, 8.632084], + [-11.510416, 8.63375], + [-11.507083, 8.63875], + [-11.508801, 8.641612], + [-11.509215, 8.641347], + [-11.509583, 8.642083], + [-11.515416, 8.640417], + [-11.519583, 8.644583], + [-11.525416, 8.64375], + [-11.524583, 8.64875], + [-11.524583, 8.658749], + [-11.525417, 8.65875], + [-11.530416, 8.666249], + [-11.530417, 8.667916], + [-11.524583, 8.67125], + [-11.52625, 8.681249], + [-11.531232, 8.683385], + [-11.5322, 8.681399], + [-11.536099, 8.6763], + [-11.537399, 8.674], + [-11.5389, 8.668099], + [-11.541399, 8.663], + [-11.5427, 8.659799], + [-11.5448, 8.655399], + [-11.5455, 8.651899], + [-11.5455, 8.6393], + [-11.545899, 8.6351], + [-11.5465, 8.632999], + [-11.5484, 8.628499], + [-11.5499, 8.622699], + [-11.552199, 8.617299], + [-11.552699, 8.612699], + [-11.5526, 8.6011], + [-11.5535, 8.5958], + [-11.5573, 8.588299], + [-11.5603, 8.584699], + [-11.565699, 8.5794], + [-11.568099, 8.5768], + [-11.569099, 8.5735], + [-11.567999, 8.5709], + [-11.5652, 8.5676], + [-11.563999, 8.565699], + [-11.563399, 8.563499], + [-11.5632, 8.5601], + [-11.564299, 8.5567], + [-11.5665, 8.555299], + [-11.5712, 8.553899], + [-11.5741, 8.551899], + [-11.576999, 8.548299], + [-11.578, 8.544399], + [-11.578099, 8.5385], + [-11.578399, 8.535], + [-11.579299, 8.5324], + [-11.5809, 8.530099], + [-11.588399, 8.5227], + [-11.591, 8.519499], + [-11.5925, 8.516199], + [-11.592699, 8.513699], + [-11.5921, 8.5107], + [-11.592082, 8.510667] + ] + ], + "type": "Polygon" + }, + "id": 472, + "properties": { + "cc:admin:id": ["68"], + "cc:oBld:total": 56, + "cc:pop:fifteen-to-twenty-four": 797.5884425209092, + "cc:pop:grid3-total": 5733.774552926956, + "cc:pop:kontur-total": 4146.22042002228, + "cc:pop:men": 2057.372563351, + "cc:pop:sixty-plus": 276.4002709219813, + "cc:pop:total": 4373.297850970827, + "cc:pop:under-five": 704.512618176379, + "cc:pop:women": 2315.925287619828, + "cc:pop:women-fiften-to-forty-nine": 1132.4504864538364, + "cc:pop:wp-total": 5560.773507661512, + "cc:pop:wp-total-UN": 6442.939089272258, + "cc:id": "472", + "cc:Name": "Petifu Line MCHP", + "cc:site": [-11.5408, 8.6272], + "user:parentName": "Kunike", + "user:code": "OU_268175", + "user:orgUnitId": "byOPfWkK6M6", + "user:level": "4", + "user:parentId": "l0ccv2yzfF3" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.264199, 8.4319], + [-11.259499, 8.4357], + [-11.2538, 8.440799], + [-11.2511, 8.442599], + [-11.249099, 8.4433], + [-11.244099, 8.4446], + [-11.238399, 8.446899], + [-11.2344, 8.446999], + [-11.2319, 8.4463], + [-11.228299, 8.444299], + [-11.2207, 8.4407], + [-11.217899, 8.439999], + [-11.212899, 8.4398], + [-11.1933, 8.439899], + [-11.1861, 8.4398], + [-11.182099, 8.439399], + [-11.1756, 8.438], + [-11.173199, 8.439], + [-11.1672, 8.443499], + [-11.1657, 8.445299], + [-11.1649, 8.4493], + [-11.165099, 8.454699], + [-11.165999, 8.4592], + [-11.165399, 8.4624], + [-11.1652, 8.4663], + [-11.1653, 8.4693], + [-11.165999, 8.473099], + [-11.1683, 8.4774], + [-11.172199, 8.485799], + [-11.1738, 8.4916], + [-11.176099, 8.495999], + [-11.1775, 8.4992], + [-11.1797, 8.5035], + [-11.1804, 8.5063], + [-11.180799, 8.512999], + [-11.181599, 8.517199], + [-11.1839, 8.5231], + [-11.184499, 8.527099], + [-11.184615, 8.528878], + [-11.185326, 8.528397], + [-11.185835, 8.527533], + [-11.186476, 8.52678], + [-11.187082, 8.527084], + [-11.187083, 8.536249], + [-11.195417, 8.53125], + [-11.196532, 8.53125], + [-11.19727, 8.531787], + [-11.19737, 8.533202], + [-11.198033, 8.534889], + [-11.198151, 8.535062], + [-11.199583, 8.532916], + [-11.203749, 8.531249], + [-11.205417, 8.52875], + [-11.213749, 8.530416], + [-11.217916, 8.517917], + [-11.210268, 8.517221], + [-11.213534, 8.511564], + [-11.219142, 8.511564], + [-11.222917, 8.514583], + [-11.229688, 8.514584], + [-11.229871, 8.514268], + [-11.233295, 8.514267], + [-11.237916, 8.510416], + [-11.237917, 8.50875], + [-11.242082, 8.509583], + [-11.243749, 8.497084], + [-11.241249, 8.49125], + [-11.23875, 8.488749], + [-11.240417, 8.487084], + [-11.24375, 8.487083], + [-11.252082, 8.484583], + [-11.252083, 8.48125], + [-11.254582, 8.479583], + [-11.254583, 8.475417], + [-11.256848, 8.47485], + [-11.256952, 8.47467], + [-11.253047, 8.467905], + [-11.256595, 8.461758], + [-11.254583, 8.460416], + [-11.255416, 8.449584], + [-11.261249, 8.445417], + [-11.264199, 8.445416], + [-11.264199, 8.4319] + ] + ], + "type": "Polygon" + }, + "id": 473, + "properties": { + "cc:admin:id": ["101"], + "cc:oBld:total": 215, + "cc:pop:fifteen-to-twenty-four": 292.89079911594536, + "cc:pop:grid3-total": 1250.9918446637273, + "cc:pop:kontur-total": 1554.985619351974, + "cc:pop:men": 846.0751490347942, + "cc:pop:sixty-plus": 82.38995896602279, + "cc:pop:total": 1544.8122668770184, + "cc:pop:under-five": 232.45746083472008, + "cc:pop:women": 698.7371178422239, + "cc:pop:women-fiften-to-forty-nine": 370.5342336111131, + "cc:pop:wp-total": 1067.5652314182653, + "cc:pop:wp-total-UN": 1236.5463491682522, + "cc:id": "473", + "cc:Name": "Peya MCHP", + "cc:site": [-11.2143, 8.4967], + "user:parentName": "Nimiyama", + "user:code": "OU_233334", + "user:orgUnitId": "zQ2pFkzGtIg", + "user:level": "4", + "user:parentId": "qgQ49DH9a0v" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.087699, 8.7336], + [-11.0839, 8.7285], + [-11.082948, 8.726733], + [-11.072917, 8.724583], + [-11.072083, 8.723749], + [-11.072916, 8.722083], + [-11.060417, 8.722082], + [-11.058749, 8.720417], + [-11.055417, 8.719582], + [-11.053749, 8.717083], + [-11.049582, 8.718749], + [-11.042083, 8.71875], + [-11.042082, 8.722916], + [-11.03375, 8.722916], + [-11.032916, 8.72125], + [-11.029583, 8.722916], + [-11.029582, 8.724582], + [-11.028237, 8.725481], + [-11.029551, 8.726742], + [-11.031591, 8.726968], + [-11.0337, 8.728259], + [-11.032082, 8.730416], + [-11.02875, 8.730416], + [-11.02625, 8.727082], + [-11.026249, 8.726249], + [-11.025417, 8.723749], + [-11.025416, 8.71875], + [-11.023301, 8.718749], + [-11.023271, 8.718689], + [-11.023326, 8.717678], + [-11.023209, 8.717299], + [-11.023116, 8.717095], + [-11.02231, 8.716645], + [-11.022164, 8.716011], + [-11.021801, 8.715645], + [-11.021677, 8.714688], + [-11.021816, 8.713879], + [-11.021004, 8.713774], + [-11.020608, 8.712752], + [-11.020607, 8.712042], + [-11.020306, 8.711803], + [-11.020067, 8.711864], + [-11.019515, 8.711247], + [-11.019523, 8.711531], + [-11.019328, 8.711785], + [-11.019531, 8.712008], + [-11.019623, 8.711846], + [-11.020062, 8.712046], + [-11.019995, 8.712283], + [-11.019721, 8.712324], + [-11.020044, 8.712838], + [-11.020413, 8.712796], + [-11.020896, 8.713939], + [-11.021253, 8.713925], + [-11.021583, 8.714226], + [-11.021582, 8.715585], + [-11.021707, 8.715896], + [-11.02195, 8.716039], + [-11.022273, 8.716854], + [-11.022947, 8.717129], + [-11.023135, 8.717463], + [-11.022873, 8.71797], + [-11.022495, 8.717943], + [-11.022694, 8.718724], + [-11.023066, 8.718892], + [-11.023127, 8.719294], + [-11.023319, 8.719476], + [-11.022816, 8.720001], + [-11.022947, 8.720579], + [-11.022834, 8.720979], + [-11.023253, 8.721902], + [-11.023981, 8.722633], + [-11.024487, 8.722914], + [-11.02472, 8.723345], + [-11.024709, 8.723656], + [-11.02446, 8.723768], + [-11.024098, 8.724307], + [-11.024739, 8.724664], + [-11.024552, 8.725602], + [-11.02498, 8.7263], + [-11.025447, 8.726622], + [-11.025636, 8.727047], + [-11.025663, 8.729923], + [-11.026428, 8.730579], + [-11.026504, 8.73103], + [-11.026432, 8.73135], + [-11.026091, 8.731577], + [-11.026096, 8.731851], + [-11.026383, 8.732082], + [-11.024741, 8.732083], + [-11.025099, 8.732768], + [-11.025602, 8.734549], + [-11.023564, 8.734987], + [-11.022584, 8.735429], + [-11.021877, 8.736104], + [-11.018369, 8.738099], + [-11.017156, 8.739568], + [-11.017925, 8.740419], + [-11.018611, 8.742064], + [-11.019242, 8.743101], + [-11.019358, 8.743445], + [-11.015417, 8.745417], + [-11.01375, 8.747916], + [-11.012082, 8.747916], + [-11.007916, 8.747083], + [-11.00375, 8.747083], + [-11.002917, 8.750416], + [-11.004582, 8.754582], + [-11.005416, 8.755417], + [-11.005416, 8.758749], + [-11.004996, 8.76001], + [-11.007, 8.7608], + [-11.011299, 8.763199], + [-11.0145, 8.7646], + [-11.018799, 8.766999], + [-11.021999, 8.768399], + [-11.0256, 8.7704], + [-11.0281, 8.7711], + [-11.032199, 8.771399], + [-11.036999, 8.770699], + [-11.045699, 8.7662], + [-11.048799, 8.7635], + [-11.0509, 8.760599], + [-11.0532, 8.7562], + [-11.0556, 8.754], + [-11.0588, 8.752799], + [-11.0625, 8.7526], + [-11.0703, 8.752699], + [-11.074299, 8.751999], + [-11.076699, 8.7506], + [-11.0787, 8.748699], + [-11.081199, 8.7454], + [-11.0832, 8.741099], + [-11.087699, 8.7336] + ] + ], + "type": "Polygon" + }, + "id": 474, + "properties": { + "cc:admin:id": ["49"], + "cc:oBld:total": 561, + "cc:pop:fifteen-to-twenty-four": 715.4611261302163, + "cc:pop:grid3-total": 6564.450406226982, + "cc:pop:kontur-total": 3573.9682138865824, + "cc:pop:men": 2079.4443824674677, + "cc:pop:sixty-plus": 211.93184140679384, + "cc:pop:total": 3748.475305531509, + "cc:pop:under-five": 573.6359021409104, + "cc:pop:women": 1669.03092306404, + "cc:pop:women-fiften-to-forty-nine": 800.5318096604539, + "cc:pop:wp-total": 3333.89174498721, + "cc:pop:wp-total-UN": 3856.9118403784187, + "cc:id": "474", + "cc:Name": "Peyima CHP", + "cc:site": [-11.048, 8.758], + "user:parentName": "Kamara", + "user:code": "OU_233342", + "user:orgUnitId": "FGV6TAbL0eN", + "user:level": "4", + "user:parentId": "kvkDWg42lHR" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [-12.960999, 7.917399], + [-12.960999, 7.916], + [-12.959899, 7.9129], + [-12.9585, 7.9118], + [-12.958435, 7.911647], + [-12.957311, 7.9102], + [-12.956872, 7.910311], + [-12.956681, 7.910094], + [-12.9562, 7.910346], + [-12.955736, 7.909459], + [-12.955017, 7.909768], + [-12.95525, 7.91033], + [-12.955356, 7.910843], + [-12.954048, 7.911699], + [-12.955088, 7.912663], + [-12.954583, 7.912917], + [-12.955416, 7.915416], + [-12.95375, 7.91625], + [-12.95375, 7.916799], + [-12.955099, 7.9171], + [-12.9557, 7.917899], + [-12.957399, 7.9174], + [-12.9576, 7.918199], + [-12.959299, 7.918699], + [-12.960999, 7.917399] + ] + ], + [ + [ + [-12.966499, 7.9138], + [-12.9649, 7.914], + [-12.9651, 7.915399], + [-12.966299, 7.915399], + [-12.966499, 7.9138] + ] + ], + [ + [ + [-12.995099, 7.909599], + [-12.994899, 7.9088], + [-12.9921, 7.908799], + [-12.991499, 7.9079], + [-12.9893, 7.9079], + [-12.988799, 7.909], + [-12.9871, 7.909899], + [-12.9846, 7.9093], + [-12.9843, 7.911299], + [-12.9854, 7.911799], + [-12.9879, 7.9118], + [-12.989599, 7.912399], + [-12.9899, 7.913199], + [-12.992399, 7.912399], + [-12.995099, 7.909599] + ] + ], + [ + [ + [-13.002099, 7.9076], + [-13.000999, 7.9068], + [-12.9993, 7.9076], + [-12.9996, 7.909299], + [-13.001799, 7.908799], + [-13.002099, 7.9076] + ] + ] + ], + "type": "MultiPolygon" + }, + "id": 475, + "properties": { + "cc:admin:id": ["51"], + "cc:oBld:total": 7, + "cc:pop:fifteen-to-twenty-four": 197.01737128996479, + "cc:pop:grid3-total": 5837.244944102339, + "cc:pop:kontur-total": 1519.6716339868553, + "cc:pop:men": 525.0989962732842, + "cc:pop:sixty-plus": 72.26805955085915, + "cc:pop:total": 1094.290465353861, + "cc:pop:under-five": 179.80219075824007, + "cc:pop:women": 569.1914690805768, + "cc:pop:women-fiften-to-forty-nine": 269.33568520166693, + "cc:pop:wp-total": 895.8655465609659, + "cc:pop:wp-total-UN": 1036.7823043368473, + "cc:id": "475", + "cc:Name": "Plantain Island MCHP", + "cc:site": [-12.9557, 7.9099], + "user:parentName": "Kargboro", + "user:code": "OU_247071", + "user:orgUnitId": "oV9P0VvL9Jh", + "user:level": "4", + "user:parentId": "Z9QaI6sxTwW" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.506344, 7.471718], + [-11.506199, 7.470099], + [-11.5047, 7.464199], + [-11.506099, 7.4583], + [-11.506399, 7.4545], + [-11.5062, 7.4497], + [-11.505399, 7.445999], + [-11.5032, 7.4407], + [-11.503174, 7.440417], + [-11.494583, 7.440417], + [-11.492083, 7.442084], + [-11.48875, 7.44625], + [-11.488749, 7.453712], + [-11.487046, 7.453713], + [-11.487083, 7.45375], + [-11.487082, 7.457083], + [-11.482917, 7.465416], + [-11.481249, 7.465416], + [-11.476249, 7.460417], + [-11.469583, 7.462084], + [-11.472916, 7.472083], + [-11.470417, 7.474583], + [-11.460417, 7.474583], + [-11.456249, 7.470417], + [-11.45125, 7.470417], + [-11.451249, 7.481249], + [-11.448749, 7.481249], + [-11.445416, 7.477084], + [-11.442382, 7.478905], + [-11.44267, 7.48008], + [-11.442669, 7.480081], + [-11.442083, 7.479887], + [-11.442082, 7.486249], + [-11.430417, 7.48625], + [-11.432083, 7.490417], + [-11.432916, 7.49875], + [-11.429583, 7.504583], + [-11.429846, 7.504815], + [-11.42638, 7.510819], + [-11.42004, 7.51082], + [-11.420417, 7.514583], + [-11.437082, 7.517083], + [-11.437083, 7.517962], + [-11.437886, 7.517781], + [-11.441956, 7.5157], + [-11.442628, 7.51559], + [-11.443972, 7.515638], + [-11.445416, 7.517084], + [-11.445417, 7.523749], + [-11.447083, 7.524584], + [-11.447917, 7.52625], + [-11.448436, 7.528852], + [-11.448316, 7.528915], + [-11.449108, 7.530893], + [-11.4523, 7.529599], + [-11.456499, 7.5291], + [-11.460699, 7.529199], + [-11.4662, 7.5299], + [-11.472099, 7.531899], + [-11.4749, 7.5325], + [-11.495099, 7.533999], + [-11.4935, 7.5303], + [-11.492699, 7.527399], + [-11.4923, 7.524699], + [-11.492899, 7.5204], + [-11.4951, 7.515999], + [-11.498899, 7.5077], + [-11.500299, 7.5018], + [-11.5023, 7.497299], + [-11.5031, 7.493999], + [-11.504, 7.490599], + [-11.506, 7.486199], + [-11.5066, 7.482599], + [-11.506699, 7.4757], + [-11.506344, 7.471718] + ] + ], + "type": "Polygon" + }, + "id": 476, + "properties": { + "cc:admin:id": ["5"], + "cc:oBld:total": 112, + "cc:pop:fifteen-to-twenty-four": 3267.397613277133, + "cc:pop:grid3-total": 12280.910662397751, + "cc:pop:kontur-total": 18387.831524414258, + "cc:pop:men": 8823.18017991077, + "cc:pop:sixty-plus": 1327.430079548435, + "cc:pop:total": 18120.9261668409, + "cc:pop:under-five": 3039.1156065953132, + "cc:pop:women": 9297.745986930138, + "cc:pop:women-fiften-to-forty-nine": 4426.535558603697, + "cc:pop:wp-total": 13681.201402475677, + "cc:pop:wp-total-UN": 15854.491417575171, + "cc:id": "476", + "cc:Name": "Potoru CHC", + "cc:site": [-11.4814, 7.5031], + "user:parentName": "Barri", + "user:code": "OU_260435", + "user:orgUnitId": "k6lOze3vTzP", + "user:level": "4", + "user:parentId": "RzKeCma9qb1" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.221404, 8.484896], + [-13.219985, 8.484181], + [-13.219537, 8.484027], + [-13.218903, 8.483873], + [-13.21879, 8.484246], + [-13.218714, 8.484562], + [-13.218263, 8.484447], + [-13.218335, 8.484248], + [-13.217782, 8.483874], + [-13.217229, 8.483382], + [-13.217759, 8.482201], + [-13.218232, 8.481565], + [-13.217505, 8.480976], + [-13.217041, 8.481344], + [-13.216069, 8.481595], + [-13.215714, 8.481842], + [-13.214929, 8.481452], + [-13.214394, 8.479956], + [-13.213946, 8.480075], + [-13.212185, 8.481068], + [-13.212778, 8.483062], + [-13.212764, 8.48318], + [-13.212738, 8.483196], + [-13.212571, 8.48315], + [-13.212214, 8.483066], + [-13.211909, 8.483762], + [-13.211669, 8.484207], + [-13.211751, 8.484907], + [-13.212366, 8.48503], + [-13.212596, 8.484424], + [-13.214274, 8.485268], + [-13.214262, 8.485305], + [-13.213881, 8.486181], + [-13.214199, 8.486365], + [-13.21452, 8.486578], + [-13.214116, 8.488102], + [-13.21448, 8.488179], + [-13.214869, 8.488263], + [-13.215067, 8.488289], + [-13.215192, 8.487706], + [-13.216297, 8.4879], + [-13.216954, 8.488086], + [-13.217079, 8.487751], + [-13.217508, 8.487872], + [-13.218053, 8.488015], + [-13.218317, 8.487065], + [-13.219139, 8.487371], + [-13.219349, 8.486733], + [-13.219474, 8.486334], + [-13.219516, 8.486219], + [-13.219723, 8.485684], + [-13.219767, 8.485699], + [-13.219965, 8.48513], + [-13.221115, 8.485637], + [-13.221269, 8.485249], + [-13.221404, 8.484896] + ] + ], + "type": "Polygon" + }, + "id": 477, + "properties": { + "cc:admin:id": ["26"], + "cc:oBld:total": 1154, + "cc:pop:fifteen-to-twenty-four": 2492.1289853870685, + "cc:pop:grid3-total": 21442.975148403362, + "cc:pop:kontur-total": 14495.23354943845, + "cc:pop:men": 5430.350077137636, + "cc:pop:sixty-plus": 845.0364167971059, + "cc:pop:total": 10852.911327262904, + "cc:pop:under-five": 1250.6706125918977, + "cc:pop:women": 5422.561250125267, + "cc:pop:women-fiften-to-forty-nine": 2908.0635521177596, + "cc:pop:wp-total": 11109.61063477981, + "cc:pop:wp-total-UN": 12879.607280836019, + "cc:id": "477", + "cc:Name": "Quarry MCHP", + "cc:site": [-13.2141, 8.4803], + "user:parentName": "Freetown", + "user:code": "OU_278365", + "user:orgUnitId": "xXYv82KlBUh", + "user:level": "4", + "user:parentId": "C9uduqDZr9d" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.261761, 8.489056], + [-13.261667, 8.488623], + [-13.261527, 8.488053], + [-13.261432, 8.487674], + [-13.26115, 8.486642], + [-13.261006, 8.486199], + [-13.260969, 8.486075], + [-13.260908, 8.485729], + [-13.260878, 8.485569], + [-13.260877, 8.485463], + [-13.26071, 8.485389], + [-13.259814, 8.484623], + [-13.259769, 8.484672], + [-13.259768, 8.484672], + [-13.259489, 8.484403], + [-13.259246, 8.484153], + [-13.258663, 8.483164], + [-13.257843, 8.483052], + [-13.257504, 8.483052], + [-13.256896, 8.483106], + [-13.256542, 8.483136], + [-13.256503, 8.481769], + [-13.255623, 8.481098], + [-13.255134, 8.48068], + [-13.25462, 8.480246], + [-13.254672, 8.48018], + [-13.25535, 8.479182], + [-13.255507, 8.478925], + [-13.255601, 8.477922], + [-13.255467, 8.477854], + [-13.255327, 8.477416], + [-13.254783, 8.477328], + [-13.25454, 8.477063], + [-13.254208, 8.477057], + [-13.254026, 8.477144], + [-13.253773, 8.477704], + [-13.253338, 8.477853], + [-13.25312, 8.477948], + [-13.253119, 8.477948], + [-13.252915, 8.477446], + [-13.252914, 8.477025], + [-13.252903, 8.476762], + [-13.253092, 8.47649], + [-13.254471, 8.474808], + [-13.253815, 8.474497], + [-13.253569, 8.474386], + [-13.253432, 8.474337], + [-13.252957, 8.474163], + [-13.252653, 8.474072], + [-13.251827, 8.475035], + [-13.25154, 8.475288], + [-13.251519, 8.475268], + [-13.250908, 8.474546], + [-13.25083, 8.474212], + [-13.250491, 8.473989], + [-13.250544, 8.473166], + [-13.250998, 8.47238], + [-13.251258, 8.471531], + [-13.250719, 8.471374], + [-13.250085, 8.471991], + [-13.249592, 8.472535], + [-13.249443, 8.472975], + [-13.249098, 8.473832], + [-13.248598, 8.474305], + [-13.24877, 8.474779], + [-13.249554, 8.475676], + [-13.24972, 8.475873], + [-13.249666, 8.475926], + [-13.249084, 8.476517], + [-13.248437, 8.47716], + [-13.248304, 8.477288], + [-13.248248, 8.477241], + [-13.246922, 8.475849], + [-13.24683, 8.475911], + [-13.246087, 8.476279], + [-13.244727, 8.475677], + [-13.244596, 8.476162], + [-13.244463, 8.476586], + [-13.244321, 8.476899], + [-13.244161, 8.477332], + [-13.243957, 8.477808], + [-13.243519, 8.478023], + [-13.243393, 8.478059], + [-13.242938, 8.47797], + [-13.24222, 8.476927], + [-13.241959, 8.476906], + [-13.241698, 8.477378], + [-13.242146, 8.477573], + [-13.242007, 8.478011], + [-13.240874, 8.477606], + [-13.240675, 8.478123], + [-13.241299, 8.478361], + [-13.24077, 8.478817], + [-13.241758, 8.479174], + [-13.242389, 8.479396], + [-13.242951, 8.47958], + [-13.243404, 8.479122], + [-13.243441, 8.479155], + [-13.243475, 8.47922], + [-13.243516, 8.47948], + [-13.243357, 8.480679], + [-13.24396, 8.480729], + [-13.243791, 8.482155], + [-13.244331, 8.482203], + [-13.244198, 8.483208], + [-13.244, 8.484028], + [-13.244259, 8.484312], + [-13.244255, 8.484318], + [-13.24458, 8.484687], + [-13.244695, 8.484752], + [-13.244975, 8.484718], + [-13.245124, 8.484687], + [-13.246077, 8.484521], + [-13.246035, 8.485669], + [-13.248957, 8.485841], + [-13.249332, 8.48625], + [-13.249442, 8.487041], + [-13.24932, 8.488025], + [-13.24943, 8.488026], + [-13.250036, 8.488035], + [-13.251184, 8.488035], + [-13.251831, 8.488063], + [-13.251866, 8.489656], + [-13.255699, 8.4848], + [-13.26041, 8.489546], + [-13.261761, 8.489056] + ] + ], + "type": "Polygon" + }, + "id": 478, + "properties": { + "cc:admin:id": ["26"], + "cc:oBld:total": 3827, + "cc:pop:fifteen-to-twenty-four": 9082.347986884466, + "cc:pop:grid3-total": 44600.10628821511, + "cc:pop:kontur-total": 52351.64306643681, + "cc:pop:men": 19787.83858657681, + "cc:pop:sixty-plus": 3080.7995563338422, + "cc:pop:total": 39548.66200854059, + "cc:pop:under-five": 4568.344485381313, + "cc:pop:women": 19760.82342196377, + "cc:pop:women-fiften-to-forty-nine": 10596.27506699947, + "cc:pop:wp-total": 39434.82100805834, + "cc:pop:wp-total-UN": 45713.612837047214, + "cc:id": "478", + "cc:Name": "Rina Clinic", + "cc:site": [-13.25, 8.48], + "user:parentName": "Freetown", + "user:code": "OU_278313", + "user:orgUnitId": "u6ZGNI8yUmt", + "user:level": "4", + "user:parentId": "C9uduqDZr9d" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.66697, 8.773012], + [-12.666299, 8.7707], + [-12.6644, 8.7681], + [-12.6605, 8.7647], + [-12.652799, 8.7613], + [-12.6506, 8.7614], + [-12.644799, 8.7641], + [-12.641999, 8.7662], + [-12.636199, 8.7719], + [-12.6336, 8.773699], + [-12.631, 8.774499], + [-12.628799, 8.774499], + [-12.6266, 8.7741], + [-12.6218, 8.7719], + [-12.616818, 8.770655], + [-12.616093, 8.771059], + [-12.615401, 8.771304], + [-12.614615, 8.772265], + [-12.61454, 8.773885], + [-12.613885, 8.774651], + [-12.613716, 8.775126], + [-12.612059, 8.776049], + [-12.61199, 8.776344], + [-12.611658, 8.776569], + [-12.611645, 8.776893], + [-12.611363, 8.777316], + [-12.610837, 8.777524], + [-12.610509, 8.778255], + [-12.609899, 8.778703], + [-12.609581, 8.779669], + [-12.608474, 8.779955], + [-12.608156, 8.780597], + [-12.607178, 8.780413], + [-12.606489, 8.780503], + [-12.606415, 8.781039], + [-12.605358, 8.781609], + [-12.605476, 8.782167], + [-12.605323, 8.782536], + [-12.6046, 8.782831], + [-12.604562, 8.782863], + [-12.604363, 8.782899], + [-12.604175, 8.782643], + [-12.60375, 8.782802], + [-12.603749, 8.788749], + [-12.599997, 8.78875], + [-12.60039, 8.789016], + [-12.600867, 8.789582], + [-12.597917, 8.789583], + [-12.597082, 8.79125], + [-12.591424, 8.793765], + [-12.591351, 8.793832], + [-12.590939, 8.794858], + [-12.590603, 8.795034], + [-12.589855, 8.794935], + [-12.589726, 8.794869], + [-12.592082, 8.799583], + [-12.592083, 8.801249], + [-12.593461, 8.805386], + [-12.59293, 8.805463], + [-12.589708, 8.806415], + [-12.590416, 8.812082], + [-12.585417, 8.814583], + [-12.58795, 8.818383], + [-12.588786, 8.818441], + [-12.586101, 8.82068], + [-12.586127, 8.820813], + [-12.586676, 8.821442], + [-12.587377, 8.821814], + [-12.588005, 8.822566], + [-12.582083, 8.82125], + [-12.578749, 8.824582], + [-12.577083, 8.823749], + [-12.576551, 8.821626], + [-12.575514, 8.822096], + [-12.574318, 8.823143], + [-12.573597, 8.823909], + [-12.572956, 8.824296], + [-12.572523, 8.824341], + [-12.56986, 8.824028], + [-12.56785, 8.824028], + [-12.566788, 8.823857], + [-12.564627, 8.824635], + [-12.563305, 8.825564], + [-12.560691, 8.827184], + [-12.559696, 8.828582], + [-12.558056, 8.830363], + [-12.557542, 8.830855], + [-12.556174, 8.832474], + [-12.555463, 8.83283], + [-12.554115, 8.833881], + [-12.552608, 8.835936], + [-12.551007, 8.83702], + [-12.550371, 8.837651], + [-12.547916, 8.834583], + [-12.542083, 8.834583], + [-12.535417, 8.839582], + [-12.53375, 8.839583], + [-12.53375, 8.840417], + [-12.536677, 8.8492], + [-12.536734, 8.849207], + [-12.53875, 8.854582], + [-12.542082, 8.855416], + [-12.542917, 8.855417], + [-12.544582, 8.860416], + [-12.545228, 8.86074], + [-12.545221, 8.860748], + [-12.543955, 8.861394], + [-12.543471, 8.861954], + [-12.542681, 8.862396], + [-12.540463, 8.86286], + [-12.538271, 8.865123], + [-12.537313, 8.865528], + [-12.535447, 8.867837], + [-12.533777, 8.870721], + [-12.533128, 8.871123], + [-12.533023, 8.871555], + [-12.533165, 8.874171], + [-12.533348, 8.874579], + [-12.533262, 8.875547], + [-12.532672, 8.876731], + [-12.532282, 8.877002], + [-12.531923, 8.877621], + [-12.531902, 8.87769], + [-12.526732, 8.876542], + [-12.5279, 8.8781], + [-12.5318, 8.8843], + [-12.534, 8.8868], + [-12.538499, 8.891499], + [-12.542299, 8.894999], + [-12.544999, 8.896899], + [-12.548899, 8.898899], + [-12.551599, 8.900799], + [-12.556999, 8.905899], + [-12.560399, 8.907999], + [-12.5638, 8.908599], + [-12.567, 8.907999], + [-12.571249, 8.906268], + [-12.57125, 8.898932], + [-12.570707, 8.89871], + [-12.571249, 8.897083], + [-12.569149, 8.89218], + [-12.569668, 8.891087], + [-12.582916, 8.888749], + [-12.582917, 8.882083], + [-12.584582, 8.87875], + [-12.581786, 8.873155], + [-12.583229, 8.87254], + [-12.586518, 8.869615], + [-12.587706, 8.86861], + [-12.589125, 8.865877], + [-12.594121, 8.860752], + [-12.594382, 8.85988], + [-12.595728, 8.857904], + [-12.596455, 8.857147], + [-12.59701, 8.855881], + [-12.594939, 8.853947], + [-12.593891, 8.852734], + [-12.593575, 8.852102], + [-12.593393, 8.850352], + [-12.593084, 8.849338], + [-12.593165, 8.84721], + [-12.593822, 8.846058], + [-12.593939, 8.845673], + [-12.599582, 8.847082], + [-12.601483, 8.847082], + [-12.601484, 8.847076], + [-12.602285, 8.845148], + [-12.603605, 8.842722], + [-12.604512, 8.841608], + [-12.605105, 8.840045], + [-12.605163, 8.839886], + [-12.605189, 8.839706], + [-12.604978, 8.837983], + [-12.604859, 8.836728], + [-12.605004, 8.835491], + [-12.605138, 8.83399], + [-12.60699, 8.83201], + [-12.607178, 8.83156], + [-12.611249, 8.832916], + [-12.612083, 8.834582], + [-12.613857, 8.834139], + [-12.613636, 8.833039], + [-12.613592, 8.830435], + [-12.612705, 8.828805], + [-12.611838, 8.828204], + [-12.612244, 8.827033], + [-12.612097, 8.826769], + [-12.610126, 8.826001], + [-12.609561, 8.825868], + [-12.60956, 8.825867], + [-12.612083, 8.822083], + [-12.617916, 8.822916], + [-12.61875, 8.818749], + [-12.623749, 8.813749], + [-12.626249, 8.80875], + [-12.635811, 8.814633], + [-12.636052, 8.812743], + [-12.638155, 8.80921], + [-12.638744, 8.80744], + [-12.638698, 8.806814], + [-12.638579, 8.806398], + [-12.638078, 8.805759], + [-12.638369, 8.805254], + [-12.638038, 8.804679], + [-12.638098, 8.804363], + [-12.638247, 8.803791], + [-12.638143, 8.803416], + [-12.638152, 8.803346], + [-12.638358, 8.802589], + [-12.637431, 8.801297], + [-12.637811, 8.800445], + [-12.638432, 8.796908], + [-12.639644, 8.79542], + [-12.640487, 8.795065], + [-12.640952, 8.794643], + [-12.642917, 8.797916], + [-12.645416, 8.798749], + [-12.648749, 8.795417], + [-12.650197, 8.79831], + [-12.652201, 8.796669], + [-12.65436, 8.795953], + [-12.654421, 8.794789], + [-12.654827, 8.793702], + [-12.654688, 8.792729], + [-12.654611, 8.791825], + [-12.654758, 8.791429], + [-12.654977, 8.790915], + [-12.661233, 8.789208], + [-12.6622, 8.787499], + [-12.6655, 8.783399], + [-12.666999, 8.7801], + [-12.667399, 8.7774], + [-12.6672, 8.7738], + [-12.66697, 8.773012] + ] + ], + "type": "Polygon" + }, + "id": 479, + "properties": { + "cc:admin:id": ["130"], + "cc:oBld:total": 78, + "cc:pop:fifteen-to-twenty-four": 1853.0111144492803, + "cc:pop:grid3-total": 8113.152635133347, + "cc:pop:kontur-total": 8555.955705053002, + "cc:pop:men": 4600.231253853768, + "cc:pop:sixty-plus": 637.0514260660005, + "cc:pop:total": 9920.304873540907, + "cc:pop:under-five": 1546.6207956471019, + "cc:pop:women": 5320.073619687138, + "cc:pop:women-fiften-to-forty-nine": 2550.951960207023, + "cc:pop:wp-total": 9548.146292083129, + "cc:pop:wp-total-UN": 11074.303900475488, + "cc:id": "479", + "cc:Name": "Robaka MCHP", + "cc:site": [-12.5957, 8.8175], + "user:parentName": "Tainkatopa Makama Safrokoh ", + "user:code": "OU_255062", + "user:orgUnitId": "ym42ZOlfZ1P", + "user:level": "4", + "user:parentId": "PrJQHI6q7w2" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.138504, 8.801396], + [-12.135585, 8.801135], + [-12.134877, 8.801228], + [-12.134478, 8.801542], + [-12.134125, 8.796975], + [-12.132672, 8.797355], + [-12.13257, 8.797468], + [-12.131221, 8.795131], + [-12.13013, 8.79513], + [-12.126469, 8.79147], + [-12.126303, 8.791545], + [-12.124476, 8.790936], + [-12.124476, 8.790934], + [-12.124856, 8.790725], + [-12.125209, 8.790805], + [-12.125962, 8.790501], + [-12.126805, 8.790539], + [-12.127268, 8.790217], + [-12.128228, 8.790195], + [-12.128415, 8.789675], + [-12.12839, 8.788321], + [-12.128533, 8.788003], + [-12.130838, 8.787293], + [-12.131104, 8.786962], + [-12.131179, 8.786527], + [-12.131673, 8.786102], + [-12.128376, 8.780391], + [-12.120563, 8.78039], + [-12.116658, 8.773626], + [-12.118028, 8.77125], + [-12.113749, 8.771249], + [-12.109583, 8.767917], + [-12.108749, 8.765417], + [-12.106249, 8.764582], + [-12.102917, 8.760417], + [-12.102916, 8.762083], + [-12.100416, 8.763749], + [-12.092083, 8.755417], + [-12.092082, 8.753979], + [-12.091751, 8.754147], + [-12.089209, 8.755043], + [-12.088878, 8.756505], + [-12.087916, 8.754583], + [-12.085417, 8.757916], + [-12.084583, 8.757916], + [-12.077082, 8.749583], + [-12.075417, 8.749583], + [-12.072917, 8.752082], + [-12.072082, 8.755417], + [-12.065417, 8.758749], + [-12.064583, 8.760416], + [-12.063916, 8.760417], + [-12.064222, 8.761292], + [-12.063627, 8.762606], + [-12.063686, 8.763264], + [-12.063187, 8.76438], + [-12.063092, 8.76531], + [-12.062566, 8.765814], + [-12.062317, 8.765619], + [-12.062178, 8.7655], + [-12.062394, 8.765238], + [-12.062818, 8.763814], + [-12.062831, 8.763107], + [-12.062876, 8.762752], + [-12.062609, 8.762565], + [-12.061765, 8.762301], + [-12.061159, 8.762475], + [-12.060537, 8.762327], + [-12.05957, 8.761276], + [-12.059679, 8.761226], + [-12.060395, 8.760903], + [-12.059958, 8.760706], + [-12.059953, 8.760301], + [-12.059692, 8.759903], + [-12.059008, 8.759771], + [-12.057643, 8.759875], + [-12.056523, 8.759327], + [-12.054684, 8.759054], + [-12.05489, 8.759446], + [-12.054964, 8.760808], + [-12.054842, 8.762761], + [-12.054521, 8.763459], + [-12.054927, 8.764109], + [-12.054248, 8.76397], + [-12.054243, 8.763953], + [-12.054183, 8.763955], + [-12.053349, 8.763784], + [-12.053326, 8.763823], + [-12.052774, 8.763665], + [-12.05249, 8.764194], + [-12.05185, 8.764246], + [-12.050761, 8.763764], + [-12.048917, 8.763631], + [-12.048307, 8.763357], + [-12.047423, 8.762413], + [-12.046016, 8.763656], + [-12.045035, 8.764679], + [-12.044662, 8.765702], + [-12.044481, 8.766645], + [-12.044261, 8.768124], + [-12.044265, 8.768474], + [-12.04471, 8.770075], + [-12.043755, 8.770423], + [-12.043746, 8.770421], + [-12.042916, 8.77125], + [-12.037803, 8.772528], + [-12.03777, 8.772524], + [-12.037077, 8.772004], + [-12.035802, 8.771761], + [-12.034583, 8.775416], + [-12.035205, 8.775831], + [-12.035341, 8.775865], + [-12.03585, 8.775713], + [-12.037571, 8.775846], + [-12.037084, 8.776255], + [-12.03684, 8.776854], + [-12.036924, 8.777179], + [-12.036538, 8.777609], + [-12.036513, 8.777928], + [-12.037015, 8.779075], + [-12.037353, 8.779114], + [-12.037707, 8.779888], + [-12.037716, 8.780369], + [-12.036784, 8.780444], + [-12.036858, 8.781419], + [-12.037625, 8.782135], + [-12.038424, 8.782576], + [-12.038758, 8.784006], + [-12.039386, 8.784272], + [-12.040576, 8.784467], + [-12.041443, 8.784204], + [-12.04326, 8.780458], + [-12.045016, 8.780797], + [-12.045683, 8.781107], + [-12.04582, 8.781577], + [-12.046053, 8.781887], + [-12.046956, 8.782514], + [-12.047188, 8.782423], + [-12.047744, 8.781367], + [-12.047997, 8.781376], + [-12.047998, 8.781378], + [-12.047425, 8.782726], + [-12.046031, 8.78253], + [-12.045661, 8.78407], + [-12.045104, 8.785053], + [-12.044832, 8.785062], + [-12.049581, 8.78625], + [-12.045417, 8.790416], + [-12.04375, 8.790417], + [-12.042083, 8.792083], + [-12.042083, 8.798749], + [-12.042917, 8.798749], + [-12.047083, 8.794583], + [-12.050416, 8.794583], + [-12.050416, 8.797082], + [-12.047917, 8.799583], + [-12.04875, 8.801249], + [-12.051249, 8.80125], + [-12.054582, 8.802916], + [-12.052083, 8.807082], + [-12.056249, 8.80625], + [-12.056982, 8.806249], + [-12.056893, 8.80588], + [-12.062082, 8.804582], + [-12.062917, 8.802917], + [-12.071249, 8.804582], + [-12.072082, 8.807083], + [-12.07168, 8.808692], + [-12.071678, 8.808692], + [-12.071651, 8.808578], + [-12.071602, 8.808528], + [-12.070417, 8.812082], + [-12.075214, 8.813453], + [-12.075721, 8.8131], + [-12.076676, 8.812211], + [-12.077742, 8.811844], + [-12.077742, 8.811078], + [-12.077888, 8.810724], + [-12.07778, 8.81007], + [-12.078104, 8.810051], + [-12.07831, 8.810529], + [-12.078668, 8.810366], + [-12.078893, 8.810511], + [-12.079157, 8.810424], + [-12.079182, 8.810955], + [-12.079546, 8.811216], + [-12.080036, 8.811319], + [-12.080923, 8.81224], + [-12.082917, 8.809583], + [-12.088634, 8.809582], + [-12.089573, 8.808996], + [-12.089813, 8.808291], + [-12.090373, 8.808245], + [-12.090434, 8.808198], + [-12.093749, 8.808749], + [-12.095417, 8.807917], + [-12.100416, 8.810417], + [-12.102275, 8.812895], + [-12.102236, 8.81251], + [-12.102575, 8.812354], + [-12.102258, 8.812107], + [-12.102268, 8.812083], + [-12.102917, 8.812082], + [-12.107082, 8.809583], + [-12.107917, 8.816249], + [-12.112083, 8.814583], + [-12.114583, 8.820416], + [-12.115821, 8.820003], + [-12.115806, 8.819805], + [-12.11625, 8.819582], + [-12.125076, 8.818847], + [-12.128599, 8.8151], + [-12.130599, 8.8124], + [-12.132499, 8.8085], + [-12.133799, 8.8065], + [-12.138504, 8.801396] + ] + ], + "type": "Polygon" + }, + "id": 480, + "properties": { + "cc:admin:id": ["8"], + "cc:oBld:total": 509, + "cc:pop:fifteen-to-twenty-four": 734.4473881319799, + "cc:pop:grid3-total": 4374.98853407482, + "cc:pop:kontur-total": 4132.325606044109, + "cc:pop:men": 1939.7767371127875, + "cc:pop:sixty-plus": 238.04838471080254, + "cc:pop:total": 4087.1249627146944, + "cc:pop:under-five": 668.1761804351105, + "cc:pop:women": 2147.348225601908, + "cc:pop:women-fiften-to-forty-nine": 1021.2673721943905, + "cc:pop:wp-total": 2265.6957389685613, + "cc:pop:wp-total-UN": 2608.1831728506204, + "cc:id": "480", + "cc:Name": "Robat MCHP", + "cc:site": [-12.0607, 8.7916], + "user:parentName": "Bombali Sebora", + "user:code": "OU_193207", + "user:orgUnitId": "gP6hn503KUX", + "user:level": "4", + "user:parentId": "KKkLOTpMXGV" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.378754, 8.659586], + [-12.378799, 8.659399], + [-12.378699, 8.655099], + [-12.377999, 8.6523], + [-12.376399, 8.649799], + [-12.374299, 8.647799], + [-12.367899, 8.644099], + [-12.361499, 8.639799], + [-12.3473, 8.6358], + [-12.343, 8.6354], + [-12.337299, 8.6359], + [-12.330399, 8.637499], + [-12.3264, 8.6371], + [-12.3235, 8.6353], + [-12.322807, 8.634384], + [-12.31919, 8.640647], + [-12.313205, 8.640648], + [-12.317083, 8.643749], + [-12.322801, 8.64375], + [-12.320674, 8.647435], + [-12.32458, 8.654201], + [-12.323809, 8.655535], + [-12.322917, 8.65625], + [-12.322083, 8.662916], + [-12.32125, 8.665416], + [-12.32125, 8.666249], + [-12.323749, 8.667916], + [-12.324527, 8.669858], + [-12.324945, 8.669305], + [-12.325025, 8.669029], + [-12.324675, 8.668913], + [-12.325076, 8.668263], + [-12.324877, 8.668024], + [-12.325233, 8.667266], + [-12.325528, 8.666994], + [-12.325814, 8.667315], + [-12.325848, 8.667735], + [-12.326145, 8.667875], + [-12.326561, 8.668405], + [-12.326519, 8.668921], + [-12.326487, 8.668937], + [-12.326734, 8.669231], + [-12.326832, 8.669297], + [-12.326692, 8.669532], + [-12.326589, 8.669814], + [-12.3264, 8.67035], + [-12.326146, 8.670562], + [-12.326074, 8.670741], + [-12.325749, 8.670966], + [-12.326521, 8.671504], + [-12.326227, 8.671949], + [-12.326675, 8.671987], + [-12.326728, 8.672282], + [-12.325944, 8.672375], + [-12.325861, 8.672527], + [-12.329583, 8.676249], + [-12.337984, 8.677778], + [-12.337851, 8.678791], + [-12.33861, 8.679261], + [-12.339229, 8.680446], + [-12.339554, 8.681583], + [-12.339583, 8.68163], + [-12.339583, 8.687916], + [-12.342083, 8.68875], + [-12.345029, 8.696114], + [-12.3463, 8.695299], + [-12.351599, 8.6929], + [-12.355399, 8.6918], + [-12.365699, 8.691], + [-12.369899, 8.6903], + [-12.373099, 8.688199], + [-12.375199, 8.684899], + [-12.375899, 8.6821], + [-12.376599, 8.6683], + [-12.378754, 8.659586] + ] + ], + "type": "Polygon" + }, + "id": 481, + "properties": { + "cc:admin:id": ["85"], + "cc:oBld:total": 9, + "cc:pop:fifteen-to-twenty-four": 213.79214290490586, + "cc:pop:grid3-total": 692.4419272751511, + "cc:pop:kontur-total": 1277.7873479642494, + "cc:pop:men": 525.0468685507992, + "cc:pop:sixty-plus": 71.9339065096437, + "cc:pop:total": 1129.8752792105577, + "cc:pop:under-five": 183.8204956258534, + "cc:pop:women": 604.8284106597586, + "cc:pop:women-fiften-to-forty-nine": 298.707084742063, + "cc:pop:wp-total": 908.5676823029328, + "cc:pop:wp-total-UN": 1050.2890722469792, + "cc:id": "481", + "cc:Name": "Robina MCHP", + "cc:site": [-12.3586, 8.6429], + "user:parentName": "Malal Mara", + "user:code": "OU_268187", + "user:orgUnitId": "fHqBRE3LTiQ", + "user:level": "4", + "user:parentId": "EVkm2xYcf6Z" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.262917, 8.355416], + [-12.262916, 8.352395], + [-12.260599, 8.352499], + [-12.254699, 8.352199], + [-12.2504, 8.3516], + [-12.2467, 8.3502], + [-12.241399, 8.347499], + [-12.232099, 8.341299], + [-12.2257, 8.3379], + [-12.219199, 8.334999], + [-12.215099, 8.333999], + [-12.204599, 8.333099], + [-12.200299, 8.332199], + [-12.194499, 8.3299], + [-12.176499, 8.329899], + [-12.1692, 8.3293], + [-12.165099, 8.327999], + [-12.1578, 8.3238], + [-12.1514, 8.3213], + [-12.148999, 8.319699], + [-12.145799, 8.316799], + [-12.144099, 8.314499], + [-12.140699, 8.309299], + [-12.135599, 8.302599], + [-12.1322, 8.2973], + [-12.1294, 8.2941], + [-12.1262, 8.2914], + [-12.1225, 8.2896], + [-12.122142, 8.289524], + [-12.114583, 8.297084], + [-12.114582, 8.299583], + [-12.10875, 8.299584], + [-12.111249, 8.302084], + [-12.11125, 8.305416], + [-12.113749, 8.309583], + [-12.107917, 8.312917], + [-12.107917, 8.316707], + [-12.10831, 8.316838], + [-12.108595, 8.317734], + [-12.109479, 8.318666], + [-12.110675, 8.320395], + [-12.110693, 8.320443], + [-12.110881, 8.320746], + [-12.111371, 8.321128], + [-12.107083, 8.325417], + [-12.109583, 8.327916], + [-12.111249, 8.327917], + [-12.111249, 8.329583], + [-12.110416, 8.330417], + [-12.107083, 8.33125], + [-12.10625, 8.335416], + [-12.105218, 8.336447], + [-12.107965, 8.337938], + [-12.110409, 8.338938], + [-12.111801, 8.339064], + [-12.113675, 8.339656], + [-12.112916, 8.340417], + [-12.107083, 8.34375], + [-12.107917, 8.346249], + [-12.109582, 8.34625], + [-12.110417, 8.349583], + [-12.113749, 8.352916], + [-12.112917, 8.35375], + [-12.11375, 8.355416], + [-12.114582, 8.35625], + [-12.114583, 8.358749], + [-12.112083, 8.36125], + [-12.111249, 8.365416], + [-12.102917, 8.365417], + [-12.105417, 8.371249], + [-12.110416, 8.372084], + [-12.110417, 8.373749], + [-12.112916, 8.374584], + [-12.117081, 8.377916], + [-12.117081, 8.377917], + [-12.112083, 8.379584], + [-12.112083, 8.380416], + [-12.117082, 8.382916], + [-12.117916, 8.384583], + [-12.117082, 8.38625], + [-12.11625, 8.390416], + [-12.120929, 8.392422], + [-12.121426, 8.391354], + [-12.12226, 8.390594], + [-12.123749, 8.392084], + [-12.12375, 8.398749], + [-12.126249, 8.400417], + [-12.12625, 8.407083], + [-12.130416, 8.408749], + [-12.131249, 8.409583], + [-12.132083, 8.414583], + [-12.136249, 8.419584], + [-12.136249, 8.422084], + [-12.132981, 8.42617], + [-12.134467, 8.428742], + [-12.142278, 8.428743], + [-12.146132, 8.435416], + [-12.147916, 8.435417], + [-12.15125, 8.437083], + [-12.154583, 8.43625], + [-12.158749, 8.437083], + [-12.16125, 8.441249], + [-12.16625, 8.43875], + [-12.168749, 8.438749], + [-12.169583, 8.437084], + [-12.177916, 8.437083], + [-12.17988, 8.434465], + [-12.180216, 8.434706], + [-12.180191, 8.435236], + [-12.185416, 8.434583], + [-12.187082, 8.43375], + [-12.187082, 8.431249], + [-12.18644, 8.427392], + [-12.186441, 8.427391], + [-12.191205, 8.428662], + [-12.194132, 8.429961], + [-12.196419, 8.43024], + [-12.196519, 8.429776], + [-12.197944, 8.427104], + [-12.204582, 8.432083], + [-12.204583, 8.424584], + [-12.205417, 8.423749], + [-12.208749, 8.422083], + [-12.207278, 8.41865], + [-12.20728, 8.418649], + [-12.207896, 8.419163], + [-12.208001, 8.419283], + [-12.209582, 8.41375], + [-12.212916, 8.412916], + [-12.215107, 8.406345], + [-12.219207, 8.403966], + [-12.223432, 8.401649], + [-12.222917, 8.399583], + [-12.226249, 8.39625], + [-12.227916, 8.396249], + [-12.225417, 8.392917], + [-12.225416, 8.390417], + [-12.222917, 8.38625], + [-12.225416, 8.382917], + [-12.227916, 8.382083], + [-12.23125, 8.37875], + [-12.237242, 8.37875], + [-12.238619, 8.381133], + [-12.242799, 8.381134], + [-12.243749, 8.382083], + [-12.245416, 8.377084], + [-12.245682, 8.376862], + [-12.245501, 8.376748], + [-12.245179, 8.376795], + [-12.244788, 8.376589], + [-12.244306, 8.375867], + [-12.244519, 8.375515], + [-12.244616, 8.375357], + [-12.244306, 8.374847], + [-12.244889, 8.374417], + [-12.244938, 8.374211], + [-12.244107, 8.373351], + [-12.243623, 8.372364], + [-12.242696, 8.371738], + [-12.243092, 8.370905], + [-12.243382, 8.370486], + [-12.243226, 8.370366], + [-12.242081, 8.368382], + [-12.244845, 8.363594], + [-12.246249, 8.363749], + [-12.247917, 8.355416], + [-12.249583, 8.35375], + [-12.251249, 8.35375], + [-12.262917, 8.355416] + ] + ], + "type": "Polygon" + }, + "id": 482, + "properties": { + "cc:admin:id": ["149"], + "cc:oBld:total": 32, + "cc:pop:fifteen-to-twenty-four": 2234.8107903858263, + "cc:pop:grid3-total": 11619.788041903308, + "cc:pop:kontur-total": 11965.46221307029, + "cc:pop:men": 5560.688254314664, + "cc:pop:sixty-plus": 760.8370629715903, + "cc:pop:total": 11998.596355390664, + "cc:pop:under-five": 1927.5135666635947, + "cc:pop:women": 6437.908101075998, + "cc:pop:women-fiften-to-forty-nine": 3168.2108580040094, + "cc:pop:wp-total": 13010.304929389145, + "cc:pop:wp-total-UN": 15099.185826789195, + "cc:id": "482", + "cc:Name": "Rochem Kamandao CHP", + "cc:site": [-12.1813, 8.3968], + "user:parentName": "Yoni", + "user:code": "OU_268240", + "user:orgUnitId": "PHo0IV7Vk50", + "user:level": "4", + "user:parentId": "NNE0YMCDZkO" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.345028, 8.696114], + [-12.342082, 8.68875], + [-12.339583, 8.687916], + [-12.339582, 8.681631], + [-12.339554, 8.681583], + [-12.339229, 8.680446], + [-12.33861, 8.679261], + [-12.337851, 8.678791], + [-12.337984, 8.677778], + [-12.329582, 8.676249], + [-12.325861, 8.672528], + [-12.325944, 8.672374], + [-12.326728, 8.672282], + [-12.326675, 8.671987], + [-12.326227, 8.671949], + [-12.326521, 8.671505], + [-12.325749, 8.670966], + [-12.326074, 8.67074], + [-12.326146, 8.670561], + [-12.326399, 8.67035], + [-12.326589, 8.669814], + [-12.326692, 8.669532], + [-12.326832, 8.669297], + [-12.326734, 8.669231], + [-12.326487, 8.668937], + [-12.326519, 8.668921], + [-12.326561, 8.668406], + [-12.326145, 8.667875], + [-12.325848, 8.667735], + [-12.325814, 8.667315], + [-12.325528, 8.666994], + [-12.325233, 8.667266], + [-12.324877, 8.668024], + [-12.325076, 8.668263], + [-12.324675, 8.668913], + [-12.325025, 8.669029], + [-12.324945, 8.669305], + [-12.324526, 8.669857], + [-12.323749, 8.667917], + [-12.32125, 8.666249], + [-12.32125, 8.665416], + [-12.322083, 8.662916], + [-12.322916, 8.65625], + [-12.323809, 8.655534], + [-12.32458, 8.6542], + [-12.320674, 8.647435], + [-12.322801, 8.64375], + [-12.317083, 8.643749], + [-12.313207, 8.640648], + [-12.319189, 8.640647], + [-12.322806, 8.634384], + [-12.3207, 8.631599], + [-12.3201, 8.6288], + [-12.320637, 8.624012], + [-12.315417, 8.626249], + [-12.312917, 8.627917], + [-12.311251, 8.632911], + [-12.31125, 8.63291], + [-12.311249, 8.63125], + [-12.308749, 8.62875], + [-12.302917, 8.627917], + [-12.301249, 8.629584], + [-12.29375, 8.632083], + [-12.29125, 8.632083], + [-12.290417, 8.627916], + [-12.29125, 8.626249], + [-12.298749, 8.619583], + [-12.297917, 8.617917], + [-12.29375, 8.61625], + [-12.290748, 8.61565], + [-12.290791, 8.615417], + [-12.287082, 8.615416], + [-12.284582, 8.612084], + [-12.282083, 8.611249], + [-12.282082, 8.606271], + [-12.279334, 8.60659], + [-12.278775, 8.606532], + [-12.277719, 8.605269], + [-12.275922, 8.60473], + [-12.275327, 8.604275], + [-12.273835, 8.600752], + [-12.273278, 8.599587], + [-12.273265, 8.599109], + [-12.265417, 8.60125], + [-12.266068, 8.609081], + [-12.26132, 8.609081], + [-12.257413, 8.602316], + [-12.253808, 8.602316], + [-12.253699, 8.6029], + [-12.2533, 8.607699], + [-12.2524, 8.610599], + [-12.249799, 8.613499], + [-12.247499, 8.6145], + [-12.242499, 8.6157], + [-12.238, 8.617799], + [-12.234299, 8.618499], + [-12.2307, 8.618399], + [-12.228099, 8.616799], + [-12.2271, 8.613999], + [-12.227, 8.6076], + [-12.226399, 8.6044], + [-12.224799, 8.6019], + [-12.222299, 8.6002], + [-12.218999, 8.5996], + [-12.215099, 8.5998], + [-12.2123, 8.600499], + [-12.2078, 8.602599], + [-12.2051, 8.603299], + [-12.2011, 8.603399], + [-12.197399, 8.602599], + [-12.192899, 8.600499], + [-12.1877, 8.5996], + [-12.1852, 8.5998], + [-12.183, 8.6009], + [-12.181599, 8.6027], + [-12.179399, 8.6068], + [-12.177599, 8.613799], + [-12.175499, 8.616599], + [-12.172399, 8.618099], + [-12.1648, 8.619099], + [-12.162199, 8.6201], + [-12.159899, 8.6218], + [-12.155799, 8.6259], + [-12.1529, 8.629799], + [-12.1518, 8.632399], + [-12.1505, 8.637999], + [-12.154599, 8.642899], + [-12.157099, 8.646699], + [-12.160899, 8.655299], + [-12.164799, 8.662699], + [-12.17, 8.6698], + [-12.1764, 8.6802], + [-12.180099, 8.688799], + [-12.1827, 8.6942], + [-12.189499, 8.712199], + [-12.1901, 8.716699], + [-12.202899, 8.717099], + [-12.210399, 8.7167], + [-12.2147, 8.715699], + [-12.2277, 8.7104], + [-12.232199, 8.7108], + [-12.234699, 8.7126], + [-12.2362, 8.7155], + [-12.2374, 8.7204], + [-12.2379, 8.729999], + [-12.239099, 8.732899], + [-12.2422, 8.734799], + [-12.245699, 8.734299], + [-12.248999, 8.731899], + [-12.252599, 8.7245], + [-12.2563, 8.7173], + [-12.259299, 8.7147], + [-12.2627, 8.7144], + [-12.2648, 8.7155], + [-12.266599, 8.718799], + [-12.266799, 8.7232], + [-12.264699, 8.727399], + [-12.2602, 8.7319], + [-12.2566, 8.739399], + [-12.2598, 8.741799], + [-12.264199, 8.741499], + [-12.2678, 8.7394], + [-12.272099, 8.7401], + [-12.275499, 8.741899], + [-12.2775, 8.7452], + [-12.2798, 8.7525], + [-12.282, 8.755899], + [-12.2846, 8.757399], + [-12.288, 8.757899], + [-12.293599, 8.7565], + [-12.296699, 8.7547], + [-12.299, 8.751999], + [-12.302999, 8.7447], + [-12.309799, 8.7298], + [-12.310899, 8.7256], + [-12.310999, 8.722699], + [-12.3094, 8.7159], + [-12.3088, 8.712299], + [-12.3093, 8.7092], + [-12.311299, 8.7068], + [-12.315999, 8.7059], + [-12.319699, 8.7067], + [-12.3231, 8.7089], + [-12.3279, 8.713099], + [-12.332099, 8.7101], + [-12.334699, 8.7077], + [-12.339999, 8.6998], + [-12.3424, 8.697799], + [-12.345028, 8.696114] + ] + ], + "type": "Polygon" + }, + "id": 483, + "properties": { + "cc:admin:id": ["85"], + "cc:oBld:total": 446, + "cc:pop:fifteen-to-twenty-four": 3618.1335411236164, + "cc:pop:grid3-total": 22374.71630935664, + "cc:pop:kontur-total": 18862.78483105288, + "cc:pop:men": 8896.575737408188, + "cc:pop:sixty-plus": 1214.800664494208, + "cc:pop:total": 19197.667687126188, + "cc:pop:under-five": 3092.900070735711, + "cc:pop:women": 10301.091949717991, + "cc:pop:women-fiften-to-forty-nine": 5070.18464558723, + "cc:pop:wp-total": 16530.90360997284, + "cc:pop:wp-total-UN": 19155.367099205298, + "cc:id": "483", + "cc:Name": "Rochen Malal MCHP", + "cc:site": [-12.2855, 8.6612], + "user:parentName": "Malal Mara", + "user:code": "OU_268190", + "user:orgUnitId": "X9zzzyPZViR", + "user:level": "4", + "user:parentId": "EVkm2xYcf6Z" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.83909, 8.370601], + [-12.839489, 8.368799], + [-12.839404, 8.366185], + [-12.838357, 8.362869], + [-12.836816, 8.361057], + [-12.836699, 8.358738], + [-12.836128, 8.358058], + [-12.832289, 8.35744], + [-12.830091, 8.357378], + [-12.828512, 8.356836], + [-12.827584, 8.357193], + [-12.82709, 8.356393], + [-12.826199, 8.3571], + [-12.8174, 8.3606], + [-12.8152, 8.3634], + [-12.8147, 8.3672], + [-12.8153, 8.3725], + [-12.817099, 8.378], + [-12.816699, 8.381999], + [-12.814099, 8.3859], + [-12.8092, 8.388499], + [-12.8037, 8.388299], + [-12.791799, 8.382899], + [-12.781699, 8.379499], + [-12.7777, 8.3786], + [-12.774751, 8.378152], + [-12.776253, 8.379283], + [-12.777335, 8.379378], + [-12.779052, 8.379252], + [-12.780134, 8.379601], + [-12.780484, 8.380937], + [-12.780517, 8.381015], + [-12.772083, 8.387916], + [-12.774551, 8.389816], + [-12.7718, 8.394583], + [-12.775386, 8.400796], + [-12.765417, 8.40125], + [-12.770073, 8.410563], + [-12.769058, 8.410406], + [-12.767192, 8.410829], + [-12.764049, 8.410829], + [-12.760143, 8.417594], + [-12.760826, 8.41878], + [-12.757082, 8.417917], + [-12.756249, 8.41875], + [-12.755416, 8.424583], + [-12.749583, 8.428749], + [-12.75375, 8.430417], + [-12.763749, 8.436249], + [-12.76125, 8.441249], + [-12.768196, 8.44125], + [-12.768619, 8.441982], + [-12.764713, 8.448749], + [-12.767866, 8.454209], + [-12.770416, 8.45625], + [-12.769582, 8.457917], + [-12.767083, 8.46125], + [-12.766874, 8.462504], + [-12.772635, 8.462505], + [-12.774799, 8.466249], + [-12.782893, 8.466249], + [-12.782956, 8.465717], + [-12.785416, 8.463749], + [-12.784583, 8.45375], + [-12.789582, 8.45125], + [-12.79375, 8.453749], + [-12.802082, 8.455417], + [-12.802917, 8.462916], + [-12.808749, 8.462083], + [-12.812082, 8.457083], + [-12.812083, 8.455417], + [-12.816249, 8.454583], + [-12.816249, 8.452916], + [-12.815417, 8.44875], + [-12.816249, 8.44625], + [-12.822082, 8.447916], + [-12.82125, 8.43875], + [-12.823749, 8.436249], + [-12.82375, 8.434583], + [-12.825416, 8.433749], + [-12.825416, 8.430417], + [-12.823749, 8.429583], + [-12.822082, 8.422917], + [-12.820956, 8.421226], + [-12.82088, 8.421252], + [-12.817916, 8.414584], + [-12.814583, 8.412917], + [-12.812493, 8.414484], + [-12.812492, 8.414483], + [-12.812026, 8.413521], + [-12.811839, 8.412888], + [-12.812208, 8.410792], + [-12.81212, 8.40919], + [-12.812109, 8.409154], + [-12.81162, 8.407849], + [-12.81174, 8.406408], + [-12.812348, 8.404868], + [-12.814816, 8.400821], + [-12.816446, 8.400771], + [-12.817134, 8.401253], + [-12.818457, 8.401381], + [-12.819348, 8.400668], + [-12.818991, 8.39965], + [-12.816604, 8.397536], + [-12.816498, 8.397181], + [-12.817745, 8.396391], + [-12.819323, 8.395017], + [-12.820189, 8.394635], + [-12.822473, 8.395241], + [-12.822508, 8.395249], + [-12.822709, 8.394164], + [-12.828378, 8.395926], + [-12.829363, 8.395926], + [-12.829872, 8.395289], + [-12.829522, 8.394048], + [-12.828378, 8.392554], + [-12.827358, 8.391566], + [-12.826849, 8.390611], + [-12.826436, 8.38918], + [-12.826085, 8.387461], + [-12.826054, 8.38568], + [-12.826626, 8.380652], + [-12.826149, 8.379378], + [-12.824303, 8.37696], + [-12.824113, 8.375783], + [-12.824368, 8.374478], + [-12.825291, 8.373778], + [-12.826594, 8.373619], + [-12.828313, 8.373174], + [-12.829777, 8.372951], + [-12.831559, 8.372919], + [-12.832959, 8.372919], + [-12.83436, 8.373333], + [-12.835856, 8.373396], + [-12.837001, 8.373045], + [-12.838337, 8.372696], + [-12.838749, 8.372451], + [-12.83875, 8.370685], + [-12.83909, 8.370601] + ] + ], + "type": "Polygon" + }, + "id": 484, + "properties": { + "cc:admin:id": ["62"], + "cc:oBld:total": 180, + "cc:pop:fifteen-to-twenty-four": 400.6189218034176, + "cc:pop:grid3-total": 1590.786082087077, + "cc:pop:kontur-total": 2594.187863649278, + "cc:pop:men": 1051.0882152971672, + "cc:pop:sixty-plus": 136.98182227641425, + "cc:pop:total": 2247.593094934392, + "cc:pop:under-five": 373.5988491557321, + "cc:pop:women": 1196.5048796372246, + "cc:pop:women-fiften-to-forty-nine": 604.2593165483975, + "cc:pop:wp-total": 1890.5586275037122, + "cc:pop:wp-total-UN": 2192.352973847482, + "cc:id": "484", + "cc:Name": "Rofoindu CHP", + "cc:site": [-12.7852, 8.4431], + "user:parentName": "Koya", + "user:code": "OU_254970", + "user:orgUnitId": "jSPLEMDwXN4", + "user:level": "4", + "user:parentId": "pRHGAROvuyI" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.668099, 8.8603], + [-12.665399, 8.858299], + [-12.659999, 8.855399], + [-12.657099, 8.853099], + [-12.6544, 8.85], + [-12.65, 8.8418], + [-12.648999, 8.836999], + [-12.6489, 8.8333], + [-12.649199, 8.8297], + [-12.649999, 8.8263], + [-12.651999, 8.8227], + [-12.6533, 8.819599], + [-12.655699, 8.8153], + [-12.6571, 8.812099], + [-12.659499, 8.8079], + [-12.6608, 8.804699], + [-12.662499, 8.801199], + [-12.662799, 8.798], + [-12.6609, 8.793099], + [-12.6609, 8.7898], + [-12.661233, 8.789209], + [-12.654978, 8.790915], + [-12.654758, 8.791429], + [-12.654611, 8.791825], + [-12.654688, 8.792729], + [-12.654827, 8.793702], + [-12.654421, 8.794789], + [-12.65436, 8.795953], + [-12.652201, 8.796669], + [-12.650197, 8.79831], + [-12.648749, 8.795417], + [-12.645416, 8.798749], + [-12.642917, 8.797916], + [-12.640951, 8.794643], + [-12.640487, 8.795065], + [-12.639644, 8.79542], + [-12.638432, 8.796909], + [-12.637811, 8.800445], + [-12.637431, 8.801297], + [-12.638358, 8.802588], + [-12.638152, 8.803346], + [-12.638143, 8.803416], + [-12.638247, 8.803791], + [-12.638098, 8.804363], + [-12.638038, 8.804679], + [-12.638369, 8.805255], + [-12.638079, 8.805758], + [-12.638579, 8.806398], + [-12.638698, 8.806814], + [-12.638744, 8.80744], + [-12.638155, 8.80921], + [-12.636052, 8.812743], + [-12.635811, 8.814632], + [-12.62625, 8.80875], + [-12.623749, 8.813749], + [-12.61875, 8.81875], + [-12.617916, 8.822916], + [-12.612083, 8.822083], + [-12.60956, 8.825867], + [-12.610126, 8.826001], + [-12.612097, 8.826769], + [-12.612244, 8.827033], + [-12.611838, 8.828204], + [-12.612705, 8.828805], + [-12.613592, 8.830435], + [-12.613636, 8.833039], + [-12.613857, 8.83414], + [-12.612083, 8.834582], + [-12.611249, 8.832917], + [-12.607178, 8.83156], + [-12.60699, 8.83201], + [-12.605138, 8.83399], + [-12.605004, 8.835491], + [-12.604859, 8.836728], + [-12.604978, 8.837983], + [-12.605189, 8.839706], + [-12.605163, 8.839886], + [-12.605104, 8.840046], + [-12.604512, 8.841608], + [-12.603605, 8.842722], + [-12.602285, 8.845148], + [-12.601484, 8.847076], + [-12.601484, 8.847082], + [-12.599582, 8.847082], + [-12.59394, 8.845673], + [-12.593822, 8.846058], + [-12.593165, 8.84721], + [-12.593084, 8.849338], + [-12.593393, 8.850352], + [-12.593575, 8.852102], + [-12.593891, 8.852734], + [-12.594939, 8.853947], + [-12.59701, 8.855881], + [-12.596455, 8.857147], + [-12.595728, 8.857904], + [-12.594382, 8.85988], + [-12.594121, 8.860752], + [-12.589125, 8.865877], + [-12.587706, 8.86861], + [-12.586518, 8.869615], + [-12.583229, 8.87254], + [-12.581786, 8.873156], + [-12.584582, 8.878749], + [-12.582917, 8.882083], + [-12.582916, 8.888749], + [-12.569668, 8.891087], + [-12.569149, 8.89218], + [-12.571249, 8.897082], + [-12.570707, 8.89871], + [-12.57125, 8.898932], + [-12.57125, 8.906268], + [-12.5724, 8.905799], + [-12.576199, 8.9051], + [-12.582099, 8.9048], + [-12.585699, 8.9041], + [-12.5912, 8.901999], + [-12.595, 8.901399], + [-12.6022, 8.900899], + [-12.606, 8.899699], + [-12.612299, 8.8954], + [-12.6118, 8.8923], + [-12.611, 8.8897], + [-12.6088, 8.885199], + [-12.6082, 8.8804], + [-12.6089, 8.876699], + [-12.6105, 8.875], + [-12.613699, 8.8733], + [-12.615799, 8.8729], + [-12.617899, 8.873399], + [-12.622999, 8.875799], + [-12.6269, 8.877999], + [-12.630399, 8.878599], + [-12.634299, 8.878099], + [-12.6394, 8.8758], + [-12.642899, 8.8756], + [-12.6455, 8.8761], + [-12.6493, 8.877899], + [-12.652199, 8.878099], + [-12.6554, 8.876799], + [-12.658699, 8.8738], + [-12.661199, 8.8711], + [-12.663399, 8.8682], + [-12.666099, 8.8629], + [-12.668099, 8.8603] + ] + ], + "type": "Polygon" + }, + "id": 485, + "properties": { + "cc:admin:id": ["130"], + "cc:oBld:total": 44, + "cc:pop:fifteen-to-twenty-four": 1648.611071301871, + "cc:pop:grid3-total": 6431.76596026022, + "cc:pop:kontur-total": 10121.922299023428, + "cc:pop:men": 4078.802110729135, + "cc:pop:sixty-plus": 564.6802418176788, + "cc:pop:total": 8783.368890552993, + "cc:pop:under-five": 1380.8754621652286, + "cc:pop:women": 4704.566779823855, + "cc:pop:women-fiften-to-forty-nine": 2260.96360404643, + "cc:pop:wp-total": 7355.602555457299, + "cc:pop:wp-total-UN": 8528.660858523086, + "cc:id": "485", + "cc:Name": "Rogbaneh MCHP", + "cc:site": [-12.6227, 8.8463], + "user:parentName": "Tainkatopa Makama Safrokoh ", + "user:code": "OU_255066", + "user:orgUnitId": "pvTYrkG1d6f", + "user:level": "4", + "user:parentId": "PrJQHI6q7w2" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.277916, 9.195416], + [-12.276662, 9.192282], + [-12.276265, 9.192143], + [-12.274792, 9.191963], + [-12.271283, 9.192015], + [-12.270409, 9.191487], + [-12.268583, 9.190775], + [-12.267436, 9.190066], + [-12.267825, 9.191552], + [-12.267824, 9.193789], + [-12.267588, 9.195707], + [-12.262082, 9.197082], + [-12.257083, 9.196249], + [-12.256249, 9.194583], + [-12.255417, 9.194582], + [-12.254583, 9.193749], + [-12.255416, 9.18375], + [-12.252082, 9.180417], + [-12.24875, 9.180417], + [-12.245416, 9.184582], + [-12.241249, 9.184582], + [-12.23625, 9.18375], + [-12.236249, 9.187083], + [-12.232917, 9.190416], + [-12.232083, 9.190417], + [-12.230416, 9.192916], + [-12.22883, 9.193974], + [-12.228362, 9.193693], + [-12.226249, 9.197916], + [-12.223109, 9.200429], + [-12.22283, 9.200456], + [-12.222337, 9.2002], + [-12.221249, 9.202916], + [-12.217917, 9.202916], + [-12.215417, 9.202083], + [-12.215416, 9.205416], + [-12.212917, 9.205417], + [-12.212082, 9.206249], + [-12.210416, 9.205417], + [-12.20875, 9.205417], + [-12.207083, 9.20875], + [-12.207916, 9.210416], + [-12.20625, 9.21125], + [-12.205417, 9.212916], + [-12.208749, 9.214583], + [-12.208336, 9.21541], + [-12.2086, 9.215474], + [-12.207917, 9.219582], + [-12.208749, 9.222082], + [-12.202161, 9.222083], + [-12.202083, 9.222177], + [-12.202083, 9.223749], + [-12.204583, 9.226249], + [-12.208748, 9.227082], + [-12.208749, 9.227083], + [-12.206249, 9.230416], + [-12.203742, 9.23167], + [-12.202373, 9.230312], + [-12.201931, 9.229207], + [-12.201372, 9.230204], + [-12.199663, 9.232493], + [-12.2019, 9.2345], + [-12.211699, 9.244199], + [-12.214699, 9.246499], + [-12.224399, 9.250899], + [-12.22603, 9.251096], + [-12.226028, 9.250854], + [-12.225466, 9.250346], + [-12.22487, 9.250075], + [-12.224703, 9.249583], + [-12.225416, 9.249582], + [-12.227083, 9.247083], + [-12.232082, 9.24375], + [-12.234582, 9.243749], + [-12.236249, 9.240417], + [-12.233995, 9.238161], + [-12.23407, 9.238135], + [-12.23508, 9.237504], + [-12.236001, 9.237226], + [-12.236742, 9.236693], + [-12.237802, 9.235371], + [-12.239348, 9.235182], + [-12.239788, 9.23522], + [-12.240417, 9.232083], + [-12.242083, 9.232916], + [-12.250416, 9.229583], + [-12.255416, 9.230416], + [-12.25625, 9.227082], + [-12.25625, 9.21875], + [-12.257373, 9.216503], + [-12.257912, 9.217023], + [-12.258562, 9.217417], + [-12.260334, 9.218069], + [-12.264198, 9.21886], + [-12.266451, 9.218702], + [-12.268073, 9.218188], + [-12.270664, 9.217812], + [-12.269993, 9.216331], + [-12.268797, 9.215336], + [-12.268574, 9.214008], + [-12.268129, 9.213516], + [-12.267186, 9.21168], + [-12.266942, 9.210742], + [-12.270416, 9.209582], + [-12.270417, 9.197917], + [-12.274582, 9.198749], + [-12.277916, 9.195416] + ] + ], + "type": "Polygon" + }, + "id": 486, + "properties": { + "cc:admin:id": ["118"], + "cc:oBld:total": 578, + "cc:pop:fifteen-to-twenty-four": 939.0186930333977, + "cc:pop:grid3-total": 6019.205664179033, + "cc:pop:kontur-total": 5015.952964099466, + "cc:pop:men": 2390.0482275245695, + "cc:pop:sixty-plus": 329.23783342602314, + "cc:pop:total": 5044.115785176005, + "cc:pop:under-five": 794.5103451982029, + "cc:pop:women": 2654.0675576514354, + "cc:pop:women-fiften-to-forty-nine": 1299.5888763939877, + "cc:pop:wp-total": 4084.142880295781, + "cc:pop:wp-total-UN": 4732.580050181221, + "cc:id": "486", + "cc:Name": "Rogbin MCHP", + "cc:site": [-12.2241, 9.2117], + "user:parentName": "Sanda Tendaren", + "user:code": "OU_193193", + "user:orgUnitId": "yvDKjcRRQsR", + "user:level": "4", + "user:parentId": "UhHipWG7J8b" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.066906, 8.994935], + [-13.066585, 8.994353], + [-13.066344, 8.993834], + [-13.06586, 8.992322], + [-13.06528, 8.991455], + [-13.064674, 8.991195], + [-13.06425, 8.991232], + [-13.063446, 8.991284], + [-13.062749, 8.991205], + [-13.061645, 8.990977], + [-13.060733, 8.99064], + [-13.060181, 8.990195], + [-13.059509, 8.989924], + [-13.058168, 8.989967], + [-13.057108, 8.990265], + [-13.055136, 8.991016], + [-13.054908, 8.991065], + [-13.054507, 8.990267], + [-13.053665, 8.990611], + [-13.052555, 8.990185], + [-13.051159, 8.988048], + [-13.051558, 8.986425], + [-13.052354, 8.9854], + [-13.052733, 8.985336], + [-13.05251, 8.984222], + [-13.052161, 8.984166], + [-13.051268, 8.982431], + [-13.05073, 8.981204], + [-13.049914, 8.980369], + [-13.049014, 8.979886], + [-13.04803, 8.979863], + [-13.047244, 8.980228], + [-13.046552, 8.980864], + [-13.045319, 8.982645], + [-13.04454, 8.983194], + [-13.043904, 8.983418], + [-13.043162, 8.983373], + [-13.042251, 8.983116], + [-13.041133, 8.982653], + [-13.041073, 8.983374], + [-13.041071, 8.983375], + [-13.039255, 8.982818], + [-13.038182, 8.982158], + [-13.037683, 8.982781], + [-13.03757, 8.983381], + [-13.038775, 8.984389], + [-13.039632, 8.98492], + [-13.040367, 8.985688], + [-13.040606, 8.98644], + [-13.040577, 8.987401], + [-13.040667, 8.988469], + [-13.040827, 8.990042], + [-13.040895, 8.991318], + [-13.040918, 8.992844], + [-13.041099, 8.994598], + [-13.040963, 8.995647], + [-13.040347, 8.995828], + [-13.039823, 8.99576], + [-13.037796, 8.995419], + [-13.036861, 8.995579], + [-13.035813, 8.995852], + [-13.034655, 8.99618], + [-13.034655, 8.996178], + [-13.035241, 8.995592], + [-13.036033, 8.995461], + [-13.037084, 8.994506], + [-13.036598, 8.994743], + [-13.035045, 8.994608], + [-13.035048, 8.993834], + [-13.03479, 8.993833], + [-13.034785, 8.994605], + [-13.034357, 8.994434], + [-13.034266, 8.994602], + [-13.033749, 8.9946], + [-13.033751, 8.994342], + [-13.03418, 8.994256], + [-13.034271, 8.993831], + [-13.032455, 8.994335], + [-13.032457, 8.993821], + [-13.031939, 8.993817], + [-13.032202, 8.993047], + [-13.031165, 8.99304], + [-13.030781, 8.992523], + [-13.030653, 8.992008], + [-13.029617, 8.992002], + [-13.029616, 8.992259], + [-13.030392, 8.992264], + [-13.030388, 8.993036], + [-13.029871, 8.993034], + [-13.029997, 8.993549], + [-13.030383, 8.993938], + [-13.030253, 8.994323], + [-13.030639, 8.994454], + [-13.030898, 8.994328], + [-13.030899, 8.994329], + [-13.030635, 8.995356], + [-13.030896, 8.995101], + [-13.031154, 8.995102], + [-13.031153, 8.995359], + [-13.030893, 8.995615], + [-13.031409, 8.995618], + [-13.03141, 8.99562], + [-13.031147, 8.996647], + [-13.030459, 8.996474], + [-13.030367, 8.9969], + [-13.029589, 8.997155], + [-13.029323, 8.998183], + [-13.028028, 8.998434], + [-13.028029, 8.998177], + [-13.028288, 8.997921], + [-13.026731, 8.998298], + [-13.025178, 8.998162], + [-13.025434, 8.998676], + [-13.025433, 8.998677], + [-13.024916, 8.998676], + [-13.02517, 8.999448], + [-13.025169, 8.999449], + [-13.024135, 8.999443], + [-13.024136, 8.998929], + [-13.023101, 8.998923], + [-13.023103, 8.998408], + [-13.02125, 8.998949], + [-13.021249, 8.99625], + [-13.017917, 8.99375], + [-13.017463, 8.991939], + [-13.01638, 8.992089], + [-13.015864, 8.992169], + [-13.015104, 8.992294], + [-13.013753, 8.992924], + [-13.013545, 8.993113], + [-13.013342, 8.993446], + [-13.01317, 8.993257], + [-13.012042, 8.993287], + [-13.010871, 8.993367], + [-13.010417, 8.993466], + [-13.010416, 8.98875], + [-13.006457, 8.991389], + [-13.006434, 8.991351], + [-13.005957, 8.990906], + [-13.005386, 8.990337], + [-13.004365, 8.988685], + [-13.00314, 8.985735], + [-13.002672, 8.985123], + [-13.000155, 8.982874], + [-12.999432, 8.978584], + [-12.99789, 8.977648], + [-12.996794, 8.976264], + [-12.995738, 8.977208], + [-12.9951, 8.977221], + [-12.994584, 8.977542], + [-12.994019, 8.977565], + [-12.992998, 8.97828], + [-12.992669, 8.979329], + [-12.992298, 8.979957], + [-12.992207, 8.981398], + [-12.992206, 8.981399], + [-12.991243, 8.980656], + [-12.991065, 8.979686], + [-12.991149, 8.979533], + [-12.987917, 8.977917], + [-12.987916, 8.977909], + [-12.987641, 8.977985], + [-12.987338, 8.978052], + [-12.987657, 8.97614], + [-12.988127, 8.976061], + [-12.988477, 8.975977], + [-12.987916, 8.975417], + [-12.98125, 8.97375], + [-12.983194, 8.976992], + [-12.981688, 8.977359], + [-12.9807, 8.977615], + [-12.979418, 8.978134], + [-12.978083, 8.9788], + [-12.976617, 8.979826], + [-12.974217, 8.981891], + [-12.973002, 8.982852], + [-12.97039, 8.979719], + [-12.9681, 8.980999], + [-12.963499, 8.9847], + [-12.9539, 8.989899], + [-12.9496, 8.992099], + [-12.9457, 8.995099], + [-12.9424, 8.9987], + [-12.9409, 9.002], + [-12.9435, 9.009099], + [-12.9466, 9.011899], + [-12.9509, 9.0128], + [-12.957899, 9.0128], + [-12.961, 9.0145], + [-12.961799, 9.0181], + [-12.960499, 9.0214], + [-12.956, 9.0271], + [-12.9549, 9.031], + [-12.9554, 9.035099], + [-12.959499, 9.043199], + [-12.9643, 9.049299], + [-12.9682, 9.0501], + [-12.972299, 9.0501], + [-12.9768, 9.049299], + [-12.9817, 9.0473], + [-12.985, 9.0475], + [-12.987699, 9.049], + [-12.990799, 9.0526], + [-12.9923, 9.0575], + [-12.992399, 9.066699], + [-12.9928, 9.070599], + [-12.995, 9.074899], + [-12.999199, 9.078399], + [-13.0014, 9.0794], + [-13.0072, 9.0808], + [-13.010099, 9.082699], + [-13.012099, 9.084499], + [-13.0156, 9.088999], + [-13.0185, 9.0876], + [-13.036099, 9.088199], + [-13.043699, 9.086599], + [-13.050899, 9.082599], + [-13.058299, 9.0584], + [-13.061911, 9.056383], + [-13.059614, 9.055707], + [-13.05922, 9.055851], + [-13.057917, 9.055416], + [-13.057917, 9.052916], + [-13.060416, 9.051249], + [-13.057916, 9.049583], + [-13.052916, 9.049582], + [-13.052083, 9.047082], + [-13.053749, 9.042917], + [-13.055416, 9.042082], + [-13.054583, 9.037917], + [-13.05375, 9.03625], + [-13.05125, 9.03375], + [-13.056249, 9.028749], + [-13.057083, 9.025416], + [-13.057082, 9.023233], + [-13.056647, 9.023275], + [-13.056249, 9.022082], + [-13.056108, 9.020388], + [-13.055711, 9.020197], + [-13.055583, 9.020027], + [-13.056563, 9.018296], + [-13.056612, 9.017777], + [-13.055968, 9.015504], + [-13.055454, 9.014788], + [-13.055604, 9.014338], + [-13.055438, 9.012344], + [-13.055206, 9.012329], + [-13.05506, 9.011962], + [-13.055417, 9.01125], + [-13.05655, 9.010965], + [-13.05633, 9.010779], + [-13.056084, 9.01055], + [-13.05587, 9.010386], + [-13.055827, 9.010351], + [-13.055641, 9.010297], + [-13.055323, 9.010296], + [-13.055107, 9.010391], + [-13.054958, 9.010464], + [-13.054815, 9.010571], + [-13.054537, 9.010724], + [-13.054309, 9.01093], + [-13.054172, 9.010846], + [-13.05426, 9.010668], + [-13.0548, 9.010381], + [-13.055158, 9.010264], + [-13.055289, 9.010224], + [-13.055537, 9.010096], + [-13.055676, 9.00982], + [-13.055657, 9.009529], + [-13.055636, 9.008902], + [-13.055667, 9.008295], + [-13.055662, 9.008075], + [-13.055655, 9.007824], + [-13.055657, 9.00762], + [-13.055714, 9.007349], + [-13.055869, 9.007032], + [-13.056039, 9.006734], + [-13.056397, 9.006375], + [-13.056601, 9.006107], + [-13.056677, 9.005982], + [-13.056889, 9.0055], + [-13.057255, 9.004987], + [-13.05743, 9.004775], + [-13.057927, 9.004353], + [-13.058364, 9.0039], + [-13.058989, 9.003272], + [-13.059334, 9.002701], + [-13.059349, 9.002599], + [-13.059533, 9.001971], + [-13.059449, 9.001608], + [-13.059457, 9.001455], + [-13.059356, 9.001169], + [-13.059099, 9.000941], + [-13.058822, 9.000816], + [-13.05839, 9.000697], + [-13.057977, 9.000456], + [-13.057193, 8.999921], + [-13.056068, 8.999378], + [-13.055807, 8.999293], + [-13.055484, 8.999033], + [-13.055426, 8.998811], + [-13.055317, 8.998416], + [-13.05547, 8.998155], + [-13.055639, 8.998], + [-13.056004, 8.99761], + [-13.056208, 8.99751], + [-13.056528, 8.997415], + [-13.056819, 8.997335], + [-13.057098, 8.997213], + [-13.057569, 8.997029], + [-13.058099, 8.996658], + [-13.058463, 8.996556], + [-13.059103, 8.996247], + [-13.059424, 8.996077], + [-13.059744, 8.995841], + [-13.060098, 8.995148], + [-13.060208, 8.994559], + [-13.060201, 8.99419], + [-13.06023, 8.99279], + [-13.060148, 8.992634], + [-13.060198, 8.992574], + [-13.060204, 8.992289], + [-13.060754, 8.992285], + [-13.061355, 8.992207], + [-13.062028, 8.992475], + [-13.063172, 8.993027], + [-13.063565, 8.9932], + [-13.064269, 8.993537], + [-13.064579, 8.993834], + [-13.065626, 8.994827], + [-13.066562, 8.995226], + [-13.066906, 8.994935] + ] + ], + "type": "Polygon" + }, + "id": 487, + "properties": { + "cc:admin:id": ["115"], + "cc:oBld:total": 2525, + "cc:pop:fifteen-to-twenty-four": 3357.259855304251, + "cc:pop:grid3-total": 17195.05845580337, + "cc:pop:kontur-total": 21099.519269779445, + "cc:pop:men": 8749.865356829743, + "cc:pop:sixty-plus": 1104.5358158942013, + "cc:pop:total": 18783.4409537992, + "cc:pop:under-five": 2919.6151655364265, + "cc:pop:women": 10033.575596969462, + "cc:pop:women-fiften-to-forty-nine": 4849.490330265764, + "cc:pop:wp-total": 16693.10486772675, + "cc:pop:wp-total-UN": 19336.69409694112, + "cc:id": "487", + "cc:Name": "Rokai CHP", + "cc:site": [-13.02, 9.02], + "user:parentName": "Samu", + "user:code": "OU_211250", + "user:orgUnitId": "UxpUYgdb4oU", + "user:level": "4", + "user:parentId": "r06ohri9wA9" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.437466, 8.47657], + [-12.430417, 8.47375], + [-12.430416, 8.470417], + [-12.427083, 8.467917], + [-12.41875, 8.464584], + [-12.418749, 8.45875], + [-12.40781, 8.458749], + [-12.403904, 8.451984], + [-12.404137, 8.451579], + [-12.403749, 8.450417], + [-12.394582, 8.450416], + [-12.389583, 8.445417], + [-12.38875, 8.445416], + [-12.387916, 8.438749], + [-12.385416, 8.43625], + [-12.383749, 8.436249], + [-12.382082, 8.43375], + [-12.37875, 8.432084], + [-12.377082, 8.42875], + [-12.372083, 8.429583], + [-12.367917, 8.42875], + [-12.367916, 8.429583], + [-12.364582, 8.42875], + [-12.361928, 8.42928], + [-12.362976, 8.433303], + [-12.362083, 8.43375], + [-12.362082, 8.43875], + [-12.360416, 8.44125], + [-12.355417, 8.442917], + [-12.355416, 8.445417], + [-12.349583, 8.45125], + [-12.348749, 8.460416], + [-12.347916, 8.460416], + [-12.346117, 8.46016], + [-12.346191, 8.460306], + [-12.346192, 8.460671], + [-12.346116, 8.46124], + [-12.345017, 8.462433], + [-12.34477, 8.462874], + [-12.34476, 8.462947], + [-12.345183, 8.463229], + [-12.346255, 8.463028], + [-12.346615, 8.463001], + [-12.346803, 8.463128], + [-12.346872, 8.463458], + [-12.346826, 8.463773], + [-12.346754, 8.463927], + [-12.346556, 8.464231], + [-12.346249, 8.464318], + [-12.34579, 8.464959], + [-12.345737, 8.465091], + [-12.345661, 8.46524], + [-12.345623, 8.465399], + [-12.345645, 8.465553], + [-12.346155, 8.465888], + [-12.34632, 8.466709], + [-12.346154, 8.466716], + [-12.345295, 8.467066], + [-12.343598, 8.468303], + [-12.343954, 8.469427], + [-12.343728, 8.471929], + [-12.343892, 8.473215], + [-12.34446, 8.474392], + [-12.344373, 8.475646], + [-12.343802, 8.476702], + [-12.34239, 8.477907], + [-12.341788, 8.478999], + [-12.340849, 8.479691], + [-12.340548, 8.480569], + [-12.334107, 8.479093], + [-12.332917, 8.479018], + [-12.332916, 8.479584], + [-12.33125, 8.484583], + [-12.333266, 8.489291], + [-12.331554, 8.489483], + [-12.330476, 8.489179], + [-12.329056, 8.489901], + [-12.328421, 8.490035], + [-12.327513, 8.489081], + [-12.326955, 8.487824], + [-12.325917, 8.48624], + [-12.325759, 8.48572], + [-12.325481, 8.485352], + [-12.322917, 8.487917], + [-12.319583, 8.494583], + [-12.317083, 8.494584], + [-12.314583, 8.495417], + [-12.31125, 8.499583], + [-12.311249, 8.504583], + [-12.307917, 8.504584], + [-12.305416, 8.50625], + [-12.302917, 8.509584], + [-12.302083, 8.513749], + [-12.305417, 8.514584], + [-12.316249, 8.514584], + [-12.323749, 8.518749], + [-12.320417, 8.526249], + [-12.327082, 8.528749], + [-12.327916, 8.52875], + [-12.330557, 8.531391], + [-12.330256, 8.532059], + [-12.32914, 8.532752], + [-12.327613, 8.532753], + [-12.327222, 8.532901], + [-12.327109, 8.533258], + [-12.326533, 8.533166], + [-12.32587, 8.533234], + [-12.325594, 8.533421], + [-12.327916, 8.534584], + [-12.328516, 8.536382], + [-12.332799, 8.5283], + [-12.3364, 8.524099], + [-12.341, 8.5211], + [-12.351999, 8.519], + [-12.3559, 8.517599], + [-12.3593, 8.515199], + [-12.3621, 8.512099], + [-12.3662, 8.505899], + [-12.368899, 8.5027], + [-12.372, 8.499899], + [-12.3756, 8.497999], + [-12.3904, 8.4945], + [-12.395899, 8.494699], + [-12.400499, 8.496099], + [-12.4049, 8.4969], + [-12.418799, 8.497299], + [-12.4201, 8.494399], + [-12.422299, 8.4916], + [-12.4303, 8.485399], + [-12.433549, 8.482149], + [-12.434167, 8.480629], + [-12.43534, 8.479143], + [-12.435782, 8.478198], + [-12.437046, 8.477215], + [-12.437466, 8.47657] + ] + ], + "type": "Polygon" + }, + "id": 488, + "properties": { + "cc:admin:id": ["149"], + "cc:oBld:total": 698, + "cc:pop:fifteen-to-twenty-four": 1973.6356721716345, + "cc:pop:grid3-total": 7641.8784848153655, + "cc:pop:kontur-total": 10640.703999547344, + "cc:pop:men": 4915.934495976668, + "cc:pop:sixty-plus": 674.1394353979982, + "cc:pop:total": 10611.936302175722, + "cc:pop:under-five": 1705.507619474132, + "cc:pop:women": 5696.001806199053, + "cc:pop:women-fiften-to-forty-nine": 2794.232419884322, + "cc:pop:wp-total": 8002.412637015014, + "cc:pop:wp-total-UN": 9280.895968964403, + "cc:id": "488", + "cc:Name": "Rokimbi MCHP", + "cc:site": [-12.3755, 8.4766], + "user:parentName": "Yoni", + "user:code": "OU_268242", + "user:orgUnitId": "pVuRAzSstbn", + "user:level": "4", + "user:parentId": "NNE0YMCDZkO" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.087917, 8.754582], + [-12.087916, 8.749583], + [-12.077917, 8.747917], + [-12.077083, 8.74625], + [-12.085416, 8.737916], + [-12.085416, 8.73666], + [-12.082466, 8.735926], + [-12.080255, 8.734906], + [-12.080417, 8.734582], + [-12.085416, 8.732082], + [-12.083749, 8.72875], + [-12.082082, 8.728749], + [-12.077082, 8.722917], + [-12.072083, 8.722917], + [-12.07072, 8.724005], + [-12.067091, 8.71772], + [-12.062871, 8.717719], + [-12.06328, 8.716813], + [-12.063054, 8.715324], + [-12.063134, 8.714771], + [-12.06283, 8.714726], + [-12.062011, 8.71519], + [-12.061388, 8.715203], + [-12.06073, 8.715487], + [-12.060618, 8.715817], + [-12.060488, 8.7156], + [-12.060509, 8.714996], + [-12.059904, 8.713851], + [-12.059913, 8.71375], + [-12.052917, 8.71375], + [-12.05174, 8.714689], + [-12.048794, 8.709587], + [-12.049009, 8.709517], + [-12.049537, 8.709773], + [-12.050489, 8.71089], + [-12.050831, 8.71086], + [-12.051361, 8.710308], + [-12.051598, 8.710512], + [-12.052916, 8.704583], + [-12.05125, 8.69875], + [-12.049582, 8.695417], + [-12.048749, 8.695417], + [-12.042082, 8.696249], + [-12.03875, 8.687916], + [-12.03875, 8.68375], + [-12.040181, 8.683749], + [-12.040261, 8.683326], + [-12.038299, 8.6835], + [-12.0337, 8.6835], + [-12.030699, 8.683199], + [-12.027799, 8.682499], + [-12.0121, 8.677], + [-12.008, 8.6767], + [-12.004599, 8.6776], + [-12.0017, 8.679499], + [-11.9998, 8.681599], + [-11.997699, 8.6849], + [-11.9937, 8.693599], + [-11.9887, 8.700999], + [-11.9864, 8.705499], + [-11.990499, 8.709799], + [-11.9932, 8.7124], + [-11.996199, 8.714499], + [-11.9994, 8.716], + [-12.0024, 8.718], + [-12.0044, 8.72], + [-12.0067, 8.7229], + [-12.010299, 8.730399], + [-12.010999, 8.732999], + [-12.0112, 8.7366], + [-12.011299, 8.7478], + [-12.011, 8.750499], + [-12.0104, 8.752599], + [-12.006499, 8.7605], + [-12.004399, 8.7633], + [-12.0005, 8.767199], + [-11.9969, 8.769999], + [-11.995245, 8.770755], + [-11.996049, 8.770591], + [-11.996875, 8.772004], + [-11.997179, 8.772233], + [-11.998958, 8.768958], + [-11.99972, 8.768554], + [-12.001126, 8.768243], + [-12.0032, 8.767822], + [-12.005876, 8.768004], + [-12.006249, 8.76875], + [-12.00625, 8.769582], + [-12.009583, 8.769583], + [-12.013749, 8.772082], + [-12.014323, 8.77237], + [-12.014323, 8.772372], + [-12.014216, 8.772422], + [-12.014332, 8.773067], + [-12.014579, 8.773372], + [-12.014004, 8.773687], + [-12.01417, 8.774064], + [-12.01409, 8.774349], + [-12.014439, 8.774997], + [-12.014459, 8.775208], + [-12.01424, 8.775304], + [-12.01423, 8.775733], + [-12.01447, 8.776342], + [-12.014734, 8.776455], + [-12.015694, 8.778129], + [-12.015926, 8.778187], + [-12.01718, 8.778241], + [-12.017944, 8.778028], + [-12.018617, 8.777455], + [-12.01831, 8.775541], + [-12.018384, 8.774545], + [-12.018574, 8.774252], + [-12.018407, 8.773932], + [-12.018528, 8.77251], + [-12.017986, 8.772013], + [-12.022082, 8.767918], + [-12.022917, 8.782082], + [-12.031249, 8.777917], + [-12.031634, 8.777146], + [-12.031135, 8.777256], + [-12.031135, 8.777254], + [-12.03125, 8.777082], + [-12.033108, 8.776154], + [-12.03314, 8.776059], + [-12.034231, 8.775592], + [-12.034582, 8.775416], + [-12.035802, 8.771761], + [-12.037077, 8.772004], + [-12.03777, 8.772524], + [-12.037804, 8.772527], + [-12.042916, 8.771249], + [-12.043745, 8.770421], + [-12.043755, 8.770423], + [-12.04471, 8.770074], + [-12.044265, 8.768474], + [-12.044261, 8.768124], + [-12.044481, 8.766645], + [-12.044662, 8.765702], + [-12.045035, 8.764679], + [-12.046016, 8.763656], + [-12.047423, 8.762413], + [-12.048307, 8.763357], + [-12.048917, 8.763631], + [-12.050761, 8.763764], + [-12.05185, 8.764246], + [-12.05249, 8.764194], + [-12.052774, 8.763665], + [-12.053326, 8.763823], + [-12.053349, 8.763784], + [-12.054183, 8.763955], + [-12.054243, 8.763953], + [-12.054248, 8.76397], + [-12.054928, 8.764109], + [-12.054521, 8.763459], + [-12.054842, 8.762761], + [-12.054964, 8.760808], + [-12.05489, 8.759446], + [-12.054684, 8.759055], + [-12.054685, 8.759054], + [-12.056523, 8.759327], + [-12.057643, 8.759875], + [-12.059008, 8.759771], + [-12.059693, 8.759903], + [-12.059953, 8.7603], + [-12.059958, 8.760706], + [-12.060394, 8.760903], + [-12.05957, 8.761276], + [-12.060537, 8.762327], + [-12.061159, 8.762475], + [-12.061766, 8.762301], + [-12.062609, 8.762565], + [-12.062876, 8.762752], + [-12.062831, 8.763107], + [-12.062818, 8.763814], + [-12.062394, 8.765238], + [-12.062178, 8.7655], + [-12.062317, 8.765619], + [-12.062565, 8.765814], + [-12.063091, 8.76531], + [-12.063187, 8.76438], + [-12.063686, 8.763263], + [-12.063627, 8.762605], + [-12.064222, 8.761291], + [-12.063916, 8.760417], + [-12.064582, 8.760416], + [-12.065417, 8.758749], + [-12.072082, 8.755416], + [-12.072917, 8.752082], + [-12.075417, 8.749583], + [-12.077083, 8.749583], + [-12.084583, 8.757916], + [-12.085416, 8.757916], + [-12.087917, 8.754582] + ] + ], + "type": "Polygon" + }, + "id": 489, + "properties": { + "cc:admin:id": ["8"], + "cc:oBld:total": 504, + "cc:pop:fifteen-to-twenty-four": 785.4623130202989, + "cc:pop:grid3-total": 5830.757446234787, + "cc:pop:kontur-total": 4299.3336875636, + "cc:pop:men": 2091.7615745408348, + "cc:pop:sixty-plus": 239.75772841792622, + "cc:pop:total": 4396.902523094643, + "cc:pop:under-five": 721.1941438613387, + "cc:pop:women": 2305.140948553809, + "cc:pop:women-fiften-to-forty-nine": 1074.8548508593437, + "cc:pop:wp-total": 2264.679351199421, + "cc:pop:wp-total-UN": 2632.601819929373, + "cc:id": "489", + "cc:Name": "Rokonta CHC", + "cc:site": [-12.0482, 8.7452], + "user:parentName": "Bombali Sebora", + "user:code": "OU_193205", + "user:orgUnitId": "mepHuAA9l51", + "user:level": "4", + "user:parentId": "KKkLOTpMXGV" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.248749, 9.180417], + [-12.244583, 9.179583], + [-12.244582, 9.177917], + [-12.23875, 9.17375], + [-12.240416, 9.168749], + [-12.238257, 9.161554], + [-12.238119, 9.16166], + [-12.236004, 9.162233], + [-12.235523, 9.16254], + [-12.235375, 9.16382], + [-12.234868, 9.164577], + [-12.233685, 9.167103], + [-12.233814, 9.168776], + [-12.233459, 9.169322], + [-12.233255, 9.169392], + [-12.230043, 9.170315], + [-12.227082, 9.162917], + [-12.224582, 9.164582], + [-12.219582, 9.165416], + [-12.21519, 9.164162], + [-12.215249, 9.163746], + [-12.215755, 9.162579], + [-12.215818, 9.161743], + [-12.21445, 9.16078], + [-12.213687, 9.159678], + [-12.212529, 9.158747], + [-12.211169, 9.158488], + [-12.210695, 9.158462], + [-12.2106, 9.167599], + [-12.210299, 9.1712], + [-12.209699, 9.1733], + [-12.205899, 9.1812], + [-12.203699, 9.184], + [-12.2012, 9.186599], + [-12.1974, 9.189899], + [-12.191799, 9.193], + [-12.189099, 9.195], + [-12.185195, 9.198403], + [-12.1813, 9.2013], + [-12.180699, 9.2046], + [-12.1791, 9.208199], + [-12.1759, 9.212699], + [-12.189499, 9.225999], + [-12.192199, 9.227899], + [-12.196699, 9.230199], + [-12.198999, 9.231899], + [-12.199662, 9.232493], + [-12.201372, 9.230204], + [-12.201931, 9.229208], + [-12.202373, 9.230312], + [-12.203742, 9.23167], + [-12.206249, 9.230416], + [-12.208749, 9.227083], + [-12.204583, 9.22625], + [-12.202083, 9.223749], + [-12.202083, 9.222177], + [-12.202161, 9.222083], + [-12.208749, 9.222082], + [-12.207917, 9.219582], + [-12.2086, 9.215474], + [-12.208337, 9.215411], + [-12.208336, 9.21541], + [-12.208749, 9.214583], + [-12.205417, 9.212916], + [-12.20625, 9.211249], + [-12.207916, 9.210416], + [-12.207083, 9.208749], + [-12.208749, 9.205417], + [-12.210416, 9.205417], + [-12.212082, 9.206249], + [-12.212917, 9.205417], + [-12.215416, 9.205416], + [-12.215417, 9.202083], + [-12.217917, 9.202916], + [-12.221249, 9.202916], + [-12.222336, 9.2002], + [-12.222831, 9.200456], + [-12.223108, 9.200429], + [-12.226249, 9.197916], + [-12.228361, 9.193693], + [-12.228829, 9.193974], + [-12.230416, 9.192916], + [-12.232082, 9.190417], + [-12.232916, 9.190416], + [-12.236249, 9.187082], + [-12.23625, 9.18375], + [-12.241249, 9.184582], + [-12.245416, 9.184582], + [-12.248749, 9.180417] + ] + ], + "type": "Polygon" + }, + "id": 490, + "properties": { + "cc:admin:id": ["118"], + "cc:oBld:total": 415, + "cc:pop:fifteen-to-twenty-four": 818.4445503688361, + "cc:pop:grid3-total": 6833.753991845567, + "cc:pop:kontur-total": 4248.404255375714, + "cc:pop:men": 2059.513050314249, + "cc:pop:sixty-plus": 291.5152289286766, + "cc:pop:total": 4358.13665475006, + "cc:pop:under-five": 678.5405027634743, + "cc:pop:women": 2298.6236044358116, + "cc:pop:women-fiften-to-forty-nine": 1121.5832028779507, + "cc:pop:wp-total": 3616.407155333211, + "cc:pop:wp-total-UN": 4188.786003955294, + "cc:id": "490", + "cc:Name": "Rokulan CHC", + "cc:site": [-12.2112, 9.1945], + "user:parentName": "Sanda Tendaren", + "user:code": "OU_193196", + "user:orgUnitId": "X79FDd4EAgo", + "user:level": "4", + "user:parentId": "UhHipWG7J8b" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.177752, 8.460848], + [-13.177559, 8.46077], + [-13.176536, 8.4602], + [-13.176502, 8.460143], + [-13.175959, 8.459094], + [-13.175653, 8.458673], + [-13.175554, 8.4585], + [-13.175409, 8.458219], + [-13.175097, 8.457502], + [-13.17366, 8.458059], + [-13.173526, 8.457844], + [-13.173412, 8.457603], + [-13.17336, 8.45753], + [-13.17319, 8.457235], + [-13.17314, 8.457122], + [-13.172825, 8.45654], + [-13.174482, 8.455481], + [-13.174294, 8.455108], + [-13.172521, 8.456013], + [-13.172384, 8.455808], + [-13.172301, 8.455678], + [-13.172158, 8.455406], + [-13.172075, 8.455197], + [-13.171181, 8.455599], + [-13.171744, 8.456985], + [-13.172152, 8.458069], + [-13.172199, 8.458185], + [-13.172198, 8.458187], + [-13.172121, 8.45819], + [-13.171917, 8.457688], + [-13.17164, 8.456924], + [-13.170528, 8.457444], + [-13.17053, 8.456666], + [-13.170775, 8.45655], + [-13.170582, 8.456282], + [-13.170284, 8.456404], + [-13.167688, 8.456404], + [-13.167982, 8.456955], + [-13.167822, 8.45725], + [-13.167927, 8.45752], + [-13.168243, 8.457504], + [-13.168854, 8.456786], + [-13.169456, 8.457486], + [-13.168864, 8.459348], + [-13.168462, 8.459072], + [-13.167677, 8.457399], + [-13.167419, 8.45709], + [-13.167072, 8.4567], + [-13.166811, 8.45638], + [-13.166605, 8.455903], + [-13.166453, 8.45571], + [-13.16626, 8.4556], + [-13.166073, 8.455611], + [-13.165139, 8.455631], + [-13.163671, 8.455348], + [-13.162741, 8.455058], + [-13.161905, 8.45464], + [-13.16133, 8.454363], + [-13.160693, 8.454157], + [-13.159997, 8.453983], + [-13.159009, 8.45328], + [-13.158462, 8.452344], + [-13.156327, 8.449638], + [-13.155183, 8.449638], + [-13.155149, 8.449697], + [-13.155418, 8.450133], + [-13.173661, 8.469282], + [-13.175206, 8.468382], + [-13.174869, 8.467506], + [-13.174553, 8.467219], + [-13.174821, 8.466453], + [-13.174558, 8.466275], + [-13.17351, 8.466285], + [-13.173509, 8.466284], + [-13.174356, 8.465144], + [-13.174485, 8.464755], + [-13.174708, 8.46446], + [-13.175915, 8.465726], + [-13.175964, 8.46568], + [-13.176715, 8.464992], + [-13.176637, 8.464444], + [-13.176753, 8.464104], + [-13.17623, 8.463591], + [-13.175703, 8.463102], + [-13.175729, 8.462589], + [-13.176515, 8.461775], + [-13.176893, 8.462079], + [-13.177675, 8.460995], + [-13.177752, 8.460848] + ] + ], + "type": "Polygon" + }, + "id": 491, + "properties": { + "cc:admin:id": ["112"], + "cc:oBld:total": 2681, + "cc:pop:fifteen-to-twenty-four": 4014.6200361493306, + "cc:pop:grid3-total": 38534.452296893636, + "cc:pop:kontur-total": 8066.9765885607485, + "cc:pop:men": 8604.859849537363, + "cc:pop:sixty-plus": 1363.3237271876508, + "cc:pop:total": 17541.627443179357, + "cc:pop:under-five": 2028.1599396897498, + "cc:pop:women": 8936.767593641993, + "cc:pop:women-fiften-to-forty-nine": 4780.0481948165125, + "cc:pop:wp-total": 21124.03787054603, + "cc:pop:wp-total-UN": 24494.68074141473, + "cc:id": "491", + "cc:Name": "Rokupa Govt. Hospital", + "cc:site": [-13.1726, 8.4603], + "user:parentName": "Freetown", + "user:code": "OU_278332", + "user:orgUnitId": "NfE9gvFwLIF", + "user:level": "4", + "user:parentId": "C9uduqDZr9d" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.993399, 8.9456], + [-12.9873, 8.9427], + [-12.983999, 8.941399], + [-12.979699, 8.938999], + [-12.9721, 8.9355], + [-12.9687, 8.9349], + [-12.965299, 8.9355], + [-12.9593, 8.937899], + [-12.955, 8.938399], + [-12.909583, 8.9384], + [-12.909582, 8.93875], + [-12.904583, 8.943749], + [-12.908602, 8.94509], + [-12.908041, 8.947715], + [-12.907879, 8.949194], + [-12.907313, 8.950523], + [-12.907029, 8.950575], + [-12.906143, 8.95184], + [-12.904797, 8.952968], + [-12.900771, 8.954077], + [-12.900441, 8.953987], + [-12.900063, 8.953566], + [-12.901249, 8.957917], + [-12.897199, 8.962642], + [-12.896285, 8.96218], + [-12.892083, 8.967082], + [-12.892917, 8.967917], + [-12.897916, 8.977082], + [-12.897083, 8.978749], + [-12.899582, 8.981249], + [-12.898445, 8.983525], + [-12.901886, 8.985581], + [-12.903551, 8.986197], + [-12.903146, 8.987615], + [-12.902103, 8.988723], + [-12.901513, 8.989352], + [-12.901295, 8.989582], + [-12.904583, 8.989583], + [-12.909583, 8.992916], + [-12.912083, 8.99125], + [-12.917916, 8.998749], + [-12.917917, 9.001249], + [-12.91812, 9.001453], + [-12.917882, 9.001799], + [-12.917764, 9.002414], + [-12.91811, 9.004578], + [-12.918094, 9.005239], + [-12.918694, 9.006112], + [-12.919226, 9.007342], + [-12.919282, 9.007572], + [-12.919437, 9.009558], + [-12.919432, 9.010026], + [-12.919577, 9.011666], + [-12.919495, 9.012486], + [-12.91971, 9.013805], + [-12.920041, 9.01433], + [-12.920149, 9.015335], + [-12.921124, 9.016595], + [-12.921447, 9.016666], + [-12.922963, 9.017782], + [-12.924014, 9.021644], + [-12.924005, 9.021782], + [-12.924765, 9.021953], + [-12.925154, 9.02226], + [-12.925598, 9.023386], + [-12.92375, 9.027082], + [-12.927916, 9.03125], + [-12.927082, 9.033749], + [-12.924583, 9.03375], + [-12.92375, 9.036249], + [-12.92375, 9.036403], + [-12.925155, 9.035797], + [-12.929786, 9.034162], + [-12.931055, 9.034827], + [-12.931761, 9.03616], + [-12.932268, 9.036304], + [-12.934069, 9.039424], + [-12.931382, 9.044081], + [-12.932917, 9.047916], + [-12.939582, 9.047083], + [-12.938891, 9.054702], + [-12.939575, 9.05464], + [-12.941286, 9.054921], + [-12.944603, 9.05586], + [-12.948544, 9.057833], + [-12.948823, 9.055492], + [-12.949387, 9.054063], + [-12.950821, 9.052177], + [-12.951752, 9.051451], + [-12.952616, 9.049431], + [-12.952935, 9.047874], + [-12.952938, 9.046639], + [-12.952817, 9.046424], + [-12.953078, 9.045401], + [-12.952919, 9.044011], + [-12.953071, 9.04277], + [-12.953043, 9.040479], + [-12.95286, 9.03911], + [-12.954089, 9.038363], + [-12.954184, 9.037488], + [-12.954116, 9.037412], + [-12.953469, 9.036098], + [-12.952948, 9.034135], + [-12.952471, 9.033629], + [-12.953258, 9.031575], + [-12.95236, 9.02912], + [-12.951195, 9.027801], + [-12.950281, 9.027099], + [-12.950096, 9.025225], + [-12.950104, 9.024036], + [-12.949816, 9.022341], + [-12.949029, 9.021606], + [-12.948436, 9.019565], + [-12.947854, 9.018667], + [-12.947782, 9.018534], + [-12.947079, 9.017403], + [-12.947727, 9.015604], + [-12.947889, 9.015128], + [-12.947574, 9.014757], + [-12.947319, 9.014761], + [-12.947336, 9.014685], + [-12.946731, 9.014775], + [-12.946576, 9.014655], + [-12.946862, 9.013994], + [-12.947231, 9.012923], + [-12.947811, 9.013074], + [-12.948058, 9.012205], + [-12.946599, 9.011899], + [-12.9435, 9.009099], + [-12.9409, 9.002], + [-12.942399, 8.9987], + [-12.9457, 8.995099], + [-12.949599, 8.9921], + [-12.9539, 8.989899], + [-12.963499, 8.9847], + [-12.9681, 8.980999], + [-12.974, 8.977699], + [-12.9768, 8.975499], + [-12.983299, 8.9691], + [-12.985599, 8.9664], + [-12.986899, 8.9641], + [-12.9875, 8.961499], + [-12.9881, 8.9548], + [-12.99, 8.950699], + [-12.993399, 8.9456] + ] + ], + "type": "Polygon" + }, + "id": 492, + "properties": { + "cc:admin:id": ["82"], + "cc:oBld:total": 717, + "cc:pop:fifteen-to-twenty-four": 3743.2452421885, + "cc:pop:grid3-total": 7625.603190278201, + "cc:pop:kontur-total": 21697.522182194793, + "cc:pop:men": 9494.167838388874, + "cc:pop:sixty-plus": 1348.2250741012233, + "cc:pop:total": 20033.89644289129, + "cc:pop:under-five": 3171.3155465122672, + "cc:pop:women": 10539.728604502432, + "cc:pop:women-fiften-to-forty-nine": 5038.80512936937, + "cc:pop:wp-total": 15465.398329229358, + "cc:pop:wp-total-UN": 17924.354524187962, + "cc:id": "492", + "cc:Name": "Rokupr CHC", + "cc:site": [-12.9443, 9.0163], + "user:parentName": "Magbema", + "user:code": "OU_211237", + "user:orgUnitId": "QZtMuEEV9Vv", + "user:level": "4", + "user:parentId": "QywkxFudXrC" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.109583, 8.852661], + [-13.109582, 8.846005], + [-13.107568, 8.845762], + [-13.10524, 8.845461], + [-13.102178, 8.844814], + [-13.100624, 8.843649], + [-13.098725, 8.843649], + [-13.098749, 8.84375], + [-13.098653, 8.844324], + [-13.097562, 8.844425], + [-13.095751, 8.844123], + [-13.095147, 8.843391], + [-13.094554, 8.842917], + [-13.090417, 8.842917], + [-13.08875, 8.84375], + [-13.088749, 8.846486], + [-13.086736, 8.846884], + [-13.08363, 8.84697], + [-13.079749, 8.846626], + [-13.07625, 8.845405], + [-13.07625, 8.847081], + [-13.076248, 8.847082], + [-13.067917, 8.845417], + [-13.062082, 8.842917], + [-13.057917, 8.844582], + [-13.05741, 8.843319], + [-13.053721, 8.844628], + [-13.049806, 8.846944], + [-13.048102, 8.847407], + [-13.042083, 8.850416], + [-13.040918, 8.848089], + [-13.04078, 8.848186], + [-13.036515, 8.849546], + [-13.037916, 8.853748], + [-13.037915, 8.853749], + [-13.027083, 8.853749], + [-13.02584, 8.850644], + [-13.024674, 8.850918], + [-13.022339, 8.851677], + [-13.018703, 8.851949], + [-13.016472, 8.852249], + [-13.014808, 8.852581], + [-13.00777, 8.85444], + [-13.006026, 8.85469], + [-13.005793, 8.854665], + [-13.004582, 8.857082], + [-13.002083, 8.856249], + [-13.00051, 8.854677], + [-13.000497, 8.854769], + [-12.999267, 8.854904], + [-12.99694, 8.854407], + [-12.992549, 8.851777], + [-12.988324, 8.849583], + [-12.985557, 8.849583], + [-12.982467, 8.848116], + [-12.982324, 8.848101], + [-12.98125, 8.845417], + [-12.981249, 8.845285], + [-12.975099, 8.845499], + [-12.9644, 8.8444], + [-12.955699, 8.842299], + [-12.9447, 8.8405], + [-12.9381, 8.8401], + [-12.931399, 8.8401], + [-12.9232, 8.842099], + [-12.9104, 8.848499], + [-12.8976, 8.8524], + [-12.893, 8.856699], + [-12.889999, 8.8607], + [-12.887599, 8.8661], + [-12.8846, 8.873699], + [-12.884, 8.876699], + [-12.8838, 8.8811], + [-12.883899, 8.901299], + [-12.8836, 8.907299], + [-12.882899, 8.9115], + [-12.8794, 8.923999], + [-12.8794, 8.924099], + [-12.8861, 8.9311], + [-12.889299, 8.933199], + [-12.891899, 8.934399], + [-12.8971, 8.9357], + [-12.9025, 8.9379], + [-12.9065, 8.9384], + [-12.919413, 8.938399], + [-12.91875, 8.93375], + [-12.919582, 8.929583], + [-12.920417, 8.927916], + [-12.929431, 8.927223], + [-12.929391, 8.927949], + [-12.92898, 8.928788], + [-12.928131, 8.929253], + [-12.926165, 8.929869], + [-12.924992, 8.930014], + [-12.924521, 8.930806], + [-12.924434, 8.931981], + [-12.921888, 8.931674], + [-12.921703, 8.932171], + [-12.92261, 8.932529], + [-12.923288, 8.933099], + [-12.923798, 8.934863], + [-12.924023, 8.934235], + [-12.923984, 8.933518], + [-12.924255, 8.932759], + [-12.924749, 8.932343], + [-12.925794, 8.931995], + [-12.926453, 8.932102], + [-12.928097, 8.932892], + [-12.928469, 8.932043], + [-12.92837, 8.931716], + [-12.929322, 8.930052], + [-12.931429, 8.928373], + [-12.932472, 8.928421], + [-12.934403, 8.927554], + [-12.934952, 8.927081], + [-12.935973, 8.926755], + [-12.93645, 8.926889], + [-12.936894, 8.927338], + [-12.938133, 8.927737], + [-12.939179, 8.926611], + [-12.939615, 8.926695], + [-12.941723, 8.926467], + [-12.943964, 8.925286], + [-12.945709, 8.924314], + [-12.94625, 8.924582], + [-12.952082, 8.92125], + [-12.954287, 8.9218], + [-12.954432, 8.92178], + [-12.954516, 8.921858], + [-12.955416, 8.922082], + [-12.95625, 8.920417], + [-12.95875, 8.920417], + [-12.961271, 8.921046], + [-12.961321, 8.920999], + [-12.96374, 8.920231], + [-12.96402, 8.920281], + [-12.968749, 8.917917], + [-12.969583, 8.917083], + [-12.971724, 8.918153], + [-12.971727, 8.915364], + [-12.971728, 8.915365], + [-12.972916, 8.917328], + [-12.972917, 8.912083], + [-12.975417, 8.91125], + [-12.979582, 8.911249], + [-12.982916, 8.905416], + [-12.982917, 8.902916], + [-12.986319, 8.898832], + [-12.986191, 8.898496], + [-12.986029, 8.898357], + [-12.987082, 8.89625], + [-12.987916, 8.896249], + [-12.990416, 8.89375], + [-12.997083, 8.897082], + [-12.998245, 8.896502], + [-12.998551, 8.896997], + [-12.998796, 8.896296], + [-12.999583, 8.897082], + [-13.002916, 8.89625], + [-13.005416, 8.892917], + [-13.008749, 8.892916], + [-13.010416, 8.890416], + [-13.010416, 8.889582], + [-13.007621, 8.883291], + [-13.015581, 8.88366], + [-13.015596, 8.883464], + [-13.015682, 8.883466], + [-13.018554, 8.883882], + [-13.021554, 8.884318], + [-13.020485, 8.876356], + [-13.023311, 8.876115], + [-13.023381, 8.876115], + [-13.02704, 8.876247], + [-13.026861, 8.874967], + [-13.026695, 8.873789], + [-13.026574, 8.872874], + [-13.026259, 8.870541], + [-13.026635, 8.870556], + [-13.027198, 8.870647], + [-13.029452, 8.871046], + [-13.029777, 8.871326], + [-13.029782, 8.871332], + [-13.03169, 8.875255], + [-13.031765, 8.875223], + [-13.03337, 8.873741], + [-13.034012, 8.873227], + [-13.034843, 8.872113], + [-13.034942, 8.871739], + [-13.034948, 8.871736], + [-13.034961, 8.871689], + [-13.035277, 8.870826], + [-13.036452, 8.869127], + [-13.03862, 8.86734], + [-13.042082, 8.867916], + [-13.043622, 8.867917], + [-13.043669, 8.867835], + [-13.046792, 8.870959], + [-13.048396, 8.871654], + [-13.049041, 8.872301], + [-13.048852, 8.873749], + [-13.051249, 8.873749], + [-13.05125, 8.872917], + [-13.052083, 8.871249], + [-13.057748, 8.869125], + [-13.057983, 8.871574], + [-13.061362, 8.869273], + [-13.060851, 8.867854], + [-13.059043, 8.867071], + [-13.058593, 8.865165], + [-13.062082, 8.864583], + [-13.062917, 8.865416], + [-13.067083, 8.864583], + [-13.07375, 8.869582], + [-13.077082, 8.867916], + [-13.080381, 8.863793], + [-13.08047, 8.86375], + [-13.08125, 8.86375], + [-13.084268, 8.866014], + [-13.084605, 8.865305], + [-13.085325, 8.864474], + [-13.085789, 8.864269], + [-13.086482, 8.862915], + [-13.087484, 8.862093], + [-13.087436, 8.861341], + [-13.086616, 8.861155], + [-13.086106, 8.860768], + [-13.085707, 8.859755], + [-13.085772, 8.858959], + [-13.086457, 8.858117], + [-13.086823, 8.857945], + [-13.087056, 8.857638], + [-13.08734, 8.857073], + [-13.087374, 8.856907], + [-13.087203, 8.855842], + [-13.086831, 8.855282], + [-13.086822, 8.854633], + [-13.087359, 8.854207], + [-13.088056, 8.854452], + [-13.088241, 8.854132], + [-13.08825, 8.853402], + [-13.089627, 8.853682], + [-13.090974, 8.853967], + [-13.091096, 8.855513], + [-13.090181, 8.857183], + [-13.088367, 8.857304], + [-13.087232, 8.859271], + [-13.087057, 8.86013], + [-13.088874, 8.859367], + [-13.089387, 8.8604], + [-13.09068, 8.860665], + [-13.090293, 8.861924], + [-13.091452, 8.861699], + [-13.091454, 8.861441], + [-13.09353, 8.860679], + [-13.093019, 8.859389], + [-13.09397, 8.858921], + [-13.096511, 8.860897], + [-13.096579, 8.859253], + [-13.097196, 8.858387], + [-13.09672, 8.856586], + [-13.09702, 8.856039], + [-13.097186, 8.856078], + [-13.097234, 8.854312], + [-13.098746, 8.853678], + [-13.09951, 8.853047], + [-13.100747, 8.85273], + [-13.104568, 8.852729], + [-13.108851, 8.852686], + [-13.109583, 8.852661] + ] + ], + "type": "Polygon" + }, + "id": 493, + "properties": { + "cc:admin:id": ["89"], + "cc:oBld:total": 342, + "cc:pop:fifteen-to-twenty-four": 2843.6883853328263, + "cc:pop:grid3-total": 15282.752224430847, + "cc:pop:kontur-total": 16782.297350288, + "cc:pop:men": 7546.299983967664, + "cc:pop:sixty-plus": 881.6584451809518, + "cc:pop:total": 15993.370132079302, + "cc:pop:under-five": 2442.807490673105, + "cc:pop:women": 8447.07014811163, + "cc:pop:women-fiften-to-forty-nine": 4126.6090442339, + "cc:pop:wp-total": 12170.079047160641, + "cc:pop:wp-total-UN": 14111.332884373693, + "cc:id": "493", + "cc:Name": "Romando MCHP", + "cc:site": [-12.9873, 8.8628], + "user:parentName": "Mambolo", + "user:code": "OU_211263", + "user:orgUnitId": "FQ5CCuUKNLf", + "user:level": "4", + "user:parentId": "xGMGhjA3y6J" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.802025, 8.887858], + [-12.800772, 8.886605], + [-12.80165, 8.885696], + [-12.801576, 8.885521], + [-12.801115, 8.885418], + [-12.800326, 8.885917], + [-12.800129, 8.885962], + [-12.799803, 8.885637], + [-12.798892, 8.886067], + [-12.797917, 8.885417], + [-12.797082, 8.882083], + [-12.793025, 8.882082], + [-12.793151, 8.880604], + [-12.79268, 8.878592], + [-12.791773, 8.878439], + [-12.789454, 8.878745], + [-12.788807, 8.878731], + [-12.789582, 8.867083], + [-12.792082, 8.865416], + [-12.792082, 8.858179], + [-12.790417, 8.858178], + [-12.790416, 8.854583], + [-12.787082, 8.850417], + [-12.78559, 8.849989], + [-12.788675, 8.844647], + [-12.796487, 8.844646], + [-12.799168, 8.840003], + [-12.797083, 8.837917], + [-12.796537, 8.835735], + [-12.794899, 8.8371], + [-12.787899, 8.8407], + [-12.785799, 8.8412], + [-12.7795, 8.841899], + [-12.7765, 8.8427], + [-12.773799, 8.8445], + [-12.7682, 8.849799], + [-12.7651, 8.852099], + [-12.7613, 8.853899], + [-12.758499, 8.8555], + [-12.754499, 8.8572], + [-12.7503, 8.859599], + [-12.7464, 8.861499], + [-12.740599, 8.8659], + [-12.737299, 8.867299], + [-12.7265, 8.868099], + [-12.7231, 8.8694], + [-12.720999, 8.8711], + [-12.713699, 8.8786], + [-12.7116, 8.880499], + [-12.709299, 8.8819], + [-12.705699, 8.882699], + [-12.7023, 8.8826], + [-12.6999, 8.881999], + [-12.697199, 8.879899], + [-12.6931, 8.8774], + [-12.6898, 8.8742], + [-12.688, 8.871599], + [-12.687299, 8.869399], + [-12.686999, 8.866699], + [-12.6868, 8.8594], + [-12.686299, 8.857199], + [-12.685299, 8.855099], + [-12.683599, 8.853099], + [-12.681599, 8.8513], + [-12.6792, 8.8505], + [-12.677, 8.851], + [-12.6729, 8.8536], + [-12.670599, 8.857], + [-12.6681, 8.860299], + [-12.6661, 8.862899], + [-12.6634, 8.868199], + [-12.662004, 8.870039], + [-12.66625, 8.867917], + [-12.66875, 8.873749], + [-12.672916, 8.877082], + [-12.672523, 8.878264], + [-12.673265, 8.878913], + [-12.676255, 8.882291], + [-12.677071, 8.882677], + [-12.675669, 8.883903], + [-12.674576, 8.88493], + [-12.679582, 8.892082], + [-12.677083, 8.894583], + [-12.675884, 8.896981], + [-12.677344, 8.897292], + [-12.678749, 8.902916], + [-12.67875, 8.907916], + [-12.682916, 8.907917], + [-12.683194, 8.907892], + [-12.682839, 8.909026], + [-12.682651, 8.910095], + [-12.682872, 8.911568], + [-12.683089, 8.91204], + [-12.685286, 8.908235], + [-12.69297, 8.908235], + [-12.69375, 8.912917], + [-12.693749, 8.918749], + [-12.693091, 8.91922], + [-12.693229, 8.919328], + [-12.689713, 8.925418], + [-12.692599, 8.930416], + [-12.697916, 8.930417], + [-12.69875, 8.932082], + [-12.699582, 8.932917], + [-12.699582, 8.935416], + [-12.697917, 8.940417], + [-12.697917, 8.941431], + [-12.698412, 8.941407], + [-12.698749, 8.942083], + [-12.697083, 8.945417], + [-12.69875, 8.951249], + [-12.701019, 8.946715], + [-12.702255, 8.95019], + [-12.702985, 8.950904], + [-12.703787, 8.952091], + [-12.704997, 8.952301], + [-12.706275, 8.952301], + [-12.707345, 8.952046], + [-12.707487, 8.952108], + [-12.70375, 8.959582], + [-12.709582, 8.962082], + [-12.710417, 8.962083], + [-12.716249, 8.967916], + [-12.71875, 8.96875], + [-12.72125, 8.972082], + [-12.726249, 8.972083], + [-12.724583, 8.976249], + [-12.728251, 8.984318], + [-12.729427, 8.983684], + [-12.729429, 8.983685], + [-12.727917, 8.991249], + [-12.727917, 8.992083], + [-12.72875, 8.993749], + [-12.735416, 8.992917], + [-12.735416, 8.995741], + [-12.734959, 8.995727], + [-12.73375, 8.998749], + [-12.737916, 8.99875], + [-12.741249, 9.000416], + [-12.742082, 9.000417], + [-12.742083, 9.009582], + [-12.744582, 9.010417], + [-12.74639, 9.01403], + [-12.751264, 9.011713], + [-12.753119, 9.010537], + [-12.754703, 9.010079], + [-12.755552, 9.009612], + [-12.756523, 9.008705], + [-12.757239, 9.007639], + [-12.759283, 9.008048], + [-12.760558, 9.005369], + [-12.760925, 9.004054], + [-12.760715, 9.002499], + [-12.760138, 9.001893], + [-12.75949, 9.000148], + [-12.757723, 8.998747], + [-12.756042, 8.99612], + [-12.754419, 8.994748], + [-12.752917, 8.99625], + [-12.752917, 8.996865], + [-12.752915, 8.996866], + [-12.752419, 8.996491], + [-12.750581, 8.995514], + [-12.748507, 8.994874], + [-12.746031, 8.994417], + [-12.744849, 8.993318], + [-12.744395, 8.992463], + [-12.74393, 8.989992], + [-12.743422, 8.989394], + [-12.742399, 8.987113], + [-12.741901, 8.984459], + [-12.742118, 8.981235], + [-12.742565, 8.979523], + [-12.741192, 8.973973], + [-12.741253, 8.973091], + [-12.741988, 8.970542], + [-12.744437, 8.967673], + [-12.745138, 8.96717], + [-12.745454, 8.966713], + [-12.746214, 8.96616], + [-12.746889, 8.965899], + [-12.748498, 8.964621], + [-12.750957, 8.962192], + [-12.75325, 8.96074], + [-12.754048, 8.960453], + [-12.756173, 8.959192], + [-12.759558, 8.956497], + [-12.761755, 8.955769], + [-12.762639, 8.955648], + [-12.763055, 8.955698], + [-12.763636, 8.960341], + [-12.764041, 8.9602], + [-12.766956, 8.958107], + [-12.76714, 8.957114], + [-12.767666, 8.956516], + [-12.769092, 8.955635], + [-12.769775, 8.956084], + [-12.77961, 8.949024], + [-12.780872, 8.949282], + [-12.781607, 8.951488], + [-12.782615, 8.951466], + [-12.786111, 8.95053], + [-12.78908, 8.949406], + [-12.79024, 8.948449], + [-12.791313, 8.947118], + [-12.791819, 8.945599], + [-12.791941, 8.944698], + [-12.792833, 8.942609], + [-12.7927, 8.942006], + [-12.792745, 8.940668], + [-12.793533, 8.9386], + [-12.790254, 8.938131], + [-12.791628, 8.935635], + [-12.792193, 8.933444], + [-12.792224, 8.931325], + [-12.792967, 8.929957], + [-12.793146, 8.929264], + [-12.793072, 8.928809], + [-12.792372, 8.927925], + [-12.7914, 8.926251], + [-12.791401, 8.92625], + [-12.793006, 8.926249], + [-12.791807, 8.924497], + [-12.791568, 8.922805], + [-12.791658, 8.922467], + [-12.792581, 8.921893], + [-12.793697, 8.920864], + [-12.795053, 8.920775], + [-12.795812, 8.920422], + [-12.795842, 8.920025], + [-12.795098, 8.918922], + [-12.794829, 8.918216], + [-12.794308, 8.917759], + [-12.793758, 8.915759], + [-12.794115, 8.915214], + [-12.795008, 8.915493], + [-12.795172, 8.913287], + [-12.79486, 8.913197], + [-12.794963, 8.910564], + [-12.794814, 8.909652], + [-12.794233, 8.908489], + [-12.793683, 8.904841], + [-12.793608, 8.901088], + [-12.79053, 8.900574], + [-12.790675, 8.898632], + [-12.794114, 8.893511], + [-12.795039, 8.893098], + [-12.795857, 8.892451], + [-12.796989, 8.891142], + [-12.797145, 8.890865], + [-12.798039, 8.891311], + [-12.798254, 8.891172], + [-12.798198, 8.891391], + [-12.800369, 8.892476], + [-12.800578, 8.8922], + [-12.800578, 8.891495], + [-12.800102, 8.891053], + [-12.800489, 8.889965], + [-12.802008, 8.887875], + [-12.802025, 8.887858] + ] + ], + "type": "Polygon" + }, + "id": 494, + "properties": { + "cc:admin:id": ["13"], + "cc:oBld:total": 15, + "cc:pop:fifteen-to-twenty-four": 1505.5870507852665, + "cc:pop:grid3-total": 8388.528455460753, + "cc:pop:kontur-total": 8701.959004026636, + "cc:pop:men": 3975.7334188655796, + "cc:pop:sixty-plus": 458.9186654745843, + "cc:pop:total": 8384.651005518175, + "cc:pop:under-five": 1312.8354762862245, + "cc:pop:women": 4408.917586652594, + "cc:pop:women-fiften-to-forty-nine": 2194.596137452473, + "cc:pop:wp-total": 8643.541540792856, + "cc:pop:wp-total-UN": 10019.314381974384, + "cc:id": "494", + "cc:Name": "Romeni MCHP", + "cc:site": [-12.7202, 8.899], + "user:parentName": "Bureh Kasseh Maconteh", + "user:code": "OU_255047", + "user:orgUnitId": "GCbYmPqcOOP", + "user:level": "4", + "user:parentId": "TA7NvKjsn4A" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.528749, 8.35125], + [-12.517083, 8.345416], + [-12.518749, 8.337084], + [-12.51875, 8.334584], + [-12.51625, 8.332084], + [-12.505417, 8.32875], + [-12.50375, 8.328749], + [-12.499582, 8.332916], + [-12.492083, 8.332917], + [-12.490416, 8.33375], + [-12.480969, 8.33375], + [-12.480972, 8.33475], + [-12.481439, 8.335549], + [-12.480416, 8.337083], + [-12.474583, 8.340417], + [-12.474582, 8.344793], + [-12.46875, 8.344794], + [-12.468749, 8.348084], + [-12.464255, 8.348085], + [-12.461193, 8.353387], + [-12.461328, 8.353577], + [-12.461307, 8.354319], + [-12.462097, 8.355231], + [-12.462097, 8.355232], + [-12.45625, 8.354584], + [-12.454583, 8.354584], + [-12.45125, 8.357917], + [-12.450416, 8.359583], + [-12.440417, 8.357084], + [-12.432917, 8.359583], + [-12.434582, 8.364583], + [-12.43125, 8.364584], + [-12.430103, 8.366303], + [-12.430101, 8.366303], + [-12.42993, 8.3661], + [-12.429822, 8.36601], + [-12.424582, 8.371249], + [-12.42125, 8.371249], + [-12.421249, 8.370417], + [-12.41625, 8.369583], + [-12.413749, 8.367917], + [-12.40125, 8.369583], + [-12.399583, 8.367083], + [-12.399582, 8.359584], + [-12.397083, 8.357917], + [-12.396249, 8.355417], + [-12.394583, 8.35625], + [-12.394582, 8.360416], + [-12.38625, 8.360417], + [-12.38375, 8.362084], + [-12.382917, 8.36375], + [-12.382917, 8.365416], + [-12.386249, 8.367083], + [-12.387274, 8.368619], + [-12.39634, 8.36884], + [-12.397917, 8.370417], + [-12.39875, 8.374583], + [-12.402916, 8.374583], + [-12.404582, 8.372084], + [-12.404929, 8.372084], + [-12.407432, 8.375746], + [-12.412516, 8.382324], + [-12.41272, 8.38258], + [-12.413408, 8.3829], + [-12.41401, 8.38399], + [-12.414765, 8.383665], + [-12.415667, 8.383535], + [-12.416499, 8.383159], + [-12.419302, 8.381254], + [-12.420646, 8.380533], + [-12.421175, 8.380342], + [-12.422916, 8.382084], + [-12.422917, 8.384583], + [-12.426249, 8.38375], + [-12.426309, 8.383809], + [-12.425783, 8.385182], + [-12.427916, 8.38625], + [-12.427917, 8.388749], + [-12.435416, 8.387917], + [-12.43625, 8.392916], + [-12.442082, 8.392917], + [-12.442917, 8.39375], + [-12.454582, 8.393749], + [-12.454583, 8.389681], + [-12.458749, 8.389681], + [-12.458749, 8.389682], + [-12.457965, 8.390774], + [-12.457519, 8.391947], + [-12.456838, 8.392615], + [-12.456747, 8.392902], + [-12.456947, 8.393501], + [-12.45875, 8.394583], + [-12.467082, 8.392917], + [-12.467917, 8.394584], + [-12.467917, 8.402083], + [-12.476249, 8.402084], + [-12.47625, 8.40375], + [-12.477083, 8.405416], + [-12.477916, 8.40625], + [-12.477917, 8.414322], + [-12.478113, 8.41446], + [-12.479743, 8.414766], + [-12.480427, 8.414583], + [-12.484582, 8.414584], + [-12.485082, 8.413835], + [-12.485988, 8.413642], + [-12.487925, 8.413785], + [-12.488446, 8.413586], + [-12.486649, 8.40875], + [-12.487916, 8.408749], + [-12.492083, 8.405416], + [-12.492587, 8.403903], + [-12.4914, 8.403233], + [-12.492083, 8.397083], + [-12.494583, 8.395416], + [-12.499582, 8.39375], + [-12.500417, 8.393749], + [-12.505417, 8.39125], + [-12.508749, 8.391249], + [-12.509583, 8.386249], + [-12.517082, 8.383749], + [-12.51625, 8.379584], + [-12.517917, 8.379583], + [-12.521249, 8.37625], + [-12.522083, 8.37375], + [-12.524582, 8.371249], + [-12.520417, 8.362917], + [-12.519583, 8.359583], + [-12.528749, 8.35125] + ] + ], + "type": "Polygon" + }, + "id": 495, + "properties": { + "cc:admin:id": ["149"], + "cc:oBld:total": 18, + "cc:pop:fifteen-to-twenty-four": 1127.0466657143236, + "cc:pop:grid3-total": 4637.3642938867415, + "cc:pop:kontur-total": 7202.58697679179, + "cc:pop:men": 2809.532559977036, + "cc:pop:sixty-plus": 379.04666263937577, + "cc:pop:total": 6060.951922788082, + "cc:pop:under-five": 970.4464788948097, + "cc:pop:women": 3251.4193628110443, + "cc:pop:women-fiften-to-forty-nine": 1597.772194458985, + "cc:pop:wp-total": 5118.9724550883175, + "cc:pop:wp-total-UN": 5942.15003790762, + "cc:id": "495", + "cc:Name": "Ronietta MCHP", + "cc:site": [-12.4601, 8.36326], + "user:parentName": "Yoni", + "user:code": "OU_268241", + "user:orgUnitId": "B9RxRfRUi2R", + "user:level": "4", + "user:parentId": "NNE0YMCDZkO" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.99186, 8.554362], + [-11.987916, 8.550417], + [-11.981249, 8.549583], + [-11.977917, 8.546249], + [-11.977916, 8.541634], + [-11.977302, 8.541841], + [-11.975198, 8.541841], + [-11.973547, 8.542101], + [-11.971633, 8.54255], + [-11.969583, 8.537084], + [-11.974582, 8.52625], + [-11.973749, 8.524584], + [-11.965417, 8.524584], + [-11.962082, 8.527916], + [-11.95875, 8.529584], + [-11.958749, 8.532917], + [-11.956249, 8.534583], + [-11.950171, 8.536241], + [-11.946796, 8.530397], + [-11.938983, 8.530396], + [-11.938937, 8.530314], + [-11.939583, 8.527084], + [-11.942592, 8.524675], + [-11.935155, 8.524674], + [-11.933239, 8.521356], + [-11.933749, 8.51625], + [-11.930416, 8.514584], + [-11.924583, 8.514584], + [-11.917917, 8.518749], + [-11.917082, 8.523749], + [-11.908749, 8.524583], + [-11.90375, 8.519583], + [-11.903749, 8.510417], + [-11.90125, 8.507917], + [-11.900416, 8.51125], + [-11.897916, 8.513749], + [-11.896249, 8.513749], + [-11.890417, 8.51125], + [-11.888597, 8.507614], + [-11.888134, 8.507896], + [-11.886264, 8.508454], + [-11.882573, 8.510236], + [-11.877406, 8.51148], + [-11.876788, 8.511931], + [-11.875154, 8.513681], + [-11.87495, 8.513744], + [-11.872977, 8.514279], + [-11.871824, 8.514922], + [-11.869877, 8.515635], + [-11.86439, 8.51688], + [-11.861589, 8.518005], + [-11.860246, 8.517937], + [-11.859583, 8.52125], + [-11.860246, 8.524571], + [-11.856312, 8.519345], + [-11.854094, 8.519345], + [-11.850187, 8.526109], + [-11.847186, 8.526109], + [-11.845879, 8.524368], + [-11.845654, 8.52444], + [-11.845234, 8.524881], + [-11.843416, 8.528031], + [-11.845315, 8.531321], + [-11.845314, 8.531323], + [-11.844582, 8.53125], + [-11.834583, 8.53125], + [-11.832916, 8.532083], + [-11.83125, 8.532084], + [-11.824583, 8.538749], + [-11.818799, 8.537304], + [-11.818082, 8.539411], + [-11.818205, 8.540089], + [-11.819972, 8.544257], + [-11.820601, 8.546119], + [-11.820481, 8.547246], + [-11.819862, 8.548729], + [-11.819536, 8.549401], + [-11.8221, 8.5508], + [-11.8253, 8.5521], + [-11.829599, 8.554499], + [-11.8338, 8.5565], + [-11.839499, 8.560999], + [-11.8448, 8.5638], + [-11.8477, 8.566], + [-11.852399, 8.570399], + [-11.855199, 8.572599], + [-11.8606, 8.5754], + [-11.8659, 8.5796], + [-11.870499, 8.581899], + [-11.874899, 8.584299], + [-11.8781, 8.5856], + [-11.882399, 8.587999], + [-11.886599, 8.590099], + [-11.8926, 8.5947], + [-11.900499, 8.598699], + [-11.903, 8.5995], + [-11.9081, 8.6006], + [-11.912599, 8.602799], + [-11.9158, 8.6041], + [-11.920099, 8.606599], + [-11.924299, 8.608699], + [-11.929999, 8.613099], + [-11.9353, 8.6158], + [-11.941999, 8.621099], + [-11.9446, 8.616599], + [-11.947, 8.613799], + [-11.949899, 8.6109], + [-11.953799, 8.608], + [-11.956999, 8.6066], + [-11.958999, 8.6052], + [-11.962199, 8.6023], + [-11.9642, 8.599599], + [-11.966599, 8.593799], + [-11.9666, 8.5914], + [-11.9638, 8.5852], + [-11.9617, 8.581899], + [-11.9611, 8.579], + [-11.962, 8.5767], + [-11.964299, 8.5744], + [-11.966399, 8.5738], + [-11.9691, 8.5736], + [-11.9788, 8.573799], + [-11.982299, 8.573299], + [-11.984699, 8.5716], + [-11.986399, 8.568799], + [-11.987199, 8.5646], + [-11.9879, 8.562199], + [-11.990999, 8.5555], + [-11.99186, 8.554362] + ] + ], + "type": "Polygon" + }, + "id": 496, + "properties": { + "cc:admin:id": ["36"], + "cc:oBld:total": 1139, + "cc:pop:fifteen-to-twenty-four": 2355.607909060791, + "cc:pop:grid3-total": 9323.229441270742, + "cc:pop:kontur-total": 13449.98295473484, + "cc:pop:men": 5911.615561175354, + "cc:pop:sixty-plus": 830.6700477909109, + "cc:pop:total": 12836.175476712546, + "cc:pop:under-five": 2025.2445424400855, + "cc:pop:women": 6924.559915537194, + "cc:pop:women-fiften-to-forty-nine": 3357.918387820159, + "cc:pop:wp-total": 9693.751038872177, + "cc:pop:wp-total-UN": 11231.795793328267, + "cc:id": "496", + "cc:Name": "Rosengbeh MCHP", + "cc:site": [-11.9275, 8.5859], + "user:parentName": "Tane", + "user:code": "OU_268224", + "user:orgUnitId": "x3ti3t9eOuX", + "user:level": "4", + "user:parentId": "xhyjU2SVewz" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.547916, 8.81125], + [-12.542633, 8.809929], + [-12.54268, 8.809866], + [-12.540967, 8.805871], + [-12.540116, 8.806279], + [-12.540114, 8.806278], + [-12.537917, 8.800417], + [-12.537916, 8.800185], + [-12.536714, 8.800921], + [-12.536276, 8.799909], + [-12.535312, 8.798882], + [-12.535187, 8.797598], + [-12.534129, 8.796098], + [-12.533563, 8.795753], + [-12.532524, 8.794324], + [-12.532239, 8.793633], + [-12.532962, 8.793241], + [-12.533485, 8.792892], + [-12.535539, 8.790549], + [-12.536523, 8.789821], + [-12.536326, 8.789418], + [-12.53716, 8.789097], + [-12.537417, 8.788595], + [-12.537085, 8.787586], + [-12.536099, 8.787198], + [-12.535451, 8.788394], + [-12.53545, 8.788395], + [-12.53337, 8.786152], + [-12.532906, 8.785045], + [-12.532877, 8.782888], + [-12.5332, 8.781261], + [-12.533185, 8.780561], + [-12.532685, 8.779298], + [-12.532412, 8.777917], + [-12.535416, 8.777916], + [-12.535416, 8.775965], + [-12.5289, 8.778999], + [-12.524599, 8.7814], + [-12.5162, 8.785299], + [-12.5103, 8.786699], + [-12.504999, 8.7889], + [-12.499099, 8.7903], + [-12.4935, 8.793299], + [-12.4917, 8.794799], + [-12.4884, 8.8007], + [-12.4877, 8.804399], + [-12.4884, 8.8079], + [-12.4926, 8.8162], + [-12.495, 8.8192], + [-12.499199, 8.823399], + [-12.501499, 8.825099], + [-12.5037, 8.8262], + [-12.507, 8.8267], + [-12.514799, 8.826899], + [-12.517099, 8.8274], + [-12.5204, 8.8293], + [-12.5242, 8.8333], + [-12.527199, 8.839599], + [-12.527599, 8.841899], + [-12.526, 8.847599], + [-12.525799, 8.8504], + [-12.5257, 8.8563], + [-12.525899, 8.875199], + [-12.5258, 8.8753], + [-12.526732, 8.876541], + [-12.531901, 8.87769], + [-12.531923, 8.877621], + [-12.532282, 8.877002], + [-12.532671, 8.876731], + [-12.533262, 8.875547], + [-12.533348, 8.874579], + [-12.533165, 8.874171], + [-12.533023, 8.871555], + [-12.533127, 8.871123], + [-12.533776, 8.870721], + [-12.535447, 8.867837], + [-12.537312, 8.865528], + [-12.538271, 8.865123], + [-12.540462, 8.86286], + [-12.542681, 8.862396], + [-12.543471, 8.861954], + [-12.543955, 8.861394], + [-12.545221, 8.860748], + [-12.545228, 8.86074], + [-12.544582, 8.860416], + [-12.542916, 8.855417], + [-12.542082, 8.855416], + [-12.538749, 8.854582], + [-12.536734, 8.849207], + [-12.536677, 8.8492], + [-12.53375, 8.840417], + [-12.53375, 8.839583], + [-12.535417, 8.839582], + [-12.542082, 8.834582], + [-12.537917, 8.82625], + [-12.542917, 8.82375], + [-12.547082, 8.823749], + [-12.545417, 8.820416], + [-12.547916, 8.81125] + ] + ], + "type": "Polygon" + }, + "id": 497, + "properties": { + "cc:admin:id": ["130"], + "cc:oBld:total": 83, + "cc:pop:fifteen-to-twenty-four": 955.5461047379281, + "cc:pop:grid3-total": 2541.634314189818, + "cc:pop:kontur-total": 5481.5226175824, + "cc:pop:men": 2380.723469757066, + "cc:pop:sixty-plus": 329.1221960221962, + "cc:pop:total": 5127.883397805993, + "cc:pop:under-five": 796.54807676331, + "cc:pop:women": 2747.1599280489254, + "cc:pop:women-fiften-to-forty-nine": 1316.4887840887848, + "cc:pop:wp-total": 4156.685771680057, + "cc:pop:wp-total-UN": 4822.599811785422, + "cc:id": "497", + "cc:Name": "Rosint Buya MCHP", + "cc:site": [-12.4929, 8.8152], + "user:parentName": "Buya Romende", + "user:code": "OU_255029", + "user:orgUnitId": "el8sgzyHuEe", + "user:level": "4", + "user:parentId": "Pc3JTyqnsmL" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.216954, 8.488087], + [-13.216297, 8.4879], + [-13.215192, 8.487706], + [-13.215067, 8.488289], + [-13.214869, 8.488263], + [-13.214479, 8.488178], + [-13.214116, 8.488102], + [-13.21452, 8.486578], + [-13.214199, 8.486365], + [-13.213881, 8.486181], + [-13.214262, 8.485305], + [-13.214274, 8.485269], + [-13.212596, 8.484424], + [-13.212366, 8.48503], + [-13.211751, 8.484907], + [-13.211669, 8.484206], + [-13.211909, 8.483762], + [-13.212214, 8.483066], + [-13.212045, 8.483038], + [-13.211945, 8.483026], + [-13.21176, 8.483039], + [-13.211614, 8.483309], + [-13.211119, 8.484529], + [-13.209904, 8.485325], + [-13.208766, 8.486294], + [-13.208475, 8.486563], + [-13.208356, 8.486681], + [-13.208028, 8.48709], + [-13.207926, 8.488492], + [-13.207828, 8.488567], + [-13.207466, 8.488556], + [-13.206859, 8.488556], + [-13.206495, 8.488574], + [-13.20474, 8.488615], + [-13.204771, 8.489005], + [-13.204822, 8.489449], + [-13.204789, 8.489921], + [-13.204085, 8.490256], + [-13.204351, 8.490336], + [-13.205743, 8.490714], + [-13.206057, 8.490931], + [-13.207107, 8.491664], + [-13.20742, 8.49211], + [-13.215399, 8.494599], + [-13.216866, 8.493476], + [-13.216387, 8.493482], + [-13.216372, 8.493219], + [-13.216284, 8.492806], + [-13.215703, 8.49264], + [-13.215466, 8.492364], + [-13.215717, 8.49148], + [-13.21634, 8.489753], + [-13.216356, 8.489693], + [-13.216553, 8.489137], + [-13.216769, 8.488564], + [-13.216954, 8.488087] + ] + ], + "type": "Polygon" + }, + "id": 498, + "properties": { + "cc:admin:id": ["26"], + "cc:oBld:total": 1522, + "cc:pop:fifteen-to-twenty-four": 4298.7346321432615, + "cc:pop:grid3-total": 20728.395303981903, + "cc:pop:kontur-total": 10442, + "cc:pop:men": 9374.661626487692, + "cc:pop:sixty-plus": 1461.30181486782, + "cc:pop:total": 18737.208867981913, + "cc:pop:under-five": 2164.2028255826235, + "cc:pop:women": 9362.547241494223, + "cc:pop:women-fiften-to-forty-nine": 5019.243761842364, + "cc:pop:wp-total": 17387.65270624043, + "cc:pop:wp-total-UN": 20157.34785344336, + "cc:id": "498", + "cc:Name": "Ross Road Health Centre", + "cc:site": [-13.2104, 8.489], + "user:parentName": "Freetown", + "user:code": "OU_278318", + "user:orgUnitId": "bPqP6eRfkyn", + "user:level": "4", + "user:parentId": "C9uduqDZr9d" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.773607, 8.195904], + [-12.772989, 8.195582], + [-12.771719, 8.19446], + [-12.771208, 8.193808], + [-12.770416, 8.191971], + [-12.769536, 8.191243], + [-12.768033, 8.190661], + [-12.765069, 8.188747], + [-12.763618, 8.186679], + [-12.763094, 8.185585], + [-12.761185, 8.183457], + [-12.757759, 8.180993], + [-12.760411, 8.177939], + [-12.760533, 8.177855], + [-12.757916, 8.174584], + [-12.755416, 8.17375], + [-12.750417, 8.173749], + [-12.751249, 8.169584], + [-12.745417, 8.164584], + [-12.744583, 8.16375], + [-12.743749, 8.160417], + [-12.740636, 8.159171], + [-12.7407, 8.159031], + [-12.740581, 8.158044], + [-12.74007, 8.157268], + [-12.740333, 8.156496], + [-12.740469, 8.154953], + [-12.739693, 8.154947], + [-12.739443, 8.15366], + [-12.739701, 8.15366], + [-12.739699, 8.154174], + [-12.739956, 8.154176], + [-12.740221, 8.153148], + [-12.740736, 8.153407], + [-12.74074, 8.152893], + [-12.741256, 8.152895], + [-12.741347, 8.152469], + [-12.740484, 8.152633], + [-12.740483, 8.152632], + [-12.740656, 8.152288], + [-12.741262, 8.151865], + [-12.741265, 8.151351], + [-12.74075, 8.15109], + [-12.740525, 8.15175], + [-12.740216, 8.151808], + [-12.739975, 8.150828], + [-12.739457, 8.150953], + [-12.738301, 8.150046], + [-12.737917, 8.149142], + [-12.73765, 8.149006], + [-12.737163, 8.14764], + [-12.738185, 8.14734], + [-12.738702, 8.147342], + [-12.738963, 8.146958], + [-12.737412, 8.147077], + [-12.737029, 8.147265], + [-12.734582, 8.140417], + [-12.730416, 8.141249], + [-12.730271, 8.141176], + [-12.730208, 8.140985], + [-12.731759, 8.140735], + [-12.73167, 8.139584], + [-12.731249, 8.139583], + [-12.730295, 8.138629], + [-12.730218, 8.138923], + [-12.729185, 8.138918], + [-12.729182, 8.139432], + [-12.727116, 8.139164], + [-12.727118, 8.138649], + [-12.726344, 8.138386], + [-12.725446, 8.137352], + [-12.725451, 8.136579], + [-12.725839, 8.136194], + [-12.728167, 8.13595], + [-12.728304, 8.135747], + [-12.728234, 8.13554], + [-12.727395, 8.135429], + [-12.727138, 8.135043], + [-12.725086, 8.134985], + [-12.724557, 8.134256], + [-12.72404, 8.134252], + [-12.723661, 8.132961], + [-12.723789, 8.131691], + [-12.724578, 8.130649], + [-12.725143, 8.13016], + [-12.724803, 8.128798], + [-12.722961, 8.130845], + [-12.721277, 8.132695], + [-12.719865, 8.13471], + [-12.719365, 8.13575], + [-12.718763, 8.136084], + [-12.717361, 8.136632], + [-12.715604, 8.136789], + [-12.714282, 8.136605], + [-12.712195, 8.13572], + [-12.710643, 8.135088], + [-12.708045, 8.134195], + [-12.70549, 8.134174], + [-12.703391, 8.134381], + [-12.701791, 8.134256], + [-12.700212, 8.133653], + [-12.697595, 8.131888], + [-12.695807, 8.130391], + [-12.69399, 8.129161], + [-12.693199, 8.128735], + [-12.693404, 8.128117], + [-12.690198, 8.126538], + [-12.687729, 8.126251], + [-12.682977, 8.125967], + [-12.680016, 8.126019], + [-12.678899, 8.1262], + [-12.676952, 8.12685], + [-12.676198, 8.127551], + [-12.674964, 8.128606], + [-12.675104, 8.129168], + [-12.674224, 8.129785], + [-12.673056, 8.130381], + [-12.671938, 8.131031], + [-12.670563, 8.131965], + [-12.669783, 8.132719], + [-12.668484, 8.133083], + [-12.665731, 8.133161], + [-12.66168, 8.13329], + [-12.659991, 8.133654], + [-12.658666, 8.134278], + [-12.657343, 8.135056], + [-12.656616, 8.135966], + [-12.656512, 8.136823], + [-12.656641, 8.138329], + [-12.656251, 8.140745], + [-12.655836, 8.143056], + [-12.65588, 8.144926], + [-12.655733, 8.145055], + [-12.656003, 8.145287], + [-12.655326, 8.148543], + [-12.654197, 8.15137], + [-12.65333, 8.151717], + [-12.653369, 8.151367], + [-12.652412, 8.151455], + [-12.650786, 8.150964], + [-12.648979, 8.150696], + [-12.647174, 8.149785], + [-12.643556, 8.149635], + [-12.643509, 8.149737], + [-12.645416, 8.152917], + [-12.646249, 8.161249], + [-12.639583, 8.160417], + [-12.638749, 8.161249], + [-12.633733, 8.160623], + [-12.633723, 8.16065], + [-12.63335, 8.161351], + [-12.632927, 8.162633], + [-12.633194, 8.166368], + [-12.633167, 8.166532], + [-12.630417, 8.167083], + [-12.625417, 8.162917], + [-12.624582, 8.15875], + [-12.622083, 8.15875], + [-12.621249, 8.165417], + [-12.61625, 8.169583], + [-12.615352, 8.169484], + [-12.612776, 8.169484], + [-12.608868, 8.176249], + [-12.60125, 8.17625], + [-12.601249, 8.178749], + [-12.597917, 8.179584], + [-12.594583, 8.18375], + [-12.594583, 8.192916], + [-12.597916, 8.197084], + [-12.597196, 8.205005], + [-12.597194, 8.205006], + [-12.592225, 8.202025], + [-12.590799, 8.2054], + [-12.590199, 8.2081], + [-12.5897, 8.212899], + [-12.589, 8.215699], + [-12.587099, 8.2202], + [-12.586399, 8.2239], + [-12.5862, 8.2289], + [-12.586399, 8.236999], + [-12.587, 8.240899], + [-12.5889, 8.2443], + [-12.594299, 8.249799], + [-12.596599, 8.252799], + [-12.5977, 8.2555], + [-12.597999, 8.2584], + [-12.597899, 8.2614], + [-12.597299, 8.2642], + [-12.5952, 8.268999], + [-12.6021, 8.274999], + [-12.6053, 8.2764], + [-12.6096, 8.2788], + [-12.6128, 8.2801], + [-12.6185, 8.282699], + [-12.6226, 8.2832], + [-12.6282, 8.283199], + [-12.633999, 8.2827], + [-12.639799, 8.2803], + [-12.6456, 8.278799], + [-12.648799, 8.2771], + [-12.653099, 8.2737], + [-12.6551, 8.272699], + [-12.6572, 8.272099], + [-12.662599, 8.2716], + [-12.665099, 8.2711], + [-12.669599, 8.269], + [-12.676299, 8.2673], + [-12.6808, 8.265399], + [-12.6834, 8.264699], + [-12.688699, 8.2642], + [-12.691299, 8.2636], + [-12.695699, 8.2614], + [-12.6988, 8.260099], + [-12.7032, 8.257899], + [-12.7067, 8.257199], + [-12.714799, 8.2569], + [-12.717399, 8.256299], + [-12.719999, 8.254299], + [-12.721799, 8.2511], + [-12.724399, 8.2455], + [-12.725399, 8.2415], + [-12.7263, 8.2396], + [-12.729199, 8.2372], + [-12.731199, 8.2349], + [-12.7344, 8.229399], + [-12.738, 8.225799], + [-12.7402, 8.224199], + [-12.7441, 8.222299], + [-12.7464, 8.220599], + [-12.7492, 8.217999], + [-12.757399, 8.2097], + [-12.761299, 8.2064], + [-12.7668, 8.203399], + [-12.771599, 8.1987], + [-12.773607, 8.195904] + ] + ], + "type": "Polygon" + }, + "id": 499, + "properties": { + "cc:admin:id": ["12"], + "cc:oBld:total": 1143, + "cc:pop:fifteen-to-twenty-four": 2679.277010255618, + "cc:pop:grid3-total": 18080.168560361133, + "cc:pop:kontur-total": 14959.037904795692, + "cc:pop:men": 6727.150573746907, + "cc:pop:sixty-plus": 940.6996502047965, + "cc:pop:total": 14387.784255779703, + "cc:pop:under-five": 2453.8614740627813, + "cc:pop:women": 7660.633682032781, + "cc:pop:women-fiften-to-forty-nine": 3627.957261691329, + "cc:pop:wp-total": 12312.313697959402, + "cc:pop:wp-total-UN": 14296.85776884697, + "cc:id": "499", + "cc:Name": "Rotifunk CHC", + "cc:site": [-12.6772, 8.2282], + "user:parentName": "Bumpeh", + "user:code": "OU_247032", + "user:orgUnitId": "gUPhNWkSXvD", + "user:level": "4", + "user:parentId": "nOYt1LtFSyU" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.606752, 7.219024], + [-11.606299, 7.218399], + [-11.603999, 7.211299], + [-11.601999, 7.206799], + [-11.601399, 7.204099], + [-11.600799, 7.199199], + [-11.600099, 7.196499], + [-11.5978, 7.1911], + [-11.597299, 7.188099], + [-11.5971, 7.185099], + [-11.5972, 7.177899], + [-11.5977, 7.174999], + [-11.5999, 7.169699], + [-11.600399, 7.166299], + [-11.599899, 7.1628], + [-11.5978, 7.1584], + [-11.596999, 7.154599], + [-11.5967, 7.148499], + [-11.5967, 7.1298], + [-11.5963, 7.1248], + [-11.595599, 7.121899], + [-11.593599, 7.117499], + [-11.592799, 7.113699], + [-11.592499, 7.107599], + [-11.592199, 7.066499], + [-11.592099, 7.063399], + [-11.5915, 7.0596], + [-11.589199, 7.054099], + [-11.587599, 7.048299], + [-11.585299, 7.042999], + [-11.5835, 7.0363], + [-11.581399, 7.031799], + [-11.580699, 7.027999], + [-11.579899, 7.019699], + [-11.579099, 7.016799], + [-11.577499, 7.013199], + [-11.575599, 7.006499], + [-11.5734, 7.001], + [-11.571999, 6.992699], + [-11.567099, 6.981899], + [-11.5598, 6.9695], + [-11.5548, 6.979799], + [-11.5486, 6.989499], + [-11.5471, 6.992799], + [-11.5455, 6.998299], + [-11.543799, 7.0029], + [-11.543099, 7.0066], + [-11.5422, 7.014399], + [-11.5411, 7.017999], + [-11.5375, 7.023599], + [-11.5361, 7.027199], + [-11.5355, 7.032099], + [-11.5357, 7.0359], + [-11.5362, 7.0386], + [-11.5388, 7.0442], + [-11.539499, 7.0481], + [-11.539199, 7.052599], + [-11.537899, 7.055899], + [-11.534, 7.060799], + [-11.5328, 7.063199], + [-11.5312, 7.069099], + [-11.529199, 7.074], + [-11.5289, 7.0778], + [-11.5294, 7.0803], + [-11.5318, 7.0861], + [-11.5324, 7.0903], + [-11.532699, 7.097999], + [-11.533399, 7.102099], + [-11.535799, 7.107899], + [-11.5363, 7.1107], + [-11.5366, 7.1156], + [-11.536799, 7.133299], + [-11.536699, 7.1362], + [-11.536, 7.139499], + [-11.535099, 7.1415], + [-11.530699, 7.1473], + [-11.528199, 7.1519], + [-11.524899, 7.1557], + [-11.5188, 7.1605], + [-11.5164, 7.164399], + [-11.515398, 7.166702], + [-11.5139, 7.172499], + [-11.5128, 7.174899], + [-11.5095, 7.179199], + [-11.5079, 7.182399], + [-11.506499, 7.1883], + [-11.5046, 7.192699], + [-11.5035, 7.196599], + [-11.5022, 7.198699], + [-11.4954, 7.201499], + [-11.489899, 7.2053], + [-11.4861, 7.2085], + [-11.486, 7.211799], + [-11.4898, 7.217099], + [-11.4921, 7.218199], + [-11.497199, 7.218599], + [-11.499599, 7.219299], + [-11.503099, 7.222199], + [-11.506699, 7.228999], + [-11.507099, 7.2325], + [-11.502965, 7.240854], + [-11.50361, 7.241479], + [-11.505199, 7.242491], + [-11.505854, 7.242662], + [-11.50592, 7.243642], + [-11.506306, 7.244059], + [-11.506198, 7.244485], + [-11.505716, 7.24489], + [-11.506198, 7.245519], + [-11.505802, 7.247139], + [-11.504931, 7.248087], + [-11.504276, 7.248099], + [-11.503996, 7.248365], + [-11.504013, 7.248513], + [-11.506722, 7.248513], + [-11.50625, 7.248112], + [-11.506357, 7.247542], + [-11.507157, 7.247397], + [-11.507855, 7.247003], + [-11.507996, 7.246742], + [-11.508907, 7.246428], + [-11.508908, 7.246429], + [-11.508866, 7.246587], + [-11.509053, 7.246646], + [-11.509119, 7.246379], + [-11.510021, 7.246075], + [-11.510317, 7.245799], + [-11.511267, 7.245761], + [-11.511772, 7.245048], + [-11.51207, 7.244999], + [-11.512308, 7.24459], + [-11.512554, 7.24434], + [-11.512492, 7.24427], + [-11.513375, 7.242741], + [-11.513376, 7.242742], + [-11.513484, 7.24355], + [-11.513909, 7.243874], + [-11.514227, 7.243694], + [-11.513939, 7.241795], + [-11.513933, 7.241774], + [-11.513949, 7.241748], + [-11.514877, 7.241748], + [-11.515138, 7.242418], + [-11.515904, 7.244747], + [-11.515468, 7.246501], + [-11.515605, 7.247378], + [-11.515814, 7.24779], + [-11.517964, 7.250213], + [-11.518192, 7.250891], + [-11.51821, 7.25262], + [-11.51807, 7.25322], + [-11.518219, 7.253871], + [-11.518446, 7.253758], + [-11.51875, 7.253191], + [-11.518652, 7.25299], + [-11.518957, 7.252506], + [-11.518714, 7.252293], + [-11.51893, 7.252197], + [-11.519764, 7.254342], + [-11.52037, 7.253959], + [-11.521019, 7.253814], + [-11.520677, 7.253015], + [-11.520678, 7.253014], + [-11.523919, 7.253013], + [-11.527559, 7.246709], + [-11.527648, 7.246951], + [-11.528636, 7.248563], + [-11.529892, 7.249733], + [-11.530399, 7.250467], + [-11.532856, 7.2512], + [-11.534389, 7.251847], + [-11.534902, 7.252117], + [-11.537917, 7.244584], + [-11.547916, 7.247083], + [-11.549583, 7.248749], + [-11.55625, 7.245417], + [-11.566249, 7.243749], + [-11.566249, 7.242917], + [-11.565416, 7.242083], + [-11.564583, 7.237916], + [-11.565417, 7.22875], + [-11.565916, 7.228251], + [-11.572213, 7.22825], + [-11.574103, 7.224979], + [-11.579573, 7.226802], + [-11.57763, 7.223435], + [-11.581536, 7.21667], + [-11.582578, 7.21667], + [-11.584983, 7.218692], + [-11.586108, 7.219287], + [-11.587378, 7.220362], + [-11.588303, 7.220882], + [-11.588848, 7.221419], + [-11.587917, 7.223749], + [-11.587959, 7.224218], + [-11.595546, 7.224218], + [-11.599453, 7.217453], + [-11.602452, 7.217453], + [-11.606185, 7.221185], + [-11.606414, 7.219611], + [-11.606752, 7.219024] + ] + ], + "type": "Polygon" + }, + "id": 500, + "properties": { + "cc:admin:id": ["27"], + "cc:oBld:total": 669, + "cc:pop:fifteen-to-twenty-four": 2637.8183598845562, + "cc:pop:grid3-total": 8922.585430837544, + "cc:pop:kontur-total": 14728.58640035529, + "cc:pop:men": 7015.241345367375, + "cc:pop:sixty-plus": 979.1820657666699, + "cc:pop:total": 14460.634596137654, + "cc:pop:under-five": 2439.5154227476496, + "cc:pop:women": 7445.39325077028, + "cc:pop:women-fiften-to-forty-nine": 3583.2820693929048, + "cc:pop:wp-total": 11178.7562163595, + "cc:pop:wp-total-UN": 12964.054544965213, + "cc:id": "500", + "cc:Name": "Saama MCHP", + "cc:site": [-11.5565, 7.2076], + "user:parentName": "Galliness Perri", + "user:code": "OU_260427", + "user:orgUnitId": "WZ8PTx8qQlE", + "user:level": "4", + "user:parentId": "eNtRuQrrZeo" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.8973, 7.433299], + [-11.897299, 7.4281], + [-11.895999, 7.4252], + [-11.892999, 7.4223], + [-11.887, 7.42], + [-11.8836, 7.4177], + [-11.8804, 7.413899], + [-11.879199, 7.410699], + [-11.878599, 7.406799], + [-11.8775, 7.3933], + [-11.8754, 7.3861], + [-11.8751, 7.382199], + [-11.8759, 7.377099], + [-11.8841, 7.362499], + [-11.885199, 7.358599], + [-11.8848, 7.3546], + [-11.882899, 7.348899], + [-11.877199, 7.340799], + [-11.870399, 7.33], + [-11.8649, 7.330199], + [-11.862199, 7.3306], + [-11.859799, 7.3315], + [-11.856999, 7.333], + [-11.853799, 7.3344], + [-11.849599, 7.3368], + [-11.845699, 7.3385], + [-11.8406, 7.342], + [-11.8385, 7.344899], + [-11.835999, 7.3471], + [-11.8302, 7.350299], + [-11.8256, 7.353999], + [-11.8236, 7.355399], + [-11.820399, 7.3568], + [-11.816099, 7.3592], + [-11.812899, 7.3606], + [-11.810899, 7.3619], + [-11.806999, 7.3652], + [-11.804899, 7.3665], + [-11.801099, 7.3684], + [-11.797799, 7.371], + [-11.7904, 7.378399], + [-11.7871, 7.381099], + [-11.7832, 7.382899], + [-11.7789, 7.385199], + [-11.774599, 7.3872], + [-11.7712, 7.390199], + [-11.7691, 7.392899], + [-11.7673, 7.396799], + [-11.765499, 7.3995], + [-11.762499, 7.4028], + [-11.7527, 7.412699], + [-11.7502, 7.415999], + [-11.746599, 7.4235], + [-11.745999, 7.4262], + [-11.7458, 7.432999], + [-11.746299, 7.439699], + [-11.7472, 7.4423], + [-11.748745, 7.445002], + [-11.749582, 7.444583], + [-11.751249, 7.442917], + [-11.75125, 7.442918], + [-11.757083, 7.453749], + [-11.759583, 7.452084], + [-11.761839, 7.452647], + [-11.761793, 7.452916], + [-11.763749, 7.452916], + [-11.769582, 7.445417], + [-11.773749, 7.44375], + [-11.775417, 7.451249], + [-11.785415, 7.452083], + [-11.785416, 7.452085], + [-11.785268, 7.45372], + [-11.789582, 7.453721], + [-11.789583, 7.45473], + [-11.789505, 7.454964], + [-11.790051, 7.456687], + [-11.789649, 7.457405], + [-11.788861, 7.458119], + [-11.788555, 7.459256], + [-11.789022, 7.460022], + [-11.789414, 7.460256], + [-11.790668, 7.460117], + [-11.791222, 7.459672], + [-11.791522, 7.459612], + [-11.792101, 7.459432], + [-11.792808, 7.459448], + [-11.79312, 7.459714], + [-11.793152, 7.460553], + [-11.792504, 7.461086], + [-11.792755, 7.461804], + [-11.792482, 7.462389], + [-11.793742, 7.462606], + [-11.792799, 7.46642], + [-11.795319, 7.466984], + [-11.797685, 7.467351], + [-11.798275, 7.467495], + [-11.79834, 7.466766], + [-11.799155, 7.465911], + [-11.800367, 7.465384], + [-11.800764, 7.465314], + [-11.802267, 7.463569], + [-11.80364, 7.46329], + [-11.799583, 7.472083], + [-11.80125, 7.473749], + [-11.805841, 7.47375], + [-11.806284, 7.473984], + [-11.806666, 7.47375], + [-11.809353, 7.47375], + [-11.809337, 7.47384], + [-11.809432, 7.47375], + [-11.810416, 7.473749], + [-11.8112, 7.472967], + [-11.811831, 7.473425], + [-11.811815, 7.473835], + [-11.812009, 7.474058], + [-11.812159, 7.474021], + [-11.812856, 7.47341], + [-11.813671, 7.473542], + [-11.814085, 7.475352], + [-11.815447, 7.476718], + [-11.817318, 7.477457], + [-11.817711, 7.478015], + [-11.818187, 7.477473], + [-11.818386, 7.476978], + [-11.818194, 7.475634], + [-11.818575, 7.475634], + [-11.819657, 7.476085], + [-11.819614, 7.479914], + [-11.818686, 7.479921], + [-11.816295, 7.479921], + [-11.815984, 7.480739], + [-11.815842, 7.481249], + [-11.817916, 7.48125], + [-11.823056, 7.483452], + [-11.82321, 7.483451], + [-11.823757, 7.483426], + [-11.824893, 7.484164], + [-11.825478, 7.484701], + [-11.826176, 7.485914], + [-11.827109, 7.486696], + [-11.827474, 7.487148], + [-11.827892, 7.487323], + [-11.82823, 7.487377], + [-11.828553, 7.48717], + [-11.829587, 7.4881], + [-11.830092, 7.489243], + [-11.830821, 7.489431], + [-11.830537, 7.490281], + [-11.831272, 7.490791], + [-11.832346, 7.490939], + [-11.832399, 7.490823], + [-11.83323, 7.489037], + [-11.835416, 7.489583], + [-11.837082, 7.489584], + [-11.839583, 7.492083], + [-11.844534, 7.490669], + [-11.844902, 7.491641], + [-11.8452, 7.491199], + [-11.8479, 7.489099], + [-11.854499, 7.4864], + [-11.860499, 7.483499], + [-11.866199, 7.4743], + [-11.869399, 7.4712], + [-11.876399, 7.4683], + [-11.880499, 7.4662], + [-11.883999, 7.463299], + [-11.886099, 7.459399], + [-11.887199, 7.4502], + [-11.8887, 7.4454], + [-11.893499, 7.4402], + [-11.895999, 7.437], + [-11.8973, 7.433299] + ] + ], + "type": "Polygon" + }, + "id": 501, + "properties": { + "cc:admin:id": ["88"], + "cc:oBld:total": 50, + "cc:pop:fifteen-to-twenty-four": 5465.954533955105, + "cc:pop:grid3-total": 30978.780804354625, + "cc:pop:kontur-total": 31799.059889725853, + "cc:pop:men": 15393.514967991638, + "cc:pop:sixty-plus": 2246.3745450383844, + "cc:pop:total": 30693.746005648147, + "cc:pop:under-five": 5116.586268703245, + "cc:pop:women": 15300.231037656511, + "cc:pop:women-fiften-to-forty-nine": 7244.678051599448, + "cc:pop:wp-total": 23545.682314460122, + "cc:pop:wp-total-UN": 27315.094088881022, + "cc:id": "501", + "cc:Name": "Sahn Bumpe MCHP", + "cc:site": [-11.8432, 7.4362], + "user:parentName": "Malen", + "user:code": "OU_646", + "user:orgUnitId": "NDqR2cWlVy3", + "user:level": "4", + "user:parentId": "DfUfwjM9am5" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.642917, 8.184583], + [-11.642916, 8.18125], + [-11.637917, 8.176249], + [-11.639582, 8.173749], + [-11.639583, 8.172916], + [-11.642082, 8.170416], + [-11.642082, 8.167917], + [-11.641249, 8.167083], + [-11.640416, 8.157917], + [-11.627917, 8.157083], + [-11.632916, 8.149583], + [-11.631249, 8.142917], + [-11.622916, 8.144583], + [-11.622083, 8.138749], + [-11.624582, 8.132917], + [-11.61625, 8.132084], + [-11.615416, 8.129584], + [-11.612082, 8.131249], + [-11.60625, 8.129584], + [-11.60453, 8.127864], + [-11.603184, 8.128251], + [-11.59875, 8.128651], + [-11.59875, 8.126249], + [-11.599582, 8.122084], + [-11.600417, 8.122083], + [-11.600416, 8.121249], + [-11.599583, 8.117916], + [-11.602916, 8.113749], + [-11.602917, 8.10625], + [-11.607916, 8.106249], + [-11.608749, 8.104583], + [-11.607916, 8.099584], + [-11.607083, 8.099583], + [-11.607082, 8.098749], + [-11.606249, 8.09625], + [-11.604583, 8.095416], + [-11.604582, 8.08875], + [-11.60375, 8.088749], + [-11.603749, 8.087917], + [-11.602916, 8.087916], + [-11.600416, 8.08125], + [-11.597083, 8.081249], + [-11.597082, 8.079584], + [-11.594582, 8.07625], + [-11.591916, 8.076784], + [-11.591999, 8.085599], + [-11.5918, 8.090499], + [-11.591, 8.093999], + [-11.589099, 8.0975], + [-11.5873, 8.101499], + [-11.5849, 8.104499], + [-11.582199, 8.1073], + [-11.5777, 8.110899], + [-11.5723, 8.113799], + [-11.5689, 8.116899], + [-11.567199, 8.1191], + [-11.565399, 8.123], + [-11.5632, 8.125899], + [-11.56, 8.129099], + [-11.5564, 8.1316], + [-11.5534, 8.135699], + [-11.550899, 8.1384], + [-11.547999, 8.140599], + [-11.5418, 8.142699], + [-11.540199, 8.1441], + [-11.537699, 8.1481], + [-11.536599, 8.1513], + [-11.5364, 8.154899], + [-11.536699, 8.157599], + [-11.537399, 8.160199], + [-11.5394, 8.1651], + [-11.539499, 8.1677], + [-11.5387, 8.171699], + [-11.539899, 8.1764], + [-11.539, 8.179899], + [-11.536299, 8.182199], + [-11.5298, 8.183799], + [-11.5253, 8.185799], + [-11.521, 8.186999], + [-11.5182, 8.188], + [-11.518, 8.193099], + [-11.5176, 8.196599], + [-11.5162, 8.2013], + [-11.5166, 8.2036], + [-11.5189, 8.2087], + [-11.5211, 8.2115], + [-11.525599, 8.216199], + [-11.528099, 8.219299], + [-11.5313, 8.225], + [-11.5355, 8.2292], + [-11.5376, 8.2306], + [-11.5415, 8.2324], + [-11.545099, 8.235399], + [-11.547899, 8.239099], + [-11.5499, 8.2429], + [-11.5521, 8.2457], + [-11.5582, 8.2525], + [-11.561399, 8.256499], + [-11.5653, 8.257499], + [-11.569, 8.256999], + [-11.570599, 8.255999], + [-11.5725, 8.253299], + [-11.575299, 8.251], + [-11.578699, 8.249899], + [-11.5786, 8.2362], + [-11.5784, 8.2315], + [-11.577499, 8.227899], + [-11.5752, 8.223199], + [-11.575, 8.2198], + [-11.5758, 8.217299], + [-11.5775, 8.215899], + [-11.581499, 8.2135], + [-11.585499, 8.2119], + [-11.5891, 8.209999], + [-11.593, 8.208199], + [-11.596, 8.205899], + [-11.6015, 8.200599], + [-11.604299, 8.1987], + [-11.606399, 8.1979], + [-11.6091, 8.1977], + [-11.6127, 8.1979], + [-11.6153, 8.1985], + [-11.6205, 8.200799], + [-11.623999, 8.201199], + [-11.6266, 8.200699], + [-11.631799, 8.1984], + [-11.637699, 8.1968], + [-11.641299, 8.195], + [-11.642411, 8.194734], + [-11.642083, 8.193749], + [-11.642083, 8.185417], + [-11.642917, 8.184583] + ] + ], + "type": "Polygon" + }, + "id": 502, + "properties": { + "cc:admin:id": ["98"], + "cc:oBld:total": 12, + "cc:pop:fifteen-to-twenty-four": 1949.310755549101, + "cc:pop:grid3-total": 8061.6799667402565, + "cc:pop:kontur-total": 11488.145421017516, + "cc:pop:men": 5097.456139450356, + "cc:pop:sixty-plus": 794.0433081649363, + "cc:pop:total": 10871.258560236502, + "cc:pop:under-five": 1811.4343616775673, + "cc:pop:women": 5773.802420786146, + "cc:pop:women-fiften-to-forty-nine": 2750.3540637140363, + "cc:pop:wp-total": 9589.455017751787, + "cc:pop:wp-total-UN": 11126.702198425302, + "cc:id": "502", + "cc:Name": "Sahn CHC", + "cc:site": [-11.598, 8.1582], + "user:parentName": "Niawa Lenga", + "user:code": "OU_952", + "user:orgUnitId": "PuZOFApTSeo", + "user:level": "4", + "user:parentId": "I4jWcnFmgEC" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.659582, 7.505417], + [-11.657916, 7.505416], + [-11.654583, 7.50125], + [-11.654582, 7.49875], + [-11.644583, 7.495416], + [-11.645245, 7.491448], + [-11.64682, 7.491048], + [-11.649479, 7.491237], + [-11.650607, 7.491119], + [-11.649582, 7.489583], + [-11.64875, 7.487084], + [-11.647917, 7.485416], + [-11.647083, 7.480417], + [-11.657916, 7.478749], + [-11.655417, 7.466251], + [-11.655418, 7.46625], + [-11.657082, 7.466249], + [-11.652083, 7.46125], + [-11.652082, 7.458395], + [-11.648958, 7.458394], + [-11.645053, 7.451629], + [-11.648958, 7.444863], + [-11.648474, 7.444025], + [-11.646249, 7.446249], + [-11.64073, 7.445855], + [-11.638874, 7.442643], + [-11.632734, 7.442642], + [-11.629583, 7.437916], + [-11.629582, 7.429521], + [-11.629199, 7.4304], + [-11.6269, 7.433499], + [-11.6235, 7.436599], + [-11.6176, 7.439799], + [-11.613, 7.443399], + [-11.6108, 7.444699], + [-11.6075, 7.4455], + [-11.607799, 7.450099], + [-11.608799, 7.453399], + [-11.6107, 7.457], + [-11.614599, 7.465499], + [-11.6153, 7.4694], + [-11.615499, 7.474499], + [-11.6152, 7.479599], + [-11.614599, 7.4824], + [-11.612499, 7.4874], + [-11.6118, 7.492599], + [-11.6118, 7.497699], + [-11.6152, 7.4985], + [-11.6197, 7.5005], + [-11.6225, 7.5011], + [-11.6274, 7.5017], + [-11.630099, 7.502299], + [-11.6348, 7.5042], + [-11.6385, 7.5049], + [-11.6453, 7.5053], + [-11.648899, 7.505999], + [-11.653599, 7.507899], + [-11.6563, 7.5085], + [-11.659013, 7.508831], + [-11.659582, 7.505417] + ] + ], + "type": "Polygon" + }, + "id": 503, + "properties": { + "cc:admin:id": ["66"], + "cc:oBld:total": 0, + "cc:pop:fifteen-to-twenty-four": 345.2567706548193, + "cc:pop:grid3-total": 1756.0455178955706, + "cc:pop:kontur-total": 1974.1374087816098, + "cc:pop:men": 946.0171462661488, + "cc:pop:sixty-plus": 145.6913016784319, + "cc:pop:total": 1945.9143296970965, + "cc:pop:under-five": 325.33555730375406, + "cc:pop:women": 999.8971834309475, + "cc:pop:women-fiften-to-forty-nine": 480.990362822081, + "cc:pop:wp-total": 2500.633929191334, + "cc:pop:wp-total-UN": 2902.135874573781, + "cc:id": "503", + "cc:Name": "Salima MCHP", + "cc:site": [-11.622, 7.4798], + "user:parentName": "Kpanga Kabonde", + "user:code": "OU_260403", + "user:orgUnitId": "rFelzKE3SEp", + "user:level": "4", + "user:parentId": "QwMiPiME3bA" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.591699, 9.5999], + [-12.583499, 9.596399], + [-12.576699, 9.594899], + [-12.57, 9.5928], + [-12.566199, 9.592199], + [-12.561799, 9.5921], + [-12.556, 9.592799], + [-12.5501, 9.594699], + [-12.545899, 9.5954], + [-12.541599, 9.595599], + [-12.5373, 9.5952], + [-12.531299, 9.593199], + [-12.5216, 9.590499], + [-12.516699, 9.5866], + [-12.512199, 9.585], + [-12.507099, 9.5854], + [-12.499999, 9.5879], + [-12.490799, 9.590899], + [-12.4881, 9.590599], + [-12.485699, 9.589099], + [-12.484099, 9.586299], + [-12.4829, 9.581599], + [-12.4832, 9.574999], + [-12.485599, 9.5657], + [-12.486099, 9.561699], + [-12.485799, 9.556399], + [-12.4832, 9.5456], + [-12.4827, 9.539899], + [-12.483, 9.534199], + [-12.485399, 9.5234], + [-12.485399, 9.519199], + [-12.483699, 9.512099], + [-12.477, 9.4931], + [-12.4752, 9.4875], + [-12.473599, 9.480599], + [-12.469299, 9.465799], + [-12.450099, 9.4653], + [-12.4423, 9.465399], + [-12.4378, 9.465799], + [-12.433399, 9.4666], + [-12.428799, 9.4684], + [-12.4204, 9.470999], + [-12.4162, 9.471199], + [-12.413399, 9.469499], + [-12.411899, 9.466999], + [-12.410499, 9.4636], + [-12.4053, 9.463699], + [-12.4015, 9.464399], + [-12.3939, 9.467899], + [-12.391699, 9.4695], + [-12.389, 9.471999], + [-12.3873, 9.474199], + [-12.383599, 9.4817], + [-12.382999, 9.4839], + [-12.3826, 9.489199], + [-12.382999, 9.504099], + [-12.3828, 9.508899], + [-12.381999, 9.511999], + [-12.380199, 9.514199], + [-12.378099, 9.5156], + [-12.375099, 9.5169], + [-12.371499, 9.5189], + [-12.368299, 9.5201], + [-12.364, 9.522499], + [-12.360799, 9.5238], + [-12.3573, 9.525799], + [-12.354199, 9.5272], + [-12.3519, 9.528599], + [-12.349099, 9.531], + [-12.3408, 9.539199], + [-12.3383, 9.540099], + [-12.335799, 9.539399], + [-12.334299, 9.538199], + [-12.3311, 9.5349], + [-12.329299, 9.532699], + [-12.325299, 9.5259], + [-12.3227, 9.5239], + [-12.3189, 9.523], + [-12.315, 9.523099], + [-12.3128, 9.524199], + [-12.311399, 9.526], + [-12.3088, 9.531], + [-12.308399, 9.5337], + [-12.308299, 9.5415], + [-12.3079, 9.544299], + [-12.3068, 9.546899], + [-12.305099, 9.549], + [-12.3024, 9.551199], + [-12.2989, 9.552699], + [-12.298274, 9.552771], + [-12.296397, 9.553983], + [-12.296968, 9.554463], + [-12.297821, 9.554753], + [-12.298705, 9.555373], + [-12.29907, 9.556231], + [-12.300132, 9.557812], + [-12.300422, 9.557904], + [-12.298308, 9.562133], + [-12.297513, 9.561784], + [-12.296529, 9.560615], + [-12.295991, 9.560471], + [-12.29545, 9.560393], + [-12.294376, 9.560981], + [-12.292991, 9.560988], + [-12.292346, 9.5607], + [-12.290868, 9.561057], + [-12.290725, 9.561124], + [-12.291021, 9.562604], + [-12.29207, 9.562177], + [-12.293409, 9.561992], + [-12.293992, 9.562117], + [-12.297056, 9.563483], + [-12.29954, 9.563701], + [-12.301365, 9.563372], + [-12.304982, 9.562159], + [-12.306031, 9.561542], + [-12.310416, 9.569582], + [-12.313749, 9.572916], + [-12.313749, 9.575416], + [-12.312082, 9.577083], + [-12.311328, 9.580102], + [-12.311844, 9.580998], + [-12.311466, 9.581596], + [-12.311158, 9.582834], + [-12.310825, 9.584156], + [-12.310185, 9.585221], + [-12.309583, 9.585746], + [-12.309583, 9.587916], + [-12.312917, 9.592082], + [-12.322775, 9.592906], + [-12.320441, 9.59695], + [-12.323922, 9.602982], + [-12.323609, 9.603529], + [-12.322441, 9.60442], + [-12.322173, 9.605202], + [-12.322479, 9.606922], + [-12.322451, 9.606998], + [-12.320441, 9.610482], + [-12.321495, 9.61231], + [-12.321489, 9.613314], + [-12.321657, 9.614008], + [-12.322519, 9.614858], + [-12.322659, 9.615513], + [-12.323143, 9.616139], + [-12.323761, 9.616234], + [-12.324346, 9.617248], + [-12.320441, 9.624014], + [-12.324347, 9.630779], + [-12.332158, 9.63078], + [-12.336066, 9.637545], + [-12.343878, 9.637546], + [-12.347783, 9.64431], + [-12.343878, 9.651076], + [-12.347077, 9.656618], + [-12.346208, 9.657385], + [-12.352934, 9.657386], + [-12.35684, 9.664151], + [-12.352934, 9.670918], + [-12.356841, 9.677683], + [-12.364396, 9.677683], + [-12.364747, 9.677132], + [-12.368333, 9.674551], + [-12.368954, 9.673939], + [-12.369686, 9.673939], + [-12.373593, 9.680704], + [-12.381404, 9.680704], + [-12.385311, 9.673939], + [-12.392314, 9.673939], + [-12.393199, 9.674554], + [-12.393564, 9.674701], + [-12.397029, 9.680704], + [-12.39505, 9.684133], + [-12.396955, 9.683835], + [-12.397605, 9.684342], + [-12.398095, 9.684294], + [-12.398573, 9.683931], + [-12.399002, 9.682663], + [-12.399492, 9.682216], + [-12.401888, 9.681443], + [-12.39875, 9.684583], + [-12.39875, 9.690495], + [-12.406379, 9.690496], + [-12.409289, 9.695533], + [-12.409765, 9.695488], + [-12.410714, 9.695734], + [-12.411968, 9.694781], + [-12.41273, 9.695656], + [-12.41338, 9.695579], + [-12.41345, 9.697116], + [-12.413533, 9.69726], + [-12.415773, 9.69726], + [-12.417916, 9.694582], + [-12.417916, 9.691586], + [-12.417854, 9.691586], + [-12.41779, 9.691805], + [-12.417187, 9.692227], + [-12.416536, 9.692257], + [-12.415902, 9.692024], + [-12.415664, 9.691742], + [-12.416409, 9.691162], + [-12.416536, 9.689943], + [-12.416504, 9.689473], + [-12.415925, 9.688654], + [-12.418507, 9.684183], + [-12.426319, 9.684183], + [-12.430226, 9.690948], + [-12.438037, 9.690949], + [-12.441945, 9.697713], + [-12.445623, 9.697713], + [-12.446226, 9.689896], + [-12.453464, 9.689896], + [-12.454426, 9.691561], + [-12.454449, 9.691286], + [-12.454101, 9.689542], + [-12.453933, 9.689084], + [-12.45557, 9.68625], + [-12.460417, 9.68625], + [-12.463749, 9.688749], + [-12.464262, 9.689261], + [-12.470962, 9.689261], + [-12.474869, 9.682497], + [-12.482563, 9.682496], + [-12.482173, 9.677417], + [-12.484913, 9.677417], + [-12.48882, 9.684182], + [-12.496631, 9.684182], + [-12.500538, 9.677417], + [-12.50835, 9.677417], + [-12.509481, 9.679375], + [-12.509689, 9.676937], + [-12.509664, 9.676458], + [-12.509919, 9.676258], + [-12.510147, 9.67524], + [-12.509848, 9.674823], + [-12.512212, 9.670728], + [-12.513209, 9.670651], + [-12.52007, 9.670651], + [-12.523976, 9.677416], + [-12.531787, 9.677417], + [-12.532239, 9.678197], + [-12.533933, 9.677901], + [-12.535236, 9.678019], + [-12.539279, 9.678894], + [-12.540542, 9.679516], + [-12.541146, 9.680562], + [-12.541467, 9.681845], + [-12.54124, 9.682759], + [-12.541521, 9.683434], + [-12.54226, 9.683792], + [-12.542621, 9.684182], + [-12.543506, 9.684182], + [-12.544669, 9.682168], + [-12.544876, 9.682118], + [-12.545067, 9.682366], + [-12.545184, 9.682533], + [-12.54556, 9.682835], + [-12.545427, 9.683219], + [-12.545724, 9.683634], + [-12.553494, 9.683635], + [-12.557401, 9.6904], + [-12.56347, 9.6904], + [-12.564017, 9.689065], + [-12.564752, 9.688579], + [-12.56487, 9.684684], + [-12.56537, 9.68157], + [-12.566751, 9.682129], + [-12.567446, 9.682149], + [-12.56827, 9.682799], + [-12.5696, 9.6774], + [-12.574199, 9.670099], + [-12.5755, 9.659899], + [-12.5785, 9.6581], + [-12.5832, 9.663599], + [-12.587099, 9.663099], + [-12.5897, 9.660599], + [-12.591499, 9.6541], + [-12.588, 9.6422], + [-12.5856, 9.635299], + [-12.5854, 9.6289], + [-12.590599, 9.6125], + [-12.591699, 9.5999] + ] + ], + "type": "Polygon" + }, + "id": 504, + "properties": { + "cc:admin:id": ["131"], + "cc:oBld:total": 562, + "cc:pop:fifteen-to-twenty-four": 1511.106866746278, + "cc:pop:grid3-total": 15326.098700083094, + "cc:pop:kontur-total": 8476.663239915923, + "cc:pop:men": 4091.687737671571, + "cc:pop:sixty-plus": 608.6227327500505, + "cc:pop:total": 8478.918397985304, + "cc:pop:under-five": 1343.7201479698456, + "cc:pop:women": 4387.230660313736, + "cc:pop:women-fiften-to-forty-nine": 2119.729599496326, + "cc:pop:wp-total": 6597.051044856672, + "cc:pop:wp-total-UN": 7647.426994798897, + "cc:id": "504", + "cc:Name": "Samaya CHP", + "cc:site": [-12.3937, 9.5118], + "user:parentName": "Tambaka", + "user:code": "OU_193248", + "user:orgUnitId": "BnVjTzwis3o", + "user:level": "4", + "user:parentId": "Qhmi8IZyPyD" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.082948, 8.726732], + [-11.0825, 8.725899], + [-11.0821, 8.7237], + [-11.0816, 8.7184], + [-11.0808, 8.7158], + [-11.077899, 8.7117], + [-11.073899, 8.708699], + [-11.0699, 8.707], + [-11.066999, 8.705399], + [-11.0632, 8.703699], + [-11.060599, 8.701299], + [-11.0591, 8.697499], + [-11.0587, 8.686], + [-11.058, 8.6824], + [-11.0557, 8.6771], + [-11.054499, 8.671999], + [-11.050499, 8.6637], + [-11.047699, 8.660699], + [-11.0432, 8.6585], + [-11.0396, 8.6565], + [-11.0364, 8.6552], + [-11.0321, 8.6529], + [-11.028799, 8.651499], + [-11.0245, 8.6491], + [-11.022261, 8.648067], + [-11.023095, 8.648565], + [-11.023407, 8.649096], + [-11.024483, 8.649781], + [-11.02375, 8.651249], + [-11.026249, 8.65375], + [-11.027916, 8.658749], + [-11.020416, 8.66125], + [-11.019583, 8.662084], + [-11.019583, 8.666249], + [-11.023749, 8.66875], + [-11.027916, 8.673749], + [-11.027083, 8.67625], + [-11.027083, 8.681249], + [-11.030416, 8.685417], + [-11.029582, 8.687916], + [-11.02875, 8.68875], + [-11.02875, 8.692082], + [-11.029583, 8.692917], + [-11.029583, 8.697916], + [-11.030416, 8.69875], + [-11.030416, 8.699178], + [-11.030161, 8.699072], + [-11.030417, 8.699583], + [-11.030417, 8.702082], + [-11.032916, 8.702083], + [-11.033749, 8.703749], + [-11.032082, 8.70625], + [-11.030417, 8.711249], + [-11.032082, 8.713749], + [-11.03125, 8.717082], + [-11.032916, 8.720416], + [-11.032917, 8.721249], + [-11.03375, 8.722916], + [-11.042082, 8.722916], + [-11.042083, 8.71875], + [-11.049582, 8.718749], + [-11.053749, 8.717083], + [-11.055417, 8.719582], + [-11.058749, 8.720416], + [-11.060417, 8.722082], + [-11.072915, 8.722083], + [-11.072916, 8.722084], + [-11.072083, 8.723749], + [-11.072917, 8.724582], + [-11.082948, 8.726732] + ] + ], + "type": "Polygon" + }, + "id": 505, + "properties": { + "cc:admin:id": ["49"], + "cc:oBld:total": 258, + "cc:pop:fifteen-to-twenty-four": 289.7237177339301, + "cc:pop:grid3-total": 1136.8660680552798, + "cc:pop:kontur-total": 1455.6855633806838, + "cc:pop:men": 850.036659182094, + "cc:pop:sixty-plus": 77.81070506229017, + "cc:pop:total": 1532.3683430163176, + "cc:pop:under-five": 230.87082003128086, + "cc:pop:women": 682.3316838342234, + "cc:pop:women-fiften-to-forty-nine": 313.68152509357094, + "cc:pop:wp-total": 1273.270091204384, + "cc:pop:wp-total-UN": 1479.4700602116263, + "cc:id": "505", + "cc:Name": "Samiquidu MCHP", + "cc:site": [-11.0588, 8.6941], + "user:parentName": "Kamara", + "user:code": "OU_233340", + "user:orgUnitId": "yXBtSoD0IRS", + "user:level": "4", + "user:parentId": "kvkDWg42lHR" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.116101, 8.244584], + [-11.113749, 8.244583], + [-11.111249, 8.232917], + [-11.106249, 8.232083], + [-11.105417, 8.217917], + [-11.107916, 8.217084], + [-11.106249, 8.217083], + [-11.10375, 8.214584], + [-11.102917, 8.20875], + [-11.107916, 8.202083], + [-11.10852, 8.197856], + [-11.108219, 8.197718], + [-11.105568, 8.197344], + [-11.104954, 8.197098], + [-11.103885, 8.196341], + [-11.102986, 8.196439], + [-11.102201, 8.196637], + [-11.099674, 8.199969], + [-11.09875, 8.202386], + [-11.098749, 8.199583], + [-11.097082, 8.195417], + [-11.09625, 8.195417], + [-11.089583, 8.199583], + [-11.08875, 8.200417], + [-11.090416, 8.204583], + [-11.08875, 8.204584], + [-11.086087, 8.207911], + [-11.085252, 8.207364], + [-11.084273, 8.205879], + [-11.083158, 8.204861], + [-11.082736, 8.206085], + [-11.081512, 8.207895], + [-11.079365, 8.209549], + [-11.078553, 8.21058], + [-11.078551, 8.210579], + [-11.078574, 8.210417], + [-11.077917, 8.210417], + [-11.077917, 8.211184], + [-11.078011, 8.211346], + [-11.07749, 8.212035], + [-11.07659, 8.212822], + [-11.076512, 8.21283], + [-11.076513, 8.212886], + [-11.0763, 8.213046], + [-11.076329, 8.213174], + [-11.075874, 8.213493], + [-11.075787, 8.213402], + [-11.075471, 8.213623], + [-11.07519, 8.213765], + [-11.07495, 8.213655], + [-11.073175, 8.21395], + [-11.071633, 8.214214], + [-11.071008, 8.214346], + [-11.071159, 8.214986], + [-11.071158, 8.214988], + [-11.070375, 8.215102], + [-11.07006, 8.214501], + [-11.068366, 8.21468], + [-11.068151, 8.214786], + [-11.068123, 8.215047], + [-11.068125, 8.215185], + [-11.068139, 8.215578], + [-11.067605, 8.215667], + [-11.066772, 8.215793], + [-11.066637, 8.216109], + [-11.066094, 8.215927], + [-11.064015, 8.216367], + [-11.06471, 8.216689], + [-11.064699, 8.216748], + [-11.064328, 8.217076], + [-11.063349, 8.217399], + [-11.061051, 8.217195], + [-11.060825, 8.217153], + [-11.060735, 8.216994], + [-11.060085, 8.217129], + [-11.059269, 8.217404], + [-11.058214, 8.218055], + [-11.057927, 8.218306], + [-11.05777, 8.218534], + [-11.057341, 8.219355], + [-11.056912, 8.220001], + [-11.056093, 8.221285], + [-11.055593, 8.221986], + [-11.055516, 8.222113], + [-11.055173, 8.222826], + [-11.05521, 8.223418], + [-11.055181, 8.223588], + [-11.055143, 8.223692], + [-11.055246, 8.223754], + [-11.055356, 8.223779], + [-11.056164, 8.225342], + [-11.056988, 8.224822], + [-11.057842, 8.223743], + [-11.058286, 8.223419], + [-11.058956, 8.223315], + [-11.059977, 8.22354], + [-11.059385, 8.223668], + [-11.058631, 8.224205], + [-11.058733, 8.224512], + [-11.058479, 8.225601], + [-11.058734, 8.226098], + [-11.059476, 8.226729], + [-11.060233, 8.228995], + [-11.060144, 8.229092], + [-11.059842, 8.228881], + [-11.059034, 8.229256], + [-11.058305, 8.229296], + [-11.058508, 8.229836], + [-11.058071, 8.230972], + [-11.057165, 8.231744], + [-11.057036, 8.232083], + [-11.062083, 8.232084], + [-11.06375, 8.234583], + [-11.067082, 8.236249], + [-11.067083, 8.237083], + [-11.069418, 8.237084], + [-11.069542, 8.237316], + [-11.07048, 8.238118], + [-11.07055, 8.23821], + [-11.070564, 8.238545], + [-11.070735, 8.239031], + [-11.070812, 8.239801], + [-11.07125, 8.239584], + [-11.073749, 8.239584], + [-11.082916, 8.243749], + [-11.084583, 8.242917], + [-11.088668, 8.242917], + [-11.08821, 8.244207], + [-11.087083, 8.244584], + [-11.08375, 8.24875], + [-11.08375, 8.255416], + [-11.093659, 8.255417], + [-11.09366, 8.255522], + [-11.104582, 8.25625], + [-11.104582, 8.263749], + [-11.102083, 8.26625], + [-11.102917, 8.268749], + [-11.105124, 8.270221], + [-11.107499, 8.2651], + [-11.1099, 8.260899], + [-11.1112, 8.257699], + [-11.113299, 8.2533], + [-11.114699, 8.2475], + [-11.116101, 8.244584] + ] + ], + "type": "Polygon" + }, + "id": 506, + "properties": { + "cc:admin:id": ["75"], + "cc:oBld:total": 849, + "cc:pop:fifteen-to-twenty-four": 1739.3607170975984, + "cc:pop:grid3-total": 4729.68068988868, + "cc:pop:kontur-total": 9858.063936509858, + "cc:pop:men": 5058.710817586347, + "cc:pop:sixty-plus": 534.5678154877477, + "cc:pop:total": 9042.045337368778, + "cc:pop:under-five": 1402.1533718603873, + "cc:pop:women": 3983.334519782431, + "cc:pop:women-fiften-to-forty-nine": 1979.8904412141844, + "cc:pop:wp-total": 7837.05723766636, + "cc:pop:wp-total-UN": 9085.523386158635, + "cc:id": "506", + "cc:Name": "Sandayeima MCHP", + "cc:site": [-11.0681, 8.2184], + "user:parentName": "Lower Bambara", + "user:code": "OU_222658", + "user:orgUnitId": "oUR5HPmim7E", + "user:level": "4", + "user:parentId": "hdEuw2ugkVF" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.359599, 8.5317], + [-11.351535, 8.523636], + [-11.350179, 8.523557], + [-11.348674, 8.521841], + [-11.346839, 8.521255], + [-11.344407, 8.522118], + [-11.343004, 8.52204], + [-11.338499, 8.522406], + [-11.338447, 8.522084], + [-11.33625, 8.522084], + [-11.33375, 8.522917], + [-11.333749, 8.528749], + [-11.32875, 8.52625], + [-11.32777, 8.524781], + [-11.327505, 8.525466], + [-11.327018, 8.525805], + [-11.326802, 8.526177], + [-11.326524, 8.527107], + [-11.324652, 8.529867], + [-11.32496, 8.531598], + [-11.324755, 8.534042], + [-11.324071, 8.535762], + [-11.324003, 8.536928], + [-11.323964, 8.537937], + [-11.322491, 8.539606], + [-11.322225, 8.540344], + [-11.321626, 8.542116], + [-11.319188, 8.54511], + [-11.318361, 8.54644], + [-11.317761, 8.547019], + [-11.31676, 8.547647], + [-11.315339, 8.549268], + [-11.314847, 8.550116], + [-11.314696, 8.55083], + [-11.314279, 8.553382], + [-11.313608, 8.555034], + [-11.313, 8.555602], + [-11.312308, 8.555728], + [-11.31135, 8.556198], + [-11.311153, 8.556548], + [-11.311134, 8.557593], + [-11.311661, 8.559743], + [-11.310622, 8.560969], + [-11.310355, 8.561695], + [-11.30966, 8.56405], + [-11.308409, 8.567013], + [-11.30673, 8.570354], + [-11.306665, 8.57166], + [-11.306352, 8.572574], + [-11.303549, 8.572136], + [-11.30101, 8.571676], + [-11.299362, 8.571347], + [-11.29875, 8.571154], + [-11.298749, 8.574583], + [-11.29625, 8.582083], + [-11.294583, 8.58125], + [-11.293749, 8.584584], + [-11.29125, 8.587083], + [-11.285417, 8.587917], + [-11.285416, 8.590416], + [-11.274411, 8.590417], + [-11.274479, 8.590569], + [-11.275054, 8.592509], + [-11.274903, 8.594358], + [-11.27125, 8.59375], + [-11.271249, 8.585417], + [-11.267082, 8.588749], + [-11.26375, 8.589584], + [-11.262917, 8.591249], + [-11.262684, 8.59125], + [-11.262688, 8.591736], + [-11.262681, 8.591815], + [-11.261293, 8.591469], + [-11.261351, 8.595414], + [-11.261341, 8.595833], + [-11.258799, 8.595834], + [-11.254892, 8.589068], + [-11.249829, 8.589068], + [-11.248749, 8.590416], + [-11.245416, 8.587917], + [-11.237917, 8.58875], + [-11.235417, 8.597084], + [-11.235417, 8.602916], + [-11.236249, 8.607916], + [-11.240656, 8.607917], + [-11.243609, 8.613034], + [-11.241195, 8.617216], + [-11.233037, 8.617843], + [-11.233035, 8.617857], + [-11.229583, 8.619584], + [-11.232082, 8.636249], + [-11.229583, 8.637917], + [-11.229583, 8.643749], + [-11.23125, 8.644584], + [-11.233749, 8.652916], + [-11.225417, 8.652917], + [-11.224583, 8.655416], + [-11.22625, 8.657083], + [-11.232916, 8.657084], + [-11.232917, 8.659583], + [-11.237082, 8.667083], + [-11.237083, 8.670416], + [-11.237307, 8.67064], + [-11.237839, 8.669746], + [-11.239262, 8.668073], + [-11.240968, 8.666778], + [-11.243106, 8.664078], + [-11.243614, 8.663656], + [-11.244859, 8.663294], + [-11.246301, 8.662119], + [-11.248655, 8.661307], + [-11.249215, 8.660711], + [-11.249812, 8.659556], + [-11.250629, 8.658496], + [-11.251719, 8.658057], + [-11.252695, 8.658019], + [-11.253142, 8.657789], + [-11.254582, 8.65875], + [-11.25375, 8.669582], + [-11.260417, 8.66625], + [-11.266822, 8.665668], + [-11.26698, 8.665829], + [-11.267092, 8.665578], + [-11.266329, 8.664748], + [-11.26704, 8.66423], + [-11.267821, 8.663986], + [-11.2682, 8.66438], + [-11.268199, 8.664754], + [-11.268421, 8.665001], + [-11.268545, 8.668169], + [-11.268148, 8.670831], + [-11.268181, 8.671756], + [-11.267829, 8.67175], + [-11.268187, 8.672107], + [-11.268874, 8.67343], + [-11.268684, 8.67628], + [-11.269151, 8.677169], + [-11.269203, 8.679366], + [-11.268742, 8.680062], + [-11.268759, 8.680423], + [-11.269369, 8.682298], + [-11.268931, 8.683048], + [-11.268762, 8.683766], + [-11.269091, 8.685349], + [-11.2702, 8.683899], + [-11.2716, 8.681099], + [-11.2722, 8.678699], + [-11.2725, 8.673799], + [-11.2733, 8.6702], + [-11.276599, 8.6645], + [-11.278899, 8.6633], + [-11.2812, 8.6636], + [-11.283, 8.6651], + [-11.283699, 8.6675], + [-11.2835, 8.677999], + [-11.2846, 8.680499], + [-11.286899, 8.681199], + [-11.289799, 8.679899], + [-11.292799, 8.6766], + [-11.2942, 8.674299], + [-11.295499, 8.6711], + [-11.297799, 8.6667], + [-11.2991, 8.663599], + [-11.3006, 8.661299], + [-11.303199, 8.6586], + [-11.3053, 8.656999], + [-11.313599, 8.6527], + [-11.3168, 8.651399], + [-11.321099, 8.6492], + [-11.327899, 8.6475], + [-11.3323, 8.645499], + [-11.336, 8.644799], + [-11.342899, 8.6446], + [-11.3479, 8.6448], + [-11.354599, 8.645499], + [-11.356999, 8.6345], + [-11.357499, 8.6304], + [-11.357299, 8.626199], + [-11.3558, 8.6159], + [-11.353, 8.6052], + [-11.3515, 8.596], + [-11.3491, 8.5866], + [-11.3475, 8.5788], + [-11.345999, 8.575099], + [-11.3423, 8.5691], + [-11.3412, 8.5664], + [-11.3403, 8.562], + [-11.3401, 8.5575], + [-11.3408, 8.5525], + [-11.3423, 8.5494], + [-11.3449, 8.547099], + [-11.3514, 8.543799], + [-11.3544, 8.540299], + [-11.3568, 8.5349], + [-11.359599, 8.5317] + ] + ], + "type": "Polygon" + }, + "id": 507, + "properties": { + "cc:admin:id": ["101"], + "cc:oBld:total": 722, + "cc:pop:fifteen-to-twenty-four": 909.4770791309369, + "cc:pop:grid3-total": 4138.642374034106, + "cc:pop:kontur-total": 5322.622511150977, + "cc:pop:men": 2653.8352351258413, + "cc:pop:sixty-plus": 243.13044015737904, + "cc:pop:total": 4834.267398677275, + "cc:pop:under-five": 726.9139769763796, + "cc:pop:women": 2180.432163551432, + "cc:pop:women-fiften-to-forty-nine": 1174.7516574824829, + "cc:pop:wp-total": 4804.897888295061, + "cc:pop:wp-total-UN": 5572.634169736398, + "cc:id": "507", + "cc:Name": "Sandia CHP", + "cc:site": [-11.2681, 8.6418], + "user:parentName": "Nimiyama", + "user:code": "OU_233337", + "user:orgUnitId": "vcY0lzBz6fU", + "user:level": "4", + "user:parentId": "qgQ49DH9a0v" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.56827, 9.6828], + [-12.567445, 9.682149], + [-12.566751, 9.682129], + [-12.565371, 9.68157], + [-12.56487, 9.684684], + [-12.564752, 9.688579], + [-12.564018, 9.689065], + [-12.56347, 9.6904], + [-12.557401, 9.6904], + [-12.553494, 9.683635], + [-12.545724, 9.683634], + [-12.545427, 9.68322], + [-12.54556, 9.682836], + [-12.545184, 9.682533], + [-12.545067, 9.682366], + [-12.544876, 9.682118], + [-12.544669, 9.682168], + [-12.543507, 9.684182], + [-12.542621, 9.684182], + [-12.54226, 9.683792], + [-12.541521, 9.683434], + [-12.54124, 9.682759], + [-12.541467, 9.681845], + [-12.541146, 9.680562], + [-12.540542, 9.679516], + [-12.539279, 9.678894], + [-12.535236, 9.678019], + [-12.533933, 9.677901], + [-12.532239, 9.678198], + [-12.531787, 9.677417], + [-12.523976, 9.677416], + [-12.520069, 9.670651], + [-12.513205, 9.670651], + [-12.512213, 9.670726], + [-12.509848, 9.674823], + [-12.510147, 9.67524], + [-12.50992, 9.676258], + [-12.509664, 9.676458], + [-12.509689, 9.676937], + [-12.509481, 9.679372], + [-12.50948, 9.679372], + [-12.50835, 9.677417], + [-12.500538, 9.677417], + [-12.496631, 9.684182], + [-12.48882, 9.684182], + [-12.484912, 9.677417], + [-12.482173, 9.677417], + [-12.482563, 9.682496], + [-12.47487, 9.682497], + [-12.470962, 9.689261], + [-12.464262, 9.689261], + [-12.463749, 9.688749], + [-12.460416, 9.68625], + [-12.45557, 9.68625], + [-12.453933, 9.689085], + [-12.454101, 9.689542], + [-12.454449, 9.691286], + [-12.454426, 9.691559], + [-12.453464, 9.689896], + [-12.446226, 9.689896], + [-12.445624, 9.697713], + [-12.441944, 9.697713], + [-12.438037, 9.690949], + [-12.430225, 9.690948], + [-12.426319, 9.684183], + [-12.418507, 9.684183], + [-12.415925, 9.688654], + [-12.416504, 9.689472], + [-12.416536, 9.689943], + [-12.416409, 9.691162], + [-12.415664, 9.691742], + [-12.415902, 9.692023], + [-12.416536, 9.692257], + [-12.417187, 9.692227], + [-12.41779, 9.691805], + [-12.417853, 9.691586], + [-12.417916, 9.691586], + [-12.417916, 9.694583], + [-12.415774, 9.69726], + [-12.413533, 9.697261], + [-12.41345, 9.697116], + [-12.41338, 9.695579], + [-12.412729, 9.695656], + [-12.411967, 9.694781], + [-12.410715, 9.695734], + [-12.409765, 9.695488], + [-12.409288, 9.695533], + [-12.406379, 9.690496], + [-12.39875, 9.690495], + [-12.39875, 9.684583], + [-12.40189, 9.681442], + [-12.399492, 9.682216], + [-12.399003, 9.682663], + [-12.398574, 9.683931], + [-12.398096, 9.684294], + [-12.397604, 9.684342], + [-12.396955, 9.683835], + [-12.395051, 9.684133], + [-12.395051, 9.684132], + [-12.397029, 9.680704], + [-12.393563, 9.674701], + [-12.393199, 9.674554], + [-12.392314, 9.673939], + [-12.385312, 9.673939], + [-12.381405, 9.680704], + [-12.373593, 9.680705], + [-12.371087, 9.685044], + [-12.377082, 9.684583], + [-12.377801, 9.685302], + [-12.374042, 9.685303], + [-12.371759, 9.689257], + [-12.37126, 9.689397], + [-12.37104, 9.69001], + [-12.371323, 9.692225], + [-12.370992, 9.693478], + [-12.370974, 9.69352], + [-12.370972, 9.69352], + [-12.370135, 9.692069], + [-12.362366, 9.692069], + [-12.362082, 9.692917], + [-12.360417, 9.695417], + [-12.360416, 9.705416], + [-12.354582, 9.705417], + [-12.34625, 9.712083], + [-12.34625, 9.714532], + [-12.346248, 9.714533], + [-12.338437, 9.714534], + [-12.33453, 9.7213], + [-12.338436, 9.728065], + [-12.33453, 9.734831], + [-12.330666, 9.734832], + [-12.330416, 9.734583], + [-12.324583, 9.740416], + [-12.322917, 9.740417], + [-12.322429, 9.741875], + [-12.32236, 9.74183], + [-12.320805, 9.7404], + [-12.320243, 9.739667], + [-12.320104, 9.739605], + [-12.318865, 9.73872], + [-12.318527, 9.738353], + [-12.317048, 9.735881], + [-12.314731, 9.733863], + [-12.312452, 9.731314], + [-12.311911, 9.730588], + [-12.30875, 9.73375], + [-12.309528, 9.744658], + [-12.305551, 9.744659], + [-12.301643, 9.751424], + [-12.293832, 9.751425], + [-12.289925, 9.75819], + [-12.282113, 9.758191], + [-12.278207, 9.764957], + [-12.282112, 9.771723], + [-12.278206, 9.778487], + [-12.270394, 9.778488], + [-12.266488, 9.785254], + [-12.270393, 9.792019], + [-12.266488, 9.798786], + [-12.270393, 9.805552], + [-12.266488, 9.812317], + [-12.267706, 9.814428], + [-12.26625, 9.81625], + [-12.266249, 9.822915], + [-12.266248, 9.822916], + [-12.264582, 9.822083], + [-12.256871, 9.822785], + [-12.25754, 9.823653], + [-12.258855, 9.82642], + [-12.260032, 9.830972], + [-12.260037, 9.831649], + [-12.260121, 9.831803], + [-12.259406, 9.831804], + [-12.255501, 9.838569], + [-12.252273, 9.838569], + [-12.251721, 9.83788], + [-12.249696, 9.841385], + [-12.243763, 9.841386], + [-12.243764, 9.841673], + [-12.244103, 9.842409], + [-12.243973, 9.844809], + [-12.245475, 9.849768], + [-12.246419, 9.851784], + [-12.241058, 9.851785], + [-12.240404, 9.852916], + [-12.23875, 9.852917], + [-12.235416, 9.856249], + [-12.23375, 9.85625], + [-12.233749, 9.857082], + [-12.230691, 9.857083], + [-12.226784, 9.850318], + [-12.22005, 9.850318], + [-12.219316, 9.851784], + [-12.217621, 9.851785], + [-12.213715, 9.85855], + [-12.205902, 9.858551], + [-12.201995, 9.865316], + [-12.194183, 9.865317], + [-12.190276, 9.872081], + [-12.182465, 9.872082], + [-12.178557, 9.878847], + [-12.170745, 9.878847], + [-12.166839, 9.872082], + [-12.159027, 9.872082], + [-12.155121, 9.878847], + [-12.156242, 9.880791], + [-12.155637, 9.881232], + [-12.15508, 9.881148], + [-12.154074, 9.88057], + [-12.153912, 9.880268], + [-12.154028, 9.87971], + [-12.154951, 9.878087], + [-12.154848, 9.877703], + [-12.15296, 9.87612], + [-12.151359, 9.878893], + [-12.151643, 9.879385], + [-12.1569, 9.8821], + [-12.1774, 9.897399], + [-12.204999, 9.907], + [-12.212899, 9.9141], + [-12.2153, 9.9187], + [-12.2227, 9.924399], + [-12.227099, 9.924699], + [-12.287399, 9.9109], + [-12.2892, 9.908799], + [-12.353199, 9.8962], + [-12.365899, 9.895699], + [-12.3713, 9.892699], + [-12.393699, 9.8878], + [-12.431699, 9.881599], + [-12.437499, 9.877499], + [-12.4435, 9.866199], + [-12.452499, 9.8572], + [-12.456899, 9.8546], + [-12.480099, 9.855499], + [-12.498999, 9.843599], + [-12.4989, 9.8393], + [-12.500599, 9.8347], + [-12.4995, 9.8322], + [-12.496699, 9.8299], + [-12.4923, 9.828999], + [-12.4902, 9.825999], + [-12.491299, 9.8113], + [-12.497299, 9.810299], + [-12.500299, 9.807999], + [-12.5014, 9.789199], + [-12.511299, 9.775099], + [-12.5124, 9.763399], + [-12.518699, 9.756499], + [-12.518399, 9.7539], + [-12.5084, 9.749399], + [-12.5073, 9.745899], + [-12.5091, 9.7429], + [-12.522999, 9.743399], + [-12.525599, 9.741699], + [-12.528099, 9.736399], + [-12.5192, 9.7142], + [-12.5194, 9.7073], + [-12.5224, 9.7054], + [-12.5257, 9.7059], + [-12.528899, 9.7091], + [-12.5336, 9.720099], + [-12.536099, 9.720499], + [-12.547499, 9.709], + [-12.556699, 9.7035], + [-12.566699, 9.702699], + [-12.568899, 9.692399], + [-12.568, 9.6839], + [-12.56827, 9.6828] + ] + ], + "type": "Polygon" + }, + "id": 508, + "properties": { + "cc:admin:id": ["131"], + "cc:oBld:total": 594, + "cc:pop:fifteen-to-twenty-four": 1490.38318205445, + "cc:pop:grid3-total": 13014.751620335615, + "cc:pop:kontur-total": 9509.447219433298, + "cc:pop:men": 4001.9334027295054, + "cc:pop:sixty-plus": 585.3972699545928, + "cc:pop:total": 8303.121808036172, + "cc:pop:under-five": 1323.8249138030374, + "cc:pop:women": 4301.188405306662, + "cc:pop:women-fiften-to-forty-nine": 2075.780452009043, + "cc:pop:wp-total": 7778.451091761948, + "cc:pop:wp-total-UN": 9010.79574986816, + "cc:id": "508", + "cc:Name": "Sanya CHP", + "cc:site": [-12.3786, 9.8371], + "user:parentName": "Tambaka", + "user:code": "OU_193246", + "user:orgUnitId": "UqHuR4IYvTY", + "user:level": "4", + "user:parentId": "Qhmi8IZyPyD" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.147364, 8.701723], + [-11.14702, 8.700515], + [-11.146397, 8.700167], + [-11.145765, 8.701259], + [-11.137953, 8.701259], + [-11.134046, 8.694495], + [-11.126233, 8.694494], + [-11.122328, 8.687729], + [-11.122424, 8.687562], + [-11.122082, 8.687083], + [-11.119583, 8.687917], + [-11.118749, 8.691249], + [-11.107083, 8.685417], + [-11.107082, 8.680417], + [-11.104583, 8.677916], + [-11.10673, 8.672189], + [-11.102961, 8.672064], + [-11.101516, 8.671177], + [-11.100174, 8.669781], + [-11.097316, 8.67006], + [-11.096202, 8.67003], + [-11.095013, 8.669319], + [-11.094184, 8.668008], + [-11.094144, 8.667963], + [-11.093749, 8.668749], + [-11.087082, 8.667084], + [-11.082083, 8.667916], + [-11.080416, 8.665417], + [-11.074583, 8.665417], + [-11.072082, 8.670416], + [-11.068529, 8.669232], + [-11.067226, 8.672247], + [-11.066795, 8.673469], + [-11.06125, 8.672083], + [-11.060416, 8.674582], + [-11.057083, 8.67625], + [-11.056022, 8.677842], + [-11.058, 8.6824], + [-11.0587, 8.686], + [-11.0591, 8.697499], + [-11.0606, 8.701299], + [-11.0632, 8.703699], + [-11.066999, 8.705399], + [-11.0699, 8.707], + [-11.073899, 8.708699], + [-11.077899, 8.7117], + [-11.0808, 8.7158], + [-11.0816, 8.7184], + [-11.082099, 8.723699], + [-11.0825, 8.7259], + [-11.0839, 8.7285], + [-11.0877, 8.733599], + [-11.0948, 8.7345], + [-11.0974, 8.7352], + [-11.1019, 8.7372], + [-11.107899, 8.7386], + [-11.114099, 8.7422], + [-11.1186, 8.7474], + [-11.1206, 8.7488], + [-11.1264, 8.7519], + [-11.1297, 8.752699], + [-11.132899, 8.752099], + [-11.134499, 8.750099], + [-11.134899, 8.7475], + [-11.1348, 8.7438], + [-11.134299, 8.741099], + [-11.133199, 8.7389], + [-11.1302, 8.7368], + [-11.1284, 8.734899], + [-11.1275, 8.732199], + [-11.1278, 8.729699], + [-11.1316, 8.722399], + [-11.1345, 8.718799], + [-11.141299, 8.7121], + [-11.144199, 8.7085], + [-11.146524, 8.703849], + [-11.147364, 8.701723] + ] + ], + "type": "Polygon" + }, + "id": 509, + "properties": { + "cc:admin:id": ["100"], + "cc:oBld:total": 535, + "cc:pop:fifteen-to-twenty-four": 527.0866499110865, + "cc:pop:grid3-total": 4309.184032071207, + "cc:pop:kontur-total": 2982.8152361250873, + "cc:pop:men": 1566.4805774132165, + "cc:pop:sixty-plus": 172.8771900848985, + "cc:pop:total": 2832.3572049533554, + "cc:pop:under-five": 462.3390555381217, + "cc:pop:women": 1265.8766275401379, + "cc:pop:women-fiften-to-forty-nine": 629.7455020677991, + "cc:pop:wp-total": 2802.4484176181622, + "cc:pop:wp-total-UN": 3242.547230210822, + "cc:id": "509", + "cc:Name": "Seidu MCHP", + "cc:site": [-11.097, 8.728], + "user:parentName": "Nimikoro", + "user:code": "OU_233406", + "user:orgUnitId": "uoPC2z9r7Cc", + "user:level": "4", + "user:parentId": "DmaLM8WYmWv" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.891299, 7.7567], + [-11.8864, 7.7529], + [-11.884099, 7.7516], + [-11.881399, 7.751], + [-11.8783, 7.751199], + [-11.876299, 7.7518], + [-11.872599, 7.7535], + [-11.866799, 7.7552], + [-11.863699, 7.7569], + [-11.8595, 7.760299], + [-11.857, 7.761499], + [-11.8536, 7.761799], + [-11.850999, 7.761299], + [-11.8466, 7.759], + [-11.843499, 7.757599], + [-11.8399, 7.7557], + [-11.8377, 7.755], + [-11.833999, 7.7546], + [-11.8177, 7.7546], + [-11.814, 7.7532], + [-11.810199, 7.747599], + [-11.808599, 7.743699], + [-11.8062, 7.7394], + [-11.804899, 7.736199], + [-11.8028, 7.7326], + [-11.800999, 7.7289], + [-11.798199, 7.7259], + [-11.786, 7.7198], + [-11.7836, 7.7174], + [-11.7817, 7.7132], + [-11.7797, 7.7096], + [-11.7783, 7.7065], + [-11.775999, 7.703399], + [-11.771999, 7.699999], + [-11.769299, 7.698899], + [-11.764199, 7.697899], + [-11.7559, 7.6939], + [-11.7531, 7.6921], + [-11.7452, 7.6841], + [-11.7423, 7.6806], + [-11.738099, 7.672299], + [-11.737399, 7.668899], + [-11.736999, 7.6593], + [-11.7232, 7.6598], + [-11.722599, 7.6641], + [-11.7221, 7.669599], + [-11.7215, 7.672299], + [-11.719099, 7.678], + [-11.7186, 7.683399], + [-11.7188, 7.688399], + [-11.72, 7.6918], + [-11.725099, 7.698399], + [-11.7281, 7.7037], + [-11.7325, 7.7091], + [-11.7373, 7.7176], + [-11.738699, 7.720699], + [-11.740199, 7.723399], + [-11.740799, 7.7256], + [-11.740399, 7.728], + [-11.738999, 7.7296], + [-11.736999, 7.7328], + [-11.733999, 7.7363], + [-11.7279, 7.742399], + [-11.7246, 7.746399], + [-11.7225, 7.750599], + [-11.7203, 7.753499], + [-11.716999, 7.7566], + [-11.7131, 7.7594], + [-11.7098, 7.764499], + [-11.7089, 7.766499], + [-11.7084, 7.77], + [-11.708599, 7.786899], + [-11.708399, 7.7897], + [-11.707599, 7.7923], + [-11.704199, 7.799], + [-11.702099, 7.802], + [-11.6962, 7.808399], + [-11.6945, 7.8112], + [-11.694099, 7.8134], + [-11.6936, 7.818699], + [-11.693003, 7.821184], + [-11.692999, 7.8212], + [-11.690699, 7.8269], + [-11.6903, 7.8309], + [-11.690499, 7.833599], + [-11.691199, 7.836199], + [-11.696499, 7.846399], + [-11.697299, 7.8487], + [-11.697299, 7.851299], + [-11.6956, 7.856799], + [-11.699499, 7.8588], + [-11.701099, 7.860499], + [-11.701699, 7.8636], + [-11.7013, 7.866099], + [-11.701054, 7.866603], + [-11.703491, 7.866794], + [-11.704443, 7.866428], + [-11.705072, 7.867016], + [-11.706683, 7.867585], + [-11.708082, 7.868931], + [-11.708202, 7.868982], + [-11.708751, 7.866657], + [-11.708778, 7.866444], + [-11.709347, 7.863571], + [-11.713573, 7.863043], + [-11.713574, 7.863044], + [-11.712793, 7.865123], + [-11.712514, 7.86544], + [-11.712141, 7.865567], + [-11.712268, 7.866004], + [-11.712309, 7.866413], + [-11.711264, 7.869202], + [-11.711725, 7.869573], + [-11.71242, 7.86983], + [-11.714582, 7.86875], + [-11.715318, 7.869851], + [-11.715757, 7.869877], + [-11.71787, 7.868172], + [-11.718354, 7.867411], + [-11.71813, 7.8671], + [-11.718763, 7.866962], + [-11.718915, 7.866528], + [-11.719458, 7.865926], + [-11.72109, 7.865138], + [-11.721982, 7.864434], + [-11.722326, 7.862452], + [-11.722255, 7.85979], + [-11.72242, 7.859063], + [-11.723735, 7.857483], + [-11.724802, 7.856978], + [-11.723885, 7.854459], + [-11.72382, 7.853742], + [-11.724433, 7.852553], + [-11.724298, 7.851452], + [-11.725145, 7.851262], + [-11.725493, 7.850763], + [-11.725187, 7.850051], + [-11.72544, 7.847918], + [-11.725298, 7.847737], + [-11.725478, 7.847375], + [-11.725485, 7.846809], + [-11.72452, 7.845688], + [-11.724301, 7.844838], + [-11.724779, 7.842419], + [-11.725111, 7.842069], + [-11.725671, 7.840961], + [-11.727916, 7.842083], + [-11.727917, 7.840924], + [-11.730006, 7.840174], + [-11.730622, 7.839584], + [-11.733749, 7.839583], + [-11.73323, 7.838024], + [-11.733347, 7.837985], + [-11.735317, 7.836691], + [-11.736248, 7.836202], + [-11.73625, 7.836203], + [-11.73625, 7.839312], + [-11.73831, 7.839082], + [-11.739935, 7.838622], + [-11.738401, 7.83555], + [-11.740824, 7.835316], + [-11.741821, 7.834771], + [-11.74192, 7.834643], + [-11.743191, 7.836338], + [-11.743438, 7.836239], + [-11.743994, 7.835679], + [-11.745631, 7.835509], + [-11.747633, 7.832508], + [-11.748035, 7.832427], + [-11.748325, 7.83222], + [-11.750758, 7.83303], + [-11.751359, 7.832541], + [-11.751838, 7.832394], + [-11.753102, 7.832394], + [-11.752917, 7.832084], + [-11.752905, 7.83207], + [-11.752941, 7.832058], + [-11.755037, 7.82982], + [-11.755088, 7.829611], + [-11.754583, 7.827084], + [-11.754582, 7.826923], + [-11.754493, 7.826909], + [-11.754133, 7.8265], + [-11.754404, 7.826072], + [-11.754774, 7.825977], + [-11.754696, 7.825151], + [-11.755379, 7.824946], + [-11.755544, 7.825031], + [-11.75875, 7.82375], + [-11.761393, 7.824631], + [-11.760443, 7.826087], + [-11.760565, 7.826201], + [-11.761135, 7.826036], + [-11.761609, 7.826224], + [-11.762352, 7.825985], + [-11.762876, 7.825126], + [-11.763165, 7.825221], + [-11.763544, 7.824881], + [-11.763919, 7.824734], + [-11.764024, 7.82432], + [-11.765261, 7.823737], + [-11.765647, 7.8228], + [-11.765538, 7.822595], + [-11.764916, 7.822532], + [-11.764972, 7.822789], + [-11.764718, 7.823023], + [-11.764285, 7.823283], + [-11.764283, 7.823283], + [-11.764583, 7.822083], + [-11.770416, 7.820417], + [-11.770667, 7.820916], + [-11.770849, 7.820827], + [-11.773609, 7.819584], + [-11.77125, 7.819583], + [-11.770697, 7.817924], + [-11.771406, 7.817399], + [-11.772222, 7.816325], + [-11.772788, 7.81593], + [-11.777732, 7.817577], + [-11.778524, 7.816817], + [-11.779157, 7.816691], + [-11.779802, 7.816771], + [-11.781749, 7.817396], + [-11.781948, 7.817404], + [-11.781812, 7.816034], + [-11.782295, 7.816215], + [-11.783119, 7.815874], + [-11.783533, 7.815075], + [-11.783431, 7.814731], + [-11.783136, 7.814706], + [-11.782161, 7.815261], + [-11.781732, 7.81524], + [-11.781444, 7.812358], + [-11.781562, 7.812263], + [-11.782013, 7.811645], + [-11.783691, 7.811311], + [-11.785572, 7.810398], + [-11.787619, 7.809994], + [-11.789293, 7.809889], + [-11.791988, 7.808724], + [-11.793085, 7.808089], + [-11.793644, 7.807438], + [-11.794454, 7.806954], + [-11.796432, 7.808932], + [-11.798233, 7.806665], + [-11.800476, 7.804342], + [-11.801378, 7.804007], + [-11.801249, 7.80375], + [-11.799334, 7.803431], + [-11.79913, 7.803467], + [-11.798745, 7.803182], + [-11.799728, 7.801646], + [-11.800354, 7.801464], + [-11.801064, 7.801546], + [-11.801276, 7.801417], + [-11.801384, 7.801001], + [-11.801866, 7.800648], + [-11.80082, 7.800186], + [-11.802015, 7.798843], + [-11.801908, 7.798624], + [-11.802183, 7.79857], + [-11.802493, 7.798038], + [-11.802821, 7.797971], + [-11.803447, 7.796041], + [-11.803964, 7.795355], + [-11.805853, 7.793544], + [-11.809211, 7.792759], + [-11.809609, 7.792533], + [-11.811739, 7.792518], + [-11.812564, 7.792426], + [-11.813271, 7.792133], + [-11.815057, 7.792405], + [-11.816583, 7.792007], + [-11.817235, 7.791986], + [-11.818736, 7.790838], + [-11.819154, 7.789813], + [-11.820188, 7.789002], + [-11.822257, 7.788269], + [-11.822783, 7.787244], + [-11.823518, 7.786536], + [-11.825063, 7.786003], + [-11.82538, 7.78609], + [-11.82587, 7.786608], + [-11.827207, 7.787002], + [-11.827335, 7.787467], + [-11.827906, 7.787919], + [-11.828705, 7.788166], + [-11.828879, 7.788174], + [-11.829583, 7.789583], + [-11.835448, 7.789583], + [-11.83618, 7.789005], + [-11.838841, 7.786365], + [-11.839236, 7.786042], + [-11.838227, 7.783016], + [-11.838556, 7.782834], + [-11.839221, 7.781743], + [-11.84002, 7.781375], + [-11.841252, 7.781194], + [-11.842976, 7.780595], + [-11.844044, 7.780496], + [-11.844965, 7.779979], + [-11.84592, 7.778848], + [-11.848271, 7.777132], + [-11.848599, 7.777167], + [-11.849035, 7.777505], + [-11.849668, 7.777606], + [-11.85017, 7.777503], + [-11.851393, 7.776355], + [-11.851472, 7.776308], + [-11.852554, 7.780633], + [-11.854287, 7.778818], + [-11.855452, 7.777996], + [-11.85845, 7.777205], + [-11.861023, 7.777075], + [-11.862647, 7.77677], + [-11.864, 7.775926], + [-11.864031, 7.775971], + [-11.8646, 7.774899], + [-11.8671, 7.7734], + [-11.872, 7.772399], + [-11.877399, 7.7704], + [-11.882399, 7.7692], + [-11.884399, 7.768399], + [-11.8869, 7.766199], + [-11.891299, 7.7567] + ] + ], + "type": "Polygon" + }, + "id": 510, + "properties": { + "cc:admin:id": ["134"], + "cc:oBld:total": 727, + "cc:pop:fifteen-to-twenty-four": 2648.844377222193, + "cc:pop:grid3-total": 15272.896994778164, + "cc:pop:kontur-total": 15443.216959667272, + "cc:pop:men": 8070.9818071583595, + "cc:pop:sixty-plus": 911.6969718104572, + "cc:pop:total": 15652.83065278045, + "cc:pop:under-five": 2496.5645416867305, + "cc:pop:women": 7581.848845622099, + "cc:pop:women-fiften-to-forty-nine": 3770.5181946977627, + "cc:pop:wp-total": 15315.460849597795, + "cc:pop:wp-total-UN": 17768.7538782927, + "cc:id": "510", + "cc:Name": "Sembehun 17 CHP", + "cc:site": [-11.7243, 7.7801], + "user:parentName": "Tikonko", + "user:code": "OU_1107", + "user:orgUnitId": "DqfiI6NVnB1", + "user:level": "4", + "user:parentId": "sxRd2XOzFbz" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.608199, 7.9145], + [-12.605, 7.913099], + [-12.6023, 7.9102], + [-12.600699, 7.907699], + [-12.5982, 7.9051], + [-12.5916, 7.901], + [-12.588699, 7.897999], + [-12.586999, 7.895299], + [-12.586499, 7.891899], + [-12.5861, 7.8815], + [-12.585856, 7.880179], + [-12.584528, 7.880248], + [-12.583111, 7.879467], + [-12.582767, 7.879405], + [-12.581249, 7.880417], + [-12.577438, 7.880417], + [-12.577422, 7.880465], + [-12.574846, 7.879291], + [-12.572391, 7.879663], + [-12.571484, 7.880174], + [-12.57148, 7.880689], + [-12.569928, 7.881066], + [-12.568632, 7.88183], + [-12.567917, 7.882005], + [-12.567917, 7.883878], + [-12.568361, 7.884147], + [-12.569649, 7.884412], + [-12.571205, 7.883521], + [-12.571458, 7.884551], + [-12.572091, 7.884873], + [-12.572917, 7.885974], + [-12.571704, 7.886742], + [-12.571193, 7.885581], + [-12.569772, 7.88583], + [-12.569376, 7.886987], + [-12.5686, 7.887239], + [-12.567567, 7.887234], + [-12.568079, 7.88788], + [-12.568075, 7.888654], + [-12.566007, 7.888898], + [-12.56537, 7.887607], + [-12.565511, 7.885291], + [-12.563835, 7.885022], + [-12.563709, 7.88425], + [-12.561905, 7.883723], + [-12.561908, 7.882951], + [-12.560619, 7.882815], + [-12.55989, 7.883223], + [-12.558749, 7.882084], + [-12.55461, 7.882084], + [-12.554677, 7.882652], + [-12.553643, 7.88303], + [-12.552616, 7.881867], + [-12.552848, 7.886247], + [-12.550256, 7.887647], + [-12.548451, 7.887251], + [-12.548453, 7.886736], + [-12.547603, 7.886358], + [-12.547083, 7.887916], + [-12.546957, 7.888668], + [-12.544571, 7.888299], + [-12.543242, 7.885543], + [-12.542357, 7.885101], + [-12.540996, 7.885237], + [-12.539668, 7.885644], + [-12.536673, 7.885339], + [-12.535117, 7.885637], + [-12.535607, 7.886416], + [-12.535606, 7.886418], + [-12.531892, 7.887136], + [-12.529358, 7.887518], + [-12.526772, 7.887789], + [-12.524267, 7.887925], + [-12.522313, 7.888188], + [-12.520791, 7.888188], + [-12.520034, 7.88893], + [-12.519217, 7.890482], + [-12.518319, 7.891407], + [-12.517094, 7.891625], + [-12.516222, 7.891652], + [-12.514942, 7.891138], + [-12.514306, 7.892239], + [-12.512874, 7.891588], + [-12.511288, 7.890353], + [-12.510307, 7.888801], + [-12.508755, 7.887005], + [-12.502556, 7.890448], + [-12.505985, 7.890016], + [-12.50256, 7.890456], + [-12.502833, 7.89136], + [-12.50231, 7.892644], + [-12.502173, 7.893673], + [-12.501657, 7.893671], + [-12.501392, 7.8947], + [-12.49984, 7.895206], + [-12.499708, 7.895719], + [-12.499965, 7.895979], + [-12.500089, 7.896495], + [-12.49983, 7.896621], + [-12.49854, 7.896486], + [-12.497917, 7.897468], + [-12.497916, 7.900417], + [-12.49625, 7.902917], + [-12.496249, 7.907083], + [-12.495659, 7.907182], + [-12.495763, 7.907287], + [-12.496017, 7.908061], + [-12.496262, 7.910122], + [-12.496252, 7.911925], + [-12.495593, 7.913982], + [-12.495077, 7.913979], + [-12.495073, 7.914495], + [-12.494035, 7.915388], + [-12.492742, 7.915639], + [-12.490924, 7.917172], + [-12.489145, 7.918268], + [-12.489761, 7.92012], + [-12.48976, 7.920121], + [-12.489699, 7.92007], + [-12.489583, 7.920417], + [-12.489583, 7.922084], + [-12.490416, 7.925416], + [-12.482917, 7.92625], + [-12.482916, 7.93816], + [-12.480275, 7.937901], + [-12.476374, 7.939035], + [-12.475417, 7.939858], + [-12.475417, 7.948749], + [-12.474763, 7.952016], + [-12.474687, 7.952005], + [-12.474369, 7.951941], + [-12.47383, 7.951798], + [-12.469583, 7.959584], + [-12.470417, 7.965416], + [-12.472916, 7.968749], + [-12.473749, 7.96875], + [-12.47375, 7.969583], + [-12.474545, 7.969981], + [-12.472363, 7.97153], + [-12.474582, 7.973749], + [-12.47625, 7.97375], + [-12.480417, 7.978749], + [-12.482083, 7.97875], + [-12.484583, 7.982083], + [-12.487917, 7.98125], + [-12.495416, 7.98125], + [-12.500644, 7.986478], + [-12.500417, 7.98665], + [-12.500416, 7.997916], + [-12.492917, 7.999584], + [-12.48875, 8.003749], + [-12.48875, 8.004583], + [-12.500416, 8.012084], + [-12.500416, 8.012917], + [-12.497083, 8.014584], + [-12.495417, 8.017083], + [-12.498708, 8.020787], + [-12.495548, 8.026261], + [-12.499453, 8.033026], + [-12.498296, 8.035032], + [-12.498749, 8.035416], + [-12.49875, 8.035689], + [-12.503359, 8.03569], + [-12.507264, 8.042455], + [-12.503723, 8.048591], + [-12.5128, 8.0485], + [-12.5157, 8.0486], + [-12.519499, 8.049099], + [-12.5249, 8.0514], + [-12.530799, 8.052899], + [-12.5361, 8.0551], + [-12.542899, 8.056899], + [-12.5474, 8.0589], + [-12.5509, 8.0596], + [-12.558299, 8.059699], + [-12.5574, 8.0563], + [-12.5552, 8.0519], + [-12.5546, 8.0494], + [-12.5544, 8.046799], + [-12.554799, 8.0425], + [-12.558599, 8.0338], + [-12.5606, 8.030299], + [-12.5623, 8.0266], + [-12.565, 8.0236], + [-12.5688, 8.021899], + [-12.5731, 8.019299], + [-12.5763, 8.017999], + [-12.580299, 8.0161], + [-12.5824, 8.015499], + [-12.588599, 8.0149], + [-12.591699, 8.013799], + [-12.594399, 8.010499], + [-12.5961, 8.0057], + [-12.597499, 8.004], + [-12.6005, 8.001799], + [-12.606699, 7.995799], + [-12.606, 7.9854], + [-12.605299, 7.981799], + [-12.6017, 7.9745], + [-12.5992, 7.970201], + [-12.595299, 7.962199], + [-12.5945, 7.957899], + [-12.5945, 7.9489], + [-12.5952, 7.9447], + [-12.5974, 7.940299], + [-12.601099, 7.9321], + [-12.6024, 7.927099], + [-12.604, 7.923899], + [-12.607399, 7.919099], + [-12.608199, 7.9145] + ] + ], + "type": "Polygon" + }, + "id": 511, + "properties": { + "cc:admin:id": ["1"], + "cc:oBld:total": 37, + "cc:pop:fifteen-to-twenty-four": 1401.4100486383654, + "cc:pop:grid3-total": 9416.551045320664, + "cc:pop:kontur-total": 7747.261807892493, + "cc:pop:men": 3527.090934907226, + "cc:pop:sixty-plus": 485.921971282526, + "cc:pop:total": 7567.195753013708, + "cc:pop:under-five": 1311.9555523803053, + "cc:pop:women": 4040.104818106483, + "cc:pop:women-fiften-to-forty-nine": 1887.9066826668031, + "cc:pop:wp-total": 6159.4165862085165, + "cc:pop:wp-total-UN": 7137.124841000296, + "cc:id": "511", + "cc:Name": "Sembehun CHC", + "cc:site": [-12.5375, 7.9388], + "user:parentName": "Bagruwa", + "user:code": "OU_247053", + "user:orgUnitId": "egjrZ1PHNtT", + "user:level": "4", + "user:parentId": "jPidqyo7cpF" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.351699, 7.9604], + [-11.3437, 7.9596], + [-11.3406, 7.958999], + [-11.337599, 7.957199], + [-11.3316, 7.9518], + [-11.328499, 7.9501], + [-11.326, 7.9504], + [-11.324402, 7.951135], + [-11.324383, 7.952165], + [-11.325124, 7.953542], + [-11.324582, 7.95625], + [-11.321249, 7.959583], + [-11.31875, 7.960416], + [-11.318714, 7.960417], + [-11.318921, 7.961315], + [-11.318707, 7.962565], + [-11.318416, 7.962782], + [-11.317888, 7.964426], + [-11.317514, 7.96511], + [-11.317473, 7.965923], + [-11.317083, 7.965989], + [-11.317083, 7.967917], + [-11.317916, 7.971248], + [-11.31375, 7.969584], + [-11.312083, 7.971249], + [-11.312083, 7.977191], + [-11.312081, 7.977191], + [-11.311991, 7.977023], + [-11.311507, 7.976494], + [-11.311269, 7.976446], + [-11.311542, 7.979251], + [-11.311443, 7.980358], + [-11.311347, 7.981249], + [-11.30875, 7.98125], + [-11.308749, 7.982084], + [-11.306249, 7.984584], + [-11.304583, 7.992916], + [-11.304583, 7.994583], + [-11.30625, 7.996249], + [-11.307916, 7.99625], + [-11.30792, 7.996253], + [-11.307259, 7.997146], + [-11.307226, 7.997133], + [-11.307916, 8.005416], + [-11.305416, 8.00625], + [-11.30125, 8.007084], + [-11.302053, 8.007886], + [-11.302386, 8.007203], + [-11.302958, 8.007697], + [-11.303429, 8.008795], + [-11.303916, 8.009449], + [-11.304517, 8.009733], + [-11.305042, 8.010392], + [-11.30491, 8.010743], + [-11.307916, 8.01375], + [-11.305416, 8.015416], + [-11.295417, 8.014584], + [-11.295416, 8.022082], + [-11.292917, 8.02125], + [-11.289583, 8.032083], + [-11.295936, 8.034906], + [-11.297044, 8.034461], + [-11.299439, 8.033929], + [-11.302286, 8.033359], + [-11.302917, 8.029583], + [-11.312082, 8.027917], + [-11.314582, 8.027084], + [-11.322916, 8.031249], + [-11.32375, 8.032083], + [-11.330416, 8.032083], + [-11.332083, 8.03125], + [-11.337733, 8.031249], + [-11.338006, 8.02911], + [-11.336042, 8.025887], + [-11.336042, 8.024934], + [-11.336649, 8.024083], + [-11.337194, 8.022092], + [-11.336732, 8.020309], + [-11.336397, 8.02001], + [-11.336104, 8.018961], + [-11.335434, 8.017943], + [-11.335057, 8.016865], + [-11.334893, 8.015608], + [-11.338468, 8.016203], + [-11.338433, 8.016605], + [-11.338768, 8.016609], + [-11.33988, 8.019784], + [-11.339711, 8.019917], + [-11.339702, 8.021034], + [-11.339496, 8.020973], + [-11.339322, 8.021221], + [-11.339554, 8.021346], + [-11.339814, 8.021123], + [-11.340174, 8.021661], + [-11.340607, 8.021856], + [-11.341562, 8.024583], + [-11.342449, 8.024583], + [-11.341999, 8.018099], + [-11.3418, 7.9976], + [-11.3421, 7.990499], + [-11.3434, 7.984199], + [-11.347699, 7.9708], + [-11.351699, 7.9604] + ] + ], + "type": "Polygon" + }, + "id": 512, + "properties": { + "cc:admin:id": ["50"], + "cc:oBld:total": 549, + "cc:pop:fifteen-to-twenty-four": 1395.396861290395, + "cc:pop:grid3-total": 2860.370738549823, + "cc:pop:kontur-total": 7716.43677003629, + "cc:pop:men": 4066.273868380286, + "cc:pop:sixty-plus": 452.1454308737044, + "cc:pop:total": 7401.140812129542, + "cc:pop:under-five": 1107.2805897994917, + "cc:pop:women": 3334.8669437492554, + "cc:pop:women-fiften-to-forty-nine": 1697.4982399145717, + "cc:pop:wp-total": 6100.026529164657, + "cc:pop:wp-total-UN": 7069.439622830572, + "cc:id": "512", + "cc:Name": "Sembehun MCHP", + "cc:site": [-11.3277, 8.0208], + "user:parentName": "Kandu Lepiema", + "user:code": "OU_222727", + "user:orgUnitId": "IWM4eKPJJSc", + "user:level": "4", + "user:parentId": "K1r3uF6eZ8n" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.041249, 8.217916], + [-11.04085, 8.217118], + [-11.040727, 8.217219], + [-11.040726, 8.217219], + [-11.03875, 8.214584], + [-11.039582, 8.212917], + [-11.037082, 8.209583], + [-11.03625, 8.205417], + [-11.03625, 8.204584], + [-11.037916, 8.203749], + [-11.034582, 8.195417], + [-11.03125, 8.194584], + [-11.030417, 8.194583], + [-11.031249, 8.189584], + [-11.024583, 8.186249], + [-11.026249, 8.177917], + [-11.02375, 8.174584], + [-11.021249, 8.174584], + [-11.012917, 8.175416], + [-11.007083, 8.177084], + [-11.004582, 8.179584], + [-11.002916, 8.184584], + [-11.002083, 8.190416], + [-11.00625, 8.196249], + [-11.007916, 8.19625], + [-11.007917, 8.202916], + [-11.010417, 8.204583], + [-11.014581, 8.204584], + [-11.01125, 8.208749], + [-11.011249, 8.208748], + [-11.010416, 8.207084], + [-11.008591, 8.20754], + [-11.008937, 8.208308], + [-11.009065, 8.209214], + [-11.01001, 8.211182], + [-11.009776, 8.211692], + [-11.009932, 8.212248], + [-11.010253, 8.212487], + [-11.010784, 8.212555], + [-11.012583, 8.214388], + [-11.013635, 8.215074], + [-11.014827, 8.217137], + [-11.016718, 8.218508], + [-11.017408, 8.218395], + [-11.017409, 8.218396], + [-11.017292, 8.218978], + [-11.015963, 8.220384], + [-11.012998, 8.220422], + [-11.012723, 8.221621], + [-11.011943, 8.222745], + [-11.011701, 8.222854], + [-11.010493, 8.222784], + [-11.009861, 8.223083], + [-11.009743, 8.223468], + [-11.016249, 8.227084], + [-11.01875, 8.230416], + [-11.022083, 8.227917], + [-11.029583, 8.227916], + [-11.035416, 8.22625], + [-11.036249, 8.226249], + [-11.040218, 8.224266], + [-11.040351, 8.21907], + [-11.040241, 8.218925], + [-11.041249, 8.217916] + ] + ], + "type": "Polygon" + }, + "id": 513, + "properties": { + "cc:admin:id": ["75"], + "cc:oBld:total": 0, + "cc:pop:fifteen-to-twenty-four": 414.96091014916624, + "cc:pop:grid3-total": 690.3214865931382, + "cc:pop:kontur-total": 1935.061377376278, + "cc:pop:men": 1202.5273636565523, + "cc:pop:sixty-plus": 128.21025622692196, + "cc:pop:total": 2150.2391677143646, + "cc:pop:under-five": 331.12182025972805, + "cc:pop:women": 947.711804057812, + "cc:pop:women-fiften-to-forty-nine": 468.39710505395834, + "cc:pop:wp-total": 2405.9042528978234, + "cc:pop:wp-total-UN": 2787.1594932387734, + "cc:id": "513", + "cc:Name": "Sembeima MCHP", + "cc:site": [-11.0273, 8.2109], + "user:parentName": "Lower Bambara", + "user:code": "OU_222655", + "user:orgUnitId": "REtQE1gstTf", + "user:level": "4", + "user:parentId": "hdEuw2ugkVF" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.087916, 8.157084], + [-11.087083, 8.157083], + [-11.087082, 8.147917], + [-11.078749, 8.150416], + [-11.07625, 8.145417], + [-11.077636, 8.143567], + [-11.074438, 8.143566], + [-11.070532, 8.136801], + [-11.065417, 8.1368], + [-11.065416, 8.133209], + [-11.063032, 8.12908], + [-11.055219, 8.129079], + [-11.054583, 8.127976], + [-11.054582, 8.122917], + [-11.05125, 8.11875], + [-11.04375, 8.117084], + [-11.042916, 8.127916], + [-11.039583, 8.130416], + [-11.032917, 8.12375], + [-11.032083, 8.127913], + [-11.027375, 8.127914], + [-11.023468, 8.134679], + [-11.017981, 8.134679], + [-11.017916, 8.134584], + [-11.01125, 8.134583], + [-11.009582, 8.132917], + [-11.007083, 8.132084], + [-11.007082, 8.13875], + [-11.00375, 8.144583], + [-10.997629, 8.143903], + [-10.998201, 8.144895], + [-10.994296, 8.15166], + [-10.989163, 8.151661], + [-10.99125, 8.155416], + [-10.997916, 8.159584], + [-10.997083, 8.165416], + [-10.999633, 8.170515], + [-11.004726, 8.170515], + [-11.008633, 8.16375], + [-11.015047, 8.16375], + [-11.015799, 8.163336], + [-11.016249, 8.163384], + [-11.01625, 8.168749], + [-11.017083, 8.171249], + [-11.02125, 8.174583], + [-11.02375, 8.174584], + [-11.026249, 8.177916], + [-11.024583, 8.186249], + [-11.031249, 8.189583], + [-11.030417, 8.194583], + [-11.03125, 8.194584], + [-11.034583, 8.195417], + [-11.037916, 8.203749], + [-11.03625, 8.204584], + [-11.03625, 8.205417], + [-11.037082, 8.209583], + [-11.039583, 8.212916], + [-11.042916, 8.212083], + [-11.045416, 8.207916], + [-11.04375, 8.203751], + [-11.043751, 8.20375], + [-11.049582, 8.204584], + [-11.05125, 8.206249], + [-11.052244, 8.20625], + [-11.052219, 8.206215], + [-11.052903, 8.205552], + [-11.054917, 8.205651], + [-11.05548, 8.205317], + [-11.055965, 8.204959], + [-11.056219, 8.205136], + [-11.056451, 8.204966], + [-11.056461, 8.20529], + [-11.056732, 8.205374], + [-11.057164, 8.205307], + [-11.057248, 8.204965], + [-11.056977, 8.204576], + [-11.056706, 8.20459], + [-11.056554, 8.204809], + [-11.056128, 8.204793], + [-11.056127, 8.204792], + [-11.057159, 8.204008], + [-11.057362, 8.203208], + [-11.059208, 8.202931], + [-11.060661, 8.203168], + [-11.060854, 8.203261], + [-11.061885, 8.203303], + [-11.062121, 8.203504], + [-11.062089, 8.203559], + [-11.062663, 8.203944], + [-11.063156, 8.20404], + [-11.064009, 8.203133], + [-11.064073, 8.203097], + [-11.06465, 8.203282], + [-11.064737, 8.203335], + [-11.064866, 8.203437], + [-11.064857, 8.203455], + [-11.064659, 8.203637], + [-11.065321, 8.204575], + [-11.065616, 8.204856], + [-11.065498, 8.204975], + [-11.065816, 8.205574], + [-11.066764, 8.205839], + [-11.067373, 8.205301], + [-11.068133, 8.205601], + [-11.068968, 8.2053], + [-11.069197, 8.204561], + [-11.069793, 8.203909], + [-11.070628, 8.203796], + [-11.071222, 8.203883], + [-11.07125, 8.203749], + [-11.072082, 8.202917], + [-11.072916, 8.202916], + [-11.074583, 8.199584], + [-11.076249, 8.197916], + [-11.07625, 8.190416], + [-11.077083, 8.187083], + [-11.077917, 8.18625], + [-11.078749, 8.186249], + [-11.079582, 8.177084], + [-11.079396, 8.176712], + [-11.079016, 8.177007], + [-11.079014, 8.177007], + [-11.075417, 8.17125], + [-11.075417, 8.167917], + [-11.083749, 8.169583], + [-11.085416, 8.168749], + [-11.085417, 8.164584], + [-11.086183, 8.163816], + [-11.086185, 8.163816], + [-11.0862, 8.16384], + [-11.086751, 8.163545], + [-11.086944, 8.163744], + [-11.086968, 8.1636], + [-11.08712, 8.16364], + [-11.087422, 8.163931], + [-11.087491, 8.163076], + [-11.087257, 8.162925], + [-11.087343, 8.162656], + [-11.087916, 8.162083], + [-11.087916, 8.157084] + ] + ], + "type": "Polygon" + }, + "id": 514, + "properties": { + "cc:admin:id": ["75"], + "cc:oBld:total": 199, + "cc:pop:fifteen-to-twenty-four": 1077.5980445180503, + "cc:pop:grid3-total": 3435.501395700982, + "cc:pop:kontur-total": 5827.372569165047, + "cc:pop:men": 3135.7387418618796, + "cc:pop:sixty-plus": 333.1894297199654, + "cc:pop:total": 5604.551198209377, + "cc:pop:under-five": 864.3557038999938, + "cc:pop:women": 2468.812456347498, + "cc:pop:women-fiften-to-forty-nine": 1223.5450438234805, + "cc:pop:wp-total": 6880.688977047866, + "cc:pop:wp-total-UN": 7966.52565048803, + "cc:id": "514", + "cc:Name": "Semewebu MCHP", + "cc:site": [-11.0527, 8.2005], + "user:parentName": "Lower Bambara", + "user:code": "OU_222667", + "user:orgUnitId": "NqTZjfTIsxC", + "user:level": "4", + "user:parentId": "hdEuw2ugkVF" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.428472, 7.703603], + [-11.4283, 7.6998], + [-11.427799, 7.6969], + [-11.425599, 7.6927], + [-11.422299, 7.690499], + [-11.420099, 7.688599], + [-11.414099, 7.682899], + [-11.411099, 7.680899], + [-11.4037, 7.6772], + [-11.4005, 7.6758], + [-11.398199, 7.674399], + [-11.3948, 7.6713], + [-11.3916, 7.6679], + [-11.389599, 7.664999], + [-11.387599, 7.661099], + [-11.385599, 7.658499], + [-11.382, 7.6554], + [-11.377799, 7.653399], + [-11.3734, 7.6511], + [-11.370199, 7.649799], + [-11.363, 7.6457], + [-11.360299, 7.6429], + [-11.351799, 7.642899], + [-11.3392, 7.6428], + [-11.336499, 7.643], + [-11.3338, 7.644], + [-11.330699, 7.6479], + [-11.327099, 7.652], + [-11.322499, 7.6567], + [-11.3131, 7.666099], + [-11.3093, 7.670099], + [-11.307199, 7.6731], + [-11.305199, 7.677], + [-11.300799, 7.6828], + [-11.297899, 7.6881], + [-11.295699, 7.6909], + [-11.2908, 7.696199], + [-11.2891, 7.698799], + [-11.288299, 7.7009], + [-11.287399, 7.7051], + [-11.2838, 7.713499], + [-11.2813, 7.718699], + [-11.2799, 7.724499], + [-11.2776, 7.729799], + [-11.2766, 7.733999], + [-11.2746, 7.737899], + [-11.2812, 7.7391], + [-11.288099, 7.740599], + [-11.2927, 7.7426], + [-11.2985, 7.744], + [-11.3006, 7.7453], + [-11.3026, 7.7478], + [-11.305799, 7.752799], + [-11.308199, 7.755599], + [-11.3137, 7.7606], + [-11.322699, 7.765199], + [-11.3259, 7.7665], + [-11.330299, 7.768899], + [-11.3335, 7.7703], + [-11.337899, 7.772499], + [-11.342999, 7.773599], + [-11.345399, 7.774399], + [-11.352999, 7.778199], + [-11.3552, 7.7798], + [-11.360599, 7.784799], + [-11.363399, 7.786999], + [-11.3688, 7.7899], + [-11.3748, 7.7945], + [-11.3787, 7.7963], + [-11.386999, 7.800499], + [-11.389699, 7.802499], + [-11.3925, 7.8057], + [-11.3953, 7.810899], + [-11.3983, 7.8137], + [-11.404899, 7.816999], + [-11.407399, 7.817699], + [-11.410099, 7.817799], + [-11.412299, 7.8174], + [-11.417899, 7.8149], + [-11.422999, 7.8137], + [-11.425299, 7.812799], + [-11.424299, 7.808], + [-11.421099, 7.802699], + [-11.4171, 7.7954], + [-11.412899, 7.786899], + [-11.411099, 7.781099], + [-11.4106, 7.774999], + [-11.4112, 7.769499], + [-11.4134, 7.762299], + [-11.4147, 7.754399], + [-11.4169, 7.744999], + [-11.4174, 7.740899], + [-11.417799, 7.7326], + [-11.418499, 7.7286], + [-11.4199, 7.724999], + [-11.427, 7.712499], + [-11.4281, 7.708599], + [-11.428499, 7.7042], + [-11.428472, 7.703603] + ] + ], + "type": "Polygon" + }, + "id": 515, + "properties": { + "cc:admin:id": ["97"], + "cc:oBld:total": 1111, + "cc:pop:fifteen-to-twenty-four": 2602.415750407942, + "cc:pop:grid3-total": 6938.694367961162, + "cc:pop:kontur-total": 13713.976281325664, + "cc:pop:men": 6481.343356664328, + "cc:pop:sixty-plus": 814.2041025002502, + "cc:pop:total": 13627.854670531306, + "cc:pop:under-five": 2170.7285686633863, + "cc:pop:women": 7146.511313866983, + "cc:pop:women-fiften-to-forty-nine": 3568.7344831784717, + "cc:pop:wp-total": 11726.09303888212, + "cc:pop:wp-total-UN": 13599.60432858471, + "cc:id": "515", + "cc:Name": "Sendumei CHC", + "cc:site": [-11.3867, 7.7138], + "user:parentName": "Niawa", + "user:code": "OU_222650", + "user:orgUnitId": "Jyv7sjpl9bA", + "user:level": "4", + "user:parentId": "uKC54fzxRzO" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.056599, 8.089599], + [-12.054999, 8.0871], + [-12.049399, 8.084999], + [-12.045, 8.0828], + [-12.041799, 8.081499], + [-12.0382, 8.0795], + [-12.034299, 8.077799], + [-12.029499, 8.0754], + [-12.015399, 8.0747], + [-12.0097, 8.0747], + [-12.005999, 8.075], + [-12.003899, 8.0757], + [-11.9968, 8.079099], + [-11.9925, 8.081499], + [-11.989299, 8.0828], + [-11.9804, 8.087699], + [-11.9746, 8.092099], + [-11.969999, 8.0946], + [-11.9635, 8.099599], + [-11.9581, 8.102599], + [-11.9538, 8.105999], + [-11.9515, 8.107499], + [-11.948399, 8.1089], + [-11.944899, 8.1109], + [-11.9418, 8.112299], + [-11.9395, 8.113699], + [-11.937399, 8.1154], + [-11.9314, 8.120999], + [-11.9292, 8.122499], + [-11.926099, 8.1239], + [-11.921799, 8.1263], + [-11.918699, 8.1276], + [-11.9144, 8.129999], + [-11.911199, 8.1313], + [-11.906, 8.133899], + [-11.9009, 8.134999], + [-11.8956, 8.137299], + [-11.892099, 8.138], + [-11.887399, 8.138199], + [-11.8817, 8.138], + [-11.877799, 8.137599], + [-11.8712, 8.1366], + [-11.868299, 8.1425], + [-11.8652, 8.146699], + [-11.863218, 8.148749], + [-11.870416, 8.14875], + [-11.876249, 8.152083], + [-11.876249, 8.15375], + [-11.872083, 8.159584], + [-11.872917, 8.165416], + [-11.877083, 8.168749], + [-11.890416, 8.168749], + [-11.893749, 8.164583], + [-11.89375, 8.155896], + [-11.896922, 8.161388], + [-11.904734, 8.161389], + [-11.904815, 8.16125], + [-11.905753, 8.16125], + [-11.905717, 8.161349], + [-11.905434, 8.164453], + [-11.90526, 8.16496], + [-11.907083, 8.165417], + [-11.910417, 8.170416], + [-11.912916, 8.17125], + [-11.910417, 8.179583], + [-11.910417, 8.182083], + [-11.914582, 8.182083], + [-11.91608, 8.181419], + [-11.913051, 8.186666], + [-11.916957, 8.193431], + [-11.92067, 8.193431], + [-11.921791, 8.192031], + [-11.922698, 8.192031], + [-11.926605, 8.198796], + [-11.931349, 8.198796], + [-11.932083, 8.197917], + [-11.938671, 8.19741], + [-11.939869, 8.199487], + [-11.935963, 8.206252], + [-11.938795, 8.211157], + [-11.939583, 8.209584], + [-11.942082, 8.209583], + [-11.947917, 8.20625], + [-11.94875, 8.209584], + [-11.94875, 8.22125], + [-11.952083, 8.222917], + [-11.958749, 8.223749], + [-11.964582, 8.22375], + [-11.968749, 8.220416], + [-11.96887, 8.219094], + [-11.969573, 8.219094], + [-11.97348, 8.225859], + [-11.978755, 8.225859], + [-11.9791, 8.224199], + [-11.979299, 8.2212], + [-11.979399, 8.214], + [-11.979799, 8.2101], + [-11.981999, 8.2047], + [-11.9826, 8.201899], + [-11.982899, 8.196899], + [-11.9826, 8.1825], + [-11.9827, 8.179499], + [-11.9832, 8.176599], + [-11.9856, 8.170299], + [-11.9861, 8.166299], + [-11.986299, 8.1571], + [-11.986899, 8.1534], + [-11.9888, 8.148899], + [-11.9902, 8.142999], + [-11.992699, 8.1377], + [-11.994, 8.134599], + [-11.996299, 8.1303], + [-11.998099, 8.1265], + [-12.0003, 8.123599], + [-12.0029, 8.120899], + [-12.013999, 8.1097], + [-12.0185, 8.105899], + [-12.0227, 8.103799], + [-12.027899, 8.1014], + [-12.033, 8.100299], + [-12.038199, 8.0977], + [-12.0414, 8.096399], + [-12.046499, 8.094], + [-12.050799, 8.093], + [-12.053199, 8.0921], + [-12.056599, 8.089599] + ] + ], + "type": "Polygon" + }, + "id": 516, + "properties": { + "cc:admin:id": ["48"], + "cc:oBld:total": 14, + "cc:pop:fifteen-to-twenty-four": 757.1424314170688, + "cc:pop:grid3-total": 3354.6902746749115, + "cc:pop:kontur-total": 5564.38594294366, + "cc:pop:men": 1981.111414292787, + "cc:pop:sixty-plus": 276.10689365419057, + "cc:pop:total": 4314.477875955404, + "cc:pop:under-five": 700.818085443805, + "cc:pop:women": 2333.3664616626183, + "cc:pop:women-fiften-to-forty-nine": 1109.8452640630853, + "cc:pop:wp-total": 3617.4280921024074, + "cc:pop:wp-total-UN": 4197.402008579694, + "cc:id": "516", + "cc:Name": "Senehun CHC", + "cc:site": [-11.9487, 8.1698], + "user:parentName": "Kamaje", + "user:code": "OU_247011", + "user:orgUnitId": "oLuhRyYPxRO", + "user:level": "4", + "user:parentId": "LsYpCyYxSLY" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.178268, 7.405088], + [-12.1753, 7.4005], + [-12.172999, 7.398099], + [-12.164799, 7.394099], + [-12.161099, 7.393399], + [-12.1534, 7.3931], + [-12.150599, 7.392399], + [-12.147199, 7.390399], + [-12.1402, 7.3833], + [-12.1372, 7.3807], + [-12.133799, 7.3789], + [-12.130999, 7.378399], + [-12.1223, 7.3783], + [-12.1176, 7.3778], + [-12.112099, 7.375599], + [-12.109599, 7.374999], + [-12.1042, 7.3744], + [-12.1017, 7.3738], + [-12.0972, 7.3718], + [-12.0904, 7.3701], + [-12.0846, 7.3678], + [-12.0767, 7.366699], + [-12.072999, 7.364899], + [-12.068699, 7.361499], + [-12.0662, 7.3604], + [-12.06492, 7.360243], + [-12.063275, 7.363702], + [-12.062779, 7.364367], + [-12.061138, 7.36617], + [-12.058156, 7.36884], + [-12.056169, 7.366358], + [-12.054699, 7.368608], + [-12.053138, 7.370658], + [-12.048472, 7.37499], + [-12.046623, 7.377724], + [-12.044398, 7.382231], + [-12.042239, 7.389441], + [-12.045463, 7.388981], + [-12.045464, 7.388982], + [-12.043793, 7.392804], + [-12.041774, 7.399002], + [-12.041167, 7.400861], + [-12.040025, 7.403271], + [-12.038674, 7.405625], + [-12.038586, 7.406221], + [-12.038267, 7.406554], + [-12.038263, 7.407178], + [-12.037903, 7.407742], + [-12.037324, 7.409478], + [-12.036461, 7.410679], + [-12.035936, 7.41222], + [-12.035141, 7.413454], + [-12.033496, 7.414394], + [-12.032151, 7.414625], + [-12.030914, 7.414546], + [-12.029247, 7.41414], + [-12.023903, 7.411705], + [-12.02187, 7.411072], + [-12.020966, 7.411069], + [-12.018039, 7.411514], + [-12.017002, 7.412096], + [-12.015971, 7.412838], + [-12.013506, 7.415451], + [-12.012323, 7.417039], + [-12.011136, 7.421335], + [-12.010947, 7.42335], + [-12.013322, 7.427803], + [-12.02125, 7.427084], + [-12.032082, 7.427084], + [-12.037082, 7.432083], + [-12.037083, 7.43474], + [-12.040733, 7.434741], + [-12.04125, 7.433847], + [-12.04125, 7.42625], + [-12.044582, 7.422084], + [-12.053749, 7.42125], + [-12.057917, 7.419584], + [-12.061249, 7.419584], + [-12.070416, 7.42625], + [-12.072083, 7.437083], + [-12.082916, 7.437916], + [-12.087082, 7.434583], + [-12.087917, 7.429584], + [-12.088749, 7.42875], + [-12.097916, 7.427916], + [-12.09875, 7.422084], + [-12.10375, 7.41875], + [-12.107917, 7.417917], + [-12.114582, 7.417917], + [-12.115417, 7.422083], + [-12.117476, 7.422907], + [-12.117616, 7.42209], + [-12.11757, 7.421845], + [-12.117779, 7.421885], + [-12.122438, 7.419029], + [-12.121798, 7.417919], + [-12.124973, 7.41242], + [-12.124583, 7.411252], + [-12.124584, 7.411251], + [-12.133749, 7.416249], + [-12.134303, 7.407392], + [-12.139298, 7.407392], + [-12.142883, 7.413601], + [-12.14875, 7.407084], + [-12.152916, 7.41125], + [-12.152917, 7.415146], + [-12.154925, 7.411668], + [-12.160834, 7.411668], + [-12.162917, 7.413749], + [-12.170416, 7.413749], + [-12.172916, 7.412083], + [-12.172917, 7.410416], + [-12.176575, 7.406234], + [-12.176512, 7.40592], + [-12.176778, 7.405074], + [-12.17678, 7.405074], + [-12.177388, 7.405824], + [-12.177873, 7.40574], + [-12.178268, 7.405088] + ] + ], + "type": "Polygon" + }, + "id": 517, + "properties": { + "cc:admin:id": ["147"], + "cc:oBld:total": 1, + "cc:pop:fifteen-to-twenty-four": 232.25776725366418, + "cc:pop:grid3-total": 1738.376283638337, + "cc:pop:kontur-total": 1287.9132003093325, + "cc:pop:men": 607.9054367668676, + "cc:pop:sixty-plus": 72.01705238261651, + "cc:pop:total": 1221.8108203148297, + "cc:pop:under-five": 223.26957809953925, + "cc:pop:women": 613.9053835479623, + "cc:pop:women-fiften-to-forty-nine": 303.2748196362807, + "cc:pop:wp-total": 1116.2017099331722, + "cc:pop:wp-total-UN": 1287.5555642137285, + "cc:id": "517", + "cc:Name": "Senehun Gbloh MCHP", + "cc:site": [-12.1133, 7.4039], + "user:parentName": "Yawbeko", + "user:code": "OU_197438", + "user:orgUnitId": "Efmr3Xo36DR", + "user:level": "4", + "user:parentId": "CG4QD1HC3h4" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.625537, 9.593871], + [-11.623749, 9.592083], + [-11.622916, 9.592082], + [-11.617082, 9.589582], + [-11.615416, 9.585417], + [-11.612916, 9.583749], + [-11.612082, 9.575417], + [-11.605417, 9.577082], + [-11.605416, 9.560417], + [-11.599582, 9.568749], + [-11.594583, 9.56625], + [-11.594583, 9.565843], + [-11.594754, 9.565763], + [-11.592627, 9.566378], + [-11.592264, 9.566588], + [-11.59125, 9.56625], + [-11.588749, 9.56125], + [-11.582916, 9.565416], + [-11.577917, 9.566249], + [-11.577083, 9.565416], + [-11.576249, 9.562916], + [-11.575417, 9.558749], + [-11.575417, 9.557916], + [-11.575654, 9.556842], + [-11.573884, 9.553776], + [-11.566395, 9.553775], + [-11.566394, 9.553774], + [-11.566572, 9.553214], + [-11.566201, 9.552291], + [-11.565126, 9.552191], + [-11.56353, 9.552299], + [-11.563244, 9.552232], + [-11.563749, 9.55375], + [-11.557917, 9.554582], + [-11.557083, 9.554583], + [-11.557082, 9.557082], + [-11.554582, 9.559582], + [-11.549583, 9.557917], + [-11.548749, 9.557916], + [-11.545417, 9.554583], + [-11.547916, 9.550417], + [-11.539583, 9.547917], + [-11.539582, 9.54625], + [-11.538749, 9.545417], + [-11.53375, 9.544583], + [-11.533546, 9.544785], + [-11.532471, 9.544138], + [-11.532184, 9.544127], + [-11.531466, 9.544158], + [-11.53116, 9.544279], + [-11.530066, 9.544663], + [-11.53002, 9.544671], + [-11.529672, 9.5447], + [-11.529554, 9.544676], + [-11.528961, 9.544324], + [-11.528804, 9.544462], + [-11.52748, 9.545043], + [-11.526744, 9.545598], + [-11.526138, 9.545705], + [-11.524588, 9.546667], + [-11.524074, 9.547249], + [-11.523552, 9.548651], + [-11.520966, 9.551986], + [-11.5211, 9.5521], + [-11.5287, 9.5558], + [-11.5312, 9.5566], + [-11.5363, 9.5577], + [-11.540799, 9.559899], + [-11.5448, 9.5615], + [-11.55, 9.5647], + [-11.550899, 9.5663], + [-11.550699, 9.568799], + [-11.548899, 9.573], + [-11.547699, 9.578], + [-11.546499, 9.5805], + [-11.544199, 9.5834], + [-11.5381, 9.589499], + [-11.5341, 9.592799], + [-11.5256, 9.597199], + [-11.522399, 9.5985], + [-11.5181, 9.600899], + [-11.5142, 9.602799], + [-11.511, 9.605299], + [-11.4931, 9.623399], + [-11.489199, 9.6266], + [-11.4814, 9.630599], + [-11.4793, 9.631099], + [-11.474099, 9.631499], + [-11.469099, 9.631399], + [-11.4642, 9.6311], + [-11.467199, 9.635599], + [-11.469599, 9.638299], + [-11.474299, 9.642999], + [-11.4771, 9.6452], + [-11.485099, 9.649199], + [-11.487199, 9.649699], + [-11.4909, 9.65], + [-11.500499, 9.650199], + [-11.503999, 9.651], + [-11.506, 9.6522], + [-11.5096, 9.6551], + [-11.511899, 9.656499], + [-11.5191, 9.6585], + [-11.521, 9.6597], + [-11.5257, 9.6634], + [-11.534599, 9.667699], + [-11.5385, 9.665799], + [-11.542299, 9.6635], + [-11.549399, 9.6571], + [-11.5515, 9.655399], + [-11.5538, 9.653999], + [-11.556899, 9.6527], + [-11.5605, 9.650699], + [-11.564299, 9.649], + [-11.566999, 9.6469], + [-11.569499, 9.644], + [-11.572899, 9.6378], + [-11.5766, 9.633099], + [-11.58, 9.626899], + [-11.5831, 9.623099], + [-11.5902, 9.615999], + [-11.593, 9.613899], + [-11.596899, 9.6121], + [-11.6005, 9.610099], + [-11.6044, 9.608299], + [-11.607, 9.606399], + [-11.613399, 9.6005], + [-11.615399, 9.599], + [-11.6192, 9.597099], + [-11.623499, 9.5947], + [-11.625537, 9.593871] + ] + ], + "type": "Polygon" + }, + "id": 518, + "properties": { + "cc:admin:id": ["144"], + "cc:oBld:total": 5744, + "cc:pop:fifteen-to-twenty-four": 6243.95523914874, + "cc:pop:grid3-total": 42976.747141462845, + "cc:pop:kontur-total": 33199.488197896055, + "cc:pop:men": 16072.932542503786, + "cc:pop:sixty-plus": 2072.7086593777203, + "cc:pop:total": 33709.37385127283, + "cc:pop:under-five": 5390.44760107783, + "cc:pop:women": 17636.441308769052, + "cc:pop:women-fiften-to-forty-nine": 8628.07564803672, + "cc:pop:wp-total": 27351.80353448898, + "cc:pop:wp-total-UN": 31733.17699976944, + "cc:id": "518", + "cc:Name": "Senekedugu MCHP", + "cc:site": [-11.5543, 9.6233], + "user:parentName": "Wara Wara Yagala", + "user:code": "OU_226262", + "user:orgUnitId": "xX4lIVqF4yb", + "user:level": "4", + "user:parentId": "EZPwuUTeIIG" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.844901, 7.491641], + [-11.844534, 7.490669], + [-11.839583, 7.492083], + [-11.837082, 7.489584], + [-11.835416, 7.489583], + [-11.833231, 7.489037], + [-11.832399, 7.490823], + [-11.832347, 7.490939], + [-11.831271, 7.490791], + [-11.830537, 7.490282], + [-11.830821, 7.489431], + [-11.830092, 7.489243], + [-11.829587, 7.4881], + [-11.828552, 7.48717], + [-11.82823, 7.487377], + [-11.827892, 7.487323], + [-11.827473, 7.487148], + [-11.827109, 7.486696], + [-11.826176, 7.485914], + [-11.825478, 7.484701], + [-11.824893, 7.484164], + [-11.823757, 7.483426], + [-11.82321, 7.483451], + [-11.823057, 7.483453], + [-11.817916, 7.48125], + [-11.815842, 7.481249], + [-11.815984, 7.480739], + [-11.816295, 7.479921], + [-11.818687, 7.47992], + [-11.819614, 7.479914], + [-11.819657, 7.476086], + [-11.818575, 7.475634], + [-11.818194, 7.475634], + [-11.818386, 7.476979], + [-11.818187, 7.477473], + [-11.81771, 7.478015], + [-11.817318, 7.477458], + [-11.815447, 7.476718], + [-11.814085, 7.475352], + [-11.813671, 7.473543], + [-11.812856, 7.47341], + [-11.812159, 7.474021], + [-11.812009, 7.474058], + [-11.811815, 7.473835], + [-11.811831, 7.473426], + [-11.8112, 7.472967], + [-11.810416, 7.473749], + [-11.809432, 7.47375], + [-11.809338, 7.473839], + [-11.809337, 7.473837], + [-11.809354, 7.47375], + [-11.806666, 7.47375], + [-11.806284, 7.473984], + [-11.805842, 7.47375], + [-11.801249, 7.473749], + [-11.799583, 7.472083], + [-11.803641, 7.46329], + [-11.802267, 7.46357], + [-11.800765, 7.465314], + [-11.800367, 7.465384], + [-11.799155, 7.465911], + [-11.79834, 7.466767], + [-11.798275, 7.467495], + [-11.797685, 7.467351], + [-11.795319, 7.466984], + [-11.792799, 7.466421], + [-11.793742, 7.462606], + [-11.792482, 7.462389], + [-11.792755, 7.461804], + [-11.792504, 7.461086], + [-11.793152, 7.460553], + [-11.79312, 7.459714], + [-11.792808, 7.459448], + [-11.792101, 7.459432], + [-11.791522, 7.459612], + [-11.791222, 7.459672], + [-11.790668, 7.460117], + [-11.789414, 7.460256], + [-11.789022, 7.460022], + [-11.788555, 7.459257], + [-11.78886, 7.458119], + [-11.789649, 7.457405], + [-11.790051, 7.456687], + [-11.789505, 7.454964], + [-11.789583, 7.454729], + [-11.789582, 7.453721], + [-11.785268, 7.45372], + [-11.785416, 7.452083], + [-11.775417, 7.451249], + [-11.773749, 7.44375], + [-11.769583, 7.445417], + [-11.76375, 7.452916], + [-11.761793, 7.452916], + [-11.761839, 7.452648], + [-11.759583, 7.452084], + [-11.757083, 7.453749], + [-11.751249, 7.442917], + [-11.749582, 7.444583], + [-11.748745, 7.445003], + [-11.7492, 7.4458], + [-11.7506, 7.4489], + [-11.7523, 7.4517], + [-11.753599, 7.455799], + [-11.753699, 7.461199], + [-11.752999, 7.4638], + [-11.750799, 7.4691], + [-11.750299, 7.4728], + [-11.7502, 7.480499], + [-11.7497, 7.485199], + [-11.747499, 7.4906], + [-11.746999, 7.4931], + [-11.7465, 7.498499], + [-11.7457, 7.501299], + [-11.743999, 7.5035], + [-11.7402, 7.5065], + [-11.738199, 7.5094], + [-11.735899, 7.5122], + [-11.7223, 7.5247], + [-11.724099, 7.5277], + [-11.725599, 7.534499], + [-11.727499, 7.538899], + [-11.72765, 7.539583], + [-11.729583, 7.539584], + [-11.735058, 7.540951], + [-11.735016, 7.540841], + [-11.735018, 7.540839], + [-11.736249, 7.54125], + [-11.737917, 7.548749], + [-11.744583, 7.542917], + [-11.746249, 7.542917], + [-11.747916, 7.543749], + [-11.747917, 7.545416], + [-11.752916, 7.547083], + [-11.757082, 7.54625], + [-11.760416, 7.547083], + [-11.76125, 7.549583], + [-11.767916, 7.547917], + [-11.772082, 7.549583], + [-11.77625, 7.54625], + [-11.782082, 7.546249], + [-11.782083, 7.545417], + [-11.786249, 7.545416], + [-11.787916, 7.544584], + [-11.7882, 7.544512], + [-11.788964, 7.551717], + [-11.789046, 7.551798], + [-11.790629, 7.552462], + [-11.791337, 7.552571], + [-11.794738, 7.552961], + [-11.79541, 7.553178], + [-11.797003, 7.55253], + [-11.799667, 7.551865], + [-11.801114, 7.550979], + [-11.802652, 7.55244], + [-11.802369, 7.55276], + [-11.802776, 7.553292], + [-11.802267, 7.554398], + [-11.802337, 7.556131], + [-11.803393, 7.554812], + [-11.804299, 7.554053], + [-11.804395, 7.554099], + [-11.804353, 7.554796], + [-11.804187, 7.55518], + [-11.80431, 7.55587], + [-11.804439, 7.556152], + [-11.804857, 7.556339], + [-11.804889, 7.556722], + [-11.804723, 7.5576], + [-11.803753, 7.558625], + [-11.803431, 7.558769], + [-11.80319, 7.559158], + [-11.803291, 7.559646], + [-11.803603, 7.55996], + [-11.804327, 7.559609], + [-11.805249, 7.558566], + [-11.805421, 7.557923], + [-11.805834, 7.557524], + [-11.806789, 7.55694], + [-11.807405, 7.557093], + [-11.807582, 7.557407], + [-11.807562, 7.557583], + [-11.80777, 7.558206], + [-11.807749, 7.558976], + [-11.807932, 7.559423], + [-11.808302, 7.559789], + [-11.808725, 7.559997], + [-11.809111, 7.55988], + [-11.809454, 7.559215], + [-11.809289, 7.55879], + [-11.809273, 7.557727], + [-11.809686, 7.557227], + [-11.811091, 7.557944], + [-11.811873, 7.557982], + [-11.811054, 7.558642], + [-11.81107, 7.560445], + [-11.81107, 7.563749], + [-11.814868, 7.563749], + [-11.815167, 7.563407], + [-11.815532, 7.563173], + [-11.816503, 7.562805], + [-11.816558, 7.561356], + [-11.816559, 7.561356], + [-11.816745, 7.561619], + [-11.818724, 7.56046], + [-11.820636, 7.563749], + [-11.827916, 7.56375], + [-11.829018, 7.564853], + [-11.828531, 7.564874], + [-11.828154, 7.566134], + [-11.827383, 7.567032], + [-11.829998, 7.567], + [-11.831099, 7.563999], + [-11.830999, 7.5592], + [-11.8295, 7.5548], + [-11.826, 7.5485], + [-11.8246, 7.5446], + [-11.8229, 7.5348], + [-11.821499, 7.530199], + [-11.8211, 7.526899], + [-11.822099, 7.5226], + [-11.823699, 7.5198], + [-11.8293, 7.514599], + [-11.837799, 7.5032], + [-11.842099, 7.4958], + [-11.844901, 7.491641] + ] + ], + "type": "Polygon" + }, + "id": 519, + "properties": { + "cc:admin:id": ["88"], + "cc:oBld:total": 25, + "cc:pop:fifteen-to-twenty-four": 1676.6634015039538, + "cc:pop:grid3-total": 12682.297811627945, + "cc:pop:kontur-total": 9282.227876089042, + "cc:pop:men": 4731.55443575396, + "cc:pop:sixty-plus": 693.3087295776799, + "cc:pop:total": 9438.16134035579, + "cc:pop:under-five": 1570.8639005607756, + "cc:pop:women": 4706.606904601827, + "cc:pop:women-fiften-to-forty-nine": 2224.724331118833, + "cc:pop:wp-total": 10504.371799896748, + "cc:pop:wp-total-UN": 12182.989094908553, + "cc:id": "519", + "cc:Name": "Sengema CHP", + "cc:site": [-11.7843, 7.4932], + "user:parentName": "Malen", + "user:code": "OU_260396", + "user:orgUnitId": "aRXfvyonenP", + "user:level": "4", + "user:parentId": "DfUfwjM9am5" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.039409, 7.55306], + [-12.039499, 7.552499], + [-12.0393, 7.5489], + [-12.0384, 7.5455], + [-12.0364, 7.5419], + [-12.034999, 7.538799], + [-12.033, 7.5353], + [-12.032199, 7.533199], + [-12.031699, 7.528899], + [-12.0316, 7.5192], + [-12.031399, 7.5145], + [-12.0283, 7.5076], + [-12.027199, 7.502499], + [-12.022799, 7.493499], + [-12.019799, 7.490699], + [-12.0139, 7.4877], + [-12.0118, 7.487], + [-12.008499, 7.486499], + [-12.0025, 7.4863], + [-11.9832, 7.486499], + [-11.9773, 7.4861], + [-11.974999, 7.485399], + [-11.973099, 7.484199], + [-11.967199, 7.479799], + [-11.9605, 7.4763], + [-11.9579, 7.4754], + [-11.954999, 7.4751], + [-11.9481, 7.475299], + [-11.9453, 7.475899], + [-11.940799, 7.478], + [-11.934099, 7.48], + [-11.9308, 7.4831], + [-11.9289, 7.486799], + [-11.927199, 7.489], + [-11.923999, 7.4922], + [-11.9201, 7.495], + [-11.9167, 7.499599], + [-11.9132, 7.502999], + [-11.9089, 7.5061], + [-11.904899, 7.5128], + [-11.904299, 7.5154], + [-11.9042, 7.5191], + [-11.904299, 7.524799], + [-11.9054, 7.533299], + [-11.912699, 7.5306], + [-11.917, 7.529599], + [-11.9246, 7.529], + [-11.9337, 7.5293], + [-11.936699, 7.529799], + [-11.939499, 7.530599], + [-11.946899, 7.534599], + [-11.9496, 7.5356], + [-11.9525, 7.5361], + [-11.962899, 7.537099], + [-11.965799, 7.537899], + [-11.969399, 7.539899], + [-11.971599, 7.541699], + [-11.975199, 7.545899], + [-11.9773, 7.5496], + [-11.9811, 7.5607], + [-11.984599, 7.574199], + [-11.986799, 7.584499], + [-11.990299, 7.591099], + [-11.990476, 7.591488], + [-11.992083, 7.590417], + [-11.995854, 7.590416], + [-11.995906, 7.590132], + [-11.995925, 7.588454], + [-11.995607, 7.587405], + [-11.9971, 7.586658], + [-11.997101, 7.586659], + [-11.997191, 7.586997], + [-12.005416, 7.586249], + [-12.008749, 7.582083], + [-12.00875, 7.574581], + [-12.008859, 7.574564], + [-12.012151, 7.580266], + [-12.019963, 7.580265], + [-12.022936, 7.575116], + [-12.026249, 7.575416], + [-12.027488, 7.575003], + [-12.026472, 7.574079], + [-12.026145, 7.573451], + [-12.025944, 7.57247], + [-12.028749, 7.56125], + [-12.033749, 7.562084], + [-12.036065, 7.564398], + [-12.0361, 7.563799], + [-12.0367, 7.561199], + [-12.0388, 7.556799], + [-12.039409, 7.55306] + ] + ], + "type": "Polygon" + }, + "id": 520, + "properties": { + "cc:admin:id": ["65"], + "cc:oBld:total": 10, + "cc:pop:fifteen-to-twenty-four": 902.7189797374544, + "cc:pop:grid3-total": 7570.432162148589, + "cc:pop:kontur-total": 5222.320864742591, + "cc:pop:men": 2316.332636976545, + "cc:pop:sixty-plus": 324.01617634279603, + "cc:pop:total": 4816.135865431515, + "cc:pop:under-five": 834.3896613975295, + "cc:pop:women": 2499.8032284549695, + "cc:pop:women-fiften-to-forty-nine": 1180.362151328522, + "cc:pop:wp-total": 4782.081124435034, + "cc:pop:wp-total-UN": 5550.124576028715, + "cc:id": "520", + "cc:Name": "Senjehun MCHP", + "cc:site": [-12.0141, 7.5318], + "user:parentName": "Kpanda Kemoh", + "user:code": "OU_197425", + "user:orgUnitId": "MnfykVk3zin", + "user:level": "4", + "user:parentId": "aWQTfvgPA5v" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.929582, 9.083749], + [-12.928749, 9.072917], + [-12.92125, 9.07375], + [-12.919583, 9.074583], + [-12.917082, 9.077082], + [-12.914058, 9.075874], + [-12.91389, 9.076206], + [-12.913888, 9.076207], + [-12.914177, 9.074617], + [-12.915034, 9.070035], + [-12.91125, 9.066249], + [-12.910416, 9.064583], + [-12.90625, 9.064582], + [-12.903749, 9.062083], + [-12.902083, 9.062082], + [-12.902082, 9.06125], + [-12.901249, 9.061249], + [-12.89513, 9.05989], + [-12.894005, 9.061215], + [-12.892917, 9.059582], + [-12.893749, 9.05125], + [-12.891249, 9.050416], + [-12.882083, 9.04875], + [-12.882082, 9.045417], + [-12.877917, 9.04125], + [-12.877916, 9.038944], + [-12.874516, 9.039274], + [-12.872477, 9.040171], + [-12.871427, 9.041191], + [-12.871186, 9.040955], + [-12.871402, 9.040392], + [-12.871323, 9.039905], + [-12.871108, 9.039702], + [-12.869226, 9.039295], + [-12.868632, 9.039416], + [-12.866928, 9.038538], + [-12.864732, 9.036539], + [-12.862917, 9.032916], + [-12.862917, 9.042082], + [-12.865417, 9.042083], + [-12.865859, 9.043412], + [-12.865688, 9.04344], + [-12.866249, 9.046249], + [-12.859583, 9.05125], + [-12.858749, 9.053749], + [-12.855417, 9.054583], + [-12.854732, 9.059377], + [-12.853941, 9.060287], + [-12.843392, 9.058179], + [-12.842656, 9.059261], + [-12.842032, 9.060575], + [-12.842032, 9.061622], + [-12.842358, 9.06267], + [-12.843607, 9.066666], + [-12.84367, 9.067082], + [-12.840416, 9.067083], + [-12.835417, 9.067917], + [-12.832082, 9.072082], + [-12.829583, 9.072082], + [-12.827916, 9.070417], + [-12.826302, 9.070416], + [-12.82629, 9.070316], + [-12.825949, 9.06893], + [-12.822082, 9.071249], + [-12.817083, 9.072083], + [-12.817082, 9.081233], + [-12.810447, 9.081233], + [-12.808306, 9.077527], + [-12.807082, 9.078749], + [-12.798269, 9.079485], + [-12.799, 9.0821], + [-12.7997, 9.0871], + [-12.799799, 9.0935], + [-12.7991, 9.101399], + [-12.8018, 9.104499], + [-12.808199, 9.108299], + [-12.8101, 9.109199], + [-12.8148, 9.109799], + [-12.8317, 9.1095], + [-12.835499, 9.109599], + [-12.8382, 9.11], + [-12.840399, 9.1112], + [-12.842399, 9.1134], + [-12.8433, 9.1168], + [-12.843499, 9.122299], + [-12.843356, 9.124216], + [-12.843558, 9.12544], + [-12.845416, 9.127916], + [-12.850417, 9.129582], + [-12.852916, 9.129582], + [-12.857152, 9.125347], + [-12.85737, 9.124546], + [-12.857489, 9.121224], + [-12.857293, 9.120102], + [-12.857439, 9.118329], + [-12.857317, 9.117279], + [-12.857486, 9.116731], + [-12.859068, 9.114706], + [-12.859188, 9.112279], + [-12.868749, 9.113749], + [-12.870417, 9.10875], + [-12.872917, 9.10625], + [-12.878566, 9.110487], + [-12.878566, 9.110489], + [-12.878373, 9.11063], + [-12.878239, 9.111077], + [-12.882917, 9.113749], + [-12.885416, 9.113749], + [-12.885417, 9.103749], + [-12.891249, 9.101249], + [-12.892917, 9.097917], + [-12.902916, 9.097916], + [-12.904927, 9.091884], + [-12.905457, 9.092001], + [-12.90415, 9.089583], + [-12.906249, 9.089582], + [-12.909361, 9.088027], + [-12.911508, 9.083328], + [-12.912233, 9.082039], + [-12.912455, 9.081552], + [-12.914582, 9.082082], + [-12.91625, 9.08125], + [-12.918749, 9.083749], + [-12.91875, 9.085416], + [-12.92375, 9.087916], + [-12.926249, 9.087916], + [-12.929582, 9.083749] + ] + ], + "type": "Polygon" + }, + "id": 521, + "properties": { + "cc:admin:id": ["82"], + "cc:oBld:total": 245, + "cc:pop:fifteen-to-twenty-four": 1353.200784235322, + "cc:pop:grid3-total": 4859.699891564588, + "cc:pop:kontur-total": 7876.645539501536, + "cc:pop:men": 3443.181033910917, + "cc:pop:sixty-plus": 485.2322354006773, + "cc:pop:total": 7262.725062171632, + "cc:pop:under-five": 1153.940147836771, + "cc:pop:women": 3819.544028260713, + "cc:pop:women-fiften-to-forty-nine": 1832.4846724468068, + "cc:pop:wp-total": 8126.598384259709, + "cc:pop:wp-total-UN": 9419.981092216469, + "cc:id": "521", + "cc:Name": "Senthai MCHP", + "cc:site": [-12.8863, 9.0668], + "user:parentName": "Magbema", + "user:code": "OU_211240", + "user:orgUnitId": "Qr41Mw2MSjo", + "user:level": "4", + "user:parentId": "QywkxFudXrC" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.256647, 8.277083], + [-11.2568, 8.275099], + [-11.256799, 8.270399], + [-11.2566, 8.2658], + [-11.256199, 8.2618], + [-11.252399, 8.260999], + [-11.2496, 8.2595], + [-11.248856, 8.258307], + [-11.247083, 8.25875], + [-11.245416, 8.261249], + [-11.239202, 8.261249], + [-11.23848, 8.255088], + [-11.238553, 8.254584], + [-11.235416, 8.254583], + [-11.23125, 8.25125], + [-11.23124, 8.251119], + [-11.230681, 8.251118], + [-11.226775, 8.244353], + [-11.219398, 8.244352], + [-11.216249, 8.240417], + [-11.21125, 8.239583], + [-11.210416, 8.23625], + [-11.200417, 8.236249], + [-11.200416, 8.234584], + [-11.197082, 8.232916], + [-11.195416, 8.224584], + [-11.194582, 8.224584], + [-11.193749, 8.225417], + [-11.188749, 8.231249], + [-11.181249, 8.227916], + [-11.177083, 8.22125], + [-11.177082, 8.220417], + [-11.17125, 8.22125], + [-11.167916, 8.224583], + [-11.164584, 8.224584], + [-11.164582, 8.220417], + [-11.150417, 8.220417], + [-11.146249, 8.224583], + [-11.142082, 8.222084], + [-11.137082, 8.222083], + [-11.132082, 8.215417], + [-11.130417, 8.214583], + [-11.127082, 8.21125], + [-11.125271, 8.21125], + [-11.1241, 8.216099], + [-11.122099, 8.2206], + [-11.121499, 8.2243], + [-11.1212, 8.231999], + [-11.1203, 8.235599], + [-11.1185, 8.239099], + [-11.117199, 8.2423], + [-11.1147, 8.247499], + [-11.113299, 8.2533], + [-11.1112, 8.257699], + [-11.1099, 8.260899], + [-11.107499, 8.2651], + [-11.1043, 8.271999], + [-11.1034, 8.275399], + [-11.1031, 8.282199], + [-11.1024, 8.286399], + [-11.1005, 8.291299], + [-11.099899, 8.2941], + [-11.0996, 8.301], + [-11.099699, 8.308999], + [-11.099899, 8.312999], + [-11.100599, 8.316699], + [-11.103299, 8.322299], + [-11.1058, 8.326099], + [-11.1078, 8.3277], + [-11.1144, 8.331], + [-11.116999, 8.331699], + [-11.1196, 8.331699], + [-11.1226, 8.330899], + [-11.1245, 8.329699], + [-11.127999, 8.3268], + [-11.1303, 8.325399], + [-11.1331, 8.324499], + [-11.136999, 8.3243], + [-11.140699, 8.324499], + [-11.142699, 8.325099], + [-11.1443, 8.3261], + [-11.157599, 8.331399], + [-11.165899, 8.336799], + [-11.169999, 8.338699], + [-11.1744, 8.339799], + [-11.178999, 8.338499], + [-11.188499, 8.331], + [-11.1985, 8.324599], + [-11.2024, 8.323299], + [-11.207899, 8.323], + [-11.2129, 8.322299], + [-11.219099, 8.320299], + [-11.221399, 8.3186], + [-11.2229, 8.316599], + [-11.2247, 8.312899], + [-11.2268, 8.309999], + [-11.2293, 8.307299], + [-11.2314, 8.305399], + [-11.234199, 8.3033], + [-11.2386, 8.300899], + [-11.2409, 8.298799], + [-11.2434, 8.2955], + [-11.247099, 8.2931], + [-11.2498, 8.290599], + [-11.2521, 8.287799], + [-11.255899, 8.2799], + [-11.256599, 8.2777], + [-11.256647, 8.277083] + ] + ], + "type": "Polygon" + }, + "id": 522, + "properties": { + "cc:admin:id": ["22"], + "cc:oBld:total": 770, + "cc:pop:fifteen-to-twenty-four": 1360.3642372087518, + "cc:pop:grid3-total": 6780.31813028806, + "cc:pop:kontur-total": 7241.653592982896, + "cc:pop:men": 3452.0428806666882, + "cc:pop:sixty-plus": 427.8215097269232, + "cc:pop:total": 6994.787170035656, + "cc:pop:under-five": 1135.4040704940571, + "cc:pop:women": 3542.744289368968, + "cc:pop:women-fiften-to-forty-nine": 1749.2868708375856, + "cc:pop:wp-total": 5967.558331776151, + "cc:pop:wp-total-UN": 6924.651297680027, + "cc:id": "522", + "cc:Name": "Serabu (Koya) CHP", + "cc:site": [-11.1532, 8.28012], + "user:parentName": "Koya (kenema)", + "user:code": "OU_222643", + "user:orgUnitId": "wjP03y8OY5k", + "user:level": "4", + "user:parentId": "EYt6ThQDagn" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.143295, 9.547739], + [-11.1432, 9.5391], + [-11.142899, 9.535099], + [-11.142099, 9.531399], + [-11.140099, 9.526799], + [-11.1381, 9.5165], + [-11.135799, 9.511099], + [-11.135099, 9.503999], + [-11.135, 9.477], + [-11.134599, 9.470899], + [-11.133899, 9.467999], + [-11.131799, 9.462999], + [-11.131099, 9.458899], + [-11.130699, 9.453099], + [-11.129899, 9.449499], + [-11.127699, 9.444099], + [-11.127099, 9.440099], + [-11.1269, 9.4329], + [-11.126599, 9.429899], + [-11.125999, 9.426999], + [-11.123599, 9.421699], + [-11.122999, 9.417699], + [-11.1228, 9.412599], + [-11.123, 9.407499], + [-11.1237, 9.404699], + [-11.125899, 9.4003], + [-11.1272, 9.397199], + [-11.1294, 9.392799], + [-11.1301, 9.388999], + [-11.1301, 9.377], + [-11.130599, 9.3721], + [-11.1327, 9.366699], + [-11.1335, 9.362999], + [-11.133799, 9.3572], + [-11.134299, 9.3535], + [-11.136499, 9.3482], + [-11.137099, 9.3444], + [-11.137099, 9.341399], + [-11.1363, 9.3378], + [-11.1343, 9.3332], + [-11.133599, 9.330499], + [-11.1332, 9.325699], + [-11.133299, 9.3188], + [-11.133699, 9.315], + [-11.12, 9.315], + [-11.1149, 9.3148], + [-11.111899, 9.314399], + [-11.1066, 9.3121], + [-11.103599, 9.311499], + [-11.099599, 9.3111], + [-11.0934, 9.311199], + [-11.0904, 9.311499], + [-11.087699, 9.3125], + [-11.082029, 9.315293], + [-11.07875, 9.317917], + [-11.07831, 9.319676], + [-11.078218, 9.319653], + [-11.077941, 9.32013], + [-11.07013, 9.320131], + [-11.067141, 9.325305], + [-11.067081, 9.325289], + [-11.066667, 9.324854], + [-11.065923, 9.324758], + [-11.064647, 9.325381], + [-11.067419, 9.330183], + [-11.063514, 9.336948], + [-11.055702, 9.336949], + [-11.051795, 9.343714], + [-11.055701, 9.35048], + [-11.051795, 9.357246], + [-11.055701, 9.364012], + [-11.051827, 9.370722], + [-11.051917, 9.370724], + [-11.052836, 9.371552], + [-11.054014, 9.37319], + [-11.054699, 9.374895], + [-11.05125, 9.380417], + [-11.053749, 9.387083], + [-11.04875, 9.392917], + [-11.049582, 9.395416], + [-11.044583, 9.396249], + [-11.040417, 9.39625], + [-11.034583, 9.402917], + [-11.034583, 9.404582], + [-11.041249, 9.407916], + [-11.043039, 9.410899], + [-11.04275, 9.411259], + [-11.042313, 9.411367], + [-11.041972, 9.411406], + [-11.040852, 9.410766], + [-11.040097, 9.410712], + [-11.038859, 9.41121], + [-11.037866, 9.412325], + [-11.040752, 9.417325], + [-11.036846, 9.424089], + [-11.029034, 9.42409], + [-11.025128, 9.430856], + [-11.027278, 9.434582], + [-11.022917, 9.434583], + [-11.022917, 9.444582], + [-11.027916, 9.45375], + [-11.026249, 9.454582], + [-11.017846, 9.446675], + [-11.017405, 9.446912], + [-11.016895, 9.448405], + [-11.016925, 9.448649], + [-11.016923, 9.44865], + [-11.01428, 9.444074], + [-11.007991, 9.444074], + [-11.00625, 9.44625], + [-11.00625, 9.456249], + [-11.007334, 9.457604], + [-11.010162, 9.457605], + [-11.010074, 9.457726], + [-11.00981, 9.45854], + [-11.009962, 9.461499], + [-11.009766, 9.461907], + [-11.009697, 9.462854], + [-11.008669, 9.464617], + [-11.008651, 9.464684], + [-11.005596, 9.464685], + [-11.003249, 9.468749], + [-11.006264, 9.46875], + [-11.006142, 9.468879], + [-11.006067, 9.469861], + [-11.006272, 9.470658], + [-11.00657, 9.470972], + [-11.006411, 9.471722], + [-11.005922, 9.472551], + [-11.008337, 9.472454], + [-11.009046, 9.471549], + [-11.010292, 9.47096], + [-11.01096, 9.47096], + [-11.012083, 9.472083], + [-11.012916, 9.475417], + [-11.003051, 9.482815], + [-11.001269, 9.479732], + [-11.000711, 9.480144], + [-10.999708, 9.480515], + [-10.998925, 9.481055], + [-10.998533, 9.48177], + [-10.998426, 9.482314], + [-10.998088, 9.482626], + [-10.996843, 9.482801], + [-10.996471, 9.483018], + [-10.995968, 9.483389], + [-10.994601, 9.483959], + [-10.992123, 9.483854], + [-10.990846, 9.4835], + [-10.990197, 9.483479], + [-10.988217, 9.484123], + [-10.98798, 9.484331], + [-10.98782, 9.484706], + [-10.987817, 9.484851], + [-10.988185, 9.484852], + [-10.992091, 9.491617], + [-10.988185, 9.498383], + [-10.990891, 9.503069], + [-10.995562, 9.503403], + [-10.995703, 9.503649], + [-10.991798, 9.510414], + [-10.983986, 9.510415], + [-10.983962, 9.510457], + [-10.984582, 9.517916], + [-10.985417, 9.524582], + [-10.988749, 9.527917], + [-10.987083, 9.533749], + [-10.987082, 9.538978], + [-10.980373, 9.538979], + [-10.979513, 9.540467], + [-10.978073, 9.540697], + [-10.978791, 9.541008], + [-10.979152, 9.541345], + [-10.97983, 9.541467], + [-10.979945, 9.541742], + [-10.980506, 9.54212], + [-10.980939, 9.542109], + [-10.981487, 9.542671], + [-10.982213, 9.543854], + [-10.982895, 9.544619], + [-10.983257, 9.546174], + [-10.983255, 9.546218], + [-10.976483, 9.546219], + [-10.975882, 9.54726], + [-10.976222, 9.548226], + [-10.97657, 9.548716], + [-10.97707, 9.548655], + [-10.977269, 9.549034], + [-10.977274, 9.549576], + [-10.972843, 9.555272], + [-10.97296, 9.555373], + [-10.972083, 9.55625], + [-10.97125, 9.561249], + [-10.97125, 9.562082], + [-10.979277, 9.560624], + [-10.979282, 9.56065], + [-10.979732, 9.561895], + [-10.979738, 9.563044], + [-10.980721, 9.565161], + [-10.982113, 9.566305], + [-10.989583, 9.559583], + [-10.992917, 9.560417], + [-10.995416, 9.562916], + [-10.997083, 9.568749], + [-10.99875, 9.567083], + [-11.005416, 9.567083], + [-11.005417, 9.577916], + [-11.006078, 9.579239], + [-11.007325, 9.57708], + [-11.015137, 9.57708], + [-11.016931, 9.580188], + [-11.017083, 9.579583], + [-11.017916, 9.579583], + [-11.017916, 9.58047], + [-11.016378, 9.583135], + [-11.019753, 9.58898], + [-11.020006, 9.588607], + [-11.022084, 9.587706], + [-11.022748, 9.587051], + [-11.023005, 9.586573], + [-11.022961, 9.586022], + [-11.023198, 9.58587], + [-11.023647, 9.584883], + [-11.023768, 9.584708], + [-11.026249, 9.585416], + [-11.033749, 9.569583], + [-11.042916, 9.572916], + [-11.043749, 9.582082], + [-11.039583, 9.587083], + [-11.044582, 9.600416], + [-11.041561, 9.604951], + [-11.045297, 9.611424], + [-11.041392, 9.61819], + [-11.045298, 9.624955], + [-11.05311, 9.624956], + [-11.057017, 9.631721], + [-11.064829, 9.631722], + [-11.068735, 9.638488], + [-11.064829, 9.645253], + [-11.068736, 9.652018], + [-11.076547, 9.652018], + [-11.07889, 9.647963], + [-11.081249, 9.64875], + [-11.084583, 9.652082], + [-11.093749, 9.652083], + [-11.09383, 9.652019], + [-11.099985, 9.652019], + [-11.103892, 9.658784], + [-11.111704, 9.658785], + [-11.11561, 9.66555], + [-11.111704, 9.672316], + [-11.112042, 9.6729], + [-11.112153, 9.672891], + [-11.114407, 9.673383], + [-11.115307, 9.673905], + [-11.115784, 9.673687], + [-11.116592, 9.673948], + [-11.118423, 9.673793], + [-11.119598, 9.672741], + [-11.120306, 9.672903], + [-11.120782, 9.672683], + [-11.121558, 9.672624], + [-11.121622, 9.672646], + [-11.122901, 9.67486], + [-11.124987, 9.674861], + [-11.125535, 9.675058], + [-11.126314, 9.676214], + [-11.126659, 9.676082], + [-11.126924, 9.675112], + [-11.127545, 9.675421], + [-11.128008, 9.675379], + [-11.128186, 9.674861], + [-11.130714, 9.674861], + [-11.134619, 9.681626], + [-11.130714, 9.688393], + [-11.133559, 9.693322], + [-11.1336, 9.691599], + [-11.1342, 9.6882], + [-11.1353, 9.686099], + [-11.1391, 9.681199], + [-11.140199, 9.678699], + [-11.140399, 9.6753], + [-11.139999, 9.6727], + [-11.1379, 9.6684], + [-11.137199, 9.665599], + [-11.136799, 9.658499], + [-11.1367, 9.6351], + [-11.1364, 9.6282], + [-11.1356, 9.6245], + [-11.1336, 9.62], + [-11.132899, 9.617099], + [-11.1325, 9.611099], + [-11.1325, 9.5906], + [-11.1321, 9.5835], + [-11.131299, 9.579799], + [-11.129199, 9.575299], + [-11.1287, 9.571999], + [-11.1292, 9.5685], + [-11.1307, 9.565999], + [-11.1326, 9.563799], + [-11.139699, 9.5569], + [-11.141899, 9.5538], + [-11.143, 9.551099], + [-11.143299, 9.5481], + [-11.143295, 9.547739] + ] + ], + "type": "Polygon" + }, + "id": 523, + "properties": { + "cc:admin:id": ["95"], + "cc:oBld:total": 509, + "cc:pop:fifteen-to-twenty-four": 1580.5874682910444, + "cc:pop:grid3-total": 5805.952884187551, + "cc:pop:kontur-total": 8760.52027806792, + "cc:pop:men": 4063.1531500463175, + "cc:pop:sixty-plus": 541.6136929272292, + "cc:pop:total": 8668.887346748472, + "cc:pop:under-five": 1403.8848389720115, + "cc:pop:women": 4605.734196702155, + "cc:pop:women-fiften-to-forty-nine": 2242.104230447291, + "cc:pop:wp-total": 5473.02365141745, + "cc:pop:wp-total-UN": 6339.138888267219, + "cc:id": "523", + "cc:Name": "Serekolia MCHP", + "cc:site": [-11.0768, 9.5348], + "user:parentName": "Mongo", + "user:code": "OU_226252", + "user:orgUnitId": "ZOZ4s2gTPj7", + "user:level": "4", + "user:parentId": "OTFepb1k9Db" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.082029, 9.315293], + [-11.080999, 9.3158], + [-11.0775, 9.317799], + [-11.075, 9.318499], + [-11.0724, 9.318599], + [-11.0699, 9.3179], + [-11.067, 9.315599], + [-11.0644, 9.3111], + [-11.061499, 9.308299], + [-11.053999, 9.304599], + [-11.050299, 9.303899], + [-11.0425, 9.303599], + [-11.0385, 9.3022], + [-11.033799, 9.298599], + [-11.031799, 9.297399], + [-11.029599, 9.296599], + [-11.0267, 9.2962], + [-11.0238, 9.2962], + [-11.0201, 9.2966], + [-11.0176, 9.2979], + [-11.0152, 9.301099], + [-11.012699, 9.302999], + [-11.0093, 9.303799], + [-11.0066, 9.303899], + [-11.0022, 9.3031], + [-10.997699, 9.300999], + [-10.994399, 9.300099], + [-10.991, 9.2992], + [-10.986599, 9.296999], + [-10.979, 9.2935], + [-10.9755, 9.2929], + [-10.9721, 9.293499], + [-10.9678, 9.295499], + [-10.964899, 9.2962], + [-10.959999, 9.2965], + [-10.951, 9.2965], + [-10.947, 9.2964], + [-10.9435, 9.296], + [-10.941399, 9.295299], + [-10.9378, 9.2934], + [-10.934599, 9.291999], + [-10.930299, 9.289499], + [-10.923099, 9.286299], + [-10.919499, 9.2862], + [-10.908099, 9.291599], + [-10.9044, 9.291599], + [-10.8994, 9.2896], + [-10.895399, 9.2891], + [-10.8905, 9.2896], + [-10.884799, 9.292], + [-10.880899, 9.292599], + [-10.876, 9.2922], + [-10.869699, 9.289799], + [-10.8656, 9.2891], + [-10.8597, 9.2889], + [-10.8564, 9.288299], + [-10.854299, 9.287199], + [-10.848499, 9.282799], + [-10.840199, 9.278599], + [-10.837399, 9.277999], + [-10.8306, 9.2777], + [-10.8268, 9.2772], + [-10.8213, 9.2751], + [-10.8188, 9.2744], + [-10.8134, 9.2738], + [-10.8109, 9.2732], + [-10.8004, 9.2682], + [-10.7981, 9.2676], + [-10.7956, 9.2677], + [-10.790699, 9.2699], + [-10.7879, 9.270199], + [-10.7854, 9.2691], + [-10.784299, 9.267099], + [-10.783099, 9.260099], + [-10.7796, 9.2521], + [-10.777299, 9.247699], + [-10.776599, 9.244799], + [-10.7763, 9.2408], + [-10.7761, 9.2127], + [-10.7762, 9.207599], + [-10.7766, 9.204699], + [-10.778699, 9.1992], + [-10.779399, 9.1965], + [-10.779899, 9.1916], + [-10.780599, 9.1889], + [-10.782799, 9.1835], + [-10.783499, 9.179699], + [-10.783399, 9.1746], + [-10.7817, 9.1709], + [-10.7786, 9.1699], + [-10.7758, 9.170499], + [-10.770699, 9.1728], + [-10.764899, 9.1744], + [-10.7594, 9.176799], + [-10.7565, 9.177299], + [-10.7503, 9.177399], + [-10.745199, 9.177099], + [-10.742399, 9.176399], + [-10.7379, 9.1744], + [-10.735299, 9.174], + [-10.7318, 9.1742], + [-10.7262, 9.176299], + [-10.7206, 9.1773], + [-10.723499, 9.1835], + [-10.718399, 9.197499], + [-10.712999, 9.198399], + [-10.708399, 9.192], + [-10.6952, 9.193999], + [-10.6827, 9.198599], + [-10.679, 9.1983], + [-10.6679, 9.203399], + [-10.6637, 9.21], + [-10.664399, 9.226598], + [-10.664398, 9.2266], + [-10.6635, 9.2266], + [-10.674599, 9.239399], + [-10.675199, 9.250199], + [-10.670999, 9.2659], + [-10.6615, 9.29], + [-10.6633, 9.3006], + [-10.6688, 9.309299], + [-10.689399, 9.324499], + [-10.707499, 9.330099], + [-10.711599, 9.334699], + [-10.7102, 9.3379], + [-10.7111, 9.348499], + [-10.724999, 9.371699], + [-10.731, 9.380199], + [-10.7384, 9.374], + [-10.7409, 9.3754], + [-10.7483, 9.3849], + [-10.760099, 9.385999], + [-10.7701, 9.3817], + [-10.779999, 9.3833], + [-10.7897, 9.389999], + [-10.799199, 9.390699], + [-10.804599, 9.3809], + [-10.809699, 9.3809], + [-10.814699, 9.386599], + [-10.816599, 9.3919], + [-10.8124, 9.401299], + [-10.8045, 9.4073], + [-10.802, 9.414399], + [-10.8063, 9.420199], + [-10.8161, 9.4257], + [-10.8272, 9.435399], + [-10.8355, 9.4381], + [-10.843399, 9.442799], + [-10.8489, 9.4547], + [-10.848899, 9.4616], + [-10.8408, 9.471], + [-10.8408, 9.476499], + [-10.848599, 9.490999], + [-10.848399, 9.495399], + [-10.844399, 9.5009], + [-10.8305, 9.5073], + [-10.8263, 9.5142], + [-10.827499, 9.517899], + [-10.831, 9.5207], + [-10.857099, 9.5246], + [-10.873799, 9.537499], + [-10.870099, 9.543199], + [-10.8589, 9.5526], + [-10.8594, 9.558199], + [-10.876155, 9.572177], + [-10.882083, 9.56625], + [-10.887083, 9.571249], + [-10.890416, 9.572082], + [-10.892917, 9.57125], + [-10.896249, 9.571249], + [-10.897083, 9.567083], + [-10.902916, 9.567916], + [-10.902917, 9.568749], + [-10.906249, 9.569582], + [-10.90625, 9.570416], + [-10.907912, 9.570417], + [-10.907718, 9.571016], + [-10.907381, 9.571309], + [-10.911249, 9.572082], + [-10.912083, 9.566249], + [-10.912083, 9.559583], + [-10.918749, 9.559583], + [-10.92375, 9.564582], + [-10.928749, 9.560417], + [-10.93339, 9.559754], + [-10.933391, 9.559755], + [-10.932547, 9.560978], + [-10.932622, 9.561623], + [-10.933212, 9.56194], + [-10.934005, 9.562094], + [-10.935514, 9.562015], + [-10.937155, 9.563173], + [-10.938384, 9.563564], + [-10.939112, 9.562694], + [-10.940013, 9.562064], + [-10.941259, 9.561491], + [-10.942361, 9.560947], + [-10.94209, 9.560614], + [-10.941956, 9.560554], + [-10.94157, 9.555917], + [-10.945568, 9.555917], + [-10.947629, 9.559485], + [-10.947258, 9.559838], + [-10.947251, 9.559849], + [-10.947053, 9.560489], + [-10.947196, 9.56069], + [-10.948037, 9.560333], + [-10.948564, 9.560072], + [-10.948711, 9.560458], + [-10.948953, 9.561716], + [-10.948536, 9.56302], + [-10.948475, 9.564287], + [-10.947878, 9.56493], + [-10.94767, 9.566398], + [-10.957082, 9.555417], + [-10.958749, 9.556249], + [-10.963749, 9.55375], + [-10.971249, 9.561249], + [-10.972083, 9.556249], + [-10.97296, 9.555373], + [-10.972843, 9.555272], + [-10.977274, 9.549575], + [-10.977269, 9.549034], + [-10.97707, 9.548655], + [-10.97657, 9.548716], + [-10.976222, 9.548226], + [-10.975882, 9.54726], + [-10.976482, 9.546219], + [-10.983254, 9.546218], + [-10.983257, 9.546174], + [-10.982894, 9.544619], + [-10.982213, 9.543854], + [-10.981487, 9.542671], + [-10.980938, 9.542109], + [-10.980505, 9.54212], + [-10.979945, 9.541742], + [-10.97983, 9.541467], + [-10.979152, 9.541346], + [-10.978791, 9.541008], + [-10.978076, 9.540698], + [-10.978075, 9.540696], + [-10.979512, 9.540467], + [-10.980373, 9.538979], + [-10.987082, 9.538978], + [-10.987083, 9.533749], + [-10.988749, 9.527917], + [-10.985417, 9.524582], + [-10.984582, 9.517916], + [-10.983961, 9.510457], + [-10.983986, 9.510415], + [-10.991797, 9.510414], + [-10.995703, 9.503648], + [-10.995562, 9.503402], + [-10.99089, 9.503069], + [-10.988185, 9.498384], + [-10.992091, 9.491618], + [-10.988185, 9.484852], + [-10.987816, 9.484851], + [-10.98782, 9.484706], + [-10.98798, 9.484331], + [-10.988217, 9.484123], + [-10.990197, 9.483479], + [-10.990846, 9.4835], + [-10.992123, 9.483854], + [-10.994601, 9.483959], + [-10.995968, 9.483389], + [-10.996471, 9.483018], + [-10.996843, 9.482801], + [-10.998087, 9.482626], + [-10.998425, 9.482314], + [-10.998533, 9.48177], + [-10.998925, 9.481055], + [-10.999708, 9.480515], + [-11.000711, 9.480144], + [-11.001269, 9.479732], + [-11.003051, 9.482815], + [-11.012916, 9.475416], + [-11.012082, 9.472083], + [-11.010959, 9.47096], + [-11.010292, 9.47096], + [-11.009046, 9.471549], + [-11.008337, 9.472454], + [-11.005923, 9.472551], + [-11.005922, 9.47255], + [-11.006411, 9.471722], + [-11.00657, 9.470972], + [-11.006271, 9.470658], + [-11.006067, 9.469861], + [-11.006142, 9.468879], + [-11.006265, 9.46875], + [-11.003249, 9.468749], + [-11.005595, 9.464685], + [-11.008651, 9.464684], + [-11.008669, 9.464617], + [-11.009697, 9.462854], + [-11.009766, 9.461907], + [-11.009962, 9.461499], + [-11.00981, 9.45854], + [-11.010074, 9.457726], + [-11.010163, 9.457605], + [-11.007333, 9.457604], + [-11.00625, 9.456249], + [-11.00625, 9.44625], + [-11.00799, 9.444074], + [-11.01428, 9.444074], + [-11.016925, 9.448653], + [-11.016895, 9.448405], + [-11.017404, 9.446912], + [-11.017847, 9.446675], + [-11.02625, 9.454582], + [-11.027916, 9.453749], + [-11.022917, 9.444583], + [-11.022917, 9.434583], + [-11.027278, 9.434582], + [-11.025128, 9.430855], + [-11.029033, 9.42409], + [-11.036845, 9.424089], + [-11.040752, 9.417324], + [-11.037866, 9.412324], + [-11.038859, 9.41121], + [-11.040096, 9.410712], + [-11.040852, 9.410766], + [-11.041972, 9.411406], + [-11.042313, 9.411367], + [-11.04275, 9.411258], + [-11.043038, 9.410898], + [-11.041249, 9.407917], + [-11.034583, 9.404583], + [-11.034583, 9.402917], + [-11.040417, 9.39625], + [-11.044583, 9.396249], + [-11.049582, 9.395416], + [-11.04875, 9.392916], + [-11.053749, 9.387082], + [-11.05125, 9.380417], + [-11.054699, 9.374895], + [-11.054014, 9.37319], + [-11.052836, 9.371552], + [-11.051917, 9.370724], + [-11.051828, 9.370722], + [-11.051827, 9.370721], + [-11.055701, 9.364012], + [-11.051795, 9.357246], + [-11.055701, 9.35048], + [-11.051795, 9.343714], + [-11.055701, 9.336949], + [-11.063513, 9.336948], + [-11.067419, 9.330183], + [-11.064647, 9.325381], + [-11.065923, 9.324758], + [-11.066667, 9.324854], + [-11.067081, 9.325289], + [-11.06714, 9.325306], + [-11.070129, 9.320131], + [-11.077941, 9.32013], + [-11.078217, 9.319653], + [-11.078309, 9.319676], + [-11.07875, 9.317916], + [-11.082029, 9.315293] + ] + ], + "type": "Polygon" + }, + "id": 524, + "properties": { + "cc:admin:id": ["95"], + "cc:oBld:total": 2754, + "cc:pop:fifteen-to-twenty-four": 4704.461151385463, + "cc:pop:grid3-total": 29693.725293821506, + "cc:pop:kontur-total": 27965.308980148733, + "cc:pop:men": 12082.171811353748, + "cc:pop:sixty-plus": 1613.992723346534, + "cc:pop:total": 25754.705732934326, + "cc:pop:under-five": 4171.064583713266, + "cc:pop:women": 13672.533921580582, + "cc:pop:women-fiften-to-forty-nine": 6667.849452721995, + "cc:pop:wp-total": 25305.895079834176, + "cc:pop:wp-total-UN": 29336.011944532238, + "cc:id": "524", + "cc:Name": "Seria MCHP", + "cc:site": [-10.9216, 9.4654], + "user:parentName": "Mongo", + "user:code": "OU_226249", + "user:orgUnitId": "kzmwOrwmzbW", + "user:level": "4", + "user:parentId": "OTFepb1k9Db" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.958435, 7.911647], + [-12.957099, 7.9085], + [-12.9546, 7.908999], + [-12.953999, 7.9082], + [-12.952599, 7.907599], + [-12.951799, 7.9065], + [-12.950999, 7.906499], + [-12.949, 7.9038], + [-12.946299, 7.901299], + [-12.9438, 7.8982], + [-12.943499, 7.8971], + [-12.9424, 7.896799], + [-12.941799, 7.8954], + [-12.9404, 7.894599], + [-12.940099, 7.8932], + [-12.937599, 7.890999], + [-12.9365, 7.8893], + [-12.936499, 7.8882], + [-12.9349, 7.8868], + [-12.9338, 7.8851], + [-12.933499, 7.8829], + [-12.9318, 7.8807], + [-12.931499, 7.8785], + [-12.9301, 7.8768], + [-12.929899, 7.8754], + [-12.9282, 7.8738], + [-12.9265, 7.871], + [-12.925399, 7.8699], + [-12.9213, 7.8699], + [-12.9199, 7.870099], + [-12.917599, 7.871499], + [-12.914, 7.871], + [-12.911, 7.870999], + [-12.910399, 7.8704], + [-12.908799, 7.870399], + [-12.907599, 7.8687], + [-12.906499, 7.868699], + [-12.904299, 7.8674], + [-12.903199, 7.867399], + [-12.902419, 7.866762], + [-12.892917, 7.870417], + [-12.899582, 7.877083], + [-12.89625, 7.882916], + [-12.898749, 7.886249], + [-12.895417, 7.888749], + [-12.892083, 7.88875], + [-12.891817, 7.889282], + [-12.892097, 7.889568], + [-12.892082, 7.889584], + [-12.891341, 7.891438], + [-12.891007, 7.891437], + [-12.890743, 7.892207], + [-12.889928, 7.892204], + [-12.887917, 7.899583], + [-12.887916, 7.900416], + [-12.881249, 7.898749], + [-12.877917, 7.894584], + [-12.877916, 7.892996], + [-12.87661, 7.895258], + [-12.880516, 7.902024], + [-12.87661, 7.908789], + [-12.868798, 7.90879], + [-12.866143, 7.913387], + [-12.865396, 7.913151], + [-12.863917, 7.913151], + [-12.862267, 7.913912], + [-12.861633, 7.91552], + [-12.861971, 7.917253], + [-12.863281, 7.918522], + [-12.866031, 7.919748], + [-12.867935, 7.919833], + [-12.869921, 7.91941], + [-12.871234, 7.91865], + [-12.872671, 7.918692], + [-12.873813, 7.919156], + [-12.873897, 7.920511], + [-12.873136, 7.921864], + [-12.872333, 7.923344], + [-12.872333, 7.925289], + [-12.872883, 7.926938], + [-12.874448, 7.928504], + [-12.877451, 7.9299], + [-12.8802, 7.931169], + [-12.883076, 7.932607], + [-12.886374, 7.934425], + [-12.889252, 7.935568], + [-12.89217, 7.936202], + [-12.894412, 7.936244], + [-12.896779, 7.935864], + [-12.897595, 7.935602], + [-12.899375, 7.935401], + [-12.901039, 7.935964], + [-12.902828, 7.937428], + [-12.903345, 7.938036], + [-12.903173, 7.93894], + [-12.902785, 7.939671], + [-12.901803, 7.941236], + [-12.901364, 7.942108], + [-12.900964, 7.942892], + [-12.900781, 7.943262], + [-12.9013, 7.9429], + [-12.902599, 7.9429], + [-12.9037, 7.944299], + [-12.906499, 7.943799], + [-12.908199, 7.9418], + [-12.910099, 7.9401], + [-12.911799, 7.940099], + [-12.9126, 7.9379], + [-12.914599, 7.937899], + [-12.915399, 7.936799], + [-12.916, 7.9343], + [-12.917399, 7.933999], + [-12.9182, 7.9332], + [-12.920699, 7.933499], + [-12.9207, 7.931], + [-12.922599, 7.929899], + [-12.9226, 7.928799], + [-12.9238, 7.927899], + [-12.926299, 7.926799], + [-12.9263, 7.926199], + [-12.928999, 7.924599], + [-12.9315, 7.9218], + [-12.9335, 7.921], + [-12.937099, 7.9207], + [-12.9374, 7.921199], + [-12.938999, 7.921199], + [-12.9399, 7.920099], + [-12.942599, 7.919599], + [-12.9438, 7.9179], + [-12.945999, 7.918499], + [-12.9463, 7.917599], + [-12.9485, 7.915999], + [-12.951799, 7.9154], + [-12.9524, 7.916499], + [-12.953749, 7.916799], + [-12.95375, 7.916249], + [-12.955416, 7.915416], + [-12.954583, 7.912917], + [-12.955088, 7.912663], + [-12.954048, 7.911699], + [-12.955356, 7.910843], + [-12.95525, 7.91033], + [-12.955017, 7.909767], + [-12.955736, 7.909459], + [-12.956201, 7.910346], + [-12.956681, 7.910094], + [-12.956872, 7.910311], + [-12.957312, 7.9102], + [-12.958435, 7.911647] + ] + ], + "type": "Polygon" + }, + "id": 525, + "properties": { + "cc:admin:id": ["51"], + "cc:oBld:total": 5, + "cc:pop:fifteen-to-twenty-four": 732.8386090002506, + "cc:pop:grid3-total": 6577.1682653118905, + "cc:pop:kontur-total": 3610.0120154671354, + "cc:pop:men": 1931.248259328233, + "cc:pop:sixty-plus": 271.0527540503785, + "cc:pop:total": 4053.6987873284597, + "cc:pop:under-five": 671.7168863056069, + "cc:pop:women": 2122.4505280002268, + "cc:pop:women-fiften-to-forty-nine": 989.8177267478826, + "cc:pop:wp-total": 3600.957547038646, + "cc:pop:wp-total-UN": 4180.850295969927, + "cc:id": "525", + "cc:Name": "Shenge CHC", + "cc:site": [-12.9517, 7.9085], + "user:parentName": "Kargboro", + "user:code": "OU_247069", + "user:orgUnitId": "p9KfD6eaRvu", + "user:level": "4", + "user:parentId": "Z9QaI6sxTwW" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [-12.597199, 7.697799], + [-12.595399, 7.694499], + [-12.590899, 7.691299], + [-12.5857, 7.6879], + [-12.582899, 7.686499], + [-12.581499, 7.685999], + [-12.5793, 7.685699], + [-12.578499, 7.6851], + [-12.575099, 7.684599], + [-12.571, 7.6832], + [-12.5665, 7.6824], + [-12.565399, 7.6818], + [-12.5632, 7.6815], + [-12.562399, 7.680999], + [-12.5579, 7.6801], + [-12.5549, 7.679], + [-12.5515, 7.6785], + [-12.550399, 7.6779], + [-12.5476, 7.6774], + [-12.547899, 7.675999], + [-12.5474, 7.6707], + [-12.547599, 7.6693], + [-12.5454, 7.666799], + [-12.544, 7.6626], + [-12.5435, 7.662399], + [-12.542899, 7.6604], + [-12.5421, 7.659599], + [-12.541799, 7.6576], + [-12.541299, 7.657399], + [-12.540999, 7.6557], + [-12.5399, 7.654599], + [-12.539899, 7.6537], + [-12.5388, 7.652899], + [-12.537599, 7.650999], + [-12.5354, 7.6488], + [-12.5329, 7.6474], + [-12.5318, 7.6471], + [-12.5271, 7.6471], + [-12.524, 7.647599], + [-12.5218, 7.6468], + [-12.521299, 7.646], + [-12.518999, 7.645099], + [-12.518199, 7.6435], + [-12.5171, 7.642599], + [-12.514899, 7.6393], + [-12.5138, 7.638499], + [-12.512899, 7.636799], + [-12.511499, 7.636], + [-12.5099, 7.6357], + [-12.5082, 7.6365], + [-12.508199, 7.6371], + [-12.5065, 7.637399], + [-12.504299, 7.635999], + [-12.4999, 7.634], + [-12.499899, 7.630999], + [-12.497099, 7.6285], + [-12.495699, 7.628499], + [-12.493999, 7.6274], + [-12.4912, 7.627399], + [-12.489599, 7.6262], + [-12.487899, 7.625699], + [-12.4854, 7.6229], + [-12.484899, 7.622899], + [-12.4815, 7.6185], + [-12.4801, 7.6171], + [-12.479599, 7.6154], + [-12.477899, 7.6143], + [-12.4765, 7.6143], + [-12.4751, 7.616], + [-12.475099, 7.619299], + [-12.4743, 7.619898], + [-12.4743, 7.6165], + [-12.475699, 7.6135], + [-12.476499, 7.613199], + [-12.476473, 7.613081], + [-12.476292, 7.612884], + [-12.475705, 7.613294], + [-12.475296, 7.613795], + [-12.474835, 7.614571], + [-12.474375, 7.615783], + [-12.474137, 7.618013], + [-12.473964, 7.61922], + [-12.473709, 7.620176], + [-12.473312, 7.620557], + [-12.472797, 7.620782], + [-12.47122, 7.621738], + [-12.470062, 7.622525], + [-12.469074, 7.623355], + [-12.468184, 7.623737], + [-12.467637, 7.623588], + [-12.467065, 7.623187], + [-12.466031, 7.622195], + [-12.465212, 7.621419], + [-12.464578, 7.62127], + [-12.463859, 7.62126], + [-12.462144, 7.621335], + [-12.461715, 7.621675], + [-12.461318, 7.622334], + [-12.461266, 7.623344], + [-12.45756, 7.623345], + [-12.453653, 7.63011], + [-12.447749, 7.63011], + [-12.444217, 7.628124], + [-12.440577, 7.634426], + [-12.432766, 7.634427], + [-12.430941, 7.637586], + [-12.43116, 7.637628], + [-12.431418, 7.637303], + [-12.431607, 7.636566], + [-12.433443, 7.636186], + [-12.434091, 7.636691], + [-12.434372, 7.638133], + [-12.434062, 7.639719], + [-12.434744, 7.640701], + [-12.434128, 7.642037], + [-12.434217, 7.642814], + [-12.433749, 7.643331], + [-12.433199, 7.64326], + [-12.431801, 7.642488], + [-12.430208, 7.642713], + [-12.429635, 7.642537], + [-12.432765, 7.647959], + [-12.428858, 7.654723], + [-12.421047, 7.654724], + [-12.417141, 7.66149], + [-12.417522, 7.662152], + [-12.417186, 7.662396], + [-12.417427, 7.66523], + [-12.418323, 7.666265], + [-12.418089, 7.666479], + [-12.416901, 7.666773], + [-12.416765, 7.667799], + [-12.416763, 7.667798], + [-12.41553, 7.665186], + [-12.414201, 7.664954], + [-12.410415, 7.668795], + [-12.411895, 7.671358], + [-12.415069, 7.671359], + [-12.41507, 7.67136], + [-12.412083, 7.673749], + [-12.410417, 7.67375], + [-12.407917, 7.683749], + [-12.409583, 7.684584], + [-12.413749, 7.687916], + [-12.41375, 7.691249], + [-12.413902, 7.691327], + [-12.413098, 7.691304], + [-12.413136, 7.691731], + [-12.414292, 7.692382], + [-12.414805, 7.693157], + [-12.416351, 7.693424], + [-12.417387, 7.693174], + [-12.418158, 7.693436], + [-12.418542, 7.694083], + [-12.418791, 7.695628], + [-12.419303, 7.696404], + [-12.419301, 7.696919], + [-12.419685, 7.697179], + [-12.419961, 7.694348], + [-12.420477, 7.694222], + [-12.420738, 7.693967], + [-12.422029, 7.693846], + [-12.422156, 7.694361], + [-12.422412, 7.694621], + [-12.422278, 7.695392], + [-12.423565, 7.695915], + [-12.423442, 7.695142], + [-12.423576, 7.69437], + [-12.424388, 7.694099], + [-12.4259, 7.693998], + [-12.426158, 7.694256], + [-12.426914, 7.694261], + [-12.4265, 7.69758], + [-12.426395, 7.697735], + [-12.427169, 7.69774], + [-12.427167, 7.698254], + [-12.427424, 7.698256], + [-12.427428, 7.697741], + [-12.428333, 7.697489], + [-12.428717, 7.696924], + [-12.42875, 7.697084], + [-12.43125, 7.699583], + [-12.435671, 7.700215], + [-12.43567, 7.700217], + [-12.435663, 7.70022], + [-12.439767, 7.699927], + [-12.439767, 7.699928], + [-12.439543, 7.700319], + [-12.443449, 7.707084], + [-12.448236, 7.707085], + [-12.447069, 7.707594], + [-12.446137, 7.708267], + [-12.445258, 7.709043], + [-12.444738, 7.709296], + [-12.44505, 7.709836], + [-12.445672, 7.709457], + [-12.446966, 7.708525], + [-12.448829, 7.707387], + [-12.449711, 7.706454], + [-12.450072, 7.705418], + [-12.449762, 7.704021], + [-12.449347, 7.703088], + [-12.448986, 7.702053], + [-12.449037, 7.700967], + [-12.450434, 7.701018], + [-12.451522, 7.701536], + [-12.451937, 7.702623], + [-12.452351, 7.703762], + [-12.452993, 7.705516], + [-12.455015, 7.706325], + [-12.457605, 7.706244], + [-12.461891, 7.705598], + [-12.458606, 7.710725], + [-12.460692, 7.720335], + [-12.465512, 7.720559], + [-12.466714, 7.720837], + [-12.467916, 7.721342], + [-12.467916, 7.723201], + [-12.467915, 7.723202], + [-12.467869, 7.723171], + [-12.463171, 7.722215], + [-12.459909, 7.722959], + [-12.457205, 7.723874], + [-12.452013, 7.729125], + [-12.448532, 7.734812], + [-12.447485, 7.739684], + [-12.447613, 7.740745], + [-12.449253, 7.739222], + [-12.449401, 7.741542], + [-12.4571, 7.7418], + [-12.470199, 7.744299], + [-12.481399, 7.748699], + [-12.4864, 7.7495], + [-12.4944, 7.751299], + [-12.4988, 7.750499], + [-12.504099, 7.7481], + [-12.507699, 7.7454], + [-12.514599, 7.7397], + [-12.5208, 7.735099], + [-12.5248, 7.731099], + [-12.529099, 7.7246], + [-12.5323, 7.721699], + [-12.5359, 7.719699], + [-12.552699, 7.713499], + [-12.5583, 7.708499], + [-12.565499, 7.7031], + [-12.569199, 7.7011], + [-12.580699, 7.6971], + [-12.586799, 7.6963], + [-12.5928, 7.6963], + [-12.596799, 7.697299], + [-12.597199, 7.697799] + ] + ], + [ + [ + [-12.507599, 7.6182], + [-12.506799, 7.6174], + [-12.5046, 7.616499], + [-12.503499, 7.6154], + [-12.502399, 7.615099], + [-12.4988, 7.6118], + [-12.497399, 7.611299], + [-12.496499, 7.6101], + [-12.4954, 7.610099], + [-12.494599, 7.6093], + [-12.4932, 7.608999], + [-12.492899, 7.6079], + [-12.4915, 7.607599], + [-12.490699, 7.606299], + [-12.488999, 7.6057], + [-12.486799, 7.605699], + [-12.485399, 7.604899], + [-12.4832, 7.6043], + [-12.4799, 7.6043], + [-12.4785, 7.6046], + [-12.4782, 7.607399], + [-12.479299, 7.6085], + [-12.4804, 7.612099], + [-12.481299, 7.6126], + [-12.4818, 7.613999], + [-12.4829, 7.6149], + [-12.4832, 7.615999], + [-12.4843, 7.6165], + [-12.4862, 7.619299], + [-12.489599, 7.620699], + [-12.4901, 7.621299], + [-12.4924, 7.621399], + [-12.495399, 7.6213], + [-12.4965, 7.6207], + [-12.500699, 7.620699], + [-12.5032, 7.6196], + [-12.5057, 7.619599], + [-12.507099, 7.618999], + [-12.507599, 7.6182] + ] + ], + [ + [ + [-12.505399, 7.6271], + [-12.5021, 7.6268], + [-12.5012, 7.628199], + [-12.5018, 7.6285], + [-12.5021, 7.631199], + [-12.5026, 7.631499], + [-12.503499, 7.631199], + [-12.504299, 7.6293], + [-12.505399, 7.628799], + [-12.505399, 7.6271] + ] + ], + [ + [ + [-12.520699, 7.631199], + [-12.520099, 7.6288], + [-12.5174, 7.629], + [-12.5171, 7.630099], + [-12.518999, 7.6299], + [-12.5199, 7.631499], + [-12.520699, 7.631199] + ] + ], + [ + [ + [-12.555399, 7.6543], + [-12.5546, 7.653499], + [-12.554599, 7.6518], + [-12.5538, 7.6496], + [-12.553499, 7.6476], + [-12.552899, 7.647399], + [-12.552599, 7.6454], + [-12.5507, 7.6435], + [-12.550399, 7.6421], + [-12.549299, 7.641299], + [-12.548799, 7.6396], + [-12.5474, 7.6385], + [-12.547399, 7.6376], + [-12.545399, 7.6349], + [-12.543999, 7.634299], + [-12.542599, 7.632399], + [-12.5393, 7.6293], + [-12.538199, 7.627899], + [-12.536, 7.626], + [-12.533499, 7.6251], + [-12.5299, 7.625099], + [-12.528799, 7.6246], + [-12.5271, 7.624599], + [-12.526799, 7.624], + [-12.5246, 7.624], + [-12.5229, 7.625399], + [-12.5213, 7.6262], + [-12.5213, 7.629299], + [-12.5221, 7.6315], + [-12.5221, 7.637599], + [-12.522599, 7.6382], + [-12.5229, 7.640399], + [-12.5237, 7.641499], + [-12.525699, 7.642099], + [-12.5274, 7.6421], + [-12.528999, 7.6426], + [-12.5299, 7.643499], + [-12.533999, 7.6443], + [-12.536, 7.6457], + [-12.538999, 7.646799], + [-12.5401, 7.648799], + [-12.541299, 7.649], + [-12.542099, 7.650099], + [-12.5424, 7.652099], + [-12.5435, 7.6535], + [-12.5449, 7.656499], + [-12.5479, 7.658199], + [-12.5496, 7.6583], + [-12.552099, 7.658499], + [-12.552899, 7.6574], + [-12.554599, 7.656799], + [-12.555399, 7.655999], + [-12.555399, 7.6543] + ] + ], + [ + [ + [-12.560699, 7.635399], + [-12.560699, 7.634], + [-12.5599, 7.633199], + [-12.558799, 7.6307], + [-12.5546, 7.6299], + [-12.5538, 7.6304], + [-12.554, 7.632399], + [-12.5551, 7.6332], + [-12.5568, 7.635399], + [-12.5576, 7.635699], + [-12.560699, 7.635399] + ] + ], + [ + [ + [-12.571299, 7.654899], + [-12.569, 7.6515], + [-12.5663, 7.649], + [-12.5649, 7.648999], + [-12.564899, 7.647899], + [-12.563799, 7.647099], + [-12.5615, 7.6463], + [-12.5615, 7.647599], + [-12.562399, 7.649599], + [-12.563799, 7.6507], + [-12.5649, 7.6524], + [-12.5663, 7.653499], + [-12.5671, 7.6535], + [-12.569, 7.655399], + [-12.571299, 7.654899] + ] + ] + ], + "type": "MultiPolygon" + }, + "id": 526, + "properties": { + "cc:admin:id": ["39"], + "cc:oBld:total": 0, + "cc:pop:fifteen-to-twenty-four": 73.39856613809165, + "cc:pop:grid3-total": 200.9503555508117, + "cc:pop:kontur-total": 247, + "cc:pop:men": 184.1786223111645, + "cc:pop:sixty-plus": 13.745657316461097, + "cc:pop:total": 372.40125521431884, + "cc:pop:under-five": 72.39856613809165, + "cc:pop:women": 188.22263290315422, + "cc:pop:women-fiften-to-forty-nine": 99.14071235075677, + "cc:pop:wp-total": 454.76389694112885, + "cc:pop:wp-total-UN": 529.0127611798622, + "cc:id": "526", + "cc:Name": "Sierra Rutile Clinic", + "cc:site": [-12.45803, 7.69661], + "user:parentName": "Imperi", + "user:code": "OU_197420", + "user:orgUnitId": "Bq5nb7UAEGd", + "user:level": "4", + "user:parentId": "XEyIRFd9pct" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.522082, 9.829583], + [-11.51625, 9.832082], + [-11.513749, 9.830417], + [-11.512917, 9.830417], + [-11.505417, 9.833749], + [-11.49875, 9.829583], + [-11.49375, 9.832916], + [-11.493421, 9.833899], + [-11.491474, 9.833609], + [-11.491074, 9.833048], + [-11.491366, 9.832764], + [-11.493511, 9.832372], + [-11.493637, 9.832324], + [-11.487917, 9.830417], + [-11.488749, 9.827083], + [-11.48625, 9.826249], + [-11.487082, 9.819583], + [-11.487916, 9.818749], + [-11.487916, 9.815417], + [-11.485416, 9.814582], + [-11.483749, 9.812083], + [-11.47125, 9.813749], + [-11.470794, 9.811925], + [-11.471092, 9.811691], + [-11.471977, 9.809948], + [-11.471249, 9.809583], + [-11.467916, 9.810417], + [-11.46125, 9.811249], + [-11.459583, 9.80625], + [-11.458749, 9.805417], + [-11.449583, 9.805416], + [-11.44875, 9.804582], + [-11.448749, 9.80375], + [-11.437917, 9.802916], + [-11.434583, 9.79875], + [-11.434582, 9.795411], + [-11.433582, 9.79541], + [-11.432828, 9.794103], + [-11.432916, 9.79375], + [-11.42625, 9.792916], + [-11.423749, 9.79125], + [-11.41625, 9.792082], + [-11.414582, 9.792083], + [-11.410417, 9.792916], + [-11.407082, 9.785417], + [-11.39875, 9.782083], + [-11.395416, 9.783749], + [-11.387917, 9.782917], + [-11.387082, 9.782083], + [-11.380416, 9.782083], + [-11.369583, 9.782916], + [-11.36625, 9.787082], + [-11.366179, 9.787498], + [-11.364422, 9.784457], + [-11.358934, 9.784457], + [-11.358499, 9.787], + [-11.356299, 9.7928], + [-11.355799, 9.7966], + [-11.355399, 9.8034], + [-11.354599, 9.8068], + [-11.352899, 9.8105], + [-11.3521, 9.8147], + [-11.3521, 9.820099], + [-11.3525, 9.8234], + [-11.3533, 9.8255], + [-11.355299, 9.829099], + [-11.356699, 9.832299], + [-11.359099, 9.836499], + [-11.3605, 9.8397], + [-11.3625, 9.8433], + [-11.3644, 9.8472], + [-11.3666, 9.8501], + [-11.370399, 9.853399], + [-11.375499, 9.856099], + [-11.3786, 9.8584], + [-11.383799, 9.863299], + [-11.3878, 9.8677], + [-11.3895, 9.87], + [-11.392, 9.8747], + [-11.3963, 9.8801], + [-11.3985, 9.8843], + [-11.400999, 9.888599], + [-11.402399, 9.891799], + [-11.404799, 9.895999], + [-11.406199, 9.899199], + [-11.407722, 9.902083], + [-11.415416, 9.902082], + [-11.414583, 9.892082], + [-11.417083, 9.890417], + [-11.426818, 9.890416], + [-11.43008, 9.884768], + [-11.433023, 9.884768], + [-11.433503, 9.88524], + [-11.43437, 9.88574], + [-11.434887, 9.886826], + [-11.435359, 9.888504], + [-11.435944, 9.889574], + [-11.436294, 9.89203], + [-11.436137, 9.894165], + [-11.436539, 9.895015], + [-11.437484, 9.895015], + [-11.440416, 9.892082], + [-11.44125, 9.889582], + [-11.442586, 9.888514], + [-11.442738, 9.88825], + [-11.442917, 9.888249], + [-11.445416, 9.886249], + [-11.442083, 9.882082], + [-11.442083, 9.872917], + [-11.447083, 9.867917], + [-11.462082, 9.867917], + [-11.462917, 9.868749], + [-11.47375, 9.86625], + [-11.478126, 9.8675], + [-11.478125, 9.867502], + [-11.477064, 9.867809], + [-11.476979, 9.869929], + [-11.478127, 9.871536], + [-11.478901, 9.872003], + [-11.479583, 9.867917], + [-11.490416, 9.869582], + [-11.494582, 9.867083], + [-11.497082, 9.867916], + [-11.498749, 9.865416], + [-11.49875, 9.85625], + [-11.499583, 9.856249], + [-11.505416, 9.85375], + [-11.510416, 9.854582], + [-11.51125, 9.850416], + [-11.514583, 9.847083], + [-11.522082, 9.847082], + [-11.522082, 9.829583] + ] + ], + "type": "Polygon" + }, + "id": 527, + "properties": { + "cc:admin:id": ["19"], + "cc:oBld:total": 355, + "cc:pop:fifteen-to-twenty-four": 473.6664016708483, + "cc:pop:grid3-total": 5592.13207664884, + "cc:pop:kontur-total": 2532.717717467897, + "cc:pop:men": 1281.9036881328295, + "cc:pop:sixty-plus": 167.50811618342107, + "cc:pop:total": 2627.624246247771, + "cc:pop:under-five": 432.7965941401154, + "cc:pop:women": 1345.7205581149422, + "cc:pop:women-fiften-to-forty-nine": 672.1702007355784, + "cc:pop:wp-total": 1980.4006950717596, + "cc:pop:wp-total-UN": 2295.8883631247713, + "cc:id": "527", + "cc:Name": "Sinkunia CHC", + "cc:site": [-11.4291, 9.863], + "user:parentName": "Dembelia Sinkunia", + "user:code": "OU_226216", + "user:orgUnitId": "IlnqGuxfQAw", + "user:level": "4", + "user:parentId": "Mr4au3jR9bt" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.939513, 8.727119], + [-11.939254, 8.726636], + [-11.937427, 8.725144], + [-11.938054, 8.724529], + [-11.937119, 8.723246], + [-11.936893, 8.722957], + [-11.936012, 8.722142], + [-11.935206, 8.721509], + [-11.937442, 8.720239], + [-11.937416, 8.720163], + [-11.937411, 8.720133], + [-11.937248, 8.71944], + [-11.937339, 8.719192], + [-11.937488, 8.718811], + [-11.937314, 8.718652], + [-11.93722, 8.718519], + [-11.937209, 8.718297], + [-11.937505, 8.71806], + [-11.937809, 8.718137], + [-11.938023, 8.717904], + [-11.937008, 8.71567], + [-11.936021, 8.713415], + [-11.93565, 8.712684], + [-11.934326, 8.711513], + [-11.933631, 8.710876], + [-11.932608, 8.710519], + [-11.932591, 8.710248], + [-11.932928, 8.710044], + [-11.933489, 8.709699], + [-11.934583, 8.708984], + [-11.934582, 8.70375], + [-11.932083, 8.702082], + [-11.932916, 8.69875], + [-11.932916, 8.695416], + [-11.931249, 8.694583], + [-11.92625, 8.69375], + [-11.926249, 8.695416], + [-11.924583, 8.69625], + [-11.925416, 8.697917], + [-11.923617, 8.699715], + [-11.923526, 8.699475], + [-11.922745, 8.698138], + [-11.92122, 8.695983], + [-11.919386, 8.693689], + [-11.917083, 8.695417], + [-11.916249, 8.698749], + [-11.914583, 8.699582], + [-11.90875, 8.697083], + [-11.908749, 8.69544], + [-11.908452, 8.695321], + [-11.908204, 8.695455], + [-11.907889, 8.695269], + [-11.907777, 8.695665], + [-11.907177, 8.696017], + [-11.906778, 8.696039], + [-11.905672, 8.697017], + [-11.904545, 8.697273], + [-11.90392, 8.697648], + [-11.903521, 8.697457], + [-11.90277, 8.695177], + [-11.90224, 8.694398], + [-11.901814, 8.69287], + [-11.901383, 8.692201], + [-11.901341, 8.691006], + [-11.896126, 8.690631], + [-11.894283, 8.689355], + [-11.890366, 8.6863], + [-11.889582, 8.687082], + [-11.884583, 8.687083], + [-11.88125, 8.689582], + [-11.877917, 8.689583], + [-11.872702, 8.692191], + [-11.872724, 8.692878], + [-11.872377, 8.69453], + [-11.87182, 8.69545], + [-11.871407, 8.696707], + [-11.871374, 8.697242], + [-11.875416, 8.697916], + [-11.875817, 8.698719], + [-11.87157, 8.701592], + [-11.870956, 8.702016], + [-11.870802, 8.702651], + [-11.87153, 8.702821], + [-11.872471, 8.702604], + [-11.872885, 8.702722], + [-11.873943, 8.702336], + [-11.875589, 8.702676], + [-11.875994, 8.703032], + [-11.877791, 8.703826], + [-11.879962, 8.704129], + [-11.883749, 8.707917], + [-11.884582, 8.710416], + [-11.879583, 8.712917], + [-11.878749, 8.714582], + [-11.87625, 8.714583], + [-11.874583, 8.717917], + [-11.876249, 8.722082], + [-11.887526, 8.726111], + [-11.887487, 8.727276], + [-11.887184, 8.728958], + [-11.878233, 8.7322], + [-11.878749, 8.733749], + [-11.882083, 8.733749], + [-11.887916, 8.732917], + [-11.888749, 8.733749], + [-11.88625, 8.744582], + [-11.885417, 8.746249], + [-11.891249, 8.749582], + [-11.891431, 8.749947], + [-11.891382, 8.750037], + [-11.89125, 8.750209], + [-11.897082, 8.754583], + [-11.897082, 8.76125], + [-11.895065, 8.763772], + [-11.89478, 8.763811], + [-11.893323, 8.764484], + [-11.892658, 8.765073], + [-11.891414, 8.766838], + [-11.890062, 8.76784], + [-11.889626, 8.768012], + [-11.889006, 8.767787], + [-11.888809, 8.767658], + [-11.887963, 8.768068], + [-11.887895, 8.768629], + [-11.886941, 8.770269], + [-11.886669, 8.771266], + [-11.886732, 8.773012], + [-11.886516, 8.774587], + [-11.886751, 8.775123], + [-11.886599, 8.775639], + [-11.886867, 8.776407], + [-11.887618, 8.777062], + [-11.888306, 8.776975], + [-11.88846, 8.777082], + [-11.88874, 8.778071], + [-11.888724, 8.779991], + [-11.888566, 8.780085], + [-11.888143, 8.779792], + [-11.887797, 8.779752], + [-11.886714, 8.780134], + [-11.885524, 8.77911], + [-11.884339, 8.778709], + [-11.883951, 8.779172], + [-11.883625, 8.779322], + [-11.884606, 8.779608], + [-11.884759, 8.779574], + [-11.885208, 8.779755], + [-11.885269, 8.779802], + [-11.886837, 8.780258], + [-11.887851, 8.779983], + [-11.888558, 8.780295], + [-11.888751, 8.780553], + [-11.888716, 8.780806], + [-11.889249, 8.780962], + [-11.889693, 8.779596], + [-11.889695, 8.779562], + [-11.889696, 8.779561], + [-11.89366, 8.782958], + [-11.8937, 8.782899], + [-11.895199, 8.7797], + [-11.896299, 8.7763], + [-11.897699, 8.7685], + [-11.898799, 8.7649], + [-11.904199, 8.7554], + [-11.906899, 8.7521], + [-11.91, 8.749299], + [-11.9163, 8.745099], + [-11.926199, 8.7377], + [-11.933699, 8.7344], + [-11.938761, 8.730895], + [-11.938756, 8.730886], + [-11.938626, 8.730528], + [-11.938608, 8.730484], + [-11.937954, 8.728968], + [-11.937998, 8.728866], + [-11.937996, 8.728859], + [-11.937527, 8.72792], + [-11.937594, 8.72786], + [-11.938494, 8.727517], + [-11.939513, 8.727119] + ] + ], + "type": "Polygon" + }, + "id": 528, + "properties": { + "cc:admin:id": ["54"], + "cc:oBld:total": 1954, + "cc:pop:fifteen-to-twenty-four": 4394.388551443715, + "cc:pop:grid3-total": 11357.179942576911, + "cc:pop:kontur-total": 22913.421647771906, + "cc:pop:men": 11202.01708820031, + "cc:pop:sixty-plus": 1482.8837008351406, + "cc:pop:total": 23629.472520106665, + "cc:pop:under-five": 3811.2873791988377, + "cc:pop:women": 12427.45543190637, + "cc:pop:women-fiften-to-forty-nine": 6025.080919780074, + "cc:pop:wp-total": 17962.8223194311, + "cc:pop:wp-total-UN": 20828.96019248996, + "cc:id": "528", + "cc:Name": "SLRCS MCH Clinic", + "cc:site": [-11.9355, 8.7209], + "user:parentName": "Kholifa Rowalla", + "user:code": "OU_268153", + "user:orgUnitId": "wicmjKI3xiP", + "user:level": "4", + "user:parentId": "PQZJPIpTepd" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.959419, 8.370505], + [-12.958617, 8.370358], + [-12.958163, 8.370737], + [-12.956499, 8.3714], + [-12.952917, 8.372819], + [-12.952917, 8.371249], + [-12.955416, 8.367917], + [-12.955416, 8.367084], + [-12.950417, 8.36625], + [-12.947917, 8.367916], + [-12.94625, 8.367084], + [-12.94625, 8.363284], + [-12.94658, 8.363263], + [-12.949104, 8.363053], + [-12.950167, 8.362754], + [-12.953549, 8.361183], + [-12.951249, 8.360417], + [-12.94625, 8.360416], + [-12.944583, 8.35875], + [-12.94375, 8.357083], + [-12.94375, 8.356249], + [-12.947917, 8.353749], + [-12.947916, 8.35125], + [-12.946249, 8.350416], + [-12.945416, 8.347084], + [-12.944582, 8.347083], + [-12.939583, 8.34625], + [-12.937082, 8.347083], + [-12.934583, 8.34625], + [-12.934582, 8.34375], + [-12.932916, 8.342916], + [-12.930831, 8.337359], + [-12.929236, 8.338378], + [-12.928575, 8.339054], + [-12.927881, 8.339329], + [-12.927493, 8.339947], + [-12.927781, 8.346806], + [-12.922916, 8.345416], + [-12.917916, 8.33875], + [-12.911489, 8.339464], + [-12.913671, 8.349652], + [-12.908967, 8.363152], + [-12.912872, 8.372137], + [-12.936957, 8.378252], + [-12.958802, 8.37463], + [-12.959419, 8.370505] + ] + ], + "type": "Polygon" + }, + "id": 529, + "properties": { + "cc:admin:id": ["112"], + "cc:oBld:total": 108, + "cc:pop:fifteen-to-twenty-four": 504.5484441504011, + "cc:pop:grid3-total": 1794.6127000704826, + "cc:pop:kontur-total": 2639.239018357058, + "cc:pop:men": 1204.1226428926805, + "cc:pop:sixty-plus": 172.35008835446018, + "cc:pop:total": 2567.040500313382, + "cc:pop:under-five": 375.8063144330266, + "cc:pop:women": 1362.917857420701, + "cc:pop:women-fiften-to-forty-nine": 686.7266008557639, + "cc:pop:wp-total": 2500.744453181048, + "cc:pop:wp-total-UN": 2894.8093443220337, + "cc:id": "529", + "cc:Name": "Songo CHC", + "cc:site": [-12.9303, 8.3706], + "user:parentName": "Rural Western Area", + "user:code": "OU_278402", + "user:orgUnitId": "pXDcgDRz8Od", + "user:level": "4", + "user:parentId": "qtr8GGlm4gg" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.743281, 7.948548], + [-11.741853, 7.947966], + [-11.741346, 7.947756], + [-11.738731, 7.946618], + [-11.739147, 7.945411], + [-11.739309, 7.944928], + [-11.739384, 7.944744], + [-11.7396, 7.944468], + [-11.739765, 7.944015], + [-11.73989, 7.943501], + [-11.740024, 7.942991], + [-11.740384, 7.942021], + [-11.739581, 7.941812], + [-11.739286, 7.941731], + [-11.739386, 7.941327], + [-11.739164, 7.94117], + [-11.739381, 7.940339], + [-11.73931, 7.939822], + [-11.736939, 7.939186], + [-11.736766, 7.939658], + [-11.735856, 7.939414], + [-11.733938, 7.938322], + [-11.73379, 7.938731], + [-11.733871, 7.938888], + [-11.733569, 7.939871], + [-11.733974, 7.940049], + [-11.733816, 7.940467], + [-11.73372, 7.940675], + [-11.733469, 7.941133], + [-11.734358, 7.94135], + [-11.734149, 7.941841], + [-11.73388, 7.942507], + [-11.733902, 7.942543], + [-11.73384, 7.943042], + [-11.733685, 7.943607], + [-11.73365, 7.943721], + [-11.733415, 7.944347], + [-11.732994, 7.944218], + [-11.731769, 7.944035], + [-11.731293, 7.944012], + [-11.730917, 7.944011], + [-11.730572, 7.944035], + [-11.730199, 7.944076], + [-11.729892, 7.944123], + [-11.729352, 7.944246], + [-11.729283, 7.944267], + [-11.728839, 7.944373], + [-11.728466, 7.944484], + [-11.728411, 7.944483], + [-11.728338, 7.944534], + [-11.728323, 7.944567], + [-11.728377, 7.944691], + [-11.727833, 7.944902], + [-11.727264, 7.945232], + [-11.726847, 7.945504], + [-11.725724, 7.946181], + [-11.723989, 7.947248], + [-11.723694, 7.947423], + [-11.722894, 7.94785], + [-11.722625, 7.94795], + [-11.722879, 7.948697], + [-11.722466, 7.948902], + [-11.722238, 7.949226], + [-11.721894, 7.949337], + [-11.721389, 7.949179], + [-11.720597, 7.949195], + [-11.720527, 7.949269], + [-11.719774, 7.950096], + [-11.719098, 7.950575], + [-11.718484, 7.950707], + [-11.718394, 7.950651], + [-11.718203, 7.950817], + [-11.717702, 7.95063], + [-11.717089, 7.951043], + [-11.716715, 7.950866], + [-11.716421, 7.951387], + [-11.716196, 7.951806], + [-11.716159, 7.951859], + [-11.715886, 7.952219], + [-11.714438, 7.951315], + [-11.71433, 7.951544], + [-11.715013, 7.952105], + [-11.714744, 7.952373], + [-11.713948, 7.95277], + [-11.713581, 7.952987], + [-11.713195, 7.953329], + [-11.712615, 7.952835], + [-11.712215, 7.953195], + [-11.71188, 7.953522], + [-11.711034, 7.952892], + [-11.710707, 7.953246], + [-11.710022, 7.953963], + [-11.710849, 7.954657], + [-11.710483, 7.955094], + [-11.711144, 7.955617], + [-11.711727, 7.955662], + [-11.712007, 7.955492], + [-11.712389, 7.955672], + [-11.712413, 7.955638], + [-11.712836, 7.955935], + [-11.713616, 7.954775], + [-11.714015, 7.955064], + [-11.714786, 7.953889], + [-11.715135, 7.954132], + [-11.715189, 7.954173], + [-11.715611, 7.954513], + [-11.716018, 7.954754], + [-11.716214, 7.954501], + [-11.717484, 7.954459], + [-11.718597, 7.95439], + [-11.718754, 7.954358], + [-11.71893, 7.954316], + [-11.719553, 7.954227], + [-11.719984, 7.954765], + [-11.720861, 7.95593], + [-11.721608, 7.956445], + [-11.721311, 7.956983], + [-11.721083, 7.958604], + [-11.721081, 7.958663], + [-11.720561, 7.958652], + [-11.720419, 7.95962], + [-11.720972, 7.95957], + [-11.720978, 7.959541], + [-11.721478, 7.959552], + [-11.721465, 7.959683], + [-11.721417, 7.960015], + [-11.721358, 7.96054], + [-11.72338, 7.960651], + [-11.723478, 7.96011], + [-11.723529, 7.959549], + [-11.723521, 7.958983], + [-11.725372, 7.959117], + [-11.725478, 7.957988], + [-11.725964, 7.957975], + [-11.725891, 7.95748], + [-11.725874, 7.957395], + [-11.726267, 7.957249], + [-11.727062, 7.957349], + [-11.727521, 7.956933], + [-11.729056, 7.957052], + [-11.729129, 7.957063], + [-11.730726, 7.957225], + [-11.730905, 7.956825], + [-11.730922, 7.956324], + [-11.730481, 7.954637], + [-11.731103, 7.954458], + [-11.731806, 7.954322], + [-11.731555, 7.953542], + [-11.732034, 7.954144], + [-11.732642, 7.955094], + [-11.733332, 7.95584], + [-11.733892, 7.956165], + [-11.733838, 7.955463], + [-11.733626, 7.95302], + [-11.733496, 7.951629], + [-11.734032, 7.95157], + [-11.734537, 7.951506], + [-11.735031, 7.951458], + [-11.735582, 7.951416], + [-11.736146, 7.951356], + [-11.736596, 7.951253], + [-11.736537, 7.950081], + [-11.737076, 7.950021], + [-11.737549, 7.949986], + [-11.738062, 7.949978], + [-11.738756, 7.949897], + [-11.738947, 7.948871], + [-11.739721, 7.949329], + [-11.739966, 7.949525], + [-11.739977, 7.949583], + [-11.73985, 7.949982], + [-11.73992, 7.950304], + [-11.74005, 7.950299], + [-11.74037, 7.950293], + [-11.741639, 7.950175], + [-11.741836, 7.950111], + [-11.743035, 7.949022], + [-11.743281, 7.948548] + ] + ], + "type": "Polygon" + }, + "id": 530, + "properties": { + "cc:admin:id": ["46"], + "cc:oBld:total": 3366, + "cc:pop:fifteen-to-twenty-four": 7669.474954899111, + "cc:pop:grid3-total": 30388.36801338534, + "cc:pop:kontur-total": 30629.155431972693, + "cc:pop:men": 20713.319739286646, + "cc:pop:sixty-plus": 3060.2489458467167, + "cc:pop:total": 42744.223417125744, + "cc:pop:under-five": 7094.0791917386, + "cc:pop:women": 22030.903677839106, + "cc:pop:women-fiften-to-forty-nine": 10495.786150595808, + "cc:pop:wp-total": 39997.16898947323, + "cc:pop:wp-total-UN": 46370.0102303688, + "cc:id": "530", + "cc:Name": "St Monica's Clinic", + "cc:site": [-11.731, 7.9491], + "user:parentName": "Kakua", + "user:code": "OU_978", + "user:orgUnitId": "jCnyQOKQBFX", + "user:level": "4", + "user:parentId": "U6Kr7Gtpidn" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.220104, 8.634173], + [-13.220063, 8.633408], + [-13.220104, 8.632464], + [-13.219712, 8.63088], + [-13.218348, 8.62963], + [-13.218349, 8.629629], + [-13.219885, 8.629628], + [-13.220025, 8.629386], + [-13.2196, 8.628799], + [-13.219599, 8.6274], + [-13.2182, 8.6262], + [-13.218199, 8.6254], + [-13.2171, 8.6246], + [-13.216499, 8.6229], + [-13.215999, 8.622899], + [-13.215399, 8.6212], + [-13.2143, 8.6204], + [-13.214195, 8.620072], + [-13.212175, 8.62088], + [-13.21372, 8.622567], + [-13.213846, 8.622748], + [-13.213626, 8.622821], + [-13.212195, 8.623523], + [-13.211794, 8.623648], + [-13.210288, 8.623609], + [-13.209525, 8.623607], + [-13.209049, 8.623788], + [-13.207781, 8.625028], + [-13.207561, 8.625286], + [-13.206735, 8.626134], + [-13.207341, 8.626717], + [-13.208047, 8.627374], + [-13.208693, 8.626615], + [-13.209141, 8.626464], + [-13.21427, 8.628265], + [-13.21434, 8.628431], + [-13.213498, 8.629581], + [-13.213537, 8.630372], + [-13.213122, 8.630478], + [-13.212948, 8.630322], + [-13.212765, 8.630539], + [-13.211348, 8.630829], + [-13.211478, 8.633003], + [-13.211859, 8.633201], + [-13.211975, 8.634026], + [-13.211446, 8.634066], + [-13.211253, 8.635251], + [-13.212176, 8.63548], + [-13.212227, 8.635827], + [-13.211934, 8.63592], + [-13.212044, 8.636904], + [-13.212071, 8.636947], + [-13.212586, 8.636851], + [-13.214019, 8.636625], + [-13.214143, 8.636091], + [-13.215061, 8.636542], + [-13.216103, 8.63707], + [-13.21615, 8.636711], + [-13.215838, 8.635822], + [-13.215534, 8.634798], + [-13.21655, 8.635169], + [-13.216635, 8.634962], + [-13.216705, 8.6346], + [-13.216737, 8.634607], + [-13.218121, 8.634314], + [-13.218211, 8.634214], + [-13.218256, 8.634269], + [-13.218259, 8.634267], + [-13.218855, 8.634157], + [-13.220104, 8.634173] + ] + ], + "type": "Polygon" + }, + "id": 531, + "properties": { + "cc:admin:id": ["44"], + "cc:oBld:total": 911, + "cc:pop:fifteen-to-twenty-four": 1023.7338809963575, + "cc:pop:grid3-total": 9750.724897949885, + "cc:pop:kontur-total": 2975.8894185445324, + "cc:pop:men": 2662.380671852719, + "cc:pop:sixty-plus": 343.4775638563542, + "cc:pop:total": 5539.582723453228, + "cc:pop:under-five": 892.6304797115898, + "cc:pop:women": 2877.2020516005086, + "cc:pop:women-fiften-to-forty-nine": 1399.6790081020922, + "cc:pop:wp-total": 4978.437529267261, + "cc:pop:wp-total-UN": 5770.375491106973, + "cc:id": "531", + "cc:Name": "St. John of God Catholic Clinic", + "cc:site": [-13.2125, 8.6258], + "user:parentName": "Kaffu Bullom", + "user:code": "OU_255015", + "user:orgUnitId": "RUCp6OaTSAD", + "user:level": "4", + "user:parentId": "vn9KJsLyP5f" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.576975, 8.727403], + [-12.575881, 8.726629], + [-12.575466, 8.726488], + [-12.574947, 8.726595], + [-12.573899, 8.726144], + [-12.572979, 8.724991], + [-12.571848, 8.724401], + [-12.571358, 8.723033], + [-12.570701, 8.722502], + [-12.570288, 8.722673], + [-12.570231, 8.722515], + [-12.568608, 8.722452], + [-12.567491, 8.721686], + [-12.565391, 8.722797], + [-12.562041, 8.724662], + [-12.561165, 8.725221], + [-12.559973, 8.723565], + [-12.558906, 8.722731], + [-12.558628, 8.721841], + [-12.557647, 8.720635], + [-12.557168, 8.720295], + [-12.556677, 8.719088], + [-12.556524, 8.71823], + [-12.556668, 8.718027], + [-12.556283, 8.716978], + [-12.556112, 8.716943], + [-12.555995, 8.716624], + [-12.555032, 8.714386], + [-12.554654, 8.710407], + [-12.554485, 8.709858], + [-12.55125, 8.707917], + [-12.549582, 8.704583], + [-12.544583, 8.704582], + [-12.541196, 8.703229], + [-12.541202, 8.703216], + [-12.542151, 8.702488], + [-12.543128, 8.700983], + [-12.54335, 8.700912], + [-12.54032, 8.700191], + [-12.539559, 8.699616], + [-12.539165, 8.698078], + [-12.538943, 8.697953], + [-12.538198, 8.697853], + [-12.538261, 8.696488], + [-12.537808, 8.696499], + [-12.537863, 8.696228], + [-12.537648, 8.696018], + [-12.537525, 8.694995], + [-12.537595, 8.694448], + [-12.53728, 8.693305], + [-12.536613, 8.693528], + [-12.536501, 8.693653], + [-12.536493, 8.693985], + [-12.536418, 8.694368], + [-12.537058, 8.6944], + [-12.53691, 8.69506], + [-12.536983, 8.695612], + [-12.535337, 8.695992], + [-12.535335, 8.695991], + [-12.535334, 8.695897], + [-12.535072, 8.695493], + [-12.534953, 8.695479], + [-12.534671, 8.695171], + [-12.534061, 8.695315], + [-12.533886, 8.694697], + [-12.534119, 8.69448], + [-12.534241, 8.694407], + [-12.534138, 8.694326], + [-12.533837, 8.693931], + [-12.533735, 8.693436], + [-12.53364, 8.693308], + [-12.533539, 8.693134], + [-12.532744, 8.693591], + [-12.532654, 8.693485], + [-12.529808, 8.695046], + [-12.529598, 8.69541], + [-12.529221, 8.695651], + [-12.528924, 8.695376], + [-12.529225, 8.694394], + [-12.528547, 8.69425], + [-12.528565, 8.693798], + [-12.528604, 8.693562], + [-12.528177, 8.692775], + [-12.528145, 8.692766], + [-12.528155, 8.692247], + [-12.52818, 8.691756], + [-12.528315, 8.690858], + [-12.528066, 8.69084], + [-12.527653, 8.690804], + [-12.526977, 8.69133], + [-12.525888, 8.690867], + [-12.523482, 8.690953], + [-12.522916, 8.692083], + [-12.519909, 8.692512], + [-12.519908, 8.692511], + [-12.519955, 8.692343], + [-12.519917, 8.692274], + [-12.515416, 8.692916], + [-12.512917, 8.69125], + [-12.512717, 8.69125], + [-12.512521, 8.691161], + [-12.511839, 8.689804], + [-12.510976, 8.689814], + [-12.510853, 8.690375], + [-12.51074, 8.69037], + [-12.510912, 8.688853], + [-12.510927, 8.685954], + [-12.51082, 8.685567], + [-12.510681, 8.685526], + [-12.511367, 8.684876], + [-12.511018, 8.683763], + [-12.510874, 8.683723], + [-12.511298, 8.683439], + [-12.510717, 8.682878], + [-12.509904, 8.681754], + [-12.509844, 8.680682], + [-12.509673, 8.680693], + [-12.509677, 8.681015], + [-12.509349, 8.681478], + [-12.509226, 8.68224], + [-12.508776, 8.682126], + [-12.508279, 8.682023], + [-12.507849, 8.681639], + [-12.508094, 8.683109], + [-12.507978, 8.683446], + [-12.507294, 8.68439], + [-12.505946, 8.685505], + [-12.505365, 8.68731], + [-12.504367, 8.6882], + [-12.502833, 8.686684], + [-12.502652, 8.686053], + [-12.500645, 8.684547], + [-12.500413, 8.684661], + [-12.497455, 8.684527], + [-12.496904, 8.684307], + [-12.496861, 8.684155], + [-12.496742, 8.68425], + [-12.496313, 8.684208], + [-12.494377, 8.684707], + [-12.4945, 8.685], + [-12.497, 8.6893], + [-12.4992, 8.6936], + [-12.5041, 8.6998], + [-12.506, 8.7036], + [-12.508499, 8.707899], + [-12.509799, 8.711099], + [-12.512299, 8.715399], + [-12.5136, 8.7185], + [-12.516099, 8.722799], + [-12.518299, 8.727099], + [-12.522599, 8.732499], + [-12.525599, 8.737799], + [-12.5282, 8.741099], + [-12.5372, 8.741299], + [-12.540099, 8.741], + [-12.542799, 8.740299], + [-12.5459, 8.738299], + [-12.5484, 8.735599], + [-12.552099, 8.7311], + [-12.555899, 8.73], + [-12.567399, 8.7299], + [-12.570999, 8.7296], + [-12.5731, 8.729099], + [-12.576975, 8.727403] + ] + ], + "type": "Polygon" + }, + "id": 532, + "properties": { + "cc:admin:id": ["93"], + "cc:oBld:total": 1904, + "cc:pop:fifteen-to-twenty-four": 1322.5613635372226, + "cc:pop:grid3-total": 8691.575388590905, + "cc:pop:kontur-total": 8700.92038993577, + "cc:pop:men": 3280.6847274090164, + "cc:pop:sixty-plus": 454.7637746098877, + "cc:pop:total": 7015.967486110379, + "cc:pop:under-five": 1116.520613368196, + "cc:pop:women": 3735.282758701364, + "cc:pop:women-fiften-to-forty-nine": 1818.2401272401705, + "cc:pop:wp-total": 5837.889901947791, + "cc:pop:wp-total-UN": 6777.458035712841, + "cc:id": "532", + "cc:Name": "St. John of God Catholic Hospital", + "cc:site": [-12.5252, 8.7034], + "user:parentName": "Marampa", + "user:code": "OU_255055", + "user:orgUnitId": "xWIyicUgscN", + "user:level": "4", + "user:parentId": "RWvG1aFrr0r" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [-12.4779, 7.540399], + [-12.477899, 7.5382], + [-12.4765, 7.536299], + [-12.4757, 7.5326], + [-12.4749, 7.531499], + [-12.474599, 7.5296], + [-12.473499, 7.5276], + [-12.4721, 7.526299], + [-12.472099, 7.5251], + [-12.471299, 7.523699], + [-12.469299, 7.5215], + [-12.4679, 7.521], + [-12.466299, 7.522399], + [-12.4643, 7.5224], + [-12.463999, 7.524], + [-12.4613, 7.527599], + [-12.4604, 7.5282], + [-12.460399, 7.530099], + [-12.4593, 7.5313], + [-12.459599, 7.5329], + [-12.458799, 7.534299], + [-12.4576, 7.5351], + [-12.4579, 7.538799], + [-12.4585, 7.539], + [-12.459, 7.541299], + [-12.4615, 7.543199], + [-12.4646, 7.5432], + [-12.466499, 7.543699], + [-12.4671, 7.544599], + [-12.470099, 7.544299], + [-12.471299, 7.5429], + [-12.472599, 7.542599], + [-12.473999, 7.5415], + [-12.476299, 7.541499], + [-12.4779, 7.540399] + ] + ], + [ + [ + [-12.477099, 7.5132], + [-12.475699, 7.5129], + [-12.4724, 7.512899], + [-12.4715, 7.5126], + [-12.471, 7.513999], + [-12.471, 7.516299], + [-12.4715, 7.5163], + [-12.4721, 7.519899], + [-12.4726, 7.5199], + [-12.4735, 7.521799], + [-12.4743, 7.522599], + [-12.475099, 7.522399], + [-12.4751, 7.521], + [-12.476299, 7.519899], + [-12.4763, 7.5182], + [-12.4768, 7.517099], + [-12.477099, 7.5132] + ] + ], + [ + [ + [-12.482599, 7.5474], + [-12.4813, 7.5454], + [-12.480699, 7.5437], + [-12.479899, 7.542899], + [-12.4785, 7.5426], + [-12.477899, 7.5435], + [-12.4751, 7.5437], + [-12.4738, 7.544599], + [-12.4724, 7.5446], + [-12.4726, 7.546499], + [-12.474299, 7.5468], + [-12.4749, 7.5476], + [-12.480099, 7.550099], + [-12.481, 7.550999], + [-12.482599, 7.550399], + [-12.482599, 7.5474] + ] + ], + [ + [ + [-12.478499, 7.5212], + [-12.477599, 7.5204], + [-12.4763, 7.5204], + [-12.476, 7.522399], + [-12.477099, 7.5226], + [-12.478199, 7.523999], + [-12.478499, 7.5212] + ] + ], + [ + [ + [-12.491499, 7.530699], + [-12.491199, 7.5285], + [-12.488999, 7.527099], + [-12.4851, 7.5229], + [-12.484599, 7.521], + [-12.4829, 7.521], + [-12.4824, 7.5221], + [-12.482899, 7.5237], + [-12.4829, 7.527099], + [-12.484899, 7.5285], + [-12.486799, 7.531499], + [-12.4868, 7.532599], + [-12.487899, 7.5335], + [-12.4879, 7.535399], + [-12.489299, 7.535099], + [-12.4899, 7.533199], + [-12.491499, 7.530699] + ] + ], + [ + [ + [-12.498999, 7.5154], + [-12.498199, 7.513799], + [-12.4957, 7.510699], + [-12.495399, 7.5082], + [-12.4949, 7.507399], + [-12.4949, 7.5026], + [-12.4943, 7.502399], + [-12.494299, 7.5007], + [-12.4921, 7.5013], + [-12.4912, 7.5021], + [-12.4912, 7.505099], + [-12.491499, 7.506499], + [-12.489599, 7.5063], + [-12.489, 7.5085], + [-12.489, 7.511799], + [-12.4896, 7.5121], + [-12.4921, 7.515699], + [-12.493199, 7.5143], + [-12.494899, 7.5143], + [-12.4949, 7.516299], + [-12.495399, 7.5168], + [-12.4954, 7.518499], + [-12.4971, 7.519899], + [-12.497899, 7.519899], + [-12.498799, 7.518499], + [-12.498999, 7.5154] + ] + ], + [ + [ + [-12.497399, 7.537899], + [-12.497399, 7.5351], + [-12.496199, 7.5324], + [-12.494, 7.5324], + [-12.493799, 7.534299], + [-12.4926, 7.5351], + [-12.4912, 7.5374], + [-12.4915, 7.542099], + [-12.492099, 7.5424], + [-12.4915, 7.544], + [-12.4921, 7.547399], + [-12.4938, 7.547399], + [-12.496199, 7.545999], + [-12.497099, 7.5446], + [-12.4968, 7.543199], + [-12.4968, 7.539], + [-12.497399, 7.537899] + ] + ], + [ + [ + [-12.554299, 7.534633], + [-12.553844, 7.534776], + [-12.553258, 7.533774], + [-12.55167, 7.533579], + [-12.54986, 7.533606], + [-12.549079, 7.533215], + [-12.548745, 7.53263], + [-12.548495, 7.531822], + [-12.54855, 7.530792], + [-12.548745, 7.530207], + [-12.549107, 7.529734], + [-12.549441, 7.529426], + [-12.549163, 7.528786], + [-12.547993, 7.528452], + [-12.545457, 7.528451], + [-12.545179, 7.528145], + [-12.545318, 7.527337], + [-12.545787, 7.526554], + [-12.543366, 7.522359], + [-12.541372, 7.522359], + [-12.541252, 7.523261], + [-12.540734, 7.523643], + [-12.540232, 7.523558], + [-12.540108, 7.52455], + [-12.540728, 7.524803], + [-12.540597, 7.525318], + [-12.544041, 7.529732], + [-12.54295, 7.530422], + [-12.539433, 7.525697], + [-12.538917, 7.525565], + [-12.538281, 7.524017], + [-12.538285, 7.523244], + [-12.537903, 7.522212], + [-12.536873, 7.521819], + [-12.536099, 7.521943], + [-12.536082, 7.521743], + [-12.53623, 7.521686], + [-12.536235, 7.520657], + [-12.535966, 7.520348], + [-12.534762, 7.520775], + [-12.530417, 7.512084], + [-12.530981, 7.511517], + [-12.530013, 7.50984], + [-12.522201, 7.509839], + [-12.518684, 7.50375], + [-12.51375, 7.50375], + [-12.512848, 7.503074], + [-12.510482, 7.503074], + [-12.506576, 7.509839], + [-12.507389, 7.511249], + [-12.506738, 7.511249], + [-12.506659, 7.511145], + [-12.506502, 7.510253], + [-12.506424, 7.508679], + [-12.506398, 7.507813], + [-12.506082, 7.506816], + [-12.504822, 7.506213], + [-12.502581, 7.506311], + [-12.501798, 7.506364], + [-12.501079, 7.506216], + [-12.500231, 7.505099], + [-12.499952, 7.504513], + [-12.499909, 7.503939], + [-12.500519, 7.502985], + [-12.501363, 7.502099], + [-12.502258, 7.501264], + [-12.502624, 7.500594], + [-12.502779, 7.500051], + [-12.502875, 7.49944], + [-12.502794, 7.498829], + [-12.502381, 7.498121], + [-12.50185, 7.497764], + [-12.501154, 7.497318], + [-12.500652, 7.496826], + [-12.500615, 7.496751], + [-12.500699, 7.497399], + [-12.4996, 7.497399], + [-12.498499, 7.4963], + [-12.4971, 7.4963], + [-12.496, 7.4971], + [-12.4951, 7.4993], + [-12.4951, 7.500399], + [-12.496199, 7.501], + [-12.4957, 7.5035], + [-12.4957, 7.507099], + [-12.496499, 7.5076], + [-12.4968, 7.509299], + [-12.497599, 7.510399], + [-12.4985, 7.5104], + [-12.499, 7.512399], + [-12.500399, 7.5138], + [-12.500399, 7.515399], + [-12.4996, 7.5171], + [-12.4996, 7.521199], + [-12.4999, 7.5226], + [-12.4999, 7.527399], + [-12.500699, 7.529], + [-12.5007, 7.532099], + [-12.501199, 7.533799], + [-12.503499, 7.5346], + [-12.5051, 7.537399], + [-12.5063, 7.5376], + [-12.5071, 7.538999], + [-12.5093, 7.5393], + [-12.510099, 7.5401], + [-12.5115, 7.542899], + [-12.5121, 7.5429], + [-12.5126, 7.545099], + [-12.5132, 7.5451], + [-12.5138, 7.547399], + [-12.515399, 7.549], + [-12.516299, 7.551499], + [-12.5163, 7.555399], + [-12.516, 7.556799], + [-12.516499, 7.5574], + [-12.5171, 7.559599], + [-12.518699, 7.5601], + [-12.5196, 7.560999], + [-12.5224, 7.561], + [-12.527399, 7.561799], + [-12.5282, 7.561299], + [-12.531, 7.560699], + [-12.534299, 7.5582], + [-12.5349, 7.5571], + [-12.535999, 7.556799], + [-12.536, 7.555999], + [-12.537099, 7.555399], + [-12.5374, 7.553198], + [-12.538199, 7.5515], + [-12.538999, 7.551299], + [-12.5393, 7.5496], + [-12.540399, 7.547899], + [-12.5404, 7.546799], + [-12.543199, 7.5435], + [-12.5471, 7.542599], + [-12.548999, 7.541799], + [-12.5493, 7.541299], + [-12.552099, 7.540699], + [-12.552899, 7.5399], + [-12.553499, 7.5374], + [-12.554299, 7.535699], + [-12.554299, 7.534633] + ] + ] + ], + "type": "MultiPolygon" + }, + "id": 533, + "properties": { + "cc:admin:id": ["18"], + "cc:oBld:total": 1228, + "cc:pop:fifteen-to-twenty-four": 2516.4286085738418, + "cc:pop:grid3-total": 9813.862753632859, + "cc:pop:kontur-total": 13121.642032849963, + "cc:pop:men": 6511.225320278122, + "cc:pop:sixty-plus": 1009.5145479837751, + "cc:pop:total": 13971.968612600556, + "cc:pop:under-five": 2331.9823362720317, + "cc:pop:women": 7460.743292322436, + "cc:pop:women-fiften-to-forty-nine": 3557.302701620382, + "cc:pop:wp-total": 11525.829420632108, + "cc:pop:wp-total-UN": 13365.391653550423, + "cc:id": "533", + "cc:Name": "St. Joseph's Clinic", + "cc:site": [-12.5019, 7.5309], + "user:parentName": "BMC", + "user:code": "OU_197443", + "user:orgUnitId": "vv1QJFONsT6", + "user:level": "4", + "user:parentId": "ENHOJz3UH5L" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.399182, 7.765085], + [-12.399144, 7.76451], + [-12.398622, 7.764013], + [-12.398737, 7.763713], + [-12.399113, 7.763451], + [-12.398421, 7.763545], + [-12.398405, 7.763412], + [-12.398992, 7.76317], + [-12.398529, 7.763247], + [-12.398501, 7.762844], + [-12.397499, 7.761339], + [-12.397234, 7.761289], + [-12.397334, 7.760991], + [-12.39688, 7.760057], + [-12.39665, 7.7586], + [-12.39638, 7.757658], + [-12.396323, 7.756719], + [-12.395326, 7.756431], + [-12.394405, 7.756969], + [-12.393981, 7.757441], + [-12.392083, 7.757917], + [-12.391303, 7.758384], + [-12.39119, 7.758552], + [-12.390192, 7.759724], + [-12.389344, 7.760298], + [-12.388495, 7.760249], + [-12.388319, 7.760175], + [-12.387916, 7.760416], + [-12.385417, 7.75875], + [-12.384942, 7.756857], + [-12.384299, 7.756554], + [-12.383494, 7.756456], + [-12.382378, 7.757353], + [-12.382048, 7.757882], + [-12.381986, 7.757916], + [-12.377876, 7.757916], + [-12.376969, 7.757208], + [-12.374777, 7.756808], + [-12.373994, 7.756436], + [-12.371982, 7.754942], + [-12.37012, 7.753923], + [-12.369509, 7.753328], + [-12.369109, 7.753612], + [-12.368246, 7.753059], + [-12.367894, 7.753186], + [-12.367077, 7.752966], + [-12.367189, 7.753269], + [-12.3662, 7.754375], + [-12.366402, 7.754673], + [-12.366143, 7.754928], + [-12.364595, 7.754919], + [-12.363042, 7.755553], + [-12.363304, 7.754783], + [-12.364597, 7.754403], + [-12.365116, 7.75402], + [-12.364738, 7.752731], + [-12.36474, 7.752216], + [-12.36458, 7.751891], + [-12.361148, 7.757836], + [-12.355686, 7.757836], + [-12.355416, 7.756528], + [-12.347083, 7.75375], + [-12.344582, 7.75125], + [-12.342083, 7.751249], + [-12.34125, 7.750417], + [-12.340498, 7.74065], + [-12.33848, 7.74076], + [-12.336116, 7.744917], + [-12.335524, 7.746607], + [-12.335479, 7.74676], + [-12.334582, 7.745417], + [-12.330417, 7.74375], + [-12.327917, 7.743749], + [-12.327563, 7.743045], + [-12.327404, 7.743309], + [-12.32729, 7.743749], + [-12.327083, 7.743749], + [-12.322916, 7.73875], + [-12.32125, 7.738749], + [-12.320417, 7.737916], + [-12.317916, 7.73125], + [-12.310416, 7.730417], + [-12.302083, 7.731249], + [-12.297082, 7.727916], + [-12.294582, 7.727084], + [-12.293749, 7.727083], + [-12.285417, 7.725417], + [-12.282917, 7.72625], + [-12.282358, 7.729598], + [-12.282136, 7.729364], + [-12.281539, 7.729729], + [-12.280635, 7.729863], + [-12.280287, 7.729287], + [-12.279171, 7.729152], + [-12.278632, 7.729229], + [-12.278151, 7.729517], + [-12.277687, 7.728824], + [-12.277361, 7.728998], + [-12.277578, 7.729583], + [-12.27711, 7.729583], + [-12.27712, 7.729233], + [-12.271461, 7.728021], + [-12.271461, 7.728019], + [-12.27163, 7.727961], + [-12.270949, 7.726828], + [-12.270259, 7.726453], + [-12.269353, 7.726925], + [-12.268771, 7.726345], + [-12.268228, 7.726049], + [-12.267958, 7.726177], + [-12.267513, 7.726213], + [-12.267688, 7.725412], + [-12.267602, 7.724568], + [-12.267275, 7.723961], + [-12.266578, 7.722766], + [-12.26573, 7.723547], + [-12.265457, 7.723818], + [-12.265119, 7.72419], + [-12.2654, 7.7245], + [-12.267399, 7.728299], + [-12.2693, 7.733899], + [-12.2695, 7.7337], + [-12.278699, 7.7386], + [-12.281699, 7.7423], + [-12.282699, 7.747399], + [-12.2805, 7.757899], + [-12.2802, 7.7618], + [-12.2806, 7.7658], + [-12.2827, 7.774], + [-12.2835, 7.7836], + [-12.2845, 7.787699], + [-12.287299, 7.791899], + [-12.2906, 7.7935], + [-12.291734, 7.793741], + [-12.292463, 7.793143], + [-12.293455, 7.792009], + [-12.293025, 7.791302], + [-12.292746, 7.7906], + [-12.293031, 7.789968], + [-12.293728, 7.790079], + [-12.294285, 7.790542], + [-12.29455, 7.790983], + [-12.295588, 7.790658], + [-12.296809, 7.790854], + [-12.296813, 7.79039], + [-12.29679, 7.789825], + [-12.296784, 7.789701], + [-12.296722, 7.788934], + [-12.296683, 7.788705], + [-12.296456, 7.787636], + [-12.296417, 7.787342], + [-12.296424, 7.786732], + [-12.296447, 7.78665], + [-12.296426, 7.786398], + [-12.296379, 7.785631], + [-12.297198, 7.785562], + [-12.297256, 7.786782], + [-12.297336, 7.787315], + [-12.298137, 7.78725], + [-12.300378, 7.787285], + [-12.301089, 7.787465], + [-12.302321, 7.786879], + [-12.302795, 7.786947], + [-12.303216, 7.787376], + [-12.303817, 7.789058], + [-12.306403, 7.788096], + [-12.308508, 7.787318], + [-12.310763, 7.786443], + [-12.310873, 7.786409], + [-12.311878, 7.786296], + [-12.31404, 7.789324], + [-12.31389, 7.789057], + [-12.313824, 7.788398], + [-12.314183, 7.788346], + [-12.314393, 7.788573], + [-12.314687, 7.78972], + [-12.315027, 7.789899], + [-12.315633, 7.789699], + [-12.315627, 7.790255], + [-12.315249, 7.790947], + [-12.315218, 7.790972], + [-12.315417, 7.791249], + [-12.316169, 7.79125], + [-12.316889, 7.794421], + [-12.317562, 7.795599], + [-12.319596, 7.798232], + [-12.3209, 7.7985], + [-12.327499, 7.801399], + [-12.3337, 7.8047], + [-12.339099, 7.806799], + [-12.342499, 7.806999], + [-12.3471, 7.804899], + [-12.3514, 7.800099], + [-12.3564, 7.7915], + [-12.360799, 7.7882], + [-12.3643, 7.786799], + [-12.376699, 7.784699], + [-12.380399, 7.782599], + [-12.3841, 7.778499], + [-12.3862, 7.774599], + [-12.3887, 7.7677], + [-12.390399, 7.7657], + [-12.394599, 7.7651], + [-12.398396, 7.766414], + [-12.398703, 7.765756], + [-12.399182, 7.765085] + ] + ], + "type": "Polygon" + }, + "id": 534, + "properties": { + "cc:admin:id": ["39"], + "cc:oBld:total": 266, + "cc:pop:fifteen-to-twenty-four": 2456.9589751596855, + "cc:pop:grid3-total": 22260.04806772953, + "cc:pop:kontur-total": 14083.239151565404, + "cc:pop:men": 6700.914300840221, + "cc:pop:sixty-plus": 938.6277751816317, + "cc:pop:total": 13532.365387260255, + "cc:pop:under-five": 2318.7763546733377, + "cc:pop:women": 6831.451086420025, + "cc:pop:women-fiften-to-forty-nine": 3267.1394257170723, + "cc:pop:wp-total": 10641.525791162749, + "cc:pop:wp-total-UN": 12329.390226182326, + "cc:id": "534", + "cc:Name": "St. Mary's Clinic", + "cc:site": [-12.2967, 7.7822], + "user:parentName": "Lower Banta", + "user:code": "OU_247017", + "user:orgUnitId": "M721NHGtdZV", + "user:level": "4", + "user:parentId": "W5fN3G6y1VI" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.744467, 8.473866], + [-10.738099, 8.470799], + [-10.7339, 8.4698], + [-10.730899, 8.4697], + [-10.7174, 8.4697], + [-10.7113, 8.470199], + [-10.708499, 8.4708], + [-10.704099, 8.4729], + [-10.7007, 8.473499], + [-10.6981, 8.473199], + [-10.695199, 8.471499], + [-10.6936, 8.468999], + [-10.693, 8.4667], + [-10.6929, 8.462799], + [-10.692999, 8.4498], + [-10.692599, 8.445999], + [-10.691299, 8.442599], + [-10.684899, 8.4335], + [-10.6735, 8.434599], + [-10.6689, 8.435499], + [-10.6587, 8.439699], + [-10.651899, 8.4446], + [-10.6518, 8.4451], + [-10.651999, 8.455899], + [-10.650299, 8.4614], + [-10.649599, 8.4763], + [-10.647699, 8.4784], + [-10.6424, 8.4797], + [-10.6394, 8.4832], + [-10.639899, 8.4871], + [-10.6396, 8.492599], + [-10.6382, 8.493699], + [-10.630599, 8.4907], + [-10.6295, 8.494599], + [-10.632899, 8.5043], + [-10.631099, 8.5123], + [-10.624, 8.531999], + [-10.623299, 8.536249], + [-10.62375, 8.536249], + [-10.625846, 8.5352], + [-10.626111, 8.534564], + [-10.626088, 8.532332], + [-10.626356, 8.531876], + [-10.627917, 8.532916], + [-10.632916, 8.532084], + [-10.63375, 8.536249], + [-10.637916, 8.53625], + [-10.642082, 8.537916], + [-10.642917, 8.535417], + [-10.648749, 8.535417], + [-10.650416, 8.536249], + [-10.651467, 8.534673], + [-10.651395, 8.534585], + [-10.651396, 8.534584], + [-10.657082, 8.534584], + [-10.658749, 8.537917], + [-10.65625, 8.544583], + [-10.666249, 8.542916], + [-10.669582, 8.537917], + [-10.672082, 8.537917], + [-10.67375, 8.545416], + [-10.677082, 8.547083], + [-10.678749, 8.544583], + [-10.67875, 8.535417], + [-10.686249, 8.536249], + [-10.684583, 8.527917], + [-10.687082, 8.524585], + [-10.687083, 8.524585], + [-10.690417, 8.531249], + [-10.696157, 8.525508], + [-10.696116, 8.525349], + [-10.69125, 8.522916], + [-10.69125, 8.514583], + [-10.697082, 8.512084], + [-10.699583, 8.515416], + [-10.709575, 8.515416], + [-10.709548, 8.514445], + [-10.709676, 8.513866], + [-10.710249, 8.512833], + [-10.710344, 8.512393], + [-10.709582, 8.511249], + [-10.706249, 8.507917], + [-10.702084, 8.507916], + [-10.706249, 8.503749], + [-10.70375, 8.497917], + [-10.70375, 8.497084], + [-10.707082, 8.497083], + [-10.707917, 8.496249], + [-10.710416, 8.494583], + [-10.71125, 8.489584], + [-10.712082, 8.48875], + [-10.715843, 8.489377], + [-10.716002, 8.489806], + [-10.716495, 8.49033], + [-10.716802, 8.491372], + [-10.722082, 8.484583], + [-10.722083, 8.48125], + [-10.72875, 8.481249], + [-10.732916, 8.479583], + [-10.73375, 8.477083], + [-10.742916, 8.475416], + [-10.744467, 8.473866] + ] + ], + "type": "Polygon" + }, + "id": 535, + "properties": { + "cc:admin:id": ["125"], + "cc:oBld:total": 1161, + "cc:pop:fifteen-to-twenty-four": 860.1387453408568, + "cc:pop:grid3-total": 6761.971652680304, + "cc:pop:kontur-total": 4667.025720960645, + "cc:pop:men": 1985.5083100080474, + "cc:pop:sixty-plus": 218.7643860142407, + "cc:pop:total": 4303.732458110401, + "cc:pop:under-five": 756.2760426165033, + "cc:pop:women": 2318.2241481023534, + "cc:pop:women-fiften-to-forty-nine": 1098.0918257063374, + "cc:pop:wp-total": 4348.378926707439, + "cc:pop:wp-total-UN": 5019.274229580538, + "cc:id": "535", + "cc:Name": "Sukudu Soa MCHP", + "cc:site": [-10.6806, 8.504], + "user:parentName": "Soa", + "user:code": "OU_233322", + "user:orgUnitId": "EoIjKXqXxi2", + "user:level": "4", + "user:parentId": "iGHlidSFdpu" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.614299, 6.9821], + [-11.612899, 6.9807], + [-11.6093, 6.979], + [-11.608499, 6.9779], + [-11.6062, 6.9768], + [-11.605399, 6.976799], + [-11.602099, 6.9751], + [-11.6007, 6.975099], + [-11.598799, 6.9735], + [-11.596, 6.9729], + [-11.595699, 6.9724], + [-11.5932, 6.9715], + [-11.591499, 6.9704], + [-11.590399, 6.970399], + [-11.588999, 6.9693], + [-11.5879, 6.969299], + [-11.587099, 6.9685], + [-11.5854, 6.9682], + [-11.585099, 6.9676], + [-11.581, 6.966499], + [-11.580099, 6.9657], + [-11.578999, 6.965699], + [-11.577399, 6.9646], + [-11.576499, 6.964599], + [-11.574899, 6.963499], + [-11.571799, 6.9621], + [-11.5696, 6.962399], + [-11.569, 6.962], + [-11.5598, 6.9695], + [-11.567099, 6.981899], + [-11.571629, 6.991881], + [-11.575416, 6.991249], + [-11.578091, 6.98523], + [-11.580015, 6.984647], + [-11.581227, 6.984104], + [-11.582569, 6.983106], + [-11.584067, 6.9815], + [-11.585664, 6.980262], + [-11.585883, 6.979584], + [-11.588749, 6.979583], + [-11.58875, 6.974584], + [-11.590611, 6.972101], + [-11.591901, 6.97281], + [-11.59734, 6.974962], + [-11.5971, 6.974], + [-11.598499, 6.974299], + [-11.6004, 6.975999], + [-11.602099, 6.9763], + [-11.6043, 6.977599], + [-11.605999, 6.977899], + [-11.606, 6.978999], + [-11.608199, 6.979899], + [-11.6088, 6.980699], + [-11.6107, 6.981799], + [-11.612599, 6.9821], + [-11.613999, 6.982899], + [-11.614299, 6.9821] + ] + ], + "type": "Polygon" + }, + "id": 536, + "properties": { + "cc:admin:id": ["64"], + "cc:oBld:total": 419, + "cc:pop:fifteen-to-twenty-four": 1177.9991074889638, + "cc:pop:grid3-total": 5299.604822111663, + "cc:pop:kontur-total": 6422.638485895904, + "cc:pop:men": 3058.138265571507, + "cc:pop:sixty-plus": 469.6020238792402, + "cc:pop:total": 6552.445832462727, + "cc:pop:under-five": 1088.0837834164327, + "cc:pop:women": 3494.307566891219, + "cc:pop:women-fiften-to-forty-nine": 1668.5804778732484, + "cc:pop:wp-total": 4532.453108737947, + "cc:pop:wp-total-UN": 5254.035753474136, + "cc:id": "536", + "cc:Name": "Sulima CHP", + "cc:site": [-11.5773, 6.9679], + "user:parentName": "Soro-Gbeima", + "user:code": "OU_260414", + "user:orgUnitId": "PfZXxl6Wp3F", + "user:level": "4", + "user:parentId": "d9iMR1MpuIO" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.34502, 8.776596], + [-11.342917, 8.769583], + [-11.342916, 8.767917], + [-11.33625, 8.770416], + [-11.329583, 8.767917], + [-11.329582, 8.767083], + [-11.328749, 8.767083], + [-11.325416, 8.767916], + [-11.320417, 8.76625], + [-11.313749, 8.772082], + [-11.309583, 8.772083], + [-11.307916, 8.772916], + [-11.303749, 8.772083], + [-11.300417, 8.772917], + [-11.300416, 8.77375], + [-11.297082, 8.774583], + [-11.296249, 8.774582], + [-11.292914, 8.771248], + [-11.289952, 8.772712], + [-11.289596, 8.772926], + [-11.292917, 8.775417], + [-11.292916, 8.777082], + [-11.290417, 8.777083], + [-11.290416, 8.782917], + [-11.28375, 8.784582], + [-11.280561, 8.78267], + [-11.280516, 8.782796], + [-11.27125, 8.782083], + [-11.272916, 8.792082], + [-11.271249, 8.796249], + [-11.264583, 8.79625], + [-11.263749, 8.797917], + [-11.250417, 8.797917], + [-11.250416, 8.800416], + [-11.240417, 8.800417], + [-11.237917, 8.802916], + [-11.245416, 8.812917], + [-11.244582, 8.813749], + [-11.232917, 8.812917], + [-11.23125, 8.816249], + [-11.230416, 8.81625], + [-11.227083, 8.81875], + [-11.22375, 8.82375], + [-11.224583, 8.826249], + [-11.227082, 8.827082], + [-11.22875, 8.82625], + [-11.232082, 8.832082], + [-11.227917, 8.832917], + [-11.22625, 8.837916], + [-11.22375, 8.839583], + [-11.224583, 8.843749], + [-11.227082, 8.84625], + [-11.228749, 8.85125], + [-11.225416, 8.854582], + [-11.21875, 8.854583], + [-11.213991, 8.855263], + [-11.217749, 8.861773], + [-11.217135, 8.862838], + [-11.217917, 8.862917], + [-11.221249, 8.867083], + [-11.22125, 8.881249], + [-11.222082, 8.887916], + [-11.21875, 8.892916], + [-11.227083, 8.903749], + [-11.23625, 8.900417], + [-11.238749, 8.902083], + [-11.239582, 8.905416], + [-11.231249, 8.909582], + [-11.229582, 8.909582], + [-11.22829, 8.90829], + [-11.228191, 8.907344], + [-11.228049, 8.90695], + [-11.22625, 8.908749], + [-11.22625, 8.910416], + [-11.227916, 8.91125], + [-11.227113, 8.918482], + [-11.2393, 8.918299], + [-11.243699, 8.918], + [-11.246499, 8.9174], + [-11.2578, 8.913799], + [-11.265099, 8.9101], + [-11.268, 8.907799], + [-11.2704, 8.904899], + [-11.2729, 8.900899], + [-11.276999, 8.8951], + [-11.2823, 8.885499], + [-11.2835, 8.881799], + [-11.2847, 8.873999], + [-11.287799, 8.8602], + [-11.2898, 8.854599], + [-11.2917, 8.851299], + [-11.296999, 8.8449], + [-11.299399, 8.8416], + [-11.299416, 8.84157], + [-11.3034, 8.834299], + [-11.315599, 8.8087], + [-11.319499, 8.8014], + [-11.3217, 8.798399], + [-11.325299, 8.7948], + [-11.3283, 8.792599], + [-11.3335, 8.789399], + [-11.339699, 8.784], + [-11.343299, 8.7799], + [-11.34502, 8.776596] + ] + ], + "type": "Polygon" + }, + "id": 537, + "properties": { + "cc:admin:id": ["119"], + "cc:oBld:total": 600, + "cc:pop:fifteen-to-twenty-four": 714.3856336529533, + "cc:pop:grid3-total": 3464.8513866221465, + "cc:pop:kontur-total": 3389.1226606448213, + "cc:pop:men": 1785.125812105027, + "cc:pop:sixty-plus": 181.79628950607957, + "cc:pop:total": 3595.8313086976573, + "cc:pop:under-five": 652.4910997108092, + "cc:pop:women": 1810.7054965926316, + "cc:pop:women-fiften-to-forty-nine": 815.0778419701315, + "cc:pop:wp-total": 2633.202980919268, + "cc:pop:wp-total-UN": 3040.6627413681135, + "cc:id": "537", + "cc:Name": "Sumbaria MCHP", + "cc:site": [-11.26109, 8.8685], + "user:parentName": "Nieni", + "user:code": "OU_226271", + "user:orgUnitId": "GvstqlRRnpV", + "user:level": "4", + "user:parentId": "J4GiUImJZoE" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.994499, 7.6004], + [-11.986599, 7.6017], + [-11.981, 7.601999], + [-11.9755, 7.6017], + [-11.9721, 7.6007], + [-11.968599, 7.598699], + [-11.9613, 7.5961], + [-11.954099, 7.5987], + [-11.9499, 7.601099], + [-11.946699, 7.6025], + [-11.9424, 7.604899], + [-11.939199, 7.6062], + [-11.935, 7.608599], + [-11.9318, 7.609999], + [-11.9275, 7.612299], + [-11.925362, 7.613235], + [-11.925302, 7.613348], + [-11.928749, 7.615417], + [-11.929582, 7.617916], + [-11.928749, 7.619584], + [-11.927083, 7.626249], + [-11.92618, 7.627153], + [-11.926776, 7.627321], + [-11.925417, 7.632083], + [-11.932369, 7.631451], + [-11.92888, 7.637497], + [-11.932354, 7.643514], + [-11.933365, 7.643592], + [-11.933366, 7.643593], + [-11.932069, 7.64584], + [-11.92625, 7.64875], + [-11.92375, 7.65125], + [-11.923274, 7.653154], + [-11.925344, 7.653886], + [-11.928563, 7.65606], + [-11.926712, 7.657637], + [-11.924668, 7.658805], + [-11.923392, 7.660446], + [-11.936249, 7.661249], + [-11.939582, 7.66125], + [-11.942916, 7.664583], + [-11.944583, 7.667083], + [-11.947082, 7.667916], + [-11.947083, 7.669583], + [-11.948793, 7.671293], + [-11.9513, 7.6667], + [-11.954899, 7.6639], + [-11.956999, 7.6617], + [-11.958999, 7.6581], + [-11.961399, 7.6555], + [-11.966199, 7.6529], + [-11.969099, 7.6506], + [-11.971099, 7.6486], + [-11.972499, 7.6463], + [-11.972899, 7.643], + [-11.9718, 7.64], + [-11.9683, 7.637599], + [-11.9664, 7.6352], + [-11.966, 7.6322], + [-11.9674, 7.629399], + [-11.969899, 7.6267], + [-11.9722, 7.6251], + [-11.976099, 7.6243], + [-11.979699, 7.624699], + [-11.9845, 7.627], + [-11.993299, 7.630099], + [-11.993499, 7.6107], + [-11.994499, 7.6004] + ] + ], + "type": "Polygon" + }, + "id": 538, + "properties": { + "cc:admin:id": ["78"], + "cc:oBld:total": 436, + "cc:pop:fifteen-to-twenty-four": 2378.1780261675735, + "cc:pop:grid3-total": 4530.554219054965, + "cc:pop:kontur-total": 11897.688066949991, + "cc:pop:men": 6838.954034452718, + "cc:pop:sixty-plus": 914.4179404873132, + "cc:pop:total": 13231.426238456643, + "cc:pop:under-five": 2179.1364013184743, + "cc:pop:women": 6392.472204003929, + "cc:pop:women-fiften-to-forty-nine": 3048.446079976962, + "cc:pop:wp-total": 8608.914124108858, + "cc:pop:wp-total-UN": 9981.532271183372, + "cc:id": "538", + "cc:Name": "Sumbuya CHC", + "cc:site": [-11.9641, 7.6524], + "user:parentName": "Lugbu", + "user:code": "OU_1050", + "user:orgUnitId": "W2KnxOMvmgE", + "user:level": "4", + "user:parentId": "kU8vhUkAGaT" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.96171, 8.461893], + [-12.961525, 8.461715], + [-12.960763, 8.461717], + [-12.960337, 8.461691], + [-12.960114, 8.461629], + [-12.959852, 8.461478], + [-12.959789, 8.461181], + [-12.959652, 8.460773], + [-12.959502, 8.46052], + [-12.959313, 8.460285], + [-12.95913, 8.46011], + [-12.958909, 8.460017], + [-12.958462, 8.460062], + [-12.958312, 8.460169], + [-12.958191, 8.460413], + [-12.957932, 8.460839], + [-12.957812, 8.461219], + [-12.957555, 8.461746], + [-12.956644, 8.46249], + [-12.956209, 8.463963], + [-12.956165, 8.464482], + [-12.956069, 8.465047], + [-12.955839, 8.4654], + [-12.955447, 8.46585], + [-12.954924, 8.466198], + [-12.954466, 8.466744], + [-12.953669, 8.467277], + [-12.953104, 8.467807], + [-12.952527, 8.468315], + [-12.951871, 8.467959], + [-12.951118, 8.4678], + [-12.950646, 8.467761], + [-12.950142, 8.467771], + [-12.950018, 8.467662], + [-12.949967, 8.467371], + [-12.94996, 8.466774], + [-12.950184, 8.465976], + [-12.950337, 8.465652], + [-12.950578, 8.464501], + [-12.950554, 8.463032], + [-12.950853, 8.461951], + [-12.951378, 8.461315], + [-12.951078, 8.461182], + [-12.950761, 8.461564], + [-12.94942, 8.462407], + [-12.948506, 8.462574], + [-12.947491, 8.462234], + [-12.946646, 8.461692], + [-12.945796, 8.461605], + [-12.944561, 8.458759], + [-12.944431, 8.455924], + [-12.9436, 8.455775], + [-12.943122, 8.456253], + [-12.942463, 8.456528], + [-12.942184, 8.456481], + [-12.941545, 8.45594], + [-12.939733, 8.455324], + [-12.939342, 8.45477], + [-12.940416, 8.452084], + [-12.93875, 8.449583], + [-12.940416, 8.445417], + [-12.942916, 8.443749], + [-12.943749, 8.44125], + [-12.940417, 8.439584], + [-12.939436, 8.438112], + [-12.939346, 8.43833], + [-12.938185, 8.440517], + [-12.938184, 8.440517], + [-12.937981, 8.440027], + [-12.937807, 8.43847], + [-12.935893, 8.436011], + [-12.935859, 8.435982], + [-12.936188, 8.43536], + [-12.936639, 8.434952], + [-12.937234, 8.434692], + [-12.938173, 8.434777], + [-12.939626, 8.435445], + [-12.940184, 8.435921], + [-12.940228, 8.435793], + [-12.940702, 8.434071], + [-12.940628, 8.432641], + [-12.941765, 8.429449], + [-12.942255, 8.425539], + [-12.943022, 8.424401], + [-12.943327, 8.424152], + [-12.944389, 8.422978], + [-12.944862, 8.421848], + [-12.945281, 8.420214], + [-12.947982, 8.413797], + [-12.94666, 8.413727], + [-12.945284, 8.413199], + [-12.942286, 8.413162], + [-12.941572, 8.41281], + [-12.941054, 8.412333], + [-12.940375, 8.41221], + [-12.940037, 8.412226], + [-12.939733, 8.412315], + [-12.939054, 8.411556], + [-12.937758, 8.411011], + [-12.937761, 8.410881], + [-12.937633, 8.409448], + [-12.937267, 8.408441], + [-12.937418, 8.406472], + [-12.937327, 8.404478], + [-12.936114, 8.404685], + [-12.935074, 8.404413], + [-12.934699, 8.403978], + [-12.933627, 8.403592], + [-12.933367, 8.403125], + [-12.933349, 8.402724], + [-12.933008, 8.402626], + [-12.932065, 8.401453], + [-12.931464, 8.399956], + [-12.931555, 8.398658], + [-12.932544, 8.398145], + [-12.933958, 8.397321], + [-12.93419, 8.3969], + [-12.934552, 8.396305], + [-12.937804, 8.394739], + [-12.937627, 8.394548], + [-12.938278, 8.39424], + [-12.937082, 8.39125], + [-12.93625, 8.390417], + [-12.93375, 8.389584], + [-12.932916, 8.387917], + [-12.93125, 8.387084], + [-12.930418, 8.387915], + [-12.930416, 8.387915], + [-12.929582, 8.382917], + [-12.926998, 8.379685], + [-12.927962, 8.377848], + [-12.923699, 8.377099], + [-12.916899, 8.374499], + [-12.9129, 8.3721], + [-12.9105, 8.3701], + [-12.9089, 8.3669], + [-12.909, 8.363099], + [-12.9104, 8.358899], + [-12.913299, 8.352799], + [-12.913699, 8.3496], + [-12.912999, 8.346299], + [-12.9105, 8.3411], + [-12.9089, 8.3367], + [-12.9069, 8.3276], + [-12.9046, 8.3203], + [-12.903999, 8.314299], + [-12.903799, 8.3035], + [-12.896199, 8.2961], + [-12.8917, 8.299799], + [-12.8867, 8.302299], + [-12.877, 8.3044], + [-12.8746, 8.306], + [-12.872699, 8.3084], + [-12.870999, 8.3115], + [-12.8689, 8.319199], + [-12.8667, 8.324799], + [-12.8603, 8.334799], + [-12.858399, 8.3371], + [-12.8551, 8.339699], + [-12.850258, 8.342196], + [-12.851391, 8.342683], + [-12.852903, 8.343711], + [-12.85361, 8.344434], + [-12.854403, 8.345271], + [-12.855294, 8.346315], + [-12.856007, 8.347436], + [-12.856185, 8.348403], + [-12.856033, 8.349167], + [-12.855829, 8.349626], + [-12.855345, 8.350288], + [-12.854608, 8.351407], + [-12.854099, 8.352425], + [-12.853284, 8.352883], + [-12.852723, 8.353036], + [-12.851705, 8.352781], + [-12.850508, 8.352552], + [-12.849108, 8.35207], + [-12.847913, 8.352121], + [-12.846996, 8.352451], + [-12.846079, 8.352935], + [-12.845112, 8.353622], + [-12.843609, 8.355277], + [-12.842414, 8.356346], + [-12.841523, 8.357033], + [-12.840427, 8.357085], + [-12.839359, 8.357314], + [-12.838391, 8.357874], + [-12.83801, 8.358434], + [-12.837806, 8.359299], + [-12.837831, 8.360164], + [-12.839078, 8.361946], + [-12.839943, 8.363245], + [-12.840555, 8.364569], + [-12.841064, 8.366275], + [-12.841191, 8.369049], + [-12.841013, 8.370729], + [-12.840326, 8.372002], + [-12.839179, 8.372995], + [-12.837577, 8.373581], + [-12.837396, 8.373646], + [-12.837587, 8.374603], + [-12.838639, 8.374631], + [-12.839855, 8.372667], + [-12.841288, 8.37087], + [-12.841831, 8.366237], + [-12.841789, 8.365938], + [-12.84179, 8.365937], + [-12.844583, 8.372917], + [-12.849582, 8.382916], + [-12.847916, 8.384583], + [-12.842917, 8.385417], + [-12.837083, 8.392916], + [-12.837082, 8.394584], + [-12.836788, 8.394804], + [-12.836701, 8.394805], + [-12.836635, 8.394918], + [-12.83375, 8.397084], + [-12.834583, 8.402916], + [-12.845417, 8.407084], + [-12.853749, 8.407083], + [-12.857454, 8.40412], + [-12.857712, 8.404569], + [-12.853807, 8.411334], + [-12.857713, 8.4181], + [-12.862056, 8.418101], + [-12.862056, 8.418102], + [-12.860431, 8.418715], + [-12.859793, 8.419795], + [-12.860018, 8.420259], + [-12.860469, 8.422785], + [-12.860779, 8.423513], + [-12.862814, 8.424361], + [-12.864728, 8.424505], + [-12.866867, 8.42505], + [-12.868342, 8.42584], + [-12.868955, 8.426692], + [-12.869531, 8.42757], + [-12.869332, 8.427802], + [-12.86938, 8.427937], + [-12.869886, 8.428318], + [-12.870958, 8.428721], + [-12.872197, 8.42962], + [-12.873868, 8.431486], + [-12.874423, 8.432172], + [-12.875116, 8.433374], + [-12.877856, 8.436068], + [-12.878422, 8.436432], + [-12.878124, 8.436999], + [-12.876331, 8.440373], + [-12.876634, 8.440754], + [-12.875119, 8.444512], + [-12.874835, 8.445222], + [-12.875115, 8.445413], + [-12.876744, 8.44567], + [-12.878755, 8.446441], + [-12.880386, 8.446521], + [-12.883033, 8.446112], + [-12.884237, 8.447092], + [-12.884257, 8.448155], + [-12.883323, 8.447784], + [-12.882339, 8.448041], + [-12.882917, 8.452083], + [-12.885416, 8.452917], + [-12.88625, 8.454583], + [-12.887082, 8.454584], + [-12.887083, 8.455416], + [-12.896249, 8.458749], + [-12.896249, 8.453857], + [-12.89606, 8.453447], + [-12.894931, 8.452237], + [-12.894055, 8.450924], + [-12.893654, 8.448609], + [-12.893722, 8.44778], + [-12.902082, 8.447084], + [-12.907083, 8.451249], + [-12.91125, 8.45125], + [-12.915417, 8.455417], + [-12.916647, 8.459726], + [-12.916587, 8.459762], + [-12.917083, 8.461249], + [-12.921721, 8.460735], + [-12.921906, 8.461087], + [-12.921628, 8.461908], + [-12.921783, 8.462104], + [-12.923177, 8.462127], + [-12.925291, 8.463204], + [-12.925339, 8.463914], + [-12.924888, 8.464519], + [-12.924428, 8.46576], + [-12.924733, 8.465765], + [-12.925351, 8.4654], + [-12.926036, 8.4654], + [-12.926921, 8.466078], + [-12.926526, 8.464095], + [-12.926198, 8.463521], + [-12.926814, 8.462788], + [-12.927206, 8.462891], + [-12.927298, 8.463177], + [-12.927715, 8.463234], + [-12.928059, 8.463065], + [-12.928214, 8.462497], + [-12.928028, 8.461686], + [-12.928124, 8.461277], + [-12.928591, 8.460933], + [-12.929609, 8.460667], + [-12.931068, 8.461022], + [-12.931315, 8.461016], + [-12.935416, 8.463749], + [-12.934583, 8.469583], + [-12.940416, 8.472084], + [-12.939583, 8.48125], + [-12.941954, 8.48362], + [-12.942478, 8.483391], + [-12.942581, 8.483048], + [-12.944918, 8.483414], + [-12.94838, 8.479952], + [-12.948969, 8.48022], + [-12.948863, 8.482529], + [-12.948976, 8.482808], + [-12.948552, 8.483569], + [-12.948283, 8.483874], + [-12.947792, 8.484447], + [-12.94741, 8.485278], + [-12.947408, 8.486184], + [-12.947894, 8.487375], + [-12.948473, 8.487868], + [-12.94887, 8.488681], + [-12.949204, 8.489046], + [-12.949814, 8.490008], + [-12.950187, 8.490801], + [-12.950423, 8.491538], + [-12.950568, 8.492279], + [-12.95049, 8.492948], + [-12.950327, 8.493743], + [-12.950297, 8.495744], + [-12.950446, 8.496241], + [-12.950757, 8.496851], + [-12.951662, 8.498075], + [-12.952532, 8.499196], + [-12.9515, 8.4976], + [-12.95267, 8.49693], + [-12.952255, 8.496467], + [-12.951876, 8.49621], + [-12.951585, 8.496042], + [-12.951465, 8.495794], + [-12.951584, 8.494141], + [-12.951649, 8.492698], + [-12.951563, 8.491894], + [-12.951383, 8.491204], + [-12.95117, 8.490444], + [-12.950882, 8.489628], + [-12.950377, 8.488652], + [-12.949903, 8.488071], + [-12.949308, 8.487496], + [-12.948734, 8.486926], + [-12.948493, 8.486594], + [-12.948485, 8.48612], + [-12.948502, 8.485834], + [-12.948842, 8.485487], + [-12.949407, 8.484445], + [-12.949952, 8.483287], + [-12.950198, 8.482467], + [-12.950627, 8.481408], + [-12.950926, 8.480516], + [-12.951067, 8.479949], + [-12.951161, 8.479612], + [-12.951236, 8.479148], + [-12.951108, 8.478453], + [-12.95108, 8.478007], + [-12.950751, 8.477346], + [-12.950794, 8.477134], + [-12.951953, 8.476776], + [-12.952609, 8.476812], + [-12.95314, 8.476728], + [-12.953642, 8.476511], + [-12.95412, 8.476181], + [-12.954434, 8.475756], + [-12.954732, 8.475191], + [-12.954843, 8.474657], + [-12.954832, 8.474122], + [-12.954782, 8.473531], + [-12.954571, 8.472831], + [-12.95416, 8.472152], + [-12.953934, 8.471765], + [-12.953612, 8.471546], + [-12.953366, 8.471297], + [-12.953221, 8.469207], + [-12.953223, 8.469137], + [-12.953205, 8.468987], + [-12.953205, 8.468833], + [-12.953374, 8.468426], + [-12.953624, 8.468024], + [-12.954042, 8.467684], + [-12.955106, 8.466753], + [-12.955777, 8.466133], + [-12.956244, 8.465556], + [-12.956595, 8.464976], + [-12.956706, 8.464699], + [-12.956777, 8.464013], + [-12.956703, 8.463349], + [-12.956843, 8.462819], + [-12.957084, 8.462527], + [-12.957325, 8.462418], + [-12.957691, 8.462104], + [-12.957986, 8.46167], + [-12.958153, 8.461336], + [-12.958346, 8.460768], + [-12.958455, 8.460465], + [-12.95865, 8.460394], + [-12.95888, 8.460414], + [-12.959042, 8.460529], + [-12.959257, 8.460842], + [-12.959342, 8.461079], + [-12.959393, 8.461515], + [-12.959619, 8.461956], + [-12.960136, 8.462123], + [-12.960693, 8.462063], + [-12.961008, 8.462004], + [-12.961315, 8.461989], + [-12.961635, 8.46208], + [-12.96171, 8.461893] + ] + ], + "type": "Polygon" + }, + "id": 539, + "properties": { + "cc:admin:id": ["62"], + "cc:oBld:total": 424, + "cc:pop:fifteen-to-twenty-four": 2048.3888800257555, + "cc:pop:grid3-total": 7685.599098820303, + "cc:pop:kontur-total": 10871.841985145553, + "cc:pop:men": 5245.230660096679, + "cc:pop:sixty-plus": 685.7120747515363, + "cc:pop:total": 11219.99950571961, + "cc:pop:under-five": 1856.2335814212772, + "cc:pop:women": 5974.768845622927, + "cc:pop:women-fiften-to-forty-nine": 2991.828697924629, + "cc:pop:wp-total": 9328.120742272384, + "cc:pop:wp-total-UN": 10818.817845414438, + "cc:id": "539", + "cc:Name": "Sumbuya MCHP", + "cc:site": [-12.8979, 8.4205], + "user:parentName": "Koya", + "user:code": "OU_254972", + "user:orgUnitId": "pUZIL5xBsve", + "user:level": "4", + "user:parentId": "pRHGAROvuyI" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.251065, 8.3681], + [-13.235952, 8.350405], + [-13.23346, 8.353177], + [-13.233459, 8.353177], + [-13.234023, 8.344572], + [-13.201518, 8.334317], + [-13.200135, 8.330412], + [-13.199851, 8.330593], + [-13.199006, 8.330764], + [-13.197209, 8.332032], + [-13.196331, 8.332885], + [-13.196026, 8.333708], + [-13.195289, 8.337904], + [-13.194846, 8.338497], + [-13.194228, 8.338681], + [-13.192907, 8.33846], + [-13.192444, 8.338581], + [-13.192321, 8.339077], + [-13.191612, 8.338552], + [-13.191288, 8.338685], + [-13.191413, 8.339052], + [-13.191055, 8.339078], + [-13.191157, 8.339336], + [-13.19191, 8.339733], + [-13.191493, 8.339942], + [-13.191071, 8.339912], + [-13.190531, 8.338928], + [-13.189426, 8.338757], + [-13.188645, 8.33907], + [-13.18767, 8.340565], + [-13.187892, 8.341964], + [-13.187834, 8.34329], + [-13.18727, 8.345019], + [-13.187127, 8.345289], + [-13.18786, 8.346559], + [-13.195672, 8.34656], + [-13.199577, 8.353326], + [-13.19912, 8.354119], + [-13.198749, 8.35375], + [-13.193779, 8.354372], + [-13.195797, 8.356116], + [-13.196589, 8.357299], + [-13.19387, 8.362008], + [-13.18625, 8.362008], + [-13.18625, 8.359394], + [-13.186235, 8.359394], + [-13.182329, 8.366159], + [-13.186235, 8.372924], + [-13.194047, 8.372925], + [-13.197953, 8.37969], + [-13.194047, 8.386457], + [-13.197954, 8.393222], + [-13.205765, 8.393222], + [-13.209671, 8.386457], + [-13.217484, 8.386456], + [-13.221073, 8.380241], + [-13.22125, 8.380417], + [-13.222916, 8.380416], + [-13.225581, 8.378086], + [-13.230478, 8.378085], + [-13.234235, 8.371579], + [-13.235335, 8.372538], + [-13.235404, 8.372485], + [-13.235471, 8.372425], + [-13.237554, 8.371211], + [-13.236766, 8.370119], + [-13.236931, 8.369736], + [-13.236786, 8.369382], + [-13.236346, 8.369456], + [-13.235736, 8.369522], + [-13.234734, 8.370531], + [-13.2342, 8.371337], + [-13.233714, 8.370958], + [-13.234014, 8.370602], + [-13.235776, 8.36755], + [-13.242916, 8.36755], + [-13.242917, 8.368749], + [-13.245417, 8.37125], + [-13.247916, 8.371249], + [-13.251065, 8.3681] + ] + ], + "type": "Polygon" + }, + "id": 541, + "properties": { + "cc:admin:id": ["112"], + "cc:oBld:total": 957, + "cc:pop:fifteen-to-twenty-four": 3696.2783861082557, + "cc:pop:grid3-total": 5817.8258664833365, + "cc:pop:kontur-total": 15042.026389063523, + "cc:pop:men": 8236.483225418488, + "cc:pop:sixty-plus": 1320.5242558219747, + "cc:pop:total": 16346.942607899144, + "cc:pop:under-five": 1900.1388948294148, + "cc:pop:women": 8110.459382480657, + "cc:pop:women-fiften-to-forty-nine": 4327.431697372647, + "cc:pop:wp-total": 11043.812842096717, + "cc:pop:wp-total-UN": 12807.786943834742, + "cc:id": "541", + "cc:Name": "Sussex MCHP", + "cc:site": [-13.231, 8.3472], + "user:parentName": "Rural Western Area", + "user:code": "OU_278393", + "user:orgUnitId": "wcHRDp21Lw1", + "user:level": "4", + "user:parentId": "qtr8GGlm4gg" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.009399, 8.601699], + [-11.009169, 8.590581], + [-11.007289, 8.592083], + [-11.007215, 8.592011], + [-11.00714, 8.591175], + [-11.006509, 8.590468], + [-11.006556, 8.589852], + [-11.005903, 8.588828], + [-11.005746, 8.5878], + [-11.004749, 8.586728], + [-11.003901, 8.586367], + [-11.002631, 8.586118], + [-11.001853, 8.586171], + [-11.000813, 8.585854], + [-11.000416, 8.58625], + [-10.999582, 8.587917], + [-10.98875, 8.587917], + [-10.988361, 8.587141], + [-10.987166, 8.587556], + [-10.986615, 8.588746], + [-10.986583, 8.589785], + [-10.986282, 8.59018], + [-10.986194, 8.59044], + [-10.980417, 8.592916], + [-10.978749, 8.589584], + [-10.976249, 8.588749], + [-10.967917, 8.587084], + [-10.967083, 8.587917], + [-10.966723, 8.589173], + [-10.962357, 8.589173], + [-10.961865, 8.587479], + [-10.961667, 8.58606], + [-10.962171, 8.584382], + [-10.962798, 8.583485], + [-10.963232, 8.581461], + [-10.962916, 8.581249], + [-10.957917, 8.579584], + [-10.952916, 8.593749], + [-10.95125, 8.592916], + [-10.951249, 8.58125], + [-10.950416, 8.58125], + [-10.94625, 8.585417], + [-10.946249, 8.587917], + [-10.944741, 8.588419], + [-10.944648, 8.588208], + [-10.937083, 8.589583], + [-10.934582, 8.591249], + [-10.929583, 8.589584], + [-10.929582, 8.58875], + [-10.928749, 8.588749], + [-10.920417, 8.587083], + [-10.920416, 8.577917], + [-10.909583, 8.577917], + [-10.907916, 8.580416], + [-10.901055, 8.579731], + [-10.9012, 8.5806], + [-10.9035, 8.5865], + [-10.9041, 8.5902], + [-10.904499, 8.595999], + [-10.905299, 8.599699], + [-10.9075, 8.6051], + [-10.9082, 8.6099], + [-10.908299, 8.619999], + [-10.9088, 8.6244], + [-10.9096, 8.6266], + [-10.913399, 8.632899], + [-10.9151, 8.6361], + [-10.9184, 8.639499], + [-10.9218, 8.640899], + [-10.925399, 8.640899], + [-10.927799, 8.6401], + [-10.931399, 8.6381], + [-10.9345, 8.636699], + [-10.938699, 8.6342], + [-10.9419, 8.632899], + [-10.9454, 8.630999], + [-10.948799, 8.6301], + [-10.958799, 8.6295], + [-10.961399, 8.6288], + [-10.968699, 8.6249], + [-10.974499, 8.6204], + [-10.9765, 8.619399], + [-10.9796, 8.6188], + [-10.989199, 8.6188], + [-10.9932, 8.618199], + [-10.9958, 8.616799], + [-10.9976, 8.614599], + [-10.9999, 8.610099], + [-11.0023, 8.607199], + [-11.005, 8.604699], + [-11.009399, 8.601699] + ] + ], + "type": "Polygon" + }, + "id": 542, + "properties": { + "cc:admin:id": ["133"], + "cc:oBld:total": 4592, + "cc:pop:fifteen-to-twenty-four": 2120.3669183930647, + "cc:pop:grid3-total": 14115.11579158857, + "cc:pop:kontur-total": 9349.966378291374, + "cc:pop:men": 5357.941769346547, + "cc:pop:sixty-plus": 569.9959944936427, + "cc:pop:total": 10525.468302014795, + "cc:pop:under-five": 1620.7375814767938, + "cc:pop:women": 5167.526532668243, + "cc:pop:women-fiften-to-forty-nine": 2610.5500312845115, + "cc:pop:wp-total": 8064.086843488912, + "cc:pop:wp-total-UN": 9348.068426864389, + "cc:id": "542", + "cc:Name": "Swarray Town MCHP", + "cc:site": [-10.9621, 8.6228], + "user:parentName": "Tankoro", + "user:code": "OU_233329", + "user:orgUnitId": "fzBpuujglTY", + "user:level": "4", + "user:parentId": "M2qEv692lS6" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.263699, 7.458999], + [-12.261099, 7.454899], + [-12.2583, 7.4516], + [-12.2554, 7.4489], + [-12.253099, 7.447199], + [-12.250699, 7.445999], + [-12.246399, 7.444399], + [-12.2449, 7.442799], + [-12.2432, 7.4385], + [-12.2414, 7.436], + [-12.2383, 7.433399], + [-12.2371, 7.430699], + [-12.236799, 7.426899], + [-12.236699, 7.4206], + [-12.235399, 7.416899], + [-12.233499, 7.4158], + [-12.2314, 7.4154], + [-12.2258, 7.4152], + [-12.2221, 7.4146], + [-12.2175, 7.4127], + [-12.214599, 7.412099], + [-12.208599, 7.4118], + [-12.1941, 7.411899], + [-12.191099, 7.411799], + [-12.187299, 7.410899], + [-12.1814, 7.4079], + [-12.1786, 7.4056], + [-12.178269, 7.405088], + [-12.177873, 7.40574], + [-12.177388, 7.405824], + [-12.176779, 7.405073], + [-12.176512, 7.405921], + [-12.176575, 7.406235], + [-12.172917, 7.410417], + [-12.172916, 7.412084], + [-12.170417, 7.413749], + [-12.162917, 7.413749], + [-12.160833, 7.411668], + [-12.154925, 7.411668], + [-12.152918, 7.415144], + [-12.152917, 7.415143], + [-12.152916, 7.41125], + [-12.14875, 7.407084], + [-12.142883, 7.413601], + [-12.139297, 7.407392], + [-12.134304, 7.407392], + [-12.133749, 7.416249], + [-12.124583, 7.41125], + [-12.124973, 7.412421], + [-12.121798, 7.41792], + [-12.122438, 7.41903], + [-12.117779, 7.421885], + [-12.11757, 7.421845], + [-12.117616, 7.42209], + [-12.117476, 7.422907], + [-12.115417, 7.422083], + [-12.114582, 7.417917], + [-12.107917, 7.417917], + [-12.10375, 7.41875], + [-12.09875, 7.422084], + [-12.097916, 7.427916], + [-12.088749, 7.42875], + [-12.087917, 7.429584], + [-12.087082, 7.434583], + [-12.082916, 7.437916], + [-12.072083, 7.437083], + [-12.070416, 7.42625], + [-12.061249, 7.419584], + [-12.057917, 7.419584], + [-12.053749, 7.42125], + [-12.044583, 7.422084], + [-12.04125, 7.42625], + [-12.04125, 7.433847], + [-12.040733, 7.43474], + [-12.037083, 7.43474], + [-12.037082, 7.432084], + [-12.032082, 7.427084], + [-12.02125, 7.427084], + [-12.013322, 7.427804], + [-12.014599, 7.430199], + [-12.015199, 7.432399], + [-12.015999, 7.438299], + [-12.0168, 7.440699], + [-12.0212, 7.444599], + [-12.0237, 7.4453], + [-12.0271, 7.4454], + [-12.030499, 7.446299], + [-12.034999, 7.448299], + [-12.0409, 7.4498], + [-12.0468, 7.4522], + [-12.050999, 7.452799], + [-12.053999, 7.452899], + [-12.076299, 7.4527], + [-12.079999, 7.4532], + [-12.082599, 7.4544], + [-12.085199, 7.457399], + [-12.0878, 7.459299], + [-12.0944, 7.4614], + [-12.097699, 7.4645], + [-12.099299, 7.467299], + [-12.100799, 7.469199], + [-12.1027, 7.4708], + [-12.1094, 7.4741], + [-12.1128, 7.4749], + [-12.118099, 7.475399], + [-12.121399, 7.4764], + [-12.1242, 7.479], + [-12.127899, 7.486699], + [-12.1299, 7.4936], + [-12.1322, 7.4964], + [-12.1352, 7.4987], + [-12.139099, 7.504499], + [-12.1414, 7.5092], + [-12.143999, 7.512399], + [-12.1472, 7.5152], + [-12.152099, 7.518199], + [-12.1536, 7.514399], + [-12.1559, 7.5102], + [-12.159999, 7.5071], + [-12.1632, 7.504299], + [-12.1647, 7.502399], + [-12.1674, 7.497099], + [-12.169499, 7.4944], + [-12.1729, 7.490799], + [-12.1769, 7.487499], + [-12.1809, 7.485599], + [-12.1852, 7.483299], + [-12.1883, 7.481899], + [-12.192599, 7.4796], + [-12.1958, 7.478199], + [-12.200099, 7.4758], + [-12.2033, 7.474499], + [-12.2075, 7.472099], + [-12.2107, 7.470699], + [-12.2151, 7.468499], + [-12.221, 7.467099], + [-12.2275, 7.464599], + [-12.233299, 7.4638], + [-12.236699, 7.4631], + [-12.2421, 7.460899], + [-12.2469, 7.460299], + [-12.254899, 7.4602], + [-12.259199, 7.4599], + [-12.263699, 7.458999] + ] + ], + "type": "Polygon" + }, + "id": 543, + "properties": { + "cc:admin:id": ["147"], + "cc:oBld:total": 10, + "cc:pop:fifteen-to-twenty-four": 887.4709742228522, + "cc:pop:grid3-total": 10085.138653183212, + "cc:pop:kontur-total": 5026.706267589544, + "cc:pop:men": 2420.3624115766092, + "cc:pop:sixty-plus": 336.85884126439976, + "cc:pop:total": 4887.339538644468, + "cc:pop:under-five": 827.9488260296032, + "cc:pop:women": 2466.9771270678602, + "cc:pop:women-fiften-to-forty-nine": 1207.6987484924935, + "cc:pop:wp-total": 4155.474887100596, + "cc:pop:wp-total-UN": 4831.079767381186, + "cc:id": "543", + "cc:Name": "Talia CHC", + "cc:site": [-12.1298, 7.4386], + "user:parentName": "Yawbeko", + "user:code": "OU_197437", + "user:orgUnitId": "s5aXfzOL456", + "user:level": "4", + "user:parentId": "CG4QD1HC3h4" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.558385, 7.482082], + [-11.556929, 7.48133], + [-11.554887, 7.479936], + [-11.552631, 7.477799], + [-11.552572, 7.477716], + [-11.546249, 7.477083], + [-11.542916, 7.473749], + [-11.542082, 7.470416], + [-11.540417, 7.466249], + [-11.542082, 7.459584], + [-11.542082, 7.45875], + [-11.539065, 7.448941], + [-11.538995, 7.448947], + [-11.536249, 7.442084], + [-11.52875, 7.442084], + [-11.524583, 7.445417], + [-11.523749, 7.452083], + [-11.517084, 7.452083], + [-11.517084, 7.452082], + [-11.520416, 7.447916], + [-11.520416, 7.43875], + [-11.512916, 7.43125], + [-11.504868, 7.43125], + [-11.5033, 7.434699], + [-11.5029, 7.4373], + [-11.5032, 7.440699], + [-11.505399, 7.445999], + [-11.5062, 7.4497], + [-11.506399, 7.454499], + [-11.5061, 7.458299], + [-11.5047, 7.464199], + [-11.5062, 7.4701], + [-11.506699, 7.4757], + [-11.5066, 7.482599], + [-11.505999, 7.4862], + [-11.504, 7.490599], + [-11.5031, 7.493999], + [-11.507799, 7.494], + [-11.511399, 7.4938], + [-11.514099, 7.4932], + [-11.519299, 7.4909], + [-11.5244, 7.489699], + [-11.529499, 7.4872], + [-11.5327, 7.485799], + [-11.536299, 7.4839], + [-11.5383, 7.483199], + [-11.5416, 7.4829], + [-11.554299, 7.4829], + [-11.558385, 7.482082] + ] + ], + "type": "Polygon" + }, + "id": 544, + "properties": { + "cc:admin:id": ["27"], + "cc:oBld:total": 4, + "cc:pop:fifteen-to-twenty-four": 366.6058524830267, + "cc:pop:grid3-total": 1068.2709697153339, + "cc:pop:kontur-total": 1886.2782082850395, + "cc:pop:men": 980.7448746027187, + "cc:pop:sixty-plus": 138.46472311436625, + "cc:pop:total": 2031.178373082299, + "cc:pop:under-five": 338.68110077164476, + "cc:pop:women": 1050.4334984795803, + "cc:pop:women-fiften-to-forty-nine": 502.07057559739303, + "cc:pop:wp-total": 2193.356418035371, + "cc:pop:wp-total-UN": 2542.624891934692, + "cc:id": "544", + "cc:Name": "Tambeyama MCHP", + "cc:site": [-11.5141, 7.4722], + "user:parentName": "Barri", + "user:code": "OU_260432", + "user:orgUnitId": "dU3vTbLRLHy", + "user:level": "4", + "user:parentId": "RzKeCma9qb1" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.187751, 9.023707], + [-12.186213, 9.023542], + [-12.186184, 9.02354], + [-12.186108, 9.023906], + [-12.185528, 9.024785], + [-12.182901, 9.026936], + [-12.181511, 9.027685], + [-12.180522, 9.028236], + [-12.180055, 9.028493], + [-12.178549, 9.029516], + [-12.177098, 9.031132], + [-12.175257, 9.03242], + [-12.174582, 9.032082], + [-12.172083, 9.027083], + [-12.172083, 9.026249], + [-12.177082, 9.017916], + [-12.177083, 9.017082], + [-12.177916, 9.012083], + [-12.178749, 9.00875], + [-12.172083, 9.005417], + [-12.17125, 9.005416], + [-12.171249, 9.004583], + [-12.168097, 9.003322], + [-12.168912, 9.00182], + [-12.165555, 9.00236], + [-12.164583, 9.000418], + [-12.164584, 9.000417], + [-12.166249, 9.000416], + [-12.168749, 8.997916], + [-12.167917, 8.996249], + [-12.167916, 8.984583], + [-12.166249, 8.984582], + [-12.163023, 8.983938], + [-12.163023, 8.983325], + [-12.162566, 8.981035], + [-12.162606, 8.98019], + [-12.166249, 8.979582], + [-12.169582, 8.975416], + [-12.167083, 8.969582], + [-12.167082, 8.963693], + [-12.166495, 8.963547], + [-12.165555, 8.963647], + [-12.163995, 8.964086], + [-12.162797, 8.964077], + [-12.157916, 8.960417], + [-12.155417, 8.960416], + [-12.155416, 8.958796], + [-12.154583, 8.958684], + [-12.154583, 8.955417], + [-12.158749, 8.949583], + [-12.152083, 8.94625], + [-12.151639, 8.94492], + [-12.150799, 8.9466], + [-12.147299, 8.9507], + [-12.145099, 8.9524], + [-12.138399, 8.9558], + [-12.134999, 8.957], + [-12.130099, 8.9573], + [-12.119082, 8.9573], + [-12.11993, 8.957892], + [-12.117916, 8.96125], + [-12.107083, 8.962917], + [-12.106684, 8.964909], + [-12.103993, 8.966866], + [-12.103635, 8.966952], + [-12.103273, 8.967859], + [-12.103586, 8.968061], + [-12.102916, 8.972082], + [-12.096249, 8.969583], + [-12.092917, 8.972083], + [-12.097042, 8.980337], + [-12.095899, 8.980313], + [-12.09352, 8.979223], + [-12.092254, 8.977917], + [-12.08625, 8.977917], + [-12.086249, 8.98125], + [-12.07875, 8.982917], + [-12.079582, 8.984583], + [-12.078308, 8.988409], + [-12.078306, 8.98841], + [-12.078118, 8.988345], + [-12.077083, 8.990416], + [-12.07375, 8.989583], + [-12.072083, 8.992082], + [-12.075415, 8.995415], + [-12.075415, 8.995417], + [-12.071626, 8.99668], + [-12.071612, 8.996651], + [-12.062083, 8.999583], + [-12.062917, 9.002916], + [-12.065416, 9.004583], + [-12.065416, 9.012083], + [-12.063749, 9.012917], + [-12.058087, 9.012917], + [-12.058079, 9.013439], + [-12.057509, 9.019054], + [-12.057421, 9.01948], + [-12.047917, 9.01875], + [-12.047693, 9.018862], + [-12.048099, 9.022799], + [-12.048032, 9.025531], + [-12.05375, 9.031249], + [-12.05425, 9.031499], + [-12.055485, 9.030357], + [-12.05965, 9.033926], + [-12.059406, 9.034221], + [-12.057586, 9.035701], + [-12.056369, 9.036917], + [-12.055715, 9.038157], + [-12.055666, 9.038569], + [-12.059583, 9.037916], + [-12.063749, 9.03625], + [-12.06375, 9.038749], + [-12.06625, 9.042916], + [-12.073749, 9.039583], + [-12.07375, 9.042082], + [-12.075417, 9.043749], + [-12.077916, 9.044583], + [-12.07875, 9.046249], + [-12.080416, 9.047916], + [-12.083749, 9.044583], + [-12.085417, 9.047082], + [-12.09125, 9.04625], + [-12.094517, 9.049517], + [-12.093849, 9.050366], + [-12.093842, 9.050909], + [-12.093311, 9.052353], + [-12.093215, 9.052375], + [-12.093518, 9.054091], + [-12.093326, 9.055628], + [-12.095417, 9.054583], + [-12.100416, 9.064582], + [-12.100417, 9.067082], + [-12.104582, 9.071249], + [-12.10625, 9.070417], + [-12.109583, 9.072082], + [-12.11125, 9.072083], + [-12.11375, 9.073749], + [-12.120416, 9.072917], + [-12.12441, 9.076111], + [-12.125718, 9.073849], + [-12.129229, 9.073848], + [-12.130417, 9.067916], + [-12.139582, 9.06625], + [-12.142082, 9.067082], + [-12.142916, 9.067082], + [-12.142917, 9.060417], + [-12.145416, 9.059582], + [-12.14625, 9.05875], + [-12.147916, 9.057916], + [-12.147917, 9.054583], + [-12.150416, 9.054582], + [-12.152082, 9.052916], + [-12.152917, 9.046249], + [-12.155417, 9.045417], + [-12.157158, 9.045417], + [-12.157159, 9.045418], + [-12.156929, 9.046249], + [-12.162082, 9.046249], + [-12.164582, 9.042082], + [-12.164583, 9.040416], + [-12.16625, 9.03875], + [-12.167917, 9.037916], + [-12.170813, 9.035599], + [-12.170522, 9.03484], + [-12.172964, 9.034009], + [-12.173287, 9.034527], + [-12.173628, 9.034696], + [-12.174447, 9.034592], + [-12.174863, 9.034733], + [-12.174878, 9.034088], + [-12.175468, 9.033004], + [-12.176278, 9.032453], + [-12.177376, 9.032744], + [-12.178044, 9.032111], + [-12.178972, 9.031803], + [-12.181764, 9.031518], + [-12.182446, 9.03114], + [-12.182683, 9.030791], + [-12.182615, 9.029899], + [-12.183641, 9.028645], + [-12.184214, 9.028349], + [-12.18459, 9.027518], + [-12.185439, 9.027358], + [-12.185402, 9.027063], + [-12.186021, 9.026685], + [-12.186243, 9.026103], + [-12.186174, 9.025522], + [-12.185693, 9.025181], + [-12.185815, 9.024736], + [-12.186167, 9.024516], + [-12.186771, 9.02444], + [-12.186986, 9.024107], + [-12.187751, 9.023707] + ] + ], + "type": "Polygon" + }, + "id": 545, + "properties": { + "cc:admin:id": ["32"], + "cc:oBld:total": 419, + "cc:pop:fifteen-to-twenty-four": 2286.503108082002, + "cc:pop:grid3-total": 11946.003254467894, + "cc:pop:kontur-total": 12001.14238231996, + "cc:pop:men": 5644.765823801143, + "cc:pop:sixty-plus": 829.2553941723371, + "cc:pop:total": 11925.731458089082, + "cc:pop:under-five": 1864.4846488961596, + "cc:pop:women": 6280.965634287938, + "cc:pop:women-fiften-to-forty-nine": 3070.5386639975977, + "cc:pop:wp-total": 9693.157122504703, + "cc:pop:wp-total-UN": 11223.76696325374, + "cc:id": "545", + "cc:Name": "Tambiama CHC", + "cc:site": [-12.1103, 8.9948], + "user:parentName": "Gbendembu Ngowahun", + "user:code": "OU_193280", + "user:orgUnitId": "agEKP19IUKI", + "user:level": "4", + "user:parentId": "BXJdOLvUrZB" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.438749, 7.412916], + [-11.433699, 7.406423], + [-11.433729, 7.406352], + [-11.42875, 7.402084], + [-11.428749, 7.400417], + [-11.424583, 7.397917], + [-11.427916, 7.39125], + [-11.422083, 7.385417], + [-11.419583, 7.384584], + [-11.419582, 7.383749], + [-11.416249, 7.37875], + [-11.411177, 7.378116], + [-11.411012, 7.378945], + [-11.410207, 7.380267], + [-11.406897, 7.379795], + [-11.406891, 7.380098], + [-11.40706, 7.38082], + [-11.406086, 7.382954], + [-11.406029, 7.383537], + [-11.40629, 7.384087], + [-11.406272, 7.384623], + [-11.405708, 7.384942], + [-11.405265, 7.385566], + [-11.404326, 7.387526], + [-11.40358, 7.388041], + [-11.402769, 7.389469], + [-11.400938, 7.391371], + [-11.399616, 7.393896], + [-11.398316, 7.395712], + [-11.398542, 7.395885], + [-11.398542, 7.395886], + [-11.398018, 7.396475], + [-11.397611, 7.396672], + [-11.396759, 7.396534], + [-11.395287, 7.397284], + [-11.394783, 7.39816], + [-11.393687, 7.398903], + [-11.392525, 7.399455], + [-11.391371, 7.40108], + [-11.391539, 7.401115], + [-11.391539, 7.401117], + [-11.390945, 7.401738], + [-11.390985, 7.402532], + [-11.390462, 7.402958], + [-11.390153, 7.402837], + [-11.389979, 7.403041], + [-11.388413, 7.405247], + [-11.386926, 7.404505], + [-11.386866, 7.404328], + [-11.386312, 7.404134], + [-11.38626, 7.403966], + [-11.385875, 7.403979], + [-11.383351, 7.402718], + [-11.381188, 7.403351], + [-11.377619, 7.402753], + [-11.37587, 7.403215], + [-11.374353, 7.404395], + [-11.370063, 7.409019], + [-11.367334, 7.41228], + [-11.366891, 7.412672], + [-11.366192, 7.412673], + [-11.365446, 7.413597], + [-11.366401, 7.41399], + [-11.366261, 7.414314], + [-11.36533, 7.414315], + [-11.364111, 7.4155], + [-11.363094, 7.415002], + [-11.362264, 7.414295], + [-11.36101, 7.413961], + [-11.359804, 7.414532], + [-11.359575, 7.414833], + [-11.357134, 7.415018], + [-11.355493, 7.415419], + [-11.357199, 7.422799], + [-11.356999, 7.4262], + [-11.354199, 7.4389], + [-11.352699, 7.441999], + [-11.35, 7.4445], + [-11.3513, 7.4528], + [-11.354, 7.4627], + [-11.354599, 7.466899], + [-11.354999, 7.472599], + [-11.355059, 7.476925], + [-11.355809, 7.476695], + [-11.357144, 7.475662], + [-11.357339, 7.475149], + [-11.35717, 7.474741], + [-11.357477, 7.47438], + [-11.357299, 7.474344], + [-11.357056, 7.474562], + [-11.356857, 7.474207], + [-11.357529, 7.473667], + [-11.359465, 7.47303], + [-11.359466, 7.472876], + [-11.361345, 7.47252], + [-11.360452, 7.472347], + [-11.360555, 7.472021], + [-11.361797, 7.471756], + [-11.363131, 7.471726], + [-11.363912, 7.472489], + [-11.363451, 7.471625], + [-11.36386, 7.471584], + [-11.365083, 7.472632], + [-11.365472, 7.472509], + [-11.364754, 7.471472], + [-11.36261, 7.471115], + [-11.363419, 7.470383], + [-11.363122, 7.470188], + [-11.363419, 7.469629], + [-11.363665, 7.469923], + [-11.363841, 7.469567], + [-11.364548, 7.469476], + [-11.365349, 7.469659], + [-11.365966, 7.470351], + [-11.366377, 7.47026], + [-11.366757, 7.470962], + [-11.36688, 7.47079], + [-11.367404, 7.471328], + [-11.367721, 7.471145], + [-11.367625, 7.471046], + [-11.367626, 7.471045], + [-11.371111, 7.471044], + [-11.375015, 7.464285], + [-11.375385, 7.464892], + [-11.375724, 7.465015], + [-11.37692, 7.466497], + [-11.378527, 7.469597], + [-11.379451, 7.470992], + [-11.381833, 7.475089], + [-11.382763, 7.476428], + [-11.383517, 7.478061], + [-11.38387, 7.478749], + [-11.392916, 7.478749], + [-11.39375, 7.470417], + [-11.397916, 7.469583], + [-11.39875, 7.465417], + [-11.401506, 7.464234], + [-11.401971, 7.463432], + [-11.403381, 7.463431], + [-11.404582, 7.462916], + [-11.409582, 7.457916], + [-11.409582, 7.450417], + [-11.407917, 7.447917], + [-11.410416, 7.447916], + [-11.412916, 7.445417], + [-11.416249, 7.444583], + [-11.421249, 7.435417], + [-11.422917, 7.430417], + [-11.42625, 7.429584], + [-11.430995, 7.432972], + [-11.433546, 7.431424], + [-11.43693, 7.428898], + [-11.430209, 7.423123], + [-11.430694, 7.418776], + [-11.438749, 7.412916] + ] + ], + "type": "Polygon" + }, + "id": 546, + "properties": { + "cc:admin:id": ["5"], + "cc:oBld:total": 42, + "cc:pop:fifteen-to-twenty-four": 887.6597790702243, + "cc:pop:grid3-total": 2482.954446520049, + "cc:pop:kontur-total": 4744.791055627316, + "cc:pop:men": 2374.083446958805, + "cc:pop:sixty-plus": 369.64827500859195, + "cc:pop:total": 4887.400466422958, + "cc:pop:under-five": 831.8930946480466, + "cc:pop:women": 2513.3170194641543, + "cc:pop:women-fiften-to-forty-nine": 1189.4419093073216, + "cc:pop:wp-total": 5076.370715119164, + "cc:pop:wp-total-UN": 5886.885702115506, + "cc:id": "546", + "cc:Name": "Taninahun MCHP", + "cc:site": [-11.4078, 7.4116], + "user:parentName": "Barri", + "user:code": "OU_260429", + "user:orgUnitId": "Fhko00f3hXT", + "user:level": "4", + "user:parentId": "RzKeCma9qb1" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.265799, 7.972499], + [-12.265299, 7.967999], + [-12.264999, 7.9592], + [-12.2522, 7.9592], + [-12.2493, 7.959399], + [-12.2466, 7.960099], + [-12.2413, 7.962299], + [-12.2362, 7.963599], + [-12.2311, 7.966099], + [-12.227899, 7.9674], + [-12.222999, 7.9697], + [-12.218, 7.970499], + [-12.2131, 7.970599], + [-12.2073, 7.9705], + [-12.20339, 7.969963], + [-12.201951, 7.971995], + [-12.19375, 7.97125], + [-12.192082, 7.972916], + [-12.187546, 7.972917], + [-12.188206, 7.974062], + [-12.184301, 7.980827], + [-12.187189, 7.985832], + [-12.182083, 7.98875], + [-12.185639, 7.993727], + [-12.186475, 7.993656], + [-12.187082, 7.997917], + [-12.18375, 8.00125], + [-12.185416, 8.010416], + [-12.175417, 8.00875], + [-12.175417, 8.009584], + [-12.177917, 8.017083], + [-12.186248, 8.019584], + [-12.181249, 8.023749], + [-12.175417, 8.025417], + [-12.175417, 8.026249], + [-12.178749, 8.027917], + [-12.18125, 8.031249], + [-12.182083, 8.03125], + [-12.189582, 8.036249], + [-12.182083, 8.044584], + [-12.182917, 8.047083], + [-12.189582, 8.047084], + [-12.191249, 8.047916], + [-12.194582, 8.053749], + [-12.194088, 8.055232], + [-12.192834, 8.054918], + [-12.19109, 8.05366], + [-12.190389, 8.053663], + [-12.189687, 8.054103], + [-12.18887, 8.05496], + [-12.187951, 8.055514], + [-12.187848, 8.055759], + [-12.187996, 8.056273], + [-12.187954, 8.056951], + [-12.188393, 8.057839], + [-12.188476, 8.058358], + [-12.191, 8.056999], + [-12.193999, 8.0562], + [-12.1985, 8.0561], + [-12.202, 8.0568], + [-12.207299, 8.059199], + [-12.213199, 8.060599], + [-12.217699, 8.062699], + [-12.221199, 8.063499], + [-12.223799, 8.0615], + [-12.2257, 8.060599], + [-12.2278, 8.060099], + [-12.234799, 8.059199], + [-12.237299, 8.058], + [-12.243899, 8.0532], + [-12.2477, 8.051399], + [-12.253799, 8.047399], + [-12.2578, 8.040899], + [-12.2591, 8.037799], + [-12.261399, 8.0335], + [-12.2628, 8.030299], + [-12.264599, 8.0268], + [-12.2656, 8.023399], + [-12.265799, 8.019699], + [-12.2655, 8.0152], + [-12.2648, 8.0117], + [-12.262699, 8.007199], + [-12.261999, 8.004699], + [-12.261399, 7.999399], + [-12.260699, 7.996899], + [-12.2583, 7.9917], + [-12.2577, 7.988099], + [-12.257799, 7.9845], + [-12.2584, 7.981899], + [-12.2599, 7.979499], + [-12.2625, 7.976699], + [-12.265799, 7.972499] + ] + ], + "type": "Polygon" + }, + "id": 547, + "properties": { + "cc:admin:id": ["16"], + "cc:oBld:total": 2, + "cc:pop:fifteen-to-twenty-four": 564.63809148153, + "cc:pop:grid3-total": 4654.385315777973, + "cc:pop:kontur-total": 3266.839001481017, + "cc:pop:men": 1505.2148010165865, + "cc:pop:sixty-plus": 205.45121137090655, + "cc:pop:total": 3177.294434497412, + "cc:pop:under-five": 508.7777786932903, + "cc:pop:women": 1672.0796334808258, + "cc:pop:women-fiften-to-forty-nine": 827.9996072730495, + "cc:pop:wp-total": 3171.4460999370644, + "cc:pop:wp-total-UN": 3682.4476560960084, + "cc:id": "547", + "cc:Name": "Taninihun Kapuima MCHP", + "cc:site": [-12.2309, 8.0043], + "user:parentName": "Dasse", + "user:code": "OU_247022", + "user:orgUnitId": "iHQVo7h7KOQ", + "user:level": "4", + "user:parentId": "RndxKqQGzUl" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.596684, 8.135922], + [-12.5965, 8.1159], + [-12.596399, 8.112999], + [-12.5959, 8.1098], + [-12.5952, 8.1076], + [-12.5933, 8.104], + [-12.5919, 8.1009], + [-12.5894, 8.0966], + [-12.587999, 8.093499], + [-12.583999, 8.088499], + [-12.578799, 8.083999], + [-12.572699, 8.080599], + [-12.5681, 8.0768], + [-12.5643, 8.0728], + [-12.562799, 8.070599], + [-12.561399, 8.067399], + [-12.5592, 8.0631], + [-12.558299, 8.0597], + [-12.5509, 8.0596], + [-12.5474, 8.0589], + [-12.542899, 8.056899], + [-12.5361, 8.0551], + [-12.530799, 8.052899], + [-12.5249, 8.0514], + [-12.5195, 8.0491], + [-12.5157, 8.0486], + [-12.513647, 8.048529], + [-12.512917, 8.058749], + [-12.512965, 8.058799], + [-12.512965, 8.0588], + [-12.512113, 8.058719], + [-12.510562, 8.057934], + [-12.510283, 8.05797], + [-12.509431, 8.057551], + [-12.508804, 8.057429], + [-12.50875, 8.057436], + [-12.50875, 8.061271], + [-12.508521, 8.061668], + [-12.500708, 8.061669], + [-12.496801, 8.068434], + [-12.489562, 8.068435], + [-12.489583, 8.068749], + [-12.490418, 8.069419], + [-12.489844, 8.070415], + [-12.49375, 8.07718], + [-12.497817, 8.077181], + [-12.49375, 8.08125], + [-12.494474, 8.090666], + [-12.494394, 8.09076], + [-12.492221, 8.091657], + [-12.491218, 8.09171], + [-12.488825, 8.091316], + [-12.489582, 8.100416], + [-12.484583, 8.105416], + [-12.477473, 8.104909], + [-12.480188, 8.10961], + [-12.488, 8.109611], + [-12.491906, 8.116376], + [-12.488, 8.123143], + [-12.491439, 8.129098], + [-12.492917, 8.127917], + [-12.500417, 8.127917], + [-12.508749, 8.128749], + [-12.511249, 8.131249], + [-12.511786, 8.133932], + [-12.51125, 8.134539], + [-12.510541, 8.136089], + [-12.509908, 8.136322], + [-12.50941, 8.136307], + [-12.508321, 8.137395], + [-12.507917, 8.137583], + [-12.507917, 8.14187], + [-12.507994, 8.141887], + [-12.508632, 8.141554], + [-12.509382, 8.141506], + [-12.510675, 8.141362], + [-12.511185, 8.14106], + [-12.513239, 8.14116], + [-12.514098, 8.140391], + [-12.514972, 8.14004], + [-12.515007, 8.140082], + [-12.517525, 8.135723], + [-12.525338, 8.135723], + [-12.529243, 8.142489], + [-12.525338, 8.149255], + [-12.529244, 8.15602], + [-12.537055, 8.156021], + [-12.538675, 8.158824], + [-12.540417, 8.157084], + [-12.54625, 8.162917], + [-12.547082, 8.165417], + [-12.54375, 8.175416], + [-12.552916, 8.176249], + [-12.555477, 8.173689], + [-12.556176, 8.174815], + [-12.557522, 8.176596], + [-12.557917, 8.175416], + [-12.562083, 8.172084], + [-12.571249, 8.172084], + [-12.575417, 8.176249], + [-12.582916, 8.177917], + [-12.586478, 8.182903], + [-12.58699, 8.182727], + [-12.587794, 8.18202], + [-12.589531, 8.17939], + [-12.593137, 8.17625], + [-12.593099, 8.175399], + [-12.592499, 8.172599], + [-12.590199, 8.167299], + [-12.5895, 8.163599], + [-12.5895, 8.1597], + [-12.5904, 8.156099], + [-12.5923, 8.152499], + [-12.5959, 8.144999], + [-12.5965, 8.142299], + [-12.596699, 8.1375], + [-12.596684, 8.135922] + ] + ], + "type": "Polygon" + }, + "id": 548, + "properties": { + "cc:admin:id": ["59"], + "cc:oBld:total": 23, + "cc:pop:fifteen-to-twenty-four": 389.1870535147647, + "cc:pop:grid3-total": 2597.8743684701267, + "cc:pop:kontur-total": 2177.69913863628, + "cc:pop:men": 1101.4264997170174, + "cc:pop:sixty-plus": 168.49407140947656, + "cc:pop:total": 2242.7868697475533, + "cc:pop:under-five": 366.1993088052801, + "cc:pop:women": 1141.3603700305364, + "cc:pop:women-fiften-to-forty-nine": 550.681225215731, + "cc:pop:wp-total": 1792.663778495292, + "cc:pop:wp-total-UN": 2079.4489209044827, + "cc:id": "548", + "cc:Name": "Taninihun Mboka MCHP", + "cc:site": [-12.5411, 8.1075], + "user:parentName": "Kongbora", + "user:code": "OU_247081", + "user:orgUnitId": "Cc9kMNFpGmC", + "user:level": "4", + "user:parentId": "Jiyc4ekaMMh" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.059876, 7.767916], + [-11.056028, 7.76125], + [-11.059769, 7.754769], + [-11.057916, 7.754583], + [-11.056291, 7.75052], + [-11.056199, 7.7518], + [-11.055399, 7.7546], + [-11.053, 7.757499], + [-11.05, 7.7597], + [-11.047399, 7.7634], + [-11.040499, 7.7709], + [-11.038999, 7.773], + [-11.037099, 7.7769], + [-11.035099, 7.7798], + [-11.0309, 7.783399], + [-11.0255, 7.786399], + [-11.021199, 7.7898], + [-11.0172, 7.791699], + [-11.0138, 7.792399], + [-11.011399, 7.7932], + [-11.0035, 7.797099], + [-10.9943, 7.804], + [-10.995799, 7.812199], + [-10.998599, 7.818799], + [-11.003099, 7.824899], + [-11.0062, 7.8299], + [-11.0106, 7.8361], + [-11.0137, 7.8425], + [-11.017, 7.8512], + [-11.020799, 7.858699], + [-11.0242, 7.8645], + [-11.028, 7.871599], + [-11.0329, 7.868799], + [-11.041099, 7.8658], + [-11.046499, 7.8658], + [-11.047082, 7.866], + [-11.047083, 7.860416], + [-11.047933, 7.859566], + [-11.049582, 7.859619], + [-11.049583, 7.857917], + [-11.052082, 7.855416], + [-11.052083, 7.853749], + [-11.055416, 7.851249], + [-11.055416, 7.842917], + [-11.054582, 7.842083], + [-11.049582, 7.83375], + [-11.046189, 7.833325], + [-11.042316, 7.826616], + [-11.04352, 7.82453], + [-11.040416, 7.825416], + [-11.037916, 7.814584], + [-11.03625, 7.813749], + [-11.037083, 7.812084], + [-11.037273, 7.812084], + [-11.037392, 7.812219], + [-11.037485, 7.812504], + [-11.03875, 7.812084], + [-11.041249, 7.812083], + [-11.042916, 7.809584], + [-11.039583, 7.80875], + [-11.039027, 7.807917], + [-11.038819, 7.807948], + [-11.038781, 7.807947], + [-11.03875, 7.807916], + [-11.039583, 7.802916], + [-11.045416, 7.797084], + [-11.045446, 7.797098], + [-11.041856, 7.790877], + [-11.045761, 7.784112], + [-11.046234, 7.784111], + [-11.046059, 7.78375], + [-11.048749, 7.783749], + [-11.052082, 7.780417], + [-11.053749, 7.780416], + [-11.056249, 7.777916], + [-11.057082, 7.77125], + [-11.057083, 7.767917], + [-11.059876, 7.767916] + ] + ], + "type": "Polygon" + }, + "id": 549, + "properties": { + "cc:admin:id": ["15"], + "cc:oBld:total": 762, + "cc:pop:fifteen-to-twenty-four": 881.9366100786002, + "cc:pop:grid3-total": 3437.185674149887, + "cc:pop:kontur-total": 5482.88508578156, + "cc:pop:men": 2147.2892655945125, + "cc:pop:sixty-plus": 284.1133062506047, + "cc:pop:total": 4489.550626152689, + "cc:pop:under-five": 725.0816112899047, + "cc:pop:women": 2342.2613605581773, + "cc:pop:women-fiften-to-forty-nine": 1195.7826694685918, + "cc:pop:wp-total": 4178.846353793875, + "cc:pop:wp-total-UN": 4842.937435017192, + "cc:id": "549", + "cc:Name": "Tawahun MCHP", + "cc:site": [-11.0292, 7.8633], + "user:parentName": "Dama", + "user:code": "OU_222742", + "user:orgUnitId": "GHPuYdLcVN5", + "user:level": "4", + "user:parentId": "myQ4q1W6B4y" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.358657, 8.697175], + [-11.358199, 8.694299], + [-11.3536, 8.6835], + [-11.351499, 8.677999], + [-11.3498, 8.6723], + [-11.349199, 8.668399], + [-11.349, 8.663199], + [-11.3496, 8.657999], + [-11.3514, 8.652199], + [-11.354599, 8.6455], + [-11.3479, 8.6448], + [-11.342899, 8.6446], + [-11.336, 8.644799], + [-11.3323, 8.645499], + [-11.327899, 8.6475], + [-11.321099, 8.6492], + [-11.3168, 8.651399], + [-11.313599, 8.6527], + [-11.3053, 8.656999], + [-11.303199, 8.6586], + [-11.3006, 8.661299], + [-11.2991, 8.663599], + [-11.297799, 8.6667], + [-11.295499, 8.6711], + [-11.2942, 8.674299], + [-11.292799, 8.6766], + [-11.289799, 8.679899], + [-11.2869, 8.681199], + [-11.2846, 8.680499], + [-11.2835, 8.677999], + [-11.283699, 8.6675], + [-11.282999, 8.6651], + [-11.281199, 8.6636], + [-11.2789, 8.6633], + [-11.2766, 8.664499], + [-11.273299, 8.6702], + [-11.2725, 8.673799], + [-11.2722, 8.678699], + [-11.271599, 8.6811], + [-11.270199, 8.6839], + [-11.266299, 8.689], + [-11.2621, 8.697099], + [-11.260299, 8.7011], + [-11.258699, 8.7033], + [-11.256699, 8.7052], + [-11.254099, 8.707099], + [-11.250799, 8.7081], + [-11.24501, 8.708299], + [-11.244999, 8.708299], + [-11.2411, 8.707799], + [-11.237999, 8.706299], + [-11.236, 8.703499], + [-11.2349, 8.7001], + [-11.233499, 8.698], + [-11.229899, 8.6969], + [-11.2216, 8.696999], + [-11.218799, 8.696499], + [-11.2174, 8.694699], + [-11.217499, 8.6922], + [-11.2191, 8.688899], + [-11.219899, 8.6854], + [-11.219799, 8.681699], + [-11.218499, 8.6793], + [-11.2138, 8.676699], + [-11.2099, 8.6722], + [-11.2069, 8.6693], + [-11.203599, 8.667599], + [-11.1977, 8.6661], + [-11.193099, 8.664199], + [-11.189499, 8.663499], + [-11.1826, 8.6633], + [-11.1791, 8.662499], + [-11.1764, 8.660499], + [-11.174399, 8.657399], + [-11.167999, 8.649], + [-11.1631, 8.653099], + [-11.1609, 8.655599], + [-11.157999, 8.6608], + [-11.153499, 8.6666], + [-11.149599, 8.6744], + [-11.148899, 8.6775], + [-11.1487, 8.681299], + [-11.148999, 8.691899], + [-11.149, 8.695699], + [-11.1487, 8.698499], + [-11.148099, 8.700702], + [-11.148287, 8.701469], + [-11.147707, 8.703951], + [-11.145734, 8.707259], + [-11.144846, 8.708397], + [-11.145416, 8.711249], + [-11.14375, 8.717916], + [-11.143252, 8.723892], + [-11.139583, 8.723893], + [-11.139583, 8.737424], + [-11.142203, 8.737425], + [-11.142083, 8.738749], + [-11.144582, 8.741249], + [-11.145417, 8.744582], + [-11.154582, 8.744583], + [-11.156524, 8.743614], + [-11.15575, 8.746677], + [-11.155546, 8.748436], + [-11.154324, 8.75024], + [-11.153231, 8.751479], + [-11.156249, 8.752082], + [-11.15875, 8.749583], + [-11.162082, 8.749582], + [-11.163749, 8.747917], + [-11.164582, 8.747917], + [-11.167917, 8.753749], + [-11.169583, 8.75375], + [-11.174581, 8.759581], + [-11.17458, 8.759583], + [-11.172083, 8.759583], + [-11.17125, 8.760417], + [-11.172916, 8.762916], + [-11.172083, 8.764583], + [-11.172917, 8.768749], + [-11.177083, 8.76875], + [-11.181249, 8.77625], + [-11.180417, 8.777917], + [-11.180416, 8.778749], + [-11.17875, 8.77875], + [-11.172917, 8.78375], + [-11.172916, 8.784583], + [-11.17125, 8.787917], + [-11.17125, 8.794583], + [-11.175424, 8.798756], + [-11.176002, 8.798535], + [-11.177181, 8.797745], + [-11.182083, 8.799582], + [-11.188749, 8.79875], + [-11.18875, 8.799582], + [-11.189583, 8.800416], + [-11.193749, 8.800417], + [-11.198749, 8.802082], + [-11.197917, 8.804582], + [-11.200417, 8.804583], + [-11.207082, 8.807916], + [-11.205417, 8.811249], + [-11.212083, 8.817082], + [-11.218749, 8.81375], + [-11.21875, 8.820416], + [-11.227082, 8.818749], + [-11.230416, 8.81625], + [-11.231249, 8.816249], + [-11.232917, 8.812917], + [-11.244583, 8.813749], + [-11.245416, 8.812916], + [-11.237917, 8.802917], + [-11.240417, 8.800417], + [-11.250416, 8.800416], + [-11.250417, 8.797917], + [-11.263749, 8.797917], + [-11.264583, 8.79625], + [-11.271249, 8.796249], + [-11.272916, 8.792082], + [-11.27125, 8.782083], + [-11.280515, 8.782795], + [-11.28056, 8.78267], + [-11.28375, 8.784582], + [-11.290416, 8.782916], + [-11.290417, 8.777083], + [-11.292916, 8.777082], + [-11.292917, 8.775417], + [-11.289596, 8.772925], + [-11.289952, 8.772712], + [-11.292914, 8.771248], + [-11.29625, 8.774582], + [-11.297082, 8.774583], + [-11.300416, 8.773749], + [-11.300417, 8.772916], + [-11.303749, 8.772083], + [-11.307916, 8.772916], + [-11.309583, 8.772083], + [-11.313749, 8.772082], + [-11.320417, 8.76625], + [-11.325417, 8.767916], + [-11.328749, 8.767083], + [-11.329582, 8.767083], + [-11.329583, 8.767916], + [-11.33625, 8.770416], + [-11.342916, 8.767917], + [-11.342917, 8.769583], + [-11.345021, 8.776596], + [-11.345799, 8.775099], + [-11.346399, 8.7711], + [-11.346499, 8.7602], + [-11.3471, 8.754799], + [-11.3489, 8.749199], + [-11.354699, 8.7374], + [-11.3565, 8.731799], + [-11.3572, 8.725199], + [-11.357399, 8.7103], + [-11.358899, 8.6987], + [-11.358657, 8.697175] + ] + ], + "type": "Polygon" + }, + "id": 550, + "properties": { + "cc:admin:id": ["119"], + "cc:oBld:total": 2414, + "cc:pop:fifteen-to-twenty-four": 2387.6550069452587, + "cc:pop:grid3-total": 19682.825031197528, + "cc:pop:kontur-total": 12416.492944213269, + "cc:pop:men": 5962.984612847737, + "cc:pop:sixty-plus": 676.723038286911, + "cc:pop:total": 12088.040247080535, + "cc:pop:under-five": 2056.7443530515843, + "cc:pop:women": 6125.055634232806, + "cc:pop:women-fiften-to-forty-nine": 2919.995056888302, + "cc:pop:wp-total": 10952.948822283804, + "cc:pop:wp-total-UN": 12677.853373319578, + "cc:id": "550", + "cc:Name": "Tefeya CHP", + "cc:site": [-11.2113, 8.7066], + "user:parentName": "Sandor", + "user:code": "OU_233368", + "user:orgUnitId": "nAH0uNc3b5f", + "user:level": "4", + "user:parentId": "g5ptsn0SFX8" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.038889, 8.869832], + [-12.038099, 8.868199], + [-12.0356, 8.8639], + [-12.034299, 8.860699], + [-12.0324, 8.8571], + [-12.0311, 8.8513], + [-12.030099, 8.8489], + [-12.027299, 8.8465], + [-12.0245, 8.846], + [-12.0213, 8.8476], + [-12.0187, 8.850099], + [-12.0171, 8.852399], + [-12.013199, 8.8608], + [-12.012599, 8.8635], + [-12.0125, 8.866399], + [-12.012699, 8.8852], + [-12.0122, 8.888999], + [-12.011349, 8.891087], + [-12.011835, 8.890458], + [-12.012531, 8.88842], + [-12.013764, 8.887351], + [-12.014778, 8.887097], + [-12.016002, 8.886451], + [-12.017019, 8.886169], + [-12.01704, 8.88525], + [-12.017217, 8.884703], + [-12.017408, 8.885012], + [-12.018101, 8.885407], + [-12.019386, 8.885404], + [-12.019429, 8.885595], + [-12.020674, 8.886018], + [-12.022125, 8.886063], + [-12.022741, 8.885869], + [-12.023681, 8.886108], + [-12.024493, 8.886015], + [-12.025561, 8.886997], + [-12.025802, 8.887624], + [-12.0258, 8.887633], + [-12.025815, 8.887658], + [-12.025832, 8.8877], + [-12.025847, 8.887707], + [-12.026288, 8.887808], + [-12.026338, 8.887871], + [-12.026411, 8.887806], + [-12.026424, 8.887797], + [-12.026111, 8.887038], + [-12.026112, 8.887037], + [-12.026281, 8.887144], + [-12.026253, 8.886725], + [-12.026439, 8.886192], + [-12.026645, 8.886033], + [-12.027195, 8.88603], + [-12.027433, 8.886566], + [-12.027603, 8.886603], + [-12.027968, 8.885903], + [-12.028954, 8.885596], + [-12.029889, 8.885771], + [-12.029932, 8.886059], + [-12.030069, 8.886042], + [-12.030086, 8.885702], + [-12.030903, 8.885524], + [-12.031135, 8.885379], + [-12.03102, 8.885109], + [-12.031397, 8.885144], + [-12.03166, 8.884925], + [-12.031525, 8.884726], + [-12.030809, 8.883541], + [-12.03033, 8.883206], + [-12.031078, 8.882817], + [-12.031861, 8.883202], + [-12.033063, 8.883026], + [-12.032839, 8.882415], + [-12.032827, 8.881729], + [-12.034247, 8.881354], + [-12.033968, 8.880876], + [-12.033678, 8.880169], + [-12.033395, 8.879516], + [-12.033302, 8.879237], + [-12.033924, 8.879194], + [-12.034088, 8.879399], + [-12.034797, 8.879248], + [-12.035429, 8.879039], + [-12.035129, 8.878444], + [-12.034885, 8.876288], + [-12.035865, 8.876295], + [-12.036613, 8.876318], + [-12.036505, 8.875647], + [-12.03651, 8.875376], + [-12.036427, 8.87475], + [-12.036561, 8.874339], + [-12.037058, 8.874769], + [-12.037471, 8.874881], + [-12.03757, 8.874852], + [-12.036623, 8.872967], + [-12.036677, 8.872175], + [-12.036679, 8.872175], + [-12.036848, 8.872332], + [-12.037152, 8.871834], + [-12.037324, 8.871127], + [-12.037528, 8.87039], + [-12.038437, 8.870706], + [-12.038889, 8.869832] + ] + ], + "type": "Polygon" + }, + "id": 551, + "properties": { + "cc:admin:id": ["83"], + "cc:oBld:total": 1476, + "cc:pop:fifteen-to-twenty-four": 3808.1468230338014, + "cc:pop:grid3-total": 16779.55675485385, + "cc:pop:kontur-total": 23041.026181131656, + "cc:pop:men": 9918.981233183173, + "cc:pop:sixty-plus": 1310.1117582945055, + "cc:pop:total": 20677.93574503923, + "cc:pop:under-five": 3326.4757591413218, + "cc:pop:women": 10758.954511856047, + "cc:pop:women-fiften-to-forty-nine": 5211.393956964018, + "cc:pop:wp-total": 18584.443367233092, + "cc:pop:wp-total-UN": 21559.07543692957, + "cc:id": "551", + "cc:Name": "Teko Barracks Clinic", + "cc:site": [-12.0286, 8.8707], + "user:parentName": "Bombali Sebora", + "user:code": "OU_193212", + "user:orgUnitId": "OuwX8H2CcRO", + "user:level": "4", + "user:parentId": "KKkLOTpMXGV" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.737523, 7.731961], + [-11.736249, 7.732917], + [-11.732083, 7.737083], + [-11.72914, 7.737083], + [-11.729139, 7.737082], + [-11.730283, 7.735099], + [-11.726377, 7.728334], + [-11.720417, 7.728334], + [-11.720416, 7.735416], + [-11.71875, 7.737083], + [-11.714583, 7.737916], + [-11.710417, 7.737917], + [-11.709582, 7.739584], + [-11.70375, 7.742084], + [-11.703193, 7.744863], + [-11.701544, 7.743171], + [-11.701654, 7.742852], + [-11.700878, 7.740422], + [-11.700817, 7.740304], + [-11.700739, 7.740383], + [-11.699877, 7.740375], + [-11.699805, 7.740241], + [-11.699672, 7.74], + [-11.699462, 7.740127], + [-11.6981, 7.739413], + [-11.696897, 7.739208], + [-11.694878, 7.739711], + [-11.694828, 7.739729], + [-11.695416, 7.742084], + [-11.69125, 7.74375], + [-11.69125, 7.749583], + [-11.690416, 7.754583], + [-11.687916, 7.753749], + [-11.68125, 7.749584], + [-11.67625, 7.755416], + [-11.673941, 7.754262], + [-11.673753, 7.754584], + [-11.662917, 7.754584], + [-11.662916, 7.760416], + [-11.654583, 7.759584], + [-11.654583, 7.767916], + [-11.654305, 7.769583], + [-11.64987, 7.769584], + [-11.645963, 7.776348], + [-11.642207, 7.776349], + [-11.642083, 7.77625], + [-11.642083, 7.77918], + [-11.641848, 7.779586], + [-11.634036, 7.779587], + [-11.630129, 7.786352], + [-11.623853, 7.786353], + [-11.624091, 7.786592], + [-11.622074, 7.786593], + [-11.618516, 7.792755], + [-11.616249, 7.789584], + [-11.611249, 7.787917], + [-11.603481, 7.787917], + [-11.604372, 7.790353], + [-11.604193, 7.792081], + [-11.598685, 7.792081], + [-11.598292, 7.791404], + [-11.597083, 7.792917], + [-11.597083, 7.802916], + [-11.599395, 7.805613], + [-11.606497, 7.805614], + [-11.606707, 7.805979], + [-11.606569, 7.806796], + [-11.606646, 7.808478], + [-11.606771, 7.809531], + [-11.607082, 7.809583], + [-11.609583, 7.807083], + [-11.619582, 7.802084], + [-11.61875, 7.814583], + [-11.625417, 7.821249], + [-11.625785, 7.821249], + [-11.627017, 7.819774], + [-11.627018, 7.819774], + [-11.631249, 7.825416], + [-11.63125, 7.827083], + [-11.632916, 7.827917], + [-11.632917, 7.829583], + [-11.636249, 7.82875], + [-11.638749, 7.828749], + [-11.641249, 7.825417], + [-11.642917, 7.825416], + [-11.644528, 7.823804], + [-11.644246, 7.823591], + [-11.644583, 7.822917], + [-11.648749, 7.823749], + [-11.65125, 7.812084], + [-11.655416, 7.812917], + [-11.658749, 7.815416], + [-11.657917, 7.807084], + [-11.668618, 7.804789], + [-11.668534, 7.804585], + [-11.668535, 7.804584], + [-11.669582, 7.804583], + [-11.667917, 7.799584], + [-11.672916, 7.79375], + [-11.672083, 7.792916], + [-11.672917, 7.787084], + [-11.683749, 7.782084], + [-11.684582, 7.782083], + [-11.684582, 7.78125], + [-11.683023, 7.778647], + [-11.684386, 7.778969], + [-11.688174, 7.780095], + [-11.691249, 7.779584], + [-11.693749, 7.777083], + [-11.69375, 7.775417], + [-11.694359, 7.774807], + [-11.697163, 7.774806], + [-11.701069, 7.768041], + [-11.697164, 7.761276], + [-11.698605, 7.758779], + [-11.698606, 7.758779], + [-11.70125, 7.762083], + [-11.708749, 7.763749], + [-11.710284, 7.763749], + [-11.7131, 7.7594], + [-11.716999, 7.7566], + [-11.7203, 7.753499], + [-11.7225, 7.750599], + [-11.7246, 7.746399], + [-11.7279, 7.742399], + [-11.734, 7.736299], + [-11.736999, 7.7328], + [-11.737523, 7.731961] + ] + ], + "type": "Polygon" + }, + "id": 552, + "properties": { + "cc:admin:id": ["40"], + "cc:oBld:total": 262, + "cc:pop:fifteen-to-twenty-four": 1227.0476588102006, + "cc:pop:grid3-total": 4115.3207943772, + "cc:pop:kontur-total": 7093.469100058502, + "cc:pop:men": 3372.1248911783646, + "cc:pop:sixty-plus": 516.2832812812655, + "cc:pop:total": 6964.508593180102, + "cc:pop:under-five": 1126.036902411171, + "cc:pop:women": 3592.3837020017363, + "cc:pop:women-fiften-to-forty-nine": 1687.994853240666, + "cc:pop:wp-total": 6099.667811155042, + "cc:pop:wp-total-UN": 7073.99392645158, + "cc:id": "552", + "cc:Name": "Telu CHP", + "cc:site": [-11.639, 7.8029], + "user:parentName": "Jaiama Bongor", + "user:code": "OU_824", + "user:orgUnitId": "erqWTArTsyJ", + "user:level": "4", + "user:parentId": "daJPPxtIrQn" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.988842, 8.637158], + [-10.988745, 8.636388], + [-10.988225, 8.636152], + [-10.988189, 8.635984], + [-10.988439, 8.635806], + [-10.988328, 8.635583], + [-10.987966, 8.63546], + [-10.987925, 8.635088], + [-10.987655, 8.635094], + [-10.987538, 8.634608], + [-10.986704, 8.6342], + [-10.986536, 8.632675], + [-10.985839, 8.632999], + [-10.984506, 8.633591], + [-10.983902, 8.634116], + [-10.983096, 8.636133], + [-10.982674, 8.637344], + [-10.982614, 8.637486], + [-10.982089, 8.638816], + [-10.981452, 8.639381], + [-10.980839, 8.639627], + [-10.978976, 8.639895], + [-10.978241, 8.640041], + [-10.978104, 8.64071], + [-10.978054, 8.641021], + [-10.977775, 8.641597], + [-10.977013, 8.641664], + [-10.976993, 8.641975], + [-10.97698, 8.64198], + [-10.976947, 8.642325], + [-10.976857, 8.642558], + [-10.9768, 8.642602], + [-10.976797, 8.642669], + [-10.976883, 8.642721], + [-10.977098, 8.642888], + [-10.977303, 8.643106], + [-10.976567, 8.643569], + [-10.976796, 8.644114], + [-10.976754, 8.64417], + [-10.976953, 8.645134], + [-10.976895, 8.645756], + [-10.976752, 8.646126], + [-10.976093, 8.64645], + [-10.97621, 8.646837], + [-10.975349, 8.647146], + [-10.975813, 8.648353], + [-10.975354, 8.648683], + [-10.975618, 8.649444], + [-10.975534, 8.650382], + [-10.975309, 8.652246], + [-10.975578, 8.654762], + [-10.975906, 8.657155], + [-10.976641, 8.657559], + [-10.979077, 8.658479], + [-10.97972, 8.658476], + [-10.980104, 8.658586], + [-10.981584, 8.657856], + [-10.982224, 8.657633], + [-10.983543, 8.657286], + [-10.983925, 8.65714], + [-10.984165, 8.657048], + [-10.985256, 8.656221], + [-10.985144, 8.655909], + [-10.985987, 8.654908], + [-10.985962, 8.654558], + [-10.98567, 8.654128], + [-10.986568, 8.65304], + [-10.987644, 8.652676], + [-10.987835, 8.65219], + [-10.987875, 8.652055], + [-10.987848, 8.652008], + [-10.985751, 8.650272], + [-10.986586, 8.649446], + [-10.986965, 8.649314], + [-10.986645, 8.649011], + [-10.98608, 8.648913], + [-10.985041, 8.648899], + [-10.984762, 8.647554], + [-10.984707, 8.647437], + [-10.985552, 8.647049], + [-10.985655, 8.646978], + [-10.986465, 8.645467], + [-10.987724, 8.643425], + [-10.987821, 8.642878], + [-10.987902, 8.642014], + [-10.987838, 8.640246], + [-10.987829, 8.638958], + [-10.987979, 8.638612], + [-10.987995, 8.638534], + [-10.988004, 8.638532], + [-10.988196, 8.637801], + [-10.988214, 8.637756], + [-10.988232, 8.637724], + [-10.988248, 8.637697], + [-10.988378, 8.637508], + [-10.988393, 8.637511], + [-10.988443, 8.637486], + [-10.98846, 8.637504], + [-10.988593, 8.637383], + [-10.988664, 8.63733], + [-10.988842, 8.637158] + ] + ], + "type": "Polygon" + }, + "id": 553, + "properties": { + "cc:admin:id": ["33"], + "cc:oBld:total": 2330, + "cc:pop:fifteen-to-twenty-four": 2561.081240252187, + "cc:pop:grid3-total": 11022.3118168951, + "cc:pop:kontur-total": 14536.581870295819, + "cc:pop:men": 7004.672593562549, + "cc:pop:sixty-plus": 779.622864691532, + "cc:pop:total": 13231.460531051216, + "cc:pop:under-five": 2088.5702128405173, + "cc:pop:women": 6226.787937488665, + "cc:pop:women-fiften-to-forty-nine": 3130.743985592945, + "cc:pop:wp-total": 11063.749430183028, + "cc:pop:wp-total-UN": 12824.691773971252, + "cc:id": "553", + "cc:Name": "The White House Clinic", + "cc:site": [-10.9815, 8.6447], + "user:parentName": "Tankoro", + "user:code": "OU_233326", + "user:orgUnitId": "AhnK8hb3JWm", + "user:level": "4", + "user:parentId": "M2qEv692lS6" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.298499, 8.494], + [-13.288699, 8.487099], + [-13.2782, 8.4565], + [-13.278319, 8.454866], + [-13.278157, 8.454835], + [-13.277956, 8.454375], + [-13.277454, 8.454282], + [-13.276564, 8.454847], + [-13.276977, 8.455234], + [-13.276957, 8.455264], + [-13.277239, 8.455481], + [-13.277682, 8.455702], + [-13.277978, 8.456794], + [-13.278097, 8.457273], + [-13.278291, 8.458349], + [-13.278311, 8.459525], + [-13.278326, 8.459938], + [-13.278138, 8.460588], + [-13.276508, 8.460237], + [-13.275229, 8.459262], + [-13.274544, 8.460056], + [-13.274342, 8.460723], + [-13.273873, 8.461766], + [-13.273575, 8.461931], + [-13.273574, 8.461931], + [-13.273395, 8.461578], + [-13.272799, 8.46178], + [-13.272544, 8.460907], + [-13.27168, 8.461223], + [-13.2721, 8.462003], + [-13.272433, 8.462951], + [-13.272343, 8.462985], + [-13.272535, 8.463561], + [-13.272768, 8.464323], + [-13.273263, 8.465742], + [-13.273676, 8.466341], + [-13.272249, 8.467448], + [-13.272003, 8.46795], + [-13.272592, 8.468251], + [-13.272593, 8.468252], + [-13.272005, 8.468832], + [-13.271916, 8.468781], + [-13.271062, 8.469392], + [-13.270788, 8.469984], + [-13.270073, 8.469684], + [-13.269673, 8.469871], + [-13.269611, 8.469911], + [-13.269683, 8.470032], + [-13.269751, 8.470017], + [-13.270809, 8.470388], + [-13.272108, 8.470505], + [-13.272736, 8.470886], + [-13.272689, 8.471562], + [-13.272165, 8.47227], + [-13.271953, 8.472874], + [-13.271054, 8.473501], + [-13.270459, 8.474115], + [-13.270182, 8.475121], + [-13.269577, 8.475067], + [-13.269409, 8.47508], + [-13.269133, 8.475216], + [-13.268717, 8.47512], + [-13.268266, 8.474952], + [-13.26798, 8.475364], + [-13.266579, 8.475619], + [-13.266086, 8.475737], + [-13.26586, 8.476841], + [-13.26551, 8.47781], + [-13.265605, 8.478765], + [-13.265751, 8.479864], + [-13.265413, 8.480772], + [-13.26594, 8.48175], + [-13.266496, 8.482251], + [-13.267121, 8.482685], + [-13.267188, 8.482935], + [-13.267056, 8.483122], + [-13.265673, 8.48371], + [-13.265066, 8.48341], + [-13.264785, 8.484027], + [-13.264682, 8.484351], + [-13.26528, 8.484402], + [-13.265279, 8.485089], + [-13.265288, 8.485168], + [-13.263765, 8.485309], + [-13.263086, 8.485368], + [-13.263095, 8.485404], + [-13.262621, 8.485741], + [-13.263385, 8.486833], + [-13.263384, 8.486835], + [-13.262475, 8.487142], + [-13.261758, 8.48707], + [-13.26162, 8.486709], + [-13.261477, 8.486586], + [-13.26115, 8.486642], + [-13.261433, 8.487675], + [-13.261528, 8.488054], + [-13.261667, 8.488623], + [-13.261761, 8.489056], + [-13.26041, 8.489547], + [-13.268199, 8.497399], + [-13.279799, 8.475402], + [-13.281299, 8.489299], + [-13.2737, 8.493199], + [-13.286799, 8.499599], + [-13.293199, 8.494], + [-13.297099, 8.498699], + [-13.298499, 8.494] + ] + ], + "type": "Polygon" + }, + "id": 554, + "properties": { + "cc:admin:id": ["26"], + "cc:oBld:total": 7799, + "cc:pop:fifteen-to-twenty-four": 26873.449941502415, + "cc:pop:grid3-total": 64342.24082326427, + "cc:pop:kontur-total": 112336.38062598369, + "cc:pop:men": 58597.941730118044, + "cc:pop:sixty-plus": 9135.789751711003, + "cc:pop:total": 117115.46308961295, + "cc:pop:under-five": 13525.40856003238, + "cc:pop:women": 58517.52135949492, + "cc:pop:women-fiften-to-forty-nine": 31365.453057352486, + "cc:pop:wp-total": 107443.6540590886, + "cc:pop:wp-total-UN": 124569.62151356346, + "cc:id": "554", + "cc:Name": "Thompson Bay MCHP", + "cc:site": [-13.2725, 8.4799], + "user:parentName": "Freetown", + "user:code": "OU_278341", + "user:orgUnitId": "BzEwqabuW19", + "user:level": "4", + "user:parentId": "C9uduqDZr9d" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.152099, 7.5182], + [-12.1472, 7.5152], + [-12.143999, 7.512399], + [-12.1414, 7.5092], + [-12.139099, 7.504499], + [-12.1352, 7.4987], + [-12.1322, 7.4964], + [-12.1299, 7.4936], + [-12.127899, 7.486699], + [-12.1242, 7.479], + [-12.121399, 7.4764], + [-12.118099, 7.475399], + [-12.1128, 7.4749], + [-12.1094, 7.4741], + [-12.1027, 7.4708], + [-12.100799, 7.469199], + [-12.099299, 7.467299], + [-12.097699, 7.4645], + [-12.0944, 7.4614], + [-12.0878, 7.459299], + [-12.085199, 7.457399], + [-12.082599, 7.4544], + [-12.079999, 7.4532], + [-12.076299, 7.4527], + [-12.053999, 7.452899], + [-12.050999, 7.452799], + [-12.0468, 7.4522], + [-12.0409, 7.4498], + [-12.035, 7.4483], + [-12.0305, 7.4463], + [-12.0271, 7.4454], + [-12.027499, 7.449899], + [-12.028599, 7.453299], + [-12.032399, 7.458399], + [-12.034099, 7.461599], + [-12.035799, 7.467399], + [-12.038099, 7.472799], + [-12.0387, 7.4767], + [-12.039199, 7.501499], + [-12.038899, 7.5055], + [-12.037699, 7.5093], + [-12.035099, 7.5121], + [-12.0314, 7.5145], + [-12.0316, 7.5192], + [-12.031699, 7.528899], + [-12.032199, 7.533199], + [-12.033, 7.5353], + [-12.034999, 7.538799], + [-12.0364, 7.5419], + [-12.038399, 7.545499], + [-12.0393, 7.5489], + [-12.039499, 7.5525], + [-12.0388, 7.556799], + [-12.0367, 7.561199], + [-12.0361, 7.563799], + [-12.0359, 7.567299], + [-12.036199, 7.569999], + [-12.0368, 7.5721], + [-12.0388, 7.5762], + [-12.0404, 7.5821], + [-12.042899, 7.588199], + [-12.0441, 7.5933], + [-12.0458, 7.5965], + [-12.048299, 7.599199], + [-12.050999, 7.600899], + [-12.054499, 7.601199], + [-12.057099, 7.5997], + [-12.063799, 7.5932], + [-12.0667, 7.5914], + [-12.070199, 7.5917], + [-12.072799, 7.593299], + [-12.0749, 7.5952], + [-12.080899, 7.601399], + [-12.083799, 7.603899], + [-12.0873, 7.6059], + [-12.092, 7.608199], + [-12.094499, 7.608599], + [-12.096899, 7.6081], + [-12.1004, 7.606399], + [-12.105399, 7.6048], + [-12.108299, 7.603599], + [-12.1089, 7.601299], + [-12.1102, 7.599299], + [-12.1135, 7.595099], + [-12.1156, 7.590899], + [-12.117999, 7.5867], + [-12.1192, 7.583499], + [-12.121399, 7.5791], + [-12.122499, 7.574], + [-12.123299, 7.5716], + [-12.125199, 7.568], + [-12.1265, 7.564799], + [-12.1289, 7.559699], + [-12.130299, 7.5538], + [-12.1325, 7.548499], + [-12.1339, 7.542899], + [-12.1358, 7.539599], + [-12.140799, 7.5343], + [-12.142999, 7.5315], + [-12.1453, 7.526899], + [-12.150099, 7.521], + [-12.152099, 7.5182] + ] + ], + "type": "Polygon" + }, + "id": 555, + "properties": { + "cc:admin:id": ["126"], + "cc:oBld:total": 314, + "cc:pop:fifteen-to-twenty-four": 1972.7298450366982, + "cc:pop:grid3-total": 9745.019241943042, + "cc:pop:kontur-total": 11312.243219985445, + "cc:pop:men": 5435.372875992215, + "cc:pop:sixty-plus": 878.4219604395789, + "cc:pop:total": 11387.662976722575, + "cc:pop:under-five": 1851.1792369288892, + "cc:pop:women": 5952.2901007303635, + "cc:pop:women-fiften-to-forty-nine": 2824.19202033822, + "cc:pop:wp-total": 9888.207400060846, + "cc:pop:wp-total-UN": 11455.900929245705, + "cc:id": "555", + "cc:Name": "Tihun CHC", + "cc:site": [-12.0898, 7.5666], + "user:parentName": "Sogbini", + "user:code": "OU_197412", + "user:orgUnitId": "ua5GXy2uhBR", + "user:level": "4", + "user:parentId": "cgOy0hRMGu9" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.8879, 7.802799], + [-11.887899, 7.7999], + [-11.885799, 7.7969], + [-11.882599, 7.795099], + [-11.8788, 7.792299], + [-11.8764, 7.7885], + [-11.873599, 7.7856], + [-11.8683, 7.7828], + [-11.8655, 7.7806], + [-11.864, 7.778699], + [-11.8637, 7.7766], + [-11.864031, 7.775972], + [-11.864, 7.775926], + [-11.862647, 7.776771], + [-11.861023, 7.777075], + [-11.85845, 7.777205], + [-11.855452, 7.777996], + [-11.854287, 7.778818], + [-11.852554, 7.780632], + [-11.851472, 7.776308], + [-11.851393, 7.776355], + [-11.85017, 7.777503], + [-11.849668, 7.777606], + [-11.849035, 7.777505], + [-11.848598, 7.777167], + [-11.848272, 7.777132], + [-11.84592, 7.778848], + [-11.844965, 7.779979], + [-11.844044, 7.780496], + [-11.842976, 7.780595], + [-11.841252, 7.781194], + [-11.84002, 7.781375], + [-11.839222, 7.781743], + [-11.838557, 7.782834], + [-11.838227, 7.783015], + [-11.839236, 7.786042], + [-11.838841, 7.786365], + [-11.83618, 7.789005], + [-11.835447, 7.789583], + [-11.829583, 7.789583], + [-11.828878, 7.788174], + [-11.828705, 7.788166], + [-11.827906, 7.787919], + [-11.827335, 7.787468], + [-11.827207, 7.787002], + [-11.82587, 7.786609], + [-11.825379, 7.78609], + [-11.825064, 7.786003], + [-11.823518, 7.786536], + [-11.822783, 7.787244], + [-11.822257, 7.78827], + [-11.820188, 7.789002], + [-11.819154, 7.789814], + [-11.818736, 7.790839], + [-11.817236, 7.791986], + [-11.816583, 7.792007], + [-11.815057, 7.792405], + [-11.813271, 7.792133], + [-11.812564, 7.792426], + [-11.811739, 7.792518], + [-11.809609, 7.792533], + [-11.809211, 7.792759], + [-11.805853, 7.793545], + [-11.803964, 7.795355], + [-11.803447, 7.796041], + [-11.802822, 7.797971], + [-11.802493, 7.798038], + [-11.802184, 7.79857], + [-11.801908, 7.798624], + [-11.802015, 7.798844], + [-11.80082, 7.800186], + [-11.801865, 7.800647], + [-11.801865, 7.800648], + [-11.801384, 7.801002], + [-11.801277, 7.801417], + [-11.801064, 7.801546], + [-11.800354, 7.801464], + [-11.799728, 7.801646], + [-11.798745, 7.803182], + [-11.79913, 7.803467], + [-11.799333, 7.80343], + [-11.801249, 7.803749], + [-11.801378, 7.804007], + [-11.800476, 7.804342], + [-11.798233, 7.806665], + [-11.796433, 7.808932], + [-11.794454, 7.806955], + [-11.793644, 7.807438], + [-11.793085, 7.808089], + [-11.791988, 7.808724], + [-11.789293, 7.809889], + [-11.787619, 7.809994], + [-11.785572, 7.810398], + [-11.783691, 7.811311], + [-11.782013, 7.811645], + [-11.781562, 7.812263], + [-11.781444, 7.812359], + [-11.781732, 7.81524], + [-11.78216, 7.815261], + [-11.783136, 7.814706], + [-11.783431, 7.814731], + [-11.783533, 7.815075], + [-11.783119, 7.815875], + [-11.782296, 7.816215], + [-11.781812, 7.816033], + [-11.781948, 7.817405], + [-11.781749, 7.817396], + [-11.779802, 7.816771], + [-11.779157, 7.816691], + [-11.778525, 7.816817], + [-11.777732, 7.817577], + [-11.772788, 7.81593], + [-11.772222, 7.816325], + [-11.771406, 7.817399], + [-11.770697, 7.817924], + [-11.77125, 7.819583], + [-11.773605, 7.819584], + [-11.773605, 7.819585], + [-11.770849, 7.820827], + [-11.770667, 7.820916], + [-11.770416, 7.820417], + [-11.764583, 7.822084], + [-11.764283, 7.823285], + [-11.764718, 7.823023], + [-11.764972, 7.822788], + [-11.764916, 7.822532], + [-11.765538, 7.822595], + [-11.765647, 7.8228], + [-11.765262, 7.823737], + [-11.764024, 7.824321], + [-11.763919, 7.824734], + [-11.763544, 7.824881], + [-11.763166, 7.825221], + [-11.762877, 7.825126], + [-11.762352, 7.825985], + [-11.761609, 7.826224], + [-11.761135, 7.826036], + [-11.760564, 7.826201], + [-11.760443, 7.826087], + [-11.761394, 7.824632], + [-11.75875, 7.82375], + [-11.755544, 7.825031], + [-11.755379, 7.824946], + [-11.754696, 7.825152], + [-11.754774, 7.825977], + [-11.754404, 7.826072], + [-11.754133, 7.826499], + [-11.754494, 7.826909], + [-11.754582, 7.826923], + [-11.754583, 7.827084], + [-11.755088, 7.829609], + [-11.755037, 7.82982], + [-11.752941, 7.832058], + [-11.752904, 7.832071], + [-11.752917, 7.832084], + [-11.753102, 7.832394], + [-11.751838, 7.832395], + [-11.751359, 7.832541], + [-11.750758, 7.83303], + [-11.748325, 7.83222], + [-11.748035, 7.832427], + [-11.747632, 7.832509], + [-11.745632, 7.835509], + [-11.743994, 7.835679], + [-11.743438, 7.836239], + [-11.743191, 7.836338], + [-11.741919, 7.834643], + [-11.741821, 7.834771], + [-11.740824, 7.835316], + [-11.7384, 7.835551], + [-11.739935, 7.838623], + [-11.73831, 7.839082], + [-11.73625, 7.839312], + [-11.736249, 7.836202], + [-11.735317, 7.836691], + [-11.733347, 7.837985], + [-11.73323, 7.838025], + [-11.733748, 7.839583], + [-11.730622, 7.839584], + [-11.730006, 7.840174], + [-11.727917, 7.840924], + [-11.727916, 7.842083], + [-11.725672, 7.840961], + [-11.725111, 7.842069], + [-11.72478, 7.842419], + [-11.724301, 7.844838], + [-11.72452, 7.845688], + [-11.725485, 7.846809], + [-11.725478, 7.847375], + [-11.725298, 7.847737], + [-11.72544, 7.847918], + [-11.725187, 7.850051], + [-11.725493, 7.850764], + [-11.725145, 7.851262], + [-11.724298, 7.851452], + [-11.724433, 7.852554], + [-11.72382, 7.853742], + [-11.723885, 7.854459], + [-11.724802, 7.856978], + [-11.723735, 7.857483], + [-11.72242, 7.859063], + [-11.722255, 7.85979], + [-11.722326, 7.862452], + [-11.721982, 7.864435], + [-11.72109, 7.865138], + [-11.719458, 7.865926], + [-11.718915, 7.866528], + [-11.718763, 7.866962], + [-11.71813, 7.8671], + [-11.718354, 7.867411], + [-11.71787, 7.868172], + [-11.715757, 7.869877], + [-11.715318, 7.869852], + [-11.714582, 7.86875], + [-11.71242, 7.869831], + [-11.711725, 7.869573], + [-11.711263, 7.869203], + [-11.712309, 7.866413], + [-11.712268, 7.866004], + [-11.712141, 7.865567], + [-11.712513, 7.86544], + [-11.712793, 7.865123], + [-11.713574, 7.863043], + [-11.709347, 7.863571], + [-11.708778, 7.866444], + [-11.708751, 7.866657], + [-11.708202, 7.868982], + [-11.708082, 7.868931], + [-11.706683, 7.867585], + [-11.705072, 7.867016], + [-11.704442, 7.866428], + [-11.703491, 7.866794], + [-11.701053, 7.866604], + [-11.6992, 7.870399], + [-11.698499, 7.874], + [-11.6983, 7.8789], + [-11.698384, 7.886067], + [-11.698749, 7.88625], + [-11.69875, 7.889583], + [-11.708749, 7.889583], + [-11.709583, 7.88875], + [-11.710589, 7.888414], + [-11.709617, 7.886103], + [-11.709193, 7.883054], + [-11.709194, 7.883053], + [-11.710089, 7.885527], + [-11.711006, 7.886951], + [-11.714445, 7.891524], + [-11.714814, 7.89311], + [-11.714577, 7.894549], + [-11.716014, 7.893952], + [-11.716877, 7.892925], + [-11.717223, 7.891964], + [-11.717318, 7.891428], + [-11.721249, 7.892084], + [-11.723749, 7.894583], + [-11.720417, 7.901249], + [-11.721326, 7.902614], + [-11.721336, 7.902607], + [-11.721991, 7.901632], + [-11.723688, 7.899848], + [-11.724237, 7.899505], + [-11.724369, 7.899067], + [-11.724527, 7.898559], + [-11.724406, 7.898019], + [-11.724522, 7.896359], + [-11.72514, 7.895585], + [-11.725281, 7.893806], + [-11.72507, 7.892998], + [-11.72511, 7.892355], + [-11.72512, 7.892312], + [-11.728749, 7.892916], + [-11.731536, 7.897097], + [-11.731147, 7.897294], + [-11.730684, 7.897075], + [-11.729833, 7.897691], + [-11.729645, 7.898199], + [-11.729453, 7.898312], + [-11.728845, 7.898827], + [-11.737916, 7.899584], + [-11.741249, 7.903749], + [-11.74125, 7.905633], + [-11.741491, 7.90556], + [-11.742186, 7.905626], + [-11.744338, 7.906313], + [-11.745066, 7.906116], + [-11.745525, 7.90628], + [-11.746144, 7.906063], + [-11.746877, 7.907228], + [-11.74299, 7.908861], + [-11.74389, 7.910209], + [-11.749502, 7.91021], + [-11.749583, 7.911249], + [-11.757916, 7.914583], + [-11.76875, 7.909584], + [-11.769583, 7.909584], + [-11.776708, 7.912433], + [-11.776976, 7.912083], + [-11.77875, 7.912084], + [-11.78125, 7.91375], + [-11.784582, 7.913749], + [-11.787182, 7.911151], + [-11.791385, 7.911151], + [-11.795292, 7.917917], + [-11.802082, 7.917916], + [-11.802083, 7.91375], + [-11.804583, 7.915416], + [-11.813749, 7.915416], + [-11.817082, 7.912084], + [-11.820416, 7.912083], + [-11.823279, 7.909793], + [-11.823715, 7.911066], + [-11.823494, 7.912156], + [-11.823026, 7.912281], + [-11.822724, 7.912575], + [-11.823974, 7.912989], + [-11.824833, 7.91287], + [-11.826455, 7.913332], + [-11.8267, 7.912199], + [-11.8289, 7.906799], + [-11.8303, 7.900999], + [-11.834099, 7.8926], + [-11.836499, 7.8883], + [-11.8378, 7.885199], + [-11.8396, 7.881599], + [-11.8405, 7.878199], + [-11.840699, 7.8701], + [-11.8414, 7.866599], + [-11.842799, 7.8642], + [-11.8446, 7.862099], + [-11.865899, 7.8409], + [-11.869099, 7.837], + [-11.873, 7.828899], + [-11.8737, 7.825199], + [-11.873799, 7.818], + [-11.8746, 7.8146], + [-11.8766, 7.811999], + [-11.8786, 7.810699], + [-11.882399, 7.8088], + [-11.885599, 7.8062], + [-11.8879, 7.802799] + ] + ], + "type": "Polygon" + }, + "id": 556, + "properties": { + "cc:admin:id": ["134"], + "cc:oBld:total": 2033, + "cc:pop:fifteen-to-twenty-four": 2777.044248090842, + "cc:pop:grid3-total": 8983.847883944189, + "cc:pop:kontur-total": 17425.940078752625, + "cc:pop:men": 8797.162695413343, + "cc:pop:sixty-plus": 882.4602322531729, + "cc:pop:total": 16889.648410535938, + "cc:pop:under-five": 2644.261971417452, + "cc:pop:women": 8092.485715122592, + "cc:pop:women-fiften-to-forty-nine": 4130.136520854925, + "cc:pop:wp-total": 11745.023997367533, + "cc:pop:wp-total-UN": 13625.622065972972, + "cc:id": "556", + "cc:Name": "Tikonko CHC", + "cc:site": [-11.7815, 7.8783], + "user:parentName": "Tikonko", + "user:code": "OU_1103", + "user:orgUnitId": "KYXbIQBQgP1", + "user:level": "4", + "user:parentId": "sxRd2XOzFbz" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.765416, 7.532916], + [-12.76466, 7.5246], + [-12.763999, 7.524599], + [-12.762099, 7.5235], + [-12.7604, 7.523699], + [-12.760099, 7.523199], + [-12.7557, 7.5218], + [-12.753999, 7.521799], + [-12.7518, 7.5212], + [-12.750399, 7.520399], + [-12.7471, 7.519], + [-12.7449, 7.518699], + [-12.742899, 7.5176], + [-12.741499, 7.517599], + [-12.740099, 7.5168], + [-12.738999, 7.516799], + [-12.735099, 7.515099], + [-12.7293, 7.5138], + [-12.728499, 7.5132], + [-12.7263, 7.512899], + [-12.723799, 7.5115], + [-12.7207, 7.510999], + [-12.719599, 7.5101], + [-12.716799, 7.509599], + [-12.713999, 7.508499], + [-12.7118, 7.508199], + [-12.708499, 7.506499], + [-12.706799, 7.506], + [-12.7046, 7.505999], + [-12.702399, 7.505099], + [-12.6999, 7.504599], + [-12.698199, 7.5035], + [-12.696799, 7.503499], + [-12.695399, 7.5026], + [-12.6932, 7.502599], + [-12.6907, 7.5018], + [-12.689599, 7.501], + [-12.6876, 7.500699], + [-12.687399, 7.5001], + [-12.6826, 7.498999], + [-12.680099, 7.4974], + [-12.6779, 7.4971], + [-12.677399, 7.4965], + [-12.6749, 7.495999], + [-12.673499, 7.4951], + [-12.6715, 7.494899], + [-12.670399, 7.494], + [-12.669299, 7.493999], + [-12.667599, 7.4929], + [-12.666299, 7.492899], + [-12.665099, 7.4921], + [-12.662599, 7.491499], + [-12.658222, 7.489908], + [-12.658199, 7.489899], + [-12.656799, 7.488799], + [-12.6526, 7.4868], + [-12.6507, 7.486499], + [-12.649323, 7.485624], + [-12.64875, 7.487917], + [-12.64875, 7.497083], + [-12.652916, 7.497916], + [-12.654582, 7.497917], + [-12.655416, 7.49875], + [-12.65375, 7.50375], + [-12.653749, 7.516249], + [-12.653002, 7.516249], + [-12.652577, 7.516092], + [-12.652316, 7.516249], + [-12.652082, 7.516249], + [-12.64875, 7.515417], + [-12.648749, 7.516249], + [-12.647917, 7.517084], + [-12.647917, 7.527083], + [-12.649583, 7.530416], + [-12.650416, 7.530417], + [-12.650417, 7.532083], + [-12.651249, 7.534584], + [-12.651249, 7.537083], + [-12.647917, 7.537917], + [-12.645416, 7.540416], + [-12.642082, 7.539584], + [-12.639583, 7.545416], + [-12.645416, 7.545417], + [-12.645793, 7.546171], + [-12.643603, 7.546172], + [-12.642293, 7.546424], + [-12.639178, 7.548636], + [-12.63782, 7.549591], + [-12.637691, 7.549662], + [-12.641264, 7.555022], + [-12.640611, 7.557335], + [-12.640408, 7.558265], + [-12.639679, 7.558539], + [-12.639362, 7.558959], + [-12.638949, 7.558958], + [-12.638754, 7.559087], + [-12.638618, 7.560115], + [-12.637844, 7.560112], + [-12.637841, 7.560627], + [-12.636552, 7.56049], + [-12.636294, 7.560231], + [-12.635779, 7.56023], + [-12.635002, 7.560482], + [-12.633714, 7.560089], + [-12.633588, 7.559574], + [-12.633075, 7.559055], + [-12.63282, 7.558281], + [-12.632177, 7.557892], + [-12.631402, 7.558017], + [-12.631399, 7.558531], + [-12.630495, 7.558785], + [-12.630492, 7.559299], + [-12.631132, 7.560332], + [-12.632164, 7.560082], + [-12.632165, 7.560083], + [-12.63211, 7.560403], + [-12.625417, 7.56375], + [-12.625417, 7.571249], + [-12.627508, 7.573865], + [-12.627441, 7.57435], + [-12.62744, 7.574351], + [-12.626412, 7.573702], + [-12.626404, 7.574989], + [-12.625631, 7.574986], + [-12.625371, 7.575242], + [-12.626394, 7.57705], + [-12.62717, 7.576668], + [-12.627743, 7.576671], + [-12.627744, 7.576672], + [-12.625417, 7.579584], + [-12.625417, 7.583036], + [-12.625824, 7.583023], + [-12.626485, 7.582666], + [-12.626788, 7.582238], + [-12.627162, 7.581596], + [-12.627572, 7.580883], + [-12.628054, 7.580206], + [-12.628428, 7.579955], + [-12.62866, 7.579617], + [-12.628909, 7.579118], + [-12.629515, 7.578993], + [-12.629907, 7.578618], + [-12.630158, 7.578101], + [-12.630301, 7.577691], + [-12.630425, 7.57721], + [-12.630638, 7.577371], + [-12.630443, 7.578101], + [-12.630176, 7.578743], + [-12.629694, 7.5791], + [-12.629266, 7.579404], + [-12.629177, 7.57992], + [-12.629729, 7.580027], + [-12.630247, 7.579921], + [-12.630925, 7.58017], + [-12.631601, 7.580473], + [-12.63203, 7.580866], + [-12.632585, 7.581431], + [-12.633633, 7.584259], + [-12.633831, 7.58585], + [-12.633345, 7.5866], + [-12.632546, 7.587172], + [-12.63162, 7.587899], + [-12.631489, 7.588149], + [-12.631799, 7.5885], + [-12.631, 7.5893], + [-12.630999, 7.5915], + [-12.628999, 7.593799], + [-12.6268, 7.593799], + [-12.6257, 7.592599], + [-12.625699, 7.5904], + [-12.624899, 7.5882], + [-12.623999, 7.5879], + [-12.6204, 7.5879], + [-12.619, 7.5885], + [-12.6179, 7.5901], + [-12.6179, 7.593499], + [-12.618198, 7.5935], + [-12.618199, 7.593501], + [-12.6179, 7.597399], + [-12.6171, 7.5976], + [-12.6163, 7.599299], + [-12.616, 7.601799], + [-12.618199, 7.605399], + [-12.618199, 7.607599], + [-12.617599, 7.6088], + [-12.614299, 7.610399], + [-12.6104, 7.608999], + [-12.6087, 7.6074], + [-12.608499, 7.606], + [-12.6068, 7.6043], + [-12.606799, 7.6037], + [-12.6051, 7.602399], + [-12.6029, 7.599], + [-12.602399, 7.5968], + [-12.5996, 7.5954], + [-12.5987, 7.5968], + [-12.598699, 7.6049], + [-12.598199, 7.607099], + [-12.5974, 7.608199], + [-12.5932, 7.611499], + [-12.5913, 7.6124], + [-12.589899, 7.613799], + [-12.5865, 7.614899], + [-12.584299, 7.616299], + [-12.5824, 7.6168], + [-12.582099, 7.6174], + [-12.5799, 7.6176], + [-12.577899, 7.618999], + [-12.5757, 7.6193], + [-12.5751, 7.6204], + [-12.5757, 7.622599], + [-12.5765, 7.6232], + [-12.5782, 7.6257], + [-12.582399, 7.6301], + [-12.5829, 7.631499], + [-12.5837, 7.6321], + [-12.5843, 7.633999], + [-12.5851, 7.634], + [-12.5857, 7.635099], + [-12.589299, 7.636799], + [-12.5907, 7.637899], + [-12.5921, 7.6376], + [-12.596199, 7.637899], + [-12.5971, 7.6374], + [-12.600399, 7.6374], + [-12.6004, 7.6376], + [-12.603999, 7.6379], + [-12.6054, 7.638799], + [-12.608699, 7.6388], + [-12.6099, 7.639299], + [-12.613999, 7.639], + [-12.616, 7.639899], + [-12.619899, 7.640099], + [-12.6204, 7.640699], + [-12.622599, 7.6407], + [-12.6238, 7.641299], + [-12.627599, 7.6413], + [-12.6276, 7.641499], + [-12.630699, 7.641299], + [-12.6315, 7.6407], + [-12.634299, 7.640699], + [-12.636, 7.6399], + [-12.639299, 7.6399], + [-12.6421, 7.639599], + [-12.646499, 7.6385], + [-12.6474, 7.637599], + [-12.6496, 7.6371], + [-12.658999, 7.6371], + [-12.6596, 7.6376], + [-12.665699, 7.637599], + [-12.6657, 7.637399], + [-12.669, 7.637099], + [-12.670699, 7.636299], + [-12.6713, 7.6354], + [-12.672399, 7.636299], + [-12.6724, 7.637099], + [-12.673499, 7.637599], + [-12.677899, 7.6376], + [-12.6804, 7.638799], + [-12.694299, 7.638799], + [-12.695999, 7.638199], + [-12.697899, 7.6368], + [-12.700099, 7.636799], + [-12.7007, 7.635699], + [-12.702899, 7.634299], + [-12.7035, 7.6329], + [-12.704899, 7.6315], + [-12.706199, 7.631199], + [-12.7093, 7.6288], + [-12.711, 7.628199], + [-12.717099, 7.627599], + [-12.7193, 7.625099], + [-12.721299, 7.624], + [-12.723199, 7.623999], + [-12.723499, 7.6224], + [-12.720101, 7.622899], + [-12.7218, 7.620999], + [-12.724, 7.6207], + [-12.725399, 7.6221], + [-12.725399, 7.624599], + [-12.725029, 7.625416], + [-12.727082, 7.625416], + [-12.729582, 7.622083], + [-12.73125, 7.615417], + [-12.732917, 7.615416], + [-12.738861, 7.61502], + [-12.739014, 7.614231], + [-12.739529, 7.614619], + [-12.740044, 7.614622], + [-12.740342, 7.614921], + [-12.745416, 7.614584], + [-12.746119, 7.614113], + [-12.745895, 7.613597], + [-12.746426, 7.613246], + [-12.746172, 7.612739], + [-12.744959, 7.613231], + [-12.744958, 7.61323], + [-12.745097, 7.61117], + [-12.744973, 7.61014], + [-12.744458, 7.610137], + [-12.744533, 7.609154], + [-12.742917, 7.608749], + [-12.742082, 7.607083], + [-12.73375, 7.602916], + [-12.737082, 7.597083], + [-12.737083, 7.59125], + [-12.738749, 7.588749], + [-12.73625, 7.582917], + [-12.741249, 7.577917], + [-12.744582, 7.577083], + [-12.744583, 7.572917], + [-12.747082, 7.569583], + [-12.745417, 7.566249], + [-12.747807, 7.562663], + [-12.748106, 7.562725], + [-12.749582, 7.561249], + [-12.749583, 7.560416], + [-12.752916, 7.554584], + [-12.752917, 7.55125], + [-12.758749, 7.548749], + [-12.759583, 7.542917], + [-12.762082, 7.543749], + [-12.762083, 7.540417], + [-12.765416, 7.532916] + ] + ], + "type": "Polygon" + }, + "id": 557, + "properties": { + "cc:admin:id": ["18"], + "cc:oBld:total": 7, + "cc:pop:fifteen-to-twenty-four": 1001.5342616383894, + "cc:pop:grid3-total": 5017.743911897108, + "cc:pop:kontur-total": 6222.570152141785, + "cc:pop:men": 2787.340513285513, + "cc:pop:sixty-plus": 490.3490437266401, + "cc:pop:total": 5847.906657403788, + "cc:pop:under-five": 944.2673791236394, + "cc:pop:women": 3060.566144118271, + "cc:pop:women-fiften-to-forty-nine": 1508.8164525616494, + "cc:pop:wp-total": 4873.349731482534, + "cc:pop:wp-total-UN": 5647.836951955759, + "cc:id": "557", + "cc:Name": "Tissana CHC", + "cc:site": [-12.70613, 7.53912], + "user:parentName": "Dema", + "user:code": "OU_197423", + "user:orgUnitId": "CFPrsD3dNeb", + "user:level": "4", + "user:parentId": "DNRAeXT9IwS" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.200135, 8.330411], + [-13.190699, 8.30374], + [-13.194602, 8.295696], + [-13.185995, 8.290426], + [-13.186511, 8.281818], + [-13.165116, 8.285086], + [-13.161255, 8.285674], + [-13.171505, 8.279842], + [-13.166802, 8.270434], + [-13.175127, 8.260132], + [-13.166802, 8.25458], + [-13.163743, 8.242633], + [-13.161255, 8.249582], + [-13.161253, 8.249581], + [-13.161459, 8.248545], + [-13.159582, 8.245417], + [-13.157083, 8.245417], + [-13.15625, 8.248749], + [-13.157082, 8.250417], + [-13.154167, 8.250999], + [-13.153147, 8.24931], + [-13.15301, 8.249365], + [-13.154341, 8.251528], + [-13.155377, 8.252868], + [-13.147917, 8.259583], + [-13.137083, 8.24875], + [-13.137082, 8.247197], + [-13.135453, 8.244375], + [-13.127641, 8.244375], + [-13.123735, 8.25114], + [-13.12764, 8.257905], + [-13.123735, 8.264671], + [-13.12764, 8.271437], + [-13.123735, 8.278204], + [-13.12764, 8.284969], + [-13.12375, 8.291709], + [-13.12375, 8.291762], + [-13.12764, 8.2985], + [-13.124879, 8.303285], + [-13.127916, 8.307084], + [-13.127917, 8.312032], + [-13.135453, 8.312033], + [-13.135483, 8.312084], + [-13.136249, 8.312084], + [-13.13625, 8.325416], + [-13.146249, 8.326249], + [-13.146927, 8.318799], + [-13.147171, 8.318799], + [-13.151079, 8.325564], + [-13.158891, 8.325565], + [-13.162796, 8.332329], + [-13.158891, 8.339096], + [-13.162797, 8.345861], + [-13.17061, 8.345862], + [-13.174516, 8.352627], + [-13.179475, 8.352628], + [-13.182083, 8.354583], + [-13.183581, 8.354798], + [-13.186234, 8.359393], + [-13.186249, 8.359394], + [-13.18625, 8.362009], + [-13.193869, 8.362008], + [-13.196589, 8.357299], + [-13.195797, 8.356116], + [-13.193781, 8.354372], + [-13.198749, 8.35375], + [-13.199119, 8.354119], + [-13.199577, 8.353326], + [-13.195671, 8.34656], + [-13.18786, 8.346559], + [-13.187127, 8.345289], + [-13.18727, 8.345019], + [-13.187834, 8.34329], + [-13.187892, 8.341964], + [-13.18767, 8.340565], + [-13.188644, 8.33907], + [-13.189426, 8.338757], + [-13.190531, 8.338927], + [-13.191072, 8.339912], + [-13.191493, 8.339942], + [-13.191911, 8.339733], + [-13.191156, 8.339336], + [-13.191055, 8.339078], + [-13.191413, 8.339052], + [-13.191288, 8.338685], + [-13.191613, 8.338552], + [-13.192321, 8.339077], + [-13.192444, 8.338581], + [-13.192907, 8.33846], + [-13.194228, 8.338681], + [-13.194845, 8.338497], + [-13.195289, 8.337904], + [-13.196026, 8.333708], + [-13.196331, 8.332885], + [-13.197209, 8.332032], + [-13.199006, 8.330764], + [-13.199851, 8.330593], + [-13.200135, 8.330411] + ] + ], + "type": "Polygon" + }, + "id": 558, + "properties": { + "cc:admin:id": ["112"], + "cc:oBld:total": 472, + "cc:pop:fifteen-to-twenty-four": 2477.5932874641658, + "cc:pop:grid3-total": 4502.957366074995, + "cc:pop:kontur-total": 10827.138370501141, + "cc:pop:men": 5645.60112384274, + "cc:pop:sixty-plus": 868.3383796878786, + "cc:pop:total": 11217.840391206428, + "cc:pop:under-five": 1361.8610887804743, + "cc:pop:women": 5572.239267363687, + "cc:pop:women-fiften-to-forty-nine": 2974.488145667673, + "cc:pop:wp-total": 8391.776761931029, + "cc:pop:wp-total-UN": 9722.434736789763, + "cc:id": "558", + "cc:Name": "Tokeh MCHP", + "cc:site": [-13.1913, 8.3136], + "user:parentName": "Rural Western Area", + "user:code": "OU_278368", + "user:orgUnitId": "GGDHb8xd8jc", + "user:level": "4", + "user:parentId": "qtr8GGlm4gg" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.033749, 8.703749], + [-11.032916, 8.702083], + [-11.030417, 8.702082], + [-11.030417, 8.699583], + [-11.030161, 8.699073], + [-11.030163, 8.699072], + [-11.030416, 8.699178], + [-11.030416, 8.69875], + [-11.029583, 8.697916], + [-11.029583, 8.692917], + [-11.02875, 8.692082], + [-11.02875, 8.68875], + [-11.029582, 8.687916], + [-11.030416, 8.685417], + [-11.027083, 8.681249], + [-11.027083, 8.67625], + [-11.027916, 8.67375], + [-11.023749, 8.66875], + [-11.019583, 8.666249], + [-11.019583, 8.662084], + [-11.020416, 8.66125], + [-11.027916, 8.658749], + [-11.02625, 8.65375], + [-11.02375, 8.65125], + [-11.024483, 8.649781], + [-11.023407, 8.649095], + [-11.023095, 8.648565], + [-11.02226, 8.648066], + [-11.020599, 8.647299], + [-11.016399, 8.6449], + [-11.0135, 8.645799], + [-11.010599, 8.6478], + [-11.0044, 8.653699], + [-11.0014, 8.657099], + [-10.999399, 8.66], + [-10.997299, 8.6641], + [-10.994199, 8.6679], + [-10.9878, 8.674399], + [-10.985, 8.677799], + [-10.983099, 8.6816], + [-10.981699, 8.6837], + [-10.978499, 8.6876], + [-10.9773, 8.689699], + [-10.9767, 8.6919], + [-10.9768, 8.6941], + [-10.977299, 8.696599], + [-10.9797, 8.7018], + [-10.9803, 8.7053], + [-10.980699, 8.712599], + [-10.981599, 8.715999], + [-10.983599, 8.719499], + [-10.985, 8.7227], + [-10.987499, 8.726899], + [-10.9889, 8.7301], + [-10.9913, 8.7344], + [-10.992699, 8.737599], + [-10.995199, 8.741799], + [-10.9966, 8.745], + [-10.998899, 8.749299], + [-10.9996, 8.7519], + [-11.0003, 8.7578], + [-11.003699, 8.759499], + [-11.004995, 8.76001], + [-11.005416, 8.758749], + [-11.005416, 8.755417], + [-11.004582, 8.754582], + [-11.002917, 8.750417], + [-11.00375, 8.747083], + [-11.007916, 8.747083], + [-11.012082, 8.747916], + [-11.013749, 8.747916], + [-11.015417, 8.745416], + [-11.019358, 8.743445], + [-11.019242, 8.743101], + [-11.018611, 8.742064], + [-11.017925, 8.740419], + [-11.017156, 8.739569], + [-11.018368, 8.738099], + [-11.021877, 8.736104], + [-11.022584, 8.735428], + [-11.023564, 8.734987], + [-11.025602, 8.734548], + [-11.025099, 8.732768], + [-11.024742, 8.732083], + [-11.026385, 8.732082], + [-11.026096, 8.731851], + [-11.026091, 8.731577], + [-11.026431, 8.73135], + [-11.026504, 8.73103], + [-11.026427, 8.730579], + [-11.025663, 8.729923], + [-11.025636, 8.727046], + [-11.025446, 8.726622], + [-11.02498, 8.7263], + [-11.024552, 8.725603], + [-11.024739, 8.724664], + [-11.024098, 8.724307], + [-11.024459, 8.723768], + [-11.024709, 8.723656], + [-11.02472, 8.723346], + [-11.024487, 8.722915], + [-11.023981, 8.722633], + [-11.023253, 8.721902], + [-11.022834, 8.72098], + [-11.022947, 8.720579], + [-11.022816, 8.72], + [-11.023319, 8.719476], + [-11.023127, 8.719294], + [-11.023066, 8.718892], + [-11.022693, 8.718724], + [-11.022495, 8.717943], + [-11.022872, 8.71797], + [-11.023135, 8.717464], + [-11.022947, 8.71713], + [-11.022273, 8.716854], + [-11.021949, 8.716039], + [-11.021706, 8.715896], + [-11.021582, 8.715585], + [-11.021583, 8.714226], + [-11.021253, 8.713925], + [-11.020895, 8.713939], + [-11.020412, 8.712796], + [-11.020044, 8.712838], + [-11.019721, 8.712324], + [-11.019995, 8.712283], + [-11.020062, 8.712046], + [-11.019623, 8.711846], + [-11.019531, 8.712008], + [-11.019328, 8.711786], + [-11.019523, 8.71153], + [-11.019515, 8.711249], + [-11.019516, 8.711249], + [-11.020068, 8.711864], + [-11.020307, 8.711803], + [-11.020607, 8.712041], + [-11.020608, 8.712752], + [-11.021004, 8.713774], + [-11.021816, 8.713879], + [-11.021677, 8.714688], + [-11.021801, 8.715645], + [-11.022165, 8.716011], + [-11.02231, 8.716645], + [-11.023116, 8.717095], + [-11.023209, 8.717299], + [-11.023326, 8.717678], + [-11.023271, 8.718689], + [-11.023301, 8.718749], + [-11.025416, 8.71875], + [-11.025417, 8.723749], + [-11.026249, 8.726249], + [-11.02625, 8.727082], + [-11.028749, 8.730416], + [-11.032082, 8.730416], + [-11.0337, 8.728259], + [-11.031591, 8.726968], + [-11.02955, 8.726742], + [-11.028237, 8.72548], + [-11.029582, 8.724582], + [-11.029583, 8.722916], + [-11.032916, 8.721249], + [-11.032916, 8.720416], + [-11.03125, 8.717082], + [-11.032082, 8.71375], + [-11.030417, 8.711249], + [-11.032082, 8.70625], + [-11.033749, 8.703749] + ] + ], + "type": "Polygon" + }, + "id": 559, + "properties": { + "cc:admin:id": ["49"], + "cc:oBld:total": 1042, + "cc:pop:fifteen-to-twenty-four": 1397.6025815171977, + "cc:pop:grid3-total": 9192.31682779397, + "cc:pop:kontur-total": 7741.52937641494, + "cc:pop:men": 4076.3561856333954, + "cc:pop:sixty-plus": 414.7615328132566, + "cc:pop:total": 7347.585243877863, + "cc:pop:under-five": 1119.0203889585853, + "cc:pop:women": 3271.2290582444703, + "cc:pop:women-fiften-to-forty-nine": 1560.4001411716717, + "cc:pop:wp-total": 6255.648084814156, + "cc:pop:wp-total-UN": 7249.337349458584, + "cc:id": "559", + "cc:Name": "Tombodu CHC", + "cc:site": [-11.0121, 8.702], + "user:parentName": "Kamara", + "user:code": "OU_233341", + "user:orgUnitId": "lxxASQqPUqd", + "user:level": "4", + "user:parentId": "kvkDWg42lHR" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.060183, 8.216278], + [-11.060168, 8.216177], + [-11.059466, 8.21529], + [-11.05852, 8.214147], + [-11.0582, 8.213779], + [-11.057487, 8.21325], + [-11.057194, 8.212695], + [-11.057221, 8.212044], + [-11.05714, 8.211819], + [-11.056667, 8.211175], + [-11.056248, 8.210266], + [-11.056319, 8.209479], + [-11.057148, 8.209163], + [-11.059149, 8.207634], + [-11.057262, 8.207458], + [-11.056754, 8.206943], + [-11.056261, 8.206756], + [-11.056013, 8.206887], + [-11.056012, 8.206709], + [-11.055805, 8.20604], + [-11.05548, 8.205317], + [-11.054917, 8.205651], + [-11.052903, 8.205552], + [-11.052219, 8.206215], + [-11.052243, 8.206248], + [-11.052243, 8.206249], + [-11.05125, 8.206249], + [-11.049582, 8.204584], + [-11.04375, 8.20375], + [-11.045416, 8.207917], + [-11.042917, 8.212083], + [-11.039583, 8.212917], + [-11.03875, 8.214583], + [-11.040726, 8.217219], + [-11.040849, 8.217118], + [-11.040851, 8.217118], + [-11.04125, 8.217916], + [-11.044582, 8.218749], + [-11.045417, 8.220416], + [-11.04625, 8.220417], + [-11.047082, 8.222916], + [-11.04375, 8.22625], + [-11.04375, 8.228768], + [-11.043899, 8.22857], + [-11.046005, 8.228479], + [-11.049203, 8.228031], + [-11.050668, 8.227471], + [-11.051317, 8.226719], + [-11.052336, 8.225558], + [-11.052397, 8.225496], + [-11.052864, 8.225057], + [-11.053351, 8.224611], + [-11.053452, 8.224492], + [-11.053712, 8.224475], + [-11.054124, 8.224357], + [-11.054783, 8.224042], + [-11.054833, 8.224042], + [-11.054777, 8.224087], + [-11.054874, 8.224203], + [-11.055536, 8.226244], + [-11.055747, 8.226502], + [-11.056231, 8.226266], + [-11.056499, 8.226466], + [-11.057388, 8.225894], + [-11.057672, 8.22492], + [-11.058069, 8.224603], + [-11.059384, 8.223668], + [-11.05998, 8.22354], + [-11.058956, 8.223315], + [-11.058286, 8.223419], + [-11.057842, 8.223743], + [-11.056988, 8.224822], + [-11.056164, 8.225342], + [-11.055356, 8.223779], + [-11.055246, 8.223754], + [-11.055143, 8.223692], + [-11.055181, 8.223588], + [-11.05521, 8.223418], + [-11.055173, 8.222825], + [-11.055516, 8.222113], + [-11.055593, 8.221986], + [-11.056093, 8.221285], + [-11.056912, 8.220001], + [-11.057341, 8.219355], + [-11.05777, 8.218534], + [-11.057927, 8.218306], + [-11.058214, 8.218055], + [-11.059268, 8.217405], + [-11.060085, 8.217128], + [-11.059754, 8.216421], + [-11.060183, 8.216278] + ] + ], + "type": "Polygon" + }, + "id": 560, + "properties": { + "cc:admin:id": ["75"], + "cc:oBld:total": 720, + "cc:pop:fifteen-to-twenty-four": 2547.9072883235544, + "cc:pop:grid3-total": 9667.479105652215, + "cc:pop:kontur-total": 15498.090664174553, + "cc:pop:men": 7419.619855352246, + "cc:pop:sixty-plus": 779.6406075029455, + "cc:pop:total": 13262.174483142193, + "cc:pop:under-five": 2063.7639154497556, + "cc:pop:women": 5842.5546277899475, + "cc:pop:women-fiften-to-forty-nine": 2914.6464023087183, + "cc:pop:wp-total": 10264.333814854726, + "cc:pop:wp-total-UN": 11886.92761733087, + "cc:id": "560", + "cc:Name": "Tongo Field CHC", + "cc:site": [-11.0581, 8.2154], + "user:parentName": "Lower Bambara", + "user:code": "OU_222665", + "user:orgUnitId": "K3jhn3TXF3a", + "user:level": "4", + "user:parentId": "hdEuw2ugkVF" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.328501, 8.856727], + [-12.327999, 8.853799], + [-12.3264, 8.8494], + [-12.326176, 8.848976], + [-12.324661, 8.848208], + [-12.323056, 8.848365], + [-12.322025, 8.848108], + [-12.321297, 8.848454], + [-12.32027, 8.847772], + [-12.318666, 8.848049], + [-12.316508, 8.846622], + [-12.31625, 8.846647], + [-12.316249, 8.840417], + [-12.314583, 8.839583], + [-12.312083, 8.842082], + [-12.311249, 8.839583], + [-12.30875, 8.83875], + [-12.30625, 8.842081], + [-12.305416, 8.839583], + [-12.302916, 8.837917], + [-12.302082, 8.837916], + [-12.299583, 8.83625], + [-12.295417, 8.840415], + [-12.296249, 8.83125], + [-12.294946, 8.830816], + [-12.294784, 8.831207], + [-12.294203, 8.83352], + [-12.292887, 8.835018], + [-12.29253, 8.835477], + [-12.29177, 8.835035], + [-12.29134, 8.834494], + [-12.289973, 8.833365], + [-12.289312, 8.832246], + [-12.288407, 8.831129], + [-12.288062, 8.830371], + [-12.287241, 8.829686], + [-12.286744, 8.828255], + [-12.286456, 8.827917], + [-12.28125, 8.827916], + [-12.280517, 8.818403], + [-12.272509, 8.819654], + [-12.272083, 8.819743], + [-12.272082, 8.820417], + [-12.26875, 8.822916], + [-12.267916, 8.82125], + [-12.264582, 8.817916], + [-12.263749, 8.814583], + [-12.262916, 8.814582], + [-12.261629, 8.810081], + [-12.259604, 8.811036], + [-12.256039, 8.812751], + [-12.252552, 8.814448], + [-12.248376, 8.816509], + [-12.246191, 8.817134], + [-12.243937, 8.817134], + [-12.24125, 8.810416], + [-12.241249, 8.80625], + [-12.237917, 8.805417], + [-12.237082, 8.812083], + [-12.234583, 8.816249], + [-12.232917, 8.815417], + [-12.231774, 8.816178], + [-12.232799, 8.816718], + [-12.233203, 8.817203], + [-12.233202, 8.817204], + [-12.23246, 8.81738], + [-12.233749, 8.821249], + [-12.23125, 8.826249], + [-12.227082, 8.82125], + [-12.22375, 8.821249], + [-12.223458, 8.820669], + [-12.219127, 8.822276], + [-12.217621, 8.822733], + [-12.217387, 8.822795], + [-12.216767, 8.822925], + [-12.215782, 8.823021], + [-12.211133, 8.822882], + [-12.210416, 8.832916], + [-12.204583, 8.832916], + [-12.201503, 8.829068], + [-12.198075, 8.829068], + [-12.19778, 8.829096], + [-12.193891, 8.835833], + [-12.197797, 8.842598], + [-12.200215, 8.842599], + [-12.199582, 8.842917], + [-12.19625, 8.847083], + [-12.198749, 8.857082], + [-12.19625, 8.864583], + [-12.197083, 8.868749], + [-12.199583, 8.870417], + [-12.201249, 8.875416], + [-12.195879, 8.875864], + [-12.196168, 8.875961], + [-12.196545, 8.87648], + [-12.195279, 8.878875], + [-12.195251, 8.881028], + [-12.194945, 8.881868], + [-12.195037, 8.882412], + [-12.194812, 8.882778], + [-12.191599, 8.882779], + [-12.192082, 8.883025], + [-12.192083, 8.884372], + [-12.194072, 8.885186], + [-12.194234, 8.886331], + [-12.193847, 8.886408], + [-12.190324, 8.887938], + [-12.194638, 8.887939], + [-12.194246, 8.888426], + [-12.19405, 8.889752], + [-12.19377, 8.890293], + [-12.19337, 8.890512], + [-12.192933, 8.890157], + [-12.192707, 8.890135], + [-12.192507, 8.890324], + [-12.192578, 8.893259], + [-12.192876, 8.893998], + [-12.194166, 8.894978], + [-12.19574, 8.894552], + [-12.196252, 8.894877], + [-12.196301, 8.895329], + [-12.195504, 8.8974], + [-12.195336, 8.898446], + [-12.195335, 8.899979], + [-12.19505, 8.900416], + [-12.192083, 8.900417], + [-12.187917, 8.90375], + [-12.187083, 8.913749], + [-12.184583, 8.915417], + [-12.184174, 8.916643], + [-12.184477, 8.916994], + [-12.18375, 8.927916], + [-12.185555, 8.929722], + [-12.184813, 8.930442], + [-12.1837, 8.931937], + [-12.183018, 8.933257], + [-12.182277, 8.934128], + [-12.181787, 8.935205], + [-12.1838, 8.9349], + [-12.1916, 8.9349], + [-12.1955, 8.9356], + [-12.199899, 8.937599], + [-12.2026, 8.938399], + [-12.205799, 8.938199], + [-12.207499, 8.936699], + [-12.208299, 8.934199], + [-12.2081, 8.9305], + [-12.2074, 8.9277], + [-12.2051, 8.9233], + [-12.203, 8.9168], + [-12.2012, 8.913199], + [-12.2013, 8.9106], + [-12.2028, 8.909099], + [-12.204899, 8.9087], + [-12.207599, 8.9095], + [-12.2098, 8.9112], + [-12.2128, 8.914799], + [-12.2152, 8.915999], + [-12.2182, 8.9164], + [-12.226499, 8.916599], + [-12.2295, 8.916299], + [-12.232099, 8.915499], + [-12.233799, 8.913399], + [-12.235, 8.909099], + [-12.2368, 8.904699], + [-12.238699, 8.8993], + [-12.240799, 8.8979], + [-12.2432, 8.897499], + [-12.2472, 8.8974], + [-12.264299, 8.897699], + [-12.268599, 8.898199], + [-12.2725, 8.896199], + [-12.2748, 8.893999], + [-12.282499, 8.8861], + [-12.2853, 8.8842], + [-12.287599, 8.8846], + [-12.289599, 8.886999], + [-12.2907, 8.8927], + [-12.294899, 8.901899], + [-12.2966, 8.9041], + [-12.2993, 8.9066], + [-12.3022, 8.908299], + [-12.3056, 8.9089], + [-12.317799, 8.908999], + [-12.320799, 8.9089], + [-12.323099, 8.908299], + [-12.3259, 8.906299], + [-12.327499, 8.903399], + [-12.327799, 8.901], + [-12.3278, 8.895], + [-12.3274, 8.8899], + [-12.326699, 8.886999], + [-12.3249, 8.882699], + [-12.3259, 8.872199], + [-12.328499, 8.8608], + [-12.328599, 8.8573], + [-12.328501, 8.856727] + ] + ], + "type": "Polygon" + }, + "id": 561, + "properties": { + "cc:admin:id": ["83"], + "cc:oBld:total": 54, + "cc:pop:fifteen-to-twenty-four": 990.1387455676942, + "cc:pop:grid3-total": 2606.7802148574424, + "cc:pop:kontur-total": 4383.78889844371, + "cc:pop:men": 2530.344079496048, + "cc:pop:sixty-plus": 334.853031456274, + "cc:pop:total": 5394.649341394453, + "cc:pop:under-five": 861.2135928257187, + "cc:pop:women": 2864.3052618984034, + "cc:pop:women-fiften-to-forty-nine": 1387.0142537950599, + "cc:pop:wp-total": 4099.901846588377, + "cc:pop:wp-total-UN": 4736.550902193298, + "cc:id": "561", + "cc:Name": "Tonkomba MCHP", + "cc:site": [-12.2665, 8.8744], + "user:parentName": "Makari Gbanti", + "user:code": "OU_193264", + "user:orgUnitId": "xIMxph4NMP1", + "user:level": "4", + "user:parentId": "lY93YpCxJqf" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.064919, 7.360243], + [-12.061299, 7.3598], + [-12.0562, 7.3598], + [-12.0521, 7.3603], + [-12.0487, 7.363599], + [-12.0461, 7.366799], + [-12.0434, 7.371999], + [-12.039299, 7.3774], + [-12.0358, 7.383599], + [-12.032099, 7.3876], + [-12.029999, 7.389], + [-12.023199, 7.3922], + [-12.019899, 7.393], + [-12.0136, 7.393499], + [-12.0115, 7.394199], + [-12.0084, 7.396299], + [-12.0066, 7.398099], + [-12.0048, 7.4011], + [-12.004, 7.404699], + [-12.0042, 7.4115], + [-12.0049, 7.4149], + [-12.0061, 7.4169], + [-12.010599, 7.422699], + [-12.010946, 7.42335], + [-12.011136, 7.421335], + [-12.012323, 7.417039], + [-12.013506, 7.415451], + [-12.015971, 7.412838], + [-12.017002, 7.412096], + [-12.018039, 7.411514], + [-12.020966, 7.411069], + [-12.02187, 7.411072], + [-12.023903, 7.411705], + [-12.029247, 7.41414], + [-12.030914, 7.414546], + [-12.032151, 7.414625], + [-12.033496, 7.414394], + [-12.035141, 7.413454], + [-12.035936, 7.41222], + [-12.036461, 7.410679], + [-12.037324, 7.409478], + [-12.037903, 7.407742], + [-12.038263, 7.407177], + [-12.038267, 7.406554], + [-12.038586, 7.406221], + [-12.038674, 7.405625], + [-12.040025, 7.403271], + [-12.041167, 7.400861], + [-12.043793, 7.392804], + [-12.045465, 7.388981], + [-12.04224, 7.389441], + [-12.042239, 7.38944], + [-12.044398, 7.382231], + [-12.046623, 7.377724], + [-12.047301, 7.37672], + [-12.048472, 7.37499], + [-12.053138, 7.370658], + [-12.054699, 7.368608], + [-12.056168, 7.366358], + [-12.058156, 7.36884], + [-12.061138, 7.36617], + [-12.062779, 7.364367], + [-12.063275, 7.363702], + [-12.064919, 7.360243] + ] + ], + "type": "Polygon" + }, + "id": 562, + "properties": { + "cc:admin:id": ["147"], + "cc:oBld:total": 226, + "cc:pop:fifteen-to-twenty-four": 153.9143138046632, + "cc:pop:grid3-total": 1600.3212754510275, + "cc:pop:kontur-total": 1331.1890603322013, + "cc:pop:men": 420.5743696952273, + "cc:pop:sixty-plus": 60.063631886804835, + "cc:pop:total": 852.5592261949558, + "cc:pop:under-five": 143.02764009413252, + "cc:pop:women": 431.9848564997285, + "cc:pop:women-fiften-to-forty-nine": 209.1161498213372, + "cc:pop:wp-total": 657.2017746577665, + "cc:pop:wp-total-UN": 764.5806350035157, + "cc:id": "562", + "cc:Name": "Torma Bum CHP", + "cc:site": [-12.0092, 7.4143], + "user:parentName": "Bum", + "user:code": "OU_197405", + "user:orgUnitId": "rZkUcho9Z65", + "user:level": "4", + "user:parentId": "iUauWFeH8Qp" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.232082, 7.602981], + [-12.232082, 7.59625], + [-12.226251, 7.590418], + [-12.226252, 7.590417], + [-12.227082, 7.590416], + [-12.227082, 7.582084], + [-12.22555, 7.580552], + [-12.225009, 7.580727], + [-12.222173, 7.580452], + [-12.220516, 7.580753], + [-12.219316, 7.580675], + [-12.217787, 7.580166], + [-12.214836, 7.577702], + [-12.21375, 7.576604], + [-12.21375, 7.57625], + [-12.214076, 7.575595], + [-12.211633, 7.573947], + [-12.207765, 7.573406], + [-12.205295, 7.573261], + [-12.203121, 7.573377], + [-12.199867, 7.574086], + [-12.198569, 7.574794], + [-12.19822, 7.575207], + [-12.18875, 7.573749], + [-12.186249, 7.57125], + [-12.184583, 7.57125], + [-12.179583, 7.579583], + [-12.172917, 7.57875], + [-12.170416, 7.575416], + [-12.168901, 7.574912], + [-12.168998, 7.575258], + [-12.162917, 7.574583], + [-12.160687, 7.566412], + [-12.153035, 7.566164], + [-12.152512, 7.567158], + [-12.148534, 7.567158], + [-12.147046, 7.564584], + [-12.142083, 7.564583], + [-12.1418, 7.562611], + [-12.136474, 7.56261], + [-12.132568, 7.555845], + [-12.129815, 7.555845], + [-12.128899, 7.5597], + [-12.1265, 7.564799], + [-12.125199, 7.568], + [-12.123299, 7.5716], + [-12.122499, 7.574], + [-12.121399, 7.5791], + [-12.1192, 7.583499], + [-12.118, 7.586699], + [-12.1156, 7.590899], + [-12.1135, 7.595099], + [-12.1102, 7.599299], + [-12.1089, 7.6013], + [-12.108299, 7.6036], + [-12.1075, 7.610099], + [-12.1064, 7.613399], + [-12.100999, 7.6245], + [-12.1003, 7.6284], + [-12.100399, 7.632399], + [-12.100999, 7.634999], + [-12.103299, 7.639399], + [-12.1047, 7.6426], + [-12.107999, 7.646499], + [-12.111999, 7.649499], + [-12.1182, 7.652], + [-12.1229, 7.6535], + [-12.128599, 7.655099], + [-12.141799, 7.656799], + [-12.152999, 7.660999], + [-12.1563, 7.661699], + [-12.1596, 7.661299], + [-12.170299, 7.6569], + [-12.1738, 7.656099], + [-12.1811, 7.6556], + [-12.1854, 7.656], + [-12.188299, 7.656699], + [-12.19019, 7.657559], + [-12.190972, 7.656521], + [-12.191073, 7.656201], + [-12.190757, 7.654746], + [-12.189357, 7.652779], + [-12.188858, 7.652667], + [-12.187634, 7.65279], + [-12.1871, 7.652568], + [-12.185974, 7.651464], + [-12.185108, 7.649189], + [-12.183961, 7.646833], + [-12.183559, 7.644277], + [-12.183269, 7.643389], + [-12.182207, 7.642171], + [-12.182237, 7.641886], + [-12.182995, 7.640747], + [-12.183756, 7.639914], + [-12.183953, 7.637809], + [-12.184588, 7.637486], + [-12.185007, 7.637084], + [-12.183315, 7.637083], + [-12.183816, 7.635572], + [-12.183988, 7.633722], + [-12.18399, 7.633722], + [-12.185298, 7.634702], + [-12.185854, 7.634164], + [-12.18627, 7.632761], + [-12.18627, 7.631663], + [-12.186704, 7.630621], + [-12.188532, 7.629479], + [-12.189973, 7.627604], + [-12.190695, 7.62613], + [-12.19065, 7.625957], + [-12.19002, 7.6257], + [-12.188799, 7.623423], + [-12.187345, 7.621694], + [-12.186973, 7.620888], + [-12.185898, 7.621425], + [-12.185897, 7.621425], + [-12.185619, 7.620728], + [-12.185682, 7.619006], + [-12.184423, 7.615052], + [-12.184387, 7.614585], + [-12.184388, 7.614584], + [-12.184582, 7.614583], + [-12.185416, 7.613749], + [-12.185416, 7.610768], + [-12.184185, 7.608405], + [-12.184187, 7.60789], + [-12.183934, 7.607116], + [-12.183186, 7.606051], + [-12.182548, 7.603845], + [-12.182304, 7.602628], + [-12.180524, 7.602271], + [-12.18056, 7.59875], + [-12.181998, 7.598749], + [-12.182839, 7.596478], + [-12.184014, 7.595013], + [-12.185181, 7.592532], + [-12.185823, 7.591678], + [-12.186415, 7.59118], + [-12.187088, 7.590995], + [-12.189323, 7.592085], + [-12.191343, 7.592338], + [-12.191758, 7.592513], + [-12.192053, 7.592943], + [-12.192405, 7.594656], + [-12.194553, 7.596814], + [-12.196519, 7.596767], + [-12.199833, 7.596156], + [-12.20087, 7.596176], + [-12.201606, 7.596487], + [-12.201771, 7.595833], + [-12.202227, 7.596071], + [-12.202857, 7.596567], + [-12.203301, 7.597307], + [-12.20431, 7.597926], + [-12.206079, 7.597933], + [-12.206832, 7.598122], + [-12.207363, 7.598595], + [-12.207728, 7.599286], + [-12.207601, 7.600545], + [-12.207711, 7.601861], + [-12.207989, 7.602317], + [-12.209121, 7.603287], + [-12.209514, 7.604041], + [-12.210582, 7.605016], + [-12.212618, 7.60555], + [-12.212903, 7.605497], + [-12.213369, 7.604988], + [-12.214112, 7.603788], + [-12.214817, 7.60301], + [-12.217637, 7.603341], + [-12.219342, 7.602971], + [-12.220476, 7.603488], + [-12.221767, 7.603367], + [-12.223585, 7.601577], + [-12.225644, 7.600236], + [-12.227282, 7.599881], + [-12.228069, 7.600014], + [-12.229525, 7.600842], + [-12.231945, 7.603219], + [-12.232082, 7.602981] + ] + ], + "type": "Polygon" + }, + "id": 563, + "properties": { + "cc:admin:id": ["42"], + "cc:oBld:total": 2600, + "cc:pop:fifteen-to-twenty-four": 4570.279587488965, + "cc:pop:grid3-total": 20140.96340482847, + "cc:pop:kontur-total": 25801.53004659916, + "cc:pop:men": 12272.868476027612, + "cc:pop:sixty-plus": 1853.420018885421, + "cc:pop:total": 25720.053039379665, + "cc:pop:under-five": 4289.159391401826, + "cc:pop:women": 13447.184563352052, + "cc:pop:women-fiften-to-forty-nine": 6481.57944720523, + "cc:pop:wp-total": 19875.106361114336, + "cc:pop:wp-total-UN": 23039.64425864032, + "cc:id": "563", + "cc:Name": "UBC Under 5", + "cc:site": [-12.1676, 7.605], + "user:parentName": "Jong", + "user:code": "OU_197388", + "user:orgUnitId": "PdGktj8bAML", + "user:level": "4", + "user:parentId": "VCtF1DbspR5" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.132082, 8.185416], + [-12.132082, 8.182083], + [-12.126249, 8.170417], + [-12.122083, 8.17125], + [-12.120416, 8.173749], + [-12.117916, 8.170417], + [-12.113749, 8.169583], + [-12.107916, 8.162917], + [-12.107082, 8.162916], + [-12.099583, 8.162084], + [-12.098749, 8.16125], + [-12.09375, 8.160417], + [-12.094583, 8.15375], + [-12.096967, 8.153749], + [-12.093803, 8.152523], + [-12.091239, 8.151116], + [-12.087713, 8.148138], + [-12.085199, 8.145244], + [-12.083236, 8.142207], + [-12.082431, 8.141587], + [-12.081046, 8.140717], + [-12.078038, 8.139514], + [-12.076256, 8.139002], + [-12.075559, 8.139074], + [-12.075138, 8.139478], + [-12.074524, 8.140694], + [-12.07281, 8.145468], + [-12.072641, 8.146478], + [-12.072777, 8.14828], + [-12.073339, 8.149578], + [-12.077032, 8.155121], + [-12.080589, 8.161859], + [-12.081592, 8.164553], + [-12.081962, 8.166488], + [-12.081009, 8.166726], + [-12.081008, 8.166726], + [-12.080436, 8.164319], + [-12.079721, 8.162112], + [-12.078955, 8.160427], + [-12.075449, 8.154582], + [-12.074056, 8.152491], + [-12.067083, 8.154583], + [-12.065417, 8.154583], + [-12.062082, 8.15125], + [-12.057916, 8.15375], + [-12.053241, 8.155086], + [-12.053091, 8.157494], + [-12.052943, 8.158749], + [-12.04625, 8.158749], + [-12.043749, 8.15625], + [-12.039583, 8.154583], + [-12.03875, 8.15375], + [-12.038841, 8.153012], + [-12.034451, 8.153011], + [-12.030545, 8.146246], + [-12.026353, 8.146246], + [-12.027916, 8.150417], + [-12.01125, 8.15375], + [-12.012081, 8.155416], + [-12.00875, 8.155417], + [-12.007082, 8.157083], + [-11.99375, 8.155417], + [-11.994582, 8.15875], + [-11.992916, 8.162916], + [-11.989583, 8.162083], + [-11.98625, 8.159584], + [-11.986246, 8.159584], + [-11.9861, 8.166299], + [-11.9856, 8.170299], + [-11.9832, 8.176599], + [-11.982699, 8.1795], + [-11.9826, 8.1825], + [-11.982899, 8.196899], + [-11.9826, 8.201899], + [-11.981999, 8.2047], + [-11.979799, 8.2101], + [-11.979399, 8.214], + [-11.9793, 8.221199], + [-11.979099, 8.2242], + [-11.978499, 8.2271], + [-11.976399, 8.2324], + [-11.975899, 8.2362], + [-11.9756, 8.241999], + [-11.9749, 8.245699], + [-11.9728, 8.250999], + [-11.971599, 8.2561], + [-11.9692, 8.261199], + [-11.9679, 8.264399], + [-11.965499, 8.2686], + [-11.962, 8.276299], + [-11.961399, 8.279], + [-11.9612, 8.283], + [-11.961399, 8.299399], + [-11.961699, 8.302399], + [-11.9624, 8.3053], + [-11.9646, 8.3106], + [-11.9653, 8.3155], + [-11.965499, 8.324599], + [-11.965799, 8.328499], + [-11.9665, 8.3313], + [-11.968499, 8.335699], + [-11.968999, 8.3383], + [-11.968599, 8.342599], + [-11.966499, 8.3469], + [-11.9609, 8.359899], + [-11.9637, 8.3611], + [-11.9707, 8.364699], + [-11.975, 8.365399], + [-11.980199, 8.3647], + [-11.984699, 8.3663], + [-11.987999, 8.3689], + [-11.9937, 8.377199], + [-11.9982, 8.373099], + [-12.0036, 8.367699], + [-12.0093, 8.364099], + [-12.021, 8.357999], + [-12.026799, 8.3539], + [-12.032199, 8.3507], + [-12.036299, 8.347], + [-12.039899, 8.342799], + [-12.0442, 8.332999], + [-12.048999, 8.3247], + [-12.0529, 8.318999], + [-12.054399, 8.315199], + [-12.054499, 8.311], + [-12.0527, 8.3072], + [-12.049899, 8.304099], + [-12.046499, 8.301699], + [-12.0403, 8.2993], + [-12.0371, 8.297399], + [-12.034799, 8.294699], + [-12.032, 8.2896], + [-12.030699, 8.284099], + [-12.029599, 8.271999], + [-12.026799, 8.261299], + [-12.0265, 8.2561], + [-12.0272, 8.2529], + [-12.0299, 8.2496], + [-12.033699, 8.2478], + [-12.0366, 8.2474], + [-12.0411, 8.2474], + [-12.045599, 8.247999], + [-12.0485, 8.2489], + [-12.0522, 8.2513], + [-12.05849, 8.257083], + [-12.067082, 8.257083], + [-12.069582, 8.254583], + [-12.062917, 8.24625], + [-12.062917, 8.24375], + [-12.067916, 8.243749], + [-12.069583, 8.232917], + [-12.079582, 8.235416], + [-12.081889, 8.23484], + [-12.084582, 8.239554], + [-12.084583, 8.232917], + [-12.086249, 8.227917], + [-12.089582, 8.225417], + [-12.092082, 8.225416], + [-12.092083, 8.224583], + [-12.095416, 8.212084], + [-12.098749, 8.207917], + [-12.103749, 8.207916], + [-12.10375, 8.206241], + [-12.103983, 8.205835], + [-12.10375, 8.205428], + [-12.10375, 8.202916], + [-12.113749, 8.19875], + [-12.120416, 8.197916], + [-12.119583, 8.185417], + [-12.132082, 8.185416] + ] + ], + "type": "Polygon" + }, + "id": 564, + "properties": { + "cc:admin:id": ["60"], + "cc:oBld:total": 1173, + "cc:pop:fifteen-to-twenty-four": 1959.2054617631975, + "cc:pop:grid3-total": 11629.859415153533, + "cc:pop:kontur-total": 11080.275775726443, + "cc:pop:men": 5250.035003639102, + "cc:pop:sixty-plus": 756.5291559922341, + "cc:pop:total": 11071.07724385147, + "cc:pop:under-five": 1804.5496043800451, + "cc:pop:women": 5821.042240212373, + "cc:pop:women-fiften-to-forty-nine": 2792.6932416414793, + "cc:pop:wp-total": 9840.414474186528, + "cc:pop:wp-total-UN": 11402.886440679145, + "cc:id": "564", + "cc:Name": "UMC Clinic Taiama", + "cc:site": [-12.0601, 8.2029], + "user:parentName": "Kori", + "user:code": "OU_246996", + "user:orgUnitId": "Qw7c6Ckb0XC", + "user:level": "4", + "user:parentId": "nV3OkyzF4US" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.184799, 8.552299], + [-11.1847, 8.5302], + [-11.184499, 8.527099], + [-11.1839, 8.5231], + [-11.181599, 8.517199], + [-11.180799, 8.512999], + [-11.1804, 8.5063], + [-11.1797, 8.5035], + [-11.1775, 8.4992], + [-11.176099, 8.495999], + [-11.1738, 8.4916], + [-11.172199, 8.485799], + [-11.1683, 8.4774], + [-11.166, 8.473099], + [-11.1653, 8.4693], + [-11.1652, 8.4663], + [-11.165399, 8.4624], + [-11.165999, 8.4592], + [-11.1597, 8.4582], + [-11.157499, 8.457499], + [-11.155599, 8.456299], + [-11.151199, 8.452899], + [-11.145799, 8.449899], + [-11.142999, 8.447599], + [-11.137199, 8.442499], + [-11.134099, 8.440699], + [-11.128199, 8.439099], + [-11.1253, 8.437099], + [-11.1213, 8.4305], + [-11.1187, 8.4279], + [-11.115799, 8.425699], + [-11.111799, 8.423799], + [-11.108999, 8.421599], + [-11.1036, 8.4166], + [-11.100599, 8.414499], + [-11.0935, 8.411], + [-11.0899, 8.4103], + [-11.084699, 8.41], + [-11.071199, 8.410199], + [-11.065, 8.409599], + [-11.0593, 8.4072], + [-11.0558, 8.4064], + [-11.0512, 8.4062], + [-11.047599, 8.4064], + [-11.0454, 8.406999], + [-11.043399, 8.408], + [-11.041199, 8.4098], + [-11.0352, 8.415899], + [-11.0325, 8.418399], + [-11.029499, 8.4206], + [-11.025299, 8.4228], + [-11.021399, 8.4261], + [-11.014699, 8.4328], + [-11.0125, 8.434499], + [-11.0104, 8.435599], + [-11.008299, 8.4361], + [-11.003, 8.436599], + [-11.0004, 8.437199], + [-10.995099, 8.4394], + [-10.990699, 8.4399], + [-10.9814, 8.440099], + [-10.980392, 8.440306], + [-10.977499, 8.4409], + [-10.9718, 8.4435], + [-10.9747, 8.4479], + [-10.9786, 8.452], + [-10.9818, 8.4542], + [-10.985, 8.4555], + [-10.989299, 8.457899], + [-10.9932, 8.4597], + [-10.9965, 8.4623], + [-11.004299, 8.469799], + [-11.007033, 8.472533], + [-11.008827, 8.472534], + [-11.012733, 8.479299], + [-11.020545, 8.4793], + [-11.023241, 8.483969], + [-11.022083, 8.485417], + [-11.022917, 8.495416], + [-11.025417, 8.495416], + [-11.034582, 8.49125], + [-11.034583, 8.496249], + [-11.037083, 8.49875], + [-11.041249, 8.502083], + [-11.039583, 8.505417], + [-11.039583, 8.510416], + [-11.040417, 8.512916], + [-11.046249, 8.515417], + [-11.046249, 8.517084], + [-11.044583, 8.522083], + [-11.04375, 8.522916], + [-11.048749, 8.526249], + [-11.049583, 8.530416], + [-11.052083, 8.53125], + [-11.056249, 8.540417], + [-11.05625, 8.54125], + [-11.058749, 8.549583], + [-11.05875, 8.552916], + [-11.062851, 8.552916], + [-11.062428, 8.552213], + [-11.061599, 8.549376], + [-11.06158, 8.549259], + [-11.062295, 8.549267], + [-11.06553, 8.549467], + [-11.06553, 8.549469], + [-11.06375, 8.55125], + [-11.06375, 8.552916], + [-11.064583, 8.555416], + [-11.067082, 8.555417], + [-11.069583, 8.557916], + [-11.072082, 8.557917], + [-11.072857, 8.559076], + [-11.072928, 8.559017], + [-11.074172, 8.559116], + [-11.074638, 8.559007], + [-11.074978, 8.558711], + [-11.07498, 8.558711], + [-11.075416, 8.559584], + [-11.075416, 8.562083], + [-11.072917, 8.56375], + [-11.072917, 8.565416], + [-11.076249, 8.567916], + [-11.077083, 8.570416], + [-11.079583, 8.569584], + [-11.082916, 8.572916], + [-11.082917, 8.574583], + [-11.083504, 8.574877], + [-11.082786, 8.575283], + [-11.083226, 8.575889], + [-11.083126, 8.57642], + [-11.083348, 8.576645], + [-11.083438, 8.577087], + [-11.084021, 8.57753], + [-11.083992, 8.577873], + [-11.08436, 8.578715], + [-11.084852, 8.579393], + [-11.08566, 8.579951], + [-11.085978, 8.580319], + [-11.084583, 8.58125], + [-11.084744, 8.581731], + [-11.085046, 8.581861], + [-11.085798, 8.582677], + [-11.085797, 8.582679], + [-11.085295, 8.5827], + [-11.085032, 8.582597], + [-11.085417, 8.583749], + [-11.087803, 8.58375], + [-11.087768, 8.584129], + [-11.089582, 8.584584], + [-11.09125, 8.590416], + [-11.09375, 8.592916], + [-11.095416, 8.592917], + [-11.095417, 8.593749], + [-11.098749, 8.594583], + [-11.102916, 8.592917], + [-11.104583, 8.592083], + [-11.109583, 8.582917], + [-11.119582, 8.582084], + [-11.123749, 8.585416], + [-11.124583, 8.589583], + [-11.127082, 8.591249], + [-11.127217, 8.591918], + [-11.131898, 8.591918], + [-11.135804, 8.585153], + [-11.132605, 8.57961], + [-11.13125, 8.577916], + [-11.132083, 8.566249], + [-11.134357, 8.564431], + [-11.134358, 8.564432], + [-11.134273, 8.564916], + [-11.134365, 8.565483], + [-11.134975, 8.565976], + [-11.135057, 8.566147], + [-11.138466, 8.566147], + [-11.140333, 8.562917], + [-11.145416, 8.562917], + [-11.147251, 8.564384], + [-11.143618, 8.558089], + [-11.147523, 8.551324], + [-11.155335, 8.551323], + [-11.159242, 8.544558], + [-11.167054, 8.544557], + [-11.170961, 8.537793], + [-11.172791, 8.537793], + [-11.174583, 8.539583], + [-11.184699, 8.539584], + [-11.184799, 8.552299] + ] + ], + "type": "Polygon" + }, + "id": 565, + "properties": { + "cc:admin:id": ["100"], + "cc:oBld:total": 1352, + "cc:pop:fifteen-to-twenty-four": 1658.9181604081464, + "cc:pop:grid3-total": 10264.382693773507, + "cc:pop:kontur-total": 9166.108162398577, + "cc:pop:men": 4929.380881990876, + "cc:pop:sixty-plus": 507.28688960843976, + "cc:pop:total": 8889.09717839924, + "cc:pop:under-five": 1462.8788424935371, + "cc:pop:women": 3959.7162964083604, + "cc:pop:women-fiften-to-forty-nine": 1963.835023221942, + "cc:pop:wp-total": 7319.5345758733, + "cc:pop:wp-total-UN": 8486.455239782503, + "cc:id": "565", + "cc:Name": "UMC Mitchener Memorial Maternity & Health Centre", + "cc:site": [-11.09, 8.5439], + "user:parentName": "Nimikoro", + "user:code": "OU_233397", + "user:orgUnitId": "g5A3hiJlwmI", + "user:level": "4", + "user:parentId": "DmaLM8WYmWv" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.881149, 7.672816], + [-11.880416, 7.672084], + [-11.879582, 7.672083], + [-11.87625, 7.671249], + [-11.877916, 7.659584], + [-11.876249, 7.657917], + [-11.875416, 7.657916], + [-11.874406, 7.655897], + [-11.874071, 7.656059], + [-11.872917, 7.653749], + [-11.873749, 7.65125], + [-11.864583, 7.651249], + [-11.86375, 7.649584], + [-11.866249, 7.647083], + [-11.867916, 7.640417], + [-11.868749, 7.63875], + [-11.867082, 7.637917], + [-11.852083, 7.638749], + [-11.851249, 7.63625], + [-11.84125, 7.635416], + [-11.841249, 7.624108], + [-11.840199, 7.6241], + [-11.8373, 7.624299], + [-11.834899, 7.6248], + [-11.832999, 7.6256], + [-11.827099, 7.6286], + [-11.8245, 7.631099], + [-11.821799, 7.6358], + [-11.819499, 7.6388], + [-11.815599, 7.6431], + [-11.8133, 7.646099], + [-11.809999, 7.6519], + [-11.8059, 7.656499], + [-11.80333, 7.659106], + [-11.807916, 7.660417], + [-11.807917, 7.672083], + [-11.810417, 7.665418], + [-11.812916, 7.66875], + [-11.812917, 7.673749], + [-11.814637, 7.67332], + [-11.814638, 7.673321], + [-11.814593, 7.673749], + [-11.822082, 7.67375], + [-11.825416, 7.675416], + [-11.825416, 7.679323], + [-11.824948, 7.679538], + [-11.823125, 7.67948], + [-11.822083, 7.682084], + [-11.824583, 7.688749], + [-11.827082, 7.689583], + [-11.82875, 7.68875], + [-11.838749, 7.690416], + [-11.845416, 7.690417], + [-11.847039, 7.691498], + [-11.847461, 7.689947], + [-11.848336, 7.688622], + [-11.848587, 7.687259], + [-11.849406, 7.685942], + [-11.852917, 7.688749], + [-11.859582, 7.688749], + [-11.863749, 7.686249], + [-11.867015, 7.682168], + [-11.867016, 7.682168], + [-11.867233, 7.682827], + [-11.873111, 7.682292], + [-11.871547, 7.679582], + [-11.875452, 7.672817], + [-11.881149, 7.672816] + ] + ], + "type": "Polygon" + }, + "id": 566, + "properties": { + "cc:admin:id": ["78"], + "cc:oBld:total": 21, + "cc:pop:fifteen-to-twenty-four": 1051.5336422084592, + "cc:pop:grid3-total": 5332.159408459913, + "cc:pop:kontur-total": 5771.0856714941265, + "cc:pop:men": 3009.327347775652, + "cc:pop:sixty-plus": 400.2178459761606, + "cc:pop:total": 5806.486774125317, + "cc:pop:under-five": 945.6981253678682, + "cc:pop:women": 2797.1594263496654, + "cc:pop:women-fiften-to-forty-nine": 1325.94292374997, + "cc:pop:wp-total": 5736.917826639725, + "cc:pop:wp-total-UN": 6649.761331934101, + "cc:id": "566", + "cc:Name": "Upper Saama MCHP", + "cc:site": [-11.8618, 7.6677], + "user:parentName": "Lugbu", + "user:code": "OU_1069", + "user:orgUnitId": "Ykx8Ovui7g0", + "user:level": "4", + "user:parentId": "kU8vhUkAGaT" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.134824, 8.088094], + [-11.134799, 8.087699], + [-11.134199, 8.083699], + [-11.131499, 8.076499], + [-11.130799, 8.070699], + [-11.129499, 8.066999], + [-11.124999, 8.0597], + [-11.119699, 8.063], + [-11.117599, 8.0636], + [-11.1135, 8.063899], + [-11.1086, 8.063199], + [-11.1008, 8.0593], + [-11.098399, 8.056899], + [-11.0953, 8.0515], + [-11.093699, 8.049399], + [-11.090499, 8.046099], + [-11.0855, 8.0413], + [-11.0816, 8.0384], + [-11.078399, 8.036999], + [-11.074099, 8.034599], + [-11.0656, 8.0309], + [-11.0597, 8.0295], + [-11.054299, 8.027299], + [-11.048399, 8.025799], + [-11.046099, 8.024399], + [-11.043899, 8.022599], + [-11.0345, 8.0133], + [-11.033456, 8.012216], + [-11.02375, 8.00875], + [-11.020089, 8.013873], + [-11.018623, 8.012143], + [-11.01746, 8.011643], + [-11.016843, 8.010995], + [-11.016249, 8.00625], + [-11.014012, 8.002335], + [-11.013515, 8.005869], + [-11.013452, 8.008449], + [-11.011645, 8.010991], + [-11.010147, 8.013141], + [-11.007082, 8.00625], + [-10.995417, 8.006249], + [-10.9955, 8.005401], + [-10.991813, 8.011789], + [-10.988871, 8.01179], + [-10.986499, 8.0162], + [-10.9803, 8.0246], + [-10.980699, 8.041799], + [-10.981, 8.0458], + [-10.9819, 8.0491], + [-10.9878, 8.0609], + [-10.9884, 8.0634], + [-10.988699, 8.0676], + [-10.988599, 8.0707], + [-10.9878, 8.074699], + [-10.985499, 8.0801], + [-10.984, 8.085799], + [-10.982099, 8.0902], + [-10.9815, 8.093199], + [-10.9813, 8.1004], + [-10.981782, 8.127233], + [-10.98875, 8.12375], + [-10.991249, 8.12375], + [-10.992917, 8.125416], + [-10.996249, 8.125417], + [-10.996249, 8.136249], + [-10.994583, 8.137917], + [-10.99625, 8.143749], + [-11.003749, 8.144583], + [-11.007082, 8.138749], + [-11.007083, 8.132084], + [-11.009582, 8.132917], + [-11.01125, 8.134583], + [-11.017916, 8.134584], + [-11.017981, 8.134679], + [-11.023468, 8.134679], + [-11.027374, 8.127914], + [-11.032083, 8.127913], + [-11.032917, 8.123751], + [-11.039583, 8.130416], + [-11.042916, 8.127916], + [-11.04375, 8.117084], + [-11.049883, 8.118446], + [-11.050322, 8.117646], + [-11.05141, 8.116411], + [-11.047917, 8.112916], + [-11.050416, 8.103749], + [-11.049583, 8.09875], + [-11.050416, 8.097084], + [-11.052917, 8.097084], + [-11.055416, 8.099583], + [-11.055417, 8.101249], + [-11.057083, 8.10125], + [-11.058177, 8.102891], + [-11.0583, 8.102851], + [-11.05875, 8.103749], + [-11.060417, 8.10375], + [-11.067917, 8.111249], + [-11.068749, 8.110416], + [-11.069096, 8.109375], + [-11.069098, 8.109375], + [-11.069226, 8.109462], + [-11.072083, 8.10375], + [-11.074582, 8.10125], + [-11.081267, 8.101249], + [-11.08355, 8.097296], + [-11.081802, 8.094265], + [-11.085707, 8.0875], + [-11.088749, 8.0875], + [-11.092082, 8.089583], + [-11.094583, 8.077084], + [-11.101958, 8.076412], + [-11.102024, 8.076276], + [-11.10204, 8.07625], + [-11.102083, 8.076249], + [-11.103117, 8.074493], + [-11.104275, 8.072982], + [-11.108428, 8.072981], + [-11.112335, 8.066216], + [-11.120146, 8.066216], + [-11.122716, 8.070666], + [-11.119583, 8.074584], + [-11.119583, 8.081249], + [-11.129583, 8.088749], + [-11.134824, 8.088094] + ] + ], + "type": "Polygon" + }, + "id": 567, + "properties": { + "cc:admin:id": ["75"], + "cc:oBld:total": 1307, + "cc:pop:fifteen-to-twenty-four": 4108.31070311612, + "cc:pop:grid3-total": 15692.088362572411, + "cc:pop:kontur-total": 21285.218254106203, + "cc:pop:men": 11954.230865036683, + "cc:pop:sixty-plus": 1256.0726533988309, + "cc:pop:total": 21359.871798741573, + "cc:pop:under-five": 3310.7144440827187, + "cc:pop:women": 9405.640933704892, + "cc:pop:women-fiften-to-forty-nine": 4677.87929463727, + "cc:pop:wp-total": 18552.28628476467, + "cc:pop:wp-total-UN": 21492.996916224118, + "cc:id": "567", + "cc:Name": "Vaahun MCHP", + "cc:site": [-11.0037, 8.0275], + "user:parentName": "Nongowa", + "user:code": "OU_222720", + "user:orgUnitId": "up9gjdODKXE", + "user:level": "4", + "user:parentId": "KIUCimTXf8Q" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.449107, 7.530893], + [-11.448316, 7.528915], + [-11.448436, 7.528852], + [-11.447917, 7.52625], + [-11.447083, 7.524584], + [-11.445417, 7.523749], + [-11.445416, 7.517084], + [-11.443971, 7.515638], + [-11.442628, 7.51559], + [-11.441956, 7.5157], + [-11.437886, 7.517781], + [-11.437084, 7.517963], + [-11.437083, 7.517962], + [-11.437082, 7.517083], + [-11.420417, 7.514583], + [-11.42004, 7.51082], + [-11.426379, 7.510819], + [-11.429846, 7.504814], + [-11.429583, 7.504583], + [-11.432916, 7.498749], + [-11.432083, 7.490417], + [-11.430416, 7.48625], + [-11.429882, 7.48625], + [-11.429215, 7.487197], + [-11.429193, 7.487278], + [-11.427917, 7.487917], + [-11.427082, 7.48875], + [-11.421804, 7.490069], + [-11.420498, 7.489434], + [-11.421249, 7.480417], + [-11.41625, 7.482083], + [-11.410416, 7.479583], + [-11.40875, 7.478749], + [-11.407916, 7.476249], + [-11.39875, 7.470417], + [-11.397916, 7.469584], + [-11.39375, 7.470417], + [-11.392916, 7.478749], + [-11.38387, 7.478749], + [-11.383517, 7.478061], + [-11.382763, 7.476428], + [-11.381833, 7.475089], + [-11.379451, 7.470992], + [-11.378527, 7.469597], + [-11.37692, 7.466497], + [-11.375724, 7.465015], + [-11.375384, 7.464892], + [-11.375015, 7.464284], + [-11.371111, 7.471044], + [-11.367624, 7.471045], + [-11.367721, 7.471146], + [-11.367403, 7.471328], + [-11.36688, 7.47079], + [-11.366757, 7.470961], + [-11.366756, 7.470961], + [-11.366376, 7.47026], + [-11.365965, 7.470351], + [-11.365349, 7.46966], + [-11.364548, 7.469476], + [-11.363841, 7.469567], + [-11.363665, 7.469923], + [-11.36342, 7.469629], + [-11.363122, 7.470188], + [-11.363419, 7.470383], + [-11.362609, 7.471115], + [-11.364754, 7.471471], + [-11.365472, 7.47251], + [-11.365082, 7.472632], + [-11.36386, 7.471584], + [-11.363451, 7.471625], + [-11.363909, 7.472484], + [-11.363909, 7.472485], + [-11.363131, 7.471726], + [-11.361796, 7.471757], + [-11.360555, 7.472022], + [-11.360452, 7.472346], + [-11.36134, 7.47252], + [-11.361341, 7.472521], + [-11.359466, 7.472877], + [-11.359465, 7.47303], + [-11.35753, 7.473667], + [-11.356857, 7.474206], + [-11.357057, 7.474562], + [-11.357298, 7.474344], + [-11.357477, 7.47438], + [-11.35717, 7.474742], + [-11.357339, 7.475149], + [-11.357145, 7.475662], + [-11.355809, 7.476695], + [-11.355059, 7.476926], + [-11.355199, 7.4872], + [-11.354799, 7.5002], + [-11.353699, 7.5053], + [-11.352599, 7.5086], + [-11.350199, 7.5141], + [-11.3488, 7.518599], + [-11.347099, 7.529], + [-11.345299, 7.5346], + [-11.342899, 7.5401], + [-11.3412, 7.545999], + [-11.340699, 7.5503], + [-11.3406, 7.5547], + [-11.340699, 7.559099], + [-11.341299, 7.563399], + [-11.342599, 7.567299], + [-11.3457, 7.5726], + [-11.35, 7.5811], + [-11.3536, 7.5911], + [-11.356999, 7.602599], + [-11.3587, 7.605299], + [-11.3615, 7.6075], + [-11.366699, 7.609799], + [-11.371199, 7.610099], + [-11.378799, 7.6076], + [-11.381999, 7.6059], + [-11.385399, 7.6048], + [-11.393299, 7.604399], + [-11.4037, 7.594099], + [-11.4079, 7.590599], + [-11.412899, 7.5874], + [-11.4164, 7.583899], + [-11.423799, 7.5729], + [-11.4266, 7.567699], + [-11.430799, 7.5611], + [-11.4355, 7.556599], + [-11.4374, 7.553399], + [-11.440299, 7.5438], + [-11.4416, 7.540499], + [-11.445, 7.5344], + [-11.448599, 7.5311], + [-11.449107, 7.530893] + ] + ], + "type": "Polygon" + }, + "id": 568, + "properties": { + "cc:admin:id": ["5"], + "cc:oBld:total": 477, + "cc:pop:fifteen-to-twenty-four": 2185.535883693558, + "cc:pop:grid3-total": 10046.474451769218, + "cc:pop:kontur-total": 13064.582506189965, + "cc:pop:men": 5879.94323577202, + "cc:pop:sixty-plus": 903.8890470028815, + "cc:pop:total": 12090.598544669227, + "cc:pop:under-five": 2046.6198012719035, + "cc:pop:women": 6210.655308897205, + "cc:pop:women-fiften-to-forty-nine": 2949.7525105170425, + "cc:pop:wp-total": 11140.02856124346, + "cc:pop:wp-total-UN": 12908.69705490181, + "cc:id": "568", + "cc:Name": "Vaama MCHP", + "cc:site": [-11.4124, 7.5426], + "user:parentName": "Barri", + "user:code": "OU_260430", + "user:orgUnitId": "GjJjES51GvK", + "user:level": "4", + "user:parentId": "RzKeCma9qb1" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [-12.476473, 7.61308], + [-12.4754, 7.6082], + [-12.4751, 7.608199], + [-12.475099, 7.6049], + [-12.4746, 7.603699], + [-12.474599, 7.6001], + [-12.473199, 7.599599], + [-12.4729, 7.5963], + [-12.472399, 7.595999], + [-12.472099, 7.5932], + [-12.4704, 7.590999], + [-12.470099, 7.5874], + [-12.469, 7.586299], + [-12.468799, 7.584], + [-12.468199, 7.583799], + [-12.4679, 7.5821], + [-12.467899, 7.5788], + [-12.4671, 7.576499], + [-12.4671, 7.571501], + [-12.467101, 7.5715], + [-12.468999, 7.571799], + [-12.468999, 7.5679], + [-12.465401, 7.567599], + [-12.4663, 7.5668], + [-12.468799, 7.566799], + [-12.469, 7.5638], + [-12.469599, 7.563199], + [-12.469299, 7.561], + [-12.468499, 7.5593], + [-12.4671, 7.558999], + [-12.466799, 7.5579], + [-12.465399, 7.556499], + [-12.465099, 7.5554], + [-12.4626, 7.5529], + [-12.460699, 7.553199], + [-12.459599, 7.5507], + [-12.458999, 7.550399], + [-12.457399, 7.5465], + [-12.456799, 7.546199], + [-12.4549, 7.5418], + [-12.454299, 7.541499], + [-12.4526, 7.5376], + [-12.451479, 7.53583], + [-12.450984, 7.536685], + [-12.443173, 7.536684], + [-12.441356, 7.533539], + [-12.437969, 7.535814], + [-12.426254, 7.539451], + [-12.417713, 7.54279], + [-12.399239, 7.540707], + [-12.396786, 7.545439], + [-12.395861, 7.547825], + [-12.398855, 7.548458], + [-12.397373, 7.550591], + [-12.396151, 7.552951], + [-12.395541, 7.554545], + [-12.394905, 7.555866], + [-12.39467, 7.557152], + [-12.394692, 7.558205], + [-12.39545, 7.559104], + [-12.396925, 7.560461], + [-12.397813, 7.560853], + [-12.398535, 7.560945], + [-12.399517, 7.560749], + [-12.400154, 7.56011], + [-12.40123, 7.558988], + [-12.403929, 7.554313], + [-12.405882, 7.554312], + [-12.407546, 7.553602], + [-12.409067, 7.553527], + [-12.410129, 7.5536], + [-12.411504, 7.553998], + [-12.414224, 7.558707], + [-12.418983, 7.558708], + [-12.41966, 7.559142], + [-12.42094, 7.561498], + [-12.421073, 7.562417], + [-12.42088, 7.563046], + [-12.420424, 7.56414], + [-12.420021, 7.564582], + [-12.419261, 7.565315], + [-12.4183, 7.565832], + [-12.416782, 7.566501], + [-12.415312, 7.567135], + [-12.414588, 7.567608], + [-12.414443, 7.567964], + [-12.414083, 7.56806], + [-12.413038, 7.568453], + [-12.410597, 7.569511], + [-12.409349, 7.570324], + [-12.409037, 7.57052], + [-12.407083, 7.567917], + [-12.406758, 7.567917], + [-12.405714, 7.569697], + [-12.404976, 7.571603], + [-12.404735, 7.573415], + [-12.405124, 7.574772], + [-12.405499, 7.575439], + [-12.406154, 7.576043], + [-12.407159, 7.576865], + [-12.408182, 7.577586], + [-12.409441, 7.578341], + [-12.410365, 7.578996], + [-12.411001, 7.579802], + [-12.411236, 7.580724], + [-12.410281, 7.580891], + [-12.409526, 7.580624], + [-12.408568, 7.579985], + [-12.407411, 7.579197], + [-12.406086, 7.578627], + [-12.404815, 7.578161], + [-12.401559, 7.577827], + [-12.400325, 7.57808], + [-12.398491, 7.578682], + [-12.397336, 7.579129], + [-12.396759, 7.580072], + [-12.396131, 7.581749], + [-12.396009, 7.583136], + [-12.39656, 7.584526], + [-12.3969, 7.586203], + [-12.396844, 7.586535], + [-12.398343, 7.586836], + [-12.39833, 7.586935], + [-12.398044, 7.58766], + [-12.397832, 7.588071], + [-12.397421, 7.588549], + [-12.397019, 7.588852], + [-12.396489, 7.589297], + [-12.395066, 7.590255], + [-12.394364, 7.59058], + [-12.393575, 7.590787], + [-12.39202, 7.59136], + [-12.391065, 7.591632], + [-12.390796, 7.591782], + [-12.390094, 7.592264], + [-12.387968, 7.59433], + [-12.387669, 7.595274], + [-12.387579, 7.595801], + [-12.387798, 7.597062], + [-12.388023, 7.599296], + [-12.388488, 7.600956], + [-12.388549, 7.601177], + [-12.388736, 7.601873], + [-12.389219, 7.602826], + [-12.38936, 7.603736], + [-12.389255, 7.604367], + [-12.389149, 7.604622], + [-12.38898, 7.604798], + [-12.388726, 7.605151], + [-12.388283, 7.605441], + [-12.387176, 7.60541], + [-12.384398, 7.604057], + [-12.383816, 7.60359], + [-12.383068, 7.601863], + [-12.382391, 7.601001], + [-12.381784, 7.600673], + [-12.380921, 7.600581], + [-12.380034, 7.600954], + [-12.378798, 7.601374], + [-12.377539, 7.60198], + [-12.376628, 7.602541], + [-12.375415, 7.602983], + [-12.374389, 7.60331], + [-12.373337, 7.603521], + [-12.372079, 7.604058], + [-12.371844, 7.604583], + [-12.369608, 7.604584], + [-12.369426, 7.605766], + [-12.369435, 7.605854], + [-12.369434, 7.605855], + [-12.367082, 7.602917], + [-12.362917, 7.602084], + [-12.359583, 7.605416], + [-12.359582, 7.605478], + [-12.359288, 7.605469], + [-12.358749, 7.607084], + [-12.354583, 7.609584], + [-12.352916, 7.612916], + [-12.342917, 7.609584], + [-12.340417, 7.609584], + [-12.339801, 7.615734], + [-12.334584, 7.615734], + [-12.330677, 7.608969], + [-12.322865, 7.608969], + [-12.319912, 7.614084], + [-12.319939, 7.614119], + [-12.320073, 7.614583], + [-12.31625, 7.614584], + [-12.312083, 7.617083], + [-12.312082, 7.615417], + [-12.309583, 7.612917], + [-12.30951, 7.6129], + [-12.307239, 7.608969], + [-12.299428, 7.608968], + [-12.29552, 7.602204], + [-12.289321, 7.602203], + [-12.292082, 7.598749], + [-12.292082, 7.594151], + [-12.291437, 7.593033], + [-12.283625, 7.593033], + [-12.279719, 7.599798], + [-12.271906, 7.599799], + [-12.271474, 7.600545], + [-12.27125, 7.600416], + [-12.272082, 7.59375], + [-12.270453, 7.593207], + [-12.27004, 7.59365], + [-12.268848, 7.594018], + [-12.268098, 7.593519], + [-12.267389, 7.592455], + [-12.26714, 7.591166], + [-12.267152, 7.589106], + [-12.267042, 7.588529], + [-12.266768, 7.588129], + [-12.265899, 7.5888], + [-12.2635, 7.589999], + [-12.258, 7.5915], + [-12.2544, 7.594699], + [-12.2533, 7.5989], + [-12.253599, 7.619899], + [-12.253799, 7.624099], + [-12.2549, 7.628099], + [-12.2596, 7.6345], + [-12.260999, 7.6383], + [-12.260999, 7.641699], + [-12.2585, 7.647899], + [-12.256899, 7.6537], + [-12.2537, 7.661099], + [-12.2511, 7.665499], + [-12.2489, 7.669899], + [-12.244999, 7.6747], + [-12.2387, 7.680799], + [-12.237733, 7.681433], + [-12.232917, 7.68625], + [-12.232917, 7.692083], + [-12.242916, 7.693749], + [-12.249582, 7.691249], + [-12.252083, 7.68875], + [-12.257082, 7.689584], + [-12.259177, 7.6922], + [-12.260114, 7.691061], + [-12.260485, 7.690308], + [-12.260068, 7.688561], + [-12.259742, 7.688054], + [-12.257325, 7.686146], + [-12.257676, 7.685409], + [-12.261968, 7.676583], + [-12.262934, 7.674935], + [-12.263001, 7.674379], + [-12.26271, 7.671732], + [-12.262462, 7.670975], + [-12.261977, 7.670377], + [-12.261978, 7.670376], + [-12.262916, 7.670458], + [-12.262917, 7.672083], + [-12.271115, 7.672828], + [-12.270272, 7.671849], + [-12.270912, 7.671544], + [-12.272108, 7.672267], + [-12.272192, 7.671182], + [-12.272582, 7.670793], + [-12.273639, 7.671517], + [-12.275643, 7.674021], + [-12.275642, 7.674022], + [-12.27492, 7.674217], + [-12.27556, 7.674467], + [-12.276617, 7.674551], + [-12.277286, 7.675134], + [-12.27865, 7.674912], + [-12.279511, 7.675773], + [-12.279511, 7.675775], + [-12.278455, 7.67597], + [-12.278261, 7.676415], + [-12.278983, 7.676916], + [-12.278841, 7.677286], + [-12.279004, 7.677351], + [-12.28052, 7.674225], + [-12.28074, 7.673379], + [-12.280725, 7.672998], + [-12.280726, 7.672998], + [-12.283259, 7.674696], + [-12.284397, 7.675653], + [-12.284655, 7.676865], + [-12.285107, 7.677126], + [-12.288604, 7.679497], + [-12.290102, 7.681149], + [-12.29136, 7.682234], + [-12.291724, 7.682814], + [-12.292959, 7.683083], + [-12.293185, 7.682989], + [-12.293553, 7.680985], + [-12.294086, 7.679748], + [-12.294675, 7.67908], + [-12.295719, 7.678533], + [-12.296315, 7.677073], + [-12.297097, 7.677037], + [-12.297225, 7.676912], + [-12.297518, 7.676104], + [-12.297674, 7.675004], + [-12.29887, 7.675358], + [-12.301144, 7.675532], + [-12.30217, 7.67661], + [-12.30262, 7.677406], + [-12.302853, 7.678437], + [-12.303544, 7.679517], + [-12.303549, 7.680073], + [-12.303616, 7.680058], + [-12.303778, 7.679794], + [-12.303863, 7.679478], + [-12.303918, 7.678732], + [-12.30405, 7.678626], + [-12.304596, 7.678475], + [-12.304749, 7.678444], + [-12.304958, 7.678413], + [-12.304977, 7.678421], + [-12.305266, 7.678613], + [-12.305326, 7.67909], + [-12.305767, 7.679742], + [-12.306262, 7.679694], + [-12.307518, 7.678749], + [-12.307573, 7.678767], + [-12.307601, 7.678686], + [-12.30889, 7.678093], + [-12.312185, 7.677912], + [-12.314351, 7.67727], + [-12.314545, 7.677435], + [-12.315812, 7.677446], + [-12.31776, 7.677149], + [-12.319004, 7.678769], + [-12.319578, 7.679036], + [-12.320438, 7.68003], + [-12.322163, 7.6769], + [-12.323649, 7.677155], + [-12.324249, 7.677376], + [-12.324865, 7.677672], + [-12.325512, 7.678083], + [-12.326722, 7.678939], + [-12.327799, 7.680107], + [-12.328512, 7.681303], + [-12.329392, 7.684124], + [-12.330814, 7.682644], + [-12.331772, 7.680842], + [-12.333105, 7.67956], + [-12.334578, 7.677563], + [-12.335893, 7.676851], + [-12.336557, 7.676938], + [-12.337916, 7.67875], + [-12.337917, 7.687395], + [-12.341331, 7.69331], + [-12.342083, 7.704583], + [-12.34625, 7.707916], + [-12.351249, 7.70875], + [-12.350417, 7.714583], + [-12.353561, 7.717728], + [-12.354109, 7.717167], + [-12.354238, 7.716751], + [-12.354774, 7.716922], + [-12.356536, 7.718985], + [-12.356535, 7.718986], + [-12.356324, 7.718983], + [-12.355818, 7.719716], + [-12.360416, 7.721249], + [-12.361105, 7.719987], + [-12.36042, 7.720254], + [-12.359916, 7.718192], + [-12.356821, 7.717914], + [-12.356824, 7.7174], + [-12.35734, 7.717273], + [-12.35786, 7.716762], + [-12.359152, 7.716511], + [-12.359673, 7.716], + [-12.360707, 7.71562], + [-12.360843, 7.714592], + [-12.360458, 7.714203], + [-12.359943, 7.713942], + [-12.358653, 7.713805], + [-12.358918, 7.712777], + [-12.360461, 7.713688], + [-12.361234, 7.71382], + [-12.361237, 7.713307], + [-12.361239, 7.713306], + [-12.362527, 7.713442], + [-12.363815, 7.713965], + [-12.364841, 7.714098], + [-12.365199, 7.715021], + [-12.366065, 7.714411], + [-12.367262, 7.714359], + [-12.368254, 7.714029], + [-12.369172, 7.713798], + [-12.370369, 7.713774], + [-12.371616, 7.713875], + [-12.373094, 7.714308], + [-12.374241, 7.715455], + [-12.375157, 7.716626], + [-12.375997, 7.71795], + [-12.376889, 7.719096], + [-12.377449, 7.719427], + [-12.378391, 7.71958], + [-12.378698, 7.719607], + [-12.379793, 7.719912], + [-12.38071, 7.72004], + [-12.382008, 7.720217], + [-12.383638, 7.720522], + [-12.384225, 7.720829], + [-12.384988, 7.721669], + [-12.385003, 7.721683], + [-12.385377, 7.723554], + [-12.385403, 7.723582], + [-12.385462, 7.723761], + [-12.387216, 7.7242], + [-12.387585, 7.724913], + [-12.388171, 7.726322], + [-12.388729, 7.728606], + [-12.389069, 7.730652], + [-12.389552, 7.731315], + [-12.390134, 7.731756], + [-12.390872, 7.731638], + [-12.391348, 7.730836], + [-12.391851, 7.729727], + [-12.392224, 7.728188], + [-12.391634, 7.726348], + [-12.390846, 7.725235], + [-12.390617, 7.724037], + [-12.390516, 7.722561], + [-12.390771, 7.721364], + [-12.391381, 7.720345], + [-12.391968, 7.719658], + [-12.393144, 7.719678], + [-12.39476, 7.719302], + [-12.395117, 7.71893], + [-12.395164, 7.717378], + [-12.394975, 7.717076], + [-12.39498, 7.716346], + [-12.395661, 7.715113], + [-12.396397, 7.714364], + [-12.397231, 7.714141], + [-12.397904, 7.7141], + [-12.399004, 7.714507], + [-12.399656, 7.714813], + [-12.400818, 7.715588], + [-12.400499, 7.716963], + [-12.399705, 7.716841], + [-12.398829, 7.716394], + [-12.398075, 7.715986], + [-12.39675, 7.715579], + [-12.396282, 7.715966], + [-12.396261, 7.716801], + [-12.396342, 7.717941], + [-12.396627, 7.719164], + [-12.397219, 7.719938], + [-12.398747, 7.720326], + [-12.401865, 7.721305], + [-12.403964, 7.722466], + [-12.40814, 7.724971], + [-12.410931, 7.726989], + [-12.412011, 7.727457], + [-12.41295, 7.727681], + [-12.413805, 7.727478], + [-12.4143, 7.726984], + [-12.415699, 7.728848], + [-12.416593, 7.728411], + [-12.417748, 7.727007], + [-12.419028, 7.72529], + [-12.420306, 7.724043], + [-12.42118, 7.723512], + [-12.421898, 7.723948], + [-12.421774, 7.72448], + [-12.422211, 7.724697], + [-12.423147, 7.724573], + [-12.423553, 7.725104], + [-12.424082, 7.726071], + [-12.424332, 7.727475], + [-12.424457, 7.72916], + [-12.42452, 7.730503], + [-12.424831, 7.733903], + [-12.4253, 7.735994], + [-12.425332, 7.737336], + [-12.426173, 7.738741], + [-12.427017, 7.74002], + [-12.428577, 7.741301], + [-12.4302, 7.742143], + [-12.431979, 7.742891], + [-12.434778, 7.742604], + [-12.43747, 7.742455], + [-12.439063, 7.742143], + [-12.441902, 7.742173], + [-12.443899, 7.742081], + [-12.444092, 7.742144], + [-12.4446, 7.741899], + [-12.448099, 7.7415], + [-12.4494, 7.741542], + [-12.449253, 7.739221], + [-12.447614, 7.740744], + [-12.447612, 7.740744], + [-12.447485, 7.739684], + [-12.448532, 7.734813], + [-12.452013, 7.729125], + [-12.457205, 7.723874], + [-12.459909, 7.722959], + [-12.463171, 7.722215], + [-12.467869, 7.723171], + [-12.467916, 7.723202], + [-12.467916, 7.721342], + [-12.466714, 7.720837], + [-12.465512, 7.720559], + [-12.460691, 7.720335], + [-12.458606, 7.710725], + [-12.461892, 7.705598], + [-12.457605, 7.706244], + [-12.455015, 7.706325], + [-12.452992, 7.705516], + [-12.452351, 7.703762], + [-12.451937, 7.702623], + [-12.451522, 7.701536], + [-12.450434, 7.701018], + [-12.449037, 7.700967], + [-12.448986, 7.702053], + [-12.449347, 7.703088], + [-12.449762, 7.704021], + [-12.450072, 7.705418], + [-12.449711, 7.706454], + [-12.448829, 7.707387], + [-12.446966, 7.708525], + [-12.445672, 7.709457], + [-12.445049, 7.709836], + [-12.444738, 7.709295], + [-12.445258, 7.709043], + [-12.446137, 7.708267], + [-12.447069, 7.707594], + [-12.44824, 7.707085], + [-12.443448, 7.707084], + [-12.439543, 7.700319], + [-12.439768, 7.699927], + [-12.435668, 7.70022], + [-12.435668, 7.700218], + [-12.435673, 7.700216], + [-12.43125, 7.699583], + [-12.42875, 7.697084], + [-12.428717, 7.696923], + [-12.428333, 7.697489], + [-12.427428, 7.697742], + [-12.427424, 7.698256], + [-12.427167, 7.698254], + [-12.427169, 7.69774], + [-12.426395, 7.697734], + [-12.4265, 7.697579], + [-12.426914, 7.694261], + [-12.426158, 7.694256], + [-12.4259, 7.693998], + [-12.424388, 7.694099], + [-12.423576, 7.69437], + [-12.423442, 7.695142], + [-12.423565, 7.695914], + [-12.423564, 7.695915], + [-12.422278, 7.695392], + [-12.422412, 7.694621], + [-12.422155, 7.694361], + [-12.422029, 7.693846], + [-12.420738, 7.693967], + [-12.420477, 7.694223], + [-12.419961, 7.694349], + [-12.419685, 7.697178], + [-12.419301, 7.69692], + [-12.419303, 7.696405], + [-12.418791, 7.695628], + [-12.418542, 7.694083], + [-12.418158, 7.693436], + [-12.417386, 7.693174], + [-12.416351, 7.693424], + [-12.414805, 7.693158], + [-12.414292, 7.692382], + [-12.413136, 7.691731], + [-12.413098, 7.691304], + [-12.413905, 7.691327], + [-12.41375, 7.691249], + [-12.413749, 7.687917], + [-12.409583, 7.684584], + [-12.407917, 7.683749], + [-12.410416, 7.67375], + [-12.412082, 7.673749], + [-12.415071, 7.671359], + [-12.411895, 7.671358], + [-12.410415, 7.668794], + [-12.414201, 7.664954], + [-12.41553, 7.665186], + [-12.416764, 7.667801], + [-12.416901, 7.666773], + [-12.418089, 7.666478], + [-12.418323, 7.666265], + [-12.417427, 7.66523], + [-12.417186, 7.662396], + [-12.417522, 7.662152], + [-12.417141, 7.661489], + [-12.421046, 7.654724], + [-12.428859, 7.654723], + [-12.432765, 7.647958], + [-12.429635, 7.642537], + [-12.430208, 7.642713], + [-12.431802, 7.642488], + [-12.433199, 7.64326], + [-12.433749, 7.643331], + [-12.434217, 7.642814], + [-12.434128, 7.642036], + [-12.434744, 7.640701], + [-12.434062, 7.639719], + [-12.434372, 7.638133], + [-12.434091, 7.63669], + [-12.433443, 7.636186], + [-12.431607, 7.636566], + [-12.431418, 7.637303], + [-12.431161, 7.637628], + [-12.430941, 7.637586], + [-12.432765, 7.634427], + [-12.440577, 7.634426], + [-12.444217, 7.628123], + [-12.447749, 7.63011], + [-12.453653, 7.63011], + [-12.457559, 7.623345], + [-12.461266, 7.623344], + [-12.461318, 7.622333], + [-12.461715, 7.621675], + [-12.462144, 7.621335], + [-12.463859, 7.62126], + [-12.464578, 7.62127], + [-12.465212, 7.621419], + [-12.466031, 7.622195], + [-12.467065, 7.623187], + [-12.467637, 7.623588], + [-12.468183, 7.623737], + [-12.469074, 7.623355], + [-12.470062, 7.622525], + [-12.47122, 7.621738], + [-12.472797, 7.620782], + [-12.473312, 7.620557], + [-12.473709, 7.620175], + [-12.473964, 7.61922], + [-12.474137, 7.618013], + [-12.474374, 7.615784], + [-12.474835, 7.614571], + [-12.475296, 7.613795], + [-12.475705, 7.613294], + [-12.476292, 7.612884], + [-12.476473, 7.61308] + ] + ], + [ + [ + [-12.475099, 7.574599], + [-12.475099, 7.5735], + [-12.474299, 7.573499], + [-12.473799, 7.5721], + [-12.4729, 7.5721], + [-12.472399, 7.5746], + [-12.4713, 7.5774], + [-12.4715, 7.580399], + [-12.472599, 7.580099], + [-12.473499, 7.5788], + [-12.473999, 7.5754], + [-12.475099, 7.574599] + ] + ], + [ + [ + [-12.484599, 7.593799], + [-12.484599, 7.592099], + [-12.483799, 7.5896], + [-12.4826, 7.588199], + [-12.482599, 7.5865], + [-12.4818, 7.585999], + [-12.481299, 7.584], + [-12.480099, 7.583199], + [-12.479599, 7.5818], + [-12.4754, 7.584], + [-12.475399, 7.586499], + [-12.4743, 7.5885], + [-12.4743, 7.590999], + [-12.4757, 7.5957], + [-12.4776, 7.597599], + [-12.479899, 7.598199], + [-12.4804, 7.598999], + [-12.482399, 7.598999], + [-12.483199, 7.598199], + [-12.4832, 7.5963], + [-12.483799, 7.595999], + [-12.484, 7.594], + [-12.484599, 7.593799] + ] + ] + ], + "type": "MultiPolygon" + }, + "id": 569, + "properties": { + "cc:admin:id": ["39"], + "cc:oBld:total": 64, + "cc:pop:fifteen-to-twenty-four": 918.5840488766821, + "cc:pop:grid3-total": 4669.333274979482, + "cc:pop:kontur-total": 4891.646529967504, + "cc:pop:men": 2375.2864729796825, + "cc:pop:sixty-plus": 284.7254063834668, + "cc:pop:total": 4808.938043519787, + "cc:pop:under-five": 874.1492105738475, + "cc:pop:women": 2433.651570540104, + "cc:pop:women-fiften-to-forty-nine": 1199.248568941377, + "cc:pop:wp-total": 4905.33842628876, + "cc:pop:wp-total-UN": 5700.181758459022, + "cc:id": "569", + "cc:Name": "Victoria MCHP", + "cc:site": [-12.3309, 7.646], + "user:parentName": "Imperi", + "user:code": "OU_197419", + "user:orgUnitId": "dyn5pihalrJ", + "user:level": "4", + "user:parentId": "XEyIRFd9pct" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [ + [-11.568999, 6.962], + [-11.5679, 6.9613], + [-11.567899, 6.9604], + [-11.566499, 6.9596], + [-11.5651, 6.959599], + [-11.563999, 6.9587], + [-11.562599, 6.958699], + [-11.560699, 6.9574], + [-11.5571, 6.956499], + [-11.5538, 6.9543], + [-11.5526, 6.953999], + [-11.551299, 6.9529], + [-11.549599, 6.952899], + [-11.5438, 6.9504], + [-11.543499, 6.9499], + [-11.541, 6.949899], + [-11.539599, 6.9485], + [-11.5382, 6.9482], + [-11.536799, 6.9468], + [-11.5343, 6.945999], + [-11.533199, 6.9451], + [-11.5304, 6.944899], + [-11.528699, 6.944], + [-11.5276, 6.943999], + [-11.526299, 6.9429], + [-11.525099, 6.942899], + [-11.523199, 6.9415], + [-11.5212, 6.941299], + [-11.520399, 6.9404], + [-11.5182, 6.9396], + [-11.518199, 6.939], + [-11.515999, 6.9376], + [-11.514, 6.937099], + [-11.512899, 6.9363], + [-11.5113, 6.936299], + [-11.5093, 6.9354], + [-11.508999, 6.9346], + [-11.5071, 6.9338], + [-11.506199, 6.9326], + [-11.5046, 6.9321], + [-11.503799, 6.931], + [-11.5018, 6.930399], + [-11.501799, 6.9299], + [-11.5001, 6.9279], + [-11.499899, 6.9268], + [-11.4979, 6.924299], + [-11.497399, 6.9224], + [-11.495399, 6.922399], + [-11.493499, 6.921], + [-11.491499, 6.920699], + [-11.4893, 6.9199], + [-11.488499, 6.9188], + [-11.485699, 6.9178], + [-11.4777, 6.918199], + [-11.466699, 6.922099], + [-11.4615, 6.922199], + [-11.456999, 6.9176], + [-11.4531, 6.9208], + [-11.452399, 6.925399], + [-11.449199, 6.929899], + [-11.442699, 6.9332], + [-11.434199, 6.937099], + [-11.427799, 6.937099], + [-11.4213, 6.9358], + [-11.4155, 6.9325], + [-11.4167, 6.945499], + [-11.424499, 6.954599], + [-11.428026, 6.960704], + [-11.431893, 6.965154], + [-11.433458, 6.968784], + [-11.432691, 6.970789], + [-11.431823, 6.972287], + [-11.430756, 6.972739], + [-11.428634, 6.972456], + [-11.424294, 6.970607], + [-11.422917, 6.970613], + [-11.422917, 6.978749], + [-11.423556, 6.979549], + [-11.420692, 6.98451], + [-11.422083, 6.98625], + [-11.422082, 6.996249], + [-11.420417, 6.99875], + [-11.422082, 7.00125], + [-11.422082, 7.010416], + [-11.417083, 7.015417], + [-11.421249, 7.019584], + [-11.421249, 7.028749], + [-11.417813, 7.032186], + [-11.417696, 7.032124], + [-11.416608, 7.03113], + [-11.414752, 7.033912], + [-11.415024, 7.033913], + [-11.41893, 7.040678], + [-11.421249, 7.040679], + [-11.42125, 7.042916], + [-11.422916, 7.045416], + [-11.42125, 7.047084], + [-11.43125, 7.057083], + [-11.436249, 7.059583], + [-11.43375, 7.06375], + [-11.436693, 7.072583], + [-11.434583, 7.073295], + [-11.434583, 7.073749], + [-11.43875, 7.077083], + [-11.447396, 7.077084], + [-11.447691, 7.077512], + [-11.445297, 7.08166], + [-11.449202, 7.088425], + [-11.449582, 7.088426], + [-11.449583, 7.093749], + [-11.452082, 7.096249], + [-11.452083, 7.097084], + [-11.455417, 7.100416], + [-11.462916, 7.102917], + [-11.46375, 7.107916], + [-11.466249, 7.112084], + [-11.465417, 7.114584], + [-11.465417, 7.118749], + [-11.468749, 7.122084], + [-11.46625, 7.127084], + [-11.46625, 7.132916], + [-11.468749, 7.139583], + [-11.477082, 7.139584], + [-11.477083, 7.140416], + [-11.477917, 7.14125], + [-11.479582, 7.144584], + [-11.479583, 7.148132], + [-11.480258, 7.148133], + [-11.484164, 7.154897], + [-11.491976, 7.154897], + [-11.493006, 7.153116], + [-11.501249, 7.153749], + [-11.504856, 7.150144], + [-11.507602, 7.154897], + [-11.515414, 7.154898], + [-11.518722, 7.160626], + [-11.5188, 7.160499], + [-11.524899, 7.1557], + [-11.528199, 7.1519], + [-11.530699, 7.1473], + [-11.535099, 7.1415], + [-11.535999, 7.1395], + [-11.536699, 7.1362], + [-11.536799, 7.133299], + [-11.5366, 7.1156], + [-11.5363, 7.1107], + [-11.535799, 7.107899], + [-11.5334, 7.1021], + [-11.533397, 7.102084], + [-11.532699, 7.097999], + [-11.5324, 7.0903], + [-11.5318, 7.0861], + [-11.5294, 7.0803], + [-11.5289, 7.077799], + [-11.5292, 7.074], + [-11.5312, 7.069099], + [-11.5328, 7.063199], + [-11.534, 7.060799], + [-11.537899, 7.055899], + [-11.5392, 7.052599], + [-11.539499, 7.0481], + [-11.5388, 7.0442], + [-11.5362, 7.0386], + [-11.5357, 7.0359], + [-11.5355, 7.032099], + [-11.536099, 7.0272], + [-11.5375, 7.023599], + [-11.5411, 7.017999], + [-11.5422, 7.014399], + [-11.543099, 7.0066], + [-11.543799, 7.0029], + [-11.5455, 6.998299], + [-11.547099, 6.9928], + [-11.548599, 6.9895], + [-11.554799, 6.9798], + [-11.5598, 6.9695], + [-11.568999, 6.962] + ] + ], + [ + [ + [-11.534899, 6.9426], + [-11.5321, 6.9415], + [-11.531499, 6.9407], + [-11.5299, 6.940699], + [-11.5274, 6.9396], + [-11.527099, 6.9388], + [-11.5257, 6.938499], + [-11.525099, 6.9376], + [-11.523499, 6.937099], + [-11.519299, 6.9343], + [-11.5182, 6.934299], + [-11.517099, 6.9332], + [-11.515699, 6.932899], + [-11.514299, 6.9315], + [-11.513499, 6.931499], + [-11.511499, 6.9301], + [-11.5104, 6.930099], + [-11.509299, 6.929], + [-11.5082, 6.929], + [-11.5088, 6.930699], + [-11.5118, 6.931], + [-11.5132, 6.9321], + [-11.5146, 6.933999], + [-11.5157, 6.9343], + [-11.5165, 6.935699], + [-11.5193, 6.936], + [-11.5201, 6.9365], + [-11.521, 6.938199], + [-11.5229, 6.9379], + [-11.524299, 6.938799], + [-11.5246, 6.9396], + [-11.528499, 6.941499], + [-11.5299, 6.9415], + [-11.531799, 6.9424], + [-11.5326, 6.943199], + [-11.5337, 6.9432], + [-11.534599, 6.943999], + [-11.534899, 6.9426] + ] + ] + ], + "type": "MultiPolygon" + }, + "id": 570, + "properties": { + "cc:admin:id": ["127"], + "cc:oBld:total": 1207, + "cc:pop:fifteen-to-twenty-four": 3872.0555563057133, + "cc:pop:grid3-total": 7791.050061272447, + "cc:pop:kontur-total": 23726.412509102465, + "cc:pop:men": 10244.337355904654, + "cc:pop:sixty-plus": 1480.0417056740032, + "cc:pop:total": 21851.237323785106, + "cc:pop:under-five": 3690.3539447875983, + "cc:pop:women": 11606.899967880443, + "cc:pop:women-fiften-to-forty-nine": 5514.894900653527, + "cc:pop:wp-total": 17606.329885363943, + "cc:pop:wp-total-UN": 20411.361482615954, + "cc:id": "570", + "cc:Name": "Wai MCHP", + "cc:site": [-11.4542, 7.0472], + "user:parentName": "Soro-Gbeima", + "user:code": "OU_260412", + "user:orgUnitId": "zCSWBz2pyMd", + "user:level": "4", + "user:parentId": "d9iMR1MpuIO" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.50519, 7.419653], + [-11.502899, 7.414499], + [-11.502399, 7.410699], + [-11.501999, 7.404899], + [-11.501199, 7.401299], + [-11.499037, 7.396222], + [-11.497916, 7.399583], + [-11.495417, 7.402083], + [-11.48875, 7.402917], + [-11.489582, 7.412917], + [-11.488749, 7.41375], + [-11.479706, 7.41786], + [-11.477629, 7.414266], + [-11.470932, 7.414266], + [-11.469582, 7.412917], + [-11.462917, 7.412917], + [-11.462916, 7.418749], + [-11.452965, 7.419515], + [-11.452649, 7.418284], + [-11.451249, 7.41875], + [-11.447083, 7.422916], + [-11.442082, 7.412917], + [-11.43875, 7.412917], + [-11.430693, 7.418776], + [-11.430209, 7.423122], + [-11.43693, 7.428899], + [-11.433546, 7.431424], + [-11.430994, 7.432972], + [-11.426249, 7.429584], + [-11.422917, 7.430417], + [-11.421249, 7.435417], + [-11.41625, 7.444583], + [-11.412917, 7.445417], + [-11.410416, 7.447916], + [-11.407917, 7.447917], + [-11.409582, 7.450417], + [-11.409582, 7.457917], + [-11.404582, 7.462916], + [-11.40338, 7.463431], + [-11.401971, 7.463432], + [-11.401506, 7.464235], + [-11.39875, 7.465417], + [-11.397917, 7.469583], + [-11.39875, 7.470417], + [-11.407916, 7.476249], + [-11.40875, 7.478749], + [-11.410416, 7.479583], + [-11.41625, 7.482083], + [-11.421249, 7.480417], + [-11.420498, 7.489434], + [-11.421804, 7.490069], + [-11.427082, 7.488749], + [-11.427917, 7.487917], + [-11.429193, 7.487277], + [-11.429215, 7.487197], + [-11.429881, 7.486249], + [-11.442082, 7.486249], + [-11.442083, 7.479888], + [-11.44267, 7.480081], + [-11.442381, 7.478905], + [-11.445416, 7.477084], + [-11.44875, 7.481249], + [-11.451249, 7.481249], + [-11.45125, 7.470417], + [-11.456249, 7.470417], + [-11.460417, 7.474583], + [-11.470416, 7.474583], + [-11.472916, 7.472083], + [-11.469583, 7.462084], + [-11.476249, 7.460417], + [-11.48125, 7.465416], + [-11.482916, 7.465416], + [-11.487082, 7.457083], + [-11.487083, 7.45375], + [-11.487047, 7.453713], + [-11.488749, 7.453712], + [-11.48875, 7.446249], + [-11.492082, 7.442084], + [-11.494583, 7.440417], + [-11.503174, 7.440416], + [-11.5029, 7.4373], + [-11.503299, 7.4347], + [-11.505299, 7.4303], + [-11.5059, 7.427499], + [-11.505999, 7.423599], + [-11.5053, 7.4199], + [-11.50519, 7.419653] + ] + ], + "type": "Polygon" + }, + "id": 571, + "properties": { + "cc:admin:id": ["5"], + "cc:oBld:total": 7, + "cc:pop:fifteen-to-twenty-four": 1014.0664266166782, + "cc:pop:grid3-total": 2875.8164060016124, + "cc:pop:kontur-total": 5920.465903382001, + "cc:pop:men": 2693.445856567312, + "cc:pop:sixty-plus": 428.2562261501048, + "cc:pop:total": 5553.043018873075, + "cc:pop:under-five": 953.8649817892853, + "cc:pop:women": 2859.5971623057626, + "cc:pop:women-fiften-to-forty-nine": 1349.172973759633, + "cc:pop:wp-total": 5265.876197930037, + "cc:pop:wp-total-UN": 6100.143680809381, + "cc:id": "571", + "cc:Name": "Waiima MCHP", + "cc:site": [-11.4531, 7.4467], + "user:parentName": "Barri", + "user:code": "OU_260431", + "user:orgUnitId": "YPSCWmJ3TyN", + "user:level": "4", + "user:parentId": "RzKeCma9qb1" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.134619, 9.681627], + [-11.130713, 9.674861], + [-11.128185, 9.674861], + [-11.128008, 9.675379], + [-11.127545, 9.675421], + [-11.126924, 9.675112], + [-11.12666, 9.676082], + [-11.126314, 9.676214], + [-11.125535, 9.675058], + [-11.124988, 9.674861], + [-11.1229, 9.67486], + [-11.121623, 9.672647], + [-11.121558, 9.672624], + [-11.120782, 9.672683], + [-11.120306, 9.672903], + [-11.119599, 9.672741], + [-11.118423, 9.673793], + [-11.116592, 9.673948], + [-11.115784, 9.673687], + [-11.115306, 9.673905], + [-11.114407, 9.673383], + [-11.112153, 9.672891], + [-11.112041, 9.6729], + [-11.111704, 9.672316], + [-11.11561, 9.66555], + [-11.111703, 9.658785], + [-11.103891, 9.658784], + [-11.099985, 9.652019], + [-11.09383, 9.652019], + [-11.093749, 9.652083], + [-11.084583, 9.652082], + [-11.081249, 9.64875], + [-11.07889, 9.647963], + [-11.076547, 9.652018], + [-11.068735, 9.652018], + [-11.064829, 9.645254], + [-11.068735, 9.638488], + [-11.064828, 9.631722], + [-11.057017, 9.631721], + [-11.05311, 9.624956], + [-11.045297, 9.624955], + [-11.041392, 9.61819], + [-11.045297, 9.611424], + [-11.041561, 9.60495], + [-11.044582, 9.600416], + [-11.039583, 9.587083], + [-11.043749, 9.582082], + [-11.042916, 9.572916], + [-11.03375, 9.569583], + [-11.02625, 9.585416], + [-11.023768, 9.584708], + [-11.023647, 9.584883], + [-11.023199, 9.58587], + [-11.022961, 9.586022], + [-11.023005, 9.586573], + [-11.022748, 9.587051], + [-11.022084, 9.587706], + [-11.020006, 9.588607], + [-11.019753, 9.588979], + [-11.016378, 9.583135], + [-11.017916, 9.580469], + [-11.017916, 9.579583], + [-11.017083, 9.579583], + [-11.016932, 9.580186], + [-11.01693, 9.580187], + [-11.015136, 9.57708], + [-11.007325, 9.57708], + [-11.006079, 9.579237], + [-11.006077, 9.579238], + [-11.005417, 9.577916], + [-11.005416, 9.567083], + [-10.99875, 9.567083], + [-10.997083, 9.568749], + [-10.995416, 9.562917], + [-10.992916, 9.560417], + [-10.989583, 9.559583], + [-10.982113, 9.566305], + [-10.980721, 9.565161], + [-10.979738, 9.563044], + [-10.979732, 9.561895], + [-10.979282, 9.56065], + [-10.979277, 9.560624], + [-10.97125, 9.562082], + [-10.971249, 9.561249], + [-10.963749, 9.55375], + [-10.95875, 9.556249], + [-10.957083, 9.555417], + [-10.947671, 9.566397], + [-10.947669, 9.566396], + [-10.947878, 9.56493], + [-10.948475, 9.564287], + [-10.948536, 9.56302], + [-10.948953, 9.561715], + [-10.948711, 9.560458], + [-10.948563, 9.560072], + [-10.948037, 9.560333], + [-10.947196, 9.56069], + [-10.947053, 9.560489], + [-10.947251, 9.559849], + [-10.947258, 9.559838], + [-10.947629, 9.559486], + [-10.945567, 9.555917], + [-10.941569, 9.555917], + [-10.941955, 9.560553], + [-10.94209, 9.560614], + [-10.942361, 9.560947], + [-10.941259, 9.561491], + [-10.940013, 9.562064], + [-10.939112, 9.562694], + [-10.938384, 9.563564], + [-10.937155, 9.563173], + [-10.935513, 9.562015], + [-10.934005, 9.562094], + [-10.933212, 9.56194], + [-10.932622, 9.561624], + [-10.932547, 9.560977], + [-10.933392, 9.559754], + [-10.92875, 9.560417], + [-10.923749, 9.564582], + [-10.918749, 9.559583], + [-10.912083, 9.559583], + [-10.912083, 9.566249], + [-10.911249, 9.572082], + [-10.907381, 9.57131], + [-10.907381, 9.571308], + [-10.907717, 9.571016], + [-10.907912, 9.570417], + [-10.90625, 9.570416], + [-10.906249, 9.569583], + [-10.902917, 9.56875], + [-10.902916, 9.567917], + [-10.897083, 9.567083], + [-10.896249, 9.571249], + [-10.892917, 9.57125], + [-10.890416, 9.572082], + [-10.887082, 9.571249], + [-10.882083, 9.56625], + [-10.876156, 9.572177], + [-10.8781, 9.5738], + [-10.8955, 9.593899], + [-10.904099, 9.5943], + [-10.910999, 9.601899], + [-10.914899, 9.632999], + [-10.920899, 9.641699], + [-10.9214, 9.65], + [-10.9262, 9.654599], + [-10.932899, 9.656399], + [-10.944099, 9.6562], + [-10.954699, 9.657899], + [-10.962799, 9.6641], + [-10.967899, 9.6737], + [-10.9709, 9.6979], + [-10.977399, 9.713999], + [-10.983799, 9.724999], + [-11.003999, 9.750799], + [-11.0126, 9.7593], + [-11.038699, 9.797699], + [-11.047099, 9.805899], + [-11.0503, 9.802499], + [-11.056599, 9.7948], + [-11.0585, 9.792099], + [-11.0618, 9.785299], + [-11.0627, 9.782999], + [-11.064, 9.7771], + [-11.065399, 9.7748], + [-11.0678, 9.771999], + [-11.076199, 9.7637], + [-11.079099, 9.7605], + [-11.0809, 9.757899], + [-11.0828, 9.753999], + [-11.0849, 9.751299], + [-11.0902, 9.745699], + [-11.092099, 9.742599], + [-11.093399, 9.7369], + [-11.0955, 9.731699], + [-11.0972, 9.7249], + [-11.099, 9.721999], + [-11.1014, 9.719299], + [-11.107599, 9.7133], + [-11.111399, 9.7104], + [-11.1147, 9.708999], + [-11.1189, 9.706599], + [-11.1221, 9.705299], + [-11.1264, 9.702899], + [-11.133399, 9.700299], + [-11.133559, 9.693323], + [-11.130714, 9.688392], + [-11.134619, 9.681627] + ] + ], + "type": "Polygon" + }, + "id": 572, + "properties": { + "cc:admin:id": ["95"], + "cc:oBld:total": 956, + "cc:pop:fifteen-to-twenty-four": 2149.3706658029564, + "cc:pop:grid3-total": 9418.326141955715, + "cc:pop:kontur-total": 12674.618590253962, + "cc:pop:men": 5573.9274210387, + "cc:pop:sixty-plus": 742.6810502212211, + "cc:pop:total": 11894.03086384116, + "cc:pop:under-five": 1943.7599350412097, + "cc:pop:women": 6320.103442802464, + "cc:pop:women-fiften-to-forty-nine": 3072.847950633125, + "cc:pop:wp-total": 9015.737346429181, + "cc:pop:wp-total-UN": 10453.888614994601, + "cc:id": "572", + "cc:Name": "Walia MCHP", + "cc:site": [-10.9602, 9.6549], + "user:parentName": "Mongo", + "user:code": "OU_226247", + "user:orgUnitId": "m0PiiU5BteW", + "user:level": "4", + "user:parentId": "OTFepb1k9Db" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.697916, 8.503591], + [-12.697916, 8.497917], + [-12.694583, 8.497916], + [-12.689211, 8.495231], + [-12.689211, 8.49523], + [-12.689313, 8.495049], + [-12.687917, 8.494584], + [-12.684582, 8.490417], + [-12.682917, 8.490417], + [-12.682658, 8.490514], + [-12.67986, 8.490513], + [-12.677627, 8.486647], + [-12.67736, 8.487385], + [-12.676854, 8.487758], + [-12.676545, 8.488593], + [-12.675596, 8.488759], + [-12.674373, 8.487902], + [-12.673446, 8.48771], + [-12.672868, 8.487332], + [-12.670978, 8.487929], + [-12.670795, 8.487763], + [-12.670708, 8.487293], + [-12.670338, 8.486931], + [-12.670244, 8.486011], + [-12.670472, 8.485347], + [-12.670852, 8.484987], + [-12.671599, 8.484661], + [-12.672615, 8.484492], + [-12.671892, 8.483105], + [-12.671323, 8.481396], + [-12.670411, 8.478866], + [-12.670117, 8.478865], + [-12.669471, 8.478551], + [-12.670346, 8.4775], + [-12.664847, 8.477499], + [-12.664293, 8.47654], + [-12.664583, 8.476249], + [-12.666249, 8.470417], + [-12.655921, 8.467466], + [-12.655179, 8.469801], + [-12.654483, 8.471255], + [-12.653121, 8.472346], + [-12.651643, 8.472941], + [-12.647083, 8.464584], + [-12.64625, 8.464583], + [-12.646509, 8.4625], + [-12.642467, 8.462499], + [-12.638561, 8.455734], + [-12.635251, 8.455733], + [-12.635416, 8.45375], + [-12.626445, 8.453749], + [-12.626572, 8.453503], + [-12.626664, 8.452961], + [-12.626422, 8.451586], + [-12.625416, 8.451249], + [-12.622916, 8.447917], + [-12.61625, 8.447917], + [-12.614582, 8.448749], + [-12.61125, 8.44875], + [-12.609582, 8.447917], + [-12.604351, 8.447263], + [-12.605699, 8.4505], + [-12.605499, 8.4546], + [-12.603599, 8.457399], + [-12.5999, 8.459499], + [-12.589, 8.461199], + [-12.580899, 8.464], + [-12.5731, 8.4643], + [-12.580499, 8.476299], + [-12.5823, 8.4802], + [-12.5847, 8.4845], + [-12.5861, 8.4876], + [-12.591699, 8.494999], + [-12.593699, 8.498699], + [-12.5958, 8.5012], + [-12.597899, 8.502599], + [-12.600999, 8.503899], + [-12.6038, 8.5056], + [-12.6078, 8.5072], + [-12.612199, 8.509599], + [-12.6161, 8.5113], + [-12.6197, 8.5133], + [-12.6281, 8.5172], + [-12.633999, 8.518599], + [-12.6394, 8.5209], + [-12.6442, 8.5214], + [-12.652999, 8.521499], + [-12.6566, 8.5222], + [-12.666099, 8.527099], + [-12.671899, 8.532199], + [-12.675099, 8.534699], + [-12.680199, 8.537499], + [-12.681265, 8.538734], + [-12.683507, 8.536492], + [-12.683601, 8.536586], + [-12.68407, 8.536687], + [-12.687281, 8.531125], + [-12.683376, 8.52436], + [-12.684672, 8.522113], + [-12.68386, 8.521288], + [-12.683599, 8.520778], + [-12.683769, 8.520486], + [-12.691581, 8.520485], + [-12.695487, 8.513719], + [-12.693086, 8.509558], + [-12.693616, 8.504245], + [-12.694118, 8.50417], + [-12.695358, 8.504167], + [-12.6978, 8.5036], + [-12.697916, 8.503591] + ] + ], + "type": "Polygon" + }, + "id": 573, + "properties": { + "cc:admin:id": ["62"], + "cc:oBld:total": 280, + "cc:pop:fifteen-to-twenty-four": 931.5130224402739, + "cc:pop:grid3-total": 7671.647596792588, + "cc:pop:kontur-total": 5272.103070319003, + "cc:pop:men": 2427.7892820197467, + "cc:pop:sixty-plus": 300.4370935127961, + "cc:pop:total": 5161.694046018377, + "cc:pop:under-five": 853.6554228461086, + "cc:pop:women": 2733.9047639986316, + "cc:pop:women-fiften-to-forty-nine": 1391.78994089407, + "cc:pop:wp-total": 4550.691049353884, + "cc:pop:wp-total-UN": 5278.706111357885, + "cc:id": "573", + "cc:Name": "Warima MCHP", + "cc:site": [-12.6382, 8.4899], + "user:parentName": "Koya", + "user:code": "OU_254971", + "user:orgUnitId": "DXegteybeb5", + "user:level": "4", + "user:parentId": "pRHGAROvuyI" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.955386, 8.172577], + [-10.954899, 8.171299], + [-10.9533, 8.1691], + [-10.9507, 8.1664], + [-10.946099, 8.162699], + [-10.9397, 8.1593], + [-10.9377, 8.156299], + [-10.9379, 8.153099], + [-10.9402, 8.150299], + [-10.9464, 8.147399], + [-10.9486, 8.1472], + [-10.952916, 8.14904], + [-10.952916, 8.13875], + [-10.942916, 8.138749], + [-10.94202, 8.138391], + [-10.940261, 8.136809], + [-10.94002, 8.136292], + [-10.940191, 8.136004], + [-10.940749, 8.135816], + [-10.941304, 8.135471], + [-10.94125, 8.135417], + [-10.93875, 8.134584], + [-10.93125, 8.137083], + [-10.930417, 8.137916], + [-10.927083, 8.135417], + [-10.925416, 8.130417], + [-10.919583, 8.125417], + [-10.919583, 8.125184], + [-10.919987, 8.125222], + [-10.921517, 8.123208], + [-10.921808, 8.122212], + [-10.921495, 8.121784], + [-10.921545, 8.121478], + [-10.921767, 8.121122], + [-10.922397, 8.12072], + [-10.923197, 8.120472], + [-10.923378, 8.119937], + [-10.923303, 8.119181], + [-10.923597, 8.118831], + [-10.923905, 8.118758], + [-10.924104, 8.11892], + [-10.924262, 8.119378], + [-10.924594, 8.118881], + [-10.924351, 8.118278], + [-10.92445, 8.118163], + [-10.925152, 8.118362], + [-10.925433, 8.118612], + [-10.925728, 8.1186], + [-10.92606, 8.118325], + [-10.926519, 8.11735], + [-10.927671, 8.116994], + [-10.929226, 8.11595], + [-10.929189, 8.115814], + [-10.929598, 8.115685], + [-10.930792, 8.114787], + [-10.93117, 8.114464], + [-10.929582, 8.112084], + [-10.924583, 8.109583], + [-10.923412, 8.106657], + [-10.922699, 8.1077], + [-10.919899, 8.1128], + [-10.915099, 8.1201], + [-10.912399, 8.1265], + [-10.910499, 8.1328], + [-10.9081, 8.141999], + [-10.9062, 8.145399], + [-10.902799, 8.148799], + [-10.8962, 8.152099], + [-10.8935, 8.154299], + [-10.891, 8.1595], + [-10.8904, 8.1636], + [-10.8904, 8.177099], + [-10.889899, 8.1814], + [-10.888399, 8.185099], + [-10.8826, 8.1914], + [-10.8803, 8.196499], + [-10.8766, 8.216099], + [-10.8765, 8.2195], + [-10.876999, 8.2252], + [-10.8736, 8.231299], + [-10.871199, 8.2365], + [-10.868099, 8.2418], + [-10.866699, 8.2451], + [-10.865199, 8.25], + [-10.8648, 8.253], + [-10.8648, 8.2603], + [-10.8656, 8.263699], + [-10.8681, 8.267099], + [-10.873199, 8.269899], + [-10.877299, 8.270799], + [-10.8846, 8.270999], + [-10.891899, 8.2703], + [-10.8961, 8.268799], + [-10.9009, 8.265199], + [-10.907399, 8.2587], + [-10.9126, 8.251599], + [-10.915, 8.245999], + [-10.9188, 8.2344], + [-10.921799, 8.2306], + [-10.923799, 8.2271], + [-10.9254, 8.223599], + [-10.926699, 8.2196], + [-10.927799, 8.2176], + [-10.931399, 8.2149], + [-10.9348, 8.211899], + [-10.937999, 8.2087], + [-10.940199, 8.2059], + [-10.942, 8.201899], + [-10.946399, 8.1934], + [-10.950199, 8.1887], + [-10.9516, 8.186499], + [-10.9554, 8.178999], + [-10.955999, 8.175599], + [-10.9557, 8.1734], + [-10.955386, 8.172577] + ] + ], + "type": "Polygon" + }, + "id": 574, + "properties": { + "cc:admin:id": ["86"], + "cc:oBld:total": 1868, + "cc:pop:fifteen-to-twenty-four": 2680.8547950727807, + "cc:pop:grid3-total": 15138.51804724625, + "cc:pop:kontur-total": 13795.941024421334, + "cc:pop:men": 6952.709108875394, + "cc:pop:sixty-plus": 825.1789735522269, + "cc:pop:total": 13888.484265172574, + "cc:pop:under-five": 2190.0558756786113, + "cc:pop:women": 6935.775156297181, + "cc:pop:women-fiften-to-forty-nine": 3418.252419039128, + "cc:pop:wp-total": 11304.991005549886, + "cc:pop:wp-total-UN": 13116.2463810703, + "cc:id": "574", + "cc:Name": "Weima CHC", + "cc:site": [-10.9459, 8.1675], + "user:parentName": "Lower Bambara", + "user:code": "OU_222671", + "user:orgUnitId": "CKkE4GBJekz", + "user:level": "4", + "user:parentId": "hdEuw2ugkVF" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.189583, 8.440416], + [-13.190416, 8.437916], + [-13.189582, 8.432084], + [-13.188749, 8.43125], + [-13.185416, 8.431249], + [-13.182916, 8.42625], + [-13.17875, 8.429584], + [-13.178749, 8.430712], + [-13.173029, 8.430712], + [-13.173029, 8.430711], + [-13.173629, 8.430349], + [-13.173478, 8.429786], + [-13.173335, 8.429242], + [-13.173354, 8.429135], + [-13.172396, 8.429311], + [-13.171373, 8.429839], + [-13.170158, 8.427737], + [-13.169782, 8.427918], + [-13.169505, 8.428173], + [-13.168964, 8.428641], + [-13.168772, 8.428798], + [-13.168418, 8.429104], + [-13.1674, 8.430012], + [-13.16683, 8.430353], + [-13.166199, 8.430725], + [-13.165736, 8.431134], + [-13.165491, 8.4314], + [-13.165122, 8.43166], + [-13.164549, 8.432005], + [-13.164547, 8.432004], + [-13.164287, 8.431246], + [-13.163601, 8.431621], + [-13.162953, 8.43187], + [-13.162887, 8.431904], + [-13.163055, 8.432417], + [-13.161899, 8.433023], + [-13.16143, 8.433477], + [-13.161071, 8.433202], + [-13.160675, 8.432843], + [-13.160365, 8.433115], + [-13.160047, 8.432582], + [-13.159232, 8.433032], + [-13.159213, 8.433066], + [-13.159378, 8.433152], + [-13.159378, 8.433153], + [-13.15814, 8.434145], + [-13.158785, 8.434471], + [-13.158864, 8.434692], + [-13.157904, 8.435139], + [-13.157334, 8.434302], + [-13.157331, 8.434405], + [-13.156806, 8.435313], + [-13.15729, 8.436782], + [-13.157244, 8.439447], + [-13.15724, 8.439448], + [-13.156636, 8.439501], + [-13.156607, 8.439233], + [-13.15576, 8.438064], + [-13.155736, 8.436724], + [-13.155162, 8.436155], + [-13.154344, 8.436145], + [-13.15421, 8.436534], + [-13.153747, 8.436414], + [-13.153534, 8.436286], + [-13.153646, 8.436145], + [-13.153284, 8.436004], + [-13.152485, 8.436225], + [-13.152433, 8.435806], + [-13.153085, 8.43528], + [-13.14897, 8.435279], + [-13.146857, 8.432481], + [-13.143047, 8.430063], + [-13.143022, 8.430105], + [-13.155148, 8.449697], + [-13.155183, 8.449638], + [-13.156327, 8.449638], + [-13.158462, 8.452344], + [-13.159009, 8.45328], + [-13.159997, 8.453983], + [-13.160693, 8.454157], + [-13.16133, 8.454363], + [-13.161905, 8.45464], + [-13.162741, 8.455058], + [-13.163671, 8.455348], + [-13.165139, 8.455631], + [-13.166073, 8.455611], + [-13.16626, 8.4556], + [-13.166453, 8.45571], + [-13.166605, 8.455903], + [-13.166811, 8.45638], + [-13.167072, 8.4567], + [-13.167419, 8.45709], + [-13.167677, 8.457399], + [-13.168463, 8.459072], + [-13.168864, 8.459348], + [-13.169456, 8.457487], + [-13.168855, 8.456786], + [-13.168244, 8.457504], + [-13.167926, 8.45752], + [-13.167822, 8.45725], + [-13.167982, 8.456955], + [-13.167659, 8.456348], + [-13.167676, 8.45595], + [-13.167006, 8.455306], + [-13.166046, 8.454922], + [-13.163584, 8.450657], + [-13.163884, 8.450579], + [-13.164523, 8.450377], + [-13.165158, 8.450322], + [-13.165718, 8.44999], + [-13.16593, 8.450516], + [-13.166093, 8.450873], + [-13.166134, 8.450983], + [-13.166363, 8.451515], + [-13.166621, 8.452126], + [-13.167992, 8.451619], + [-13.168155, 8.451806], + [-13.169166, 8.452989], + [-13.169223, 8.452938], + [-13.168729, 8.452357], + [-13.168854, 8.452261], + [-13.168561, 8.451821], + [-13.168412, 8.451393], + [-13.168124, 8.450864], + [-13.167626, 8.451077], + [-13.167215, 8.450583], + [-13.167382, 8.450466], + [-13.167917, 8.450248], + [-13.167735, 8.449754], + [-13.168411, 8.449512], + [-13.16827, 8.448969], + [-13.168975, 8.448726], + [-13.169597, 8.44852], + [-13.169815, 8.449], + [-13.169949, 8.449425], + [-13.170464, 8.449246], + [-13.170381, 8.448807], + [-13.171336, 8.448508], + [-13.17127, 8.44794], + [-13.17198, 8.447765], + [-13.172655, 8.447463], + [-13.173262, 8.44749], + [-13.174301, 8.447577], + [-13.17452, 8.447598], + [-13.176456, 8.447571], + [-13.178088, 8.446844], + [-13.178676, 8.446923], + [-13.179878, 8.446419], + [-13.180269, 8.446332], + [-13.180978, 8.446477], + [-13.17969, 8.444244], + [-13.182833, 8.438798], + [-13.182916, 8.438846], + [-13.182917, 8.439583], + [-13.187082, 8.439584], + [-13.189583, 8.440416] + ] + ], + "type": "Polygon" + }, + "id": 575, + "properties": { + "cc:admin:id": ["112"], + "cc:oBld:total": 10413, + "cc:pop:fifteen-to-twenty-four": 23977.667743197777, + "cc:pop:grid3-total": 83480.75077425141, + "cc:pop:kontur-total": 104606.48027899752, + "cc:pop:men": 51409.676214703686, + "cc:pop:sixty-plus": 8134.422437172927, + "cc:pop:total": 104823.79491327486, + "cc:pop:under-five": 12101.89867012175, + "cc:pop:women": 53414.11869857121, + "cc:pop:women-fiften-to-forty-nine": 28570.386789456985, + "cc:pop:wp-total": 95362.44112518906, + "cc:pop:wp-total-UN": 110584.4299003129, + "cc:id": "575", + "cc:Name": "Wellington Health Centre", + "cc:site": [-13.1678, 8.4479], + "user:parentName": "Freetown", + "user:code": "OU_278317", + "user:orgUnitId": "Qc9lf4VM9bD", + "user:level": "4", + "user:parentId": "C9uduqDZr9d" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.192418, 8.460074], + [-13.192295, 8.459869], + [-13.191832, 8.459656], + [-13.191142, 8.459723], + [-13.190935, 8.459634], + [-13.190915, 8.459357], + [-13.191061, 8.458229], + [-13.190917, 8.457897], + [-13.190203, 8.458682], + [-13.189578, 8.458613], + [-13.189241, 8.4578], + [-13.188696, 8.457294], + [-13.188839, 8.457167], + [-13.188764, 8.456894], + [-13.188143, 8.457135], + [-13.187756, 8.457755], + [-13.187464, 8.45879], + [-13.186817, 8.45917], + [-13.186271, 8.458651], + [-13.18537, 8.459647], + [-13.184954, 8.459284], + [-13.18421, 8.458886], + [-13.183538, 8.46059], + [-13.183492, 8.460683], + [-13.183324, 8.46093], + [-13.183153, 8.461189], + [-13.182524, 8.462194], + [-13.181954, 8.462533], + [-13.181572, 8.462988], + [-13.180972, 8.463634], + [-13.180286, 8.464761], + [-13.179994, 8.46452], + [-13.179729, 8.464322], + [-13.179594, 8.464175], + [-13.179204, 8.463855], + [-13.178906, 8.46362], + [-13.178448, 8.463308], + [-13.178192, 8.463058], + [-13.178171, 8.463079], + [-13.17742, 8.46246], + [-13.177185, 8.46277], + [-13.176099, 8.46347], + [-13.17623, 8.463591], + [-13.176753, 8.464103], + [-13.176637, 8.464444], + [-13.176715, 8.464993], + [-13.175915, 8.465726], + [-13.174709, 8.46446], + [-13.174485, 8.464755], + [-13.174356, 8.465144], + [-13.173508, 8.466285], + [-13.174558, 8.466275], + [-13.174821, 8.466452], + [-13.174827, 8.466445], + [-13.175363, 8.466004], + [-13.17539, 8.466033], + [-13.176006, 8.466422], + [-13.176649, 8.46688], + [-13.1769, 8.466746], + [-13.177144, 8.467004], + [-13.177909, 8.467781], + [-13.178143, 8.468237], + [-13.178471, 8.468582], + [-13.17873, 8.468839], + [-13.17896, 8.469052], + [-13.179286, 8.469365], + [-13.179909, 8.469983], + [-13.180349, 8.470424], + [-13.180678, 8.470689], + [-13.180842, 8.47045], + [-13.181497, 8.469782], + [-13.182589, 8.470409], + [-13.18222, 8.471112], + [-13.18275, 8.471289], + [-13.184254, 8.471881], + [-13.184941, 8.472249], + [-13.18521, 8.472], + [-13.185458, 8.47183], + [-13.185715, 8.471529], + [-13.185756, 8.471476], + [-13.185909, 8.471167], + [-13.18604, 8.470853], + [-13.186949, 8.471274], + [-13.192246, 8.46263], + [-13.191712, 8.46242], + [-13.191496, 8.461785], + [-13.190927, 8.461423], + [-13.191713, 8.460789], + [-13.192418, 8.460074] + ] + ], + "type": "Polygon" + }, + "id": 576, + "properties": { + "cc:admin:id": ["112"], + "cc:oBld:total": 3394, + "cc:pop:fifteen-to-twenty-four": 6368.840498368108, + "cc:pop:grid3-total": 43238.477691699336, + "cc:pop:kontur-total": 29793.458444595126, + "cc:pop:men": 13640.186467468673, + "cc:pop:sixty-plus": 2156.4705407754227, + "cc:pop:total": 27824.658218325694, + "cc:pop:under-five": 3202.015747478458, + "cc:pop:women": 14184.471750857021, + "cc:pop:women-fiften-to-forty-nine": 7585.763038935554, + "cc:pop:wp-total": 33720.78280149167, + "cc:pop:wp-total-UN": 39086.98072158672, + "cc:id": "576", + "cc:Name": "Wesleyan Health Clinic", + "cc:site": [-13.1807, 8.468], + "user:parentName": "Freetown", + "user:code": "OU_278315", + "user:orgUnitId": "XJ6DqDkMlPv", + "user:level": "4", + "user:parentId": "C9uduqDZr9d" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.273676, 8.466341], + [-13.273263, 8.465742], + [-13.272768, 8.464323], + [-13.272535, 8.463561], + [-13.272343, 8.462985], + [-13.272433, 8.462951], + [-13.272099, 8.462002], + [-13.27168, 8.461223], + [-13.271536, 8.460995], + [-13.27146, 8.461033], + [-13.270627, 8.459619], + [-13.270353, 8.459305], + [-13.270274, 8.459306], + [-13.269853, 8.459995], + [-13.269635, 8.460463], + [-13.269538, 8.460721], + [-13.269459, 8.461067], + [-13.269385, 8.461082], + [-13.269307, 8.461102], + [-13.268375, 8.463121], + [-13.267912, 8.462892], + [-13.268281, 8.461977], + [-13.267464, 8.461661], + [-13.267364, 8.461853], + [-13.265978, 8.46155], + [-13.265524, 8.461366], + [-13.265464, 8.461054], + [-13.265386, 8.460924], + [-13.265359, 8.461192], + [-13.264858, 8.461273], + [-13.264811, 8.46183], + [-13.264631, 8.462083], + [-13.264239, 8.462551], + [-13.26395, 8.462369], + [-13.263553, 8.462372], + [-13.263761, 8.463587], + [-13.263473, 8.464397], + [-13.263458, 8.465087], + [-13.262982, 8.466101], + [-13.262353, 8.466528], + [-13.262067, 8.466651], + [-13.261504, 8.467446], + [-13.261434, 8.467494], + [-13.2608, 8.466651], + [-13.260609, 8.466868], + [-13.260365, 8.467188], + [-13.260011, 8.468086], + [-13.259525, 8.468388], + [-13.259268, 8.469007], + [-13.259285, 8.470397], + [-13.259177, 8.470505], + [-13.259337, 8.471163], + [-13.259853, 8.471066], + [-13.259956, 8.471633], + [-13.260208, 8.471559], + [-13.261333, 8.471255], + [-13.262433, 8.470855], + [-13.262435, 8.470856], + [-13.262436, 8.471599], + [-13.262217, 8.472123], + [-13.26177, 8.473078], + [-13.261294, 8.47407], + [-13.261291, 8.474909], + [-13.261651, 8.475804], + [-13.261699, 8.47669], + [-13.261691, 8.476854], + [-13.261548, 8.477123], + [-13.26048, 8.47745], + [-13.260305, 8.477793], + [-13.26047, 8.478183], + [-13.261175, 8.478308], + [-13.26145, 8.478609], + [-13.261979, 8.479234], + [-13.261085, 8.479575], + [-13.260945, 8.480614], + [-13.260943, 8.480615], + [-13.260865, 8.480599], + [-13.260977, 8.48128], + [-13.261376, 8.481417], + [-13.261382, 8.482082], + [-13.260304, 8.48242], + [-13.259628, 8.482792], + [-13.260668, 8.482942], + [-13.261604, 8.482625], + [-13.262089, 8.482517], + [-13.262697, 8.482805], + [-13.262847, 8.482827], + [-13.2631, 8.48364], + [-13.264681, 8.484351], + [-13.264785, 8.484027], + [-13.265065, 8.48341], + [-13.265673, 8.48371], + [-13.267057, 8.483121], + [-13.267188, 8.482934], + [-13.267121, 8.482686], + [-13.266496, 8.482251], + [-13.26594, 8.48175], + [-13.265413, 8.480772], + [-13.265751, 8.479864], + [-13.265605, 8.478765], + [-13.26551, 8.47781], + [-13.26586, 8.476841], + [-13.266085, 8.475737], + [-13.266579, 8.475619], + [-13.26798, 8.475363], + [-13.268266, 8.474952], + [-13.268717, 8.47512], + [-13.269133, 8.475216], + [-13.269409, 8.47508], + [-13.269577, 8.475067], + [-13.270182, 8.475121], + [-13.270459, 8.474114], + [-13.271054, 8.473501], + [-13.271953, 8.472873], + [-13.272165, 8.47227], + [-13.272689, 8.471561], + [-13.272736, 8.470886], + [-13.272107, 8.470505], + [-13.270809, 8.470388], + [-13.269751, 8.470017], + [-13.269683, 8.470032], + [-13.269611, 8.46991], + [-13.269673, 8.469871], + [-13.270073, 8.469684], + [-13.270787, 8.469984], + [-13.271062, 8.469391], + [-13.271916, 8.468781], + [-13.272004, 8.468832], + [-13.272593, 8.468252], + [-13.272003, 8.46795], + [-13.272249, 8.467448], + [-13.273676, 8.466341] + ] + ], + "type": "Polygon" + }, + "id": 577, + "properties": { + "cc:admin:id": ["26"], + "cc:oBld:total": 2536, + "cc:pop:fifteen-to-twenty-four": 11928.068392243253, + "cc:pop:grid3-total": 17858.614859138885, + "cc:pop:kontur-total": 43361.310001657694, + "cc:pop:men": 26000.893284311656, + "cc:pop:sixty-plus": 4055.843655885025, + "cc:pop:total": 51970.05614688313, + "cc:pop:under-five": 5999.403744193371, + "cc:pop:women": 25969.162862571462, + "cc:pop:women-fiften-to-forty-nine": 13921.360830027403, + "cc:pop:wp-total": 45874.05121137846, + "cc:pop:wp-total-UN": 53197.84262266628, + "cc:id": "577", + "cc:Name": "Wilberforce CHC", + "cc:site": [-13.2644, 8.4757], + "user:parentName": "Freetown", + "user:code": "OU_278343", + "user:orgUnitId": "EUUkKEDoNsf", + "user:level": "4", + "user:parentId": "C9uduqDZr9d" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.265288, 8.485168], + [-13.265279, 8.485089], + [-13.26528, 8.484402], + [-13.264682, 8.484351], + [-13.2631, 8.483641], + [-13.262846, 8.482827], + [-13.262697, 8.482805], + [-13.262088, 8.482517], + [-13.261604, 8.482625], + [-13.260668, 8.482942], + [-13.25963, 8.482792], + [-13.260304, 8.48242], + [-13.261382, 8.482082], + [-13.261376, 8.481417], + [-13.260977, 8.48128], + [-13.260865, 8.4806], + [-13.260945, 8.480615], + [-13.261085, 8.479575], + [-13.261979, 8.479234], + [-13.26145, 8.478609], + [-13.261174, 8.478308], + [-13.26047, 8.478183], + [-13.260305, 8.477793], + [-13.26048, 8.477449], + [-13.261548, 8.477122], + [-13.261691, 8.476854], + [-13.261699, 8.47669], + [-13.261651, 8.475804], + [-13.261291, 8.474909], + [-13.261294, 8.47407], + [-13.261771, 8.473077], + [-13.262217, 8.472123], + [-13.262436, 8.471599], + [-13.262434, 8.470855], + [-13.261333, 8.471255], + [-13.260208, 8.471559], + [-13.259956, 8.471633], + [-13.259853, 8.471066], + [-13.259337, 8.471163], + [-13.259176, 8.470505], + [-13.258544, 8.470663], + [-13.257406, 8.471015], + [-13.255824, 8.47139], + [-13.255472, 8.471297], + [-13.255385, 8.47127], + [-13.254423, 8.471195], + [-13.254332, 8.471204], + [-13.2541, 8.471237], + [-13.254237, 8.472078], + [-13.25354, 8.472173], + [-13.253197, 8.471659], + [-13.252723, 8.471763], + [-13.252377, 8.471728], + [-13.251651, 8.471645], + [-13.251713, 8.47265], + [-13.25173, 8.473145], + [-13.251923, 8.473642], + [-13.252047, 8.473772], + [-13.252151, 8.473845], + [-13.252652, 8.474071], + [-13.252957, 8.474163], + [-13.253432, 8.474337], + [-13.253569, 8.474386], + [-13.253815, 8.474497], + [-13.254471, 8.474808], + [-13.253092, 8.47649], + [-13.252903, 8.476762], + [-13.252914, 8.477025], + [-13.252915, 8.477446], + [-13.25312, 8.477948], + [-13.253338, 8.477853], + [-13.253773, 8.477704], + [-13.254025, 8.477144], + [-13.254208, 8.477057], + [-13.25454, 8.477063], + [-13.254783, 8.477328], + [-13.255328, 8.477416], + [-13.255468, 8.477854], + [-13.255601, 8.477922], + [-13.255507, 8.478925], + [-13.25535, 8.479182], + [-13.254672, 8.48018], + [-13.25462, 8.480245], + [-13.255134, 8.48068], + [-13.255623, 8.481098], + [-13.256503, 8.481768], + [-13.256542, 8.483136], + [-13.256896, 8.483106], + [-13.257504, 8.483052], + [-13.257843, 8.483052], + [-13.258664, 8.483164], + [-13.259246, 8.484153], + [-13.259489, 8.484403], + [-13.259768, 8.484672], + [-13.259814, 8.484623], + [-13.26071, 8.485389], + [-13.260877, 8.485463], + [-13.260878, 8.485569], + [-13.260908, 8.485729], + [-13.260968, 8.486074], + [-13.261006, 8.486199], + [-13.26115, 8.486641], + [-13.261477, 8.486586], + [-13.261621, 8.486709], + [-13.261758, 8.487069], + [-13.262475, 8.487142], + [-13.263385, 8.486834], + [-13.262621, 8.485741], + [-13.263095, 8.485404], + [-13.263086, 8.485368], + [-13.263765, 8.485309], + [-13.265288, 8.485168] + ] + ], + "type": "Polygon" + }, + "id": 578, + "properties": { + "cc:admin:id": ["26"], + "cc:oBld:total": 2131, + "cc:pop:fifteen-to-twenty-four": 6787.2121158197915, + "cc:pop:grid3-total": 18249.662508303492, + "cc:pop:kontur-total": 19823.361087968417, + "cc:pop:men": 14784.683463166435, + "cc:pop:sixty-plus": 2302.8978460865583, + "cc:pop:total": 29550.77202599266, + "cc:pop:under-five": 3411.0220532046137, + "cc:pop:women": 14766.088562826222, + "cc:pop:women-fiften-to-forty-nine": 7916.239996236894, + "cc:pop:wp-total": 28154.634612597743, + "cc:pop:wp-total-UN": 32641.889469934384, + "cc:id": "578", + "cc:Name": "Wilberforce MCHP", + "cc:site": [-13.2614, 8.4763], + "user:parentName": "Freetown", + "user:code": "OU_278316", + "user:orgUnitId": "EDxXfB4iVpY", + "user:level": "4", + "user:parentId": "C9uduqDZr9d" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.261503, 8.467446], + [-13.260847, 8.466555], + [-13.26124, 8.465833], + [-13.261204, 8.464667], + [-13.261287, 8.464319], + [-13.261113, 8.46409], + [-13.260535, 8.463325], + [-13.259602, 8.463384], + [-13.258972, 8.463396], + [-13.259004, 8.463241], + [-13.258456, 8.46264], + [-13.25815, 8.462637], + [-13.25751, 8.46208], + [-13.257301, 8.461804], + [-13.25686, 8.462303], + [-13.257258, 8.462829], + [-13.256968, 8.463044], + [-13.256702, 8.463623], + [-13.255834, 8.463048], + [-13.255457, 8.462742], + [-13.255409, 8.462916], + [-13.255388, 8.462928], + [-13.255293, 8.462922], + [-13.255328, 8.463019], + [-13.255327, 8.46302], + [-13.254545, 8.46292], + [-13.254591, 8.462548], + [-13.254797, 8.4623], + [-13.253083, 8.460797], + [-13.252655, 8.461808], + [-13.252611, 8.462066], + [-13.25243, 8.462385], + [-13.251743, 8.461942], + [-13.251356, 8.461434], + [-13.251443, 8.460167], + [-13.251817, 8.459398], + [-13.252229, 8.459049], + [-13.252602, 8.459002], + [-13.2512, 8.457752], + [-13.251024, 8.457578], + [-13.250965, 8.457234], + [-13.251332, 8.456958], + [-13.250539, 8.456817], + [-13.248744, 8.458159], + [-13.247784, 8.458437], + [-13.246647, 8.458265], + [-13.245926, 8.458182], + [-13.245635, 8.458139], + [-13.245232, 8.457906], + [-13.245031, 8.457772], + [-13.244488, 8.457941], + [-13.243726, 8.458209], + [-13.243543, 8.458589], + [-13.243093, 8.458401], + [-13.24253, 8.457891], + [-13.24167, 8.457698], + [-13.241012, 8.4574], + [-13.240064, 8.456875], + [-13.239719, 8.456613], + [-13.2395, 8.456423], + [-13.239664, 8.455994], + [-13.237899, 8.454828], + [-13.236708, 8.454103], + [-13.236337, 8.454037], + [-13.236015, 8.454549], + [-13.235919, 8.45471], + [-13.235794, 8.454879], + [-13.235483, 8.455198], + [-13.235702, 8.455424], + [-13.235774, 8.456197], + [-13.235932, 8.456266], + [-13.236092, 8.456329], + [-13.235974, 8.456824], + [-13.23612, 8.457152], + [-13.236118, 8.457153], + [-13.235789, 8.456881], + [-13.235398, 8.457548], + [-13.23529, 8.458337], + [-13.235009, 8.459263], + [-13.234887, 8.459229], + [-13.234577, 8.458896], + [-13.234166, 8.458426], + [-13.233705, 8.460113], + [-13.233578, 8.460852], + [-13.23459, 8.462605], + [-13.242046, 8.462606], + [-13.24199, 8.462354], + [-13.243274, 8.462044], + [-13.243366, 8.461993], + [-13.243881, 8.462141], + [-13.244655, 8.462284], + [-13.244655, 8.462286], + [-13.244193, 8.462668], + [-13.245106, 8.46366], + [-13.245868, 8.464537], + [-13.245765, 8.465258], + [-13.245681, 8.465505], + [-13.246191, 8.466566], + [-13.246379, 8.466646], + [-13.247005, 8.466472], + [-13.247428, 8.466738], + [-13.247782, 8.466755], + [-13.247781, 8.467089], + [-13.247468, 8.467454], + [-13.247656, 8.467726], + [-13.246168, 8.4684], + [-13.245664, 8.468652], + [-13.245713, 8.468868], + [-13.245398, 8.469069], + [-13.245474, 8.469197], + [-13.245462, 8.469245], + [-13.245618, 8.469524], + [-13.245828, 8.469797], + [-13.246021, 8.470036], + [-13.246442, 8.470501], + [-13.246683, 8.470774], + [-13.246991, 8.470498], + [-13.246996, 8.470198], + [-13.247224, 8.469996], + [-13.248706, 8.469485], + [-13.248707, 8.469486], + [-13.248698, 8.470421], + [-13.249041, 8.47028], + [-13.249097, 8.470301], + [-13.249141, 8.470217], + [-13.249267, 8.470013], + [-13.249995, 8.469164], + [-13.250123, 8.468546], + [-13.25145, 8.467583], + [-13.25145, 8.467585], + [-13.251029, 8.468793], + [-13.251059, 8.469493], + [-13.251481, 8.469926], + [-13.251697, 8.470501], + [-13.25167, 8.470975], + [-13.251408, 8.471238], + [-13.251272, 8.471506], + [-13.251408, 8.471575], + [-13.251651, 8.471645], + [-13.252377, 8.471728], + [-13.252723, 8.471763], + [-13.253197, 8.471659], + [-13.25354, 8.472173], + [-13.254237, 8.472079], + [-13.2541, 8.471237], + [-13.254332, 8.471204], + [-13.254423, 8.471195], + [-13.255385, 8.47127], + [-13.255472, 8.471297], + [-13.255824, 8.47139], + [-13.257406, 8.471015], + [-13.258544, 8.470663], + [-13.259176, 8.470504], + [-13.259285, 8.470397], + [-13.259268, 8.469006], + [-13.259524, 8.468388], + [-13.26001, 8.468086], + [-13.260366, 8.467187], + [-13.260609, 8.466868], + [-13.260801, 8.466651], + [-13.261433, 8.467494], + [-13.261503, 8.467446] + ] + ], + "type": "Polygon" + }, + "id": 579, + "properties": { + "cc:admin:id": ["26"], + "cc:oBld:total": 3819, + "cc:pop:fifteen-to-twenty-four": 11320.56557326336, + "cc:pop:grid3-total": 33523.94245824402, + "cc:pop:kontur-total": 47416.120351391946, + "cc:pop:men": 24717.045082788718, + "cc:pop:sixty-plus": 3852.8038341382007, + "cc:pop:total": 49323.302700639724, + "cc:pop:under-five": 5700.746591583583, + "cc:pop:women": 24606.25761785101, + "cc:pop:women-fiften-to-forty-nine": 13190.956492539564, + "cc:pop:wp-total": 40264.406814582464, + "cc:pop:wp-total-UN": 46684.98158604583, + "cc:id": "579", + "cc:Name": "Wilberforce Military Hospital", + "cc:site": [-13.2561, 8.464], + "user:parentName": "Freetown", + "user:code": "OU_278321", + "user:orgUnitId": "ui12Hyvn6jR", + "user:level": "4", + "user:parentId": "C9uduqDZr9d" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.01619, 8.547282], + [-11.009583, 8.54875], + [-11.006249, 8.552083], + [-11.000417, 8.552083], + [-10.998749, 8.547917], + [-10.997082, 8.547084], + [-10.996249, 8.547083], + [-10.991249, 8.54375], + [-10.98125, 8.543749], + [-10.981249, 8.54125], + [-10.979133, 8.534901], + [-10.975017, 8.534901], + [-10.963749, 8.545416], + [-10.95875, 8.543749], + [-10.959582, 8.540417], + [-10.95625, 8.532084], + [-10.956249, 8.53082], + [-10.956142, 8.531035], + [-10.954578, 8.533486], + [-10.953674, 8.53445], + [-10.95171, 8.53588], + [-10.950512, 8.537644], + [-10.950033, 8.537983], + [-10.952082, 8.542083], + [-10.94625, 8.542916], + [-10.945185, 8.540787], + [-10.945099, 8.540815], + [-10.944582, 8.53875], + [-10.940416, 8.535417], + [-10.934583, 8.536249], + [-10.932536, 8.53352], + [-10.932084, 8.534301], + [-10.932083, 8.534302], + [-10.932082, 8.533749], + [-10.927082, 8.52875], + [-10.921569, 8.52875], + [-10.920399, 8.5309], + [-10.916, 8.535999], + [-10.9133, 8.538399], + [-10.9109, 8.539799], + [-10.907399, 8.540399], + [-10.904699, 8.540299], + [-10.9019, 8.5397], + [-10.900799, 8.5424], + [-10.899199, 8.5476], + [-10.897099, 8.5521], + [-10.8965, 8.555799], + [-10.8965, 8.558799], + [-10.897299, 8.562499], + [-10.898999, 8.566199], + [-10.899899, 8.569699], + [-10.900499, 8.576399], + [-10.901055, 8.57973], + [-10.907916, 8.580416], + [-10.909583, 8.577917], + [-10.920416, 8.577917], + [-10.920417, 8.587084], + [-10.928749, 8.588749], + [-10.929582, 8.58875], + [-10.929583, 8.589583], + [-10.934582, 8.591249], + [-10.937083, 8.589583], + [-10.944648, 8.588208], + [-10.944741, 8.588419], + [-10.946249, 8.587916], + [-10.94625, 8.585416], + [-10.950416, 8.58125], + [-10.951249, 8.58125], + [-10.95125, 8.592916], + [-10.952916, 8.593749], + [-10.957917, 8.579584], + [-10.962916, 8.581249], + [-10.963232, 8.58146], + [-10.962798, 8.583485], + [-10.962171, 8.584382], + [-10.961667, 8.58606], + [-10.961865, 8.587479], + [-10.962357, 8.589173], + [-10.966723, 8.589173], + [-10.967082, 8.587917], + [-10.967917, 8.587084], + [-10.976249, 8.588749], + [-10.978749, 8.589584], + [-10.980417, 8.592916], + [-10.986194, 8.590439], + [-10.986282, 8.59018], + [-10.986583, 8.589785], + [-10.986615, 8.588746], + [-10.987165, 8.587556], + [-10.988361, 8.587141], + [-10.98875, 8.587917], + [-10.999582, 8.587916], + [-11.000416, 8.58625], + [-11.000813, 8.585854], + [-11.001853, 8.586171], + [-11.002631, 8.586118], + [-11.003901, 8.586367], + [-11.00475, 8.586728], + [-11.005746, 8.5878], + [-11.005903, 8.588828], + [-11.006556, 8.589851], + [-11.006509, 8.590467], + [-11.00714, 8.591175], + [-11.007215, 8.592011], + [-11.007291, 8.592083], + [-11.009169, 8.59058], + [-11.0091, 8.587199], + [-11.0093, 8.580999], + [-11.0099, 8.577999], + [-11.012, 8.572699], + [-11.0125, 8.569599], + [-11.0128, 8.563399], + [-11.0136, 8.559499], + [-11.0156, 8.554099], + [-11.0161, 8.550999], + [-11.016199, 8.5479], + [-11.01619, 8.547282] + ] + ], + "type": "Polygon" + }, + "id": 580, + "properties": { + "cc:admin:id": ["133"], + "cc:oBld:total": 790, + "cc:pop:fifteen-to-twenty-four": 453.7152612232198, + "cc:pop:grid3-total": 1536.3654009266033, + "cc:pop:kontur-total": 2070.677067554553, + "cc:pop:men": 1002.6666330682006, + "cc:pop:sixty-plus": 68.95121212049486, + "cc:pop:total": 2005.333266136401, + "cc:pop:under-five": 276.1331862087654, + "cc:pop:women": 1002.6666330682006, + "cc:pop:women-fiften-to-forty-nine": 511.67065648117983, + "cc:pop:wp-total": 1838.2875232896167, + "cc:pop:wp-total-UN": 2130.7433068694454, + "cc:id": "580", + "cc:Name": "Woama MCHP", + "cc:site": [-10.9648, 8.5512], + "user:parentName": "Tankoro", + "user:code": "OU_233328", + "user:orgUnitId": "AtZJOoQiGHd", + "user:level": "4", + "user:parentId": "M2qEv692lS6" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.698399, 8.4803], + [-11.688899, 8.482], + [-11.6765, 8.483199], + [-11.6674, 8.485499], + [-11.662599, 8.4861], + [-11.652699, 8.486399], + [-11.6095, 8.4863], + [-11.5914, 8.487499], + [-11.586599, 8.4907], + [-11.58, 8.4938], + [-11.584899, 8.498599], + [-11.5878, 8.5025], + [-11.5921, 8.5107], + [-11.592699, 8.513699], + [-11.592499, 8.516199], + [-11.590999, 8.5195], + [-11.5884, 8.522699], + [-11.5809, 8.530099], + [-11.579299, 8.5324], + [-11.578399, 8.535], + [-11.578099, 8.5385], + [-11.578, 8.544399], + [-11.576999, 8.5483], + [-11.5741, 8.551899], + [-11.5712, 8.553899], + [-11.5665, 8.555299], + [-11.5643, 8.5567], + [-11.5632, 8.5601], + [-11.563399, 8.563499], + [-11.563999, 8.565699], + [-11.5652, 8.5676], + [-11.567999, 8.5709], + [-11.569099, 8.5735], + [-11.568099, 8.576799], + [-11.5657, 8.579399], + [-11.564351, 8.580724], + [-11.563294, 8.583085], + [-11.563175, 8.58445], + [-11.56206, 8.58716], + [-11.561651, 8.587516], + [-11.561305, 8.588122], + [-11.560058, 8.589342], + [-11.56125, 8.592916], + [-11.563749, 8.59375], + [-11.564583, 8.595416], + [-11.569582, 8.59625], + [-11.570417, 8.599583], + [-11.574582, 8.602916], + [-11.57625, 8.602917], + [-11.580416, 8.60375], + [-11.580417, 8.616249], + [-11.58125, 8.618749], + [-11.587082, 8.617084], + [-11.58875, 8.621249], + [-11.592916, 8.625417], + [-11.592916, 8.629603], + [-11.592073, 8.630592], + [-11.591114, 8.631444], + [-11.590088, 8.632091], + [-11.588087, 8.632803], + [-11.585417, 8.633342], + [-11.585417, 8.649583], + [-11.586249, 8.649583], + [-11.58625, 8.644584], + [-11.603749, 8.644584], + [-11.604583, 8.647083], + [-11.605417, 8.647916], + [-11.61375, 8.644584], + [-11.623421, 8.647807], + [-11.624, 8.645399], + [-11.6244, 8.639999], + [-11.6252, 8.636699], + [-11.627799, 8.6318], + [-11.629299, 8.6301], + [-11.633199, 8.6279], + [-11.633565, 8.627829], + [-11.632917, 8.624584], + [-11.632916, 8.62375], + [-11.632443, 8.622333], + [-11.631119, 8.623203], + [-11.630443, 8.623443], + [-11.629568, 8.623465], + [-11.628244, 8.622891], + [-11.625997, 8.620659], + [-11.625379, 8.620145], + [-11.622555, 8.618714], + [-11.622555, 8.618713], + [-11.626249, 8.61625], + [-11.627917, 8.617916], + [-11.632082, 8.618749], + [-11.63375, 8.617083], + [-11.637917, 8.615417], + [-11.639582, 8.615416], + [-11.645416, 8.609583], + [-11.645417, 8.607917], + [-11.647082, 8.607083], + [-11.647083, 8.60625], + [-11.649582, 8.606249], + [-11.654582, 8.60125], + [-11.650416, 8.59875], + [-11.647084, 8.600416], + [-11.647083, 8.600415], + [-11.647083, 8.595416], + [-11.649582, 8.58625], + [-11.652916, 8.586249], + [-11.657916, 8.582916], + [-11.655416, 8.575417], + [-11.652083, 8.574583], + [-11.652654, 8.572298], + [-11.652689, 8.57231], + [-11.657917, 8.567084], + [-11.66375, 8.574583], + [-11.667389, 8.574947], + [-11.667784, 8.574266], + [-11.673004, 8.574265], + [-11.673749, 8.564584], + [-11.668749, 8.559584], + [-11.665416, 8.559583], + [-11.660417, 8.554584], + [-11.660417, 8.545417], + [-11.66375, 8.541249], + [-11.672082, 8.539583], + [-11.675417, 8.53625], + [-11.679378, 8.536249], + [-11.6797, 8.533999], + [-11.682199, 8.528], + [-11.6837, 8.521999], + [-11.6857, 8.517599], + [-11.687299, 8.5109], + [-11.6892, 8.506399], + [-11.690699, 8.5007], + [-11.693, 8.495299], + [-11.6947, 8.489199], + [-11.698399, 8.4803] + ] + ], + "type": "Polygon" + }, + "id": 581, + "properties": { + "cc:admin:id": ["69"], + "cc:oBld:total": 34, + "cc:pop:fifteen-to-twenty-four": 1203.5046578133617, + "cc:pop:grid3-total": 6701.273815663282, + "cc:pop:kontur-total": 6223.22288501024, + "cc:pop:men": 3154.0319175561144, + "cc:pop:sixty-plus": 418.44009251555195, + "cc:pop:total": 6436.002965117598, + "cc:pop:under-five": 1019.0678853384154, + "cc:pop:women": 3281.971047561484, + "cc:pop:women-fiften-to-forty-nine": 1606.9604327951508, + "cc:pop:wp-total": 6364.015291310305, + "cc:pop:wp-total-UN": 7373.159030667462, + "cc:id": "581", + "cc:Name": "Wonkibor MCHP", + "cc:site": [-11.6182, 8.5959], + "user:parentName": "Kunike Barina", + "user:code": "OU_268216", + "user:orgUnitId": "Qwzs1iinAI7", + "user:level": "4", + "user:parentId": "rXLor9Knq6l" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.15322, 8.944534], + [-11.15125, 8.94125], + [-11.151249, 8.940417], + [-11.142917, 8.937917], + [-11.14125, 8.937916], + [-11.14125, 8.934583], + [-11.143749, 8.932916], + [-11.145416, 8.928749], + [-11.145416, 8.927083], + [-11.14208, 8.923747], + [-11.142205, 8.923518], + [-11.141249, 8.922083], + [-11.137917, 8.919583], + [-11.135417, 8.92125], + [-11.133749, 8.924582], + [-11.12875, 8.926249], + [-11.12875, 8.925416], + [-11.129582, 8.915417], + [-11.128749, 8.915416], + [-11.126249, 8.91375], + [-11.12125, 8.912916], + [-11.122082, 8.902917], + [-11.117917, 8.90125], + [-11.112082, 8.903749], + [-11.107083, 8.89375], + [-11.112916, 8.892082], + [-11.115416, 8.880417], + [-11.109583, 8.882083], + [-11.10625, 8.884582], + [-11.10375, 8.884582], + [-11.10375, 8.880416], + [-11.109582, 8.875417], + [-11.102083, 8.875416], + [-11.102916, 8.86625], + [-11.102916, 8.865417], + [-11.094583, 8.865416], + [-11.092083, 8.857084], + [-11.092084, 8.857083], + [-11.102082, 8.857916], + [-11.102082, 8.852917], + [-11.09875, 8.849582], + [-11.09875, 8.84625], + [-11.099582, 8.844583], + [-11.097933, 8.842933], + [-11.097856, 8.843182], + [-11.097715, 8.843793], + [-11.097274, 8.844558], + [-11.097273, 8.844558], + [-11.095416, 8.842083], + [-11.092916, 8.842916], + [-11.09125, 8.838749], + [-11.091249, 8.834583], + [-11.08625, 8.832083], + [-11.085416, 8.832916], + [-11.082917, 8.832917], + [-11.080417, 8.836249], + [-11.079583, 8.83625], + [-11.079582, 8.840416], + [-11.07375, 8.84125], + [-11.072082, 8.844583], + [-11.069583, 8.847916], + [-11.06625, 8.84625], + [-11.062083, 8.84875], + [-11.058749, 8.854582], + [-11.05625, 8.85625], + [-11.056249, 8.857916], + [-11.055417, 8.857917], + [-11.054583, 8.85875], + [-11.054582, 8.864583], + [-11.047916, 8.867916], + [-11.042083, 8.86625], + [-11.043749, 8.872082], + [-11.043749, 8.873749], + [-11.04125, 8.875417], + [-11.041249, 8.87625], + [-11.037083, 8.880416], + [-11.033749, 8.878749], + [-11.028749, 8.875417], + [-11.02625, 8.875416], + [-11.024582, 8.87375], + [-11.01875, 8.87375], + [-11.018749, 8.883749], + [-11.014583, 8.88375], + [-11.012082, 8.887082], + [-11.007083, 8.887083], + [-11.005417, 8.890416], + [-11.002917, 8.889583], + [-11.001657, 8.890842], + [-11.001844, 8.891027], + [-11.003333, 8.891839], + [-11.004871, 8.892315], + [-11.005209, 8.892601], + [-11.005209, 8.892603], + [-11.004582, 8.892916], + [-11.000417, 8.890417], + [-10.997083, 8.894582], + [-11.001249, 8.897917], + [-11.00125, 8.900417], + [-11.002082, 8.903749], + [-11.002919, 8.904169], + [-11.002885, 8.904254], + [-11.00141, 8.90588], + [-10.999614, 8.908979], + [-10.999051, 8.909316], + [-11.001249, 8.910417], + [-11.00125, 8.912917], + [-11.002083, 8.916249], + [-11.003749, 8.917083], + [-11.002916, 8.91875], + [-10.999583, 8.920417], + [-11.000416, 8.922082], + [-10.999984, 8.922948], + [-11.000187, 8.923], + [-10.999583, 8.925416], + [-11.000416, 8.92625], + [-11.000417, 8.928749], + [-11.002083, 8.929583], + [-11.002082, 8.932916], + [-10.999583, 8.93375], + [-10.999583, 8.942082], + [-11.001249, 8.94375], + [-11.000417, 8.948749], + [-11.001249, 8.949583], + [-11.000417, 8.953749], + [-11.002916, 8.964582], + [-11.002916, 8.965416], + [-11.002083, 8.96625], + [-11.002083, 8.967917], + [-11.002916, 8.972916], + [-11.002917, 8.973749], + [-11.003749, 8.974583], + [-11.002917, 8.977916], + [-11.00125, 8.979583], + [-11.00125, 8.985416], + [-11.002083, 8.98625], + [-11.002916, 8.992916], + [-10.999583, 8.99375], + [-11.000417, 8.997916], + [-11.004582, 9.002082], + [-11.008748, 9.002083], + [-11.008749, 9.002084], + [-11.004582, 9.010416], + [-10.997872, 9.01243], + [-10.997621, 9.014677], + [-10.994427, 9.014944], + [-10.99499, 9.01592], + [-10.991084, 9.022684], + [-10.983271, 9.022685], + [-10.979366, 9.029451], + [-10.98304, 9.035816], + [-10.980417, 9.037917], + [-10.97997, 9.041935], + [-10.979366, 9.042983], + [-10.979774, 9.043691], + [-10.979703, 9.044343], + [-10.9832, 9.0449], + [-10.9877, 9.0452], + [-10.998399, 9.0452], + [-11.005999, 9.0449], + [-11.010399, 9.0442], + [-11.016399, 9.0423], + [-11.020399, 9.0415], + [-11.025999, 9.0412], + [-11.030199, 9.041499], + [-11.035399, 9.0432], + [-11.0464, 9.0516], + [-11.055199, 9.057399], + [-11.0592, 9.0592], + [-11.0621, 9.0598], + [-11.065099, 9.059999], + [-11.071299, 9.0599], + [-11.077499, 9.059], + [-11.081799, 9.057599], + [-11.089199, 9.0511], + [-11.095499, 9.047], + [-11.097699, 9.0452], + [-11.107499, 9.0363], + [-11.117499, 9.0297], + [-11.1213, 9.027899], + [-11.133699, 9.025599], + [-11.138199, 9.023199], + [-11.140599, 9.020499], + [-11.143999, 9.012999], + [-11.144399, 9.0089], + [-11.143799, 9.004899], + [-11.1399, 8.9925], + [-11.1392, 8.9882], + [-11.1387, 8.975999], + [-11.138799, 8.9715], + [-11.139399, 8.9671], + [-11.1412, 8.961499], + [-11.145799, 8.9528], + [-11.1485, 8.949399], + [-11.151599, 8.9461], + [-11.15322, 8.944534] + ] + ], + "type": "Polygon" + }, + "id": 582, + "properties": { + "cc:admin:id": ["119"], + "cc:oBld:total": 1372, + "cc:pop:fifteen-to-twenty-four": 2025.0859723098147, + "cc:pop:grid3-total": 24565.0231060248, + "cc:pop:kontur-total": 10272.650574285948, + "cc:pop:men": 5090.0130658596145, + "cc:pop:sixty-plus": 571.6578543000655, + "cc:pop:total": 10307.9216061077, + "cc:pop:under-five": 1736.6037383970915, + "cc:pop:women": 5217.908540248085, + "cc:pop:women-fiften-to-forty-nine": 2500.1994314166604, + "cc:pop:wp-total": 10207.128836229333, + "cc:pop:wp-total-UN": 11858.869951581268, + "cc:id": "582", + "cc:Name": "Wordu CHP", + "cc:site": [-11.0992, 8.9375], + "user:parentName": "Sandor", + "user:code": "OU_233367", + "user:orgUnitId": "bW5BaqrBM4K", + "user:level": "4", + "user:parentId": "g5ptsn0SFX8" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.535899, 7.6576], + [-11.521999, 7.651599], + [-11.5168, 7.6487], + [-11.514, 7.6467], + [-11.504399, 7.634499], + [-11.502599, 7.631199], + [-11.5009, 7.6267], + [-11.4993, 7.6207], + [-11.4982, 7.6071], + [-11.4956, 7.5948], + [-11.495628, 7.593154], + [-11.4941, 7.595803], + [-11.494582, 7.602083], + [-11.492917, 7.60375], + [-11.492917, 7.604583], + [-11.494583, 7.605417], + [-11.495417, 7.609584], + [-11.497082, 7.615417], + [-11.48125, 7.618749], + [-11.480416, 7.619583], + [-11.47875, 7.620416], + [-11.477916, 7.61875], + [-11.472917, 7.617917], + [-11.46125, 7.617917], + [-11.46125, 7.623749], + [-11.462082, 7.624583], + [-11.460417, 7.62625], + [-11.460416, 7.627916], + [-11.45875, 7.627917], + [-11.455417, 7.629584], + [-11.454335, 7.631206], + [-11.454436, 7.631396], + [-11.452917, 7.632917], + [-11.453749, 7.643749], + [-11.45481, 7.644599], + [-11.451657, 7.65006], + [-11.443846, 7.650061], + [-11.442917, 7.65167], + [-11.442916, 7.654584], + [-11.442227, 7.660788], + [-11.443845, 7.663592], + [-11.439939, 7.670357], + [-11.440635, 7.671562], + [-11.440924, 7.671583], + [-11.440925, 7.671585], + [-11.439296, 7.674404], + [-11.432726, 7.674405], + [-11.43125, 7.67625], + [-11.43125, 7.682916], + [-11.432082, 7.687083], + [-11.432083, 7.687478], + [-11.4344, 7.6866], + [-11.437799, 7.686699], + [-11.441099, 7.6885], + [-11.4477, 7.6971], + [-11.450599, 7.700099], + [-11.4539, 7.702599], + [-11.4578, 7.703999], + [-11.4644, 7.703899], + [-11.4691, 7.702099], + [-11.4744, 7.699199], + [-11.482899, 7.6921], + [-11.4902, 7.686999], + [-11.498799, 7.6801], + [-11.511399, 7.6728], + [-11.521099, 7.6651], + [-11.535899, 7.6576] + ] + ], + "type": "Polygon" + }, + "id": 583, + "properties": { + "cc:admin:id": ["71"], + "cc:oBld:total": 540, + "cc:pop:fifteen-to-twenty-four": 543.1110885569447, + "cc:pop:grid3-total": 3579.0660085958543, + "cc:pop:kontur-total": 2838, + "cc:pop:men": 1354.2775968592764, + "cc:pop:sixty-plus": 174.73775463890547, + "cc:pop:total": 2754.338270146085, + "cc:pop:under-five": 416.2930741154706, + "cc:pop:women": 1400.0606732868089, + "cc:pop:women-fiften-to-forty-nine": 694.7945372658507, + "cc:pop:wp-total": 2009.5942985081763, + "cc:pop:wp-total-UN": 2329.398193664277, + "cc:id": "583", + "cc:Name": "Yabaima CHP", + "cc:site": [-11.4761, 7.6407], + "user:parentName": "Langrama", + "user:code": "OU_222752", + "user:orgUnitId": "XbyObqerCya", + "user:level": "4", + "user:parentId": "jWSIbtKfURj" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.468977, 8.002917], + [-11.467917, 8.002916], + [-11.468749, 8.000417], + [-11.46625, 7.994584], + [-11.467082, 7.993749], + [-11.464583, 7.98375], + [-11.464583, 7.982084], + [-11.46597, 7.980927], + [-11.459583, 7.980926], + [-11.459582, 7.980416], + [-11.44375, 7.97375], + [-11.442916, 7.972917], + [-11.440417, 7.973749], + [-11.439582, 7.970417], + [-11.437082, 7.967917], + [-11.427083, 7.967084], + [-11.425617, 7.967572], + [-11.425615, 7.967916], + [-11.422917, 7.967917], + [-11.41875, 7.97125], + [-11.418427, 7.97575], + [-11.416953, 7.973198], + [-11.414907, 7.973197], + [-11.415416, 7.967084], + [-11.40375, 7.969584], + [-11.407082, 7.979581], + [-11.407081, 7.979582], + [-11.40125, 7.975417], + [-11.399582, 7.970417], + [-11.397083, 7.972917], + [-11.397916, 7.975416], + [-11.396249, 7.977083], + [-11.393749, 7.97625], + [-11.392083, 7.976249], + [-11.392082, 7.972084], + [-11.382917, 7.972084], + [-11.383749, 7.975416], + [-11.381249, 7.979584], + [-11.374582, 7.979583], + [-11.371249, 7.97375], + [-11.368749, 7.972084], + [-11.366249, 7.972916], + [-11.35875, 7.972917], + [-11.358749, 7.977916], + [-11.354583, 7.982084], + [-11.35375, 7.989583], + [-11.352916, 7.992916], + [-11.341966, 7.993647], + [-11.3418, 7.9976], + [-11.341999, 8.018099], + [-11.342499, 8.025299], + [-11.343, 8.0281], + [-11.3456, 8.0375], + [-11.347099, 8.045399], + [-11.347399, 8.0496], + [-11.3469, 8.055999], + [-11.346999, 8.060199], + [-11.349799, 8.071999], + [-11.3516, 8.081899], + [-11.355299, 8.0796], + [-11.3592, 8.077899], + [-11.3615, 8.076399], + [-11.3665, 8.072399], + [-11.373999, 8.0686], + [-11.3765, 8.067799], + [-11.3815, 8.066599], + [-11.385899, 8.0644], + [-11.3891, 8.063099], + [-11.393399, 8.0607], + [-11.397199, 8.0589], + [-11.3994, 8.057199], + [-11.404799, 8.0523], + [-11.407499, 8.0501], + [-11.411499, 8.0482], + [-11.414399, 8.0461], + [-11.416899, 8.0434], + [-11.418399, 8.0406], + [-11.4189, 8.038399], + [-11.4192, 8.033099], + [-11.419999, 8.0298], + [-11.4236, 8.023999], + [-11.4258, 8.022799], + [-11.433899, 8.0207], + [-11.438899, 8.022199], + [-11.441699, 8.023499], + [-11.444, 8.0207], + [-11.449299, 8.0178], + [-11.454999, 8.0134], + [-11.4604, 8.010399], + [-11.4632, 8.008199], + [-11.468599, 8.0032], + [-11.468977, 8.002917] + ] + ], + "type": "Polygon" + }, + "id": 584, + "properties": { + "cc:admin:id": ["2"], + "cc:oBld:total": 548, + "cc:pop:fifteen-to-twenty-four": 1853.542341157968, + "cc:pop:grid3-total": 3907.292715429008, + "cc:pop:kontur-total": 10536.17167077203, + "cc:pop:men": 5380.850936764668, + "cc:pop:sixty-plus": 734.9630262612507, + "cc:pop:total": 10408.987362851376, + "cc:pop:under-five": 1697.5637292071117, + "cc:pop:women": 5028.136426086711, + "cc:pop:women-fiften-to-forty-nine": 2397.760251380985, + "cc:pop:wp-total": 8566.281142534917, + "cc:pop:wp-total-UN": 9929.062970436149, + "cc:id": "584", + "cc:Name": "Yakaji MCHP", + "cc:site": [-11.4277, 8.0041], + "user:parentName": "Baoma", + "user:code": "OU_583", + "user:orgUnitId": "AnXoUM1tfNT", + "user:level": "4", + "user:parentId": "vWbkYPRmKyS" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.532927, 7.973727], + [-11.52862, 7.973726], + [-11.525747, 7.96875], + [-11.525417, 7.96875], + [-11.524146, 7.970655], + [-11.524145, 7.970655], + [-11.521363, 7.965839], + [-11.513938, 7.965838], + [-11.515416, 7.960417], + [-11.512917, 7.956249], + [-11.514406, 7.948797], + [-11.512933, 7.947979], + [-11.512311, 7.947874], + [-11.51145, 7.947989], + [-11.511317, 7.947841], + [-11.511257, 7.947843], + [-11.511262, 7.946485], + [-11.510838, 7.944393], + [-11.510358, 7.942904], + [-11.509809, 7.941823], + [-11.509687, 7.941762], + [-11.50564, 7.941028], + [-11.505344, 7.940665], + [-11.505345, 7.940663], + [-11.506493, 7.940324], + [-11.507432, 7.939814], + [-11.509351, 7.93804], + [-11.507916, 7.937084], + [-11.507082, 7.937083], + [-11.502917, 7.932917], + [-11.502082, 7.92875], + [-11.492083, 7.927916], + [-11.492083, 7.926249], + [-11.496249, 7.920417], + [-11.498749, 7.917916], + [-11.497916, 7.915417], + [-11.492917, 7.910417], + [-11.492916, 7.909203], + [-11.491361, 7.908624], + [-11.490221, 7.908796], + [-11.489168, 7.909361], + [-11.489099, 7.909353], + [-11.488305, 7.905345], + [-11.487837, 7.904871], + [-11.487524, 7.904224], + [-11.487453, 7.903538], + [-11.487917, 7.903609], + [-11.487916, 7.899584], + [-11.487082, 7.899583], + [-11.481917, 7.892205], + [-11.481741, 7.892286], + [-11.481501, 7.892696], + [-11.48111, 7.89242], + [-11.480138, 7.892173], + [-11.480571, 7.89182], + [-11.480711, 7.891498], + [-11.481013, 7.891061], + [-11.481098, 7.890824], + [-11.480931, 7.890846], + [-11.480757, 7.890562], + [-11.481261, 7.890154], + [-11.481428, 7.889738], + [-11.482089, 7.889621], + [-11.482715, 7.889291], + [-11.48354, 7.88863], + [-11.483749, 7.888626], + [-11.483749, 7.886349], + [-11.483667, 7.886431], + [-11.482729, 7.886553], + [-11.482122, 7.887059], + [-11.480813, 7.887552], + [-11.48013, 7.888306], + [-11.479072, 7.888789], + [-11.47786, 7.890013], + [-11.476492, 7.89083], + [-11.475535, 7.89246], + [-11.47486, 7.892623], + [-11.473688, 7.893755], + [-11.473249, 7.895421], + [-11.47301, 7.895879], + [-11.474316, 7.896534], + [-11.474094, 7.897122], + [-11.474525, 7.89852], + [-11.4743, 7.900014], + [-11.472567, 7.903147], + [-11.470982, 7.905537], + [-11.471007, 7.906118], + [-11.470768, 7.906762], + [-11.469988, 7.907963], + [-11.469717, 7.90997], + [-11.469476, 7.910496], + [-11.468392, 7.911836], + [-11.467829, 7.912238], + [-11.466161, 7.912608], + [-11.465726, 7.912545], + [-11.464677, 7.913019], + [-11.46318, 7.913485], + [-11.462083, 7.914584], + [-11.46125, 7.918749], + [-11.46125, 7.919583], + [-11.462083, 7.919584], + [-11.466249, 7.922083], + [-11.466249, 7.92375], + [-11.464583, 7.930416], + [-11.46125, 7.929584], + [-11.459368, 7.932091], + [-11.459733, 7.932274], + [-11.458749, 7.93375], + [-11.455417, 7.943749], + [-11.457917, 7.946249], + [-11.458548, 7.94625], + [-11.457997, 7.946546], + [-11.45744, 7.947839], + [-11.456606, 7.949161], + [-11.45708, 7.951279], + [-11.456433, 7.953444], + [-11.456425, 7.953901], + [-11.457145, 7.956373], + [-11.457804, 7.957299], + [-11.457726, 7.958968], + [-11.457999, 7.959827], + [-11.457921, 7.960556], + [-11.457403, 7.9614], + [-11.456456, 7.961483], + [-11.45625, 7.963749], + [-11.457817, 7.965318], + [-11.454453, 7.965319], + [-11.452309, 7.969032], + [-11.453724, 7.974066], + [-11.452838, 7.977162], + [-11.452517, 7.977441], + [-11.459582, 7.980416], + [-11.459583, 7.980926], + [-11.465969, 7.980927], + [-11.464583, 7.982084], + [-11.464583, 7.983749], + [-11.467082, 7.993749], + [-11.46625, 7.994584], + [-11.468749, 8.000416], + [-11.467917, 8.002916], + [-11.468977, 8.002916], + [-11.4714, 8.001099], + [-11.4746, 7.999699], + [-11.478799, 7.9973], + [-11.482, 7.995999], + [-11.486399, 7.9938], + [-11.492299, 7.9923], + [-11.4971, 7.990199], + [-11.5001, 7.989499], + [-11.503799, 7.9892], + [-11.515099, 7.989199], + [-11.5192, 7.986499], + [-11.526699, 7.9829], + [-11.528373, 7.982492], + [-11.531249, 7.974584], + [-11.532916, 7.97375], + [-11.532927, 7.973727] + ] + ], + "type": "Polygon" + }, + "id": 585, + "properties": { + "cc:admin:id": ["2"], + "cc:oBld:total": 861, + "cc:pop:fifteen-to-twenty-four": 3147.877676714104, + "cc:pop:grid3-total": 7277.921332357446, + "cc:pop:kontur-total": 18417.533087284482, + "cc:pop:men": 9079.268140477698, + "cc:pop:sixty-plus": 1246.4070281414338, + "cc:pop:total": 17585.01830711344, + "cc:pop:under-five": 2901.2676823961674, + "cc:pop:women": 8505.750166635737, + "cc:pop:women-fiften-to-forty-nine": 4055.5525883634587, + "cc:pop:wp-total": 16790.52306044804, + "cc:pop:wp-total-UN": 19467.70934665814, + "cc:id": "585", + "cc:Name": "Yamandu CHC", + "cc:site": [-11.4894, 7.9341], + "user:parentName": "Baoma", + "user:code": "OU_585", + "user:orgUnitId": "nX05QLraDhO", + "user:level": "4", + "user:parentId": "vWbkYPRmKyS" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.933366, 7.643593], + [-11.932353, 7.643514], + [-11.92888, 7.637497], + [-11.93237, 7.631451], + [-11.925417, 7.632083], + [-11.926776, 7.627321], + [-11.926181, 7.627152], + [-11.927082, 7.626249], + [-11.928749, 7.619584], + [-11.929582, 7.617916], + [-11.928749, 7.615417], + [-11.925302, 7.613348], + [-11.925361, 7.613235], + [-11.924299, 7.6137], + [-11.92, 7.616099], + [-11.916899, 7.6174], + [-11.9126, 7.619799], + [-11.909399, 7.6212], + [-11.9052, 7.623599], + [-11.901999, 7.6249], + [-11.8979, 7.626999], + [-11.8935, 7.627899], + [-11.8862, 7.628099], + [-11.881399, 7.627999], + [-11.8771, 7.6274], + [-11.8713, 7.6251], + [-11.867199, 7.624299], + [-11.84125, 7.624108], + [-11.84125, 7.635416], + [-11.851249, 7.636249], + [-11.852083, 7.638749], + [-11.867082, 7.637917], + [-11.868749, 7.638749], + [-11.867916, 7.640417], + [-11.86625, 7.647083], + [-11.86375, 7.649584], + [-11.864583, 7.651249], + [-11.873749, 7.65125], + [-11.872917, 7.653749], + [-11.874071, 7.65606], + [-11.874407, 7.655898], + [-11.875417, 7.657916], + [-11.87625, 7.657917], + [-11.877916, 7.659584], + [-11.87625, 7.671249], + [-11.879582, 7.672083], + [-11.880417, 7.672084], + [-11.885416, 7.677083], + [-11.885729, 7.677084], + [-11.886709, 7.67878], + [-11.898749, 7.679583], + [-11.902082, 7.677084], + [-11.904582, 7.677083], + [-11.904583, 7.673749], + [-11.909582, 7.669584], + [-11.917082, 7.669583], + [-11.915417, 7.660417], + [-11.919582, 7.65875], + [-11.922744, 7.661278], + [-11.924668, 7.658805], + [-11.926712, 7.657637], + [-11.928563, 7.65606], + [-11.925344, 7.653886], + [-11.923274, 7.653155], + [-11.923749, 7.65125], + [-11.92625, 7.64875], + [-11.932068, 7.64584], + [-11.933366, 7.643593] + ] + ], + "type": "Polygon" + }, + "id": 586, + "properties": { + "cc:admin:id": ["78"], + "cc:oBld:total": 6, + "cc:pop:fifteen-to-twenty-four": 1039.6794969618747, + "cc:pop:grid3-total": 4902.408368967969, + "cc:pop:kontur-total": 8257.736770575399, + "cc:pop:men": 2966.451523269628, + "cc:pop:sixty-plus": 395.4327390942299, + "cc:pop:total": 5724.884816046719, + "cc:pop:under-five": 931.484171444425, + "cc:pop:women": 2758.433292777091, + "cc:pop:women-fiften-to-forty-nine": 1302.9231625805464, + "cc:pop:wp-total": 5719.36080368022, + "cc:pop:wp-total-UN": 6627.2300958566875, + "cc:id": "586", + "cc:Name": "Yambama MCHP", + "cc:site": [-11.8915, 7.6541], + "user:parentName": "Lugbu", + "user:code": "OU_1072", + "user:orgUnitId": "QDoO5r6Sae7", + "user:level": "4", + "user:parentId": "kU8vhUkAGaT" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.336122, 8.723303], + [-12.335399, 8.721599], + [-12.332899, 8.718399], + [-12.3279, 8.7131], + [-12.323099, 8.708899], + [-12.319699, 8.7067], + [-12.316, 8.7059], + [-12.3113, 8.706799], + [-12.3093, 8.7092], + [-12.3088, 8.712299], + [-12.3094, 8.7159], + [-12.310999, 8.7227], + [-12.310899, 8.7256], + [-12.3098, 8.729799], + [-12.302999, 8.7447], + [-12.299, 8.751999], + [-12.296699, 8.7547], + [-12.293599, 8.7565], + [-12.287999, 8.757899], + [-12.2846, 8.757399], + [-12.282, 8.7559], + [-12.279799, 8.752499], + [-12.2775, 8.7452], + [-12.2755, 8.7419], + [-12.272099, 8.740099], + [-12.2678, 8.7394], + [-12.2642, 8.741499], + [-12.262841, 8.741593], + [-12.261636, 8.74456], + [-12.261214, 8.745078], + [-12.259339, 8.745899], + [-12.258367, 8.745906], + [-12.25695, 8.745252], + [-12.256592, 8.744971], + [-12.257082, 8.747917], + [-12.254583, 8.750417], + [-12.254582, 8.752916], + [-12.252917, 8.754583], + [-12.252917, 8.760416], + [-12.253948, 8.761449], + [-12.254029, 8.761358], + [-12.254179, 8.761276], + [-12.254582, 8.762082], + [-12.254583, 8.764582], + [-12.256171, 8.768819], + [-12.252288, 8.768228], + [-12.248806, 8.766082], + [-12.247621, 8.76579], + [-12.244794, 8.768966], + [-12.245352, 8.769613], + [-12.245957, 8.770927], + [-12.246075, 8.771727], + [-12.246027, 8.77193], + [-12.246001, 8.77248], + [-12.246972, 8.772688], + [-12.249642, 8.773593], + [-12.249772, 8.774278], + [-12.250625, 8.774746], + [-12.251859, 8.774907], + [-12.253083, 8.774752], + [-12.253749, 8.778749], + [-12.25375, 8.781249], + [-12.249583, 8.787917], + [-12.250416, 8.792083], + [-12.249582, 8.797916], + [-12.247917, 8.797917], + [-12.245417, 8.800417], + [-12.244582, 8.805416], + [-12.24125, 8.80625], + [-12.24125, 8.810416], + [-12.243937, 8.817134], + [-12.246191, 8.817134], + [-12.248376, 8.816509], + [-12.252552, 8.814448], + [-12.256039, 8.812751], + [-12.259604, 8.811036], + [-12.261629, 8.81008], + [-12.262917, 8.814582], + [-12.26375, 8.814583], + [-12.264583, 8.817916], + [-12.267916, 8.82125], + [-12.26875, 8.822916], + [-12.272082, 8.820416], + [-12.272083, 8.819742], + [-12.272509, 8.819654], + [-12.280517, 8.818402], + [-12.28125, 8.827916], + [-12.286457, 8.827917], + [-12.286744, 8.828255], + [-12.287242, 8.829686], + [-12.288062, 8.830371], + [-12.288407, 8.831129], + [-12.289312, 8.832246], + [-12.289973, 8.833365], + [-12.29134, 8.834494], + [-12.29177, 8.835035], + [-12.29253, 8.835477], + [-12.292887, 8.835018], + [-12.294203, 8.83352], + [-12.294784, 8.831207], + [-12.294945, 8.830816], + [-12.296249, 8.831249], + [-12.295417, 8.840416], + [-12.299583, 8.83625], + [-12.302082, 8.837916], + [-12.302917, 8.837917], + [-12.305416, 8.839582], + [-12.30625, 8.842082], + [-12.30875, 8.83875], + [-12.311249, 8.839583], + [-12.312083, 8.842082], + [-12.314583, 8.839583], + [-12.316249, 8.840417], + [-12.31625, 8.846647], + [-12.316508, 8.846622], + [-12.318666, 8.848049], + [-12.32027, 8.847772], + [-12.321297, 8.848454], + [-12.322025, 8.848108], + [-12.323056, 8.848365], + [-12.324661, 8.848208], + [-12.326176, 8.848975], + [-12.322499, 8.841999], + [-12.3172, 8.835], + [-12.313999, 8.829999], + [-12.309499, 8.823999], + [-12.3076, 8.8197], + [-12.3069, 8.815099], + [-12.3076, 8.810599], + [-12.309999, 8.8028], + [-12.312599, 8.796], + [-12.317299, 8.7875], + [-12.317899, 8.7863], + [-12.3219, 8.781599], + [-12.323899, 8.777099], + [-12.324399, 8.772999], + [-12.3243, 8.7616], + [-12.3247, 8.755999], + [-12.3263, 8.749999], + [-12.3307, 8.741599], + [-12.336, 8.733599], + [-12.337299, 8.729299], + [-12.3368, 8.7249], + [-12.336122, 8.723303] + ] + ], + "type": "Polygon" + }, + "id": 587, + "properties": { + "cc:admin:id": ["83"], + "cc:oBld:total": 7, + "cc:pop:fifteen-to-twenty-four": 948.0694430093871, + "cc:pop:grid3-total": 2583.5524450747366, + "cc:pop:kontur-total": 5005.848872168367, + "cc:pop:men": 2431.906045302516, + "cc:pop:sixty-plus": 323.0902432882249, + "cc:pop:total": 5192.949054065322, + "cc:pop:under-five": 835.787021833795, + "cc:pop:women": 2761.0430087628083, + "cc:pop:women-fiften-to-forty-nine": 1334.14209988304, + "cc:pop:wp-total": 3543.7341193232996, + "cc:pop:wp-total-UN": 4108.728532502393, + "cc:id": "587", + "cc:Name": "Yankasa MCHP", + "cc:site": [-12.3094, 8.7978], + "user:parentName": "Makari Gbanti", + "user:code": "OU_193257", + "user:orgUnitId": "SQz3xtx1Sgr", + "user:level": "4", + "user:parentId": "lY93YpCxJqf" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.728693, 9.370416], + [-11.7287, 9.370399], + [-11.729299, 9.366999], + [-11.7289, 9.3643], + [-11.727799, 9.361899], + [-11.7232, 9.3561], + [-11.720599, 9.351799], + [-11.717599, 9.349099], + [-11.713899, 9.347199], + [-11.711599, 9.344999], + [-11.707099, 9.336099], + [-11.705799, 9.330999], + [-11.7032, 9.3244], + [-11.702609, 9.319583], + [-11.694583, 9.319582], + [-11.700416, 9.30875], + [-11.694583, 9.30625], + [-11.692917, 9.309582], + [-11.690417, 9.311249], + [-11.685416, 9.311249], + [-11.682083, 9.307916], + [-11.686249, 9.30125], + [-11.675417, 9.300416], + [-11.677916, 9.295417], + [-11.677917, 9.294582], + [-11.679582, 9.289583], + [-11.67375, 9.282083], + [-11.669583, 9.282082], + [-11.667083, 9.279583], + [-11.665416, 9.277083], + [-11.662083, 9.27625], + [-11.660417, 9.276249], + [-11.65125, 9.272083], + [-11.649583, 9.272082], + [-11.648749, 9.267083], + [-11.64625, 9.267082], + [-11.644582, 9.264583], + [-11.642917, 9.264582], + [-11.642916, 9.25875], + [-11.639583, 9.257917], + [-11.632083, 9.260416], + [-11.632082, 9.250417], + [-11.630416, 9.250417], + [-11.622083, 9.254582], + [-11.618749, 9.25125], + [-11.617083, 9.25125], + [-11.611249, 9.257082], + [-11.606249, 9.252917], + [-11.604583, 9.252916], + [-11.604582, 9.24875], + [-11.60125, 9.247917], + [-11.599582, 9.248749], + [-11.59875, 9.248749], + [-11.594584, 9.244584], + [-11.594585, 9.244583], + [-11.600416, 9.244582], + [-11.604582, 9.23625], + [-11.595417, 9.237082], + [-11.593865, 9.231655], + [-11.593803, 9.231715], + [-11.593697, 9.232036], + [-11.593338, 9.232095], + [-11.591249, 9.227917], + [-11.587083, 9.225417], + [-11.584582, 9.228749], + [-11.57625, 9.224583], + [-11.575417, 9.226249], + [-11.574582, 9.226249], + [-11.574268, 9.226092], + [-11.574201, 9.225699], + [-11.573965, 9.225175], + [-11.570416, 9.224582], + [-11.566249, 9.217083], + [-11.56125, 9.217916], + [-11.559582, 9.21625], + [-11.550417, 9.216249], + [-11.548749, 9.212917], + [-11.545417, 9.210417], + [-11.545416, 9.20875], + [-11.537917, 9.21625], + [-11.537916, 9.21958], + [-11.536249, 9.217083], + [-11.534582, 9.217916], + [-11.531249, 9.217082], + [-11.525416, 9.21375], + [-11.52156, 9.21375], + [-11.522157, 9.21434], + [-11.522157, 9.214562], + [-11.520946, 9.215855], + [-11.52014, 9.217602], + [-11.51965, 9.220902], + [-11.519107, 9.22257], + [-11.518988, 9.22383], + [-11.519541, 9.227144], + [-11.520045, 9.228638], + [-11.521551, 9.231808], + [-11.521122, 9.232458], + [-11.521106, 9.232717], + [-11.521715, 9.234069], + [-11.522641, 9.234967], + [-11.524184, 9.23721], + [-11.525545, 9.238338], + [-11.522083, 9.240417], + [-11.517917, 9.250416], + [-11.518637, 9.251859], + [-11.518415, 9.252783], + [-11.51852, 9.255248], + [-11.518714, 9.25582], + [-11.519153, 9.256169], + [-11.520416, 9.256663], + [-11.520417, 9.260416], + [-11.521073, 9.261402], + [-11.521102, 9.261412], + [-11.521249, 9.261422], + [-11.52125, 9.262083], + [-11.525417, 9.265416], + [-11.530435, 9.265417], + [-11.530436, 9.265418], + [-11.530369, 9.265455], + [-11.528857, 9.265928], + [-11.527196, 9.266129], + [-11.525548, 9.26552], + [-11.52125, 9.27125], + [-11.521249, 9.272916], + [-11.519583, 9.272917], + [-11.520417, 9.27375], + [-11.523749, 9.275417], + [-11.523749, 9.277916], + [-11.522917, 9.277917], + [-11.522916, 9.280416], + [-11.522083, 9.282083], + [-11.522082, 9.283749], + [-11.52125, 9.286249], + [-11.528748, 9.29125], + [-11.527082, 9.292082], + [-11.520417, 9.290417], + [-11.517836, 9.289127], + [-11.517856, 9.289154], + [-11.518177, 9.290286], + [-11.514583, 9.292083], + [-11.514582, 9.292916], + [-11.502083, 9.29125], + [-11.50125, 9.298749], + [-11.501249, 9.302083], + [-11.499079, 9.311489], + [-11.499787, 9.311458], + [-11.50129, 9.311833], + [-11.502812, 9.312086], + [-11.503393, 9.312552], + [-11.505579, 9.312939], + [-11.505946, 9.313441], + [-11.506503, 9.313485], + [-11.50719, 9.313808], + [-11.508499, 9.313342], + [-11.510408, 9.313103], + [-11.511406, 9.313435], + [-11.50625, 9.32375], + [-11.507916, 9.327916], + [-11.507083, 9.330416], + [-11.50125, 9.33625], + [-11.500416, 9.345416], + [-11.494853, 9.346808], + [-11.497146, 9.35078], + [-11.493675, 9.352944], + [-11.491024, 9.354983], + [-11.490146, 9.355332], + [-11.490211, 9.355445], + [-11.486305, 9.362211], + [-11.490211, 9.368976], + [-11.486305, 9.375742], + [-11.490211, 9.382508], + [-11.488414, 9.385621], + [-11.489583, 9.387083], + [-11.489582, 9.401249], + [-11.48625, 9.405416], + [-11.486001, 9.405417], + [-11.487, 9.4077], + [-11.489499, 9.411999], + [-11.4909, 9.4151], + [-11.493299, 9.419399], + [-11.4947, 9.4226], + [-11.4972, 9.4268], + [-11.4986, 9.43], + [-11.5007, 9.4341], + [-11.501399, 9.4369], + [-11.5011, 9.440399], + [-11.499, 9.4455], + [-11.4989, 9.448199], + [-11.5002, 9.453999], + [-11.5036, 9.455], + [-11.509099, 9.457099], + [-11.5134, 9.4594], + [-11.521799, 9.463299], + [-11.527, 9.4644], + [-11.529399, 9.465299], + [-11.5322, 9.4668], + [-11.535399, 9.468199], + [-11.5376, 9.4698], + [-11.543699, 9.475299], + [-11.547299, 9.477999], + [-11.550499, 9.479399], + [-11.5548, 9.4818], + [-11.562099, 9.485199], + [-11.5642, 9.4858], + [-11.570399, 9.486499], + [-11.572999, 9.487099], + [-11.5788, 9.4894], + [-11.5831, 9.4899], + [-11.590899, 9.4899], + [-11.594199, 9.4895], + [-11.5964, 9.488799], + [-11.603799, 9.4851], + [-11.605999, 9.4834], + [-11.609899, 9.4796], + [-11.612799, 9.4762], + [-11.6156, 9.4721], + [-11.620599, 9.4689], + [-11.6225, 9.468099], + [-11.6248, 9.467599], + [-11.631199, 9.4674], + [-11.635199, 9.467999], + [-11.640999, 9.470299], + [-11.6445, 9.471], + [-11.647799, 9.472599], + [-11.6515, 9.4687], + [-11.656099, 9.4664], + [-11.6599, 9.463099], + [-11.6621, 9.459699], + [-11.6628, 9.457099], + [-11.6635, 9.4502], + [-11.665399, 9.4465], + [-11.6688, 9.442699], + [-11.673599, 9.438], + [-11.677199, 9.4351], + [-11.684699, 9.4314], + [-11.688199, 9.4304], + [-11.6989, 9.430299], + [-11.701799, 9.43], + [-11.703999, 9.4293], + [-11.7069, 9.427299], + [-11.7118, 9.422399], + [-11.7143, 9.418799], + [-11.7157, 9.415699], + [-11.718099, 9.4114], + [-11.7194, 9.408199], + [-11.7212, 9.404699], + [-11.7221, 9.401199], + [-11.722299, 9.3915], + [-11.7226, 9.387299], + [-11.7233, 9.385099], + [-11.725, 9.381499], + [-11.7264, 9.375599], + [-11.728693, 9.370416] + ] + ], + "type": "Polygon" + }, + "id": 588, + "properties": { + "cc:admin:id": ["20"], + "cc:oBld:total": 450, + "cc:pop:fifteen-to-twenty-four": 2661.071101275312, + "cc:pop:grid3-total": 10635.335655462915, + "cc:pop:kontur-total": 14091.475294448, + "cc:pop:men": 6552.459857884414, + "cc:pop:sixty-plus": 936.2681444841975, + "cc:pop:total": 14236.43048686477, + "cc:pop:under-five": 2235.811437810558, + "cc:pop:women": 7683.970628980347, + "cc:pop:women-fiften-to-forty-nine": 3685.0880633141996, + "cc:pop:wp-total": 12327.071485824785, + "cc:pop:wp-total-UN": 14290.773821371613, + "cc:id": "588", + "cc:Name": "Yara MCHP", + "cc:site": [-11.5822, 9.2701], + "user:parentName": "Diang", + "user:code": "OU_226264", + "user:orgUnitId": "M9q1wOOsrXp", + "user:level": "4", + "user:parentId": "Lt8U7GVWvSR" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.451478, 7.53583], + [-12.4507, 7.5346], + [-12.450099, 7.532899], + [-12.4454, 7.524], + [-12.444299, 7.522599], + [-12.442899, 7.5191], + [-12.441299, 7.520399], + [-12.438399, 7.5214], + [-12.435399, 7.521799], + [-12.4284, 7.521599], + [-12.424899, 7.520199], + [-12.418899, 7.5159], + [-12.4149, 7.5146], + [-12.4117, 7.516], + [-12.4072, 7.521199], + [-12.403799, 7.523799], + [-12.391, 7.528299], + [-12.379699, 7.528], + [-12.3652, 7.5291], + [-12.3578, 7.5328], + [-12.357799, 7.538399], + [-12.3523, 7.543999], + [-12.347399, 7.5453], + [-12.343, 7.5479], + [-12.342999, 7.553299], + [-12.3396, 7.556699], + [-12.336, 7.559599], + [-12.331499, 7.5621], + [-12.325699, 7.5665], + [-12.322399, 7.568099], + [-12.3182, 7.568499], + [-12.295299, 7.5685], + [-12.290899, 7.5693], + [-12.286399, 7.5711], + [-12.2801, 7.572099], + [-12.277, 7.5733], + [-12.276299, 7.5739], + [-12.273, 7.579099], + [-12.2714, 7.582799], + [-12.27, 7.585099], + [-12.2681, 7.587099], + [-12.266769, 7.588129], + [-12.267042, 7.588529], + [-12.267152, 7.589106], + [-12.26714, 7.591166], + [-12.26739, 7.592455], + [-12.268098, 7.593519], + [-12.268848, 7.594018], + [-12.27004, 7.593649], + [-12.270452, 7.593207], + [-12.272082, 7.59375], + [-12.27125, 7.600416], + [-12.271474, 7.600545], + [-12.271906, 7.599799], + [-12.279718, 7.599798], + [-12.283625, 7.593033], + [-12.291437, 7.593033], + [-12.292082, 7.594151], + [-12.292082, 7.598749], + [-12.28932, 7.602203], + [-12.295521, 7.602204], + [-12.299428, 7.608968], + [-12.30724, 7.608969], + [-12.30951, 7.612899], + [-12.309583, 7.612917], + [-12.312082, 7.615416], + [-12.312083, 7.617083], + [-12.316249, 7.614584], + [-12.320073, 7.614583], + [-12.319939, 7.614119], + [-12.319912, 7.614084], + [-12.322865, 7.608969], + [-12.330678, 7.608969], + [-12.334584, 7.615734], + [-12.3398, 7.615734], + [-12.340417, 7.609584], + [-12.342917, 7.609584], + [-12.352916, 7.612916], + [-12.354582, 7.609584], + [-12.358749, 7.607083], + [-12.359288, 7.605469], + [-12.359582, 7.605478], + [-12.359583, 7.605416], + [-12.362917, 7.602084], + [-12.367082, 7.602917], + [-12.369434, 7.605856], + [-12.369426, 7.605766], + [-12.369607, 7.604584], + [-12.371844, 7.604583], + [-12.372079, 7.604057], + [-12.373337, 7.603521], + [-12.374389, 7.60331], + [-12.375415, 7.602983], + [-12.376628, 7.602541], + [-12.377539, 7.60198], + [-12.378798, 7.601374], + [-12.380034, 7.600954], + [-12.380921, 7.600581], + [-12.381784, 7.600673], + [-12.382391, 7.601001], + [-12.383068, 7.601863], + [-12.383816, 7.60359], + [-12.384398, 7.604057], + [-12.387176, 7.60541], + [-12.388282, 7.605441], + [-12.388726, 7.605151], + [-12.38898, 7.604798], + [-12.389149, 7.604622], + [-12.389255, 7.604367], + [-12.38936, 7.603736], + [-12.389219, 7.602826], + [-12.388736, 7.601873], + [-12.388548, 7.601176], + [-12.388023, 7.599296], + [-12.387798, 7.597062], + [-12.387579, 7.595801], + [-12.387669, 7.595274], + [-12.387968, 7.59433], + [-12.390094, 7.592264], + [-12.390796, 7.591782], + [-12.391065, 7.591632], + [-12.39202, 7.59136], + [-12.393575, 7.590787], + [-12.394364, 7.59058], + [-12.395066, 7.590255], + [-12.396489, 7.589297], + [-12.397019, 7.588852], + [-12.397421, 7.588549], + [-12.397832, 7.588071], + [-12.398044, 7.58766], + [-12.39833, 7.586935], + [-12.398343, 7.586836], + [-12.396844, 7.586535], + [-12.3969, 7.586203], + [-12.39656, 7.584526], + [-12.396009, 7.583136], + [-12.396131, 7.581749], + [-12.396759, 7.580072], + [-12.397336, 7.579129], + [-12.398491, 7.578682], + [-12.400325, 7.57808], + [-12.401559, 7.577827], + [-12.404815, 7.578161], + [-12.406086, 7.578627], + [-12.407411, 7.579197], + [-12.408569, 7.579986], + [-12.409526, 7.580624], + [-12.410281, 7.580891], + [-12.411236, 7.580723], + [-12.411001, 7.579802], + [-12.410365, 7.578996], + [-12.409441, 7.578341], + [-12.408182, 7.577586], + [-12.407159, 7.576865], + [-12.406154, 7.576043], + [-12.405499, 7.575439], + [-12.405124, 7.574772], + [-12.404735, 7.573415], + [-12.404976, 7.571603], + [-12.405714, 7.569697], + [-12.406757, 7.567917], + [-12.407083, 7.567917], + [-12.409037, 7.57052], + [-12.409349, 7.570324], + [-12.410597, 7.569511], + [-12.413038, 7.568453], + [-12.414083, 7.56806], + [-12.414443, 7.567963], + [-12.414588, 7.567607], + [-12.415312, 7.567135], + [-12.416782, 7.566501], + [-12.4183, 7.565832], + [-12.419261, 7.565315], + [-12.420021, 7.564582], + [-12.420424, 7.56414], + [-12.42088, 7.563046], + [-12.421073, 7.562417], + [-12.42094, 7.561498], + [-12.41966, 7.559143], + [-12.418983, 7.558708], + [-12.414223, 7.558707], + [-12.411503, 7.553998], + [-12.410129, 7.5536], + [-12.409067, 7.553527], + [-12.407546, 7.553602], + [-12.405881, 7.554312], + [-12.40393, 7.554313], + [-12.401229, 7.558989], + [-12.400154, 7.56011], + [-12.399517, 7.56075], + [-12.398535, 7.560945], + [-12.397813, 7.560853], + [-12.396925, 7.560461], + [-12.39545, 7.559104], + [-12.394692, 7.558205], + [-12.39467, 7.557152], + [-12.394905, 7.555866], + [-12.395541, 7.554545], + [-12.396151, 7.552951], + [-12.397373, 7.550591], + [-12.398855, 7.548458], + [-12.395861, 7.547825], + [-12.396786, 7.545439], + [-12.399238, 7.540707], + [-12.417713, 7.54279], + [-12.426254, 7.539451], + [-12.437969, 7.535814], + [-12.441356, 7.533539], + [-12.443173, 7.536684], + [-12.450984, 7.536685], + [-12.451478, 7.53583] + ] + ], + "type": "Polygon" + }, + "id": 589, + "properties": { + "cc:admin:id": ["39"], + "cc:oBld:total": 423, + "cc:pop:fifteen-to-twenty-four": 268.5101453443492, + "cc:pop:grid3-total": 4250.284914343588, + "cc:pop:kontur-total": 1502.0664933201476, + "cc:pop:men": 709.7036503146443, + "cc:pop:sixty-plus": 88.80257317112739, + "cc:pop:total": 1437.2045190277954, + "cc:pop:under-five": 254.5503235617633, + "cc:pop:women": 727.5008687131512, + "cc:pop:women-fiften-to-forty-nine": 352.3440763604043, + "cc:pop:wp-total": 1444.4168363242716, + "cc:pop:wp-total-UN": 1681.006806051887, + "cc:id": "589", + "cc:Name": "Yargoi MCHP", + "cc:site": [-12.3374, 7.5738], + "user:parentName": "Imperi", + "user:code": "OU_197416", + "user:orgUnitId": "XctPvvWIIcF", + "user:level": "4", + "user:parentId": "XEyIRFd9pct" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.028192, 8.426916], + [-12.027199, 8.4275], + [-12.023899, 8.427999], + [-12.021, 8.4265], + [-12.0195, 8.424099], + [-12.0196, 8.4212], + [-12.0216, 8.416899], + [-12.0233, 8.411099], + [-12.025299, 8.406799], + [-12.025499, 8.4032], + [-12.024199, 8.4007], + [-12.022499, 8.3994], + [-12.019399, 8.398599], + [-12.016599, 8.3985], + [-12.0088, 8.398799], + [-12.005, 8.3987], + [-12.001699, 8.397999], + [-11.999899, 8.396399], + [-11.997899, 8.393799], + [-11.9916, 8.3869], + [-11.990644, 8.384113], + [-11.990437, 8.384253], + [-11.989857, 8.384194], + [-11.989397, 8.38406], + [-11.989132, 8.383731], + [-11.988833, 8.381214], + [-11.988653, 8.38075], + [-11.987612, 8.379525], + [-11.987015, 8.379399], + [-11.986459, 8.379981], + [-11.985406, 8.383737], + [-11.985008, 8.383342], + [-11.984232, 8.386365], + [-11.983626, 8.387513], + [-11.98319, 8.387894], + [-11.982499, 8.388247], + [-11.981885, 8.388306], + [-11.978989, 8.388031], + [-11.975439, 8.388031], + [-11.973499, 8.388645], + [-11.969764, 8.388802], + [-11.968773, 8.389125], + [-11.968311, 8.389494], + [-11.968473, 8.390144], + [-11.967249, 8.39142], + [-11.9669, 8.392863], + [-11.968109, 8.394583], + [-11.967625, 8.394584], + [-11.967809, 8.395028], + [-11.967754, 8.395396], + [-11.967122, 8.396366], + [-11.965772, 8.397879], + [-11.964672, 8.397965], + [-11.963535, 8.397653], + [-11.962957, 8.397298], + [-11.960698, 8.394075], + [-11.960105, 8.393748], + [-11.958888, 8.393466], + [-11.958242, 8.393595], + [-11.957486, 8.394121], + [-11.954591, 8.39636], + [-11.953405, 8.397511], + [-11.952403, 8.399249], + [-11.951118, 8.402516], + [-11.950725, 8.403164], + [-11.949083, 8.404948], + [-11.945295, 8.408192], + [-11.942869, 8.411872], + [-11.942327, 8.412298], + [-11.941968, 8.412376], + [-11.941321, 8.412165], + [-11.94012, 8.411561], + [-11.938151, 8.40994], + [-11.936723, 8.408409], + [-11.935566, 8.407671], + [-11.934739, 8.407614], + [-11.929744, 8.410665], + [-11.927157, 8.411798], + [-11.921931, 8.413567], + [-11.921913, 8.41358], + [-11.922245, 8.413913], + [-11.921581, 8.414214], + [-11.920264, 8.415102], + [-11.919905, 8.415587], + [-11.919632, 8.416697], + [-11.919616, 8.41917], + [-11.920274, 8.422423], + [-11.921621, 8.425892], + [-11.922761, 8.425837], + [-11.923479, 8.426537], + [-11.923479, 8.426538], + [-11.922224, 8.426751], + [-11.921818, 8.428097], + [-11.921817, 8.429116], + [-11.921526, 8.430899], + [-11.921071, 8.431251], + [-11.92513, 8.431252], + [-11.926184, 8.43308], + [-11.926332, 8.433977], + [-11.927691, 8.437476], + [-11.935416, 8.435416], + [-11.93625, 8.43125], + [-11.942082, 8.42875], + [-11.954582, 8.428749], + [-11.954386, 8.426583], + [-11.959738, 8.426583], + [-11.962916, 8.432087], + [-11.962917, 8.427917], + [-11.967739, 8.427917], + [-11.971647, 8.434682], + [-11.972718, 8.434682], + [-11.975327, 8.433378], + [-11.975352, 8.433229], + [-11.975303, 8.433129], + [-11.975304, 8.433128], + [-11.977916, 8.432084], + [-11.978618, 8.43699], + [-11.98254, 8.434396], + [-11.982916, 8.434583], + [-11.98375, 8.437916], + [-11.985417, 8.43875], + [-11.987917, 8.443749], + [-11.988749, 8.443749], + [-11.990252, 8.434732], + [-11.990437, 8.434762], + [-11.990697, 8.434843], + [-11.99125, 8.432084], + [-11.999582, 8.432916], + [-12.002917, 8.43125], + [-12.007916, 8.432916], + [-12.010417, 8.43125], + [-12.012917, 8.433749], + [-12.019582, 8.436249], + [-12.025416, 8.433749], + [-12.025417, 8.431424], + [-12.026588, 8.429735], + [-12.028192, 8.426916] + ] + ], + "type": "Polygon" + }, + "id": 590, + "properties": { + "cc:admin:id": ["36"], + "cc:oBld:total": 0, + "cc:pop:fifteen-to-twenty-four": 485.4242176697457, + "cc:pop:grid3-total": 2886.9194575257134, + "cc:pop:kontur-total": 2419.874972330088, + "cc:pop:men": 1206.3235584904046, + "cc:pop:sixty-plus": 169.9087030909447, + "cc:pop:total": 2619.110563550154, + "cc:pop:under-five": 413.9379708293199, + "cc:pop:women": 1412.7870050597487, + "cc:pop:women-fiften-to-forty-nine": 690.3932030844057, + "cc:pop:wp-total": 2561.6732286056813, + "cc:pop:wp-total-UN": 2972.7739746472084, + "cc:id": "590", + "cc:Name": "Yeben MCHP", + "cc:site": [-11.9933, 8.4001], + "user:parentName": "Gbonkonlenken", + "user:code": "OU_268209", + "user:orgUnitId": "g031LbUPMmh", + "user:level": "4", + "user:parentId": "P69SId31eDp" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-10.913399, 8.632899], + [-10.9096, 8.6266], + [-10.908799, 8.624399], + [-10.908299, 8.619999], + [-10.9082, 8.6099], + [-10.9075, 8.6051], + [-10.905299, 8.599699], + [-10.904499, 8.595999], + [-10.9041, 8.5902], + [-10.9035, 8.5865], + [-10.901199, 8.580599], + [-10.900499, 8.576399], + [-10.899899, 8.569699], + [-10.898999, 8.566199], + [-10.897299, 8.562499], + [-10.8965, 8.5588], + [-10.8965, 8.555799], + [-10.897099, 8.5521], + [-10.899199, 8.5476], + [-10.900799, 8.5424], + [-10.901899, 8.5397], + [-10.8936, 8.5366], + [-10.8914, 8.535199], + [-10.8894, 8.532599], + [-10.888099, 8.526799], + [-10.8869, 8.5245], + [-10.885399, 8.522499], + [-10.883599, 8.520699], + [-10.8815, 8.5192], + [-10.873199, 8.515099], + [-10.8697, 8.5145], + [-10.8669, 8.5144], + [-10.8642, 8.514699], + [-10.8617, 8.515499], + [-10.8582, 8.517399], + [-10.854999, 8.5188], + [-10.8508, 8.521199], + [-10.847599, 8.5225], + [-10.8433, 8.524899], + [-10.839399, 8.5268], + [-10.836599, 8.5289], + [-10.817083, 8.548561], + [-10.817083, 8.556249], + [-10.81875, 8.558749], + [-10.824582, 8.55875], + [-10.826004, 8.559224], + [-10.826051, 8.559583], + [-10.830416, 8.559584], + [-10.835417, 8.56125], + [-10.836249, 8.562917], + [-10.83625, 8.563887], + [-10.836456, 8.564245], + [-10.83625, 8.564604], + [-10.836249, 8.569583], + [-10.830417, 8.577084], + [-10.832083, 8.583749], + [-10.836249, 8.58875], + [-10.83625, 8.592916], + [-10.837917, 8.592917], + [-10.842916, 8.59875], + [-10.844113, 8.602343], + [-10.843013, 8.604451], + [-10.842861, 8.604583], + [-10.842917, 8.604584], + [-10.84875, 8.610416], + [-10.852916, 8.60875], + [-10.852917, 8.613749], + [-10.861249, 8.617083], + [-10.864068, 8.617084], + [-10.864032, 8.617165], + [-10.863252, 8.618367], + [-10.862788, 8.620169], + [-10.861351, 8.621844], + [-10.860488, 8.624809], + [-10.862916, 8.625417], + [-10.867082, 8.628749], + [-10.867083, 8.630416], + [-10.869582, 8.632083], + [-10.870417, 8.634583], + [-10.872916, 8.636249], + [-10.874583, 8.637916], + [-10.882916, 8.63875], + [-10.882916, 8.643749], + [-10.881906, 8.645265], + [-10.882082, 8.645425], + [-10.882083, 8.64625], + [-10.882916, 8.64875], + [-10.882303, 8.653661], + [-10.882385, 8.653662], + [-10.882574, 8.65394], + [-10.882891, 8.653578], + [-10.883269, 8.653699], + [-10.883469, 8.653359], + [-10.883384, 8.652898], + [-10.883014, 8.652687], + [-10.883261, 8.652199], + [-10.883594, 8.652442], + [-10.884385, 8.651958], + [-10.885058, 8.651965], + [-10.885798, 8.650614], + [-10.88642, 8.650734], + [-10.8864, 8.650994], + [-10.88715, 8.65108], + [-10.887564, 8.651397], + [-10.887922, 8.651425], + [-10.887779, 8.651705], + [-10.888008, 8.651992], + [-10.887859, 8.652156], + [-10.888089, 8.652353], + [-10.88788, 8.65256], + [-10.888245, 8.653094], + [-10.888701, 8.653264], + [-10.889128, 8.653183], + [-10.889768, 8.652793], + [-10.890135, 8.653135], + [-10.89014, 8.653149], + [-10.889929, 8.653234], + [-10.889703, 8.653342], + [-10.889467, 8.654616], + [-10.889543, 8.65496], + [-10.890125, 8.655123], + [-10.890243, 8.655482], + [-10.892299, 8.653], + [-10.894399, 8.6489], + [-10.8971, 8.645199], + [-10.8999, 8.642599], + [-10.9021, 8.641299], + [-10.9055, 8.639699], + [-10.9085, 8.637399], + [-10.913399, 8.632899] + ] + ], + "type": "Polygon" + }, + "id": 591, + "properties": { + "cc:admin:id": ["24"], + "cc:oBld:total": 971, + "cc:pop:fifteen-to-twenty-four": 690.5485473236915, + "cc:pop:grid3-total": 6151.136349236909, + "cc:pop:kontur-total": 3295.1926846025895, + "cc:pop:men": 1679.5692724880687, + "cc:pop:sixty-plus": 158.56276945983578, + "cc:pop:total": 3394.4452671341096, + "cc:pop:under-five": 545.1680790689355, + "cc:pop:women": 1714.8759946460405, + "cc:pop:women-fiften-to-forty-nine": 849.1113167835274, + "cc:pop:wp-total": 2958.511176420269, + "cc:pop:wp-total-UN": 3429.1822856444905, + "cc:id": "591", + "cc:Name": "Yekior MCHP", + "cc:site": [-10.878, 8.5759], + "user:parentName": "Fiama", + "user:code": "OU_233361", + "user:orgUnitId": "dBD9OHJFN8u", + "user:level": "4", + "user:parentId": "CF243RPvNY7" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.993699, 8.3772], + [-11.987999, 8.3689], + [-11.984699, 8.3663], + [-11.980199, 8.3647], + [-11.975, 8.365399], + [-11.9707, 8.364699], + [-11.9637, 8.3611], + [-11.960899, 8.359899], + [-11.954299, 8.356799], + [-11.9447, 8.3531], + [-11.938099, 8.351099], + [-11.925699, 8.345899], + [-11.917, 8.3439], + [-11.9094, 8.3418], + [-11.8945, 8.3402], + [-11.886999, 8.338099], + [-11.877, 8.3366], + [-11.8682, 8.3342], + [-11.864, 8.3337], + [-11.8596, 8.333799], + [-11.8554, 8.334499], + [-11.8443, 8.338399], + [-11.8318, 8.346399], + [-11.8262, 8.351], + [-11.823, 8.360099], + [-11.8211, 8.363399], + [-11.816599, 8.3686], + [-11.8113, 8.373099], + [-11.8028, 8.377699], + [-11.7952, 8.381099], + [-11.7885, 8.382899], + [-11.783899, 8.3846], + [-11.7749, 8.3864], + [-11.7701, 8.388999], + [-11.7671, 8.391999], + [-11.764799, 8.3953], + [-11.762936, 8.399754], + [-11.762499, 8.4008], + [-11.7593, 8.410799], + [-11.757399, 8.4152], + [-11.754399, 8.4194], + [-11.7434, 8.431599], + [-11.738699, 8.44], + [-11.734899, 8.4486], + [-11.733499, 8.4531], + [-11.7321, 8.459899], + [-11.7308, 8.464499], + [-11.728099, 8.4708], + [-11.7259, 8.473599], + [-11.721799, 8.477], + [-11.717499, 8.4819], + [-11.714599, 8.4842], + [-11.7103, 8.487], + [-11.714599, 8.490499], + [-11.719999, 8.495499], + [-11.722999, 8.497899], + [-11.7286, 8.501], + [-11.7343, 8.5054], + [-11.7386, 8.5075], + [-11.742899, 8.509799], + [-11.746099, 8.511199], + [-11.750499, 8.513499], + [-11.7537, 8.5149], + [-11.757999, 8.517299], + [-11.7612, 8.5186], + [-11.765499, 8.520999], + [-11.7688, 8.5223], + [-11.777199, 8.526799], + [-11.7837, 8.5317], + [-11.7876, 8.5335], + [-11.791899, 8.535899], + [-11.7951, 8.5372], + [-11.799499, 8.539599], + [-11.8027, 8.5409], + [-11.806999, 8.543299], + [-11.8102, 8.5446], + [-11.814499, 8.546999], + [-11.817699, 8.548399], + [-11.819535, 8.5494], + [-11.819862, 8.548729], + [-11.820481, 8.547246], + [-11.820601, 8.546119], + [-11.819972, 8.544257], + [-11.818204, 8.540088], + [-11.818082, 8.53941], + [-11.818799, 8.537304], + [-11.824582, 8.538749], + [-11.83125, 8.532084], + [-11.832916, 8.532083], + [-11.834583, 8.53125], + [-11.844582, 8.53125], + [-11.845315, 8.531322], + [-11.843416, 8.528032], + [-11.845234, 8.524881], + [-11.845653, 8.52444], + [-11.84588, 8.524368], + [-11.847187, 8.526109], + [-11.850186, 8.526109], + [-11.854094, 8.519345], + [-11.856313, 8.519345], + [-11.860247, 8.524574], + [-11.859583, 8.52125], + [-11.860246, 8.517936], + [-11.861589, 8.518005], + [-11.86439, 8.51688], + [-11.869877, 8.515635], + [-11.871824, 8.514922], + [-11.872977, 8.514279], + [-11.87495, 8.513744], + [-11.875154, 8.51368], + [-11.876788, 8.511931], + [-11.877406, 8.51148], + [-11.882573, 8.510236], + [-11.886264, 8.508454], + [-11.888135, 8.507895], + [-11.888193, 8.507859], + [-11.884583, 8.502084], + [-11.885416, 8.500417], + [-11.892916, 8.498749], + [-11.897082, 8.496249], + [-11.897082, 8.490417], + [-11.89375, 8.487083], + [-11.894582, 8.474584], + [-11.89375, 8.47375], + [-11.893902, 8.473655], + [-11.894803, 8.473434], + [-11.895563, 8.473965], + [-11.896037, 8.475162], + [-11.896969, 8.475672], + [-11.897152, 8.474876], + [-11.896937, 8.474027], + [-11.896294, 8.472817], + [-11.896239, 8.472331], + [-11.896627, 8.471927], + [-11.897067, 8.471916], + [-11.897291, 8.472288], + [-11.897303, 8.472764], + [-11.898021, 8.473082], + [-11.898181, 8.473519], + [-11.898461, 8.473666], + [-11.899704, 8.47283], + [-11.900121, 8.472989], + [-11.900371, 8.473507], + [-11.900949, 8.473932], + [-11.901656, 8.473667], + [-11.903749, 8.471615], + [-11.90375, 8.469583], + [-11.907082, 8.464583], + [-11.904582, 8.459584], + [-11.902917, 8.458749], + [-11.90375, 8.45625], + [-11.904582, 8.455416], + [-11.904583, 8.44875], + [-11.910318, 8.444653], + [-11.910328, 8.444656], + [-11.910736, 8.444647], + [-11.911791, 8.439375], + [-11.911731, 8.439062], + [-11.911881, 8.438929], + [-11.912916, 8.43375], + [-11.90875, 8.432916], + [-11.908004, 8.425454], + [-11.908562, 8.425503], + [-11.909897, 8.426077], + [-11.911663, 8.427072], + [-11.911567, 8.426686], + [-11.911568, 8.426684], + [-11.914594, 8.428267], + [-11.916393, 8.429001], + [-11.917738, 8.429318], + [-11.918548, 8.429269], + [-11.919436, 8.428914], + [-11.921304, 8.426226], + [-11.919921, 8.422666], + [-11.91989, 8.422537], + [-11.920271, 8.422408], + [-11.919616, 8.41917], + [-11.919633, 8.416696], + [-11.919905, 8.415587], + [-11.920264, 8.415102], + [-11.921581, 8.414214], + [-11.922245, 8.413912], + [-11.921913, 8.41358], + [-11.921913, 8.413578], + [-11.921931, 8.413566], + [-11.927157, 8.411798], + [-11.929744, 8.410665], + [-11.934739, 8.407614], + [-11.935567, 8.407671], + [-11.936723, 8.408409], + [-11.938151, 8.40994], + [-11.94012, 8.411561], + [-11.941321, 8.412165], + [-11.941969, 8.412376], + [-11.942327, 8.412298], + [-11.942869, 8.411872], + [-11.945295, 8.408192], + [-11.949083, 8.404948], + [-11.950725, 8.403164], + [-11.951118, 8.402516], + [-11.952403, 8.399249], + [-11.953405, 8.397511], + [-11.954591, 8.39636], + [-11.957486, 8.394121], + [-11.958241, 8.393595], + [-11.958889, 8.393466], + [-11.960104, 8.393747], + [-11.960697, 8.394075], + [-11.962956, 8.397297], + [-11.963534, 8.397652], + [-11.964673, 8.397965], + [-11.965772, 8.397879], + [-11.967122, 8.396366], + [-11.967754, 8.395396], + [-11.967809, 8.395029], + [-11.967625, 8.394584], + [-11.96811, 8.394583], + [-11.9669, 8.392863], + [-11.967248, 8.39142], + [-11.968473, 8.390144], + [-11.968311, 8.389494], + [-11.968772, 8.389125], + [-11.969765, 8.388801], + [-11.973499, 8.388645], + [-11.975439, 8.388031], + [-11.978989, 8.388031], + [-11.981884, 8.388306], + [-11.9825, 8.388247], + [-11.98319, 8.387894], + [-11.983626, 8.387513], + [-11.984232, 8.386365], + [-11.985007, 8.383343], + [-11.985009, 8.383343], + [-11.985405, 8.383738], + [-11.986459, 8.379981], + [-11.987014, 8.379399], + [-11.987613, 8.379525], + [-11.988653, 8.38075], + [-11.988833, 8.381214], + [-11.989132, 8.383731], + [-11.989397, 8.38406], + [-11.989858, 8.384195], + [-11.990437, 8.384253], + [-11.990644, 8.384112], + [-11.9904, 8.383399], + [-11.991399, 8.3807], + [-11.993699, 8.3772] + ] + ], + "type": "Polygon" + }, + "id": 592, + "properties": { + "cc:admin:id": ["36"], + "cc:oBld:total": 1055, + "cc:pop:fifteen-to-twenty-four": 8545.968818968719, + "cc:pop:grid3-total": 35542.35956713861, + "cc:pop:kontur-total": 47129.00553203044, + "cc:pop:men": 21423.223705088883, + "cc:pop:sixty-plus": 3009.7281124742144, + "cc:pop:total": 46518.23014769193, + "cc:pop:under-five": 7341.893195554755, + "cc:pop:women": 25095.00644260307, + "cc:pop:women-fiften-to-forty-nine": 12183.012140587203, + "cc:pop:wp-total": 36516.37520308967, + "cc:pop:wp-total-UN": 42314.787470120464, + "cc:id": "592", + "cc:Name": "Yele CHC", + "cc:site": [-11.8329, 8.4141], + "user:parentName": "Gbonkonlenken", + "user:code": "OU_268207", + "user:orgUnitId": "sesv0eXljBq", + "user:level": "4", + "user:parentId": "P69SId31eDp" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.10125, 8.628749], + [-11.101249, 8.627916], + [-11.09625, 8.622917], + [-11.096249, 8.62125], + [-11.092917, 8.620416], + [-11.092917, 8.619583], + [-11.095416, 8.61375], + [-11.096334, 8.611914], + [-11.095509, 8.611701], + [-11.094946, 8.61128], + [-11.093877, 8.611189], + [-11.093112, 8.610882], + [-11.093025, 8.610894], + [-11.092731, 8.61035], + [-11.093395, 8.609341], + [-11.093029, 8.609141], + [-11.092843, 8.607981], + [-11.091962, 8.607471], + [-11.090657, 8.607144], + [-11.090188, 8.606741], + [-11.090223, 8.605417], + [-11.089802, 8.605134], + [-11.089802, 8.604585], + [-11.090374, 8.604317], + [-11.089805, 8.603863], + [-11.088719, 8.60424], + [-11.087961, 8.604294], + [-11.087513, 8.602455], + [-11.087234, 8.601439], + [-11.086249, 8.602916], + [-11.082917, 8.602084], + [-11.081314, 8.603151], + [-11.080219, 8.601176], + [-11.080078, 8.599868], + [-11.079806, 8.598984], + [-11.080023, 8.598263], + [-11.079384, 8.598597], + [-11.078967, 8.598219], + [-11.078367, 8.598265], + [-11.077617, 8.598813], + [-11.077222, 8.598846], + [-11.076426, 8.598675], + [-11.075951, 8.5984], + [-11.075116, 8.5986], + [-11.073942, 8.599251], + [-11.074263, 8.5981], + [-11.073766, 8.597971], + [-11.07243, 8.597101], + [-11.071961, 8.596434], + [-11.071645, 8.596491], + [-11.07108, 8.596311], + [-11.070055, 8.596514], + [-11.069927, 8.59683], + [-11.069489, 8.59709], + [-11.069346, 8.597204], + [-11.0693, 8.597253], + [-11.069121, 8.597599], + [-11.069099, 8.597636], + [-11.069019, 8.597819], + [-11.069054, 8.598104], + [-11.069286, 8.598367], + [-11.069286, 8.598368], + [-11.06625, 8.599583], + [-11.065416, 8.59875], + [-11.058749, 8.602083], + [-11.056622, 8.601552], + [-11.055884, 8.60198], + [-11.055666, 8.602041], + [-11.054582, 8.600417], + [-11.049582, 8.601249], + [-11.047916, 8.600417], + [-11.047597, 8.600575], + [-11.046662, 8.599067], + [-11.045448, 8.599529], + [-11.04438, 8.601202], + [-11.04308, 8.603396], + [-11.041988, 8.604348], + [-11.041683, 8.604781], + [-11.041569, 8.604961], + [-11.041273, 8.605998], + [-11.041221, 8.606224], + [-11.040969, 8.606838], + [-11.042146, 8.608217], + [-11.042197, 8.608279], + [-11.041777, 8.608675], + [-11.040829, 8.609324], + [-11.040756, 8.609515], + [-11.04045, 8.609599], + [-11.039678, 8.609782], + [-11.039305, 8.610225], + [-11.039123, 8.610635], + [-11.038668, 8.611773], + [-11.038492, 8.612183], + [-11.038703, 8.612373], + [-11.039202, 8.613143], + [-11.039286, 8.613169], + [-11.039848, 8.614372], + [-11.03939, 8.615142], + [-11.041804, 8.616357], + [-11.042032, 8.616595], + [-11.041334, 8.616786], + [-11.040777, 8.616674], + [-11.039398, 8.616081], + [-11.036145, 8.621715], + [-11.04005, 8.62848], + [-11.039477, 8.629476], + [-11.040416, 8.630417], + [-11.03875, 8.633749], + [-11.040416, 8.634583], + [-11.040417, 8.635416], + [-11.042082, 8.637084], + [-11.040416, 8.644583], + [-11.038749, 8.64375], + [-11.035417, 8.64375], + [-11.033991, 8.64945], + [-11.034366, 8.649435], + [-11.03375, 8.653749], + [-11.033729, 8.65377], + [-11.0364, 8.6552], + [-11.0396, 8.6565], + [-11.0432, 8.6585], + [-11.047699, 8.660699], + [-11.050499, 8.663699], + [-11.054499, 8.671999], + [-11.055699, 8.677099], + [-11.056022, 8.677841], + [-11.057083, 8.676249], + [-11.060416, 8.674582], + [-11.06125, 8.672083], + [-11.066795, 8.673469], + [-11.067226, 8.672247], + [-11.068528, 8.669232], + [-11.072082, 8.670416], + [-11.074583, 8.665417], + [-11.080416, 8.665417], + [-11.082083, 8.667916], + [-11.087082, 8.667084], + [-11.093749, 8.668749], + [-11.094143, 8.667964], + [-11.094184, 8.668008], + [-11.094328, 8.668234], + [-11.096249, 8.663749], + [-11.094582, 8.657917], + [-11.092917, 8.656249], + [-11.094582, 8.652083], + [-11.092916, 8.647084], + [-11.09125, 8.647083], + [-11.091249, 8.640417], + [-11.090416, 8.640416], + [-11.089583, 8.638749], + [-11.089583, 8.637916], + [-11.090416, 8.631251], + [-11.090418, 8.63125], + [-11.097082, 8.632916], + [-11.10125, 8.628749] + ] + ], + "type": "Polygon" + }, + "id": 593, + "properties": { + "cc:admin:id": ["100"], + "cc:oBld:total": 2060, + "cc:pop:fifteen-to-twenty-four": 2336.486280635072, + "cc:pop:grid3-total": 16022.85381939278, + "cc:pop:kontur-total": 12855.49343026545, + "cc:pop:men": 6928.210981512966, + "cc:pop:sixty-plus": 748.0516284527582, + "cc:pop:total": 12582.566526191838, + "cc:pop:under-five": 1991.1444330697068, + "cc:pop:women": 5654.355544678874, + "cc:pop:women-fiften-to-forty-nine": 2827.9861539174312, + "cc:pop:wp-total": 10306.931505061104, + "cc:pop:wp-total-UN": 11950.61887321739, + "cc:id": "593", + "cc:Name": "Yengema CHC", + "cc:site": [-11.0427, 8.6167], + "user:parentName": "Nimikoro", + "user:code": "OU_233398", + "user:orgUnitId": "PA1spYiNZfv", + "user:level": "4", + "user:parentId": "DmaLM8WYmWv" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-13.203998, 8.596485], + [-13.203799, 8.5943], + [-13.202899, 8.593699], + [-13.202599, 8.5904], + [-13.2021, 8.590099], + [-13.202099, 8.5885], + [-13.2015, 8.587899], + [-13.201499, 8.5854], + [-13.2007, 8.583799], + [-13.1999, 8.579], + [-13.199, 8.577099], + [-13.198999, 8.5751], + [-13.1982, 8.574599], + [-13.198199, 8.5735], + [-13.1974, 8.5715], + [-13.196499, 8.570999], + [-13.195999, 8.569], + [-13.195099, 8.568199], + [-13.194299, 8.565999], + [-13.192099, 8.5626], + [-13.191499, 8.562599], + [-13.1904, 8.560399], + [-13.190399, 8.559], + [-13.189299, 8.558499], + [-13.188699, 8.5565], + [-13.1876, 8.554899], + [-13.187399, 8.5535], + [-13.1863, 8.5529], + [-13.186192, 8.552677], + [-13.184583, 8.55375], + [-13.184175, 8.555785], + [-13.183632, 8.556065], + [-13.183502, 8.556131], + [-13.1835, 8.556131], + [-13.184063, 8.555173], + [-13.183977, 8.554794], + [-13.183712, 8.55475], + [-13.183586, 8.554507], + [-13.18346, 8.554723], + [-13.182868, 8.556123], + [-13.182773, 8.556426], + [-13.182614, 8.557003], + [-13.182594, 8.557059], + [-13.182248, 8.557547], + [-13.18214, 8.5576], + [-13.181763, 8.557713], + [-13.181309, 8.55784], + [-13.181726, 8.558], + [-13.182595, 8.557946], + [-13.182585, 8.558888], + [-13.182347, 8.559743], + [-13.182391, 8.55994], + [-13.18295, 8.560406], + [-13.182452, 8.560992], + [-13.182452, 8.561419], + [-13.182773, 8.561545], + [-13.183206, 8.561403], + [-13.183426, 8.561716], + [-13.183372, 8.562147], + [-13.18356, 8.562295], + [-13.184286, 8.561946], + [-13.185017, 8.562772], + [-13.185404, 8.562701], + [-13.185637, 8.562471], + [-13.185516, 8.561868], + [-13.185677, 8.561809], + [-13.18651, 8.562169], + [-13.18651, 8.56217], + [-13.185815, 8.562329], + [-13.185792, 8.56263], + [-13.185499, 8.562921], + [-13.185698, 8.563391], + [-13.185593, 8.563577], + [-13.185355, 8.563588], + [-13.185316, 8.563228], + [-13.184895, 8.563272], + [-13.184562, 8.563584], + [-13.183926, 8.563748], + [-13.183027, 8.564772], + [-13.182546, 8.564964], + [-13.181732, 8.565649], + [-13.181814, 8.56647], + [-13.181443, 8.567078], + [-13.181051, 8.566936], + [-13.181221, 8.566471], + [-13.180978, 8.566234], + [-13.180416, 8.567916], + [-13.179583, 8.56875], + [-13.179582, 8.569584], + [-13.172917, 8.57125], + [-13.17625, 8.579583], + [-13.177917, 8.579584], + [-13.17875, 8.585416], + [-13.183296, 8.585922], + [-13.184576, 8.588138], + [-13.181582, 8.593325], + [-13.181848, 8.593668], + [-13.182102, 8.594015], + [-13.182832, 8.593762], + [-13.183405, 8.593629], + [-13.183692, 8.593738], + [-13.183744, 8.59408], + [-13.183876, 8.594777], + [-13.18393, 8.595136], + [-13.184043, 8.595926], + [-13.184108, 8.596115], + [-13.184156, 8.59629], + [-13.184454, 8.597151], + [-13.184561, 8.597695], + [-13.187089, 8.596709], + [-13.187241, 8.596986], + [-13.187309, 8.597478], + [-13.187441, 8.597459], + [-13.189674, 8.597037], + [-13.189711, 8.597038], + [-13.189725, 8.597055], + [-13.190138, 8.597702], + [-13.190664, 8.598079], + [-13.191247, 8.598718], + [-13.191939, 8.598284], + [-13.19245, 8.598164], + [-13.193131, 8.598146], + [-13.193148, 8.598149], + [-13.193415, 8.596979], + [-13.195762, 8.59698], + [-13.195814, 8.596978], + [-13.196763, 8.596724], + [-13.197532, 8.596891], + [-13.197708, 8.596777], + [-13.198265, 8.596852], + [-13.198453, 8.596708], + [-13.198696, 8.596811], + [-13.199709, 8.596407], + [-13.200918, 8.596667], + [-13.201011, 8.596492], + [-13.201627, 8.596434], + [-13.201642, 8.596617], + [-13.201656, 8.596876], + [-13.203998, 8.596485] + ] + ], + "type": "Polygon" + }, + "id": 594, + "properties": { + "cc:admin:id": ["44"], + "cc:oBld:total": 747, + "cc:pop:fifteen-to-twenty-four": 1161.3305665751564, + "cc:pop:grid3-total": 4196.976724885187, + "cc:pop:kontur-total": 6125.911097428027, + "cc:pop:men": 3101.400207465487, + "cc:pop:sixty-plus": 385.6542340503674, + "cc:pop:total": 6455.187935166046, + "cc:pop:under-five": 1054.807333262797, + "cc:pop:women": 3353.7877277005596, + "cc:pop:women-fiften-to-forty-nine": 1617.4367299401638, + "cc:pop:wp-total": 4741.853964502704, + "cc:pop:wp-total-UN": 5498.614478654358, + "cc:id": "594", + "cc:Name": "Yongoro CHP", + "cc:site": [-13.2015, 8.5922], + "user:parentName": "Kaffu Bullom", + "user:code": "OU_255006", + "user:orgUnitId": "YDDOlgRBEAA", + "user:level": "4", + "user:parentId": "vn9KJsLyP5f" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.288822, 8.46739], + [-12.28739, 8.466618], + [-12.28575, 8.465346], + [-12.284357, 8.464021], + [-12.283017, 8.462386], + [-12.281758, 8.461299], + [-12.281092, 8.460289], + [-12.280933, 8.459086], + [-12.281771, 8.458762], + [-12.282122, 8.458395], + [-12.282917, 8.45125], + [-12.284582, 8.451249], + [-12.288749, 8.442084], + [-12.287916, 8.442083], + [-12.285416, 8.439584], + [-12.281323, 8.4389], + [-12.281448, 8.438199], + [-12.281426, 8.437959], + [-12.280144, 8.437925], + [-12.27625, 8.432084], + [-12.277916, 8.432083], + [-12.282082, 8.427083], + [-12.282917, 8.424584], + [-12.285086, 8.423932], + [-12.285134, 8.423848], + [-12.281228, 8.417083], + [-12.276845, 8.417083], + [-12.275416, 8.420416], + [-12.270417, 8.421249], + [-12.268749, 8.410417], + [-12.267083, 8.410416], + [-12.267083, 8.404584], + [-12.267916, 8.402917], + [-12.274582, 8.399584], + [-12.277082, 8.399583], + [-12.276249, 8.395417], + [-12.269582, 8.397084], + [-12.259583, 8.397083], + [-12.262083, 8.392084], + [-12.267916, 8.386249], + [-12.267554, 8.385163], + [-12.267917, 8.384987], + [-12.267917, 8.381249], + [-12.268749, 8.372084], + [-12.263749, 8.367084], + [-12.256956, 8.367083], + [-12.255993, 8.365417], + [-12.247917, 8.365416], + [-12.246249, 8.36375], + [-12.244846, 8.363594], + [-12.242081, 8.368382], + [-12.243225, 8.370365], + [-12.243382, 8.370486], + [-12.243092, 8.370905], + [-12.242696, 8.371737], + [-12.243623, 8.372363], + [-12.244107, 8.373351], + [-12.244938, 8.37421], + [-12.244889, 8.374418], + [-12.244306, 8.374848], + [-12.244616, 8.375357], + [-12.244306, 8.375866], + [-12.244788, 8.376588], + [-12.24518, 8.376795], + [-12.245501, 8.376748], + [-12.245682, 8.376862], + [-12.245416, 8.377084], + [-12.24375, 8.382082], + [-12.243748, 8.382082], + [-12.242799, 8.381134], + [-12.238619, 8.381133], + [-12.237242, 8.37875], + [-12.23125, 8.37875], + [-12.227916, 8.382083], + [-12.225416, 8.382917], + [-12.222917, 8.38625], + [-12.225416, 8.390416], + [-12.225417, 8.392916], + [-12.227915, 8.396249], + [-12.22625, 8.39625], + [-12.222917, 8.399583], + [-12.223432, 8.40165], + [-12.219207, 8.403966], + [-12.215107, 8.406345], + [-12.212916, 8.412916], + [-12.209583, 8.41375], + [-12.208002, 8.419282], + [-12.208, 8.419282], + [-12.207896, 8.419163], + [-12.207277, 8.418647], + [-12.208749, 8.422083], + [-12.205417, 8.423749], + [-12.204583, 8.424584], + [-12.204582, 8.432082], + [-12.197944, 8.427104], + [-12.196519, 8.429776], + [-12.19642, 8.430241], + [-12.197521, 8.437388], + [-12.196639, 8.440719], + [-12.196403, 8.441556], + [-12.197083, 8.442916], + [-12.201249, 8.443749], + [-12.203749, 8.442917], + [-12.205417, 8.449583], + [-12.208749, 8.448749], + [-12.211809, 8.445689], + [-12.211716, 8.445544], + [-12.211663, 8.444526], + [-12.21355, 8.444594], + [-12.213535, 8.443964], + [-12.213749, 8.443751], + [-12.214583, 8.448749], + [-12.22125, 8.452083], + [-12.223749, 8.45125], + [-12.226593, 8.452387], + [-12.227345, 8.451365], + [-12.228861, 8.449885], + [-12.233327, 8.447073], + [-12.234582, 8.449584], + [-12.234583, 8.452083], + [-12.235417, 8.453749], + [-12.240416, 8.452917], + [-12.242083, 8.452917], + [-12.242916, 8.454584], + [-12.242917, 8.457083], + [-12.242083, 8.460416], + [-12.243749, 8.462083], + [-12.248749, 8.463749], + [-12.249611, 8.462889], + [-12.250254, 8.463647], + [-12.250986, 8.464349], + [-12.254583, 8.46375], + [-12.256249, 8.465417], + [-12.255417, 8.467916], + [-12.25875, 8.46875], + [-12.261249, 8.471249], + [-12.26165, 8.472449], + [-12.26182, 8.472497], + [-12.262298, 8.47164], + [-12.263339, 8.470721], + [-12.265125, 8.470206], + [-12.266021, 8.469697], + [-12.267216, 8.46844], + [-12.267656, 8.468461], + [-12.267908, 8.468764], + [-12.267834, 8.469267], + [-12.268027, 8.469866], + [-12.269035, 8.470292], + [-12.269062, 8.471256], + [-12.269437, 8.472016], + [-12.269367, 8.472297], + [-12.26875, 8.472969], + [-12.26875, 8.474382], + [-12.269154, 8.474361], + [-12.269684, 8.474684], + [-12.270435, 8.475485], + [-12.27043, 8.476201], + [-12.270291, 8.476854], + [-12.270548, 8.477221], + [-12.271184, 8.477436], + [-12.272382, 8.477453], + [-12.273613, 8.477235], + [-12.274327, 8.477139], + [-12.274899, 8.477089], + [-12.275528, 8.477089], + [-12.276057, 8.477131], + [-12.277196, 8.477345], + [-12.281757, 8.479186], + [-12.285799, 8.480548], + [-12.286249, 8.47875], + [-12.282917, 8.477916], + [-12.281249, 8.474584], + [-12.277027, 8.474584], + [-12.277026, 8.474582], + [-12.277334, 8.474387], + [-12.278776, 8.473289], + [-12.278798, 8.471852], + [-12.278563, 8.471363], + [-12.278976, 8.470164], + [-12.279334, 8.46975], + [-12.279105, 8.468631], + [-12.279463, 8.468328], + [-12.279496, 8.466439], + [-12.2808, 8.466169], + [-12.282054, 8.466746], + [-12.284162, 8.468147], + [-12.285302, 8.469403], + [-12.287916, 8.468749], + [-12.288822, 8.46739] + ] + ], + "type": "Polygon" + }, + "id": 595, + "properties": { + "cc:admin:id": ["149"], + "cc:oBld:total": 201, + "cc:pop:fifteen-to-twenty-four": 1595.4579061303045, + "cc:pop:grid3-total": 7054.678390653142, + "cc:pop:kontur-total": 7927.196336408192, + "cc:pop:men": 3946.5696284319715, + "cc:pop:sixty-plus": 537.3450721944131, + "cc:pop:total": 8513.250130275219, + "cc:pop:under-five": 1362.8312446060283, + "cc:pop:women": 4566.680501843249, + "cc:pop:women-fiften-to-forty-nine": 2245.2713052984845, + "cc:pop:wp-total": 7563.591479540673, + "cc:pop:wp-total-UN": 8771.336021024557, + "cc:id": "595", + "cc:Name": "Yonibana MCHP", + "cc:site": [-12.2435, 8.4394], + "user:parentName": "Yoni", + "user:code": "OU_268238", + "user:orgUnitId": "x5ZxMDvEQUb", + "user:level": "4", + "user:parentId": "NNE0YMCDZkO" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.903345, 7.938036], + [-12.902828, 7.937428], + [-12.901038, 7.935964], + [-12.899375, 7.935401], + [-12.897595, 7.935602], + [-12.896779, 7.935864], + [-12.894411, 7.936244], + [-12.892169, 7.936201], + [-12.889251, 7.935567], + [-12.886374, 7.934425], + [-12.883076, 7.932607], + [-12.8802, 7.931169], + [-12.87745, 7.929899], + [-12.874448, 7.928504], + [-12.872883, 7.926938], + [-12.872333, 7.925289], + [-12.872333, 7.923344], + [-12.873136, 7.921864], + [-12.873897, 7.92051], + [-12.873813, 7.919157], + [-12.872671, 7.918692], + [-12.871234, 7.91865], + [-12.869921, 7.91941], + [-12.867935, 7.919833], + [-12.866031, 7.919748], + [-12.863281, 7.918522], + [-12.861971, 7.917254], + [-12.861633, 7.91552], + [-12.862267, 7.913912], + [-12.863917, 7.913151], + [-12.865396, 7.913151], + [-12.866142, 7.913387], + [-12.868798, 7.90879], + [-12.87661, 7.908789], + [-12.880516, 7.902024], + [-12.87661, 7.895258], + [-12.877915, 7.892998], + [-12.877917, 7.892999], + [-12.877917, 7.894583], + [-12.88125, 7.898749], + [-12.887916, 7.900416], + [-12.887917, 7.899583], + [-12.889928, 7.892204], + [-12.890743, 7.892207], + [-12.891006, 7.891437], + [-12.89134, 7.891438], + [-12.892082, 7.889584], + [-12.892097, 7.889568], + [-12.891816, 7.889283], + [-12.892082, 7.88875], + [-12.895416, 7.888749], + [-12.898749, 7.886249], + [-12.89625, 7.882916], + [-12.899582, 7.877084], + [-12.892917, 7.870416], + [-12.902419, 7.866761], + [-12.902099, 7.866499], + [-12.900999, 7.864899], + [-12.8974, 7.8615], + [-12.897399, 7.8607], + [-12.896199, 7.860099], + [-12.895399, 7.8585], + [-12.893699, 7.857399], + [-12.892599, 7.8551], + [-12.891799, 7.854899], + [-12.891299, 7.8532], + [-12.8899, 7.852099], + [-12.889599, 7.8504], + [-12.887399, 7.850099], + [-12.886799, 7.848999], + [-12.8849, 7.8471], + [-12.884899, 7.8451], + [-12.883799, 7.845099], + [-12.8824, 7.844], + [-12.882399, 7.8424], + [-12.8807, 7.842399], + [-12.8796, 7.841799], + [-12.878499, 7.839], + [-12.877899, 7.838999], + [-12.8751, 7.8335], + [-12.8729, 7.8304], + [-12.872899, 7.8276], + [-12.8721, 7.826799], + [-12.872099, 7.8254], + [-12.871, 7.8243], + [-12.869899, 7.824299], + [-12.869299, 7.8232], + [-12.8668, 7.8218], + [-12.865999, 7.8207], + [-12.864599, 7.8199], + [-12.860699, 7.820099], + [-12.858999, 7.8182], + [-12.857599, 7.817899], + [-12.855699, 7.8157], + [-12.8543, 7.8151], + [-12.853999, 7.8143], + [-12.852399, 7.813499], + [-12.8496, 7.8107], + [-12.849299, 7.8093], + [-12.846799, 7.8085], + [-12.8438, 7.8085], + [-12.8426, 7.808199], + [-12.8418, 7.807099], + [-12.840999, 7.8043], + [-12.839, 7.8026], + [-12.8371, 7.8018], + [-12.836499, 7.800999], + [-12.8335, 7.7996], + [-12.830099, 7.799299], + [-12.825999, 7.7957], + [-12.8238, 7.795699], + [-12.822599, 7.7946], + [-12.819, 7.794599], + [-12.817899, 7.7938], + [-12.816499, 7.793799], + [-12.8149, 7.792899], + [-12.814299, 7.7921], + [-12.8121, 7.792099], + [-12.811799, 7.7904], + [-12.810099, 7.7896], + [-12.8085, 7.790099], + [-12.808199, 7.788699], + [-12.8074, 7.7885], + [-12.805999, 7.790099], + [-12.8038, 7.7891], + [-12.7967, 7.797699], + [-12.793099, 7.8031], + [-12.786, 7.811199], + [-12.7787, 7.818299], + [-12.7751, 7.822799], + [-12.7722, 7.825899], + [-12.7691, 7.828499], + [-12.764399, 7.831099], + [-12.7534, 7.832699], + [-12.751613, 7.832762], + [-12.751645, 7.83294], + [-12.750992, 7.833567], + [-12.749845, 7.833851], + [-12.749521, 7.834281], + [-12.74688, 7.835042], + [-12.746872, 7.83633], + [-12.746267, 7.836987], + [-12.742812, 7.842972], + [-12.734999, 7.842973], + [-12.73455, 7.843749], + [-12.732917, 7.84375], + [-12.725417, 7.852084], + [-12.725416, 7.861249], + [-12.724583, 7.862084], + [-12.72375, 7.867083], + [-12.720417, 7.86875], + [-12.720416, 7.869583], + [-12.719582, 7.870417], + [-12.717479, 7.876727], + [-12.717416, 7.876715], + [-12.71375, 7.886249], + [-12.721095, 7.886862], + [-12.718083, 7.892084], + [-12.721989, 7.898848], + [-12.725416, 7.898849], + [-12.725417, 7.899583], + [-12.726249, 7.899584], + [-12.726863, 7.900197], + [-12.725115, 7.903229], + [-12.729021, 7.909993], + [-12.730649, 7.909994], + [-12.734582, 7.914583], + [-12.735108, 7.911958], + [-12.73856, 7.911777], + [-12.740714, 7.910633], + [-12.744662, 7.910637], + [-12.744781, 7.912827], + [-12.747696, 7.914188], + [-12.747917, 7.91375], + [-12.755046, 7.91375], + [-12.755809, 7.914349], + [-12.756265, 7.915208], + [-12.756807, 7.914911], + [-12.756744, 7.91375], + [-12.757916, 7.91375], + [-12.756464, 7.921011], + [-12.756593, 7.921022], + [-12.758083, 7.922179], + [-12.758158, 7.923719], + [-12.759682, 7.925271], + [-12.760454, 7.927003], + [-12.763472, 7.927004], + [-12.765924, 7.931249], + [-12.769582, 7.931249], + [-12.773748, 7.927918], + [-12.77375, 7.927919], + [-12.77375, 7.929583], + [-12.77625, 7.931249], + [-12.78508, 7.931249], + [-12.786269, 7.93016], + [-12.789864, 7.928309], + [-12.798217, 7.925825], + [-12.803134, 7.924451], + [-12.805354, 7.923446], + [-12.806517, 7.921543], + [-12.807416, 7.920221], + [-12.809003, 7.918529], + [-12.810695, 7.917736], + [-12.812769, 7.917723], + [-12.814858, 7.918752], + [-12.817953, 7.920121], + [-12.821073, 7.921125], + [-12.821265, 7.921233], + [-12.821265, 7.921234], + [-12.820417, 7.922084], + [-12.820417, 7.924445], + [-12.822422, 7.925529], + [-12.824316, 7.927477], + [-12.825562, 7.929373], + [-12.827564, 7.930536], + [-12.829704, 7.931375], + [-12.833005, 7.93143], + [-12.834575, 7.93162], + [-12.836199, 7.933054], + [-12.837102, 7.934014], + [-12.838749, 7.932916], + [-12.839164, 7.930844], + [-12.840285, 7.930844], + [-12.84518, 7.933691], + [-12.847444, 7.937609], + [-12.85188, 7.93761], + [-12.855224, 7.94023], + [-12.857102, 7.940809], + [-12.859162, 7.944375], + [-12.863798, 7.944376], + [-12.863798, 7.944377], + [-12.860417, 7.947084], + [-12.860002, 7.948327], + [-12.861513, 7.949325], + [-12.868174, 7.95202], + [-12.874021, 7.954193], + [-12.875219, 7.948807], + [-12.875848, 7.949056], + [-12.884795, 7.951456], + [-12.888754, 7.951749], + [-12.8888, 7.951499], + [-12.889, 7.946499], + [-12.8907, 7.9457], + [-12.894899, 7.945699], + [-12.8979, 7.9443], + [-12.8993, 7.944299], + [-12.90078, 7.943262], + [-12.900964, 7.942892], + [-12.901364, 7.942108], + [-12.901803, 7.941236], + [-12.902785, 7.939671], + [-12.903173, 7.93894], + [-12.903345, 7.938036] + ] + ], + "type": "Polygon" + }, + "id": 596, + "properties": { + "cc:admin:id": ["51"], + "cc:oBld:total": 2, + "cc:pop:fifteen-to-twenty-four": 1409.851472899924, + "cc:pop:grid3-total": 10845.78483442459, + "cc:pop:kontur-total": 7402.609952453682, + "cc:pop:men": 3612.6826733537123, + "cc:pop:sixty-plus": 480.26954664542416, + "cc:pop:total": 7663.775758087353, + "cc:pop:under-five": 1294.2447409674749, + "cc:pop:women": 4051.093084733639, + "cc:pop:women-fiften-to-forty-nine": 1821.9509846786766, + "cc:pop:wp-total": 8269.60558408315, + "cc:pop:wp-total-UN": 9596.090168652261, + "cc:id": "596", + "cc:Name": "Yorgbofore MCHP", + "cc:site": [-12.8331, 7.8653], + "user:parentName": "Kargboro", + "user:code": "OU_247076", + "user:orgUnitId": "TGRCfJEnXJr", + "user:level": "4", + "user:parentId": "Z9QaI6sxTwW" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.181249, 8.77625], + [-11.177082, 8.76875], + [-11.172916, 8.768749], + [-11.172083, 8.764583], + [-11.172916, 8.762917], + [-11.17125, 8.760416], + [-11.172083, 8.759583], + [-11.174582, 8.759582], + [-11.169582, 8.75375], + [-11.167916, 8.753749], + [-11.164582, 8.747917], + [-11.16375, 8.747917], + [-11.162082, 8.749582], + [-11.15875, 8.749583], + [-11.15625, 8.752082], + [-11.153232, 8.75148], + [-11.153232, 8.751478], + [-11.154324, 8.75024], + [-11.155546, 8.748436], + [-11.15575, 8.746677], + [-11.156524, 8.743613], + [-11.154582, 8.744583], + [-11.145417, 8.744582], + [-11.144582, 8.74125], + [-11.142083, 8.738749], + [-11.142203, 8.737425], + [-11.139583, 8.737424], + [-11.139583, 8.723893], + [-11.143251, 8.723892], + [-11.14375, 8.717916], + [-11.145416, 8.711249], + [-11.144846, 8.708397], + [-11.145734, 8.707259], + [-11.147707, 8.70395], + [-11.148287, 8.701469], + [-11.148098, 8.700702], + [-11.144199, 8.7085], + [-11.141299, 8.7121], + [-11.1345, 8.718799], + [-11.1316, 8.722399], + [-11.1278, 8.7297], + [-11.1275, 8.732199], + [-11.1284, 8.734899], + [-11.1302, 8.7368], + [-11.133199, 8.738899], + [-11.1343, 8.7411], + [-11.1348, 8.7438], + [-11.134899, 8.7475], + [-11.134499, 8.750099], + [-11.132899, 8.752099], + [-11.1297, 8.752699], + [-11.1264, 8.7519], + [-11.1206, 8.7488], + [-11.118599, 8.747399], + [-11.114099, 8.7422], + [-11.107899, 8.7386], + [-11.1019, 8.7372], + [-11.0974, 8.7352], + [-11.0948, 8.7345], + [-11.0877, 8.7336], + [-11.0832, 8.741099], + [-11.081199, 8.7454], + [-11.0787, 8.748699], + [-11.0767, 8.750599], + [-11.074299, 8.751999], + [-11.0703, 8.752699], + [-11.0625, 8.7526], + [-11.0588, 8.752799], + [-11.0556, 8.754], + [-11.0532, 8.7562], + [-11.050899, 8.7606], + [-11.0488, 8.763499], + [-11.048543, 8.763723], + [-11.048691, 8.763764], + [-11.048695, 8.764054], + [-11.048018, 8.764224], + [-11.047881, 8.764705], + [-11.04816, 8.764415], + [-11.048371, 8.764533], + [-11.048305, 8.764775], + [-11.047792, 8.764846], + [-11.046987, 8.765883], + [-11.04747, 8.767133], + [-11.047181, 8.767458], + [-11.047366, 8.768185], + [-11.047658, 8.768593], + [-11.053749, 8.767917], + [-11.05375, 8.777082], + [-11.057083, 8.785416], + [-11.057866, 8.784634], + [-11.057992, 8.784791], + [-11.059685, 8.785489], + [-11.062386, 8.785813], + [-11.063117, 8.786277], + [-11.063708, 8.78635], + [-11.064634, 8.78729], + [-11.064672, 8.786929], + [-11.068749, 8.78625], + [-11.067917, 8.790416], + [-11.069582, 8.79375], + [-11.067917, 8.796249], + [-11.069583, 8.797916], + [-11.077082, 8.799582], + [-11.077916, 8.800416], + [-11.077916, 8.802083], + [-11.075417, 8.806249], + [-11.07322, 8.807348], + [-11.07611, 8.812455], + [-11.077243, 8.813813], + [-11.077768, 8.814927], + [-11.075417, 8.820416], + [-11.080416, 8.826249], + [-11.079583, 8.829582], + [-11.083749, 8.830416], + [-11.085117, 8.831783], + [-11.085988, 8.831329], + [-11.086249, 8.831257], + [-11.08625, 8.832082], + [-11.09125, 8.834583], + [-11.095416, 8.834582], + [-11.096021, 8.830951], + [-11.095658, 8.831122], + [-11.095657, 8.831121], + [-11.09625, 8.82875], + [-11.09875, 8.827917], + [-11.101249, 8.827916], + [-11.103749, 8.826249], + [-11.102917, 8.822082], + [-11.104583, 8.82125], + [-11.110416, 8.821249], + [-11.117082, 8.818749], + [-11.117083, 8.816249], + [-11.121998, 8.812738], + [-11.121773, 8.812045], + [-11.121405, 8.811238], + [-11.120513, 8.810156], + [-11.120573, 8.809397], + [-11.120188, 8.808978], + [-11.120566, 8.80852], + [-11.120986, 8.808405], + [-11.12206, 8.806574], + [-11.122771, 8.807588], + [-11.123584, 8.8077], + [-11.124216, 8.808052], + [-11.125718, 8.808222], + [-11.126371, 8.808002], + [-11.127898, 8.808241], + [-11.128966, 8.808749], + [-11.129583, 8.80875], + [-11.133749, 8.809582], + [-11.134583, 8.811249], + [-11.137916, 8.80875], + [-11.141249, 8.80875], + [-11.146915, 8.811897], + [-11.147326, 8.811757], + [-11.147302, 8.812111], + [-11.14875, 8.812917], + [-11.151449, 8.813456], + [-11.151945, 8.812599], + [-11.158637, 8.812598], + [-11.154309, 8.800335], + [-11.154277, 8.800332], + [-11.152917, 8.79625], + [-11.166249, 8.798749], + [-11.169583, 8.795417], + [-11.171249, 8.794582], + [-11.17125, 8.787917], + [-11.172916, 8.784583], + [-11.172917, 8.783749], + [-11.178749, 8.77875], + [-11.180416, 8.778749], + [-11.180417, 8.777917], + [-11.181249, 8.77625] + ] + ], + "type": "Polygon" + }, + "id": 597, + "properties": { + "cc:admin:id": ["119"], + "cc:oBld:total": 930, + "cc:pop:fifteen-to-twenty-four": 950.8263890764525, + "cc:pop:grid3-total": 8581.681248487417, + "cc:pop:kontur-total": 5168.943224980949, + "cc:pop:men": 2393.730525005365, + "cc:pop:sixty-plus": 271.34905283345034, + "cc:pop:total": 4853.832365097971, + "cc:pop:under-five": 817.1490245792296, + "cc:pop:women": 2460.1018400926055, + "cc:pop:women-fiften-to-forty-nine": 1170.3567589730608, + "cc:pop:wp-total": 3701.6024659103155, + "cc:pop:wp-total-UN": 4294.984990312032, + "cc:id": "597", + "cc:Name": "Yormandu CHC", + "cc:site": [-11.1019, 8.7393], + "user:parentName": "Sandor", + "user:code": "OU_233371", + "user:orgUnitId": "roGdTjEqLZQ", + "user:level": "4", + "user:parentId": "g5ptsn0SFX8" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-12.597996, 8.258524], + [-12.597999, 8.258399], + [-12.5977, 8.2555], + [-12.5966, 8.2528], + [-12.594299, 8.249799], + [-12.588899, 8.244299], + [-12.587, 8.240899], + [-12.586399, 8.236999], + [-12.5862, 8.2289], + [-12.5864, 8.223899], + [-12.587099, 8.2202], + [-12.588999, 8.2157], + [-12.589699, 8.2129], + [-12.590199, 8.2081], + [-12.590799, 8.2054], + [-12.592699, 8.2009], + [-12.5933, 8.198099], + [-12.5935, 8.193199], + [-12.5935, 8.1843], + [-12.593137, 8.176251], + [-12.589531, 8.17939], + [-12.587794, 8.18202], + [-12.586989, 8.182727], + [-12.586479, 8.182904], + [-12.582916, 8.177917], + [-12.575417, 8.17625], + [-12.571249, 8.172084], + [-12.562083, 8.172084], + [-12.557917, 8.175417], + [-12.557522, 8.176595], + [-12.556176, 8.174815], + [-12.555477, 8.173689], + [-12.552916, 8.176249], + [-12.54375, 8.175417], + [-12.547082, 8.165416], + [-12.54625, 8.162917], + [-12.540416, 8.157084], + [-12.538675, 8.158824], + [-12.537055, 8.156021], + [-12.529243, 8.15602], + [-12.525338, 8.149254], + [-12.529243, 8.142488], + [-12.525337, 8.135723], + [-12.517525, 8.135723], + [-12.515008, 8.140082], + [-12.514972, 8.14004], + [-12.514098, 8.140391], + [-12.513239, 8.14116], + [-12.511185, 8.14106], + [-12.510675, 8.141362], + [-12.509382, 8.141506], + [-12.508632, 8.141554], + [-12.507994, 8.141887], + [-12.507917, 8.141871], + [-12.507917, 8.137583], + [-12.508321, 8.137395], + [-12.509409, 8.136307], + [-12.509908, 8.136322], + [-12.510541, 8.136089], + [-12.51125, 8.134539], + [-12.511786, 8.133932], + [-12.511249, 8.13125], + [-12.508749, 8.128749], + [-12.500417, 8.127917], + [-12.492917, 8.127917], + [-12.491438, 8.129098], + [-12.488, 8.123142], + [-12.491906, 8.116377], + [-12.487999, 8.109611], + [-12.480188, 8.10961], + [-12.479241, 8.111249], + [-12.472082, 8.11125], + [-12.470523, 8.112811], + [-12.4725, 8.1152], + [-12.479299, 8.121899], + [-12.481199, 8.123999], + [-12.4832, 8.1271], + [-12.484, 8.1297], + [-12.484599, 8.134999], + [-12.485199, 8.137499], + [-12.4874, 8.1429], + [-12.488, 8.1473], + [-12.488299, 8.155499], + [-12.488999, 8.159499], + [-12.4915, 8.1657], + [-12.4921, 8.1707], + [-12.492299, 8.179399], + [-12.492199, 8.1842], + [-12.491599, 8.1889], + [-12.489199, 8.195], + [-12.488799, 8.1988], + [-12.4885, 8.205599], + [-12.4879, 8.208299], + [-12.484299, 8.2159], + [-12.482199, 8.2189], + [-12.4776, 8.223899], + [-12.4752, 8.226899], + [-12.472899, 8.2315], + [-12.471199, 8.2337], + [-12.468599, 8.2363], + [-12.466299, 8.2379], + [-12.458299, 8.241499], + [-12.4508, 8.242399], + [-12.448299, 8.2431], + [-12.4399, 8.246899], + [-12.436399, 8.2489], + [-12.4326, 8.250799], + [-12.430099, 8.253], + [-12.4272, 8.257], + [-12.431999, 8.264099], + [-12.433899, 8.267899], + [-12.436199, 8.270599], + [-12.439, 8.2729], + [-12.447499, 8.280199], + [-12.4526, 8.286899], + [-12.4581, 8.290599], + [-12.4626, 8.290899], + [-12.4702, 8.289399], + [-12.484199, 8.2882], + [-12.494899, 8.2854], + [-12.499499, 8.2849], + [-12.5043, 8.2848], + [-12.510499, 8.285299], + [-12.5147, 8.2865], + [-12.521099, 8.289599], + [-12.527099, 8.293499], + [-12.530899, 8.295299], + [-12.548999, 8.298299], + [-12.5523, 8.297699], + [-12.5597, 8.294099], + [-12.564, 8.292999], + [-12.570199, 8.292399], + [-12.577399, 8.2881], + [-12.582699, 8.2845], + [-12.5873, 8.281799], + [-12.59, 8.279199], + [-12.5937, 8.273699], + [-12.5952, 8.268999], + [-12.5973, 8.264199], + [-12.5979, 8.261399], + [-12.597996, 8.258524] + ] + ], + "type": "Polygon" + }, + "id": 598, + "properties": { + "cc:admin:id": ["59"], + "cc:oBld:total": 66, + "cc:pop:fifteen-to-twenty-four": 1818.3615293015678, + "cc:pop:grid3-total": 6545.482480706648, + "cc:pop:kontur-total": 9862.770182655728, + "cc:pop:men": 5013.885067921077, + "cc:pop:sixty-plus": 759.1090103946618, + "cc:pop:total": 10253.266002772254, + "cc:pop:under-five": 1688.4135285204113, + "cc:pop:women": 5239.380934851176, + "cc:pop:women-fiften-to-forty-nine": 2533.1722652734234, + "cc:pop:wp-total": 8960.9470731904, + "cc:pop:wp-total-UN": 10401.938630422388, + "cc:id": "598", + "cc:Name": "Yoyema MCHP", + "cc:site": [-12.4948, 8.1729], + "user:parentName": "Kaiyamba", + "user:code": "OU_247067", + "user:orgUnitId": "VdXuxcNkiad", + "user:level": "4", + "user:parentId": "USQdmvrHh1Q" + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + [ + [-11.37743, 7.317257], + [-11.377082, 7.317083], + [-11.374583, 7.314583], + [-11.374582, 7.30875], + [-11.372655, 7.30875], + [-11.372759, 7.308891], + [-11.36849, 7.309501], + [-11.36766, 7.309024], + [-11.366812, 7.308697], + [-11.365684, 7.308557], + [-11.361687, 7.307578], + [-11.359853, 7.307577], + [-11.359054, 7.306878], + [-11.358207, 7.305805], + [-11.357917, 7.305546], + [-11.357916, 7.30156], + [-11.356508, 7.301125], + [-11.354863, 7.301243], + [-11.355417, 7.299583], + [-11.355713, 7.2975], + [-11.349859, 7.297499], + [-11.347231, 7.292948], + [-11.348749, 7.290417], + [-11.337084, 7.293749], + [-11.341249, 7.285417], + [-11.336158, 7.28478], + [-11.336157, 7.284778], + [-11.336203, 7.284423], + [-11.327917, 7.282917], + [-11.327916, 7.28125], + [-11.319263, 7.279086], + [-11.319264, 7.279085], + [-11.319299, 7.279059], + [-11.320379, 7.278546], + [-11.320869, 7.2778], + [-11.319583, 7.274584], + [-11.320416, 7.272916], + [-11.320416, 7.27125], + [-11.319779, 7.270931], + [-11.319822, 7.270896], + [-11.318749, 7.26875], + [-11.315741, 7.266493], + [-11.315669, 7.266503], + [-11.315416, 7.26625], + [-11.30817, 7.266249], + [-11.308166, 7.266186], + [-11.307303, 7.26425], + [-11.307606, 7.263169], + [-11.307335, 7.259509], + [-11.307991, 7.256689], + [-11.308552, 7.256348], + [-11.309255, 7.256705], + [-11.309184, 7.258634], + [-11.310024, 7.259636], + [-11.31056, 7.26089], + [-11.310609, 7.262962], + [-11.31128, 7.263248], + [-11.311906, 7.262827], + [-11.313451, 7.261176], + [-11.316508, 7.259611], + [-11.316665, 7.259165], + [-11.315416, 7.255417], + [-11.302917, 7.255416], + [-11.300417, 7.249583], + [-11.300416, 7.24625], + [-11.293749, 7.247083], + [-11.284583, 7.242084], + [-11.287082, 7.236249], + [-11.286249, 7.229584], + [-11.282082, 7.22625], + [-11.280155, 7.226249], + [-11.280049, 7.2258], + [-11.280105, 7.224266], + [-11.28061, 7.223885], + [-11.281867, 7.223575], + [-11.28266, 7.223194], + [-11.283261, 7.222431], + [-11.28264, 7.222061], + [-11.281718, 7.222106], + [-11.279294, 7.222195], + [-11.279293, 7.222194], + [-11.279676, 7.221823], + [-11.279844, 7.220994], + [-11.280984, 7.219979], + [-11.280611, 7.218302], + [-11.28062, 7.217122], + [-11.281181, 7.216], + [-11.282439, 7.21522], + [-11.2836, 7.214849], + [-11.284505, 7.215044], + [-11.285252, 7.214965], + [-11.285949, 7.214644], + [-11.286549, 7.213678], + [-11.286127, 7.211015], + [-11.286815, 7.20449], + [-11.286314, 7.201143], + [-11.286953, 7.199787], + [-11.287887, 7.199124], + [-11.289547, 7.198437], + [-11.292599, 7.191], + [-11.2842, 7.1943], + [-11.2829, 7.203999], + [-11.282899, 7.209799], + [-11.2783, 7.2111], + [-11.276999, 7.218899], + [-11.2725, 7.2189], + [-11.271899, 7.223999], + [-11.2692, 7.2273], + [-11.270499, 7.233099], + [-11.265999, 7.233099], + [-11.262099, 7.2273], + [-11.256899, 7.2273], + [-11.2491, 7.228], + [-11.242, 7.2338], + [-11.241399, 7.2377], + [-11.238099, 7.2396], + [-11.232299, 7.244799], + [-11.2271, 7.244799], + [-11.223199, 7.2422], + [-11.22, 7.242899], + [-11.2116, 7.248099], + [-11.203799, 7.2468], + [-11.1966, 7.2494], + [-11.190799, 7.255199], + [-11.183699, 7.2559], + [-11.1759, 7.263699], + [-11.1746, 7.2639], + [-11.180399, 7.270799], + [-11.1766, 7.2714], + [-11.1733, 7.279899], + [-11.177199, 7.2838], + [-11.174599, 7.287599], + [-11.17, 7.2889], + [-11.1681, 7.295999], + [-11.168099, 7.302499], + [-11.162199, 7.3019], + [-11.1545, 7.3025], + [-11.151199, 7.3064], + [-11.1473, 7.312899], + [-11.1396, 7.3168], + [-11.1383, 7.320999], + [-11.1407, 7.3164], + [-11.149199, 7.317999], + [-11.1564, 7.3202], + [-11.1654, 7.3221], + [-11.1732, 7.3253], + [-11.2044, 7.3408], + [-11.212, 7.345], + [-11.220399, 7.351699], + [-11.2229, 7.3534], + [-11.237799, 7.361199], + [-11.245299, 7.364999], + [-11.253199, 7.368199], + [-11.259, 7.3692], + [-11.274599, 7.369399], + [-11.2807, 7.37], + [-11.2845, 7.3713], + [-11.301899, 7.379299], + [-11.310999, 7.381199], + [-11.3182, 7.3834], + [-11.327299, 7.385299], + [-11.341999, 7.391899], + [-11.342799, 7.3859], + [-11.3442, 7.380299], + [-11.3447, 7.373999], + [-11.3454, 7.371199], + [-11.347399, 7.3671], + [-11.348699, 7.3639], + [-11.351099, 7.3597], + [-11.3524, 7.356499], + [-11.354799, 7.3522], + [-11.3561, 7.349099], + [-11.358399, 7.3448], + [-11.3598, 7.341699], + [-11.3618, 7.338699], + [-11.366799, 7.3334], + [-11.368499, 7.3313], + [-11.371799, 7.3254], + [-11.3755, 7.320799], + [-11.376799, 7.3187], + [-11.37743, 7.317257] + ] + ], + "type": "Polygon" + }, + "id": 599, + "properties": { + "cc:admin:id": ["84"], + "cc:oBld:total": 3079, + "cc:pop:fifteen-to-twenty-four": 5701.710570013244, + "cc:pop:grid3-total": 21983.127844140945, + "cc:pop:kontur-total": 34178.77175591954, + "cc:pop:men": 15862.62735897002, + "cc:pop:sixty-plus": 2373.4628950530155, + "cc:pop:total": 32471.8238915268, + "cc:pop:under-five": 5241.28764614013, + "cc:pop:women": 16609.19653255678, + "cc:pop:women-fiften-to-forty-nine": 7871.441804831204, + "cc:pop:wp-total": 23276.6193487309, + "cc:pop:wp-total-UN": 26973.59076969275, + "cc:id": "599", + "cc:Name": "Zimmi CHC", + "cc:site": [-11.309, 7.3213], + "user:parentName": "Makpele", + "user:code": "OU_260382", + "user:orgUnitId": "BNFrspDBKel", + "user:level": "4", + "user:parentId": "BD9gU0GKlr2" + }, + "type": "Feature" + } + ] +} diff --git a/src/components/app/DetailsPanel.js b/src/components/app/DetailsPanel.js index 218e1619a..c3b1f2f4a 100644 --- a/src/components/app/DetailsPanel.js +++ b/src/components/app/DetailsPanel.js @@ -2,9 +2,9 @@ import cx from 'classnames' import PropTypes from 'prop-types' import React from 'react' import { useSelector } from 'react-redux' +import FeatureProfile from '../feature/FeatureProfile.js' import Interpretations from '../interpretations/Interpretations.js' import OrgUnitProfile from '../orgunits/OrgUnitProfile.js' -import FeatureProfile from '../feature/FeatureProfile.js' import styles from './styles/DetailsPanel.module.css' const DetailsPanel = ({ interpretationsRenderCount }) => { diff --git a/src/components/datatable/DataTable.js b/src/components/datatable/DataTable.js index 286755a51..3db9a019d 100644 --- a/src/components/datatable/DataTable.js +++ b/src/components/datatable/DataTable.js @@ -15,7 +15,7 @@ import { THEMATIC_LAYER, ORG_UNIT_LAYER, EARTH_ENGINE_LAYER, - FEATURE_SERVICE, + GEOJSON_URL_LAYER, } from '../../constants/layers.js' import { numberValueTypes } from '../../constants/valueTypes.js' import { filterData } from '../../util/filter.js' @@ -23,7 +23,7 @@ import { formatTime } from '../../util/helpers.js' import ColorCell from './ColorCell.js' import ColumnHeader from './ColumnHeader.js' import EarthEngineColumns from './EarthEngineColumns.js' -import FeatureServiceColumns from './FeatureServiceColumns.js' +import FeatureColumns from './FeatureColumns.js' import styles from './styles/DataTable.module.css' import 'react-virtualized/styles.css' @@ -182,7 +182,7 @@ class DataTable extends Component { onRowClick = (evt) => { const { layer: layerType } = this.props.layer - if (layerType === FEATURE_SERVICE) { + if (layerType === GEOJSON_URL_LAYER) { const { name, fields } = this.props.layer this.props.setFeatureProfile({ @@ -217,7 +217,7 @@ class DataTable extends Component { const isOrgUnit = layerType === ORG_UNIT_LAYER const isEvent = layerType === EVENT_LAYER const isEarthEngine = layerType === EARTH_ENGINE_LAYER - const isFeatureService = layerType === FEATURE_SERVICE + const isFeatureLayer = layerType === GEOJSON_URL_LAYER const isLoading = isEarthEngine && aggregationType?.length && !aggregations @@ -250,7 +250,7 @@ class DataTable extends Component { width={72} className="right" /> - {!isFeatureService && ( + {!isFeatureLayer && ( <> )} - {!isFeatureService && ( + {!isFeatureLayer && ( {isLoading === true && (
diff --git a/src/components/datatable/FeatureServiceColumns.js b/src/components/datatable/FeatureColumns.js similarity index 52% rename from src/components/datatable/FeatureServiceColumns.js rename to src/components/datatable/FeatureColumns.js index 70eb12484..abf3a8ca5 100644 --- a/src/components/datatable/FeatureServiceColumns.js +++ b/src/components/datatable/FeatureColumns.js @@ -1,22 +1,20 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import { Column } from 'react-virtualized'; -import ColumnHeader from './ColumnHeader'; -import { numberPrecision } from '../../util/numbers'; -import { getPrecision } from '../../util/earthEngine'; - -const FeatureServiceColumns = ({ fields, data }) => { - // console.log('FeatureServiceColumns', fields, data); +import React from 'react' +import PropTypes from 'prop-types' +import { Column } from 'react-virtualized' +import ColumnHeader from './ColumnHeader.js' +import { numberPrecision } from '../../util/numbers.js' +import { getPrecision } from '../../util/earthEngine.js' +const FeatureColumns = ({ fields, data }) => { if (!fields || !data) { - return null; + return null } // TODO: Remove slice return fields.slice(0, 10).map(({ name, type }) => { - const isString = type.includes('String'); - const precision = getPrecision(data.map(d => d[name])); - const valueFormat = numberPrecision(precision); + const isString = type.includes('String') + const precision = getPrecision(data.map((d) => d[name])) + const valueFormat = numberPrecision(precision) return ( { label={name} width={100} className="right" - headerRenderer={props => ( + headerRenderer={(props) => ( { )} cellRenderer={ !isString - ? d => + ? (d) => d.cellData !== undefined ? valueFormat(d.cellData) : '' : undefined } /> - ); - }); -}; + ) + }) +} -FeatureServiceColumns.propTypes = { +FeatureColumns.propTypes = { fields: PropTypes.array, data: PropTypes.array, -}; +} -export default FeatureServiceColumns; +export default FeatureColumns diff --git a/src/components/edit/LayerEdit.js b/src/components/edit/LayerEdit.js index eec826047..b0fd6ca2c 100644 --- a/src/components/edit/LayerEdit.js +++ b/src/components/edit/LayerEdit.js @@ -21,7 +21,7 @@ import OrgUnitDialog from './orgUnit/OrgUnitDialog.js' import styles from './styles/LayerEdit.module.css' import ThematicDialog from './thematic/ThematicDialog.js' import TrackedEntityDialog from './trackedEntity/TrackedEntityDialog.js' -import FeatureServiceDialog from './arcgis/FeatureServiceDialog.js' +import GeoJsonDialog from './geoJson/GeoJsonDialog.js' const layerType = { event: EventDialog, @@ -30,7 +30,7 @@ const layerType = { thematic: ThematicDialog, orgUnit: OrgUnitDialog, earthEngine: EarthEngineDialog, - featureService: FeatureServiceDialog, + geoJsonUrl: GeoJsonDialog, } /* diff --git a/src/components/edit/arcgis/FeatureServiceDialog.js b/src/components/edit/arcgis/FeatureServiceDialog.js deleted file mode 100644 index 37e15d2d0..000000000 --- a/src/components/edit/arcgis/FeatureServiceDialog.js +++ /dev/null @@ -1,103 +0,0 @@ -import React, { useEffect, useState } from 'react' -import PropTypes from 'prop-types' -import { connect } from 'react-redux' -import i18n from '@dhis2/d2-i18n' -import { request } from '@esri/arcgis-rest-request' -import { Help, Tab, Tabs } from '../../core' -import OrgUnitSelect from '../../orgunits/OrgUnitSelect.js' -import FeatureServiceStyle from '../shared/FeatureStyle' -import { setFeatureStyle } from '../../../actions/layerEdit' -import { getOrgUnitNodesFromRows } from '../../../util/analytics' -import { - setDrawingInfo, - getFeatureStyleFields, -} from '../../../util/featureStyle' -import styles from '../styles/LayerDialog.module.css' - -const FeatureServiceDialog = ({ - url, - rows = [], - featureStyle, - setFeatureStyle, - validateLayer, - onLayerValidation, -}) => { - const [tab, setTab] = useState('data') - const [metadata, setMetadata] = useState() - - useEffect(() => { - request(url).then(setMetadata) - }, [url]) - - useEffect(() => { - if (metadata && !featureStyle) { - // Set feature style from metadata drawiing ingo - setFeatureStyle(setDrawingInfo(featureStyle, metadata.drawingInfo)) - // console.log('metadata', metadata); - } - }, [metadata, featureStyle]) - - useEffect(() => { - if (validateLayer) { - onLayerValidation(true) // TODO - } - }, [validateLayer, onLayerValidation]) - - return ( -
- - {i18n.t('Data')} - {i18n.t('Organisation Units')} - {i18n.t('Style')} - -
- {tab === 'data' && ( -
- - <>{metadata &&

{metadata.description}

} -
-
- )} - {tab === 'orgunits' && } - {tab === 'style' && ( -
-
- {metadata && ( - - )} -
-
- )} -
-
- ) -} - -FeatureServiceDialog.propTypes = { - url: PropTypes.string.isRequired, - rows: PropTypes.array, - featureStyle: PropTypes.object, - setFeatureStyle: PropTypes.func.isRequired, - validateLayer: PropTypes.bool.isRequired, - onLayerValidation: PropTypes.func.isRequired, -} - -export default connect( - null, - { - setFeatureStyle, - }, - null, - { - forwardRef: true, - } -)(FeatureServiceDialog) diff --git a/src/components/edit/geoJson/GeoJsonDialog.js b/src/components/edit/geoJson/GeoJsonDialog.js new file mode 100644 index 000000000..222970189 --- /dev/null +++ b/src/components/edit/geoJson/GeoJsonDialog.js @@ -0,0 +1,66 @@ +import React, { useEffect, useState } from 'react' +import PropTypes from 'prop-types' +import { connect } from 'react-redux' +import i18n from '@dhis2/d2-i18n' +import { Tab, Tabs } from '../../core' +import FeatureStyle from '../shared/FeatureStyle' +import { setFeatureStyle } from '../../../actions/layerEdit' +import { getFeatureStyleFields } from '../../../util/featureStyle' +import styles from '../styles/LayerDialog.module.css' + +const GeoJsonDialog = ({ + featureStyle, + setFeatureStyle, + validateLayer, + onLayerValidation, +}) => { + const [tab, setTab] = useState('style') + + useEffect(() => { + if (validateLayer) { + onLayerValidation(true) // TODO + } + }, [validateLayer, onLayerValidation]) + + return ( +
+ + {i18n.t('Style')} + +
+ {tab === 'style' && ( +
+
+ +
+
+ )} +
+
+ ) +} + +GeoJsonDialog.propTypes = { + featureStyle: PropTypes.object, + setFeatureStyle: PropTypes.func.isRequired, + validateLayer: PropTypes.bool.isRequired, + onLayerValidation: PropTypes.func.isRequired, +} + +export default connect( + null, + { + setFeatureStyle, + }, + null, + { + forwardRef: true, + } +)(GeoJsonDialog) diff --git a/src/components/feature/FeatureProfile.js b/src/components/feature/FeatureProfile.js index 4024dfc2c..d9f081809 100644 --- a/src/components/feature/FeatureProfile.js +++ b/src/components/feature/FeatureProfile.js @@ -10,12 +10,12 @@ export const FeatureProfile = () => { const featureProfile = useSelector((state) => state.featureProfile) const dispatch = useDispatch() - const { name, fields, data } = featureProfile + const { data } = featureProfile return (
- {name || i18n.t('Feature profile')} + {i18n.t('Feature profile')} dispatch(closeFeatureProfile())} @@ -28,10 +28,10 @@ export const FeatureProfile = () => {
- {fields.map(({ name }) => ( - - - + {Object.keys(data).map((key) => ( + + + ))} diff --git a/src/components/loaders/FeatureServiceLoader.js b/src/components/loaders/FeatureServiceLoader.js deleted file mode 100644 index 6782f08e8..000000000 --- a/src/components/loaders/FeatureServiceLoader.js +++ /dev/null @@ -1,18 +0,0 @@ -import PropTypes from 'prop-types' -import { useEffect } from 'react' -import featureServiceLoader from '../../loaders/featureServiceLoader.js' - -const FeatureServiceLoader = ({ config, onLoad }) => { - useEffect(() => { - featureServiceLoader(config).then(onLoad) - }, [config, onLoad]) - - return null -} - -FeatureServiceLoader.propTypes = { - config: PropTypes.object.isRequired, - onLoad: PropTypes.func.isRequired, -} - -export default FeatureServiceLoader diff --git a/src/components/loaders/GeoJsonUrlLoader.js b/src/components/loaders/GeoJsonUrlLoader.js new file mode 100644 index 000000000..e5b687342 --- /dev/null +++ b/src/components/loaders/GeoJsonUrlLoader.js @@ -0,0 +1,18 @@ +import PropTypes from 'prop-types' +import { useEffect } from 'react' +import geoJsonUrlLoader from '../../loaders/geoJsonUrlLoader.js' + +const GeoJsonUrlLoader = ({ config, onLoad }) => { + useEffect(() => { + geoJsonUrlLoader(config).then(onLoad) + }, [config, onLoad]) + + return null +} + +GeoJsonUrlLoader.propTypes = { + config: PropTypes.object.isRequired, + onLoad: PropTypes.func.isRequired, +} + +export default GeoJsonUrlLoader diff --git a/src/components/loaders/LayerLoader.js b/src/components/loaders/LayerLoader.js index 655622ea4..624334e7c 100644 --- a/src/components/loaders/LayerLoader.js +++ b/src/components/loaders/LayerLoader.js @@ -7,7 +7,7 @@ import FacilityLoader from './FacilityLoader.js' import OrgUnitLoader from './OrgUnitLoader.js' import ThematicLoader from './ThematicLoader.js' import TrackedEntityLoader from './TrackedEntityLoader.js' -import FeatureServiceLoader from './FeatureServiceLoader.js' +import GeoJsonUrlLoader from './GeoJsonUrlLoader.js' const layerType = { earthEngine: EarthEngineLoader, @@ -17,7 +17,7 @@ const layerType = { orgUnit: OrgUnitLoader, thematic: ThematicLoader, trackedEntity: TrackedEntityLoader, - featureService: FeatureServiceLoader, + geoJsonUrl: GeoJsonUrlLoader, } const LayerLoader = ({ config, onLoad }) => { diff --git a/src/components/map/Map.js b/src/components/map/Map.js index 4dd0ce20d..f890a61be 100644 --- a/src/components/map/Map.js +++ b/src/components/map/Map.js @@ -11,7 +11,7 @@ import Layer from './layers/Layer.js' import OrgUnitLayer from './layers/OrgUnitLayer.js' import ThematicLayer from './layers/ThematicLayer.js' import TrackedEntityLayer from './layers/TrackedEntityLayer.js' -import FeatureService from './layers/FeatureService.js' +import GeoJsonLayer from './layers/GeoJsonLayer.js' import mapApi, { controlTypes } from './MapApi.js' import Popup from './Popup.js' import styles from './styles/Map.module.css' @@ -24,7 +24,7 @@ const layerType = { orgUnit: OrgUnitLayer, earthEngine: EarthEngineLayer, external: ExternalLayer, - featureService: FeatureService, + geoJsonUrl: GeoJsonLayer, } class Map extends Component { diff --git a/src/components/map/layers/FeatureService.js b/src/components/map/layers/FeatureService.js deleted file mode 100644 index 58122b1f3..000000000 --- a/src/components/map/layers/FeatureService.js +++ /dev/null @@ -1,93 +0,0 @@ -import { connect } from 'react-redux'; // TODO: not available in plugin -import Layer from './Layer'; -import { filterData } from '../../../util/filter'; -import { setFeatureProfile } from '../../../actions/feature'; // TODO: not available in plugin -import { GEOJSON_LAYER } from '../../../constants/layers'; - -class FeatureService extends Layer { - createLayer() { - const { - id, - index, - opacity, - isVisible, - data, - dataFilters, - feature, - featureStyle, - } = this.props; - const { map } = this.context; - - const filteredData = filterData(data, dataFilters); - - const group = map.createLayer({ - type: 'group', - id, - index, - opacity, - isVisible, - }); - - group.addLayer({ - type: GEOJSON_LAYER, - id, - index, - opacity, - isVisible, - data: [feature], - // hoverLabel: '{name}', - style: { - color: 'transparent', - strokeColor: '#333', - }, - // onClick: this.onFeatureClick.bind(this), - // onRightClick: this.onFeatureRightClick.bind(this), - }); - - group.addLayer({ - type: GEOJSON_LAYER, - id, - index, - opacity, - isVisible, - data: filteredData, - hoverLabel: '{type}', - style: featureStyle, - onClick: this.onFeatureClick.bind(this), - // onRightClick: this.onFeatureRightClick.bind(this), - }); - - this.layer = group; - - // map.addLayer(this.layer); - - /* - this.layer = map.createLayer({ - id, - index, - opacity, - isVisible, - ...config, - }); - */ - - map.addLayer(this.layer); - - // Fit map to layer bounds once (when first created) - this.fitBoundsOnce(); - } - - onFeatureClick(evt) { - const { name, fields } = this.props; - - this.props.setFeatureProfile({ - name, - fields, - data: evt.feature.properties, - }); - } -} - -export default connect(null, { - setFeatureProfile, -})(FeatureService); diff --git a/src/components/map/layers/GeoJsonLayer.js b/src/components/map/layers/GeoJsonLayer.js new file mode 100644 index 000000000..6a6835eaa --- /dev/null +++ b/src/components/map/layers/GeoJsonLayer.js @@ -0,0 +1,60 @@ +import { connect } from 'react-redux' // TODO: not available in plugin +import Layer from './Layer' +import { filterData } from '../../../util/filter' +import { setFeatureProfile } from '../../../actions/feature' // TODO: not available in plugin +import { GEOJSON_LAYER } from '../../../constants/layers' + +class GeoJsonLayer extends Layer { + createLayer() { + const { + id, + index, + opacity, + isVisible, + data, + dataFilters, + featureStyle, + } = this.props + const { map } = this.context + + console.log('featureStyle', featureStyle) + + const filteredData = filterData(data, dataFilters) + + this.layer = map.createLayer({ + type: GEOJSON_LAYER, + id, + index, + opacity, + isVisible, + data: filteredData, + hoverLabel: '{type}', + // style: featureStyle, + style: { + color: 'transparent', + strokeColor: '#333', + }, + onClick: this.onFeatureClick.bind(this), + // onRightClick: this.onFeatureRightClick.bind(this), + }) + + map.addLayer(this.layer) + + // Fit map to layer bounds once (when first created) + this.fitBoundsOnce() + } + + onFeatureClick(evt) { + const { name, fields } = this.props + + this.props.setFeatureProfile({ + // name, + // fields, + data: evt.feature.properties, + }) + } +} + +export default connect(null, { + setFeatureProfile, +})(GeoJsonLayer) diff --git a/src/constants/layers.js b/src/constants/layers.js index 1c1196ebb..f7b4b6b62 100644 --- a/src/constants/layers.js +++ b/src/constants/layers.js @@ -16,7 +16,7 @@ export const EARTH_ENGINE_LAYER = 'earthEngine' export const TRACKED_ENTITY_LAYER = 'trackedEntity' export const GEOJSON_LAYER = 'geoJson' export const GROUP_LAYER = 'group' -export const FEATURE_SERVICE = 'featureService' +export const GEOJSON_URL_LAYER = 'geoJsonUrl' export const DOWNLOADABLE_LAYER_TYPES = [ FACILITY_LAYER, @@ -24,7 +24,7 @@ export const DOWNLOADABLE_LAYER_TYPES = [ ORG_UNIT_LAYER, EVENT_LAYER, EARTH_ENGINE_LAYER, - FEATURE_SERVICE, + GEOJSON_URL_LAYER, ] export const DATA_TABLE_LAYER_TYPES = [ @@ -33,7 +33,7 @@ export const DATA_TABLE_LAYER_TYPES = [ ORG_UNIT_LAYER, EVENT_LAYER, EARTH_ENGINE_LAYER, - FEATURE_SERVICE, + GEOJSON_URL_LAYER, ] export const OPEN_AS_LAYER_TYPES = [THEMATIC_LAYER] diff --git a/src/loaders/featureServiceLoader.js b/src/loaders/featureServiceLoader.js deleted file mode 100644 index 2d9f7ba70..000000000 --- a/src/loaders/featureServiceLoader.js +++ /dev/null @@ -1,76 +0,0 @@ -import { getInstance as getD2 } from 'd2'; -import { request } from '@esri/arcgis-rest-request'; -import { queryFeatures } from '@esri/arcgis-rest-feature-service'; -import { geojsonToArcGIS } from '@terraformer/arcgis'; -import { getOrgUnitsFromRows } from '../util/analytics'; -import { toGeoJson } from '../util/map'; -import { getDisplayProperty } from '../util/helpers'; - -const featureServiceLoader = async layer => { - const { rows, name, url, where, featureStyle } = layer; - const legend = { title: name, items: [] }; - - const d2 = await getD2(); - const displayProperty = getDisplayProperty(d2).toUpperCase(); - - let orgUnitFeatures; - let feature; - - console.log('rows', rows); - - if (rows && rows.length) { - const orgUnits = getOrgUnitsFromRows(rows); - const orgUnitParams = orgUnits.map(item => item.id); - - const orgUnitsRequest = d2.geoFeatures - .byOrgUnit(orgUnitParams) - .displayProperty(displayProperty); - - try { - orgUnitFeatures = await orgUnitsRequest.getAll().then(toGeoJson); - } catch (error) { - // console.log(error); // TODO - } - - if (orgUnitFeatures.length) { - feature = orgUnitFeatures[0]; - } - } - - const metadata = await request(url); - - const { features /*, properties */ } = await queryFeatures({ - url, - where, - geometry: feature ? geojsonToArcGIS(feature.geometry) : null, - geometryType: 'esriGeometryPolygon', - f: 'geojson', - maxUrlLength: 2048, - resultOffset: 0, // TODO: Remove - resultRecordCount: 100, // TODO: Remove - /* authentication, */ - }); - - legend.items.push({ - name: 'Feature', - ...featureStyle, - fillColor: featureStyle.color, // TODO: Clean up styles - }); - - console.log('features', features); - // https://services9.arcgis.com/RHVPKKiFTONKtxq3/arcgis/rest/services/USGS_Seismic_Data_v1/FeatureServer/0/query?f=pbf&cacheHint=true&maxRecordCountFactor=4&resultOffset=0&resultRecordCount=8000&where=1%3D1&orderByFields=OBJECTID&outFields=OBJECTID%2Calert%2Cmag&outSR=102100&spatialRel=esriSpatialRelIntersects - - return { - ...layer, - name, - legend, - data: features, - fields: metadata.fields, - feature, - isLoaded: true, - isExpanded: true, - isVisible: true, - }; -}; - -export default featureServiceLoader; diff --git a/src/loaders/geoJsonUrlLoader.js b/src/loaders/geoJsonUrlLoader.js new file mode 100644 index 000000000..723cb758e --- /dev/null +++ b/src/loaders/geoJsonUrlLoader.js @@ -0,0 +1,31 @@ +import { getInstance as getD2 } from 'd2' +import { getOrgUnitsFromRows } from '../util/analytics' +import { toGeoJson } from '../util/map' +import { getDisplayProperty } from '../util/helpers' + +const geoJsonUrlLoader = async (layer) => { + const { rows, name, url, where, featureStyle } = layer + const legend = { title: name, items: [] } + + const geoJson = await fetch(url).then((response) => response.json()) + + /* + legend.items.push({ + name: 'Feature', + ...featureStyle, + fillColor: featureStyle.color, // TODO: Clean up styles + }) + */ + + return { + ...layer, + name, + legend, + data: geoJson?.features, + isLoaded: true, + isExpanded: true, + isVisible: true, + } +} + +export default geoJsonUrlLoader diff --git a/src/loaders/layers.js b/src/loaders/layers.js index 648d4788a..1fe8e7b3d 100644 --- a/src/loaders/layers.js +++ b/src/loaders/layers.js @@ -1,11 +1,11 @@ -import eventLoader from './eventLoader'; -import trackedEntityLoader from './trackedEntityLoader'; -import facilityLoader from './facilityLoader'; -import thematicLoader from './thematicLoader'; -import orgUnitLoader from './orgUnitLoader'; -import earthEngineLoader from './earthEngineLoader'; -import externalLoader from './externalLoader'; -import featureServiceLoader from './featureServiceLoader'; +import eventLoader from './eventLoader' +import trackedEntityLoader from './trackedEntityLoader' +import facilityLoader from './facilityLoader' +import thematicLoader from './thematicLoader' +import orgUnitLoader from './orgUnitLoader' +import earthEngineLoader from './earthEngineLoader' +import externalLoader from './externalLoader' +import geoJsonUrlLoader from './geoJsonUrlLoader' const layerType = { event: eventLoader, @@ -15,20 +15,20 @@ const layerType = { orgUnit: orgUnitLoader, earthEngine: earthEngineLoader, external: externalLoader, - featureService: featureServiceLoader, -}; + geoJsonUrl: geoJsonUrlLoader, +} -export const fetchLayer = config => { - const Loader = layerType[config.layer]; +export const fetchLayer = (config) => { + const Loader = layerType[config.layer] if (Loader) { return Loader({ ...config, editCounter: config.editCounter !== undefined ? config.editCounter + 1 : 0, - }); + }) } else { // eslint-disable-next-line - console.log('Unknown layer type', config.layer, config); + console.log('Unknown layer type', config.layer, config) } -}; +} diff --git a/src/reducers/layers.js b/src/reducers/layers.js index 615a20774..09f6a6225 100644 --- a/src/reducers/layers.js +++ b/src/reducers/layers.js @@ -41,42 +41,13 @@ const defaultLayers = () => [ img: 'images/orgunits.png', opacity: 1, }, - /* - { - layer: 'external', - type: 'Settlement extents', - opacity: 1, - config: { - type: 'featureService', - name: 'Settlement extents', - url: - 'https://services3.arcgis.com/BU6Aadhn6tbBEdyk/ArcGIS/rest/services/GRID3_Sierra_Leone_Settlement_Extents/FeatureServer/0', - }, - }, - */ { external: true, - layer: 'featureService', - type: 'Settlement extents', + layer: 'geoJsonUrl', + type: 'Feature', name: 'Settlement extents', opacity: 1, - url: 'https://services3.arcgis.com/BU6Aadhn6tbBEdyk/ArcGIS/rest/services/GRID3_Sierra_Leone_Settlement_Extents/FeatureServer/0', - }, - { - external: true, - layer: 'featureService', - type: 'Feature Service', - name: 'Thermal Hotspots and Fire Activity', - opacity: 1, - url: 'https://services9.arcgis.com/RHVPKKiFTONKtxq3/ArcGIS/rest/services/USGS_Seismic_Data_v1/FeatureServer/0', - }, - { - external: true, - layer: 'featureService', - type: 'Feature Service', - name: 'Recent Earthquakes', - opacity: 1, - url: 'https://services9.arcgis.com/RHVPKKiFTONKtxq3/ArcGIS/rest/services/Satellite_VIIRS_Thermal_Hotspots_and_Fire_Activity/FeatureServer/0', + url: '/temp/crosscut.geojson', }, ...earthEngineLayers().filter((l) => !l.legacy), ] diff --git a/src/reducers/map.js b/src/reducers/map.js index a0d41808a..617971fda 100644 --- a/src/reducers/map.js +++ b/src/reducers/map.js @@ -14,58 +14,7 @@ const defaultState = { [50.2, 35.9], ], basemap: defaultBasemapState, - mapViews: [ - /* - { - id: 'LBLdMevUSrm', - layer: 'external', - name: 'Settlement extents', - opacity: 1, - config: { - id: 'suB1SFdc6RD', - type: 'geoJsonUrl', - url: - 'https://services3.arcgis.com/BU6Aadhn6tbBEdyk/arcgis/rest/services/GRID3_Sierra_Leone_Settlement_Extents/FeatureServer/0/query?f=pgeojson&where=1=1', - attribution: 'GRID3', - style: { - color: '#FFA500', - }, - }, - legend: { - title: 'Settlement extents', - }, - isVisible: true, - editCounter: 0, - isLoaded: true, - isExpanded: true, - }, - */ - /* - { - id: 'LBLdMevUSrm', - layer: 'external', - name: 'Settlement extents', - opacity: 1, - config: { - id: 'suB1SFdc6RD', - type: 'featureService', - url: - 'https://services3.arcgis.com/BU6Aadhn6tbBEdyk/ArcGIS/rest/services/GRID3_Sierra_Leone_Settlement_Extents/FeatureServer/0', - attribution: 'GRID3', - style: { - color: '#FFA500', - }, - }, - legend: { - title: 'Settlement extents', - }, - isVisible: true, - editCounter: 0, - isLoaded: true, - isExpanded: true, - }, - */ - ], + mapViews: [], } const basemap = (state, action) => { diff --git a/src/util/featureStyle.js b/src/util/featureStyle.js index 8f35be047..2a03a8f15 100644 --- a/src/util/featureStyle.js +++ b/src/util/featureStyle.js @@ -1,62 +1,62 @@ -import i18n from '@dhis2/d2-i18n'; +import i18n from '@dhis2/d2-i18n' -const FILL = 'color'; -const STROKE_COLOR = 'strokeColor'; -const STROKE_WIDTH = 'weight'; +const FILL = 'color' +const STROKE_COLOR = 'strokeColor' +const STROKE_WIDTH = 'weight' // Wrapped un a function to make sure i18n is applied const getFill = () => ({ id: FILL, label: i18n.t('Fill color'), type: 'color', -}); +}) const getStroke = () => ({ id: STROKE_COLOR, label: i18n.t('Stroke color'), type: 'color', -}); +}) const getStrokeWidth = () => ({ id: STROKE_WIDTH, label: i18n.t('Stroke width'), type: 'number', -}); +}) -export const getFeatureStyleFields = type => { - if (type === 'esriGeometryPolygon') { - return [getFill(), getStroke(), getStrokeWidth()]; +export const getFeatureStyleFields = (type) => { + if (type === 'Polygon') { + return [getFill(), getStroke(), getStrokeWidth()] } - return []; -}; + return [] +} -const esri2cssRgb = ([r, g, b]) => `rgb(${r},${g},${b})`; +const esri2cssRgb = ([r, g, b]) => `rgb(${r},${g},${b})` // Inspired by simplestyle-spec export const setDrawingInfo = (featureStyle, drawingInfo) => { - const style = { ...featureStyle }; - const { renderer } = drawingInfo; - const { type, symbol } = renderer; + const style = { ...featureStyle } + const { renderer } = drawingInfo + const { type, symbol } = renderer if (type === 'simple') { - const { color, outline } = symbol; + const { color, outline } = symbol if (color && !style.fill) { - style[FILL] = esri2cssRgb(color); + style[FILL] = esri2cssRgb(color) } if (outline) { - const { color, width } = outline; + const { color, width } = outline if (color && !style.stroke) { - style[STROKE_COLOR] = esri2cssRgb(color); + style[STROKE_COLOR] = esri2cssRgb(color) } if (width && !style.strokeWidth) { - style[STROKE_WIDTH] = width; + style[STROKE_WIDTH] = width } } } - return style; -}; + return style +} diff --git a/yarn.lock b/yarn.lock index ef2d9088e..eb6b06666 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2446,44 +2446,6 @@ resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.35.0.tgz#b7569632b0b788a0ca0e438235154e45d42813a7" integrity sha512-JXdzbRiWclLVoD8sNUjR443VVlYqiYmDVT6rGUEIEHU5YJW0gaVZwV2xgM7D4arkvASqD0IlLUVjHiFuxaftRw== -"@esri/arcgis-rest-feature-service@^4.0.5": - version "4.0.5" - resolved "https://registry.yarnpkg.com/@esri/arcgis-rest-feature-service/-/arcgis-rest-feature-service-4.0.5.tgz#03769e2184f26f704a303cd34b6ee9384722f419" - integrity sha512-Qiupoa5gLKMruX/keXYByDC/X9y7uI9Irl5ZUVwcWx5yw6oJFmbpm7MHUbNW1sDzvwceGH0wdpkoJcf8Tke/2g== - dependencies: - tslib "^2.3.0" - -"@esri/arcgis-rest-fetch@^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@esri/arcgis-rest-fetch/-/arcgis-rest-fetch-4.0.0.tgz#aa5bf2bedccc168ea52433eb9c56b452b450500d" - integrity sha512-ybsMO2L4cxx0IaIx0jv6/VbXidZmQIiGD3bvPF1/n1Y1ljHIhCvX+ti54cQSfg/HW2+VAVVnt8EPD/omVhNAyg== - dependencies: - node-fetch "^3.0.0" - -"@esri/arcgis-rest-form-data@^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@esri/arcgis-rest-form-data/-/arcgis-rest-form-data-4.0.0.tgz#bea44236863348b6433440083f4dd9d4c42497f6" - integrity sha512-cAS9HONIJgseCDdgRCIHBR4CE/OQXZIRP3FoNx/w+XyjVqK6yQiwCeXpYLfHeEZ6GEQqrA9XUBxifWG9UaJyXA== - dependencies: - formdata-node "^4.1.0" - -"@esri/arcgis-rest-portal@^4.4.0": - version "4.4.0" - resolved "https://registry.yarnpkg.com/@esri/arcgis-rest-portal/-/arcgis-rest-portal-4.4.0.tgz#d1b27a2e2fce48ecc5fdc4828e298f42a11e9142" - integrity sha512-eNQ+Ddj1rYu8ttDdP/JkOUpwsfClq0KjT39C4L+Z2fQKFOl8xlIqexYRdM9tG7xNnXj4JLu3sr/JcVlMk6hFbQ== - dependencies: - tslib "^2.3.0" - -"@esri/arcgis-rest-request@^4.2.0": - version "4.2.0" - resolved "https://registry.yarnpkg.com/@esri/arcgis-rest-request/-/arcgis-rest-request-4.2.0.tgz#8080e271851302e555ae7b549139a2d3d49a3ee7" - integrity sha512-2XLy0Ivar3BIr4ehe/5hYottIqiHnC8LDqhMPglufoLcsX9LFOr81X74aPXX0Ad3xVMaSy2HLLVNoNOkhwFGqQ== - dependencies: - "@esri/arcgis-rest-fetch" "^4.0.0" - "@esri/arcgis-rest-form-data" "^4.0.0" - mitt "^3.0.0" - tslib "^2.3.1" - "@hapi/hoek@^9.0.0": version "9.3.0" resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-9.3.0.tgz#8368869dcb735be2e7f5cb7647de78e167a251fb" @@ -3198,18 +3160,6 @@ dependencies: defer-to-connect "^1.0.1" -"@terraformer/arcgis@^2.1.2": - version "2.1.2" - resolved "https://registry.yarnpkg.com/@terraformer/arcgis/-/arcgis-2.1.2.tgz#9e05cc5e0ddc400e532f6ccb1d91bdf420e4a756" - integrity sha512-IvdfqehcNAUtKU1OFMKwPT8EvdKlVFZ7q7ZKzkIF8XzYZIVsZLuXuOS1UBdRh5u/o+X5Gax7jiZhD8U/4TV+Jw== - dependencies: - "@terraformer/common" "^2.1.2" - -"@terraformer/common@^2.1.2": - version "2.1.2" - resolved "https://registry.yarnpkg.com/@terraformer/common/-/common-2.1.2.tgz#7bf83f81f1c3a99069c714c044004f9707f00c97" - integrity sha512-cwPdTFzIpekZhZRrgDEkqLKNPoqbyCBQHiemaovnGIeUx0Pl336MY/eCxzJ5zXkrQLVo9zPalq/vYW5HnyKevQ== - "@testing-library/dom@^8.0.0": version "8.20.0" resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-8.20.0.tgz#914aa862cef0f5e89b98cc48e3445c4c921010f6" @@ -6511,11 +6461,6 @@ dashdash@^1.12.0: dependencies: assert-plus "^1.0.0" -data-uri-to-buffer@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz#d8feb2b2881e6a4f58c2e08acfd0e2834e26222e" - integrity sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A== - data-urls@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b" @@ -7984,14 +7929,6 @@ fd-slicer@~1.1.0: dependencies: pend "~1.2.0" -fetch-blob@^3.1.2, fetch-blob@^3.1.4: - version "3.2.0" - resolved "https://registry.yarnpkg.com/fetch-blob/-/fetch-blob-3.2.0.tgz#f09b8d4bbd45adc6f0c20b7e787e793e309dcce9" - integrity sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ== - dependencies: - node-domexception "^1.0.0" - web-streams-polyfill "^3.0.3" - fetch-jsonp@^1.2.3: version "1.2.3" resolved "https://registry.yarnpkg.com/fetch-jsonp/-/fetch-jsonp-1.2.3.tgz#ae99a867095cb1ce5c39fac601d70d1084db122f" @@ -8215,21 +8152,6 @@ form-data@~2.3.2: combined-stream "^1.0.6" mime-types "^2.1.12" -formdata-node@^4.1.0: - version "4.4.1" - resolved "https://registry.yarnpkg.com/formdata-node/-/formdata-node-4.4.1.tgz#23f6a5cb9cb55315912cbec4ff7b0f59bbd191e2" - integrity sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ== - dependencies: - node-domexception "1.0.0" - web-streams-polyfill "4.0.0-beta.3" - -formdata-polyfill@^4.0.10: - version "4.0.10" - resolved "https://registry.yarnpkg.com/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz#24807c31c9d402e002ab3d8c720144ceb8848423" - integrity sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g== - dependencies: - fetch-blob "^3.1.2" - forwarded@0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" @@ -11313,11 +11235,6 @@ minizlib@^1.3.3: dependencies: minipass "^2.9.0" -mitt@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/mitt/-/mitt-3.0.1.tgz#ea36cf0cc30403601ae074c8f77b7092cdab36d1" - integrity sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw== - mixin-deep@^1.2.0: version "1.3.2" resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" @@ -11481,11 +11398,6 @@ node-dir@^0.1.17: dependencies: minimatch "^3.0.2" -node-domexception@1.0.0, node-domexception@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" - integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== - node-fetch@^1.0.1: version "1.7.3" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" @@ -11494,15 +11406,6 @@ node-fetch@^1.0.1: encoding "^0.1.11" is-stream "^1.0.1" -node-fetch@^3.0.0: - version "3.3.2" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-3.3.2.tgz#d1e889bacdf733b4ff3b2b243eb7a12866a0b78b" - integrity sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA== - dependencies: - data-uri-to-buffer "^4.0.0" - fetch-blob "^3.1.4" - formdata-polyfill "^4.0.10" - node-forge@^1: version "1.3.1" resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3" @@ -15279,11 +15182,6 @@ tslib@^2.0.1, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.1: resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf" integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg== -tslib@^2.3.0: - version "2.6.2" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" - integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== - tsutils@^3.21.0: version "3.21.0" resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" @@ -15869,16 +15767,6 @@ wbuf@^1.1.0, wbuf@^1.7.3: dependencies: minimalistic-assert "^1.0.0" -web-streams-polyfill@4.0.0-beta.3: - version "4.0.0-beta.3" - resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz#2898486b74f5156095e473efe989dcf185047a38" - integrity sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug== - -web-streams-polyfill@^3.0.3: - version "3.2.1" - resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6" - integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q== - webidl-conversions@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" From e24cbc469e0c0a653638f11ebb0550c3d4a03bf7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Sandvik?= Date: Tue, 17 Oct 2023 16:46:33 +0200 Subject: [PATCH 12/63] chore: bug fix# --- src/components/map/layers/GeoJsonLayer.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/components/map/layers/GeoJsonLayer.js b/src/components/map/layers/GeoJsonLayer.js index 6a6835eaa..d68875393 100644 --- a/src/components/map/layers/GeoJsonLayer.js +++ b/src/components/map/layers/GeoJsonLayer.js @@ -17,8 +17,6 @@ class GeoJsonLayer extends Layer { } = this.props const { map } = this.context - console.log('featureStyle', featureStyle) - const filteredData = filterData(data, dataFilters) this.layer = map.createLayer({ @@ -28,14 +26,12 @@ class GeoJsonLayer extends Layer { opacity, isVisible, data: filteredData, - hoverLabel: '{type}', // style: featureStyle, style: { color: 'transparent', strokeColor: '#333', }, onClick: this.onFeatureClick.bind(this), - // onRightClick: this.onFeatureRightClick.bind(this), }) map.addLayer(this.layer) From 8a1781de4dc2b2ffaa055c82c06088880bbc55dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Sandvik?= Date: Wed, 18 Oct 2023 15:22:50 +0200 Subject: [PATCH 13/63] feat: feature layer data table --- i18n/en.pot | 7 ++----- public/images/featurelayer.png | Bin 0 -> 13967 bytes src/components/datatable/DataTable.js | 8 ++++---- src/components/datatable/FeatureColumns.js | 12 ++++++------ src/reducers/layers.js | 4 +++- 5 files changed, 15 insertions(+), 16 deletions(-) create mode 100644 public/images/featurelayer.png diff --git a/i18n/en.pot b/i18n/en.pot index 51c55926b..263c9e132 100644 --- a/i18n/en.pot +++ b/i18n/en.pot @@ -5,8 +5,8 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -"POT-Creation-Date: 2023-10-17T12:59:12.850Z\n" -"PO-Revision-Date: 2023-10-17T12:59:12.850Z\n" +"POT-Creation-Date: 2023-10-18T11:52:12.744Z\n" +"PO-Revision-Date: 2023-10-18T11:52:12.744Z\n" msgid "Untitled map, {{date}}" msgstr "Untitled map, {{date}}" @@ -1328,9 +1328,6 @@ msgstr "Tracked entities" msgid "Org units" msgstr "Org units" -msgid "Features" -msgstr "Features" - msgid "not one of" msgstr "not one of" diff --git a/public/images/featurelayer.png b/public/images/featurelayer.png new file mode 100644 index 0000000000000000000000000000000000000000..05f634685584f053207278bda7a87ad27b6ffcea GIT binary patch literal 13967 zcmZX*1ymK?{y#kDaOf`SI@BQ~rMtUZ>5@>o5jb?WbV`?ipfu8rf`COMh=hbl=YM$a z{oQ-l`??k~&di=YvuDr#e#%&FO(k3`N-O{Xa8;D$bpZeZZUT20XyD(peHgUh4qHb# zIc*g=IeKjmS9`~2b^w4#eV+104QfR`OgBNWQ591a6-5Q7=2UmZ$ertlMh_6x?Crnh zpZ>ev71I(0cOY_d#OTlblKGhW5+y9Gm;oLZwTbZ@(Y`!Yt66)n{`2C`;d^dw{AmV6 z!q091E6T2dh}YfS(d1ZSAX(Cj5kuvZDkuAdic?=}OV8y)aZ}gf^ZME9!6&Z+M9xWs zaWJ?$#X_zY3Z>E?I+oGtTP5Z^Sj8lq*nP0xrLyQcqceDw?;WirT#ILvCxKlp{71mO zAybcUFnLhs-O$%3Z7CMB?_E~EVw*5ZXo*S-Bsfmet60cWS}A82=awhj7NzF$yOZ=a zLWpapQ^OTzbv($AMv12SkWudA`eg+SH5gNuzESl?bwIj6ar5th9f;d|T%4u$f|{w4x{39e#nZvnD@#~B1iaK2M}1>2V-0mt8`tMtR<^Fzc3ghX-R_$J;(nsw z=5sqQD|)}@&s;o3{UqT3oFNKs-|yyz)Bkgdm$L-iSVNm$&eg+?UXY82iw7==MNdyJ z?qO>$sw=Pf@8;mYB;XESUT&h?+`hiPT)zBVt{zXhc|}A-xOw=v`S>1!XFT-uck#0F zd+6fH_^*rn-*x2eJZ(H2-Mk!KUFh$xYh~@~?Ii(+-*@z%KmWQp7jg)jv3!#>&tm-qv)nqrOo2iV=%#g~I zW+*9q=tFQfjj%P6c-${|FqrkW! zP91otT(SH5uv3~!nJt?&E!gE}cCSdE;&InzIy1(ff%IUl_ z_sL%C%7f+nla&&nDeB`DUGUKuYmHWsWDVGX)8+BD({h*pvajsNY=Y2S0q2^avn8X4 zkKZZ_Jo}~%Zu?>;OYBsY&b2&WAllb@TWZ?wv2%6MqxDv7eXj)Ii<&H=yFU49u`^8N zs_(rsr(@RP^{0~9sYR3OV8}_A{XA=JwUZ&v^qb#_*K+^C%g)r%;{-SEbDF4VkA(D=$Zvz z{Jab>3%NN_kltSI?qq+`Qa2xX(ET}vkWv5j<9GTumnR05ngw%8bV2$Xet{@0;UDsZ z7D6_!A7arz#aMD(ZJOZH1MeX^_mN}T6>B=baFld39?kJUx7W7rjT^Vcd+~-nlV||L4kM*!s z-jNXtS!$lQ->xUoh}E>N1V7Qp;Zv9bOr>7s(>ufVI}aq^S@uCsc4`|QIIh>!*6U)E zap^x_X!-2wmXyQ)R5Nw`H!k=4^OAtQcVFkgi&nR|uGEibaW`m+ZZmyuvQzWkF3;L& z`EBEQvCN!BH{rUZVA+d=>?8^;Pe(~r+`;=4kdBgH(}g6L^EN-^vC`n+i_+Qt`7z`) znavweaX6#K%_i#`e6=T})FsV_q8vbRy=2nrV)nU8htYe4#`k=IP$cj%22&p78*U?Y z+gcRWaoxw|%nzzyM42Y{&{>j z`;_$nlNWmFPFCiwS&?8I^M)iI1M0#+&kwYwd}vy-o5*CV@Pl1gVm`pcgK`+v<7hs; z+pR_bC|nd@*1$2|J~W5Q@|+iVeiR9K?I3+thRsGmFY@$w>yzmDuTXSaW%suxokJK~ zMIq#hEiL_;co>(jyA@ePJe%Qnvyu1>y!9Z;9J-MzV(yf zk7k`d&-ZQ#CwkJ2`Y&4QJNHE;YzBn15U!Sy()5H+2^*Jp-sowHF#DW-e>ze(hyl`x9QJKRJ?2ROE7Q)swVBd%=&++K^9c zvT3$Vc;*cdj4=#j~wNvPsR@>@cBNt7oaX0@aWPF>Z-wMnG$j8N4iUKO3n zwOS3J(Uf~HJa65WPkEL%EI9qn+2}bV{RLx=_}@wX@mv81pW>NvHRmV&YteM|dw8}< zX6{3zNs);xyGnDX8u`LH66dSoJK*!+9ZxGjZ2c~xaH%TJ3F6vkHO1IyMVDdXUSE#Q zsjg1H*(BpUc^Kf=Z2w{Iqu4=R45k*#(?b6W_`A2h2g~mG;lfP+A=X)@9x4gm#d+4BBpvhmb{l#M4tXOurcf(RNwp_*3Q4`{@5}R~E6%KU`>*N8)IR12Ps+WqR!>q23COyg8Gn1sQ7% zO=8qX_!Vbg78E;iv0G(pwmhdKjQl)9dvx?=X&(bbO1I~md9EblxH4oq0EMXxPB4b6 zSworQY=!7J=kf)+VO=&KBhCVhZ3zC60kFaEGxdXpae*snTbS$niwbMiz4G3>ENpc8 zarO*`PZNJ4)=d3?MRRCCWcoLNPdfMAqwRbdA`W^LC2F+lsfx3c0eq=B!n}$z{({?B zs4{x_T@piY6gsQ8U+S@T_mu?^aJO2 z&5xn@TE-+{cEKuKG%gQn8-t@=$HVHkq7(68j9 z8OA>s)Crb(dtn=9!bA!TQMES`h)8!2El8wlk6P`1d5yK=svW8N)^MvG&rIQu_wJX6 zRdRpoRu&nVUc7Uh9d7o#bT3h62N12i8w8(F_3(e@SFbBZ83k{DZ78x2@(1hSUst@1 zyS2K5#r9@f)C&I-j5kpg4}TMhph^>=e=)`4pyx!X>S(f?cu?@dMrlcA0aZYV)V~1H zyLy)B^=F8TLlVBtzylUxvmavJrQw148(qKy1w%sT+f*gmYUhJj7|LBD7aQp(q_2${ z3hRG9Se)RHm_mcZn3$ZRrf%@h{!w&6lNRRQ?)n2G()tY{@ZJY&28E8tkh4|`DskxA zKy)n@DLa!!Gv4NC+^MJsKN5V(YH;ecB8V(_t%Gkgf#6%0f3wq4$2%7Na^zDICS5F`Nu$CC9wu!C6ZQFBbwT|HmPjKe$R|L- z_zqSK%X)sp{Q_ll<&!*6%FQK3^uqX3rk990b`A#_fd>sKVV}-SpII!H39ph(5!$EV zw?~j?@SfkpobJCL#Zm*$A&h+d$g`CY3#9>>pVS81bJgjhhrK8#`a(72b!MH0OJL;@ z6-x_bz>zU;H=WQ%07u7a8SEJ(=uI79l`A^VZrrDq3ht_xR3}s`p(DU@6 z_^B^8y!2c+RFCefUUp>8Ws&(Nl z_hzbt`?obItpN%ej<&W@LGa~vD!xOBIOYC|KFN+%5BHD6sdI|nxoW+W+(aVvv53|e zCD}nQ0jv_u0@1NtjO+Jb%>y;an1;Uj&pTGK)z)aQj%*A9h(#Ldc@mtj0Kd zDzlJBzVp{E|G&^DIv$4Yd>W5chlCr2C-s4y%#eZ<^Ld)~{%cAqDt$kiTf|zPbG>M&t_(3J4zTILGJeJTh=dJs? zq8Y8kADvIjHXAs_Mh)h<5xfoteqCJ|2#q1pqGLOp;0sjfv`RY5HU)GdqF-IaN)H0R>JXI>%y?U{wgN;du0F+p)A995Ig(%1YqSB0b)$ zL_T)ZEI}PTfq`IPWi*x18z9L*F0{HfJZ^cGlTL=j65hZOzxv&r<1_Yk-O6=yt!F(+ z?6?jQqhQ*FHjNOX$CtXD$Co_sb*6^;OTrgxjMwUznuXcOOx;2?^JqoAs?t9M%ou{; zQy}sRoSO$@7h%Cfr6j=1&t*1gc@KZ!Lt*%-j~+e!m@nP&!SMCt^2Tc$l(yaa&T9y- z^izRh(IyZVnhkg8lqy2PxL=sO4k3AB_Y!UrMJ$ehWz}I%J7uQtBl~)do>ZK}k+mXVX^=SR>o2F4H#q z796ejxW1Sdi@tk*T*rl>m#W!odnT22)D7E0Z-Ermawp?Yqs8d}x784Bn9FFjJcQhX z;d)2Wm@c@DZY{F6jWdlLq65Uf!MrJKl)N?-hC|tan0JrLv1wYjg8VCuoe z2;81yN?YR_7!_~YV`auPdMX)hgt#y^f(!jgFA9EJ5as%O$Y#z{udo#HYX$B^4ynRBle#U>-2vFLBNZEGzsdWkWfBw_M_bnj~iuiZGw&4O-a8esjw3|2z-PBn!5{pwxlVIL-SI67L4JzL=0q}KWA~6^2+1cdUezYD| zL^U~Y&y;ucd#>GT53XPCHfROzXo|^S6nKoY9UYRP@hA2uK*}JxZ9_HEx%KcfgQP9VXi2WNP}!8h=zPj zWR6{#h5Vp#@oei8BeMX-oW)zEPWX2Q@R`LHp=Y(PpR`_@J6o;wN7jJ2p6v}4pKXlh zuSf>b90I$`er#?gG5OPSX=xH^EM$LE-n(~28R1sjL%2DbxG2JyQeahXly*H99>jGx z{^?%tIfu?^Q1j9g*Zvz3X#)Kg0WUUWgj9N|!~3&E$W1x6TDHKP!&y{7sIAQb4e1#vUUjKPdyCYFDUJScu8@8A(1Z3TkP%Nl8DrKLzQUY1a!v>-X#GM^YAq^b|2^ zYr$A=*IA2RG!>bpc#_G2C-sUbkJ6J8ucyb{Vcd^roOfGM|0DsPGENxWo_;kK+O}Ph z=e6x*j{?7CJp5G@a#;_|w>+<u<6%zni8$Qyhfq83CP5!8n{ON z@8o(vQy>$MreDbks32D0w+y}E=mNsj{=r`+ufPdo!1>@WK8A=VEwm5;U{G*(AL}yf zSo*hJozjg8#(ZIlUT*Naa#`xwW(G`e;J5JASg2);x)g_gRWWI3k6dOmagmJ91NdK% z3G!P2_b9{%QL9nz0MHYji#M7Hfi*QjYjR z2Q4Ir{Kdzo;~}&Pcl1~zi&f{t|_TlJ4ndnN=Ne^R2^KKB1rQ28{%FGl`auGbS4 zDMm1y1+EeoLQW!{5ZFvml~NLQb+fqp!6uwhF=0AV^wkYtXti+G8`w>22@n>HD)IYH zfy}I|6q6TT!SQ_lEt>~|Yqa^JsM>5W>323NaRq4-WThMWm8~Cc%<6>v>4K}2fcuZZ zt|9_VVdpQLYw@FUgDZD2&_l92?V^Im5xA6(w3*d1^+5=(XUimei5VRNf@C>~(_$P= z5^3#vedN{H%R5k1&~dxj1D95(ow;fVtwvi1S6T5|N1blD+i{j9asgkcB*p~eyaKp9*{!S$&tNyu&EPOH1XUyfY>MqfMhtCiAT@f0 zP?*MbkPNkV;G-x(p=h>K3~sMwgjO~*vyODFab(4`!^`m<$Xq$#BaH}R%>*%3CUUT4 z$}X!l3$&05lHS+o^qKu$v#Jqr{!#@p-(7r#hiuLYc2qbj#%Ve*o8g2%89xQT3)`;X z!B)eIXSnNn;hPMr6FBsQIOsH9DL>LxbA?>%HKlI6_B26l#-L`vt|u9z&a_?E%wvpM z@>E*000*L#9-8LOlpaJ7FU@x}Er)MMot-x3zwvF6&~j6e6B(0(K`wwYiceVnN-tHB z=N(gx`k*=tae|A#W))3iZ;xJXG_H&~{XQtLpup##`)r&UiwD~Lbn3JqR=D@jf5sbx zFpAPK9IqNg_ukHmLu536;6XtVqPoVsyF)Bdtu~3?G9MS%e7y5s?E;}x?>e8T-JJY$ zF7x4&nOlt-6rD{_j4`blum$fNyb-_kM4>s5hs<#_bp2pt`Xqi*rBmuP!)OJXR;fpa>N|{oN)g7uvyUh24Cvht@{NdYMW9r?PGsG zDIyV@4h-^AAUlkR|8^r?t75@d~EnSbl37harNKPZPRhirGpV#Qw{4&Y<0TMR_uuHTrp zP(&dKU-g1o;wK#5gZEeUR)-O_Vm-H)wRrEMu<~of)&K4}N?3hS-@EuGLeaV3QG1)` zD!Jiss1d;3PT?k|yWa^asB2Jm+0s8|5N&3(0H>GI6PXVgVcouRKV>TM=we00S7F9h zPpfrGqu^BOC*t@LbR-bE@s3iS^J1po__Hr0PbCwgF!uPw=wDKaLGwf4n~bZSP(N@9 zCmDj@)acsWGLOHH{-$S~=lZQtMruQSVr+tSd`9KsXoB0j-PJg_JqbZ>kBNYc4`w}l z@?~sREl9H`~RwDyQ^pO$c&Jt zjH#U3pY1PwuC6THF(BIz--cT{IUSIG|M3OX*GQK!an-;SyUl|6cIVqKxPaUD$ z8=SB=6I`8~_Jm=Bb#=YjKLvP7EM{Uu2xG)hkYzUO!--BHfCR3C-oOMcsujBfWF;(SfbxJcY#|A^1f>UP<=q5Eh!alrvpraPjjVfY9f z5`ejfjeqZ@*WSFr8WxGKw2&Sy2L<8L~vN*Hmg8RR^c$Om(!zWpbUi}`mr&5uOZ8_Bp+-cMhl1;F$iqicsV+WLZA=QlZ zo3UrLzN>D2CSXH_N zSLKn9BERypGj3@*LAl)qB&GP**sp~?E26tcFKJMv*E?7z*r&)*oico>5_Y6fzA8kf^ zx34MWn_MJXE{qO?1+3|xQ`1)4&<3Ad3Aii@pMY>~*YCO! zZ~5^&VrJlV^;>)7`nG1mT^bDPzDrMfoDJ3;&twaf$D6Q~sc1R+Qyjm^ zbm!Q1*IB&yq(tZVj8iIvDa!RH(_kZql}%HBmQATra?)U1H+7jaKeC_l`MuH#B942P zLf^0~ck?)ztZ=^0gny4R02EcQg$OTtz`|9VB>V$Iz+t*r+3HUpIvv7Za#0MO+6}n_ ziZz_LG#w~lE%ynDW!(aq5}W|m;ZWfNLbZ3@Pfqrio_xsWm8%H!kGZ}o5_~>i1rB%> zf;-+=_lF?U-xO=cMy2!;&NK;VAqUV|TUL>Vit&>~(vpkG9EEeC?nd5+zL%;9zqzE! z^S7R0JxHIiPW4CRZ(ty;{jw`AD;GxS}d0??%5LF|TE=)akBy00AccQ`tgOkF;W zu~(hw>QjgJ?r|FOocNpo++&#!_A^0=AC5n!bU5`2qs~ny(08k6Y=`mF)5Fz1(ICNN z6dwm96GbS+1v?YP5{O}PamQY5%6(0EgVn1@d8A4LdEi!6KL5_SQZ8}t#_BpM1m6ZB z#N*1BI!S<}3SH&TyCYy^h*iAcH|2Nc?NXv@0G@4CKZ?I1$YLNPQjm^4&pgp1>?WyedXx zDtw@kD`9)_kpSYMUCdD_p7U^{vQeBq8{>hKAMq@%M(YB`y6-9pGKjFQ(fBn+GN2m@#tEFZryv{^N1A>LmoLJuq3Ts_HqDMCE7_?3cW(RPvdEf-aTJ1 zRHB$4$v(#Q797m}_Q=gs^|+MZ2wjV?o#p#Xv*rCya?!Mea?aSEvh<@AQP!tAUIMfS|u2b_+DGnec7uiAO&(F!mp@u15FugOc+;$FzrIrurmuLAF;)$_EMh0>RBT?FwUq12q+&p6l0fw)*RdKKt?CW_oJ@8&SO*4xjp5(k(#q-R7#q2#jZ$bT*R2w zsX$ctin}xN81NUI>18uZ$H_@k2?&DkrLy)>>SvSJj|HSU4ObUawSm(ZHlv||bC3n> zj<-zb4yg1Fxz9tp96rJKMn=d!;K06;Y}eM&C@d-O$(}j?CK5iswd1 zV++RNWKAn|=)QlJh;c5q05hbU?vxhE_PeXj3K+JRfFPKh(+LvpZff zj=R8(Vvrw3Kor)p%gT#&1Bymy2%6>kj9&^^Bd^^j^^|toa7ih z8TQ+Xik8zbF~UL=oMH3Wu8uC*#~;@*p@X58rr0ID{-Yjq6U96_fJ~QO*_1mW{de>M zXRv1c*cS?7q=ox&XG8qnMG&G|UYar7s8NNo=~WEQ}vM3Jrm9IaYd7V%fm4 zih1BizLtdaJz@Q9hOzD+s-<&XwNYu+Ga+trM4G=dW2mMd+LoJv>=*l`C0Tz@IOp`b z4MDz`Z#~CA3I&p*QMELf5vi8A)j>auvN4iWjj9p!tOF zJ)^>k8jJ>1G%BW=Wf!eav(+g;gd@w|+K@m~d>ehDP=&W-H8J0Aaz3r9-Yx@~iprz% zhc*OAiYnPiEK$~#Y|WqF2$fyO^qIf*v0VtUPFH^^qmk(aVA))9r`rM?DGPF}Lli=l z>2NiG_0!9i1ZiNHW(P_{NzD=}ZwrcnNq8zG$Wk{|n+ke>8)dN3DveUW$>A#trj}+b z0;o)R>60M4+V%J2Y^s-{H~Yv(?JXFT5-0z^2a7=``qC;ikCzkr2gek>5l@V{1jv`w zo#(}a%sBsf6|J)RH@xE`8zDDRPgzy0kU@G+%HjJAVZ+hR>~=iyh%|>5p-IgH5glic zOcEO@%pa0K9Ga`XD_Kodje%xr6>exspeO@)O=+F`V-mA1Ha^*c z0)jUX;n0$|Yiv*wPxpDc{cXTQn4%C^z9onf{!hzLuwvALMz()|rkgpM3 z#^0xrz?kIA`J~*s$M00hq}-hr|215HNFZ3qXWyHKW<7J=_{OKjOuQeHATf;$E>n1+ z_u`6Aq|Pf5)h3rEQ4OM|eJ|dC0A9eL5BxM$~+fckjKsu)!+r%ioUi62>cntK8c#(w&72SK#Ak9~4 zxN3D-s>!}2#*k0C?mT$E`+^ncS!!-5$ZXxczA%nSqnU5<_{JW6B|ktcL~7;Xk3GE4 zE1bICfs{>jJh?_vd=b{o^O@VctBvbg1t3stj3edPi6{nZ%Xdvp|1@fAM$s*|O70(3wHmMcTS%S0MZLLTkgk_gAyeHpvp1 zJJZ^~pBhG>-;4N3NlO2kz+(i(^AClN4%Y_KX)?dO|Fb^QX~@O#8qe>=bP9u<7aF}k zfo2>zq(EM8UNx@wt>Y|->y>GF$lYxRX3Z}}g(~;e<72wt@(}r-czl-m)1C$m<`TaO zyUu^a*MO3@NGov}TH~$7z0vGzLV{dRQ4NnJFmCrK51Zm9qY!p0Hdh3dYUV6^=*g2| z9EdWQ^q@XyMF1lV8EESaz4LTmmxjnJs9k;M7Zj6eUvqUG_PJ@oce8ryy{@-J}&nB~!JaPiKE~ReYN=stkuO5n;kSuuU9=@FC0A5vN3u z>{xZsT{k*614*DnG8 zw5;xx)4FJ=ieFFz&K{8I^ms5(Nx817dmM~iHrt)-e8${8?>k5ibepTv*#W&~{d86> zL*FIuEb;5RP;`{WJbpk2I5lHmQ6aQs$0Afz0N(?`nUu4(Ezw$kk=0P%cER=a=WD#U= zS8&&MeJ6EuJbO}f(DhgI_QTQL9YG2+auG|Bp;zwXBbu-z5Y}%|K;nvnu1-51yMme* z>6j>J&=j-WX7kypj>C%YGgQ@jm6QUSdZLVKfL?vXF(ZB`NIQ)izO!oNzO2OHIhFvs zxL1$;M?j(>{o15ivA}Ca#ed<)4SLi{ved2ca{Z{Q4ccl2u5=fW+B4LI4sb{ei?JUM zHh(+Yo@ISK{DyF(OqIE!MP(?yhjueaK0AZ>2#l=uuWikoA|Ve-LU zd$+NKWgrZ`H)fqH0``YHT7tN37GOyW>#J(b8H?|VWuL#*)9_404@wv z#Xe73o>i|jfhuxZYIhVR&J{4Gs6*67+6d`Q+sFi~3ify8+xP`nP%0dsi(ZLJb>wkg z1AW==d9rtj8ffmbXrSeA+^X{fvJA#@u!ff*C}>q+LWWgxIz=LpO32W)`y`X0+r5Ws zLs2@51*493yL`Ne14M9@|$b3I%q^(}Kr!Y$gKQg_Qx_$m-{_bk!ZVt@Fc~zK!K$nPbv*Q!Z zm#ezc>ZaLOa_B;uYkqk}L8mz-Eta6lMB}ctnI=&W2>+2CNf(?%zk|!{Hcau9L^zAwNXp)(gpXBSuY)g|7OgxzMk9&35GD)}=%r z4Nq9;!}_&l!#cfpGd0pfuRfG#nb$Pzf@5YXB*S?hauB4 z=s#)X&e?b8?{jRfd6;*veCSZc-Clok)q~~1uzDXf(4k#*nFrs2Ds7x8jm$#sJUJbeywWHiI+Tjy;zNGEPZCApyYBwM*h@*DxN4pep{~-@r;ru|DMG1V8 zfY;CZ;7>fZ4v93SFO`W&2pIcXj4mn~aF{?BqWSE0c*3YZE1(l|^Hi`IG-OLVqM^N4 zgs2QS`GMtNK0$PAq=ENo8PH~BSZ`YG>b0oS^;7WKw_-t;#VW`AnKxcn0@J1+`eee{lWJcq>{{DbtkB&BgFMfzD3|c$-JyRZ^ zML;HEM2LF0RhnD_+Bw_XyI@$guG03roPovibtjl{bNq_q{9sX~#Wff4x{)1VUti6g zkXH{lC*v}$GO@!zVIimnC8Hdip=O&L2muWh(*frwU(#d9W(R z$wQgH4D)qhp~4KBsawGK)~j1M3g17I_7ssC;?^^0`%r#k8Zz;WF}3kynFn`9P+JR2 z<&Ca~cpX2G5Y$DIEyIs(v*Q{@q63^;y7$f1n~Ck+?ty~HPPR?bC+D0-1Q5nIIvVye zRA?5|kaGoT&1pv;7p~^W_oGbxt^-pDv3R`pVpzz-%|=ZAMi9d~ixDwZx@4J5z7k(=k!s{kqpHT8mwkAeOFJ@r{pcPEo5_FX#^`vRP0`0Qb?kuqi_x zx3YoniuL@T9AMIe#6(ZC*&&pxYeuZP&}?7FJ8yyE$PeWb&+Y6nWv11|+d;dN1ctxexH_3Dpr(~~s7haF6H7QH zuZ&Qc%ktaPMp}Q&7y08eCYVK7Oi2)ByI3#tpzVQQ=pT4H=ujlks?stNe0ny?T?peopdFC71}^g@pV(wQHZWHhg57s>n%M^G)EZsh({h z3l%4d*(Be`p*rK!x54)9ht`?V@Ygm!=|cz`zf8UXr|O3l%?&@F+JMyeE1JS<5!nid zM1i1{%BFjieeQ?H*^us^8_bxl23R_ zOX`N?7vejKJS-c+qlVqYlRo^T2h6J|w0jZ_`qdw?isU?!d<_^k^a^{9GDHi{2=RR& z=ZT~xghrlAwg1t?K$8K69boOuH_5DJYs+o}xc38zLWmI#rB905poQ58am&J;FkkY! z`&W}91vEa*kBqe&_L1+nW&wjVP98h<&}0se5FS-*Zr#{w3o8Ccb^jZHsj zWAbO)f5_eL72s2zC2gb7d0~hXfk(sAz>-Q}w`D7Vo&#Z$ecW;tCJizI?=cSx&BAq+ zu?Pje#4Fa0jA**Gys}q*bmZ;%9_72~CU+#tXiY-nt@Nv8(6%vkW?hX)Oe`cbP-pTz zPJ@l?;H<4#2l$4c|AS=oedV73!~!gony?oGgAJpPUxwJ4+{6D|FOkfUo%RK5EmJ&H zIkMyT841KR^aWqF@0KHadVaz?k)IzHUxuQfJL#HN9)kRK^K)8Dvn(>@*ft}($!RW} z&d&OLqD2g$)W%-y;|pq3|0ov-DEUxh6}m=OHUv4wm@HoMJ-r}?i~yD3Z6_!6W++2( z585dnpdB@d)4RuvOhkS8!>6gB`(d7|4)DF0rN^BVVrnTrc45H9vCt>7U8MCn+GlUx zG0s;t{wKTy@Q~38-lc?=&GplgGW~JFw6u|pVj%ySCPnWK2<9F=CxObtSZaMO^}(FG xdIdzfJt>rZY9Jc_>)4Bn1#5~luGU|75P&jLtGz-J<^F#isVHd5*UMUl{Xd1w`r-fp literal 0 HcmV?d00001 diff --git a/src/components/datatable/DataTable.js b/src/components/datatable/DataTable.js index 3db9a019d..576a57e9e 100644 --- a/src/components/datatable/DataTable.js +++ b/src/components/datatable/DataTable.js @@ -183,11 +183,10 @@ class DataTable extends Component { const { layer: layerType } = this.props.layer if (layerType === GEOJSON_URL_LAYER) { - const { name, fields } = this.props.layer + const { name } = this.props.layer this.props.setFeatureProfile({ name, - fields, data: evt.rowData, }) } else { @@ -210,7 +209,6 @@ class DataTable extends Component { serverCluster, aggregationType, legend, - fields, } = layer const isThematic = layerType === THEMATIC_LAYER @@ -219,6 +217,8 @@ class DataTable extends Component { const isEarthEngine = layerType === EARTH_ENGINE_LAYER const isFeatureLayer = layerType === GEOJSON_URL_LAYER + console.log('isFeatureLayer', isFeatureLayer, layer) + const isLoading = isEarthEngine && aggregationType?.length && !aggregations @@ -377,7 +377,7 @@ class DataTable extends Component { {isEarthEngine && EarthEngineColumns({ aggregationType, legend, data })} - {isFeatureLayer && FeatureColumns({ fields, data })} + {isFeatureLayer && FeatureColumns({ data })}
{name}{data[name]}
{key}{data[key]}
{isLoading === true && (
diff --git a/src/components/datatable/FeatureColumns.js b/src/components/datatable/FeatureColumns.js index abf3a8ca5..9555020db 100644 --- a/src/components/datatable/FeatureColumns.js +++ b/src/components/datatable/FeatureColumns.js @@ -5,10 +5,11 @@ import ColumnHeader from './ColumnHeader.js' import { numberPrecision } from '../../util/numbers.js' import { getPrecision } from '../../util/earthEngine.js' -const FeatureColumns = ({ fields, data }) => { - if (!fields || !data) { - return null - } +const FeatureColumns = ({ data }) => { + const fields = Object.keys(data[0]).map((name) => ({ + name, + type: typeof data[0][name], + })) // TODO: Remove slice return fields.slice(0, 10).map(({ name, type }) => { @@ -43,8 +44,7 @@ const FeatureColumns = ({ fields, data }) => { } FeatureColumns.propTypes = { - fields: PropTypes.array, - data: PropTypes.array, + data: PropTypes.array.isRequired, } export default FeatureColumns diff --git a/src/reducers/layers.js b/src/reducers/layers.js index 09f6a6225..fe34eda5f 100644 --- a/src/reducers/layers.js +++ b/src/reducers/layers.js @@ -41,15 +41,17 @@ const defaultLayers = () => [ img: 'images/orgunits.png', opacity: 1, }, + ...earthEngineLayers().filter((l) => !l.legacy), { + // TODO: Remove this entry (only for testing) external: true, layer: 'geoJsonUrl', type: 'Feature', name: 'Settlement extents', + img: 'images/featurelayer.png', opacity: 1, url: '/temp/crosscut.geojson', }, - ...earthEngineLayers().filter((l) => !l.legacy), ] const layers = (state, action) => { From 7bc44d046524ddb0bd32f362f06c2bbfe5fb2c20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Sandvik?= Date: Wed, 18 Oct 2023 16:02:31 +0200 Subject: [PATCH 14/63] feat: feature style tab --- src/components/edit/geoJson/GeoJsonDialog.js | 2 - src/components/edit/shared/FeatureStyle.js | 107 +++++++++++++++---- src/util/featureStyle.js | 62 ----------- 3 files changed, 89 insertions(+), 82 deletions(-) delete mode 100644 src/util/featureStyle.js diff --git a/src/components/edit/geoJson/GeoJsonDialog.js b/src/components/edit/geoJson/GeoJsonDialog.js index 222970189..b142bf342 100644 --- a/src/components/edit/geoJson/GeoJsonDialog.js +++ b/src/components/edit/geoJson/GeoJsonDialog.js @@ -5,7 +5,6 @@ import i18n from '@dhis2/d2-i18n' import { Tab, Tabs } from '../../core' import FeatureStyle from '../shared/FeatureStyle' import { setFeatureStyle } from '../../../actions/layerEdit' -import { getFeatureStyleFields } from '../../../util/featureStyle' import styles from '../styles/LayerDialog.module.css' const GeoJsonDialog = ({ @@ -35,7 +34,6 @@ const GeoJsonDialog = ({ >
diff --git a/src/components/edit/shared/FeatureStyle.js b/src/components/edit/shared/FeatureStyle.js index 64468cd3d..e74b6afa0 100644 --- a/src/components/edit/shared/FeatureStyle.js +++ b/src/components/edit/shared/FeatureStyle.js @@ -1,38 +1,109 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import { ColorPicker, NumberField } from '../../core'; -import styles from '../styles/LayerDialog.module.css'; +import i18n from '@dhis2/d2-i18n' +import React, { useMemo } from 'react' +import PropTypes from 'prop-types' +import { Checkbox, ColorPicker, NumberField } from '../../core' +import styles from '../styles/LayerDialog.module.css' +import { useEffect } from 'react' + +const FILL = 'color' +const STROKE_COLOR = 'strokeColor' +const STROKE_WIDTH = 'weight' +const POINT_SIZE = 'pointSize' + +const defaultNoTransparentFillColor = '#CCCCCC' + +// Wrapped in a function to make sure i18n is applied +const getFields = () => [ + { + id: FILL, + label: i18n.t('Fill color'), + type: 'color', + default: 'transparent', + allowTransparent: true, + }, + { + id: STROKE_COLOR, + label: i18n.t('Line/stroke color'), + type: 'color', + default: '#333333', + }, + { + id: STROKE_WIDTH, + label: i18n.t('Line/stroke width'), + type: 'number', + default: 1, + }, + { + id: POINT_SIZE, + label: i18n.t('Point size'), + type: 'number', + default: 5, + }, +] + +const FeatureStyle = ({ style, onChange }) => { + const fields = useMemo(() => getFields(), []) + + useEffect(() => { + if (!style) { + onChange({ + [FILL]: 'transparent', + [STROKE_COLOR]: '#333333', + [STROKE_WIDTH]: 1, + [POINT_SIZE]: 5, + }) + } + }, [style, onChange]) + + if (!style) { + return null + } -const FeatureStyle = ({ fields = [], style = {}, onChange }) => { return ( <> - {fields.map(({ id, label, type }) => + {fields.map(({ id, label, type, allowTransparent }) => type === 'color' ? ( - onChange({ [id]: color })} - className={styles.narrowField} - /> +
+ {allowTransparent && ( + + onChange({ + [id]: isChecked + ? defaultNoTransparentFillColor + : 'transparent', + }) + } + /> + )} + {style[id] !== 'transparent' && ( + onChange({ [id]: color })} + className={styles.narrowField} + /> + )} +
) : ( onChange({ [id]: value })} + onChange={(value) => onChange({ [id]: value })} className={styles.narrowField} /> ) )} - ); -}; + ) +} FeatureStyle.propTypes = { fields: PropTypes.array, style: PropTypes.object, onChange: PropTypes.func.isRequired, -}; +} -export default FeatureStyle; +export default FeatureStyle diff --git a/src/util/featureStyle.js b/src/util/featureStyle.js deleted file mode 100644 index 2a03a8f15..000000000 --- a/src/util/featureStyle.js +++ /dev/null @@ -1,62 +0,0 @@ -import i18n from '@dhis2/d2-i18n' - -const FILL = 'color' -const STROKE_COLOR = 'strokeColor' -const STROKE_WIDTH = 'weight' - -// Wrapped un a function to make sure i18n is applied -const getFill = () => ({ - id: FILL, - label: i18n.t('Fill color'), - type: 'color', -}) - -const getStroke = () => ({ - id: STROKE_COLOR, - label: i18n.t('Stroke color'), - type: 'color', -}) - -const getStrokeWidth = () => ({ - id: STROKE_WIDTH, - label: i18n.t('Stroke width'), - type: 'number', -}) - -export const getFeatureStyleFields = (type) => { - if (type === 'Polygon') { - return [getFill(), getStroke(), getStrokeWidth()] - } - return [] -} - -const esri2cssRgb = ([r, g, b]) => `rgb(${r},${g},${b})` - -// Inspired by simplestyle-spec -export const setDrawingInfo = (featureStyle, drawingInfo) => { - const style = { ...featureStyle } - const { renderer } = drawingInfo - const { type, symbol } = renderer - - if (type === 'simple') { - const { color, outline } = symbol - - if (color && !style.fill) { - style[FILL] = esri2cssRgb(color) - } - - if (outline) { - const { color, width } = outline - - if (color && !style.stroke) { - style[STROKE_COLOR] = esri2cssRgb(color) - } - - if (width && !style.strokeWidth) { - style[STROKE_WIDTH] = width - } - } - } - - return style -} From 0f045f43a7d002b62b06e81f52db5559a529305d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Sandvik?= Date: Wed, 18 Oct 2023 16:24:48 +0200 Subject: [PATCH 15/63] feat: feature layer styling --- src/components/datatable/DataTable.js | 2 -- src/components/edit/shared/FeatureStyle.js | 2 +- src/components/map/layers/GeoJsonLayer.js | 10 +--------- src/loaders/geoJsonUrlLoader.js | 4 +--- 4 files changed, 3 insertions(+), 15 deletions(-) diff --git a/src/components/datatable/DataTable.js b/src/components/datatable/DataTable.js index 576a57e9e..6cfaa27db 100644 --- a/src/components/datatable/DataTable.js +++ b/src/components/datatable/DataTable.js @@ -217,8 +217,6 @@ class DataTable extends Component { const isEarthEngine = layerType === EARTH_ENGINE_LAYER const isFeatureLayer = layerType === GEOJSON_URL_LAYER - console.log('isFeatureLayer', isFeatureLayer, layer) - const isLoading = isEarthEngine && aggregationType?.length && !aggregations diff --git a/src/components/edit/shared/FeatureStyle.js b/src/components/edit/shared/FeatureStyle.js index e74b6afa0..8b8d3cd95 100644 --- a/src/components/edit/shared/FeatureStyle.js +++ b/src/components/edit/shared/FeatureStyle.js @@ -10,7 +10,7 @@ const STROKE_COLOR = 'strokeColor' const STROKE_WIDTH = 'weight' const POINT_SIZE = 'pointSize' -const defaultNoTransparentFillColor = '#CCCCCC' +const defaultNoTransparentFillColor = '#EEEEEE' // Wrapped in a function to make sure i18n is applied const getFields = () => [ diff --git a/src/components/map/layers/GeoJsonLayer.js b/src/components/map/layers/GeoJsonLayer.js index d68875393..f5fed672a 100644 --- a/src/components/map/layers/GeoJsonLayer.js +++ b/src/components/map/layers/GeoJsonLayer.js @@ -26,11 +26,7 @@ class GeoJsonLayer extends Layer { opacity, isVisible, data: filteredData, - // style: featureStyle, - style: { - color: 'transparent', - strokeColor: '#333', - }, + style: featureStyle, onClick: this.onFeatureClick.bind(this), }) @@ -41,11 +37,7 @@ class GeoJsonLayer extends Layer { } onFeatureClick(evt) { - const { name, fields } = this.props - this.props.setFeatureProfile({ - // name, - // fields, data: evt.feature.properties, }) } diff --git a/src/loaders/geoJsonUrlLoader.js b/src/loaders/geoJsonUrlLoader.js index 723cb758e..91013de53 100644 --- a/src/loaders/geoJsonUrlLoader.js +++ b/src/loaders/geoJsonUrlLoader.js @@ -9,13 +9,11 @@ const geoJsonUrlLoader = async (layer) => { const geoJson = await fetch(url).then((response) => response.json()) - /* legend.items.push({ name: 'Feature', ...featureStyle, - fillColor: featureStyle.color, // TODO: Clean up styles + fillColor: featureStyle.color, }) - */ return { ...layer, From e7f2b46476b950695a562e0cae661c7effee1b52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Sandvik?= Date: Wed, 18 Oct 2023 16:39:50 +0200 Subject: [PATCH 16/63] chore: code cleaning --- src/components/app/DetailsPanel.js | 1 - src/components/datatable/DataTable.js | 1 + src/components/datatable/FeatureColumns.js | 6 +++--- src/components/edit/LayerEdit.js | 18 ++++++------------ src/components/edit/geoJson/GeoJsonDialog.js | 8 ++++---- src/components/edit/shared/FeatureStyle.js | 5 ++--- 6 files changed, 16 insertions(+), 23 deletions(-) diff --git a/src/components/app/DetailsPanel.js b/src/components/app/DetailsPanel.js index c3b1f2f4a..f829faf78 100644 --- a/src/components/app/DetailsPanel.js +++ b/src/components/app/DetailsPanel.js @@ -2,7 +2,6 @@ import cx from 'classnames' import PropTypes from 'prop-types' import React from 'react' import { useSelector } from 'react-redux' -import FeatureProfile from '../feature/FeatureProfile.js' import Interpretations from '../interpretations/Interpretations.js' import OrgUnitProfile from '../orgunits/OrgUnitProfile.js' import styles from './styles/DetailsPanel.module.css' diff --git a/src/components/datatable/DataTable.js b/src/components/datatable/DataTable.js index 6cfaa27db..a50e69f16 100644 --- a/src/components/datatable/DataTable.js +++ b/src/components/datatable/DataTable.js @@ -34,6 +34,7 @@ class DataTable extends Component { height: PropTypes.number.isRequired, highlightFeature: PropTypes.func.isRequired, layer: PropTypes.object.isRequired, + setFeatureProfile: PropTypes.func.isRequired, setOrgUnitProfile: PropTypes.func.isRequired, updateLayer: PropTypes.func.isRequired, width: PropTypes.number.isRequired, diff --git a/src/components/datatable/FeatureColumns.js b/src/components/datatable/FeatureColumns.js index 9555020db..6dc847ac0 100644 --- a/src/components/datatable/FeatureColumns.js +++ b/src/components/datatable/FeatureColumns.js @@ -1,9 +1,9 @@ -import React from 'react' import PropTypes from 'prop-types' +import React from 'react' import { Column } from 'react-virtualized' -import ColumnHeader from './ColumnHeader.js' -import { numberPrecision } from '../../util/numbers.js' import { getPrecision } from '../../util/earthEngine.js' +import { numberPrecision } from '../../util/numbers.js' +import ColumnHeader from './ColumnHeader.js' const FeatureColumns = ({ data }) => { const fields = Object.keys(data[0]).map((name) => ({ diff --git a/src/components/edit/LayerEdit.js b/src/components/edit/LayerEdit.js index b0fd6ca2c..2f7753a69 100644 --- a/src/components/edit/LayerEdit.js +++ b/src/components/edit/LayerEdit.js @@ -17,11 +17,11 @@ import { useSystemSettings } from '../SystemSettingsProvider.js' import EarthEngineDialog from './earthEngine/EarthEngineDialog.js' import EventDialog from './event/EventDialog.js' import FacilityDialog from './FacilityDialog.js' +import GeoJsonDialog from './geoJson/GeoJsonDialog.js' import OrgUnitDialog from './orgUnit/OrgUnitDialog.js' import styles from './styles/LayerEdit.module.css' import ThematicDialog from './thematic/ThematicDialog.js' import TrackedEntityDialog from './trackedEntity/TrackedEntityDialog.js' -import GeoJsonDialog from './geoJson/GeoJsonDialog.js' const layerType = { event: EventDialog, @@ -33,7 +33,6 @@ const layerType = { geoJsonUrl: GeoJsonDialog, } -/* const layerName = () => ({ event: i18n.t('event'), trackedEntity: i18n.t('tracked entity'), @@ -41,8 +40,8 @@ const layerName = () => ({ thematic: i18n.t('thematic'), orgUnit: i18n.t('org unit'), earthEngine: i18n.t('Earth Engine'), -}); -*/ + geoJsonUrl: i18n.t('feature'), +}) const LayerEdit = ({ layer, addLayer, updateLayer, cancelLayer }) => { const [isValidLayer, setIsValidLayer] = useState(false) @@ -84,20 +83,15 @@ const LayerEdit = ({ layer, addLayer, updateLayer, cancelLayer }) => { return null } - // let name = layerName()[type] || layer.type; - let name = layer.type + let name = layerName()[type] || layer.type if (type === EARTH_ENGINE_LAYER) { - name = layer.name // .toLowerCase(); + name = layer.name.toLowerCase() } - /* const title = layer.id ? i18n.t('Edit {{name}} layer', { name }) - : i18n.t('Add new {{name}} layer', { name }); - */ - - const title = i18n.t('{{name}} layer', { name }) + : i18n.t('Add new {{name}} layer', { name }) return ( diff --git a/src/components/edit/geoJson/GeoJsonDialog.js b/src/components/edit/geoJson/GeoJsonDialog.js index b142bf342..359edc0da 100644 --- a/src/components/edit/geoJson/GeoJsonDialog.js +++ b/src/components/edit/geoJson/GeoJsonDialog.js @@ -1,10 +1,10 @@ -import React, { useEffect, useState } from 'react' +import i18n from '@dhis2/d2-i18n' import PropTypes from 'prop-types' +import React, { useEffect, useState } from 'react' import { connect } from 'react-redux' -import i18n from '@dhis2/d2-i18n' -import { Tab, Tabs } from '../../core' -import FeatureStyle from '../shared/FeatureStyle' import { setFeatureStyle } from '../../../actions/layerEdit' +import { Tab, Tabs } from '../../core.js' +import FeatureStyle from '../shared/FeatureStyle.js' import styles from '../styles/LayerDialog.module.css' const GeoJsonDialog = ({ diff --git a/src/components/edit/shared/FeatureStyle.js b/src/components/edit/shared/FeatureStyle.js index 8b8d3cd95..f55091ff9 100644 --- a/src/components/edit/shared/FeatureStyle.js +++ b/src/components/edit/shared/FeatureStyle.js @@ -1,9 +1,8 @@ import i18n from '@dhis2/d2-i18n' -import React, { useMemo } from 'react' import PropTypes from 'prop-types' -import { Checkbox, ColorPicker, NumberField } from '../../core' +import React, { useMemo, useEffect } from 'react' +import { Checkbox, ColorPicker, NumberField } from '../../core.js' import styles from '../styles/LayerDialog.module.css' -import { useEffect } from 'react' const FILL = 'color' const STROKE_COLOR = 'strokeColor' From 37cf5281a6770001d01f324ee4d247f4bb3e5364 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Sandvik?= Date: Wed, 18 Oct 2023 16:42:35 +0200 Subject: [PATCH 17/63] chore: localize --- i18n/en.pot | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/i18n/en.pot b/i18n/en.pot index 263c9e132..a722e4643 100644 --- a/i18n/en.pot +++ b/i18n/en.pot @@ -5,8 +5,8 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -"POT-Creation-Date: 2023-10-18T11:52:12.744Z\n" -"PO-Revision-Date: 2023-10-18T11:52:12.744Z\n" +"POT-Creation-Date: 2023-10-18T14:42:09.006Z\n" +"PO-Revision-Date: 2023-10-18T14:42:09.006Z\n" msgid "Untitled map, {{date}}" msgstr "Untitled map, {{date}}" @@ -245,15 +245,15 @@ msgstr "org unit" msgid "Earth Engine" msgstr "Earth Engine" +msgid "feature" +msgstr "feature" + msgid "Edit {{name}} layer" msgstr "Edit {{name}} layer" msgid "Add new {{name}} layer" msgstr "Add new {{name}} layer" -msgid "{{name}} layer" -msgstr "{{name}} layer" - msgid "Update layer" msgstr "Update layer" @@ -379,6 +379,18 @@ msgstr "Radius in meters" msgid "Buffer can't be combined with associated geometry." msgstr "Buffer can't be combined with associated geometry." +msgid "Fill color" +msgstr "Fill color" + +msgid "Line/stroke color" +msgstr "Line/stroke color" + +msgid "Line/stroke width" +msgstr "Line/stroke width" + +msgid "Point size" +msgstr "Point size" + msgid "Labels" msgstr "Labels" @@ -472,9 +484,6 @@ msgstr "Display Tracked Entity relationships" msgid "Tracked entity style" msgstr "Tracked entity style" -msgid "Point size" -msgstr "Point size" - msgid "Related entity style" msgstr "Related entity style" @@ -1353,15 +1362,6 @@ msgstr "" "This layer requires a Google Earth Engine account. Check the DHIS2 " "documentation for more information." -msgid "Fill color" -msgstr "Fill color" - -msgid "Stroke color" -msgstr "Stroke color" - -msgid "Stroke width" -msgstr "Stroke width" - msgid "Facility" msgstr "Facility" From 9a754c386056c88d4998e44bb088d8c80da71d2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Sandvik?= Date: Wed, 18 Oct 2023 17:03:09 +0200 Subject: [PATCH 18/63] chore: linting fixes --- src/components/app/DetailsPanel.js | 1 + src/components/datatable/DataTable.js | 2 -- src/components/edit/geoJson/GeoJsonDialog.js | 6 +++--- src/components/edit/shared/FeatureStyle.js | 5 ++--- src/components/feature/FeatureProfile.js | 10 +++++----- src/components/loaders/LayerLoader.js | 2 +- src/components/map/Map.js | 2 +- src/components/map/layers/GeoJsonLayer.js | 8 ++++---- src/loaders/geoJsonUrlLoader.js | 7 +------ src/loaders/layers.js | 17 ++++++++--------- src/reducers/featureProfile.js | 12 ++++++------ src/reducers/index.js | 2 +- 12 files changed, 33 insertions(+), 41 deletions(-) diff --git a/src/components/app/DetailsPanel.js b/src/components/app/DetailsPanel.js index f829faf78..c3b1f2f4a 100644 --- a/src/components/app/DetailsPanel.js +++ b/src/components/app/DetailsPanel.js @@ -2,6 +2,7 @@ import cx from 'classnames' import PropTypes from 'prop-types' import React from 'react' import { useSelector } from 'react-redux' +import FeatureProfile from '../feature/FeatureProfile.js' import Interpretations from '../interpretations/Interpretations.js' import OrgUnitProfile from '../orgunits/OrgUnitProfile.js' import styles from './styles/DetailsPanel.module.css' diff --git a/src/components/datatable/DataTable.js b/src/components/datatable/DataTable.js index a50e69f16..38f610a28 100644 --- a/src/components/datatable/DataTable.js +++ b/src/components/datatable/DataTable.js @@ -195,8 +195,6 @@ class DataTable extends Component { } } - onRowMouseOver = (evt) => this.highlightFeature(evt.rowData.id) - onRowMouseOut = () => this.highlightFeature() onRowMouseOver = (evt) => this.highlightFeature(evt.rowData.id) onRowMouseOut = () => this.highlightFeature() diff --git a/src/components/edit/geoJson/GeoJsonDialog.js b/src/components/edit/geoJson/GeoJsonDialog.js index 359edc0da..443a70762 100644 --- a/src/components/edit/geoJson/GeoJsonDialog.js +++ b/src/components/edit/geoJson/GeoJsonDialog.js @@ -2,8 +2,8 @@ import i18n from '@dhis2/d2-i18n' import PropTypes from 'prop-types' import React, { useEffect, useState } from 'react' import { connect } from 'react-redux' -import { setFeatureStyle } from '../../../actions/layerEdit' -import { Tab, Tabs } from '../../core.js' +import { setFeatureStyle } from '../../../actions/layerEdit.js' +import { Tab, Tabs } from '../../core/index.js' import FeatureStyle from '../shared/FeatureStyle.js' import styles from '../styles/LayerDialog.module.css' @@ -46,10 +46,10 @@ const GeoJsonDialog = ({ } GeoJsonDialog.propTypes = { - featureStyle: PropTypes.object, setFeatureStyle: PropTypes.func.isRequired, validateLayer: PropTypes.bool.isRequired, onLayerValidation: PropTypes.func.isRequired, + featureStyle: PropTypes.object, } export default connect( diff --git a/src/components/edit/shared/FeatureStyle.js b/src/components/edit/shared/FeatureStyle.js index f55091ff9..7eb393842 100644 --- a/src/components/edit/shared/FeatureStyle.js +++ b/src/components/edit/shared/FeatureStyle.js @@ -1,7 +1,7 @@ import i18n from '@dhis2/d2-i18n' import PropTypes from 'prop-types' import React, { useMemo, useEffect } from 'react' -import { Checkbox, ColorPicker, NumberField } from '../../core.js' +import { Checkbox, ColorPicker, NumberField } from '../../core/index.js' import styles from '../styles/LayerDialog.module.css' const FILL = 'color' @@ -100,9 +100,8 @@ const FeatureStyle = ({ style, onChange }) => { } FeatureStyle.propTypes = { - fields: PropTypes.array, - style: PropTypes.object, onChange: PropTypes.func.isRequired, + style: PropTypes.object, } export default FeatureStyle diff --git a/src/components/feature/FeatureProfile.js b/src/components/feature/FeatureProfile.js index d9f081809..f29434e04 100644 --- a/src/components/feature/FeatureProfile.js +++ b/src/components/feature/FeatureProfile.js @@ -1,12 +1,12 @@ -import React from 'react' -import { useSelector, useDispatch } from 'react-redux' import i18n from '@dhis2/d2-i18n' import { IconCross24 } from '@dhis2/ui' -import Drawer from '../core/Drawer' -import { closeFeatureProfile } from '../../actions/feature' +import React from 'react' +import { useSelector, useDispatch } from 'react-redux' +import { closeFeatureProfile } from '../../actions/feature.js' +import Drawer from '../core/Drawer.js' import styles from './styles/FeatureProfile.module.css' -export const FeatureProfile = () => { +const FeatureProfile = () => { const featureProfile = useSelector((state) => state.featureProfile) const dispatch = useDispatch() diff --git a/src/components/loaders/LayerLoader.js b/src/components/loaders/LayerLoader.js index 624334e7c..621fac64f 100644 --- a/src/components/loaders/LayerLoader.js +++ b/src/components/loaders/LayerLoader.js @@ -4,10 +4,10 @@ import EarthEngineLoader from './EarthEngineLoader.js' import EventLoader from './EventLoader.js' import ExternalLoader from './ExternalLoader.js' import FacilityLoader from './FacilityLoader.js' +import GeoJsonUrlLoader from './GeoJsonUrlLoader.js' import OrgUnitLoader from './OrgUnitLoader.js' import ThematicLoader from './ThematicLoader.js' import TrackedEntityLoader from './TrackedEntityLoader.js' -import GeoJsonUrlLoader from './GeoJsonUrlLoader.js' const layerType = { earthEngine: EarthEngineLoader, diff --git a/src/components/map/Map.js b/src/components/map/Map.js index f890a61be..7237e91ed 100644 --- a/src/components/map/Map.js +++ b/src/components/map/Map.js @@ -7,11 +7,11 @@ import EarthEngineLayer from './layers/earthEngine/EarthEngineLayer.js' import EventLayer from './layers/EventLayer.js' import ExternalLayer from './layers/ExternalLayer.js' import FacilityLayer from './layers/FacilityLayer.js' +import GeoJsonLayer from './layers/GeoJsonLayer.js' import Layer from './layers/Layer.js' import OrgUnitLayer from './layers/OrgUnitLayer.js' import ThematicLayer from './layers/ThematicLayer.js' import TrackedEntityLayer from './layers/TrackedEntityLayer.js' -import GeoJsonLayer from './layers/GeoJsonLayer.js' import mapApi, { controlTypes } from './MapApi.js' import Popup from './Popup.js' import styles from './styles/Map.module.css' diff --git a/src/components/map/layers/GeoJsonLayer.js b/src/components/map/layers/GeoJsonLayer.js index f5fed672a..db6d63674 100644 --- a/src/components/map/layers/GeoJsonLayer.js +++ b/src/components/map/layers/GeoJsonLayer.js @@ -1,8 +1,8 @@ import { connect } from 'react-redux' // TODO: not available in plugin -import Layer from './Layer' -import { filterData } from '../../../util/filter' -import { setFeatureProfile } from '../../../actions/feature' // TODO: not available in plugin -import { GEOJSON_LAYER } from '../../../constants/layers' +import { setFeatureProfile } from '../../../actions/feature.js' // TODO: not available in plugin +import { GEOJSON_LAYER } from '../../../constants/layers.js' +import { filterData } from '../../../util/filter.js' +import Layer from './Layer.js' class GeoJsonLayer extends Layer { createLayer() { diff --git a/src/loaders/geoJsonUrlLoader.js b/src/loaders/geoJsonUrlLoader.js index 91013de53..ca62dda22 100644 --- a/src/loaders/geoJsonUrlLoader.js +++ b/src/loaders/geoJsonUrlLoader.js @@ -1,10 +1,5 @@ -import { getInstance as getD2 } from 'd2' -import { getOrgUnitsFromRows } from '../util/analytics' -import { toGeoJson } from '../util/map' -import { getDisplayProperty } from '../util/helpers' - const geoJsonUrlLoader = async (layer) => { - const { rows, name, url, where, featureStyle } = layer + const { name, url, featureStyle } = layer const legend = { title: name, items: [] } const geoJson = await fetch(url).then((response) => response.json()) diff --git a/src/loaders/layers.js b/src/loaders/layers.js index 1fe8e7b3d..217b03b0a 100644 --- a/src/loaders/layers.js +++ b/src/loaders/layers.js @@ -1,11 +1,11 @@ -import eventLoader from './eventLoader' -import trackedEntityLoader from './trackedEntityLoader' -import facilityLoader from './facilityLoader' -import thematicLoader from './thematicLoader' -import orgUnitLoader from './orgUnitLoader' -import earthEngineLoader from './earthEngineLoader' -import externalLoader from './externalLoader' -import geoJsonUrlLoader from './geoJsonUrlLoader' +import earthEngineLoader from './earthEngineLoader.js' +import eventLoader from './eventLoader.js' +import externalLoader from './externalLoader.js' +import facilityLoader from './facilityLoader.js' +import geoJsonUrlLoader from './geoJsonUrlLoader.js' +import orgUnitLoader from './orgUnitLoader.js' +import thematicLoader from './thematicLoader.js' +import trackedEntityLoader from './trackedEntityLoader.js' const layerType = { event: eventLoader, @@ -28,7 +28,6 @@ export const fetchLayer = (config) => { config.editCounter !== undefined ? config.editCounter + 1 : 0, }) } else { - // eslint-disable-next-line console.log('Unknown layer type', config.layer, config) } } diff --git a/src/reducers/featureProfile.js b/src/reducers/featureProfile.js index f05e689e0..ef666a88e 100644 --- a/src/reducers/featureProfile.js +++ b/src/reducers/featureProfile.js @@ -1,20 +1,20 @@ -import * as types from '../constants/actionTypes'; +import * as types from '../constants/actionTypes.js' const featureProfile = (state = null, action) => { switch (action.type) { case types.FEATURE_PROFILE_SET: - return action.payload; + return action.payload case types.FEATURE_PROFILE_CLOSE: case types.ORGANISATION_UNIT_PROFILE_SET: case types.INTERPRETATIONS_PANEL_OPEN: case types.MAP_NEW: case types.MAP_SET: - return null; + return null default: - return state; + return state } -}; +} -export default featureProfile; +export default featureProfile diff --git a/src/reducers/index.js b/src/reducers/index.js index 5e8b5aafb..1b015cc76 100644 --- a/src/reducers/index.js +++ b/src/reducers/index.js @@ -6,11 +6,11 @@ import contextMenu from './contextMenu.js' import dataTable from './dataTable.js' import download from './download.js' import feature from './feature.js' +import featureProfile from './featureProfile.js' import interpretation from './interpretation.js' import layerEdit from './layerEdit.js' import layers from './layers.js' import map from './map.js' -import featureProfile from './featureProfile.js' import orgUnitProfile from './orgUnitProfile.js' import ui from './ui.js' From 39767f12c7b8f8c2fdd59ec828fde442a8ed4aa4 Mon Sep 17 00:00:00 2001 From: Jen Jones Arnesen Date: Fri, 20 Oct 2023 13:48:06 +0200 Subject: [PATCH 19/63] fix: values from number fields must be integers for the mapping engine --- src/components/edit/shared/FeatureStyle.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/edit/shared/FeatureStyle.js b/src/components/edit/shared/FeatureStyle.js index 7eb393842..bf7362dad 100644 --- a/src/components/edit/shared/FeatureStyle.js +++ b/src/components/edit/shared/FeatureStyle.js @@ -90,7 +90,9 @@ const FeatureStyle = ({ style, onChange }) => { key={id} label={label} value={style[id]} - onChange={(value) => onChange({ [id]: value })} + onChange={(value) => + onChange({ [id]: parseInt(value) }) + } className={styles.narrowField} /> ) From e67cd309956d18bd9c9b067f56faa2777e75f204 Mon Sep 17 00:00:00 2001 From: Jen Jones Arnesen Date: Fri, 20 Oct 2023 14:19:43 +0200 Subject: [PATCH 20/63] fix: use correct data type in table --- src/components/datatable/FeatureColumns.js | 10 +++++++--- src/components/edit/geoJson/GeoJsonDialog.js | 7 ++----- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/src/components/datatable/FeatureColumns.js b/src/components/datatable/FeatureColumns.js index 6dc847ac0..0b316b1ba 100644 --- a/src/components/datatable/FeatureColumns.js +++ b/src/components/datatable/FeatureColumns.js @@ -5,15 +5,19 @@ import { getPrecision } from '../../util/earthEngine.js' import { numberPrecision } from '../../util/numbers.js' import ColumnHeader from './ColumnHeader.js' +const TYPEOF_STRING = 'string' +const TYPEOF_NUMBER = 'number' +// const TYPEOF_OBJECT = 'object' + const FeatureColumns = ({ data }) => { const fields = Object.keys(data[0]).map((name) => ({ name, type: typeof data[0][name], })) - // TODO: Remove slice + // TODO: Remove slice when horizontal scrolling is supported return fields.slice(0, 10).map(({ name, type }) => { - const isString = type.includes('String') + const isString = type.includes(TYPEOF_STRING) const precision = getPrecision(data.map((d) => d[name])) const valueFormat = numberPrecision(precision) @@ -26,7 +30,7 @@ const FeatureColumns = ({ data }) => { className="right" headerRenderer={(props) => ( )} diff --git a/src/components/edit/geoJson/GeoJsonDialog.js b/src/components/edit/geoJson/GeoJsonDialog.js index 443a70762..dc9939aed 100644 --- a/src/components/edit/geoJson/GeoJsonDialog.js +++ b/src/components/edit/geoJson/GeoJsonDialog.js @@ -22,16 +22,13 @@ const GeoJsonDialog = ({ }, [validateLayer, onLayerValidation]) return ( -
+
{i18n.t('Style')}
{tab === 'style' && ( -
+
Date: Tue, 24 Oct 2023 09:15:14 +0200 Subject: [PATCH 21/63] fix: latest maps-gl with fix for line style --- package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 124445fee..0698d9ac2 100644 --- a/package.json +++ b/package.json @@ -45,7 +45,7 @@ "@dhis2/app-service-alerts": "^3.9.4", "@dhis2/app-service-datastore": "^1.0.0-beta.3", "@dhis2/d2-i18n": "^1.1.1", - "@dhis2/maps-gl": "^3.8.5", + "@dhis2/maps-gl": "^3.8.6", "@dhis2/ui": "^8.13.15", "@krakenjs/post-robot": "^11.0.0", "abortcontroller-polyfill": "^1.7.5", diff --git a/yarn.lock b/yarn.lock index eb6b06666..191bd9328 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2241,10 +2241,10 @@ markdown-it "^8.4.2" prop-types "^15.6.2" -"@dhis2/maps-gl@^3.8.5": - version "3.8.5" - resolved "https://registry.yarnpkg.com/@dhis2/maps-gl/-/maps-gl-3.8.5.tgz#0bf52902736996093dc977b55f3626ed56aacbc1" - integrity sha512-2Pi6GtfElyJ4L9Cwl/WmxV28HT9h4euZE9XH0Pt1jhGSW108knoHXymfW9jRT1ZLk8Cwi9Xlsvv7wHzJ4nSGCQ== +"@dhis2/maps-gl@^3.8.6": + version "3.8.6" + resolved "https://registry.yarnpkg.com/@dhis2/maps-gl/-/maps-gl-3.8.6.tgz#eace04fca9bb5d4cc24ca3fcebb4c13e3f8a6422" + integrity sha512-9jVfPczgT9MZrU/Cm5ksSjVnUV8/sPOdcaRVLj/nusDMOUVJ23Bt6/U6Gd6SOu/XPk8pWAi9dwyOF1p5pB8L7g== dependencies: "@mapbox/sphericalmercator" "^1.2.0" "@turf/area" "^6.5.0" From 454c39114f2d75f62a8c180223980f4f5618d36a Mon Sep 17 00:00:00 2001 From: Jen Jones Arnesen Date: Wed, 25 Oct 2023 16:34:52 +0200 Subject: [PATCH 22/63] chore: temporarily add geosjon files --- src/util/getDefaultLayerTypes.js | 42 +++++++++++++++++++++++++++++++- 1 file changed, 41 insertions(+), 1 deletion(-) diff --git a/src/util/getDefaultLayerTypes.js b/src/util/getDefaultLayerTypes.js index 65a5a448c..5a2c61c22 100644 --- a/src/util/getDefaultLayerTypes.js +++ b/src/util/getDefaultLayerTypes.js @@ -49,6 +49,46 @@ export const getDefaultLayerTypes = () => [ name: 'Settlement extents', img: 'images/featurelayer.png', opacity: 1, - url: '/temp/crosscut.geojson', + url: 'https://dhis2.github.io/maps-app/public/temp/slsettlementextents.geojson', + }, + { + // TODO: Remove this entry (only for testing) + external: true, + layer: 'geoJsonUrl', + type: 'Feature', + name: 'Africa rivers', + img: 'images/featurelayer.png', + opacity: 1, + url: 'https://dhis2.github.io/maps-app/public/temp/africarivers.geojson', + }, + { + // TODO: Remove this entry (only for testing) + external: true, + layer: 'geoJsonUrl', + type: 'Feature', + name: 'Organisation units', + img: 'images/featurelayer.png', + opacity: 1, + url: 'https://dhis2.github.io/maps-app/public/temp/orgunits.geojson', + }, + { + // TODO: Remove this entry (only for testing) + external: true, + layer: 'geoJsonUrl', + type: 'Feature', + name: 'Malaria entities', + img: 'images/featurelayer.png', + opacity: 1, + url: 'https://dhis2.github.io/maps-app/public/temp/malariaentitiespoints.geojson', + }, + { + // TODO: Remove this entry (only for testing) + external: true, + layer: 'geoJsonUrl', + type: 'Feature', + name: 'Lines and polygons', + img: 'images/featurelayer.png', + opacity: 1, + url: 'https://dhis2.github.io/maps-app/public/temp/sl_orgunits_and_rivers.geojson', }, ] From 234c5329b058c520efe140131d08e2078454a0f0 Mon Sep 17 00:00:00 2001 From: Jen Jones Arnesen Date: Wed, 25 Oct 2023 17:09:30 +0200 Subject: [PATCH 23/63] fix: cannot use <> as child of Table --- src/components/datatable/DataTable.js | 42 +++++++++++++-------------- 1 file changed, 20 insertions(+), 22 deletions(-) diff --git a/src/components/datatable/DataTable.js b/src/components/datatable/DataTable.js index 38f610a28..982247537 100644 --- a/src/components/datatable/DataTable.js +++ b/src/components/datatable/DataTable.js @@ -248,28 +248,26 @@ class DataTable extends Component { className="right" /> {!isFeatureLayer && ( - <> - ( - - )} - /> - ( - - )} - /> - + ( + + )} + /> + )} + {!isFeatureLayer && ( + ( + + )} + /> )} {isEvent && ( Date: Thu, 26 Oct 2023 08:55:16 +0200 Subject: [PATCH 24/63] chore: temporarily add new data table --- src/components/datatable/NewDataTable.js | 319 ++++++++++++++++++ src/components/datatable/NewFilterInput.js | 55 +++ .../datatable/styles/NewDataTable.module.css | 29 ++ .../styles/NewFilterInput.module.css | 7 + 4 files changed, 410 insertions(+) create mode 100644 src/components/datatable/NewDataTable.js create mode 100644 src/components/datatable/NewFilterInput.js create mode 100644 src/components/datatable/styles/NewDataTable.module.css create mode 100644 src/components/datatable/styles/NewFilterInput.module.css diff --git a/src/components/datatable/NewDataTable.js b/src/components/datatable/NewDataTable.js new file mode 100644 index 000000000..25bebee53 --- /dev/null +++ b/src/components/datatable/NewDataTable.js @@ -0,0 +1,319 @@ +import i18n from '@dhis2/d2-i18n' +import { + DataTable, + DataTableRow, + DataTableCell, + DataTableColumnHeader, + DataTableHead, + DataTableBody, +} from '@dhis2/ui' +import cx from 'classnames' +import { isValidUid } from 'd2/uid' // TODO replace +import { debounce } from 'lodash/fp' +import React, { + // useState, + useEffect, + useReducer, + useCallback, + useMemo, +} from 'react' +import { useSelector, useDispatch } from 'react-redux' +import { closeDataTable } from '../../actions/dataTable.js' +import { highlightFeature } from '../../actions/feature.js' +import { setOrgUnitProfile } from '../../actions/orgUnits.js' +import { + EVENT_LAYER, + THEMATIC_LAYER, + ORG_UNIT_LAYER, + // EARTH_ENGINE_LAYER, +} from '../../constants/layers.js' +import { numberValueTypes } from '../../constants/valueTypes.js' +import { isDarkColor } from '../../util/colors.js' +import { filterData } from '../../util/filter.js' +import FilterInput from './NewFilterInput.js' +import styles from './styles/NewDataTable.module.css' + +const ASCENDING = 'asc' +const DESCENDING = 'desc' + +const getThematicHeaders = () => [ + { name: i18n.t('Index'), dataKey: 'index' }, + { name: i18n.t('Name'), dataKey: 'name', type: TYPE_STRING }, + { name: i18n.t('Id'), dataKey: 'id', type: TYPE_STRING }, + { name: i18n.t('Value'), dataKey: 'value', type: TYPE_NUMBER }, + { name: i18n.t('Legend'), dataKey: 'legend', type: TYPE_STRING }, + { name: i18n.t('Range'), dataKey: 'range', type: TYPE_STRING }, + { name: i18n.t('Level'), dataKey: 'level', type: TYPE_NUMBER }, + { name: i18n.t('Parent'), dataKey: 'parentName', type: TYPE_STRING }, + { name: i18n.t('Type'), dataKey: 'type', type: TYPE_STRING }, + { + name: i18n.t('Color'), + dataKey: 'color', + type: TYPE_STRING, + renderer: 'rendercolor', + }, +] + +const TYPE_NUMBER = 'number' +const TYPE_STRING = 'string' +const TYPE_DATE = 'date' + +const getEventHeaders = (layer) => { + const defaultFieldsStart = [ + { name: i18n.t('Index'), dataKey: 'index' }, + { name: i18n.t('Org unit'), dataKey: 'ouname', type: TYPE_STRING }, + { name: i18n.t('Id'), dataKey: 'id', type: TYPE_STRING }, + { + name: i18n.t('Event time'), + dataKey: 'eventdate', + type: TYPE_DATE, + renderer: 'formatTime...', + }, + ] + + const { headers = [] } = layer + + const customFields = headers + .filter(({ name }) => isValidUid(name)) + .map(({ name, column, valueType }) => ({ + name: column, + dataKey: name, + type: numberValueTypes.includes(valueType) + ? TYPE_NUMBER + : TYPE_STRING, + })) + + const defaultFieldsEnd = [{ name: i18n.t('Type'), dataKey: 'type' }] + + if (layer.styleDataItem) { + defaultFieldsEnd.push({ + name: i18n.t('Color'), + dataKey: 'color', + type: TYPE_STRING, + renderer: 'rendercolor', + }) + } + + return defaultFieldsStart.concat(customFields).concat(defaultFieldsEnd) +} + +const getOrgUnitHeaders = () => [ + { name: i18n.t('Index'), dataKey: 'index' }, + { name: i18n.t('Name'), dataKey: 'name' }, + { name: i18n.t('Id'), dataKey: 'id' }, + { name: i18n.t('Value'), dataKey: 'value' }, + { name: i18n.t('Legend'), dataKey: 'legend' }, + { name: i18n.t('Range'), dataKey: 'range' }, + { name: i18n.t('Level'), dataKey: 'level' }, + { name: i18n.t('Parent'), dataKey: 'parentName' }, + { name: i18n.t('Type'), dataKey: 'type' }, + { name: i18n.t('Color'), dataKey: 'color' }, +] + +const getHeaders = (layer, styleDataItem) => { + if (layer.layer === THEMATIC_LAYER) { + return getThematicHeaders() + } else if (layer.layer === EVENT_LAYER) { + return getEventHeaders(layer, styleDataItem) + } else if (layer.layer === ORG_UNIT_LAYER) { + return getOrgUnitHeaders(layer, styleDataItem) + } + // else if (layer.layer === EARTH_ENGINE_LAYER) { + // } +} + +const EMPTY_AGGREGATIONS = {} + +const Table = () => { + const { mapViews } = useSelector((state) => state.map) + const activeLayerId = useSelector((state) => state.dataTable) + const allAggregations = useSelector((state) => state.aggregations) + const dispatch = useDispatch() + const feature = useSelector((state) => state.feature) + const [{ sortField, sortDirection }, setSorting] = useReducer( + (sorting, newSorting) => ({ ...sorting, ...newSorting }), + { + sortField: 'name', + sortDirection: ASCENDING, + } + ) + + const layer = mapViews.find((l) => l.id === activeLayerId) + const aggregations = allAggregations[layer.id] || EMPTY_AGGREGATIONS + + const rows = useMemo(() => { + if (!layer) { + return [] + } + + const { data, dataFilters } = layer + + const indexedData = data + .map((d, i) => ({ + index: i, + ...d, + })) + .filter((d) => !d.properties.hasAdditionalGeometry) + .map((d, i) => ({ + ...(d.properties || d), + ...aggregations[d.id], + index: d.index, + i, + })) + + const filteredData = filterData(indexedData, dataFilters) + + //sort + filteredData.sort((a, b) => { + a = a[sortField] + b = b[sortField] + + if (typeof a === TYPE_NUMBER) { + return sortDirection === ASCENDING ? a - b : b - a + } + // TODO: Make sure sorting works across different locales - use lib method + if (a !== undefined) { + return sortDirection === ASCENDING + ? a.localeCompare(b) + : b.localeCompare(a) + } + + return 0 + }) + + return filteredData.map((item) => + getHeaders(layer).map(({ dataKey }) => ({ + value: item[dataKey], + dataKey, + })) + ) + }, [layer, aggregations, sortField, sortDirection]) + + useEffect(() => { + // TODO - improve and test + if (rows !== null && !rows.length) { + dispatch(closeDataTable()) + } + }, [rows, dispatch]) + + const sortData = useCallback( + ({ name }) => { + setSorting({ + sortField: name, + sortDirection: + sortDirection === ASCENDING ? DESCENDING : ASCENDING, + }) + }, + [sortDirection] + ) + + if (layer.serverCluster) { + return ( +
+ {i18n.t( + 'Data table is not supported when events are grouped on the server.' + )} +
+ ) + } + + const onTableRowClick = (row) => { + const id = row.find((r) => r.dataKey === 'id')?.value + id && dispatch(setOrgUnitProfile(id)) + } + + //TODO + // Debounce needed as event is triggered multiple times for the same row + const highlightMapFeature = debounce(50, (id) => { + if (!id || !feature || id !== feature.id) { + dispatch( + highlightFeature( + id + ? { + id, + layerId: layer.id, + origin: 'table', + } + : null + ) + ) + } + }) + + // TODO - need this implemented in ui + // const onMouseOver = (row) => console.log('row', row) + // const onRowMouseOut = () => highlightMapFeature() + + return ( + + + + {getHeaders(layer).map(({ name, dataKey, type }, index) => ( + + ) + } + > + {name} + + ))} + + + + {rows.map((row, index) => ( + onMouseOver(row)} + > + {row.map(({ dataKey, value }) => ( + onTableRowClick(row)} + > + {dataKey === 'color' + ? value?.toLowerCase() + : value} + + ))} + + ))} + + + ) +} + +export default Table diff --git a/src/components/datatable/NewFilterInput.js b/src/components/datatable/NewFilterInput.js new file mode 100644 index 000000000..55d3b1ff8 --- /dev/null +++ b/src/components/datatable/NewFilterInput.js @@ -0,0 +1,55 @@ +import i18n from '@dhis2/d2-i18n' +import PropTypes from 'prop-types' +import React from 'react' +import { useDispatch, useSelector } from 'react-redux' +import { setDataFilter, clearDataFilter } from '../../actions/dataFilters.js' +import styles from './styles/NewFilterInput.module.css' + +// http://adazzle.github.io/react-data-grid/examples.html#/custom-filters +// https://github.com/adazzle/react-data-grid/tree/master/packages/react-data-grid-addons/src/cells/headerCells/filters +const FilterInput = ({ type, dataKey }) => { + const dispatch = useDispatch() + const dataTable = useSelector((state) => state.dataTable) + const map = useSelector((state) => state.map) + + const overlay = + dataTable && map.mapViews.filter((layer) => layer.id === dataTable)[0] + + let layerId + let filters + if (overlay) { + layerId = overlay.id + filters = overlay.dataFilters || {} + } + + const filterValue = filters[dataKey] || '' + + // https://stackoverflow.com/questions/36683770/react-how-to-get-the-value-of-an-input-field + const onChange = (evt) => { + const value = evt.target.value + + if (value !== '') { + dispatch(setDataFilter(layerId, dataKey, value)) + } else { + dispatch(clearDataFilter(layerId, dataKey, value)) + } + } + + // TODO: Support more field types + return ( + 3&<8' : i18n.t('Search')} + value={filterValue} + onClick={(evt) => evt.stopPropagation()} + onChange={onChange} + /> + ) +} + +FilterInput.propTypes = { + dataKey: PropTypes.string.isRequired, + type: PropTypes.string.isRequired, +} + +export default FilterInput diff --git a/src/components/datatable/styles/NewDataTable.module.css b/src/components/datatable/styles/NewDataTable.module.css new file mode 100644 index 000000000..5aa509a4d --- /dev/null +++ b/src/components/datatable/styles/NewDataTable.module.css @@ -0,0 +1,29 @@ +td.sizeClass { + padding: 7px 5px; +} + +td.fontClass { + font-size: 11px; +} + +td.darkText { + color: var(--colors-white); +} + +/* Hide the filter icon */ +.columnHeader > span > span > button:last-of-type { + visibility: hidden; +} + + +/* TODO */ +.noSupport { + position: absolute; + top: 50%; + left: 50%; + transform: translateX(-50%) translateY(-50%); + color: #333; + font-style: italic; + line-height: 30px; +} + diff --git a/src/components/datatable/styles/NewFilterInput.module.css b/src/components/datatable/styles/NewFilterInput.module.css new file mode 100644 index 000000000..773c179ef --- /dev/null +++ b/src/components/datatable/styles/NewFilterInput.module.css @@ -0,0 +1,7 @@ +.filterInput { + width: 100%; +} + +.filterInput::placeholder { + color: #ddd; +} From c6003863b71e33841dbd3b6d4aa0c0b0266a0d93 Mon Sep 17 00:00:00 2001 From: Jen Jones Arnesen Date: Mon, 30 Oct 2023 12:01:10 +0100 Subject: [PATCH 25/63] chore: use the external layer config from extermalMapLayers api --- i18n/en.pot | 10 +++- src/loaders/externalLoader.js | 2 +- src/loaders/geoJsonUrlLoader.js | 15 ++++- src/reducers/map.js | 2 +- src/util/app.js | 1 + src/util/external.js | 13 ++-- src/util/getDefaultLayerTypes.js | 100 +++++++++++++++---------------- 7 files changed, 82 insertions(+), 61 deletions(-) diff --git a/i18n/en.pot b/i18n/en.pot index a432b87ff..6492c5c8b 100644 --- a/i18n/en.pot +++ b/i18n/en.pot @@ -5,8 +5,8 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -"POT-Creation-Date: 2023-10-18T14:42:09.006Z\n" -"PO-Revision-Date: 2023-10-18T14:42:09.006Z\n" +"POT-Creation-Date: 2023-10-27T09:23:01.556Z\n" +"PO-Revision-Date: 2023-10-27T09:23:01.556Z\n" msgid "Untitled map, {{date}}" msgstr "Untitled map, {{date}}" @@ -161,6 +161,12 @@ msgstr "Type" msgid "Data table is not supported when events are grouped on the server." msgstr "Data table is not supported when events are grouped on the server." +msgid "Sort by {{column}}" +msgstr "Sort by {{column}}" + +msgid "Search" +msgstr "Search" + msgid "Items" msgstr "Items" diff --git a/src/loaders/externalLoader.js b/src/loaders/externalLoader.js index 36ef44572..8c06e7702 100644 --- a/src/loaders/externalLoader.js +++ b/src/loaders/externalLoader.js @@ -9,7 +9,7 @@ const externalLoader = async (layer) => { // External layer is loaded in analytical object config = await parseLayerConfig(config) } else { - delete layer.id + // delete layer.id } const { name, legendSet, legendSetUrl } = config diff --git a/src/loaders/geoJsonUrlLoader.js b/src/loaders/geoJsonUrlLoader.js index ca62dda22..4e582833c 100644 --- a/src/loaders/geoJsonUrlLoader.js +++ b/src/loaders/geoJsonUrlLoader.js @@ -1,20 +1,29 @@ const geoJsonUrlLoader = async (layer) => { - const { name, url, featureStyle } = layer - const legend = { title: name, items: [] } + const { name, featureStyle = {}, config } = layer - const geoJson = await fetch(url).then((response) => response.json()) + const geoJson = await fetch(config.url).then((response) => response.json()) + const legend = { title: name, items: [] } legend.items.push({ name: 'Feature', ...featureStyle, fillColor: featureStyle.color, }) + const newConfig = layer.config + ? { ...layer.config } + : { + url: layer.url, + featureStyle: layer.featureStyle, + name: layer.name, + } + return { ...layer, name, legend, data: geoJson?.features, + config: newConfig, isLoaded: true, isExpanded: true, isVisible: true, diff --git a/src/reducers/map.js b/src/reducers/map.js index 617971fda..48e843663 100644 --- a/src/reducers/map.js +++ b/src/reducers/map.js @@ -214,8 +214,8 @@ const map = (state = defaultState, action) => { mapViews: [ ...state.mapViews, { - id: generateUid(), ...action.payload, + id: generateUid(), }, ], newLayerIsLoading: false, diff --git a/src/util/app.js b/src/util/app.js index 2687f147e..5437ba7c3 100644 --- a/src/util/app.js +++ b/src/util/app.js @@ -48,6 +48,7 @@ const getBasemapList = (externalMapLayers, systemSettings) => { .concat(externalBasemaps) } +// TODO ask Bjorn if we should check layer.config.type against MapApi.layerTypes const getLayerTypes = (externalMapLayers) => { const externalLayerTypes = externalMapLayers .filter((layer) => layer.mapLayerPosition !== 'BASEMAP') diff --git a/src/util/external.js b/src/util/external.js index a19269bb5..8059cf133 100644 --- a/src/util/external.js +++ b/src/util/external.js @@ -3,6 +3,8 @@ import { TILE_LAYER, WMS_LAYER, VECTOR_STYLE, + GEOJSON_URL_LAYER, + GEOJSON_LAYER, } from '../constants/layers.js' import { getExternalLayer } from './requests.js' @@ -10,25 +12,29 @@ const MAP_SERVICE_WMS = 'WMS' const MAP_SERVICE_TMS = 'TMS' const MAP_SERVICE_XYZ = 'XYZ' const MAP_SERVICE_VECTOR_STYLE = 'VECTOR_STYLE' +const MAP_SERVICE_GEOJSON_URL = 'GEOJSON_URL' const mapServiceToTypeMap = { [MAP_SERVICE_WMS]: WMS_LAYER, [MAP_SERVICE_XYZ]: TILE_LAYER, [MAP_SERVICE_TMS]: TILE_LAYER, [MAP_SERVICE_VECTOR_STYLE]: VECTOR_STYLE, + [MAP_SERVICE_GEOJSON_URL]: GEOJSON_LAYER, } // Create external layer from a model export const createExternalLayer = (model) => ({ - layer: EXTERNAL_LAYER, - id: model.id, + layer: + model.mapService === MAP_SERVICE_GEOJSON_URL + ? GEOJSON_URL_LAYER + : EXTERNAL_LAYER, name: model.name, opacity: 1, config: createExternalLayerConfig(model), }) // Create external layer config -export const createExternalLayerConfig = (model) => { +const createExternalLayerConfig = (model) => { const { id, name, @@ -42,7 +48,6 @@ export const createExternalLayerConfig = (model) => { } = model const type = mapServiceToTypeMap[mapService] - const format = imageFormat === 'JPG' ? 'image/jpeg' : 'image/png' const tms = mapService === MAP_SERVICE_TMS diff --git a/src/util/getDefaultLayerTypes.js b/src/util/getDefaultLayerTypes.js index 5a2c61c22..2ab03b82c 100644 --- a/src/util/getDefaultLayerTypes.js +++ b/src/util/getDefaultLayerTypes.js @@ -41,54 +41,54 @@ export const getDefaultLayerTypes = () => [ opacity: 1, }, ...earthEngineLayers().filter((l) => !l.legacy), - { - // TODO: Remove this entry (only for testing) - external: true, - layer: 'geoJsonUrl', - type: 'Feature', - name: 'Settlement extents', - img: 'images/featurelayer.png', - opacity: 1, - url: 'https://dhis2.github.io/maps-app/public/temp/slsettlementextents.geojson', - }, - { - // TODO: Remove this entry (only for testing) - external: true, - layer: 'geoJsonUrl', - type: 'Feature', - name: 'Africa rivers', - img: 'images/featurelayer.png', - opacity: 1, - url: 'https://dhis2.github.io/maps-app/public/temp/africarivers.geojson', - }, - { - // TODO: Remove this entry (only for testing) - external: true, - layer: 'geoJsonUrl', - type: 'Feature', - name: 'Organisation units', - img: 'images/featurelayer.png', - opacity: 1, - url: 'https://dhis2.github.io/maps-app/public/temp/orgunits.geojson', - }, - { - // TODO: Remove this entry (only for testing) - external: true, - layer: 'geoJsonUrl', - type: 'Feature', - name: 'Malaria entities', - img: 'images/featurelayer.png', - opacity: 1, - url: 'https://dhis2.github.io/maps-app/public/temp/malariaentitiespoints.geojson', - }, - { - // TODO: Remove this entry (only for testing) - external: true, - layer: 'geoJsonUrl', - type: 'Feature', - name: 'Lines and polygons', - img: 'images/featurelayer.png', - opacity: 1, - url: 'https://dhis2.github.io/maps-app/public/temp/sl_orgunits_and_rivers.geojson', - }, + // { + // // TODO: Remove this entry (only for testing) + // external: true, + // layer: 'geoJsonUrl', + // type: 'Feature', + // name: 'Settlement extents', + // img: 'images/featurelayer.png', + // opacity: 1, + // url: 'https://dhis2.github.io/maps-app/public/temp/slsettlementextents.geojson', + // }, + // { + // // TODO: Remove this entry (only for testing) + // external: true, + // layer: 'geoJsonUrl', + // type: 'Feature', + // name: 'Africa rivers', + // img: 'images/featurelayer.png', + // opacity: 1, + // url: 'https://dhis2.github.io/maps-app/public/temp/africarivers.geojson', + // }, + // { + // // TODO: Remove this entry (only for testing) + // external: true, + // layer: 'geoJsonUrl', + // type: 'Feature', + // name: 'Organisation units', + // img: 'images/featurelayer.png', + // opacity: 1, + // url: 'https://dhis2.github.io/maps-app/public/temp/orgunits.geojson', + // }, + // { + // // TODO: Remove this entry (only for testing) + // external: true, + // layer: 'geoJsonUrl', + // type: 'Feature', + // name: 'Malaria entities', + // img: 'images/featurelayer.png', + // opacity: 1, + // url: 'https://dhis2.github.io/maps-app/public/temp/malariaentitiespoints.geojson', + // }, + // { + // // TODO: Remove this entry (only for testing) + // external: true, + // layer: 'geoJsonUrl', + // type: 'Feature', + // name: 'Lines and polygons', + // img: 'images/featurelayer.png', + // opacity: 1, + // url: 'https://dhis2.github.io/maps-app/public/temp/sl_orgunits_and_rivers.geojson', + // }, ] From fd984965343b8a79b49dfb0c816c61125fc9b9b8 Mon Sep 17 00:00:00 2001 From: Jen Jones Arnesen Date: Mon, 30 Oct 2023 15:48:39 +0100 Subject: [PATCH 26/63] chore: need to preserve id when its a basemap --- src/util/app.js | 4 ++-- src/util/external.js | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/util/app.js b/src/util/app.js index 5437ba7c3..fcf1a6f01 100644 --- a/src/util/app.js +++ b/src/util/app.js @@ -29,7 +29,7 @@ export const appQueries = { const getBasemapList = (externalMapLayers, systemSettings) => { const externalBasemaps = externalMapLayers .filter((layer) => layer.mapLayerPosition === 'BASEMAP') - .map(createExternalLayer) + .map((layer) => createExternalLayer(layer, true)) .filter((basemap) => layerTypes.includes(basemap.config.type)) return defaultBasemaps() @@ -52,7 +52,7 @@ const getBasemapList = (externalMapLayers, systemSettings) => { const getLayerTypes = (externalMapLayers) => { const externalLayerTypes = externalMapLayers .filter((layer) => layer.mapLayerPosition !== 'BASEMAP') - .map(createExternalLayer) + .map((layer) => createExternalLayer(layer, false)) return getDefaultLayerTypes().concat(externalLayerTypes) } diff --git a/src/util/external.js b/src/util/external.js index 8059cf133..27c3a4e05 100644 --- a/src/util/external.js +++ b/src/util/external.js @@ -23,11 +23,12 @@ const mapServiceToTypeMap = { } // Create external layer from a model -export const createExternalLayer = (model) => ({ +export const createExternalLayer = (model, forBasemap) => ({ layer: model.mapService === MAP_SERVICE_GEOJSON_URL ? GEOJSON_URL_LAYER : EXTERNAL_LAYER, + id: forBasemap ? model.id : undefined, name: model.name, opacity: 1, config: createExternalLayerConfig(model), From 2b2d640191e58c9134bdb9b32651279f07e7a026 Mon Sep 17 00:00:00 2001 From: Jen Jones Arnesen Date: Mon, 30 Oct 2023 15:51:06 +0100 Subject: [PATCH 27/63] fix: manage the feature style for saved and new maps --- src/components/map/layers/GeoJsonLayer.js | 9 +++++- src/loaders/geoJsonUrlLoader.js | 35 ++++++++++++++++------- src/util/external.js | 3 +- 3 files changed, 34 insertions(+), 13 deletions(-) diff --git a/src/components/map/layers/GeoJsonLayer.js b/src/components/map/layers/GeoJsonLayer.js index db6d63674..8afa2d216 100644 --- a/src/components/map/layers/GeoJsonLayer.js +++ b/src/components/map/layers/GeoJsonLayer.js @@ -14,11 +14,18 @@ class GeoJsonLayer extends Layer { data, dataFilters, featureStyle, + config, } = this.props + const { map } = this.context const filteredData = filterData(data, dataFilters) + const style = + Object.keys(featureStyle).length > 0 + ? featureStyle + : config.featureStyle + this.layer = map.createLayer({ type: GEOJSON_LAYER, id, @@ -26,7 +33,7 @@ class GeoJsonLayer extends Layer { opacity, isVisible, data: filteredData, - style: featureStyle, + style, onClick: this.onFeatureClick.bind(this), }) diff --git a/src/loaders/geoJsonUrlLoader.js b/src/loaders/geoJsonUrlLoader.js index 4e582833c..e167bf1b3 100644 --- a/src/loaders/geoJsonUrlLoader.js +++ b/src/loaders/geoJsonUrlLoader.js @@ -1,29 +1,42 @@ +import { parseLayerConfig } from '../util/external.js' + const geoJsonUrlLoader = async (layer) => { - const { name, featureStyle = {}, config } = layer + const { name, config } = layer + + let newConfig + if (typeof config === 'string') { + // External layer is loaded in analytical object + newConfig = await parseLayerConfig(config) + } else { + newConfig = { ...config } + } - const geoJson = await fetch(config.url).then((response) => response.json()) + // TODO - keep the config updated with the latest featureStyle - clean this up + const featureStyle = layer.featureStyle + ? { ...layer.featureStyle } + : { ...newConfig.featureStyle } || {} + + newConfig.featureStyle = featureStyle + + const geoJson = await fetch(newConfig.url).then((response) => + response.json() + ) const legend = { title: name, items: [] } legend.items.push({ name: 'Feature', ...featureStyle, - fillColor: featureStyle.color, + color: featureStyle.strokeColor, + weight: featureStyle.weight, }) - const newConfig = layer.config - ? { ...layer.config } - : { - url: layer.url, - featureStyle: layer.featureStyle, - name: layer.name, - } - return { ...layer, name, legend, data: geoJson?.features, config: newConfig, + featureStyle, isLoaded: true, isExpanded: true, isVisible: true, diff --git a/src/util/external.js b/src/util/external.js index 27c3a4e05..b1608d1fb 100644 --- a/src/util/external.js +++ b/src/util/external.js @@ -81,7 +81,8 @@ export const parseLayerConfig = async (layerConfig) => { if (config.id) { try { const layer = await getExternalLayer(config.id) - return createExternalLayerConfig(layer) + const newConfig = createExternalLayerConfig(layer) + newConfig.featureStyle = { ...config.featureStyle } } catch (evt) { return config } From ad33f7e0722e77a896faff1b22dc6547fdbb750c Mon Sep 17 00:00:00 2001 From: Jen Jones Arnesen Date: Wed, 1 Nov 2023 08:24:12 +0100 Subject: [PATCH 28/63] chore: keep featureStyle out of config while in app --- src/components/app/FileMenu.js | 14 ++++++++++++++ src/loaders/geoJsonUrlLoader.js | 13 ++++++------- 2 files changed, 20 insertions(+), 7 deletions(-) diff --git a/src/components/app/FileMenu.js b/src/components/app/FileMenu.js index 65dca2f30..945d48056 100644 --- a/src/components/app/FileMenu.js +++ b/src/components/app/FileMenu.js @@ -92,6 +92,13 @@ const FileMenu = ({ onFileMenuAction }) => { }) const saveMap = async () => { + if (map.mapViews) { + map.mapViews.forEach((view) => { + if (view.featureStyle) { + view.config.featureStyle = { ...view.featureStyle } // TODO or default featureStyle + } + }) + } const config = cleanMapConfig({ config: map, defaultBasemapId: defaultBasemap, @@ -130,6 +137,13 @@ const FileMenu = ({ onFileMenuAction }) => { } const saveAsNewMap = async ({ name, description }) => { + if (map.mapViews) { + map.mapViews.forEach((view) => { + if (view.featureStyle) { + view.config.featureStyle = { ...view.featureStyle } // TODO or default featureStyle + } + }) + } const config = { ...cleanMapConfig({ config: map, diff --git a/src/loaders/geoJsonUrlLoader.js b/src/loaders/geoJsonUrlLoader.js index e167bf1b3..ab563dd1a 100644 --- a/src/loaders/geoJsonUrlLoader.js +++ b/src/loaders/geoJsonUrlLoader.js @@ -1,23 +1,22 @@ import { parseLayerConfig } from '../util/external.js' +const EMPTY_FEATURE_STYLE = {} const geoJsonUrlLoader = async (layer) => { const { name, config } = layer let newConfig + let featureStyle + // keep featureStyle property outside of config while in app if (typeof config === 'string') { // External layer is loaded in analytical object newConfig = await parseLayerConfig(config) + featureStyle = { ...newConfig.featureStyle } || EMPTY_FEATURE_STYLE + delete newConfig.featureStyle } else { newConfig = { ...config } + featureStyle = layer.featureStyle || EMPTY_FEATURE_STYLE } - // TODO - keep the config updated with the latest featureStyle - clean this up - const featureStyle = layer.featureStyle - ? { ...layer.featureStyle } - : { ...newConfig.featureStyle } || {} - - newConfig.featureStyle = featureStyle - const geoJson = await fetch(newConfig.url).then((response) => response.json() ) From fb648523b08c101efb1ebcf86410975415b8e3b1 Mon Sep 17 00:00:00 2001 From: Jen Jones Arnesen Date: Mon, 6 Nov 2023 11:07:18 +0100 Subject: [PATCH 29/63] chore: remove commented code --- src/util/getDefaultLayerTypes.js | 50 -------------------------------- 1 file changed, 50 deletions(-) diff --git a/src/util/getDefaultLayerTypes.js b/src/util/getDefaultLayerTypes.js index 2ab03b82c..836c449b6 100644 --- a/src/util/getDefaultLayerTypes.js +++ b/src/util/getDefaultLayerTypes.js @@ -41,54 +41,4 @@ export const getDefaultLayerTypes = () => [ opacity: 1, }, ...earthEngineLayers().filter((l) => !l.legacy), - // { - // // TODO: Remove this entry (only for testing) - // external: true, - // layer: 'geoJsonUrl', - // type: 'Feature', - // name: 'Settlement extents', - // img: 'images/featurelayer.png', - // opacity: 1, - // url: 'https://dhis2.github.io/maps-app/public/temp/slsettlementextents.geojson', - // }, - // { - // // TODO: Remove this entry (only for testing) - // external: true, - // layer: 'geoJsonUrl', - // type: 'Feature', - // name: 'Africa rivers', - // img: 'images/featurelayer.png', - // opacity: 1, - // url: 'https://dhis2.github.io/maps-app/public/temp/africarivers.geojson', - // }, - // { - // // TODO: Remove this entry (only for testing) - // external: true, - // layer: 'geoJsonUrl', - // type: 'Feature', - // name: 'Organisation units', - // img: 'images/featurelayer.png', - // opacity: 1, - // url: 'https://dhis2.github.io/maps-app/public/temp/orgunits.geojson', - // }, - // { - // // TODO: Remove this entry (only for testing) - // external: true, - // layer: 'geoJsonUrl', - // type: 'Feature', - // name: 'Malaria entities', - // img: 'images/featurelayer.png', - // opacity: 1, - // url: 'https://dhis2.github.io/maps-app/public/temp/malariaentitiespoints.geojson', - // }, - // { - // // TODO: Remove this entry (only for testing) - // external: true, - // layer: 'geoJsonUrl', - // type: 'Feature', - // name: 'Lines and polygons', - // img: 'images/featurelayer.png', - // opacity: 1, - // url: 'https://dhis2.github.io/maps-app/public/temp/sl_orgunits_and_rivers.geojson', - // }, ] From 54bd94cb53188141407a041fe30c025b137c1a7e Mon Sep 17 00:00:00 2001 From: Jen Jones Arnesen Date: Mon, 6 Nov 2023 11:15:19 +0100 Subject: [PATCH 30/63] chore: remove temp geojson file - all in gh-pages now --- public/temp/crosscut.geojson | 113037 -------------------------------- 1 file changed, 113037 deletions(-) delete mode 100644 public/temp/crosscut.geojson diff --git a/public/temp/crosscut.geojson b/public/temp/crosscut.geojson deleted file mode 100644 index 749df6223..000000000 --- a/public/temp/crosscut.geojson +++ /dev/null @@ -1,113037 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "geometry": { - "coordinates": [ - [ - [-12.964299, 9.049299], - [-12.959499, 9.043199], - [-12.9554, 9.035099], - [-12.9549, 9.031], - [-12.956, 9.0271], - [-12.960499, 9.0214], - [-12.961799, 9.0181], - [-12.960999, 9.0145], - [-12.957899, 9.0128], - [-12.9509, 9.0128], - [-12.948059, 9.012205], - [-12.947811, 9.013074], - [-12.947232, 9.012923], - [-12.946862, 9.013994], - [-12.946576, 9.014655], - [-12.946731, 9.014775], - [-12.947335, 9.014685], - [-12.947336, 9.014686], - [-12.947319, 9.014761], - [-12.947574, 9.014757], - [-12.947889, 9.015128], - [-12.947727, 9.015604], - [-12.947079, 9.017402], - [-12.947782, 9.018534], - [-12.947854, 9.018667], - [-12.948436, 9.019565], - [-12.94903, 9.021606], - [-12.949816, 9.022341], - [-12.950104, 9.024036], - [-12.950096, 9.025225], - [-12.950281, 9.027099], - [-12.951195, 9.027801], - [-12.95236, 9.02912], - [-12.953258, 9.031575], - [-12.952471, 9.033629], - [-12.952949, 9.034135], - [-12.953469, 9.036098], - [-12.954116, 9.037412], - [-12.954184, 9.037488], - [-12.954089, 9.038364], - [-12.95286, 9.03911], - [-12.953043, 9.040479], - [-12.953071, 9.04277], - [-12.952919, 9.044011], - [-12.953078, 9.045401], - [-12.952817, 9.046424], - [-12.952938, 9.046639], - [-12.952935, 9.047874], - [-12.952616, 9.049431], - [-12.951753, 9.051451], - [-12.950821, 9.052177], - [-12.949387, 9.054063], - [-12.948823, 9.055492], - [-12.948545, 9.057833], - [-12.948812, 9.059376], - [-12.949466, 9.060978], - [-12.949845, 9.062829], - [-12.951304, 9.064954], - [-12.954099, 9.061], - [-12.956, 9.057199], - [-12.958699, 9.0539], - [-12.964299, 9.049299] - ] - ], - "type": "Polygon" - }, - "id": 1, - "properties": { - "cc:admin:id": ["82"], - "cc:oBld:total": 268, - "cc:pop:fifteen-to-twenty-four": 673.2625491203976, - "cc:pop:grid3-total": 1783.659337739615, - "cc:pop:kontur-total": 1106.5383058162265, - "cc:pop:men": 1705.0482254426172, - "cc:pop:sixty-plus": 235.2289935211035, - "cc:pop:total": 3590.7713851615677, - "cc:pop:under-five": 575.5832922647744, - "cc:pop:women": 1885.7231597189505, - "cc:pop:women-fiften-to-forty-nine": 910.3789130191979, - "cc:pop:wp-total": 2492.367962109402, - "cc:pop:wp-total-UN": 2890.0938374774287, - "cc:id": "1", - "cc:Name": "Ahamadyya Mission Cl", - "cc:site": [-12.9487, 9.0131], - "user:parentName": "Magbema", - "user:code": "OU_211234", - "user:orgUnitId": "plnHVbJR6p4", - "user:level": "4", - "user:parentId": "QywkxFudXrC" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.291658, 8.49354], - [-12.291028, 8.492965], - [-12.290589, 8.491391], - [-12.289194, 8.490323], - [-12.286647, 8.489239], - [-12.286032, 8.488831], - [-12.285699, 8.488426], - [-12.28464, 8.487727], - [-12.285139, 8.485598], - [-12.285545, 8.484614], - [-12.282729, 8.481477], - [-12.281767, 8.479469], - [-12.281757, 8.479187], - [-12.277197, 8.477346], - [-12.276058, 8.477132], - [-12.275528, 8.477089], - [-12.274899, 8.477089], - [-12.274531, 8.477121], - [-12.274327, 8.477139], - [-12.273613, 8.477235], - [-12.272381, 8.477453], - [-12.271185, 8.477436], - [-12.270547, 8.477221], - [-12.270291, 8.476854], - [-12.27043, 8.476201], - [-12.270435, 8.475486], - [-12.269684, 8.474684], - [-12.269153, 8.474361], - [-12.26875, 8.474381], - [-12.26875, 8.472968], - [-12.269367, 8.472296], - [-12.269437, 8.472016], - [-12.269062, 8.471256], - [-12.269035, 8.470292], - [-12.268027, 8.469866], - [-12.267834, 8.469267], - [-12.267908, 8.468764], - [-12.267656, 8.468461], - [-12.267217, 8.46844], - [-12.266021, 8.469697], - [-12.265125, 8.470206], - [-12.263339, 8.470721], - [-12.262298, 8.47164], - [-12.26182, 8.472497], - [-12.261649, 8.472449], - [-12.261249, 8.471249], - [-12.258749, 8.46875], - [-12.255417, 8.467916], - [-12.256249, 8.465417], - [-12.254582, 8.46375], - [-12.250986, 8.464349], - [-12.250254, 8.463647], - [-12.249611, 8.462888], - [-12.248749, 8.463749], - [-12.243749, 8.462083], - [-12.242083, 8.460416], - [-12.242916, 8.457084], - [-12.242917, 8.454584], - [-12.242082, 8.452917], - [-12.240416, 8.452917], - [-12.235416, 8.453749], - [-12.234583, 8.452083], - [-12.234582, 8.449584], - [-12.233327, 8.447073], - [-12.228861, 8.449885], - [-12.227345, 8.451365], - [-12.226593, 8.452387], - [-12.223749, 8.45125], - [-12.22125, 8.452083], - [-12.214583, 8.44875], - [-12.213749, 8.44375], - [-12.213536, 8.443964], - [-12.21355, 8.444594], - [-12.211663, 8.444526], - [-12.211716, 8.445544], - [-12.211809, 8.44569], - [-12.20875, 8.448749], - [-12.205417, 8.449583], - [-12.203749, 8.442917], - [-12.201249, 8.443749], - [-12.197083, 8.442917], - [-12.196402, 8.441555], - [-12.196639, 8.440719], - [-12.197521, 8.437388], - [-12.196419, 8.430241], - [-12.194132, 8.429961], - [-12.191205, 8.428662], - [-12.18644, 8.42739], - [-12.187082, 8.431249], - [-12.187082, 8.43375], - [-12.185416, 8.434583], - [-12.180192, 8.435236], - [-12.180191, 8.435235], - [-12.180216, 8.434706], - [-12.179881, 8.434465], - [-12.177916, 8.437083], - [-12.169583, 8.437084], - [-12.168749, 8.438749], - [-12.16625, 8.43875], - [-12.16125, 8.44125], - [-12.161249, 8.442084], - [-12.15625, 8.448749], - [-12.168749, 8.451249], - [-12.169583, 8.45125], - [-12.172572, 8.460219], - [-12.172571, 8.46022], - [-12.172456, 8.46024], - [-12.172917, 8.462083], - [-12.175416, 8.462084], - [-12.175417, 8.472083], - [-12.184582, 8.47125], - [-12.184926, 8.471421], - [-12.185402, 8.470826], - [-12.18625, 8.47125], - [-12.188336, 8.476119], - [-12.187498, 8.476564], - [-12.181893, 8.480029], - [-12.180799, 8.482011], - [-12.178289, 8.483191], - [-12.177917, 8.48375], - [-12.177917, 8.488749], - [-12.180416, 8.488749], - [-12.187081, 8.482918], - [-12.187083, 8.482918], - [-12.187916, 8.492083], - [-12.188749, 8.495416], - [-12.188975, 8.495867], - [-12.188451, 8.496668], - [-12.187784, 8.498948], - [-12.18787, 8.500109], - [-12.187584, 8.502712], - [-12.186967, 8.503915], - [-12.186671, 8.504861], - [-12.186676, 8.505008], - [-12.187917, 8.506249], - [-12.190417, 8.50625], - [-12.19625, 8.517083], - [-12.202083, 8.514584], - [-12.206363, 8.514584], - [-12.206548, 8.515187], - [-12.20745, 8.517054], - [-12.207575, 8.517444], - [-12.215416, 8.519583], - [-12.217082, 8.519584], - [-12.219583, 8.522916], - [-12.223749, 8.522916], - [-12.22375, 8.512916], - [-12.228229, 8.511637], - [-12.229098, 8.512545], - [-12.229693, 8.512806], - [-12.232083, 8.510416], - [-12.235416, 8.509584], - [-12.23625, 8.509583], - [-12.242916, 8.508749], - [-12.242917, 8.507083], - [-12.24375, 8.506249], - [-12.247916, 8.502916], - [-12.247917, 8.500416], - [-12.25125, 8.49875], - [-12.253378, 8.499282], - [-12.253267, 8.499525], - [-12.253185, 8.499766], - [-12.257082, 8.500416], - [-12.255418, 8.495417], - [-12.267082, 8.495417], - [-12.267083, 8.496249], - [-12.275416, 8.49625], - [-12.277137, 8.497541], - [-12.278463, 8.500709], - [-12.279365, 8.502089], - [-12.278972, 8.503749], - [-12.286533, 8.50375], - [-12.287019, 8.502907], - [-12.283114, 8.496142], - [-12.28271, 8.496142], - [-12.282709, 8.49614], - [-12.283091, 8.495653], - [-12.284751, 8.495575], - [-12.285937, 8.495174], - [-12.286792, 8.495235], - [-12.28833, 8.495073], - [-12.289282, 8.494754], - [-12.290161, 8.494759], - [-12.291658, 8.49354] - ] - ], - "type": "Polygon" - }, - "id": 2, - "properties": { - "cc:admin:id": ["149"], - "cc:oBld:total": 1875, - "cc:pop:fifteen-to-twenty-four": 8986.319192417608, - "cc:pop:grid3-total": 35708.79670428632, - "cc:pop:kontur-total": 48635.46845677152, - "cc:pop:men": 22375.809762241483, - "cc:pop:sixty-plus": 3053.209537126763, - "cc:pop:total": 48340.0778967365, - "cc:pop:under-five": 7723.965862812126, - "cc:pop:women": 25964.268134495018, - "cc:pop:women-fiften-to-forty-nine": 12707.71276874662, - "cc:pop:wp-total": 30629.193666218373, - "cc:pop:wp-total-UN": 35531.98617661542, - "cc:id": "2", - "cc:Name": "Ahmadiyya Muslim Hospital", - "cc:site": [-12.2231, 8.466], - "user:parentName": "Yoni", - "user:code": "OU_268246", - "user:orgUnitId": "BV4IomHvri4", - "user:level": "4", - "user:parentId": "NNE0YMCDZkO" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.214195, 8.620071], - [-13.213699, 8.618499], - [-13.2124, 8.6165], - [-13.211799, 8.616499], - [-13.211299, 8.614299], - [-13.2099, 8.611299], - [-13.209899, 8.6104], - [-13.2085, 8.608799], - [-13.208077, 8.607191], - [-13.207504, 8.607445], - [-13.20746, 8.6073], - [-13.206792, 8.60749], - [-13.206887, 8.606832], - [-13.206498, 8.605831], - [-13.206028, 8.604805], - [-13.205407, 8.60487], - [-13.205133, 8.604828], - [-13.205075, 8.605153], - [-13.204972, 8.6056], - [-13.205243, 8.607609], - [-13.204562, 8.607591], - [-13.204222, 8.607563], - [-13.203728, 8.607492], - [-13.202983, 8.60734], - [-13.202606, 8.608884], - [-13.201885, 8.608586], - [-13.201195, 8.608314], - [-13.200811, 8.608245], - [-13.200808, 8.60826], - [-13.200156, 8.609916], - [-13.198143, 8.611191], - [-13.197625, 8.61117], - [-13.197498, 8.610921], - [-13.196613, 8.610729], - [-13.195398, 8.610804], - [-13.194941, 8.610489], - [-13.194561, 8.61125], - [-13.19409, 8.61231], - [-13.194107, 8.612646], - [-13.194982, 8.612666], - [-13.195899, 8.612696], - [-13.199348, 8.61285], - [-13.199349, 8.612851], - [-13.198427, 8.614721], - [-13.197991, 8.614372], - [-13.197371, 8.614245], - [-13.197169, 8.613957], - [-13.196668, 8.613805], - [-13.195891, 8.614166], - [-13.195274, 8.613809], - [-13.194299, 8.613671], - [-13.192381, 8.61308], - [-13.19213, 8.612814], - [-13.190392, 8.612774], - [-13.189948, 8.612756], - [-13.19616, 8.614567], - [-13.195741, 8.615809], - [-13.193543, 8.61521], - [-13.194582, 8.61625], - [-13.194583, 8.618749], - [-13.195417, 8.618749], - [-13.198749, 8.617917], - [-13.200417, 8.619583], - [-13.202917, 8.61875], - [-13.208749, 8.619583], - [-13.211249, 8.621249], - [-13.211463, 8.621144], - [-13.21167, 8.621365], - [-13.211831, 8.621912], - [-13.211045, 8.621958], - [-13.211195, 8.622238], - [-13.21244, 8.622607], - [-13.212846, 8.622468], - [-13.212991, 8.622244], - [-13.212927, 8.621928], - [-13.21196, 8.620895], - [-13.212116, 8.620817], - [-13.212175, 8.620879], - [-13.214195, 8.620071] - ] - ], - "type": "Polygon" - }, - "id": 3, - "properties": { - "cc:admin:id": ["44"], - "cc:oBld:total": 687, - "cc:pop:fifteen-to-twenty-four": 772.4695906114301, - "cc:pop:grid3-total": 5121.965278060656, - "cc:pop:kontur-total": 5167.064911114552, - "cc:pop:men": 2049.4572485837266, - "cc:pop:sixty-plus": 264.6292503519488, - "cc:pop:total": 4268.683385141481, - "cc:pop:under-five": 689.3316358927217, - "cc:pop:women": 2219.2261365577547, - "cc:pop:women-fiften-to-forty-nine": 1080.6692660986118, - "cc:pop:wp-total": 3924.3700113653663, - "cc:pop:wp-total-UN": 4548.215373937384, - "cc:id": "3", - "cc:Name": "Air Port Centre, Lungi", - "cc:site": [-13.2027, 8.6154], - "user:parentName": "Kaffu Bullom", - "user:code": "OU_255017", - "user:orgUnitId": "qjboFI0irVu", - "user:level": "4", - "user:parentId": "vn9KJsLyP5f" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.209671, 8.399988], - [-13.205765, 8.393223], - [-13.197953, 8.393222], - [-13.194046, 8.386457], - [-13.186235, 8.386457], - [-13.184059, 8.390223], - [-13.179583, 8.389584], - [-13.176249, 8.393749], - [-13.173346, 8.393428], - [-13.169472, 8.393428], - [-13.167694, 8.396505], - [-13.167394, 8.396382], - [-13.167264, 8.396343], - [-13.167133, 8.396252], - [-13.164276, 8.398071], - [-13.164002, 8.397917], - [-13.163674, 8.397373], - [-13.162388, 8.398522], - [-13.161482, 8.397826], - [-13.159693, 8.396446], - [-13.158202, 8.395285], - [-13.158393, 8.394803], - [-13.157427, 8.394428], - [-13.157242, 8.394573], - [-13.157072, 8.394739], - [-13.156816, 8.395048], - [-13.156156, 8.394211], - [-13.155889, 8.393895], - [-13.155706, 8.39468], - [-13.154571, 8.396993], - [-13.154147, 8.398283], - [-13.153714, 8.398799], - [-13.152929, 8.399151], - [-13.152105, 8.399214], - [-13.152103, 8.399214], - [-13.151905, 8.399228], - [-13.151177, 8.399199], - [-13.150071, 8.398873], - [-13.149672, 8.398745], - [-13.148718, 8.398696], - [-13.14689, 8.399417], - [-13.146219, 8.399979], - [-13.144841, 8.400729], - [-13.144285, 8.401645], - [-13.143774, 8.401492], - [-13.14403, 8.4005], - [-13.144443, 8.400137], - [-13.14396, 8.400105], - [-13.144171, 8.399001], - [-13.14386, 8.399038], - [-13.143321, 8.398531], - [-13.142894, 8.398507], - [-13.140847, 8.399336], - [-13.140563, 8.399603], - [-13.139557, 8.402073], - [-13.139193, 8.402842], - [-13.139047, 8.403098], - [-13.138787, 8.403425], - [-13.138412, 8.403832], - [-13.138162, 8.404031], - [-13.137882, 8.404161], - [-13.137432, 8.404354], - [-13.136682, 8.404679], - [-13.13624, 8.405391], - [-13.136329, 8.406175], - [-13.13685, 8.40683], - [-13.137385, 8.407135], - [-13.1379, 8.40755], - [-13.139474, 8.408861], - [-13.139551, 8.40973], - [-13.139417, 8.410708], - [-13.138836, 8.41145], - [-13.138442, 8.411821], - [-13.138764, 8.411795], - [-13.136789, 8.415415], - [-13.132367, 8.41377], - [-13.133731, 8.418191], - [-13.130439, 8.419037], - [-13.119854, 8.415134], - [-13.118208, 8.420119], - [-13.130439, 8.427364], - [-13.140975, 8.4268], - [-13.143021, 8.430105], - [-13.143046, 8.430063], - [-13.143047, 8.430063], - [-13.146857, 8.432481], - [-13.14897, 8.435279], - [-13.153083, 8.43528], - [-13.153083, 8.435281], - [-13.152433, 8.435807], - [-13.152485, 8.436225], - [-13.153285, 8.436004], - [-13.153646, 8.436144], - [-13.153534, 8.436285], - [-13.153747, 8.436414], - [-13.15421, 8.436534], - [-13.154344, 8.436145], - [-13.155163, 8.436155], - [-13.155736, 8.436724], - [-13.15576, 8.438064], - [-13.156607, 8.439233], - [-13.156636, 8.439501], - [-13.157243, 8.439447], - [-13.15729, 8.436782], - [-13.156806, 8.435313], - [-13.157331, 8.434405], - [-13.157334, 8.434304], - [-13.157335, 8.434304], - [-13.157366, 8.434349], - [-13.157904, 8.435139], - [-13.158864, 8.434691], - [-13.158785, 8.434472], - [-13.158141, 8.434146], - [-13.158141, 8.434145], - [-13.159379, 8.433153], - [-13.159213, 8.433067], - [-13.159232, 8.433031], - [-13.160047, 8.432582], - [-13.160366, 8.433115], - [-13.160676, 8.432843], - [-13.161071, 8.433202], - [-13.161429, 8.433477], - [-13.161899, 8.433023], - [-13.163055, 8.432416], - [-13.162887, 8.431904], - [-13.162953, 8.43187], - [-13.163601, 8.431621], - [-13.164287, 8.431246], - [-13.164548, 8.432005], - [-13.165122, 8.43166], - [-13.165491, 8.4314], - [-13.165736, 8.431134], - [-13.166199, 8.430725], - [-13.166831, 8.430352], - [-13.1674, 8.430012], - [-13.168418, 8.429104], - [-13.168772, 8.428798], - [-13.168964, 8.428641], - [-13.169505, 8.428173], - [-13.169782, 8.427918], - [-13.170157, 8.427737], - [-13.171373, 8.429839], - [-13.172396, 8.429311], - [-13.173354, 8.429135], - [-13.173335, 8.429242], - [-13.173478, 8.429786], - [-13.173629, 8.430349], - [-13.173026, 8.430712], - [-13.178749, 8.430712], - [-13.17875, 8.429583], - [-13.182916, 8.42625], - [-13.185417, 8.431249], - [-13.188749, 8.43125], - [-13.189583, 8.430416], - [-13.192916, 8.429583], - [-13.192917, 8.427084], - [-13.19487, 8.427083], - [-13.195128, 8.427555], - [-13.196154, 8.427852], - [-13.196643, 8.428633], - [-13.196913, 8.429552], - [-13.197916, 8.430789], - [-13.197977, 8.430743], - [-13.198597, 8.430291], - [-13.19894, 8.430582], - [-13.199727, 8.430254], - [-13.19887, 8.429808], - [-13.198869, 8.429512], - [-13.198437, 8.428924], - [-13.199307, 8.428013], - [-13.199222, 8.427828], - [-13.199928, 8.426745], - [-13.199939, 8.426747], - [-13.199972, 8.42668], - [-13.200322, 8.426398], - [-13.199506, 8.426024], - [-13.199191, 8.425521], - [-13.198685, 8.424649], - [-13.198353, 8.424362], - [-13.197239, 8.424331], - [-13.196777, 8.424124], - [-13.196346, 8.423654], - [-13.199582, 8.420417], - [-13.200416, 8.420416], - [-13.199582, 8.415417], - [-13.19875, 8.413749], - [-13.19875, 8.41125], - [-13.202083, 8.407917], - [-13.206436, 8.407916], - [-13.205766, 8.406753], - [-13.209671, 8.399988] - ] - ], - "type": "Polygon" - }, - "id": 4, - "properties": { - "cc:admin:id": ["112"], - "cc:oBld:total": 13836, - "cc:pop:fifteen-to-twenty-four": 45159.58077050645, - "cc:pop:grid3-total": 81374.3512639109, - "cc:pop:kontur-total": 191882.45496648015, - "cc:pop:men": 96787.59003622147, - "cc:pop:sixty-plus": 15300.12362733603, - "cc:pop:total": 197191.38097233692, - "cc:pop:under-five": 22692.179694740855, - "cc:pop:women": 100403.79093611553, - "cc:pop:women-fiften-to-forty-nine": 53710.58911463276, - "cc:pop:wp-total": 148926.35702440323, - "cc:pop:wp-total-UN": 172685.2863166641, - "cc:id": "4", - "cc:Name": "Allen Town Health Post", - "cc:site": [-13.155, 8.4176], - "user:parentName": "Freetown", - "user:code": "OU_278337", - "user:orgUnitId": "kbGqmM6ZWWV", - "user:level": "4", - "user:parentId": "C9uduqDZr9d" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.227221, 8.420286], - [-13.22139, 8.420285], - [-13.217484, 8.41352], - [-13.215984, 8.413519], - [-13.215416, 8.41125], - [-13.211249, 8.407917], - [-13.202082, 8.407917], - [-13.19875, 8.41125], - [-13.19875, 8.413749], - [-13.199582, 8.415417], - [-13.200416, 8.420416], - [-13.199583, 8.420417], - [-13.196346, 8.423654], - [-13.196777, 8.424124], - [-13.197239, 8.424331], - [-13.198353, 8.424362], - [-13.198685, 8.424649], - [-13.199191, 8.425521], - [-13.199507, 8.426024], - [-13.200321, 8.426397], - [-13.199972, 8.42668], - [-13.19994, 8.426747], - [-13.199928, 8.426745], - [-13.199222, 8.427828], - [-13.199307, 8.428014], - [-13.198437, 8.428925], - [-13.198869, 8.429511], - [-13.19887, 8.429807], - [-13.199726, 8.430255], - [-13.19894, 8.430582], - [-13.198597, 8.430291], - [-13.197915, 8.430789], - [-13.196913, 8.429552], - [-13.196643, 8.428633], - [-13.196153, 8.427852], - [-13.195128, 8.427556], - [-13.194869, 8.427084], - [-13.192917, 8.427084], - [-13.192916, 8.429583], - [-13.189583, 8.430417], - [-13.18875, 8.43125], - [-13.189583, 8.432084], - [-13.190416, 8.437916], - [-13.189583, 8.440416], - [-13.187082, 8.439584], - [-13.182917, 8.439583], - [-13.182916, 8.438846], - [-13.182834, 8.438798], - [-13.17969, 8.444244], - [-13.182658, 8.449387], - [-13.182313, 8.449494], - [-13.182097, 8.449517], - [-13.181342, 8.449973], - [-13.181012, 8.450889], - [-13.180684, 8.451083], - [-13.180609, 8.451651], - [-13.180616, 8.452558], - [-13.18046, 8.452767], - [-13.180342, 8.452843], - [-13.17923, 8.453451], - [-13.178554, 8.453579], - [-13.176623, 8.453014], - [-13.175802, 8.452914], - [-13.174819, 8.452949], - [-13.174047, 8.453751], - [-13.173831, 8.454299], - [-13.174094, 8.454729], - [-13.174946, 8.454388], - [-13.175466, 8.454317], - [-13.175371, 8.454917], - [-13.174482, 8.455482], - [-13.172825, 8.45654], - [-13.17314, 8.457122], - [-13.17319, 8.457235], - [-13.17336, 8.45753], - [-13.173412, 8.457603], - [-13.173525, 8.457843], - [-13.17366, 8.458059], - [-13.175098, 8.457502], - [-13.175409, 8.458219], - [-13.175554, 8.4585], - [-13.175653, 8.458673], - [-13.175959, 8.459094], - [-13.176502, 8.460143], - [-13.176537, 8.4602], - [-13.177559, 8.46077], - [-13.177752, 8.460848], - [-13.177675, 8.460995], - [-13.176894, 8.462079], - [-13.176516, 8.461775], - [-13.175729, 8.462588], - [-13.175703, 8.463101], - [-13.176099, 8.463469], - [-13.177185, 8.46277], - [-13.17742, 8.46246], - [-13.178171, 8.463079], - [-13.178192, 8.463058], - [-13.178448, 8.463308], - [-13.178906, 8.46362], - [-13.179204, 8.463855], - [-13.179594, 8.464175], - [-13.179729, 8.464322], - [-13.179994, 8.46452], - [-13.180285, 8.464761], - [-13.180972, 8.463634], - [-13.181572, 8.462988], - [-13.181954, 8.462533], - [-13.182524, 8.462194], - [-13.183153, 8.461189], - [-13.183324, 8.46093], - [-13.183492, 8.460683], - [-13.183538, 8.46059], - [-13.184209, 8.458886], - [-13.184954, 8.459284], - [-13.18537, 8.459647], - [-13.18627, 8.458651], - [-13.186817, 8.45917], - [-13.187464, 8.45879], - [-13.187756, 8.457755], - [-13.188142, 8.457135], - [-13.188764, 8.456894], - [-13.188839, 8.457167], - [-13.188696, 8.457294], - [-13.189241, 8.4578], - [-13.189578, 8.458613], - [-13.190202, 8.458682], - [-13.190918, 8.457897], - [-13.191061, 8.458229], - [-13.190915, 8.459357], - [-13.190935, 8.459634], - [-13.191142, 8.459723], - [-13.191833, 8.459656], - [-13.192296, 8.459869], - [-13.192418, 8.460075], - [-13.191713, 8.460789], - [-13.190927, 8.461423], - [-13.191496, 8.461784], - [-13.191712, 8.46242], - [-13.192246, 8.462629], - [-13.210832, 8.432304], - [-13.227221, 8.420286] - ] - ], - "type": "Polygon" - }, - "id": 5, - "properties": { - "cc:admin:id": ["112"], - "cc:oBld:total": 3963, - "cc:pop:fifteen-to-twenty-four": 11543.527751119696, - "cc:pop:grid3-total": 37039.899364867495, - "cc:pop:kontur-total": 54374.93558493871, - "cc:pop:men": 24871.780629992223, - "cc:pop:sixty-plus": 3905.9309789921585, - "cc:pop:total": 50478.679908679595, - "cc:pop:under-five": 5801.865000521303, - "cc:pop:women": 25606.899278687382, - "cc:pop:women-fiften-to-forty-nine": 13676.687213459507, - "cc:pop:wp-total": 34826.481514947045, - "cc:pop:wp-total-UN": 40372.84389959109, - "cc:id": "5", - "cc:Name": "Approved School CHP", - "cc:site": [-13.178, 8.4613], - "user:parentName": "Freetown", - "user:code": "OU_278314", - "user:orgUnitId": "eoYV2p74eVz", - "user:level": "4", - "user:parentId": "C9uduqDZr9d" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.2284, 8.449658], - [-13.227606, 8.448642], - [-13.227858, 8.448225], - [-13.227342, 8.447778], - [-13.226813, 8.447388], - [-13.226319, 8.447029], - [-13.226216, 8.447189], - [-13.225804, 8.447802], - [-13.22494, 8.44705], - [-13.224865, 8.446454], - [-13.223594, 8.446299], - [-13.222806, 8.446336], - [-13.221977, 8.446076], - [-13.220385, 8.444883], - [-13.219762, 8.444519], - [-13.219921, 8.444059], - [-13.220015, 8.443804], - [-13.219671, 8.443187], - [-13.219461, 8.44243], - [-13.219117, 8.442212], - [-13.219244, 8.441807], - [-13.219163, 8.441421], - [-13.218797, 8.440897], - [-13.217718, 8.440433], - [-13.21706, 8.440351], - [-13.217148, 8.440018], - [-13.215607, 8.440008], - [-13.214853, 8.439639], - [-13.2143, 8.440196], - [-13.213771, 8.441075], - [-13.213745, 8.441544], - [-13.213712, 8.442119], - [-13.214068, 8.442812], - [-13.214431, 8.444557], - [-13.215326, 8.445233], - [-13.216476, 8.445229], - [-13.216477, 8.44523], - [-13.21647, 8.44538], - [-13.216336, 8.446649], - [-13.216267, 8.448702], - [-13.216035, 8.449054], - [-13.215367, 8.449571], - [-13.215394, 8.450035], - [-13.215276, 8.450623], - [-13.215292, 8.450677], - [-13.215055, 8.453441], - [-13.215323, 8.453507], - [-13.215348, 8.45355], - [-13.215617, 8.45444], - [-13.215645, 8.454502], - [-13.216429, 8.454289], - [-13.21672, 8.454962], - [-13.21603, 8.455259], - [-13.216174, 8.455539], - [-13.216836, 8.457127], - [-13.216946, 8.457431], - [-13.217614, 8.458768], - [-13.217772, 8.459394], - [-13.21728, 8.459686], - [-13.215697, 8.459404], - [-13.215358, 8.460405], - [-13.215258, 8.460868], - [-13.215063, 8.461554], - [-13.214924, 8.462002], - [-13.214802, 8.46234], - [-13.214707, 8.462513], - [-13.213577, 8.462042], - [-13.213014, 8.463737], - [-13.213006, 8.463802], - [-13.212416, 8.464533], - [-13.211993, 8.464118], - [-13.211661, 8.464607], - [-13.211155, 8.465849], - [-13.211209, 8.468622], - [-13.210874, 8.469419], - [-13.210812, 8.469398], - [-13.210456, 8.469237], - [-13.210114, 8.46856], - [-13.209414, 8.467723], - [-13.209128, 8.467785], - [-13.208811, 8.468205], - [-13.208374, 8.468548], - [-13.208155, 8.470071], - [-13.208251, 8.471407], - [-13.208078, 8.471851], - [-13.208076, 8.471851], - [-13.207343, 8.470849], - [-13.207015, 8.470893], - [-13.206961, 8.470931], - [-13.206974, 8.47095], - [-13.207134, 8.471157], - [-13.207015, 8.472239], - [-13.206851, 8.472525], - [-13.207277, 8.472903], - [-13.207208, 8.47451], - [-13.208265, 8.476333], - [-13.208266, 8.476333], - [-13.208655, 8.476068], - [-13.208756, 8.475997], - [-13.209047, 8.475812], - [-13.209724, 8.475597], - [-13.210288, 8.474919], - [-13.211139, 8.475449], - [-13.211876, 8.476283], - [-13.212343, 8.477391], - [-13.21227, 8.477723], - [-13.212636, 8.478272], - [-13.212422, 8.478384], - [-13.212183, 8.478491], - [-13.211474, 8.478778], - [-13.211652, 8.479318], - [-13.212048, 8.480691], - [-13.212185, 8.481067], - [-13.213946, 8.480075], - [-13.214394, 8.479956], - [-13.21493, 8.481452], - [-13.215714, 8.481842], - [-13.216069, 8.481595], - [-13.217042, 8.481344], - [-13.217505, 8.480975], - [-13.217647, 8.480419], - [-13.217649, 8.480418], - [-13.218969, 8.481319], - [-13.219788, 8.481613], - [-13.220084, 8.481825], - [-13.220523, 8.48247], - [-13.220617, 8.482789], - [-13.219493, 8.483095], - [-13.219461, 8.483057], - [-13.219025, 8.482571], - [-13.218633, 8.482192], - [-13.218748, 8.481869], - [-13.218233, 8.481565], - [-13.217759, 8.482201], - [-13.217229, 8.483383], - [-13.217782, 8.483874], - [-13.218335, 8.484247], - [-13.218263, 8.484447], - [-13.218714, 8.484562], - [-13.21879, 8.484246], - [-13.218903, 8.483873], - [-13.219537, 8.484027], - [-13.219985, 8.484181], - [-13.221404, 8.484895], - [-13.221269, 8.485249], - [-13.221116, 8.485637], - [-13.221665, 8.485861], - [-13.221987, 8.485968], - [-13.222106, 8.486012], - [-13.223352, 8.486514], - [-13.223443, 8.486275], - [-13.224018, 8.486309], - [-13.224145, 8.485878], - [-13.224217, 8.485648], - [-13.224307, 8.485671], - [-13.224499, 8.485319], - [-13.224737, 8.484956], - [-13.224856, 8.48478], - [-13.225093, 8.484393], - [-13.225267, 8.483946], - [-13.225451, 8.483549], - [-13.225752, 8.482884], - [-13.225943, 8.482334], - [-13.226159, 8.481784], - [-13.226968, 8.482067], - [-13.227064, 8.481792], - [-13.225716, 8.480176], - [-13.225477, 8.479533], - [-13.225151, 8.479179], - [-13.225063, 8.47836], - [-13.225089, 8.478337], - [-13.225532, 8.478801], - [-13.225876, 8.478866], - [-13.226359, 8.478444], - [-13.22744, 8.477976], - [-13.227904, 8.477375], - [-13.227305, 8.476382], - [-13.227194, 8.476138], - [-13.227158, 8.476016], - [-13.2271, 8.476003], - [-13.227138, 8.475942], - [-13.22704, 8.474681], - [-13.227106, 8.474382], - [-13.227395, 8.473708], - [-13.227482, 8.472572], - [-13.227571, 8.47221], - [-13.227211, 8.471945], - [-13.226809, 8.471507], - [-13.225802, 8.471252], - [-13.22479, 8.470714], - [-13.224258, 8.470162], - [-13.223906, 8.469759], - [-13.224761, 8.46885], - [-13.224497, 8.468238], - [-13.225081, 8.468041], - [-13.225441, 8.467686], - [-13.224802, 8.467045], - [-13.224605, 8.467076], - [-13.223954, 8.467922], - [-13.223502, 8.467594], - [-13.222991, 8.467956], - [-13.222768, 8.467497], - [-13.223126, 8.467277], - [-13.223467, 8.467045], - [-13.223706, 8.465363], - [-13.22292, 8.465499], - [-13.22258, 8.465635], - [-13.221989, 8.465798], - [-13.221331, 8.464398], - [-13.220633, 8.463395], - [-13.221065, 8.46312], - [-13.2215, 8.462239], - [-13.221236, 8.461903], - [-13.220709, 8.46186], - [-13.220056, 8.461845], - [-13.219416, 8.461649], - [-13.219036, 8.461732], - [-13.218897, 8.461569], - [-13.219144, 8.460892], - [-13.219272, 8.460523], - [-13.219452, 8.459954], - [-13.219592, 8.459544], - [-13.220099, 8.458093], - [-13.220303, 8.457475], - [-13.220398, 8.457318], - [-13.220676, 8.4571], - [-13.221091, 8.457046], - [-13.221682, 8.456363], - [-13.222031, 8.455503], - [-13.222006, 8.45545], - [-13.222142, 8.454158], - [-13.222136, 8.453734], - [-13.221761, 8.452832], - [-13.220159, 8.452486], - [-13.2203, 8.452005], - [-13.220936, 8.451159], - [-13.221191, 8.451259], - [-13.221654, 8.450661], - [-13.222443, 8.450818], - [-13.223239, 8.451664], - [-13.223582, 8.452923], - [-13.224045, 8.452964], - [-13.22529, 8.452357], - [-13.226776, 8.451068], - [-13.227013, 8.450987], - [-13.227702, 8.451011], - [-13.228299, 8.451184], - [-13.228042, 8.44982], - [-13.2284, 8.449658] - ] - ], - "type": "Polygon" - }, - "id": 6, - "properties": { - "cc:admin:id": ["26"], - "cc:oBld:total": 5871, - "cc:pop:fifteen-to-twenty-four": 9780.389705371723, - "cc:pop:grid3-total": 69896.1962775521, - "cc:pop:kontur-total": 67538.97186513591, - "cc:pop:men": 21473.042301063084, - "cc:pop:sixty-plus": 3325.7629072332306, - "cc:pop:total": 42660.25194365289, - "cc:pop:under-five": 4925.5556982977405, - "cc:pop:women": 21187.20964258979, - "cc:pop:women-fiften-to-forty-nine": 11345.999729329176, - "cc:pop:wp-total": 31603.85571539408, - "cc:pop:wp-total-UN": 36639.2781016322, - "cc:id": "6", - "cc:Name": "Arab Clinic", - "cc:site": [-13.221, 8.4832], - "user:parentName": "Gbense", - "user:code": "OU_233378", - "user:orgUnitId": "nq7F0t1Pz6t", - "user:level": "4", - "user:parentId": "TQkG0sX9nca" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.426134, 8.348222], - [-11.423273, 8.347637], - [-11.419454, 8.34601], - [-11.418749, 8.353749], - [-11.414582, 8.357083], - [-11.408749, 8.357083], - [-11.40125, 8.35625], - [-11.397917, 8.352084], - [-11.397916, 8.347917], - [-11.39375, 8.347916], - [-11.39085, 8.345597], - [-11.391109, 8.347405], - [-11.391029, 8.347907], - [-11.387916, 8.345417], - [-11.383725, 8.345416], - [-11.380167, 8.339256], - [-11.372792, 8.339255], - [-11.372441, 8.337696], - [-11.371843, 8.336415], - [-11.367023, 8.336415], - [-11.365507, 8.33904], - [-11.365416, 8.339584], - [-11.362083, 8.342083], - [-11.36125, 8.342084], - [-11.357916, 8.337917], - [-11.356249, 8.337916], - [-11.353749, 8.335417], - [-11.345418, 8.336249], - [-11.345418, 8.336248], - [-11.349582, 8.330416], - [-11.347916, 8.32625], - [-11.33875, 8.331249], - [-11.338749, 8.327083], - [-11.333948, 8.322281], - [-11.333617, 8.322433], - [-11.332917, 8.322084], - [-11.332916, 8.320417], - [-11.330821, 8.319893], - [-11.330623, 8.320324], - [-11.329983, 8.320299], - [-11.329342, 8.32028], - [-11.3303, 8.318806], - [-11.33075, 8.317625], - [-11.330752, 8.317625], - [-11.331011, 8.317912], - [-11.330894, 8.317376], - [-11.331091, 8.316901], - [-11.331428, 8.316368], - [-11.331479, 8.316023], - [-11.331418, 8.31478], - [-11.331234, 8.314023], - [-11.330417, 8.31375], - [-11.330742, 8.313098], - [-11.330275, 8.312403], - [-11.329195, 8.311442], - [-11.328865, 8.310731], - [-11.329622, 8.307575], - [-11.329709, 8.306651], - [-11.329959, 8.306039], - [-11.329934, 8.30578], - [-11.329888, 8.305968], - [-11.329709, 8.30583], - [-11.329575, 8.306055], - [-11.329574, 8.306054], - [-11.329796, 8.305267], - [-11.32983, 8.303006], - [-11.329999, 8.302483], - [-11.330041, 8.301169], - [-11.330124, 8.301083], - [-11.330485, 8.301748], - [-11.330828, 8.300963], - [-11.330869, 8.300198], - [-11.330603, 8.300413], - [-11.330428, 8.300366], - [-11.330284, 8.300604], - [-11.330148, 8.300423], - [-11.330884, 8.298549], - [-11.331078, 8.29857], - [-11.331086, 8.298905], - [-11.331255, 8.298764], - [-11.331917, 8.296144], - [-11.332534, 8.294865], - [-11.332507, 8.291675], - [-11.333312, 8.286514], - [-11.333949, 8.284468], - [-11.334511, 8.281115], - [-11.334737, 8.280417], - [-11.32875, 8.280417], - [-11.324583, 8.283749], - [-11.324045, 8.290188], - [-11.322347, 8.289827], - [-11.322084, 8.289885], - [-11.322083, 8.289884], - [-11.322082, 8.28375], - [-11.30625, 8.284584], - [-11.308749, 8.297916], - [-11.306249, 8.299583], - [-11.300149, 8.299583], - [-11.298048, 8.295947], - [-11.292613, 8.295946], - [-11.29125, 8.294584], - [-11.291608, 8.289917], - [-11.286083, 8.289917], - [-11.284582, 8.287917], - [-11.281344, 8.287512], - [-11.281533, 8.287182], - [-11.277628, 8.280417], - [-11.281533, 8.273651], - [-11.288805, 8.27365], - [-11.288749, 8.272917], - [-11.285416, 8.272917], - [-11.279583, 8.27375], - [-11.269583, 8.280416], - [-11.269583, 8.283749], - [-11.271249, 8.28625], - [-11.267582, 8.289916], - [-11.262195, 8.289916], - [-11.258288, 8.283152], - [-11.254336, 8.283152], - [-11.2521, 8.287799], - [-11.249799, 8.2906], - [-11.247099, 8.2931], - [-11.2434, 8.2955], - [-11.2409, 8.298799], - [-11.2386, 8.300899], - [-11.234199, 8.3033], - [-11.2314, 8.305399], - [-11.229299, 8.3073], - [-11.2268, 8.309999], - [-11.2247, 8.312899], - [-11.2229, 8.316599], - [-11.221399, 8.3186], - [-11.219099, 8.3203], - [-11.2129, 8.322299], - [-11.2079, 8.323], - [-11.211299, 8.337199], - [-11.213499, 8.342699], - [-11.218499, 8.349899], - [-11.2218, 8.355], - [-11.228999, 8.363599], - [-11.234, 8.3709], - [-11.2396, 8.377], - [-11.2461, 8.382599], - [-11.252999, 8.383899], - [-11.257699, 8.384099], - [-11.260899, 8.3835], - [-11.263299, 8.381899], - [-11.2649, 8.379899], - [-11.266599, 8.3762], - [-11.2685, 8.372599], - [-11.2701, 8.368599], - [-11.2738, 8.3614], - [-11.2768, 8.358599], - [-11.283399, 8.3552], - [-11.287999, 8.3542], - [-11.291, 8.3541], - [-11.3084, 8.3541], - [-11.312499, 8.354199], - [-11.315899, 8.354599], - [-11.3181, 8.3553], - [-11.321699, 8.357199], - [-11.3249, 8.3586], - [-11.3292, 8.361], - [-11.335999, 8.364299], - [-11.338199, 8.364999], - [-11.3417, 8.3654], - [-11.354299, 8.365499], - [-11.357399, 8.3654], - [-11.3614, 8.364799], - [-11.3668, 8.362599], - [-11.3726, 8.360999], - [-11.377899, 8.3588], - [-11.3818, 8.357999], - [-11.3879, 8.357799], - [-11.417999, 8.357799], - [-11.422916, 8.358088], - [-11.422917, 8.352084], - [-11.426134, 8.348222] - ] - ], - "type": "Polygon" - }, - "id": 7, - "properties": { - "cc:admin:id": ["142"], - "cc:oBld:total": 1203, - "cc:pop:fifteen-to-twenty-four": 1878.8640098192798, - "cc:pop:grid3-total": 11198.92436842934, - "cc:pop:kontur-total": 9566.141223190172, - "cc:pop:men": 5051.165408992373, - "cc:pop:sixty-plus": 601.6842265878842, - "cc:pop:total": 9951.58212839889, - "cc:pop:under-five": 1551.6652408588725, - "cc:pop:women": 4900.41671940652, - "cc:pop:women-fiften-to-forty-nine": 2463.579984705586, - "cc:pop:wp-total": 9349.995400631034, - "cc:pop:wp-total-UN": 10842.91915691694, - "cc:id": "7", - "cc:Name": "Baama CHC", - "cc:site": [-11.3329, 8.3588], - "user:parentName": "Wandor", - "user:code": "OU_222681", - "user:orgUnitId": "r5WWF9WDzoa", - "user:level": "4", - "user:parentId": "X7dWcGerQIm" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - [-13.177199, 8.815499], - [-13.176999, 8.8119], - [-13.1671, 8.8073], - [-13.162599, 8.806099], - [-13.157899, 8.8057], - [-13.1521, 8.805899], - [-13.147, 8.8087], - [-13.1468, 8.813899], - [-13.151499, 8.8213], - [-13.151999, 8.824499], - [-13.151499, 8.827499], - [-13.149099, 8.829999], - [-13.145099, 8.831399], - [-13.141799, 8.831399], - [-13.135999, 8.829699], - [-13.121199, 8.8259], - [-13.1158, 8.826099], - [-13.1097, 8.827699], - [-13.103599, 8.8285], - [-13.073199, 8.8289], - [-13.068599, 8.8293], - [-13.059599, 8.8317], - [-13.046199, 8.8331], - [-13.038699, 8.835], - [-13.030299, 8.8367], - [-13.024199, 8.8385], - [-13.013499, 8.8423], - [-12.9837, 8.845199], - [-12.98125, 8.845284], - [-12.98125, 8.845416], - [-12.982324, 8.848101], - [-12.982467, 8.848116], - [-12.985558, 8.849582], - [-12.988322, 8.849583], - [-12.992549, 8.851777], - [-12.99694, 8.854407], - [-12.999267, 8.854904], - [-13.000497, 8.854769], - [-13.00051, 8.854679], - [-13.000511, 8.854678], - [-13.002083, 8.856249], - [-13.004582, 8.857082], - [-13.005793, 8.854665], - [-13.006026, 8.85469], - [-13.00777, 8.85444], - [-13.014808, 8.852581], - [-13.016472, 8.852249], - [-13.018703, 8.851949], - [-13.022339, 8.851677], - [-13.024674, 8.850918], - [-13.02584, 8.850644], - [-13.027083, 8.853749], - [-13.037916, 8.853749], - [-13.036515, 8.849545], - [-13.04078, 8.848186], - [-13.040918, 8.848089], - [-13.042083, 8.850416], - [-13.048103, 8.847406], - [-13.049806, 8.846944], - [-13.053721, 8.844628], - [-13.05741, 8.843319], - [-13.057917, 8.844582], - [-13.062082, 8.842917], - [-13.067917, 8.845417], - [-13.076249, 8.847082], - [-13.07625, 8.845405], - [-13.079749, 8.846626], - [-13.08363, 8.84697], - [-13.086736, 8.846884], - [-13.088749, 8.846487], - [-13.08875, 8.84375], - [-13.090417, 8.842917], - [-13.094554, 8.842917], - [-13.095147, 8.843391], - [-13.095751, 8.844123], - [-13.097562, 8.844425], - [-13.098653, 8.844323], - [-13.098749, 8.84375], - [-13.098725, 8.84365], - [-13.098726, 8.843649], - [-13.100624, 8.843649], - [-13.102178, 8.844814], - [-13.10524, 8.845461], - [-13.107569, 8.845763], - [-13.109582, 8.846004], - [-13.109583, 8.852661], - [-13.111449, 8.852601], - [-13.117917, 8.845417], - [-13.121973, 8.843388], - [-13.123458, 8.84349], - [-13.124888, 8.843566], - [-13.128199, 8.845459], - [-13.1282, 8.844], - [-13.1285, 8.8435], - [-13.130399, 8.843199], - [-13.1321, 8.8421], - [-13.135099, 8.841499], - [-13.1354, 8.841], - [-13.143199, 8.841], - [-13.1449, 8.8418], - [-13.149299, 8.843199], - [-13.1499, 8.843799], - [-13.158999, 8.8438], - [-13.1601, 8.844599], - [-13.162399, 8.8446], - [-13.1632, 8.845699], - [-13.1643, 8.8457], - [-13.1674, 8.847899], - [-13.169, 8.8482], - [-13.171, 8.850399], - [-13.175399, 8.850699], - [-13.176499, 8.849899], - [-13.176799, 8.8485], - [-13.1751, 8.8471], - [-13.175099, 8.8463], - [-13.173999, 8.845699], - [-13.172899, 8.8432], - [-13.172399, 8.843199], - [-13.171299, 8.8415], - [-13.1699, 8.840999], - [-13.170199, 8.840099], - [-13.17, 8.8369], - [-13.168899, 8.833099], - [-13.1681, 8.8289], - [-13.1689, 8.825], - [-13.170999, 8.8217], - [-13.177199, 8.815499] - ] - ], - [ - [ - [-13.1446, 8.845999], - [-13.144599, 8.844], - [-13.143799, 8.843799], - [-13.1388, 8.8435], - [-13.138799, 8.8432], - [-13.135399, 8.8432], - [-13.1338, 8.844], - [-13.1335, 8.845699], - [-13.1349, 8.847099], - [-13.1365, 8.8465], - [-13.1388, 8.8468], - [-13.141799, 8.8468], - [-13.1446, 8.845999] - ] - ], - [ - [ - [-13.152399, 8.860999], - [-13.151799, 8.859], - [-13.1507, 8.8576], - [-13.149599, 8.857399], - [-13.147099, 8.8551], - [-13.1438, 8.855099], - [-13.142099, 8.854], - [-13.1401, 8.853999], - [-13.1385, 8.8535], - [-13.1385, 8.854599], - [-13.139899, 8.8557], - [-13.1404, 8.856799], - [-13.1426, 8.8579], - [-13.1438, 8.859899], - [-13.148499, 8.862599], - [-13.151799, 8.862399], - [-13.152399, 8.860999] - ] - ], - [ - [ - [-13.154299, 8.852099], - [-13.154299, 8.851], - [-13.1526, 8.850699], - [-13.151799, 8.849599], - [-13.149899, 8.848799], - [-13.1471, 8.848499], - [-13.146199, 8.8479], - [-13.1432, 8.8482], - [-13.1421, 8.850399], - [-13.143499, 8.8504], - [-13.1457, 8.851499], - [-13.1476, 8.8515], - [-13.1496, 8.852599], - [-13.153199, 8.8526], - [-13.154299, 8.852099] - ] - ], - [ - [ - [-13.157399, 8.8546], - [-13.155999, 8.8535], - [-13.151, 8.8535], - [-13.1507, 8.854899], - [-13.1529, 8.8563], - [-13.155699, 8.857099], - [-13.157099, 8.8571], - [-13.157399, 8.8546] - ] - ], - [ - [ - [-13.158499, 8.8593], - [-13.1557, 8.8585], - [-13.154899, 8.8574], - [-13.1521, 8.8565], - [-13.1521, 8.857599], - [-13.154595, 8.859896], - [-13.1546, 8.8599], - [-13.157099, 8.860999], - [-13.158499, 8.8593] - ] - ] - ], - "type": "MultiPolygon" - }, - "id": 8, - "properties": { - "cc:admin:id": ["89"], - "cc:oBld:total": 13, - "cc:pop:fifteen-to-twenty-four": 1375.4612376646191, - "cc:pop:grid3-total": 10255.59517282475, - "cc:pop:kontur-total": 6935.259100174771, - "cc:pop:men": 3689.890782717013, - "cc:pop:sixty-plus": 408.9123329784164, - "cc:pop:total": 7801.640851278573, - "cc:pop:under-five": 1186.6250572495817, - "cc:pop:women": 4111.7500685615605, - "cc:pop:women-fiften-to-forty-nine": 2007.3575354565169, - "cc:pop:wp-total": 9543.960379246078, - "cc:pop:wp-total-UN": 11074.221185923641, - "cc:id": "8", - "cc:Name": "Babara CHC", - "cc:site": [-13.1317, 8.8295], - "user:parentName": "Lokomasama", - "user:code": "OU_254991", - "user:orgUnitId": "yMCshbaVExv", - "user:level": "4", - "user:parentId": "fRLX08WHWpL" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.912039, 9.889013], - [-11.912199, 9.8841], - [-11.910599, 9.880399], - [-11.903099, 9.871399], - [-11.9006, 9.8692], - [-11.8956, 9.8668], - [-11.8934, 9.864899], - [-11.8913, 9.861], - [-11.8903, 9.8571], - [-11.8901, 9.852899], - [-11.890399, 9.8485], - [-11.893199, 9.8364], - [-11.8932, 9.8297], - [-11.891999, 9.824799], - [-11.890699, 9.821599], - [-11.8873, 9.8151], - [-11.8865, 9.811299], - [-11.8865, 9.805999], - [-11.888899, 9.7954], - [-11.889099, 9.7901], - [-11.888599, 9.786099], - [-11.8862, 9.7766], - [-11.885699, 9.772199], - [-11.8854, 9.764699], - [-11.8854, 9.754], - [-11.886499, 9.738599], - [-11.885399, 9.729099], - [-11.8847, 9.711], - [-11.883099, 9.7001], - [-11.878799, 9.7029], - [-11.8713, 9.709899], - [-11.8684, 9.712099], - [-11.863799, 9.7142], - [-11.8591, 9.716999], - [-11.8573, 9.7185], - [-11.8541, 9.723899], - [-11.852499, 9.7278], - [-11.8504, 9.732199], - [-11.8491, 9.738099], - [-11.847699, 9.7406], - [-11.845499, 9.7424], - [-11.841799, 9.7441], - [-11.838199, 9.7461], - [-11.834999, 9.7475], - [-11.832199, 9.7495], - [-11.8276, 9.753999], - [-11.824799, 9.7563], - [-11.821499, 9.7577], - [-11.8179, 9.758099], - [-11.815199, 9.757899], - [-11.812399, 9.757199], - [-11.805999, 9.753399], - [-11.8021, 9.7472], - [-11.8005, 9.7414], - [-11.799699, 9.739299], - [-11.798499, 9.737399], - [-11.7956, 9.7338], - [-11.7944, 9.7319], - [-11.793499, 9.728799], - [-11.793199, 9.724999], - [-11.793, 9.7173], - [-11.7923, 9.7136], - [-11.79, 9.7092], - [-11.788599, 9.706099], - [-11.7867, 9.7025], - [-11.785699, 9.698899], - [-11.785, 9.6931], - [-11.7841, 9.6905], - [-11.7809, 9.6838], - [-11.778599, 9.679399], - [-11.777799, 9.675599], - [-11.7776, 9.6635], - [-11.777399, 9.660499], - [-11.776699, 9.657799], - [-11.774699, 9.653299], - [-11.7728, 9.6465], - [-11.770699, 9.642099], - [-11.769, 9.6354], - [-11.7665, 9.6302], - [-11.765299, 9.625099], - [-11.762999, 9.619799], - [-11.762199, 9.616199], - [-11.762, 9.6046], - [-11.7613, 9.5995], - [-11.758899, 9.593699], - [-11.7582, 9.590199], - [-11.7582, 9.585799], - [-11.7588, 9.583299], - [-11.761, 9.577999], - [-11.761899, 9.5709], - [-11.762399, 9.5684], - [-11.764399, 9.5639], - [-11.765799, 9.5576], - [-11.7669, 9.555499], - [-11.7686, 9.553199], - [-11.7713, 9.550399], - [-11.7735, 9.548499], - [-11.776199, 9.5467], - [-11.7784, 9.545899], - [-11.7826, 9.544999], - [-11.7879, 9.542899], - [-11.792999, 9.5417], - [-11.795099, 9.541], - [-11.7979, 9.539099], - [-11.800799, 9.5366], - [-11.803699, 9.5334], - [-11.805499, 9.529799], - [-11.804999, 9.5263], - [-11.8025, 9.5231], - [-11.799199, 9.5207], - [-11.7966, 9.5201], - [-11.794199, 9.5207], - [-11.789299, 9.5227], - [-11.784199, 9.5233], - [-11.773499, 9.5233], - [-11.7707, 9.523599], - [-11.7681, 9.524499], - [-11.7645, 9.526299], - [-11.761399, 9.5276], - [-11.7571, 9.530099], - [-11.7529, 9.532299], - [-11.746699, 9.537], - [-11.742799, 9.5389], - [-11.7385, 9.541299], - [-11.7354, 9.542599], - [-11.7311, 9.544999], - [-11.727899, 9.5464], - [-11.7236, 9.548799], - [-11.720499, 9.5501], - [-11.7161, 9.552299], - [-11.7102, 9.553799], - [-11.704899, 9.556], - [-11.702399, 9.5567], - [-11.6969, 9.557399], - [-11.693, 9.558799], - [-11.6869, 9.561299], - [-11.6826, 9.563699], - [-11.6794, 9.564999], - [-11.676599, 9.5666], - [-11.674299, 9.5675], - [-11.6685, 9.568799], - [-11.6639, 9.571099], - [-11.663545, 9.571244], - [-11.660417, 9.57625], - [-11.66125, 9.580416], - [-11.663749, 9.582082], - [-11.66375, 9.583749], - [-11.665416, 9.584583], - [-11.665417, 9.588749], - [-11.667083, 9.587917], - [-11.677917, 9.59375], - [-11.679582, 9.603749], - [-11.66625, 9.602083], - [-11.665417, 9.603749], - [-11.671249, 9.612916], - [-11.672916, 9.614582], - [-11.66625, 9.61875], - [-11.667903, 9.620404], - [-11.669342, 9.618416], - [-11.671245, 9.618014], - [-11.673916, 9.618335], - [-11.674786, 9.61888], - [-11.675192, 9.619034], - [-11.674583, 9.622082], - [-11.677082, 9.627083], - [-11.675417, 9.633749], - [-11.677607, 9.636488], - [-11.680136, 9.640869], - [-11.676231, 9.647635], - [-11.679695, 9.653637], - [-11.679582, 9.65375], - [-11.67875, 9.660416], - [-11.68542, 9.661751], - [-11.685568, 9.664338], - [-11.68626, 9.665951], - [-11.686362, 9.666757], - [-11.683078, 9.670391], - [-11.693749, 9.66875], - [-11.696248, 9.669582], - [-11.696102, 9.669707], - [-11.696935, 9.671151], - [-11.69303, 9.677917], - [-11.696936, 9.684682], - [-11.698028, 9.684682], - [-11.699583, 9.68375], - [-11.702915, 9.686248], - [-11.699297, 9.692517], - [-11.703202, 9.699282], - [-11.702068, 9.701249], - [-11.707076, 9.70125], - [-11.705508, 9.703967], - [-11.709413, 9.710733], - [-11.705508, 9.717499], - [-11.707236, 9.720492], - [-11.717082, 9.72125], - [-11.720416, 9.725417], - [-11.719582, 9.73625], - [-11.714583, 9.739582], - [-11.709647, 9.739172], - [-11.70827, 9.741557], - [-11.710979, 9.746249], - [-11.713749, 9.74625], - [-11.715141, 9.747641], - [-11.711382, 9.754154], - [-11.715287, 9.760919], - [-11.714812, 9.761744], - [-11.721249, 9.762083], - [-11.722916, 9.764582], - [-11.722916, 9.773749], - [-11.719582, 9.777916], - [-11.710334, 9.778577], - [-11.70827, 9.782152], - [-11.710259, 9.785596], - [-11.71875, 9.78625], - [-11.722917, 9.797082], - [-11.732916, 9.797916], - [-11.732971, 9.797874], - [-11.735613, 9.802449], - [-11.735058, 9.803409], - [-11.730417, 9.802083], - [-11.730416, 9.804583], - [-11.727653, 9.810108], - [-11.727652, 9.810108], - [-11.727371, 9.809948], - [-11.72375, 9.817917], - [-11.72375, 9.820416], - [-11.725416, 9.822082], - [-11.728358, 9.821838], - [-11.725955, 9.826001], - [-11.726634, 9.827176], - [-11.736249, 9.827917], - [-11.729583, 9.847082], - [-11.725417, 9.846249], - [-11.723199, 9.844587], - [-11.723499, 9.8491], - [-11.7234, 9.8624], - [-11.723699, 9.866399], - [-11.724299, 9.868899], - [-11.7254, 9.871], - [-11.7273, 9.8732], - [-11.732599, 9.878799], - [-11.734299, 9.881699], - [-11.735, 9.885], - [-11.7353, 9.889], - [-11.735299, 9.898], - [-11.735, 9.900999], - [-11.7341, 9.903699], - [-11.730799, 9.9102], - [-11.729299, 9.9121], - [-11.7254, 9.9154], - [-11.7244, 9.9178], - [-11.7241, 9.9236], - [-11.724299, 9.935899], - [-11.724599, 9.940999], - [-11.7252, 9.9438], - [-11.7273, 9.9482], - [-11.729099, 9.954899], - [-11.731399, 9.960199], - [-11.7327, 9.9653], - [-11.7353, 9.9705], - [-11.7392, 9.9788], - [-11.7407, 9.9847], - [-11.742299, 9.995499], - [-11.7377, 9.996999], - [-11.733, 9.997799], - [-11.7305, 9.9985], - [-11.734399, 9.999899], - [-11.7348, 9.999999], - [-11.7687, 9.9974], - [-11.8287, 9.9975], - [-11.885799, 9.997499], - [-11.8914, 9.986199], - [-11.898299, 9.9457], - [-11.901699, 9.941699], - [-11.902899, 9.9369], - [-11.9026, 9.928399], - [-11.903299, 9.9186], - [-11.9021, 9.9079], - [-11.9024, 9.9025], - [-11.9035, 9.8995], - [-11.9098, 9.893699], - [-11.911999, 9.890199], - [-11.912039, 9.889013] - ] - ], - "type": "Polygon" - }, - "id": 9, - "properties": { - "cc:admin:id": ["143"], - "cc:oBld:total": 1453, - "cc:pop:fifteen-to-twenty-four": 5758.052623097601, - "cc:pop:grid3-total": 32710.232006732844, - "cc:pop:kontur-total": 31135.240883851646, - "cc:pop:men": 15102.316558089504, - "cc:pop:sixty-plus": 1931.6845592400925, - "cc:pop:total": 31382.381540299015, - "cc:pop:under-five": 5089.807019752732, - "cc:pop:women": 16280.064982209531, - "cc:pop:women-fiften-to-forty-nine": 7905.931473387315, - "cc:pop:wp-total": 27058.46643718216, - "cc:pop:wp-total-UN": 31389.617953696623, - "cc:id": "9", - "cc:Name": "Bafodia CHC", - "cc:site": [-11.732, 9.6835], - "user:parentName": "Wara Wara Bafodia", - "user:code": "OU_226243", - "user:orgUnitId": "Jiymtq0A01x", - "user:level": "4", - "user:parentId": "XrF5AvaGcuw" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.968726, 8.341249], - [-11.968999, 8.3383], - [-11.9685, 8.3357], - [-11.9665, 8.3313], - [-11.965799, 8.328499], - [-11.965499, 8.324599], - [-11.9653, 8.3155], - [-11.9646, 8.3106], - [-11.962399, 8.305299], - [-11.961699, 8.302399], - [-11.9614, 8.2994], - [-11.9612, 8.283], - [-11.9614, 8.278999], - [-11.962, 8.276299], - [-11.965499, 8.2686], - [-11.967179, 8.265661], - [-11.964436, 8.263466], - [-11.964121, 8.264022], - [-11.963343, 8.264639], - [-11.96153, 8.265461], - [-11.960618, 8.26543], - [-11.959043, 8.268157], - [-11.952388, 8.268158], - [-11.952082, 8.265417], - [-11.947916, 8.262084], - [-11.944583, 8.262084], - [-11.940416, 8.264583], - [-11.932917, 8.262084], - [-11.930417, 8.257916], - [-11.931249, 8.250417], - [-11.92125, 8.249584], - [-11.918749, 8.252083], - [-11.915417, 8.253749], - [-11.914582, 8.244584], - [-11.910416, 8.241249], - [-11.904583, 8.240417], - [-11.899403, 8.252995], - [-11.896993, 8.253199], - [-11.892916, 8.247084], - [-11.891249, 8.24625], - [-11.885417, 8.245417], - [-11.882083, 8.247916], - [-11.878326, 8.247916], - [-11.877619, 8.243423], - [-11.877811, 8.241567], - [-11.879162, 8.238107], - [-11.879546, 8.236854], - [-11.87625, 8.241249], - [-11.87375, 8.23875], - [-11.873749, 8.227084], - [-11.867083, 8.227084], - [-11.864126, 8.229449], - [-11.864849, 8.230351], - [-11.865031, 8.230862], - [-11.86502, 8.231404], - [-11.864906, 8.231694], - [-11.864692, 8.23223], - [-11.863934, 8.231777], - [-11.863015, 8.230709], - [-11.862917, 8.230418], - [-11.862916, 8.232084], - [-11.857083, 8.232917], - [-11.854583, 8.235417], - [-11.853749, 8.238749], - [-11.849583, 8.239584], - [-11.848749, 8.24125], - [-11.846249, 8.247916], - [-11.827917, 8.24375], - [-11.828176, 8.242578], - [-11.82661, 8.242579], - [-11.822703, 8.249344], - [-11.81489, 8.249344], - [-11.814842, 8.249259], - [-11.816503, 8.247183], - [-11.813623, 8.247183], - [-11.812357, 8.249374], - [-11.806249, 8.247084], - [-11.801598, 8.247748], - [-11.801499, 8.2497], - [-11.8014, 8.255799], - [-11.8017, 8.2603], - [-11.802499, 8.264699], - [-11.804199, 8.268299], - [-11.8067, 8.2714], - [-11.811799, 8.276599], - [-11.8298, 8.2936], - [-11.832499, 8.296699], - [-11.833899, 8.2996], - [-11.833799, 8.303499], - [-11.831799, 8.307899], - [-11.8268, 8.312599], - [-11.8206, 8.316399], - [-11.8178, 8.318899], - [-11.8159, 8.3219], - [-11.8144, 8.3275], - [-11.8147, 8.3309], - [-11.816, 8.3353], - [-11.817899, 8.339699], - [-11.8204, 8.3437], - [-11.8262, 8.350999], - [-11.8318, 8.346399], - [-11.8443, 8.338399], - [-11.8554, 8.334499], - [-11.8596, 8.333799], - [-11.864, 8.3337], - [-11.8682, 8.3342], - [-11.877, 8.3366], - [-11.886999, 8.338099], - [-11.8945, 8.3402], - [-11.9094, 8.3418], - [-11.917, 8.3439], - [-11.925699, 8.345899], - [-11.938099, 8.351099], - [-11.9447, 8.3531], - [-11.954299, 8.356799], - [-11.960899, 8.359899], - [-11.966499, 8.3469], - [-11.968599, 8.3426], - [-11.968726, 8.341249] - ] - ], - "type": "Polygon" - }, - "id": 10, - "properties": { - "cc:admin:id": ["48"], - "cc:oBld:total": 0, - "cc:pop:fifteen-to-twenty-four": 487.79321664485894, - "cc:pop:grid3-total": 3642.0329414779117, - "cc:pop:kontur-total": 3117.2108600315923, - "cc:pop:men": 1301.7698147434367, - "cc:pop:sixty-plus": 155.6064671621982, - "cc:pop:total": 2870.3996754334376, - "cc:pop:under-five": 449.8327007882709, - "cc:pop:women": 1568.6298606900011, - "cc:pop:women-fiften-to-forty-nine": 744.7524194709488, - "cc:pop:wp-total": 3377.779563585281, - "cc:pop:wp-total-UN": 3920.331259089113, - "cc:id": "10", - "cc:Name": "Bai Largo MCHP", - "cc:site": [-11.8752, 8.2806], - "user:parentName": "Kori", - "user:code": "OU_246994", - "user:orgUnitId": "Rll4VmTDRiE", - "user:level": "4", - "user:parentId": "nV3OkyzF4US" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.019382, 8.494246], - [-11.019399, 8.493999], - [-11.019199, 8.491299], - [-11.018199, 8.4879], - [-11.013, 8.4812], - [-11.0105, 8.4768], - [-11.008299, 8.473799], - [-11.004299, 8.469799], - [-10.9965, 8.4623], - [-10.9932, 8.4597], - [-10.989299, 8.457899], - [-10.985, 8.4555], - [-10.9818, 8.4542], - [-10.9786, 8.452], - [-10.9747, 8.4479], - [-10.971799, 8.4435], - [-10.9692, 8.445399], - [-10.9671, 8.447799], - [-10.9636, 8.454799], - [-10.963199, 8.4569], - [-10.9627, 8.463099], - [-10.961299, 8.466699], - [-10.958799, 8.4691], - [-10.9543, 8.471399], - [-10.9522, 8.473099], - [-10.9485, 8.476599], - [-10.945299, 8.4805], - [-10.943599, 8.4843], - [-10.941399, 8.4887], - [-10.940899, 8.4913], - [-10.9405, 8.496599], - [-10.9396, 8.499999], - [-10.9378, 8.503599], - [-10.936499, 8.5067], - [-10.9341, 8.510999], - [-10.932299, 8.5148], - [-10.930199, 8.5175], - [-10.925499, 8.5225], - [-10.923499, 8.5252], - [-10.921569, 8.528749], - [-10.927083, 8.52875], - [-10.932082, 8.533749], - [-10.932083, 8.534304], - [-10.932534, 8.533521], - [-10.932536, 8.533521], - [-10.934583, 8.536249], - [-10.940417, 8.535417], - [-10.944582, 8.538749], - [-10.9451, 8.540816], - [-10.945185, 8.540788], - [-10.94625, 8.542916], - [-10.952082, 8.542083], - [-10.950033, 8.537983], - [-10.950512, 8.537644], - [-10.95171, 8.53588], - [-10.953674, 8.53445], - [-10.954578, 8.533486], - [-10.956142, 8.531035], - [-10.956249, 8.530824], - [-10.95625, 8.532084], - [-10.959582, 8.540416], - [-10.95875, 8.543749], - [-10.963749, 8.545416], - [-10.975016, 8.534901], - [-10.979133, 8.534901], - [-10.981249, 8.54125], - [-10.98125, 8.543749], - [-10.99125, 8.54375], - [-10.996249, 8.547083], - [-10.997082, 8.547084], - [-10.998749, 8.547917], - [-11.000417, 8.552083], - [-11.006249, 8.552083], - [-11.009583, 8.548749], - [-11.01619, 8.547281], - [-11.016, 8.5341], - [-11.0162, 8.529899], - [-11.016699, 8.5264], - [-11.019099, 8.5208], - [-11.0195, 8.518099], - [-11.019499, 8.515299], - [-11.0189, 8.5119], - [-11.017, 8.5075], - [-11.0166, 8.5051], - [-11.017, 8.502699], - [-11.0186, 8.499199], - [-11.019199, 8.4967], - [-11.019382, 8.494246] - ] - ], - "type": "Polygon" - }, - "id": 11, - "properties": { - "cc:admin:id": ["133"], - "cc:oBld:total": 535, - "cc:pop:fifteen-to-twenty-four": 323.190691701278, - "cc:pop:grid3-total": 1715.9692158394637, - "cc:pop:kontur-total": 1479.3602638635825, - "cc:pop:men": 747.048970842804, - "cc:pop:sixty-plus": 64.21281033554857, - "cc:pop:total": 1492.1004844711904, - "cc:pop:under-five": 212.1799394797818, - "cc:pop:women": 745.0515136283865, - "cc:pop:women-fiften-to-forty-nine": 381.40350203682664, - "cc:pop:wp-total": 1371.2427751704176, - "cc:pop:wp-total-UN": 1587.168359709283, - "cc:id": "11", - "cc:Name": "Baiama CHP", - "cc:site": [-10.9677, 8.5167], - "user:parentName": "Tankoro", - "user:code": "OU_233331", - "user:orgUnitId": "XtuhRhmbrJM", - "user:level": "4", - "user:parentId": "M2qEv692lS6" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.803499, 8.0258], - [-10.792699, 8.021799], - [-10.789699, 8.019599], - [-10.787, 8.0164], - [-10.784294, 8.010744], - [-10.781577, 8.010743], - [-10.778749, 8.007917], - [-10.773749, 8.010417], - [-10.767917, 8.012083], - [-10.76083, 8.011296], - [-10.762353, 8.014041], - [-10.762083, 8.014583], - [-10.759583, 8.015417], - [-10.759582, 8.016249], - [-10.758749, 8.01625], - [-10.752917, 8.01875], - [-10.74875, 8.031249], - [-10.747083, 8.03125], - [-10.746249, 8.03375], - [-10.739583, 8.040417], - [-10.739583, 8.047916], - [-10.741416, 8.050361], - [-10.742008, 8.049171], - [-10.748749, 8.052916], - [-10.749582, 8.052917], - [-10.749583, 8.057083], - [-10.750416, 8.057917], - [-10.750417, 8.05875], - [-10.755416, 8.064584], - [-10.755417, 8.071903], - [-10.7559, 8.0721], - [-10.760399, 8.074299], - [-10.7631, 8.0749], - [-10.766, 8.075099], - [-10.778899, 8.074199], - [-10.7799, 8.070999], - [-10.783699, 8.0635], - [-10.787599, 8.0585], - [-10.7888, 8.056499], - [-10.7896, 8.053499], - [-10.789799, 8.0454], - [-10.7905, 8.0419], - [-10.7924, 8.038899], - [-10.798299, 8.0326], - [-10.803499, 8.0258] - ] - ], - "type": "Polygon" - }, - "id": 12, - "properties": { - "cc:admin:id": ["90"], - "cc:oBld:total": 733, - "cc:pop:fifteen-to-twenty-four": 1242.697445181254, - "cc:pop:grid3-total": 5888.155826113624, - "cc:pop:kontur-total": 6090.8291892371635, - "cc:pop:men": 3051.7820759649803, - "cc:pop:sixty-plus": 381.30991196325334, - "cc:pop:total": 6371.0910990637385, - "cc:pop:under-five": 1008.1343170422845, - "cc:pop:women": 3319.3090230987586, - "cc:pop:women-fiften-to-forty-nine": 1681.8266896261366, - "cc:pop:wp-total": 4736.65793870066, - "cc:pop:wp-total-UN": 5485.833046380143, - "cc:id": "12", - "cc:Name": "Baiima CHP", - "cc:site": [-10.7692, 8.034], - "user:parentName": "Mandu", - "user:code": "OU_204914", - "user:orgUnitId": "c41XRVOYNJm", - "user:level": "4", - "user:parentId": "yu4N82FFeLm" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.248799, 8.8013], - [-13.2482, 8.800699], - [-13.247899, 8.7963], - [-13.2474, 8.795699], - [-13.247399, 8.794], - [-13.2468, 8.792899], - [-13.246799, 8.7899], - [-13.2465, 8.789899], - [-13.2465, 8.7851], - [-13.2463, 8.785099], - [-13.2463, 8.776501], - [-13.2465, 8.776499], - [-13.2468, 8.771499], - [-13.2476, 8.768499], - [-13.2476, 8.766], - [-13.248199, 8.764899], - [-13.2479, 8.7607], - [-13.248499, 8.759599], - [-13.248499, 8.7579], - [-13.2479, 8.756799], - [-13.247399, 8.754], - [-13.245999, 8.752899], - [-13.245399, 8.7504], - [-13.244899, 8.749899], - [-13.244599, 8.746799], - [-13.243499, 8.7451], - [-13.242899, 8.745099], - [-13.241499, 8.7435], - [-13.2399, 8.7426], - [-13.239899, 8.741], - [-13.2382, 8.738199], - [-13.2382, 8.7274], - [-13.2379, 8.7249], - [-13.2385, 8.7221], - [-13.239599, 8.720699], - [-13.2396, 8.7179], - [-13.238199, 8.7163], - [-13.237399, 8.715999], - [-13.236299, 8.714599], - [-13.2357, 8.7101], - [-13.2365, 8.708799], - [-13.237099, 8.7068], - [-13.237099, 8.7043], - [-13.236, 8.703199], - [-13.235399, 8.7018], - [-13.234299, 8.7009], - [-13.2257, 8.7006], - [-13.222917, 8.701696], - [-13.222916, 8.702083], - [-13.217917, 8.707083], - [-13.217917, 8.707916], - [-13.218257, 8.708937], - [-13.218349, 8.708884], - [-13.220026, 8.708892], - [-13.21875, 8.712082], - [-13.223749, 8.714582], - [-13.224583, 8.714583], - [-13.227916, 8.717916], - [-13.228384, 8.717917], - [-13.226385, 8.719079], - [-13.225724, 8.71951], - [-13.224112, 8.720226], - [-13.224407, 8.720351], - [-13.224895, 8.720818], - [-13.226012, 8.721481], - [-13.22893, 8.72212], - [-13.230164, 8.722667], - [-13.230187, 8.722745], - [-13.227585, 8.723766], - [-13.226448, 8.724936], - [-13.226127, 8.725412], - [-13.230416, 8.730417], - [-13.230416, 8.731249], - [-13.229908, 8.732773], - [-13.229583, 8.732765], - [-13.229582, 8.736249], - [-13.227916, 8.737083], - [-13.222083, 8.737083], - [-13.217083, 8.740417], - [-13.217083, 8.742916], - [-13.219583, 8.744583], - [-13.220417, 8.752082], - [-13.222916, 8.757082], - [-13.220417, 8.761249], - [-13.226249, 8.762917], - [-13.229582, 8.767916], - [-13.222916, 8.773749], - [-13.217917, 8.775417], - [-13.218272, 8.776485], - [-13.217242, 8.776591], - [-13.214599, 8.776516], - [-13.213481, 8.777293], - [-13.212917, 8.777473], - [-13.212917, 8.782916], - [-13.216248, 8.782917], - [-13.216249, 8.782918], - [-13.214303, 8.788107], - [-13.214372, 8.788136], - [-13.213749, 8.791249], - [-13.209583, 8.792917], - [-13.20875, 8.794582], - [-13.214582, 8.801249], - [-13.213665, 8.803086], - [-13.213554, 8.803062], - [-13.213114, 8.805262], - [-13.21245, 8.805353], - [-13.21204, 8.805838], - [-13.214203, 8.809735], - [-13.213591, 8.810512], - [-13.213426, 8.810994], - [-13.20625, 8.814583], - [-13.206249, 8.8155], - [-13.205406, 8.815497], - [-13.204369, 8.81575], - [-13.203588, 8.816518], - [-13.202812, 8.816387], - [-13.201769, 8.817541], - [-13.199954, 8.818177], - [-13.199707, 8.823235], - [-13.19625, 8.822083], - [-13.19562, 8.820512], - [-13.192685, 8.821105], - [-13.189571, 8.822506], - [-13.18941, 8.821439], - [-13.18875, 8.82125], - [-13.188749, 8.822083], - [-13.187082, 8.828749], - [-13.185416, 8.828749], - [-13.180417, 8.827917], - [-13.179582, 8.827083], - [-13.175789, 8.82925], - [-13.176434, 8.829189], - [-13.176435, 8.82919], - [-13.17603, 8.829501], - [-13.175901, 8.829613], - [-13.175756, 8.829904], - [-13.175718, 8.830021], - [-13.175637, 8.83019], - [-13.175386, 8.830407], - [-13.175074, 8.830598], - [-13.17487, 8.830636], - [-13.174763, 8.830635], - [-13.174603, 8.83061], - [-13.174523, 8.830663], - [-13.174286, 8.831144], - [-13.174141, 8.83132], - [-13.173723, 8.831388], - [-13.173459, 8.83134], - [-13.173267, 8.831139], - [-13.173037, 8.83061], - [-13.172978, 8.830488], - [-13.172715, 8.830071], - [-13.171787, 8.829763], - [-13.171689, 8.829825], - [-13.171533, 8.829942], - [-13.171335, 8.830084], - [-13.17114, 8.830132], - [-13.170417, 8.833749], - [-13.169136, 8.83375], - [-13.169082, 8.833728], - [-13.169999, 8.836899], - [-13.1702, 8.840099], - [-13.172099, 8.8407], - [-13.174599, 8.842899], - [-13.1751, 8.843999], - [-13.177099, 8.8457], - [-13.1782, 8.847599], - [-13.1799, 8.848799], - [-13.1807, 8.8488], - [-13.1826, 8.8515], - [-13.1854, 8.852899], - [-13.188499, 8.853199], - [-13.1899, 8.853999], - [-13.1924, 8.854], - [-13.195399, 8.854899], - [-13.1957, 8.855699], - [-13.198799, 8.857599], - [-13.1993, 8.858799], - [-13.202399, 8.858999], - [-13.2029, 8.858499], - [-13.205399, 8.8582], - [-13.205999, 8.858499], - [-13.2068, 8.857399], - [-13.209299, 8.8554], - [-13.2104, 8.854], - [-13.212399, 8.852899], - [-13.2137, 8.8507], - [-13.214899, 8.850399], - [-13.2149, 8.849599], - [-13.215999, 8.848799], - [-13.216, 8.847599], - [-13.217899, 8.846799], - [-13.2188, 8.845699], - [-13.221799, 8.8432], - [-13.222599, 8.843199], - [-13.2249, 8.8415], - [-13.2282, 8.840999], - [-13.230999, 8.838199], - [-13.2324, 8.835399], - [-13.235699, 8.8313], - [-13.239599, 8.828499], - [-13.2399, 8.827399], - [-13.241799, 8.825999], - [-13.2432, 8.823999], - [-13.245399, 8.8215], - [-13.2465, 8.818199], - [-13.247099, 8.8132], - [-13.2476, 8.811799], - [-13.248199, 8.8071], - [-13.248499, 8.807099], - [-13.2485, 8.8035], - [-13.248799, 8.8013] - ] - ], - "type": "Polygon" - }, - "id": 13, - "properties": { - "cc:admin:id": ["74"], - "cc:oBld:total": 651, - "cc:pop:fifteen-to-twenty-four": 2095.2421484420497, - "cc:pop:grid3-total": 14441.24729768105, - "cc:pop:kontur-total": 10514.177632717297, - "cc:pop:men": 5469.344078141585, - "cc:pop:sixty-plus": 636.6535668110108, - "cc:pop:total": 11611.784096647147, - "cc:pop:under-five": 1787.978355118748, - "cc:pop:women": 6142.440018505571, - "cc:pop:women-fiften-to-forty-nine": 3054.864823340248, - "cc:pop:wp-total": 12158.43673195105, - "cc:pop:wp-total-UN": 14087.37494007488, - "cc:id": "13", - "cc:Name": "Bailor CHP", - "cc:site": [-13.2392, 8.8219], - "user:parentName": "Lokomasama", - "user:code": "OU_254996", - "user:orgUnitId": "Eyj2kiEJ7M3", - "user:level": "4", - "user:parentId": "fRLX08WHWpL" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.34125, 8.384583], - [-12.341249, 8.377083], - [-12.340416, 8.374583], - [-12.335417, 8.367084], - [-12.335416, 8.36125], - [-12.324583, 8.360416], - [-12.321379, 8.358014], - [-12.32138, 8.358013], - [-12.328879, 8.358012], - [-12.332784, 8.351246], - [-12.328879, 8.344481], - [-12.330744, 8.34125], - [-12.333338, 8.341249], - [-12.3194, 8.3341], - [-12.311499, 8.330699], - [-12.307299, 8.329799], - [-12.2997, 8.3296], - [-12.2966, 8.329899], - [-12.293699, 8.3306], - [-12.290299, 8.3321], - [-12.2863, 8.334299], - [-12.284, 8.336199], - [-12.282099, 8.3384], - [-12.278799, 8.3436], - [-12.2762, 8.346699], - [-12.2718, 8.350199], - [-12.267899, 8.3518], - [-12.265, 8.352299], - [-12.262917, 8.352395], - [-12.262916, 8.355416], - [-12.25125, 8.35375], - [-12.249583, 8.35375], - [-12.247917, 8.355417], - [-12.24625, 8.363749], - [-12.247917, 8.365416], - [-12.255993, 8.365417], - [-12.256956, 8.367083], - [-12.263749, 8.367084], - [-12.268749, 8.372084], - [-12.267917, 8.381249], - [-12.267917, 8.384987], - [-12.267554, 8.385163], - [-12.267916, 8.38625], - [-12.262083, 8.392084], - [-12.259583, 8.397083], - [-12.269582, 8.397084], - [-12.27625, 8.395417], - [-12.277082, 8.399583], - [-12.274582, 8.399584], - [-12.267917, 8.402916], - [-12.267083, 8.404584], - [-12.267083, 8.410416], - [-12.26875, 8.410417], - [-12.270417, 8.421249], - [-12.275416, 8.420416], - [-12.276846, 8.417083], - [-12.281229, 8.417083], - [-12.285134, 8.423848], - [-12.285087, 8.423931], - [-12.290249, 8.422384], - [-12.290535, 8.421726], - [-12.292917, 8.422916], - [-12.294582, 8.422083], - [-12.29625, 8.420417], - [-12.301249, 8.419583], - [-12.302917, 8.412084], - [-12.306249, 8.407917], - [-12.312082, 8.411249], - [-12.314583, 8.40125], - [-12.321249, 8.402083], - [-12.327082, 8.401249], - [-12.331249, 8.393749], - [-12.331249, 8.392958], - [-12.330417, 8.39293], - [-12.330417, 8.387917], - [-12.338749, 8.386249], - [-12.34125, 8.384583] - ] - ], - "type": "Polygon" - }, - "id": 14, - "properties": { - "cc:admin:id": ["149"], - "cc:oBld:total": 8, - "cc:pop:fifteen-to-twenty-four": 720.5969706442598, - "cc:pop:grid3-total": 2772.762055124077, - "cc:pop:kontur-total": 4742.906814484478, - "cc:pop:men": 1787.2636965656573, - "cc:pop:sixty-plus": 248.85742878192602, - "cc:pop:total": 3850.9119066236944, - "cc:pop:under-five": 623.6611971305331, - "cc:pop:women": 2063.6482100580374, - "cc:pop:women-fiften-to-forty-nine": 1023.4325567379519, - "cc:pop:wp-total": 3412.9578705392055, - "cc:pop:wp-total-UN": 3956.8603260858476, - "cc:id": "14", - "cc:Name": "Bakeloko CHP", - "cc:site": [-12.2933, 8.3955], - "user:parentName": "Yoni", - "user:code": "OU_268228", - "user:orgUnitId": "MHAWZr2Caxw", - "user:level": "4", - "user:parentId": "NNE0YMCDZkO" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.382486, 8.343271], - [-11.382346, 8.342841], - [-11.382416, 8.342632], - [-11.382117, 8.342393], - [-11.381732, 8.341291], - [-11.38114, 8.338939], - [-11.380589, 8.338101], - [-11.379906, 8.336356], - [-11.378698, 8.334609], - [-11.377807, 8.334039], - [-11.377757, 8.333347], - [-11.377557, 8.333277], - [-11.376249, 8.334583], - [-11.371165, 8.334583], - [-11.370908, 8.333774], - [-11.370862, 8.333359], - [-11.370929, 8.332376], - [-11.370662, 8.330875], - [-11.370392, 8.329575], - [-11.369627, 8.327618], - [-11.369602, 8.326655], - [-11.369977, 8.325021], - [-11.37028, 8.324349], - [-11.370571, 8.323946], - [-11.370091, 8.323578], - [-11.368723, 8.323128], - [-11.368092, 8.323849], - [-11.367232, 8.32442], - [-11.366527, 8.324574], - [-11.365616, 8.325202], - [-11.365148, 8.325639], - [-11.364753, 8.32544], - [-11.363813, 8.324129], - [-11.363264, 8.323889], - [-11.362271, 8.323921], - [-11.361258, 8.324148], - [-11.360656, 8.324879], - [-11.360343, 8.325041], - [-11.360341, 8.32504], - [-11.359583, 8.321249], - [-11.361143, 8.316568], - [-11.367519, 8.316567], - [-11.370108, 8.312084], - [-11.372082, 8.312083], - [-11.372689, 8.304806], - [-11.371122, 8.302091], - [-11.371249, 8.30375], - [-11.367916, 8.307917], - [-11.35625, 8.308749], - [-11.352083, 8.305417], - [-11.352083, 8.305299], - [-11.352214, 8.305197], - [-11.35125, 8.30375], - [-11.351249, 8.29625], - [-11.347917, 8.292916], - [-11.347917, 8.282084], - [-11.354582, 8.272917], - [-11.357647, 8.273194], - [-11.35795, 8.27267], - [-11.354799, 8.26721], - [-11.354582, 8.269583], - [-11.345417, 8.269584], - [-11.343749, 8.271249], - [-11.342794, 8.27125], - [-11.342778, 8.271267], - [-11.341701, 8.270311], - [-11.341802, 8.270137], - [-11.341249, 8.269584], - [-11.339377, 8.269209], - [-11.339343, 8.269603], - [-11.33877, 8.271566], - [-11.337944, 8.27335], - [-11.337075, 8.274253], - [-11.336442, 8.275972], - [-11.3356, 8.276173], - [-11.335417, 8.278328], - [-11.334512, 8.281114], - [-11.333949, 8.284468], - [-11.333312, 8.286514], - [-11.332507, 8.291675], - [-11.332534, 8.294865], - [-11.331917, 8.296144], - [-11.331256, 8.298764], - [-11.331086, 8.298904], - [-11.331078, 8.29857], - [-11.330885, 8.298549], - [-11.330148, 8.300423], - [-11.330283, 8.300604], - [-11.330427, 8.300366], - [-11.330602, 8.300413], - [-11.330868, 8.300199], - [-11.330869, 8.300199], - [-11.330828, 8.300963], - [-11.330486, 8.301747], - [-11.330485, 8.301747], - [-11.330123, 8.301083], - [-11.330041, 8.301169], - [-11.329999, 8.302483], - [-11.32983, 8.303006], - [-11.329796, 8.305267], - [-11.329572, 8.306061], - [-11.329709, 8.30583], - [-11.329887, 8.305968], - [-11.329934, 8.305784], - [-11.329935, 8.305785], - [-11.329959, 8.306039], - [-11.329709, 8.306651], - [-11.329622, 8.307575], - [-11.328865, 8.310731], - [-11.329195, 8.311442], - [-11.330275, 8.312403], - [-11.330742, 8.313097], - [-11.330417, 8.313749], - [-11.331235, 8.314023], - [-11.331418, 8.31478], - [-11.331479, 8.316023], - [-11.331428, 8.316368], - [-11.331091, 8.316901], - [-11.330894, 8.317377], - [-11.331011, 8.317909], - [-11.331009, 8.31791], - [-11.330751, 8.317624], - [-11.3303, 8.318806], - [-11.329342, 8.32028], - [-11.329983, 8.320299], - [-11.330623, 8.320324], - [-11.330821, 8.319893], - [-11.332916, 8.320416], - [-11.332917, 8.322083], - [-11.333618, 8.322433], - [-11.333948, 8.322281], - [-11.338749, 8.327083], - [-11.33875, 8.331249], - [-11.347917, 8.32625], - [-11.349582, 8.330417], - [-11.345417, 8.336249], - [-11.35375, 8.335417], - [-11.35625, 8.337916], - [-11.357917, 8.337917], - [-11.36125, 8.342084], - [-11.362083, 8.342083], - [-11.365416, 8.339583], - [-11.365507, 8.33904], - [-11.367023, 8.336415], - [-11.371843, 8.336415], - [-11.372441, 8.337696], - [-11.372792, 8.339255], - [-11.380168, 8.339256], - [-11.382486, 8.343271] - ] - ], - "type": "Polygon" - }, - "id": 15, - "properties": { - "cc:admin:id": ["142"], - "cc:oBld:total": 229, - "cc:pop:fifteen-to-twenty-four": 371.08245753873337, - "cc:pop:grid3-total": 2058.361784539687, - "cc:pop:kontur-total": 2112.1845156239906, - "cc:pop:men": 999.3939836292119, - "cc:pop:sixty-plus": 119.46596262748295, - "cc:pop:total": 1963.6688789886214, - "cc:pop:under-five": 308.03306759672745, - "cc:pop:women": 964.2748953594095, - "cc:pop:women-fiften-to-forty-nine": 489.54842016621643, - "cc:pop:wp-total": 1819.8481094348435, - "cc:pop:wp-total-UN": 2113.4001678743434, - "cc:id": "15", - "cc:Name": "Bambara MCHP", - "cc:site": [-11.3454, 8.3164], - "user:parentName": "Wandor", - "user:code": "OU_222679", - "user:orgUnitId": "mUuCjQWMaOc", - "user:level": "4", - "user:parentId": "X7dWcGerQIm" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.203389, 7.969963], - [-12.202199, 7.969799], - [-12.1941, 7.9662], - [-12.1886, 7.9629], - [-12.1868, 7.9614], - [-12.1836, 7.956], - [-12.181799, 7.952099], - [-12.180199, 7.949699], - [-12.1783, 7.9475], - [-12.1755, 7.9447], - [-12.1725, 7.9424], - [-12.168799, 7.940999], - [-12.164799, 7.940599], - [-12.1576, 7.9405], - [-12.1536, 7.94], - [-12.148299, 7.938099], - [-12.1455, 7.938], - [-12.143, 7.938799], - [-12.142899, 7.9448], - [-12.141799, 7.949099], - [-12.139699, 7.952099], - [-12.136899, 7.9541], - [-12.1314, 7.956499], - [-12.125643, 7.957083], - [-12.130416, 7.957084], - [-12.130416, 7.97208], - [-12.130415, 7.972084], - [-12.129583, 7.972084], - [-12.128386, 7.976274], - [-12.12865, 7.976727], - [-12.128978, 7.97696], - [-12.130958, 7.976875], - [-12.131603, 7.977165], - [-12.132014, 7.977595], - [-12.132402, 7.978676], - [-12.132696, 7.980943], - [-12.1326, 7.982008], - [-12.132266, 7.982335], - [-12.13029, 7.982556], - [-12.129363, 7.983159], - [-12.129152, 7.983461], - [-12.129105, 7.984019], - [-12.129433, 7.984972], - [-12.129339, 7.985913], - [-12.128905, 7.986541], - [-12.127896, 7.989166], - [-12.12718, 7.990189], - [-12.126229, 7.990997], - [-12.126145, 7.992163], - [-12.124821, 7.993684], - [-12.123873, 7.994499], - [-12.123479, 7.994675], - [-12.123117, 7.994632], - [-12.12274, 7.994404], - [-12.121608, 7.993], - [-12.121284, 7.992804], - [-12.120557, 7.992705], - [-12.119578, 7.992798], - [-12.117754, 7.993716], - [-12.116101, 7.995881], - [-12.115442, 7.99748], - [-12.113665, 8.000575], - [-12.112146, 8.001976], - [-12.111536, 8.003752], - [-12.111087, 8.004492], - [-12.110029, 8.004978], - [-12.109107, 8.005649], - [-12.108545, 8.00584], - [-12.10875, 8.006249], - [-12.110884, 8.00625], - [-12.110544, 8.006518], - [-12.109571, 8.007872], - [-12.109776, 8.009003], - [-12.110034, 8.009305], - [-12.110872, 8.009754], - [-12.112092, 8.01101], - [-12.112076, 8.011321], - [-12.112491, 8.012106], - [-12.112164, 8.013268], - [-12.112284, 8.014467], - [-12.112823, 8.015446], - [-12.112899, 8.016325], - [-12.113404, 8.018008], - [-12.113868, 8.018561], - [-12.1145, 8.018617], - [-12.114997, 8.019544], - [-12.11498, 8.020038], - [-12.113338, 8.022633], - [-12.111322, 8.024966], - [-12.110152, 8.027208], - [-12.10899, 8.028392], - [-12.108195, 8.028195], - [-12.107399, 8.029286], - [-12.106873, 8.029685], - [-12.107302, 8.030329], - [-12.106718, 8.030872], - [-12.104076, 8.034606], - [-12.103111, 8.034864], - [-12.103292, 8.035695], - [-12.102578, 8.036932], - [-12.101599, 8.037607], - [-12.099869, 8.037917], - [-12.097917, 8.037917], - [-12.09625, 8.040417], - [-12.096445, 8.040806], - [-12.097055, 8.040748], - [-12.097685, 8.043948], - [-12.098332, 8.049763], - [-12.10102, 8.061082], - [-12.1016, 8.064384], - [-12.102413, 8.072514], - [-12.10218, 8.075061], - [-12.100323, 8.081811], - [-12.099542, 8.083685], - [-12.097867, 8.0861], - [-12.1011, 8.0868], - [-12.1064, 8.088999], - [-12.109899, 8.089299], - [-12.112499, 8.088899], - [-12.116799, 8.0867], - [-12.12, 8.085299], - [-12.125099, 8.0828], - [-12.131, 8.081299], - [-12.135399, 8.0791], - [-12.1386, 8.077799], - [-12.1429, 8.075399], - [-12.151199, 8.0716], - [-12.157099, 8.0701], - [-12.1624, 8.067899], - [-12.168299, 8.0664], - [-12.1736, 8.064199], - [-12.1787, 8.062999], - [-12.183899, 8.0604], - [-12.187099, 8.0591], - [-12.188475, 8.058358], - [-12.188393, 8.057839], - [-12.187954, 8.056952], - [-12.187996, 8.056273], - [-12.187848, 8.055758], - [-12.187951, 8.055513], - [-12.188869, 8.054961], - [-12.189686, 8.054104], - [-12.190388, 8.053663], - [-12.191091, 8.05366], - [-12.192834, 8.054918], - [-12.194088, 8.055232], - [-12.194582, 8.05375], - [-12.191249, 8.047917], - [-12.189582, 8.047084], - [-12.182916, 8.047083], - [-12.182083, 8.044583], - [-12.189582, 8.03625], - [-12.182083, 8.03125], - [-12.181249, 8.031249], - [-12.178749, 8.027917], - [-12.175417, 8.026249], - [-12.175417, 8.025416], - [-12.181249, 8.023749], - [-12.186249, 8.019584], - [-12.177917, 8.017083], - [-12.175417, 8.009584], - [-12.175417, 8.00875], - [-12.185416, 8.010416], - [-12.18375, 8.00125], - [-12.187082, 7.997916], - [-12.186475, 7.993656], - [-12.185639, 7.993728], - [-12.182083, 7.98875], - [-12.187189, 7.985831], - [-12.184301, 7.980826], - [-12.188206, 7.974061], - [-12.187546, 7.972917], - [-12.192082, 7.972916], - [-12.19375, 7.97125], - [-12.201951, 7.971995], - [-12.203389, 7.969963] - ] - ], - "type": "Polygon" - }, - "id": 16, - "properties": { - "cc:admin:id": ["16"], - "cc:oBld:total": 80, - "cc:pop:fifteen-to-twenty-four": 531.4940646991064, - "cc:pop:grid3-total": 2208.1713948348747, - "cc:pop:kontur-total": 3154.1724797194047, - "cc:pop:men": 1456.6756684365866, - "cc:pop:sixty-plus": 173.90049377757987, - "cc:pop:total": 3057.2972428605276, - "cc:pop:under-five": 489.84806084322383, - "cc:pop:women": 1600.6215744239412, - "cc:pop:women-fiften-to-forty-nine": 816.5107985766967, - "cc:pop:wp-total": 2962.5150810582186, - "cc:pop:wp-total-UN": 3434.3890928046176, - "cc:id": "16", - "cc:Name": "Bambuibu Tommy MCHP", - "cc:site": [-12.1625, 7.9794], - "user:parentName": "Dasse", - "user:code": "OU_247021", - "user:orgUnitId": "aSfF9kuNINJ", - "user:level": "4", - "user:parentId": "RndxKqQGzUl" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.738399, 7.575499], - [-11.731, 7.5715], - [-11.727199, 7.5681], - [-11.721199, 7.5697], - [-11.7136, 7.571099], - [-11.7078, 7.573099], - [-11.704999, 7.5737], - [-11.702099, 7.573999], - [-11.6978, 7.5739], - [-11.693599, 7.573099], - [-11.686, 7.5695], - [-11.683099, 7.567199], - [-11.680699, 7.564299], - [-11.6699, 7.5479], - [-11.665999, 7.543799], - [-11.662599, 7.541199], - [-11.653699, 7.535399], - [-11.649699, 7.533699], - [-11.6454, 7.5329], - [-11.641, 7.5327], - [-11.636599, 7.5328], - [-11.6323, 7.533299], - [-11.629499, 7.5341], - [-11.625799, 7.5363], - [-11.6178, 7.542299], - [-11.6144, 7.546499], - [-11.6108, 7.549599], - [-11.603799, 7.5529], - [-11.6011, 7.5552], - [-11.598799, 7.559], - [-11.594699, 7.5687], - [-11.590999, 7.581], - [-11.588899, 7.5845], - [-11.586099, 7.5876], - [-11.581699, 7.591], - [-11.5661, 7.596799], - [-11.5589, 7.5963], - [-11.554, 7.5968], - [-11.551, 7.5982], - [-11.5485, 7.601], - [-11.5475, 7.603899], - [-11.5471, 7.606899], - [-11.5472, 7.6166], - [-11.547699, 7.623199], - [-11.548299, 7.627999], - [-11.551199, 7.639099], - [-11.551399, 7.643599], - [-11.5507, 7.647299], - [-11.5491, 7.650499], - [-11.5461, 7.653599], - [-11.541199, 7.656399], - [-11.535899, 7.6576], - [-11.5211, 7.665099], - [-11.511399, 7.6728], - [-11.498799, 7.6801], - [-11.4902, 7.686999], - [-11.482899, 7.6921], - [-11.4744, 7.699199], - [-11.4691, 7.702099], - [-11.4644, 7.703899], - [-11.4578, 7.703999], - [-11.453899, 7.702599], - [-11.450599, 7.700099], - [-11.4477, 7.6971], - [-11.441099, 7.6885], - [-11.437799, 7.6867], - [-11.4344, 7.6866], - [-11.4315, 7.687699], - [-11.428899, 7.6901], - [-11.4256, 7.6927], - [-11.427799, 7.6969], - [-11.428299, 7.699799], - [-11.428499, 7.7042], - [-11.4281, 7.708599], - [-11.426999, 7.7125], - [-11.4199, 7.724999], - [-11.418499, 7.7286], - [-11.417799, 7.7326], - [-11.4174, 7.740899], - [-11.4169, 7.744999], - [-11.4147, 7.754399], - [-11.4134, 7.762299], - [-11.4112, 7.769499], - [-11.4106, 7.775], - [-11.411099, 7.781099], - [-11.412899, 7.786899], - [-11.4171, 7.7954], - [-11.421099, 7.802699], - [-11.424299, 7.808], - [-11.4253, 7.812799], - [-11.429899, 7.814899], - [-11.433599, 7.815999], - [-11.438299, 7.815699], - [-11.4419, 7.814299], - [-11.448899, 7.8097], - [-11.4564, 7.806099], - [-11.4592, 7.805299], - [-11.474299, 7.8025], - [-11.476499, 7.802], - [-11.4844, 7.798299], - [-11.4864, 7.796799], - [-11.4882, 7.794999], - [-11.4902, 7.792299], - [-11.492999, 7.787], - [-11.4952, 7.784199], - [-11.5064, 7.773099], - [-11.509499, 7.7707], - [-11.513199, 7.7688], - [-11.516, 7.766899], - [-11.5189, 7.763899], - [-11.5203, 7.761799], - [-11.5221, 7.7581], - [-11.524799, 7.7555], - [-11.5281, 7.753899], - [-11.5317, 7.751899], - [-11.5355, 7.750199], - [-11.5384, 7.748099], - [-11.543799, 7.7431], - [-11.546499, 7.741], - [-11.550399, 7.739], - [-11.5533, 7.736999], - [-11.5574, 7.733099], - [-11.575799, 7.7145], - [-11.5788, 7.711099], - [-11.5814, 7.7072], - [-11.5853, 7.704499], - [-11.591999, 7.6984], - [-11.594799, 7.6963], - [-11.598599, 7.6943], - [-11.6016, 7.692199], - [-11.6049, 7.689099], - [-11.613499, 7.6804], - [-11.6163, 7.678099], - [-11.625199, 7.6733], - [-11.6284, 7.671999], - [-11.633499, 7.6695], - [-11.6387, 7.668399], - [-11.644699, 7.6658], - [-11.6474, 7.665399], - [-11.655699, 7.665], - [-11.657799, 7.6646], - [-11.663499, 7.6621], - [-11.668599, 7.661], - [-11.674599, 7.6584], - [-11.678999, 7.6575], - [-11.681399, 7.6567], - [-11.685, 7.654699], - [-11.692499, 7.6511], - [-11.696, 7.650499], - [-11.7033, 7.650299], - [-11.706799, 7.6495], - [-11.709, 7.648299], - [-11.7131, 7.644799], - [-11.716899, 7.640999], - [-11.7175, 7.637699], - [-11.7193, 7.631699], - [-11.7197, 7.627499], - [-11.7201, 7.614399], - [-11.7206, 7.611599], - [-11.722699, 7.6059], - [-11.7261, 7.601299], - [-11.735799, 7.5918], - [-11.738699, 7.5886], - [-11.740799, 7.584899], - [-11.741399, 7.580899], - [-11.740799, 7.5789], - [-11.738399, 7.575499] - ] - ], - "type": "Polygon" - }, - "id": 17, - "properties": { - "cc:admin:id": ["145"], - "cc:oBld:total": 667, - "cc:pop:fifteen-to-twenty-four": 3265.7914507417813, - "cc:pop:grid3-total": 25996.434710934835, - "cc:pop:kontur-total": 19009.741995927936, - "cc:pop:men": 8636.580699405966, - "cc:pop:sixty-plus": 1326.3116628199655, - "cc:pop:total": 17901.467244250038, - "cc:pop:under-five": 3059.1391947507095, - "cc:pop:women": 9264.886544844077, - "cc:pop:women-fiften-to-forty-nine": 4404.745349863992, - "cc:pop:wp-total": 15333.042909719241, - "cc:pop:wp-total-UN": 17788.544805614776, - "cc:id": "17", - "cc:Name": "Bandajuma Clinic CHC", - "cc:site": [-11.6522, 7.5724], - "user:parentName": "Sowa", - "user:code": "OU_260387", - "user:orgUnitId": "FNnj3jKGS7i", - "user:level": "4", - "user:parentId": "NqWaKXcg01b" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.494199, 7.249799], - [-11.490999, 7.246199], - [-11.487, 7.2428], - [-11.4831, 7.2411], - [-11.480199, 7.2407], - [-11.4691, 7.240799], - [-11.464599, 7.240399], - [-11.462499, 7.239699], - [-11.4588, 7.2377], - [-11.455699, 7.236399], - [-11.4521, 7.2345], - [-11.449499, 7.233699], - [-11.446899, 7.233299], - [-11.4392, 7.2317], - [-11.434, 7.2368], - [-11.4298, 7.245699], - [-11.428799, 7.250799], - [-11.4271, 7.253999], - [-11.4246, 7.256599], - [-11.4224, 7.258299], - [-11.4181, 7.260399], - [-11.4156, 7.262099], - [-11.4125, 7.264999], - [-11.409699, 7.2679], - [-11.408099, 7.2702], - [-11.405399, 7.2754], - [-11.401299, 7.2807], - [-11.3981, 7.286599], - [-11.393899, 7.2919], - [-11.391099, 7.2971], - [-11.388999, 7.2999], - [-11.384, 7.305199], - [-11.3819, 7.308199], - [-11.3802, 7.311999], - [-11.378199, 7.3155], - [-11.376799, 7.3187], - [-11.375499, 7.3208], - [-11.371799, 7.3254], - [-11.3685, 7.331299], - [-11.366799, 7.3334], - [-11.3618, 7.338699], - [-11.3598, 7.341699], - [-11.358399, 7.3448], - [-11.3561, 7.349099], - [-11.354799, 7.3522], - [-11.3524, 7.356499], - [-11.351099, 7.3597], - [-11.3487, 7.363899], - [-11.347399, 7.3671], - [-11.3454, 7.371199], - [-11.344699, 7.374], - [-11.344199, 7.3803], - [-11.342799, 7.3859], - [-11.342, 7.391899], - [-11.344, 7.3939], - [-11.3492, 7.398], - [-11.353799, 7.408099], - [-11.355493, 7.415418], - [-11.357134, 7.415018], - [-11.359575, 7.414833], - [-11.359804, 7.414532], - [-11.36101, 7.413961], - [-11.362264, 7.414295], - [-11.363094, 7.415002], - [-11.364111, 7.4155], - [-11.365329, 7.414315], - [-11.366261, 7.414314], - [-11.366401, 7.413991], - [-11.365446, 7.413597], - [-11.366192, 7.412673], - [-11.366891, 7.412672], - [-11.367334, 7.41228], - [-11.370063, 7.409019], - [-11.374353, 7.404395], - [-11.37587, 7.403215], - [-11.377619, 7.402753], - [-11.381188, 7.403351], - [-11.383352, 7.402718], - [-11.385875, 7.403979], - [-11.38626, 7.403966], - [-11.386312, 7.404133], - [-11.386866, 7.404328], - [-11.386925, 7.404505], - [-11.388412, 7.405247], - [-11.389979, 7.403041], - [-11.390153, 7.402837], - [-11.390461, 7.402958], - [-11.390985, 7.402531], - [-11.390945, 7.401737], - [-11.39154, 7.401116], - [-11.391372, 7.401081], - [-11.391371, 7.40108], - [-11.392524, 7.399456], - [-11.393687, 7.398903], - [-11.394783, 7.39816], - [-11.395287, 7.397284], - [-11.396758, 7.396534], - [-11.397611, 7.396672], - [-11.398018, 7.396475], - [-11.398542, 7.395886], - [-11.398316, 7.395712], - [-11.399616, 7.393896], - [-11.400938, 7.391371], - [-11.402769, 7.389469], - [-11.40358, 7.388041], - [-11.404325, 7.387526], - [-11.405265, 7.385566], - [-11.405708, 7.384942], - [-11.406272, 7.384623], - [-11.40629, 7.384087], - [-11.406029, 7.383537], - [-11.406087, 7.382954], - [-11.40706, 7.380819], - [-11.406891, 7.380097], - [-11.406937, 7.37771], - [-11.407031, 7.377131], - [-11.407526, 7.376334], - [-11.407719, 7.376333], - [-11.409909, 7.374367], - [-11.410784, 7.374567], - [-11.411873, 7.373854], - [-11.412121, 7.373414], - [-11.412376, 7.373397], - [-11.412549, 7.372693], - [-11.412545, 7.371104], - [-11.411322, 7.372616], - [-11.411168, 7.373147], - [-11.410633, 7.373867], - [-11.410258, 7.37383], - [-11.410324, 7.373302], - [-11.411201, 7.372216], - [-11.411754, 7.371243], - [-11.412182, 7.371148], - [-11.412142, 7.370846], - [-11.41264, 7.369681], - [-11.412493, 7.368619], - [-11.412723, 7.367445], - [-11.412402, 7.366394], - [-11.412736, 7.366144], - [-11.413626, 7.36428], - [-11.414348, 7.363471], - [-11.416799, 7.361394], - [-11.4169, 7.360568], - [-11.417788, 7.360721], - [-11.418061, 7.359897], - [-11.418477, 7.359585], - [-11.418933, 7.35866], - [-11.417897, 7.358302], - [-11.418122, 7.357802], - [-11.417602, 7.356694], - [-11.41729, 7.355532], - [-11.417236, 7.354364], - [-11.417394, 7.353832], - [-11.418499, 7.354716], - [-11.418503, 7.354707], - [-11.418932, 7.354574], - [-11.419427, 7.353264], - [-11.419776, 7.353226], - [-11.42005, 7.352699], - [-11.419642, 7.352725], - [-11.419363, 7.352325], - [-11.420005, 7.350547], - [-11.420407, 7.350299], - [-11.421024, 7.350244], - [-11.421765, 7.349813], - [-11.421718, 7.346925], - [-11.421852, 7.346355], - [-11.422396, 7.345613], - [-11.422813, 7.345329], - [-11.423353, 7.344436], - [-11.424075, 7.343674], - [-11.424507, 7.343484], - [-11.425092, 7.341006], - [-11.42507, 7.34016], - [-11.426262, 7.335715], - [-11.426089, 7.333567], - [-11.426818, 7.330981], - [-11.427722, 7.330092], - [-11.42855, 7.329805], - [-11.429182, 7.329149], - [-11.429994, 7.328939], - [-11.43086, 7.32945], - [-11.431483, 7.328909], - [-11.432669, 7.329224], - [-11.433262, 7.328728], - [-11.433839, 7.328833], - [-11.43346, 7.329346], - [-11.433642, 7.329752], - [-11.434767, 7.330099], - [-11.43691, 7.329557], - [-11.440511, 7.329631], - [-11.44264, 7.330084], - [-11.445573, 7.330159], - [-11.449797, 7.327355], - [-11.450831, 7.324778], - [-11.452913, 7.322427], - [-11.454509, 7.321084], - [-11.455847, 7.318868], - [-11.457356, 7.318304], - [-11.459582, 7.318749], - [-11.460227, 7.319392], - [-11.461601, 7.31859], - [-11.461956, 7.31776], - [-11.462357, 7.317522], - [-11.4629, 7.313452], - [-11.463801, 7.311378], - [-11.463339, 7.308792], - [-11.466028, 7.306442], - [-11.466486, 7.305417], - [-11.470245, 7.305416], - [-11.473207, 7.302484], - [-11.472357, 7.299513], - [-11.472878, 7.298192], - [-11.472924, 7.297575], - [-11.472605, 7.296836], - [-11.47186, 7.296173], - [-11.471376, 7.296088], - [-11.471115, 7.295178], - [-11.470903, 7.295162], - [-11.470668, 7.294778], - [-11.470432, 7.293731], - [-11.470591, 7.293346], - [-11.470199, 7.291976], - [-11.470201, 7.291976], - [-11.472083, 7.292917], - [-11.472917, 7.292916], - [-11.475525, 7.292394], - [-11.473999, 7.289499], - [-11.471799, 7.286499], - [-11.4678, 7.2833], - [-11.463699, 7.281199], - [-11.4608, 7.278599], - [-11.4595, 7.275199], - [-11.4596, 7.2725], - [-11.4605, 7.2701], - [-11.463499, 7.2674], - [-11.468, 7.264999], - [-11.4739, 7.260599], - [-11.4778, 7.258699], - [-11.482099, 7.2563], - [-11.486, 7.254599], - [-11.493299, 7.2505], - [-11.494199, 7.249799] - ] - ], - "type": "Polygon" - }, - "id": 20, - "properties": { - "cc:admin:id": ["5"], - "cc:oBld:total": 451, - "cc:pop:fifteen-to-twenty-four": 2302.162580999356, - "cc:pop:grid3-total": 6976.992279103363, - "cc:pop:kontur-total": 12502.971609237218, - "cc:pop:men": 6174.021496733463, - "cc:pop:sixty-plus": 960.9078936121822, - "cc:pop:total": 12701.934872788795, - "cc:pop:under-five": 2161.954506119192, - "cc:pop:women": 6527.913376055333, - "cc:pop:women-fiften-to-forty-nine": 3093.5619727327085, - "cc:pop:wp-total": 10921.091529753821, - "cc:pop:wp-total-UN": 12660.575320026766, - "cc:id": "20", - "cc:Name": "Bandasuma CHP", - "cc:site": [-11.4089, 7.3691], - "user:parentName": "Barri", - "user:code": "OU_260436", - "user:orgUnitId": "uPshwz3B3Uu", - "user:level": "4", - "user:parentId": "RzKeCma9qb1" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.858113, 8.680455], - [-10.857234, 8.679056], - [-10.857149, 8.678866], - [-10.857417, 8.678], - [-10.85744, 8.677177], - [-10.856967, 8.676024], - [-10.856804, 8.676467], - [-10.856267, 8.676992], - [-10.853907, 8.678501], - [-10.853157, 8.679013], - [-10.850417, 8.677916], - [-10.850416, 8.66875], - [-10.83875, 8.667084], - [-10.842082, 8.674582], - [-10.835417, 8.674583], - [-10.833749, 8.677082], - [-10.832083, 8.675416], - [-10.832083, 8.671545], - [-10.83219, 8.671467], - [-10.832653, 8.671207], - [-10.833078, 8.670689], - [-10.83316, 8.669948], - [-10.833526, 8.668968], - [-10.833575, 8.667924], - [-10.833417, 8.667189], - [-10.832116, 8.665977], - [-10.831188, 8.665643], - [-10.829987, 8.66566], - [-10.829081, 8.666721], - [-10.828829, 8.666139], - [-10.827788, 8.665353], - [-10.827431, 8.665281], - [-10.826916, 8.664524], - [-10.826631, 8.664071], - [-10.824582, 8.664583], - [-10.822916, 8.662917], - [-10.814583, 8.667916], - [-10.812982, 8.667383], - [-10.813161, 8.665213], - [-10.812666, 8.662851], - [-10.81265, 8.661411], - [-10.812965, 8.660255], - [-10.80625, 8.659583], - [-10.803749, 8.655417], - [-10.800417, 8.655417], - [-10.796249, 8.659584], - [-10.790417, 8.659583], - [-10.787916, 8.655417], - [-10.780417, 8.657083], - [-10.780416, 8.650417], - [-10.777238, 8.647239], - [-10.77563, 8.648534], - [-10.774846, 8.649648], - [-10.77445, 8.65055], - [-10.774615, 8.651324], - [-10.774486, 8.652087], - [-10.773628, 8.653631], - [-10.772964, 8.655311], - [-10.771928, 8.656702], - [-10.771638, 8.658049], - [-10.771434, 8.658157], - [-10.76875, 8.657084], - [-10.766249, 8.65375], - [-10.764583, 8.653749], - [-10.763749, 8.652084], - [-10.760417, 8.650417], - [-10.759227, 8.649624], - [-10.7558, 8.656399], - [-10.7552, 8.659099], - [-10.7551, 8.662099], - [-10.755499, 8.664999], - [-10.756499, 8.667599], - [-10.7604, 8.6726], - [-10.7618, 8.675], - [-10.7627, 8.6777], - [-10.763, 8.6807], - [-10.763, 8.694799], - [-10.7628, 8.6993], - [-10.7661, 8.7035], - [-10.770099, 8.707599], - [-10.773599, 8.710499], - [-10.779999, 8.713899], - [-10.785399, 8.718099], - [-10.789299, 8.719999], - [-10.7921, 8.722], - [-10.7981, 8.7276], - [-10.804499, 8.734099], - [-10.8068, 8.7368], - [-10.8091, 8.740099], - [-10.8114, 8.7414], - [-10.817899, 8.742299], - [-10.822499, 8.7387], - [-10.826, 8.7357], - [-10.828299, 8.7347], - [-10.8309, 8.7346], - [-10.834599, 8.735399], - [-10.8346, 8.7189], - [-10.8353, 8.715399], - [-10.8397, 8.706999], - [-10.8439, 8.701699], - [-10.847099, 8.6958], - [-10.8512, 8.690599], - [-10.854, 8.685299], - [-10.856199, 8.6825], - [-10.858113, 8.680455] - ] - ], - "type": "Polygon" - }, - "id": 21, - "properties": { - "cc:admin:id": ["24"], - "cc:oBld:total": 121, - "cc:pop:fifteen-to-twenty-four": 241.30029865681206, - "cc:pop:grid3-total": 1664.9845527254713, - "cc:pop:kontur-total": 1180.2549614352545, - "cc:pop:men": 583.3310630045479, - "cc:pop:sixty-plus": 52.15945897586505, - "cc:pop:total": 1171.6682410864169, - "cc:pop:under-five": 181.06200959112533, - "cc:pop:women": 588.3371780818688, - "cc:pop:women-fiften-to-forty-nine": 292.73616115124656, - "cc:pop:wp-total": 1301.5302284374225, - "cc:pop:wp-total-UN": 1501.6819082828908, - "cc:id": "21", - "cc:Name": "Bandasuma Fiama MCHP", - "cc:site": [-10.7983, 8.6966], - "user:parentName": "Fiama", - "user:code": "OU_233360", - "user:orgUnitId": "aF6iPGbrcRk", - "user:level": "4", - "user:parentId": "CF243RPvNY7" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.77855, 8.554596], - [-10.779699, 8.552099], - [-10.780099, 8.548], - [-10.7794, 8.5446], - [-10.7771, 8.5402], - [-10.775699, 8.536999], - [-10.7732, 8.5328], - [-10.7712, 8.529], - [-10.7672, 8.5239], - [-10.765899, 8.521999], - [-10.764999, 8.518899], - [-10.7647, 8.5093], - [-10.7641, 8.5045], - [-10.761899, 8.499099], - [-10.761299, 8.496399], - [-10.7605, 8.4907], - [-10.759, 8.4871], - [-10.756499, 8.483999], - [-10.7493, 8.477], - [-10.7462, 8.4747], - [-10.744468, 8.473866], - [-10.742916, 8.475417], - [-10.73375, 8.477084], - [-10.732916, 8.479584], - [-10.72875, 8.481249], - [-10.722083, 8.48125], - [-10.722082, 8.484584], - [-10.716802, 8.491371], - [-10.716801, 8.491371], - [-10.716495, 8.49033], - [-10.716002, 8.489806], - [-10.715843, 8.489377], - [-10.712083, 8.48875], - [-10.71125, 8.489584], - [-10.710416, 8.494584], - [-10.707917, 8.496249], - [-10.707082, 8.497083], - [-10.70375, 8.497084], - [-10.70375, 8.497917], - [-10.706249, 8.503749], - [-10.702083, 8.507916], - [-10.706249, 8.507917], - [-10.709582, 8.511249], - [-10.710345, 8.512393], - [-10.710249, 8.512833], - [-10.709676, 8.513866], - [-10.709548, 8.514445], - [-10.709575, 8.515416], - [-10.699583, 8.515416], - [-10.697082, 8.512084], - [-10.69125, 8.514584], - [-10.69125, 8.522916], - [-10.696116, 8.525349], - [-10.696157, 8.525509], - [-10.690417, 8.531249], - [-10.687082, 8.524584], - [-10.684583, 8.527917], - [-10.686249, 8.536249], - [-10.67875, 8.535417], - [-10.678749, 8.544583], - [-10.677083, 8.547083], - [-10.67375, 8.545416], - [-10.672082, 8.537917], - [-10.669583, 8.537917], - [-10.66625, 8.542917], - [-10.66625, 8.551249], - [-10.669582, 8.554583], - [-10.669583, 8.556249], - [-10.671249, 8.55625], - [-10.67375, 8.558749], - [-10.674583, 8.55875], - [-10.677083, 8.567083], - [-10.682916, 8.567083], - [-10.68375, 8.56375], - [-10.687916, 8.564583], - [-10.68875, 8.564584], - [-10.694583, 8.567916], - [-10.702083, 8.56375], - [-10.702271, 8.56375], - [-10.702035, 8.564272], - [-10.702293, 8.566326], - [-10.703493, 8.565102], - [-10.704236, 8.563746], - [-10.704794, 8.563644], - [-10.705452, 8.563653], - [-10.705684, 8.563756], - [-10.7068, 8.563987], - [-10.709362, 8.56561], - [-10.710308, 8.56584], - [-10.710129, 8.566688], - [-10.710106, 8.569525], - [-10.708469, 8.571823], - [-10.707508, 8.5736], - [-10.707376, 8.574355], - [-10.714583, 8.56875], - [-10.72125, 8.56625], - [-10.722916, 8.567084], - [-10.722917, 8.568749], - [-10.725417, 8.569584], - [-10.727083, 8.573749], - [-10.731249, 8.574584], - [-10.737409, 8.578432], - [-10.740733, 8.578432], - [-10.743749, 8.575416], - [-10.74375, 8.567917], - [-10.744583, 8.567916], - [-10.756249, 8.56625], - [-10.759583, 8.566249], - [-10.762916, 8.565416], - [-10.766159, 8.561363], - [-10.77044, 8.561362], - [-10.774346, 8.554597], - [-10.77855, 8.554596] - ] - ], - "type": "Polygon" - }, - "id": 22, - "properties": { - "cc:admin:id": ["125"], - "cc:oBld:total": 439, - "cc:pop:fifteen-to-twenty-four": 581.5469104026085, - "cc:pop:grid3-total": 6967.063691703277, - "cc:pop:kontur-total": 3465.046293258809, - "cc:pop:men": 1354.9835560303054, - "cc:pop:sixty-plus": 155.78554262331704, - "cc:pop:total": 2908.734552013044, - "cc:pop:under-five": 480.5132217650106, - "cc:pop:women": 1553.7509959827385, - "cc:pop:women-fiften-to-forty-nine": 752.7014185798353, - "cc:pop:wp-total": 3322.7542028259677, - "cc:pop:wp-total-UN": 3865.657967266216, - "cc:id": "22", - "cc:Name": "Bandusuma MCHP", - "cc:site": [-10.7096, 8.5268], - "user:parentName": "Soa", - "user:code": "OU_233318", - "user:orgUnitId": "t1aAdpBbDB3", - "user:level": "4", - "user:parentId": "iGHlidSFdpu" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.971799, 8.443499], - [-10.969799, 8.440099], - [-10.965199, 8.4336], - [-10.960899, 8.430499], - [-10.9563, 8.4264], - [-10.9522, 8.4224], - [-10.9486, 8.4181], - [-10.945999, 8.413399], - [-10.943499, 8.411099], - [-10.938199, 8.408199], - [-10.934, 8.4047], - [-10.9306, 8.401], - [-10.9292, 8.3987], - [-10.928499, 8.396099], - [-10.9282, 8.392499], - [-10.928299, 8.386], - [-10.925499, 8.384199], - [-10.920699, 8.380399], - [-10.9095, 8.3777], - [-10.901999, 8.375299], - [-10.897699, 8.374699], - [-10.8919, 8.3744], - [-10.886199, 8.3748], - [-10.8819, 8.3765], - [-10.8799, 8.378599], - [-10.878599, 8.3816], - [-10.8777, 8.385199], - [-10.8768, 8.392999], - [-10.8755, 8.397599], - [-10.8707, 8.409699], - [-10.869, 8.412999], - [-10.8662, 8.416299], - [-10.862899, 8.4189], - [-10.856599, 8.421799], - [-10.8532, 8.422199], - [-10.849699, 8.421399], - [-10.8445, 8.4187], - [-10.8412, 8.4162], - [-10.838299, 8.413099], - [-10.832499, 8.4051], - [-10.828399, 8.402299], - [-10.8243, 8.4011], - [-10.8214, 8.4008], - [-10.8107, 8.4006], - [-10.806299, 8.400299], - [-10.803399, 8.399799], - [-10.7973, 8.3981], - [-10.793, 8.3976], - [-10.7815, 8.397099], - [-10.7772, 8.395499], - [-10.7752, 8.393399], - [-10.773399, 8.389299], - [-10.772799, 8.386499], - [-10.771799, 8.377799], - [-10.770399, 8.3709], - [-10.7578, 8.380499], - [-10.7526, 8.387099], - [-10.7485, 8.390999], - [-10.727199, 8.4026], - [-10.723899, 8.4052], - [-10.7146, 8.414199], - [-10.7102, 8.417799], - [-10.6975, 8.424999], - [-10.6907, 8.429999], - [-10.6849, 8.4335], - [-10.691299, 8.442599], - [-10.692599, 8.445999], - [-10.692999, 8.4498], - [-10.6929, 8.462799], - [-10.692999, 8.466699], - [-10.6936, 8.468999], - [-10.6952, 8.4715], - [-10.6981, 8.473199], - [-10.7007, 8.473499], - [-10.704099, 8.4729], - [-10.708499, 8.4708], - [-10.7113, 8.470199], - [-10.7174, 8.4697], - [-10.730899, 8.4697], - [-10.7339, 8.4698], - [-10.7381, 8.4708], - [-10.7462, 8.4747], - [-10.7493, 8.477], - [-10.7565, 8.484], - [-10.758999, 8.487099], - [-10.760499, 8.490699], - [-10.761299, 8.496399], - [-10.761899, 8.499099], - [-10.7641, 8.5045], - [-10.7647, 8.5093], - [-10.764999, 8.518899], - [-10.765899, 8.521999], - [-10.7672, 8.5239], - [-10.7712, 8.529], - [-10.7732, 8.5328], - [-10.775699, 8.536999], - [-10.7771, 8.5402], - [-10.7794, 8.5446], - [-10.780099, 8.548], - [-10.7797, 8.552099], - [-10.7774, 8.557099], - [-10.785099, 8.558699], - [-10.787699, 8.559099], - [-10.792099, 8.559299], - [-10.802399, 8.5592], - [-10.8062, 8.558399], - [-10.8095, 8.556199], - [-10.8366, 8.528899], - [-10.8394, 8.526799], - [-10.8433, 8.524899], - [-10.847599, 8.5225], - [-10.8508, 8.521199], - [-10.854999, 8.5188], - [-10.8582, 8.517399], - [-10.861699, 8.5155], - [-10.8642, 8.514699], - [-10.8669, 8.5144], - [-10.869699, 8.514499], - [-10.873199, 8.515099], - [-10.881499, 8.519199], - [-10.883599, 8.520699], - [-10.885399, 8.522499], - [-10.886899, 8.524499], - [-10.888099, 8.526799], - [-10.8894, 8.5326], - [-10.8914, 8.535199], - [-10.8936, 8.5366], - [-10.901899, 8.539699], - [-10.9047, 8.5403], - [-10.9074, 8.540399], - [-10.910899, 8.5398], - [-10.913299, 8.5384], - [-10.916, 8.535999], - [-10.920399, 8.5309], - [-10.923499, 8.5252], - [-10.923514, 8.52518], - [-10.9255, 8.522499], - [-10.930199, 8.5175], - [-10.932299, 8.5148], - [-10.9341, 8.510999], - [-10.936499, 8.5067], - [-10.9378, 8.503599], - [-10.939599, 8.5], - [-10.9405, 8.496599], - [-10.940899, 8.4913], - [-10.941399, 8.4887], - [-10.943599, 8.4843], - [-10.945299, 8.4805], - [-10.948499, 8.4766], - [-10.9522, 8.473099], - [-10.9543, 8.471399], - [-10.958799, 8.4691], - [-10.961299, 8.466699], - [-10.9627, 8.463099], - [-10.963199, 8.4569], - [-10.9636, 8.454799], - [-10.9671, 8.447799], - [-10.9692, 8.445399], - [-10.971799, 8.443499] - ] - ], - "type": "Polygon" - }, - "id": 23, - "properties": { - "cc:admin:id": ["29"], - "cc:oBld:total": 2467, - "cc:pop:fifteen-to-twenty-four": 2933.938728645094, - "cc:pop:grid3-total": 29781.91189062586, - "cc:pop:kontur-total": 15238.904225477727, - "cc:pop:men": 7352.434292307342, - "cc:pop:sixty-plus": 880.2063274329815, - "cc:pop:total": 15160.85606241763, - "cc:pop:under-five": 2365.882205221698, - "cc:pop:women": 7808.421770110286, - "cc:pop:women-fiften-to-forty-nine": 3735.6589638863634, - "cc:pop:wp-total": 12940.784695132941, - "cc:pop:wp-total-UN": 14992.14577223376, - "cc:id": "23", - "cc:Name": "Baoma MCHP", - "cc:site": [-10.7867, 8.4249], - "user:parentName": "Gbane", - "user:code": "OU_233393", - "user:orgUnitId": "t52CJEyLhch", - "user:level": "4", - "user:parentId": "ajILkI0cfxn" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.337771, 8.041983], - [-11.337523, 8.040717], - [-11.336403, 8.039802], - [-11.335309, 8.037896], - [-11.334708, 8.037513], - [-11.334644, 8.036542], - [-11.3351, 8.035871], - [-11.336139, 8.035368], - [-11.336681, 8.034867], - [-11.337507, 8.03302], - [-11.337733, 8.03125], - [-11.332083, 8.03125], - [-11.330416, 8.032083], - [-11.32375, 8.032083], - [-11.322916, 8.031249], - [-11.314582, 8.027084], - [-11.312082, 8.027917], - [-11.302917, 8.029584], - [-11.302287, 8.033358], - [-11.30228, 8.033361], - [-11.303749, 8.042917], - [-11.298749, 8.047083], - [-11.29135, 8.047084], - [-11.287713, 8.053384], - [-11.291618, 8.06015], - [-11.287713, 8.066915], - [-11.291618, 8.073681], - [-11.287713, 8.080446], - [-11.291618, 8.087212], - [-11.291226, 8.087892], - [-11.295416, 8.092084], - [-11.295417, 8.099968], - [-11.29521, 8.100325], - [-11.2958, 8.100199], - [-11.3003, 8.098199], - [-11.303, 8.097599], - [-11.3098, 8.096699], - [-11.318199, 8.0929], - [-11.3212, 8.090599], - [-11.325399, 8.0866], - [-11.328299, 8.0842], - [-11.3309, 8.082899], - [-11.333699, 8.0824], - [-11.334144, 8.082391], - [-11.334107, 8.08061], - [-11.334622, 8.078591], - [-11.3349, 8.075831], - [-11.33438, 8.073881], - [-11.333898, 8.07353], - [-11.334669, 8.071936], - [-11.33457, 8.069342], - [-11.334697, 8.067084], - [-11.335921, 8.067083], - [-11.335985, 8.064427], - [-11.336992, 8.053273], - [-11.337233, 8.05178], - [-11.335955, 8.051524], - [-11.336339, 8.050207], - [-11.336558, 8.048148], - [-11.336622, 8.047367], - [-11.336296, 8.045937], - [-11.336651, 8.042824], - [-11.337771, 8.041983] - ] - ], - "type": "Polygon" - }, - "id": 24, - "properties": { - "cc:admin:id": ["50"], - "cc:oBld:total": 308, - "cc:pop:fifteen-to-twenty-four": 554.8341515535055, - "cc:pop:grid3-total": 2105.295860800274, - "cc:pop:kontur-total": 2930.9685559350355, - "cc:pop:men": 1611.3344939894089, - "cc:pop:sixty-plus": 175.61138385116848, - "cc:pop:total": 2935.782141618696, - "cc:pop:under-five": 444.2635949905116, - "cc:pop:women": 1324.4476476292873, - "cc:pop:women-fiften-to-forty-nine": 671.4047081164996, - "cc:pop:wp-total": 2883.6069617534, - "cc:pop:wp-total-UN": 3347.8205913177994, - "cc:id": "24", - "cc:Name": "Baoma Oil Mill CHC", - "cc:site": [-11.3282, 8.0421], - "user:parentName": "Kandu Lepiema", - "user:code": "OU_222728", - "user:orgUnitId": "Y8foq27WLti", - "user:level": "4", - "user:parentId": "K1r3uF6eZ8n" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.46625, 7.923749], - [-11.466249, 7.922084], - [-11.462083, 7.919584], - [-11.46125, 7.919583], - [-11.46125, 7.918749], - [-11.462082, 7.914584], - [-11.463179, 7.913486], - [-11.461419, 7.914036], - [-11.457662, 7.915807], - [-11.457661, 7.915806], - [-11.457349, 7.914248], - [-11.4572, 7.914317], - [-11.455737, 7.914591], - [-11.453848, 7.915178], - [-11.453548, 7.915433], - [-11.452545, 7.915608], - [-11.452321, 7.915881], - [-11.451503, 7.916293], - [-11.449464, 7.916964], - [-11.449583, 7.917084], - [-11.449582, 7.918673], - [-11.446746, 7.920087], - [-11.442634, 7.920952], - [-11.442329, 7.919739], - [-11.441531, 7.919986], - [-11.4406, 7.919849], - [-11.440245, 7.919626], - [-11.43919, 7.919725], - [-11.437446, 7.920935], - [-11.436047, 7.9212], - [-11.432534, 7.922601], - [-11.432916, 7.923749], - [-11.432994, 7.923829], - [-11.432296, 7.924153], - [-11.430306, 7.924717], - [-11.427183, 7.924836], - [-11.42717, 7.924839], - [-11.427232, 7.925375], - [-11.427579, 7.926724], - [-11.426623, 7.926663], - [-11.42607, 7.926622], - [-11.425169, 7.926066], - [-11.424607, 7.926074], - [-11.423903, 7.926234], - [-11.423146, 7.926871], - [-11.422792, 7.927716], - [-11.422672, 7.92866], - [-11.42286, 7.929106], - [-11.422844, 7.929189], - [-11.422897, 7.929214], - [-11.424218, 7.929069], - [-11.425361, 7.929196], - [-11.426401, 7.928934], - [-11.427378, 7.928976], - [-11.427143, 7.929278], - [-11.426839, 7.929378], - [-11.426359, 7.929249], - [-11.425733, 7.929839], - [-11.425403, 7.93057], - [-11.424841, 7.930999], - [-11.426249, 7.93875], - [-11.425416, 7.940417], - [-11.41875, 7.942917], - [-11.417996, 7.95196], - [-11.412356, 7.951961], - [-11.409041, 7.957703], - [-11.409582, 7.960417], - [-11.404001, 7.962897], - [-11.402265, 7.962322], - [-11.401148, 7.962655], - [-11.399584, 7.962766], - [-11.399457, 7.963504], - [-11.399742, 7.964332], - [-11.399769, 7.965003], - [-11.399354, 7.965357], - [-11.399208, 7.966673], - [-11.398756, 7.968062], - [-11.398506, 7.96839], - [-11.397082, 7.967916], - [-11.395417, 7.967083], - [-11.387916, 7.95875], - [-11.385417, 7.959584], - [-11.382733, 7.962938], - [-11.382829, 7.963004], - [-11.382083, 7.96375], - [-11.382082, 7.969583], - [-11.372083, 7.96875], - [-11.36875, 7.972083], - [-11.371249, 7.97375], - [-11.374583, 7.979583], - [-11.381249, 7.979584], - [-11.383749, 7.975416], - [-11.382917, 7.972084], - [-11.392082, 7.972084], - [-11.392083, 7.976249], - [-11.393749, 7.97625], - [-11.396249, 7.977083], - [-11.397916, 7.975416], - [-11.397083, 7.972916], - [-11.399582, 7.970417], - [-11.40125, 7.975416], - [-11.407082, 7.979583], - [-11.40375, 7.969583], - [-11.415416, 7.967084], - [-11.414907, 7.973197], - [-11.416954, 7.973198], - [-11.418427, 7.975751], - [-11.41875, 7.971249], - [-11.422916, 7.967917], - [-11.425615, 7.967916], - [-11.425617, 7.967572], - [-11.427083, 7.967084], - [-11.437082, 7.967917], - [-11.439582, 7.970416], - [-11.440417, 7.973749], - [-11.442916, 7.972917], - [-11.44375, 7.97375], - [-11.452516, 7.977441], - [-11.452838, 7.977162], - [-11.453724, 7.974066], - [-11.452309, 7.969031], - [-11.454452, 7.965319], - [-11.457818, 7.965318], - [-11.45625, 7.963749], - [-11.456456, 7.961483], - [-11.457402, 7.9614], - [-11.457921, 7.960556], - [-11.457999, 7.959827], - [-11.457726, 7.958968], - [-11.457804, 7.957299], - [-11.457145, 7.956373], - [-11.456425, 7.953901], - [-11.456433, 7.953444], - [-11.45708, 7.951278], - [-11.456606, 7.94916], - [-11.45744, 7.947839], - [-11.457996, 7.946546], - [-11.458551, 7.94625], - [-11.457916, 7.946249], - [-11.455417, 7.943749], - [-11.458749, 7.93375], - [-11.459733, 7.932274], - [-11.459368, 7.932091], - [-11.46125, 7.929584], - [-11.464582, 7.930416], - [-11.46625, 7.923749] - ] - ], - "type": "Polygon" - }, - "id": 25, - "properties": { - "cc:admin:id": ["2"], - "cc:oBld:total": 832, - "cc:pop:fifteen-to-twenty-four": 1712.164717491336, - "cc:pop:grid3-total": 4371.590864287579, - "cc:pop:kontur-total": 9535.042590989284, - "cc:pop:men": 4947.847927307669, - "cc:pop:sixty-plus": 676.7075577889875, - "cc:pop:total": 9584.03228748605, - "cc:pop:under-five": 1575.6152779623583, - "cc:pop:women": 4636.184360178383, - "cc:pop:women-fiften-to-forty-nine": 2210.460847333132, - "cc:pop:wp-total": 7071.766786918347, - "cc:pop:wp-total-UN": 8201.5760298641, - "cc:id": "25", - "cc:Name": "Baoma Station CHP", - "cc:site": [-11.4382, 7.9294], - "user:parentName": "Baoma", - "user:code": "OU_573", - "user:orgUnitId": "jNb63DIHuwU", - "user:level": "4", - "user:parentId": "vWbkYPRmKyS" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.757091, 8.415632], - [-11.754583, 8.413749], - [-11.752916, 8.41125], - [-11.749583, 8.409584], - [-11.746249, 8.413749], - [-11.740417, 8.41125], - [-11.739582, 8.409584], - [-11.73625, 8.409583], - [-11.734582, 8.397084], - [-11.73375, 8.397083], - [-11.733749, 8.395416], - [-11.727083, 8.389584], - [-11.730416, 8.383749], - [-11.729583, 8.38125], - [-11.724583, 8.381249], - [-11.727082, 8.370417], - [-11.725416, 8.369583], - [-11.722082, 8.368749], - [-11.717082, 8.36375], - [-11.70875, 8.366249], - [-11.707916, 8.366249], - [-11.70375, 8.362083], - [-11.706249, 8.35625], - [-11.701249, 8.352917], - [-11.699583, 8.352916], - [-11.698749, 8.349584], - [-11.68875, 8.349584], - [-11.687082, 8.350416], - [-11.68375, 8.350417], - [-11.678056, 8.348993], - [-11.675546, 8.353338], - [-11.667958, 8.353339], - [-11.667916, 8.35375], - [-11.659765, 8.354608], - [-11.656383, 8.34875], - [-11.658526, 8.345036], - [-11.653749, 8.347084], - [-11.647917, 8.347916], - [-11.647917, 8.339584], - [-11.648309, 8.33919], - [-11.646088, 8.33919], - [-11.645416, 8.347917], - [-11.641249, 8.351249], - [-11.63375, 8.35125], - [-11.629582, 8.341249], - [-11.622916, 8.337084], - [-11.621249, 8.337084], - [-11.615417, 8.338749], - [-11.612916, 8.34125], - [-11.61125, 8.344584], - [-11.611249, 8.345955], - [-11.605532, 8.345956], - [-11.601626, 8.352721], - [-11.593813, 8.352722], - [-11.589906, 8.359486], - [-11.582095, 8.359487], - [-11.578188, 8.366253], - [-11.582094, 8.373018], - [-11.57828, 8.379625], - [-11.57875, 8.379584], - [-11.582916, 8.382917], - [-11.583749, 8.393749], - [-11.579583, 8.397916], - [-11.577082, 8.397083], - [-11.569583, 8.387084], - [-11.567917, 8.389583], - [-11.56625, 8.391249], - [-11.562083, 8.392083], - [-11.559582, 8.380417], - [-11.553659, 8.381075], - [-11.5549, 8.3835], - [-11.557399, 8.387699], - [-11.5588, 8.3927], - [-11.558899, 8.3968], - [-11.5571, 8.404699], - [-11.5567, 8.408399], - [-11.5569, 8.4121], - [-11.558199, 8.4185], - [-11.557999, 8.4215], - [-11.5565, 8.429499], - [-11.5567, 8.4332], - [-11.558, 8.436499], - [-11.562199, 8.439999], - [-11.573799, 8.445599], - [-11.577199, 8.447699], - [-11.5804, 8.4505], - [-11.583699, 8.454899], - [-11.5863, 8.4604], - [-11.588199, 8.465999], - [-11.589799, 8.471699], - [-11.5906, 8.4769], - [-11.5914, 8.487499], - [-11.6095, 8.4863], - [-11.652699, 8.486399], - [-11.662599, 8.4861], - [-11.6674, 8.485499], - [-11.6765, 8.483199], - [-11.688899, 8.482], - [-11.698399, 8.4803], - [-11.706099, 8.484799], - [-11.710299, 8.486999], - [-11.714599, 8.4842], - [-11.717499, 8.4819], - [-11.721799, 8.477], - [-11.7259, 8.473599], - [-11.728099, 8.4708], - [-11.7308, 8.464499], - [-11.7321, 8.459899], - [-11.7335, 8.453099], - [-11.734899, 8.4486], - [-11.7387, 8.439999], - [-11.7434, 8.431599], - [-11.754399, 8.4194], - [-11.757091, 8.415632] - ] - ], - "type": "Polygon" - }, - "id": 26, - "properties": { - "cc:admin:id": ["141"], - "cc:oBld:total": 1270, - "cc:pop:fifteen-to-twenty-four": 1670.9621398292156, - "cc:pop:grid3-total": 13051.585136172513, - "cc:pop:kontur-total": 9659.099483430993, - "cc:pop:men": 4527.609832178048, - "cc:pop:sixty-plus": 694.9457486946828, - "cc:pop:total": 9251.120468911155, - "cc:pop:under-five": 1508.6508213746533, - "cc:pop:women": 4723.510636733105, - "cc:pop:women-fiften-to-forty-nine": 2269.0159808623903, - "cc:pop:wp-total": 6854.146169477521, - "cc:pop:wp-total-UN": 7942.12996540566, - "cc:id": "26", - "cc:Name": "Baomahun CHC", - "cc:site": [-11.6677, 8.4165], - "user:parentName": "Valunia", - "user:code": "OU_1126", - "user:orgUnitId": "FLjwMPWLrL2", - "user:level": "4", - "user:parentId": "npWGUj37qDe" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.126722, 8.941402], - [-13.12633, 8.940837], - [-13.125543, 8.94029], - [-13.126249, 8.939583], - [-13.122954, 8.938484], - [-13.122969, 8.938358], - [-13.122655, 8.936934], - [-13.122, 8.936051], - [-13.120421, 8.934497], - [-13.120076, 8.933882], - [-13.120631, 8.933717], - [-13.117635, 8.929524], - [-13.1136, 8.931199], - [-13.109699, 8.9325], - [-13.105599, 8.9329], - [-13.088563, 8.933332], - [-13.087143, 8.934415], - [-13.085547, 8.935753], - [-13.084294, 8.935668], - [-13.081417, 8.93621], - [-13.078371, 8.936921], - [-13.076178, 8.937661], - [-13.074782, 8.93863], - [-13.073926, 8.939827], - [-13.073187, 8.941251], - [-13.073237, 8.943035], - [-13.07329, 8.944582], - [-13.07375, 8.944583], - [-13.075417, 8.947082], - [-13.07875, 8.947083], - [-13.082082, 8.947916], - [-13.082083, 8.947257], - [-13.082084, 8.947256], - [-13.086815, 8.947956], - [-13.089379, 8.949437], - [-13.090452, 8.950814], - [-13.089583, 8.95125], - [-13.089583, 8.952754], - [-13.089903, 8.953656], - [-13.090585, 8.956788], - [-13.09066, 8.959852], - [-13.092029, 8.960195], - [-13.091969, 8.962331], - [-13.090545, 8.96461], - [-13.087342, 8.967916], - [-13.085417, 8.967917], - [-13.085226, 8.967727], - [-13.084205, 8.968837], - [-13.080389, 8.972539], - [-13.080198, 8.972699], - [-13.080416, 8.972917], - [-13.080417, 8.973749], - [-13.080973, 8.974307], - [-13.080826, 8.974507], - [-13.081501, 8.975219], - [-13.082082, 8.975616], - [-13.082083, 8.974583], - [-13.084582, 8.974583], - [-13.084583, 8.976249], - [-13.084837, 8.977012], - [-13.085632, 8.97732], - [-13.086605, 8.97753], - [-13.088374, 8.977497], - [-13.089691, 8.976963], - [-13.091399, 8.975932], - [-13.091792, 8.975646], - [-13.092931, 8.974899], - [-13.094141, 8.974757], - [-13.094568, 8.975754], - [-13.09432, 8.977106], - [-13.093537, 8.977997], - [-13.093465, 8.978886], - [-13.093714, 8.97974], - [-13.094124, 8.980416], - [-13.097916, 8.980416], - [-13.097917, 8.979582], - [-13.100416, 8.978749], - [-13.101249, 8.977083], - [-13.099876, 8.974337], - [-13.099877, 8.974335], - [-13.099926, 8.974335], - [-13.100089, 8.97375], - [-13.10125, 8.97375], - [-13.10375, 8.975416], - [-13.107082, 8.974583], - [-13.107083, 8.970636], - [-13.107472, 8.970638], - [-13.107987, 8.971027], - [-13.107726, 8.971541], - [-13.108501, 8.971802], - [-13.108247, 8.97103], - [-13.109022, 8.97129], - [-13.109157, 8.970519], - [-13.10981, 8.969491], - [-13.110327, 8.969494], - [-13.110453, 8.969872], - [-13.112082, 8.970416], - [-13.112917, 8.967083], - [-13.115942, 8.967083], - [-13.116349, 8.967495], - [-13.117242, 8.967788], - [-13.117916, 8.96375], - [-13.116554, 8.961707], - [-13.116471, 8.959219], - [-13.117119, 8.958964], - [-13.11687, 8.95716], - [-13.117388, 8.957162], - [-13.117391, 8.956646], - [-13.118427, 8.956523], - [-13.118945, 8.956654], - [-13.118823, 8.955366], - [-13.119479, 8.953566], - [-13.119998, 8.953439], - [-13.120259, 8.953183], - [-13.121036, 8.953058], - [-13.121172, 8.952029], - [-13.121047, 8.951255], - [-13.121823, 8.951258], - [-13.122129, 8.950463], - [-13.122366, 8.9507], - [-13.122461, 8.951679], - [-13.123749, 8.951249], - [-13.12375, 8.949583], - [-13.124582, 8.948749], - [-13.124583, 8.946057], - [-13.125248, 8.945564], - [-13.126102, 8.944682], - [-13.126673, 8.943624], - [-13.126711, 8.942944], - [-13.126722, 8.941402] - ] - ], - "type": "Polygon" - }, - "id": 27, - "properties": { - "cc:admin:id": ["115"], - "cc:oBld:total": 1059, - "cc:pop:fifteen-to-twenty-four": 1088.3576282856534, - "cc:pop:grid3-total": 8597.017108955344, - "cc:pop:kontur-total": 6155.829171994476, - "cc:pop:men": 2804.1570087185514, - "cc:pop:sixty-plus": 361.89127128864635, - "cc:pop:total": 6011.4687421210365, - "cc:pop:under-five": 939.4156908751736, - "cc:pop:women": 3207.311733402484, - "cc:pop:women-fiften-to-forty-nine": 1546.9010338074734, - "cc:pop:wp-total": 5627.463058121308, - "cc:pop:wp-total-UN": 6529.006496569294, - "cc:id": "27", - "cc:Name": "Baptist Centre Kassirie", - "cc:site": [-13.1137, 8.942], - "user:parentName": "Samu", - "user:code": "OU_211247", - "user:orgUnitId": "QIp6DHlMGfb", - "user:level": "4", - "user:parentId": "r06ohri9wA9" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.303499, 9.039899], - [-13.3026, 9.0379], - [-13.301, 9.036], - [-13.300099, 9.034], - [-13.298199, 9.032099], - [-13.296, 9.0271], - [-13.295699, 9.025399], - [-13.2946, 9.0218], - [-13.293699, 9.020699], - [-13.2926, 9.0182], - [-13.292599, 9.0165], - [-13.2918, 9.014599], - [-13.2918, 9.0113], - [-13.2913, 9.0088], - [-13.2913, 9.0068], - [-13.292399, 9.006], - [-13.293699, 9.005999], - [-13.295399, 9.0029], - [-13.296499, 9.002399], - [-13.296299, 8.999599], - [-13.2954, 8.9965], - [-13.296499, 8.996299], - [-13.296, 8.994], - [-13.296, 8.9918], - [-13.296499, 8.991299], - [-13.2965, 8.9893], - [-13.2954, 8.988799], - [-13.295399, 8.9874], - [-13.2943, 8.987099], - [-13.294299, 8.9849], - [-13.2935, 8.9838], - [-13.2918, 8.983799], - [-13.2915, 8.982899], - [-13.2915, 8.978501], - [-13.2918, 8.978499], - [-13.2918, 8.9754], - [-13.2926, 8.974899], - [-13.292599, 8.9715], - [-13.2918, 8.9704], - [-13.293199, 8.969299], - [-13.2932, 8.9643], - [-13.291799, 8.961799], - [-13.290999, 8.959], - [-13.2896, 8.957899], - [-13.288499, 8.956], - [-13.287099, 8.955699], - [-13.284899, 8.953799], - [-13.283999, 8.9535], - [-13.2785, 8.953499], - [-13.277099, 8.9529], - [-13.2749, 8.952899], - [-13.273999, 8.9524], - [-13.2724, 8.952399], - [-13.270999, 8.9518], - [-13.2682, 8.951799], - [-13.267099, 8.9507], - [-13.2629, 8.9499], - [-13.260999, 8.949], - [-13.2576, 8.9493], - [-13.2576, 8.953199], - [-13.257899, 8.955399], - [-13.2538, 8.955399], - [-13.253799, 8.954738], - [-13.253424, 8.955147], - [-13.252882, 8.964693], - [-13.253234, 8.969627], - [-13.253363, 8.972258], - [-13.253621, 8.97402], - [-13.253607, 8.975609], - [-13.253045, 8.978332], - [-13.253048, 8.978495], - [-13.256249, 8.980417], - [-13.25375, 8.986249], - [-13.252083, 8.987083], - [-13.25179, 8.990014], - [-13.252541, 8.991903], - [-13.253842, 8.993015], - [-13.255767, 8.993693], - [-13.257312, 8.99391], - [-13.257746, 8.994128], - [-13.254086, 8.996784], - [-13.253215, 8.995424], - [-13.25247, 8.997065], - [-13.252557, 8.997296], - [-13.252644, 8.998966], - [-13.252817, 9.002176], - [-13.252751, 9.003088], - [-13.251776, 9.003239], - [-13.25106, 9.003001], - [-13.249736, 9.001916], - [-13.249116, 9.000233], - [-13.24803, 9.000775], - [-13.247852, 9.000402], - [-13.247401, 8.99965], - [-13.246637, 8.999052], - [-13.245394, 8.999], - [-13.244385, 8.999294], - [-13.243166, 9.000208], - [-13.241618, 9.001249], - [-13.240385, 9.00125], - [-13.239974, 9.001612], - [-13.239735, 9.001857], - [-13.238563, 9.001891], - [-13.237886, 9.001371], - [-13.237868, 9.000729], - [-13.238019, 9.00052], - [-13.237771, 9.000271], - [-13.237677, 9.000434], - [-13.237625, 9.001266], - [-13.237938, 9.001995], - [-13.238736, 9.00255], - [-13.239376, 9.002557], - [-13.239432, 9.003522], - [-13.239844, 9.004694], - [-13.240321, 9.006343], - [-13.240255, 9.007232], - [-13.239497, 9.008338], - [-13.238109, 9.009834], - [-13.237067, 9.011266], - [-13.23622, 9.011331], - [-13.235375, 9.010421], - [-13.234811, 9.008642], - [-13.234263, 9.007774], - [-13.233529, 9.007321], - [-13.232539, 9.007371], - [-13.231881, 9.00784], - [-13.230841, 9.008771], - [-13.230212, 9.009748], - [-13.230103, 9.010399], - [-13.230471, 9.010812], - [-13.230558, 9.011853], - [-13.230211, 9.012526], - [-13.2293, 9.013259], - [-13.228751, 9.013721], - [-13.228187, 9.013999], - [-13.228393, 9.014825], - [-13.228124, 9.014981], - [-13.22523, 9.016022], - [-13.220838, 9.019688], - [-13.220488, 9.020392], - [-13.220416, 9.020416], - [-13.219605, 9.020011], - [-13.219581, 9.020056], - [-13.219153, 9.022481], - [-13.219279, 9.023307], - [-13.219138, 9.0244], - [-13.21913, 9.024577], - [-13.219161, 9.024803], - [-13.219109, 9.024898], - [-13.218936, 9.024835], - [-13.218627, 9.024762], - [-13.218231, 9.024714], - [-13.217753, 9.024794], - [-13.217288, 9.025005], - [-13.217169, 9.025291], - [-13.217014, 9.025412], - [-13.216593, 9.025853], - [-13.21375, 9.025417], - [-13.212041, 9.028832], - [-13.21204, 9.028831], - [-13.211885, 9.027716], - [-13.210568, 9.028951], - [-13.209549, 9.028477], - [-13.210597, 9.026164], - [-13.209307, 9.025385], - [-13.210324, 9.025081], - [-13.210348, 9.024102], - [-13.20983, 9.024099], - [-13.209308, 9.024739], - [-13.208726, 9.024214], - [-13.20926, 9.0227], - [-13.208343, 9.0226], - [-13.207496, 9.024344], - [-13.207688, 9.024488], - [-13.2076, 9.024774], - [-13.207429, 9.024664], - [-13.205256, 9.024529], - [-13.204205, 9.023895], - [-13.203832, 9.023114], - [-13.204129, 9.022284], - [-13.20527, 9.019703], - [-13.204901, 9.018405], - [-13.203687, 9.017363], - [-13.203267, 9.016756], - [-13.20219, 9.01421], - [-13.20043, 9.012416], - [-13.199297, 9.011807], - [-13.198433, 9.011734], - [-13.197593, 9.011887], - [-13.196509, 9.011765], - [-13.196126, 9.011544], - [-13.195749, 9.010802], - [-13.195479, 9.00972], - [-13.195568, 9.0082], - [-13.194954, 9.00729], - [-13.195119, 9.006587], - [-13.194366, 9.006501], - [-13.194368, 9.005987], - [-13.19372, 9.006241], - [-13.193844, 9.007013], - [-13.193458, 9.006756], - [-13.192289, 9.007265], - [-13.192413, 9.008295], - [-13.19228, 9.00881], - [-13.191592, 9.008718], - [-13.191375, 9.008548], - [-13.191248, 9.008033], - [-13.19021, 9.008413], - [-13.18969, 9.008796], - [-13.189691, 9.008283], - [-13.189174, 9.00815], - [-13.1884, 9.007374], - [-13.188142, 9.007373], - [-13.187228, 9.008786], - [-13.187352, 9.009816], - [-13.188128, 9.00982], - [-13.188129, 9.009821], - [-13.187345, 9.010976], - [-13.187087, 9.011103], - [-13.187088, 9.010589], - [-13.18683, 9.010588], - [-13.186737, 9.011271], - [-13.186308, 9.011358], - [-13.186218, 9.011526], - [-13.185789, 9.011484], - [-13.185014, 9.010707], - [-13.184239, 9.010575], - [-13.184239, 9.010573], - [-13.184498, 9.010318], - [-13.184499, 9.010061], - [-13.184241, 9.01006], - [-13.18398, 9.010316], - [-13.183977, 9.011088], - [-13.184753, 9.011093], - [-13.184752, 9.011351], - [-13.184234, 9.011476], - [-13.183713, 9.011988], - [-13.183454, 9.011987], - [-13.183326, 9.0116], - [-13.18346, 9.010571], - [-13.18294, 9.010954], - [-13.182422, 9.011081], - [-13.182417, 9.011853], - [-13.181381, 9.011849], - [-13.181377, 9.012621], - [-13.182157, 9.012239], - [-13.182933, 9.012115], - [-13.182934, 9.012116], - [-13.182932, 9.012629], - [-13.184228, 9.01238], - [-13.184226, 9.012893], - [-13.183708, 9.012891], - [-13.183312, 9.014434], - [-13.183306, 9.015465], - [-13.183085, 9.016148], - [-13.182914, 9.016237], - [-13.182913, 9.016494], - [-13.183171, 9.016495], - [-13.183429, 9.016242], - [-13.183431, 9.016243], - [-13.183301, 9.016753], - [-13.18304, 9.017011], - [-13.182905, 9.017782], - [-13.182388, 9.017779], - [-13.18239, 9.017318], - [-13.18133, 9.015553], - [-13.180065, 9.015964], - [-13.180065, 9.015962], - [-13.180195, 9.015707], - [-13.180067, 9.015321], - [-13.179291, 9.015188], - [-13.179292, 9.014931], - [-13.179809, 9.014932], - [-13.179943, 9.014419], - [-13.180464, 9.013647], - [-13.180862, 9.011847], - [-13.179569, 9.011453], - [-13.178532, 9.011448], - [-13.177883, 9.011832], - [-13.178007, 9.012603], - [-13.178006, 9.012604], - [-13.17749, 9.012473], - [-13.177233, 9.011829], - [-13.176716, 9.011825], - [-13.176609, 9.011397], - [-13.174583, 9.012917], - [-13.174583, 9.015416], - [-13.174351, 9.015879], - [-13.174348, 9.015877], - [-13.173666, 9.01577], - [-13.171176, 9.0149], - [-13.170551, 9.018408], - [-13.169736, 9.020299], - [-13.160417, 9.019582], - [-13.161249, 9.010417], - [-13.159583, 9.007916], - [-13.158873, 9.000822], - [-13.15848, 9.000723], - [-13.151745, 8.99973], - [-13.150582, 8.999375], - [-13.150314, 8.999562], - [-13.149265, 8.999716], - [-13.148905, 8.999553], - [-13.148354, 8.99889], - [-13.148355, 8.998889], - [-13.148792, 8.998673], - [-13.152082, 8.998173], - [-13.152083, 8.992083], - [-13.152916, 8.990416], - [-13.15185, 8.988285], - [-13.151428, 8.988395], - [-13.151183, 8.988637], - [-13.150917, 8.988508], - [-13.150913, 8.989023], - [-13.14936, 8.988757], - [-13.149246, 8.985923], - [-13.149117, 8.985665], - [-13.149834, 8.985668], - [-13.148749, 8.984582], - [-13.148019, 8.973627], - [-13.147881, 8.973676], - [-13.145038, 8.972375], - [-13.144264, 8.971598], - [-13.143747, 8.971467], - [-13.143602, 8.97125], - [-13.142083, 8.97125], - [-13.141243, 8.97209], - [-13.141375, 8.972216], - [-13.142241, 8.972968], - [-13.143675, 8.973468], - [-13.144814, 8.97381], - [-13.146341, 8.97413], - [-13.146953, 8.974604], - [-13.146953, 8.974606], - [-13.145863, 8.974311], - [-13.14379, 8.973856], - [-13.14199, 8.973264], - [-13.140941, 8.972261], - [-13.140053, 8.972465], - [-13.139142, 8.972466], - [-13.138666, 8.972737], - [-13.141104, 8.977028], - [-13.134773, 8.977028], - [-13.131005, 8.970504], - [-13.129998, 8.970977], - [-13.129858, 8.970844], - [-13.129923, 8.970548], - [-13.130035, 8.970264], - [-13.125254, 8.970264], - [-13.125224, 8.970343], - [-13.124704, 8.970855], - [-13.124442, 8.971369], - [-13.124396, 8.97231], - [-13.124822, 8.972787], - [-13.124652, 8.973003], - [-13.12482, 8.973175], - [-13.124578, 8.974577], - [-13.124577, 8.974578], - [-13.123749, 8.97375], - [-13.119689, 8.973072], - [-13.120871, 8.971224], - [-13.123548, 8.967584], - [-13.123394, 8.967325], - [-13.12158, 8.967173], - [-13.119697, 8.967362], - [-13.11785, 8.967987], - [-13.116349, 8.967495], - [-13.115942, 8.967083], - [-13.112917, 8.967083], - [-13.112082, 8.970416], - [-13.110453, 8.969873], - [-13.110327, 8.969494], - [-13.10981, 8.969491], - [-13.109157, 8.970519], - [-13.109022, 8.97129], - [-13.108247, 8.971029], - [-13.108501, 8.971801], - [-13.1085, 8.971802], - [-13.107726, 8.971542], - [-13.107987, 8.971028], - [-13.107471, 8.970638], - [-13.107083, 8.970636], - [-13.107082, 8.974583], - [-13.10375, 8.975416], - [-13.101249, 8.97375], - [-13.100088, 8.97375], - [-13.099926, 8.974335], - [-13.099876, 8.974336], - [-13.101249, 8.977082], - [-13.100416, 8.978749], - [-13.097917, 8.979583], - [-13.097916, 8.980416], - [-13.094125, 8.980417], - [-13.094294, 8.980697], - [-13.093647, 8.980859], - [-13.093963, 8.982269], - [-13.09382, 8.983479], - [-13.093501, 8.983977], - [-13.092681, 8.983479], - [-13.091827, 8.982732], - [-13.09051, 8.982732], - [-13.090402, 8.982916], - [-13.089583, 8.982917], - [-13.08923, 8.983624], - [-13.089262, 8.983813], - [-13.08911, 8.983864], - [-13.08875, 8.984583], - [-13.088846, 8.984874], - [-13.087554, 8.986327], - [-13.086094, 8.987147], - [-13.084457, 8.987788], - [-13.084172, 8.988322], - [-13.083781, 8.989781], - [-13.083495, 8.99092], - [-13.082891, 8.991811], - [-13.082998, 8.992843], - [-13.08408, 8.993749], - [-13.084608, 8.99375], - [-13.085062, 8.994552], - [-13.085489, 8.995228], - [-13.08517, 8.996189], - [-13.085168, 8.996249], - [-13.084899, 8.99625], - [-13.084849, 8.996582], - [-13.084849, 8.998148], - [-13.08492, 8.999429], - [-13.08556, 9.000497], - [-13.083283, 9.000463], - [-13.082035, 9.000071], - [-13.080683, 9.000356], - [-13.080541, 9.001138], - [-13.080659, 9.001492], - [-13.082082, 9.002916], - [-13.082139, 9.00303], - [-13.082249, 9.003951], - [-13.082158, 9.004582], - [-13.084968, 9.004583], - [-13.08487, 9.006206], - [-13.084913, 9.00625], - [-13.085417, 9.00625], - [-13.086042, 9.0075], - [-13.086287, 9.007502], - [-13.086286, 9.008016], - [-13.086803, 9.00802], - [-13.086539, 9.009048], - [-13.087316, 9.009053], - [-13.087444, 9.009568], - [-13.087959, 9.010087], - [-13.087957, 9.010344], - [-13.087698, 9.010601], - [-13.087734, 9.011285], - [-13.087046, 9.011371], - [-13.087188, 9.011658], - [-13.087558, 9.012145], - [-13.087041, 9.012144], - [-13.087158, 9.01472], - [-13.087672, 9.015239], - [-13.087669, 9.016011], - [-13.087926, 9.016271], - [-13.087925, 9.016785], - [-13.087271, 9.017683], - [-13.086752, 9.01781], - [-13.086865, 9.018749], - [-13.08643, 9.018749], - [-13.08636, 9.018324], - [-13.085845, 9.017805], - [-13.085074, 9.016513], - [-13.084428, 9.016251], - [-13.08443, 9.015737], - [-13.083653, 9.015861], - [-13.083392, 9.016117], - [-13.083363, 9.016117], - [-13.082611, 9.014237], - [-13.082521, 9.014582], - [-13.080671, 9.014583], - [-13.080535, 9.01551], - [-13.079999, 9.01856], - [-13.078492, 9.023025], - [-13.078475, 9.024605], - [-13.078191, 9.025416], - [-13.079583, 9.025417], - [-13.081249, 9.027083], - [-13.07973, 9.036201], - [-13.084681, 9.037823], - [-13.084433, 9.037947], - [-13.083621, 9.038534], - [-13.081852, 9.042161], - [-13.079349, 9.044127], - [-13.078427, 9.045061], - [-13.078157, 9.045711], - [-13.077642, 9.047905], - [-13.077621, 9.049368], - [-13.077882, 9.050428], - [-13.0876, 9.0484], - [-13.1075, 9.0496], - [-13.123099, 9.0578], - [-13.151499, 9.085899], - [-13.1631, 9.091599], - [-13.174199, 9.092399], - [-13.179499, 9.0903], - [-13.2069, 9.072699], - [-13.2156, 9.0717], - [-13.236299, 9.075399], - [-13.2476, 9.075099], - [-13.267899, 9.0674], - [-13.276399, 9.0621], - [-13.2814, 9.0565], - [-13.2886, 9.052599], - [-13.300699, 9.0416], - [-13.303499, 9.039899] - ] - ], - "type": "Polygon" - }, - "id": 28, - "properties": { - "cc:admin:id": ["115"], - "cc:oBld:total": 4342, - "cc:pop:fifteen-to-twenty-four": 4893.450003863995, - "cc:pop:grid3-total": 16142.477519281112, - "cc:pop:kontur-total": 27848.502720411532, - "cc:pop:men": 12873.15982517603, - "cc:pop:sixty-plus": 1569.4698154774953, - "cc:pop:total": 27806.72379959593, - "cc:pop:under-five": 4271.583761697135, - "cc:pop:women": 14933.56397441989, - "cc:pop:women-fiften-to-forty-nine": 7175.914117314964, - "cc:pop:wp-total": 23329.74111754194, - "cc:pop:wp-total-UN": 27048.831102570723, - "cc:id": "28", - "cc:Name": "Bapuya MCHP", - "cc:site": [-13.1107, 9.0087], - "user:parentName": "Samu", - "user:code": "OU_211255", - "user:orgUnitId": "weLTzWrLXCO", - "user:level": "4", - "user:parentId": "r06ohri9wA9" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.663749, 8.052917], - [-11.652916, 8.052083], - [-11.649583, 8.047917], - [-11.649583, 8.047871], - [-11.649798, 8.047497], - [-11.649583, 8.047124], - [-11.649582, 8.046883], - [-11.649205, 8.047484], - [-11.649203, 8.047484], - [-11.647083, 8.040417], - [-11.647083, 8.039583], - [-11.650416, 8.035417], - [-11.654582, 8.033749], - [-11.657916, 8.029584], - [-11.654583, 8.026249], - [-11.654583, 8.022084], - [-11.656249, 8.020416], - [-11.657082, 8.01625], - [-11.652917, 8.017083], - [-11.652083, 8.017083], - [-11.652082, 8.01625], - [-11.650417, 8.015417], - [-11.650417, 8.010417], - [-11.651249, 8.00625], - [-11.642917, 8.002917], - [-11.642082, 7.99875], - [-11.640416, 7.997916], - [-11.639864, 7.995151], - [-11.641826, 7.994275], - [-11.644672, 7.994008], - [-11.649683, 7.991167], - [-11.647082, 7.987917], - [-11.645416, 7.987916], - [-11.642083, 7.984584], - [-11.642082, 7.98375], - [-11.63908, 7.983749], - [-11.637213, 7.980516], - [-11.640306, 7.975156], - [-11.639959, 7.974163], - [-11.640481, 7.974018], - [-11.640922, 7.974089], - [-11.641119, 7.973749], - [-11.637213, 7.966984], - [-11.63908, 7.96375], - [-11.639617, 7.963749], - [-11.64028, 7.962601], - [-11.636373, 7.955836], - [-11.628562, 7.955835], - [-11.624694, 7.949137], - [-11.624754, 7.948899], - [-11.627174, 7.944706], - [-11.627082, 7.944583], - [-11.626249, 7.942083], - [-11.625595, 7.936189], - [-11.625782, 7.936148], - [-11.625416, 7.935416], - [-11.624583, 7.93125], - [-11.622083, 7.927917], - [-11.622083, 7.925417], - [-11.62625, 7.92125], - [-11.63027, 7.921249], - [-11.630412, 7.920282], - [-11.631463, 7.918479], - [-11.631787, 7.917381], - [-11.631847, 7.916588], - [-11.632051, 7.916077], - [-11.628749, 7.915416], - [-11.62625, 7.912917], - [-11.625567, 7.905418], - [-11.623499, 7.9066], - [-11.619499, 7.9085], - [-11.613999, 7.9127], - [-11.611699, 7.9138], - [-11.6059, 7.9153], - [-11.6032, 7.9173], - [-11.601699, 7.9201], - [-11.6014, 7.9223], - [-11.6014, 7.928599], - [-11.601199, 7.9313], - [-11.600599, 7.933399], - [-11.598, 7.937099], - [-11.592399, 7.9425], - [-11.590099, 7.9439], - [-11.587, 7.945199], - [-11.5827, 7.947599], - [-11.5787, 7.949399], - [-11.575799, 7.9516], - [-11.5711, 7.956299], - [-11.5672, 7.960499], - [-11.565299, 7.9631], - [-11.563299, 7.9674], - [-11.560999, 7.9703], - [-11.5575, 7.973199], - [-11.553599, 7.9751], - [-11.549299, 7.9775], - [-11.541999, 7.9808], - [-11.538299, 7.9817], - [-11.5304, 7.981999], - [-11.526699, 7.9829], - [-11.5192, 7.986499], - [-11.5151, 7.9892], - [-11.516199, 7.994699], - [-11.516899, 7.996799], - [-11.5182, 7.9988], - [-11.520399, 8.001099], - [-11.5227, 8.002799], - [-11.525699, 8.003799], - [-11.5319, 8.0044], - [-11.534899, 8.005099], - [-11.5369, 8.0062], - [-11.54, 8.009], - [-11.542899, 8.011899], - [-11.545099, 8.014899], - [-11.546899, 8.018799], - [-11.5489, 8.0223], - [-11.551199, 8.026799], - [-11.5535, 8.029099], - [-11.560899, 8.032899], - [-11.5649, 8.0346], - [-11.569199, 8.036999], - [-11.5724, 8.0383], - [-11.5768, 8.0406], - [-11.579999, 8.041899], - [-11.5836, 8.0439], - [-11.5874, 8.0457], - [-11.589599, 8.0475], - [-11.590999, 8.050099], - [-11.5917, 8.0541], - [-11.5959, 8.0572], - [-11.601999, 8.062299], - [-11.610799, 8.066599], - [-11.6137, 8.0673], - [-11.6189, 8.0675], - [-11.653499, 8.0675], - [-11.656367, 8.067334], - [-11.657083, 8.05875], - [-11.659583, 8.056249], - [-11.663749, 8.055416], - [-11.663749, 8.052917] - ] - ], - "type": "Polygon" - }, - "id": 29, - "properties": { - "cc:admin:id": ["46"], - "cc:oBld:total": 259, - "cc:pop:fifteen-to-twenty-four": 779.5775563194665, - "cc:pop:grid3-total": 9912.433665028047, - "cc:pop:kontur-total": 4000.390591474229, - "cc:pop:men": 2013.9767725972022, - "cc:pop:sixty-plus": 303.7627336275172, - "cc:pop:total": 4151.430890262827, - "cc:pop:under-five": 700.6272619841914, - "cc:pop:women": 2137.454117665624, - "cc:pop:women-fiften-to-forty-nine": 1016.3900411099422, - "cc:pop:wp-total": 4838.805866260539, - "cc:pop:wp-total-UN": 5590.970735364936, - "cc:id": "29", - "cc:Name": "Barlie MCHP", - "cc:site": [-11.5839, 8.0202], - "user:parentName": "Bargbe", - "user:code": "OU_2732", - "user:orgUnitId": "y5hLlID8ihI", - "user:level": "4", - "user:parentId": "dGheVylzol6" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.951303, 9.064954], - [-12.949845, 9.062829], - [-12.949466, 9.060978], - [-12.948812, 9.059376], - [-12.948544, 9.057834], - [-12.944603, 9.05586], - [-12.941286, 9.054921], - [-12.939575, 9.05464], - [-12.938891, 9.054701], - [-12.939582, 9.047083], - [-12.932916, 9.047916], - [-12.931382, 9.04408], - [-12.934069, 9.039425], - [-12.932268, 9.036304], - [-12.93176, 9.03616], - [-12.931054, 9.034827], - [-12.929786, 9.034162], - [-12.925155, 9.035797], - [-12.923751, 9.036403], - [-12.92375, 9.036402], - [-12.92375, 9.036249], - [-12.924582, 9.03375], - [-12.927082, 9.033749], - [-12.927916, 9.03125], - [-12.92375, 9.027083], - [-12.925597, 9.023386], - [-12.925154, 9.022261], - [-12.924765, 9.021953], - [-12.924005, 9.021782], - [-12.924014, 9.021644], - [-12.922962, 9.017782], - [-12.921447, 9.016666], - [-12.921123, 9.016595], - [-12.920149, 9.015335], - [-12.920041, 9.01433], - [-12.91971, 9.013805], - [-12.919495, 9.012486], - [-12.919577, 9.011666], - [-12.919432, 9.010026], - [-12.919437, 9.009558], - [-12.919282, 9.007572], - [-12.919226, 9.007342], - [-12.918694, 9.006112], - [-12.918094, 9.005239], - [-12.91811, 9.004578], - [-12.917764, 9.002414], - [-12.917882, 9.001799], - [-12.91812, 9.001454], - [-12.917917, 9.001249], - [-12.917916, 8.998749], - [-12.912082, 8.99125], - [-12.909582, 8.992916], - [-12.904582, 8.989583], - [-12.901297, 8.989582], - [-12.901297, 8.989581], - [-12.902103, 8.988723], - [-12.903146, 8.987615], - [-12.903551, 8.986197], - [-12.901886, 8.985581], - [-12.898397, 8.983497], - [-12.897916, 8.985417], - [-12.892083, 8.98625], - [-12.894582, 8.991249], - [-12.89375, 8.995416], - [-12.89375, 8.996249], - [-12.895416, 8.999583], - [-12.891249, 9.004583], - [-12.887083, 9.008749], - [-12.885417, 9.009583], - [-12.884583, 9.016249], - [-12.884582, 9.017916], - [-12.88265, 9.023071], - [-12.882694, 9.023081], - [-12.88125, 9.029582], - [-12.87842, 9.03015], - [-12.87991, 9.033451], - [-12.880783, 9.033245], - [-12.883369, 9.037641], - [-12.881231, 9.038545], - [-12.880462, 9.038697], - [-12.877917, 9.038944], - [-12.877917, 9.041249], - [-12.882082, 9.045417], - [-12.882083, 9.048749], - [-12.891249, 9.050416], - [-12.893749, 9.05125], - [-12.892917, 9.059582], - [-12.894006, 9.061216], - [-12.895131, 9.05989], - [-12.901249, 9.061249], - [-12.902082, 9.06125], - [-12.902083, 9.062082], - [-12.90375, 9.062083], - [-12.90625, 9.064582], - [-12.910417, 9.064583], - [-12.91125, 9.066249], - [-12.915034, 9.070035], - [-12.914176, 9.074618], - [-12.913887, 9.076212], - [-12.914059, 9.075874], - [-12.917082, 9.077082], - [-12.919583, 9.074583], - [-12.92125, 9.07375], - [-12.928749, 9.072916], - [-12.92875, 9.067961], - [-12.929684, 9.0678], - [-12.930719, 9.0678], - [-12.933046, 9.068304], - [-12.935239, 9.069034], - [-12.937513, 9.070364], - [-12.940351, 9.071452], - [-12.94097, 9.071772], - [-12.942599, 9.07349], - [-12.943304, 9.073931], - [-12.94393, 9.074605], - [-12.944006, 9.075333], - [-12.944217, 9.075762], - [-12.944872, 9.076578], - [-12.946091, 9.077543], - [-12.94796, 9.07859], - [-12.948855, 9.079312], - [-12.950281, 9.08023], - [-12.9506, 9.079799], - [-12.951199, 9.075799], - [-12.950899, 9.073499], - [-12.9494, 9.069499], - [-12.95, 9.0668], - [-12.951303, 9.064954] - ] - ], - "type": "Polygon" - }, - "id": 30, - "properties": { - "cc:admin:id": ["82"], - "cc:oBld:total": 4130, - "cc:pop:fifteen-to-twenty-four": 4787.633312450466, - "cc:pop:grid3-total": 29918.784445168265, - "cc:pop:kontur-total": 25576.450906476966, - "cc:pop:men": 12255.28981415311, - "cc:pop:sixty-plus": 1671.454964746829, - "cc:pop:total": 25746.106291760665, - "cc:pop:under-five": 4122.009573307504, - "cc:pop:women": 13490.81647760755, - "cc:pop:women-fiften-to-forty-nine": 6527.047700589918, - "cc:pop:wp-total": 21893.66738623145, - "cc:pop:wp-total-UN": 25378.956872298684, - "cc:id": "30", - "cc:Name": "Barmoi Luma MCHP", - "cc:site": [-12.9062, 9.0382], - "user:parentName": "Magbema", - "user:code": "OU_211229", - "user:orgUnitId": "vyIl6s0lhKc", - "user:level": "4", - "user:parentId": "QywkxFudXrC" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.819622, 9.016289], - [-12.817917, 9.014583], - [-12.817916, 9.01375], - [-12.815416, 9.013749], - [-12.81375, 9.009583], - [-12.814122, 9.008464], - [-12.813436, 9.008449], - [-12.81295, 9.008487], - [-12.812373, 9.008067], - [-12.812398, 9.006956], - [-12.812104, 9.005446], - [-12.812079, 9.004297], - [-12.812382, 9.00375], - [-12.810417, 9.003749], - [-12.810416, 8.999583], - [-12.805417, 8.99875], - [-12.804583, 9.006249], - [-12.802083, 9.006249], - [-12.800416, 9.005417], - [-12.799582, 9.005416], - [-12.797916, 9.002083], - [-12.795416, 9.001249], - [-12.791249, 8.99625], - [-12.78875, 8.996249], - [-12.788019, 8.989685], - [-12.787917, 8.989734], - [-12.787916, 8.989582], - [-12.78375, 8.987916], - [-12.785417, 8.984583], - [-12.787916, 8.983749], - [-12.787916, 8.977083], - [-12.782917, 8.97625], - [-12.777082, 8.980416], - [-12.774582, 8.977917], - [-12.770417, 8.97625], - [-12.762917, 8.976249], - [-12.760416, 8.972917], - [-12.757082, 8.972916], - [-12.749583, 8.970417], - [-12.748749, 8.969583], - [-12.747053, 8.969583], - [-12.746923, 8.969799], - [-12.746145, 8.970516], - [-12.745715, 8.970577], - [-12.74394, 8.9726], - [-12.744394, 8.975227], - [-12.744761, 8.97626], - [-12.742651, 8.97626], - [-12.741207, 8.973757], - [-12.741192, 8.973974], - [-12.742565, 8.979523], - [-12.742118, 8.981235], - [-12.741901, 8.984459], - [-12.742399, 8.987113], - [-12.743422, 8.989394], - [-12.743931, 8.989992], - [-12.744395, 8.992463], - [-12.74485, 8.993318], - [-12.746031, 8.994416], - [-12.748507, 8.994874], - [-12.750581, 8.995514], - [-12.752419, 8.996491], - [-12.752916, 8.996866], - [-12.752917, 8.996249], - [-12.754419, 8.994748], - [-12.756042, 8.99612], - [-12.757723, 8.998747], - [-12.759491, 9.000148], - [-12.760138, 9.001893], - [-12.760715, 9.002499], - [-12.760925, 9.004054], - [-12.760558, 9.005369], - [-12.759283, 9.008048], - [-12.757239, 9.007639], - [-12.756523, 9.008705], - [-12.755552, 9.009612], - [-12.754703, 9.010079], - [-12.753119, 9.010537], - [-12.751264, 9.011713], - [-12.74417, 9.015086], - [-12.738645, 9.019076], - [-12.738141, 9.019234], - [-12.737449, 9.020748], - [-12.736558, 9.021365], - [-12.7374, 9.0229], - [-12.742099, 9.034899], - [-12.745799, 9.042399], - [-12.749899, 9.049699], - [-12.754099, 9.055399], - [-12.755599, 9.057799], - [-12.756999, 9.0622], - [-12.756699, 9.0678], - [-12.7519, 9.077199], - [-12.7483, 9.083199], - [-12.745799, 9.086], - [-12.7378, 9.091499], - [-12.734, 9.096], - [-12.7337, 9.099399], - [-12.7352, 9.102099], - [-12.7377, 9.1038], - [-12.7411, 9.1045], - [-12.7453, 9.104599], - [-12.782699, 9.104], - [-12.787, 9.103399], - [-12.793799, 9.1016], - [-12.799099, 9.101399], - [-12.799799, 9.0935], - [-12.7997, 9.0871], - [-12.798999, 9.082099], - [-12.796399, 9.072799], - [-12.7959, 9.0662], - [-12.7963, 9.060999], - [-12.798, 9.053999], - [-12.803499, 9.0373], - [-12.805799, 9.0319], - [-12.8089, 9.027599], - [-12.818399, 9.0177], - [-12.819622, 9.016289] - ] - ], - "type": "Polygon" - }, - "id": 31, - "properties": { - "cc:admin:id": ["13"], - "cc:oBld:total": 555, - "cc:pop:fifteen-to-twenty-four": 1307.4648416366965, - "cc:pop:grid3-total": 9311.724803031524, - "cc:pop:kontur-total": 7554.119467609539, - "cc:pop:men": 3437.7588115341027, - "cc:pop:sixty-plus": 396.91177924223626, - "cc:pop:total": 7253.843803856776, - "cc:pop:under-five": 1130.1869812235673, - "cc:pop:women": 3816.0849923226733, - "cc:pop:women-fiften-to-forty-nine": 1900.446050695406, - "cc:pop:wp-total": 6608.670043667562, - "cc:pop:wp-total-UN": 7662.043679816116, - "cc:id": "31", - "cc:Name": "Barmoi Munu CHP", - "cc:site": [-12.75, 9.092], - "user:parentName": "Masungbala", - "user:code": "OU_211258", - "user:orgUnitId": "vELaJEPLOPF", - "user:level": "4", - "user:parentId": "FlBemv1NfEC" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.524001, 8.291485], - [-12.521099, 8.289599], - [-12.514699, 8.286499], - [-12.510499, 8.285299], - [-12.504299, 8.2848], - [-12.4995, 8.284899], - [-12.4949, 8.285399], - [-12.484199, 8.2882], - [-12.4702, 8.289399], - [-12.4626, 8.290899], - [-12.4581, 8.290599], - [-12.4526, 8.286899], - [-12.447499, 8.280199], - [-12.439, 8.2729], - [-12.4364, 8.281299], - [-12.4345, 8.290799], - [-12.4325, 8.298199], - [-12.432199, 8.3012], - [-12.4319, 8.312999], - [-12.4304, 8.316399], - [-12.426999, 8.318199], - [-12.423999, 8.317199], - [-12.421299, 8.314099], - [-12.418299, 8.3077], - [-12.415799, 8.305399], - [-12.412099, 8.3044], - [-12.4087, 8.305099], - [-12.4044, 8.307899], - [-12.3943, 8.316599], - [-12.3899, 8.322399], - [-12.386999, 8.3259], - [-12.3773, 8.335899], - [-12.3718, 8.341199], - [-12.367099, 8.3445], - [-12.3605, 8.347499], - [-12.358419, 8.347906], - [-12.357917, 8.350416], - [-12.359583, 8.354584], - [-12.359582, 8.355416], - [-12.35875, 8.355417], - [-12.35875, 8.367916], - [-12.362082, 8.367916], - [-12.366249, 8.36125], - [-12.36875, 8.365416], - [-12.374582, 8.365417], - [-12.376249, 8.366249], - [-12.37625, 8.364583], - [-12.380416, 8.362917], - [-12.380583, 8.363], - [-12.380597, 8.362977], - [-12.382916, 8.363749], - [-12.38375, 8.362083], - [-12.386249, 8.360417], - [-12.394582, 8.360416], - [-12.394583, 8.35625], - [-12.396249, 8.355417], - [-12.397083, 8.357916], - [-12.399582, 8.359584], - [-12.399583, 8.367083], - [-12.40125, 8.369583], - [-12.413749, 8.367917], - [-12.41625, 8.369583], - [-12.421249, 8.370416], - [-12.42125, 8.371249], - [-12.424582, 8.371249], - [-12.429822, 8.36601], - [-12.42993, 8.3661], - [-12.430102, 8.366303], - [-12.431249, 8.364584], - [-12.434582, 8.364583], - [-12.432917, 8.359583], - [-12.440417, 8.357084], - [-12.450416, 8.359583], - [-12.45125, 8.357917], - [-12.454583, 8.354584], - [-12.45625, 8.354584], - [-12.462098, 8.355232], - [-12.461307, 8.35432], - [-12.461328, 8.353577], - [-12.461193, 8.353387], - [-12.464254, 8.348085], - [-12.468749, 8.348084], - [-12.46875, 8.344794], - [-12.474582, 8.344793], - [-12.474583, 8.340417], - [-12.480416, 8.337083], - [-12.481439, 8.335548], - [-12.480972, 8.33475], - [-12.48097, 8.33375], - [-12.490416, 8.33375], - [-12.492083, 8.332917], - [-12.499582, 8.332916], - [-12.50375, 8.328749], - [-12.505417, 8.32875], - [-12.516249, 8.332083], - [-12.517916, 8.322084], - [-12.520416, 8.321249], - [-12.521249, 8.320416], - [-12.521249, 8.31375], - [-12.51875, 8.313749], - [-12.517082, 8.309584], - [-12.513741, 8.307578], - [-12.51281, 8.308642], - [-12.512083, 8.307917], - [-12.512083, 8.30375], - [-12.517082, 8.301249], - [-12.517917, 8.292085], - [-12.51875, 8.292916], - [-12.520417, 8.292084], - [-12.524001, 8.291485] - ] - ], - "type": "Polygon" - }, - "id": 32, - "properties": { - "cc:admin:id": ["149"], - "cc:oBld:total": 0, - "cc:pop:fifteen-to-twenty-four": 826.9972538122868, - "cc:pop:grid3-total": 3741.6886315181273, - "cc:pop:kontur-total": 4385.644168913908, - "cc:pop:men": 2060.8408595085807, - "cc:pop:sixty-plus": 287.32185957402476, - "cc:pop:total": 4445.250972113919, - "cc:pop:under-five": 715.0397965383745, - "cc:pop:women": 2384.410112605337, - "cc:pop:women-fiften-to-forty-nine": 1173.8186389839661, - "cc:pop:wp-total": 4413.13746824052, - "cc:pop:wp-total-UN": 5126.855624216716, - "cc:id": "32", - "cc:Name": "Bath Bana MCHP", - "cc:site": [-12.4486, 8.3348], - "user:parentName": "Yoni", - "user:code": "OU_268243", - "user:orgUnitId": "sDTodaygv5u", - "user:level": "4", - "user:parentId": "NNE0YMCDZkO" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.736984, 7.430416], - [-11.736679, 7.429717], - [-11.73478, 7.426877], - [-11.733724, 7.426077], - [-11.732218, 7.425907], - [-11.73062, 7.42503], - [-11.730178, 7.424569], - [-11.729611, 7.423675], - [-11.729076, 7.421667], - [-11.728446, 7.420574], - [-11.727181, 7.419881], - [-11.72542, 7.419642], - [-11.724511, 7.418888], - [-11.723495, 7.418687], - [-11.722284, 7.417905], - [-11.721407, 7.415858], - [-11.72134, 7.414521], - [-11.72089, 7.413997], - [-11.720562, 7.41329], - [-11.72089, 7.411484], - [-11.720419, 7.409545], - [-11.720556, 7.407915], - [-11.720184, 7.407269], - [-11.719517, 7.407284], - [-11.718198, 7.407968], - [-11.717335, 7.408207], - [-11.715163, 7.408145], - [-11.714215, 7.407792], - [-11.712244, 7.408], - [-11.71073, 7.408739], - [-11.710335, 7.409047], - [-11.709744, 7.40994], - [-11.707328, 7.410484], - [-11.707327, 7.410483], - [-11.707483, 7.40971], - [-11.704843, 7.409174], - [-11.702732, 7.408992], - [-11.701932, 7.408427], - [-11.701795, 7.407883], - [-11.702069, 7.407687], - [-11.702103, 7.407127], - [-11.702921, 7.40469], - [-11.703903, 7.402686], - [-11.703557, 7.40126], - [-11.702391, 7.400917], - [-11.702192, 7.401177], - [-11.701353, 7.400999], - [-11.700546, 7.401202], - [-11.699987, 7.401101], - [-11.698872, 7.400475], - [-11.698697, 7.400266], - [-11.698737, 7.399842], - [-11.696445, 7.399167], - [-11.696178, 7.399014], - [-11.694707, 7.39663], - [-11.694613, 7.395084], - [-11.694279, 7.394637], - [-11.694065, 7.3938], - [-11.69452, 7.392798], - [-11.695046, 7.392912], - [-11.695536, 7.393374], - [-11.696227, 7.39363], - [-11.696588, 7.393499], - [-11.697166, 7.39294], - [-11.698032, 7.392656], - [-11.698707, 7.391654], - [-11.698757, 7.390997], - [-11.699168, 7.390609], - [-11.698873, 7.389907], - [-11.698921, 7.38864], - [-11.698751, 7.388165], - [-11.698498, 7.387823], - [-11.697308, 7.387338], - [-11.696611, 7.386712], - [-11.696544, 7.384558], - [-11.695832, 7.382717], - [-11.69587, 7.381743], - [-11.696341, 7.380541], - [-11.696499, 7.380276], - [-11.696622, 7.380244], - [-11.685417, 7.378749], - [-11.685417, 7.37125], - [-11.688749, 7.367916], - [-11.688749, 7.36625], - [-11.682083, 7.36625], - [-11.683749, 7.36875], - [-11.683749, 7.377917], - [-11.680416, 7.382083], - [-11.67375, 7.382917], - [-11.673749, 7.38375], - [-11.672916, 7.387916], - [-11.668749, 7.387916], - [-11.662083, 7.38625], - [-11.661249, 7.384584], - [-11.657083, 7.385416], - [-11.656827, 7.384906], - [-11.656534, 7.385151], - [-11.656533, 7.38515], - [-11.654582, 7.38125], - [-11.64625, 7.379584], - [-11.644583, 7.382916], - [-11.643895, 7.383604], - [-11.643299, 7.3855], - [-11.641199, 7.3909], - [-11.640799, 7.3938], - [-11.6406, 7.405399], - [-11.6397, 7.408799], - [-11.6365, 7.415499], - [-11.6342, 7.419799], - [-11.632899, 7.4229], - [-11.630899, 7.4265], - [-11.629583, 7.429521], - [-11.629583, 7.437916], - [-11.632734, 7.442642], - [-11.638874, 7.442643], - [-11.64073, 7.445855], - [-11.646249, 7.446249], - [-11.648474, 7.444025], - [-11.648959, 7.444862], - [-11.653749, 7.444862], - [-11.65375, 7.442083], - [-11.662082, 7.438749], - [-11.665098, 7.435735], - [-11.66537, 7.435891], - [-11.670811, 7.436535], - [-11.673889, 7.43792], - [-11.675823, 7.438014], - [-11.678371, 7.437515], - [-11.679721, 7.436978], - [-11.680562, 7.436622], - [-11.682501, 7.43524], - [-11.683695, 7.435037], - [-11.684735, 7.435136], - [-11.685763, 7.435911], - [-11.686757, 7.437172], - [-11.689059, 7.438365], - [-11.689896, 7.438415], - [-11.692876, 7.437771], - [-11.696201, 7.436527], - [-11.697476, 7.43624], - [-11.698518, 7.436312], - [-11.699664, 7.431634], - [-11.70102, 7.425355], - [-11.701395, 7.42375], - [-11.707916, 7.423749], - [-11.709583, 7.422084], - [-11.717916, 7.423749], - [-11.717917, 7.425416], - [-11.727083, 7.430416], - [-11.736984, 7.430416] - ] - ], - "type": "Polygon" - }, - "id": 33, - "properties": { - "cc:admin:id": ["66"], - "cc:oBld:total": 0, - "cc:pop:fifteen-to-twenty-four": 980.6600525450002, - "cc:pop:grid3-total": 6659.118134071225, - "cc:pop:kontur-total": 6097.277686601237, - "cc:pop:men": 2686.5659109619896, - "cc:pop:sixty-plus": 407.1794105039574, - "cc:pop:total": 5529.01918368557, - "cc:pop:under-five": 928.0067853792045, - "cc:pop:women": 2842.45327272358, - "cc:pop:women-fiften-to-forty-nine": 1361.6638347451506, - "cc:pop:wp-total": 5918.211071259378, - "cc:pop:wp-total-UN": 6860.615481272678, - "cc:id": "33", - "cc:Name": "Bathurst MCHP", - "cc:site": [-11.6861, 7.39085], - "user:parentName": "Wonde", - "user:code": "OU_1164", - "user:orgUnitId": "UGVLYrO63mR", - "user:level": "4", - "user:parentId": "ARZ4y5i4reU" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.084532, 9.379583], - [-12.077083, 9.379582], - [-12.072083, 9.374583], - [-12.072083, 9.365416], - [-12.075416, 9.36125], - [-12.078749, 9.360416], - [-12.075417, 9.35625], - [-12.075416, 9.352042], - [-12.0695, 9.352199], - [-12.065999, 9.3531], - [-12.0593, 9.356299], - [-12.055099, 9.3588], - [-12.051899, 9.3601], - [-12.047399, 9.3623], - [-12.043799, 9.363], - [-12.0379, 9.363299], - [-12.0341, 9.363799], - [-12.027899, 9.3662], - [-12.024099, 9.3668], - [-12.018299, 9.367], - [-12.014599, 9.3678], - [-12.010099, 9.3697], - [-12.007499, 9.3703], - [-12.0022, 9.370899], - [-11.9997, 9.371499], - [-11.994299, 9.3737], - [-11.990499, 9.3742], - [-11.981, 9.3744], - [-11.9778, 9.3759], - [-11.9758, 9.381299], - [-11.974414, 9.384582], - [-11.982082, 9.384583], - [-11.985417, 9.385417], - [-11.990166, 9.385417], - [-11.989397, 9.387982], - [-11.99096, 9.389864], - [-11.992179, 9.390021], - [-11.993565, 9.39066], - [-11.99393, 9.390932], - [-11.994194, 9.391776], - [-11.993241, 9.397159], - [-11.992583, 9.398799], - [-11.991904, 9.399934], - [-11.991127, 9.400651], - [-11.989681, 9.401196], - [-11.989377, 9.401526], - [-11.989165, 9.402283], - [-11.98942, 9.403002], - [-11.989951, 9.403739], - [-11.990029, 9.40434], - [-11.989932, 9.40593], - [-11.989656, 9.406144], - [-11.989558, 9.407075], - [-11.989852, 9.407463], - [-11.991151, 9.408413], - [-11.992016, 9.408355], - [-11.994002, 9.407852], - [-11.994965, 9.407948], - [-11.995771, 9.408958], - [-11.99583, 9.409694], - [-11.995379, 9.411634], - [-11.993845, 9.414689], - [-11.993508, 9.414932], - [-11.993591, 9.415098], - [-11.997168, 9.415098], - [-12.001075, 9.408333], - [-12.005041, 9.408333], - [-12.005055, 9.408379], - [-12.004884, 9.408398], - [-12.002516, 9.409627], - [-12.004008, 9.412005], - [-12.004188, 9.413306], - [-12.004442, 9.413483], - [-12.00495, 9.414645], - [-12.005083, 9.415715], - [-12.006072, 9.418047], - [-12.006901, 9.418912], - [-12.007024, 9.419358], - [-12.007787, 9.41987], - [-12.008088, 9.420297], - [-12.008636, 9.421821], - [-12.008939, 9.421987], - [-12.010271, 9.41987], - [-12.010606, 9.419042], - [-12.015416, 9.420417], - [-12.012917, 9.427917], - [-12.01375, 9.432082], - [-12.019541, 9.427017], - [-12.019726, 9.428206], - [-12.020286, 9.428972], - [-12.020603, 9.429863], - [-12.021589, 9.431473], - [-12.021636, 9.433211], - [-12.021811, 9.434093], - [-12.021721, 9.435006], - [-12.021969, 9.435816], - [-12.022413, 9.436459], - [-12.022461, 9.436853], - [-12.023551, 9.436854], - [-12.025872, 9.440876], - [-12.026703, 9.441201], - [-12.029994, 9.438459], - [-12.031177, 9.43776], - [-12.031677, 9.437048], - [-12.032916, 9.439193], - [-12.032917, 9.438749], - [-12.03625, 9.434583], - [-12.046249, 9.43375], - [-12.051596, 9.435277], - [-12.051616, 9.435238], - [-12.052081, 9.433334], - [-12.052073, 9.433052], - [-12.052807, 9.433051], - [-12.055642, 9.428143], - [-12.052083, 9.424583], - [-12.052916, 9.422083], - [-12.056249, 9.419582], - [-12.05625, 9.417916], - [-12.058575, 9.416172], - [-12.058597, 9.416207], - [-12.05918, 9.4166], - [-12.060389, 9.418377], - [-12.060835, 9.418567], - [-12.061838, 9.419276], - [-12.063383, 9.419815], - [-12.064003, 9.419587], - [-12.064314, 9.41987], - [-12.065584, 9.419974], - [-12.068194, 9.419768], - [-12.069384, 9.420803], - [-12.06976, 9.421619], - [-12.070416, 9.41375], - [-12.068635, 9.411522], - [-12.071679, 9.40625], - [-12.073749, 9.406249], - [-12.076721, 9.396592], - [-12.077083, 9.396659], - [-12.077082, 9.387083], - [-12.07207, 9.38764], - [-12.072069, 9.387639], - [-12.075183, 9.382244], - [-12.082996, 9.382243], - [-12.084532, 9.379583] - ] - ], - "type": "Polygon" - }, - "id": 34, - "properties": { - "cc:admin:id": ["116"], - "cc:oBld:total": 13, - "cc:pop:fifteen-to-twenty-four": 511.2931709086719, - "cc:pop:grid3-total": 4816.8316138642385, - "cc:pop:kontur-total": 2891.000666097656, - "cc:pop:men": 1312.8090321678314, - "cc:pop:sixty-plus": 167.7206866348273, - "cc:pop:total": 2767.770960979606, - "cc:pop:under-five": 447.37012326733145, - "cc:pop:women": 1454.961928811775, - "cc:pop:women-fiften-to-forty-nine": 703.7268670090772, - "cc:pop:wp-total": 2250.302886639848, - "cc:pop:wp-total-UN": 2612.5356689051123, - "cc:id": "34", - "cc:Name": "Batkanu CHC", - "cc:site": [-12.02582, 9.39236], - "user:parentName": "Libeisaygahun", - "user:code": "OU_193303", - "user:orgUnitId": "agM0BKQlTh3", - "user:level": "4", - "user:parentId": "hRZOIgQ0O1m" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.732082, 7.407917], - [-11.727083, 7.404584], - [-11.725416, 7.406249], - [-11.722917, 7.40625], - [-11.717083, 7.40375], - [-11.715869, 7.407392], - [-11.715947, 7.407422], - [-11.717211, 7.407223], - [-11.717808, 7.407414], - [-11.719019, 7.406722], - [-11.71968, 7.406522], - [-11.72051, 7.406568], - [-11.720967, 7.406946], - [-11.721388, 7.407823], - [-11.721418, 7.408546], - [-11.721124, 7.409508], - [-11.721516, 7.410765], - [-11.721396, 7.411537], - [-11.721669, 7.412594], - [-11.721539, 7.413366], - [-11.722054, 7.414597], - [-11.722016, 7.415955], - [-11.7228, 7.41754], - [-11.723815, 7.418075], - [-11.726249, 7.416249], - [-11.727917, 7.412084], - [-11.732082, 7.407917] - ] - ], - "type": "Polygon" - }, - "id": 35, - "properties": { - "cc:admin:id": ["66"], - "cc:oBld:total": 0, - "cc:pop:fifteen-to-twenty-four": 189, - "cc:pop:grid3-total": 1530.2534444999997, - "cc:pop:kontur-total": 1048.5002598894184, - "cc:pop:men": 510, - "cc:pop:sixty-plus": 76, - "cc:pop:total": 1050, - "cc:pop:under-five": 175, - "cc:pop:women": 540, - "cc:pop:women-fiften-to-forty-nine": 259, - "cc:pop:wp-total": 824.5757789999902, - "cc:pop:wp-total-UN": 954.5895569999884, - "cc:id": "35", - "cc:Name": "Bayama MCHP", - "cc:site": [-11.7258, 7.4082], - "user:parentName": "Kpanga Krim", - "user:code": "OU_260418", - "user:orgUnitId": "k92yudERPlv", - "user:level": "4", - "user:parentId": "YpVol7asWvd" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.080416, 7.619583], - [-11.07875, 7.614583], - [-11.078749, 7.60945], - [-11.076799, 7.608399], - [-11.070399, 7.603399], - [-11.062599, 7.599399], - [-11.058699, 7.598499], - [-11.052799, 7.5983], - [-11.047899, 7.5991], - [-11.042199, 7.6016], - [-11.038399, 7.6021], - [-11.0335, 7.6021], - [-11.029699, 7.601499], - [-11.023499, 7.599], - [-11.019999, 7.5988], - [-11.017499, 7.5992], - [-11.011699, 7.6015], - [-11.007499, 7.602], - [-10.9997, 7.602099], - [-10.996399, 7.6025], - [-10.994299, 7.6032], - [-10.9907, 7.605099], - [-10.9876, 7.606499], - [-10.983299, 7.609], - [-10.978799, 7.6114], - [-10.975999, 7.6137], - [-10.9737, 7.616599], - [-10.9707, 7.621999], - [-10.9683, 7.624899], - [-10.963, 7.629899], - [-10.958599, 7.633], - [-10.955399, 7.6382], - [-10.954499, 7.6405], - [-10.953499, 7.6457], - [-10.9498, 7.653899], - [-10.948299, 7.655899], - [-10.945799, 7.657499], - [-10.942499, 7.6581], - [-10.935799, 7.658299], - [-10.9321, 7.658], - [-10.929299, 7.656999], - [-10.9231, 7.6496], - [-10.921, 7.6465], - [-10.919599, 7.643299], - [-10.917399, 7.638999], - [-10.915499, 7.633499], - [-10.912299, 7.6319], - [-10.909799, 7.6318], - [-10.907099, 7.6322], - [-10.904, 7.6334], - [-10.904179, 7.63658], - [-10.909564, 7.636581], - [-10.913469, 7.643346], - [-10.909564, 7.650112], - [-10.91347, 7.656877], - [-10.921282, 7.656878], - [-10.925189, 7.663643], - [-10.933, 7.663644], - [-10.936908, 7.670409], - [-10.94472, 7.67041], - [-10.948625, 7.677176], - [-10.94472, 7.683941], - [-10.948625, 7.690706], - [-10.949024, 7.690707], - [-10.94875, 7.692084], - [-10.954583, 7.704583], - [-10.964582, 7.70375], - [-10.967916, 7.699583], - [-10.968749, 7.695417], - [-10.965417, 7.680418], - [-10.965418, 7.680417], - [-10.972082, 7.680417], - [-10.974583, 7.683749], - [-10.981249, 7.687083], - [-10.982083, 7.687917], - [-10.982916, 7.687916], - [-10.984582, 7.687083], - [-10.987916, 7.682917], - [-10.990417, 7.682084], - [-10.99875, 7.692083], - [-11.003749, 7.694583], - [-11.00375, 7.696249], - [-11.011249, 7.69625], - [-11.012568, 7.697128], - [-11.012783, 7.696313], - [-11.012903, 7.694793], - [-11.012662, 7.694134], - [-11.013379, 7.693227], - [-11.014453, 7.692543], - [-11.015357, 7.691694], - [-11.01538, 7.691649], - [-11.02125, 7.694583], - [-11.023749, 7.694583], - [-11.025416, 7.692916], - [-11.025417, 7.687723], - [-11.027558, 7.684013], - [-11.031249, 7.679583], - [-11.031249, 7.67125], - [-11.027082, 7.669583], - [-11.02375, 7.664584], - [-11.027916, 7.652917], - [-11.03375, 7.654583], - [-11.038749, 7.65375], - [-11.042082, 7.649584], - [-11.042083, 7.648482], - [-11.048072, 7.648481], - [-11.051978, 7.641716], - [-11.05171, 7.64125], - [-11.055417, 7.641249], - [-11.058749, 7.637916], - [-11.061249, 7.632917], - [-11.06242, 7.631746], - [-11.062422, 7.631746], - [-11.063434, 7.636534], - [-11.064132, 7.637142], - [-11.064318, 7.637252], - [-11.068749, 7.632084], - [-11.06875, 7.625417], - [-11.067917, 7.624583], - [-11.067917, 7.621249], - [-11.07375, 7.619584], - [-11.080416, 7.619583] - ] - ], - "type": "Polygon" - }, - "id": 36, - "properties": { - "cc:admin:id": ["28"], - "cc:oBld:total": 507, - "cc:pop:fifteen-to-twenty-four": 956.63979773403, - "cc:pop:grid3-total": 3871.002734326222, - "cc:pop:kontur-total": 4796.014577560971, - "cc:pop:men": 2392.0835219502696, - "cc:pop:sixty-plus": 294.4397354498917, - "cc:pop:total": 4938.4162724360385, - "cc:pop:under-five": 778.6726016919339, - "cc:pop:women": 2546.332750485769, - "cc:pop:women-fiften-to-forty-nine": 1279.7424128351574, - "cc:pop:wp-total": 4701.800979162942, - "cc:pop:wp-total-UN": 5450.474870193093, - "cc:id": "36", - "cc:Name": "Belebu CHP", - "cc:site": [-11.0428, 7.6057], - "user:parentName": "Tunkia", - "user:code": "OU_222635", - "user:orgUnitId": "PwgoRuWEDvJ", - "user:level": "4", - "user:parentId": "l7pFejMtUoF" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.365199, 7.529099], - [-12.3652, 7.5207], - [-12.3649, 7.5156], - [-12.364199, 7.512699], - [-12.362099, 7.507699], - [-12.3613, 7.5036], - [-12.3605, 7.495], - [-12.3592, 7.489999], - [-12.359899, 7.4848], - [-12.358099, 7.480799], - [-12.357499, 7.477499], - [-12.357, 7.4709], - [-12.3563, 7.4682], - [-12.3549, 7.4661], - [-12.353, 7.4645], - [-12.346299, 7.461299], - [-12.342499, 7.460399], - [-12.338399, 7.4602], - [-12.3336, 7.460899], - [-12.3305, 7.462199], - [-12.327499, 7.460699], - [-12.3161, 7.4601], - [-12.3133, 7.4597], - [-12.307899, 7.457499], - [-12.2974, 7.4555], - [-12.291899, 7.453399], - [-12.2881, 7.4529], - [-12.285199, 7.453], - [-12.282299, 7.4536], - [-12.277899, 7.4555], - [-12.2696, 7.457199], - [-12.263699, 7.459], - [-12.259199, 7.4599], - [-12.254899, 7.4602], - [-12.2469, 7.460299], - [-12.2421, 7.460899], - [-12.236699, 7.4631], - [-12.233299, 7.4638], - [-12.227499, 7.4646], - [-12.221, 7.467099], - [-12.215099, 7.4685], - [-12.2107, 7.470699], - [-12.2075, 7.472099], - [-12.2033, 7.474499], - [-12.200099, 7.4758], - [-12.1958, 7.478199], - [-12.194864, 7.478609], - [-12.194929, 7.479054], - [-12.194721, 7.479599], - [-12.193098, 7.480454], - [-12.192984, 7.48082], - [-12.193086, 7.481009], - [-12.194336, 7.48171], - [-12.195363, 7.481921], - [-12.195784, 7.482414], - [-12.196003, 7.48305], - [-12.196209, 7.484622], - [-12.196724, 7.484755], - [-12.197108, 7.485143], - [-12.196973, 7.486172], - [-12.197488, 7.486305], - [-12.198, 7.486822], - [-12.198514, 7.487083], - [-12.199288, 7.487218], - [-12.199413, 7.487733], - [-12.198996, 7.488484], - [-12.198583, 7.488703], - [-12.197784, 7.488708], - [-12.197686, 7.488892], - [-12.1987, 7.489189], - [-12.19904, 7.489516], - [-12.199411, 7.490423], - [-12.199325, 7.490743], - [-12.198227, 7.491716], - [-12.19771, 7.49197], - [-12.195735, 7.492467], - [-12.195446, 7.49345], - [-12.195394, 7.493919], - [-12.195614, 7.494891], - [-12.195909, 7.495265], - [-12.196424, 7.495573], - [-12.19677, 7.495574], - [-12.196966, 7.495408], - [-12.198059, 7.495585], - [-12.198293, 7.496659], - [-12.198324, 7.496753], - [-12.19832, 7.497512], - [-12.198663, 7.498991], - [-12.199389, 7.500101], - [-12.200077, 7.500619], - [-12.200871, 7.501905], - [-12.200863, 7.503192], - [-12.201117, 7.50371], - [-12.200957, 7.505168], - [-12.200725, 7.505814], - [-12.199549, 7.507048], - [-12.199331, 7.508113], - [-12.199279, 7.510143], - [-12.19862, 7.511032], - [-12.197328, 7.511282], - [-12.196809, 7.511793], - [-12.196182, 7.511962], - [-12.195441, 7.512976], - [-12.194887, 7.514177], - [-12.193807, 7.515025], - [-12.193036, 7.515065], - [-12.19125, 7.514805], - [-12.19125, 7.515417], - [-12.191854, 7.517835], - [-12.192383, 7.517944], - [-12.193005, 7.517839], - [-12.194074, 7.516952], - [-12.194365, 7.51627], - [-12.194717, 7.5159], - [-12.19593, 7.515825], - [-12.196264, 7.516039], - [-12.196128, 7.516747], - [-12.196385, 7.517584], - [-12.197149, 7.51851], - [-12.198825, 7.519016], - [-12.200372, 7.519284], - [-12.200629, 7.519543], - [-12.201915, 7.520066], - [-12.203325, 7.521491], - [-12.203973, 7.521881], - [-12.204485, 7.521884], - [-12.205949, 7.521256], - [-12.207327, 7.521131], - [-12.207843, 7.521134], - [-12.2081, 7.521392], - [-12.209907, 7.521405], - [-12.212077, 7.522009], - [-12.213761, 7.523746], - [-12.214167, 7.523908], - [-12.21502, 7.523686], - [-12.215632, 7.523059], - [-12.217235, 7.522029], - [-12.218679, 7.52146], - [-12.221208, 7.520755], - [-12.224552, 7.518114], - [-12.226188, 7.517388], - [-12.228251, 7.5174], - [-12.228909, 7.517772], - [-12.232636, 7.517686], - [-12.233998, 7.518777], - [-12.234816, 7.519889], - [-12.234814, 7.520403], - [-12.235067, 7.521178], - [-12.235166, 7.523556], - [-12.235608, 7.524543], - [-12.236037, 7.524751], - [-12.236982, 7.52428], - [-12.238448, 7.52384], - [-12.239569, 7.523138], - [-12.240089, 7.522626], - [-12.242929, 7.522129], - [-12.247316, 7.522156], - [-12.248087, 7.522675], - [-12.248232, 7.523004], - [-12.249101, 7.523266], - [-12.250335, 7.523195], - [-12.25076, 7.522972], - [-12.251318, 7.522052], - [-12.251582, 7.521024], - [-12.251593, 7.519059], - [-12.251485, 7.518881], - [-12.250951, 7.518831], - [-12.250486, 7.518539], - [-12.248826, 7.518462], - [-12.248062, 7.518025], - [-12.247885, 7.517686], - [-12.24813, 7.516013], - [-12.248557, 7.514992], - [-12.249431, 7.514187], - [-12.249617, 7.514658], - [-12.249317, 7.514659], - [-12.248237, 7.517284], - [-12.248556, 7.517663], - [-12.249311, 7.51807], - [-12.251677, 7.51854], - [-12.251862, 7.518531], - [-12.252379, 7.517919], - [-12.253023, 7.517493], - [-12.25338, 7.517361], - [-12.254307, 7.517521], - [-12.254609, 7.51812], - [-12.254689, 7.519241], - [-12.254427, 7.520013], - [-12.25498, 7.52205], - [-12.255432, 7.522477], - [-12.257561, 7.523979], - [-12.257694, 7.524036], - [-12.2584, 7.524275], - [-12.258827, 7.524163], - [-12.258957, 7.523971], - [-12.25918, 7.523105], - [-12.259223, 7.522725], - [-12.259155, 7.521894], - [-12.259191, 7.52144], - [-12.259259, 7.521026], - [-12.25985, 7.520252], - [-12.260369, 7.519977], - [-12.261445, 7.519928], - [-12.261642, 7.519913], - [-12.264366, 7.51959], - [-12.264622, 7.519335], - [-12.264625, 7.519046], - [-12.264872, 7.519088], - [-12.265176, 7.518786], - [-12.265289, 7.518014], - [-12.264376, 7.517464], - [-12.263627, 7.517271], - [-12.263299, 7.516833], - [-12.263288, 7.516451], - [-12.263437, 7.515577], - [-12.263873, 7.515012], - [-12.26451, 7.514585], - [-12.26516, 7.514488], - [-12.266053, 7.514793], - [-12.266111, 7.514826], - [-12.268162, 7.516004], - [-12.269662, 7.517459], - [-12.271206, 7.518486], - [-12.271555, 7.518416], - [-12.272253, 7.518996], - [-12.272893, 7.519183], - [-12.274377, 7.517973], - [-12.277911, 7.517924], - [-12.278506, 7.518046], - [-12.279416, 7.518457], - [-12.280006, 7.518945], - [-12.280679, 7.520256], - [-12.281428, 7.520577], - [-12.282592, 7.520378], - [-12.283341, 7.51984], - [-12.283767, 7.519311], - [-12.283049, 7.517149], - [-12.283177, 7.516503], - [-12.283481, 7.516072], - [-12.283963, 7.515592], - [-12.284916, 7.515587], - [-12.286277, 7.516091], - [-12.286789, 7.516783], - [-12.286897, 7.517341], - [-12.286471, 7.519291], - [-12.286066, 7.52039], - [-12.285056, 7.522419], - [-12.2854, 7.523924], - [-12.286394, 7.524845], - [-12.287225, 7.524387], - [-12.287991, 7.523534], - [-12.28891, 7.523172], - [-12.290172, 7.523152], - [-12.29111, 7.524026], - [-12.291244, 7.52486], - [-12.29172, 7.525583], - [-12.292332, 7.525781], - [-12.293009, 7.525578], - [-12.294169, 7.524515], - [-12.295151, 7.524104], - [-12.296298, 7.524068], - [-12.29715, 7.524434], - [-12.297955, 7.525273], - [-12.298402, 7.526352], - [-12.298536, 7.52771], - [-12.298893, 7.528409], - [-12.29947, 7.528816], - [-12.300344, 7.528917], - [-12.301729, 7.528777], - [-12.303191, 7.528389], - [-12.306131, 7.527083], - [-12.307414, 7.526778], - [-12.309151, 7.526032], - [-12.309327, 7.525772], - [-12.310709, 7.525153], - [-12.311704, 7.525412], - [-12.313042, 7.525432], - [-12.313453, 7.525325], - [-12.313619, 7.525611], - [-12.32143, 7.525611], - [-12.325337, 7.532376], - [-12.328711, 7.532377], - [-12.32907, 7.533077], - [-12.329581, 7.533699], - [-12.33048, 7.534287], - [-12.331422, 7.535145], - [-12.332051, 7.535927], - [-12.332626, 7.536911], - [-12.332966, 7.537128], - [-12.333007, 7.537372], - [-12.333191, 7.538332], - [-12.333283, 7.538914], - [-12.333577, 7.53935], - [-12.334281, 7.539655], - [-12.335553, 7.539745], - [-12.336377, 7.539943], - [-12.337158, 7.540311], - [-12.33779, 7.54047], - [-12.338693, 7.540685], - [-12.340121, 7.541713], - [-12.340953, 7.542347], - [-12.340425, 7.542897], - [-12.340237, 7.543255], - [-12.340257, 7.54368], - [-12.340369, 7.544068], - [-12.34087, 7.544927], - [-12.342061, 7.545794], - [-12.34442, 7.547059], - [-12.3474, 7.545299], - [-12.3523, 7.543999], - [-12.357799, 7.538399], - [-12.3578, 7.532799], - [-12.365199, 7.529099] - ] - ], - "type": "Polygon" - }, - "id": 38, - "properties": { - "cc:admin:id": ["42"], - "cc:oBld:total": 1, - "cc:pop:fifteen-to-twenty-four": 1044.2128403950069, - "cc:pop:grid3-total": 4381.19160147491, - "cc:pop:kontur-total": 5857.019844985355, - "cc:pop:men": 2859.8085356672864, - "cc:pop:sixty-plus": 447.6838650299541, - "cc:pop:total": 5979.450916601759, - "cc:pop:under-five": 990.4464644080608, - "cc:pop:women": 3119.6423809344706, - "cc:pop:women-fiften-to-forty-nine": 1513.1051049376058, - "cc:pop:wp-total": 5786.025268673608, - "cc:pop:wp-total-UN": 6704.530228594469, - "cc:id": "38", - "cc:Name": "Bendu CHC", - "cc:site": [-12.30127, 7.4966], - "user:parentName": "Bendu Cha", - "user:code": "OU_197430", - "user:orgUnitId": "uFp0ztDOFbI", - "user:level": "4", - "user:parentId": "EB1zRKdYjdY" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.988679, 8.06822], - [-10.988005, 8.069249], - [-10.987811, 8.070886], - [-10.983749, 8.072916], - [-10.977917, 8.072916], - [-10.972916, 8.070417], - [-10.97125, 8.07125], - [-10.971249, 8.073749], - [-10.960731, 8.07375], - [-10.960825, 8.074202], - [-10.961278, 8.074663], - [-10.961384, 8.075308], - [-10.960835, 8.075725], - [-10.959273, 8.076049], - [-10.958743, 8.076384], - [-10.958074, 8.077326], - [-10.957481, 8.07874], - [-10.957833, 8.079568], - [-10.959265, 8.080992], - [-10.95909, 8.080997], - [-10.958058, 8.080258], - [-10.957648, 8.079663], - [-10.9574, 8.079568], - [-10.957255, 8.078742], - [-10.958166, 8.076692], - [-10.958712, 8.076135], - [-10.959255, 8.075796], - [-10.959588, 8.075889], - [-10.960175, 8.075612], - [-10.960612, 8.075595], - [-10.960653, 8.075405], - [-10.961121, 8.075258], - [-10.960678, 8.074207], - [-10.960426, 8.074166], - [-10.960198, 8.073229], - [-10.960352, 8.072532], - [-10.960173, 8.071899], - [-10.959799, 8.0723], - [-10.950199, 8.0781], - [-10.947399, 8.0814], - [-10.9415, 8.091599], - [-10.938099, 8.0952], - [-10.935099, 8.0975], - [-10.929, 8.100099], - [-10.9268, 8.1017], - [-10.923413, 8.106657], - [-10.924583, 8.109583], - [-10.929582, 8.112083], - [-10.93117, 8.114464], - [-10.930792, 8.114787], - [-10.929598, 8.115685], - [-10.929189, 8.115815], - [-10.929226, 8.11595], - [-10.927671, 8.116994], - [-10.926519, 8.11735], - [-10.92606, 8.118325], - [-10.925729, 8.1186], - [-10.925433, 8.118612], - [-10.925152, 8.118362], - [-10.924451, 8.118163], - [-10.924351, 8.118278], - [-10.924594, 8.118882], - [-10.924262, 8.119377], - [-10.924104, 8.11892], - [-10.923905, 8.118758], - [-10.923598, 8.118831], - [-10.923303, 8.119181], - [-10.923378, 8.119937], - [-10.923198, 8.120472], - [-10.922398, 8.120719], - [-10.921766, 8.121122], - [-10.921545, 8.121478], - [-10.921495, 8.121783], - [-10.921808, 8.122212], - [-10.921517, 8.123207], - [-10.919988, 8.125222], - [-10.919583, 8.125183], - [-10.919583, 8.125416], - [-10.925416, 8.130416], - [-10.927083, 8.135417], - [-10.930416, 8.137916], - [-10.93125, 8.137083], - [-10.93875, 8.134584], - [-10.94125, 8.135417], - [-10.941304, 8.135471], - [-10.941304, 8.135472], - [-10.940749, 8.135816], - [-10.940191, 8.136004], - [-10.94002, 8.136292], - [-10.940261, 8.136809], - [-10.942021, 8.138391], - [-10.942916, 8.138749], - [-10.952916, 8.13875], - [-10.952917, 8.14904], - [-10.9554, 8.1501], - [-10.9598, 8.152399], - [-10.9646, 8.1533], - [-10.971099, 8.1533], - [-10.974599, 8.152399], - [-10.9774, 8.150499], - [-10.9799, 8.147699], - [-10.981299, 8.145], - [-10.9818, 8.142499], - [-10.981999, 8.139399], - [-10.9813, 8.1004], - [-10.9815, 8.093199], - [-10.982099, 8.0902], - [-10.984, 8.085799], - [-10.985499, 8.0801], - [-10.9878, 8.074699], - [-10.988599, 8.0707], - [-10.988679, 8.06822] - ] - ], - "type": "Polygon" - }, - "id": 39, - "properties": { - "cc:admin:id": ["86"], - "cc:oBld:total": 411, - "cc:pop:fifteen-to-twenty-four": 810.369454423336, - "cc:pop:grid3-total": 4851.128437120108, - "cc:pop:kontur-total": 4047.6760549713867, - "cc:pop:men": 2091.895672770234, - "cc:pop:sixty-plus": 252.0738526797256, - "cc:pop:total": 4181.793640643317, - "cc:pop:under-five": 665.2532167440572, - "cc:pop:women": 2089.8979678730834, - "cc:pop:women-fiften-to-forty-nine": 1020.45646310778, - "cc:pop:wp-total": 4360.146537418302, - "cc:pop:wp-total-UN": 5051.287213450014, - "cc:id": "39", - "cc:Name": "Bendu Mameima CHC", - "cc:site": [-10.9705, 8.1001], - "user:parentName": "Malegohun", - "user:code": "OU_222674", - "user:orgUnitId": "amgb83zVxp5", - "user:level": "4", - "user:parentId": "x4HaBHHwBML" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.559788, 9.135022], - [-11.560416, 9.13125], - [-11.559582, 9.12875], - [-11.554583, 9.124582], - [-11.554582, 9.11625], - [-11.552916, 9.115416], - [-11.552083, 9.11375], - [-11.55125, 9.109583], - [-11.551249, 9.10875], - [-11.547917, 9.107917], - [-11.547083, 9.106249], - [-11.547083, 9.102083], - [-11.550416, 9.100416], - [-11.54875, 9.097082], - [-11.54875, 9.09375], - [-11.555416, 9.089582], - [-11.552916, 9.084583], - [-11.549583, 9.084582], - [-11.549582, 9.08375], - [-11.548749, 9.082916], - [-11.547916, 9.079583], - [-11.546249, 9.079582], - [-11.539583, 9.072917], - [-11.540416, 9.07125], - [-11.537082, 9.069582], - [-11.534583, 9.062916], - [-11.535417, 9.057083], - [-11.545417, 9.058749], - [-11.547916, 9.052082], - [-11.547916, 9.045339], - [-11.54704, 9.045291], - [-11.546808, 9.044985], - [-11.546514, 9.044696], - [-11.545832, 9.044592], - [-11.544993, 9.044721], - [-11.544198, 9.045284], - [-11.544196, 9.045284], - [-11.542917, 9.042082], - [-11.542917, 9.037083], - [-11.548749, 9.025417], - [-11.542083, 9.022083], - [-11.540417, 9.022083], - [-11.529583, 9.030416], - [-11.525417, 9.02625], - [-11.525417, 9.014583], - [-11.527082, 9.012083], - [-11.527916, 9.012082], - [-11.527916, 9.004583], - [-11.526249, 9.000416], - [-11.52125, 8.990417], - [-11.523749, 8.987083], - [-11.52125, 8.985417], - [-11.520417, 8.984582], - [-11.51875, 8.980416], - [-11.51875, 8.979582], - [-11.526249, 8.97125], - [-11.522083, 8.970416], - [-11.522083, 8.960417], - [-11.522916, 8.959582], - [-11.522917, 8.95625], - [-11.525416, 8.955416], - [-11.52375, 8.952083], - [-11.524582, 8.950417], - [-11.519583, 8.947082], - [-11.519583, 8.946249], - [-11.522082, 8.944582], - [-11.52125, 8.935417], - [-11.530416, 8.934582], - [-11.531249, 8.927083], - [-11.529583, 8.922082], - [-11.529583, 8.914582], - [-11.532917, 8.910416], - [-11.542082, 8.909582], - [-11.537916, 8.905417], - [-11.532917, 8.90375], - [-11.531984, 8.902353], - [-11.529699, 8.904299], - [-11.526, 8.904599], - [-11.5185, 8.9008], - [-11.515799, 8.898099], - [-11.513399, 8.893699], - [-11.511, 8.8916], - [-11.5084, 8.8904], - [-11.505299, 8.89], - [-11.502299, 8.89], - [-11.4993, 8.8903], - [-11.496799, 8.8914], - [-11.495299, 8.8933], - [-11.493, 8.897699], - [-11.492499, 8.9], - [-11.492199, 8.9048], - [-11.4916, 8.907599], - [-11.4896, 8.910899], - [-11.486399, 8.9125], - [-11.4811, 8.913499], - [-11.4766, 8.9149], - [-11.478399, 8.921399], - [-11.479299, 8.926999], - [-11.479399, 8.932999], - [-11.478899, 8.9373], - [-11.476799, 8.941899], - [-11.4722, 8.946299], - [-11.470499, 8.9491], - [-11.469199, 8.9523], - [-11.4677, 8.958899], - [-11.4661, 8.964599], - [-11.463799, 8.97], - [-11.462099, 8.9723], - [-11.4591, 8.975299], - [-11.4528, 8.979499], - [-11.4497, 8.982299], - [-11.4473, 8.9858], - [-11.4463, 8.989899], - [-11.446, 8.996799], - [-11.446699, 9.002299], - [-11.448799, 9.008199], - [-11.451, 9.0116], - [-11.457, 9.0182], - [-11.460199, 9.022999], - [-11.461499, 9.0282], - [-11.460999, 9.0335], - [-11.459499, 9.0392], - [-11.452799, 9.0592], - [-11.4515, 9.063799], - [-11.451, 9.068099], - [-11.4508, 9.0784], - [-11.451299, 9.088699], - [-11.452, 9.093], - [-11.454499, 9.102499], - [-11.455199, 9.108299], - [-11.455299, 9.1156], - [-11.4551, 9.118499], - [-11.4546, 9.121299], - [-11.452699, 9.1251], - [-11.4492, 9.129299], - [-11.4449, 9.132799], - [-11.433199, 9.1389], - [-11.4212, 9.1456], - [-11.426099, 9.149399], - [-11.4299, 9.1515], - [-11.4327, 9.1525], - [-11.4399, 9.1542], - [-11.4522, 9.1594], - [-11.464899, 9.163399], - [-11.476199, 9.164999], - [-11.484799, 9.167199], - [-11.491399, 9.167], - [-11.4988, 9.165099], - [-11.509199, 9.1641], - [-11.5136, 9.163299], - [-11.517599, 9.1613], - [-11.520999, 9.1585], - [-11.5251, 9.154199], - [-11.5305, 9.1477], - [-11.533699, 9.1457], - [-11.541899, 9.1425], - [-11.548399, 9.1403], - [-11.558299, 9.1353], - [-11.559788, 9.135022] - ] - ], - "type": "Polygon" - }, - "id": 40, - "properties": { - "cc:admin:id": ["114"], - "cc:oBld:total": 570, - "cc:pop:fifteen-to-twenty-four": 3490.045333497224, - "cc:pop:grid3-total": 14856.960248967707, - "cc:pop:kontur-total": 18686.541644846548, - "cc:pop:men": 8557.507814943996, - "cc:pop:sixty-plus": 1177.064061937369, - "cc:pop:total": 18524.399850413854, - "cc:pop:under-five": 2949.5532937193398, - "cc:pop:women": 9966.892035469862, - "cc:pop:women-fiften-to-forty-nine": 4889.164792665485, - "cc:pop:wp-total": 14088.00038030618, - "cc:pop:wp-total-UN": 16352.262198425793, - "cc:id": "40", - "cc:Name": "Bendugu CHC", - "cc:site": [-11.4941, 9.0633], - "user:parentName": "Sambaia Bendugu", - "user:code": "OU_268170", - "user:orgUnitId": "o0BgK1dLhF8", - "user:level": "4", - "user:parentId": "r1RUyfVBkLp" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.141116, 7.28356], - [-12.14098, 7.283234], - [-12.139695, 7.281587], - [-12.137808, 7.278511], - [-12.137148, 7.277702], - [-12.134363, 7.272567], - [-12.132955, 7.27127], - [-12.132595, 7.270457], - [-12.13196, 7.269716], - [-12.131938, 7.2697], - [-12.128898, 7.27213], - [-12.127639, 7.271124], - [-12.125939, 7.270204], - [-12.127448, 7.267186], - [-12.124201, 7.265309], - [-12.114833, 7.260747], - [-12.113313, 7.260281], - [-12.112316, 7.263763], - [-12.111213, 7.263535], - [-12.105879, 7.261803], - [-12.104583, 7.257917], - [-12.104759, 7.257562], - [-12.099911, 7.254584], - [-12.094791, 7.250943], - [-12.092221, 7.249768], - [-12.09145, 7.249119], - [-12.089135, 7.248203], - [-12.086286, 7.247357], - [-12.083882, 7.246926], - [-12.080353, 7.246819], - [-12.076537, 7.247398], - [-12.072632, 7.248355], - [-12.068753, 7.250389], - [-12.066269, 7.251944], - [-12.064953, 7.252957], - [-12.064218, 7.253837], - [-12.062665, 7.254856], - [-12.061627, 7.255879], - [-12.060648, 7.256563], - [-12.060547, 7.257018], - [-12.05996, 7.257878], - [-12.059064, 7.261386], - [-12.059045, 7.262141], - [-12.058319, 7.263165], - [-12.056799, 7.264474], - [-12.055248, 7.265235], - [-12.053697, 7.265741], - [-12.050078, 7.26591], - [-12.047252, 7.265699], - [-12.042876, 7.264382], - [-12.040009, 7.262925], - [-12.037483, 7.261], - [-12.034402, 7.259178], - [-12.030041, 7.255673], - [-12.027476, 7.253855], - [-12.026446, 7.253461], - [-12.025678, 7.252556], - [-12.024907, 7.252421], - [-12.02465, 7.252162], - [-12.023622, 7.25177], - [-12.023358, 7.252541], - [-12.022581, 7.253178], - [-12.021808, 7.253173], - [-12.020522, 7.25265], - [-12.019753, 7.251872], - [-12.018692, 7.251279], - [-12.018299, 7.2521], - [-12.016999, 7.2553], - [-12.0146, 7.259499], - [-12.0124, 7.263799], - [-12.0082, 7.269299], - [-12.0053, 7.274599], - [-12.0014, 7.279599], - [-12, 7.282299], - [-11.998499, 7.2879], - [-11.996199, 7.293], - [-11.9928, 7.302099], - [-11.994699, 7.304399], - [-11.9964, 7.3075], - [-11.9984, 7.3102], - [-12.0015, 7.3135], - [-12.008699, 7.320499], - [-12.011399, 7.322999], - [-12.014199, 7.325099], - [-12.0181, 7.327], - [-12.0218, 7.3298], - [-12.0243, 7.3326], - [-12.0253, 7.3348], - [-12.026299, 7.338199], - [-12.0273, 7.339899], - [-12.029, 7.3409], - [-12.0323, 7.3418], - [-12.034699, 7.3432], - [-12.0356, 7.3442], - [-12.038299, 7.348599], - [-12.040599, 7.350899], - [-12.044499, 7.352999], - [-12.047199, 7.354999], - [-12.0497, 7.3573], - [-12.0521, 7.360299], - [-12.0562, 7.3598], - [-12.061299, 7.3598], - [-12.064919, 7.360242], - [-12.065416, 7.358849], - [-12.065823, 7.356816], - [-12.066903, 7.354476], - [-12.069883, 7.35002], - [-12.07086, 7.349007], - [-12.071137, 7.348798], - [-12.070617, 7.345152], - [-12.070834, 7.345042], - [-12.073389, 7.344252], - [-12.073967, 7.343879], - [-12.075188, 7.343477], - [-12.078717, 7.343165], - [-12.08077, 7.343425], - [-12.080912, 7.343427], - [-12.080913, 7.343428], - [-12.079841, 7.34772], - [-12.08231, 7.34854], - [-12.08311, 7.348626], - [-12.084563, 7.349083], - [-12.086304, 7.349256], - [-12.08861, 7.348443], - [-12.089832, 7.348349], - [-12.090111, 7.34821], - [-12.089019, 7.343294], - [-12.089109, 7.343231], - [-12.089878, 7.343254], - [-12.092406, 7.342247], - [-12.093087, 7.34182], - [-12.093894, 7.34082], - [-12.094872, 7.338195], - [-12.096227, 7.335694], - [-12.097844, 7.333612], - [-12.099598, 7.332677], - [-12.101882, 7.332191], - [-12.103883, 7.332306], - [-12.105444, 7.332907], - [-12.106794, 7.334036], - [-12.1047, 7.336132], - [-12.105732, 7.337007], - [-12.106379, 7.3378], - [-12.107119, 7.338954], - [-12.107553, 7.33997], - [-12.108026, 7.341857], - [-12.108024, 7.341858], - [-12.10755, 7.341147], - [-12.10768, 7.342523], - [-12.107678, 7.342523], - [-12.107203, 7.341868], - [-12.107054, 7.341872], - [-12.107325, 7.342719], - [-12.107917, 7.342916], - [-12.112592, 7.342248], - [-12.11291, 7.341169], - [-12.113744, 7.336705], - [-12.114236, 7.335009], - [-12.11487, 7.333536], - [-12.115803, 7.331929], - [-12.116693, 7.330917], - [-12.117373, 7.330411], - [-12.118533, 7.329885], - [-12.119491, 7.329754], - [-12.120153, 7.329838], - [-12.121164, 7.330178], - [-12.121518, 7.330539], - [-12.123267, 7.3352], - [-12.123987, 7.336185], - [-12.125174, 7.336707], - [-12.126249, 7.336923], - [-12.12625, 7.335009], - [-12.126592, 7.335199], - [-12.127814, 7.33532], - [-12.128825, 7.334963], - [-12.129598, 7.335992], - [-12.129604, 7.33558], - [-12.130114, 7.334774], - [-12.131058, 7.329242], - [-12.129583, 7.328749], - [-12.129311, 7.327933], - [-12.130108, 7.325509], - [-12.134774, 7.320513], - [-12.136386, 7.318009], - [-12.136928, 7.316881], - [-12.137301, 7.314241], - [-12.137122, 7.309408], - [-12.138028, 7.308514], - [-12.134337, 7.309436], - [-12.13375, 7.309171], - [-12.133749, 7.306793], - [-12.132994, 7.305517], - [-12.132742, 7.304742], - [-12.132948, 7.303382], - [-12.133529, 7.302431], - [-12.133749, 7.302261], - [-12.13375, 7.29875], - [-12.138094, 7.29875], - [-12.138233, 7.298626], - [-12.13884, 7.298472], - [-12.139258, 7.297611], - [-12.139753, 7.297062], - [-12.140536, 7.295523], - [-12.141589, 7.292182], - [-12.141859, 7.290381], - [-12.141874, 7.287806], - [-12.141382, 7.284199], - [-12.141116, 7.28356] - ] - ], - "type": "Polygon" - }, - "id": 41, - "properties": { - "cc:admin:id": ["104"], - "cc:oBld:total": 40, - "cc:pop:fifteen-to-twenty-four": 508.899718083378, - "cc:pop:grid3-total": 2535.8549501408, - "cc:pop:kontur-total": 3087.433518155755, - "cc:pop:men": 1366.7081147161643, - "cc:pop:sixty-plus": 204.86684743704427, - "cc:pop:total": 2836.03225475782, - "cc:pop:under-five": 482.7692895871509, - "cc:pop:women": 1469.3241400416562, - "cc:pop:women-fiften-to-forty-nine": 686.1009813643471, - "cc:pop:wp-total": 2588.602323032508, - "cc:pop:wp-total-UN": 2999.363972512721, - "cc:id": "41", - "cc:Name": "Benduma CHC", - "cc:site": [-12, 7.3], - "user:parentName": "Kwamabai Krim", - "user:code": "OU_197435", - "user:orgUnitId": "n7wN9gMFfZ5", - "user:level": "4", - "user:parentId": "HV8RTzgcFH3" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.58608, 8.046822], - [-11.584302, 8.044705], - [-11.584046, 8.044112], - [-11.583599, 8.043899], - [-11.58, 8.0419], - [-11.5768, 8.0406], - [-11.5724, 8.0383], - [-11.569199, 8.036999], - [-11.5649, 8.0346], - [-11.560899, 8.032899], - [-11.5535, 8.029099], - [-11.551199, 8.026799], - [-11.5489, 8.0223], - [-11.546899, 8.018799], - [-11.545099, 8.014899], - [-11.542899, 8.011899], - [-11.539999, 8.008999], - [-11.5369, 8.0062], - [-11.534899, 8.005099], - [-11.5319, 8.0044], - [-11.525699, 8.003799], - [-11.5227, 8.002799], - [-11.520399, 8.001099], - [-11.5182, 7.9988], - [-11.516899, 7.996799], - [-11.516199, 7.994699], - [-11.515099, 7.9892], - [-11.5038, 7.9892], - [-11.500099, 7.9895], - [-11.497099, 7.9902], - [-11.492299, 7.9923], - [-11.4864, 7.993799], - [-11.482, 7.995999], - [-11.4788, 7.997299], - [-11.4746, 7.999699], - [-11.471399, 8.0011], - [-11.468599, 8.0032], - [-11.4632, 8.008199], - [-11.4604, 8.010399], - [-11.454999, 8.0134], - [-11.449299, 8.0178], - [-11.444, 8.0207], - [-11.4417, 8.0235], - [-11.4428, 8.025299], - [-11.446099, 8.028099], - [-11.447999, 8.030699], - [-11.448999, 8.034399], - [-11.449199, 8.045399], - [-11.449399, 8.049399], - [-11.4501, 8.0522], - [-11.4521, 8.0567], - [-11.4528, 8.0595], - [-11.453099, 8.062499], - [-11.453199, 8.067699], - [-11.4527, 8.072699], - [-11.4514, 8.078599], - [-11.4527, 8.0836], - [-11.453199, 8.087399], - [-11.453268, 8.089434], - [-11.458749, 8.088749], - [-11.462916, 8.085416], - [-11.46375, 8.08375], - [-11.477082, 8.086249], - [-11.479582, 8.08875], - [-11.47875, 8.098749], - [-11.480417, 8.099583], - [-11.485416, 8.097083], - [-11.487082, 8.09375], - [-11.489582, 8.092083], - [-11.489582, 8.090417], - [-11.487917, 8.08625], - [-11.495416, 8.086249], - [-11.495417, 8.082083], - [-11.497917, 8.080417], - [-11.503749, 8.079583], - [-11.505416, 8.077917], - [-11.505417, 8.069584], - [-11.508436, 8.067771], - [-11.50963, 8.06923], - [-11.512917, 8.067917], - [-11.517082, 8.068749], - [-11.522083, 8.065417], - [-11.525416, 8.066249], - [-11.52625, 8.067083], - [-11.533749, 8.067084], - [-11.538749, 8.069583], - [-11.543749, 8.066249], - [-11.544312, 8.060623], - [-11.547617, 8.060622], - [-11.547083, 8.058749], - [-11.55125, 8.057084], - [-11.559582, 8.057084], - [-11.562083, 8.060416], - [-11.565416, 8.060416], - [-11.567083, 8.059584], - [-11.572082, 8.060416], - [-11.573749, 8.060417], - [-11.574583, 8.061249], - [-11.577916, 8.060417], - [-11.57875, 8.058749], - [-11.583749, 8.056249], - [-11.58125, 8.049584], - [-11.58608, 8.046822] - ] - ], - "type": "Polygon" - }, - "id": 42, - "properties": { - "cc:admin:id": ["3"], - "cc:oBld:total": 229, - "cc:pop:fifteen-to-twenty-four": 1598.6036030715281, - "cc:pop:grid3-total": 7510.528694701186, - "cc:pop:kontur-total": 8891.171215842633, - "cc:pop:men": 4198.638811724393, - "cc:pop:sixty-plus": 630.0555300975512, - "cc:pop:total": 8988.901267229203, - "cc:pop:under-five": 1501.3439154477805, - "cc:pop:women": 4790.2624555048105, - "cc:pop:women-fiften-to-forty-nine": 2286.274008589772, - "cc:pop:wp-total": 7985.010594019862, - "cc:pop:wp-total-UN": 9267.846119312318, - "cc:id": "42", - "cc:Name": "Benduma MCHP", - "cc:site": [-11.5217, 8.0261], - "user:parentName": "Bargbe", - "user:code": "OU_602", - "user:orgUnitId": "Wr8kmywwseZ", - "user:level": "4", - "user:parentId": "dGheVylzol6" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.610761, 7.731643], - [-12.610799, 7.731299], - [-12.610299, 7.7257], - [-12.6078, 7.7207], - [-12.606399, 7.717299], - [-12.603299, 7.711899], - [-12.5997, 7.7041], - [-12.599199, 7.699799], - [-12.5972, 7.6978], - [-12.596799, 7.6973], - [-12.5928, 7.6963], - [-12.586799, 7.6963], - [-12.5807, 7.697099], - [-12.5692, 7.701099], - [-12.5655, 7.703099], - [-12.5583, 7.708499], - [-12.552699, 7.713499], - [-12.5359, 7.719699], - [-12.5323, 7.721699], - [-12.529099, 7.7246], - [-12.5248, 7.731099], - [-12.520799, 7.7351], - [-12.5146, 7.739699], - [-12.5077, 7.745399], - [-12.5041, 7.748099], - [-12.4988, 7.750499], - [-12.4944, 7.751299], - [-12.4864, 7.7495], - [-12.4814, 7.7487], - [-12.470199, 7.744299], - [-12.4571, 7.7418], - [-12.4481, 7.7415], - [-12.444599, 7.7419], - [-12.441699, 7.7433], - [-12.4366, 7.746299], - [-12.4292, 7.754099], - [-12.424699, 7.7625], - [-12.4203, 7.772899], - [-12.426799, 7.7728], - [-12.431899, 7.773099], - [-12.435299, 7.773999], - [-12.4379, 7.7756], - [-12.443499, 7.780699], - [-12.446299, 7.782899], - [-12.450199, 7.7846], - [-12.452, 7.7862], - [-12.453499, 7.7886], - [-12.453199, 7.7917], - [-12.449093, 7.797145], - [-12.448933, 7.797518], - [-12.448537, 7.800288], - [-12.448866, 7.803122], - [-12.449212, 7.803817], - [-12.452274, 7.803818], - [-12.455806, 7.809933], - [-12.458814, 7.810155], - [-12.461235, 7.811085], - [-12.464475, 7.81264], - [-12.470545, 7.815923], - [-12.474411, 7.817673], - [-12.480763, 7.819876], - [-12.486207, 7.822361], - [-12.487784, 7.823788], - [-12.488259, 7.825105], - [-12.487892, 7.826078], - [-12.486769, 7.826941], - [-12.484565, 7.827784], - [-12.480289, 7.828971], - [-12.476119, 7.830203], - [-12.473915, 7.831349], - [-12.471345, 7.833141], - [-12.470438, 7.83474], - [-12.470308, 7.837375], - [-12.470978, 7.839103], - [-12.473072, 7.841544], - [-12.474844, 7.843812], - [-12.476939, 7.84485], - [-12.477803, 7.845994], - [-12.478696, 7.849001], - [-12.479187, 7.850372], - [-12.481489, 7.854358], - [-12.482399, 7.854359], - [-12.483239, 7.856431], - [-12.484293, 7.858438], - [-12.485076, 7.859595], - [-12.485552, 7.860174], - [-12.485722, 7.861911], - [-12.485629, 7.86789], - [-12.48389, 7.867891], - [-12.483991, 7.870709], - [-12.484332, 7.871764], - [-12.48515, 7.87316], - [-12.485795, 7.873738], - [-12.492298, 7.87623], - [-12.49314, 7.874774], - [-12.493722, 7.874912], - [-12.496376, 7.874879], - [-12.497995, 7.874656], - [-12.501019, 7.874657], - [-12.501472, 7.875438], - [-12.502494, 7.875151], - [-12.504367, 7.875195], - [-12.505325, 7.87611], - [-12.506262, 7.878396], - [-12.506851, 7.881773], - [-12.507895, 7.883842], - [-12.508636, 7.885803], - [-12.508756, 7.887004], - [-12.510307, 7.888801], - [-12.511288, 7.890353], - [-12.512874, 7.891588], - [-12.514306, 7.892238], - [-12.514942, 7.891138], - [-12.516222, 7.891652], - [-12.517094, 7.891625], - [-12.518318, 7.891407], - [-12.519217, 7.890482], - [-12.520034, 7.88893], - [-12.520791, 7.888188], - [-12.522311, 7.888188], - [-12.524267, 7.887925], - [-12.526772, 7.887789], - [-12.529358, 7.887518], - [-12.531892, 7.887136], - [-12.535607, 7.886417], - [-12.535117, 7.885636], - [-12.536673, 7.885339], - [-12.539668, 7.885644], - [-12.540996, 7.885237], - [-12.542358, 7.885101], - [-12.543243, 7.885543], - [-12.544571, 7.888299], - [-12.546957, 7.888668], - [-12.547083, 7.887916], - [-12.547603, 7.886358], - [-12.548453, 7.886735], - [-12.548451, 7.88725], - [-12.550256, 7.887647], - [-12.552848, 7.886246], - [-12.552617, 7.881868], - [-12.553643, 7.88303], - [-12.554677, 7.882651], - [-12.55461, 7.882085], - [-12.554611, 7.882084], - [-12.558749, 7.882084], - [-12.55989, 7.883223], - [-12.560619, 7.882815], - [-12.561908, 7.88295], - [-12.561905, 7.883723], - [-12.563709, 7.884249], - [-12.563835, 7.885022], - [-12.565511, 7.885291], - [-12.56537, 7.887607], - [-12.566008, 7.888898], - [-12.568075, 7.888654], - [-12.568079, 7.887881], - [-12.567568, 7.887234], - [-12.5686, 7.887239], - [-12.569376, 7.886986], - [-12.569772, 7.88583], - [-12.571193, 7.885581], - [-12.571704, 7.886742], - [-12.572917, 7.885974], - [-12.572091, 7.884873], - [-12.571458, 7.884551], - [-12.571205, 7.883521], - [-12.569649, 7.884412], - [-12.568361, 7.884147], - [-12.567917, 7.883878], - [-12.567917, 7.882004], - [-12.568631, 7.88183], - [-12.569928, 7.881066], - [-12.57148, 7.880688], - [-12.571484, 7.880173], - [-12.57239, 7.879664], - [-12.574846, 7.879291], - [-12.577422, 7.880465], - [-12.577438, 7.880417], - [-12.581249, 7.880417], - [-12.582766, 7.879405], - [-12.583112, 7.879468], - [-12.584529, 7.880248], - [-12.585856, 7.880178], - [-12.585399, 7.877699], - [-12.583, 7.8725], - [-12.5815, 7.8667], - [-12.5794, 7.8621], - [-12.5787, 7.8593], - [-12.578399, 7.853199], - [-12.5783, 7.8358], - [-12.5782, 7.8329], - [-12.5774, 7.8293], - [-12.575, 7.8241], - [-12.573699, 7.819099], - [-12.5699, 7.8105], - [-12.567699, 7.806199], - [-12.565799, 7.799499], - [-12.563499, 7.795299], - [-12.559699, 7.787199], - [-12.559099, 7.782899], - [-12.5588, 7.7729], - [-12.5583, 7.7678], - [-12.5569, 7.761899], - [-12.559199, 7.7511], - [-12.5627, 7.745299], - [-12.5657, 7.7435], - [-12.569499, 7.7431], - [-12.5755, 7.7431], - [-12.581999, 7.743599], - [-12.588999, 7.746199], - [-12.5928, 7.7469], - [-12.597, 7.747299], - [-12.6023, 7.746999], - [-12.606599, 7.744899], - [-12.608399, 7.7401], - [-12.610299, 7.735699], - [-12.610761, 7.731643] - ] - ], - "type": "Polygon" - }, - "id": 43, - "properties": { - "cc:admin:id": ["1"], - "cc:oBld:total": 0, - "cc:pop:fifteen-to-twenty-four": 450.7161227057236, - "cc:pop:grid3-total": 2827.733070830518, - "cc:pop:kontur-total": 2371.4288126176957, - "cc:pop:men": 1104.9136504418723, - "cc:pop:sixty-plus": 146.50070252835178, - "cc:pop:total": 2392.8191208789103, - "cc:pop:under-five": 425.43880048115057, - "cc:pop:women": 1287.9054704370374, - "cc:pop:women-fiften-to-forty-nine": 591.9331438030028, - "cc:pop:wp-total": 2410.617682519934, - "cc:pop:wp-total-UN": 2831.920928058512, - "cc:id": "43", - "cc:Name": "Benkeh MCHP", - "cc:site": [-12.5365, 7.8303], - "user:parentName": "Bagruwa", - "user:code": "OU_247054", - "user:orgUnitId": "wQ71REGAMet", - "user:level": "4", - "user:parentId": "jPidqyo7cpF" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.980937, 8.614612], - [-12.979333, 8.612798], - [-12.978951, 8.6124], - [-12.978151, 8.611483], - [-12.977658, 8.6111], - [-12.977256, 8.61092], - [-12.976817, 8.610767], - [-12.976429, 8.610704], - [-12.974735, 8.609796], - [-12.974541, 8.609626], - [-12.975208, 8.608958], - [-12.975007, 8.608827], - [-12.974598, 8.6079], - [-12.9732, 8.607899], - [-12.973199, 8.6049], - [-12.9726, 8.603999], - [-12.972599, 8.6024], - [-12.971199, 8.6013], - [-12.969299, 8.601299], - [-12.9679, 8.5993], - [-12.968199, 8.5957], - [-12.9679, 8.595699], - [-12.9679, 8.5926], - [-12.967599, 8.5921], - [-12.964899, 8.592099], - [-12.964299, 8.591299], - [-12.960049, 8.587243], - [-12.94875, 8.58875], - [-12.946254, 8.593116], - [-12.945203, 8.592934], - [-12.943948, 8.592732], - [-12.943192, 8.592615], - [-12.941798, 8.592356], - [-12.940441, 8.592171], - [-12.93984, 8.592134], - [-12.939266, 8.592134], - [-12.939029, 8.59225], - [-12.938744, 8.592459], - [-12.938332, 8.592712], - [-12.937801, 8.593163], - [-12.936981, 8.593793], - [-12.936631, 8.594001], - [-12.936273, 8.594302], - [-12.935987, 8.594637], - [-12.9355, 8.595299], - [-12.935188, 8.595751], - [-12.934973, 8.596154], - [-12.934583, 8.596901], - [-12.934426, 8.597411], - [-12.934036, 8.598376], - [-12.931146, 8.605312], - [-12.925857, 8.604725], - [-12.924097, 8.607601], - [-12.922858, 8.609567], - [-12.921054, 8.613424], - [-12.918347, 8.618474], - [-12.916679, 8.622497], - [-12.915522, 8.624429], - [-12.914217, 8.625883], - [-12.91375, 8.626335], - [-12.913749, 8.632886], - [-12.91304, 8.633662], - [-12.911419, 8.635396], - [-12.90679, 8.629445], - [-12.906319, 8.629919], - [-12.906454, 8.630429], - [-12.904181, 8.631918], - [-12.901639, 8.633226], - [-12.899782, 8.634624], - [-12.897946, 8.635673], - [-12.897456, 8.636028], - [-12.896154, 8.637641], - [-12.894489, 8.639921], - [-12.893406, 8.641708], - [-12.892992, 8.642693], - [-12.89278, 8.643749], - [-12.897459, 8.64375], - [-12.89746, 8.643751], - [-12.89744, 8.643809], - [-12.896951, 8.646564], - [-12.896812, 8.647902], - [-12.896663, 8.649215], - [-12.896229, 8.651142], - [-12.895943, 8.652435], - [-12.895621, 8.653227], - [-12.895885, 8.65448], - [-12.895823, 8.655211], - [-12.895725, 8.655688], - [-12.895511, 8.656158], - [-12.894669, 8.658835], - [-12.893811, 8.660754], - [-12.892043, 8.663492], - [-12.891736, 8.664029], - [-12.891289, 8.664964], - [-12.89096, 8.665865], - [-12.890688, 8.666977], - [-12.891082, 8.666895], - [-12.891352, 8.666824], - [-12.89169, 8.666738], - [-12.892265, 8.666623], - [-12.89261, 8.666674], - [-12.892822, 8.666879], - [-12.893059, 8.667257], - [-12.893191, 8.66763], - [-12.893207, 8.668012], - [-12.893163, 8.668519], - [-12.893028, 8.668885], - [-12.892804, 8.669249], - [-12.8926, 8.66956], - [-12.892393, 8.669901], - [-12.892155, 8.670161], - [-12.891792, 8.670478], - [-12.891527, 8.670782], - [-12.8914, 8.671282], - [-12.891352, 8.67161], - [-12.891372, 8.672003], - [-12.891514, 8.672422], - [-12.891676, 8.672634], - [-12.891899, 8.672834], - [-12.892159, 8.672981], - [-12.892337, 8.67301], - [-12.892528, 8.673006], - [-12.892755, 8.672961], - [-12.893177, 8.672776], - [-12.894515, 8.672057], - [-12.895278, 8.671582], - [-12.895589, 8.671452], - [-12.897314, 8.670893], - [-12.897437, 8.670709], - [-12.897455, 8.670403], - [-12.897411, 8.670082], - [-12.897351, 8.669932], - [-12.897179, 8.66974], - [-12.896745, 8.669485], - [-12.896447, 8.669344], - [-12.896164, 8.669164], - [-12.895931, 8.668911], - [-12.89582, 8.668575], - [-12.895744, 8.667998], - [-12.895692, 8.667575], - [-12.895757, 8.667145], - [-12.895865, 8.666992], - [-12.896131, 8.666838], - [-12.896713, 8.666705], - [-12.89723, 8.666617], - [-12.897506, 8.666606], - [-12.89769, 8.66662], - [-12.897886, 8.666804], - [-12.898131, 8.66724], - [-12.898301, 8.667735], - [-12.898442, 8.668331], - [-12.898645, 8.668666], - [-12.898832, 8.668796], - [-12.899052, 8.668884], - [-12.899318, 8.668898], - [-12.899715, 8.668788], - [-12.900094, 8.66854], - [-12.900364, 8.668246], - [-12.900689, 8.667749], - [-12.90132, 8.667219], - [-12.90184, 8.667039], - [-12.902261, 8.6669], - [-12.903044, 8.666767], - [-12.903741, 8.666627], - [-12.904219, 8.666479], - [-12.904715, 8.666312], - [-12.905112, 8.666257], - [-12.905574, 8.666245], - [-12.905971, 8.666268], - [-12.906602, 8.666228], - [-12.906844, 8.66624], - [-12.9073, 8.666196], - [-12.907772, 8.666061], - [-12.908172, 8.665842], - [-12.908565, 8.665542], - [-12.908793, 8.665297], - [-12.909014, 8.665102], - [-12.909169, 8.665085], - [-12.909429, 8.665191], - [-12.909601, 8.665497], - [-12.910059, 8.665676], - [-12.910189, 8.665716], - [-12.91056, 8.66574], - [-12.91077, 8.665745], - [-12.910968, 8.665729], - [-12.911136, 8.665749], - [-12.911856, 8.665897], - [-12.912157, 8.665931], - [-12.912517, 8.665998], - [-12.912788, 8.666087], - [-12.913119, 8.666299], - [-12.913161, 8.666421], - [-12.913164, 8.666555], - [-12.913362, 8.666776], - [-12.913628, 8.667018], - [-12.915024, 8.667534], - [-12.916023, 8.667521], - [-12.916289, 8.667427], - [-12.916671, 8.667257], - [-12.916831, 8.66713], - [-12.917002, 8.666929], - [-12.917362, 8.6666], - [-12.917558, 8.66645], - [-12.917646, 8.666419], - [-12.917815, 8.666436], - [-12.918034, 8.666542], - [-12.918215, 8.666665], - [-12.918407, 8.666816], - [-12.9186, 8.667094], - [-12.918874, 8.667338], - [-12.91923, 8.667632], - [-12.919614, 8.667899], - [-12.919993, 8.668113], - [-12.920416, 8.668265], - [-12.920417, 8.669582], - [-12.927916, 8.673749], - [-12.932916, 8.669583], - [-12.935776, 8.669011], - [-12.936355, 8.669597], - [-12.936736, 8.670469], - [-12.93756, 8.670914], - [-12.938268, 8.671753], - [-12.939181, 8.672211], - [-12.939878, 8.67211], - [-12.940009, 8.671912], - [-12.939951, 8.671122], - [-12.939479, 8.67017], - [-12.939736, 8.669453], - [-12.938565, 8.667648], - [-12.937083, 8.666534], - [-12.937083, 8.664584], - [-12.941249, 8.665416], - [-12.945416, 8.66375], - [-12.9456, 8.663382], - [-12.945661, 8.663373], - [-12.94668, 8.663719], - [-12.947917, 8.661249], - [-12.952916, 8.658749], - [-12.952916, 8.652917], - [-12.95125, 8.651249], - [-12.95202, 8.645853], - [-12.952226, 8.645798], - [-12.952782, 8.640784], - [-12.952984, 8.640863], - [-12.953109, 8.642096], - [-12.95335, 8.64249], - [-12.953854, 8.642781], - [-12.954807, 8.643008], - [-12.95572, 8.643018], - [-12.957019, 8.642802], - [-12.958676, 8.641993], - [-12.958634, 8.642366], - [-12.957282, 8.643434], - [-12.957272, 8.644169], - [-12.957382, 8.644284], - [-12.966083, 8.635583], - [-12.966051, 8.635558], - [-12.965261, 8.63552], - [-12.964871, 8.63511], - [-12.964778, 8.634568], - [-12.964992, 8.634154], - [-12.965948, 8.633465], - [-12.966032, 8.633215], - [-12.965894, 8.632854], - [-12.965495, 8.632746], - [-12.964027, 8.633121], - [-12.962172, 8.632916], - [-12.961221, 8.633758], - [-12.960401, 8.633535], - [-12.959956, 8.633085], - [-12.959533, 8.633128], - [-12.959125, 8.633375], - [-12.959226, 8.632518], - [-12.958964, 8.631828], - [-12.959521, 8.631827], - [-12.959957, 8.631298], - [-12.961496, 8.631728], - [-12.963398, 8.631861], - [-12.966146, 8.631392], - [-12.966636, 8.63053], - [-12.966379, 8.630106], - [-12.966389, 8.629831], - [-12.967121, 8.629676], - [-12.967194, 8.629475], - [-12.967397, 8.629826], - [-12.967418, 8.62978], - [-12.967821, 8.628709], - [-12.968432, 8.627818], - [-12.969542, 8.626371], - [-12.969811, 8.625713], - [-12.97035, 8.625198], - [-12.971089, 8.62461], - [-12.970813, 8.624423], - [-12.970406, 8.624095], - [-12.970159, 8.623921], - [-12.969693, 8.623925], - [-12.969231, 8.624053], - [-12.968786, 8.624179], - [-12.96847, 8.624308], - [-12.968159, 8.624572], - [-12.967911, 8.624817], - [-12.967488, 8.625182], - [-12.966881, 8.625453], - [-12.966389, 8.625532], - [-12.966008, 8.625558], - [-12.96567, 8.6254], - [-12.965396, 8.625257], - [-12.965106, 8.625156], - [-12.964896, 8.625118], - [-12.964591, 8.625061], - [-12.96435, 8.625071], - [-12.963926, 8.625293], - [-12.963577, 8.625516], - [-12.963335, 8.625777], - [-12.962992, 8.626063], - [-12.961973, 8.626625], - [-12.961163, 8.627272], - [-12.960841, 8.627713], - [-12.960588, 8.627814], - [-12.960305, 8.627828], - [-12.960177, 8.627756], - [-12.960177, 8.627754], - [-12.960278, 8.627712], - [-12.960562, 8.627675], - [-12.960696, 8.627596], - [-12.960783, 8.627484], - [-12.960949, 8.627293], - [-12.961083, 8.627123], - [-12.961763, 8.626556], - [-12.963308, 8.625533], - [-12.963567, 8.625252], - [-12.96406, 8.625017], - [-12.964606, 8.624933], - [-12.965019, 8.624964], - [-12.965572, 8.625102], - [-12.965847, 8.625277], - [-12.965996, 8.625288], - [-12.966296, 8.625278], - [-12.966538, 8.625246], - [-12.966859, 8.625172], - [-12.967102, 8.625023], - [-12.967306, 8.624848], - [-12.967536, 8.624635], - [-12.967794, 8.624407], - [-12.968196, 8.624047], - [-12.968501, 8.623989], - [-12.968807, 8.623804], - [-12.969086, 8.623661], - [-12.969452, 8.623533], - [-12.969719, 8.623523], - [-12.969971, 8.623464], - [-12.970164, 8.623443], - [-12.970411, 8.623548], - [-12.970631, 8.62358], - [-12.970766, 8.623469], - [-12.9709, 8.623332], - [-12.971104, 8.623246], - [-12.971344, 8.62312], - [-12.971514, 8.62302], - [-12.971515, 8.623022], - [-12.971276, 8.623486], - [-12.971377, 8.623914], - [-12.971715, 8.624124], - [-12.971959, 8.624126], - [-12.972512, 8.624028], - [-12.97294, 8.623731], - [-12.973233, 8.623357], - [-12.973843, 8.622266], - [-12.974757, 8.619873], - [-12.9765, 8.617348], - [-12.977484, 8.616383], - [-12.978603, 8.61597], - [-12.979766, 8.615965], - [-12.980203, 8.615882], - [-12.980937, 8.614612] - ] - ], - "type": "Polygon" - }, - "id": 44, - "properties": { - "cc:admin:id": ["74"], - "cc:oBld:total": 29, - "cc:pop:fifteen-to-twenty-four": 993.1523505429144, - "cc:pop:grid3-total": 2067.580773125865, - "cc:pop:kontur-total": 5595.666700763691, - "cc:pop:men": 2577.0948795420354, - "cc:pop:sixty-plus": 302.79537284732595, - "cc:pop:total": 5479.1257596703, - "cc:pop:under-five": 844.0369984831718, - "cc:pop:women": 2902.030880128265, - "cc:pop:women-fiften-to-forty-nine": 1442.2314717733086, - "cc:pop:wp-total": 4632.3706323188335, - "cc:pop:wp-total-UN": 5359.471380625797, - "cc:id": "44", - "cc:Name": "Benkia MCHP", - "cc:site": [-12.8975, 8.6553], - "user:parentName": "Lokomasama", - "user:code": "OU_254993", - "user:orgUnitId": "OcRCVRy2M7X", - "user:level": "4", - "user:parentId": "fRLX08WHWpL" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.047427, 8.980416], - [-12.047199, 8.980299], - [-12.0432, 8.9786], - [-12.0397, 8.9765], - [-12.036499, 8.975199], - [-12.0321, 8.9728], - [-12.0289, 8.9715], - [-12.0246, 8.9691], - [-12.020599, 8.967299], - [-12.015699, 8.963199], - [-12.0024, 8.95], - [-12.000699, 8.947999], - [-11.998999, 8.9452], - [-11.9946, 8.9419], - [-11.991499, 8.939299], - [-11.988399, 8.936299], - [-11.9668, 8.9149], - [-11.963, 8.9114], - [-11.960899, 8.909999], - [-11.956499, 8.907699], - [-11.952999, 8.905099], - [-11.9496, 8.9026], - [-11.945699, 8.900699], - [-11.941399, 8.898299], - [-11.9346, 8.8951], - [-11.931999, 8.894199], - [-11.929199, 8.893899], - [-11.9253, 8.8938], - [-11.9194, 8.893999], - [-11.915799, 8.8948], - [-11.910399, 8.8971], - [-11.904599, 8.8985], - [-11.9002, 8.900699], - [-11.897, 8.901999], - [-11.895877, 8.90263], - [-11.89625, 8.90375], - [-11.899582, 8.910417], - [-11.89625, 8.921249], - [-11.89875, 8.922916], - [-11.908749, 8.922083], - [-11.90875, 8.928749], - [-11.912083, 8.932916], - [-11.914582, 8.93375], - [-11.91375, 8.93625], - [-11.914583, 8.938749], - [-11.91875, 8.942916], - [-11.922916, 8.94375], - [-11.927916, 8.947082], - [-11.92625, 8.954582], - [-11.927917, 8.957082], - [-11.937082, 8.957083], - [-11.940416, 8.95875], - [-11.936741, 8.969042], - [-11.936179, 8.969362], - [-11.935807, 8.969036], - [-11.935685, 8.968989], - [-11.93625, 8.971249], - [-11.942774, 8.972699], - [-11.942968, 8.972438], - [-11.946249, 8.973749], - [-11.947082, 8.97375], - [-11.947917, 8.974583], - [-11.951249, 8.974582], - [-11.954583, 8.97125], - [-11.957916, 8.976249], - [-11.962483, 8.968637], - [-11.963155, 8.968156], - [-11.967083, 8.972082], - [-11.969582, 8.970417], - [-11.972082, 8.969583], - [-11.976249, 8.969583], - [-11.977083, 8.970416], - [-11.982082, 8.967917], - [-11.982916, 8.967917], - [-11.98375, 8.96875], - [-11.984583, 8.972082], - [-11.990255, 8.973703], - [-11.990186, 8.973583], - [-11.989915, 8.971751], - [-11.992916, 8.96875], - [-11.995416, 8.969583], - [-11.99625, 8.971249], - [-12.000416, 8.972082], - [-12.006229, 8.967931], - [-12.008781, 8.968494], - [-12.010566, 8.968772], - [-12.011248, 8.968581], - [-12.014582, 8.974582], - [-12.015417, 8.976249], - [-12.017917, 8.977916], - [-12.027082, 8.977917], - [-12.027917, 8.977083], - [-12.032916, 8.982916], - [-12.032083, 8.985416], - [-12.035416, 8.987082], - [-12.044582, 8.980417], - [-12.047427, 8.980416] - ] - ], - "type": "Polygon" - }, - "id": 45, - "properties": { - "cc:admin:id": ["113"], - "cc:oBld:total": 108, - "cc:pop:fifteen-to-twenty-four": 2337.8138206330555, - "cc:pop:grid3-total": 10164.943876276313, - "cc:pop:kontur-total": 15900.935197197734, - "cc:pop:men": 5621.107693617107, - "cc:pop:sixty-plus": 805.0075936640807, - "cc:pop:total": 12222.851539685857, - "cc:pop:under-five": 2035.6561052983295, - "cc:pop:women": 6601.743846068752, - "cc:pop:women-fiften-to-forty-nine": 3149.2557656050108, - "cc:pop:wp-total": 8323.020700707231, - "cc:pop:wp-total-UN": 9651.50303786741, - "cc:id": "45", - "cc:Name": "Binkolo CHC", - "cc:site": [-11.9822, 8.9503], - "user:parentName": "Safroko Limba", - "user:code": "OU_193275", - "user:orgUnitId": "GHHvGp7tgtZ", - "user:level": "4", - "user:parentId": "XG8HGAbrbbL" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.407083, 7.829583], - [-11.407082, 7.828749], - [-11.399583, 7.820417], - [-11.400297, 7.814699], - [-11.398299, 7.813699], - [-11.3953, 7.810899], - [-11.393034, 7.806694], - [-11.392324, 7.80726], - [-11.388318, 7.808469], - [-11.386726, 7.809242], - [-11.385336, 7.809291], - [-11.385308, 7.809307], - [-11.385255, 7.809753], - [-11.385788, 7.811064], - [-11.382083, 7.812916], - [-11.377083, 7.812084], - [-11.37375, 7.817084], - [-11.374582, 7.822917], - [-11.37125, 7.826249], - [-11.367917, 7.825416], - [-11.36125, 7.820417], - [-11.357917, 7.822917], - [-11.357916, 7.830417], - [-11.355417, 7.834584], - [-11.355416, 7.83625], - [-11.352917, 7.839583], - [-11.35125, 7.839584], - [-11.349583, 7.844583], - [-11.350416, 7.844584], - [-11.350416, 7.850416], - [-11.34625, 7.852084], - [-11.34625, 7.859583], - [-11.344583, 7.866249], - [-11.342916, 7.867083], - [-11.340451, 7.865234], - [-11.340627, 7.866068], - [-11.341053, 7.867147], - [-11.341268, 7.868515], - [-11.341516, 7.86989], - [-11.342026, 7.871083], - [-11.342227, 7.872409], - [-11.342409, 7.873018], - [-11.341548, 7.873491], - [-11.341448, 7.875706], - [-11.340184, 7.876388], - [-11.339724, 7.8769], - [-11.339581, 7.877236], - [-11.339303, 7.877337], - [-11.338747, 7.878381], - [-11.338601, 7.87858], - [-11.338455, 7.878847], - [-11.338335, 7.879127], - [-11.338565, 7.879289], - [-11.338863, 7.879492], - [-11.339529, 7.879961], - [-11.341005, 7.880923], - [-11.339953, 7.881659], - [-11.338559, 7.882275], - [-11.337741, 7.882485], - [-11.337257, 7.883117], - [-11.336534, 7.883479], - [-11.335718, 7.883719], - [-11.335074, 7.883499], - [-11.334843, 7.883116], - [-11.334526, 7.882529], - [-11.33375, 7.882917], - [-11.335416, 7.88625], - [-11.325417, 7.89375], - [-11.327082, 7.895417], - [-11.327082, 7.905416], - [-11.32375, 7.90625], - [-11.320417, 7.911249], - [-11.319582, 7.917916], - [-11.317083, 7.918749], - [-11.315416, 7.917916], - [-11.312917, 7.917084], - [-11.305417, 7.921249], - [-11.305416, 7.917084], - [-11.30125, 7.91875], - [-11.300416, 7.920416], - [-11.297864, 7.919906], - [-11.297711, 7.920056], - [-11.297828, 7.920605], - [-11.297268, 7.923389], - [-11.296802, 7.924122], - [-11.299003, 7.92514], - [-11.29911, 7.925698], - [-11.299877, 7.92669], - [-11.299895, 7.927848], - [-11.30235, 7.926416], - [-11.303778, 7.92602], - [-11.304713, 7.925564], - [-11.305298, 7.925198], - [-11.307442, 7.924632], - [-11.308486, 7.923942], - [-11.308604, 7.923835], - [-11.308757, 7.923751], - [-11.310738, 7.924081], - [-11.311935, 7.926154], - [-11.308029, 7.932919], - [-11.302798, 7.93292], - [-11.305416, 7.942083], - [-11.304583, 7.942917], - [-11.304582, 7.943749], - [-11.29625, 7.94625], - [-11.29625, 7.948368], - [-11.2979, 7.9484], - [-11.3011, 7.9491], - [-11.3032, 7.9501], - [-11.3082, 7.9541], - [-11.3107, 7.955299], - [-11.3133, 7.955599], - [-11.3155, 7.955399], - [-11.317599, 7.9547], - [-11.321, 7.952699], - [-11.326, 7.9504], - [-11.328499, 7.9501], - [-11.328882, 7.950309], - [-11.332916, 7.947083], - [-11.335416, 7.942084], - [-11.327083, 7.941249], - [-11.327083, 7.939411], - [-11.329441, 7.937918], - [-11.331306, 7.936994], - [-11.331724, 7.936934], - [-11.33235, 7.936867], - [-11.330417, 7.935416], - [-11.33125, 7.931249], - [-11.332917, 7.929583], - [-11.338749, 7.927916], - [-11.337917, 7.924584], - [-11.339583, 7.92125], - [-11.342916, 7.920416], - [-11.345417, 7.917917], - [-11.351249, 7.917916], - [-11.35125, 7.916249], - [-11.352917, 7.907917], - [-11.356249, 7.907084], - [-11.357083, 7.907083], - [-11.359598, 7.906453], - [-11.359538, 7.906306], - [-11.358355, 7.905054], - [-11.357949, 7.904714], - [-11.357917, 7.904511], - [-11.358635, 7.90419], - [-11.360452, 7.903642], - [-11.361553, 7.903839], - [-11.362853, 7.903533], - [-11.362324, 7.901717], - [-11.362253, 7.900999], - [-11.364582, 7.900416], - [-11.367916, 7.897083], - [-11.368606, 7.890195], - [-11.368723, 7.890225], - [-11.370308, 7.890372], - [-11.371946, 7.890105], - [-11.372082, 7.890041], - [-11.372083, 7.884583], - [-11.374583, 7.882083], - [-11.380416, 7.880416], - [-11.383749, 7.877916], - [-11.379226, 7.873393], - [-11.378981, 7.87348], - [-11.374583, 7.865416], - [-11.37625, 7.862084], - [-11.385416, 7.862916], - [-11.385417, 7.85875], - [-11.386249, 7.855417], - [-11.391249, 7.852083], - [-11.389583, 7.845416], - [-11.390417, 7.844584], - [-11.395416, 7.844584], - [-11.397917, 7.847916], - [-11.402082, 7.843749], - [-11.402083, 7.836588], - [-11.401955, 7.836555], - [-11.401954, 7.836554], - [-11.404582, 7.834583], - [-11.407083, 7.829583] - ] - ], - "type": "Polygon" - }, - "id": 46, - "properties": { - "cc:admin:id": ["124"], - "cc:oBld:total": 1625, - "cc:pop:fifteen-to-twenty-four": 3339.802380210862, - "cc:pop:grid3-total": 10603.851157538928, - "cc:pop:kontur-total": 18061.774597600717, - "cc:pop:men": 8463.649402821005, - "cc:pop:sixty-plus": 1016.0001147146515, - "cc:pop:total": 17319.097413074334, - "cc:pop:under-five": 2750.0742208208635, - "cc:pop:women": 8855.448010253329, - "cc:pop:women-fiften-to-forty-nine": 4432.142491194666, - "cc:pop:wp-total": 16384.146269602166, - "cc:pop:wp-total-UN": 18997.682672012597, - "cc:id": "46", - "cc:Name": "Blama CHC", - "cc:site": [-11.3465, 7.8719], - "user:parentName": "Small Bo", - "user:code": "OU_222624", - "user:orgUnitId": "kUzpbgPCwVA", - "user:level": "4", - "user:parentId": "vzup1f6ynON" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.647999, 7.378499], - [-11.646899, 7.375199], - [-11.645499, 7.372899], - [-11.6422, 7.3686], - [-11.6411, 7.366599], - [-11.640499, 7.363199], - [-11.640099, 7.357399], - [-11.6394, 7.3537], - [-11.637499, 7.348499], - [-11.6373, 7.3456], - [-11.639599, 7.3391], - [-11.639999, 7.3362], - [-11.640099, 7.330199], - [-11.64, 7.3222], - [-11.6398, 7.3193], - [-11.638999, 7.315599], - [-11.6367, 7.3112], - [-11.635299, 7.307999], - [-11.633399, 7.304499], - [-11.632399, 7.300899], - [-11.6319, 7.2932], - [-11.6312, 7.2896], - [-11.629957, 7.287169], - [-11.627916, 7.29125], - [-11.62125, 7.297083], - [-11.619583, 7.297084], - [-11.617917, 7.29875], - [-11.618749, 7.303749], - [-11.617083, 7.305417], - [-11.617082, 7.309583], - [-11.614583, 7.30875], - [-11.61375, 7.30875], - [-11.61125, 7.309584], - [-11.608551, 7.315654], - [-11.608352, 7.315613], - [-11.607968, 7.315417], - [-11.606567, 7.313853], - [-11.604116, 7.312389], - [-11.603274, 7.311578], - [-11.601845, 7.311578], - [-11.602916, 7.312917], - [-11.602083, 7.322916], - [-11.600621, 7.325109], - [-11.606249, 7.32511], - [-11.60625, 7.332916], - [-11.607082, 7.337084], - [-11.606703, 7.338979], - [-11.606506, 7.338641], - [-11.602917, 7.338641], - [-11.602916, 7.348749], - [-11.597917, 7.353749], - [-11.597789, 7.35374], - [-11.594788, 7.358938], - [-11.596542, 7.361977], - [-11.587083, 7.36125], - [-11.587083, 7.367083], - [-11.587917, 7.370417], - [-11.58875, 7.379583], - [-11.597082, 7.37625], - [-11.597917, 7.382916], - [-11.600114, 7.384015], - [-11.600114, 7.384017], - [-11.599925, 7.384092], - [-11.602083, 7.386249], - [-11.60625, 7.385417], - [-11.608749, 7.388749], - [-11.60875, 7.391249], - [-11.618749, 7.395417], - [-11.619582, 7.397917], - [-11.61875, 7.404583], - [-11.618954, 7.404787], - [-11.617083, 7.405825], - [-11.617083, 7.406249], - [-11.628888, 7.405594], - [-11.62513, 7.412107], - [-11.628965, 7.418749], - [-11.631497, 7.41875], - [-11.63198, 7.418419], - [-11.634865, 7.417428], - [-11.635382, 7.417588], - [-11.6365, 7.415499], - [-11.639699, 7.4088], - [-11.6406, 7.405399], - [-11.640799, 7.3938], - [-11.6412, 7.390899], - [-11.643299, 7.3855], - [-11.6444, 7.381999], - [-11.6456, 7.379899], - [-11.647999, 7.378499] - ] - ], - "type": "Polygon" - }, - "id": 47, - "properties": { - "cc:admin:id": ["27"], - "cc:oBld:total": 3, - "cc:pop:fifteen-to-twenty-four": 1128.0957094440062, - "cc:pop:grid3-total": 7475.109673208173, - "cc:pop:kontur-total": 5770.839286984932, - "cc:pop:men": 3003.4953764266356, - "cc:pop:sixty-plus": 431.0464078266032, - "cc:pop:total": 6233.760734726865, - "cc:pop:under-five": 1038.3471739195293, - "cc:pop:women": 3230.265358300229, - "cc:pop:women-fiften-to-forty-nine": 1540.176262302146, - "cc:pop:wp-total": 6374.982422586125, - "cc:pop:wp-total-UN": 7391.357493610157, - "cc:id": "47", - "cc:Name": "Blama Massaquoi CHP", - "cc:site": [-11.6356, 7.3492], - "user:parentName": "Galliness Perri", - "user:code": "OU_260424", - "user:orgUnitId": "xXhKbgwL39t", - "user:level": "4", - "user:parentId": "eNtRuQrrZeo" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.760352, 7.972063], - [-11.760264, 7.971897], - [-11.759498, 7.971174], - [-11.759034, 7.970371], - [-11.75832, 7.970491], - [-11.758215, 7.970378], - [-11.757734, 7.96982], - [-11.758053, 7.969711], - [-11.758535, 7.969191], - [-11.758558, 7.968786], - [-11.759526, 7.968609], - [-11.759715, 7.968539], - [-11.758944, 7.966628], - [-11.758353, 7.966136], - [-11.757371, 7.966007], - [-11.757358, 7.966007], - [-11.756565, 7.965949], - [-11.756236, 7.965732], - [-11.755698, 7.965362], - [-11.755378, 7.965135], - [-11.755025, 7.964799], - [-11.754628, 7.964376], - [-11.754036, 7.963758], - [-11.753295, 7.962954], - [-11.753092, 7.962986], - [-11.753104, 7.962748], - [-11.752659, 7.962352], - [-11.750578, 7.962338], - [-11.750971, 7.961862], - [-11.751759, 7.96169], - [-11.752464, 7.961341], - [-11.752821, 7.961328], - [-11.753822, 7.960722], - [-11.753685, 7.960375], - [-11.753371, 7.960317], - [-11.752995, 7.960127], - [-11.752581, 7.958734], - [-11.753397, 7.958817], - [-11.753251, 7.958329], - [-11.75322, 7.958334], - [-11.753025, 7.957637], - [-11.755001, 7.957005], - [-11.75498, 7.956932], - [-11.754803, 7.95646], - [-11.753926, 7.956482], - [-11.753458, 7.955793], - [-11.752884, 7.955422], - [-11.752837, 7.955485], - [-11.750868, 7.957057], - [-11.750504, 7.956545], - [-11.749408, 7.957357], - [-11.749055, 7.956908], - [-11.748753, 7.95645], - [-11.748669, 7.956505], - [-11.748648, 7.95675], - [-11.747455, 7.95665], - [-11.747407, 7.957169], - [-11.747336, 7.957692], - [-11.747018, 7.957637], - [-11.746967, 7.95752], - [-11.746768, 7.957183], - [-11.74694, 7.956626], - [-11.746819, 7.956056], - [-11.746795, 7.956055], - [-11.745931, 7.956016], - [-11.745827, 7.956496], - [-11.745651, 7.956908], - [-11.745382, 7.957026], - [-11.74536, 7.957098], - [-11.745497, 7.957475], - [-11.745496, 7.957476], - [-11.743311, 7.957358], - [-11.743253, 7.95655], - [-11.743044, 7.956489], - [-11.742319, 7.956389], - [-11.741892, 7.956728], - [-11.741988, 7.957454], - [-11.741903, 7.958638], - [-11.741213, 7.959245], - [-11.740032, 7.959737], - [-11.73976, 7.959944], - [-11.739732, 7.959996], - [-11.739724, 7.96037], - [-11.739863, 7.96091], - [-11.738528, 7.961347], - [-11.737469, 7.961361], - [-11.737903, 7.962401], - [-11.73819, 7.962964], - [-11.738807, 7.96266], - [-11.739035, 7.963238], - [-11.738016, 7.963764], - [-11.73726, 7.964218], - [-11.737921, 7.96492], - [-11.738013, 7.964987], - [-11.738014, 7.965002], - [-11.73796, 7.965079], - [-11.737932, 7.965083], - [-11.737869, 7.965055], - [-11.737352, 7.965281], - [-11.736555, 7.965703], - [-11.736531, 7.965839], - [-11.736737, 7.96632], - [-11.736455, 7.966352], - [-11.735676, 7.966972], - [-11.735288, 7.967168], - [-11.735098, 7.967467], - [-11.734649, 7.967657], - [-11.734586, 7.968081], - [-11.735147, 7.968505], - [-11.73607, 7.969055], - [-11.735767, 7.969543], - [-11.737595, 7.970405], - [-11.737512, 7.971054], - [-11.737444, 7.972155], - [-11.737834, 7.972984], - [-11.738104, 7.973358], - [-11.738783, 7.974327], - [-11.739152, 7.975562], - [-11.739191, 7.975709], - [-11.739221, 7.976272], - [-11.739163, 7.976564], - [-11.739106, 7.976792], - [-11.739037, 7.977132], - [-11.739632, 7.977469], - [-11.739933, 7.977158], - [-11.740196, 7.976917], - [-11.740346, 7.977213], - [-11.740602, 7.977328], - [-11.741167, 7.977391], - [-11.741256, 7.977374], - [-11.742803, 7.977674], - [-11.742992, 7.977529], - [-11.743103, 7.977712], - [-11.74383, 7.97786], - [-11.744148, 7.977809], - [-11.744535, 7.978047], - [-11.744614, 7.977718], - [-11.744952, 7.977538], - [-11.744767, 7.977226], - [-11.744783, 7.977164], - [-11.745286, 7.977007], - [-11.745829, 7.977059], - [-11.746262, 7.976658], - [-11.746217, 7.976953], - [-11.745918, 7.977195], - [-11.745847, 7.977717], - [-11.745784, 7.978011], - [-11.745614, 7.978718], - [-11.746137, 7.978914], - [-11.747114, 7.978843], - [-11.747094, 7.978327], - [-11.74736, 7.97835], - [-11.747892, 7.97843], - [-11.7479, 7.977707], - [-11.748066, 7.977545], - [-11.748399, 7.977647], - [-11.748709, 7.977481], - [-11.748731, 7.976899], - [-11.748699, 7.976246], - [-11.749181, 7.976244], - [-11.74979, 7.976228], - [-11.750656, 7.976232], - [-11.750946, 7.978191], - [-11.751215, 7.978776], - [-11.751303, 7.978848], - [-11.751603, 7.979059], - [-11.752995, 7.980797], - [-11.753449, 7.981766], - [-11.753444, 7.982058], - [-11.754724, 7.981707], - [-11.75582, 7.98168], - [-11.756263, 7.981545], - [-11.756661, 7.981103], - [-11.75812, 7.980268], - [-11.758426, 7.979937], - [-11.758481, 7.979462], - [-11.758771, 7.979134], - [-11.758178, 7.977129], - [-11.759074, 7.977074], - [-11.758943, 7.97572], - [-11.758695, 7.975079], - [-11.759587, 7.974919], - [-11.759643, 7.974482], - [-11.759362, 7.973859], - [-11.759093, 7.973214], - [-11.759006, 7.972946], - [-11.758991, 7.972843], - [-11.760352, 7.972063] - ] - ], - "type": "Polygon" - }, - "id": 48, - "properties": { - "cc:admin:id": ["46"], - "cc:oBld:total": 3472, - "cc:pop:fifteen-to-twenty-four": 8460.836086256344, - "cc:pop:grid3-total": 27676.919376842154, - "cc:pop:kontur-total": 38545.542653089055, - "cc:pop:men": 22861.069000757812, - "cc:pop:sixty-plus": 3380.370307715298, - "cc:pop:total": 47199.016136834674, - "cc:pop:under-five": 7832.426932545711, - "cc:pop:women": 24337.94713607687, - "cc:pop:women-fiften-to-forty-nine": 11599.485168514906, - "cc:pop:wp-total": 41686.17528801376, - "cc:pop:wp-total-UN": 48333.630816596524, - "cc:id": "48", - "cc:Name": "Bo Govt. Hosp.", - "cc:site": [-11.743, 7.9643], - "user:parentName": "Kakua", - "user:code": "OU_15", - "user:orgUnitId": "rZxk3S0qN63", - "user:level": "4", - "user:parentId": "U6Kr7Gtpidn" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.373599, 8.1564], - [-11.369499, 8.152399], - [-11.3657, 8.1475], - [-11.363799, 8.144399], - [-11.362299, 8.140699], - [-11.3589, 8.1286], - [-11.357399, 8.121799], - [-11.3525, 8.1071], - [-11.3509, 8.1012], - [-11.350499, 8.096799], - [-11.3504, 8.091], - [-11.3508, 8.086799], - [-11.351599, 8.0819], - [-11.344599, 8.0822], - [-11.3337, 8.082399], - [-11.3309, 8.082899], - [-11.328299, 8.0842], - [-11.325399, 8.0866], - [-11.3212, 8.090599], - [-11.318199, 8.0929], - [-11.3098, 8.096699], - [-11.303, 8.097599], - [-11.3003, 8.098199], - [-11.2958, 8.100199], - [-11.295306, 8.100306], - [-11.295416, 8.100417], - [-11.293982, 8.106154], - [-11.294314, 8.106222], - [-11.294314, 8.106223], - [-11.292917, 8.110416], - [-11.300417, 8.117916], - [-11.30375, 8.117917], - [-11.304582, 8.118749], - [-11.304724, 8.118962], - [-11.304723, 8.118963], - [-11.304461, 8.118963], - [-11.306262, 8.122083], - [-11.305416, 8.122084], - [-11.30125, 8.125417], - [-11.300865, 8.130421], - [-11.298913, 8.130422], - [-11.29625, 8.133749], - [-11.295976, 8.133771], - [-11.295956, 8.133925], - [-11.296802, 8.139178], - [-11.297089, 8.139857], - [-11.297488, 8.140038], - [-11.299496, 8.140336], - [-11.300445, 8.143391], - [-11.300885, 8.143745], - [-11.301229, 8.143952], - [-11.303263, 8.143953], - [-11.303771, 8.14483], - [-11.305815, 8.145932], - [-11.309194, 8.146478], - [-11.309445, 8.146397], - [-11.309582, 8.146368], - [-11.309583, 8.155416], - [-11.314583, 8.160416], - [-11.317196, 8.160417], - [-11.314983, 8.164251], - [-11.317323, 8.168305], - [-11.317917, 8.16875], - [-11.318572, 8.172679], - [-11.31942, 8.172413], - [-11.319582, 8.172364], - [-11.319583, 8.177607], - [-11.32145, 8.177638], - [-11.324065, 8.178096], - [-11.324438, 8.178539], - [-11.324651, 8.179055], - [-11.32125, 8.180417], - [-11.317083, 8.185416], - [-11.313749, 8.193749], - [-11.310417, 8.192917], - [-11.30402, 8.19636], - [-11.303203, 8.196361], - [-11.302835, 8.196998], - [-11.299583, 8.19875], - [-11.30759, 8.203845], - [-11.307058, 8.205116], - [-11.306604, 8.206935], - [-11.30659, 8.208505], - [-11.306377, 8.208907], - [-11.306385, 8.209406], - [-11.306726, 8.211413], - [-11.312082, 8.212084], - [-11.314582, 8.222083], - [-11.30625, 8.22875], - [-11.30625, 8.231216], - [-11.3337, 8.231499], - [-11.336599, 8.2312], - [-11.339099, 8.2303], - [-11.340899, 8.2286], - [-11.3419, 8.226699], - [-11.3424, 8.223499], - [-11.3425, 8.217], - [-11.343399, 8.2142], - [-11.3472, 8.210899], - [-11.351399, 8.2068], - [-11.3545, 8.2027], - [-11.3585, 8.199899], - [-11.361999, 8.1965], - [-11.3641, 8.193399], - [-11.3658, 8.188099], - [-11.366499, 8.1835], - [-11.366899, 8.1797], - [-11.367, 8.174899], - [-11.368199, 8.1693], - [-11.370499, 8.1626], - [-11.373599, 8.1564] - ] - ], - "type": "Polygon" - }, - "id": 49, - "properties": { - "cc:admin:id": ["123"], - "cc:oBld:total": 1050, - "cc:pop:fifteen-to-twenty-four": 3489.2335112438964, - "cc:pop:grid3-total": 11212.078232189142, - "cc:pop:kontur-total": 18070.297405783294, - "cc:pop:men": 9307.376356776276, - "cc:pop:sixty-plus": 1100.1792243512314, - "cc:pop:total": 18288.621430064897, - "cc:pop:under-five": 2886.112289147651, - "cc:pop:women": 8981.24507328861, - "cc:pop:women-fiften-to-forty-nine": 4457.613820536652, - "cc:pop:wp-total": 19434.857540309626, - "cc:pop:wp-total-UN": 22533.15674265012, - "cc:id": "49", - "cc:Name": "Boajibu CHC", - "cc:site": [-11.3423, 8.187], - "user:parentName": "Simbaru", - "user:code": "OU_222689", - "user:orgUnitId": "L5gENbBNNup", - "user:level": "4", - "user:parentId": "A3Fh37HWBWE" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.027999, 7.871599], - [-11.0242, 7.8645], - [-11.020799, 7.858699], - [-11.017, 7.8512], - [-11.0137, 7.8425], - [-11.0106, 7.8361], - [-11.0062, 7.8299], - [-11.003099, 7.824899], - [-10.998599, 7.818799], - [-10.995799, 7.812199], - [-10.994299, 7.804], - [-10.987999, 7.800599], - [-10.9806, 7.7955], - [-10.9765, 7.7931], - [-10.9728, 7.789899], - [-10.9685, 7.7827], - [-10.9671, 7.7794], - [-10.965799, 7.774599], - [-10.964399, 7.7657], - [-10.962099, 7.7619], - [-10.958899, 7.7605], - [-10.949899, 7.76], - [-10.941999, 7.7607], - [-10.933299, 7.762599], - [-10.9236, 7.7609], - [-10.9142, 7.7599], - [-10.9091, 7.7591], - [-10.907799, 7.7624], - [-10.9062, 7.765699], - [-10.904099, 7.7693], - [-10.901599, 7.7741], - [-10.898299, 7.7781], - [-10.8841, 7.792399], - [-10.8813, 7.795999], - [-10.88, 7.799199], - [-10.8785, 7.801999], - [-10.8776, 7.804299], - [-10.8765, 7.809599], - [-10.8757, 7.811799], - [-10.874099, 7.8147], - [-10.872699, 7.8179], - [-10.871399, 7.8199], - [-10.8672, 7.825199], - [-10.8652, 7.829099], - [-10.864, 7.830999], - [-10.860299, 7.8357], - [-10.8571, 7.841599], - [-10.8524, 7.847499], - [-10.850499, 7.8514], - [-10.849199, 7.8534], - [-10.845, 7.858699], - [-10.8431, 7.862599], - [-10.8419, 7.864599], - [-10.838599, 7.8685], - [-10.837299, 7.8705], - [-10.8354, 7.874399], - [-10.8334, 7.877099], - [-10.830899, 7.8797], - [-10.8158, 7.894999], - [-10.8125, 7.897999], - [-10.8096, 7.899599], - [-10.805199, 7.9006], - [-10.802099, 7.9018], - [-10.7953, 7.904899], - [-10.792599, 7.9079], - [-10.7889, 7.915099], - [-10.787599, 7.9183], - [-10.7854, 7.922699], - [-10.784799, 7.9255], - [-10.7847, 7.9284], - [-10.785, 7.9572], - [-10.785099, 7.962099], - [-10.785699, 7.965799], - [-10.788099, 7.971199], - [-10.788669, 7.974612], - [-10.792005, 7.974612], - [-10.795913, 7.967847], - [-10.802783, 7.967847], - [-10.802083, 7.976249], - [-10.805417, 7.980416], - [-10.813749, 7.980417], - [-10.816249, 7.979583], - [-10.817817, 7.975663], - [-10.817183, 7.975233], - [-10.816737, 7.975131], - [-10.815707, 7.974241], - [-10.815949, 7.974233], - [-10.817067, 7.973559], - [-10.817916, 7.973114], - [-10.817917, 7.972916], - [-10.818784, 7.972264], - [-10.818836, 7.971689], - [-10.819265, 7.971182], - [-10.81988, 7.971444], - [-10.82074, 7.971813], - [-10.821018, 7.973184], - [-10.820925, 7.974391], - [-10.825416, 7.97375], - [-10.827083, 7.976249], - [-10.82875, 7.975416], - [-10.83125, 7.974584], - [-10.832917, 7.974583], - [-10.834882, 7.974256], - [-10.835211, 7.975768], - [-10.840432, 7.974622], - [-10.838707, 7.972297], - [-10.840229, 7.971814], - [-10.842727, 7.971483], - [-10.842936, 7.972838], - [-10.849083, 7.972279], - [-10.849844, 7.972539], - [-10.852019, 7.97204], - [-10.852307, 7.97317], - [-10.8537, 7.970299], - [-10.855899, 7.9674], - [-10.857999, 7.9655], - [-10.8603, 7.963899], - [-10.867599, 7.9605], - [-10.8704, 7.959799], - [-10.878599, 7.9594], - [-10.882099, 7.9588], - [-10.887399, 7.9566], - [-10.891599, 7.9557], - [-10.893699, 7.9549], - [-10.896299, 7.9532], - [-10.8999, 7.949699], - [-10.903399, 7.9455], - [-10.9058, 7.940499], - [-10.9094, 7.9346], - [-10.9133, 7.931799], - [-10.917599, 7.9283], - [-10.919799, 7.9268], - [-10.923, 7.925399], - [-10.9273, 7.922999], - [-10.9305, 7.921699], - [-10.938999, 7.9172], - [-10.942999, 7.9139], - [-10.947, 7.909799], - [-10.950999, 7.9054], - [-10.9541, 7.9011], - [-10.957999, 7.8984], - [-10.9613, 7.895199], - [-10.9635, 7.892299], - [-10.9652, 7.888399], - [-10.968899, 7.8822], - [-10.975199, 7.8785], - [-10.9791, 7.8787], - [-10.9818, 7.8809], - [-10.9843, 7.883799], - [-10.988299, 7.885299], - [-10.990499, 7.8864], - [-10.992999, 7.8891], - [-10.994399, 7.894199], - [-10.995299, 7.896599], - [-10.997499, 7.898999], - [-11.0008, 7.900099], - [-11.003499, 7.899999], - [-11.0061, 7.899099], - [-11.0092, 7.896399], - [-11.011799, 7.8931], - [-11.0136, 7.889099], - [-11.015799, 7.8848], - [-11.017099, 7.8817], - [-11.019399, 7.8785], - [-11.023899, 7.8742], - [-11.027999, 7.871599] - ] - ], - "type": "Polygon" - }, - "id": 50, - "properties": { - "cc:admin:id": ["41"], - "cc:oBld:total": 4978, - "cc:pop:fifteen-to-twenty-four": 8035.083706461469, - "cc:pop:grid3-total": 29715.91693238539, - "cc:pop:kontur-total": 42143.40020651108, - "cc:pop:men": 20517.25415346116, - "cc:pop:sixty-plus": 2454.9661100140397, - "cc:pop:total": 41717.78273492686, - "cc:pop:under-five": 6464.621647859165, - "cc:pop:women": 21200.5285814657, - "cc:pop:women-fiften-to-forty-nine": 10689.83930020834, - "cc:pop:wp-total": 39643.458015962664, - "cc:pop:wp-total-UN": 45970.719591723464, - "cc:id": "50", - "cc:Name": "Bombohun MCHP", - "cc:site": [-10.8373, 7.9594], - "user:parentName": "Jawi", - "user:code": "OU_204864", - "user:orgUnitId": "PB8FMGbn19r", - "user:level": "4", - "user:parentId": "KSdZwrU7Hh6" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.067083, 8.237083], - [-11.067082, 8.23625], - [-11.06375, 8.234584], - [-11.062082, 8.232084], - [-11.057036, 8.232083], - [-11.057165, 8.231743], - [-11.058071, 8.230972], - [-11.058508, 8.229835], - [-11.058305, 8.229296], - [-11.059034, 8.229256], - [-11.059842, 8.228881], - [-11.060144, 8.229092], - [-11.060233, 8.228995], - [-11.059475, 8.226729], - [-11.058734, 8.226098], - [-11.058479, 8.225602], - [-11.058733, 8.224512], - [-11.05863, 8.224205], - [-11.058069, 8.224603], - [-11.057672, 8.224921], - [-11.057388, 8.225894], - [-11.056499, 8.226466], - [-11.056231, 8.226266], - [-11.055746, 8.226502], - [-11.055537, 8.226245], - [-11.054874, 8.224203], - [-11.054777, 8.224087], - [-11.054835, 8.224042], - [-11.054783, 8.224042], - [-11.054124, 8.224357], - [-11.053712, 8.224475], - [-11.053453, 8.224492], - [-11.053351, 8.224611], - [-11.052864, 8.225057], - [-11.052397, 8.225496], - [-11.052336, 8.225558], - [-11.051316, 8.22672], - [-11.050668, 8.227471], - [-11.049203, 8.228031], - [-11.046005, 8.228479], - [-11.043899, 8.22857], - [-11.04375, 8.228767], - [-11.04375, 8.226249], - [-11.047082, 8.222916], - [-11.046249, 8.220417], - [-11.045416, 8.220416], - [-11.044582, 8.21875], - [-11.04125, 8.217917], - [-11.040241, 8.218926], - [-11.040351, 8.21907], - [-11.040218, 8.224266], - [-11.036249, 8.226249], - [-11.035416, 8.22625], - [-11.029583, 8.227916], - [-11.022083, 8.227917], - [-11.01875, 8.230417], - [-11.017916, 8.233749], - [-11.010417, 8.23375], - [-11.00875, 8.240416], - [-11.007083, 8.241249], - [-11.006683, 8.24125], - [-11.007205, 8.241818], - [-11.00813, 8.241795], - [-11.00837, 8.242198], - [-11.007935, 8.24301], - [-11.00761, 8.243359], - [-11.008449, 8.246716], - [-11.008408, 8.246772], - [-11.007773, 8.246575], - [-11.007225, 8.244584], - [-11.004583, 8.244584], - [-11.004583, 8.251249], - [-11.007916, 8.25125], - [-11.00625, 8.254584], - [-11.006249, 8.260416], - [-11.003646, 8.26237], - [-11.003981, 8.263722], - [-11.004626, 8.265146], - [-11.00507, 8.266868], - [-11.005219, 8.268524], - [-11.006159, 8.270416], - [-11.012654, 8.270416], - [-11.013248, 8.269652], - [-11.026249, 8.270416], - [-11.02625, 8.264171], - [-11.033879, 8.26417], - [-11.037785, 8.257405], - [-11.03692, 8.255904], - [-11.043749, 8.255416], - [-11.04375, 8.254583], - [-11.046249, 8.252916], - [-11.044583, 8.247084], - [-11.04625, 8.24375], - [-11.051249, 8.242084], - [-11.052916, 8.242916], - [-11.054212, 8.239677], - [-11.054778, 8.240118], - [-11.055296, 8.240224], - [-11.056553, 8.240209], - [-11.056807, 8.240253], - [-11.057246, 8.240353], - [-11.058036, 8.240853], - [-11.058453, 8.241404], - [-11.059239, 8.243237], - [-11.059309, 8.243884], - [-11.062082, 8.240417], - [-11.063749, 8.240416], - [-11.067083, 8.237083] - ] - ], - "type": "Polygon" - }, - "id": 51, - "properties": { - "cc:admin:id": ["75"], - "cc:oBld:total": 9, - "cc:pop:fifteen-to-twenty-four": 963.1343510667864, - "cc:pop:grid3-total": 3277.5023167512445, - "cc:pop:kontur-total": 6211.851262038155, - "cc:pop:men": 2799.139547332983, - "cc:pop:sixty-plus": 292.55906505661966, - "cc:pop:total": 5002.06270741074, - "cc:pop:under-five": 770.493839676088, - "cc:pop:women": 2202.923160077757, - "cc:pop:women-fiften-to-forty-nine": 1092.8415411849144, - "cc:pop:wp-total": 5821.867745788319, - "cc:pop:wp-total-UN": 6755.6999533945045, - "cc:id": "51", - "cc:Name": "Bomie MCHP", - "cc:site": [-11.0464, 8.2318], - "user:parentName": "Lower Bambara", - "user:code": "OU_222661", - "user:orgUnitId": "VXrJKs8hic4", - "user:level": "4", - "user:parentId": "hdEuw2ugkVF" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.70451, 7.812402], - [-12.702581, 7.810974], - [-12.702202, 7.809299], - [-12.70125, 7.807884], - [-12.701249, 7.802917], - [-12.69625, 7.802917], - [-12.695608, 7.803557], - [-12.695388, 7.803464], - [-12.69466, 7.803022], - [-12.697916, 7.800416], - [-12.698171, 7.798628], - [-12.698061, 7.798681], - [-12.698749, 7.790417], - [-12.689583, 7.790417], - [-12.687082, 7.792083], - [-12.681249, 7.792916], - [-12.678524, 7.788146], - [-12.679872, 7.787211], - [-12.682082, 7.775417], - [-12.681249, 7.769584], - [-12.679582, 7.767917], - [-12.677083, 7.767917], - [-12.671399, 7.770757], - [-12.668879, 7.766391], - [-12.671778, 7.761368], - [-12.668509, 7.760042], - [-12.667448, 7.759416], - [-12.670903, 7.753432], - [-12.670871, 7.753229], - [-12.671044, 7.753186], - [-12.671056, 7.753166], - [-12.670487, 7.752181], - [-12.669065, 7.752703], - [-12.666364, 7.750886], - [-12.664566, 7.749073], - [-12.66638, 7.747794], - [-12.666256, 7.746764], - [-12.664322, 7.746496], - [-12.664316, 7.746401], - [-12.659337, 7.7464], - [-12.658316, 7.744633], - [-12.657746, 7.744913], - [-12.657745, 7.744912], - [-12.658278, 7.741826], - [-12.656985, 7.742334], - [-12.655413, 7.74606], - [-12.651536, 7.746682], - [-12.651028, 7.745391], - [-12.65336, 7.743729], - [-12.653277, 7.742917], - [-12.650779, 7.743716], - [-12.649998, 7.74487], - [-12.649225, 7.74448], - [-12.648188, 7.745118], - [-12.647413, 7.745243], - [-12.648437, 7.746665], - [-12.648365, 7.747083], - [-12.64673, 7.747083], - [-12.646628, 7.746912], - [-12.646508, 7.745367], - [-12.644249, 7.745473], - [-12.643712, 7.746401], - [-12.635901, 7.746401], - [-12.635741, 7.746677], - [-12.636108, 7.746752], - [-12.6363, 7.746944], - [-12.636246, 7.747464], - [-12.635616, 7.748233], - [-12.635479, 7.748698], - [-12.637127, 7.751158], - [-12.637343, 7.754241], - [-12.637835, 7.754369], - [-12.638584, 7.753812], - [-12.639611, 7.752678], - [-12.63822, 7.751456], - [-12.637942, 7.750729], - [-12.638285, 7.750173], - [-12.63882, 7.74983], - [-12.639312, 7.749958], - [-12.641153, 7.749915], - [-12.642438, 7.749252], - [-12.643423, 7.748544], - [-12.643722, 7.747966], - [-12.643809, 7.747239], - [-12.644408, 7.747004], - [-12.6452, 7.747153], - [-12.645629, 7.747474], - [-12.646592, 7.747625], - [-12.647063, 7.747859], - [-12.647127, 7.748502], - [-12.646743, 7.749358], - [-12.647642, 7.750172], - [-12.648305, 7.7503], - [-12.648667, 7.750088], - [-12.648668, 7.750089], - [-12.648455, 7.75058], - [-12.647899, 7.750878], - [-12.647299, 7.750558], - [-12.64642, 7.749636], - [-12.646357, 7.749401], - [-12.64657, 7.748951], - [-12.646463, 7.748096], - [-12.645179, 7.747774], - [-12.644643, 7.747368], - [-12.64413, 7.747346], - [-12.644022, 7.748331], - [-12.642245, 7.749723], - [-12.64141, 7.750108], - [-12.639741, 7.750279], - [-12.638991, 7.75013], - [-12.638542, 7.750344], - [-12.63837, 7.750943], - [-12.638733, 7.751414], - [-12.639676, 7.751843], - [-12.640146, 7.752293], - [-12.63807, 7.754754], - [-12.637278, 7.754755], - [-12.636871, 7.752507], - [-12.636892, 7.751522], - [-12.635158, 7.748674], - [-12.635778, 7.747261], - [-12.635608, 7.746961], - [-12.634708, 7.747239], - [-12.633553, 7.747988], - [-12.632738, 7.747581], - [-12.63261, 7.746617], - [-12.633659, 7.743942], - [-12.634001, 7.743449], - [-12.634164, 7.743393], - [-12.63391, 7.742955], - [-12.633166, 7.743363], - [-12.63261, 7.743257], - [-12.632396, 7.742828], - [-12.632213, 7.739255], - [-12.631993, 7.739634], - [-12.63125, 7.739635], - [-12.631249, 7.745417], - [-12.627916, 7.749584], - [-12.625398, 7.750212], - [-12.624416, 7.747305], - [-12.623382, 7.747814], - [-12.623381, 7.747813], - [-12.623649, 7.746013], - [-12.622361, 7.745491], - [-12.622751, 7.744978], - [-12.622278, 7.744548], - [-12.621075, 7.744581], - [-12.620304, 7.743934], - [-12.620039, 7.744962], - [-12.619523, 7.745087], - [-12.61875, 7.744569], - [-12.616944, 7.74443], - [-12.61717, 7.758841], - [-12.618917, 7.760927], - [-12.619949, 7.760932], - [-12.619702, 7.759128], - [-12.620218, 7.759258], - [-12.621898, 7.75914], - [-12.622795, 7.759918], - [-12.62215, 7.760172], - [-12.622015, 7.760944], - [-12.620462, 7.761837], - [-12.623292, 7.763526], - [-12.625093, 7.764824], - [-12.625476, 7.765599], - [-12.624053, 7.765978], - [-12.6225, 7.766741], - [-12.621979, 7.76764], - [-12.621332, 7.767895], - [-12.621586, 7.768412], - [-12.621577, 7.770214], - [-12.622374, 7.770972], - [-12.62214, 7.771379], - [-12.626046, 7.778144], - [-12.62214, 7.78491], - [-12.622936, 7.786291], - [-12.622517, 7.786706], - [-12.622767, 7.788251], - [-12.624959, 7.788522], - [-12.624696, 7.78955], - [-12.625982, 7.79033], - [-12.625974, 7.7918], - [-12.625506, 7.792612], - [-12.62463, 7.792546], - [-12.623485, 7.793462], - [-12.623119, 7.794179], - [-12.622977, 7.796753], - [-12.62304, 7.796883], - [-12.62214, 7.798442], - [-12.620842, 7.798442], - [-12.620474, 7.797898], - [-12.618965, 7.798147], - [-12.617417, 7.798011], - [-12.618088, 7.800502], - [-12.617783, 7.801875], - [-12.617219, 7.802984], - [-12.618749, 7.80375], - [-12.621249, 7.807084], - [-12.616249, 7.812083], - [-12.607917, 7.81125], - [-12.605417, 7.818749], - [-12.614582, 7.817084], - [-12.616484, 7.817376], - [-12.613038, 7.823346], - [-12.605981, 7.823347], - [-12.606944, 7.824793], - [-12.606039, 7.826324], - [-12.605231, 7.827314], - [-12.604395, 7.828728], - [-12.60354, 7.830645], - [-12.601999, 7.831853], - [-12.599929, 7.83285], - [-12.599428, 7.83342], - [-12.597916, 7.832916], - [-12.592083, 7.827917], - [-12.59069, 7.832788], - [-12.590076, 7.832639], - [-12.589047, 7.832229], - [-12.584583, 7.835417], - [-12.58656, 7.840687], - [-12.589508, 7.842289], - [-12.590862, 7.842798], - [-12.590417, 7.844584], - [-12.591249, 7.851249], - [-12.58625, 7.852084], - [-12.584582, 7.856249], - [-12.580417, 7.856249], - [-12.578503, 7.855293], - [-12.578699, 7.859299], - [-12.579399, 7.862099], - [-12.5815, 7.8667], - [-12.583, 7.8725], - [-12.5854, 7.8777], - [-12.5861, 7.8815], - [-12.586499, 7.891899], - [-12.586999, 7.895299], - [-12.588699, 7.897999], - [-12.5916, 7.901], - [-12.5982, 7.9051], - [-12.600699, 7.907699], - [-12.6023, 7.9102], - [-12.605, 7.913099], - [-12.608199, 7.914499], - [-12.6125, 7.912399], - [-12.619, 7.910199], - [-12.622599, 7.907099], - [-12.625, 7.900099], - [-12.628199, 7.8925], - [-12.6323, 7.8848], - [-12.6364, 7.8817], - [-12.642099, 7.880099], - [-12.6468, 7.876499], - [-12.6486, 7.874099], - [-12.652899, 7.8659], - [-12.6546, 7.861799], - [-12.658399, 7.8545], - [-12.661699, 7.8507], - [-12.6642, 7.848799], - [-12.6747, 7.843499], - [-12.6768, 7.841599], - [-12.678699, 7.8394], - [-12.683799, 7.8293], - [-12.686399, 7.8264], - [-12.693599, 7.8225], - [-12.695938, 7.821871], - [-12.695872, 7.821797], - [-12.69469, 7.821088], - [-12.693706, 7.820301], - [-12.69347, 7.819788], - [-12.693628, 7.818922], - [-12.694375, 7.818214], - [-12.695046, 7.817819], - [-12.696188, 7.817525], - [-12.694024, 7.817524], - [-12.694024, 7.817523], - [-12.694271, 7.817189], - [-12.694978, 7.816986], - [-12.69591, 7.816835], - [-12.697195, 7.816583], - [-12.697801, 7.816003], - [-12.698732, 7.815222], - [-12.699312, 7.814718], - [-12.700169, 7.814265], - [-12.701026, 7.814314], - [-12.701249, 7.814352], - [-12.70125, 7.813964], - [-12.703338, 7.814069], - [-12.704372, 7.813817], - [-12.70451, 7.812402] - ] - ], - "type": "Polygon" - }, - "id": 52, - "properties": { - "cc:admin:id": ["135"], - "cc:oBld:total": 82, - "cc:pop:fifteen-to-twenty-four": 821.0324301872331, - "cc:pop:grid3-total": 4928.777829005847, - "cc:pop:kontur-total": 4075.6220252856738, - "cc:pop:men": 2000.7605796096218, - "cc:pop:sixty-plus": 282.243374608759, - "cc:pop:total": 4149.412724625433, - "cc:pop:under-five": 713.4436242398062, - "cc:pop:women": 2148.6521450158125, - "cc:pop:women-fiften-to-forty-nine": 1007.2115303577688, - "cc:pop:wp-total": 3756.047866221945, - "cc:pop:wp-total-UN": 4388.487737121435, - "cc:id": "52", - "cc:Name": "Bomotoke CHC", - "cc:site": [-12.6548, 7.8188], - "user:parentName": "Timidale", - "user:code": "OU_247045", - "user:orgUnitId": "H97XE5Ea089", - "user:level": "4", - "user:parentId": "AovmOHadayb" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.000299, 8.757799], - [-10.9996, 8.7519], - [-10.998899, 8.749299], - [-10.9966, 8.745], - [-10.995199, 8.741799], - [-10.992699, 8.737599], - [-10.9913, 8.7344], - [-10.9889, 8.7301], - [-10.987499, 8.726899], - [-10.985, 8.7227], - [-10.983599, 8.719499], - [-10.9816, 8.716], - [-10.9807, 8.7126], - [-10.9803, 8.7053], - [-10.9797, 8.7018], - [-10.9773, 8.6966], - [-10.976799, 8.694099], - [-10.9767, 8.691899], - [-10.9773, 8.689699], - [-10.978475, 8.687643], - [-10.975417, 8.684582], - [-10.975417, 8.682917], - [-10.977916, 8.680416], - [-10.978459, 8.677699], - [-10.978249, 8.677838], - [-10.977393, 8.679295], - [-10.97673, 8.679623], - [-10.976583, 8.678834], - [-10.976829, 8.677512], - [-10.977042, 8.675643], - [-10.980059, 8.67494], - [-10.980673, 8.674671], - [-10.980722, 8.674524], - [-10.98032, 8.672493], - [-10.980286, 8.672492], - [-10.98008, 8.671285], - [-10.979767, 8.670482], - [-10.979236, 8.669986], - [-10.977631, 8.66838], - [-10.976129, 8.66715], - [-10.976138, 8.667053], - [-10.974374, 8.666654], - [-10.97366, 8.666541], - [-10.973163, 8.666411], - [-10.971721, 8.666056], - [-10.971387, 8.665775], - [-10.971251, 8.665696], - [-10.969227, 8.664576], - [-10.967331, 8.663645], - [-10.966824, 8.663378], - [-10.965582, 8.662652], - [-10.964987, 8.662924], - [-10.964939, 8.662276], - [-10.965187, 8.660906], - [-10.964437, 8.660711], - [-10.963697, 8.660869], - [-10.964268, 8.661171], - [-10.964826, 8.662202], - [-10.964825, 8.662203], - [-10.961384, 8.660461], - [-10.961175, 8.660363], - [-10.959482, 8.659396], - [-10.959079, 8.658568], - [-10.958996, 8.658325], - [-10.958791, 8.657547], - [-10.958751, 8.65738], - [-10.957739, 8.654125], - [-10.957701, 8.654034], - [-10.957661, 8.653826], - [-10.957563, 8.65354], - [-10.957048, 8.653125], - [-10.954437, 8.651736], - [-10.95287, 8.651506], - [-10.951764, 8.651648], - [-10.95145, 8.651856], - [-10.950906, 8.653203], - [-10.950447, 8.653633], - [-10.950086, 8.653758], - [-10.949978, 8.653773], - [-10.948649, 8.654083], - [-10.946903, 8.6539], - [-10.945839, 8.654421], - [-10.944642, 8.65677], - [-10.943222, 8.658177], - [-10.941977, 8.659318], - [-10.941363, 8.659769], - [-10.941368, 8.661812], - [-10.941728, 8.663333], - [-10.942198, 8.664311], - [-10.940817, 8.664744], - [-10.939817, 8.66413], - [-10.939592, 8.664276], - [-10.940771, 8.665479], - [-10.942243, 8.666083], - [-10.942814, 8.666148], - [-10.943518, 8.666611], - [-10.945186, 8.66687], - [-10.945297, 8.666769], - [-10.945422, 8.666885], - [-10.945428, 8.667246], - [-10.944804, 8.668741], - [-10.944691, 8.66887], - [-10.94273, 8.668114], - [-10.942324, 8.668089], - [-10.9414, 8.667084], - [-10.93875, 8.667084], - [-10.937917, 8.667916], - [-10.937917, 8.669582], - [-10.940258, 8.671926], - [-10.939564, 8.672586], - [-10.9392, 8.672713], - [-10.938113, 8.673748], - [-10.937708, 8.673728], - [-10.937118, 8.673423], - [-10.936762, 8.672902], - [-10.936257, 8.67284], - [-10.935719, 8.673754], - [-10.935634, 8.674194], - [-10.935941, 8.67699], - [-10.936116, 8.677431], - [-10.936115, 8.677433], - [-10.932083, 8.675417], - [-10.92875, 8.674583], - [-10.928749, 8.677082], - [-10.92625, 8.679583], - [-10.927916, 8.684582], - [-10.924864, 8.686109], - [-10.924781, 8.686052], - [-10.924582, 8.68625], - [-10.92125, 8.687083], - [-10.919865, 8.694005], - [-10.919863, 8.694005], - [-10.91967, 8.693663], - [-10.91932, 8.693882], - [-10.918987, 8.694855], - [-10.919314, 8.695054], - [-10.919417, 8.696077], - [-10.918174, 8.697176], - [-10.918142, 8.697709], - [-10.917672, 8.697741], - [-10.91785, 8.698293], - [-10.917803, 8.698791], - [-10.918082, 8.698949], - [-10.917161, 8.69952], - [-10.916378, 8.70047], - [-10.915517, 8.70184], - [-10.914931, 8.703155], - [-10.914295, 8.705148], - [-10.914098, 8.70663], - [-10.913687, 8.707451], - [-10.913488, 8.707856], - [-10.913307, 8.708479], - [-10.913253, 8.708702], - [-10.912949, 8.709805], - [-10.912562, 8.71065], - [-10.911659, 8.711874], - [-10.911476, 8.712254], - [-10.911354, 8.712646], - [-10.911128, 8.713556], - [-10.909952, 8.716022], - [-10.907651, 8.720027], - [-10.907462, 8.720678], - [-10.90718, 8.721736], - [-10.906752, 8.723062], - [-10.906528, 8.724462], - [-10.905834, 8.725769], - [-10.905339, 8.726393], - [-10.903793, 8.727091], - [-10.902571, 8.729806], - [-10.902429, 8.729976], - [-10.906249, 8.73125], - [-10.904583, 8.736249], - [-10.899583, 8.737083], - [-10.89875, 8.740416], - [-10.897917, 8.740417], - [-10.897917, 8.749582], - [-10.89875, 8.749583], - [-10.899582, 8.757082], - [-10.900416, 8.760416], - [-10.887083, 8.760417], - [-10.885417, 8.76125], - [-10.886249, 8.76875], - [-10.882037, 8.772962], - [-10.878563, 8.778982], - [-10.881175, 8.783506], - [-10.881417, 8.783217], - [-10.885114, 8.783216], - [-10.886305, 8.781157], - [-10.890417, 8.784582], - [-10.892082, 8.784583], - [-10.893432, 8.789982], - [-10.889021, 8.789983], - [-10.885115, 8.796748], - [-10.886571, 8.79927], - [-10.88657, 8.799271], - [-10.882917, 8.798749], - [-10.880006, 8.795112], - [-10.8811, 8.797299], - [-10.8844, 8.800599], - [-10.891899, 8.804299], - [-10.8954, 8.804899], - [-10.899899, 8.8048], - [-10.9033, 8.803899], - [-10.9069, 8.801899], - [-10.9144, 8.798299], - [-10.9178, 8.797599], - [-10.924199, 8.7973], - [-10.927699, 8.7968], - [-10.9331, 8.794599], - [-10.9356, 8.793999], - [-10.941, 8.793399], - [-10.9435, 8.792799], - [-10.948, 8.790899], - [-10.951499, 8.7902], - [-10.959699, 8.7898], - [-10.962299, 8.7893], - [-10.9698, 8.785799], - [-10.971999, 8.783899], - [-10.973199, 8.781799], - [-10.973799, 8.778699], - [-10.9734, 8.7738], - [-10.9714, 8.767599], - [-10.9718, 8.765499], - [-10.972999, 8.763], - [-10.974399, 8.7612], - [-10.9771, 8.7604], - [-10.979999, 8.760699], - [-10.9848, 8.762799], - [-10.988299, 8.762899], - [-10.9926, 8.760999], - [-11.000299, 8.757799] - ] - ], - "type": "Polygon" - }, - "id": 53, - "properties": { - "cc:admin:id": ["33"], - "cc:oBld:total": 2322, - "cc:pop:fifteen-to-twenty-four": 1168.991616359729, - "cc:pop:grid3-total": 11196.95581480982, - "cc:pop:kontur-total": 5474.407469345092, - "cc:pop:men": 2847.087369563996, - "cc:pop:sixty-plus": 233.95933677533205, - "cc:pop:total": 5337.881431811346, - "cc:pop:under-five": 744.7066024963946, - "cc:pop:women": 2490.79406224735, - "cc:pop:women-fiften-to-forty-nine": 1295.3807160339113, - "cc:pop:wp-total": 5343.3773664266455, - "cc:pop:wp-total-UN": 6180.123919299649, - "cc:id": "53", - "cc:Name": "Boroma MCHP", - "cc:site": [-10.9456, 8.6668], - "user:parentName": "Gbense", - "user:code": "OU_233382", - "user:orgUnitId": "szbAJSWOXjT", - "user:level": "4", - "user:parentId": "TQkG0sX9nca" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.741119, 7.936642], - [-11.740733, 7.936444], - [-11.74076, 7.936367], - [-11.739799, 7.935899], - [-11.7362, 7.9339], - [-11.732999, 7.932599], - [-11.7286, 7.9303], - [-11.725399, 7.928899], - [-11.7211, 7.9266], - [-11.717099, 7.924899], - [-11.7094, 7.9208], - [-11.706899, 7.918099], - [-11.7051, 7.9143], - [-11.702999, 7.910799], - [-11.701599, 7.907599], - [-11.6997, 7.904], - [-11.698999, 7.901899], - [-11.698499, 7.895699], - [-11.6983, 7.8789], - [-11.698499, 7.874], - [-11.699199, 7.8704], - [-11.701299, 7.8661], - [-11.701699, 7.8636], - [-11.701099, 7.860499], - [-11.699499, 7.8588], - [-11.695599, 7.8568], - [-11.6904, 7.858199], - [-11.687399, 7.8587], - [-11.683299, 7.858899], - [-11.6717, 7.8588], - [-11.667599, 7.8591], - [-11.664799, 7.8596], - [-11.6586, 7.8615], - [-11.657599, 7.8646], - [-11.656499, 7.8689], - [-11.654199, 7.8741], - [-11.653599, 7.8776], - [-11.6534, 7.884799], - [-11.6529, 7.887899], - [-11.651299, 7.8907], - [-11.6488, 7.893399], - [-11.646599, 7.8951], - [-11.642699, 7.8969], - [-11.6384, 7.899199], - [-11.635199, 7.9005], - [-11.6309, 7.902899], - [-11.6277, 7.904199], - [-11.625568, 7.905418], - [-11.62625, 7.912916], - [-11.62875, 7.915416], - [-11.632051, 7.916077], - [-11.631847, 7.916588], - [-11.631787, 7.917381], - [-11.631463, 7.918479], - [-11.630412, 7.920282], - [-11.63027, 7.921249], - [-11.62625, 7.92125], - [-11.622083, 7.925417], - [-11.622083, 7.927916], - [-11.624583, 7.93125], - [-11.625416, 7.935416], - [-11.625782, 7.936147], - [-11.625595, 7.936188], - [-11.626249, 7.942083], - [-11.627082, 7.944583], - [-11.627174, 7.944706], - [-11.624754, 7.948899], - [-11.624695, 7.949137], - [-11.628562, 7.955835], - [-11.636374, 7.955836], - [-11.64028, 7.962601], - [-11.639618, 7.963749], - [-11.64375, 7.96375], - [-11.647916, 7.967083], - [-11.64875, 7.958749], - [-11.652916, 7.955417], - [-11.657082, 7.955417], - [-11.661249, 7.962083], - [-11.662083, 7.962084], - [-11.664583, 7.967916], - [-11.66875, 7.967084], - [-11.671249, 7.967916], - [-11.672082, 7.967917], - [-11.67375, 7.968749], - [-11.674582, 7.968749], - [-11.677082, 7.96625], - [-11.677917, 7.967083], - [-11.679582, 7.966249], - [-11.679583, 7.96375], - [-11.68113, 7.962202], - [-11.681131, 7.962203], - [-11.681125, 7.962518], - [-11.68089, 7.964318], - [-11.681067, 7.964644], - [-11.681131, 7.965916], - [-11.681532, 7.966165], - [-11.681506, 7.96637], - [-11.681724, 7.966612], - [-11.682647, 7.966735], - [-11.683464, 7.967509], - [-11.685086, 7.968619], - [-11.685398, 7.969136], - [-11.686249, 7.969589], - [-11.68625, 7.96375], - [-11.687916, 7.963749], - [-11.68875, 7.96125], - [-11.694582, 7.96125], - [-11.69625, 7.960417], - [-11.697082, 7.960416], - [-11.699582, 7.957916], - [-11.699583, 7.952917], - [-11.702083, 7.952917], - [-11.703749, 7.955416], - [-11.70375, 7.957916], - [-11.707082, 7.958749], - [-11.708749, 7.957916], - [-11.70875, 7.955976], - [-11.709072, 7.955931], - [-11.70958, 7.956663], - [-11.710365, 7.956806], - [-11.710968, 7.957118], - [-11.712124, 7.958232], - [-11.712396, 7.958096], - [-11.712638, 7.958445], - [-11.712867, 7.958307], - [-11.712938, 7.958449], - [-11.713763, 7.9586], - [-11.713823, 7.958418], - [-11.714123, 7.958469], - [-11.714123, 7.958471], - [-11.71399, 7.958593], - [-11.713997, 7.958596], - [-11.714916, 7.958191], - [-11.715308, 7.95779], - [-11.716775, 7.957373], - [-11.720659, 7.955663], - [-11.719984, 7.954765], - [-11.719552, 7.954227], - [-11.71893, 7.954316], - [-11.718754, 7.954358], - [-11.718597, 7.95439], - [-11.717484, 7.954459], - [-11.716214, 7.954501], - [-11.716018, 7.954754], - [-11.715611, 7.954513], - [-11.715189, 7.954173], - [-11.715135, 7.954132], - [-11.714786, 7.953889], - [-11.714016, 7.955064], - [-11.713617, 7.954775], - [-11.712837, 7.955935], - [-11.712413, 7.955638], - [-11.712389, 7.955672], - [-11.712007, 7.955492], - [-11.711727, 7.955662], - [-11.711145, 7.955617], - [-11.710483, 7.955095], - [-11.710849, 7.954658], - [-11.710022, 7.953963], - [-11.710707, 7.953246], - [-11.711033, 7.952892], - [-11.71188, 7.953522], - [-11.712215, 7.953195], - [-11.712614, 7.952835], - [-11.713194, 7.953329], - [-11.713581, 7.952987], - [-11.713948, 7.95277], - [-11.714744, 7.952373], - [-11.715013, 7.952105], - [-11.71433, 7.951545], - [-11.714438, 7.951315], - [-11.715886, 7.952219], - [-11.716159, 7.951859], - [-11.716196, 7.951806], - [-11.716421, 7.951387], - [-11.716714, 7.950866], - [-11.717088, 7.951043], - [-11.717701, 7.95063], - [-11.718203, 7.950817], - [-11.718393, 7.950651], - [-11.718484, 7.950707], - [-11.719098, 7.950575], - [-11.719774, 7.950096], - [-11.720527, 7.949269], - [-11.720597, 7.949195], - [-11.721389, 7.949179], - [-11.721894, 7.949337], - [-11.722238, 7.949225], - [-11.722466, 7.948901], - [-11.722879, 7.948697], - [-11.722625, 7.947949], - [-11.722894, 7.94785], - [-11.723694, 7.947423], - [-11.723989, 7.947248], - [-11.725725, 7.94618], - [-11.726847, 7.945504], - [-11.727264, 7.945232], - [-11.727833, 7.944902], - [-11.728377, 7.94469], - [-11.728323, 7.944567], - [-11.728338, 7.944533], - [-11.72841, 7.944483], - [-11.728466, 7.944484], - [-11.728839, 7.944373], - [-11.729283, 7.944267], - [-11.729352, 7.944246], - [-11.729892, 7.944123], - [-11.730199, 7.944076], - [-11.730572, 7.944035], - [-11.730917, 7.944011], - [-11.731293, 7.944012], - [-11.731769, 7.944035], - [-11.732994, 7.944218], - [-11.733415, 7.944347], - [-11.73365, 7.943721], - [-11.733685, 7.943607], - [-11.73384, 7.943042], - [-11.733902, 7.942543], - [-11.73388, 7.942507], - [-11.734149, 7.941841], - [-11.734358, 7.94135], - [-11.733469, 7.941133], - [-11.73372, 7.940675], - [-11.733816, 7.940467], - [-11.733974, 7.940049], - [-11.733569, 7.939871], - [-11.733871, 7.938888], - [-11.73379, 7.938731], - [-11.733937, 7.938322], - [-11.735855, 7.939413], - [-11.736766, 7.939658], - [-11.736939, 7.939185], - [-11.737064, 7.938681], - [-11.73719, 7.938189], - [-11.737434, 7.937544], - [-11.737718, 7.93758], - [-11.73808, 7.937753], - [-11.739007, 7.938172], - [-11.739021, 7.938137], - [-11.739057, 7.938058], - [-11.7392, 7.937757], - [-11.740507, 7.938328], - [-11.740631, 7.937966], - [-11.740706, 7.937774], - [-11.740749, 7.937637], - [-11.740552, 7.937437], - [-11.739559, 7.936878], - [-11.739723, 7.936503], - [-11.740625, 7.936912], - [-11.740977, 7.937052], - [-11.741119, 7.936642] - ] - ], - "type": "Polygon" - }, - "id": 54, - "properties": { - "cc:admin:id": ["46"], - "cc:oBld:total": 5527, - "cc:pop:fifteen-to-twenty-four": 12124.015025730198, - "cc:pop:grid3-total": 44129.61513264804, - "cc:pop:kontur-total": 71592.54709493602, - "cc:pop:men": 32711.097310244004, - "cc:pop:sixty-plus": 4899.043792637857, - "cc:pop:total": 67441.31872755729, - "cc:pop:under-five": 11170.10351648075, - "cc:pop:women": 34730.221417313296, - "cc:pop:women-fiften-to-forty-nine": 16554.9224528777, - "cc:pop:wp-total": 54854.43330919801, - "cc:pop:wp-total-UN": 63593.48966071796, - "cc:id": "54", - "cc:Name": "Bucksal Clinic", - "cc:site": [-11.7259, 7.9403], - "user:parentName": "Kakua", - "user:code": "OU_1010", - "user:orgUnitId": "vRC0stJ5y9Q", - "user:level": "4", - "user:parentId": "U6Kr7Gtpidn" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.92125, 7.494173], - [-11.921249, 7.490417], - [-11.920416, 7.48875], - [-11.915417, 7.487083], - [-11.915416, 7.480094], - [-11.915015, 7.480097], - [-11.912344, 7.480378], - [-11.910352, 7.480752], - [-11.908391, 7.48133], - [-11.907532, 7.48144], - [-11.90733, 7.481464], - [-11.908749, 7.477916], - [-11.90875, 7.474584], - [-11.914595, 7.473747], - [-11.91098, 7.467484], - [-11.914885, 7.460719], - [-11.914794, 7.460562], - [-11.907917, 7.46125], - [-11.904583, 7.464584], - [-11.904143, 7.466338], - [-11.903948, 7.466278], - [-11.903353, 7.466394], - [-11.901509, 7.466187], - [-11.900078, 7.466719], - [-11.892917, 7.465417], - [-11.892118, 7.465336], - [-11.895022, 7.460305], - [-11.895416, 7.460416], - [-11.898749, 7.447084], - [-11.900416, 7.447083], - [-11.900417, 7.437917], - [-11.904582, 7.434583], - [-11.903749, 7.432917], - [-11.8973, 7.43005], - [-11.897299, 7.433299], - [-11.895999, 7.436999], - [-11.893499, 7.4402], - [-11.888699, 7.4454], - [-11.887199, 7.4502], - [-11.886099, 7.459399], - [-11.883999, 7.463299], - [-11.880499, 7.4662], - [-11.876399, 7.4683], - [-11.869399, 7.4712], - [-11.866199, 7.4743], - [-11.8605, 7.4835], - [-11.863199, 7.491999], - [-11.866499, 7.498699], - [-11.867499, 7.501399], - [-11.868, 7.5043], - [-11.868899, 7.513199], - [-11.87, 7.5176], - [-11.871399, 7.520199], - [-11.8731, 7.5226], - [-11.882899, 7.533999], - [-11.885999, 7.535999], - [-11.8888, 7.5366], - [-11.8931, 7.536899], - [-11.8974, 7.536599], - [-11.9016, 7.535399], - [-11.905399, 7.533299], - [-11.904299, 7.524799], - [-11.9042, 7.5191], - [-11.904299, 7.5154], - [-11.9049, 7.5128], - [-11.9089, 7.5061], - [-11.9132, 7.502999], - [-11.916699, 7.4996], - [-11.920099, 7.495], - [-11.92125, 7.494173] - ] - ], - "type": "Polygon" - }, - "id": 55, - "properties": { - "cc:admin:id": ["10"], - "cc:oBld:total": 3, - "cc:pop:fifteen-to-twenty-four": 523.4258634115133, - "cc:pop:grid3-total": 1976.1684456216694, - "cc:pop:kontur-total": 3506.5029139802377, - "cc:pop:men": 1378.6989945302828, - "cc:pop:sixty-plus": 209.10803946466856, - "cc:pop:total": 2851.679404738839, - "cc:pop:under-five": 483.5213893376162, - "cc:pop:women": 1472.9804102085563, - "cc:pop:women-fiften-to-forty-nine": 730.2037834168926, - "cc:pop:wp-total": 3023.9944950882555, - "cc:pop:wp-total-UN": 3506.1597713345573, - "cc:id": "55", - "cc:Name": "Bum Kaku MCHP", - "cc:site": [-11.8774, 7.5052], - "user:parentName": "Bargbo", - "user:code": "OU_619", - "user:orgUnitId": "EJoI3HArJ2W", - "user:level": "4", - "user:parentId": "zFDYIgyGmXG" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.936249, 9.085416], - [-11.93413, 9.077647], - [-11.933963, 9.077717], - [-11.932083, 9.074582], - [-11.932082, 9.069583], - [-11.92881, 9.06762], - [-11.927686, 9.069752], - [-11.922082, 9.06625], - [-11.920417, 9.066249], - [-11.920416, 9.057917], - [-11.912917, 9.049583], - [-11.917083, 9.04375], - [-11.925416, 9.042917], - [-11.925416, 9.042083], - [-11.91875, 9.042082], - [-11.914583, 9.037917], - [-11.8994, 9.053099], - [-11.8954, 9.056499], - [-11.8912, 9.058699], - [-11.8892, 9.059999], - [-11.8853, 9.063199], - [-11.8832, 9.064599], - [-11.8801, 9.065899], - [-11.8758, 9.068299], - [-11.8719, 9.070099], - [-11.869199, 9.0721], - [-11.866099, 9.0751], - [-11.8626, 9.079499], - [-11.8605, 9.083699], - [-11.858699, 9.0864], - [-11.8558, 9.089599], - [-11.852599, 9.0925], - [-11.849899, 9.0944], - [-11.845599, 9.0965], - [-11.842099, 9.0994], - [-11.8353, 9.106199], - [-11.831299, 9.109299], - [-11.8255, 9.111199], - [-11.8207, 9.113], - [-11.8238, 9.1213], - [-11.825799, 9.128299], - [-11.826154, 9.131984], - [-11.830706, 9.131985], - [-11.834612, 9.138751], - [-11.842424, 9.13875], - [-11.846331, 9.131985], - [-11.854143, 9.131985], - [-11.85805, 9.13875], - [-11.86008, 9.138751], - [-11.859894, 9.13968], - [-11.860103, 9.140167], - [-11.86043, 9.139906], - [-11.862214, 9.139906], - [-11.86612, 9.146671], - [-11.870416, 9.146671], - [-11.870417, 9.145419], - [-11.870418, 9.145418], - [-11.87625, 9.150416], - [-11.878749, 9.151249], - [-11.87999, 9.148148], - [-11.880155, 9.148152], - [-11.882916, 9.14125], - [-11.883749, 9.14125], - [-11.890188, 9.144111], - [-11.890166, 9.144458], - [-11.893749, 9.146249], - [-11.895416, 9.149582], - [-11.89625, 9.150416], - [-11.899582, 9.150416], - [-11.903749, 9.144583], - [-11.906249, 9.137917], - [-11.904584, 9.134583], - [-11.911249, 9.134583], - [-11.912917, 9.136249], - [-11.920808, 9.135643], - [-11.921131, 9.135085], - [-11.917224, 9.128319], - [-11.912408, 9.128319], - [-11.912407, 9.128317], - [-11.915702, 9.123924], - [-11.916145, 9.123872], - [-11.920362, 9.120886], - [-11.921799, 9.120146], - [-11.925206, 9.117929], - [-11.929902, 9.113641], - [-11.925417, 9.105417], - [-11.924583, 9.105416], - [-11.924583, 9.097083], - [-11.928749, 9.093749], - [-11.929583, 9.089583], - [-11.933749, 9.08875], - [-11.933818, 9.088657], - [-11.933931, 9.088656], - [-11.934309, 9.088004], - [-11.936249, 9.085416] - ] - ], - "type": "Polygon" - }, - "id": 56, - "properties": { - "cc:admin:id": ["7"], - "cc:oBld:total": 18, - "cc:pop:fifteen-to-twenty-four": 447.3206961962615, - "cc:pop:grid3-total": 4710.026357608517, - "cc:pop:kontur-total": 2267.8839423505583, - "cc:pop:men": 1140.9839188413923, - "cc:pop:sixty-plus": 142.48202069953004, - "cc:pop:total": 2483.5016450494454, - "cc:pop:under-five": 395.5253417460902, - "cc:pop:women": 1342.5177262080529, - "cc:pop:women-fiften-to-forty-nine": 662.5099976731279, - "cc:pop:wp-total": 2431.8542118205937, - "cc:pop:wp-total-UN": 2823.3903908430957, - "cc:id": "56", - "cc:Name": "Bumban MCHP", - "cc:site": [-11.9099, 9.0709], - "user:parentName": "Biriwa", - "user:code": "OU_193236", - "user:orgUnitId": "OI0BQUurVFS", - "user:level": "4", - "user:parentId": "fwH9ipvXde9" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.038629, 9.052632], - [-12.038035, 9.05168], - [-12.037083, 9.05092], - [-12.037082, 9.052917], - [-12.029584, 9.05958], - [-12.03266, 9.049581], - [-12.031982, 9.049563], - [-12.03136, 9.049682], - [-12.030438, 9.049604], - [-12.030314, 9.049597], - [-12.029557, 9.049831], - [-12.029476, 9.049859], - [-12.027798, 9.050034], - [-12.027212, 9.049867], - [-12.026623, 9.050081], - [-12.026158, 9.049931], - [-12.026067, 9.049535], - [-12.026065, 9.048315], - [-12.025728, 9.047416], - [-12.025754, 9.046752], - [-12.026384, 9.043843], - [-12.02658, 9.043451], - [-12.019583, 9.04625], - [-12.019582, 9.052916], - [-12.017082, 9.052916], - [-12.01375, 9.052083], - [-12.010416, 9.055417], - [-12.007916, 9.055416], - [-11.997083, 9.05375], - [-11.997082, 9.055416], - [-11.996249, 9.055417], - [-11.992083, 9.05875], - [-11.990416, 9.062082], - [-11.982621, 9.064682], - [-11.981815, 9.066052], - [-11.981627, 9.066688], - [-11.981972, 9.066861], - [-11.984582, 9.072083], - [-11.984582, 9.075417], - [-11.982082, 9.077082], - [-11.97625, 9.075417], - [-11.971249, 9.080417], - [-11.970417, 9.082916], - [-11.977916, 9.090416], - [-11.972917, 9.094583], - [-11.972916, 9.102082], - [-11.972083, 9.102917], - [-11.972082, 9.10375], - [-11.967083, 9.111249], - [-11.967917, 9.112083], - [-11.970417, 9.116249], - [-11.977082, 9.112917], - [-11.981249, 9.114582], - [-11.981249, 9.115417], - [-11.980417, 9.118749], - [-11.980953, 9.120361], - [-11.98094, 9.120369], - [-11.982083, 9.122082], - [-11.984531, 9.122082], - [-11.984442, 9.121791], - [-11.984398, 9.120496], - [-11.984126, 9.119304], - [-11.984406, 9.119249], - [-11.985337, 9.118408], - [-11.986471, 9.116872], - [-11.987621, 9.115171], - [-11.992082, 9.117083], - [-11.992916, 9.117917], - [-11.990417, 9.120416], - [-11.994583, 9.12375], - [-11.995416, 9.12625], - [-11.994583, 9.128749], - [-11.99625, 9.130416], - [-12.001249, 9.129583], - [-12.001773, 9.1322], - [-12.001905, 9.13216], - [-12.002177, 9.132111], - [-12.002179, 9.132112], - [-12.002917, 9.138749], - [-12.005417, 9.141249], - [-12.007916, 9.14125], - [-12.010228, 9.142405], - [-12.0119, 9.1397], - [-12.014899, 9.1371], - [-12.018699, 9.1352], - [-12.021199, 9.133199], - [-12.0231, 9.130099], - [-12.025999, 9.1246], - [-12.0273, 9.121399], - [-12.029399, 9.117], - [-12.0301, 9.113299], - [-12.030299, 9.1075], - [-12.030799, 9.1037], - [-12.032999, 9.098], - [-12.033299, 9.095], - [-12.032799, 9.091699], - [-12.031, 9.087599], - [-12.031, 9.0839], - [-12.036099, 9.072599], - [-12.036199, 9.069299], - [-12.0352, 9.065299], - [-12.0365, 9.060299], - [-12.037799, 9.0545], - [-12.038629, 9.052632] - ] - ], - "type": "Polygon" - }, - "id": 57, - "properties": { - "cc:admin:id": ["7"], - "cc:oBld:total": 10, - "cc:pop:fifteen-to-twenty-four": 477.8274378322718, - "cc:pop:grid3-total": 3447.5103650972483, - "cc:pop:kontur-total": 2684.207784488621, - "cc:pop:men": 1205.8370200709694, - "cc:pop:sixty-plus": 150.3641653322265, - "cc:pop:total": 2627.053899558653, - "cc:pop:under-five": 416.07965799883596, - "cc:pop:women": 1421.216879487684, - "cc:pop:women-fiften-to-forty-nine": 697.7818327040548, - "cc:pop:wp-total": 2703.6770160820533, - "cc:pop:wp-total-UN": 3126.2543236799215, - "cc:id": "57", - "cc:Name": "Bumbanday MCHP", - "cc:site": [-12.0048, 9.0892], - "user:parentName": "Biriwa", - "user:code": "OU_193238", - "user:orgUnitId": "LZclRdyVk1t", - "user:level": "4", - "user:parentId": "fwH9ipvXde9" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.615435, 7.475597], - [-11.615499, 7.474499], - [-11.6153, 7.4694], - [-11.6146, 7.4655], - [-11.6107, 7.457], - [-11.608799, 7.453399], - [-11.607799, 7.450099], - [-11.607499, 7.4455], - [-11.6064, 7.4429], - [-11.6037, 7.4409], - [-11.600699, 7.4395], - [-11.5978, 7.44], - [-11.5934, 7.4428], - [-11.590799, 7.4467], - [-11.5848, 7.453399], - [-11.5826, 7.456399], - [-11.5807, 7.460199], - [-11.5786, 7.463099], - [-11.5744, 7.466699], - [-11.570699, 7.4686], - [-11.5681, 7.471099], - [-11.564699, 7.4769], - [-11.5619, 7.479999], - [-11.5593, 7.481899], - [-11.554299, 7.4829], - [-11.5416, 7.4829], - [-11.5383, 7.483199], - [-11.536299, 7.4839], - [-11.5327, 7.485799], - [-11.529499, 7.4872], - [-11.5244, 7.489699], - [-11.519299, 7.4909], - [-11.514099, 7.4932], - [-11.511399, 7.4938], - [-11.507799, 7.494], - [-11.5031, 7.494], - [-11.502299, 7.4973], - [-11.500299, 7.5018], - [-11.4989, 7.507699], - [-11.496904, 7.512059], - [-11.497725, 7.51092], - [-11.498702, 7.510042], - [-11.499926, 7.508532], - [-11.50075, 7.507121], - [-11.502206, 7.505997], - [-11.502725, 7.505386], - [-11.505416, 7.50875], - [-11.505417, 7.51926], - [-11.507024, 7.519119], - [-11.507814, 7.519337], - [-11.507241, 7.527369], - [-11.514576, 7.52737], - [-11.518482, 7.534134], - [-11.525682, 7.534135], - [-11.526572, 7.535556], - [-11.529583, 7.53375], - [-11.53362, 7.541823], - [-11.538691, 7.545235], - [-11.54031, 7.546251], - [-11.545416, 7.540418], - [-11.545417, 7.546249], - [-11.547083, 7.548749], - [-11.549582, 7.549583], - [-11.552353, 7.54792], - [-11.5525, 7.545299], - [-11.553199, 7.5423], - [-11.5571, 7.534499], - [-11.5593, 7.531599], - [-11.5622, 7.528699], - [-11.566299, 7.5252], - [-11.5713, 7.522499], - [-11.5741, 7.520299], - [-11.579399, 7.5153], - [-11.582299, 7.5133], - [-11.586199, 7.5115], - [-11.5897, 7.509499], - [-11.5929, 7.508199], - [-11.597199, 7.5058], - [-11.6004, 7.504499], - [-11.604699, 7.5021], - [-11.608499, 7.5003], - [-11.611799, 7.497699], - [-11.6118, 7.492599], - [-11.612499, 7.4874], - [-11.6146, 7.482399], - [-11.6152, 7.479599], - [-11.615435, 7.475597] - ] - ], - "type": "Polygon" - }, - "id": 58, - "properties": { - "cc:admin:id": ["109"], - "cc:oBld:total": 6, - "cc:pop:fifteen-to-twenty-four": 1646.5403883014478, - "cc:pop:grid3-total": 4070.900798409821, - "cc:pop:kontur-total": 8510.300485498798, - "cc:pop:men": 4340.208624192621, - "cc:pop:sixty-plus": 649.6280938978551, - "cc:pop:total": 9194.646777534137, - "cc:pop:under-five": 1535.0470901060019, - "cc:pop:women": 4854.438153341519, - "cc:pop:women-fiften-to-forty-nine": 2319.0916637459704, - "cc:pop:wp-total": 8577.605626896662, - "cc:pop:wp-total-UN": 9947.674914966654, - "cc:id": "58", - "cc:Name": "Bumbeh MCHP", - "cc:site": [-11.5642, 7.4905], - "user:parentName": "Pejeh", - "user:code": "OU_260391", - "user:orgUnitId": "DwpbWkiqjMy", - "user:level": "4", - "user:parentId": "N233eZJZ1bh" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.825811, 9.128427], - [-11.825799, 9.128299], - [-11.823799, 9.121299], - [-11.8207, 9.113], - [-11.821899, 9.1044], - [-11.821699, 9.098599], - [-11.8201, 9.0915], - [-11.8185, 9.087], - [-11.816399, 9.084], - [-11.812299, 9.0821], - [-11.8014, 9.081], - [-11.7953, 9.0793], - [-11.7908, 9.0786], - [-11.783099, 9.0784], - [-11.7661, 9.078699], - [-11.7609, 9.0781], - [-11.756899, 9.075899], - [-11.7544, 9.071499], - [-11.754, 9.066299], - [-11.754899, 9.0626], - [-11.756499, 9.0597], - [-11.7585, 9.057699], - [-11.7613, 9.056399], - [-11.769599, 9.053899], - [-11.772899, 9.051299], - [-11.775099, 9.047899], - [-11.777099, 9.0388], - [-11.7782, 9.0359], - [-11.7799, 9.033999], - [-11.784999, 9.0306], - [-11.787499, 9.028299], - [-11.7896, 9.024299], - [-11.791199, 9.0188], - [-11.7885, 9.0159], - [-11.7862, 9.0129], - [-11.7835, 9.0059], - [-11.784899, 9.0009], - [-11.784999, 8.997499], - [-11.784499, 8.9945], - [-11.7809, 8.9875], - [-11.778099, 8.9845], - [-11.7736, 8.9823], - [-11.77, 8.9803], - [-11.7668, 8.979], - [-11.764299, 8.977399], - [-11.761399, 8.974899], - [-11.758599, 8.972099], - [-11.7568, 8.9699], - [-11.7557, 8.9678], - [-11.755099, 8.965399], - [-11.754899, 8.962499], - [-11.7548, 8.9327], - [-11.7546, 8.9288], - [-11.753999, 8.925099], - [-11.751799, 8.919699], - [-11.751199, 8.917099], - [-11.750599, 8.911799], - [-11.749499, 8.908499], - [-11.7473, 8.9055], - [-11.7452, 8.9035], - [-11.742899, 8.901999], - [-11.7361, 8.8987], - [-11.734464, 8.898399], - [-11.73375, 8.906249], - [-11.733749, 8.907082], - [-11.732917, 8.907083], - [-11.732083, 8.909582], - [-11.729583, 8.91125], - [-11.72875, 8.912917], - [-11.728749, 8.913672], - [-11.727813, 8.91437], - [-11.726963, 8.914138], - [-11.72678, 8.913578], - [-11.726949, 8.912988], - [-11.727725, 8.912846], - [-11.728052, 8.912465], - [-11.727923, 8.912133], - [-11.727551, 8.91191], - [-11.726751, 8.912076], - [-11.726249, 8.914583], - [-11.725417, 8.923749], - [-11.72875, 8.927916], - [-11.732082, 8.92875], - [-11.732083, 8.934582], - [-11.735416, 8.937916], - [-11.737083, 8.945416], - [-11.738743, 8.946662], - [-11.738742, 8.946664], - [-11.738544, 8.946664], - [-11.734639, 8.953429], - [-11.738544, 8.960194], - [-11.736012, 8.964582], - [-11.73875, 8.964583], - [-11.742916, 8.967916], - [-11.742917, 8.969582], - [-11.744583, 8.969583], - [-11.747082, 8.972082], - [-11.747916, 8.976249], - [-11.748023, 8.97657], - [-11.746954, 8.976571], - [-11.732917, 8.981249], - [-11.732082, 8.982083], - [-11.729582, 8.983749], - [-11.727916, 8.983749], - [-11.725417, 8.98125], - [-11.724894, 8.979165], - [-11.722969, 8.982501], - [-11.72375, 8.984583], - [-11.724582, 8.995417], - [-11.721557, 8.999451], - [-11.721375, 8.999452], - [-11.720526, 8.999965], - [-11.720124, 9.000396], - [-11.720103, 9.000525], - [-11.717364, 9.000526], - [-11.716681, 9.00171], - [-11.717082, 9.002917], - [-11.714582, 9.006249], - [-11.71233, 9.007377], - [-11.714374, 9.010919], - [-11.710469, 9.017684], - [-11.714171, 9.024097], - [-11.713749, 9.029582], - [-11.710417, 9.029583], - [-11.708749, 9.030416], - [-11.705417, 9.029583], - [-11.698749, 9.033749], - [-11.695814, 9.034337], - [-11.695771, 9.034742], - [-11.695971, 9.035579], - [-11.696605, 9.037081], - [-11.696604, 9.037082], - [-11.690417, 9.037083], - [-11.690202, 9.036869], - [-11.688272, 9.040212], - [-11.692178, 9.046977], - [-11.693162, 9.046978], - [-11.693163, 9.046979], - [-11.692976, 9.047417], - [-11.692602, 9.047831], - [-11.692419, 9.048466], - [-11.691508, 9.048917], - [-11.69058, 9.049891], - [-11.690476, 9.049926], - [-11.688272, 9.053743], - [-11.692178, 9.060508], - [-11.691681, 9.061371], - [-11.692917, 9.062917], - [-11.692916, 9.076249], - [-11.688585, 9.08058], - [-11.6892, 9.0809], - [-11.692699, 9.083699], - [-11.695899, 9.086899], - [-11.6996, 9.0916], - [-11.7044, 9.1], - [-11.705699, 9.103899], - [-11.706099, 9.106799], - [-11.706299, 9.1111], - [-11.706099, 9.117], - [-11.705399, 9.1227], - [-11.7031, 9.132299], - [-11.7026, 9.139699], - [-11.702899, 9.156399], - [-11.704199, 9.1689], - [-11.703199, 9.183], - [-11.7031, 9.196899], - [-11.703399, 9.206199], - [-11.704199, 9.212099], - [-11.705799, 9.217799], - [-11.709599, 9.227699], - [-11.712599, 9.234299], - [-11.7144, 9.2402], - [-11.715, 9.2462], - [-11.715499, 9.264299], - [-11.7181, 9.279799], - [-11.722899, 9.2762], - [-11.7256, 9.273399], - [-11.7279, 9.269899], - [-11.7318, 9.261299], - [-11.7336, 9.255499], - [-11.7369, 9.240399], - [-11.737299, 9.234299], - [-11.7371, 9.2203], - [-11.737699, 9.2143], - [-11.7392, 9.210599], - [-11.743599, 9.2039], - [-11.7478, 9.201199], - [-11.756099, 9.1983], - [-11.7605, 9.197599], - [-11.7683, 9.1973], - [-11.776199, 9.197399], - [-11.7823, 9.1979], - [-11.7853, 9.1985], - [-11.7913, 9.2004], - [-11.802499, 9.201799], - [-11.809099, 9.203199], - [-11.8102, 9.194399], - [-11.8128, 9.179299], - [-11.8144, 9.174699], - [-11.815999, 9.1681], - [-11.8177, 9.162299], - [-11.821199, 9.1524], - [-11.8242, 9.145899], - [-11.825799, 9.1401], - [-11.826299, 9.1335], - [-11.825811, 9.128427] - ] - ], - "type": "Polygon" - }, - "id": 59, - "properties": { - "cc:admin:id": ["47"], - "cc:oBld:total": 3163, - "cc:pop:fifteen-to-twenty-four": 3616.3950144345927, - "cc:pop:grid3-total": 26843.285920106562, - "cc:pop:kontur-total": 19923.87564991818, - "cc:pop:men": 9259.143704900003, - "cc:pop:sixty-plus": 1202.7887752406716, - "cc:pop:total": 19895.65762090261, - "cc:pop:under-five": 3240.63084774519, - "cc:pop:women": 10636.513916002606, - "cc:pop:women-fiften-to-forty-nine": 5086.466791413045, - "cc:pop:wp-total": 17408.758284982418, - "cc:pop:wp-total-UN": 20164.903327742628, - "cc:id": "59", - "cc:Name": "Bumbuna CHC", - "cc:site": [-11.7449, 9.0449], - "user:parentName": "Kalansogoia", - "user:code": "OU_268195", - "user:orgUnitId": "Q2USZSJmcNK", - "user:level": "4", - "user:parentId": "smoyi1iYNK6" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.030416, 7.939584], - [-12.01875, 7.93375], - [-12.014583, 7.933749], - [-12.012916, 7.932916], - [-12.009582, 7.932083], - [-12.006249, 7.930416], - [-12.002083, 7.925416], - [-12.002838, 7.916352], - [-12.001032, 7.915901], - [-11.999583, 7.914898], - [-11.999582, 7.90375], - [-11.994582, 7.899584], - [-11.989583, 7.898749], - [-11.98625, 7.897083], - [-11.982082, 7.88125], - [-11.973889, 7.881933], - [-11.973012, 7.880417], - [-11.967917, 7.880416], - [-11.966414, 7.869898], - [-11.96604, 7.869886], - [-11.965985, 7.869921], - [-11.965983, 7.86992], - [-11.964582, 7.862917], - [-11.96087, 7.862916], - [-11.96086, 7.862489], - [-11.960104, 7.861473], - [-11.960085, 7.86146], - [-11.961477, 7.859047], - [-11.959216, 7.85513], - [-11.959217, 7.855128], - [-11.959406, 7.855093], - [-11.95939, 7.854249], - [-11.957862, 7.853902], - [-11.95474, 7.852411], - [-11.950494, 7.849701], - [-11.949505, 7.849106], - [-11.947087, 7.847659], - [-11.945448, 7.84662], - [-11.945603, 7.846315], - [-11.945755, 7.846021], - [-11.946313, 7.845707], - [-11.945245, 7.84525], - [-11.944774, 7.845533], - [-11.944821, 7.846015], - [-11.944587, 7.846207], - [-11.943155, 7.844661], - [-11.942751, 7.843919], - [-11.942909, 7.842437], - [-11.942878, 7.84174], - [-11.942275, 7.839813], - [-11.941662, 7.838784], - [-11.940923, 7.837692], - [-11.940536, 7.837464], - [-11.939246, 7.835451], - [-11.937854, 7.834555], - [-11.937929, 7.833719], - [-11.938224, 7.833271], - [-11.938745, 7.833883], - [-11.939257, 7.834184], - [-11.940866, 7.834588], - [-11.941818, 7.834278], - [-11.942082, 7.83375], - [-11.939583, 7.830416], - [-11.937916, 7.82375], - [-11.936249, 7.823749], - [-11.925417, 7.82125], - [-11.926073, 7.817305], - [-11.923376, 7.812633], - [-11.915563, 7.812632], - [-11.91356, 7.809161], - [-11.91304, 7.803445], - [-11.913446, 7.80343], - [-11.913618, 7.803278], - [-11.913523, 7.803031], - [-11.913749, 7.802999], - [-11.913749, 7.802917], - [-11.909583, 7.802916], - [-11.907752, 7.801086], - [-11.907125, 7.801484], - [-11.907112, 7.80148], - [-11.902068, 7.797697], - [-11.901926, 7.797786], - [-11.901487, 7.798031], - [-11.901249, 7.797083], - [-11.89875, 7.78875], - [-11.898801, 7.788743], - [-11.899547, 7.78745], - [-11.89625, 7.781738], - [-11.89625, 7.77963], - [-11.896276, 7.779584], - [-11.896249, 7.779583], - [-11.893749, 7.777084], - [-11.887083, 7.774583], - [-11.885416, 7.770417], - [-11.883685, 7.768686], - [-11.882399, 7.7692], - [-11.877399, 7.7704], - [-11.871999, 7.7724], - [-11.8671, 7.7734], - [-11.8646, 7.7749], - [-11.8637, 7.7766], - [-11.863999, 7.778699], - [-11.865499, 7.780599], - [-11.8683, 7.7828], - [-11.873599, 7.7856], - [-11.8764, 7.7885], - [-11.8788, 7.792299], - [-11.882599, 7.795099], - [-11.885799, 7.7969], - [-11.887899, 7.799899], - [-11.887899, 7.802799], - [-11.885599, 7.8062], - [-11.882399, 7.8088], - [-11.8786, 7.810699], - [-11.8766, 7.811999], - [-11.8746, 7.8146], - [-11.873799, 7.818], - [-11.8737, 7.825199], - [-11.873, 7.828899], - [-11.869099, 7.837], - [-11.865899, 7.8409], - [-11.8446, 7.862099], - [-11.842799, 7.8642], - [-11.8414, 7.8666], - [-11.840699, 7.8701], - [-11.8405, 7.878199], - [-11.8396, 7.881599], - [-11.8378, 7.885199], - [-11.836499, 7.8883], - [-11.834099, 7.8926], - [-11.8303, 7.900999], - [-11.8289, 7.906799], - [-11.826699, 7.9122], - [-11.825599, 7.9173], - [-11.8231, 7.922399], - [-11.821799, 7.9255], - [-11.819599, 7.9299], - [-11.8188, 7.9348], - [-11.819099, 7.956299], - [-11.819099, 7.962], - [-11.818699, 7.9656], - [-11.8171, 7.971499], - [-11.817, 7.975399], - [-11.823499, 7.977099], - [-11.8287, 7.979799], - [-11.836099, 7.9797], - [-11.8431, 7.978599], - [-11.854199, 7.9738], - [-11.858199, 7.9727], - [-11.8627, 7.9723], - [-11.868599, 7.9726], - [-11.8736, 7.9744], - [-11.8786, 7.9781], - [-11.8823, 7.9793], - [-11.8904, 7.9809], - [-11.900499, 7.985899], - [-11.9071, 7.9882], - [-11.917599, 7.992499], - [-11.9234, 7.9974], - [-11.927199, 7.999399], - [-11.930399, 8.000599], - [-11.9336, 8.000699], - [-11.9393, 7.9996], - [-11.9433, 7.9997], - [-11.9505, 8.0013], - [-11.955799, 8.001599], - [-11.959699, 8.0011], - [-11.965699, 7.9993], - [-11.971299, 7.998399], - [-11.9726, 7.9957], - [-11.975999, 7.9926], - [-11.9799, 7.991199], - [-11.9843, 7.990799], - [-11.9978, 7.990299], - [-12.0007, 7.989799], - [-12.0054, 7.988399], - [-12.0098, 7.987599], - [-12.028313, 7.986866], - [-12.029583, 7.983526], - [-12.029734, 7.980607], - [-12.030251, 7.978782], - [-12.030211, 7.977917], - [-12.030194, 7.977916], - [-12.029955, 7.974293], - [-12.02902, 7.972886], - [-12.0288, 7.971597], - [-12.027667, 7.969531], - [-12.027319, 7.968225], - [-12.027294, 7.967182], - [-12.027452, 7.967084], - [-12.024066, 7.967083], - [-12.020161, 7.960317], - [-12.021939, 7.957237], - [-12.023749, 7.956249], - [-12.025416, 7.952917], - [-12.021052, 7.949222], - [-12.024452, 7.943334], - [-12.030416, 7.943333], - [-12.030416, 7.939584] - ] - ], - "type": "Polygon" - }, - "id": 60, - "properties": { - "cc:admin:id": ["11"], - "cc:oBld:total": 1206, - "cc:pop:fifteen-to-twenty-four": 2978.9021061946905, - "cc:pop:grid3-total": 11003.709333510464, - "cc:pop:kontur-total": 17547.94134030284, - "cc:pop:men": 7604.336933009913, - "cc:pop:sixty-plus": 1259.0917945731405, - "cc:pop:total": 15997.092711250772, - "cc:pop:under-five": 2431.2540250466764, - "cc:pop:women": 8392.75577824086, - "cc:pop:women-fiften-to-forty-nine": 3840.0158235623935, - "cc:pop:wp-total": 15007.4463239842, - "cc:pop:wp-total-UN": 17397.83458965354, - "cc:id": "60", - "cc:Name": "Bumpe CHC", - "cc:site": [-11.9033, 7.8894], - "user:parentName": "Bumpe Ngao", - "user:code": "OU_651", - "user:orgUnitId": "E497Rk80ivZ", - "user:level": "4", - "user:parentId": "BGGmAwx33dj" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.910499, 8.1328], - [-10.904, 8.1278], - [-10.9016, 8.1258], - [-10.8989, 8.1231], - [-10.8966, 8.1202], - [-10.894699, 8.116299], - [-10.8923, 8.112], - [-10.890999, 8.108799], - [-10.888199, 8.1028], - [-10.8835, 8.105799], - [-10.8805, 8.108399], - [-10.875, 8.114399], - [-10.871499, 8.1186], - [-10.868899, 8.1196], - [-10.8647, 8.120099], - [-10.8613, 8.120999], - [-10.8578, 8.122799], - [-10.854599, 8.1242], - [-10.851, 8.126099], - [-10.8489, 8.126799], - [-10.845599, 8.1272], - [-10.831999, 8.1273], - [-10.8281, 8.128], - [-10.8222, 8.131399], - [-10.820599, 8.1331], - [-10.8177, 8.138699], - [-10.816199, 8.145], - [-10.8127, 8.152999], - [-10.8088, 8.159799], - [-10.8069, 8.161699], - [-10.805299, 8.1642], - [-10.8032, 8.166499], - [-10.7996, 8.1692], - [-10.796, 8.175199], - [-10.7942, 8.178899], - [-10.7927, 8.180899], - [-10.790899, 8.1824], - [-10.786999, 8.1843], - [-10.7813, 8.188799], - [-10.7774, 8.1915], - [-10.7752, 8.194799], - [-10.772899, 8.1975], - [-10.770199, 8.2], - [-10.7662, 8.203], - [-10.761, 8.211199], - [-10.7593, 8.212699], - [-10.7546, 8.215499], - [-10.749899, 8.2178], - [-10.746299, 8.2206], - [-10.7422, 8.224599], - [-10.7383, 8.228799], - [-10.7362, 8.231799], - [-10.7345, 8.235599], - [-10.732399, 8.2392], - [-10.7307, 8.243799], - [-10.7337, 8.2449], - [-10.739899, 8.247599], - [-10.745099, 8.251499], - [-10.7474, 8.252899], - [-10.75, 8.2535], - [-10.754999, 8.254099], - [-10.757199, 8.254999], - [-10.7603, 8.2588], - [-10.7642, 8.262899], - [-10.7712, 8.256199], - [-10.7741, 8.254599], - [-10.7803, 8.252899], - [-10.7835, 8.250799], - [-10.789099, 8.2456], - [-10.7921, 8.243399], - [-10.800099, 8.2397], - [-10.807599, 8.2386], - [-10.810899, 8.2377], - [-10.8146, 8.235899], - [-10.822899, 8.2321], - [-10.828, 8.230899], - [-10.8333, 8.228499], - [-10.839999, 8.2268], - [-10.845299, 8.2246], - [-10.8492, 8.223999], - [-10.861399, 8.2239], - [-10.868499, 8.224199], - [-10.876999, 8.225199], - [-10.8765, 8.2195], - [-10.8766, 8.216099], - [-10.880299, 8.1965], - [-10.8826, 8.1914], - [-10.888399, 8.185099], - [-10.8899, 8.181399], - [-10.8904, 8.177099], - [-10.8904, 8.1636], - [-10.891, 8.1595], - [-10.8935, 8.154299], - [-10.8962, 8.152099], - [-10.902799, 8.148799], - [-10.9062, 8.145399], - [-10.9081, 8.141999], - [-10.910499, 8.1328] - ] - ], - "type": "Polygon" - }, - "id": 61, - "properties": { - "cc:admin:id": ["108"], - "cc:oBld:total": 1431, - "cc:pop:fifteen-to-twenty-four": 4087.5502143072927, - "cc:pop:grid3-total": 25538.16550725389, - "cc:pop:kontur-total": 21357.091592834753, - "cc:pop:men": 10357.734588664376, - "cc:pop:sixty-plus": 1311.6415652960877, - "cc:pop:total": 21339.385822853856, - "cc:pop:under-five": 3352.4650999016303, - "cc:pop:women": 10981.651234189485, - "cc:pop:women-fiften-to-forty-nine": 5499.042234269065, - "cc:pop:wp-total": 18338.6578853091, - "cc:pop:wp-total-UN": 21262.581265392546, - "cc:id": "61", - "cc:Name": "Bumpeh CHP", - "cc:site": [-10.80713, 8.22032], - "user:parentName": "Malema", - "user:code": "OU_204874", - "user:orgUnitId": "wbtk73Zwhj9", - "user:level": "4", - "user:parentId": "GE25DpSrqpB" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.629956, 7.287169], - [-11.628899, 7.285099], - [-11.627599, 7.281999], - [-11.625, 7.276699], - [-11.6241, 7.27], - [-11.623499, 7.267099], - [-11.6212, 7.2628], - [-11.619799, 7.259599], - [-11.6173, 7.2554], - [-11.615899, 7.252199], - [-11.613999, 7.248699], - [-11.612999, 7.244999], - [-11.612799, 7.241099], - [-11.612699, 7.231999], - [-11.6125, 7.229], - [-11.611899, 7.226699], - [-11.610799, 7.224599], - [-11.606753, 7.219024], - [-11.606414, 7.219611], - [-11.606185, 7.221183], - [-11.606184, 7.221184], - [-11.602452, 7.217453], - [-11.599453, 7.217453], - [-11.595546, 7.224218], - [-11.58796, 7.224219], - [-11.587917, 7.223749], - [-11.588848, 7.221419], - [-11.588303, 7.220882], - [-11.587378, 7.220362], - [-11.586108, 7.219287], - [-11.584983, 7.218692], - [-11.582577, 7.21667], - [-11.581536, 7.21667], - [-11.57763, 7.223435], - [-11.579572, 7.226801], - [-11.574103, 7.224979], - [-11.572213, 7.22825], - [-11.565916, 7.228251], - [-11.565417, 7.22875], - [-11.564583, 7.237917], - [-11.565416, 7.242083], - [-11.566249, 7.242917], - [-11.566249, 7.243749], - [-11.55625, 7.245417], - [-11.549583, 7.248749], - [-11.547916, 7.247084], - [-11.537917, 7.244584], - [-11.534903, 7.252116], - [-11.534389, 7.251847], - [-11.532856, 7.2512], - [-11.530398, 7.250467], - [-11.529892, 7.249733], - [-11.528636, 7.248563], - [-11.527648, 7.246951], - [-11.527559, 7.246709], - [-11.52392, 7.253013], - [-11.520677, 7.253014], - [-11.521019, 7.253814], - [-11.52037, 7.253959], - [-11.519764, 7.254342], - [-11.51893, 7.252197], - [-11.518714, 7.252293], - [-11.518957, 7.252506], - [-11.518652, 7.252991], - [-11.51875, 7.253191], - [-11.518447, 7.253758], - [-11.518218, 7.253871], - [-11.51807, 7.25322], - [-11.51821, 7.25262], - [-11.518192, 7.250891], - [-11.517964, 7.250213], - [-11.515814, 7.24779], - [-11.515605, 7.247378], - [-11.515468, 7.246501], - [-11.515904, 7.244748], - [-11.515138, 7.242418], - [-11.514877, 7.241748], - [-11.513949, 7.241748], - [-11.513934, 7.241774], - [-11.513939, 7.241795], - [-11.514227, 7.243695], - [-11.513908, 7.243874], - [-11.513484, 7.243551], - [-11.513375, 7.24274], - [-11.512492, 7.24427], - [-11.512554, 7.244341], - [-11.512307, 7.244591], - [-11.51207, 7.245], - [-11.511773, 7.245048], - [-11.511268, 7.245761], - [-11.510317, 7.245799], - [-11.510021, 7.246075], - [-11.509119, 7.24638], - [-11.509053, 7.246646], - [-11.508866, 7.246587], - [-11.508908, 7.246428], - [-11.507996, 7.246743], - [-11.507855, 7.247004], - [-11.507157, 7.247397], - [-11.506357, 7.247542], - [-11.50625, 7.248111], - [-11.506721, 7.248512], - [-11.50672, 7.248513], - [-11.504013, 7.248514], - [-11.503996, 7.248364], - [-11.504276, 7.248099], - [-11.50493, 7.248087], - [-11.505801, 7.247139], - [-11.506198, 7.245519], - [-11.505716, 7.24489], - [-11.506198, 7.244484], - [-11.506306, 7.244059], - [-11.50592, 7.243642], - [-11.505854, 7.242662], - [-11.505199, 7.242491], - [-11.50361, 7.241479], - [-11.502965, 7.240855], - [-11.502199, 7.2424], - [-11.499399, 7.2455], - [-11.497299, 7.2474], - [-11.494199, 7.2498], - [-11.4933, 7.250499], - [-11.486, 7.254599], - [-11.482099, 7.2563], - [-11.4778, 7.258699], - [-11.473899, 7.2606], - [-11.468, 7.264999], - [-11.463499, 7.2674], - [-11.4605, 7.2701], - [-11.459599, 7.2725], - [-11.4595, 7.275199], - [-11.4608, 7.278599], - [-11.463699, 7.281199], - [-11.4678, 7.2833], - [-11.471799, 7.286499], - [-11.473999, 7.289499], - [-11.477899, 7.296899], - [-11.4792, 7.3001], - [-11.4817, 7.3043], - [-11.483099, 7.307499], - [-11.485499, 7.311799], - [-11.487413, 7.315919], - [-11.487917, 7.315417], - [-11.500416, 7.315416], - [-11.502916, 7.312916], - [-11.502917, 7.311249], - [-11.506249, 7.308749], - [-11.507083, 7.30625], - [-11.518748, 7.30625], - [-11.518748, 7.306251], - [-11.51625, 7.309584], - [-11.51625, 7.310853], - [-11.516484, 7.311259], - [-11.524296, 7.31126], - [-11.52741, 7.305867], - [-11.534582, 7.307916], - [-11.536249, 7.316249], - [-11.53629, 7.316775], - [-11.538803, 7.31738], - [-11.540396, 7.317588], - [-11.541162, 7.317499], - [-11.544695, 7.31138], - [-11.552506, 7.311379], - [-11.552917, 7.31067], - [-11.552917, 7.306663], - [-11.559, 7.306663], - [-11.561649, 7.311249], - [-11.562082, 7.31125], - [-11.562917, 7.309583], - [-11.568997, 7.306205], - [-11.568998, 7.306206], - [-11.568799, 7.307484], - [-11.567011, 7.308203], - [-11.566254, 7.309045], - [-11.566164, 7.309497], - [-11.574583, 7.317916], - [-11.577082, 7.317916], - [-11.58375, 7.307917], - [-11.588749, 7.307917], - [-11.590417, 7.308749], - [-11.594872, 7.309386], - [-11.595499, 7.308069], - [-11.599582, 7.308749], - [-11.601845, 7.311577], - [-11.603275, 7.311578], - [-11.604116, 7.312389], - [-11.606567, 7.313853], - [-11.607968, 7.315417], - [-11.608352, 7.315613], - [-11.608551, 7.315653], - [-11.61125, 7.309583], - [-11.613749, 7.30875], - [-11.614582, 7.30875], - [-11.617082, 7.309583], - [-11.617083, 7.305417], - [-11.618749, 7.303749], - [-11.617917, 7.298749], - [-11.619583, 7.297084], - [-11.62125, 7.297083], - [-11.627916, 7.29125], - [-11.629956, 7.287169] - ] - ], - "type": "Polygon" - }, - "id": 62, - "properties": { - "cc:admin:id": ["27"], - "cc:oBld:total": 649, - "cc:pop:fifteen-to-twenty-four": 3282.201105155502, - "cc:pop:grid3-total": 17429.87096479232, - "cc:pop:kontur-total": 18129.960366269283, - "cc:pop:men": 8729.741685541541, - "cc:pop:sixty-plus": 1251.345531783676, - "cc:pop:total": 18032.467945106808, - "cc:pop:under-five": 3035.7730848268975, - "cc:pop:women": 9302.726259565261, - "cc:pop:women-fiften-to-forty-nine": 4465.381032024109, - "cc:pop:wp-total": 14363.445942883, - "cc:pop:wp-total-UN": 16656.970900792905, - "cc:id": "62", - "cc:Name": "Bumpeh Perri CHC", - "cc:site": [-11.5656, 7.2841], - "user:parentName": "Galliness Perri", - "user:code": "OU_260423", - "user:orgUnitId": "d9zRBAoM8OC", - "user:level": "4", - "user:parentId": "eNtRuQrrZeo" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.007916, 8.81375], - [-13.00176, 8.814629], - [-13.001054, 8.812932], - [-13.001667, 8.811651], - [-13.001586, 8.810839], - [-13.001297, 8.810194], - [-12.999856, 8.808905], - [-12.999542, 8.806547], - [-12.999455, 8.805961], - [-12.997129, 8.803866], - [-12.996757, 8.803046], - [-12.995454, 8.802475], - [-12.993438, 8.803499], - [-12.992606, 8.802649], - [-12.991614, 8.802753], - [-12.990972, 8.803481], - [-12.99123, 8.803673], - [-12.992167, 8.803631], - [-12.992414, 8.80394], - [-12.992489, 8.804482], - [-12.992177, 8.80511], - [-12.990895, 8.805992], - [-12.990272, 8.806066], - [-12.98969, 8.80545], - [-12.989158, 8.805484], - [-12.988949, 8.805761], - [-12.986688, 8.805007], - [-12.986687, 8.804924], - [-12.98375, 8.80375], - [-12.98125, 8.802083], - [-12.981249, 8.800416], - [-12.977082, 8.792083], - [-12.971831, 8.792082], - [-12.971905, 8.778856], - [-12.96875, 8.778855], - [-12.968749, 8.777917], - [-12.967082, 8.775417], - [-12.958694, 8.774654], - [-12.958478, 8.774864], - [-12.95625, 8.77375], - [-12.954582, 8.770417], - [-12.950417, 8.767917], - [-12.947917, 8.765417], - [-12.951249, 8.760417], - [-12.947917, 8.756249], - [-12.947917, 8.749583], - [-12.948749, 8.747082], - [-12.946249, 8.740417], - [-12.943851, 8.738618], - [-12.94265, 8.739456], - [-12.943189, 8.739504], - [-12.943726, 8.739885], - [-12.942703, 8.740915], - [-12.942397, 8.740948], - [-12.94131, 8.741007], - [-12.940302, 8.741431], - [-12.94002, 8.741283], - [-12.939568, 8.741561], - [-12.938303, 8.74226], - [-12.938056, 8.742028], - [-12.938024, 8.741972], - [-12.938024, 8.741971], - [-12.93838, 8.741793], - [-12.939899, 8.74095], - [-12.943789, 8.737956], - [-12.93875, 8.732917], - [-12.937916, 8.729583], - [-12.930864, 8.729582], - [-12.93403, 8.724098], - [-12.931662, 8.719996], - [-12.930417, 8.71875], - [-12.930416, 8.717838], - [-12.930123, 8.717332], - [-12.923616, 8.717332], - [-12.925416, 8.719583], - [-12.925417, 8.727136], - [-12.925317, 8.727144], - [-12.925351, 8.727676], - [-12.925202, 8.727784], - [-12.924854, 8.727657], - [-12.924863, 8.727243], - [-12.924181, 8.727301], - [-12.924304, 8.726193], - [-12.92387, 8.72542], - [-12.923233, 8.725415], - [-12.922873, 8.725833], - [-12.922294, 8.726078], - [-12.921259, 8.725835], - [-12.920941, 8.726135], - [-12.920742, 8.726432], - [-12.920411, 8.726725], - [-12.92009, 8.727044], - [-12.919818, 8.727234], - [-12.919689, 8.727333], - [-12.919484, 8.727759], - [-12.919394, 8.728031], - [-12.919235, 8.72838], - [-12.918921, 8.728771], - [-12.918646, 8.729016], - [-12.918372, 8.729279], - [-12.918199, 8.72936], - [-12.918106, 8.729368], - [-12.917916, 8.729337], - [-12.917869, 8.729279], - [-12.917811, 8.72906], - [-12.917717, 8.728708], - [-12.917652, 8.728489], - [-12.917519, 8.728279], - [-12.916938, 8.727705], - [-12.916291, 8.726988], - [-12.915987, 8.726703], - [-12.915677, 8.726268], - [-12.91552, 8.72613], - [-12.915303, 8.726028], - [-12.915081, 8.726023], - [-12.914782, 8.726037], - [-12.914555, 8.726143], - [-12.914207, 8.726359], - [-12.913686, 8.726692], - [-12.913491, 8.72684], - [-12.913387, 8.72698], - [-12.913337, 8.727109], - [-12.913353, 8.727328], - [-12.913386, 8.727475], - [-12.913324, 8.727719], - [-12.913145, 8.72803], - [-12.912838, 8.728259], - [-12.912547, 8.728426], - [-12.912123, 8.728522], - [-12.911851, 8.728545], - [-12.911628, 8.728466], - [-12.911357, 8.728284], - [-12.911268, 8.728099], - [-12.911244, 8.727862], - [-12.91114, 8.727566], - [-12.911024, 8.72725], - [-12.91094, 8.726886], - [-12.910811, 8.726544], - [-12.910622, 8.726168], - [-12.910534, 8.725898], - [-12.910496, 8.725679], - [-12.910403, 8.724943], - [-12.910377, 8.724575], - [-12.910335, 8.724197], - [-12.910273, 8.72381], - [-12.910266, 8.723536], - [-12.910198, 8.723406], - [-12.909984, 8.723287], - [-12.909839, 8.723222], - [-12.90955, 8.722918], - [-12.909382, 8.722731], - [-12.909086, 8.722584], - [-12.907917, 8.721868], - [-12.907459, 8.721627], - [-12.906908, 8.721489], - [-12.906493, 8.721393], - [-12.906328, 8.721398], - [-12.906206, 8.721459], - [-12.906042, 8.721597], - [-12.905615, 8.721696], - [-12.9051, 8.721756], - [-12.904525, 8.721656], - [-12.904155, 8.721594], - [-12.903084, 8.72119], - [-12.902392, 8.720625], - [-12.901939, 8.720272], - [-12.901584, 8.720015], - [-12.899697, 8.719382], - [-12.899111, 8.719208], - [-12.898489, 8.719005], - [-12.897786, 8.718845], - [-12.897354, 8.718797], - [-12.896901, 8.718786], - [-12.896587, 8.718799], - [-12.896328, 8.718814], - [-12.895894, 8.718962], - [-12.895563, 8.719071], - [-12.895383, 8.719181], - [-12.895247, 8.719275], - [-12.895037, 8.719339], - [-12.894844, 8.719366], - [-12.894643, 8.719345], - [-12.894421, 8.719265], - [-12.894266, 8.719122], - [-12.894169, 8.718916], - [-12.894106, 8.718807], - [-12.893748, 8.718446], - [-12.893525, 8.718215], - [-12.893248, 8.71805], - [-12.893011, 8.717984], - [-12.892621, 8.717866], - [-12.892272, 8.717692], - [-12.891504, 8.717238], - [-12.891109, 8.716969], - [-12.890963, 8.716813], - [-12.890903, 8.716691], - [-12.890921, 8.716525], - [-12.890921, 8.716115], - [-12.890859, 8.715612], - [-12.890749, 8.715136], - [-12.890616, 8.714846], - [-12.890506, 8.714744], - [-12.890153, 8.714501], - [-12.889997, 8.714396], - [-12.888697, 8.713446], - [-12.888331, 8.713379], - [-12.88786, 8.713398], - [-12.887558, 8.713387], - [-12.887083, 8.713329], - [-12.886715, 8.713303], - [-12.8864, 8.713275], - [-12.886006, 8.713137], - [-12.885553, 8.71294], - [-12.885032, 8.712661], - [-12.884557, 8.712364], - [-12.884169, 8.712137], - [-12.883804, 8.711906], - [-12.883489, 8.711756], - [-12.883322, 8.711735], - [-12.88308, 8.711713], - [-12.882732, 8.711635], - [-12.882489, 8.711645], - [-12.882173, 8.711663], - [-12.881894, 8.711657], - [-12.881756, 8.711597], - [-12.881609, 8.711412], - [-12.88141, 8.711075], - [-12.881351, 8.710846], - [-12.881303, 8.710641], - [-12.882597, 8.709418], - [-12.879509, 8.708978], - [-12.879111, 8.709646], - [-12.878033, 8.711605], - [-12.877117, 8.712995], - [-12.876505, 8.713591], - [-12.875934, 8.713844], - [-12.874889, 8.714008], - [-12.872688, 8.713862], - [-12.871646, 8.713819], - [-12.871036, 8.713829], - [-12.87052, 8.713994], - [-12.869613, 8.714379], - [-12.868564, 8.714929], - [-12.86749, 8.715556], - [-12.866733, 8.716016], - [-12.865723, 8.716807], - [-12.864342, 8.717979], - [-12.862862, 8.718867], - [-12.861996, 8.719142], - [-12.8614, 8.719205], - [-12.8614, 8.725699], - [-12.8619, 8.732099], - [-12.8644, 8.7379], - [-12.8662, 8.7445], - [-12.8683, 8.7491], - [-12.8689, 8.7519], - [-12.8697, 8.7581], - [-12.873599, 8.767099], - [-12.8777, 8.7743], - [-12.8808, 8.777499], - [-12.8852, 8.7799], - [-12.889299, 8.782999], - [-12.891399, 8.785999], - [-12.895599, 8.7949], - [-12.896299, 8.800099], - [-12.8962, 8.804099], - [-12.895399, 8.807799], - [-12.894, 8.810199], - [-12.892699, 8.8117], - [-12.889599, 8.814399], - [-12.8799, 8.818699], - [-12.8722, 8.8202], - [-12.8683, 8.824199], - [-12.8663, 8.8267], - [-12.865799, 8.8318], - [-12.8643, 8.837699], - [-12.8655, 8.840799], - [-12.8691, 8.844299], - [-12.8771, 8.847999], - [-12.880699, 8.848199], - [-12.8856, 8.846299], - [-12.891299, 8.8447], - [-12.895699, 8.8438], - [-12.897399, 8.8471], - [-12.8976, 8.852399], - [-12.9104, 8.848499], - [-12.9232, 8.842099], - [-12.9314, 8.8401], - [-12.9381, 8.8401], - [-12.9447, 8.8405], - [-12.955699, 8.842299], - [-12.9644, 8.8444], - [-12.975099, 8.845499], - [-12.9837, 8.845199], - [-12.995228, 8.844077], - [-12.995223, 8.842484], - [-12.995373, 8.841869], - [-12.994754, 8.8408], - [-12.993761, 8.839682], - [-12.993176, 8.838804], - [-12.994204, 8.838997], - [-12.994212, 8.838386], - [-12.995242, 8.836598], - [-12.99554, 8.836613], - [-12.99679, 8.837405], - [-12.99375, 8.832083], - [-12.99375, 8.82875], - [-12.996249, 8.827917], - [-12.997082, 8.827916], - [-12.997917, 8.827083], - [-13.002916, 8.827082], - [-13.006249, 8.824582], - [-13.006454, 8.824172], - [-13.00638, 8.824134], - [-13.006379, 8.824132], - [-13.007916, 8.822082], - [-13.007916, 8.81375] - ] - ], - "type": "Polygon" - }, - "id": 64, - "properties": { - "cc:admin:id": ["74"], - "cc:oBld:total": 213, - "cc:pop:fifteen-to-twenty-four": 1882.860153065719, - "cc:pop:grid3-total": 4458.796976024288, - "cc:pop:kontur-total": 11249.71421347401, - "cc:pop:men": 5058.550777102542, - "cc:pop:sixty-plus": 530.3079918105614, - "cc:pop:total": 10677.625785100478, - "cc:pop:under-five": 1603.7628319998553, - "cc:pop:women": 5619.075007997936, - "cc:pop:women-fiften-to-forty-nine": 2797.5050729163386, - "cc:pop:wp-total": 8825.32070069011, - "cc:pop:wp-total-UN": 10242.957436139846, - "cc:id": "64", - "cc:Name": "Bundulai MCHP", - "cc:site": [-12.9069, 8.7642], - "user:parentName": "Lokomasama", - "user:code": "OU_254994", - "user:orgUnitId": "HVQ6gJE8R24", - "user:level": "4", - "user:parentId": "fRLX08WHWpL" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.897599, 8.852399], - [-12.897399, 8.8471], - [-12.895699, 8.8438], - [-12.891299, 8.8447], - [-12.8856, 8.846299], - [-12.880699, 8.848199], - [-12.8771, 8.847999], - [-12.869099, 8.844299], - [-12.8655, 8.840799], - [-12.8643, 8.8377], - [-12.865799, 8.8318], - [-12.866299, 8.8267], - [-12.862999, 8.8276], - [-12.858499, 8.8296], - [-12.855, 8.830299], - [-12.8486, 8.830599], - [-12.8447, 8.831299], - [-12.839, 8.833599], - [-12.835299, 8.8341], - [-12.831499, 8.8342], - [-12.8199, 8.8342], - [-12.8132, 8.8339], - [-12.810499, 8.833199], - [-12.805599, 8.831], - [-12.802099, 8.8309], - [-12.7996, 8.8319], - [-12.7973, 8.835099], - [-12.796538, 8.835735], - [-12.797083, 8.837916], - [-12.799168, 8.840003], - [-12.796488, 8.844646], - [-12.788675, 8.844647], - [-12.78559, 8.849989], - [-12.787083, 8.850417], - [-12.790416, 8.854582], - [-12.790417, 8.858178], - [-12.792082, 8.858179], - [-12.792082, 8.865416], - [-12.789583, 8.867083], - [-12.788807, 8.878731], - [-12.789454, 8.878745], - [-12.791773, 8.878439], - [-12.79268, 8.878592], - [-12.793151, 8.880604], - [-12.793025, 8.882082], - [-12.797082, 8.882083], - [-12.797917, 8.885416], - [-12.798893, 8.886067], - [-12.799803, 8.885637], - [-12.800129, 8.885962], - [-12.800326, 8.885917], - [-12.801114, 8.885418], - [-12.801576, 8.885521], - [-12.80165, 8.885697], - [-12.800772, 8.886605], - [-12.802026, 8.887858], - [-12.805851, 8.884226], - [-12.806507, 8.883902], - [-12.807518, 8.883842], - [-12.808773, 8.882738], - [-12.806803, 8.880275], - [-12.809515, 8.87725], - [-12.811034, 8.876103], - [-12.812523, 8.87578], - [-12.814399, 8.875868], - [-12.815561, 8.876455], - [-12.818376, 8.880017], - [-12.818486, 8.88033], - [-12.817917, 8.883749], - [-12.816466, 8.884717], - [-12.816544, 8.88558], - [-12.816068, 8.889007], - [-12.817065, 8.891612], - [-12.818392, 8.89357], - [-12.819195, 8.89529], - [-12.81955, 8.89649], - [-12.822174, 8.899057], - [-12.822606, 8.899102], - [-12.823618, 8.900234], - [-12.823649, 8.9005], - [-12.825269, 8.902085], - [-12.825241, 8.901731], - [-12.826346, 8.901907], - [-12.826873, 8.902448], - [-12.828632, 8.905321], - [-12.830032, 8.907171], - [-12.831912, 8.909306], - [-12.832179, 8.909799], - [-12.832572, 8.910761], - [-12.832916, 8.910416], - [-12.832942, 8.910179], - [-12.832944, 8.910178], - [-12.833709, 8.911406], - [-12.833939, 8.911302], - [-12.833466, 8.910647], - [-12.833392, 8.909233], - [-12.83311, 8.908673], - [-12.833361, 8.906422], - [-12.833893, 8.907082], - [-12.838986, 8.907083], - [-12.839543, 8.908615], - [-12.839887, 8.909597], - [-12.840813, 8.912132], - [-12.847082, 8.912917], - [-12.84875, 8.91625], - [-12.852488, 8.916249], - [-12.852634, 8.915498], - [-12.852438, 8.914759], - [-12.8519, 8.914217], - [-12.851249, 8.912916], - [-12.84875, 8.905417], - [-12.850825, 8.905935], - [-12.852111, 8.904323], - [-12.854451, 8.90279], - [-12.859128, 8.900242], - [-12.860416, 8.899398], - [-12.860416, 8.893948], - [-12.863669, 8.886853], - [-12.86367, 8.886853], - [-12.866291, 8.88895], - [-12.870761, 8.882147], - [-12.873739, 8.879162], - [-12.872916, 8.878749], - [-12.869687, 8.877942], - [-12.869687, 8.877941], - [-12.870048, 8.877794], - [-12.871181, 8.876611], - [-12.871959, 8.876356], - [-12.872873, 8.87546], - [-12.874561, 8.874311], - [-12.876385, 8.872518], - [-12.877559, 8.871108], - [-12.877562, 8.870594], - [-12.877174, 8.870462], - [-12.877083, 8.870491], - [-12.877083, 8.870416], - [-12.882082, 8.867917], - [-12.883154, 8.869522], - [-12.884766, 8.867619], - [-12.888608, 8.863829], - [-12.89, 8.860699], - [-12.892999, 8.8567], - [-12.897599, 8.852399] - ] - ], - "type": "Polygon" - }, - "id": 65, - "properties": { - "cc:admin:id": ["13"], - "cc:oBld:total": 194, - "cc:pop:fifteen-to-twenty-four": 1093.415851008331, - "cc:pop:grid3-total": 4012.963334269628, - "cc:pop:kontur-total": 5804.774540888716, - "cc:pop:men": 2905.906127438258, - "cc:pop:sixty-plus": 327.01016039054474, - "cc:pop:total": 6118.9254188214145, - "cc:pop:under-five": 951.0003082525657, - "cc:pop:women": 3213.0192913831565, - "cc:pop:women-fiften-to-forty-nine": 1600.7425044066101, - "cc:pop:wp-total": 4164.715700966436, - "cc:pop:wp-total-UN": 4827.042916289399, - "cc:id": "65", - "cc:Name": "Bureh MCHP", - "cc:site": [-12.8555, 8.8958], - "user:parentName": "Bureh Kasseh Maconteh", - "user:code": "OU_255052", - "user:orgUnitId": "rpAgG9XCWhO", - "user:level": "4", - "user:parentId": "TA7NvKjsn4A" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.127917, 8.346249], - [-13.127917, 8.33875], - [-13.127082, 8.337084], - [-13.11625, 8.337083], - [-13.117082, 8.330417], - [-13.105417, 8.330416], - [-13.105417, 8.325417], - [-13.109582, 8.321249], - [-13.108749, 8.320417], - [-13.102917, 8.319584], - [-13.101735, 8.319583], - [-13.101702, 8.318905], - [-13.102187, 8.318635], - [-13.102586, 8.317991], - [-13.101368, 8.318147], - [-13.099624, 8.318118], - [-13.097429, 8.318647], - [-13.097428, 8.318645], - [-13.098203, 8.317903], - [-13.097756, 8.317245], - [-13.097747, 8.315959], - [-13.097508, 8.315638], - [-13.096063, 8.315918], - [-13.096487, 8.316755], - [-13.096426, 8.317249], - [-13.095534, 8.317354], - [-13.09426, 8.31796], - [-13.089434, 8.318959], - [-13.089433, 8.318957], - [-13.089737, 8.318596], - [-13.089856, 8.318126], - [-13.089151, 8.317635], - [-13.089955, 8.3142], - [-13.091083, 8.311851], - [-13.09031, 8.311243], - [-13.089843, 8.31108], - [-13.089535, 8.311234], - [-13.085276, 8.313146], - [-13.084911, 8.313321], - [-13.083057, 8.314289], - [-13.081445, 8.314963], - [-13.081442, 8.314959], - [-13.081024, 8.313757], - [-13.081247, 8.313076], - [-13.081007, 8.312981], - [-13.080763, 8.311871], - [-13.081406, 8.311029], - [-13.081027, 8.310198], - [-13.081507, 8.309187], - [-13.081621, 8.308403], - [-13.082092, 8.308035], - [-13.081531, 8.307377], - [-13.081478, 8.307297], - [-13.08035, 8.306275], - [-13.080298, 8.30571], - [-13.080526, 8.305095], - [-13.079803, 8.304075], - [-13.079672, 8.301962], - [-13.079538, 8.301937], - [-13.079526, 8.301867], - [-13.079301, 8.30005], - [-13.079066, 8.298079], - [-13.079195, 8.297167], - [-13.079491, 8.295783], - [-13.079593, 8.295353], - [-13.080112, 8.292835], - [-13.07974, 8.289957], - [-13.077083, 8.292084], - [-13.077082, 8.292916], - [-13.07375, 8.292084], - [-13.071249, 8.29125], - [-13.06875, 8.291249], - [-13.067513, 8.290014], - [-13.067274, 8.290108], - [-13.067527, 8.291139], - [-13.067622, 8.291249], - [-13.067083, 8.29125], - [-13.066376, 8.292308], - [-13.065582, 8.292161], - [-13.063528, 8.288802], - [-13.06185, 8.288535], - [-13.061726, 8.287118], - [-13.059917, 8.28685], - [-13.056322, 8.281681], - [-13.056165, 8.281775], - [-13.056164, 8.281774], - [-13.057916, 8.279583], - [-13.057158, 8.275791], - [-13.056998, 8.275629], - [-13.057, 8.275006], - [-13.056433, 8.272171], - [-13.056368, 8.272148], - [-13.054812, 8.272912], - [-13.051971, 8.272256], - [-13.051515, 8.270658], - [-13.049992, 8.268959], - [-13.048955, 8.268899], - [-13.048319, 8.267917], - [-13.044583, 8.267917], - [-13.044562, 8.26793], - [-13.043365, 8.265857], - [-13.035553, 8.265857], - [-13.03281, 8.270608], - [-13.031457, 8.27023], - [-13.029761, 8.269858], - [-13.028539, 8.269246], - [-13.027385, 8.268432], - [-13.025281, 8.267687], - [-13.024502, 8.267686], - [-13.024332, 8.266838], - [-13.024604, 8.265819], - [-13.024637, 8.264667], - [-13.024343, 8.263925], - [-13.023681, 8.263393], - [-13.021031, 8.261075], - [-13.019904, 8.259948], - [-13.019373, 8.258821], - [-13.017983, 8.25796], - [-13.016988, 8.257098], - [-13.014933, 8.256105], - [-13.013476, 8.256105], - [-13.012548, 8.256435], - [-13.011752, 8.256634], - [-13.011223, 8.255575], - [-13.011422, 8.254647], - [-13.012217, 8.253653], - [-13.012736, 8.253367], - [-13.013382, 8.252785], - [-13.014338, 8.2512], - [-13.015463, 8.248948], - [-13.016325, 8.247158], - [-13.017186, 8.245699], - [-13.017651, 8.243579], - [-13.0182, 8.240375], - [-13.01742, 8.239581], - [-13.016771, 8.241527], - [-13.016698, 8.242543], - [-13.016595, 8.242985], - [-13.016426, 8.244241], - [-13.016188, 8.245327], - [-13.015748, 8.246683], - [-13.014696, 8.248244], - [-13.014391, 8.248787], - [-13.014119, 8.249499], - [-13.013644, 8.250653], - [-13.013236, 8.251705], - [-13.012693, 8.252417], - [-13.011811, 8.252927], - [-13.0111, 8.253334], - [-13.010489, 8.254216], - [-13.010386, 8.254963], - [-13.010183, 8.256387], - [-13.010489, 8.257269], - [-13.011709, 8.257608], - [-13.012727, 8.2571], - [-13.01378, 8.256727], - [-13.015238, 8.256863], - [-13.016325, 8.257542], - [-13.017444, 8.25839], - [-13.018631, 8.259034], - [-13.019378, 8.260052], - [-13.019582, 8.260629], - [-13.020396, 8.261342], - [-13.02121, 8.262087], - [-13.022262, 8.262766], - [-13.022805, 8.263276], - [-13.023043, 8.263445], - [-13.023722, 8.263886], - [-13.023857, 8.264226], - [-13.023958, 8.264903], - [-13.023959, 8.26565], - [-13.023822, 8.266194], - [-13.023722, 8.26738], - [-13.024163, 8.268025], - [-13.024908, 8.268398], - [-13.026336, 8.268433], - [-13.027215, 8.268975], - [-13.028064, 8.269518], - [-13.028641, 8.269926], - [-13.029693, 8.270367], - [-13.030914, 8.270739], - [-13.03217, 8.270944], - [-13.032815, 8.271453], - [-13.033527, 8.272402], - [-13.034442, 8.272639], - [-13.035427, 8.272198], - [-13.036614, 8.271656], - [-13.037972, 8.270943], - [-13.038975, 8.27052], - [-13.039582, 8.271249], - [-13.03875, 8.274583], - [-13.037917, 8.275417], - [-13.039582, 8.285416], - [-13.037435, 8.291861], - [-13.037642, 8.292796], - [-13.036148, 8.29312], - [-13.034583, 8.296249], - [-13.035071, 8.296737], - [-13.037622, 8.29692], - [-13.037243, 8.298909], - [-13.040416, 8.302084], - [-13.040417, 8.305295], - [-13.041685, 8.304861], - [-13.045598, 8.30546], - [-13.046121, 8.306298], - [-13.046152, 8.306916], - [-13.045328, 8.308414], - [-13.04514, 8.309151], - [-13.045476, 8.309612], - [-13.045187, 8.310037], - [-13.042867, 8.310467], - [-13.042305, 8.311453], - [-13.041546, 8.311685], - [-13.040505, 8.312357], - [-13.039791, 8.312548], - [-13.040057, 8.313772], - [-13.040664, 8.31431], - [-13.040968, 8.31449], - [-13.040703, 8.315154], - [-13.039084, 8.31709], - [-13.038373, 8.319547], - [-13.037793, 8.32025], - [-13.038796, 8.320261], - [-13.03898, 8.320001], - [-13.039627, 8.319799], - [-13.039851, 8.320278], - [-13.041198, 8.320361], - [-13.042025, 8.322191], - [-13.043828, 8.323486], - [-13.044465, 8.324382], - [-13.04518, 8.323831], - [-13.045079, 8.322897], - [-13.04611, 8.323115], - [-13.04644, 8.322861], - [-13.046337, 8.322496], - [-13.046266, 8.322106], - [-13.046241, 8.32205], - [-13.045714, 8.321475], - [-13.044754, 8.320851], - [-13.044071, 8.320435], - [-13.044071, 8.320434], - [-13.044798, 8.319397], - [-13.045067, 8.319471], - [-13.045466, 8.31851], - [-13.046222, 8.318795], - [-13.046623, 8.318926], - [-13.046798, 8.318335], - [-13.046605, 8.317929], - [-13.04663, 8.317486], - [-13.048827, 8.317182], - [-13.049225, 8.31748], - [-13.049611, 8.317755], - [-13.049631, 8.317847], - [-13.049676, 8.318419], - [-13.04965, 8.318569], - [-13.049855, 8.318968], - [-13.05033, 8.319463], - [-13.050456, 8.320243], - [-13.049968, 8.320514], - [-13.049274, 8.32097], - [-13.048956, 8.320943], - [-13.048874, 8.322194], - [-13.0491, 8.322257], - [-13.04982, 8.32243], - [-13.050132, 8.322319], - [-13.050886, 8.323277], - [-13.05094, 8.323307], - [-13.051577, 8.325557], - [-13.052481, 8.325593], - [-13.052557, 8.325644], - [-13.052717, 8.326388], - [-13.05271, 8.326908], - [-13.053539, 8.326932], - [-13.053864, 8.32754], - [-13.054425, 8.327484], - [-13.054898, 8.328028], - [-13.055027, 8.328534], - [-13.056384, 8.328138], - [-13.056374, 8.328075], - [-13.057938, 8.327671], - [-13.059497, 8.327246], - [-13.059625, 8.327276], - [-13.059996, 8.327178], - [-13.061031, 8.326913], - [-13.061624, 8.326767], - [-13.062732, 8.326475], - [-13.064415, 8.326174], - [-13.064907, 8.326223], - [-13.065847, 8.326426], - [-13.067177, 8.326846], - [-13.068003, 8.327264], - [-13.068422, 8.327639], - [-13.068391, 8.327675], - [-13.068184, 8.328033], - [-13.067045, 8.328371], - [-13.066457, 8.328678], - [-13.06598, 8.329215], - [-13.066628, 8.329318], - [-13.06714, 8.329727], - [-13.067608, 8.329738], - [-13.067609, 8.32974], - [-13.067178, 8.330572], - [-13.065427, 8.333675], - [-13.065636, 8.333694], - [-13.066951, 8.334036], - [-13.06625, 8.335306], - [-13.066249, 8.337916], - [-13.065318, 8.337917], - [-13.065382, 8.338493], - [-13.065233, 8.338966], - [-13.06593, 8.339199], - [-13.065117, 8.340538], - [-13.065687, 8.341538], - [-13.066667, 8.341899], - [-13.06776, 8.342542], - [-13.067296, 8.343853], - [-13.068523, 8.345784], - [-13.067775, 8.347083], - [-13.067916, 8.347084], - [-13.067486, 8.350524], - [-13.067488, 8.350522], - [-13.067965, 8.350423], - [-13.068446, 8.350563], - [-13.068666, 8.350955], - [-13.068653, 8.351349], - [-13.068329, 8.352177], - [-13.067221, 8.352649], - [-13.067193, 8.352871], - [-13.068562, 8.353015], - [-13.068997, 8.353388], - [-13.069104, 8.353875], - [-13.068359, 8.355359], - [-13.068206, 8.356767], - [-13.068656, 8.357545], - [-13.069877, 8.357275], - [-13.070248, 8.357602], - [-13.070785, 8.357619], - [-13.070926, 8.357266], - [-13.07083, 8.356908], - [-13.070034, 8.356109], - [-13.070197, 8.354599], - [-13.072015, 8.354566], - [-13.07394, 8.355536], - [-13.075728, 8.35693], - [-13.076399, 8.356217], - [-13.076936, 8.355913], - [-13.076557, 8.354829], - [-13.076216, 8.354548], - [-13.075024, 8.354499], - [-13.074664, 8.354324], - [-13.074904, 8.353735], - [-13.075327, 8.353478], - [-13.075676, 8.352971], - [-13.075969, 8.352296], - [-13.076539, 8.352047], - [-13.076996, 8.352189], - [-13.077857, 8.352004], - [-13.077905, 8.35197], - [-13.077972, 8.352068], - [-13.079208, 8.353828], - [-13.079666, 8.35342], - [-13.079948, 8.354202], - [-13.082636, 8.352971], - [-13.082956, 8.352859], - [-13.083292, 8.353251], - [-13.083156, 8.353683], - [-13.083953, 8.354142], - [-13.084799, 8.352298], - [-13.084628, 8.352144], - [-13.084452, 8.351963], - [-13.08489, 8.351617], - [-13.085156, 8.3518], - [-13.085268, 8.351866], - [-13.085778, 8.352111], - [-13.085857, 8.351959], - [-13.08666, 8.352179], - [-13.087046, 8.351112], - [-13.087274, 8.351225], - [-13.087858, 8.352229], - [-13.088302, 8.352066], - [-13.088906, 8.352496], - [-13.089201, 8.353553], - [-13.088978, 8.354031], - [-13.08897, 8.354801], - [-13.095464, 8.354801], - [-13.099371, 8.348036], - [-13.103016, 8.348036], - [-13.105649, 8.349816], - [-13.108461, 8.352627], - [-13.112015, 8.352627], - [-13.113212, 8.350557], - [-13.122916, 8.351249], - [-13.127917, 8.346249] - ] - ], - "type": "Polygon" - }, - "id": 66, - "properties": { - "cc:admin:id": ["112"], - "cc:oBld:total": 13847, - "cc:pop:fifteen-to-twenty-four": 9918.310019007165, - "cc:pop:grid3-total": 77330.16692996194, - "cc:pop:kontur-total": 41798.319166441055, - "cc:pop:men": 20109.393457392118, - "cc:pop:sixty-plus": 3258.7168080083247, - "cc:pop:total": 41907.82621435114, - "cc:pop:under-five": 4581.1078530435525, - "cc:pop:women": 21798.432756959035, - "cc:pop:women-fiften-to-forty-nine": 11672.595210383062, - "cc:pop:wp-total": 40223.52833165977, - "cc:pop:wp-total-UN": 46663.691416747555, - "cc:id": "66", - "cc:Name": "Campbell Town CHP", - "cc:site": [-13.053, 8.3098], - "user:parentName": "Rural Western Area", - "user:code": "OU_278399", - "user:orgUnitId": "h9q3qixffZT", - "user:level": "4", - "user:parentId": "qtr8GGlm4gg" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.245099, 8.680099], - [-13.244299, 8.678799], - [-13.244, 8.6763], - [-13.244599, 8.675099], - [-13.2443, 8.6726], - [-13.2432, 8.670699], - [-13.243199, 8.6674], - [-13.2426, 8.6665], - [-13.242599, 8.665545], - [-13.23625, 8.666249], - [-13.235416, 8.665417], - [-13.230417, 8.66625], - [-13.22875, 8.66875], - [-13.230416, 8.671249], - [-13.230416, 8.672917], - [-13.225417, 8.682082], - [-13.22125, 8.682082], - [-13.21696, 8.680245], - [-13.216942, 8.680034], - [-13.215988, 8.680824], - [-13.215011, 8.68322], - [-13.214866, 8.684025], - [-13.21375, 8.684583], - [-13.212917, 8.685416], - [-13.204986, 8.6874], - [-13.205427, 8.688412], - [-13.206132, 8.689861], - [-13.207091, 8.691196], - [-13.205128, 8.694596], - [-13.202097, 8.694596], - [-13.201249, 8.69375], - [-13.199583, 8.693749], - [-13.198749, 8.692917], - [-13.197917, 8.692917], - [-13.19328, 8.696229], - [-13.193596, 8.696632], - [-13.192083, 8.700417], - [-13.193749, 8.711249], - [-13.180417, 8.70875], - [-13.17375, 8.71125], - [-13.17375, 8.720416], - [-13.174582, 8.72125], - [-13.17245, 8.729782], - [-13.170061, 8.729302], - [-13.168989, 8.729265], - [-13.165469, 8.728097], - [-13.166365, 8.730605], - [-13.166478, 8.731203], - [-13.166446, 8.731739], - [-13.160417, 8.73375], - [-13.157917, 8.736249], - [-13.157692, 8.736698], - [-13.160199, 8.7385], - [-13.163099, 8.742899], - [-13.1659, 8.7454], - [-13.169799, 8.746799], - [-13.176899, 8.7439], - [-13.180799, 8.740399], - [-13.183199, 8.7357], - [-13.1839, 8.7288], - [-13.186099, 8.7244], - [-13.194999, 8.7194], - [-13.198299, 8.717899], - [-13.201399, 8.7144], - [-13.203599, 8.7105], - [-13.206199, 8.7072], - [-13.209099, 8.705], - [-13.2126, 8.704099], - [-13.2191, 8.703199], - [-13.2257, 8.7006], - [-13.234299, 8.700899], - [-13.2349, 8.7001], - [-13.236, 8.701], - [-13.237399, 8.702899], - [-13.237899, 8.7049], - [-13.2376, 8.709299], - [-13.2368, 8.712099], - [-13.240399, 8.716299], - [-13.241799, 8.719], - [-13.241799, 8.720099], - [-13.240999, 8.721], - [-13.2393, 8.725999], - [-13.2393, 8.728499], - [-13.240399, 8.7312], - [-13.2404, 8.7329], - [-13.241, 8.735699], - [-13.2415, 8.736299], - [-13.242899, 8.735999], - [-13.243499, 8.7321], - [-13.2443, 8.729899], - [-13.244899, 8.724], - [-13.2443, 8.723499], - [-13.243999, 8.717899], - [-13.2429, 8.7121], - [-13.2418, 8.708799], - [-13.2418, 8.7065], - [-13.241299, 8.704599], - [-13.241, 8.7001], - [-13.2415, 8.698499], - [-13.2415, 8.6954], - [-13.2413, 8.695399], - [-13.2413, 8.6924], - [-13.2418, 8.6915], - [-13.243199, 8.690999], - [-13.2424, 8.687399], - [-13.2426, 8.6863], - [-13.243699, 8.685399], - [-13.244, 8.681], - [-13.245099, 8.680099] - ] - ], - "type": "Polygon" - }, - "id": 67, - "properties": { - "cc:admin:id": ["44"], - "cc:oBld:total": 703, - "cc:pop:fifteen-to-twenty-four": 891.2718101210364, - "cc:pop:grid3-total": 4683.005819540481, - "cc:pop:kontur-total": 4099.023570746892, - "cc:pop:men": 2376.9056480343665, - "cc:pop:sixty-plus": 287.0172560397254, - "cc:pop:total": 4957.946693972489, - "cc:pop:under-five": 811.3900421293486, - "cc:pop:women": 2581.0410459381205, - "cc:pop:women-fiften-to-forty-nine": 1232.0339440021182, - "cc:pop:wp-total": 4074.635421343617, - "cc:pop:wp-total-UN": 4726.056363957181, - "cc:id": "67", - "cc:Name": "Conakry Dee CHC", - "cc:site": [-13.2379, 8.6976], - "user:parentName": "Kaffu Bullom", - "user:code": "OU_255009", - "user:orgUnitId": "U4FzUXMvbI8", - "user:level": "4", - "user:parentId": "vn9KJsLyP5f" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.243609, 8.613033], - [-11.240655, 8.607917], - [-11.23625, 8.607916], - [-11.235417, 8.602916], - [-11.235416, 8.597084], - [-11.229583, 8.59625], - [-11.227916, 8.59375], - [-11.227519, 8.59375], - [-11.227427, 8.594252], - [-11.225417, 8.59375], - [-11.220416, 8.595416], - [-11.214583, 8.590417], - [-11.214092, 8.590514], - [-11.213621, 8.590514], - [-11.209715, 8.583749], - [-11.213621, 8.576984], - [-11.213197, 8.57625], - [-11.20375, 8.57625], - [-11.202339, 8.576955], - [-11.200541, 8.573844], - [-11.195824, 8.573843], - [-11.19375, 8.57125], - [-11.193761, 8.571094], - [-11.191511, 8.567199], - [-11.18798, 8.567199], - [-11.1885, 8.5698], - [-11.1889, 8.5759], - [-11.189199, 8.596999], - [-11.1891, 8.602199], - [-11.188499, 8.6062], - [-11.186299, 8.6121], - [-11.185699, 8.6162], - [-11.1854, 8.622999], - [-11.1848, 8.625699], - [-11.180999, 8.6334], - [-11.178499, 8.6361], - [-11.1737, 8.639], - [-11.1716, 8.641399], - [-11.168, 8.648999], - [-11.174399, 8.657399], - [-11.1764, 8.660499], - [-11.1791, 8.662499], - [-11.1826, 8.6633], - [-11.189499, 8.663499], - [-11.193099, 8.664199], - [-11.1977, 8.6661], - [-11.203599, 8.667599], - [-11.2069, 8.6693], - [-11.209899, 8.672199], - [-11.210636, 8.673048], - [-11.212082, 8.672082], - [-11.21125, 8.66375], - [-11.215417, 8.66375], - [-11.220417, 8.668749], - [-11.224342, 8.668096], - [-11.224387, 8.667704], - [-11.224367, 8.667626], - [-11.227082, 8.667083], - [-11.227082, 8.659584], - [-11.226249, 8.657084], - [-11.224583, 8.655416], - [-11.225416, 8.652917], - [-11.233749, 8.652916], - [-11.231249, 8.644584], - [-11.229583, 8.643749], - [-11.229583, 8.637917], - [-11.232082, 8.636249], - [-11.229583, 8.619584], - [-11.233036, 8.617857], - [-11.233038, 8.617842], - [-11.241195, 8.617215], - [-11.243609, 8.613033] - ] - ], - "type": "Polygon" - }, - "id": 68, - "properties": { - "cc:admin:id": ["101"], - "cc:oBld:total": 430, - "cc:pop:fifteen-to-twenty-four": 813.4892096711882, - "cc:pop:grid3-total": 3316.5031813500577, - "cc:pop:kontur-total": 4026.430562544336, - "cc:pop:men": 2313.336574814148, - "cc:pop:sixty-plus": 242.673568352609, - "cc:pop:total": 4233.562237481276, - "cc:pop:under-five": 640.4800576065705, - "cc:pop:women": 1920.225662667126, - "cc:pop:women-fiften-to-forty-nine": 1001.2715125408934, - "cc:pop:wp-total": 3156.360529128593, - "cc:pop:wp-total-UN": 3660.7645681349345, - "cc:id": "68", - "cc:Name": "Condama MCHP", - "cc:site": [-11.2034, 8.6319], - "user:parentName": "Nimiyama", - "user:code": "OU_233336", - "user:orgUnitId": "yTMrs5kClCv", - "user:level": "4", - "user:parentId": "qgQ49DH9a0v" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.013267, 8.371897], - [-13.012931, 8.369855], - [-13.010529, 8.370534], - [-13.009928, 8.368964], - [-13.010914, 8.367817], - [-13.00837, 8.367537], - [-13.007916, 8.367083], - [-13.007082, 8.364584], - [-13.005416, 8.363749], - [-13.004583, 8.359583], - [-13.005054, 8.358172], - [-13.006216, 8.357733], - [-13.006616, 8.357742], - [-13.006723, 8.357346], - [-13.006925, 8.356181], - [-13.007263, 8.355929], - [-13.00682, 8.355654], - [-13.004918, 8.35519], - [-13.004646, 8.354867], - [-13.004562, 8.354776], - [-13.004188, 8.355278], - [-13.00399, 8.355316], - [-13.002346, 8.353887], - [-13.001564, 8.35293], - [-13.001931, 8.35127], - [-13.002092, 8.350908], - [-13.002089, 8.350599], - [-13.001468, 8.350909], - [-13.001467, 8.350907], - [-13.0015, 8.350778], - [-13.000416, 8.350417], - [-12.99625, 8.350416], - [-12.998749, 8.34625], - [-13.000086, 8.346695], - [-12.999694, 8.346194], - [-12.999826, 8.344414], - [-12.999858, 8.343127], - [-12.997916, 8.344583], - [-12.994583, 8.34375], - [-12.992917, 8.346249], - [-12.990902, 8.346921], - [-12.990927, 8.34562], - [-12.989883, 8.34334], - [-12.989, 8.341842], - [-12.988943, 8.341725], - [-12.992161, 8.33988], - [-12.993236, 8.339285], - [-12.99315, 8.33768], - [-12.992793, 8.33786], - [-12.991248, 8.338573], - [-12.990733, 8.338825], - [-12.990462, 8.338962], - [-12.989833, 8.339249], - [-12.989583, 8.338749], - [-12.989583, 8.336249], - [-12.992916, 8.334583], - [-12.992082, 8.332084], - [-12.991667, 8.332221], - [-12.991666, 8.33222], - [-12.991657, 8.33213], - [-12.9914, 8.332101], - [-12.989849, 8.332457], - [-12.988243, 8.331653], - [-12.986299, 8.331496], - [-12.98581, 8.330691], - [-12.985433, 8.32885], - [-12.984853, 8.328536], - [-12.984521, 8.327866], - [-12.982947, 8.327813], - [-12.982672, 8.326447], - [-12.980845, 8.323788], - [-12.980294, 8.323437], - [-12.979824, 8.323534], - [-12.977518, 8.326093], - [-12.976983, 8.325776], - [-12.976902, 8.325708], - [-12.976913, 8.325687], - [-12.97666, 8.325367], - [-12.976082, 8.325349], - [-12.975319, 8.324951], - [-12.974011, 8.325057], - [-12.973828, 8.326054], - [-12.972978, 8.32806], - [-12.973105, 8.328425], - [-12.97285, 8.329133], - [-12.970417, 8.327917], - [-12.970211, 8.328122], - [-12.968921, 8.328584], - [-12.96625, 8.327917], - [-12.965773, 8.330063], - [-12.96568, 8.33007], - [-12.96561, 8.330199], - [-12.965624, 8.330545], - [-12.965657, 8.330581], - [-12.964582, 8.335416], - [-12.957083, 8.33375], - [-12.956249, 8.338749], - [-12.95125, 8.342916], - [-12.949583, 8.342084], - [-12.948582, 8.343583], - [-12.946781, 8.342244], - [-12.944877, 8.339828], - [-12.944583, 8.340416], - [-12.944583, 8.347083], - [-12.945417, 8.347084], - [-12.94625, 8.350416], - [-12.947916, 8.35125], - [-12.947917, 8.353749], - [-12.94375, 8.35625], - [-12.94375, 8.357084], - [-12.944583, 8.358749], - [-12.94625, 8.360416], - [-12.951249, 8.360417], - [-12.953549, 8.361183], - [-12.950167, 8.362754], - [-12.949104, 8.363053], - [-12.94658, 8.363263], - [-12.94625, 8.363284], - [-12.94625, 8.367083], - [-12.947916, 8.367916], - [-12.950417, 8.36625], - [-12.955416, 8.367084], - [-12.955416, 8.367917], - [-12.952917, 8.37125], - [-12.952917, 8.372819], - [-12.9565, 8.371399], - [-12.958163, 8.370737], - [-12.958617, 8.370358], - [-12.959419, 8.370504], - [-12.958803, 8.37463], - [-12.958805, 8.374631], - [-12.981787, 8.370821], - [-13.005684, 8.378017], - [-13.013267, 8.371897] - ] - ], - "type": "Polygon" - }, - "id": 70, - "properties": { - "cc:admin:id": ["112"], - "cc:oBld:total": 441, - "cc:pop:fifteen-to-twenty-four": 2568.513988430648, - "cc:pop:grid3-total": 4171.801195751456, - "cc:pop:kontur-total": 10833.25057994768, - "cc:pop:men": 5208.980849576035, - "cc:pop:sixty-plus": 855.1425205500439, - "cc:pop:total": 10947.161228744586, - "cc:pop:under-five": 1171.5030730915191, - "cc:pop:women": 5738.180379168557, - "cc:pop:women-fiften-to-forty-nine": 3070.633608943411, - "cc:pop:wp-total": 8033.676397076714, - "cc:pop:wp-total-UN": 9301.847134181528, - "cc:id": "70", - "cc:Name": "Crossing MCHP", - "cc:site": [-12.9709, 8.3578], - "user:parentName": "Rural Western Area", - "user:code": "OU_278374", - "user:orgUnitId": "U2QkKSeyL5r", - "user:level": "4", - "user:parentId": "qtr8GGlm4gg" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.789399, 8.151099], - [-11.789299, 8.1437], - [-11.7866, 8.1409], - [-11.7843, 8.1378], - [-11.7805, 8.1299], - [-11.7794, 8.1224], - [-11.7784, 8.1191], - [-11.7765, 8.1155], - [-11.775099, 8.112399], - [-11.772599, 8.107499], - [-11.7722, 8.1037], - [-11.772799, 8.1009], - [-11.776299, 8.0937], - [-11.778599, 8.0894], - [-11.779299, 8.085899], - [-11.7792, 8.0823], - [-11.7785, 8.0789], - [-11.7763, 8.0744], - [-11.775399, 8.0711], - [-11.7547, 8.071099], - [-11.7496, 8.071], - [-11.746599, 8.070499], - [-11.740699, 8.068199], - [-11.736859, 8.067543], - [-11.736599, 8.067499], - [-11.7279, 8.0673], - [-11.7237, 8.0666], - [-11.7156, 8.063], - [-11.7103, 8.0605], - [-11.705299, 8.059199], - [-11.700099, 8.0572], - [-11.6968, 8.0572], - [-11.6924, 8.058999], - [-11.6857, 8.060799], - [-11.6813, 8.062799], - [-11.6779, 8.0637], - [-11.6785, 8.0662], - [-11.681199, 8.072799], - [-11.681899, 8.077899], - [-11.681999, 8.085699], - [-11.6819, 8.089499], - [-11.6812, 8.093099], - [-11.679, 8.097499], - [-11.677599, 8.1007], - [-11.674899, 8.1042], - [-11.6693, 8.110199], - [-11.667799, 8.1124], - [-11.663899, 8.1207], - [-11.6625, 8.126599], - [-11.661, 8.1301], - [-11.6607, 8.133399], - [-11.6622, 8.1365], - [-11.665699, 8.141199], - [-11.667999, 8.146899], - [-11.669299, 8.148699], - [-11.6726, 8.1511], - [-11.676, 8.1541], - [-11.6785, 8.1569], - [-11.681, 8.160699], - [-11.686699, 8.1577], - [-11.6897, 8.156899], - [-11.6948, 8.1566], - [-11.723499, 8.156799], - [-11.729799, 8.1567], - [-11.733699, 8.1561], - [-11.739199, 8.1539], - [-11.7431, 8.153099], - [-11.7484, 8.153], - [-11.7524, 8.1537], - [-11.7579, 8.1559], - [-11.7617, 8.156599], - [-11.765599, 8.1565], - [-11.7685, 8.155899], - [-11.7729, 8.153999], - [-11.7769, 8.153199], - [-11.783099, 8.1528], - [-11.786099, 8.1523], - [-11.789399, 8.151099] - ] - ], - "type": "Polygon" - }, - "id": 71, - "properties": { - "cc:admin:id": ["120"], - "cc:oBld:total": 0, - "cc:pop:fifteen-to-twenty-four": 1730.209235987774, - "cc:pop:grid3-total": 9421.717347929869, - "cc:pop:kontur-total": 9819.53183361367, - "cc:pop:men": 4605.958789728421, - "cc:pop:sixty-plus": 729.4825294209783, - "cc:pop:total": 9821.195920702903, - "cc:pop:under-five": 1606.543055617037, - "cc:pop:women": 5215.237130974484, - "cc:pop:women-fiften-to-forty-nine": 2455.651230046455, - "cc:pop:wp-total": 8503.82253699255, - "cc:pop:wp-total-UN": 9850.080216582059, - "cc:id": "71", - "cc:Name": "Damballa CHC", - "cc:site": [-11.7036, 8.1207], - "user:parentName": "Selenga", - "user:code": "OU_1095", - "user:orgUnitId": "wByqtWCCuDJ", - "user:level": "4", - "user:parentId": "KctpIIucige" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.753607, 7.456249], - [-11.753599, 7.455799], - [-11.7523, 7.4517], - [-11.7506, 7.4489], - [-11.749199, 7.445799], - [-11.7472, 7.4423], - [-11.7463, 7.4397], - [-11.746219, 7.438631], - [-11.741894, 7.43602], - [-11.740791, 7.435644], - [-11.739912, 7.435073], - [-11.739302, 7.433794], - [-11.738611, 7.433129], - [-11.737393, 7.43135], - [-11.736984, 7.430417], - [-11.727082, 7.430416], - [-11.717917, 7.425417], - [-11.717916, 7.423749], - [-11.709583, 7.422084], - [-11.707916, 7.423749], - [-11.701395, 7.42375], - [-11.70102, 7.425355], - [-11.699664, 7.431634], - [-11.698519, 7.436312], - [-11.697476, 7.43624], - [-11.696201, 7.436527], - [-11.692875, 7.437772], - [-11.689896, 7.438415], - [-11.68906, 7.438365], - [-11.686757, 7.437171], - [-11.685763, 7.435911], - [-11.684736, 7.435137], - [-11.683696, 7.435037], - [-11.682501, 7.43524], - [-11.680561, 7.436623], - [-11.67972, 7.436979], - [-11.678372, 7.437514], - [-11.675823, 7.438014], - [-11.673889, 7.43792], - [-11.670811, 7.436535], - [-11.66537, 7.435891], - [-11.665098, 7.435735], - [-11.662082, 7.438749], - [-11.65375, 7.442084], - [-11.653749, 7.444862], - [-11.648959, 7.444863], - [-11.645053, 7.451629], - [-11.648959, 7.458394], - [-11.652082, 7.458395], - [-11.652083, 7.461249], - [-11.657081, 7.466248], - [-11.65708, 7.46625], - [-11.655417, 7.46625], - [-11.657916, 7.478749], - [-11.647083, 7.480417], - [-11.647917, 7.485416], - [-11.64875, 7.487084], - [-11.649582, 7.489583], - [-11.650607, 7.491119], - [-11.649479, 7.491237], - [-11.64682, 7.491048], - [-11.645245, 7.491449], - [-11.644583, 7.495416], - [-11.654582, 7.498749], - [-11.654583, 7.501249], - [-11.657917, 7.505416], - [-11.659582, 7.505416], - [-11.66125, 7.504584], - [-11.662082, 7.504584], - [-11.670416, 7.506249], - [-11.66875, 7.49625], - [-11.672916, 7.496249], - [-11.675417, 7.49375], - [-11.68248, 7.49061], - [-11.682481, 7.490612], - [-11.682207, 7.491303], - [-11.681108, 7.494441], - [-11.686249, 7.499583], - [-11.688749, 7.494584], - [-11.68875, 7.492917], - [-11.690416, 7.492083], - [-11.690417, 7.490417], - [-11.702082, 7.494583], - [-11.703749, 7.493749], - [-11.70375, 7.487084], - [-11.712916, 7.487083], - [-11.717082, 7.48375], - [-11.719128, 7.484261], - [-11.719089, 7.484919], - [-11.719582, 7.490279], - [-11.719583, 7.484584], - [-11.722916, 7.482917], - [-11.730416, 7.485416], - [-11.73375, 7.489583], - [-11.736249, 7.487083], - [-11.73625, 7.485417], - [-11.747916, 7.485416], - [-11.749582, 7.484584], - [-11.749766, 7.484583], - [-11.7502, 7.480499], - [-11.750299, 7.4728], - [-11.750799, 7.4691], - [-11.752999, 7.4638], - [-11.753699, 7.4612], - [-11.753607, 7.456249] - ] - ], - "type": "Polygon" - }, - "id": 72, - "properties": { - "cc:admin:id": ["66"], - "cc:oBld:total": 22, - "cc:pop:fifteen-to-twenty-four": 1138.2857423549956, - "cc:pop:grid3-total": 4740.551959199017, - "cc:pop:kontur-total": 6097.550979241288, - "cc:pop:men": 3123.8835681111673, - "cc:pop:sixty-plus": 481.18931847200827, - "cc:pop:total": 6421.265283290389, - "cc:pop:under-five": 1074.9153077702756, - "cc:pop:women": 3297.381715179222, - "cc:pop:women-fiften-to-forty-nine": 1585.3165568650822, - "cc:pop:wp-total": 7320.770497076838, - "cc:pop:wp-total-UN": 8492.188157678595, - "cc:id": "72", - "cc:Name": "Dandabu CHP", - "cc:site": [-11.685, 7.4774], - "user:parentName": "Kpanga Kabonde", - "user:code": "OU_260405", - "user:orgUnitId": "RpRJUDOPtt7", - "user:level": "4", - "user:parentId": "QwMiPiME3bA" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.852306, 7.97317], - [-10.852019, 7.97204], - [-10.849844, 7.972539], - [-10.849082, 7.97228], - [-10.842936, 7.972838], - [-10.842727, 7.971483], - [-10.840229, 7.971814], - [-10.838707, 7.972298], - [-10.840432, 7.97462], - [-10.840431, 7.974622], - [-10.835211, 7.975768], - [-10.834882, 7.974256], - [-10.832917, 7.974583], - [-10.83125, 7.974584], - [-10.82875, 7.975416], - [-10.827083, 7.976249], - [-10.825416, 7.97375], - [-10.820925, 7.974391], - [-10.821018, 7.973184], - [-10.820739, 7.971813], - [-10.819265, 7.971182], - [-10.818836, 7.97169], - [-10.818785, 7.972264], - [-10.817917, 7.972917], - [-10.817916, 7.973115], - [-10.817067, 7.973559], - [-10.815949, 7.974233], - [-10.815706, 7.974241], - [-10.816737, 7.975131], - [-10.817183, 7.975233], - [-10.817817, 7.975662], - [-10.816249, 7.979584], - [-10.813749, 7.980417], - [-10.805417, 7.980416], - [-10.802083, 7.976249], - [-10.802783, 7.967847], - [-10.795913, 7.967847], - [-10.792006, 7.974612], - [-10.788669, 7.974613], - [-10.788899, 7.976], - [-10.788499, 7.980799], - [-10.786099, 7.9866], - [-10.785499, 7.9907], - [-10.7853, 7.998399], - [-10.7849, 8.002599], - [-10.7835, 8.0073], - [-10.7837, 8.0095], - [-10.787, 8.0164], - [-10.789699, 8.019599], - [-10.7927, 8.0218], - [-10.803499, 8.025799], - [-10.806699, 8.024], - [-10.812399, 8.0189], - [-10.815199, 8.0167], - [-10.819799, 8.0143], - [-10.822599, 8.0121], - [-10.827299, 8.0077], - [-10.829999, 8.0056], - [-10.835, 8.002899], - [-10.838899, 7.9997], - [-10.842099, 7.9965], - [-10.8442, 7.993699], - [-10.848199, 7.9853], - [-10.8495, 7.979399], - [-10.8504, 7.977099], - [-10.852306, 7.97317] - ] - ], - "type": "Polygon" - }, - "id": 73, - "properties": { - "cc:admin:id": ["41"], - "cc:oBld:total": 2086, - "cc:pop:fifteen-to-twenty-four": 5549.580009659175, - "cc:pop:grid3-total": 21664.103998791776, - "cc:pop:kontur-total": 28164.940493223843, - "cc:pop:men": 14145.290314761713, - "cc:pop:sixty-plus": 1680.2002284443113, - "cc:pop:total": 28812.02542001752, - "cc:pop:under-five": 4488.538548615901, - "cc:pop:women": 14666.735105255813, - "cc:pop:women-fiften-to-forty-nine": 7348.561687948269, - "cc:pop:wp-total": 21093.75801774261, - "cc:pop:wp-total-UN": 24466.467007195904, - "cc:id": "73", - "cc:Name": "Daru CHC", - "cc:site": [-10.8443, 7.9901], - "user:parentName": "Jawi", - "user:code": "OU_204865", - "user:orgUnitId": "m5BX6CvJ6Ex", - "user:level": "4", - "user:parentId": "KSdZwrU7Hh6" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.302599, 7.7478], - [-11.300599, 7.7453], - [-11.298499, 7.744], - [-11.2927, 7.7426], - [-11.288099, 7.740599], - [-11.2812, 7.7391], - [-11.2746, 7.7379], - [-11.2726, 7.743099], - [-11.270599, 7.7476], - [-11.270099, 7.7513], - [-11.2698, 7.758999], - [-11.2693, 7.761399], - [-11.267799, 7.7642], - [-11.2646, 7.767499], - [-11.262299, 7.769], - [-11.2576, 7.771499], - [-11.2521, 7.775699], - [-11.248661, 7.777548], - [-11.248712, 7.777637], - [-11.244807, 7.784402], - [-11.236994, 7.784403], - [-11.234003, 7.789583], - [-11.227917, 7.789584], - [-11.219583, 7.794584], - [-11.219583, 7.802083], - [-11.220673, 7.803174], - [-11.217212, 7.80917], - [-11.220365, 7.814633], - [-11.21875, 7.81625], - [-11.221359, 7.819512], - [-11.220354, 7.821101], - [-11.220048, 7.821973], - [-11.220138, 7.822647], - [-11.219828, 7.823905], - [-11.21981, 7.825485], - [-11.21949, 7.826281], - [-11.219244, 7.827703], - [-11.218981, 7.828005], - [-11.218981, 7.828009], - [-11.218969, 7.828013], - [-11.218683, 7.828178], - [-11.218478, 7.828282], - [-11.217669, 7.828558], - [-11.217596, 7.829205], - [-11.217558, 7.829417], - [-11.217395, 7.830871], - [-11.217304, 7.831407], - [-11.217211, 7.831511], - [-11.21614, 7.831684], - [-11.215808, 7.831244], - [-11.215497, 7.831805], - [-11.215378, 7.832218], - [-11.21571, 7.833193], - [-11.215997, 7.833664], - [-11.21638, 7.833863], - [-11.216453, 7.833887], - [-11.216277, 7.834455], - [-11.216179, 7.834732], - [-11.21619, 7.834757], - [-11.214322, 7.837994], - [-11.214305, 7.837995], - [-11.214403, 7.838197], - [-11.214857, 7.838218], - [-11.215107, 7.83848], - [-11.21491, 7.839146], - [-11.214843, 7.839352], - [-11.214733, 7.839801], - [-11.214503, 7.840654], - [-11.214501, 7.840655], - [-11.214383, 7.840587], - [-11.213778, 7.841192], - [-11.214406, 7.841535], - [-11.214409, 7.841837], - [-11.215392, 7.841857], - [-11.216007, 7.842353], - [-11.216025, 7.842741], - [-11.216028, 7.84313], - [-11.216004, 7.843361], - [-11.215957, 7.844112], - [-11.215834, 7.844097], - [-11.214807, 7.84377], - [-11.214436, 7.843723], - [-11.214425, 7.843959], - [-11.214398, 7.84444], - [-11.214401, 7.844808], - [-11.214406, 7.845208], - [-11.214411, 7.845325], - [-11.214408, 7.845548], - [-11.214387, 7.845861], - [-11.214365, 7.846084], - [-11.214334, 7.846511], - [-11.213426, 7.84651], - [-11.21304, 7.846321], - [-11.21256, 7.845737], - [-11.212258, 7.846064], - [-11.21222, 7.846355], - [-11.212539, 7.846699], - [-11.213113, 7.847279], - [-11.213209, 7.847627], - [-11.213862, 7.848417], - [-11.213664, 7.848892], - [-11.213427, 7.849113], - [-11.213055, 7.849644], - [-11.21304, 7.849923], - [-11.213108, 7.850545], - [-11.21292, 7.850598], - [-11.211017, 7.851045], - [-11.211241, 7.851399], - [-11.211241, 7.8514], - [-11.209106, 7.852702], - [-11.207588, 7.853676], - [-11.206893, 7.854063], - [-11.206719, 7.854181], - [-11.206599, 7.854102], - [-11.205698, 7.855044], - [-11.20482, 7.857386], - [-11.205163, 7.857527], - [-11.205599, 7.857347], - [-11.20607, 7.857628], - [-11.205653, 7.858495], - [-11.205187, 7.85938], - [-11.204647, 7.860367], - [-11.204938, 7.862067], - [-11.205063, 7.86305], - [-11.204624, 7.864062], - [-11.204567, 7.865791], - [-11.203995, 7.865749], - [-11.203598, 7.866734], - [-11.203224, 7.867287], - [-11.202557, 7.867759], - [-11.202882, 7.86868], - [-11.202444, 7.868806], - [-11.20221, 7.868853], - [-11.202242, 7.869039], - [-11.202072, 7.869066], - [-11.202497, 7.869965], - [-11.20261, 7.870269], - [-11.202268, 7.87046], - [-11.201458, 7.870831], - [-11.201456, 7.870894], - [-11.201421, 7.871238], - [-11.200885, 7.871757], - [-11.201604, 7.87219], - [-11.201811, 7.872315], - [-11.201812, 7.872316], - [-11.201492, 7.872691], - [-11.200836, 7.872897], - [-11.200369, 7.873292], - [-11.199595, 7.874099], - [-11.20003, 7.874442], - [-11.200491, 7.874744], - [-11.199816, 7.876102], - [-11.199277, 7.876589], - [-11.199537, 7.87687], - [-11.200399, 7.877613], - [-11.200675, 7.877628], - [-11.200811, 7.877323], - [-11.201262, 7.877616], - [-11.201496, 7.877765], - [-11.203801, 7.878998], - [-11.203873, 7.87896], - [-11.20307, 7.880352], - [-11.206976, 7.887117], - [-11.210515, 7.887118], - [-11.210417, 7.887916], - [-11.211249, 7.887917], - [-11.21125, 7.896249], - [-11.214583, 7.900416], - [-11.22519, 7.901174], - [-11.2259, 7.899699], - [-11.2271, 7.896499], - [-11.229499, 7.8913], - [-11.230499, 7.8871], - [-11.231399, 7.8847], - [-11.233799, 7.881299], - [-11.2345, 7.877999], - [-11.238699, 7.8694], - [-11.2418, 7.865799], - [-11.244399, 7.8639], - [-11.248199, 7.862], - [-11.251, 7.860099], - [-11.2528, 7.858399], - [-11.255199, 7.8549], - [-11.2566, 7.848999], - [-11.258099, 7.8461], - [-11.261699, 7.8415], - [-11.2626, 7.839599], - [-11.2631, 7.837399], - [-11.263599, 7.8321], - [-11.264099, 7.8296], - [-11.2663, 7.824299], - [-11.2667, 7.820699], - [-11.2669, 7.814399], - [-11.2673, 7.811799], - [-11.268399, 7.8093], - [-11.271, 7.806099], - [-11.281299, 7.7959], - [-11.2839, 7.792799], - [-11.2878, 7.784899], - [-11.2886, 7.782499], - [-11.2897, 7.777399], - [-11.291899, 7.773], - [-11.2932, 7.769799], - [-11.295599, 7.7656], - [-11.2969, 7.762399], - [-11.2992, 7.758099], - [-11.3005, 7.754899], - [-11.302599, 7.7478] - ] - ], - "type": "Polygon" - }, - "id": 75, - "properties": { - "cc:admin:id": ["105"], - "cc:oBld:total": 2418, - "cc:pop:fifteen-to-twenty-four": 3783.7946339169966, - "cc:pop:grid3-total": 9299.792316831963, - "cc:pop:kontur-total": 17088.43398285533, - "cc:pop:men": 9800.501857516543, - "cc:pop:sixty-plus": 1164.0139789238171, - "cc:pop:total": 19639.793676739184, - "cc:pop:under-five": 3091.4609745535067, - "cc:pop:women": 9839.291819222643, - "cc:pop:women-fiften-to-forty-nine": 4932.565631996686, - "cc:pop:wp-total": 13891.54419423176, - "cc:pop:wp-total-UN": 16101.021787267282, - "cc:id": "75", - "cc:Name": "Degbuama MCHP", - "cc:site": [-11.2063, 7.8631], - "user:parentName": "Nongowa", - "user:code": "OU_222722", - "user:orgUnitId": "C1tAqIpKB9k", - "user:level": "4", - "user:parentId": "KIUCimTXf8Q" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.300416, 7.952084], - [-11.297083, 7.951249], - [-11.29625, 7.949583], - [-11.296249, 7.948369], - [-11.2872, 7.9482], - [-11.2836, 7.9475], - [-11.2791, 7.9453], - [-11.275999, 7.943999], - [-11.272299, 7.942099], - [-11.269899, 7.941299], - [-11.2647, 7.940099], - [-11.2577, 7.935999], - [-11.254099, 7.930199], - [-11.253299, 7.927799], - [-11.252299, 7.923499], - [-11.25, 7.9182], - [-11.249499, 7.915599], - [-11.2487, 7.9094], - [-11.248099, 7.907299], - [-11.2441, 7.8994], - [-11.24, 7.8944], - [-11.2386, 7.8921], - [-11.2372, 7.8871], - [-11.2362, 7.8847], - [-11.2338, 7.8813], - [-11.231399, 7.8847], - [-11.230499, 7.8871], - [-11.229499, 7.8913], - [-11.2271, 7.896499], - [-11.225899, 7.8997], - [-11.2234, 7.904899], - [-11.221999, 7.9104], - [-11.220599, 7.9131], - [-11.216899, 7.9178], - [-11.214799, 7.922], - [-11.2124, 7.926299], - [-11.2103, 7.931399], - [-11.2099, 7.933699], - [-11.210899, 7.937499], - [-11.210899, 7.940799], - [-11.2077, 7.948099], - [-11.2051, 7.953299], - [-11.203999, 7.9584], - [-11.2015, 7.964399], - [-11.2001, 7.970299], - [-11.197899, 7.9756], - [-11.1973, 7.9803], - [-11.1973, 7.985199], - [-11.197499, 7.989099], - [-11.198299, 7.992699], - [-11.200599, 7.997999], - [-11.2019, 8.0031], - [-11.204599, 8.008199], - [-11.2059, 8.0114], - [-11.207799, 8.014999], - [-11.2088, 8.0195], - [-11.212199, 8.026899], - [-11.2129, 8.0303], - [-11.2129, 8.033099], - [-11.212807, 8.033749], - [-11.219112, 8.03375], - [-11.221337, 8.037601], - [-11.222314, 8.037601], - [-11.222083, 8.034583], - [-11.225417, 8.030417], - [-11.227082, 8.029584], - [-11.237916, 8.030416], - [-11.23875, 8.027083], - [-11.242916, 8.02375], - [-11.244673, 8.023896], - [-11.242179, 8.019576], - [-11.24218, 8.019575], - [-11.251249, 8.01875], - [-11.258749, 8.01875], - [-11.26049, 8.017358], - [-11.260491, 8.01736], - [-11.260477, 8.01738], - [-11.260614, 8.018043], - [-11.262347, 8.017596], - [-11.262371, 8.017304], - [-11.264305, 8.017303], - [-11.267348, 8.012032], - [-11.267916, 8.00125], - [-11.264583, 8.001249], - [-11.264583, 7.992637], - [-11.264883, 7.99251], - [-11.264996, 7.99211], - [-11.266152, 7.992063], - [-11.267481, 7.992789], - [-11.267782, 7.993294], - [-11.268326, 7.993884], - [-11.268298, 7.993606], - [-11.267782, 7.99324], - [-11.268439, 7.99211], - [-11.267685, 7.990986], - [-11.26828, 7.990774], - [-11.268345, 7.990593], - [-11.27125, 7.992916], - [-11.275972, 7.990892], - [-11.275523, 7.990583], - [-11.274411, 7.989448], - [-11.275118, 7.989325], - [-11.275661, 7.988912], - [-11.276313, 7.988812], - [-11.277399, 7.987999], - [-11.277917, 7.985417], - [-11.281752, 7.985964], - [-11.282151, 7.985855], - [-11.283906, 7.985778], - [-11.284582, 7.983749], - [-11.284582, 7.98125], - [-11.282916, 7.979584], - [-11.277084, 7.977084], - [-11.277084, 7.977083], - [-11.285416, 7.972084], - [-11.286249, 7.972083], - [-11.28625, 7.96875], - [-11.287916, 7.967083], - [-11.287917, 7.962917], - [-11.292916, 7.960417], - [-11.29375, 7.959584], - [-11.297082, 7.959583], - [-11.300416, 7.952084] - ] - ], - "type": "Polygon" - }, - "id": 76, - "properties": { - "cc:admin:id": ["50"], - "cc:oBld:total": 675, - "cc:pop:fifteen-to-twenty-four": 1135.2545469467448, - "cc:pop:grid3-total": 3696.4589343674465, - "cc:pop:kontur-total": 5679.347960227097, - "cc:pop:men": 3284.468099489009, - "cc:pop:sixty-plus": 361.08484898224816, - "cc:pop:total": 5991.35758371597, - "cc:pop:under-five": 910.1500895164639, - "cc:pop:women": 2706.889484226961, - "cc:pop:women-fiften-to-forty-nine": 1369.3590043770243, - "cc:pop:wp-total": 6230.917244251237, - "cc:pop:wp-total-UN": 7221.092586746997, - "cc:id": "76", - "cc:Name": "Deima MCHP", - "cc:site": [-11.2595, 7.9779], - "user:parentName": "Kandu Lepiema", - "user:code": "OU_222729", - "user:orgUnitId": "oIgBLlEo6eH", - "user:level": "4", - "user:parentId": "K1r3uF6eZ8n" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - [-12.957599, 7.570999], - [-12.957099, 7.5699], - [-12.955399, 7.569599], - [-12.952599, 7.5685], - [-12.948499, 7.569], - [-12.9396, 7.569], - [-12.937899, 7.5685], - [-12.9357, 7.568499], - [-12.935099, 7.5679], - [-12.9301, 7.567899], - [-12.927599, 7.5665], - [-12.9232, 7.566299], - [-12.920699, 7.5654], - [-12.9182, 7.565399], - [-12.917599, 7.5649], - [-12.913999, 7.564599], - [-12.9118, 7.564], - [-12.910099, 7.563199], - [-12.9068, 7.562599], - [-12.905399, 7.5618], - [-12.9024, 7.561499], - [-12.900699, 7.5607], - [-12.8996, 7.560699], - [-12.897099, 7.559599], - [-12.894599, 7.558999], - [-12.891, 7.558799], - [-12.888499, 7.5574], - [-12.8868, 7.557399], - [-12.883799, 7.5563], - [-12.8815, 7.556299], - [-12.881199, 7.5557], - [-12.8774, 7.5551], - [-12.876499, 7.554599], - [-12.8729, 7.554], - [-12.872399, 7.553499], - [-12.8699, 7.5529], - [-12.868199, 7.552899], - [-12.8643, 7.5521], - [-12.862599, 7.5513], - [-12.8607, 7.551299], - [-12.859299, 7.5504], - [-12.8574, 7.550399], - [-12.855399, 7.5496], - [-12.8535, 7.549599], - [-12.851499, 7.548799], - [-12.8488, 7.548499], - [-12.847099, 7.547599], - [-12.8443, 7.5468], - [-12.8412, 7.546499], - [-12.840099, 7.5457], - [-12.8379, 7.5451], - [-12.8351, 7.544899], - [-12.832599, 7.5437], - [-12.8313, 7.543699], - [-12.8288, 7.5429], - [-12.828499, 7.5424], - [-12.826799, 7.542399], - [-12.825099, 7.5413], - [-12.8207, 7.540999], - [-12.819299, 7.5399], - [-12.8171, 7.539599], - [-12.816299, 7.539], - [-12.814, 7.5388], - [-12.813799, 7.5382], - [-12.8104, 7.538199], - [-12.807899, 7.537099], - [-12.8046, 7.536499], - [-12.802599, 7.5354], - [-12.8007, 7.535399], - [-12.799599, 7.534899], - [-12.7957, 7.5338], - [-12.7932, 7.533499], - [-12.791799, 7.5326], - [-12.7879, 7.5318], - [-12.786199, 7.531], - [-12.785099, 7.530999], - [-12.783499, 7.5301], - [-12.7818, 7.530099], - [-12.779299, 7.5288], - [-12.7776, 7.528799], - [-12.777099, 7.5282], - [-12.7732, 7.5276], - [-12.772399, 7.5271], - [-12.7701, 7.526799], - [-12.768199, 7.5257], - [-12.766, 7.525399], - [-12.765099, 7.5246], - [-12.764661, 7.5246], - [-12.765416, 7.532916], - [-12.762083, 7.540417], - [-12.762082, 7.543748], - [-12.759583, 7.542917], - [-12.758749, 7.548749], - [-12.752917, 7.55125], - [-12.752916, 7.554584], - [-12.749583, 7.560416], - [-12.749582, 7.56125], - [-12.748107, 7.562725], - [-12.747808, 7.562663], - [-12.745417, 7.56625], - [-12.747082, 7.569583], - [-12.744583, 7.572917], - [-12.744582, 7.577083], - [-12.74125, 7.577917], - [-12.73625, 7.582917], - [-12.738749, 7.58875], - [-12.737083, 7.59125], - [-12.737082, 7.597084], - [-12.73375, 7.602916], - [-12.742082, 7.607083], - [-12.742917, 7.608749], - [-12.744533, 7.609153], - [-12.744458, 7.610137], - [-12.744973, 7.61014], - [-12.745097, 7.61117], - [-12.744958, 7.613231], - [-12.746173, 7.612739], - [-12.746426, 7.613246], - [-12.745895, 7.613598], - [-12.746119, 7.614114], - [-12.745416, 7.614584], - [-12.740342, 7.614921], - [-12.740044, 7.614622], - [-12.739528, 7.614619], - [-12.739014, 7.614231], - [-12.73886, 7.61502], - [-12.732917, 7.615416], - [-12.73125, 7.615417], - [-12.729582, 7.622083], - [-12.727083, 7.625416], - [-12.725029, 7.625417], - [-12.7249, 7.6257], - [-12.7249, 7.627399], - [-12.7254, 7.628499], - [-12.7288, 7.628499], - [-12.729899, 7.628199], - [-12.7313, 7.6271], - [-12.733999, 7.626799], - [-12.736, 7.6257], - [-12.739, 7.625699], - [-12.740699, 7.625399], - [-12.7421, 7.6246], - [-12.745999, 7.6246], - [-12.747399, 7.6243], - [-12.7493, 7.6251], - [-12.7518, 7.6254], - [-12.760699, 7.6254], - [-12.7626, 7.6251], - [-12.7643, 7.6254], - [-12.7674, 7.626799], - [-12.768999, 7.6268], - [-12.7712, 7.627599], - [-12.774599, 7.6276], - [-12.7746, 7.6279], - [-12.783499, 7.6279], - [-12.7835, 7.628199], - [-12.787599, 7.628499], - [-12.7882, 7.629], - [-12.793699, 7.629899], - [-12.797399, 7.6299], - [-12.7982, 7.629299], - [-12.801799, 7.628199], - [-12.804299, 7.6265], - [-12.805399, 7.626499], - [-12.807599, 7.624], - [-12.809299, 7.622599], - [-12.809299, 7.6207], - [-12.808799, 7.6196], - [-12.8079, 7.6196], - [-12.806, 7.623499], - [-12.8049, 7.624299], - [-12.801799, 7.623999], - [-12.800099, 7.622099], - [-12.7999, 7.620399], - [-12.799899, 7.615399], - [-12.798799, 7.614], - [-12.795999, 7.613999], - [-12.7943, 7.612099], - [-12.794, 7.6088], - [-12.794599, 7.607899], - [-12.794899, 7.6054], - [-12.7921, 7.6051], - [-12.789899, 7.606299], - [-12.7879, 7.606499], - [-12.7879, 7.605699], - [-12.7896, 7.605399], - [-12.7918, 7.6043], - [-12.794599, 7.6043], - [-12.7965, 7.605399], - [-12.797899, 7.605099], - [-12.798799, 7.6043], - [-12.799599, 7.605099], - [-12.799598, 7.6051], - [-12.798199, 7.605999], - [-12.7965, 7.6063], - [-12.796499, 7.608799], - [-12.796, 7.6096], - [-12.7963, 7.611499], - [-12.7985, 7.6115], - [-12.801499, 7.612099], - [-12.8018, 7.612599], - [-12.803499, 7.6129], - [-12.8038, 7.618199], - [-12.805999, 7.617899], - [-12.8085, 7.6165], - [-12.813799, 7.617399], - [-12.814, 7.617899], - [-12.815699, 7.617099], - [-12.8154, 7.6135], - [-12.816299, 7.611499], - [-12.8163, 7.6104], - [-12.8154, 7.609899], - [-12.8151, 7.6085], - [-12.8168, 7.6071], - [-12.818498, 7.6071], - [-12.818498, 7.607101], - [-12.818454, 7.607151], - [-12.8168, 7.609], - [-12.817599, 7.6101], - [-12.8176, 7.612099], - [-12.8171, 7.613799], - [-12.818199, 7.6154], - [-12.818199, 7.617599], - [-12.817599, 7.6185], - [-12.8157, 7.619], - [-12.8154, 7.621499], - [-12.817099, 7.622099], - [-12.8176, 7.622899], - [-12.819, 7.6232], - [-12.8199, 7.6243], - [-12.822599, 7.624599], - [-12.8246, 7.623199], - [-12.827599, 7.622099], - [-12.829, 7.6204], - [-12.832399, 7.620699], - [-12.8326, 7.620099], - [-12.836499, 7.619899], - [-12.8376, 7.619], - [-12.839599, 7.618999], - [-12.840999, 7.6185], - [-12.8418, 7.6168], - [-12.843999, 7.6151], - [-12.8454, 7.6163], - [-12.8476, 7.617399], - [-12.851299, 7.617399], - [-12.8515, 7.616799], - [-12.853199, 7.6165], - [-12.856499, 7.616799], - [-12.8571, 7.618499], - [-12.8582, 7.618999], - [-12.8601, 7.618999], - [-12.861799, 7.618199], - [-12.8621, 7.6168], - [-12.863999, 7.6165], - [-12.867399, 7.6171], - [-12.8693, 7.618499], - [-12.871499, 7.618499], - [-12.8735, 7.6171], - [-12.876499, 7.616799], - [-12.8779, 7.615999], - [-12.880099, 7.615399], - [-12.8812, 7.614], - [-12.882599, 7.6132], - [-12.885399, 7.613199], - [-12.888199, 7.611499], - [-12.889, 7.6101], - [-12.890999, 7.610399], - [-12.892599, 7.6093], - [-12.894599, 7.609299], - [-12.895699, 7.6088], - [-12.8965, 7.6068], - [-12.897599, 7.606499], - [-12.8987, 7.6051], - [-12.902099, 7.605399], - [-12.9024, 7.605999], - [-12.905699, 7.606], - [-12.908499, 7.604899], - [-12.9088, 7.603699], - [-12.910099, 7.602599], - [-12.910699, 7.6015], - [-12.912899, 7.6015], - [-12.914599, 7.600999], - [-12.916299, 7.598699], - [-12.9165, 7.597599], - [-12.919299, 7.5943], - [-12.921799, 7.592099], - [-12.921499, 7.591], - [-12.918799, 7.590399], - [-12.916499, 7.5876], - [-12.915099, 7.586799], - [-12.914599, 7.5857], - [-12.912899, 7.5849], - [-12.909899, 7.585099], - [-12.908499, 7.5821], - [-12.9029, 7.581799], - [-12.901, 7.5807], - [-12.898999, 7.578999], - [-12.8974, 7.576199], - [-12.897099, 7.574], - [-12.896199, 7.5724], - [-12.8926, 7.571], - [-12.890399, 7.570699], - [-12.8893, 7.5701], - [-12.889299, 7.5693], - [-12.887899, 7.5682], - [-12.8871, 7.5682], - [-12.8862, 7.5693], - [-12.8862, 7.570399], - [-12.887399, 7.5707], - [-12.887399, 7.5715], - [-12.8849, 7.5721], - [-12.883499, 7.573199], - [-12.8807, 7.5732], - [-12.879299, 7.572099], - [-12.877899, 7.5688], - [-12.876, 7.5688], - [-12.8746, 7.569299], - [-12.873799, 7.570699], - [-12.8724, 7.571799], - [-12.870699, 7.571799], - [-12.8696, 7.570699], - [-12.8693, 7.5665], - [-12.870099, 7.5665], - [-12.8701, 7.569299], - [-12.8707, 7.570999], - [-12.872399, 7.570999], - [-12.8726, 7.569299], - [-12.874, 7.5674], - [-12.876499, 7.5671], - [-12.878199, 7.5676], - [-12.879, 7.569599], - [-12.880099, 7.5701], - [-12.881199, 7.571499], - [-12.8812, 7.5724], - [-12.883499, 7.572399], - [-12.884835, 7.571231], - [-12.885099, 7.570999], - [-12.8851, 7.5696], - [-12.885999, 7.5676], - [-12.8876, 7.5668], - [-12.889599, 7.567899], - [-12.8904, 7.569299], - [-12.893499, 7.5693], - [-12.896499, 7.5704], - [-12.898499, 7.5721], - [-12.9004, 7.575699], - [-12.9024, 7.5762], - [-12.905099, 7.5762], - [-12.907599, 7.577599], - [-12.909899, 7.578499], - [-12.9146, 7.5793], - [-12.921, 7.579299], - [-12.922599, 7.578799], - [-12.9229, 7.577899], - [-12.9251, 7.5762], - [-12.9265, 7.5757], - [-12.9282, 7.576], - [-12.937899, 7.576], - [-12.940099, 7.5762], - [-12.9429, 7.578199], - [-12.9446, 7.5782], - [-12.9454, 7.579299], - [-12.947899, 7.579599], - [-12.949, 7.578199], - [-12.950999, 7.577899], - [-12.9515, 7.5774], - [-12.953499, 7.577399], - [-12.955099, 7.575699], - [-12.9554, 7.5746], - [-12.957399, 7.574299], - [-12.957599, 7.570999] - ] - ], - [ - [ - [-12.805999, 7.6207], - [-12.8038, 7.621], - [-12.804, 7.622399], - [-12.805399, 7.622399], - [-12.805999, 7.6207] - ] - ], - [ - [ - [-12.916499, 7.6179], - [-12.9149, 7.6176], - [-12.9132, 7.6185], - [-12.9129, 7.618999], - [-12.915699, 7.618999], - [-12.916499, 7.6179] - ] - ], - [ - [ - [-12.929599, 7.586], - [-12.928799, 7.5849], - [-12.927399, 7.584], - [-12.9257, 7.584], - [-12.9235, 7.5849], - [-12.922599, 7.586], - [-12.9213, 7.5863], - [-12.9207, 7.587599], - [-12.9218, 7.5876], - [-12.9229, 7.589899], - [-12.924299, 7.590699], - [-12.9249, 7.592099], - [-12.925999, 7.591799], - [-12.927599, 7.590399], - [-12.929599, 7.586] - ] - ], - [ - [ - [-12.958699, 7.6293], - [-12.9576, 7.629], - [-12.957399, 7.6301], - [-12.955699, 7.631499], - [-12.9532, 7.6315], - [-12.9535, 7.632899], - [-12.955099, 7.632899], - [-12.957099, 7.632099], - [-12.958699, 7.6293] - ] - ], - [ - [ - [-12.992599, 7.5854], - [-12.990699, 7.5835], - [-12.9899, 7.5835], - [-12.989599, 7.584599], - [-12.9871, 7.5832], - [-12.987099, 7.582599], - [-12.9829, 7.5782], - [-12.9807, 7.5776], - [-12.980099, 7.576799], - [-12.978799, 7.5762], - [-12.9771, 7.5762], - [-12.976499, 7.576799], - [-12.974, 7.5768], - [-12.9732, 7.5762], - [-12.975099, 7.574], - [-12.976799, 7.573499], - [-12.978199, 7.5724], - [-12.979599, 7.573199], - [-12.9801, 7.5721], - [-12.982399, 7.572399], - [-12.9824, 7.5693], - [-12.983199, 7.5676], - [-12.9815, 7.5671], - [-12.9804, 7.5688], - [-12.980399, 7.5699], - [-12.978799, 7.571], - [-12.9751, 7.5724], - [-12.974299, 7.5735], - [-12.972399, 7.5743], - [-12.9707, 7.575699], - [-12.9688, 7.577899], - [-12.9671, 7.5785], - [-12.9663, 7.5796], - [-12.967399, 7.5815], - [-12.9676, 7.586499], - [-12.969, 7.587599], - [-12.970699, 7.5876], - [-12.9729, 7.5885], - [-12.9757, 7.588499], - [-12.9807, 7.5876], - [-12.9815, 7.5879], - [-12.9843, 7.590099], - [-12.9854, 7.5901], - [-12.986499, 7.5913], - [-12.9868, 7.592399], - [-12.987599, 7.592599], - [-12.989, 7.592599], - [-12.989899, 7.590999], - [-12.9899, 7.5899], - [-12.991499, 7.588199], - [-12.992599, 7.5854] - ] - ], - [ - [ - [-12.9815, 7.592099], - [-12.981499, 7.591], - [-12.9804, 7.5904], - [-12.9796, 7.5913], - [-12.9796, 7.593199], - [-12.9815, 7.592099] - ] - ], - [ - [ - [-13.004899, 7.6335], - [-13.0032, 7.6329], - [-13.003199, 7.6324], - [-13.0007, 7.6324], - [-13.000399, 7.6329], - [-12.9918, 7.6329], - [-12.9913, 7.633999], - [-12.992099, 7.6346], - [-12.992099, 7.635999], - [-12.991, 7.6365], - [-12.9907, 7.638499], - [-12.9915, 7.639599], - [-12.994299, 7.640999], - [-12.9938, 7.6415], - [-12.9943, 7.642899], - [-12.9965, 7.641499], - [-12.999599, 7.6379], - [-13.002099, 7.637599], - [-13.003199, 7.6365], - [-13.003999, 7.636499], - [-13.004899, 7.6335] - ] - ], - [ - [ - [-12.996499, 7.5882], - [-12.9943, 7.5874], - [-12.9943, 7.589299], - [-12.9949, 7.5896], - [-12.9951, 7.591299], - [-12.996299, 7.590999], - [-12.996499, 7.5882] - ] - ], - [ - [ - [-13.019599, 7.601299], - [-13.0185, 7.598699], - [-13.018499, 7.5971], - [-13.017099, 7.5929], - [-13.014599, 7.5915], - [-13.0126, 7.591499], - [-13.010999, 7.5907], - [-13.0071, 7.5901], - [-13.005999, 7.591], - [-13.004899, 7.592599], - [-13.0024, 7.5932], - [-13.0021, 7.593799], - [-13.0032, 7.594599], - [-13.005999, 7.593499], - [-13.0063, 7.5926], - [-13.008199, 7.592399], - [-13.0088, 7.5913], - [-13.0101, 7.592099], - [-13.0118, 7.5921], - [-13.012099, 7.5929], - [-13.011299, 7.593999], - [-13.008999, 7.5935], - [-13.0074, 7.5938], - [-13.006799, 7.596499], - [-13.0057, 7.5979], - [-13.005699, 7.598999], - [-13.0049, 7.5993], - [-13.0049, 7.602099], - [-13.0065, 7.603199], - [-13.010999, 7.6032], - [-13.011, 7.603499], - [-13.013499, 7.602899], - [-13.014, 7.6015], - [-13.015399, 7.600699], - [-13.014, 7.5982], - [-13.014, 7.596], - [-13.016499, 7.5965], - [-13.0168, 7.597899], - [-13.017599, 7.5985], - [-13.0171, 7.600699], - [-13.0185, 7.601499], - [-13.019599, 7.601299] - ] - ], - [ - [ - [-13.066299, 7.6329], - [-13.0651, 7.631799], - [-13.064599, 7.6288], - [-13.0629, 7.6271], - [-13.0587, 7.626], - [-13.057899, 7.6251], - [-13.056, 7.625099], - [-13.0529, 7.624], - [-13.0507, 7.6215], - [-13.050999, 7.6196], - [-13.048499, 7.6179], - [-13.0463, 7.6179], - [-13.045399, 7.618799], - [-13.0421, 7.6188], - [-13.0404, 7.6193], - [-13.0393, 7.622099], - [-13.0407, 7.6218], - [-13.042099, 7.6224], - [-13.043499, 7.625399], - [-13.044599, 7.627099], - [-13.046299, 7.628499], - [-13.0468, 7.630099], - [-13.0474, 7.6301], - [-13.047899, 7.6321], - [-13.047399, 7.639299], - [-13.046, 7.6407], - [-13.045999, 7.6415], - [-13.0449, 7.6424], - [-13.044899, 7.643499], - [-13.0438, 7.6438], - [-13.043499, 7.645099], - [-13.0426, 7.6454], - [-13.042599, 7.6468], - [-13.0407, 7.6482], - [-13.040399, 7.6493], - [-13.038499, 7.6501], - [-13.036, 7.6518], - [-13.035699, 7.6524], - [-13.033499, 7.6532], - [-13.0307, 7.655099], - [-13.0268, 7.6554], - [-13.025099, 7.656199], - [-13.022899, 7.6562], - [-13.0218, 7.6568], - [-13.0221, 7.658199], - [-13.023199, 7.6588], - [-13.0254, 7.661299], - [-13.027099, 7.660999], - [-13.0282, 7.6596], - [-13.031799, 7.659899], - [-13.033499, 7.6582], - [-13.034899, 7.657899], - [-13.038499, 7.6557], - [-13.040999, 7.6535], - [-13.0426, 7.653499], - [-13.043799, 7.652399], - [-13.0451, 7.649299], - [-13.046, 7.648499], - [-13.048999, 7.646499], - [-13.049899, 7.6449], - [-13.051499, 7.643999], - [-13.052599, 7.6424], - [-13.053999, 7.642399], - [-13.0549, 7.6413], - [-13.0568, 7.6404], - [-13.059599, 7.6407], - [-13.0621, 7.642399], - [-13.064299, 7.642399], - [-13.065099, 7.641499], - [-13.0651, 7.6388], - [-13.066299, 7.635999], - [-13.066299, 7.6329] - ] - ], - [ - [ - [-13.071499, 7.6713], - [-13.068499, 7.6696], - [-13.0657, 7.6696], - [-13.063499, 7.6707], - [-13.061499, 7.672399], - [-13.057899, 7.6729], - [-13.0571, 7.6735], - [-13.0568, 7.675699], - [-13.0587, 7.676799], - [-13.062899, 7.6765], - [-13.064, 7.676], - [-13.066799, 7.675699], - [-13.068499, 7.674899], - [-13.069, 7.673999], - [-13.070999, 7.672899], - [-13.071499, 7.6713] - ] - ] - ], - "type": "MultiPolygon" - }, - "id": 77, - "properties": { - "cc:admin:id": ["18"], - "cc:oBld:total": 171, - "cc:pop:fifteen-to-twenty-four": 2028.5293504371175, - "cc:pop:grid3-total": 13094.715108907705, - "cc:pop:kontur-total": 10190.547796405639, - "cc:pop:men": 5389.157078909178, - "cc:pop:sixty-plus": 828.4985107963832, - "cc:pop:total": 11236.571186764619, - "cc:pop:under-five": 1851.893247707523, - "cc:pop:women": 5847.414107855448, - "cc:pop:women-fiften-to-forty-nine": 2860.0315057383673, - "cc:pop:wp-total": 9157.224727745703, - "cc:pop:wp-total-UN": 10621.334671580398, - "cc:id": "77", - "cc:Name": "Delken MCHP", - "cc:site": [-12.7954, 7.57179], - "user:parentName": "Sittia", - "user:code": "OU_197399", - "user:orgUnitId": "sSgOnY1Xqd9", - "user:level": "4", - "user:parentId": "g8DdBm7EmUt" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.256521, 8.217999], - [-11.24375, 8.218749], - [-11.240417, 8.215417], - [-11.241249, 8.20375], - [-11.242023, 8.203104], - [-11.238495, 8.196991], - [-11.2424, 8.190226], - [-11.238755, 8.183912], - [-11.237916, 8.184584], - [-11.232916, 8.185416], - [-11.222083, 8.184584], - [-11.21875, 8.180417], - [-11.217917, 8.172916], - [-11.224582, 8.16625], - [-11.219905, 8.161573], - [-11.217405, 8.161902], - [-11.216637, 8.16232], - [-11.216041, 8.163075], - [-11.215566, 8.163285], - [-11.214372, 8.163184], - [-11.213115, 8.162617], - [-11.212721, 8.161699], - [-11.212471, 8.161464], - [-11.212082, 8.161508], - [-11.211397, 8.162015], - [-11.210417, 8.161957], - [-11.210416, 8.155417], - [-11.20875, 8.152916], - [-11.208749, 8.149584], - [-11.204583, 8.147916], - [-11.202917, 8.146249], - [-11.202082, 8.137917], - [-11.200417, 8.136249], - [-11.200416, 8.13125], - [-11.194583, 8.125416], - [-11.195417, 8.121249], - [-11.20125, 8.116249], - [-11.201249, 8.114584], - [-11.197667, 8.112433], - [-11.197687, 8.112385], - [-11.197082, 8.112083], - [-11.196249, 8.10375], - [-11.19375, 8.102083], - [-11.192916, 8.09875], - [-11.192082, 8.098749], - [-11.187082, 8.094584], - [-11.180417, 8.097083], - [-11.175417, 8.095416], - [-11.178749, 8.089584], - [-11.172917, 8.085416], - [-11.172917, 8.084583], - [-11.173749, 8.07875], - [-11.172083, 8.07625], - [-11.178749, 8.072916], - [-11.177917, 8.06625], - [-11.17125, 8.065416], - [-11.171249, 8.063749], - [-11.169582, 8.049584], - [-11.16125, 8.049584], - [-11.157083, 8.052917], - [-11.156761, 8.057087], - [-11.149654, 8.057087], - [-11.147645, 8.053609], - [-11.145399, 8.055699], - [-11.142399, 8.0571], - [-11.138399, 8.0593], - [-11.134899, 8.06], - [-11.1299, 8.060099], - [-11.125, 8.0597], - [-11.1295, 8.067], - [-11.1308, 8.0707], - [-11.1315, 8.0765], - [-11.1342, 8.0837], - [-11.134799, 8.087699], - [-11.135, 8.0908], - [-11.135199, 8.120299], - [-11.1354, 8.1266], - [-11.1359, 8.1296], - [-11.138199, 8.134899], - [-11.140099, 8.141699], - [-11.1425, 8.1474], - [-11.1431, 8.1516], - [-11.143299, 8.168499], - [-11.1431, 8.172399], - [-11.1425, 8.175199], - [-11.140499, 8.1797], - [-11.1391, 8.185499], - [-11.136899, 8.1908], - [-11.135399, 8.1967], - [-11.133699, 8.1999], - [-11.127299, 8.2071], - [-11.1255, 8.210299], - [-11.125271, 8.211249], - [-11.127083, 8.21125], - [-11.130417, 8.214583], - [-11.132082, 8.215417], - [-11.137083, 8.222083], - [-11.142082, 8.222084], - [-11.146249, 8.224583], - [-11.150417, 8.220417], - [-11.164582, 8.220417], - [-11.164583, 8.224584], - [-11.167916, 8.224583], - [-11.17125, 8.22125], - [-11.177082, 8.220417], - [-11.177083, 8.22125], - [-11.18125, 8.227916], - [-11.188749, 8.231249], - [-11.193749, 8.225417], - [-11.194582, 8.224584], - [-11.195416, 8.224584], - [-11.197083, 8.232916], - [-11.200416, 8.234583], - [-11.200417, 8.236249], - [-11.210416, 8.23625], - [-11.21125, 8.239583], - [-11.216249, 8.240417], - [-11.219399, 8.244352], - [-11.226776, 8.244353], - [-11.230682, 8.251118], - [-11.23124, 8.251119], - [-11.23125, 8.25125], - [-11.235417, 8.254583], - [-11.238552, 8.254584], - [-11.23848, 8.255088], - [-11.239202, 8.26125], - [-11.245416, 8.261249], - [-11.247082, 8.25875], - [-11.248856, 8.258306], - [-11.2463, 8.2542], - [-11.2454, 8.2517], - [-11.244499, 8.247499], - [-11.2431, 8.242299], - [-11.246499, 8.2342], - [-11.2513, 8.228099], - [-11.2532, 8.224199], - [-11.255699, 8.2199], - [-11.256521, 8.217999] - ] - ], - "type": "Polygon" - }, - "id": 79, - "properties": { - "cc:admin:id": ["22"], - "cc:oBld:total": 1197, - "cc:pop:fifteen-to-twenty-four": 1772.0902071235703, - "cc:pop:grid3-total": 8803.413757783055, - "cc:pop:kontur-total": 9659.899635733214, - "cc:pop:men": 4475.614443880887, - "cc:pop:sixty-plus": 580.5831590237121, - "cc:pop:total": 9056.196631370276, - "cc:pop:under-five": 1493.4981634099852, - "cc:pop:women": 4580.582187489384, - "cc:pop:women-fiften-to-forty-nine": 2235.23927758448, - "cc:pop:wp-total": 8612.837569635334, - "cc:pop:wp-total-UN": 9992.819341205499, - "cc:id": "79", - "cc:Name": "Dodo CHC", - "cc:site": [-11.1733, 8.1519], - "user:parentName": "Dodo", - "user:code": "OU_222683", - "user:orgUnitId": "jKZ0U8Og5aV", - "user:level": "4", - "user:parentId": "QlCIp2S9NHs" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.494599, 8.336699], - [-11.486999, 8.329299], - [-11.4838, 8.3251], - [-11.4817, 8.3208], - [-11.480599, 8.317099], - [-11.479499, 8.301799], - [-11.478099, 8.295799], - [-11.4755, 8.2871], - [-11.473499, 8.283399], - [-11.4655, 8.2739], - [-11.4604, 8.2666], - [-11.457399, 8.263499], - [-11.454099, 8.260799], - [-11.446599, 8.256699], - [-11.4348, 8.251], - [-11.43375, 8.25023], - [-11.433749, 8.252917], - [-11.430416, 8.257083], - [-11.419583, 8.257916], - [-11.412082, 8.24625], - [-11.40875, 8.24625], - [-11.39875, 8.252916], - [-11.390537, 8.247168], - [-11.388475, 8.25074], - [-11.39238, 8.257506], - [-11.392126, 8.257948], - [-11.391797, 8.257822], - [-11.387328, 8.25869], - [-11.386077, 8.258061], - [-11.3844, 8.256796], - [-11.383221, 8.256726], - [-11.383215, 8.256723], - [-11.381249, 8.264583], - [-11.371618, 8.265323], - [-11.371699, 8.265519], - [-11.371976, 8.265902], - [-11.371976, 8.265903], - [-11.36967, 8.265904], - [-11.365763, 8.272669], - [-11.357951, 8.27267], - [-11.357647, 8.273195], - [-11.354583, 8.272917], - [-11.347917, 8.282084], - [-11.347917, 8.292916], - [-11.351249, 8.29625], - [-11.35125, 8.303749], - [-11.352214, 8.305197], - [-11.352083, 8.3053], - [-11.352083, 8.305417], - [-11.35625, 8.308749], - [-11.367916, 8.307916], - [-11.371249, 8.303749], - [-11.371123, 8.302095], - [-11.372689, 8.304805], - [-11.372082, 8.312083], - [-11.370109, 8.312084], - [-11.367519, 8.316567], - [-11.361144, 8.316568], - [-11.359583, 8.32125], - [-11.360342, 8.325041], - [-11.360656, 8.324879], - [-11.361258, 8.324147], - [-11.362271, 8.323921], - [-11.363264, 8.323889], - [-11.363814, 8.324129], - [-11.364753, 8.32544], - [-11.365148, 8.325639], - [-11.365616, 8.325202], - [-11.366527, 8.324574], - [-11.367232, 8.32442], - [-11.368092, 8.323849], - [-11.368722, 8.323128], - [-11.370092, 8.323578], - [-11.370571, 8.323947], - [-11.37028, 8.324349], - [-11.369977, 8.325021], - [-11.369602, 8.326655], - [-11.369627, 8.327618], - [-11.370392, 8.329575], - [-11.370662, 8.330875], - [-11.370929, 8.332376], - [-11.370862, 8.333359], - [-11.370908, 8.333774], - [-11.371166, 8.334583], - [-11.376249, 8.334583], - [-11.377556, 8.333277], - [-11.377757, 8.333346], - [-11.377807, 8.334038], - [-11.378698, 8.334609], - [-11.379907, 8.336357], - [-11.380589, 8.338101], - [-11.38114, 8.338939], - [-11.381732, 8.341291], - [-11.382118, 8.342393], - [-11.382416, 8.342632], - [-11.382346, 8.342841], - [-11.382486, 8.343271], - [-11.383725, 8.345416], - [-11.387916, 8.345417], - [-11.391029, 8.347907], - [-11.391109, 8.347405], - [-11.39085, 8.345599], - [-11.390851, 8.345598], - [-11.39375, 8.347916], - [-11.397916, 8.347917], - [-11.397917, 8.352083], - [-11.40125, 8.356249], - [-11.408749, 8.357083], - [-11.414582, 8.357083], - [-11.418749, 8.353749], - [-11.419453, 8.346011], - [-11.419455, 8.34601], - [-11.423273, 8.347637], - [-11.426134, 8.348222], - [-11.422917, 8.352084], - [-11.422917, 8.358088], - [-11.4231, 8.3581], - [-11.425999, 8.358699], - [-11.4304, 8.3607], - [-11.436399, 8.362299], - [-11.4417, 8.3646], - [-11.4452, 8.3653], - [-11.448799, 8.365399], - [-11.452299, 8.3647], - [-11.4605, 8.360499], - [-11.4647, 8.356999], - [-11.475599, 8.3461], - [-11.478799, 8.3437], - [-11.482, 8.342199], - [-11.4865, 8.339699], - [-11.49, 8.338199], - [-11.494599, 8.336699] - ] - ], - "type": "Polygon" - }, - "id": 81, - "properties": { - "cc:admin:id": ["142"], - "cc:oBld:total": 790, - "cc:pop:fifteen-to-twenty-four": 1360.8181992604505, - "cc:pop:grid3-total": 4986.409797714498, - "cc:pop:kontur-total": 7239.864709235082, - "cc:pop:men": 3649.4534772537813, - "cc:pop:sixty-plus": 438.7980986648851, - "cc:pop:total": 7187.320330697916, - "cc:pop:under-five": 1128.1332678745455, - "cc:pop:women": 3537.8668534441354, - "cc:pop:women-fiften-to-forty-nine": 1787.6171876644696, - "cc:pop:wp-total": 5651.597128001407, - "cc:pop:wp-total-UN": 6548.003302524286, - "cc:id": "81", - "cc:Name": "Faala CHP", - "cc:site": [-11.3818, 8.2862], - "user:parentName": "Wandor", - "user:code": "OU_222680", - "user:orgUnitId": "hKD6hpZUh9v", - "user:level": "4", - "user:parentId": "X7dWcGerQIm" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.132399, 9.5773], - [-12.126199, 9.574699], - [-12.118699, 9.571999], - [-12.1014, 9.5638], - [-12.0973, 9.5627], - [-12.092799, 9.5623], - [-12.086699, 9.5626], - [-12.082299, 9.5635], - [-12.076399, 9.5655], - [-12.0721, 9.566199], - [-12.0664, 9.566], - [-12.0629, 9.564999], - [-12.0599, 9.5629], - [-12.0577, 9.5601], - [-12.0567, 9.555999], - [-12.057599, 9.5516], - [-12.060499, 9.5458], - [-12.061199, 9.5428], - [-12.060099, 9.5393], - [-12.056999, 9.537], - [-12.0502, 9.5351], - [-12.0473, 9.533299], - [-12.044, 9.5288], - [-12.0403, 9.5221], - [-12.036199, 9.5162], - [-12.0262, 9.523599], - [-12.0186, 9.527599], - [-12.0135, 9.528699], - [-12.009499, 9.528699], - [-12.005699, 9.527599], - [-11.9998, 9.524099], - [-11.997099, 9.520499], - [-11.9942, 9.5144], - [-11.991899, 9.510999], - [-11.988, 9.507], - [-11.9846, 9.5045], - [-11.9807, 9.5031], - [-11.976399, 9.5027], - [-11.9707, 9.5027], - [-11.9605, 9.5044], - [-11.954, 9.508699], - [-11.9489, 9.514299], - [-11.9459, 9.516299], - [-11.943199, 9.5172], - [-11.9335, 9.5189], - [-11.9249, 9.523299], - [-11.922199, 9.5243], - [-11.9193, 9.524899], - [-11.914899, 9.5253], - [-11.898099, 9.525399], - [-11.8937, 9.5249], - [-11.8908, 9.5241], - [-11.887199, 9.521899], - [-11.882399, 9.516799], - [-11.8776, 9.5082], - [-11.8735, 9.4996], - [-11.872099, 9.495099], - [-11.871499, 9.492199], - [-11.8711, 9.4864], - [-11.8711, 9.476], - [-11.8714, 9.470099], - [-11.872199, 9.4594], - [-11.870899, 9.454399], - [-11.867399, 9.447999], - [-11.8535, 9.4331], - [-11.8474, 9.4252], - [-11.844599, 9.422999], - [-11.8371, 9.418799], - [-11.8351, 9.4161], - [-11.833799, 9.412999], - [-11.831699, 9.404199], - [-11.829999, 9.400499], - [-11.8244, 9.3926], - [-11.822199, 9.386999], - [-11.8212, 9.378399], - [-11.8212, 9.3651], - [-11.8217, 9.359299], - [-11.823999, 9.3498], - [-11.824499, 9.3457], - [-11.824799, 9.338599], - [-11.8245, 9.33], - [-11.823699, 9.324399], - [-11.8215, 9.3163], - [-11.820999, 9.313499], - [-11.820599, 9.307699], - [-11.8204, 9.2899], - [-11.8201, 9.284], - [-11.819399, 9.279799], - [-11.817, 9.2701], - [-11.8166, 9.266], - [-11.816299, 9.258499], - [-11.8161, 9.2342], - [-11.815699, 9.226699], - [-11.815199, 9.223899], - [-11.8116, 9.2103], - [-11.8091, 9.2032], - [-11.802499, 9.201799], - [-11.7913, 9.2004], - [-11.7853, 9.1985], - [-11.7823, 9.1979], - [-11.776199, 9.197399], - [-11.7683, 9.1973], - [-11.7605, 9.197599], - [-11.756099, 9.1983], - [-11.7478, 9.201199], - [-11.7436, 9.2039], - [-11.7392, 9.210599], - [-11.737699, 9.2143], - [-11.7371, 9.2203], - [-11.737299, 9.234299], - [-11.7369, 9.240399], - [-11.7336, 9.255499], - [-11.7318, 9.261299], - [-11.7279, 9.269899], - [-11.725599, 9.2734], - [-11.722899, 9.2762], - [-11.7181, 9.279799], - [-11.716, 9.2807], - [-11.7142, 9.2828], - [-11.713599, 9.2852], - [-11.7132, 9.290399], - [-11.7126, 9.292499], - [-11.7093, 9.299699], - [-11.7069, 9.303899], - [-11.705599, 9.307], - [-11.7036, 9.310699], - [-11.7027, 9.313999], - [-11.7026, 9.319499], - [-11.703199, 9.324399], - [-11.705799, 9.330999], - [-11.7071, 9.3361], - [-11.7116, 9.344999], - [-11.713899, 9.347199], - [-11.717599, 9.349099], - [-11.7206, 9.3518], - [-11.7232, 9.3561], - [-11.7278, 9.3619], - [-11.7289, 9.3643], - [-11.729299, 9.366999], - [-11.728699, 9.3704], - [-11.7264, 9.375599], - [-11.725, 9.381499], - [-11.7233, 9.385099], - [-11.7226, 9.387299], - [-11.722299, 9.3915], - [-11.7221, 9.401199], - [-11.721199, 9.4047], - [-11.7194, 9.408199], - [-11.718099, 9.4114], - [-11.7157, 9.415699], - [-11.714299, 9.4188], - [-11.711799, 9.4224], - [-11.7069, 9.427299], - [-11.704797, 9.428749], - [-11.712083, 9.42875], - [-11.714746, 9.434076], - [-11.714711, 9.434585], - [-11.713058, 9.437496], - [-11.71317, 9.437441], - [-11.713711, 9.43699], - [-11.714965, 9.434711], - [-11.715436, 9.433371], - [-11.719582, 9.427637], - [-11.719583, 9.431249], - [-11.720417, 9.432083], - [-11.723749, 9.438749], - [-11.727082, 9.440417], - [-11.727083, 9.445353], - [-11.72863, 9.448036], - [-11.724725, 9.454801], - [-11.725054, 9.455372], - [-11.722917, 9.457083], - [-11.722083, 9.468749], - [-11.72375, 9.471249], - [-11.724583, 9.471249], - [-11.732255, 9.469158], - [-11.732256, 9.469158], - [-11.732277, 9.469243], - [-11.732268, 9.469328], - [-11.741249, 9.467083], - [-11.74125, 9.46625], - [-11.750142, 9.466842], - [-11.750707, 9.467823], - [-11.746802, 9.474589], - [-11.750707, 9.481353], - [-11.750094, 9.482417], - [-11.754582, 9.482917], - [-11.75125, 9.494582], - [-11.763749, 9.494583], - [-11.764583, 9.49625], - [-11.764583, 9.502082], - [-11.767083, 9.507082], - [-11.774582, 9.504583], - [-11.777323, 9.506576], - [-11.777323, 9.506578], - [-11.77694, 9.506578], - [-11.773035, 9.513343], - [-11.768301, 9.513344], - [-11.77125, 9.518749], - [-11.777916, 9.522082], - [-11.777917, 9.5233], - [-11.784199, 9.5233], - [-11.789299, 9.5227], - [-11.794199, 9.5207], - [-11.7966, 9.5201], - [-11.799199, 9.5207], - [-11.802499, 9.523099], - [-11.804999, 9.5263], - [-11.805499, 9.5298], - [-11.8037, 9.533399], - [-11.8008, 9.536599], - [-11.797899, 9.5391], - [-11.795099, 9.541], - [-11.792999, 9.5417], - [-11.7879, 9.542899], - [-11.7826, 9.544999], - [-11.7784, 9.545899], - [-11.776199, 9.5467], - [-11.7735, 9.548499], - [-11.7713, 9.550399], - [-11.7686, 9.553199], - [-11.7669, 9.555499], - [-11.765799, 9.5576], - [-11.764399, 9.5639], - [-11.762399, 9.5684], - [-11.761899, 9.5709], - [-11.761, 9.577999], - [-11.7588, 9.583299], - [-11.7582, 9.585799], - [-11.7582, 9.590199], - [-11.7589, 9.5937], - [-11.7613, 9.5995], - [-11.762, 9.6046], - [-11.762199, 9.616199], - [-11.762999, 9.619799], - [-11.765299, 9.625099], - [-11.7665, 9.6302], - [-11.769, 9.6354], - [-11.770699, 9.642099], - [-11.7728, 9.6465], - [-11.774699, 9.653299], - [-11.776699, 9.657799], - [-11.777399, 9.660499], - [-11.7776, 9.6635], - [-11.777799, 9.675599], - [-11.778599, 9.679399], - [-11.7809, 9.6838], - [-11.7841, 9.6905], - [-11.785, 9.6931], - [-11.785699, 9.698899], - [-11.7867, 9.7025], - [-11.788599, 9.706099], - [-11.79, 9.7092], - [-11.7923, 9.7136], - [-11.793, 9.7173], - [-11.793199, 9.724999], - [-11.793499, 9.728799], - [-11.794399, 9.731899], - [-11.7956, 9.7338], - [-11.798499, 9.737399], - [-11.799699, 9.739299], - [-11.8005, 9.7414], - [-11.8021, 9.7472], - [-11.806, 9.753399], - [-11.8124, 9.7572], - [-11.815199, 9.757899], - [-11.817899, 9.758099], - [-11.8215, 9.757699], - [-11.8248, 9.756299], - [-11.8276, 9.753999], - [-11.832199, 9.7495], - [-11.834999, 9.7475], - [-11.838199, 9.7461], - [-11.841799, 9.7441], - [-11.8455, 9.742399], - [-11.847699, 9.740599], - [-11.849099, 9.7381], - [-11.8504, 9.732199], - [-11.852499, 9.7278], - [-11.8541, 9.723899], - [-11.8573, 9.7185], - [-11.8591, 9.716999], - [-11.863799, 9.7142], - [-11.8684, 9.712099], - [-11.8713, 9.709899], - [-11.878799, 9.7029], - [-11.883099, 9.7001], - [-11.89, 9.700899], - [-11.908199, 9.7], - [-11.9128, 9.699399], - [-11.9204, 9.697399], - [-11.930799, 9.6963], - [-11.9352, 9.695499], - [-11.9379, 9.694499], - [-11.9452, 9.690299], - [-11.9627, 9.683999], - [-11.971299, 9.6791], - [-11.9776, 9.676499], - [-11.987299, 9.6694], - [-11.9912, 9.667399], - [-12.000899, 9.6638], - [-12.0075, 9.661799], - [-12.019699, 9.6567], - [-12.0297, 9.654299], - [-12.037399, 9.6507], - [-12.043299, 9.647], - [-12.0459, 9.645699], - [-12.0502, 9.644699], - [-12.0621, 9.643499], - [-12.0735, 9.640099], - [-12.0771, 9.638699], - [-12.082299, 9.636], - [-12.0859, 9.633499], - [-12.091299, 9.6285], - [-12.098599, 9.621], - [-12.101399, 9.6176], - [-12.1035, 9.613899], - [-12.106199, 9.6039], - [-12.1083, 9.600199], - [-12.112199, 9.5958], - [-12.1166, 9.591899], - [-12.1202, 9.589699], - [-12.127099, 9.586299], - [-12.1301, 9.582699], - [-12.132399, 9.5773] - ] - ], - "type": "Polygon" - }, - "id": 82, - "properties": { - "cc:admin:id": ["52"], - "cc:oBld:total": 1224, - "cc:pop:fifteen-to-twenty-four": 5427.863818847328, - "cc:pop:grid3-total": 27045.967595025606, - "cc:pop:kontur-total": 29159.741218759016, - "cc:pop:men": 13082.55296590112, - "cc:pop:sixty-plus": 1736.1648114340878, - "cc:pop:total": 29060.136775353752, - "cc:pop:under-five": 4483.248901626229, - "cc:pop:women": 15977.583809452593, - "cc:pop:women-fiften-to-forty-nine": 7829.708822201588, - "cc:pop:wp-total": 25082.625414444334, - "cc:pop:wp-total-UN": 29055.320478536163, - "cc:id": "82", - "cc:Name": "Fadugu CHC", - "cc:site": [-11.7651, 9.3901], - "user:parentName": "Kasonko", - "user:code": "OU_226224", - "user:orgUnitId": "K6oyIMh7Lee", - "user:level": "4", - "user:parentId": "vEvs2ckGNQj" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.518721, 7.160626], - [-11.515413, 7.154898], - [-11.507602, 7.154897], - [-11.504856, 7.150144], - [-11.501249, 7.153749], - [-11.493006, 7.153116], - [-11.491976, 7.154897], - [-11.484163, 7.154897], - [-11.480258, 7.148133], - [-11.479583, 7.148132], - [-11.479582, 7.144584], - [-11.477917, 7.14125], - [-11.477083, 7.140416], - [-11.477082, 7.139584], - [-11.468749, 7.139583], - [-11.46625, 7.132916], - [-11.46625, 7.127084], - [-11.468749, 7.122084], - [-11.465417, 7.118749], - [-11.465417, 7.114584], - [-11.466249, 7.112084], - [-11.46375, 7.107916], - [-11.462916, 7.102917], - [-11.455417, 7.100416], - [-11.452082, 7.097084], - [-11.44625, 7.097083], - [-11.442916, 7.094584], - [-11.437083, 7.09375], - [-11.437082, 7.092084], - [-11.432916, 7.08875], - [-11.42558, 7.088749], - [-11.425579, 7.088748], - [-11.425765, 7.088425], - [-11.42375, 7.084934], - [-11.423749, 7.085417], - [-11.420417, 7.089583], - [-11.417917, 7.090416], - [-11.417082, 7.090416], - [-11.408101, 7.082183], - [-11.408556, 7.08103], - [-11.409808, 7.07793], - [-11.409821, 7.077807], - [-11.400417, 7.077084], - [-11.39875, 7.076249], - [-11.398749, 7.062084], - [-11.397083, 7.062084], - [-11.396249, 7.062917], - [-11.387917, 7.063749], - [-11.382916, 7.055417], - [-11.38125, 7.055417], - [-11.380416, 7.057084], - [-11.37375, 7.060416], - [-11.372689, 7.060769], - [-11.369564, 7.057613], - [-11.371799, 7.065299], - [-11.367899, 7.0731], - [-11.3608, 7.075099], - [-11.3566, 7.0738], - [-11.351099, 7.075699], - [-11.3297, 7.0744], - [-11.3317, 7.0861], - [-11.333599, 7.100299], - [-11.331, 7.108799], - [-11.335499, 7.112], - [-11.3362, 7.118499], - [-11.347099, 7.1282], - [-11.350399, 7.135299], - [-11.3426, 7.142999], - [-11.334199, 7.1379], - [-11.3277, 7.1405], - [-11.3264, 7.144999], - [-11.332199, 7.1534], - [-11.326999, 7.1586], - [-11.3173, 7.1644], - [-11.318599, 7.171599], - [-11.3181, 7.1721], - [-11.3182, 7.172599], - [-11.3204, 7.1736], - [-11.3272, 7.1749], - [-11.335999, 7.179299], - [-11.3415, 7.1835], - [-11.3503, 7.1879], - [-11.3531, 7.1885], - [-11.360899, 7.188899], - [-11.364499, 7.189599], - [-11.369099, 7.191499], - [-11.375799, 7.193299], - [-11.3813, 7.1955], - [-11.3853, 7.196], - [-11.394499, 7.196199], - [-11.398299, 7.196899], - [-11.4028, 7.1991], - [-11.411199, 7.202999], - [-11.417199, 7.204399], - [-11.421599, 7.206599], - [-11.4249, 7.2079], - [-11.4335, 7.2124], - [-11.437399, 7.215599], - [-11.439099, 7.2179], - [-11.439999, 7.220499], - [-11.440399, 7.2231], - [-11.4402, 7.227699], - [-11.4392, 7.231699], - [-11.446899, 7.233299], - [-11.449499, 7.233699], - [-11.452099, 7.234499], - [-11.455699, 7.236399], - [-11.4588, 7.2377], - [-11.462499, 7.239699], - [-11.464599, 7.240399], - [-11.4691, 7.240799], - [-11.480199, 7.2407], - [-11.4831, 7.2411], - [-11.487, 7.2428], - [-11.490999, 7.246199], - [-11.4942, 7.249799], - [-11.4973, 7.247399], - [-11.4994, 7.245499], - [-11.5022, 7.242399], - [-11.507099, 7.232499], - [-11.506699, 7.229], - [-11.503099, 7.2222], - [-11.4996, 7.2193], - [-11.497199, 7.218599], - [-11.4921, 7.218199], - [-11.489799, 7.217099], - [-11.486, 7.2118], - [-11.4861, 7.2085], - [-11.4899, 7.205299], - [-11.495399, 7.2015], - [-11.5022, 7.198699], - [-11.5035, 7.196599], - [-11.5046, 7.192699], - [-11.506499, 7.1883], - [-11.5079, 7.182399], - [-11.5095, 7.179199], - [-11.5128, 7.174899], - [-11.5139, 7.172499], - [-11.515398, 7.166702], - [-11.5164, 7.164399], - [-11.518721, 7.160626] - ] - ], - "type": "Polygon" - }, - "id": 83, - "properties": { - "cc:admin:id": ["127"], - "cc:oBld:total": 555, - "cc:pop:fifteen-to-twenty-four": 3748.4122478190484, - "cc:pop:grid3-total": 11805.399663411295, - "cc:pop:kontur-total": 21475.35611430537, - "cc:pop:men": 9895.814458508437, - "cc:pop:sixty-plus": 1440.3535881261582, - "cc:pop:total": 21118.64061114556, - "cc:pop:under-five": 3558.9471437573598, - "cc:pop:women": 11222.82615263713, - "cc:pop:women-fiften-to-forty-nine": 5327.024412917764, - "cc:pop:wp-total": 22302.57905226125, - "cc:pop:wp-total-UN": 25854.43808805038, - "cc:id": "83", - "cc:Name": "Fairo CHC", - "cc:site": [-11.4045, 7.0881], - "user:parentName": "Soro-Gbeima", - "user:code": "OU_260415", - "user:orgUnitId": "Gm7YUjhVi9Q", - "user:level": "4", - "user:parentId": "d9iMR1MpuIO" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.445599, 9.999199], - [-11.4177, 9.998699], - [-11.4175, 9.9729], - [-11.4168, 9.9678], - [-11.414599, 9.962399], - [-11.413899, 9.959899], - [-11.413299, 9.954599], - [-11.412599, 9.952099], - [-11.4103, 9.9467], - [-11.409799, 9.943899], - [-11.409599, 9.937999], - [-11.409399, 9.910199], - [-11.4092, 9.9063], - [-11.4081, 9.9028], - [-11.4062, 9.8992], - [-11.404799, 9.895999], - [-11.402399, 9.891799], - [-11.400999, 9.888599], - [-11.3985, 9.8843], - [-11.3963, 9.8801], - [-11.392, 9.8747], - [-11.3895, 9.87], - [-11.3878, 9.8677], - [-11.383799, 9.863299], - [-11.3786, 9.8584], - [-11.375499, 9.856099], - [-11.370399, 9.853399], - [-11.3666, 9.8501], - [-11.3644, 9.8472], - [-11.3625, 9.8433], - [-11.3605, 9.8397], - [-11.359099, 9.836499], - [-11.3567, 9.8323], - [-11.355299, 9.829099], - [-11.3533, 9.8255], - [-11.352499, 9.823399], - [-11.3521, 9.820099], - [-11.3521, 9.814699], - [-11.352899, 9.8105], - [-11.354599, 9.8068], - [-11.355399, 9.8034], - [-11.355799, 9.7966], - [-11.356299, 9.7928], - [-11.3585, 9.786999], - [-11.3592, 9.782899], - [-11.3592, 9.7751], - [-11.359899, 9.7701], - [-11.3621, 9.764199], - [-11.3627, 9.760499], - [-11.3629, 9.754599], - [-11.363499, 9.751], - [-11.3654, 9.746499], - [-11.366, 9.743899], - [-11.366599, 9.7386], - [-11.367099, 9.7361], - [-11.369, 9.731599], - [-11.3697, 9.727899], - [-11.369999, 9.7221], - [-11.370399, 9.7183], - [-11.372499, 9.7129], - [-11.373199, 9.7104], - [-11.373699, 9.7051], - [-11.374199, 9.7026], - [-11.3764, 9.697299], - [-11.3778, 9.691399], - [-11.381399, 9.6839], - [-11.385799, 9.6781], - [-11.387399, 9.6749], - [-11.3886, 9.669899], - [-11.3908, 9.664599], - [-11.3922, 9.658699], - [-11.394599, 9.6535], - [-11.3959, 9.650199], - [-11.398699, 9.6442], - [-11.396799, 9.643099], - [-11.395199, 9.641399], - [-11.393199, 9.6386], - [-11.386899, 9.6388], - [-11.3606, 9.638999], - [-11.357599, 9.638599], - [-11.355199, 9.637599], - [-11.3517, 9.6331], - [-11.3493, 9.6304], - [-11.346099, 9.6286], - [-11.3433, 9.6294], - [-11.341599, 9.6347], - [-11.337999, 9.643], - [-11.3339, 9.650999], - [-11.3312, 9.654299], - [-11.3271, 9.658399], - [-11.3248, 9.660099], - [-11.3155, 9.664399], - [-11.315333, 9.664422], - [-11.318554, 9.670001], - [-11.316254, 9.673987], - [-11.319582, 9.67375], - [-11.323015, 9.676495], - [-11.323015, 9.676496], - [-11.321738, 9.677672], - [-11.318366, 9.679778], - [-11.315159, 9.682169], - [-11.31471, 9.682697], - [-11.314517, 9.683818], - [-11.314674, 9.683849], - [-11.315218, 9.684754], - [-11.315231, 9.684768], - [-11.307917, 9.692082], - [-11.306579, 9.690746], - [-11.30293, 9.697064], - [-11.295117, 9.697065], - [-11.291211, 9.70383], - [-11.283399, 9.703831], - [-11.279491, 9.710596], - [-11.271679, 9.710597], - [-11.267774, 9.717363], - [-11.271679, 9.724129], - [-11.267774, 9.730893], - [-11.261406, 9.730894], - [-11.261249, 9.732917], - [-11.257083, 9.736249], - [-11.256869, 9.73625], - [-11.256055, 9.737659], - [-11.258608, 9.742082], - [-11.25625, 9.742083], - [-11.25375, 9.744583], - [-11.258749, 9.750416], - [-11.25875, 9.752082], - [-11.264582, 9.757082], - [-11.26375, 9.761249], - [-11.262917, 9.762916], - [-11.257345, 9.762488], - [-11.256054, 9.764723], - [-11.248242, 9.764724], - [-11.244336, 9.771489], - [-11.246215, 9.774745], - [-11.244583, 9.774583], - [-11.239583, 9.787082], - [-11.22977, 9.789537], - [-11.229853, 9.78956], - [-11.231375, 9.789323], - [-11.232248, 9.790285], - [-11.232415, 9.790783], - [-11.233014, 9.791241], - [-11.234907, 9.791759], - [-11.236879, 9.792728], - [-11.237954, 9.79434], - [-11.238936, 9.794553], - [-11.240032, 9.794111], - [-11.24056, 9.79412], - [-11.242322, 9.794964], - [-11.240925, 9.804961], - [-11.241157, 9.808749], - [-11.242082, 9.80875], - [-11.244582, 9.809582], - [-11.245416, 9.81125], - [-11.24125, 9.821249], - [-11.24125, 9.822916], - [-11.242083, 9.82375], - [-11.247083, 9.827917], - [-11.247082, 9.829583], - [-11.24375, 9.832083], - [-11.24375, 9.833749], - [-11.244583, 9.834583], - [-11.252082, 9.837916], - [-11.252302, 9.838353], - [-11.25236, 9.838321], - [-11.252671, 9.837771], - [-11.252672, 9.83777], - [-11.257082, 9.842917], - [-11.257082, 9.844583], - [-11.24875, 9.847083], - [-11.248749, 9.84875], - [-11.245417, 9.85125], - [-11.245417, 9.852082], - [-11.250416, 9.85375], - [-11.249583, 9.859583], - [-11.250417, 9.865416], - [-11.252083, 9.865418], - [-11.252082, 9.870417], - [-11.245417, 9.880417], - [-11.247083, 9.884583], - [-11.249583, 9.887082], - [-11.252083, 9.887083], - [-11.254583, 9.894582], - [-11.262082, 9.897917], - [-11.257599, 9.904642], - [-11.257743, 9.904766], - [-11.257978, 9.905072], - [-11.258282, 9.905702], - [-11.258345, 9.907192], - [-11.258384, 9.907358], - [-11.258394, 9.907379], - [-11.25625, 9.907917], - [-11.250417, 9.91375], - [-11.254137, 9.924168], - [-11.255254, 9.924211], - [-11.254828, 9.927627], - [-11.256797, 9.927628], - [-11.260702, 9.934393], - [-11.257538, 9.939875], - [-11.259583, 9.939583], - [-11.262916, 9.958747], - [-11.262914, 9.958747], - [-11.259582, 9.955417], - [-11.257916, 9.955416], - [-11.253749, 9.950417], - [-11.252083, 9.950417], - [-11.249583, 9.957916], - [-11.247083, 9.959582], - [-11.24625, 9.959583], - [-11.244583, 9.968749], - [-11.242917, 9.970417], - [-11.243749, 9.973749], - [-11.242095, 9.98037], - [-11.242306, 9.980739], - [-11.242083, 9.981126], - [-11.242083, 9.983749], - [-11.243543, 9.985697], - [-11.243542, 9.985698], - [-11.243205, 9.985705], - [-11.245416, 9.987917], - [-11.245417, 9.999653], - [-11.3139, 9.9984], - [-11.3909, 9.9989], - [-11.445599, 9.999199] - ] - ], - "type": "Polygon" - }, - "id": 84, - "properties": { - "cc:admin:id": ["129"], - "cc:oBld:total": 1125, - "cc:pop:fifteen-to-twenty-four": 2707.905904396715, - "cc:pop:grid3-total": 16168.911533707818, - "cc:pop:kontur-total": 15044.495991081998, - "cc:pop:men": 7080.747184288029, - "cc:pop:sixty-plus": 935.4067418962317, - "cc:pop:total": 14772.917656528805, - "cc:pop:under-five": 2402.722402257614, - "cc:pop:women": 7692.170472240767, - "cc:pop:women-fiften-to-forty-nine": 3752.1671743162574, - "cc:pop:wp-total": 13391.825273376433, - "cc:pop:wp-total-UN": 15508.563411162158, - "cc:id": "84", - "cc:Name": "Falaba CHC", - "cc:site": [-11.3208, 9.8571], - "user:parentName": "Sulima (Koinadugu)", - "user:code": "OU_226230", - "user:orgUnitId": "kuqKh33SPgg", - "user:level": "4", - "user:parentId": "PaqugoqjRIj" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.576148, 7.397769], - [-11.572386, 7.391251], - [-11.576065, 7.384877], - [-11.569583, 7.385416], - [-11.569114, 7.386002], - [-11.563538, 7.386001], - [-11.560707, 7.381099], - [-11.560416, 7.384584], - [-11.55625, 7.387916], - [-11.55375, 7.387916], - [-11.545416, 7.372917], - [-11.543628, 7.373364], - [-11.543627, 7.373362], - [-11.54402, 7.372917], - [-11.534583, 7.372916], - [-11.533868, 7.369584], - [-11.526535, 7.369584], - [-11.522629, 7.376348], - [-11.520589, 7.376348], - [-11.514583, 7.372916], - [-11.514582, 7.364584], - [-11.51375, 7.364584], - [-11.513749, 7.368336], - [-11.50999, 7.368337], - [-11.509765, 7.368403], - [-11.508793, 7.368923], - [-11.507511, 7.368904], - [-11.50751, 7.368902], - [-11.507836, 7.368336], - [-11.50393, 7.361571], - [-11.498032, 7.361571], - [-11.498199, 7.387299], - [-11.498399, 7.393099], - [-11.4989, 7.3959], - [-11.501199, 7.401299], - [-11.501999, 7.404899], - [-11.502399, 7.410699], - [-11.502899, 7.414499], - [-11.505299, 7.419899], - [-11.505999, 7.423599], - [-11.505899, 7.4275], - [-11.5053, 7.430299], - [-11.504868, 7.431249], - [-11.512916, 7.43125], - [-11.520416, 7.438749], - [-11.520416, 7.447916], - [-11.517083, 7.452083], - [-11.523749, 7.452083], - [-11.524583, 7.445416], - [-11.52875, 7.442084], - [-11.536249, 7.442083], - [-11.537916, 7.439584], - [-11.538988, 7.439225], - [-11.53805, 7.437598], - [-11.541955, 7.430834], - [-11.546133, 7.430833], - [-11.54577, 7.426448], - [-11.54599, 7.420303], - [-11.545871, 7.419778], - [-11.545731, 7.419608], - [-11.550509, 7.419607], - [-11.55253, 7.416108], - [-11.553749, 7.414583], - [-11.554583, 7.410418], - [-11.559583, 7.415416], - [-11.56875, 7.415416], - [-11.572916, 7.411249], - [-11.570417, 7.407083], - [-11.567917, 7.397084], - [-11.575416, 7.397916], - [-11.576148, 7.397769] - ] - ], - "type": "Polygon" - }, - "id": 85, - "properties": { - "cc:admin:id": ["27"], - "cc:oBld:total": 0, - "cc:pop:fifteen-to-twenty-four": 488.9440700791866, - "cc:pop:grid3-total": 3521.6104789815995, - "cc:pop:kontur-total": 2773, - "cc:pop:men": 1295.9798787557884, - "cc:pop:sixty-plus": 186.98043545113106, - "cc:pop:total": 2683.70034845026, - "cc:pop:under-five": 449.9456200242475, - "cc:pop:women": 1387.7204696944723, - "cc:pop:women-fiften-to-forty-nine": 663.9254745988303, - "cc:pop:wp-total": 2345.8538509979835, - "cc:pop:wp-total-UN": 2721.1557419731985, - "cc:id": "85", - "cc:Name": "Falaba CHP", - "cc:site": [-11.5289, 7.4203], - "user:parentName": "Galliness Perri", - "user:code": "OU_260425", - "user:orgUnitId": "pRg7dkjqNPc", - "user:level": "4", - "user:parentId": "eNtRuQrrZeo" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.439188, 8.247305], - [-12.437083, 8.239584], - [-12.437082, 8.235417], - [-12.432917, 8.23125], - [-12.432083, 8.231249], - [-12.433749, 8.224584], - [-12.430416, 8.223749], - [-12.42125, 8.222083], - [-12.42375, 8.216249], - [-12.426249, 8.209584], - [-12.422916, 8.20625], - [-12.417917, 8.206249], - [-12.417916, 8.199584], - [-12.417082, 8.198749], - [-12.416249, 8.195416], - [-12.412083, 8.18875], - [-12.411249, 8.188749], - [-12.409112, 8.188216], - [-12.409282, 8.187676], - [-12.405416, 8.184584], - [-12.401249, 8.186249], - [-12.399583, 8.186249], - [-12.395417, 8.184584], - [-12.395416, 8.182084], - [-12.390417, 8.17625], - [-12.390416, 8.17375], - [-12.387917, 8.169584], - [-12.384583, 8.167917], - [-12.384222, 8.166835], - [-12.384049, 8.166877], - [-12.383091, 8.166545], - [-12.382911, 8.166735], - [-12.383095, 8.167803], - [-12.384031, 8.169276], - [-12.3847, 8.171302], - [-12.385257, 8.172008], - [-12.386299, 8.172423], - [-12.386435, 8.172906], - [-12.386152, 8.173675], - [-12.385695, 8.173989], - [-12.385301, 8.17405], - [-12.384866, 8.1738], - [-12.383671, 8.173584], - [-12.383091, 8.173248], - [-12.381091, 8.173644], - [-12.37926, 8.173782], - [-12.378686, 8.173688], - [-12.377228, 8.172895], - [-12.376921, 8.173214], - [-12.376761, 8.17288], - [-12.376247, 8.173004], - [-12.372926, 8.177666], - [-12.372946, 8.177687], - [-12.372756, 8.17831], - [-12.372256, 8.179104], - [-12.371046, 8.181073], - [-12.37061, 8.181405], - [-12.370335, 8.1815], - [-12.3698, 8.181382], - [-12.36888, 8.181259], - [-12.368558, 8.181664], - [-12.368236, 8.182545], - [-12.367918, 8.18252], - [-12.367601, 8.183438], - [-12.367243, 8.183749], - [-12.36667, 8.18386], - [-12.365824, 8.184518], - [-12.365022, 8.185635], - [-12.362916, 8.184584], - [-12.357083, 8.187083], - [-12.356249, 8.187084], - [-12.34988, 8.189207], - [-12.3499, 8.1898], - [-12.3509, 8.1938], - [-12.354499, 8.200999], - [-12.3568, 8.204], - [-12.362799, 8.210399], - [-12.364599, 8.2137], - [-12.3652, 8.2166], - [-12.365399, 8.230599], - [-12.366199, 8.234499], - [-12.370099, 8.242799], - [-12.3735, 8.248], - [-12.3756, 8.249199], - [-12.378199, 8.249699], - [-12.383899, 8.249899], - [-12.387499, 8.250599], - [-12.393, 8.2528], - [-12.398899, 8.254299], - [-12.402599, 8.255999], - [-12.4048, 8.2567], - [-12.4082, 8.256999], - [-12.412099, 8.2568], - [-12.4181, 8.2553], - [-12.423099, 8.256499], - [-12.427199, 8.256999], - [-12.430099, 8.253], - [-12.432599, 8.2508], - [-12.436399, 8.2489], - [-12.439188, 8.247305] - ] - ], - "type": "Polygon" - }, - "id": 86, - "properties": { - "cc:admin:id": ["45"], - "cc:oBld:total": 441, - "cc:pop:fifteen-to-twenty-four": 322.4558377084942, - "cc:pop:grid3-total": 1188.2231889412426, - "cc:pop:kontur-total": 1829.347066853653, - "cc:pop:men": 834.2339534515496, - "cc:pop:sixty-plus": 105.74088056108599, - "cc:pop:total": 1722.7138268774058, - "cc:pop:under-five": 312.4558413904511, - "cc:pop:women": 888.4798734258558, - "cc:pop:women-fiften-to-forty-nine": 427.1710967025214, - "cc:pop:wp-total": 1639.142843566544, - "cc:pop:wp-total-UN": 1904.8532941151086, - "cc:id": "86", - "cc:Name": "Falaba MCHP", - "cc:site": [-12.3796, 8.2111], - "user:parentName": "Fakunya", - "user:code": "OU_247091", - "user:orgUnitId": "YTQRSW91PxO", - "user:level": "4", - "user:parentId": "vULnao2hV5v" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.479384, 8.932082], - [-11.479299, 8.926999], - [-11.4784, 8.9214], - [-11.476599, 8.9149], - [-11.472999, 8.914299], - [-11.4691, 8.911599], - [-11.466799, 8.908599], - [-11.464399, 8.903299], - [-11.4596, 8.8888], - [-11.4574, 8.8832], - [-11.447499, 8.863999], - [-11.445599, 8.858399], - [-11.4442, 8.849], - [-11.4426, 8.8433], - [-11.4385, 8.8322], - [-11.4355, 8.8257], - [-11.4338, 8.8198], - [-11.4321, 8.8071], - [-11.4294, 8.8003], - [-11.4244, 8.7932], - [-11.421899, 8.789199], - [-11.417, 8.782], - [-11.4129, 8.7722], - [-11.410899, 8.767999], - [-11.408499, 8.764599], - [-11.4023, 8.7571], - [-11.400199, 8.752699], - [-11.399199, 8.749099], - [-11.3989, 8.7451], - [-11.3991, 8.741199], - [-11.399999, 8.7356], - [-11.3996, 8.7314], - [-11.396099, 8.724099], - [-11.394899, 8.718899], - [-11.3942, 8.7105], - [-11.393499, 8.706499], - [-11.3916, 8.7008], - [-11.389099, 8.695399], - [-11.3873, 8.6895], - [-11.386799, 8.683699], - [-11.3865, 8.6674], - [-11.385399, 8.6619], - [-11.380099, 8.6524], - [-11.375599, 8.6482], - [-11.370799, 8.646599], - [-11.3546, 8.6455], - [-11.351399, 8.6522], - [-11.3496, 8.657999], - [-11.349, 8.6632], - [-11.349199, 8.668399], - [-11.3498, 8.6723], - [-11.351499, 8.677999], - [-11.351997, 8.679302], - [-11.3536, 8.6835], - [-11.358199, 8.694299], - [-11.358899, 8.698699], - [-11.357399, 8.7103], - [-11.357199, 8.7252], - [-11.3565, 8.731799], - [-11.3547, 8.737399], - [-11.3489, 8.749199], - [-11.3471, 8.754799], - [-11.346499, 8.7602], - [-11.3464, 8.771099], - [-11.345799, 8.775099], - [-11.343299, 8.7799], - [-11.3397, 8.783999], - [-11.3335, 8.789399], - [-11.3283, 8.792599], - [-11.325299, 8.7948], - [-11.3217, 8.798399], - [-11.319499, 8.8014], - [-11.315599, 8.8087], - [-11.3034, 8.834299], - [-11.299416, 8.84157], - [-11.299399, 8.8416], - [-11.296999, 8.8449], - [-11.2917, 8.851299], - [-11.289799, 8.8546], - [-11.287799, 8.8602], - [-11.2847, 8.873999], - [-11.283499, 8.8818], - [-11.282299, 8.8855], - [-11.276999, 8.8951], - [-11.2729, 8.900899], - [-11.2704, 8.904899], - [-11.267999, 8.9078], - [-11.265099, 8.9101], - [-11.257799, 8.9138], - [-11.2465, 8.917399], - [-11.2437, 8.917999], - [-11.239299, 8.9183], - [-11.226, 8.918499], - [-11.2216, 8.918699], - [-11.217399, 8.9194], - [-11.211399, 8.9212], - [-11.2003, 8.922299], - [-11.196199, 8.9228], - [-11.1837, 8.926799], - [-11.1716, 8.932099], - [-11.1651, 8.934499], - [-11.160299, 8.9377], - [-11.151599, 8.9461], - [-11.1485, 8.949399], - [-11.1458, 8.952799], - [-11.1412, 8.961499], - [-11.1394, 8.967099], - [-11.138799, 8.9715], - [-11.1387, 8.975999], - [-11.1392, 8.9882], - [-11.1399, 8.9925], - [-11.143799, 9.004899], - [-11.144399, 9.0089], - [-11.143999, 9.012999], - [-11.140599, 9.020499], - [-11.138199, 9.023199], - [-11.133699, 9.025599], - [-11.1213, 9.027899], - [-11.117499, 9.0297], - [-11.107499, 9.0363], - [-11.097699, 9.0452], - [-11.095499, 9.047], - [-11.089199, 9.0511], - [-11.0818, 9.0576], - [-11.087, 9.0633], - [-11.093499, 9.069699], - [-11.096299, 9.071899], - [-11.1003, 9.0737], - [-11.104699, 9.075899], - [-11.109799, 9.076999], - [-11.1122, 9.0778], - [-11.120499, 9.081999], - [-11.125199, 9.085699], - [-11.131099, 9.088999], - [-11.1341, 9.0912], - [-11.1382, 9.0949], - [-11.144699, 9.100099], - [-11.145099, 9.102299], - [-11.144299, 9.103999], - [-11.1419, 9.105999], - [-11.1384, 9.107499], - [-11.135899, 9.1092], - [-11.131899, 9.1129], - [-11.1272, 9.117799], - [-11.1243, 9.121699], - [-11.122399, 9.1255], - [-11.120199, 9.1283], - [-11.1152, 9.133599], - [-11.113599, 9.1358], - [-11.111799, 9.1397], - [-11.1094, 9.143899], - [-11.1082, 9.147099], - [-11.1066, 9.149999], - [-11.1057, 9.152299], - [-11.1046, 9.157399], - [-11.1024, 9.162699], - [-11.1018, 9.165199], - [-11.1014, 9.170599], - [-11.1008, 9.173099], - [-11.0986, 9.178399], - [-11.097699, 9.1827], - [-11.096899, 9.1851], - [-11.095, 9.188699], - [-11.093699, 9.1918], - [-11.0914, 9.196099], - [-11.09125, 9.196469], - [-11.09125, 9.202082], - [-11.092917, 9.203749], - [-11.101249, 9.199583], - [-11.102916, 9.199582], - [-11.104582, 9.194583], - [-11.10375, 9.192916], - [-11.111249, 9.189582], - [-11.116249, 9.184583], - [-11.118391, 9.186724], - [-11.119196, 9.185332], - [-11.124317, 9.185331], - [-11.12625, 9.182917], - [-11.137082, 9.182083], - [-11.142082, 9.187083], - [-11.142082, 9.196249], - [-11.138749, 9.200416], - [-11.128367, 9.201216], - [-11.130915, 9.205628], - [-11.138726, 9.205628], - [-11.142633, 9.198863], - [-11.150445, 9.198863], - [-11.154352, 9.205628], - [-11.162164, 9.205629], - [-11.165244, 9.210962], - [-11.167082, 9.209582], - [-11.170417, 9.204583], - [-11.174582, 9.20375], - [-11.182916, 9.213749], - [-11.182917, 9.215416], - [-11.184583, 9.217082], - [-11.194582, 9.216249], - [-11.194879, 9.212395], - [-11.19732, 9.212395], - [-11.201226, 9.21916], - [-11.201249, 9.219161], - [-11.20125, 9.219582], - [-11.20681, 9.22435], - [-11.20681, 9.224351], - [-11.206708, 9.22437], - [-11.205727, 9.224682], - [-11.207083, 9.228749], - [-11.210417, 9.231249], - [-11.216249, 9.231249], - [-11.222082, 9.227082], - [-11.22125, 9.223749], - [-11.225416, 9.21875], - [-11.227916, 9.217916], - [-11.227917, 9.215417], - [-11.229582, 9.212082], - [-11.229583, 9.210416], - [-11.231249, 9.207083], - [-11.233749, 9.205417], - [-11.234583, 9.205417], - [-11.239583, 9.207082], - [-11.246249, 9.207082], - [-11.249583, 9.203749], - [-11.255416, 9.202083], - [-11.257917, 9.203749], - [-11.267916, 9.202917], - [-11.273749, 9.20125], - [-11.275417, 9.201249], - [-11.280887, 9.199686], - [-11.28363, 9.204436], - [-11.291442, 9.204436], - [-11.292524, 9.202562], - [-11.291672, 9.201487], - [-11.291179, 9.200393], - [-11.290999, 9.199709], - [-11.29625, 9.197083], - [-11.302916, 9.197082], - [-11.302917, 9.192082], - [-11.305417, 9.191249], - [-11.309582, 9.189583], - [-11.31375, 9.192916], - [-11.317916, 9.192916], - [-11.32125, 9.189583], - [-11.333749, 9.184582], - [-11.334582, 9.182917], - [-11.336249, 9.182916], - [-11.338749, 9.180416], - [-11.339583, 9.177083], - [-11.342082, 9.17375], - [-11.342916, 9.173749], - [-11.347916, 9.170417], - [-11.34875, 9.170416], - [-11.352916, 9.166249], - [-11.353749, 9.164582], - [-11.35375, 9.16375], - [-11.370416, 9.165416], - [-11.369977, 9.167176], - [-11.370739, 9.167175], - [-11.372486, 9.164153], - [-11.37375, 9.165417], - [-11.378749, 9.167083], - [-11.379981, 9.168314], - [-11.379766, 9.168678], - [-11.382083, 9.170416], - [-11.391472, 9.170416], - [-11.391299, 9.170199], - [-11.390099, 9.166299], - [-11.3897, 9.1609], - [-11.390099, 9.1568], - [-11.3912, 9.1542], - [-11.394, 9.1516], - [-11.402199, 9.1478], - [-11.408099, 9.1463], - [-11.4126, 9.144399], - [-11.4153, 9.1439], - [-11.418799, 9.1444], - [-11.4212, 9.145599], - [-11.433199, 9.1389], - [-11.4449, 9.132799], - [-11.4492, 9.129299], - [-11.452699, 9.1251], - [-11.454599, 9.1213], - [-11.4551, 9.118499], - [-11.455299, 9.1156], - [-11.455199, 9.108299], - [-11.454499, 9.102499], - [-11.452, 9.093], - [-11.451299, 9.088699], - [-11.4508, 9.078399], - [-11.451, 9.068096], - [-11.4515, 9.063799], - [-11.452799, 9.0592], - [-11.4595, 9.039199], - [-11.460999, 9.0335], - [-11.461499, 9.0282], - [-11.460199, 9.022999], - [-11.457, 9.0182], - [-11.451, 9.0116], - [-11.448799, 9.008199], - [-11.446699, 9.002299], - [-11.446, 8.996799], - [-11.446299, 8.9899], - [-11.4473, 8.9858], - [-11.4497, 8.982299], - [-11.4528, 8.979499], - [-11.4591, 8.975299], - [-11.462099, 8.9723], - [-11.463799, 8.97], - [-11.4661, 8.964599], - [-11.4677, 8.958899], - [-11.469199, 8.9523], - [-11.470499, 8.9491], - [-11.4722, 8.946299], - [-11.4768, 8.941899], - [-11.478899, 8.937299], - [-11.479399, 8.933], - [-11.479384, 8.932082] - ] - ], - "type": "Polygon" - }, - "id": 87, - "properties": { - "cc:admin:id": ["99"], - "cc:oBld:total": 5178, - "cc:pop:fifteen-to-twenty-four": 9093.655965018275, - "cc:pop:grid3-total": 57577.927118011336, - "cc:pop:kontur-total": 50236.59945054472, - "cc:pop:men": 23478.43430983589, - "cc:pop:sixty-plus": 2767.583651368851, - "cc:pop:total": 50061.88839568177, - "cc:pop:under-five": 7968.589822544879, - "cc:pop:women": 26583.454085845904, - "cc:pop:women-fiften-to-forty-nine": 13560.55715777031, - "cc:pop:wp-total": 40020.9774011534, - "cc:pop:wp-total-UN": 46454.21292998369, - "cc:id": "87", - "cc:Name": "Fankoya MCHP", - "cc:site": [-11.279, 8.961], - "user:parentName": "Nieni", - "user:code": "OU_226270", - "user:orgUnitId": "fmLRqcL9sWF", - "user:level": "4", - "user:parentId": "J4GiUImJZoE" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.986729, 8.632302], - [-10.986267, 8.631505], - [-10.986544, 8.630014], - [-10.98591, 8.628707], - [-10.985844, 8.627955], - [-10.985683, 8.627754], - [-10.985302, 8.627209], - [-10.98523, 8.626432], - [-10.985007, 8.625674], - [-10.984995, 8.62521], - [-10.984583, 8.625417], - [-10.984582, 8.630416], - [-10.982083, 8.630416], - [-10.981786, 8.629823], - [-10.984202, 8.628539], - [-10.984335, 8.626482], - [-10.984238, 8.626281], - [-10.981786, 8.627188], - [-10.981259, 8.627386], - [-10.981167, 8.6274], - [-10.979731, 8.628014], - [-10.979595, 8.627849], - [-10.979293, 8.627663], - [-10.979127, 8.627208], - [-10.978423, 8.626262], - [-10.978347, 8.626093], - [-10.978828, 8.623082], - [-10.97877, 8.61985], - [-10.978676, 8.619663], - [-10.977665, 8.619174], - [-10.976499, 8.6194], - [-10.9745, 8.620399], - [-10.968699, 8.6249], - [-10.9614, 8.628799], - [-10.958799, 8.6295], - [-10.953126, 8.62984], - [-10.953125, 8.630085], - [-10.953148, 8.630744], - [-10.953209, 8.631335], - [-10.953424, 8.631949], - [-10.953246, 8.632343], - [-10.953535, 8.632632], - [-10.953934, 8.633175], - [-10.954085, 8.633151], - [-10.954678, 8.633488], - [-10.954851, 8.63394], - [-10.9547, 8.634059], - [-10.954976, 8.634547], - [-10.955046, 8.63451], - [-10.95555, 8.63417], - [-10.95563, 8.634107], - [-10.955994, 8.633858], - [-10.956275, 8.634216], - [-10.956857, 8.635034], - [-10.957202, 8.635549], - [-10.957705, 8.636486], - [-10.957897, 8.636471], - [-10.958199, 8.636337], - [-10.958188, 8.636892], - [-10.95863, 8.636954], - [-10.958908, 8.637282], - [-10.959275, 8.638356], - [-10.959304, 8.638396], - [-10.958231, 8.638357], - [-10.958269, 8.638726], - [-10.958208, 8.63903], - [-10.957598, 8.639057], - [-10.959423, 8.639987], - [-10.961084, 8.641101], - [-10.961474, 8.640835], - [-10.961592, 8.64132], - [-10.961684, 8.641407], - [-10.96177, 8.641554], - [-10.961903, 8.641401], - [-10.963112, 8.641411], - [-10.963199, 8.641409], - [-10.963055, 8.642558], - [-10.963837, 8.642619], - [-10.966355, 8.642961], - [-10.966404, 8.642861], - [-10.967147, 8.643244], - [-10.967183, 8.643245], - [-10.967184, 8.643238], - [-10.967999, 8.643138], - [-10.968069, 8.643839], - [-10.968103, 8.644738], - [-10.968665, 8.644599], - [-10.969197, 8.644471], - [-10.969451, 8.645137], - [-10.969469, 8.645507], - [-10.970924, 8.645201], - [-10.971036, 8.645848], - [-10.970993, 8.646315], - [-10.970639, 8.646931], - [-10.970944, 8.647199], - [-10.971058, 8.647348], - [-10.971487, 8.64784], - [-10.972076, 8.648373], - [-10.972638, 8.648385], - [-10.972836, 8.648361], - [-10.973579, 8.648525], - [-10.973436, 8.649021], - [-10.973469, 8.650418], - [-10.973011, 8.650512], - [-10.972976, 8.651225], - [-10.973495, 8.651201], - [-10.974103, 8.651147], - [-10.974335, 8.650363], - [-10.974601, 8.650381], - [-10.974753, 8.652178], - [-10.975308, 8.652245], - [-10.975534, 8.650382], - [-10.975618, 8.649444], - [-10.975354, 8.648683], - [-10.975813, 8.648353], - [-10.975349, 8.647146], - [-10.97621, 8.646836], - [-10.976093, 8.64645], - [-10.976752, 8.646125], - [-10.976895, 8.645756], - [-10.976953, 8.645134], - [-10.976754, 8.64417], - [-10.976796, 8.644114], - [-10.976567, 8.643569], - [-10.977303, 8.643105], - [-10.977098, 8.642888], - [-10.976883, 8.642721], - [-10.976797, 8.642669], - [-10.9768, 8.642602], - [-10.976856, 8.642558], - [-10.976947, 8.642325], - [-10.97698, 8.64198], - [-10.976993, 8.641975], - [-10.977013, 8.641664], - [-10.977774, 8.641597], - [-10.978054, 8.641021], - [-10.978104, 8.64071], - [-10.978241, 8.640041], - [-10.978976, 8.639895], - [-10.980839, 8.639627], - [-10.981452, 8.639381], - [-10.982089, 8.638816], - [-10.982614, 8.637486], - [-10.982674, 8.637344], - [-10.983096, 8.636133], - [-10.983902, 8.634116], - [-10.984506, 8.633591], - [-10.985839, 8.632999], - [-10.986536, 8.632674], - [-10.986729, 8.632302] - ] - ], - "type": "Polygon" - }, - "id": 88, - "properties": { - "cc:admin:id": ["33"], - "cc:oBld:total": 4847, - "cc:pop:fifteen-to-twenty-four": 3648.49352570262, - "cc:pop:grid3-total": 33106.82111231923, - "cc:pop:kontur-total": 17800.421690422572, - "cc:pop:men": 9890.240871328988, - "cc:pop:sixty-plus": 1104.0681042727608, - "cc:pop:total": 18680.56621521792, - "cc:pop:under-five": 2917.9990700241046, - "cc:pop:women": 8790.325343888942, - "cc:pop:women-fiften-to-forty-nine": 4424.4482824479255, - "cc:pop:wp-total": 18073.83699540651, - "cc:pop:wp-total-UN": 20967.38132938864, - "cc:id": "88", - "cc:Name": "Fatkom Muchendeh Maternity Clinic", - "cc:site": [-10.9707, 8.6429], - "user:parentName": "Gbense", - "user:code": "OU_233379", - "user:orgUnitId": "JLKGG67z7oj", - "user:level": "4", - "user:parentId": "TQkG0sX9nca" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.948793, 7.671294], - [-11.947083, 7.669583], - [-11.947082, 7.667917], - [-11.944582, 7.667083], - [-11.942916, 7.664583], - [-11.939582, 7.66125], - [-11.936249, 7.661249], - [-11.923392, 7.660447], - [-11.922744, 7.661278], - [-11.919582, 7.65875], - [-11.915417, 7.660417], - [-11.917082, 7.669583], - [-11.909583, 7.669584], - [-11.904583, 7.67375], - [-11.904582, 7.677083], - [-11.902083, 7.677084], - [-11.89875, 7.679584], - [-11.900166, 7.687375], - [-11.900655, 7.687323], - [-11.902082, 7.693749], - [-11.902082, 7.697083], - [-11.89375, 7.69625], - [-11.89125, 7.697917], - [-11.89125, 7.704583], - [-11.892082, 7.707916], - [-11.897916, 7.70625], - [-11.90125, 7.713749], - [-11.910416, 7.712917], - [-11.911249, 7.720416], - [-11.907082, 7.72375], - [-11.905417, 7.729583], - [-11.907082, 7.73375], - [-11.903749, 7.736249], - [-11.892082, 7.735417], - [-11.891891, 7.735801], - [-11.892067, 7.735905], - [-11.894129, 7.736307], - [-11.897415, 7.736061], - [-11.898, 7.73614], - [-11.898938, 7.73654], - [-11.89984, 7.737282], - [-11.899503, 7.737559], - [-11.899162, 7.738176], - [-11.897835, 7.738774], - [-11.897687, 7.739236], - [-11.897995, 7.740476], - [-11.898303, 7.741413], - [-11.896555, 7.744255], - [-11.901539, 7.746471], - [-11.902753, 7.743629], - [-11.906329, 7.739397], - [-11.907519, 7.737613], - [-11.90947, 7.735536], - [-11.916809, 7.7361], - [-11.917116, 7.735954], - [-11.917603, 7.736043], - [-11.9182, 7.735399], - [-11.920299, 7.7326], - [-11.922699, 7.7281], - [-11.924899, 7.7252], - [-11.9299, 7.719899], - [-11.9319, 7.716999], - [-11.933699, 7.7131], - [-11.9357, 7.709599], - [-11.937699, 7.7053], - [-11.942, 7.699899], - [-11.9439, 7.696499], - [-11.946299, 7.6917], - [-11.947, 7.689199], - [-11.947299, 7.6865], - [-11.9472, 7.6782], - [-11.9473, 7.675499], - [-11.9477, 7.6733], - [-11.948793, 7.671294] - ] - ], - "type": "Polygon" - }, - "id": 89, - "properties": { - "cc:admin:id": ["78"], - "cc:oBld:total": 1, - "cc:pop:fifteen-to-twenty-four": 822.2085382682142, - "cc:pop:grid3-total": 2341.278275141665, - "cc:pop:kontur-total": 4279.632483310863, - "cc:pop:men": 2351.1046084940094, - "cc:pop:sixty-plus": 310.9586101664936, - "cc:pop:total": 4530.015220209249, - "cc:pop:under-five": 727.675498037873, - "cc:pop:women": 2178.9106117152387, - "cc:pop:women-fiften-to-forty-nine": 1031.694802702303, - "cc:pop:wp-total": 3328.853195033147, - "cc:pop:wp-total-UN": 3863.2048073622636, - "cc:id": "89", - "cc:Name": "Feiba CHP", - "cc:site": [-11.9229, 7.6842], - "user:parentName": "Lugbu", - "user:code": "OU_1054", - "user:orgUnitId": "r4W2vzlmPhm", - "user:level": "4", - "user:parentId": "kU8vhUkAGaT" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.677083, 8.577916], - [-10.677082, 8.572084], - [-10.66875, 8.569583], - [-10.67072, 8.565642], - [-10.670861, 8.565674], - [-10.670957, 8.565732], - [-10.673749, 8.55875], - [-10.671249, 8.55625], - [-10.669583, 8.556249], - [-10.669582, 8.554584], - [-10.66625, 8.551249], - [-10.666249, 8.542917], - [-10.65625, 8.544583], - [-10.658749, 8.537917], - [-10.657082, 8.534584], - [-10.651394, 8.534584], - [-10.651467, 8.534674], - [-10.650416, 8.536249], - [-10.648749, 8.535417], - [-10.642917, 8.535417], - [-10.642082, 8.537916], - [-10.637916, 8.53625], - [-10.63375, 8.536249], - [-10.632916, 8.532084], - [-10.627917, 8.532916], - [-10.626356, 8.531876], - [-10.626088, 8.532332], - [-10.626111, 8.534564], - [-10.625847, 8.5352], - [-10.62375, 8.536249], - [-10.623299, 8.53625], - [-10.622399, 8.5417], - [-10.618099, 8.5433], - [-10.6079, 8.546], - [-10.6022, 8.5498], - [-10.6006, 8.555899], - [-10.6035, 8.5596], - [-10.6074, 8.5669], - [-10.611299, 8.575299], - [-10.612799, 8.581099], - [-10.615199, 8.5865], - [-10.6158, 8.5915], - [-10.6159, 8.6149], - [-10.616099, 8.618599], - [-10.616999, 8.622199], - [-10.6185, 8.6245], - [-10.621999, 8.628699], - [-10.622513, 8.630001], - [-10.623359, 8.63009], - [-10.623577, 8.630588], - [-10.626249, 8.627916], - [-10.62625, 8.626249], - [-10.634582, 8.624584], - [-10.639582, 8.623749], - [-10.644582, 8.619584], - [-10.646249, 8.619583], - [-10.645417, 8.615416], - [-10.655416, 8.61375], - [-10.656249, 8.61375], - [-10.665416, 8.616249], - [-10.662917, 8.607916], - [-10.66375, 8.60625], - [-10.664582, 8.605416], - [-10.665416, 8.602084], - [-10.66625, 8.602083], - [-10.667916, 8.597917], - [-10.670416, 8.597083], - [-10.66875, 8.592917], - [-10.669582, 8.590417], - [-10.674582, 8.590416], - [-10.674583, 8.586249], - [-10.676249, 8.577917], - [-10.677083, 8.577916] - ] - ], - "type": "Polygon" - }, - "id": 90, - "properties": { - "cc:admin:id": ["125"], - "cc:oBld:total": 855, - "cc:pop:fifteen-to-twenty-four": 698.4142439956414, - "cc:pop:grid3-total": 4991.19419590143, - "cc:pop:kontur-total": 3803.7792236376604, - "cc:pop:men": 1585.6748262025003, - "cc:pop:sixty-plus": 160.26430526389998, - "cc:pop:total": 3492.0712199782056, - "cc:pop:under-five": 617.0089953090971, - "cc:pop:women": 1906.396393775707, - "cc:pop:women-fiften-to-forty-nine": 870.6785492595413, - "cc:pop:wp-total": 2636.4080270362633, - "cc:pop:wp-total-UN": 3061.6693114131353, - "cc:id": "90", - "cc:Name": "Feuror MCHP", - "cc:site": [-10.6418, 8.5924], - "user:parentName": "Soa", - "user:code": "OU_233320", - "user:orgUnitId": "rYIkxCJFtTX", - "user:level": "4", - "user:parentId": "iGHlidSFdpu" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.377802, 9.685302], - [-12.377082, 9.684583], - [-12.371088, 9.685044], - [-12.373592, 9.680704], - [-12.369686, 9.673939], - [-12.368955, 9.673939], - [-12.368333, 9.674551], - [-12.364747, 9.677132], - [-12.364395, 9.677683], - [-12.35684, 9.677683], - [-12.352934, 9.670917], - [-12.35684, 9.664152], - [-12.352933, 9.657386], - [-12.346209, 9.657385], - [-12.347077, 9.656618], - [-12.343878, 9.651076], - [-12.347783, 9.644311], - [-12.343878, 9.637546], - [-12.336066, 9.637545], - [-12.332158, 9.63078], - [-12.324346, 9.630779], - [-12.32044, 9.624014], - [-12.319372, 9.624013], - [-12.319583, 9.623749], - [-12.319582, 9.619167], - [-12.311955, 9.619167], - [-12.308048, 9.625933], - [-12.301895, 9.625933], - [-12.30125, 9.625417], - [-12.300654, 9.617688], - [-12.297002, 9.624014], - [-12.289191, 9.624014], - [-12.288861, 9.624582], - [-12.285214, 9.624582], - [-12.284901, 9.623951], - [-12.284805, 9.62331], - [-12.284913, 9.622484], - [-12.285456, 9.620916], - [-12.285513, 9.619715], - [-12.279511, 9.619715], - [-12.275604, 9.62648], - [-12.27352, 9.626481], - [-12.270416, 9.629582], - [-12.260417, 9.628749], - [-12.25723, 9.62636], - [-12.257231, 9.626359], - [-12.262193, 9.626358], - [-12.26213, 9.625508], - [-12.261176, 9.62378], - [-12.260956, 9.622919], - [-12.262102, 9.623514], - [-12.26558, 9.624069], - [-12.265672, 9.622811], - [-12.26533, 9.621348], - [-12.265163, 9.621246], - [-12.266309, 9.619555], - [-12.265978, 9.619382], - [-12.265688, 9.618935], - [-12.265301, 9.617742], - [-12.263692, 9.615794], - [-12.262972, 9.614466], - [-12.257083, 9.617083], - [-12.256648, 9.619689], - [-12.251104, 9.61969], - [-12.247197, 9.612924], - [-12.241574, 9.612924], - [-12.242082, 9.622082], - [-12.237917, 9.625417], - [-12.238585, 9.633451], - [-12.238584, 9.633451], - [-12.235809, 9.628647], - [-12.227998, 9.628647], - [-12.224091, 9.635412], - [-12.223972, 9.635413], - [-12.223749, 9.638749], - [-12.219582, 9.642082], - [-12.215672, 9.642082], - [-12.215774, 9.641839], - [-12.215574, 9.639912], - [-12.215841, 9.638543], - [-12.207083, 9.637083], - [-12.204582, 9.639583], - [-12.20125, 9.642082], - [-12.19625, 9.64125], - [-12.192083, 9.637916], - [-12.191429, 9.632036], - [-12.1895, 9.635377], - [-12.181688, 9.635377], - [-12.177781, 9.628612], - [-12.170748, 9.628612], - [-12.170416, 9.632916], - [-12.16625, 9.636249], - [-12.158979, 9.63625], - [-12.1595, 9.637039], - [-12.159772, 9.637797], - [-12.159934, 9.639002], - [-12.159806, 9.641123], - [-12.158721, 9.641123], - [-12.15872, 9.641122], - [-12.159019, 9.639692], - [-12.158987, 9.638528], - [-12.158482, 9.637245], - [-12.155586, 9.632148], - [-12.155094, 9.63085], - [-12.152571, 9.630849], - [-12.14981, 9.626068], - [-12.149582, 9.62625], - [-12.14375, 9.62625], - [-12.143693, 9.625934], - [-12.138619, 9.625933], - [-12.134712, 9.619168], - [-12.130064, 9.619167], - [-12.129921, 9.617318], - [-12.129135, 9.617318], - [-12.125228, 9.624083], - [-12.117416, 9.624084], - [-12.113509, 9.630849], - [-12.105696, 9.63085], - [-12.101791, 9.637615], - [-12.105696, 9.644381], - [-12.102098, 9.650615], - [-12.102916, 9.661249], - [-12.097916, 9.666249], - [-12.090417, 9.666249], - [-12.090416, 9.65125], - [-12.084438, 9.65922], - [-12.081791, 9.654639], - [-12.07663, 9.654638], - [-12.076898, 9.651147], - [-12.070541, 9.651147], - [-12.066635, 9.657912], - [-12.058822, 9.657913], - [-12.054916, 9.664678], - [-12.049865, 9.664679], - [-12.04917, 9.65988], - [-12.046124, 9.66221], - [-12.046053, 9.66209], - [-12.038974, 9.662089], - [-12.039017, 9.661713], - [-12.038815, 9.661136], - [-12.03777, 9.660335], - [-12.039582, 9.657916], - [-12.038844, 9.649794], - [-12.037399, 9.6507], - [-12.0297, 9.654299], - [-12.019699, 9.6567], - [-12.0075, 9.661799], - [-12.000899, 9.6638], - [-11.991199, 9.6674], - [-11.987299, 9.6694], - [-11.9776, 9.676499], - [-11.971299, 9.6791], - [-11.9627, 9.683999], - [-11.9452, 9.690299], - [-11.9379, 9.694499], - [-11.9352, 9.695499], - [-11.930799, 9.6963], - [-11.9204, 9.697399], - [-11.9128, 9.699399], - [-11.908199, 9.7], - [-11.89, 9.700899], - [-11.8831, 9.7001], - [-11.8847, 9.711], - [-11.885399, 9.729099], - [-11.886499, 9.738599], - [-11.8854, 9.754], - [-11.8854, 9.764699], - [-11.885699, 9.772199], - [-11.8862, 9.7766], - [-11.888599, 9.786099], - [-11.889099, 9.7901], - [-11.888899, 9.7954], - [-11.8865, 9.805999], - [-11.8865, 9.811299], - [-11.8873, 9.8151], - [-11.890699, 9.821599], - [-11.891999, 9.824799], - [-11.8932, 9.8297], - [-11.893199, 9.8364], - [-11.890399, 9.8485], - [-11.8901, 9.852899], - [-11.8903, 9.8571], - [-11.8913, 9.861], - [-11.8934, 9.864899], - [-11.8956, 9.8668], - [-11.9006, 9.8692], - [-11.903099, 9.871399], - [-11.910599, 9.880399], - [-11.912199, 9.8841], - [-11.911999, 9.8902], - [-11.909799, 9.8937], - [-11.9035, 9.8995], - [-11.9024, 9.9025], - [-11.9021, 9.9079], - [-11.903299, 9.9186], - [-11.9026, 9.928399], - [-11.902899, 9.936899], - [-11.9017, 9.941699], - [-11.9066, 9.935799], - [-11.918599, 9.9326], - [-11.9256, 9.928899], - [-11.9379, 9.926499], - [-11.9723, 9.916099], - [-12.029199, 9.8988], - [-12.047499, 9.8953], - [-12.061399, 9.8892], - [-12.079499, 9.8855], - [-12.0825, 9.883499], - [-12.119999, 9.8719], - [-12.1265, 9.8714], - [-12.141799, 9.874299], - [-12.151642, 9.879384], - [-12.151359, 9.878892], - [-12.15296, 9.87612], - [-12.154848, 9.877703], - [-12.154951, 9.878087], - [-12.154028, 9.879709], - [-12.153912, 9.880269], - [-12.154075, 9.88057], - [-12.155079, 9.881148], - [-12.155637, 9.881232], - [-12.156242, 9.88079], - [-12.155121, 9.878847], - [-12.159026, 9.872082], - [-12.166839, 9.872082], - [-12.170746, 9.878847], - [-12.178557, 9.878847], - [-12.182464, 9.872082], - [-12.190276, 9.872081], - [-12.194183, 9.865317], - [-12.201995, 9.865316], - [-12.205902, 9.858551], - [-12.213714, 9.85855], - [-12.21762, 9.851785], - [-12.219315, 9.851784], - [-12.220049, 9.850318], - [-12.226785, 9.850318], - [-12.230691, 9.857083], - [-12.233749, 9.857082], - [-12.23375, 9.85625], - [-12.235416, 9.856249], - [-12.238749, 9.852917], - [-12.240404, 9.852916], - [-12.241058, 9.851785], - [-12.24642, 9.851784], - [-12.245475, 9.849768], - [-12.243973, 9.844809], - [-12.244103, 9.842409], - [-12.243764, 9.841673], - [-12.243762, 9.841386], - [-12.249696, 9.841385], - [-12.25172, 9.837881], - [-12.252272, 9.838569], - [-12.255501, 9.838569], - [-12.259406, 9.831804], - [-12.260122, 9.831803], - [-12.260037, 9.831649], - [-12.260032, 9.830972], - [-12.258855, 9.82642], - [-12.25754, 9.823653], - [-12.256871, 9.822785], - [-12.264582, 9.822083], - [-12.266249, 9.822916], - [-12.26625, 9.81625], - [-12.267706, 9.814428], - [-12.266488, 9.812317], - [-12.270393, 9.805552], - [-12.266488, 9.798786], - [-12.270393, 9.79202], - [-12.266488, 9.785253], - [-12.270393, 9.778488], - [-12.278206, 9.778487], - [-12.282112, 9.771723], - [-12.278207, 9.764957], - [-12.282112, 9.758191], - [-12.289925, 9.75819], - [-12.293831, 9.751425], - [-12.301643, 9.751424], - [-12.30555, 9.744659], - [-12.309528, 9.744658], - [-12.30875, 9.73375], - [-12.311911, 9.730588], - [-12.312452, 9.731314], - [-12.314731, 9.733863], - [-12.317048, 9.735881], - [-12.318527, 9.738353], - [-12.318865, 9.73872], - [-12.320104, 9.739605], - [-12.320244, 9.739667], - [-12.320805, 9.7404], - [-12.32236, 9.74183], - [-12.322429, 9.741875], - [-12.322916, 9.740417], - [-12.324582, 9.740416], - [-12.330416, 9.734583], - [-12.330665, 9.734832], - [-12.334529, 9.734831], - [-12.338436, 9.728066], - [-12.33453, 9.7213], - [-12.338436, 9.714534], - [-12.346248, 9.714533], - [-12.34625, 9.714532], - [-12.34625, 9.712082], - [-12.354582, 9.705417], - [-12.360416, 9.705416], - [-12.360417, 9.695417], - [-12.362082, 9.692917], - [-12.362365, 9.692069], - [-12.370135, 9.692069], - [-12.370973, 9.693521], - [-12.370992, 9.693478], - [-12.371323, 9.692225], - [-12.37104, 9.69001], - [-12.37126, 9.689397], - [-12.371759, 9.689257], - [-12.374041, 9.685303], - [-12.377802, 9.685302] - ] - ], - "type": "Polygon" - }, - "id": 91, - "properties": { - "cc:admin:id": ["131"], - "cc:oBld:total": 595, - "cc:pop:fifteen-to-twenty-four": 982.8868018567584, - "cc:pop:grid3-total": 9704.867234027932, - "cc:pop:kontur-total": 5822.519154167118, - "cc:pop:men": 2688.496659894525, - "cc:pop:sixty-plus": 408.66109536099856, - "cc:pop:total": 5566.19158887103, - "cc:pop:under-five": 878.9796025170857, - "cc:pop:women": 2877.6949289765043, - "cc:pop:women-fiften-to-forty-nine": 1391.5478972177575, - "cc:pop:wp-total": 4525.287339707403, - "cc:pop:wp-total-UN": 5243.412470633613, - "cc:id": "91", - "cc:Name": "Fintonia CHC", - "cc:site": [-12.225, 9.674], - "user:parentName": "Tambaka", - "user:code": "OU_193247", - "user:orgUnitId": "xKaB8tfbTzm", - "user:level": "4", - "user:parentId": "Qhmi8IZyPyD" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - [-13.138799, 8.451299], - [-13.138199, 8.4485], - [-13.136799, 8.447099], - [-13.135999, 8.444299], - [-13.1343, 8.4407], - [-13.134599, 8.4393], - [-13.132099, 8.4368], - [-13.130699, 8.436499], - [-13.1276, 8.4349], - [-13.126799, 8.434], - [-13.1243, 8.433499], - [-13.122399, 8.4321], - [-13.120099, 8.431499], - [-13.117399, 8.4301], - [-13.115999, 8.430399], - [-13.113199, 8.430099], - [-13.1088, 8.428199], - [-13.1071, 8.4263], - [-13.105099, 8.4249], - [-13.103999, 8.424899], - [-13.102099, 8.4235], - [-13.0976, 8.423199], - [-13.0951, 8.4221], - [-13.0932, 8.4218], - [-13.092399, 8.4204], - [-13.0899, 8.4193], - [-13.089599, 8.4188], - [-13.0846, 8.4188], - [-13.0829, 8.4185], - [-13.082399, 8.419], - [-13.0771, 8.4204], - [-13.0751, 8.4232], - [-13.0751, 8.427399], - [-13.0754, 8.4274], - [-13.076799, 8.430999], - [-13.076, 8.430999], - [-13.075099, 8.429299], - [-13.074299, 8.4265], - [-13.073199, 8.425399], - [-13.0729, 8.4232], - [-13.073499, 8.4207], - [-13.072899, 8.4185], - [-13.071799, 8.4176], - [-13.069299, 8.4168], - [-13.0665, 8.4168], - [-13.0657, 8.418199], - [-13.064, 8.4188], - [-13.062599, 8.420699], - [-13.0587, 8.4207], - [-13.0562, 8.4204], - [-13.055399, 8.4215], - [-13.0546, 8.423799], - [-13.053499, 8.4243], - [-13.0518, 8.424299], - [-13.050701, 8.4232], - [-13.052601, 8.422792], - [-13.052535, 8.422778], - [-13.052534, 8.422777], - [-13.053372, 8.419425], - [-13.053259, 8.41932], - [-13.051905, 8.419284], - [-13.051618, 8.419455], - [-13.051374, 8.42006], - [-13.050998, 8.420028], - [-13.049689, 8.419227], - [-13.04914, 8.419258], - [-13.047666, 8.418492], - [-13.047338, 8.417739], - [-13.04759, 8.417047], - [-13.047423, 8.416743], - [-13.046972, 8.41673], - [-13.04606, 8.4173], - [-13.045301, 8.418141], - [-13.044583, 8.418158], - [-13.041881, 8.417105], - [-13.041795, 8.417372], - [-13.041943, 8.417648], - [-13.042291, 8.417725], - [-13.0428, 8.418452], - [-13.042761, 8.419381], - [-13.043202, 8.41989], - [-13.043306, 8.42044], - [-13.04313, 8.42081], - [-13.042512, 8.421046], - [-13.041673, 8.420877], - [-13.040844, 8.42031], - [-13.040473, 8.424017], - [-13.040429, 8.424011], - [-13.040237, 8.423857], - [-13.040068, 8.424159], - [-13.039852, 8.424269], - [-13.039686, 8.424583], - [-13.03758, 8.424583], - [-13.037804, 8.42402], - [-13.037623, 8.423566], - [-13.036382, 8.423033], - [-13.03502, 8.422829], - [-13.033778, 8.423261], - [-13.030707, 8.422033], - [-13.030866, 8.422569], - [-13.030596, 8.42298], - [-13.029315, 8.423425], - [-13.029409, 8.42494], - [-13.028988, 8.424989], - [-13.028451, 8.424467], - [-13.02639, 8.424052], - [-13.02485, 8.425775], - [-13.024304, 8.426062], - [-13.023812, 8.426783], - [-13.023765, 8.426674], - [-13.021738, 8.425661], - [-13.021157, 8.425788], - [-13.019812, 8.431169], - [-13.01981, 8.431169], - [-13.01973, 8.431103], - [-13.019583, 8.43125], - [-13.019582, 8.436249], - [-13.016673, 8.435668], - [-13.015628, 8.438177], - [-13.015495, 8.438484], - [-13.014396, 8.440944], - [-13.014068, 8.441108], - [-13.012738, 8.441162], - [-13.011632, 8.441439], - [-13.007242, 8.443711], - [-13.014582, 8.449583], - [-13.016249, 8.449584], - [-13.016249, 8.45125], - [-13.014744, 8.457273], - [-13.013901, 8.45716], - [-13.012083, 8.459584], - [-13.012083, 8.460427], - [-13.012948, 8.460167], - [-13.013188, 8.460268], - [-13.014977, 8.462286], - [-13.015467, 8.463184], - [-13.015616, 8.463866], - [-13.015383, 8.464943], - [-13.015079, 8.46522], - [-13.01472, 8.465297], - [-13.012381, 8.464215], - [-13.01223, 8.464236], - [-13.012571, 8.467307], - [-13.01284, 8.467369], - [-13.01329, 8.4677], - [-13.013403, 8.468109], - [-13.013248, 8.468593], - [-13.013576, 8.469398], - [-13.013051, 8.469748], - [-13.013009, 8.470084], - [-13.013362, 8.470398], - [-13.014952, 8.470587], - [-13.016072, 8.470186], - [-13.01667, 8.470221], - [-13.017549, 8.470588], - [-13.017891, 8.47092], - [-13.018171, 8.472079], - [-13.017634, 8.473144], - [-13.017679, 8.473273], - [-13.020096, 8.473878], - [-13.019997, 8.473403], - [-13.01965, 8.471425], - [-13.019372, 8.46955], - [-13.019199, 8.468647], - [-13.018816, 8.4675], - [-13.018746, 8.466494], - [-13.01781, 8.465939], - [-13.016907, 8.465626], - [-13.016803, 8.465002], - [-13.016804, 8.465001], - [-13.017739, 8.465452], - [-13.018087, 8.465139], - [-13.018156, 8.463682], - [-13.017879, 8.462812], - [-13.018156, 8.461774], - [-13.018157, 8.461774], - [-13.018574, 8.462675], - [-13.018712, 8.463507], - [-13.018781, 8.464514], - [-13.01892, 8.465452], - [-13.019199, 8.46632], - [-13.019474, 8.466547], - [-13.020399, 8.4668], - [-13.0204, 8.468799], - [-13.021299, 8.4707], - [-13.0213, 8.472599], - [-13.0218, 8.4726], - [-13.0224, 8.474899], - [-13.023799, 8.475099], - [-13.024898, 8.4746], - [-13.024899, 8.474601], - [-13.0249, 8.478799], - [-13.025699, 8.4799], - [-13.026, 8.4824], - [-13.0296, 8.487599], - [-13.0313, 8.4888], - [-13.034899, 8.492599], - [-13.0354, 8.4938], - [-13.0371, 8.495399], - [-13.0376, 8.4954], - [-13.0388, 8.497899], - [-13.0396, 8.4985], - [-13.040099, 8.5013], - [-13.038999, 8.504599], - [-13.0376, 8.505999], - [-13.0365, 8.5063], - [-13.0346, 8.508799], - [-13.0326, 8.5096], - [-13.031299, 8.5115], - [-13.028799, 8.5126], - [-13.026, 8.5154], - [-13.0257, 8.517099], - [-13.0276, 8.518199], - [-13.029299, 8.5182], - [-13.0301, 8.518999], - [-13.0313, 8.519], - [-13.035699, 8.521299], - [-13.0371, 8.522599], - [-13.0382, 8.5226], - [-13.040999, 8.524599], - [-13.042099, 8.524899], - [-13.0424, 8.525699], - [-13.0435, 8.5257], - [-13.0449, 8.5268], - [-13.0471, 8.5279], - [-13.049, 8.527899], - [-13.051299, 8.527099], - [-13.052099, 8.526299], - [-13.052599, 8.524], - [-13.053199, 8.523999], - [-13.053799, 8.522399], - [-13.0538, 8.5207], - [-13.054299, 8.519599], - [-13.0546, 8.5162], - [-13.055399, 8.514899], - [-13.0554, 8.5124], - [-13.056799, 8.512599], - [-13.058199, 8.511499], - [-13.059299, 8.508799], - [-13.0593, 8.5068], - [-13.060099, 8.505699], - [-13.0604, 8.5038], - [-13.061499, 8.502599], - [-13.0621, 8.500999], - [-13.063199, 8.5001], - [-13.064599, 8.499899], - [-13.0671, 8.4979], - [-13.070399, 8.4979], - [-13.0704, 8.498199], - [-13.073699, 8.4982], - [-13.075099, 8.498499], - [-13.078199, 8.497399], - [-13.079299, 8.4951], - [-13.080399, 8.494299], - [-13.0804, 8.4926], - [-13.080999, 8.491499], - [-13.081, 8.489899], - [-13.081799, 8.4885], - [-13.082899, 8.487899], - [-13.0835, 8.4868], - [-13.0849, 8.487599], - [-13.089599, 8.487599], - [-13.0904, 8.4868], - [-13.092599, 8.485699], - [-13.0932, 8.4846], - [-13.0949, 8.4851], - [-13.0976, 8.4854], - [-13.1004, 8.486499], - [-13.103199, 8.4865], - [-13.104, 8.487399], - [-13.105099, 8.487399], - [-13.106499, 8.486299], - [-13.106499, 8.484], - [-13.1054, 8.483199], - [-13.1054, 8.4807], - [-13.107099, 8.478499], - [-13.1068, 8.4746], - [-13.108499, 8.472599], - [-13.108499, 8.4715], - [-13.1076, 8.4704], - [-13.1076, 8.4693], - [-13.1085, 8.4676], - [-13.1104, 8.465699], - [-13.110399, 8.4621], - [-13.1088, 8.4601], - [-13.107399, 8.4596], - [-13.1038, 8.4596], - [-13.101799, 8.460099], - [-13.0968, 8.4599], - [-13.0962, 8.461799], - [-13.097399, 8.4643], - [-13.097399, 8.466299], - [-13.096499, 8.467099], - [-13.0946, 8.467099], - [-13.090699, 8.4635], - [-13.089299, 8.4632], - [-13.0837, 8.463199], - [-13.0815, 8.4615], - [-13.0815, 8.4585], - [-13.0818, 8.4568], - [-13.0835, 8.4568], - [-13.0837, 8.459], - [-13.0837, 8.462399], - [-13.0904, 8.4624], - [-13.092399, 8.4632], - [-13.0951, 8.4663], - [-13.096499, 8.466299], - [-13.096499, 8.4646], - [-13.0951, 8.462599], - [-13.0951, 8.4604], - [-13.0968, 8.4585], - [-13.100399, 8.4585], - [-13.1004, 8.4588], - [-13.103499, 8.4588], - [-13.104, 8.4582], - [-13.106499, 8.4582], - [-13.108999, 8.458799], - [-13.110699, 8.460699], - [-13.111799, 8.4626], - [-13.1126, 8.467599], - [-13.114899, 8.4676], - [-13.116, 8.4671], - [-13.118799, 8.467099], - [-13.120999, 8.465999], - [-13.1204, 8.462899], - [-13.1215, 8.4615], - [-13.123799, 8.460399], - [-13.1249, 8.4571], - [-13.125699, 8.456], - [-13.127099, 8.456], - [-13.1276, 8.457099], - [-13.1313, 8.456499], - [-13.135999, 8.4543], - [-13.136799, 8.454299], - [-13.1374, 8.4529], - [-13.138799, 8.451299] - ] - ], - [ - [ - [-13.112599, 8.476799], - [-13.112099, 8.4757], - [-13.1107, 8.476], - [-13.111, 8.477399], - [-13.112099, 8.477599], - [-13.112599, 8.476799] - ] - ], - [ - [ - [-13.120099, 8.4707], - [-13.118999, 8.4688], - [-13.1182, 8.4688], - [-13.1174, 8.470399], - [-13.119, 8.471799], - [-13.120099, 8.471799], - [-13.120099, 8.4707] - ] - ] - ], - "type": "MultiPolygon" - }, - "id": 92, - "properties": { - "cc:admin:id": ["62"], - "cc:oBld:total": 106, - "cc:pop:fifteen-to-twenty-four": 575.4713343381044, - "cc:pop:grid3-total": 2172.816757868077, - "cc:pop:kontur-total": 3064.086132561955, - "cc:pop:men": 1548.8663763379238, - "cc:pop:sixty-plus": 184.25809172582836, - "cc:pop:total": 3272.979655700485, - "cc:pop:under-five": 545.4966092834145, - "cc:pop:women": 1724.1132793625625, - "cc:pop:women-fiften-to-forty-nine": 896.744663042344, - "cc:pop:wp-total": 3060.786722669729, - "cc:pop:wp-total-UN": 3539.9481689050026, - "cc:id": "92", - "cc:Name": "Fogbo (WAR) MCHP", - "cc:site": [-13.05933, 8.44316], - "user:parentName": "Rural Western Area", - "user:code": "OU_278369", - "user:orgUnitId": "aVycEyoSBJx", - "user:level": "4", - "user:parentId": "qtr8GGlm4gg" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.072377, 8.317905], - [-12.068471, 8.31114], - [-12.062436, 8.311139], - [-12.062094, 8.310766], - [-12.061199, 8.309493], - [-12.059292, 8.305979], - [-12.058359, 8.306446], - [-12.060494, 8.310301], - [-12.061804, 8.312062], - [-12.063392, 8.313611], - [-12.066705, 8.315713], - [-12.06625, 8.317083], - [-12.067199, 8.318508], - [-12.067059, 8.319078], - [-12.066546, 8.320283], - [-12.065493, 8.322021], - [-12.063805, 8.324113], - [-12.060365, 8.327605], - [-12.061227, 8.328179], - [-12.064026, 8.325526], - [-12.064682, 8.324671], - [-12.068471, 8.32467], - [-12.072377, 8.317905] - ] - ], - "type": "Polygon" - }, - "id": 93, - "properties": { - "cc:admin:id": ["149"], - "cc:oBld:total": 0, - "cc:pop:fifteen-to-twenty-four": 83, - "cc:pop:grid3-total": 752, - "cc:pop:kontur-total": 164.44495967625295, - "cc:pop:men": 205, - "cc:pop:sixty-plus": 28.000000000000004, - "cc:pop:total": 441, - "cc:pop:under-five": 71, - "cc:pop:women": 235.99999999999997, - "cc:pop:women-fiften-to-forty-nine": 118, - "cc:pop:wp-total": 264, - "cc:pop:wp-total-UN": 307, - "cc:id": "93", - "cc:Name": "Foindu MCHP", - "cc:site": [-12.0712, 8.3175], - "user:parentName": "Yoni", - "user:code": "OU_268236", - "user:orgUnitId": "D3oZZXtXjNk", - "user:level": "4", - "user:parentId": "NNE0YMCDZkO" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.554699, 8.7693], - [-12.5483, 8.7651], - [-12.5445, 8.7638], - [-12.5343, 8.7632], - [-12.531699, 8.762399], - [-12.5256, 8.758699], - [-12.522799, 8.755199], - [-12.520499, 8.753099], - [-12.517799, 8.751399], - [-12.514899, 8.7487], - [-12.5053, 8.7487], - [-12.501399, 8.748499], - [-12.4978, 8.747299], - [-12.4927, 8.7435], - [-12.489499, 8.741799], - [-12.4844, 8.7405], - [-12.4792, 8.7382], - [-12.4764, 8.7375], - [-12.469499, 8.7373], - [-12.4661, 8.737699], - [-12.464, 8.738399], - [-12.4581, 8.742299], - [-12.4553, 8.746099], - [-12.452299, 8.7495], - [-12.449399, 8.7517], - [-12.446199, 8.7531], - [-12.441999, 8.7555], - [-12.4331, 8.759299], - [-12.426499, 8.7601], - [-12.423899, 8.7608], - [-12.419399, 8.7627], - [-12.415699, 8.7634], - [-12.406999, 8.7635], - [-12.4041, 8.763699], - [-12.401399, 8.7643], - [-12.393099, 8.7684], - [-12.389399, 8.7715], - [-12.3823, 8.778599], - [-12.379299, 8.781], - [-12.3701, 8.785399], - [-12.364999, 8.7865], - [-12.3567, 8.790299], - [-12.3515, 8.792799], - [-12.346399, 8.794], - [-12.3412, 8.796299], - [-12.337399, 8.7971], - [-12.3335, 8.797299], - [-12.3296, 8.7971], - [-12.3272, 8.796599], - [-12.324599, 8.795099], - [-12.3209, 8.792], - [-12.3173, 8.7875], - [-12.3126, 8.795999], - [-12.31, 8.802799], - [-12.3076, 8.810599], - [-12.3069, 8.8151], - [-12.3076, 8.8197], - [-12.309499, 8.823999], - [-12.313999, 8.829999], - [-12.3172, 8.835], - [-12.3225, 8.842], - [-12.326399, 8.849399], - [-12.327999, 8.853799], - [-12.328599, 8.857299], - [-12.3285, 8.860799], - [-12.3259, 8.872199], - [-12.3249, 8.882699], - [-12.332299, 8.8794], - [-12.338199, 8.8758], - [-12.341399, 8.8745], - [-12.344799, 8.8741], - [-12.348299, 8.8749], - [-12.3515, 8.8768], - [-12.354799, 8.879799], - [-12.372399, 8.897499], - [-12.381399, 8.906099], - [-12.3849, 8.9089], - [-12.3915, 8.9133], - [-12.400399, 8.921099], - [-12.403799, 8.923899], - [-12.412399, 8.928699], - [-12.420199, 8.931899], - [-12.4244, 8.9327], - [-12.432999, 8.933299], - [-12.433099, 8.933299], - [-12.4327, 8.926399], - [-12.432899, 8.9228], - [-12.433499, 8.9198], - [-12.437399, 8.9135], - [-12.442699, 8.9101], - [-12.448, 8.907499], - [-12.455299, 8.9021], - [-12.4585, 8.900599], - [-12.462699, 8.8982], - [-12.4659, 8.896899], - [-12.470699, 8.8946], - [-12.477, 8.892999], - [-12.481399, 8.8908], - [-12.4846, 8.889499], - [-12.4888, 8.887099], - [-12.496199, 8.8834], - [-12.503, 8.880299], - [-12.5065, 8.879099], - [-12.5094, 8.8789], - [-12.522199, 8.878899], - [-12.525899, 8.875199], - [-12.5257, 8.8563], - [-12.5258, 8.850399], - [-12.526, 8.847599], - [-12.527599, 8.841899], - [-12.527199, 8.839599], - [-12.5242, 8.8333], - [-12.5204, 8.8293], - [-12.517099, 8.8274], - [-12.514799, 8.826899], - [-12.507, 8.8267], - [-12.5037, 8.8262], - [-12.501499, 8.825099], - [-12.499199, 8.823399], - [-12.495, 8.8192], - [-12.4926, 8.8162], - [-12.4884, 8.8079], - [-12.4877, 8.804399], - [-12.488399, 8.8007], - [-12.4917, 8.794799], - [-12.4935, 8.793299], - [-12.499099, 8.7903], - [-12.504999, 8.7889], - [-12.5103, 8.786699], - [-12.5162, 8.785299], - [-12.524599, 8.7814], - [-12.5289, 8.778999], - [-12.5362, 8.775599], - [-12.5392, 8.774899], - [-12.546999, 8.7746], - [-12.550499, 8.773799], - [-12.553099, 8.771799], - [-12.554699, 8.7693] - ] - ], - "type": "Polygon" - }, - "id": 94, - "properties": { - "cc:admin:id": ["14"], - "cc:oBld:total": 776, - "cc:pop:fifteen-to-twenty-four": 7820.573718193061, - "cc:pop:grid3-total": 26949.098129403086, - "cc:pop:kontur-total": 41141.82864015643, - "cc:pop:men": 19809.063924415263, - "cc:pop:sixty-plus": 2651.7074856807276, - "cc:pop:total": 41888.731619216145, - "cc:pop:under-five": 6804.920758521389, - "cc:pop:women": 22079.667694800835, - "cc:pop:women-fiften-to-forty-nine": 10606.82994272291, - "cc:pop:wp-total": 36240.17552419353, - "cc:pop:wp-total-UN": 42025.19448240859, - "cc:id": "94", - "cc:Name": "Foredugu MCHP", - "cc:site": [-12.4992, 8.7502], - "user:parentName": "Buya Romende", - "user:code": "OU_255027", - "user:orgUnitId": "z1ielwdLtPl", - "user:level": "4", - "user:parentId": "Pc3JTyqnsmL" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.531249, 9.162916], - [-11.529582, 9.15625], - [-11.525602, 9.153596], - [-11.525099, 9.1542], - [-11.521, 9.158499], - [-11.5176, 9.161299], - [-11.5136, 9.163299], - [-11.509199, 9.1641], - [-11.4988, 9.165099], - [-11.491399, 9.167], - [-11.484799, 9.167199], - [-11.476199, 9.164999], - [-11.464899, 9.163399], - [-11.4522, 9.1594], - [-11.4399, 9.1542], - [-11.4327, 9.1525], - [-11.4299, 9.1515], - [-11.426099, 9.149399], - [-11.421199, 9.145599], - [-11.418799, 9.1444], - [-11.4153, 9.1439], - [-11.4126, 9.144399], - [-11.408099, 9.1463], - [-11.402199, 9.1478], - [-11.394, 9.151599], - [-11.3912, 9.1542], - [-11.3901, 9.1568], - [-11.3897, 9.1609], - [-11.390099, 9.166299], - [-11.3913, 9.170199], - [-11.395299, 9.175199], - [-11.397099, 9.178399], - [-11.398599, 9.184199], - [-11.400899, 9.189499], - [-11.401899, 9.193699], - [-11.4027, 9.1958], - [-11.4046, 9.1985], - [-11.4106, 9.2049], - [-11.4122, 9.2072], - [-11.413799, 9.210299], - [-11.4162, 9.2156], - [-11.4177, 9.2214], - [-11.419999, 9.225799], - [-11.4213, 9.229], - [-11.425799, 9.237199], - [-11.4291, 9.239599], - [-11.434599, 9.240999], - [-11.4377, 9.2422], - [-11.440399, 9.243799], - [-11.4424, 9.2456], - [-11.4435, 9.2495], - [-11.443699, 9.257499], - [-11.444399, 9.261799], - [-11.446699, 9.267699], - [-11.4473, 9.2706], - [-11.4475, 9.2745], - [-11.4475, 9.2855], - [-11.447699, 9.288499], - [-11.448199, 9.291299], - [-11.4505, 9.2967], - [-11.4513, 9.3003], - [-11.451699, 9.307099], - [-11.452399, 9.310799], - [-11.4544, 9.3153], - [-11.4551, 9.3178], - [-11.455799, 9.323099], - [-11.456399, 9.325699], - [-11.4586, 9.331], - [-11.459699, 9.337999], - [-11.460299, 9.340599], - [-11.462299, 9.345099], - [-11.462899, 9.347599], - [-11.463499, 9.352899], - [-11.464199, 9.355499], - [-11.4662, 9.3599], - [-11.467999, 9.366699], - [-11.4703, 9.372], - [-11.4719, 9.3778], - [-11.474099, 9.382199], - [-11.475499, 9.385399], - [-11.477999, 9.389599], - [-11.4794, 9.3928], - [-11.481799, 9.397099], - [-11.4832, 9.4002], - [-11.485599, 9.404499], - [-11.486001, 9.405416], - [-11.48625, 9.405416], - [-11.489582, 9.401249], - [-11.489583, 9.387083], - [-11.488414, 9.385621], - [-11.490211, 9.382508], - [-11.486305, 9.375742], - [-11.490211, 9.368976], - [-11.486305, 9.36221], - [-11.490211, 9.355445], - [-11.490146, 9.355331], - [-11.491024, 9.354983], - [-11.493675, 9.352944], - [-11.497146, 9.350779], - [-11.494853, 9.346807], - [-11.500416, 9.345416], - [-11.501249, 9.33625], - [-11.507083, 9.330416], - [-11.507916, 9.327917], - [-11.50625, 9.323749], - [-11.511406, 9.313435], - [-11.510408, 9.313103], - [-11.508499, 9.313342], - [-11.507189, 9.313808], - [-11.506503, 9.313485], - [-11.505946, 9.313441], - [-11.505579, 9.31294], - [-11.503393, 9.312553], - [-11.502812, 9.312087], - [-11.50129, 9.311833], - [-11.499787, 9.311458], - [-11.499079, 9.311489], - [-11.501249, 9.302083], - [-11.50125, 9.298749], - [-11.502082, 9.29125], - [-11.514582, 9.292916], - [-11.514583, 9.292082], - [-11.518177, 9.290285], - [-11.517856, 9.289154], - [-11.517839, 9.28913], - [-11.51784, 9.289129], - [-11.520417, 9.290417], - [-11.527082, 9.292082], - [-11.528749, 9.291249], - [-11.52125, 9.28625], - [-11.522082, 9.283749], - [-11.522083, 9.282083], - [-11.522916, 9.280416], - [-11.522917, 9.277917], - [-11.523749, 9.277916], - [-11.523749, 9.275417], - [-11.520417, 9.27375], - [-11.519584, 9.272918], - [-11.521249, 9.272916], - [-11.52125, 9.271249], - [-11.525548, 9.26552], - [-11.527196, 9.266129], - [-11.528857, 9.265928], - [-11.530369, 9.265455], - [-11.530438, 9.265417], - [-11.525416, 9.265416], - [-11.52125, 9.262083], - [-11.521249, 9.261422], - [-11.521102, 9.261412], - [-11.521073, 9.261402], - [-11.520417, 9.260416], - [-11.520416, 9.256664], - [-11.519153, 9.256169], - [-11.518713, 9.25582], - [-11.518521, 9.255249], - [-11.518415, 9.252783], - [-11.518637, 9.251859], - [-11.517917, 9.250416], - [-11.522082, 9.240417], - [-11.525545, 9.238338], - [-11.524184, 9.23721], - [-11.522641, 9.234967], - [-11.521715, 9.234069], - [-11.521106, 9.232717], - [-11.521122, 9.232457], - [-11.521551, 9.231808], - [-11.520045, 9.228638], - [-11.519541, 9.227144], - [-11.518988, 9.223829], - [-11.519107, 9.22257], - [-11.51965, 9.220902], - [-11.520139, 9.217603], - [-11.520946, 9.215855], - [-11.522157, 9.214562], - [-11.522157, 9.214341], - [-11.52156, 9.213751], - [-11.52156, 9.21375], - [-11.525416, 9.213749], - [-11.528749, 9.205417], - [-11.520416, 9.202082], - [-11.519583, 9.187917], - [-11.521249, 9.18375], - [-11.519583, 9.182916], - [-11.521249, 9.172083], - [-11.519583, 9.16875], - [-11.521313, 9.166442], - [-11.521126, 9.165808], - [-11.531249, 9.162916] - ] - ], - "type": "Polygon" - }, - "id": 95, - "properties": { - "cc:admin:id": ["20"], - "cc:oBld:total": 49, - "cc:pop:fifteen-to-twenty-four": 1507.7388664462314, - "cc:pop:grid3-total": 10399.527848473297, - "cc:pop:kontur-total": 8472.280995366154, - "cc:pop:men": 3737.213644775317, - "cc:pop:sixty-plus": 526.032381743101, - "cc:pop:total": 8121.54278807328, - "cc:pop:under-five": 1281.6362272599988, - "cc:pop:women": 4384.329143297965, - "cc:pop:women-fiften-to-forty-nine": 2114.5979352935306, - "cc:pop:wp-total": 7511.155859258201, - "cc:pop:wp-total-UN": 8707.889887638825, - "cc:id": "95", - "cc:Name": "Foria CHP", - "cc:site": [-11.4577, 9.25], - "user:parentName": "Diang", - "user:code": "OU_226267", - "user:orgUnitId": "JKhjdiwoQZu", - "user:level": "4", - "user:parentId": "Lt8U7GVWvSR" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.488749, 8.529583], - [-11.48625, 8.52625], - [-11.486833, 8.523914], - [-11.4856, 8.523999], - [-11.482799, 8.5246], - [-11.467, 8.529899], - [-11.4641, 8.530499], - [-11.4485, 8.531699], - [-11.438099, 8.5343], - [-11.4338, 8.534599], - [-11.4295, 8.5344], - [-11.426699, 8.533799], - [-11.420599, 8.531999], - [-11.411799, 8.529899], - [-11.4042, 8.5263], - [-11.3983, 8.5224], - [-11.395699, 8.520999], - [-11.3926, 8.5202], - [-11.3895, 8.5199], - [-11.3848, 8.520299], - [-11.3805, 8.5218], - [-11.3729, 8.527399], - [-11.369599, 8.529299], - [-11.3636, 8.530399], - [-11.3596, 8.5317], - [-11.3568, 8.5349], - [-11.3544, 8.540299], - [-11.3514, 8.543799], - [-11.3449, 8.547099], - [-11.3423, 8.5494], - [-11.340799, 8.5525], - [-11.3401, 8.557499], - [-11.3403, 8.562], - [-11.341199, 8.566399], - [-11.342299, 8.569099], - [-11.345999, 8.575099], - [-11.3475, 8.5788], - [-11.3491, 8.5866], - [-11.3515, 8.596], - [-11.353, 8.6052], - [-11.355799, 8.615899], - [-11.357299, 8.626199], - [-11.357499, 8.630399], - [-11.357, 8.634499], - [-11.3546, 8.645499], - [-11.3708, 8.6466], - [-11.375599, 8.6482], - [-11.380099, 8.6524], - [-11.385399, 8.6619], - [-11.386499, 8.667399], - [-11.386799, 8.683699], - [-11.387299, 8.689499], - [-11.387355, 8.689679], - [-11.38875, 8.68875], - [-11.399582, 8.689582], - [-11.39625, 8.685416], - [-11.39625, 8.678256], - [-11.396471, 8.678177], - [-11.396617, 8.678436], - [-11.397198, 8.678387], - [-11.397409, 8.678111], - [-11.397362, 8.677937], - [-11.397933, 8.677575], - [-11.398352, 8.677732], - [-11.398719, 8.678413], - [-11.399051, 8.678474], - [-11.401249, 8.670417], - [-11.402082, 8.670416], - [-11.402916, 8.665416], - [-11.402083, 8.659583], - [-11.410416, 8.65375], - [-11.40875, 8.652917], - [-11.408749, 8.65125], - [-11.407083, 8.650416], - [-11.407083, 8.64625], - [-11.417916, 8.641249], - [-11.414582, 8.63625], - [-11.409929, 8.635584], - [-11.40979, 8.635246], - [-11.408577, 8.633325], - [-11.40782, 8.632544], - [-11.407827, 8.63202], - [-11.40784, 8.632007], - [-11.40875, 8.632917], - [-11.417916, 8.633749], - [-11.419582, 8.631249], - [-11.421041, 8.625414], - [-11.42092, 8.625368], - [-11.423749, 8.620416], - [-11.42375, 8.612917], - [-11.428749, 8.612084], - [-11.432082, 8.612083], - [-11.442082, 8.602916], - [-11.443749, 8.597917], - [-11.43875, 8.592917], - [-11.43875, 8.588751], - [-11.44513, 8.588751], - [-11.449036, 8.595515], - [-11.450218, 8.595515], - [-11.453749, 8.59375], - [-11.455416, 8.594583], - [-11.455416, 8.58375], - [-11.444583, 8.579583], - [-11.444583, 8.574741], - [-11.446609, 8.574218], - [-11.4484, 8.574729], - [-11.448866, 8.57507], - [-11.449515, 8.575149], - [-11.451724, 8.574823], - [-11.451194, 8.573387], - [-11.451131, 8.570744], - [-11.450532, 8.569475], - [-11.449075, 8.567186], - [-11.44872, 8.565417], - [-11.458749, 8.565417], - [-11.46125, 8.569583], - [-11.470416, 8.565416], - [-11.471249, 8.563749], - [-11.470588, 8.559117], - [-11.472167, 8.557681], - [-11.472719, 8.556832], - [-11.474154, 8.555995], - [-11.474206, 8.555954], - [-11.47375, 8.554583], - [-11.479582, 8.549583], - [-11.479583, 8.547916], - [-11.484582, 8.54125], - [-11.482083, 8.538749], - [-11.48125, 8.53125], - [-11.488749, 8.529583] - ] - ], - "type": "Polygon" - }, - "id": 96, - "properties": { - "cc:admin:id": ["68"], - "cc:oBld:total": 1174, - "cc:pop:fifteen-to-twenty-four": 2765.2011140394343, - "cc:pop:grid3-total": 14283.870298897087, - "cc:pop:kontur-total": 14967.37242475715, - "cc:pop:men": 7092.876034460754, - "cc:pop:sixty-plus": 958.5462149038534, - "cc:pop:total": 15080.906066845411, - "cc:pop:under-five": 2442.1832523559124, - "cc:pop:women": 7988.0300323846595, - "cc:pop:women-fiften-to-forty-nine": 3903.6669273535, - "cc:pop:wp-total": 12548.347648826822, - "cc:pop:wp-total-UN": 14551.306476451675, - "cc:id": "96", - "cc:Name": "Fotaneh Junction MCHP", - "cc:site": [-11.3831, 8.5906], - "user:parentName": "Kunike", - "user:code": "OU_268183", - "user:orgUnitId": "OwhDCucf4Ue", - "user:level": "4", - "user:parentId": "l0ccv2yzfF3" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.821196, 7.98705], - [-11.819899, 7.983899], - [-11.816999, 7.975399], - [-11.8127, 7.9737], - [-11.8077, 7.9712], - [-11.804499, 7.969899], - [-11.8002, 7.9675], - [-11.7963, 7.9657], - [-11.792699, 7.963699], - [-11.7842, 7.96], - [-11.779099, 7.958799], - [-11.7739, 7.9563], - [-11.770599, 7.954999], - [-11.766899, 7.953199], - [-11.763699, 7.952299], - [-11.7594, 7.9518], - [-11.7568, 7.9509], - [-11.756781, 7.950878], - [-11.756499, 7.951194], - [-11.755421, 7.951871], - [-11.754753, 7.952248], - [-11.754349, 7.952437], - [-11.753476, 7.953758], - [-11.753557, 7.953864], - [-11.753668, 7.954018], - [-11.753585, 7.954103], - [-11.753488, 7.954162], - [-11.75326, 7.95454], - [-11.753047, 7.955047], - [-11.752884, 7.955421], - [-11.753458, 7.955793], - [-11.753927, 7.956482], - [-11.754803, 7.95646], - [-11.75498, 7.956932], - [-11.755001, 7.957005], - [-11.753025, 7.957638], - [-11.75322, 7.958334], - [-11.753251, 7.958329], - [-11.753397, 7.958817], - [-11.752581, 7.958734], - [-11.752996, 7.960127], - [-11.753371, 7.960317], - [-11.753685, 7.960375], - [-11.753822, 7.960722], - [-11.752822, 7.961328], - [-11.752464, 7.961341], - [-11.751759, 7.96169], - [-11.750971, 7.961863], - [-11.750577, 7.962338], - [-11.75266, 7.962352], - [-11.753104, 7.962747], - [-11.753092, 7.962986], - [-11.753296, 7.962954], - [-11.754036, 7.963758], - [-11.754628, 7.964376], - [-11.755025, 7.964799], - [-11.755378, 7.965135], - [-11.755698, 7.965362], - [-11.756236, 7.965732], - [-11.756565, 7.965949], - [-11.757358, 7.966007], - [-11.757371, 7.966007], - [-11.758353, 7.966136], - [-11.758944, 7.966627], - [-11.759715, 7.968539], - [-11.759526, 7.968609], - [-11.758558, 7.968787], - [-11.758535, 7.969191], - [-11.758054, 7.969711], - [-11.757734, 7.96982], - [-11.758215, 7.970378], - [-11.758321, 7.970491], - [-11.759035, 7.970371], - [-11.759498, 7.971174], - [-11.760264, 7.971897], - [-11.760352, 7.972063], - [-11.758991, 7.972843], - [-11.759006, 7.972946], - [-11.759093, 7.973214], - [-11.759362, 7.973859], - [-11.759643, 7.974482], - [-11.759587, 7.974919], - [-11.758695, 7.975079], - [-11.758943, 7.97572], - [-11.759074, 7.977074], - [-11.758178, 7.977129], - [-11.758771, 7.979134], - [-11.758481, 7.979462], - [-11.758426, 7.979938], - [-11.75812, 7.980268], - [-11.756661, 7.981103], - [-11.756263, 7.981546], - [-11.75582, 7.98168], - [-11.754724, 7.981707], - [-11.753444, 7.982059], - [-11.754441, 7.986148], - [-11.754935, 7.987021], - [-11.755693, 7.987824], - [-11.756226, 7.987539], - [-11.758208, 7.987065], - [-11.759352, 7.987372], - [-11.759536, 7.987107], - [-11.760299, 7.986734], - [-11.760716, 7.985883], - [-11.761596, 7.984891], - [-11.762491, 7.984074], - [-11.762519, 7.984052], - [-11.762823, 7.98377], - [-11.763192, 7.983415], - [-11.763969, 7.983078], - [-11.764252, 7.984146], - [-11.76478, 7.986358], - [-11.765271, 7.988223], - [-11.765713, 7.989874], - [-11.766041, 7.991203], - [-11.766124, 7.991572], - [-11.766626, 7.993307], - [-11.767355, 7.994834], - [-11.767991, 7.995754], - [-11.76869, 7.99673], - [-11.770753, 7.999593], - [-11.771136, 7.999024], - [-11.77135, 7.999149], - [-11.772079, 7.998773], - [-11.772651, 7.99871], - [-11.77375, 7.995417], - [-11.778749, 7.993749], - [-11.780416, 7.992083], - [-11.780417, 7.991249], - [-11.785416, 7.985417], - [-11.787916, 7.984584], - [-11.790416, 7.987083], - [-11.789886, 7.990263], - [-11.790375, 7.990441], - [-11.79181, 7.990626], - [-11.793971, 7.992096], - [-11.794078, 7.992141], - [-11.795416, 7.991249], - [-11.795417, 7.98875], - [-11.796541, 7.985938], - [-11.796696, 7.98599], - [-11.798597, 7.987709], - [-11.79893, 7.987855], - [-11.799084, 7.987898], - [-11.79995, 7.987853], - [-11.80073, 7.987565], - [-11.802523, 7.987723], - [-11.803965, 7.988324], - [-11.804757, 7.988432], - [-11.806195, 7.9891], - [-11.807263, 7.989192], - [-11.807916, 7.989116], - [-11.808279, 7.989147], - [-11.809114, 7.988907], - [-11.809777, 7.98885], - [-11.811291, 7.988321], - [-11.812368, 7.987376], - [-11.812163, 7.986973], - [-11.812205, 7.986344], - [-11.812684, 7.986293], - [-11.813474, 7.986545], - [-11.8138, 7.98679], - [-11.816255, 7.986628], - [-11.816622, 7.986868], - [-11.816833, 7.986906], - [-11.817496, 7.987138], - [-11.818256, 7.986809], - [-11.819149, 7.9867], - [-11.820236, 7.986824], - [-11.820572, 7.98705], - [-11.821196, 7.98705] - ] - ], - "type": "Polygon" - }, - "id": 97, - "properties": { - "cc:admin:id": ["46"], - "cc:oBld:total": 4134, - "cc:pop:fifteen-to-twenty-four": 3159.8645904075447, - "cc:pop:grid3-total": 21148.382354921054, - "cc:pop:kontur-total": 19150.475706548077, - "cc:pop:men": 8498.988295938487, - "cc:pop:sixty-plus": 1294.3518464758179, - "cc:pop:total": 17499.247082021775, - "cc:pop:under-five": 2893.244982144179, - "cc:pop:women": 9000.258786083308, - "cc:pop:women-fiften-to-forty-nine": 4289.718801011581, - "cc:pop:wp-total": 14764.863859724217, - "cc:pop:wp-total-UN": 17119.596220442538, - "cc:id": "97", - "cc:Name": "Fullawahun MCHP", - "cc:site": [-11.7607, 7.9562], - "user:parentName": "Kakua", - "user:code": "OU_839", - "user:orgUnitId": "eRg3KZyWUSJ", - "user:level": "4", - "user:parentId": "U6Kr7Gtpidn" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.608178, 7.550836], - [-11.602984, 7.550809], - [-11.602452, 7.55098], - [-11.604582, 7.544584], - [-11.597083, 7.540416], - [-11.597916, 7.529584], - [-11.59125, 7.529583], - [-11.587917, 7.527084], - [-11.587082, 7.522084], - [-11.580373, 7.514628], - [-11.579399, 7.5153], - [-11.5741, 7.520299], - [-11.5713, 7.522499], - [-11.566299, 7.5252], - [-11.5622, 7.528699], - [-11.5593, 7.531599], - [-11.557099, 7.5345], - [-11.553199, 7.5423], - [-11.552499, 7.5453], - [-11.5523, 7.548899], - [-11.552499, 7.557199], - [-11.5531, 7.560299], - [-11.554299, 7.562299], - [-11.558899, 7.567999], - [-11.5614, 7.5726], - [-11.566099, 7.578299], - [-11.567199, 7.580799], - [-11.567799, 7.5843], - [-11.5677, 7.587999], - [-11.567199, 7.5915], - [-11.5661, 7.596799], - [-11.581699, 7.591], - [-11.5861, 7.587599], - [-11.588899, 7.5845], - [-11.590999, 7.581], - [-11.594699, 7.5687], - [-11.5988, 7.558999], - [-11.6011, 7.555199], - [-11.6038, 7.552899], - [-11.608178, 7.550836] - ] - ], - "type": "Polygon" - }, - "id": 98, - "properties": { - "cc:admin:id": ["128"], - "cc:oBld:total": 144, - "cc:pop:fifteen-to-twenty-four": 2766.7656458674146, - "cc:pop:grid3-total": 3769.488768009935, - "cc:pop:kontur-total": 18371.098524459292, - "cc:pop:men": 7434.296216615539, - "cc:pop:sixty-plus": 1082.6987701618675, - "cc:pop:total": 15334.688848865211, - "cc:pop:under-five": 2536.5219611891316, - "cc:pop:women": 7900.392632249672, - "cc:pop:women-fiften-to-forty-nine": 3776.5687426525665, - "cc:pop:wp-total": 10757.397196264605, - "cc:pop:wp-total-UN": 12471.73732741998, - "cc:id": "98", - "cc:Name": "Futa CHC", - "cc:site": [-11.574, 7.5612], - "user:parentName": "Pejeh", - "user:code": "OU_260389", - "user:orgUnitId": "uDzWmUDHKeR", - "user:level": "4", - "user:parentId": "N233eZJZ1bh" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.34442, 7.54706], - [-12.342061, 7.545794], - [-12.34087, 7.544927], - [-12.340369, 7.544068], - [-12.340257, 7.54368], - [-12.340237, 7.543255], - [-12.340425, 7.542897], - [-12.340953, 7.542348], - [-12.340121, 7.541713], - [-12.338693, 7.540685], - [-12.33779, 7.54047], - [-12.337158, 7.540311], - [-12.336377, 7.539943], - [-12.335553, 7.539745], - [-12.334281, 7.539655], - [-12.333576, 7.53935], - [-12.333283, 7.538914], - [-12.333191, 7.538332], - [-12.333007, 7.537372], - [-12.332966, 7.537128], - [-12.332626, 7.536911], - [-12.332051, 7.535927], - [-12.331422, 7.535145], - [-12.33048, 7.534287], - [-12.329581, 7.533699], - [-12.32907, 7.533077], - [-12.328711, 7.532377], - [-12.325336, 7.532376], - [-12.32143, 7.525611], - [-12.313619, 7.525611], - [-12.313453, 7.525326], - [-12.313042, 7.525432], - [-12.311704, 7.525412], - [-12.31071, 7.525153], - [-12.309327, 7.525772], - [-12.309151, 7.526032], - [-12.307414, 7.526778], - [-12.306131, 7.527083], - [-12.303191, 7.528389], - [-12.301729, 7.528777], - [-12.300344, 7.528917], - [-12.29947, 7.528816], - [-12.298893, 7.528409], - [-12.298536, 7.52771], - [-12.298402, 7.526352], - [-12.297955, 7.525273], - [-12.29715, 7.524434], - [-12.296298, 7.524068], - [-12.295151, 7.524104], - [-12.294169, 7.524515], - [-12.293009, 7.525578], - [-12.292331, 7.525781], - [-12.29172, 7.525583], - [-12.291244, 7.52486], - [-12.29111, 7.524027], - [-12.290171, 7.523152], - [-12.28891, 7.523172], - [-12.287991, 7.523534], - [-12.287225, 7.524387], - [-12.286394, 7.524845], - [-12.285399, 7.523924], - [-12.285056, 7.522419], - [-12.286066, 7.52039], - [-12.286471, 7.519291], - [-12.286897, 7.517341], - [-12.286789, 7.516783], - [-12.286276, 7.516091], - [-12.284916, 7.515587], - [-12.283963, 7.515592], - [-12.283481, 7.516072], - [-12.283177, 7.516503], - [-12.283049, 7.517148], - [-12.283767, 7.519311], - [-12.283341, 7.51984], - [-12.282592, 7.520378], - [-12.281428, 7.520577], - [-12.280679, 7.520256], - [-12.280006, 7.518945], - [-12.279416, 7.518457], - [-12.278506, 7.518046], - [-12.277911, 7.517924], - [-12.274377, 7.517973], - [-12.272894, 7.519183], - [-12.272253, 7.518996], - [-12.271554, 7.518416], - [-12.271205, 7.518486], - [-12.269662, 7.517459], - [-12.268162, 7.516004], - [-12.266054, 7.514794], - [-12.26516, 7.514488], - [-12.26451, 7.514585], - [-12.263873, 7.515012], - [-12.263437, 7.515577], - [-12.263288, 7.516451], - [-12.263299, 7.516833], - [-12.263627, 7.51727], - [-12.264376, 7.517464], - [-12.265289, 7.518013], - [-12.265176, 7.518787], - [-12.264873, 7.519088], - [-12.264625, 7.519046], - [-12.264622, 7.519335], - [-12.264366, 7.51959], - [-12.261642, 7.519913], - [-12.261445, 7.519928], - [-12.260369, 7.519977], - [-12.25985, 7.520252], - [-12.259259, 7.521026], - [-12.259191, 7.52144], - [-12.259155, 7.521894], - [-12.259223, 7.522725], - [-12.25918, 7.523105], - [-12.258957, 7.523971], - [-12.258827, 7.524164], - [-12.2584, 7.524275], - [-12.257694, 7.524036], - [-12.257561, 7.523979], - [-12.255432, 7.522477], - [-12.25498, 7.522051], - [-12.254427, 7.520013], - [-12.254689, 7.519241], - [-12.254609, 7.51812], - [-12.254307, 7.517521], - [-12.25338, 7.517361], - [-12.253023, 7.517493], - [-12.252379, 7.517919], - [-12.251863, 7.518531], - [-12.251677, 7.51854], - [-12.249311, 7.51807], - [-12.248556, 7.517663], - [-12.248237, 7.517284], - [-12.249317, 7.514659], - [-12.249617, 7.514658], - [-12.249431, 7.514187], - [-12.248557, 7.514992], - [-12.24813, 7.516013], - [-12.247885, 7.517686], - [-12.248062, 7.518024], - [-12.248826, 7.518462], - [-12.250486, 7.518539], - [-12.250951, 7.518831], - [-12.251485, 7.518881], - [-12.251593, 7.519058], - [-12.251581, 7.521025], - [-12.251317, 7.522053], - [-12.25076, 7.522973], - [-12.250335, 7.523195], - [-12.249101, 7.523266], - [-12.248232, 7.523004], - [-12.248087, 7.522676], - [-12.247316, 7.522156], - [-12.242929, 7.522129], - [-12.240089, 7.522626], - [-12.239569, 7.523138], - [-12.238448, 7.52384], - [-12.236982, 7.52428], - [-12.236038, 7.524751], - [-12.235607, 7.524543], - [-12.235166, 7.523555], - [-12.235067, 7.521178], - [-12.234814, 7.520403], - [-12.234816, 7.519889], - [-12.233998, 7.518777], - [-12.232636, 7.517686], - [-12.228909, 7.517772], - [-12.228251, 7.517401], - [-12.226187, 7.517388], - [-12.224551, 7.518115], - [-12.221208, 7.520755], - [-12.218679, 7.52146], - [-12.217235, 7.522029], - [-12.215632, 7.523059], - [-12.215021, 7.523686], - [-12.214167, 7.523908], - [-12.213761, 7.523746], - [-12.212077, 7.52201], - [-12.209907, 7.521405], - [-12.2081, 7.521392], - [-12.207843, 7.521134], - [-12.207327, 7.521131], - [-12.205949, 7.521256], - [-12.204485, 7.521884], - [-12.203972, 7.521881], - [-12.203325, 7.521491], - [-12.201915, 7.520066], - [-12.200629, 7.519543], - [-12.200372, 7.519284], - [-12.198825, 7.519016], - [-12.197148, 7.51851], - [-12.196385, 7.517584], - [-12.196128, 7.516747], - [-12.196264, 7.516039], - [-12.195929, 7.515825], - [-12.194718, 7.5159], - [-12.194365, 7.51627], - [-12.194074, 7.516952], - [-12.193006, 7.517839], - [-12.192383, 7.517944], - [-12.191855, 7.517836], - [-12.19125, 7.515417], - [-12.19125, 7.514805], - [-12.193036, 7.515065], - [-12.193806, 7.515025], - [-12.194887, 7.514177], - [-12.195441, 7.512976], - [-12.196181, 7.511962], - [-12.196808, 7.511793], - [-12.197328, 7.511281], - [-12.19862, 7.511032], - [-12.199279, 7.510143], - [-12.199331, 7.508113], - [-12.199548, 7.507048], - [-12.200725, 7.505814], - [-12.200957, 7.505168], - [-12.201117, 7.50371], - [-12.200863, 7.503192], - [-12.200871, 7.501905], - [-12.200077, 7.500619], - [-12.199389, 7.500101], - [-12.198663, 7.498991], - [-12.19832, 7.497512], - [-12.198324, 7.496753], - [-12.198293, 7.496659], - [-12.198059, 7.495585], - [-12.196966, 7.495408], - [-12.19677, 7.495574], - [-12.196423, 7.495573], - [-12.195909, 7.495264], - [-12.195613, 7.494891], - [-12.195394, 7.493919], - [-12.195446, 7.49345], - [-12.195735, 7.492467], - [-12.19771, 7.49197], - [-12.198227, 7.491716], - [-12.199324, 7.490743], - [-12.199411, 7.490424], - [-12.19904, 7.489516], - [-12.1987, 7.489189], - [-12.197686, 7.488892], - [-12.197784, 7.488708], - [-12.198583, 7.488703], - [-12.198995, 7.488484], - [-12.199413, 7.487733], - [-12.199287, 7.487218], - [-12.198514, 7.487083], - [-12.198, 7.486822], - [-12.197487, 7.486305], - [-12.196973, 7.486172], - [-12.197108, 7.485144], - [-12.196723, 7.484755], - [-12.196209, 7.484622], - [-12.196003, 7.48305], - [-12.195784, 7.482414], - [-12.195363, 7.481921], - [-12.194336, 7.48171], - [-12.193086, 7.481009], - [-12.192984, 7.480821], - [-12.193098, 7.480453], - [-12.194721, 7.479599], - [-12.194929, 7.479053], - [-12.194863, 7.478609], - [-12.192599, 7.4796], - [-12.1883, 7.481899], - [-12.1852, 7.483299], - [-12.1809, 7.485599], - [-12.176899, 7.4875], - [-12.1729, 7.490799], - [-12.169499, 7.4944], - [-12.1674, 7.497099], - [-12.1647, 7.502399], - [-12.1632, 7.504299], - [-12.159999, 7.5071], - [-12.1559, 7.5102], - [-12.1536, 7.514399], - [-12.152099, 7.5182], - [-12.150099, 7.521], - [-12.1453, 7.526899], - [-12.142999, 7.5315], - [-12.140799, 7.5343], - [-12.1358, 7.539599], - [-12.1339, 7.542899], - [-12.1325, 7.548499], - [-12.1303, 7.553799], - [-12.129815, 7.555844], - [-12.132569, 7.555845], - [-12.136475, 7.56261], - [-12.1418, 7.562611], - [-12.142083, 7.564583], - [-12.147046, 7.564584], - [-12.148534, 7.567158], - [-12.152512, 7.567158], - [-12.153035, 7.566164], - [-12.160687, 7.566412], - [-12.162917, 7.574583], - [-12.168999, 7.575258], - [-12.168902, 7.574914], - [-12.168903, 7.574912], - [-12.170416, 7.575416], - [-12.172917, 7.57875], - [-12.179582, 7.579583], - [-12.184583, 7.57125], - [-12.18625, 7.57125], - [-12.18875, 7.573749], - [-12.198219, 7.575206], - [-12.198569, 7.574794], - [-12.199868, 7.574085], - [-12.203121, 7.573377], - [-12.205295, 7.573261], - [-12.207765, 7.573406], - [-12.211633, 7.573947], - [-12.214076, 7.575595], - [-12.21375, 7.57625], - [-12.21375, 7.576603], - [-12.214836, 7.577702], - [-12.217787, 7.580166], - [-12.219316, 7.580675], - [-12.220516, 7.580753], - [-12.222173, 7.580452], - [-12.225009, 7.580727], - [-12.22555, 7.580551], - [-12.227082, 7.582083], - [-12.227082, 7.590416], - [-12.22625, 7.590417], - [-12.232082, 7.59625], - [-12.232083, 7.602981], - [-12.231946, 7.603219], - [-12.232077, 7.603348], - [-12.232605, 7.603695], - [-12.236794, 7.604827], - [-12.237712, 7.605439], - [-12.238, 7.605471], - [-12.23826, 7.605349], - [-12.238867, 7.604331], - [-12.240243, 7.60001], - [-12.241406, 7.598345], - [-12.24245, 7.597577], - [-12.243261, 7.597246], - [-12.24443, 7.59712], - [-12.245544, 7.597205], - [-12.246343, 7.597468], - [-12.247894, 7.598566], - [-12.248095, 7.598864], - [-12.246832, 7.598962], - [-12.247394, 7.599677], - [-12.247654, 7.601096], - [-12.247435, 7.601669], - [-12.245381, 7.603648], - [-12.244921, 7.6053], - [-12.244847, 7.606157], - [-12.245067, 7.607108], - [-12.245741, 7.607898], - [-12.248059, 7.608427], - [-12.248491, 7.608719], - [-12.249028, 7.607915], - [-12.249392, 7.608001], - [-12.250326, 7.608691], - [-12.252429, 7.61069], - [-12.253473, 7.611071], - [-12.2533, 7.5989], - [-12.2544, 7.594699], - [-12.258, 7.5915], - [-12.2635, 7.589999], - [-12.2659, 7.588799], - [-12.2681, 7.587099], - [-12.27, 7.585099], - [-12.2714, 7.582799], - [-12.273, 7.579099], - [-12.276299, 7.5739], - [-12.277, 7.5733], - [-12.2801, 7.572099], - [-12.286399, 7.5711], - [-12.290899, 7.5693], - [-12.295299, 7.5685], - [-12.318199, 7.5685], - [-12.3224, 7.568099], - [-12.3257, 7.566499], - [-12.331499, 7.5621], - [-12.336, 7.559599], - [-12.3396, 7.556699], - [-12.342999, 7.553299], - [-12.343, 7.5479], - [-12.34442, 7.54706] - ] - ], - "type": "Polygon" - }, - "id": 99, - "properties": { - "cc:admin:id": ["42"], - "cc:oBld:total": 7, - "cc:pop:fifteen-to-twenty-four": 1145.3356313119937, - "cc:pop:grid3-total": 6183.191822085989, - "cc:pop:kontur-total": 6544.818361120823, - "cc:pop:men": 3125.337578270182, - "cc:pop:sixty-plus": 491.7080231372748, - "cc:pop:total": 6534.553841377232, - "cc:pop:under-five": 1081.3855086835165, - "cc:pop:women": 3409.2162631070505, - "cc:pop:women-fiften-to-forty-nine": 1648.818023035279, - "cc:pop:wp-total": 7034.7820364294785, - "cc:pop:wp-total-UN": 8149.269067316031, - "cc:id": "99", - "cc:Name": "Gambia CHP", - "cc:site": [-12.1758, 7.5355], - "user:parentName": "Jong", - "user:code": "OU_197395", - "user:orgUnitId": "UWhv0MQOqoB", - "user:level": "4", - "user:parentId": "VCtF1DbspR5" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.694582, 8.12375], - [-12.694063, 8.122192], - [-12.693091, 8.121971], - [-12.690885, 8.123503], - [-12.689462, 8.123495], - [-12.688829, 8.121432], - [-12.689352, 8.120146], - [-12.688731, 8.115892], - [-12.688217, 8.115373], - [-12.690165, 8.113711], - [-12.691236, 8.112071], - [-12.689583, 8.110417], - [-12.68925, 8.110417], - [-12.687711, 8.113439], - [-12.686934, 8.113692], - [-12.686571, 8.109312], - [-12.683355, 8.10421], - [-12.686249, 8.09625], - [-12.682916, 8.095416], - [-12.677083, 8.094583], - [-12.67375, 8.09125], - [-12.674583, 8.084583], - [-12.674582, 8.07625], - [-12.667083, 8.076249], - [-12.66125, 8.072084], - [-12.662702, 8.064816], - [-12.661764, 8.065033], - [-12.660639, 8.064702], - [-12.659723, 8.064729], - [-12.656691, 8.064179], - [-12.65509, 8.063029], - [-12.654475, 8.062192], - [-12.657082, 8.059583], - [-12.657082, 8.057917], - [-12.65125, 8.052084], - [-12.651314, 8.051756], - [-12.648608, 8.051755], - [-12.644702, 8.04499], - [-12.646861, 8.04125], - [-12.642917, 8.04125], - [-12.639934, 8.040653], - [-12.639477, 8.03921], - [-12.639817, 8.03737], - [-12.640945, 8.035594], - [-12.642484, 8.032411], - [-12.643091, 8.029778], - [-12.638749, 8.027917], - [-12.632083, 8.027916], - [-12.632082, 8.025417], - [-12.628749, 8.025416], - [-12.624583, 8.022083], - [-12.62375, 8.01125], - [-12.635188, 8.005911], - [-12.632299, 8.004499], - [-12.629099, 8.003199], - [-12.624799, 8.000999], - [-12.618, 7.9992], - [-12.613399, 7.997199], - [-12.6067, 7.9958], - [-12.6005, 8.001799], - [-12.597499, 8.004], - [-12.5961, 8.0057], - [-12.594399, 8.010499], - [-12.591699, 8.0138], - [-12.588599, 8.0149], - [-12.5824, 8.015499], - [-12.580299, 8.0161], - [-12.5763, 8.017999], - [-12.5731, 8.019299], - [-12.5688, 8.021899], - [-12.565, 8.0236], - [-12.5623, 8.0266], - [-12.5606, 8.030299], - [-12.558599, 8.0338], - [-12.5548, 8.042499], - [-12.5544, 8.046799], - [-12.554599, 8.049399], - [-12.555199, 8.051899], - [-12.5574, 8.0563], - [-12.5592, 8.0631], - [-12.561399, 8.067399], - [-12.562799, 8.070599], - [-12.5643, 8.0728], - [-12.5681, 8.0768], - [-12.572699, 8.080599], - [-12.578799, 8.083999], - [-12.583999, 8.088499], - [-12.587999, 8.093499], - [-12.5894, 8.0966], - [-12.591899, 8.100899], - [-12.5933, 8.104], - [-12.595199, 8.107599], - [-12.5959, 8.1098], - [-12.596399, 8.112999], - [-12.5965, 8.1159], - [-12.596699, 8.137499], - [-12.596499, 8.1423], - [-12.595899, 8.145], - [-12.5923, 8.152499], - [-12.5904, 8.156099], - [-12.5895, 8.1597], - [-12.5895, 8.163599], - [-12.590199, 8.167299], - [-12.592499, 8.172599], - [-12.5931, 8.1754], - [-12.593499, 8.184299], - [-12.593499, 8.1932], - [-12.593299, 8.1981], - [-12.5927, 8.200899], - [-12.592225, 8.202025], - [-12.597195, 8.205006], - [-12.597916, 8.197084], - [-12.594583, 8.192916], - [-12.594583, 8.183749], - [-12.597916, 8.179584], - [-12.601249, 8.178749], - [-12.60125, 8.17625], - [-12.608868, 8.176249], - [-12.612775, 8.169484], - [-12.615353, 8.169483], - [-12.616249, 8.169583], - [-12.621249, 8.165417], - [-12.622083, 8.15875], - [-12.624582, 8.15875], - [-12.625417, 8.162916], - [-12.630417, 8.167083], - [-12.633166, 8.166532], - [-12.633194, 8.166368], - [-12.632927, 8.162633], - [-12.63335, 8.161351], - [-12.633723, 8.16065], - [-12.633732, 8.160623], - [-12.638749, 8.161249], - [-12.639583, 8.160417], - [-12.646249, 8.161249], - [-12.645416, 8.152917], - [-12.643508, 8.149736], - [-12.643557, 8.149635], - [-12.647174, 8.149785], - [-12.648979, 8.150696], - [-12.650786, 8.150964], - [-12.652412, 8.151455], - [-12.653369, 8.151367], - [-12.653329, 8.151717], - [-12.654197, 8.15137], - [-12.655326, 8.148543], - [-12.656003, 8.145287], - [-12.655733, 8.145056], - [-12.65588, 8.144926], - [-12.655836, 8.143056], - [-12.656251, 8.140745], - [-12.656641, 8.138329], - [-12.656512, 8.136823], - [-12.656615, 8.135966], - [-12.657343, 8.135057], - [-12.658666, 8.134278], - [-12.659991, 8.133654], - [-12.661679, 8.133291], - [-12.665731, 8.133161], - [-12.668484, 8.133083], - [-12.669783, 8.132718], - [-12.670563, 8.131965], - [-12.671938, 8.131031], - [-12.673056, 8.130381], - [-12.674224, 8.129785], - [-12.675104, 8.129169], - [-12.674964, 8.128605], - [-12.676198, 8.127551], - [-12.676952, 8.12685], - [-12.6789, 8.126199], - [-12.680017, 8.126018], - [-12.682977, 8.125967], - [-12.687729, 8.126251], - [-12.690197, 8.126537], - [-12.693343, 8.128086], - [-12.694582, 8.12375] - ] - ], - "type": "Polygon" - }, - "id": 100, - "properties": { - "cc:admin:id": ["12"], - "cc:oBld:total": 33, - "cc:pop:fifteen-to-twenty-four": 940.6544670591488, - "cc:pop:grid3-total": 3297.3943022301373, - "cc:pop:kontur-total": 5123.553399253411, - "cc:pop:men": 2334.1596488944597, - "cc:pop:sixty-plus": 329.8749100770709, - "cc:pop:total": 4984.741223509579, - "cc:pop:under-five": 860.222402145901, - "cc:pop:women": 2650.5815746151193, - "cc:pop:women-fiften-to-forty-nine": 1266.066202180751, - "cc:pop:wp-total": 4690.476159537234, - "cc:pop:wp-total-UN": 5435.586867363621, - "cc:id": "100", - "cc:Name": "Gandorhun CHC", - "cc:site": [-12.61438, 8.10341], - "user:parentName": "Fakunya", - "user:code": "OU_247092", - "user:orgUnitId": "ZdPkczYqeIY", - "user:level": "4", - "user:parentId": "vULnao2hV5v" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.498284, 7.562732], - [-11.498299, 7.561499], - [-11.4982, 7.5491], - [-11.4978, 7.5431], - [-11.497099, 7.538699], - [-11.495099, 7.534], - [-11.4749, 7.5325], - [-11.472099, 7.531899], - [-11.4662, 7.5299], - [-11.460699, 7.529199], - [-11.456499, 7.5291], - [-11.4523, 7.529599], - [-11.4486, 7.5311], - [-11.445, 7.5344], - [-11.4416, 7.540499], - [-11.440299, 7.5438], - [-11.4374, 7.553399], - [-11.4355, 7.556599], - [-11.430799, 7.5611], - [-11.4266, 7.567699], - [-11.423799, 7.5729], - [-11.4164, 7.583899], - [-11.412899, 7.5874], - [-11.4079, 7.590599], - [-11.4037, 7.594099], - [-11.3933, 7.604399], - [-11.385399, 7.6048], - [-11.381999, 7.6059], - [-11.3788, 7.6076], - [-11.384499, 7.6132], - [-11.384699, 7.618699], - [-11.3845, 7.621399], - [-11.383599, 7.624199], - [-11.381399, 7.6271], - [-11.3781, 7.6295], - [-11.3756, 7.633099], - [-11.373199, 7.6358], - [-11.370299, 7.6381], - [-11.365599, 7.6402], - [-11.3603, 7.6429], - [-11.363, 7.6457], - [-11.370199, 7.649799], - [-11.3734, 7.6511], - [-11.377799, 7.653399], - [-11.382, 7.6554], - [-11.385599, 7.658499], - [-11.387599, 7.661099], - [-11.389599, 7.664999], - [-11.3916, 7.6679], - [-11.394799, 7.671299], - [-11.398199, 7.674399], - [-11.4005, 7.6758], - [-11.4037, 7.6772], - [-11.411099, 7.680899], - [-11.414099, 7.682899], - [-11.420099, 7.688599], - [-11.422299, 7.690499], - [-11.425599, 7.692699], - [-11.428899, 7.6901], - [-11.431499, 7.6877], - [-11.432082, 7.687478], - [-11.432082, 7.687083], - [-11.43125, 7.682916], - [-11.43125, 7.676249], - [-11.432726, 7.674405], - [-11.439296, 7.674404], - [-11.440925, 7.671584], - [-11.440634, 7.671562], - [-11.439939, 7.670357], - [-11.443845, 7.663592], - [-11.442227, 7.660788], - [-11.442916, 7.654584], - [-11.442917, 7.65167], - [-11.443845, 7.650061], - [-11.451657, 7.65006], - [-11.45481, 7.644599], - [-11.453749, 7.643749], - [-11.452917, 7.632917], - [-11.454436, 7.631395], - [-11.454335, 7.631206], - [-11.455417, 7.629583], - [-11.45875, 7.627917], - [-11.460416, 7.627916], - [-11.460417, 7.62625], - [-11.462082, 7.624583], - [-11.46125, 7.623749], - [-11.46125, 7.617917], - [-11.472917, 7.617917], - [-11.477916, 7.618749], - [-11.47875, 7.620416], - [-11.480416, 7.619583], - [-11.48125, 7.618749], - [-11.497082, 7.615416], - [-11.495417, 7.609584], - [-11.494582, 7.605417], - [-11.492917, 7.604584], - [-11.492917, 7.60375], - [-11.494582, 7.602083], - [-11.494099, 7.595803], - [-11.495628, 7.593153], - [-11.4957, 7.589199], - [-11.497499, 7.5811], - [-11.498099, 7.5768], - [-11.498284, 7.562732] - ] - ], - "type": "Polygon" - }, - "id": 101, - "properties": { - "cc:admin:id": ["71"], - "cc:oBld:total": 741, - "cc:pop:fifteen-to-twenty-four": 798.8707503152405, - "cc:pop:grid3-total": 3964.462151165572, - "cc:pop:kontur-total": 4080.3976887214503, - "cc:pop:men": 2009.5092553391712, - "cc:pop:sixty-plus": 255.82421349081392, - "cc:pop:total": 4088.472750198936, - "cc:pop:under-five": 618.6123655780491, - "cc:pop:women": 2078.963494859765, - "cc:pop:women-fiften-to-forty-nine": 1028.0647458909452, - "cc:pop:wp-total": 3978.64031397973, - "cc:pop:wp-total-UN": 4608.335649361642, - "cc:id": "101", - "cc:Name": "Gandorhun CHP", - "cc:site": [-11.4489, 7.6147], - "user:parentName": "Niawa", - "user:code": "OU_222651", - "user:orgUnitId": "IWb1hstfROc", - "user:level": "4", - "user:parentId": "uKC54fzxRzO" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.227052, 7.717053], - [-11.219582, 7.709584], - [-11.218451, 7.710432], - [-11.217711, 7.709152], - [-11.215507, 7.709151], - [-11.216249, 7.69875], - [-11.215416, 7.697083], - [-11.210417, 7.692083], - [-11.210417, 7.682917], - [-11.210722, 7.68261], - [-11.208624, 7.682609], - [-11.204718, 7.675845], - [-11.196906, 7.675844], - [-11.194068, 7.670931], - [-11.192916, 7.672083], - [-11.191432, 7.672083], - [-11.189329, 7.668439], - [-11.193234, 7.661674], - [-11.189328, 7.654908], - [-11.188154, 7.654908], - [-11.188399, 7.656569], - [-11.188089, 7.659357], - [-11.186781, 7.661623], - [-11.178968, 7.661623], - [-11.177083, 7.658359], - [-11.177083, 7.657917], - [-11.180416, 7.652917], - [-11.177916, 7.652083], - [-11.173975, 7.647354], - [-11.173468, 7.647354], - [-11.170188, 7.653033], - [-11.170187, 7.653034], - [-11.169582, 7.644584], - [-11.165416, 7.64125], - [-11.155417, 7.64125], - [-11.152916, 7.643748], - [-11.151249, 7.637917], - [-11.148978, 7.635645], - [-11.15003, 7.633821], - [-11.149413, 7.632752], - [-11.149299, 7.633], - [-11.1485, 7.636199], - [-11.147499, 7.638199], - [-11.144, 7.640999], - [-11.142099, 7.6434], - [-11.1383, 7.650699], - [-11.136599, 7.6546], - [-11.1346, 7.658199], - [-11.133299, 7.6614], - [-11.1312, 7.665799], - [-11.129699, 7.672], - [-11.128099, 7.6748], - [-11.125799, 7.6775], - [-11.117199, 7.6862], - [-11.1145, 7.688699], - [-11.111599, 7.6908], - [-11.1048, 7.694099], - [-11.1024, 7.694899], - [-11.099699, 7.6951], - [-11.0909, 7.695199], - [-11.086, 7.696], - [-11.082999, 7.6979], - [-11.0777, 7.702899], - [-11.0749, 7.705099], - [-11.069199, 7.7084], - [-11.0653, 7.711699], - [-11.0619, 7.714999], - [-11.0581, 7.719199], - [-11.0569, 7.721099], - [-11.056099, 7.7242], - [-11.0559, 7.729899], - [-11.055921, 7.730744], - [-11.066249, 7.720416], - [-11.064697, 7.718086], - [-11.066861, 7.714337], - [-11.069052, 7.714337], - [-11.07125, 7.717083], - [-11.082916, 7.717917], - [-11.08375, 7.722083], - [-11.09625, 7.720417], - [-11.09778, 7.721335], - [-11.098759, 7.722193], - [-11.099575, 7.723435], - [-11.100598, 7.724141], - [-11.10173, 7.726604], - [-11.102648, 7.729384], - [-11.104369, 7.730896], - [-11.104765, 7.731479], - [-11.104892, 7.732821], - [-11.113749, 7.732084], - [-11.117385, 7.734992], - [-11.119653, 7.731067], - [-11.127464, 7.731067], - [-11.128307, 7.732525], - [-11.12875, 7.732083], - [-11.129583, 7.727083], - [-11.132917, 7.72375], - [-11.137917, 7.727916], - [-11.139583, 7.727917], - [-11.142083, 7.731249], - [-11.143248, 7.731638], - [-11.143288, 7.731422], - [-11.147916, 7.732083], - [-11.150417, 7.725417], - [-11.153749, 7.722083], - [-11.154583, 7.71125], - [-11.170416, 7.70875], - [-11.173749, 7.712917], - [-11.172917, 7.724584], - [-11.176877, 7.728543], - [-11.181281, 7.728544], - [-11.185187, 7.735308], - [-11.190814, 7.735309], - [-11.190943, 7.736214], - [-11.194273, 7.736215], - [-11.198181, 7.729449], - [-11.205992, 7.729449], - [-11.206112, 7.729243], - [-11.206493, 7.729375], - [-11.207452, 7.72933], - [-11.208203, 7.72964], - [-11.209007, 7.730596], - [-11.209583, 7.725417], - [-11.214582, 7.722084], - [-11.221249, 7.726249], - [-11.221612, 7.726249], - [-11.22174, 7.725726], - [-11.225465, 7.71883], - [-11.227052, 7.717053] - ] - ], - "type": "Polygon" - }, - "id": 102, - "properties": { - "cc:admin:id": ["15"], - "cc:oBld:total": 1405, - "cc:pop:fifteen-to-twenty-four": 1467.5771504242744, - "cc:pop:grid3-total": 6382.252056361632, - "cc:pop:kontur-total": 6863.815173814389, - "cc:pop:men": 3570.097188679643, - "cc:pop:sixty-plus": 470.5826459049528, - "cc:pop:total": 7479.7118821813065, - "cc:pop:under-five": 1204.37122111709, - "cc:pop:women": 3909.6146935016645, - "cc:pop:women-fiften-to-forty-nine": 1985.0712150121904, - "cc:pop:wp-total": 5769.553357074444, - "cc:pop:wp-total-UN": 6691.605052838507, - "cc:id": "102", - "cc:Name": "Gao MCHP", - "cc:site": [-11.1884, 7.7155], - "user:parentName": "Dama", - "user:code": "OU_222738", - "user:orgUnitId": "GAvxcmr5jB1", - "user:level": "4", - "user:parentId": "myQ4q1W6B4y" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.69555, 7.856812], - [-11.694995, 7.856079], - [-11.694703, 7.856303], - [-11.694049, 7.855562], - [-11.693668, 7.854781], - [-11.693774, 7.854285], - [-11.693589, 7.853278], - [-11.693327, 7.852693], - [-11.69265, 7.851985], - [-11.692256, 7.852005], - [-11.691355, 7.852611], - [-11.689631, 7.854081], - [-11.687574, 7.854901], - [-11.686408, 7.854995], - [-11.684872, 7.85488], - [-11.683632, 7.855482], - [-11.680777, 7.856128], - [-11.68054, 7.856322], - [-11.677112, 7.856839], - [-11.67511, 7.857908], - [-11.674373, 7.857984], - [-11.673933, 7.858293], - [-11.673331, 7.858348], - [-11.67204, 7.858034], - [-11.669949, 7.857827], - [-11.668983, 7.85794], - [-11.665787, 7.858972], - [-11.660817, 7.857889], - [-11.659834, 7.858002], - [-11.659157, 7.858253], - [-11.657911, 7.858563], - [-11.657641, 7.858576], - [-11.65515, 7.859136], - [-11.654451, 7.859154], - [-11.652863, 7.85874], - [-11.652367, 7.858972], - [-11.651661, 7.858991], - [-11.649507, 7.859608], - [-11.646864, 7.860111], - [-11.645326, 7.860886], - [-11.644768, 7.861339], - [-11.64443, 7.861985], - [-11.643465, 7.862675], - [-11.639389, 7.864509], - [-11.640468, 7.862637], - [-11.636563, 7.855871], - [-11.640468, 7.849106], - [-11.643032, 7.849105], - [-11.640811, 7.848443], - [-11.637082, 7.83875], - [-11.633749, 7.835417], - [-11.632083, 7.835416], - [-11.632083, 7.830417], - [-11.632916, 7.829583], - [-11.632917, 7.827917], - [-11.63125, 7.827083], - [-11.631249, 7.825416], - [-11.627017, 7.819774], - [-11.625786, 7.821249], - [-11.625416, 7.821249], - [-11.61875, 7.814583], - [-11.619582, 7.802084], - [-11.609583, 7.807083], - [-11.607082, 7.809583], - [-11.606771, 7.809531], - [-11.606646, 7.808478], - [-11.606569, 7.806796], - [-11.606707, 7.805979], - [-11.606496, 7.805614], - [-11.599395, 7.805613], - [-11.597083, 7.802916], - [-11.597083, 7.792917], - [-11.597141, 7.792844], - [-11.599057, 7.789524], - [-11.595151, 7.782759], - [-11.587339, 7.782759], - [-11.583433, 7.789524], - [-11.585056, 7.792336], - [-11.585055, 7.792337], - [-11.583749, 7.79125], - [-11.574583, 7.79125], - [-11.572916, 7.792084], - [-11.57194, 7.793059], - [-11.572053, 7.793162], - [-11.569583, 7.79625], - [-11.569582, 7.804582], - [-11.565416, 7.80125], - [-11.557083, 7.80125], - [-11.556249, 7.807083], - [-11.552919, 7.810414], - [-11.550275, 7.810413], - [-11.546369, 7.803648], - [-11.540884, 7.803648], - [-11.539583, 7.806249], - [-11.539593, 7.806397], - [-11.532349, 7.806398], - [-11.528442, 7.813163], - [-11.52063, 7.813163], - [-11.518244, 7.809031], - [-11.514583, 7.80875], - [-11.512082, 7.810416], - [-11.506843, 7.80998], - [-11.505005, 7.813163], - [-11.506305, 7.815416], - [-11.50375, 7.815417], - [-11.50125, 7.817084], - [-11.500494, 7.825383], - [-11.499579, 7.825445], - [-11.493437, 7.824428], - [-11.493022, 7.82508], - [-11.492291, 7.825708], - [-11.488258, 7.827091], - [-11.48672, 7.82826], - [-11.484417, 7.829609], - [-11.482105, 7.831549], - [-11.480245, 7.832817], - [-11.478234, 7.834454], - [-11.477207, 7.835286], - [-11.477429, 7.835858], - [-11.479, 7.8361], - [-11.482799, 7.836499], - [-11.493499, 7.836599], - [-11.498899, 7.8357], - [-11.503399, 7.8337], - [-11.5062, 7.833099], - [-11.5101, 7.8328], - [-11.522199, 7.832899], - [-11.5261, 7.832599], - [-11.529, 7.831999], - [-11.533399, 7.83], - [-11.539199, 7.8285], - [-11.5446, 7.826299], - [-11.5483, 7.825499], - [-11.554099, 7.8252], - [-11.557899, 7.8247], - [-11.563799, 7.8225], - [-11.567899, 7.8218], - [-11.5747, 7.821299], - [-11.5783, 7.820399], - [-11.5832, 7.818299], - [-11.587899, 7.8177], - [-11.5906, 7.8182], - [-11.5922, 7.8196], - [-11.592899, 7.821899], - [-11.5925, 7.824699], - [-11.59, 7.830299], - [-11.5887, 7.835299], - [-11.5875, 7.837799], - [-11.582699, 7.8443], - [-11.5809, 7.848199], - [-11.578899, 7.8517], - [-11.577499, 7.8549], - [-11.575899, 7.8571], - [-11.5724, 7.860699], - [-11.568199, 7.8637], - [-11.5644, 7.869599], - [-11.5616, 7.874899], - [-11.5581, 7.879199], - [-11.5564, 7.882399], - [-11.5558, 7.885], - [-11.5558, 7.888299], - [-11.5568, 7.890799], - [-11.5586, 7.891699], - [-11.5608, 7.891499], - [-11.563999, 7.8896], - [-11.5671, 7.888199], - [-11.571299, 7.8857], - [-11.5745, 7.884299], - [-11.582999, 7.8797], - [-11.587699, 7.876], - [-11.5899, 7.874499], - [-11.5965, 7.8712], - [-11.598999, 7.8708], - [-11.600848, 7.871184], - [-11.601265, 7.87097], - [-11.602222, 7.870047], - [-11.604241, 7.868897], - [-11.604223, 7.86871], - [-11.605394, 7.868206], - [-11.605797, 7.8682], - [-11.606192, 7.868693], - [-11.606307, 7.869178], - [-11.606684, 7.869758], - [-11.607785, 7.870662], - [-11.608984, 7.871346], - [-11.610118, 7.871545], - [-11.610435, 7.872135], - [-11.612057, 7.871779], - [-11.612579, 7.871172], - [-11.613054, 7.871165], - [-11.613137, 7.87029], - [-11.613781, 7.870402], - [-11.614502, 7.869961], - [-11.614788, 7.86993], - [-11.614992, 7.870372], - [-11.615221, 7.870269], - [-11.616401, 7.870744], - [-11.616546, 7.870375], - [-11.616391, 7.870172], - [-11.616555, 7.870079], - [-11.616632, 7.869664], - [-11.617574, 7.869534], - [-11.618661, 7.868916], - [-11.621183, 7.867882], - [-11.623275, 7.867432], - [-11.623404, 7.867209], - [-11.626557, 7.866156], - [-11.627222, 7.86613], - [-11.62758, 7.866306], - [-11.628077, 7.867403], - [-11.628435, 7.867509], - [-11.628774, 7.866909], - [-11.632431, 7.865695], - [-11.634549, 7.865781], - [-11.636646, 7.865101], - [-11.636698, 7.865264], - [-11.636775, 7.865124], - [-11.637288, 7.865041], - [-11.638382, 7.865098], - [-11.643256, 7.863179], - [-11.643257, 7.86318], - [-11.643248, 7.86353], - [-11.642658, 7.863976], - [-11.643724, 7.863706], - [-11.644577, 7.863196], - [-11.646471, 7.862888], - [-11.646668, 7.862503], - [-11.648147, 7.861421], - [-11.650327, 7.860219], - [-11.65102, 7.859997], - [-11.652157, 7.859766], - [-11.656077, 7.860073], - [-11.658493, 7.859866], - [-11.6625, 7.859969], - [-11.66244, 7.860322], - [-11.6648, 7.859599], - [-11.667599, 7.8591], - [-11.671699, 7.8588], - [-11.683299, 7.858899], - [-11.687399, 7.8587], - [-11.6904, 7.858199], - [-11.69555, 7.856812] - ] - ], - "type": "Polygon" - }, - "id": 103, - "properties": { - "cc:admin:id": ["40"], - "cc:oBld:total": 414, - "cc:pop:fifteen-to-twenty-four": 1353.4006937851057, - "cc:pop:grid3-total": 5703.6922826067985, - "cc:pop:kontur-total": 7770.916400619103, - "cc:pop:men": 3692.284984409159, - "cc:pop:sixty-plus": 557.4493288254018, - "cc:pop:total": 7598.956637353043, - "cc:pop:under-five": 1235.922519341195, - "cc:pop:women": 3906.6716529438854, - "cc:pop:women-fiften-to-forty-nine": 1841.853007830573, - "cc:pop:wp-total": 6333.447056057462, - "cc:pop:wp-total-UN": 7354.683097097907, - "cc:id": "103", - "cc:Name": "Gbaama MCHP", - "cc:site": [-11.6133, 7.839], - "user:parentName": "Jaiama Bongor", - "user:code": "OU_826", - "user:orgUnitId": "ei21lW7hFPX", - "user:level": "4", - "user:parentId": "daJPPxtIrQn" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.325124, 7.953542], - [-11.324383, 7.952166], - [-11.324401, 7.951135], - [-11.320999, 7.9527], - [-11.3176, 7.954699], - [-11.3155, 7.955399], - [-11.313299, 7.955599], - [-11.3107, 7.9553], - [-11.308199, 7.954099], - [-11.303199, 7.950099], - [-11.301099, 7.949099], - [-11.2979, 7.9484], - [-11.29625, 7.948369], - [-11.29625, 7.949583], - [-11.297083, 7.951249], - [-11.300416, 7.952084], - [-11.297083, 7.959583], - [-11.29375, 7.959584], - [-11.292916, 7.960417], - [-11.287917, 7.962917], - [-11.287916, 7.967083], - [-11.28625, 7.96875], - [-11.286249, 7.972083], - [-11.285416, 7.972084], - [-11.277083, 7.977083], - [-11.282916, 7.979584], - [-11.284582, 7.981249], - [-11.284582, 7.983749], - [-11.283907, 7.985778], - [-11.282151, 7.985855], - [-11.281752, 7.985964], - [-11.277917, 7.985417], - [-11.277399, 7.987999], - [-11.276314, 7.988812], - [-11.275661, 7.988912], - [-11.275118, 7.989325], - [-11.27441, 7.989448], - [-11.275523, 7.990583], - [-11.275971, 7.990892], - [-11.275971, 7.990893], - [-11.27125, 7.992916], - [-11.268344, 7.990592], - [-11.26828, 7.990775], - [-11.267685, 7.990986], - [-11.268439, 7.992109], - [-11.267782, 7.99324], - [-11.268298, 7.993605], - [-11.268326, 7.993882], - [-11.267782, 7.993294], - [-11.267481, 7.99279], - [-11.266151, 7.992063], - [-11.264996, 7.99211], - [-11.264883, 7.99251], - [-11.264583, 7.992637], - [-11.264583, 8.001249], - [-11.267915, 8.00125], - [-11.267916, 8.001251], - [-11.267348, 8.012033], - [-11.264306, 8.017303], - [-11.262371, 8.017304], - [-11.262347, 8.017597], - [-11.260614, 8.018043], - [-11.260477, 8.01738], - [-11.260495, 8.017354], - [-11.258749, 8.01875], - [-11.251249, 8.01875], - [-11.242179, 8.019575], - [-11.244672, 8.023895], - [-11.242917, 8.02375], - [-11.23875, 8.027083], - [-11.237916, 8.030416], - [-11.227082, 8.029584], - [-11.225417, 8.030417], - [-11.222083, 8.034584], - [-11.222315, 8.037601], - [-11.221336, 8.037601], - [-11.219112, 8.03375], - [-11.212807, 8.03375], - [-11.2124, 8.036599], - [-11.2105, 8.040899], - [-11.2101, 8.043299], - [-11.210499, 8.045699], - [-11.2122, 8.0493], - [-11.213999, 8.055999], - [-11.216299, 8.060399], - [-11.2176, 8.0635], - [-11.2197, 8.0671], - [-11.2216, 8.0709], - [-11.2237, 8.0738], - [-11.229899, 8.080499], - [-11.231499, 8.083199], - [-11.2321, 8.0853], - [-11.2326, 8.0906], - [-11.233499, 8.093999], - [-11.235499, 8.097599], - [-11.2368, 8.1007], - [-11.239399, 8.105999], - [-11.2407, 8.112199], - [-11.248299, 8.1119], - [-11.251, 8.111399], - [-11.256199, 8.1092], - [-11.2613, 8.107899], - [-11.269599, 8.104], - [-11.274, 8.101799], - [-11.2778, 8.101099], - [-11.288999, 8.101], - [-11.292999, 8.1008], - [-11.295209, 8.100325], - [-11.295416, 8.099969], - [-11.295416, 8.092084], - [-11.291226, 8.087893], - [-11.291618, 8.087212], - [-11.287713, 8.080447], - [-11.291618, 8.073681], - [-11.287713, 8.066915], - [-11.291618, 8.06015], - [-11.287713, 8.053383], - [-11.291349, 8.047084], - [-11.298749, 8.047083], - [-11.303749, 8.042916], - [-11.302279, 8.033361], - [-11.299439, 8.033929], - [-11.297044, 8.034461], - [-11.295936, 8.034907], - [-11.289583, 8.032083], - [-11.292916, 8.02125], - [-11.295416, 8.022083], - [-11.295417, 8.014584], - [-11.305416, 8.015416], - [-11.307916, 8.013749], - [-11.30491, 8.010744], - [-11.305042, 8.010392], - [-11.304517, 8.009733], - [-11.303916, 8.009449], - [-11.303429, 8.008795], - [-11.302958, 8.007697], - [-11.302386, 8.007203], - [-11.302053, 8.007886], - [-11.301251, 8.007084], - [-11.305416, 8.00625], - [-11.307916, 8.005416], - [-11.307226, 7.997134], - [-11.307227, 7.997133], - [-11.307259, 7.997146], - [-11.30792, 7.996254], - [-11.307916, 7.99625], - [-11.30625, 7.996249], - [-11.304583, 7.994583], - [-11.304583, 7.992916], - [-11.306249, 7.984584], - [-11.308749, 7.982083], - [-11.30875, 7.98125], - [-11.311346, 7.981249], - [-11.311443, 7.980358], - [-11.311542, 7.979251], - [-11.311269, 7.976446], - [-11.311507, 7.976494], - [-11.311991, 7.977023], - [-11.312083, 7.977195], - [-11.312083, 7.971249], - [-11.31375, 7.969584], - [-11.317916, 7.971249], - [-11.317083, 7.967917], - [-11.317083, 7.965989], - [-11.317473, 7.965923], - [-11.317514, 7.96511], - [-11.317888, 7.964426], - [-11.318415, 7.962782], - [-11.318706, 7.962565], - [-11.318921, 7.961315], - [-11.318713, 7.960417], - [-11.31875, 7.960416], - [-11.321249, 7.959583], - [-11.324582, 7.95625], - [-11.325124, 7.953542] - ] - ], - "type": "Polygon" - }, - "id": 104, - "properties": { - "cc:admin:id": ["50"], - "cc:oBld:total": 1435, - "cc:pop:fifteen-to-twenty-four": 3357.98478010905, - "cc:pop:grid3-total": 9124.617990785651, - "cc:pop:kontur-total": 17834.107012058306, - "cc:pop:men": 9741.412615062582, - "cc:pop:sixty-plus": 1063.4147830501404, - "cc:pop:total": 17755.39171041658, - "cc:pop:under-five": 2703.075895473784, - "cc:pop:women": 8013.979095354005, - "cc:pop:women-fiften-to-forty-nine": 4055.822930028255, - "cc:pop:wp-total": 13699.313844643162, - "cc:pop:wp-total-UN": 15872.214875337153, - "cc:id": "104", - "cc:Name": "Gbado MCHP", - "cc:site": [-11.2776, 8.0109], - "user:parentName": "Kandu Lepiema", - "user:code": "OU_222730", - "user:orgUnitId": "kedYKTsv95j", - "user:level": "4", - "user:parentId": "K1r3uF6eZ8n" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.903864, 8.062566], - [-11.903599, 8.060799], - [-11.9024, 8.0575], - [-11.9004, 8.0541], - [-11.896599, 8.049999], - [-11.8913, 8.0454], - [-11.8735, 8.034], - [-11.8659, 8.0278], - [-11.8625, 8.0255], - [-11.8561, 8.0223], - [-11.8497, 8.0201], - [-11.846099, 8.018199], - [-11.841799, 8.014799], - [-11.8294, 8.0037], - [-11.826499, 8.0112], - [-11.822099, 8.0198], - [-11.819499, 8.023], - [-11.8165, 8.025199], - [-11.8127, 8.027099], - [-11.809699, 8.0292], - [-11.8061, 8.033399], - [-11.8034, 8.038699], - [-11.801199, 8.0412], - [-11.7973, 8.044299], - [-11.7942, 8.045699], - [-11.792299, 8.0473], - [-11.790799, 8.0491], - [-11.788999, 8.0529], - [-11.7869, 8.055499], - [-11.783799, 8.0583], - [-11.7801, 8.0613], - [-11.7777, 8.067699], - [-11.7754, 8.0711], - [-11.7763, 8.0744], - [-11.7785, 8.0789], - [-11.7792, 8.0823], - [-11.779299, 8.085899], - [-11.778599, 8.0894], - [-11.776299, 8.0937], - [-11.772799, 8.1009], - [-11.7722, 8.1037], - [-11.772599, 8.107499], - [-11.775099, 8.112399], - [-11.7765, 8.1155], - [-11.7784, 8.1191], - [-11.7794, 8.1224], - [-11.7805, 8.129899], - [-11.7843, 8.1378], - [-11.7866, 8.1409], - [-11.7893, 8.143699], - [-11.795499, 8.144199], - [-11.799799, 8.145199], - [-11.807499, 8.149199], - [-11.8115, 8.1505], - [-11.8161, 8.151], - [-11.8332, 8.1516], - [-11.8376, 8.1524], - [-11.8436, 8.1542], - [-11.849299, 8.154799], - [-11.852199, 8.1547], - [-11.854999, 8.1542], - [-11.8577, 8.153099], - [-11.8623, 8.149699], - [-11.8652, 8.146699], - [-11.868299, 8.1425], - [-11.871199, 8.1366], - [-11.873699, 8.1316], - [-11.877, 8.1229], - [-11.884899, 8.1151], - [-11.889, 8.109799], - [-11.892899, 8.1013], - [-11.8957, 8.095899], - [-11.8968, 8.091999], - [-11.898699, 8.0811], - [-11.901999, 8.0745], - [-11.903899, 8.0689], - [-11.904199, 8.0648], - [-11.903864, 8.062566] - ] - ], - "type": "Polygon" - }, - "id": 105, - "properties": { - "cc:admin:id": ["35"], - "cc:oBld:total": 440, - "cc:pop:fifteen-to-twenty-four": 1655.2715386172017, - "cc:pop:grid3-total": 4615.459808095426, - "cc:pop:kontur-total": 9896.542557744966, - "cc:pop:men": 4139.025371857909, - "cc:pop:sixty-plus": 707.4369123475798, - "cc:pop:total": 9031.647622297105, - "cc:pop:under-five": 1552.9432064548043, - "cc:pop:women": 4892.622250439202, - "cc:pop:women-fiften-to-forty-nine": 2390.4495005620292, - "cc:pop:wp-total": 7755.47203972906, - "cc:pop:wp-total-UN": 8995.92097932203, - "cc:id": "105", - "cc:Name": "Gbaiima CHC", - "cc:site": [-11.8495, 8.1094], - "user:parentName": "Gbo", - "user:code": "OU_653", - "user:orgUnitId": "jGYT5U5qJP6", - "user:level": "4", - "user:parentId": "YmmeuGbqOwR" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.351599, 8.081899], - [-11.349799, 8.071999], - [-11.346999, 8.060199], - [-11.3469, 8.055999], - [-11.347399, 8.0496], - [-11.347099, 8.045399], - [-11.3456, 8.0375], - [-11.343, 8.0281], - [-11.3425, 8.0253], - [-11.342449, 8.024584], - [-11.341561, 8.024583], - [-11.340606, 8.021856], - [-11.340173, 8.021661], - [-11.339813, 8.021123], - [-11.339554, 8.021346], - [-11.339322, 8.021222], - [-11.339495, 8.020973], - [-11.339702, 8.021034], - [-11.339711, 8.019917], - [-11.33988, 8.019784], - [-11.338768, 8.016609], - [-11.338433, 8.016605], - [-11.338468, 8.016203], - [-11.334893, 8.015607], - [-11.335057, 8.016865], - [-11.335434, 8.017943], - [-11.336104, 8.018961], - [-11.336398, 8.02001], - [-11.336733, 8.020309], - [-11.337194, 8.022092], - [-11.336649, 8.024083], - [-11.336042, 8.024934], - [-11.336042, 8.025887], - [-11.338006, 8.02911], - [-11.337508, 8.033019], - [-11.336682, 8.034867], - [-11.336139, 8.035368], - [-11.3351, 8.035872], - [-11.334644, 8.036542], - [-11.334708, 8.037513], - [-11.335309, 8.037896], - [-11.336403, 8.039802], - [-11.337523, 8.040717], - [-11.337771, 8.041983], - [-11.336652, 8.042824], - [-11.336296, 8.045937], - [-11.336622, 8.047367], - [-11.336558, 8.048148], - [-11.336339, 8.050207], - [-11.335956, 8.051524], - [-11.337234, 8.05178], - [-11.336992, 8.053273], - [-11.335985, 8.064427], - [-11.335921, 8.067083], - [-11.334697, 8.067084], - [-11.33457, 8.069342], - [-11.334669, 8.071936], - [-11.333898, 8.07353], - [-11.334381, 8.073881], - [-11.3349, 8.075831], - [-11.334622, 8.078591], - [-11.334107, 8.080611], - [-11.334145, 8.082391], - [-11.344599, 8.0822], - [-11.351599, 8.081899] - ] - ], - "type": "Polygon" - }, - "id": 106, - "properties": { - "cc:admin:id": ["50"], - "cc:oBld:total": 91, - "cc:pop:fifteen-to-twenty-four": 168.39445963835638, - "cc:pop:grid3-total": 300.32090649999435, - "cc:pop:kontur-total": 858.8111383851391, - "cc:pop:men": 489.8568228936533, - "cc:pop:sixty-plus": 55.13323222410145, - "cc:pop:total": 892.1053846255132, - "cc:pop:under-five": 132.21542354394597, - "cc:pop:women": 402.24856173186, - "cc:pop:women-fiften-to-forty-nine": 206.57175005478416, - "cc:pop:wp-total": 1097.1349837047264, - "cc:pop:wp-total-UN": 1270.0601067071368, - "cc:id": "106", - "cc:Name": "Gbainkfay MCHP", - "cc:site": [-11.3387, 8.0452], - "user:parentName": "Gbanti Kamaranka", - "user:code": "OU_193217", - "user:orgUnitId": "QFcMulIoEii", - "user:level": "4", - "user:parentId": "e1eIKM1GIF3" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.558813, 8.09295], - [-10.554907, 8.086185], - [-10.548552, 8.086184], - [-10.548663, 8.085452], - [-10.549148, 8.084962], - [-10.551335, 8.084218], - [-10.551432, 8.083776], - [-10.552172, 8.083011], - [-10.553893, 8.082088], - [-10.554005, 8.081962], - [-10.550043, 8.081961], - [-10.546137, 8.075196], - [-10.550043, 8.068429], - [-10.54873, 8.066157], - [-10.530599, 8.0957], - [-10.5144, 8.121699], - [-10.5098, 8.128799], - [-10.4943, 8.136599], - [-10.493, 8.1366], - [-10.492999, 8.144299], - [-10.4833, 8.1411], - [-10.4774, 8.1443], - [-10.474799, 8.146999], - [-10.469, 8.145], - [-10.468899, 8.1452], - [-10.4649, 8.1518], - [-10.4648, 8.158099], - [-10.4643, 8.160499], - [-10.461999, 8.1657], - [-10.460599, 8.1714], - [-10.459899, 8.1727], - [-10.455299, 8.1787], - [-10.453299, 8.1829], - [-10.451, 8.187099], - [-10.4496, 8.190399], - [-10.4477, 8.193199], - [-10.445199, 8.1958], - [-10.4277, 8.213199], - [-10.4234, 8.217899], - [-10.421399, 8.2207], - [-10.419199, 8.2249], - [-10.415899, 8.2293], - [-10.4117, 8.233099], - [-10.4084, 8.234899], - [-10.402099, 8.2365], - [-10.394, 8.2401], - [-10.3907, 8.2431], - [-10.3889, 8.247], - [-10.39, 8.25], - [-10.391599, 8.253699], - [-10.3938, 8.258199], - [-10.3984, 8.2618], - [-10.401, 8.2634], - [-10.405899, 8.265699], - [-10.408899, 8.267899], - [-10.412199, 8.271699], - [-10.4145, 8.2758], - [-10.4171, 8.278599], - [-10.4197, 8.2797], - [-10.4247, 8.2809], - [-10.4323, 8.2845], - [-10.440499, 8.288499], - [-10.4435, 8.2907], - [-10.446299, 8.293299], - [-10.4493, 8.2967], - [-10.4508, 8.2993], - [-10.4516, 8.3024], - [-10.451799, 8.306], - [-10.4515, 8.314099], - [-10.450399, 8.3179], - [-10.4466, 8.324299], - [-10.453399, 8.33], - [-10.4546, 8.332], - [-10.455399, 8.334299], - [-10.4558, 8.3401], - [-10.455899, 8.363299], - [-10.4563, 8.3672], - [-10.4578, 8.3706], - [-10.467, 8.381899], - [-10.471299, 8.3769], - [-10.4714, 8.376699], - [-10.480927, 8.369925], - [-10.480741, 8.369018], - [-10.47975, 8.366342], - [-10.478485, 8.365468], - [-10.478084, 8.364634], - [-10.477949, 8.363916], - [-10.47821, 8.363259], - [-10.478783, 8.362659], - [-10.479914, 8.362273], - [-10.484639, 8.358417], - [-10.481036, 8.353012], - [-10.481043, 8.353005], - [-10.482555, 8.350932], - [-10.483331, 8.350404], - [-10.483899, 8.349584], - [-10.483749, 8.349583], - [-10.477917, 8.344583], - [-10.478749, 8.34125], - [-10.479582, 8.341249], - [-10.480416, 8.337084], - [-10.480402, 8.33707], - [-10.480176, 8.337298], - [-10.479973, 8.337421], - [-10.479583, 8.336249], - [-10.481249, 8.332916], - [-10.480417, 8.331249], - [-10.480417, 8.329584], - [-10.487082, 8.327083], - [-10.487083, 8.326249], - [-10.490416, 8.323749], - [-10.49125, 8.319583], - [-10.492916, 8.317917], - [-10.493749, 8.317916], - [-10.494583, 8.309583], - [-10.506249, 8.306249], - [-10.50625, 8.304583], - [-10.509814, 8.301374], - [-10.507203, 8.296849], - [-10.507995, 8.296258], - [-10.508798, 8.296222], - [-10.510138, 8.295846], - [-10.511395, 8.2947], - [-10.512232, 8.294685], - [-10.512984, 8.294869], - [-10.513825, 8.294721], - [-10.514825, 8.294779], - [-10.516705, 8.293985], - [-10.51625, 8.291249], - [-10.522082, 8.287916], - [-10.522083, 8.283749], - [-10.52375, 8.281249], - [-10.527083, 8.277916], - [-10.527082, 8.271764], - [-10.526, 8.272603], - [-10.525451, 8.272751], - [-10.522917, 8.269584], - [-10.522083, 8.264584], - [-10.526249, 8.259584], - [-10.531249, 8.260416], - [-10.531928, 8.255673], - [-10.53275, 8.255548], - [-10.533828, 8.255092], - [-10.534136, 8.255087], - [-10.534582, 8.25375], - [-10.52875, 8.24875], - [-10.527917, 8.24625], - [-10.532083, 8.24375], - [-10.537082, 8.243749], - [-10.537917, 8.24125], - [-10.540416, 8.238749], - [-10.53875, 8.235416], - [-10.537917, 8.229584], - [-10.538351, 8.226101], - [-10.539014, 8.225991], - [-10.539243, 8.225752], - [-10.539259, 8.225481], - [-10.53952, 8.225367], - [-10.539464, 8.225136], - [-10.539016, 8.224883], - [-10.53912, 8.224144], - [-10.539581, 8.223623], - [-10.539689, 8.223259], - [-10.539841, 8.223198], - [-10.540277, 8.223626], - [-10.540533, 8.223462], - [-10.540272, 8.221994], - [-10.539814, 8.221969], - [-10.539854, 8.221803], - [-10.53875, 8.221249], - [-10.53875, 8.215417], - [-10.542082, 8.214583], - [-10.544507, 8.212158], - [-10.544338, 8.212035], - [-10.545416, 8.210416], - [-10.545417, 8.200417], - [-10.541783, 8.194603], - [-10.541967, 8.19447], - [-10.543009, 8.193941], - [-10.544464, 8.193472], - [-10.540417, 8.188749], - [-10.540417, 8.187083], - [-10.543749, 8.18125], - [-10.539583, 8.180416], - [-10.544582, 8.170417], - [-10.542917, 8.168749], - [-10.543749, 8.164584], - [-10.547083, 8.161249], - [-10.547082, 8.160416], - [-10.542917, 8.155416], - [-10.542917, 8.153749], - [-10.544582, 8.14625], - [-10.54125, 8.145416], - [-10.54125, 8.132917], - [-10.540828, 8.132494], - [-10.545962, 8.132493], - [-10.549722, 8.125984], - [-10.552916, 8.126249], - [-10.552917, 8.11875], - [-10.557359, 8.112826], - [-10.556535, 8.112561], - [-10.555266, 8.112629], - [-10.555265, 8.112628], - [-10.558813, 8.106482], - [-10.554908, 8.099716], - [-10.558813, 8.09295] - ] - ], - "type": "Polygon" - }, - "id": 107, - "properties": { - "cc:admin:id": ["77"], - "cc:oBld:total": 4957, - "cc:pop:fifteen-to-twenty-four": 5069.481587376172, - "cc:pop:grid3-total": 22525.95477089347, - "cc:pop:kontur-total": 29726.130834431013, - "cc:pop:men": 12890.217897595885, - "cc:pop:sixty-plus": 1445.7771215421988, - "cc:pop:total": 27110.90306921148, - "cc:pop:under-five": 4168.12582897124, - "cc:pop:women": 14220.685171615587, - "cc:pop:women-fiften-to-forty-nine": 7107.716212928928, - "cc:pop:wp-total": 24496.169478026786, - "cc:pop:wp-total-UN": 28413.943577128157, - "cc:id": "107", - "cc:Name": "Gbalahun CHP", - "cc:site": [-10.4887, 8.2545], - "user:parentName": "Luawa", - "user:code": "OU_204898", - "user:orgUnitId": "nDoybVJLD74", - "user:level": "4", - "user:parentId": "cM2BKSrj9F9" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.746389, 9.01403], - [-12.744582, 9.010417], - [-12.742083, 9.009582], - [-12.742082, 9.000417], - [-12.741249, 9.000416], - [-12.737916, 8.99875], - [-12.73375, 8.998749], - [-12.734959, 8.995726], - [-12.735416, 8.995741], - [-12.735416, 8.992917], - [-12.72875, 8.993749], - [-12.727917, 8.992082], - [-12.727916, 8.991249], - [-12.72125, 8.989583], - [-12.715417, 8.989582], - [-12.714583, 8.988749], - [-12.714582, 8.987917], - [-12.710417, 8.985417], - [-12.710416, 8.982916], - [-12.705564, 8.982224], - [-12.705694, 8.982735], - [-12.705435, 8.983969], - [-12.704541, 8.986501], - [-12.704045, 8.986809], - [-12.70125, 8.98625], - [-12.699582, 8.97875], - [-12.692917, 8.97625], - [-12.687917, 8.978749], - [-12.686249, 8.977083], - [-12.68125, 8.977082], - [-12.680416, 8.97625], - [-12.678419, 8.976249], - [-12.678181, 8.974933], - [-12.678275, 8.97375], - [-12.672083, 8.97375], - [-12.670416, 8.975416], - [-12.66375, 8.972082], - [-12.667082, 8.966249], - [-12.667082, 8.96485], - [-12.665966, 8.96595], - [-12.662408, 8.969279], - [-12.659911, 8.971139], - [-12.659203, 8.971598], - [-12.656249, 8.970417], - [-12.654582, 8.970416], - [-12.647916, 8.969582], - [-12.645417, 8.967082], - [-12.645416, 8.966249], - [-12.643749, 8.960417], - [-12.642082, 8.960417], - [-12.634582, 8.962083], - [-12.63375, 8.96375], - [-12.634582, 8.967916], - [-12.636249, 8.97125], - [-12.631249, 8.972916], - [-12.62875, 8.972916], - [-12.628749, 8.965417], - [-12.625416, 8.96375], - [-12.620417, 8.96625], - [-12.619582, 8.970416], - [-12.614583, 8.97125], - [-12.614582, 8.974583], - [-12.61125, 8.974582], - [-12.610416, 8.972083], - [-12.60875, 8.972082], - [-12.608749, 8.97125], - [-12.607083, 8.97125], - [-12.604602, 8.972489], - [-12.604155, 8.972027], - [-12.603571, 8.970179], - [-12.602105, 8.967969], - [-12.601844, 8.967703], - [-12.601396, 8.967285], - [-12.600695, 8.966939], - [-12.599567, 8.966775], - [-12.599617, 8.967991], - [-12.59948, 8.968263], - [-12.59972, 8.96887], - [-12.599725, 8.970075], - [-12.600379, 8.972051], - [-12.600399, 8.972073], - [-12.59622, 8.969985], - [-12.595699, 8.9705], - [-12.5933, 8.973099], - [-12.5918, 8.975199], - [-12.5908, 8.978499], - [-12.5906, 8.9811], - [-12.5907, 8.9881], - [-12.590999, 8.991599], - [-12.591699, 8.994499], - [-12.594, 8.9984], - [-12.597899, 9.006499], - [-12.5985, 9.009199], - [-12.6023, 9.011799], - [-12.609399, 9.013999], - [-12.6139, 9.016], - [-12.617699, 9.016799], - [-12.620699, 9.0168], - [-12.623099, 9.0164], - [-12.625199, 9.0155], - [-12.6269, 9.013799], - [-12.6304, 9.0081], - [-12.6335, 9.006], - [-12.6364, 9.0054], - [-12.6393, 9.0055], - [-12.642199, 9.005999], - [-12.647599, 9.008299], - [-12.6503, 9.009], - [-12.658099, 9.009299], - [-12.663299, 9.0089], - [-12.6697, 9.0073], - [-12.6718, 9.0077], - [-12.676199, 9.009499], - [-12.6813, 9.0121], - [-12.6852, 9.0129], - [-12.692299, 9.013099], - [-12.699299, 9.0129], - [-12.702599, 9.0122], - [-12.7047, 9.011099], - [-12.708899, 9.0077], - [-12.7108, 9.0064], - [-12.7142, 9.0057], - [-12.717699, 9.006099], - [-12.719599, 9.0072], - [-12.7218, 9.01], - [-12.7322, 9.0163], - [-12.735699, 9.019799], - [-12.736558, 9.021364], - [-12.737448, 9.020748], - [-12.738141, 9.019234], - [-12.738645, 9.019076], - [-12.744169, 9.015087], - [-12.746389, 9.01403] - ] - ], - "type": "Polygon" - }, - "id": 108, - "properties": { - "cc:admin:id": ["13"], - "cc:oBld:total": 18, - "cc:pop:fifteen-to-twenty-four": 882.4573058302228, - "cc:pop:grid3-total": 5503.108510515105, - "cc:pop:kontur-total": 4614.308884049274, - "cc:pop:men": 2295.451107328481, - "cc:pop:sixty-plus": 271.1976690817764, - "cc:pop:total": 4849.07619153525, - "cc:pop:under-five": 759.3491704047898, - "cc:pop:women": 2553.62508420677, - "cc:pop:women-fiften-to-forty-nine": 1272.222680628669, - "cc:pop:wp-total": 4557.787824387508, - "cc:pop:wp-total-UN": 5283.158791181788, - "cc:id": "108", - "cc:Name": "Gbalamuya MCHP", - "cc:site": [-12.6562, 9], - "user:parentName": "Gbinleh Dixion", - "user:code": "OU_211219", - "user:orgUnitId": "IPvrsWbm0EM", - "user:level": "4", - "user:parentId": "qIRCo0MfuGb" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.762844, 8.698291], - [-10.76192, 8.696691], - [-10.754108, 8.696691], - [-10.750202, 8.703456], - [-10.743809, 8.703456], - [-10.743808, 8.703455], - [-10.744582, 8.699583], - [-10.727083, 8.69375], - [-10.727083, 8.692903], - [-10.727317, 8.692497], - [-10.727083, 8.69209], - [-10.727082, 8.69125], - [-10.724583, 8.690417], - [-10.724582, 8.689582], - [-10.716249, 8.68375], - [-10.712083, 8.684582], - [-10.710416, 8.67625], - [-10.70375, 8.672082], - [-10.705416, 8.667084], - [-10.705416, 8.66625], - [-10.701249, 8.662916], - [-10.698749, 8.65375], - [-10.697039, 8.652609], - [-10.696495, 8.655589], - [-10.696189, 8.65607], - [-10.692917, 8.655417], - [-10.692082, 8.652917], - [-10.689583, 8.65125], - [-10.692082, 8.647916], - [-10.689583, 8.643749], - [-10.697082, 8.640416], - [-10.695416, 8.63875], - [-10.688749, 8.639583], - [-10.687916, 8.63625], - [-10.687082, 8.636249], - [-10.685417, 8.634584], - [-10.687082, 8.632083], - [-10.686309, 8.626672], - [-10.685939, 8.629016], - [-10.685486, 8.629362], - [-10.685081, 8.629406], - [-10.684315, 8.631603], - [-10.683811, 8.632343], - [-10.683658, 8.63229], - [-10.683328, 8.63254], - [-10.683314, 8.632717], - [-10.682388, 8.632905], - [-10.682103, 8.633222], - [-10.682086, 8.633689], - [-10.680772, 8.634977], - [-10.67973, 8.635227], - [-10.678641, 8.635827], - [-10.677083, 8.63375], - [-10.677082, 8.63125], - [-10.675416, 8.630416], - [-10.674058, 8.624984], - [-10.674529, 8.624862], - [-10.675636, 8.623766], - [-10.675906, 8.623097], - [-10.676495, 8.622665], - [-10.676545, 8.622653], - [-10.669583, 8.617084], - [-10.669582, 8.61625], - [-10.668809, 8.615863], - [-10.668515, 8.616232], - [-10.667907, 8.617398], - [-10.667795, 8.617916], - [-10.667083, 8.617916], - [-10.665416, 8.616249], - [-10.65625, 8.61375], - [-10.655416, 8.61375], - [-10.645417, 8.615417], - [-10.646249, 8.619583], - [-10.644583, 8.619584], - [-10.639582, 8.62375], - [-10.634582, 8.624584], - [-10.62625, 8.62625], - [-10.626249, 8.627917], - [-10.623577, 8.630588], - [-10.623576, 8.630587], - [-10.623359, 8.63009], - [-10.622513, 8.630002], - [-10.623299, 8.632], - [-10.623499, 8.6346], - [-10.622999, 8.6371], - [-10.620799, 8.6424], - [-10.620299, 8.6458], - [-10.6201, 8.652199], - [-10.6194, 8.655699], - [-10.6164, 8.662399], - [-10.6149, 8.664399], - [-10.612499, 8.6665], - [-10.608, 8.668899], - [-10.605799, 8.6706], - [-10.601799, 8.6745], - [-10.5872, 8.689199], - [-10.5851, 8.690999], - [-10.582799, 8.6925], - [-10.5789, 8.694499], - [-10.576799, 8.6961], - [-10.572799, 8.6999], - [-10.561862, 8.710928], - [-10.561097, 8.711701], - [-10.5572, 8.715599], - [-10.5606, 8.718], - [-10.563, 8.719], - [-10.5672, 8.7201], - [-10.5726, 8.7222], - [-10.5754, 8.7228], - [-10.582199, 8.723199], - [-10.585999, 8.723799], - [-10.5918, 8.725899], - [-10.5949, 8.725599], - [-10.5968, 8.724499], - [-10.6017, 8.7207], - [-10.6052, 8.719599], - [-10.6092, 8.7192], - [-10.624199, 8.719399], - [-10.629099, 8.7191], - [-10.6317, 8.718499], - [-10.639299, 8.7149], - [-10.642899, 8.713], - [-10.6449, 8.712299], - [-10.6482, 8.711799], - [-10.658899, 8.7117], - [-10.662799, 8.711999], - [-10.6654, 8.7126], - [-10.673199, 8.7164], - [-10.6764, 8.7197], - [-10.6792, 8.7246], - [-10.682799, 8.728799], - [-10.6865, 8.7322], - [-10.689199, 8.733699], - [-10.691499, 8.734199], - [-10.6951, 8.734399], - [-10.700099, 8.7342], - [-10.704, 8.733199], - [-10.710599, 8.7298], - [-10.713, 8.727699], - [-10.7157, 8.7241], - [-10.7216, 8.720299], - [-10.7255, 8.718599], - [-10.7298, 8.716199], - [-10.733, 8.714899], - [-10.738099, 8.7125], - [-10.742399, 8.7115], - [-10.7445, 8.710799], - [-10.7464, 8.709599], - [-10.7515, 8.705599], - [-10.7561, 8.703299], - [-10.762799, 8.6993], - [-10.762844, 8.698291] - ] - ], - "type": "Polygon" - }, - "id": 109, - "properties": { - "cc:admin:id": ["125"], - "cc:oBld:total": 982, - "cc:pop:fifteen-to-twenty-four": 852.8767543150194, - "cc:pop:grid3-total": 5536.104188115581, - "cc:pop:kontur-total": 4519.171787478248, - "cc:pop:men": 1968.6074809992917, - "cc:pop:sixty-plus": 225.62287360636972, - "cc:pop:total": 4266.120837212166, - "cc:pop:under-five": 748.3875925335515, - "cc:pop:women": 2297.513356212872, - "cc:pop:women-fiften-to-forty-nine": 1094.4780523960833, - "cc:pop:wp-total": 2960.7212852171792, - "cc:pop:wp-total-UN": 3453.5449518696787, - "cc:id": "109", - "cc:Name": "Gbamandu MCHP", - "cc:site": [-10.669, 8.6426], - "user:parentName": "Soa", - "user:code": "OU_233323", - "user:orgUnitId": "AlLmKZIIIT4", - "user:level": "4", - "user:parentId": "iGHlidSFdpu" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.444092, 7.742145], - [-12.443899, 7.742081], - [-12.441902, 7.742173], - [-12.439063, 7.742143], - [-12.43747, 7.742455], - [-12.434778, 7.742604], - [-12.431979, 7.742891], - [-12.4302, 7.742143], - [-12.428577, 7.741301], - [-12.427017, 7.74002], - [-12.426173, 7.738741], - [-12.425332, 7.737337], - [-12.4253, 7.735994], - [-12.424831, 7.733903], - [-12.42452, 7.730503], - [-12.424457, 7.72916], - [-12.424332, 7.727475], - [-12.424082, 7.726071], - [-12.423553, 7.725104], - [-12.423146, 7.724573], - [-12.422211, 7.724697], - [-12.421774, 7.72448], - [-12.421898, 7.723949], - [-12.42118, 7.723512], - [-12.420306, 7.724043], - [-12.419028, 7.72529], - [-12.417748, 7.727007], - [-12.416593, 7.728411], - [-12.415699, 7.728848], - [-12.414299, 7.726984], - [-12.413805, 7.727479], - [-12.41295, 7.727681], - [-12.412011, 7.727457], - [-12.410931, 7.726989], - [-12.40814, 7.724971], - [-12.403964, 7.722466], - [-12.401865, 7.721305], - [-12.398747, 7.720326], - [-12.397218, 7.719938], - [-12.396627, 7.719164], - [-12.396342, 7.717941], - [-12.396261, 7.716801], - [-12.396282, 7.715965], - [-12.39675, 7.715579], - [-12.398075, 7.715986], - [-12.398829, 7.716394], - [-12.399705, 7.716841], - [-12.400499, 7.716963], - [-12.400818, 7.715588], - [-12.399656, 7.714813], - [-12.399004, 7.714507], - [-12.397904, 7.7141], - [-12.397231, 7.714141], - [-12.396397, 7.714365], - [-12.395661, 7.715113], - [-12.39498, 7.716346], - [-12.394975, 7.717076], - [-12.395164, 7.717378], - [-12.395117, 7.71893], - [-12.39476, 7.719302], - [-12.393144, 7.719678], - [-12.391968, 7.719658], - [-12.391381, 7.720345], - [-12.390771, 7.721364], - [-12.390516, 7.722561], - [-12.390617, 7.724037], - [-12.390846, 7.725235], - [-12.391634, 7.726348], - [-12.392224, 7.728188], - [-12.391851, 7.729727], - [-12.391348, 7.730836], - [-12.390872, 7.731638], - [-12.390134, 7.731756], - [-12.389552, 7.731315], - [-12.389069, 7.730652], - [-12.388729, 7.728606], - [-12.388171, 7.726322], - [-12.387585, 7.724913], - [-12.387216, 7.7242], - [-12.385463, 7.723762], - [-12.385403, 7.723582], - [-12.385377, 7.723554], - [-12.385002, 7.721683], - [-12.384988, 7.721669], - [-12.384225, 7.720829], - [-12.383638, 7.720522], - [-12.382008, 7.720217], - [-12.38071, 7.72004], - [-12.379793, 7.719912], - [-12.378698, 7.719607], - [-12.378391, 7.71958], - [-12.377449, 7.719427], - [-12.376889, 7.719096], - [-12.375997, 7.71795], - [-12.375157, 7.716626], - [-12.374241, 7.715455], - [-12.373094, 7.714308], - [-12.371616, 7.713875], - [-12.370369, 7.713774], - [-12.369172, 7.713798], - [-12.368254, 7.714029], - [-12.367262, 7.714359], - [-12.366065, 7.714411], - [-12.365199, 7.715021], - [-12.364841, 7.714099], - [-12.363815, 7.713965], - [-12.362527, 7.713442], - [-12.361238, 7.713306], - [-12.361234, 7.71382], - [-12.360461, 7.713688], - [-12.358918, 7.712777], - [-12.358653, 7.713805], - [-12.359943, 7.713942], - [-12.360458, 7.714203], - [-12.360843, 7.714592], - [-12.360708, 7.71562], - [-12.359673, 7.716], - [-12.359152, 7.716512], - [-12.357861, 7.716762], - [-12.357341, 7.717273], - [-12.356824, 7.7174], - [-12.356821, 7.717914], - [-12.359916, 7.718192], - [-12.360421, 7.720254], - [-12.361103, 7.719987], - [-12.361104, 7.719988], - [-12.360416, 7.721249], - [-12.355819, 7.719717], - [-12.355819, 7.719716], - [-12.356323, 7.718983], - [-12.356537, 7.718986], - [-12.354773, 7.716922], - [-12.354238, 7.716751], - [-12.354109, 7.717167], - [-12.353561, 7.717728], - [-12.350417, 7.714584], - [-12.351249, 7.70875], - [-12.346249, 7.707916], - [-12.342083, 7.704583], - [-12.341331, 7.693311], - [-12.337917, 7.687396], - [-12.337916, 7.67875], - [-12.336557, 7.676939], - [-12.335894, 7.676851], - [-12.334578, 7.677563], - [-12.333105, 7.67956], - [-12.331772, 7.680842], - [-12.330814, 7.682644], - [-12.329392, 7.684124], - [-12.328512, 7.681303], - [-12.327799, 7.680107], - [-12.326722, 7.678939], - [-12.325512, 7.678083], - [-12.324865, 7.677672], - [-12.324249, 7.677376], - [-12.323649, 7.677155], - [-12.322164, 7.6769], - [-12.320438, 7.68003], - [-12.319578, 7.679036], - [-12.319004, 7.678769], - [-12.31776, 7.677149], - [-12.315812, 7.677446], - [-12.314545, 7.677435], - [-12.314351, 7.67727], - [-12.312185, 7.677912], - [-12.30889, 7.678093], - [-12.307601, 7.678687], - [-12.307573, 7.678767], - [-12.307518, 7.678749], - [-12.306262, 7.679694], - [-12.305766, 7.679742], - [-12.305326, 7.67909], - [-12.305266, 7.678614], - [-12.304977, 7.678421], - [-12.304957, 7.678413], - [-12.304749, 7.678444], - [-12.304596, 7.678475], - [-12.30405, 7.678626], - [-12.303918, 7.678732], - [-12.303863, 7.679478], - [-12.303778, 7.679794], - [-12.303617, 7.680058], - [-12.30355, 7.680073], - [-12.303548, 7.680072], - [-12.303544, 7.679518], - [-12.302853, 7.678437], - [-12.30262, 7.677406], - [-12.30217, 7.67661], - [-12.301143, 7.675532], - [-12.29887, 7.675358], - [-12.297674, 7.675004], - [-12.297518, 7.676104], - [-12.297225, 7.676912], - [-12.297097, 7.677037], - [-12.296316, 7.677073], - [-12.295719, 7.678533], - [-12.294675, 7.67908], - [-12.294086, 7.679748], - [-12.293553, 7.680985], - [-12.293186, 7.682989], - [-12.292959, 7.683083], - [-12.291724, 7.682814], - [-12.29136, 7.682234], - [-12.290102, 7.681149], - [-12.288604, 7.679497], - [-12.285107, 7.677126], - [-12.284655, 7.676866], - [-12.284397, 7.675653], - [-12.283259, 7.674696], - [-12.280725, 7.672997], - [-12.28074, 7.673379], - [-12.28052, 7.674225], - [-12.279003, 7.677351], - [-12.278841, 7.677286], - [-12.278983, 7.676917], - [-12.278261, 7.676415], - [-12.278455, 7.675969], - [-12.279512, 7.675774], - [-12.278649, 7.674912], - [-12.277286, 7.675134], - [-12.276617, 7.674551], - [-12.27556, 7.674467], - [-12.274922, 7.674218], - [-12.274922, 7.674216], - [-12.275643, 7.674021], - [-12.273639, 7.671517], - [-12.272582, 7.670793], - [-12.272192, 7.671182], - [-12.272108, 7.672267], - [-12.270911, 7.671544], - [-12.270272, 7.67185], - [-12.271114, 7.672827], - [-12.271113, 7.672828], - [-12.262917, 7.672084], - [-12.262916, 7.670459], - [-12.261976, 7.670376], - [-12.262462, 7.670975], - [-12.26271, 7.671732], - [-12.263001, 7.674379], - [-12.262934, 7.674935], - [-12.261968, 7.676583], - [-12.257675, 7.68541], - [-12.257325, 7.686146], - [-12.259742, 7.688054], - [-12.260068, 7.688561], - [-12.260485, 7.690309], - [-12.260114, 7.691061], - [-12.259177, 7.6922], - [-12.257082, 7.689584], - [-12.252083, 7.68875], - [-12.249582, 7.691249], - [-12.242917, 7.693749], - [-12.232917, 7.692084], - [-12.232917, 7.68625], - [-12.237733, 7.681433], - [-12.2358, 7.682699], - [-12.2339, 7.683399], - [-12.2248, 7.685399], - [-12.2246, 7.6855], - [-12.226699, 7.692099], - [-12.2292, 7.6985], - [-12.2328, 7.7031], - [-12.237199, 7.707299], - [-12.2422, 7.710499], - [-12.252199, 7.713099], - [-12.254899, 7.714499], - [-12.2585, 7.7173], - [-12.262499, 7.721299], - [-12.265119, 7.724189], - [-12.265457, 7.723818], - [-12.26573, 7.723547], - [-12.266578, 7.722766], - [-12.266579, 7.722766], - [-12.267275, 7.723961], - [-12.267602, 7.724568], - [-12.267688, 7.725412], - [-12.267513, 7.726213], - [-12.267957, 7.726176], - [-12.268229, 7.726049], - [-12.268771, 7.726345], - [-12.269353, 7.726925], - [-12.27026, 7.726453], - [-12.27095, 7.726828], - [-12.27163, 7.727961], - [-12.271629, 7.727962], - [-12.271458, 7.728021], - [-12.277119, 7.729233], - [-12.277109, 7.729583], - [-12.277578, 7.729583], - [-12.277361, 7.728998], - [-12.277687, 7.728824], - [-12.278151, 7.729517], - [-12.278632, 7.729229], - [-12.27917, 7.729152], - [-12.280287, 7.729286], - [-12.280635, 7.729863], - [-12.281539, 7.729729], - [-12.282136, 7.729364], - [-12.282358, 7.729598], - [-12.282917, 7.726249], - [-12.285417, 7.725417], - [-12.293749, 7.727083], - [-12.294582, 7.727084], - [-12.297082, 7.727916], - [-12.302083, 7.731249], - [-12.310416, 7.730417], - [-12.317916, 7.731249], - [-12.320417, 7.737916], - [-12.32125, 7.738749], - [-12.322917, 7.73875], - [-12.327083, 7.743749], - [-12.327289, 7.743749], - [-12.327404, 7.743309], - [-12.327564, 7.743046], - [-12.327917, 7.743749], - [-12.330417, 7.74375], - [-12.334582, 7.745416], - [-12.335479, 7.746761], - [-12.335524, 7.746607], - [-12.336116, 7.744917], - [-12.338479, 7.74076], - [-12.340498, 7.740649], - [-12.34125, 7.750417], - [-12.342083, 7.751249], - [-12.344583, 7.75125], - [-12.347083, 7.75375], - [-12.355416, 7.756527], - [-12.355686, 7.757836], - [-12.361147, 7.757836], - [-12.36458, 7.751892], - [-12.36474, 7.752216], - [-12.364738, 7.752731], - [-12.365116, 7.75402], - [-12.364597, 7.754403], - [-12.363304, 7.754783], - [-12.363041, 7.755553], - [-12.364595, 7.754919], - [-12.366143, 7.754928], - [-12.366402, 7.754672], - [-12.3662, 7.754374], - [-12.367189, 7.753268], - [-12.367077, 7.752966], - [-12.367894, 7.753186], - [-12.368247, 7.753059], - [-12.369109, 7.753612], - [-12.36951, 7.753328], - [-12.37012, 7.753923], - [-12.371982, 7.754942], - [-12.373994, 7.756436], - [-12.374777, 7.756808], - [-12.376969, 7.757208], - [-12.377877, 7.757916], - [-12.381985, 7.757916], - [-12.382048, 7.757882], - [-12.382378, 7.757353], - [-12.383493, 7.756456], - [-12.384299, 7.756554], - [-12.384943, 7.756857], - [-12.385417, 7.758749], - [-12.387917, 7.760416], - [-12.388318, 7.760175], - [-12.388495, 7.760249], - [-12.389344, 7.760298], - [-12.390192, 7.759724], - [-12.39119, 7.758552], - [-12.391304, 7.758384], - [-12.392083, 7.757917], - [-12.39398, 7.757441], - [-12.394405, 7.756969], - [-12.395326, 7.756431], - [-12.396323, 7.756719], - [-12.39638, 7.757658], - [-12.39665, 7.7586], - [-12.39688, 7.760057], - [-12.397334, 7.76099], - [-12.397234, 7.761289], - [-12.397499, 7.761339], - [-12.398501, 7.762844], - [-12.398529, 7.763247], - [-12.398985, 7.763171], - [-12.398984, 7.763173], - [-12.398405, 7.763412], - [-12.398421, 7.763545], - [-12.39911, 7.763452], - [-12.398737, 7.763714], - [-12.398622, 7.764013], - [-12.399144, 7.76451], - [-12.399182, 7.765085], - [-12.398703, 7.765756], - [-12.398397, 7.766414], - [-12.407299, 7.769499], - [-12.416399, 7.7709], - [-12.420299, 7.772899], - [-12.424699, 7.7625], - [-12.4292, 7.754099], - [-12.436599, 7.7463], - [-12.441699, 7.7433], - [-12.444092, 7.742145] - ] - ], - "type": "Polygon" - }, - "id": 110, - "properties": { - "cc:admin:id": ["39"], - "cc:oBld:total": 178, - "cc:pop:fifteen-to-twenty-four": 608.3483217856372, - "cc:pop:grid3-total": 3791.409197790556, - "cc:pop:kontur-total": 3638.809381801807, - "cc:pop:men": 1609.268875380623, - "cc:pop:sixty-plus": 203.8229879319445, - "cc:pop:total": 3258.0833871303744, - "cc:pop:under-five": 580.1612334968263, - "cc:pop:women": 1648.814511749751, - "cc:pop:women-fiften-to-forty-nine": 804.460913531955, - "cc:pop:wp-total": 3006.075581146782, - "cc:pop:wp-total-UN": 3470.0615925117286, - "cc:id": "110", - "cc:Name": "Gbamgbama CHC", - "cc:site": [-12.3097, 7.7058], - "user:parentName": "Imperi", - "user:code": "OU_197418", - "user:orgUnitId": "D2rB1GRuh8C", - "user:level": "4", - "user:parentId": "XEyIRFd9pct" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.924582, 8.815417], - [-10.923749, 8.814583], - [-10.919852, 8.814258], - [-10.920113, 8.813802], - [-10.916207, 8.807037], - [-10.909583, 8.807036], - [-10.909583, 8.804007], - [-10.910093, 8.803714], - [-10.911899, 8.803196], - [-10.913095, 8.803053], - [-10.913184, 8.802831], - [-10.912461, 8.802827], - [-10.912433, 8.802975], - [-10.911933, 8.802934], - [-10.910822, 8.803314], - [-10.910765, 8.803209], - [-10.909621, 8.803752], - [-10.909363, 8.804022], - [-10.909362, 8.804021], - [-10.90929, 8.803853], - [-10.907632, 8.805424], - [-10.904629, 8.804989], - [-10.903438, 8.804512], - [-10.903101, 8.804303], - [-10.902957, 8.803991], - [-10.899899, 8.8048], - [-10.895399, 8.804899], - [-10.891899, 8.804299], - [-10.884399, 8.800599], - [-10.8811, 8.797299], - [-10.8769, 8.7889], - [-10.875699, 8.783799], - [-10.873499, 8.778499], - [-10.8719, 8.7721], - [-10.8708, 8.7701], - [-10.868999, 8.767999], - [-10.8658, 8.7654], - [-10.8607, 8.7628], - [-10.857799, 8.760499], - [-10.854999, 8.757399], - [-10.8529, 8.7531], - [-10.850899, 8.749499], - [-10.849099, 8.745599], - [-10.846599, 8.742299], - [-10.8427, 8.739], - [-10.834599, 8.735399], - [-10.8309, 8.7346], - [-10.8283, 8.7347], - [-10.826, 8.7357], - [-10.822499, 8.7387], - [-10.8179, 8.7423], - [-10.820399, 8.747799], - [-10.822999, 8.754099], - [-10.8235, 8.7571], - [-10.8238, 8.7633], - [-10.823999, 8.799199], - [-10.8244, 8.8054], - [-10.8251, 8.8083], - [-10.827, 8.8128], - [-10.829099, 8.823099], - [-10.830999, 8.827599], - [-10.8318, 8.8316], - [-10.832, 8.8347], - [-10.832299, 8.854899], - [-10.8321, 8.860199], - [-10.831599, 8.8632], - [-10.8293, 8.869599], - [-10.829261, 8.869894], - [-10.829602, 8.869894], - [-10.833507, 8.863129], - [-10.84132, 8.863128], - [-10.844212, 8.85812], - [-10.847083, 8.860416], - [-10.85551, 8.859715], - [-10.855852, 8.860416], - [-10.857916, 8.860416], - [-10.861249, 8.857082], - [-10.862083, 8.852917], - [-10.867917, 8.84375], - [-10.877082, 8.84375], - [-10.880507, 8.846489], - [-10.882244, 8.843482], - [-10.888866, 8.843482], - [-10.888576, 8.848749], - [-10.888749, 8.84875], - [-10.898749, 8.844583], - [-10.900416, 8.84375], - [-10.900417, 8.842083], - [-10.907916, 8.842916], - [-10.90875, 8.848749], - [-10.909582, 8.848749], - [-10.912083, 8.842916], - [-10.916249, 8.839583], - [-10.921249, 8.839582], - [-10.923749, 8.837082], - [-10.92375, 8.835824], - [-10.923983, 8.835418], - [-10.92375, 8.835011], - [-10.92375, 8.827082], - [-10.924582, 8.815417] - ] - ], - "type": "Polygon" - }, - "id": 111, - "properties": { - "cc:admin:id": ["119"], - "cc:oBld:total": 145, - "cc:pop:fifteen-to-twenty-four": 391.45427762437396, - "cc:pop:grid3-total": 2262.0776676815753, - "cc:pop:kontur-total": 2010.2867382788386, - "cc:pop:men": 976.2706647171692, - "cc:pop:sixty-plus": 112.55181414121058, - "cc:pop:total": 1978.7098979401121, - "cc:pop:under-five": 325.7238121926365, - "cc:pop:women": 1002.4392332229426, - "cc:pop:women-fiften-to-forty-nine": 495.77605508700645, - "cc:pop:wp-total": 1284.4627435727173, - "cc:pop:wp-total-UN": 1495.110170038051, - "cc:id": "111", - "cc:Name": "Gbangadu MCHP", - "cc:site": [-10.857, 8.7842], - "user:parentName": "Gbense", - "user:code": "OU_233381", - "user:orgUnitId": "lQIe6vtSe1P", - "user:level": "4", - "user:parentId": "TQkG0sX9nca" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.453499, 7.7886], - [-12.452, 7.7862], - [-12.4502, 7.7846], - [-12.446299, 7.782899], - [-12.443499, 7.780699], - [-12.4379, 7.7756], - [-12.435299, 7.773999], - [-12.431899, 7.773099], - [-12.426799, 7.7728], - [-12.4203, 7.772899], - [-12.416399, 7.7709], - [-12.407299, 7.769499], - [-12.394599, 7.7651], - [-12.3904, 7.7657], - [-12.3887, 7.767699], - [-12.3862, 7.774599], - [-12.3841, 7.778499], - [-12.380399, 7.782599], - [-12.376699, 7.784699], - [-12.3643, 7.786799], - [-12.360799, 7.7882], - [-12.3564, 7.7915], - [-12.3514, 7.800099], - [-12.3471, 7.804899], - [-12.3425, 7.806999], - [-12.3391, 7.806799], - [-12.3337, 7.8047], - [-12.327499, 7.801399], - [-12.3209, 7.7985], - [-12.3165, 7.7976], - [-12.312955, 7.797315], - [-12.313493, 7.800538], - [-12.313998, 7.800631], - [-12.316046, 7.802371], - [-12.31375, 7.80375], - [-12.317082, 7.809583], - [-12.318539, 7.810555], - [-12.313204, 7.816412], - [-12.312498, 7.817195], - [-12.31252, 7.817296], - [-12.316249, 7.816722], - [-12.316249, 7.818749], - [-12.315417, 7.820417], - [-12.315417, 7.822083], - [-12.317917, 7.822917], - [-12.318749, 7.827083], - [-12.31625, 7.835416], - [-12.321249, 7.837916], - [-12.322082, 7.837917], - [-12.322568, 7.839856], - [-12.322567, 7.839858], - [-12.318893, 7.839858], - [-12.317903, 7.841571], - [-12.319582, 7.842916], - [-12.319583, 7.844583], - [-12.32375, 7.84375], - [-12.327916, 7.852084], - [-12.324583, 7.862083], - [-12.322917, 7.86375], - [-12.32375, 7.864584], - [-12.32375, 7.872916], - [-12.325416, 7.874584], - [-12.326249, 7.876249], - [-12.322916, 7.877917], - [-12.322082, 7.880417], - [-12.320417, 7.886249], - [-12.321549, 7.889645], - [-12.3219, 7.8899], - [-12.3242, 7.890499], - [-12.3263, 7.890099], - [-12.331399, 7.8879], - [-12.3355, 7.885499], - [-12.343, 7.882], - [-12.345999, 7.8833], - [-12.3474, 7.888299], - [-12.3521, 7.8949], - [-12.3537, 7.895699], - [-12.358699, 7.896199], - [-12.3613, 7.8969], - [-12.3637, 7.8982], - [-12.3688, 7.9022], - [-12.3771, 7.906399], - [-12.380999, 7.906899], - [-12.3844, 7.906299], - [-12.388399, 7.9042], - [-12.3915, 7.902799], - [-12.3958, 7.900399], - [-12.399299, 7.8988], - [-12.400499, 7.898], - [-12.405299, 7.893099], - [-12.409199, 7.8855], - [-12.4102, 7.881999], - [-12.410199, 7.8777], - [-12.408799, 7.874499], - [-12.4031, 7.8709], - [-12.3991, 7.8693], - [-12.3954, 7.8675], - [-12.3904, 7.8647], - [-12.3878, 7.860899], - [-12.3872, 7.856799], - [-12.3872, 7.8513], - [-12.387399, 7.8466], - [-12.3883, 7.843499], - [-12.390199, 7.8399], - [-12.3915, 7.836499], - [-12.393999, 7.8322], - [-12.395899, 7.8283], - [-12.398399, 7.8249], - [-12.4009, 7.822299], - [-12.405299, 7.8198], - [-12.411299, 7.820899], - [-12.4145, 7.8213], - [-12.422305, 7.8215], - [-12.4278, 7.821299], - [-12.4298, 7.821099], - [-12.437399, 7.8186], - [-12.443999, 7.8178], - [-12.447399, 7.816699], - [-12.449599, 7.814399], - [-12.450099, 7.811999], - [-12.449599, 7.809599], - [-12.4476, 7.805599], - [-12.4472, 7.8016], - [-12.4486, 7.797799], - [-12.453199, 7.791699], - [-12.453499, 7.7886] - ] - ], - "type": "Polygon" - }, - "id": 112, - "properties": { - "cc:admin:id": ["140"], - "cc:oBld:total": 8, - "cc:pop:fifteen-to-twenty-four": 2154.4687935734505, - "cc:pop:grid3-total": 12455.852023945774, - "cc:pop:kontur-total": 11997.85688073015, - "cc:pop:men": 5530.103170674923, - "cc:pop:sixty-plus": 790.1776245975682, - "cc:pop:total": 11724.060288113751, - "cc:pop:under-five": 2000.6646844259321, - "cc:pop:women": 6193.957117438824, - "cc:pop:women-fiften-to-forty-nine": 2939.565473989824, - "cc:pop:wp-total": 8836.739062777917, - "cc:pop:wp-total-UN": 10242.249498576919, - "cc:id": "112", - "cc:Name": "Gbangbatoke CHC", - "cc:site": [-12.3805, 7.8077], - "user:parentName": "Lower Banta", - "user:code": "OU_247016", - "user:orgUnitId": "ubsjwFFBaJM", - "user:level": "4", - "user:parentId": "W5fN3G6y1VI" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.324651, 8.179055], - [-11.324438, 8.178539], - [-11.324065, 8.178097], - [-11.32145, 8.177638], - [-11.319583, 8.177606], - [-11.319582, 8.172363], - [-11.318571, 8.172678], - [-11.317916, 8.16875], - [-11.317323, 8.168304], - [-11.314983, 8.164251], - [-11.317196, 8.160417], - [-11.314582, 8.160416], - [-11.309583, 8.155417], - [-11.309582, 8.146368], - [-11.309445, 8.146397], - [-11.309194, 8.146478], - [-11.305815, 8.145932], - [-11.30377, 8.14483], - [-11.303263, 8.143953], - [-11.301229, 8.143952], - [-11.300885, 8.143745], - [-11.300444, 8.143391], - [-11.299495, 8.140336], - [-11.297488, 8.140038], - [-11.297088, 8.139857], - [-11.296802, 8.139178], - [-11.295956, 8.133925], - [-11.295976, 8.133771], - [-11.29625, 8.133749], - [-11.298912, 8.130422], - [-11.300864, 8.130421], - [-11.30125, 8.125416], - [-11.305416, 8.122084], - [-11.306262, 8.122083], - [-11.304461, 8.118963], - [-11.304725, 8.118963], - [-11.304582, 8.118749], - [-11.30375, 8.117917], - [-11.300416, 8.117916], - [-11.292917, 8.110417], - [-11.294314, 8.106223], - [-11.293982, 8.106155], - [-11.293982, 8.106154], - [-11.295416, 8.100417], - [-11.295305, 8.100306], - [-11.292999, 8.1008], - [-11.289, 8.100999], - [-11.2778, 8.101099], - [-11.274, 8.101799], - [-11.269599, 8.104], - [-11.2613, 8.107899], - [-11.256199, 8.1092], - [-11.251, 8.111399], - [-11.248299, 8.1119], - [-11.2407, 8.1122], - [-11.240199, 8.116], - [-11.2401, 8.1219], - [-11.240299, 8.126799], - [-11.241099, 8.130499], - [-11.247, 8.1423], - [-11.2477, 8.1458], - [-11.248199, 8.156799], - [-11.248899, 8.160199], - [-11.250899, 8.164699], - [-11.251598, 8.167195], - [-11.252199, 8.172599], - [-11.253099, 8.175899], - [-11.255099, 8.179499], - [-11.2565, 8.1826], - [-11.2585, 8.1862], - [-11.2593, 8.1887], - [-11.259599, 8.192799], - [-11.258799, 8.1975], - [-11.257, 8.2024], - [-11.2571, 8.204999], - [-11.258799, 8.2093], - [-11.258899, 8.2125], - [-11.2557, 8.219899], - [-11.2532, 8.224199], - [-11.2513, 8.228099], - [-11.246499, 8.2342], - [-11.2431, 8.2423], - [-11.244499, 8.247499], - [-11.245399, 8.251699], - [-11.246299, 8.254199], - [-11.2496, 8.259499], - [-11.2524, 8.261], - [-11.2562, 8.261799], - [-11.2629, 8.260599], - [-11.2664, 8.258599], - [-11.2699, 8.254999], - [-11.2729, 8.2509], - [-11.2768, 8.247999], - [-11.285999, 8.2391], - [-11.289199, 8.2365], - [-11.2978, 8.232099], - [-11.3006, 8.231399], - [-11.304599, 8.2312], - [-11.306249, 8.231216], - [-11.30625, 8.228749], - [-11.314582, 8.222083], - [-11.312082, 8.212084], - [-11.306725, 8.211413], - [-11.306385, 8.209406], - [-11.306377, 8.208907], - [-11.30659, 8.208505], - [-11.306604, 8.206935], - [-11.307058, 8.205116], - [-11.30759, 8.203846], - [-11.299584, 8.198749], - [-11.302834, 8.197], - [-11.303203, 8.196361], - [-11.30402, 8.19636], - [-11.310416, 8.192917], - [-11.313749, 8.193749], - [-11.317083, 8.185416], - [-11.321249, 8.180417], - [-11.324651, 8.179055] - ] - ], - "type": "Polygon" - }, - "id": 113, - "properties": { - "cc:admin:id": ["123"], - "cc:oBld:total": 727, - "cc:pop:fifteen-to-twenty-four": 2052.1801052498854, - "cc:pop:grid3-total": 4013.9609945730617, - "cc:pop:kontur-total": 10742.969888152234, - "cc:pop:men": 5581.705368498563, - "cc:pop:sixty-plus": 658.83268439336, - "cc:pop:total": 10985.216932992811, - "cc:pop:under-five": 1761.5593514857737, - "cc:pop:women": 5403.511564494247, - "cc:pop:women-fiften-to-forty-nine": 2655.7575036990925, - "cc:pop:wp-total": 5812.012130537051, - "cc:pop:wp-total-UN": 6738.531672579202, - "cc:id": "113", - "cc:Name": "Gbangeima MCHP", - "cc:site": [-11.3059, 8.1724], - "user:parentName": "Simbaru", - "user:code": "OU_222688", - "user:orgUnitId": "VH7hLUaypel", - "user:level": "4", - "user:parentId": "A3Fh37HWBWE" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.771067, 8.001093], - [-11.771021, 8.000563], - [-11.770698, 7.999866], - [-11.770753, 7.999594], - [-11.76869, 7.99673], - [-11.767991, 7.995754], - [-11.767355, 7.994834], - [-11.766626, 7.993307], - [-11.766124, 7.991572], - [-11.766041, 7.991203], - [-11.765713, 7.989874], - [-11.76527, 7.988222], - [-11.76478, 7.986358], - [-11.764252, 7.984146], - [-11.763968, 7.983078], - [-11.763192, 7.983415], - [-11.762823, 7.98377], - [-11.762519, 7.984052], - [-11.762491, 7.984074], - [-11.761596, 7.984891], - [-11.760716, 7.985883], - [-11.7603, 7.986734], - [-11.759536, 7.987108], - [-11.759353, 7.987372], - [-11.758208, 7.987065], - [-11.756226, 7.987539], - [-11.755692, 7.987824], - [-11.754935, 7.987021], - [-11.754441, 7.986148], - [-11.753444, 7.982059], - [-11.753449, 7.981767], - [-11.752996, 7.980798], - [-11.751603, 7.979059], - [-11.751303, 7.978848], - [-11.751216, 7.978776], - [-11.750947, 7.978192], - [-11.750656, 7.976231], - [-11.74979, 7.976228], - [-11.749181, 7.976244], - [-11.748699, 7.976246], - [-11.748731, 7.976899], - [-11.748709, 7.977481], - [-11.748399, 7.977647], - [-11.748067, 7.977545], - [-11.7479, 7.977707], - [-11.747892, 7.97843], - [-11.74736, 7.97835], - [-11.747094, 7.978327], - [-11.747114, 7.978842], - [-11.746137, 7.978914], - [-11.745614, 7.978718], - [-11.745784, 7.978011], - [-11.745847, 7.977717], - [-11.745917, 7.977195], - [-11.746217, 7.976953], - [-11.746263, 7.976657], - [-11.745829, 7.977059], - [-11.745286, 7.977007], - [-11.744783, 7.977164], - [-11.744767, 7.977225], - [-11.744952, 7.977538], - [-11.744614, 7.977718], - [-11.744535, 7.978047], - [-11.744148, 7.977809], - [-11.74383, 7.97786], - [-11.743103, 7.977713], - [-11.742992, 7.977529], - [-11.742803, 7.977674], - [-11.741256, 7.977374], - [-11.741167, 7.977391], - [-11.740602, 7.977328], - [-11.740345, 7.977213], - [-11.740196, 7.976917], - [-11.739933, 7.977158], - [-11.739142, 7.977977], - [-11.738835, 7.978109], - [-11.738727, 7.978806], - [-11.738066, 7.978651], - [-11.737562, 7.978546], - [-11.736799, 7.978642], - [-11.735404, 7.977301], - [-11.735351, 7.976917], - [-11.734297, 7.976973], - [-11.733889, 7.976992], - [-11.732663, 7.976962], - [-11.732406, 7.977207], - [-11.732706, 7.981971], - [-11.732557, 7.982565], - [-11.732147, 7.982588], - [-11.732156, 7.981745], - [-11.731616, 7.981826], - [-11.731079, 7.98188], - [-11.73058, 7.981984], - [-11.730719, 7.984488], - [-11.730422, 7.985481], - [-11.72985, 7.985389], - [-11.729674, 7.985494], - [-11.729505, 7.985865], - [-11.728986, 7.985732], - [-11.728507, 7.985618], - [-11.728187, 7.986382], - [-11.7283, 7.986758], - [-11.728132, 7.987206], - [-11.727746, 7.9874], - [-11.727529, 7.987449], - [-11.725574, 7.987998], - [-11.724873, 7.989236], - [-11.724803, 7.98929], - [-11.721996, 7.987983], - [-11.721854, 7.987937], - [-11.721845, 7.987449], - [-11.721984, 7.986038], - [-11.72221, 7.985363], - [-11.722351, 7.985033], - [-11.722537, 7.984584], - [-11.722811, 7.983873], - [-11.722693, 7.983873], - [-11.722267, 7.983953], - [-11.721625, 7.984049], - [-11.721544, 7.984274], - [-11.721356, 7.984145], - [-11.720846, 7.984653], - [-11.720769, 7.984948], - [-11.719945, 7.985183], - [-11.719458, 7.985386], - [-11.718881, 7.985296], - [-11.717559, 7.988149], - [-11.717333, 7.988483], - [-11.716222, 7.989162], - [-11.715343, 7.989295], - [-11.715042, 7.989546], - [-11.715097, 7.989886], - [-11.714677, 7.990657], - [-11.714051, 7.991423], - [-11.713506, 7.991683], - [-11.713077, 7.992484], - [-11.712567, 7.992998], - [-11.712565, 7.992997], - [-11.712283, 7.99094], - [-11.712149, 7.99078], - [-11.711564, 7.990623], - [-11.71125, 7.99125], - [-11.711249, 7.992083], - [-11.710508, 7.992454], - [-11.711319, 7.992487], - [-11.71132, 7.992489], - [-11.710429, 7.993376], - [-11.709145, 7.993571], - [-11.708674, 7.993372], - [-11.704582, 7.995416], - [-11.702917, 7.995417], - [-11.702917, 7.999583], - [-11.70375, 8.002916], - [-11.706865, 8.004993], - [-11.70686, 8.005144], - [-11.707102, 8.005625], - [-11.707408, 8.005943], - [-11.707492, 8.006369], - [-11.708313, 8.006413], - [-11.708476, 8.006067], - [-11.708749, 8.006249], - [-11.709583, 8.008749], - [-11.711335, 8.009626], - [-11.711765, 8.009089], - [-11.711988, 8.00852], - [-11.711368, 8.007726], - [-11.71151, 8.007386], - [-11.711314, 8.007091], - [-11.711487, 8.006622], - [-11.711304, 8.006007], - [-11.719582, 8.00375], - [-11.719583, 8.002916], - [-11.722916, 8.002084], - [-11.724583, 8.004583], - [-11.729018, 8.004583], - [-11.72928, 8.004205], - [-11.730416, 8.004584], - [-11.73125, 8.008749], - [-11.73375, 8.010416], - [-11.739583, 8.00875], - [-11.744582, 8.013749], - [-11.745417, 8.015416], - [-11.746249, 8.01625], - [-11.74625, 8.024583], - [-11.754582, 8.022916], - [-11.757929, 8.020908], - [-11.756386, 8.018099], - [-11.756752, 8.014629], - [-11.756716, 8.014272], - [-11.763749, 8.009584], - [-11.766249, 8.007083], - [-11.765417, 8.005416], - [-11.764583, 8.000417], - [-11.767082, 7.999584], - [-11.769582, 8.000416], - [-11.769583, 8.002083], - [-11.771067, 8.001093] - ] - ], - "type": "Polygon" - }, - "id": 114, - "properties": { - "cc:admin:id": ["46"], - "cc:oBld:total": 1886, - "cc:pop:fifteen-to-twenty-four": 2641.5545591828954, - "cc:pop:grid3-total": 10254.686794052659, - "cc:pop:kontur-total": 14066.11816125909, - "cc:pop:men": 7118.958594583019, - "cc:pop:sixty-plus": 1078.69007130301, - "cc:pop:total": 14665.611302333351, - "cc:pop:under-five": 2416.331026083266, - "cc:pop:women": 7546.652707750339, - "cc:pop:women-fiften-to-forty-nine": 3588.700168096852, - "cc:pop:wp-total": 11356.251235828377, - "cc:pop:wp-total-UN": 13144.865302195032, - "cc:id": "114", - "cc:Name": "Gbanja Town MCHP", - "cc:site": [-11.7435, 7.9897], - "user:parentName": "Kakua", - "user:code": "OU_841", - "user:orgUnitId": "E9oBVjyEaCe", - "user:level": "4", - "user:parentId": "U6Kr7Gtpidn" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.350416, 9.209583], - [-12.342917, 9.20625], - [-12.340416, 9.204583], - [-12.338551, 9.204583], - [-12.338417, 9.204708], - [-12.337996, 9.205416], - [-12.337083, 9.205416], - [-12.330417, 9.202083], - [-12.329583, 9.198749], - [-12.332916, 9.19125], - [-12.332082, 9.191249], - [-12.324768, 9.189787], - [-12.324781, 9.189721], - [-12.326154, 9.189406], - [-12.325995, 9.188872], - [-12.325389, 9.187998], - [-12.324493, 9.187028], - [-12.324268, 9.186356], - [-12.323601, 9.185656], - [-12.323415, 9.185852], - [-12.321898, 9.187108], - [-12.321123, 9.187363], - [-12.31867, 9.187424], - [-12.317898, 9.187425], - [-12.317601, 9.187487], - [-12.31625, 9.182083], - [-12.316249, 9.177917], - [-12.31125, 9.17625], - [-12.307083, 9.184582], - [-12.307082, 9.187083], - [-12.30375, 9.187916], - [-12.30125, 9.187083], - [-12.300416, 9.187916], - [-12.29375, 9.187083], - [-12.292082, 9.190416], - [-12.288959, 9.189791], - [-12.288762, 9.189111], - [-12.284583, 9.187917], - [-12.277083, 9.187917], - [-12.275045, 9.191993], - [-12.276265, 9.192143], - [-12.276662, 9.192281], - [-12.277916, 9.195417], - [-12.274583, 9.198749], - [-12.270417, 9.197917], - [-12.270416, 9.209582], - [-12.266942, 9.210742], - [-12.267186, 9.21168], - [-12.268129, 9.213516], - [-12.268574, 9.214008], - [-12.268797, 9.215336], - [-12.269993, 9.216331], - [-12.270664, 9.217812], - [-12.268073, 9.218188], - [-12.266451, 9.218702], - [-12.264198, 9.21886], - [-12.260334, 9.218069], - [-12.258562, 9.217417], - [-12.257912, 9.217023], - [-12.257374, 9.216502], - [-12.25625, 9.21875], - [-12.25625, 9.227082], - [-12.255416, 9.230416], - [-12.250417, 9.229583], - [-12.242083, 9.232916], - [-12.240417, 9.232083], - [-12.239788, 9.23522], - [-12.239348, 9.235182], - [-12.237802, 9.235371], - [-12.236742, 9.236693], - [-12.236001, 9.237226], - [-12.23508, 9.237504], - [-12.23407, 9.238135], - [-12.233995, 9.238162], - [-12.236249, 9.240417], - [-12.234583, 9.243749], - [-12.232082, 9.24375], - [-12.227083, 9.247082], - [-12.225417, 9.249582], - [-12.224703, 9.249583], - [-12.22487, 9.250075], - [-12.225466, 9.250346], - [-12.226028, 9.250853], - [-12.226031, 9.251096], - [-12.230199, 9.251599], - [-12.233599, 9.252299], - [-12.239, 9.2545], - [-12.2437, 9.2551], - [-12.254399, 9.255199], - [-12.2586, 9.254699], - [-12.2607, 9.253999], - [-12.264299, 9.2521], - [-12.267499, 9.2507], - [-12.271699, 9.2483], - [-12.2749, 9.246999], - [-12.2792, 9.244599], - [-12.2824, 9.243299], - [-12.286599, 9.2409], - [-12.289699, 9.2394], - [-12.2915, 9.237999], - [-12.2948, 9.233899], - [-12.3007, 9.229999], - [-12.308999, 9.2261], - [-12.3118, 9.225499], - [-12.320499, 9.2251], - [-12.323199, 9.224399], - [-12.3264, 9.222299], - [-12.331199, 9.2177], - [-12.333399, 9.2159], - [-12.3369, 9.2144], - [-12.3397, 9.2141], - [-12.34977, 9.214099], - [-12.350416, 9.209583] - ] - ], - "type": "Polygon" - }, - "id": 115, - "properties": { - "cc:admin:id": ["118"], - "cc:oBld:total": 249, - "cc:pop:fifteen-to-twenty-four": 554.7724539857307, - "cc:pop:grid3-total": 2434.3906772072046, - "cc:pop:kontur-total": 2991.9966506984574, - "cc:pop:men": 1409.260045275745, - "cc:pop:sixty-plus": 198.0807544940426, - "cc:pop:total": 2977.3098222667923, - "cc:pop:under-five": 467.4165865404352, - "cc:pop:women": 1568.0497769910469, - "cc:pop:women-fiften-to-forty-nine": 767.8027712956058, - "cc:pop:wp-total": 2562.336881949341, - "cc:pop:wp-total-UN": 2967.5167818342, - "cc:id": "115", - "cc:Name": "Gbanti CHC", - "cc:site": [-12.2658, 9.2491], - "user:parentName": "Gbanti Kamaranka", - "user:code": "OU_193216", - "user:orgUnitId": "uedNhvYPMNu", - "user:level": "4", - "user:parentId": "e1eIKM1GIF3" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - [-12.524299, 7.384], - [-12.522599, 7.3837], - [-12.509901, 7.3837], - [-12.509899, 7.3835], - [-12.506299, 7.383499], - [-12.503799, 7.3829], - [-12.4999, 7.382899], - [-12.497599, 7.382099], - [-12.4926, 7.3818], - [-12.488799, 7.380999], - [-12.4815, 7.380399], - [-12.478799, 7.3793], - [-12.476799, 7.379299], - [-12.4743, 7.3788], - [-12.472599, 7.377899], - [-12.470099, 7.377399], - [-12.4654, 7.377099], - [-12.462599, 7.376], - [-12.460999, 7.375999], - [-12.457899, 7.374599], - [-12.453499, 7.373799], - [-12.451, 7.3729], - [-12.449599, 7.3721], - [-12.4476, 7.372099], - [-12.447099, 7.3715], - [-12.4449, 7.371299], - [-12.442899, 7.3704], - [-12.441299, 7.370399], - [-12.4376, 7.369], - [-12.435999, 7.368799], - [-12.433199, 7.3676], - [-12.4304, 7.367599], - [-12.428799, 7.3668], - [-12.4274, 7.366799], - [-12.425399, 7.366], - [-12.424, 7.365999], - [-12.421799, 7.3651], - [-12.419899, 7.365099], - [-12.4162, 7.3638], - [-12.414299, 7.3626], - [-12.4126, 7.362599], - [-12.411499, 7.3618], - [-12.4096, 7.361799], - [-12.407899, 7.360999], - [-12.4051, 7.3601], - [-12.4024, 7.359899], - [-12.399599, 7.3585], - [-12.3968, 7.3582], - [-12.3951, 7.3576], - [-12.393699, 7.3565], - [-12.3912, 7.356499], - [-12.389, 7.3557], - [-12.388799, 7.355099], - [-12.3868, 7.3546], - [-12.3851, 7.354599], - [-12.383999, 7.3535], - [-12.3813, 7.353499], - [-12.380399, 7.3526], - [-12.3782, 7.352599], - [-12.377399, 7.3518], - [-12.3751, 7.351], - [-12.3729, 7.350999], - [-12.371499, 7.3496], - [-12.3701, 7.349], - [-12.3663, 7.348499], - [-12.365099, 7.3476], - [-12.363499, 7.347599], - [-12.362399, 7.3468], - [-12.3607, 7.346499], - [-12.359599, 7.3457], - [-12.3582, 7.345699], - [-12.356799, 7.3449], - [-12.3546, 7.3446], - [-12.354299, 7.344], - [-12.352099, 7.343799], - [-12.3499, 7.3429], - [-12.348799, 7.342099], - [-12.3465, 7.3413], - [-12.344899, 7.341299], - [-12.3429, 7.340699], - [-12.341499, 7.339599], - [-12.3368, 7.3385], - [-12.333199, 7.3365], - [-12.3312, 7.336499], - [-12.330399, 7.335999], - [-12.327099, 7.335099], - [-12.324899, 7.334], - [-12.3226, 7.333799], - [-12.321499, 7.3329], - [-12.320399, 7.332899], - [-12.319299, 7.3315], - [-12.317399, 7.331499], - [-12.316299, 7.330699], - [-12.313999, 7.329899], - [-12.3113, 7.3293], - [-12.310099, 7.3282], - [-12.3065, 7.327399], - [-12.304299, 7.326], - [-12.303199, 7.325999], - [-12.300999, 7.3246], - [-12.2971, 7.323799], - [-12.295999, 7.3229], - [-12.294899, 7.322899], - [-12.292899, 7.3215], - [-12.2913, 7.321499], - [-12.290999, 7.320999], - [-12.2876, 7.3193], - [-12.286, 7.319299], - [-12.285099, 7.3185], - [-12.283999, 7.318499], - [-12.282399, 7.3174], - [-12.2796, 7.3168], - [-12.278799, 7.315999], - [-12.2738, 7.3143], - [-12.272599, 7.3135], - [-12.2712, 7.3132], - [-12.270699, 7.3124], - [-12.269, 7.312399], - [-12.267899, 7.3115], - [-12.2663, 7.3113], - [-12.265699, 7.3104], - [-12.2643, 7.310399], - [-12.2613, 7.309], - [-12.259, 7.308499], - [-12.257399, 7.307399], - [-12.254899, 7.3065], - [-12.2538, 7.306499], - [-12.252599, 7.3054], - [-12.251299, 7.305399], - [-12.2482, 7.304], - [-12.247899, 7.3035], - [-12.246299, 7.303499], - [-12.244299, 7.3021], - [-12.2424, 7.3018], - [-12.241799, 7.301], - [-12.2404, 7.3004], - [-12.2382, 7.300099], - [-12.237399, 7.2993], - [-12.236, 7.299299], - [-12.234299, 7.2982], - [-12.2313, 7.2976], - [-12.230399, 7.296799], - [-12.228199, 7.295999], - [-12.2257, 7.2954], - [-12.224899, 7.2946], - [-12.2235, 7.294599], - [-12.222399, 7.2935], - [-12.2201, 7.293199], - [-12.217899, 7.2918], - [-12.216799, 7.291799], - [-12.215399, 7.290999], - [-12.2121, 7.2899], - [-12.210399, 7.289], - [-12.2093, 7.288999], - [-12.208499, 7.2882], - [-12.2046, 7.2871], - [-12.204299, 7.2865], - [-12.2024, 7.286299], - [-12.201799, 7.2857], - [-12.1987, 7.2849], - [-12.197899, 7.284], - [-12.1963, 7.283999], - [-12.194899, 7.2829], - [-12.1921, 7.282599], - [-12.190699, 7.2815], - [-12.189299, 7.281499], - [-12.186799, 7.2801], - [-12.1854, 7.280099], - [-12.184599, 7.278999], - [-12.182399, 7.278199], - [-12.179, 7.2776], - [-12.178499, 7.2768], - [-12.1754, 7.276199], - [-12.173199, 7.2749], - [-12.171299, 7.274599], - [-12.1687, 7.273499], - [-12.167399, 7.2724], - [-12.1665, 7.272399], - [-12.164299, 7.2713], - [-12.162599, 7.271299], - [-12.161299, 7.2704], - [-12.158699, 7.269599], - [-12.1551, 7.2679], - [-12.1532, 7.267599], - [-12.152599, 7.267099], - [-12.1493, 7.266299], - [-12.147899, 7.2654], - [-12.1449, 7.2646], - [-12.142399, 7.2632], - [-12.1413, 7.263199], - [-12.139599, 7.262399], - [-12.1354, 7.2613], - [-12.134899, 7.2604], - [-12.1329, 7.260099], - [-12.131799, 7.2593], - [-12.1301, 7.258999], - [-12.128999, 7.2582], - [-12.1268, 7.2576], - [-12.126499, 7.2571], - [-12.1238, 7.2568], - [-12.123199, 7.256], - [-12.1207, 7.2554], - [-12.119899, 7.2546], - [-12.117899, 7.254599], - [-12.115999, 7.2535], - [-12.114899, 7.253499], - [-12.110399, 7.2512], - [-12.107899, 7.250999], - [-12.105999, 7.2496], - [-12.1035, 7.249299], - [-12.102599, 7.2482], - [-12.101199, 7.248199], - [-12.100099, 7.247399], - [-12.0954, 7.2454], - [-12.093999, 7.245399], - [-12.091799, 7.244], - [-12.0893, 7.243499], - [-12.088199, 7.2426], - [-12.0868, 7.242599], - [-12.085999, 7.2418], - [-12.0818, 7.2407], - [-12.080999, 7.2399], - [-12.079, 7.239599], - [-12.078199, 7.238799], - [-12.0721, 7.236799], - [-12.070999, 7.2357], - [-12.0674, 7.234899], - [-12.064599, 7.233199], - [-12.0604, 7.231799], - [-12.059299, 7.2307], - [-12.0551, 7.2299], - [-12.054299, 7.228999], - [-12.0496, 7.2274], - [-12.048199, 7.227399], - [-12.044899, 7.2254], - [-12.043799, 7.225399], - [-12.041299, 7.224], - [-12.039899, 7.223999], - [-12.0349, 7.2215], - [-12.0318, 7.2206], - [-12.0294, 7.2224], - [-12.027899, 7.2283], - [-12.0242, 7.236599], - [-12.0217, 7.241799], - [-12.0204, 7.247699], - [-12.018692, 7.251278], - [-12.019753, 7.251872], - [-12.020522, 7.25265], - [-12.021808, 7.253173], - [-12.022581, 7.253178], - [-12.023358, 7.25254], - [-12.023622, 7.25177], - [-12.02465, 7.252162], - [-12.024907, 7.252421], - [-12.025678, 7.252556], - [-12.026447, 7.253461], - [-12.027476, 7.253855], - [-12.030041, 7.255673], - [-12.034402, 7.259178], - [-12.037483, 7.261], - [-12.040009, 7.262925], - [-12.042876, 7.264382], - [-12.047252, 7.265699], - [-12.050078, 7.26591], - [-12.053697, 7.265741], - [-12.055248, 7.265235], - [-12.056799, 7.264474], - [-12.058319, 7.263165], - [-12.059045, 7.26214], - [-12.059064, 7.261386], - [-12.05996, 7.257878], - [-12.060547, 7.257018], - [-12.060648, 7.256562], - [-12.061627, 7.255879], - [-12.062665, 7.254856], - [-12.064218, 7.253837], - [-12.064953, 7.252957], - [-12.066269, 7.251944], - [-12.068752, 7.25039], - [-12.072632, 7.248355], - [-12.076536, 7.247399], - [-12.080352, 7.246819], - [-12.083883, 7.246927], - [-12.086286, 7.247357], - [-12.089135, 7.248203], - [-12.09145, 7.24912], - [-12.092221, 7.249768], - [-12.094792, 7.250944], - [-12.099911, 7.254584], - [-12.104759, 7.257561], - [-12.104583, 7.257917], - [-12.105879, 7.261803], - [-12.111213, 7.263535], - [-12.112316, 7.263763], - [-12.113312, 7.260281], - [-12.113314, 7.26028], - [-12.114833, 7.260747], - [-12.124201, 7.265309], - [-12.127448, 7.267185], - [-12.125939, 7.270204], - [-12.127639, 7.271124], - [-12.128898, 7.27213], - [-12.131937, 7.2697], - [-12.131959, 7.269715], - [-12.132595, 7.270458], - [-12.132955, 7.27127], - [-12.134363, 7.272567], - [-12.137148, 7.277702], - [-12.137808, 7.278511], - [-12.139695, 7.281587], - [-12.140981, 7.283235], - [-12.141382, 7.284199], - [-12.141874, 7.287806], - [-12.141859, 7.290381], - [-12.141589, 7.292182], - [-12.140537, 7.295522], - [-12.139753, 7.297062], - [-12.139258, 7.297611], - [-12.138841, 7.298472], - [-12.138233, 7.298626], - [-12.138094, 7.29875], - [-12.13375, 7.29875], - [-12.133749, 7.302262], - [-12.133529, 7.302431], - [-12.132948, 7.303382], - [-12.132742, 7.304742], - [-12.132994, 7.305517], - [-12.133749, 7.306793], - [-12.13375, 7.309171], - [-12.134337, 7.309436], - [-12.138025, 7.308514], - [-12.138026, 7.308515], - [-12.137122, 7.309408], - [-12.137301, 7.314241], - [-12.136928, 7.316881], - [-12.136386, 7.318009], - [-12.134774, 7.320513], - [-12.130108, 7.325509], - [-12.129311, 7.327933], - [-12.129583, 7.328749], - [-12.131059, 7.329242], - [-12.130114, 7.334774], - [-12.129604, 7.335581], - [-12.129598, 7.33599], - [-12.129596, 7.33599], - [-12.128825, 7.334963], - [-12.127814, 7.33532], - [-12.126592, 7.335199], - [-12.12625, 7.335009], - [-12.126249, 7.336923], - [-12.125174, 7.336707], - [-12.123987, 7.336186], - [-12.123267, 7.3352], - [-12.121518, 7.330539], - [-12.121164, 7.330178], - [-12.120153, 7.329838], - [-12.119491, 7.329754], - [-12.118533, 7.329885], - [-12.117373, 7.330411], - [-12.116693, 7.330917], - [-12.115803, 7.331929], - [-12.11487, 7.333536], - [-12.114236, 7.335009], - [-12.113744, 7.336705], - [-12.11291, 7.341169], - [-12.112593, 7.342248], - [-12.107917, 7.342916], - [-12.107324, 7.342719], - [-12.107054, 7.341873], - [-12.107055, 7.341871], - [-12.107204, 7.341868], - [-12.10768, 7.342525], - [-12.10755, 7.34115], - [-12.107551, 7.341149], - [-12.108027, 7.341862], - [-12.107553, 7.33997], - [-12.107119, 7.338954], - [-12.106379, 7.3378], - [-12.105732, 7.337007], - [-12.1047, 7.336133], - [-12.106795, 7.334037], - [-12.105444, 7.332907], - [-12.103883, 7.332306], - [-12.101882, 7.332191], - [-12.099598, 7.332677], - [-12.097844, 7.333612], - [-12.096227, 7.335694], - [-12.094872, 7.338195], - [-12.093894, 7.34082], - [-12.093087, 7.34182], - [-12.092406, 7.342247], - [-12.089878, 7.343254], - [-12.089109, 7.343231], - [-12.089019, 7.343294], - [-12.090111, 7.34821], - [-12.089832, 7.348349], - [-12.08861, 7.348443], - [-12.086304, 7.349256], - [-12.084563, 7.349083], - [-12.08311, 7.348626], - [-12.08231, 7.34854], - [-12.079841, 7.347721], - [-12.080913, 7.343427], - [-12.08077, 7.343425], - [-12.078717, 7.343165], - [-12.075188, 7.343477], - [-12.073967, 7.343879], - [-12.073389, 7.344252], - [-12.070834, 7.345042], - [-12.070617, 7.345153], - [-12.071137, 7.348799], - [-12.07086, 7.349007], - [-12.069883, 7.35002], - [-12.066903, 7.354476], - [-12.065823, 7.356816], - [-12.065416, 7.358849], - [-12.06492, 7.360242], - [-12.0662, 7.3604], - [-12.068699, 7.361499], - [-12.072999, 7.364899], - [-12.0767, 7.366699], - [-12.0846, 7.3678], - [-12.0904, 7.3701], - [-12.0972, 7.3718], - [-12.1017, 7.3738], - [-12.1042, 7.3744], - [-12.109599, 7.374999], - [-12.112099, 7.375599], - [-12.1176, 7.3778], - [-12.1223, 7.3783], - [-12.130999, 7.378399], - [-12.133799, 7.3789], - [-12.1372, 7.3807], - [-12.1402, 7.3833], - [-12.147199, 7.390399], - [-12.150599, 7.392399], - [-12.1534, 7.3931], - [-12.161099, 7.393399], - [-12.164799, 7.394099], - [-12.172999, 7.398099], - [-12.1753, 7.4005], - [-12.1786, 7.4056], - [-12.1814, 7.4079], - [-12.1873, 7.4109], - [-12.1911, 7.4118], - [-12.1941, 7.411899], - [-12.208599, 7.4118], - [-12.214599, 7.412099], - [-12.2175, 7.4127], - [-12.2221, 7.4146], - [-12.225799, 7.415199], - [-12.231399, 7.415399], - [-12.2335, 7.4158], - [-12.2354, 7.4169], - [-12.236699, 7.420599], - [-12.236799, 7.426899], - [-12.237099, 7.430699], - [-12.2383, 7.433399], - [-12.2414, 7.436], - [-12.2432, 7.4385], - [-12.2449, 7.442799], - [-12.246399, 7.444399], - [-12.250699, 7.445999], - [-12.253099, 7.447199], - [-12.2554, 7.4489], - [-12.2583, 7.4516], - [-12.261099, 7.454899], - [-12.2637, 7.458999], - [-12.2696, 7.457199], - [-12.277899, 7.4555], - [-12.2823, 7.453599], - [-12.285199, 7.453], - [-12.288099, 7.4529], - [-12.2919, 7.4534], - [-12.2974, 7.4555], - [-12.307899, 7.457499], - [-12.3133, 7.4597], - [-12.3161, 7.4601], - [-12.327499, 7.460699], - [-12.3305, 7.462199], - [-12.333599, 7.460899], - [-12.331599, 7.458299], - [-12.329499, 7.457199], - [-12.326999, 7.456499], - [-12.3118, 7.4416], - [-12.307099, 7.436799], - [-12.304999, 7.433899], - [-12.303099, 7.429999], - [-12.2997, 7.4243], - [-12.297499, 7.422099], - [-12.2938, 7.4161], - [-12.2899, 7.407899], - [-12.2899, 7.4044], - [-12.291799, 7.3995], - [-12.292799, 7.3953], - [-12.293599, 7.3932], - [-12.2955, 7.390499], - [-12.301399, 7.3841], - [-12.303299, 7.381], - [-12.305199, 7.3751], - [-12.3059, 7.3706], - [-12.315699, 7.3694], - [-12.324199, 7.368999], - [-12.3241, 7.3616], - [-12.332999, 7.361799], - [-12.338699, 7.362599], - [-12.349999, 7.366099], - [-12.360999, 7.370299], - [-12.365399, 7.372699], - [-12.3687, 7.374], - [-12.373, 7.3764], - [-12.380899, 7.379099], - [-12.3876, 7.381], - [-12.398699, 7.385099], - [-12.4024, 7.3875], - [-12.412499, 7.395999], - [-12.416199, 7.398099], - [-12.4214, 7.3999], - [-12.433699, 7.405099], - [-12.446399, 7.408099], - [-12.4464, 7.411799], - [-12.4527, 7.4171], - [-12.460099, 7.422599], - [-12.4601, 7.4076], - [-12.4621, 7.4074], - [-12.465399, 7.4074], - [-12.465401, 7.4071], - [-12.469599, 7.4071], - [-12.4696, 7.4068], - [-12.477899, 7.406799], - [-12.4785, 7.4057], - [-12.479899, 7.405699], - [-12.4821, 7.4043], - [-12.483799, 7.403999], - [-12.485999, 7.4024], - [-12.487599, 7.402399], - [-12.4885, 7.4007], - [-12.490999, 7.400399], - [-12.4932, 7.3976], - [-12.496, 7.396299], - [-12.497599, 7.394599], - [-12.4979, 7.393199], - [-12.5007, 7.3904], - [-12.506499, 7.390699], - [-12.5082, 7.390099], - [-12.512899, 7.389599], - [-12.5146, 7.3888], - [-12.515699, 7.388799], - [-12.518999, 7.3868], - [-12.522099, 7.386], - [-12.523999, 7.3851], - [-12.524299, 7.384] - ] - ], - [ - [ - [-12.465399, 7.4151], - [-12.464, 7.4146], - [-12.4624, 7.4154], - [-12.4629, 7.416799], - [-12.463999, 7.416499], - [-12.465399, 7.4151] - ] - ], - [ - [ - [-12.470399, 7.4162], - [-12.4693, 7.416], - [-12.468199, 7.417099], - [-12.4668, 7.4171], - [-12.465699, 7.417899], - [-12.4632, 7.4182], - [-12.4637, 7.418999], - [-12.465399, 7.419599], - [-12.467099, 7.4193], - [-12.469299, 7.417899], - [-12.470399, 7.4162] - ] - ] - ], - "type": "MultiPolygon" - }, - "id": 116, - "properties": { - "cc:admin:id": ["104"], - "cc:oBld:total": 131, - "cc:pop:fifteen-to-twenty-four": 2964.8321090101604, - "cc:pop:grid3-total": 12411.12470952702, - "cc:pop:kontur-total": 15825.666327596993, - "cc:pop:men": 7944.756864090465, - "cc:pop:sixty-plus": 1186.2954312586617, - "cc:pop:total": 16511.432232761246, - "cc:pop:under-five": 2796.616451695607, - "cc:pop:women": 8566.675368670774, - "cc:pop:women-fiften-to-forty-nine": 4004.4891451594535, - "cc:pop:wp-total": 14363.603569982228, - "cc:pop:wp-total-UN": 16652.658576256297, - "cc:id": "116", - "cc:Name": "Gbap CHC", - "cc:site": [-12.2, 7.4], - "user:parentName": "Nongoba Bullum", - "user:code": "OU_197447", - "user:orgUnitId": "TEVtOFKcLAP", - "user:level": "4", - "user:parentId": "VP397wRvePm" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.713099, 8.1814], - [-10.710299, 8.177599], - [-10.706, 8.1723], - [-10.7037, 8.1677], - [-10.700799, 8.164099], - [-10.6967, 8.1601], - [-10.694, 8.1581], - [-10.689999, 8.156299], - [-10.687999, 8.154899], - [-10.684, 8.1516], - [-10.682, 8.1503], - [-10.6735, 8.1465], - [-10.666699, 8.144799], - [-10.6631, 8.1429], - [-10.659899, 8.141499], - [-10.657499, 8.139799], - [-10.6488, 8.1315], - [-10.645, 8.1284], - [-10.6369, 8.1245], - [-10.6306, 8.1229], - [-10.625299, 8.120699], - [-10.619299, 8.119299], - [-10.613999, 8.116999], - [-10.608199, 8.114999], - [-10.604199, 8.109499], - [-10.599999, 8.100899], - [-10.599399, 8.098099], - [-10.5991, 8.0951], - [-10.5991, 8.0831], - [-10.5984, 8.0769], - [-10.596, 8.0711], - [-10.595399, 8.068299], - [-10.594999, 8.063399], - [-10.5949, 8.051399], - [-10.5954, 8.047099], - [-10.597699, 8.0412], - [-10.598299, 8.0386], - [-10.598699, 8.0347], - [-10.5973, 8.0277], - [-10.598799, 8.027], - [-10.5819, 8.034799], - [-10.5735, 8.0368], - [-10.5592, 8.0491], - [-10.548731, 8.066156], - [-10.550043, 8.06843], - [-10.546137, 8.075195], - [-10.550044, 8.081961], - [-10.554004, 8.081962], - [-10.553893, 8.082088], - [-10.552172, 8.083011], - [-10.551432, 8.083777], - [-10.551335, 8.084219], - [-10.549148, 8.084962], - [-10.548663, 8.085452], - [-10.548552, 8.086184], - [-10.554908, 8.086185], - [-10.558813, 8.09295], - [-10.554908, 8.099717], - [-10.558813, 8.106483], - [-10.555265, 8.112629], - [-10.556535, 8.112561], - [-10.557359, 8.112824], - [-10.557359, 8.112826], - [-10.552917, 8.11875], - [-10.552916, 8.126249], - [-10.549722, 8.125984], - [-10.545962, 8.132493], - [-10.540827, 8.132494], - [-10.54125, 8.132917], - [-10.54125, 8.145416], - [-10.544582, 8.14625], - [-10.542917, 8.153749], - [-10.542917, 8.155416], - [-10.547083, 8.160417], - [-10.547082, 8.16125], - [-10.54375, 8.164584], - [-10.542917, 8.168749], - [-10.544582, 8.170417], - [-10.539583, 8.180416], - [-10.543749, 8.18125], - [-10.540417, 8.187084], - [-10.540417, 8.188749], - [-10.544464, 8.193472], - [-10.544463, 8.193473], - [-10.543009, 8.193941], - [-10.541967, 8.19447], - [-10.541783, 8.194603], - [-10.545416, 8.200417], - [-10.545417, 8.210416], - [-10.544338, 8.212034], - [-10.544507, 8.212158], - [-10.542083, 8.214583], - [-10.53875, 8.215417], - [-10.53875, 8.221249], - [-10.539854, 8.221802], - [-10.539814, 8.221969], - [-10.540272, 8.221994], - [-10.540533, 8.223462], - [-10.540276, 8.223626], - [-10.53984, 8.223198], - [-10.539689, 8.223259], - [-10.539581, 8.223623], - [-10.53912, 8.224144], - [-10.539016, 8.224883], - [-10.539464, 8.225135], - [-10.53952, 8.225367], - [-10.539259, 8.225481], - [-10.539243, 8.225752], - [-10.539015, 8.225991], - [-10.538352, 8.226101], - [-10.537917, 8.229584], - [-10.53875, 8.235416], - [-10.540416, 8.23875], - [-10.537917, 8.24125], - [-10.537082, 8.243749], - [-10.532083, 8.24375], - [-10.527917, 8.24625], - [-10.52875, 8.248749], - [-10.534582, 8.253749], - [-10.534137, 8.255087], - [-10.534646, 8.255082], - [-10.535864, 8.255229], - [-10.538128, 8.256565], - [-10.539496, 8.256793], - [-10.540551, 8.257659], - [-10.541866, 8.25845], - [-10.542264, 8.258847], - [-10.542378, 8.25921], - [-10.542477, 8.260535], - [-10.542855, 8.260999], - [-10.544965, 8.262453], - [-10.545271, 8.262669], - [-10.545349, 8.262722], - [-10.545729, 8.262932], - [-10.546344, 8.263231], - [-10.547245, 8.263842], - [-10.548334, 8.264684], - [-10.549773, 8.264875], - [-10.551537, 8.264237], - [-10.553534, 8.264121], - [-10.554954, 8.263593], - [-10.556865, 8.263222], - [-10.557707, 8.263243], - [-10.558649, 8.263574], - [-10.558849, 8.263675], - [-10.559745, 8.265245], - [-10.560793, 8.266024], - [-10.561409, 8.266203], - [-10.561941, 8.266577], - [-10.562282, 8.2672], - [-10.56218, 8.268536], - [-10.562252, 8.269251], - [-10.562433, 8.269738], - [-10.562562, 8.270094], - [-10.56341, 8.269884], - [-10.563494, 8.270154], - [-10.563605, 8.270502], - [-10.563904, 8.271284], - [-10.563956, 8.271424], - [-10.564095, 8.271721], - [-10.564323, 8.272225], - [-10.564528, 8.271979], - [-10.565101, 8.271855], - [-10.565079, 8.271685], - [-10.565676, 8.271693], - [-10.56603, 8.271391], - [-10.566075, 8.27131], - [-10.566607, 8.270426], - [-10.566626, 8.270163], - [-10.568052, 8.269412], - [-10.5682, 8.269402], - [-10.569248, 8.270153], - [-10.5691, 8.270726], - [-10.569278, 8.271236], - [-10.569222, 8.271333], - [-10.569247, 8.271376], - [-10.569403, 8.271484], - [-10.569344, 8.271851], - [-10.569343, 8.271945], - [-10.569318, 8.27251], - [-10.569281, 8.273083], - [-10.568831, 8.273568], - [-10.568833, 8.273686], - [-10.569091, 8.274009], - [-10.569057, 8.274305], - [-10.569453, 8.274529], - [-10.569791, 8.275064], - [-10.5703, 8.275258], - [-10.57039, 8.274414], - [-10.570786, 8.274444], - [-10.570851, 8.274014], - [-10.571382, 8.273333], - [-10.572131, 8.272798], - [-10.572435, 8.272877], - [-10.572778, 8.273198], - [-10.573201, 8.274039], - [-10.573305, 8.275556], - [-10.574355, 8.276039], - [-10.575451, 8.273691], - [-10.576272, 8.274248], - [-10.576884, 8.27402], - [-10.577267, 8.273442], - [-10.577722, 8.273099], - [-10.577754, 8.273025], - [-10.578006, 8.272512], - [-10.577913, 8.272422], - [-10.578189, 8.272292], - [-10.578407, 8.271867], - [-10.578894, 8.27161], - [-10.579211, 8.272075], - [-10.579629, 8.272813], - [-10.579862, 8.273716], - [-10.579441, 8.275746], - [-10.579858, 8.275704], - [-10.580364, 8.275531], - [-10.580575, 8.275527], - [-10.581586, 8.275827], - [-10.581889, 8.275907], - [-10.5821, 8.275914], - [-10.582378, 8.276021], - [-10.583008, 8.276209], - [-10.583462, 8.276447], - [-10.583612, 8.276458], - [-10.583875, 8.275982], - [-10.584279, 8.276051], - [-10.585375, 8.275898], - [-10.586245, 8.2757], - [-10.586281, 8.275685], - [-10.587317, 8.275329], - [-10.588885, 8.275163], - [-10.589582, 8.275353], - [-10.589583, 8.273749], - [-10.591249, 8.27125], - [-10.593749, 8.270416], - [-10.59375, 8.26875], - [-10.596249, 8.266249], - [-10.597916, 8.26125], - [-10.599583, 8.25875], - [-10.602083, 8.25875], - [-10.611249, 8.265416], - [-10.612916, 8.265416], - [-10.615875, 8.255799], - [-10.615398, 8.255453], - [-10.614848, 8.25519], - [-10.615417, 8.252916], - [-10.61625, 8.252083], - [-10.626249, 8.248749], - [-10.62625, 8.241352], - [-10.631478, 8.241351], - [-10.63125, 8.237916], - [-10.636249, 8.232917], - [-10.651249, 8.232917], - [-10.654583, 8.236249], - [-10.657916, 8.237083], - [-10.65798, 8.23718], - [-10.659479, 8.234586], - [-10.662916, 8.234585], - [-10.662917, 8.227917], - [-10.664582, 8.225417], - [-10.667083, 8.225416], - [-10.675416, 8.22125], - [-10.679989, 8.223862], - [-10.679383, 8.221089], - [-10.679219, 8.219491], - [-10.679359, 8.218705], - [-10.679931, 8.217707], - [-10.680775, 8.217333], - [-10.6818, 8.21636], - [-10.683013, 8.216036], - [-10.685363, 8.214131], - [-10.686674, 8.21332], - [-10.687936, 8.212866], - [-10.689019, 8.212793], - [-10.69055, 8.213408], - [-10.691427, 8.214041], - [-10.692136, 8.214189], - [-10.6911, 8.212599], - [-10.6904, 8.2092], - [-10.6909, 8.205699], - [-10.692999, 8.2026], - [-10.6957, 8.200099], - [-10.6976, 8.198999], - [-10.7038, 8.196899], - [-10.709799, 8.1896], - [-10.711699, 8.1865], - [-10.713099, 8.1814] - ] - ], - "type": "Polygon" - }, - "id": 117, - "properties": { - "cc:admin:id": ["77"], - "cc:oBld:total": 5839, - "cc:pop:fifteen-to-twenty-four": 7062.219580716278, - "cc:pop:grid3-total": 24458.108747668713, - "cc:pop:kontur-total": 36327.865291481925, - "cc:pop:men": 17694.798074562492, - "cc:pop:sixty-plus": 2063.8814276156704, - "cc:pop:total": 37291.468252696104, - "cc:pop:under-five": 5765.909691391517, - "cc:pop:women": 19596.67017813363, - "cc:pop:women-fiften-to-forty-nine": 9795.515221158574, - "cc:pop:wp-total": 31754.792309451615, - "cc:pop:wp-total-UN": 36810.36691585584, - "cc:id": "117", - "cc:Name": "Gbeika MCHP", - "cc:site": [-10.5736, 8.2754], - "user:parentName": "Njaluahun", - "user:code": "OU_204881", - "user:orgUnitId": "U8tyWV7WmIB", - "user:level": "4", - "user:parentId": "ERmBhYkhV6Y" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.359474, 9.058149], - [-12.359299, 9.054999], - [-12.358599, 9.0519], - [-12.356399, 9.049199], - [-12.353999, 9.045699], - [-12.3482, 9.0393], - [-12.3455, 9.0361], - [-12.342599, 9.031299], - [-12.339899, 9.0286], - [-12.335999, 9.026599], - [-12.333299, 9.024399], - [-12.328699, 9.020099], - [-12.326599, 9.0187], - [-12.3241, 9.0185], - [-12.317899, 9.021], - [-12.308999, 9.0259], - [-12.306799, 9.0276], - [-12.2995, 9.034999], - [-12.295899, 9.038], - [-12.2879, 9.042099], - [-12.2842, 9.042799], - [-12.281, 9.042499], - [-12.277799, 9.040599], - [-12.274799, 9.037599], - [-12.273, 9.0344], - [-12.272947, 9.03375], - [-12.267083, 9.03375], - [-12.262083, 9.035416], - [-12.261249, 9.036249], - [-12.257916, 9.035416], - [-12.254582, 9.030417], - [-12.252082, 9.031249], - [-12.245416, 9.02875], - [-12.240417, 9.030416], - [-12.237082, 9.027083], - [-12.22875, 9.027083], - [-12.22375, 9.03125], - [-12.22317, 9.036467], - [-12.216171, 9.036467], - [-12.212263, 9.029702], - [-12.204452, 9.029701], - [-12.202016, 9.025484], - [-12.200416, 9.027082], - [-12.19125, 9.027083], - [-12.190416, 9.037082], - [-12.18625, 9.040416], - [-12.181249, 9.040416], - [-12.179582, 9.038749], - [-12.175835, 9.032754], - [-12.175469, 9.033004], - [-12.174878, 9.034087], - [-12.174863, 9.034733], - [-12.174447, 9.034592], - [-12.173628, 9.034696], - [-12.173286, 9.034527], - [-12.172964, 9.034009], - [-12.170522, 9.034841], - [-12.170813, 9.035599], - [-12.167917, 9.037916], - [-12.166249, 9.03875], - [-12.164583, 9.040417], - [-12.164582, 9.042083], - [-12.162083, 9.046249], - [-12.15693, 9.046249], - [-12.156929, 9.046248], - [-12.157159, 9.045417], - [-12.155417, 9.045417], - [-12.152917, 9.04625], - [-12.152082, 9.052917], - [-12.150416, 9.054582], - [-12.147917, 9.054583], - [-12.147916, 9.057917], - [-12.14625, 9.05875], - [-12.145416, 9.059582], - [-12.142917, 9.060417], - [-12.142916, 9.067082], - [-12.142083, 9.067083], - [-12.14125, 9.071249], - [-12.13625, 9.077082], - [-12.134583, 9.078749], - [-12.142845, 9.081755], - [-12.14235, 9.083037], - [-12.142476, 9.087537], - [-12.142189, 9.090416], - [-12.145416, 9.090417], - [-12.147082, 9.091249], - [-12.14875, 9.096249], - [-12.152083, 9.09875], - [-12.152916, 9.10125], - [-12.14875, 9.10625], - [-12.14875, 9.107916], - [-12.150417, 9.111249], - [-12.15375, 9.11375], - [-12.154953, 9.117359], - [-12.1579, 9.1173], - [-12.161899, 9.1184], - [-12.164199, 9.119899], - [-12.167599, 9.122999], - [-12.169999, 9.125799], - [-12.171899, 9.1289], - [-12.172799, 9.132499], - [-12.172899, 9.135399], - [-12.173199, 9.179299], - [-12.1732, 9.182199], - [-12.173499, 9.185099], - [-12.1741, 9.1878], - [-12.176399, 9.192099], - [-12.1781, 9.196], - [-12.1813, 9.201299], - [-12.185195, 9.198403], - [-12.189099, 9.195], - [-12.191799, 9.193], - [-12.1974, 9.189899], - [-12.2012, 9.186599], - [-12.203699, 9.184], - [-12.2059, 9.181199], - [-12.209699, 9.1733], - [-12.210299, 9.1712], - [-12.2106, 9.167599], - [-12.2107, 9.157999], - [-12.2114, 9.154499], - [-12.2136, 9.149199], - [-12.214099, 9.143999], - [-12.214, 9.1334], - [-12.214499, 9.1297], - [-12.216899, 9.1236], - [-12.2181, 9.1181], - [-12.2203, 9.114699], - [-12.224199, 9.1104], - [-12.228299, 9.1065], - [-12.231899, 9.1036], - [-12.235799, 9.1017], - [-12.2394, 9.099699], - [-12.2432, 9.097899], - [-12.2455, 9.096399], - [-12.2502, 9.092799], - [-12.258699, 9.0881], - [-12.2619, 9.086799], - [-12.267, 9.084399], - [-12.2729, 9.082899], - [-12.2787, 9.080599], - [-12.2849, 9.08], - [-12.294599, 9.080099], - [-12.299799, 9.08], - [-12.3034, 9.079199], - [-12.3112, 9.075199], - [-12.3148, 9.072199], - [-12.323399, 9.0636], - [-12.3266, 9.062], - [-12.3287, 9.0621], - [-12.331099, 9.063599], - [-12.332699, 9.065899], - [-12.3344, 9.0731], - [-12.336999, 9.079099], - [-12.338399, 9.081199], - [-12.341, 9.083099], - [-12.343599, 9.083299], - [-12.3463, 9.081599], - [-12.3477, 9.079299], - [-12.349, 9.0745], - [-12.350599, 9.0728], - [-12.3533, 9.071699], - [-12.356399, 9.070799], - [-12.358999, 9.0636], - [-12.359499, 9.0586], - [-12.359474, 9.058149] - ] - ], - "type": "Polygon" - }, - "id": 118, - "properties": { - "cc:admin:id": ["32"], - "cc:oBld:total": 838, - "cc:pop:fifteen-to-twenty-four": 1925.2100865757106, - "cc:pop:grid3-total": 9009.87402553485, - "cc:pop:kontur-total": 10412.739677611607, - "cc:pop:men": 4770.280671248139, - "cc:pop:sixty-plus": 697.6263062911355, - "cc:pop:total": 10080.922243654695, - "cc:pop:under-five": 1583.7523478487003, - "cc:pop:women": 5310.6415724065555, - "cc:pop:women-fiften-to-forty-nine": 2586.9617823814374, - "cc:pop:wp-total": 8195.125882156528, - "cc:pop:wp-total-UN": 9500.570492142364, - "cc:id": "118", - "cc:Name": "Gbendembu Wesleyan CHC", - "cc:site": [-12.2074, 9.1075], - "user:parentName": "Gbendembu Ngowahun", - "user:code": "OU_193281", - "user:orgUnitId": "YAuJ3fyoEuI", - "user:level": "4", - "user:parentId": "BXJdOLvUrZB" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.520029, 9.599823], - [-11.519688, 9.599823], - [-11.519532, 9.599848], - [-11.518987, 9.600049], - [-11.51625, 9.601046], - [-11.51625, 9.600416], - [-11.516842, 9.598046], - [-11.514329, 9.59625], - [-11.50875, 9.596249], - [-11.505417, 9.59375], - [-11.506249, 9.587083], - [-11.506676, 9.586229], - [-11.50606, 9.585618], - [-11.504867, 9.584802], - [-11.504303, 9.584573], - [-11.503749, 9.581249], - [-11.502082, 9.57875], - [-11.496249, 9.580416], - [-11.492083, 9.577083], - [-11.492082, 9.57375], - [-11.487917, 9.573749], - [-11.487083, 9.572917], - [-11.487083, 9.571249], - [-11.488749, 9.56625], - [-11.475417, 9.565417], - [-11.475416, 9.56282], - [-11.471851, 9.562819], - [-11.471249, 9.560417], - [-11.468749, 9.558749], - [-11.465747, 9.555747], - [-11.469475, 9.549287], - [-11.467784, 9.546358], - [-11.467436, 9.546292], - [-11.466916, 9.546408], - [-11.466626, 9.54663], - [-11.46648, 9.547047], - [-11.466165, 9.547201], - [-11.464212, 9.547677], - [-11.463535, 9.548149], - [-11.462355, 9.548604], - [-11.460952, 9.548993], - [-11.460416, 9.555416], - [-11.454582, 9.557916], - [-11.44625, 9.549582], - [-11.446249, 9.539583], - [-11.443829, 9.539582], - [-11.446038, 9.535756], - [-11.442131, 9.528991], - [-11.43432, 9.52899], - [-11.430414, 9.522225], - [-11.430529, 9.522023], - [-11.422078, 9.521319], - [-11.4226, 9.522225], - [-11.418695, 9.52899], - [-11.410882, 9.528991], - [-11.40714, 9.535472], - [-11.407917, 9.536249], - [-11.412917, 9.537083], - [-11.415416, 9.539582], - [-11.415416, 9.54125], - [-11.40875, 9.547916], - [-11.407731, 9.548257], - [-11.408133, 9.548532], - [-11.40375, 9.552917], - [-11.402916, 9.557082], - [-11.397917, 9.55625], - [-11.392083, 9.56125], - [-11.401587, 9.573129], - [-11.402082, 9.573749], - [-11.39875, 9.574583], - [-11.39375, 9.577916], - [-11.390416, 9.577083], - [-11.387917, 9.579583], - [-11.382917, 9.589582], - [-11.38125, 9.590417], - [-11.381249, 9.591249], - [-11.370417, 9.590417], - [-11.371249, 9.601249], - [-11.36625, 9.606249], - [-11.35625, 9.606249], - [-11.354679, 9.604941], - [-11.352936, 9.60796], - [-11.356841, 9.614726], - [-11.352936, 9.621491], - [-11.345123, 9.621492], - [-11.342697, 9.625691], - [-11.342386, 9.625501], - [-11.341933, 9.625383], - [-11.341187, 9.625594], - [-11.340452, 9.637345], - [-11.3416, 9.634699], - [-11.343299, 9.6294], - [-11.346099, 9.6286], - [-11.3493, 9.6304], - [-11.3517, 9.6331], - [-11.3552, 9.637599], - [-11.3576, 9.6386], - [-11.3606, 9.638999], - [-11.386899, 9.6388], - [-11.393199, 9.6386], - [-11.402099, 9.638899], - [-11.4051, 9.638799], - [-11.4093, 9.638099], - [-11.4143, 9.636099], - [-11.420999, 9.6342], - [-11.425399, 9.6322], - [-11.4283, 9.631599], - [-11.4343, 9.6313], - [-11.457899, 9.631399], - [-11.464199, 9.6311], - [-11.469099, 9.631399], - [-11.474099, 9.631499], - [-11.4793, 9.631099], - [-11.4814, 9.630599], - [-11.4892, 9.626599], - [-11.4931, 9.623399], - [-11.511, 9.605299], - [-11.5142, 9.602799], - [-11.518099, 9.6009], - [-11.520029, 9.599823] - ] - ], - "type": "Polygon" - }, - "id": 119, - "properties": { - "cc:admin:id": ["122"], - "cc:oBld:total": 13, - "cc:pop:fifteen-to-twenty-four": 1218.3767989656756, - "cc:pop:grid3-total": 3789.185754723329, - "cc:pop:kontur-total": 6327.53183952531, - "cc:pop:men": 3068.1134238082595, - "cc:pop:sixty-plus": 424.26894101986477, - "cc:pop:total": 6555.77348877174, - "cc:pop:under-five": 1063.9384309661564, - "cc:pop:women": 3487.660064963478, - "cc:pop:women-fiften-to-forty-nine": 1694.6195916689144, - "cc:pop:wp-total": 5966.176046066894, - "cc:pop:wp-total-UN": 6912.564859545104, - "cc:id": "119", - "cc:Name": "Gbenikoro MCHP", - "cc:site": [-11.4701, 9.6228], - "user:parentName": "Sengbeh", - "user:code": "OU_226236", - "user:orgUnitId": "y77LiPqLMoq", - "user:level": "4", - "user:parentId": "VGAFxBXz16y" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.742299, 9.995499], - [-11.7407, 9.9847], - [-11.7392, 9.9788], - [-11.7353, 9.9705], - [-11.7327, 9.9653], - [-11.7314, 9.9602], - [-11.7291, 9.9549], - [-11.7273, 9.9482], - [-11.7252, 9.9438], - [-11.724599, 9.940999], - [-11.724299, 9.935899], - [-11.7241, 9.9236], - [-11.7244, 9.9178], - [-11.7254, 9.9154], - [-11.729299, 9.9121], - [-11.730799, 9.9102], - [-11.7341, 9.903699], - [-11.735, 9.900999], - [-11.735299, 9.898], - [-11.7353, 9.889], - [-11.735, 9.885], - [-11.734299, 9.881699], - [-11.732599, 9.878799], - [-11.7273, 9.8732], - [-11.7254, 9.871], - [-11.724299, 9.868899], - [-11.7237, 9.8664], - [-11.7234, 9.862399], - [-11.723499, 9.8491], - [-11.7231, 9.8431], - [-11.722399, 9.840199], - [-11.720399, 9.835699], - [-11.719599, 9.831999], - [-11.7193, 9.827999], - [-11.7193, 9.821899], - [-11.719999, 9.8156], - [-11.721999, 9.811], - [-11.722299, 9.8085], - [-11.721099, 9.8069], - [-11.7185, 9.8063], - [-11.7152, 9.8071], - [-11.713299, 9.8085], - [-11.707899, 9.8139], - [-11.7056, 9.815799], - [-11.703099, 9.8171], - [-11.700299, 9.8177], - [-11.6934, 9.8177], - [-11.6898, 9.816799], - [-11.687, 9.814799], - [-11.6856, 9.8128], - [-11.6825, 9.806], - [-11.681899, 9.802299], - [-11.6816, 9.7966], - [-11.680399, 9.7931], - [-11.677799, 9.791499], - [-11.674499, 9.790499], - [-11.672099, 9.789099], - [-11.6685, 9.7863], - [-11.666099, 9.784999], - [-11.663599, 9.784299], - [-11.6582, 9.7837], - [-11.655699, 9.783099], - [-11.653299, 9.781699], - [-11.649, 9.7782], - [-11.6465, 9.7771], - [-11.642999, 9.7767], - [-11.6408, 9.777], - [-11.6382, 9.778199], - [-11.634299, 9.7807], - [-11.632799, 9.7825], - [-11.63, 9.787199], - [-11.628399, 9.7912], - [-11.6261, 9.795499], - [-11.624799, 9.7986], - [-11.6224, 9.802899], - [-11.621199, 9.8061], - [-11.619199, 9.8097], - [-11.6174, 9.813499], - [-11.6159, 9.815799], - [-11.613999, 9.818], - [-11.603, 9.828999], - [-11.600699, 9.832], - [-11.596399, 9.8411], - [-11.5951, 9.846999], - [-11.5929, 9.852299], - [-11.591699, 9.8574], - [-11.5892, 9.863399], - [-11.5879, 9.869299], - [-11.5856, 9.874599], - [-11.584499, 9.8797], - [-11.5808, 9.887999], - [-11.5784, 9.892299], - [-11.577099, 9.8955], - [-11.5747, 9.899699], - [-11.573399, 9.9029], - [-11.571499, 9.9065], - [-11.570699, 9.9099], - [-11.5704, 9.918999], - [-11.5699, 9.921599], - [-11.5665, 9.927899], - [-11.5643, 9.928699], - [-11.562399, 9.928099], - [-11.5599, 9.925499], - [-11.556037, 9.917083], - [-11.55125, 9.917083], - [-11.547917, 9.923749], - [-11.547916, 9.92625], - [-11.545417, 9.929583], - [-11.545417, 9.933749], - [-11.547917, 9.934582], - [-11.550416, 9.934583], - [-11.551249, 9.935416], - [-11.55125, 9.942916], - [-11.552916, 9.94375], - [-11.552917, 9.945416], - [-11.553749, 9.947082], - [-11.552713, 9.94812], - [-11.552182, 9.947964], - [-11.54875, 9.952082], - [-11.547083, 9.953749], - [-11.545567, 9.953245], - [-11.544715, 9.955813], - [-11.544227, 9.956447], - [-11.54204, 9.958134], - [-11.542825, 9.958175], - [-11.543023, 9.958329], - [-11.54466, 9.958164], - [-11.545807, 9.958672], - [-11.547442, 9.960172], - [-11.544835, 9.967994], - [-11.544343, 9.967985], - [-11.544015, 9.967822], - [-11.542529, 9.968339], - [-11.541449, 9.968176], - [-11.54118, 9.96826], - [-11.540661, 9.96806], - [-11.540441, 9.967615], - [-11.540403, 9.966929], - [-11.540577, 9.965511], - [-11.52875, 9.96625], - [-11.52875, 9.972916], - [-11.540416, 9.977916], - [-11.54125, 9.977917], - [-11.543255, 9.984603], - [-11.543712, 9.984546], - [-11.543749, 9.984583], - [-11.54375, 9.987916], - [-11.540417, 9.992082], - [-11.545416, 9.994582], - [-11.546249, 9.989583], - [-11.547082, 9.989583], - [-11.547083, 9.996743], - [-11.548172, 9.997413], - [-11.548554, 9.997989], - [-11.549585, 9.998663], - [-11.550913, 9.998882], - [-11.551898, 9.998563], - [-11.55195, 9.998861], - [-11.563599, 9.9986], - [-11.574, 9.999599], - [-11.584699, 9.9995], - [-11.6144, 9.9981], - [-11.6534, 9.999199], - [-11.725499, 9.9979], - [-11.734399, 9.999899], - [-11.730502, 9.998499], - [-11.733, 9.997799], - [-11.7377, 9.996999], - [-11.742299, 9.995499] - ] - ], - "type": "Polygon" - }, - "id": 120, - "properties": { - "cc:admin:id": ["19"], - "cc:oBld:total": 841, - "cc:pop:fifteen-to-twenty-four": 1247.756855792644, - "cc:pop:grid3-total": 9558.60014526063, - "cc:pop:kontur-total": 7130.076195985767, - "cc:pop:men": 3469.6775322943804, - "cc:pop:sixty-plus": 419.6995366351534, - "cc:pop:total": 7046.031104644778, - "cc:pop:under-five": 1171.2717683951587, - "cc:pop:women": 3576.3535723503974, - "cc:pop:women-fiften-to-forty-nine": 1887.4133014147683, - "cc:pop:wp-total": 6915.35194807588, - "cc:pop:wp-total-UN": 8020.022946793144, - "cc:id": "120", - "cc:Name": "Gbentu CHP", - "cc:site": [-11.6447, 9.9432], - "user:parentName": "Folosaba Dembelia", - "user:code": "OU_226255", - "user:orgUnitId": "D7UVRRE9iUC", - "user:level": "4", - "user:parentId": "iEkBZnMDarP" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.261168, 9.447459], - [-11.261321, 9.447014], - [-11.261199, 9.446099], - [-11.2575, 9.4381], - [-11.2554, 9.4345], - [-11.253599, 9.430699], - [-11.2512, 9.4264], - [-11.249799, 9.423199], - [-11.2473, 9.419], - [-11.245899, 9.415799], - [-11.243999, 9.412199], - [-11.242999, 9.408699], - [-11.2426, 9.4009], - [-11.2419, 9.3973], - [-11.2396, 9.3928], - [-11.238299, 9.389699], - [-11.2357, 9.3845], - [-11.234099, 9.378599], - [-11.232699, 9.376199], - [-11.228, 9.3712], - [-11.2258, 9.3693], - [-11.223399, 9.367799], - [-11.220099, 9.366399], - [-11.212, 9.3623], - [-11.2092, 9.3593], - [-11.2054, 9.352], - [-11.204, 9.3488], - [-11.201999, 9.345199], - [-11.200199, 9.341299], - [-11.1978, 9.337], - [-11.196099, 9.333099], - [-11.194399, 9.330199], - [-11.1926, 9.3265], - [-11.191, 9.3246], - [-11.189099, 9.322999], - [-11.1853, 9.3212], - [-11.1824, 9.3196], - [-11.1785, 9.3179], - [-11.1749, 9.316], - [-11.172699, 9.315399], - [-11.166499, 9.3149], - [-11.1337, 9.315], - [-11.133299, 9.3188], - [-11.1332, 9.325699], - [-11.133599, 9.330499], - [-11.1343, 9.3332], - [-11.1363, 9.3378], - [-11.137099, 9.341399], - [-11.137099, 9.3444], - [-11.136499, 9.3482], - [-11.134299, 9.3535], - [-11.133799, 9.3572], - [-11.1335, 9.362999], - [-11.1327, 9.366699], - [-11.130599, 9.3721], - [-11.1301, 9.377], - [-11.1301, 9.388999], - [-11.1294, 9.392799], - [-11.1272, 9.397199], - [-11.125899, 9.4003], - [-11.1237, 9.404699], - [-11.123, 9.407499], - [-11.1228, 9.4126], - [-11.122999, 9.417699], - [-11.123599, 9.421699], - [-11.125999, 9.426999], - [-11.126599, 9.429899], - [-11.1269, 9.4329], - [-11.127099, 9.440099], - [-11.127699, 9.444099], - [-11.129899, 9.449499], - [-11.130699, 9.453099], - [-11.131099, 9.458899], - [-11.131799, 9.462999], - [-11.133899, 9.467999], - [-11.134599, 9.470899], - [-11.135, 9.477], - [-11.135099, 9.503999], - [-11.135799, 9.511099], - [-11.1381, 9.5165], - [-11.140099, 9.526799], - [-11.142099, 9.531399], - [-11.142899, 9.535099], - [-11.1432, 9.5391], - [-11.143299, 9.548099], - [-11.143, 9.551099], - [-11.141899, 9.5538], - [-11.139699, 9.5569], - [-11.132599, 9.5638], - [-11.130699, 9.566], - [-11.1292, 9.5685], - [-11.1287, 9.571999], - [-11.129199, 9.575299], - [-11.13081, 9.578749], - [-11.140416, 9.57875], - [-11.142666, 9.580549], - [-11.146789, 9.580549], - [-11.150695, 9.573784], - [-11.147526, 9.568292], - [-11.148027, 9.567604], - [-11.148398, 9.566304], - [-11.148901, 9.565753], - [-11.149079, 9.564299], - [-11.149808, 9.56295], - [-11.150886, 9.562574], - [-11.151313, 9.562301], - [-11.147917, 9.559582], - [-11.147665, 9.555807], - [-11.148191, 9.554897], - [-11.156002, 9.554896], - [-11.15834, 9.550848], - [-11.159518, 9.550788], - [-11.160581, 9.550712], - [-11.16264, 9.550144], - [-11.164841, 9.54926], - [-11.166273, 9.548366], - [-11.167795, 9.546881], - [-11.16839, 9.54684], - [-11.167494, 9.54415], - [-11.167493, 9.544596], - [-11.167218, 9.544885], - [-11.167051, 9.544753], - [-11.167014, 9.544308], - [-11.166803, 9.544195], - [-11.166039, 9.544605], - [-11.165614, 9.544465], - [-11.165214, 9.544072], - [-11.164426, 9.544351], - [-11.163974, 9.544266], - [-11.163973, 9.544265], - [-11.167361, 9.538396], - [-11.175174, 9.538395], - [-11.179079, 9.53163], - [-11.175174, 9.524864], - [-11.179079, 9.518099], - [-11.186892, 9.518098], - [-11.190798, 9.511333], - [-11.19861, 9.511332], - [-11.202518, 9.504567], - [-11.210329, 9.504566], - [-11.214236, 9.497801], - [-11.222048, 9.4978], - [-11.225955, 9.491035], - [-11.233767, 9.491034], - [-11.237673, 9.484269], - [-11.233768, 9.477503], - [-11.237673, 9.470738], - [-11.245192, 9.470737], - [-11.243749, 9.469582], - [-11.242083, 9.462917], - [-11.252082, 9.459582], - [-11.250884, 9.455986], - [-11.252096, 9.455596], - [-11.25288, 9.454911], - [-11.253167, 9.454021], - [-11.25352, 9.453553], - [-11.25353, 9.45318], - [-11.254096, 9.453241], - [-11.254469, 9.453181], - [-11.254807, 9.453109], - [-11.254829, 9.452554], - [-11.254468, 9.451765], - [-11.254485, 9.451236], - [-11.254352, 9.450675], - [-11.254548, 9.450204], - [-11.254512, 9.449638], - [-11.253874, 9.448039], - [-11.253696, 9.446601], - [-11.25372, 9.44625], - [-11.258749, 9.44625], - [-11.261168, 9.447459] - ] - ], - "type": "Polygon" - }, - "id": 121, - "properties": { - "cc:admin:id": ["122"], - "cc:oBld:total": 253, - "cc:pop:fifteen-to-twenty-four": 1644.198268425762, - "cc:pop:grid3-total": 7869.094215939372, - "cc:pop:kontur-total": 7321.28111866666, - "cc:pop:men": 4115.971341275232, - "cc:pop:sixty-plus": 565.4819990466412, - "cc:pop:total": 8804.242666333592, - "cc:pop:under-five": 1428.0587790326467, - "cc:pop:women": 4688.271325058362, - "cc:pop:women-fiften-to-forty-nine": 2266.411350520233, - "cc:pop:wp-total": 9861.786562214522, - "cc:pop:wp-total-UN": 11441.09422125191, - "cc:id": "121", - "cc:Name": "Gberifeh MCHP", - "cc:site": [-11.1447, 9.4149], - "user:parentName": "Mongo", - "user:code": "OU_226251", - "user:orgUnitId": "qELjt3LRkSD", - "user:level": "4", - "user:parentId": "OTFepb1k9Db" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.556037, 9.917082], - [-11.555999, 9.916999], - [-11.5552, 9.9127], - [-11.554299, 9.910299], - [-11.5504, 9.9028], - [-11.5458, 9.897], - [-11.5447, 9.894999], - [-11.544099, 9.891799], - [-11.5438, 9.8812], - [-11.5431, 9.8775], - [-11.5408, 9.8731], - [-11.539399, 9.869899], - [-11.5369, 9.8657], - [-11.535499, 9.862599], - [-11.533499, 9.858999], - [-11.532599, 9.855599], - [-11.532, 9.8503], - [-11.5314, 9.8478], - [-11.529099, 9.842399], - [-11.5285, 9.8377], - [-11.528493, 9.837447], - [-11.522083, 9.839583], - [-11.522082, 9.847082], - [-11.514583, 9.847083], - [-11.51125, 9.850417], - [-11.510416, 9.854582], - [-11.505417, 9.85375], - [-11.499583, 9.856249], - [-11.49875, 9.85625], - [-11.498749, 9.865416], - [-11.497083, 9.867916], - [-11.494583, 9.867083], - [-11.490416, 9.869582], - [-11.479583, 9.867917], - [-11.478901, 9.872003], - [-11.478127, 9.871536], - [-11.476979, 9.869929], - [-11.477064, 9.867809], - [-11.478128, 9.867501], - [-11.473749, 9.86625], - [-11.462917, 9.868749], - [-11.462082, 9.867917], - [-11.447083, 9.867917], - [-11.442083, 9.872917], - [-11.442083, 9.882082], - [-11.445416, 9.88625], - [-11.442917, 9.888249], - [-11.442739, 9.88825], - [-11.442587, 9.888513], - [-11.44125, 9.889583], - [-11.440416, 9.892082], - [-11.437484, 9.895015], - [-11.436539, 9.895015], - [-11.436137, 9.894166], - [-11.436294, 9.89203], - [-11.435944, 9.889574], - [-11.435359, 9.888504], - [-11.434887, 9.886826], - [-11.434369, 9.88574], - [-11.433503, 9.88524], - [-11.433023, 9.884768], - [-11.43008, 9.884768], - [-11.426818, 9.890416], - [-11.417083, 9.890417], - [-11.414583, 9.892083], - [-11.415416, 9.902082], - [-11.407722, 9.902083], - [-11.4081, 9.9028], - [-11.409199, 9.906299], - [-11.409399, 9.910199], - [-11.409599, 9.937999], - [-11.4098, 9.9439], - [-11.4103, 9.9467], - [-11.412599, 9.952099], - [-11.413299, 9.954599], - [-11.4139, 9.9599], - [-11.4146, 9.9624], - [-11.416799, 9.967799], - [-11.417499, 9.972899], - [-11.4177, 9.998699], - [-11.4456, 9.9992], - [-11.4984, 10], - [-11.5014, 9.999999], - [-11.551949, 9.998861], - [-11.551898, 9.998563], - [-11.550913, 9.998882], - [-11.549586, 9.998663], - [-11.548554, 9.997989], - [-11.548172, 9.997413], - [-11.547083, 9.996743], - [-11.547082, 9.989583], - [-11.54625, 9.989583], - [-11.545416, 9.994582], - [-11.540417, 9.992083], - [-11.54375, 9.987916], - [-11.543749, 9.984583], - [-11.543712, 9.984547], - [-11.543255, 9.984603], - [-11.541249, 9.977917], - [-11.540416, 9.977916], - [-11.52875, 9.972917], - [-11.52875, 9.96625], - [-11.540577, 9.965511], - [-11.540403, 9.966929], - [-11.540441, 9.967615], - [-11.540661, 9.968059], - [-11.541181, 9.96826], - [-11.541449, 9.968176], - [-11.542529, 9.968339], - [-11.544015, 9.967822], - [-11.544343, 9.967985], - [-11.544834, 9.967994], - [-11.547442, 9.960172], - [-11.545807, 9.958672], - [-11.54466, 9.958164], - [-11.543023, 9.958329], - [-11.542825, 9.958175], - [-11.542042, 9.958135], - [-11.542041, 9.958133], - [-11.544227, 9.956447], - [-11.544715, 9.955813], - [-11.545566, 9.953245], - [-11.547082, 9.953749], - [-11.54875, 9.952082], - [-11.552182, 9.947964], - [-11.552712, 9.94812], - [-11.553749, 9.947082], - [-11.552917, 9.945416], - [-11.552916, 9.94375], - [-11.55125, 9.942916], - [-11.551249, 9.935417], - [-11.550416, 9.934583], - [-11.547917, 9.934582], - [-11.545417, 9.93375], - [-11.545417, 9.929583], - [-11.547916, 9.926249], - [-11.547917, 9.923749], - [-11.551249, 9.917083], - [-11.556037, 9.917082] - ] - ], - "type": "Polygon" - }, - "id": 122, - "properties": { - "cc:admin:id": ["19"], - "cc:oBld:total": 1633, - "cc:pop:fifteen-to-twenty-four": 1602.4121671670134, - "cc:pop:grid3-total": 13150.841571751844, - "cc:pop:kontur-total": 8956.905262478715, - "cc:pop:men": 4340.367561836858, - "cc:pop:sixty-plus": 556.7533065465461, - "cc:pop:total": 8880.481026459212, - "cc:pop:under-five": 1469.7820936384283, - "cc:pop:women": 4540.113464622353, - "cc:pop:women-fiften-to-forty-nine": 2305.965831506407, - "cc:pop:wp-total": 6762.689213714057, - "cc:pop:wp-total-UN": 7837.305896293186, - "cc:id": "122", - "cc:Name": "Gbindi CHP", - "cc:site": [-11.4434, 9.9115], - "user:parentName": "Dembelia Sinkunia", - "user:code": "OU_226218", - "user:orgUnitId": "LFpl1falVZi", - "user:level": "4", - "user:parentId": "Mr4au3jR9bt" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.248712, 7.777637], - [-11.24866, 7.777548], - [-11.244099, 7.78], - [-11.241999, 7.7805], - [-11.239299, 7.780599], - [-11.237099, 7.780199], - [-11.2323, 7.7779], - [-11.2282, 7.776499], - [-11.225499, 7.774], - [-11.2209, 7.777899], - [-11.217799, 7.7808], - [-11.192242, 7.806409], - [-11.193749, 7.807917], - [-11.19125, 7.817083], - [-11.195417, 7.819583], - [-11.199028, 7.820185], - [-11.199043, 7.820147], - [-11.202915, 7.822083], - [-11.200417, 7.82375], - [-11.200416, 7.825416], - [-11.199583, 7.82625], - [-11.199582, 7.830417], - [-11.19625, 7.832084], - [-11.196249, 7.832917], - [-11.192083, 7.83625], - [-11.192083, 7.837916], - [-11.192916, 7.839584], - [-11.192917, 7.842022], - [-11.193041, 7.842129], - [-11.193433, 7.842486], - [-11.193815, 7.842493], - [-11.194242, 7.842743], - [-11.1944, 7.844268], - [-11.194259, 7.844734], - [-11.194265, 7.844762], - [-11.194479, 7.845502], - [-11.1948, 7.845859], - [-11.195291, 7.846336], - [-11.195287, 7.846523], - [-11.195228, 7.846768], - [-11.195044, 7.847762], - [-11.194508, 7.848498], - [-11.194441, 7.84864], - [-11.194766, 7.84894], - [-11.195437, 7.849113], - [-11.195302, 7.849479], - [-11.195562, 7.849421], - [-11.196465, 7.850025], - [-11.196819, 7.850506], - [-11.195954, 7.850983], - [-11.196213, 7.851525], - [-11.194931, 7.852344], - [-11.194902, 7.852559], - [-11.19515, 7.852853], - [-11.195426, 7.85337], - [-11.194787, 7.853692], - [-11.194826, 7.854143], - [-11.195011, 7.854755], - [-11.195118, 7.854772], - [-11.195109, 7.854875], - [-11.194978, 7.854893], - [-11.194227, 7.85535], - [-11.194418, 7.855778], - [-11.194619, 7.856244], - [-11.194972, 7.856905], - [-11.193185, 7.857865], - [-11.191783, 7.858627], - [-11.190792, 7.859211], - [-11.190352, 7.859468], - [-11.192443, 7.861126], - [-11.191812, 7.862318], - [-11.192231, 7.862703], - [-11.192271, 7.862722], - [-11.192724, 7.862884], - [-11.192341, 7.863756], - [-11.192145, 7.864285], - [-11.191895, 7.864801], - [-11.191654, 7.865267], - [-11.191378, 7.865791], - [-11.193377, 7.866747], - [-11.193763, 7.866948], - [-11.193545, 7.867435], - [-11.193319, 7.867931], - [-11.193032, 7.868471], - [-11.193637, 7.868775], - [-11.193411, 7.869339], - [-11.193979, 7.869332], - [-11.195604, 7.870235], - [-11.195604, 7.870236], - [-11.195084, 7.870842], - [-11.195516, 7.871251], - [-11.195979, 7.871692], - [-11.196044, 7.871694], - [-11.19665, 7.872231], - [-11.197028, 7.871866], - [-11.197036, 7.871552], - [-11.197088, 7.871186], - [-11.198345, 7.870158], - [-11.199044, 7.869544], - [-11.199367, 7.869967], - [-11.199752, 7.870419], - [-11.198508, 7.87151], - [-11.198754, 7.871883], - [-11.198801, 7.871923], - [-11.199161, 7.87225], - [-11.199219, 7.872294], - [-11.199572, 7.87262], - [-11.199004, 7.873097], - [-11.198732, 7.873395], - [-11.199167, 7.873759], - [-11.199594, 7.874099], - [-11.200369, 7.873292], - [-11.200836, 7.872897], - [-11.201492, 7.87269], - [-11.201812, 7.872316], - [-11.200885, 7.871757], - [-11.201421, 7.871237], - [-11.201456, 7.870894], - [-11.201458, 7.87083], - [-11.202268, 7.87046], - [-11.20261, 7.870269], - [-11.202497, 7.869965], - [-11.202072, 7.869066], - [-11.202242, 7.869039], - [-11.20221, 7.868852], - [-11.202444, 7.868806], - [-11.202882, 7.86868], - [-11.202557, 7.867758], - [-11.203224, 7.867287], - [-11.203598, 7.866734], - [-11.203994, 7.865749], - [-11.204566, 7.865791], - [-11.204624, 7.864062], - [-11.205063, 7.86305], - [-11.204938, 7.862067], - [-11.204647, 7.860366], - [-11.205187, 7.85938], - [-11.205653, 7.858495], - [-11.20607, 7.857628], - [-11.205598, 7.857347], - [-11.205163, 7.857527], - [-11.20482, 7.857386], - [-11.205698, 7.855044], - [-11.206598, 7.854102], - [-11.206718, 7.854181], - [-11.206893, 7.854063], - [-11.207588, 7.853676], - [-11.209106, 7.852702], - [-11.211241, 7.8514], - [-11.211018, 7.851044], - [-11.21292, 7.850598], - [-11.213108, 7.850545], - [-11.21304, 7.849923], - [-11.213055, 7.849643], - [-11.213427, 7.849113], - [-11.213664, 7.848892], - [-11.213862, 7.848417], - [-11.213209, 7.847627], - [-11.213113, 7.84728], - [-11.212539, 7.846699], - [-11.21222, 7.846356], - [-11.212258, 7.846064], - [-11.212561, 7.845737], - [-11.21304, 7.846321], - [-11.213426, 7.84651], - [-11.214334, 7.846511], - [-11.214365, 7.846084], - [-11.214387, 7.845861], - [-11.214408, 7.845548], - [-11.214411, 7.845325], - [-11.214406, 7.845208], - [-11.214401, 7.844808], - [-11.214398, 7.84444], - [-11.214425, 7.843959], - [-11.214436, 7.843723], - [-11.214807, 7.84377], - [-11.215834, 7.844097], - [-11.215956, 7.844112], - [-11.216004, 7.843361], - [-11.216028, 7.84313], - [-11.216026, 7.842742], - [-11.216007, 7.842354], - [-11.215392, 7.841857], - [-11.214409, 7.841837], - [-11.214406, 7.841536], - [-11.213778, 7.841192], - [-11.214382, 7.840587], - [-11.214502, 7.840655], - [-11.214733, 7.839801], - [-11.214843, 7.839352], - [-11.21491, 7.839146], - [-11.215107, 7.83848], - [-11.214857, 7.838218], - [-11.214403, 7.838197], - [-11.214305, 7.837995], - [-11.214322, 7.837994], - [-11.21619, 7.834758], - [-11.21619, 7.834756], - [-11.216179, 7.834732], - [-11.216277, 7.834455], - [-11.216453, 7.833887], - [-11.21638, 7.833863], - [-11.215997, 7.833664], - [-11.21571, 7.833193], - [-11.215378, 7.832218], - [-11.215497, 7.831805], - [-11.215807, 7.831244], - [-11.21614, 7.831684], - [-11.217211, 7.831511], - [-11.217304, 7.831407], - [-11.217395, 7.830871], - [-11.217558, 7.829417], - [-11.217596, 7.829205], - [-11.217669, 7.828558], - [-11.218478, 7.828282], - [-11.218683, 7.828178], - [-11.218969, 7.828013], - [-11.218981, 7.828008], - [-11.218981, 7.828005], - [-11.219243, 7.827703], - [-11.21949, 7.826281], - [-11.21981, 7.825485], - [-11.219828, 7.823905], - [-11.220138, 7.822647], - [-11.220048, 7.821973], - [-11.220354, 7.821101], - [-11.221359, 7.819512], - [-11.21875, 7.81625], - [-11.220365, 7.814633], - [-11.217212, 7.809171], - [-11.220673, 7.803174], - [-11.219583, 7.802083], - [-11.219583, 7.794584], - [-11.227916, 7.789584], - [-11.234002, 7.789583], - [-11.236994, 7.784403], - [-11.244806, 7.784402], - [-11.248712, 7.777637] - ] - ], - "type": "Polygon" - }, - "id": 123, - "properties": { - "cc:admin:id": ["105"], - "cc:oBld:total": 4648, - "cc:pop:fifteen-to-twenty-four": 8288.07873707126, - "cc:pop:grid3-total": 33479.42062404749, - "cc:pop:kontur-total": 45133.12710757677, - "cc:pop:men": 21423.61102803252, - "cc:pop:sixty-plus": 2522.0645381779327, - "cc:pop:total": 43009.75071970502, - "cc:pop:under-five": 6742.729618531458, - "cc:pop:women": 21586.1396916725, - "cc:pop:women-fiften-to-forty-nine": 10805.139097279449, - "cc:pop:wp-total": 37260.900440637386, - "cc:pop:wp-total-UN": 43201.37068221817, - "cc:id": "123", - "cc:Name": "Gbo-Lambayama 2 MCHP", - "cc:site": [-11.1993, 7.8604], - "user:parentName": "Nongowa", - "user:code": "OU_222721", - "user:orgUnitId": "TYq1YW7qs7k", - "user:level": "4", - "user:parentId": "KIUCimTXf8Q" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.891899, 9.271099], - [-12.8888, 9.267599], - [-12.888199, 9.265499], - [-12.8852, 9.259], - [-12.8832, 9.2555], - [-12.882199, 9.252099], - [-12.8821, 9.248], - [-12.8827, 9.2445], - [-12.8838, 9.242499], - [-12.887299, 9.2383], - [-12.8888, 9.236099], - [-12.889399, 9.232599], - [-12.888899, 9.2296], - [-12.887599, 9.227399], - [-12.885199, 9.2259], - [-12.8802, 9.2246], - [-12.8778, 9.2238], - [-12.874299, 9.2214], - [-12.870999, 9.2223], - [-12.865699, 9.224599], - [-12.862299, 9.224899], - [-12.860099, 9.224499], - [-12.855199, 9.222399], - [-12.852699, 9.221799], - [-12.8473, 9.2211], - [-12.8448, 9.2205], - [-12.839399, 9.218299], - [-12.8346, 9.2178], - [-12.8269, 9.2177], - [-12.824, 9.217399], - [-12.820199, 9.215699], - [-12.816999, 9.212999], - [-12.8102, 9.2063], - [-12.807199, 9.2041], - [-12.803699, 9.203], - [-12.799, 9.2037], - [-12.798499, 9.2062], - [-12.796399, 9.2107], - [-12.7948, 9.217399], - [-12.7936, 9.219599], - [-12.7909, 9.222299], - [-12.7879, 9.224499], - [-12.784, 9.226399], - [-12.7812, 9.228499], - [-12.7776, 9.231999], - [-12.774499, 9.2359], - [-12.772299, 9.2405], - [-12.770299, 9.2432], - [-12.7678, 9.245499], - [-12.764799, 9.2471], - [-12.758899, 9.2484], - [-12.7545, 9.250599], - [-12.751299, 9.2518], - [-12.747, 9.254199], - [-12.743899, 9.2556], - [-12.741099, 9.2576], - [-12.7319, 9.266699], - [-12.7285, 9.269199], - [-12.725299, 9.2706], - [-12.720999, 9.2729], - [-12.717799, 9.2742], - [-12.7136, 9.276599], - [-12.7104, 9.277999], - [-12.7082, 9.279499], - [-12.705599, 9.2818], - [-12.6954, 9.291999], - [-12.693699, 9.2941], - [-12.6923, 9.2965], - [-12.6912, 9.301599], - [-12.6905, 9.303799], - [-12.6866, 9.311599], - [-12.6832, 9.315899], - [-12.6813, 9.318599], - [-12.679899, 9.3217], - [-12.6776, 9.325999], - [-12.675499, 9.3303], - [-12.6731, 9.333399], - [-12.67095, 9.335635], - [-12.674582, 9.335817], - [-12.674658, 9.335779], - [-12.678744, 9.336071], - [-12.678851, 9.336888], - [-12.680029, 9.338164], - [-12.681541, 9.338327], - [-12.682212, 9.338666], - [-12.683493, 9.339097], - [-12.684222, 9.339005], - [-12.684911, 9.339555], - [-12.68547, 9.339573], - [-12.6865, 9.339742], - [-12.686964, 9.339633], - [-12.688175, 9.340372], - [-12.688749, 9.340417], - [-12.692082, 9.344583], - [-12.692083, 9.351249], - [-12.700416, 9.35125], - [-12.703749, 9.354582], - [-12.702083, 9.359582], - [-12.700417, 9.360417], - [-12.699025, 9.364589], - [-12.70031, 9.3657], - [-12.703561, 9.365639], - [-12.70356, 9.365641], - [-12.703189, 9.365714], - [-12.703152, 9.366638], - [-12.703515, 9.367607], - [-12.703952, 9.368358], - [-12.704678, 9.369148], - [-12.706229, 9.370649], - [-12.70375, 9.373749], - [-12.70375, 9.374582], - [-12.707619, 9.377162], - [-12.708436, 9.376526], - [-12.709061, 9.376351], - [-12.710416, 9.380416], - [-12.710417, 9.381674], - [-12.71463, 9.384537], - [-12.715141, 9.385311], - [-12.715259, 9.386926], - [-12.7154, 9.387011], - [-12.717967, 9.387944], - [-12.718953, 9.388045], - [-12.720532, 9.388645], - [-12.721008, 9.388759], - [-12.719942, 9.392495], - [-12.724, 9.3952], - [-12.752199, 9.396499], - [-12.757799, 9.388399], - [-12.758199, 9.3769], - [-12.7565, 9.3662], - [-12.7516, 9.355599], - [-12.7509, 9.349599], - [-12.7534, 9.345], - [-12.7569, 9.3422], - [-12.777, 9.342599], - [-12.778799, 9.340099], - [-12.7786, 9.3334], - [-12.7815, 9.323999], - [-12.785199, 9.3168], - [-12.787999, 9.315899], - [-12.789599, 9.312699], - [-12.7884, 9.3039], - [-12.7895, 9.300699], - [-12.7941, 9.2975], - [-12.806599, 9.293499], - [-12.812099, 9.2868], - [-12.816499, 9.2859], - [-12.8251, 9.290899], - [-12.831299, 9.291099], - [-12.8408, 9.2853], - [-12.8446, 9.2869], - [-12.8572, 9.295799], - [-12.868299, 9.2953], - [-12.8729, 9.298299], - [-12.876399, 9.296599], - [-12.8811, 9.278], - [-12.891899, 9.271099] - ] - ], - "type": "Polygon" - }, - "id": 124, - "properties": { - "cc:admin:id": ["9"], - "cc:oBld:total": 645, - "cc:pop:fifteen-to-twenty-four": 3091.3377089490987, - "cc:pop:grid3-total": 16592.337956915122, - "cc:pop:kontur-total": 18714.594270285837, - "cc:pop:men": 7524.899623702485, - "cc:pop:sixty-plus": 1111.6582348917643, - "cc:pop:total": 16421.073605168567, - "cc:pop:under-five": 2545.3881839753763, - "cc:pop:women": 8896.173981466063, - "cc:pop:women-fiften-to-forty-nine": 4270.471702151527, - "cc:pop:wp-total": 15700.324714739489, - "cc:pop:wp-total-UN": 18199.715473443684, - "cc:id": "124", - "cc:Name": "Gbolon MCHP", - "cc:site": [-12.7379, 9.3485], - "user:parentName": "Bramaia", - "user:code": "OU_211222", - "user:orgUnitId": "vwvDblM3MNX", - "user:level": "4", - "user:parentId": "kbPmt60yi0L" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.729429, 8.983682], - [-12.72825, 8.984317], - [-12.724583, 8.97625], - [-12.726249, 8.972083], - [-12.721249, 8.972082], - [-12.718749, 8.96875], - [-12.716249, 8.967916], - [-12.710416, 8.962083], - [-12.709582, 8.962082], - [-12.70375, 8.959583], - [-12.707487, 8.952108], - [-12.707345, 8.952046], - [-12.706275, 8.952301], - [-12.704997, 8.952301], - [-12.703786, 8.952091], - [-12.702985, 8.950904], - [-12.702255, 8.95019], - [-12.701018, 8.946713], - [-12.698751, 8.951247], - [-12.698749, 8.951247], - [-12.697083, 8.945417], - [-12.698749, 8.942083], - [-12.698411, 8.941407], - [-12.697917, 8.94143], - [-12.697917, 8.940417], - [-12.699582, 8.935416], - [-12.699582, 8.932917], - [-12.69875, 8.932082], - [-12.697916, 8.930417], - [-12.692598, 8.930416], - [-12.689713, 8.925419], - [-12.693229, 8.919328], - [-12.693091, 8.919219], - [-12.693749, 8.918749], - [-12.69375, 8.912917], - [-12.692969, 8.908235], - [-12.685286, 8.908235], - [-12.683089, 8.912039], - [-12.682872, 8.911568], - [-12.682651, 8.910095], - [-12.682839, 8.909026], - [-12.683194, 8.907891], - [-12.682916, 8.907917], - [-12.67875, 8.907916], - [-12.678749, 8.902916], - [-12.677344, 8.897292], - [-12.675884, 8.896981], - [-12.677083, 8.894583], - [-12.679582, 8.892082], - [-12.674575, 8.884929], - [-12.675669, 8.883903], - [-12.677071, 8.882678], - [-12.676255, 8.882291], - [-12.673265, 8.878913], - [-12.672523, 8.878265], - [-12.672916, 8.877083], - [-12.668749, 8.873749], - [-12.666249, 8.867917], - [-12.662004, 8.87004], - [-12.661199, 8.8711], - [-12.6587, 8.873799], - [-12.655399, 8.876799], - [-12.652199, 8.878099], - [-12.6493, 8.877899], - [-12.6455, 8.8761], - [-12.642899, 8.8756], - [-12.6394, 8.8758], - [-12.634299, 8.878099], - [-12.630399, 8.878599], - [-12.6269, 8.877999], - [-12.622999, 8.875799], - [-12.6179, 8.8734], - [-12.615799, 8.8729], - [-12.6137, 8.8733], - [-12.6105, 8.874999], - [-12.6089, 8.876699], - [-12.6082, 8.8804], - [-12.608799, 8.885199], - [-12.611, 8.8897], - [-12.6118, 8.8923], - [-12.6123, 8.895399], - [-12.6153, 8.8968], - [-12.6193, 8.8982], - [-12.621699, 8.899599], - [-12.6238, 8.9013], - [-12.632199, 8.909599], - [-12.639999, 8.917099], - [-12.641399, 8.9193], - [-12.641999, 8.922099], - [-12.641299, 8.924599], - [-12.639499, 8.927], - [-12.629899, 8.9363], - [-12.6046, 8.961699], - [-12.599446, 8.966796], - [-12.59622, 8.969984], - [-12.600403, 8.972076], - [-12.600379, 8.972051], - [-12.599725, 8.970075], - [-12.59972, 8.96887], - [-12.59948, 8.968263], - [-12.599617, 8.967991], - [-12.599567, 8.966776], - [-12.600694, 8.966939], - [-12.601396, 8.967285], - [-12.601844, 8.967703], - [-12.602106, 8.96797], - [-12.603571, 8.970179], - [-12.604155, 8.972027], - [-12.604603, 8.972489], - [-12.607083, 8.97125], - [-12.608749, 8.97125], - [-12.60875, 8.972082], - [-12.610417, 8.972083], - [-12.61125, 8.974582], - [-12.614582, 8.974582], - [-12.614583, 8.97125], - [-12.619582, 8.970416], - [-12.620417, 8.966249], - [-12.625417, 8.96375], - [-12.628749, 8.965417], - [-12.62875, 8.972916], - [-12.631249, 8.972916], - [-12.636249, 8.971249], - [-12.634582, 8.967916], - [-12.63375, 8.96375], - [-12.634582, 8.962083], - [-12.642082, 8.960417], - [-12.643749, 8.960417], - [-12.645416, 8.966249], - [-12.645417, 8.967082], - [-12.647917, 8.969582], - [-12.654582, 8.970416], - [-12.656249, 8.970417], - [-12.659202, 8.971597], - [-12.659911, 8.971139], - [-12.662408, 8.969279], - [-12.665966, 8.96595], - [-12.667082, 8.964851], - [-12.667082, 8.96625], - [-12.66375, 8.972083], - [-12.670416, 8.975416], - [-12.672083, 8.97375], - [-12.678275, 8.97375], - [-12.678181, 8.974933], - [-12.678419, 8.976249], - [-12.680416, 8.97625], - [-12.68125, 8.977082], - [-12.686249, 8.977083], - [-12.687917, 8.978749], - [-12.692917, 8.97625], - [-12.699582, 8.978749], - [-12.70125, 8.98625], - [-12.704044, 8.986808], - [-12.704541, 8.9865], - [-12.705435, 8.983969], - [-12.705694, 8.982735], - [-12.705564, 8.982224], - [-12.710416, 8.982916], - [-12.710417, 8.985416], - [-12.714582, 8.987916], - [-12.714583, 8.988749], - [-12.715417, 8.989582], - [-12.72125, 8.989583], - [-12.727916, 8.991249], - [-12.729429, 8.983682] - ] - ], - "type": "Polygon" - }, - "id": 125, - "properties": { - "cc:admin:id": ["13"], - "cc:oBld:total": 17, - "cc:pop:fifteen-to-twenty-four": 1643.881999072122, - "cc:pop:grid3-total": 9818.646869314332, - "cc:pop:kontur-total": 8745.557687167926, - "cc:pop:men": 4242.058970746966, - "cc:pop:sixty-plus": 517.3029077824195, - "cc:pop:total": 8980.339326517085, - "cc:pop:under-five": 1421.6641567810054, - "cc:pop:women": 4738.280355770113, - "cc:pop:women-fiften-to-forty-nine": 2356.0314563756365, - "cc:pop:wp-total": 9071.433298043004, - "cc:pop:wp-total-UN": 10518.427520076828, - "cc:id": "125", - "cc:Name": "Gbombana MCHP", - "cc:site": [-12.6572, 8.9258], - "user:parentName": "Dibia", - "user:code": "OU_254978", - "user:orgUnitId": "X3D19LoA2Ij", - "user:level": "4", - "user:parentId": "ZiOVcrSjSYe" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.906415, 7.258599], - [-11.906399, 7.258399], - [-11.9049, 7.2552], - [-11.9022, 7.252], - [-11.898999, 7.249299], - [-11.895299, 7.247299], - [-11.892399, 7.246499], - [-11.8894, 7.2462], - [-11.8773, 7.2461], - [-11.871299, 7.245499], - [-11.8585, 7.2416], - [-11.8491, 7.2371], - [-11.8463, 7.240299], - [-11.842499, 7.2477], - [-11.841699, 7.251], - [-11.8414, 7.259199], - [-11.8408, 7.262699], - [-11.8373, 7.270199], - [-11.835699, 7.2724], - [-11.8302, 7.278399], - [-11.828, 7.281299], - [-11.8253, 7.286199], - [-11.822699, 7.2895], - [-11.8192, 7.295099], - [-11.822599, 7.300499], - [-11.824, 7.3037], - [-11.826399, 7.307999], - [-11.8278, 7.3111], - [-11.830099, 7.315499], - [-11.831299, 7.320599], - [-11.832099, 7.322999], - [-11.834099, 7.326599], - [-11.8354, 7.3298], - [-11.8379, 7.3341], - [-11.8392, 7.3373], - [-11.8406, 7.341999], - [-11.8457, 7.338499], - [-11.849599, 7.3368], - [-11.853799, 7.3344], - [-11.856999, 7.333], - [-11.8598, 7.331499], - [-11.8622, 7.330599], - [-11.864899, 7.3302], - [-11.870399, 7.329999], - [-11.8718, 7.325], - [-11.8747, 7.321099], - [-11.879199, 7.3063], - [-11.880399, 7.3017], - [-11.881899, 7.2927], - [-11.884699, 7.286], - [-11.8866, 7.283099], - [-11.889199, 7.2808], - [-11.900399, 7.2746], - [-11.9031, 7.272099], - [-11.905599, 7.268099], - [-11.906799, 7.2633], - [-11.906415, 7.258599] - ] - ], - "type": "Polygon" - }, - "id": 126, - "properties": { - "cc:admin:id": ["67"], - "cc:oBld:total": 78, - "cc:pop:fifteen-to-twenty-four": 2422.471777172966, - "cc:pop:grid3-total": 3946.185763531558, - "cc:pop:kontur-total": 12817.521107214723, - "cc:pop:men": 6418.153674174572, - "cc:pop:sixty-plus": 970.4825708385296, - "cc:pop:total": 13420.399540045208, - "cc:pop:under-five": 2222.0771636454006, - "cc:pop:women": 7002.2458658706355, - "cc:pop:women-fiften-to-forty-nine": 3335.961138015775, - "cc:pop:wp-total": 11331.85711341998, - "cc:pop:wp-total-UN": 13143.012114450534, - "cc:id": "126", - "cc:Name": "Gbondapi CHC", - "cc:site": [-11.8495, 7.3193], - "user:parentName": "Kpanga Kabonde", - "user:code": "OU_260407", - "user:orgUnitId": "bHcw141PTsE", - "user:level": "4", - "user:parentId": "QwMiPiME3bA" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.829399, 8.003699], - [-11.829299, 8.000099], - [-11.827799, 7.9951], - [-11.825699, 7.991999], - [-11.8213, 7.9873], - [-11.821196, 7.987051], - [-11.820572, 7.98705], - [-11.820236, 7.986824], - [-11.819149, 7.9867], - [-11.818256, 7.986809], - [-11.817496, 7.987138], - [-11.816833, 7.986906], - [-11.816622, 7.986868], - [-11.816255, 7.986628], - [-11.8138, 7.98679], - [-11.813474, 7.986545], - [-11.812684, 7.986293], - [-11.812205, 7.986344], - [-11.812163, 7.986973], - [-11.812368, 7.987377], - [-11.811291, 7.988321], - [-11.809777, 7.98885], - [-11.809114, 7.988907], - [-11.808279, 7.989147], - [-11.807916, 7.989116], - [-11.807263, 7.989192], - [-11.806195, 7.9891], - [-11.804757, 7.988432], - [-11.803965, 7.988324], - [-11.802523, 7.987723], - [-11.80073, 7.987565], - [-11.79995, 7.987853], - [-11.799084, 7.987898], - [-11.79893, 7.987855], - [-11.798597, 7.987709], - [-11.796696, 7.98599], - [-11.796541, 7.985938], - [-11.795417, 7.98875], - [-11.795416, 7.991249], - [-11.794079, 7.992141], - [-11.793971, 7.992096], - [-11.79181, 7.990626], - [-11.790375, 7.990441], - [-11.789886, 7.990264], - [-11.790416, 7.987084], - [-11.787916, 7.984584], - [-11.785416, 7.985417], - [-11.780417, 7.991249], - [-11.780416, 7.992084], - [-11.778749, 7.993749], - [-11.77375, 7.995417], - [-11.772652, 7.99871], - [-11.772079, 7.998773], - [-11.77135, 7.999149], - [-11.771137, 7.999024], - [-11.770754, 7.999594], - [-11.770698, 7.999865], - [-11.771021, 8.000563], - [-11.771067, 8.001094], - [-11.769583, 8.002083], - [-11.769582, 8.000417], - [-11.767083, 7.999584], - [-11.764583, 8.000417], - [-11.765417, 8.005416], - [-11.766249, 8.007084], - [-11.763749, 8.009584], - [-11.756716, 8.014273], - [-11.756752, 8.014629], - [-11.756386, 8.018099], - [-11.757929, 8.020909], - [-11.754582, 8.022916], - [-11.74625, 8.024584], - [-11.74625, 8.025416], - [-11.75125, 8.027917], - [-11.753749, 8.031249], - [-11.75375, 8.033749], - [-11.752917, 8.037083], - [-11.752916, 8.037916], - [-11.752083, 8.039584], - [-11.752916, 8.047916], - [-11.74875, 8.052084], - [-11.74875, 8.054583], - [-11.749775, 8.05561], - [-11.747834, 8.055611], - [-11.743928, 8.062376], - [-11.747535, 8.068625], - [-11.745785, 8.070181], - [-11.7466, 8.0705], - [-11.7496, 8.071], - [-11.7547, 8.071099], - [-11.775399, 8.071099], - [-11.7777, 8.067699], - [-11.780099, 8.0613], - [-11.783799, 8.0583], - [-11.7869, 8.055499], - [-11.788999, 8.0529], - [-11.790799, 8.0491], - [-11.792299, 8.0473], - [-11.7942, 8.045699], - [-11.7973, 8.044299], - [-11.801199, 8.0412], - [-11.8034, 8.038699], - [-11.8061, 8.033399], - [-11.809699, 8.0292], - [-11.8127, 8.027099], - [-11.8165, 8.025199], - [-11.819499, 8.023], - [-11.822099, 8.0198], - [-11.826499, 8.0112], - [-11.829399, 8.003699] - ] - ], - "type": "Polygon" - }, - "id": 127, - "properties": { - "cc:admin:id": ["46"], - "cc:oBld:total": 353, - "cc:pop:fifteen-to-twenty-four": 408.36826120531, - "cc:pop:grid3-total": 2113.1725786981015, - "cc:pop:kontur-total": 2190.6881087990187, - "cc:pop:men": 1008.8100875262032, - "cc:pop:sixty-plus": 141.1198114732323, - "cc:pop:total": 2093.248019615294, - "cc:pop:under-five": 385.8766109886797, - "cc:pop:women": 1084.4379320890907, - "cc:pop:women-fiften-to-forty-nine": 526.996422461912, - "cc:pop:wp-total": 1739.8632770143086, - "cc:pop:wp-total-UN": 2015.8362712051085, - "cc:id": "127", - "cc:Name": "Gbongboma MCHP", - "cc:site": [-11.7861, 8.0307], - "user:parentName": "Kakua", - "user:code": "OU_843", - "user:orgUnitId": "tGf942oWszb", - "user:level": "4", - "user:parentId": "U6Kr7Gtpidn" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.095821, 7.684768], - [-12.093287, 7.680379], - [-12.08875, 7.680378], - [-12.08875, 7.667084], - [-12.090543, 7.665289], - [-12.085029, 7.665288], - [-12.081123, 7.658523], - [-12.081953, 7.657084], - [-12.079582, 7.657083], - [-12.075203, 7.653434], - [-12.075204, 7.653433], - [-12.080958, 7.653432], - [-12.084864, 7.646667], - [-12.080959, 7.639901], - [-12.083066, 7.63625], - [-12.080417, 7.63625], - [-12.080213, 7.636756], - [-12.07546, 7.636756], - [-12.071554, 7.643522], - [-12.073355, 7.646645], - [-12.072916, 7.647084], - [-12.06625, 7.647084], - [-12.059582, 7.634584], - [-12.05125, 7.635416], - [-12.051238, 7.63539], - [-12.049906, 7.637697], - [-12.050253, 7.637906], - [-12.049582, 7.639583], - [-12.042083, 7.648749], - [-12.037083, 7.64875], - [-12.036904, 7.648571], - [-12.0369, 7.648576], - [-12.034196, 7.648576], - [-12.0352, 7.6497], - [-12.0369, 7.6528], - [-12.0381, 7.6561], - [-12.0398, 7.6629], - [-12.041399, 7.667399], - [-12.0459, 7.6759], - [-12.0514, 7.690599], - [-12.059199, 7.698299], - [-12.0646, 7.7027], - [-12.073399, 7.707099], - [-12.080899, 7.709799], - [-12.085999, 7.6997], - [-12.090599, 7.6915], - [-12.0928, 7.688499], - [-12.095821, 7.684768] - ] - ], - "type": "Polygon" - }, - "id": 128, - "properties": { - "cc:admin:id": ["65"], - "cc:oBld:total": 0, - "cc:pop:fifteen-to-twenty-four": 171.48701036858625, - "cc:pop:grid3-total": 1992.0772725614202, - "cc:pop:kontur-total": 823.8208874476935, - "cc:pop:men": 447.60058498017554, - "cc:pop:sixty-plus": 61.20219806630141, - "cc:pop:total": 926.821907592876, - "cc:pop:under-five": 157.64017559917872, - "cc:pop:women": 479.22132261270076, - "cc:pop:women-fiften-to-forty-nine": 227.2040249257986, - "cc:pop:wp-total": 840.1293691272083, - "cc:pop:wp-total-UN": 974.0869375817344, - "cc:id": "128", - "cc:Name": "Gbongeh CHP", - "cc:site": [-12.066, 7.6719], - "user:parentName": "Kpanda Kemoh", - "user:code": "OU_197428", - "user:orgUnitId": "MMrdfNDfBIi", - "user:level": "4", - "user:parentId": "aWQTfvgPA5v" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.464399, 8.0374], - [-12.460499, 8.0338], - [-12.4245, 8.033799], - [-12.4201, 8.033], - [-12.415199, 8.030899], - [-12.409299, 8.029399], - [-12.406099, 8.027599], - [-12.400999, 8.023699], - [-12.3926, 8.0196], - [-12.389, 8.0188], - [-12.385999, 8.0187], - [-12.3681, 8.018799], - [-12.364199, 8.018299], - [-12.3588, 8.0161], - [-12.3534, 8.0147], - [-12.3519, 8.0139], - [-12.3487, 8.010899], - [-12.347199, 8.008], - [-12.343799, 8.0046], - [-12.3363, 8.001], - [-12.332493, 8.000121], - [-12.335846, 8.00593], - [-12.33194, 8.012695], - [-12.332796, 8.014179], - [-12.33125, 8.015417], - [-12.331249, 8.026227], - [-12.324128, 8.026228], - [-12.320222, 8.032993], - [-12.324128, 8.039758], - [-12.331817, 8.039759], - [-12.329583, 8.04125], - [-12.327917, 8.049583], - [-12.338749, 8.052917], - [-12.338749, 8.062916], - [-12.33375, 8.067917], - [-12.33375, 8.074584], - [-12.335417, 8.078749], - [-12.337917, 8.081249], - [-12.343749, 8.079584], - [-12.348749, 8.078749], - [-12.35125, 8.07625], - [-12.35273, 8.075757], - [-12.354424, 8.078562], - [-12.355484, 8.083179], - [-12.356155, 8.083658], - [-12.358749, 8.080417], - [-12.360416, 8.080416], - [-12.363749, 8.077085], - [-12.36375, 8.079583], - [-12.367916, 8.082916], - [-12.375416, 8.085416], - [-12.372917, 8.077086], - [-12.372918, 8.077084], - [-12.387082, 8.083749], - [-12.384471, 8.087667], - [-12.391765, 8.087667], - [-12.395671, 8.080903], - [-12.395806, 8.080903], - [-12.396189, 8.081741], - [-12.396672, 8.084116], - [-12.397289, 8.08492], - [-12.398536, 8.085854], - [-12.400733, 8.087012], - [-12.402487, 8.083976], - [-12.410299, 8.083976], - [-12.414206, 8.09074], - [-12.422018, 8.09074], - [-12.425925, 8.083976], - [-12.429582, 8.083976], - [-12.429583, 8.085416], - [-12.432083, 8.087916], - [-12.434583, 8.087916], - [-12.442916, 8.083749], - [-12.444583, 8.080416], - [-12.448749, 8.077916], - [-12.450416, 8.07375], - [-12.449582, 8.072083], - [-12.44875, 8.069584], - [-12.457206, 8.068814], - [-12.4572, 8.067599], - [-12.457399, 8.0628], - [-12.457999, 8.06], - [-12.4599, 8.055599], - [-12.4605, 8.053099], - [-12.460999, 8.0477], - [-12.461599, 8.0452], - [-12.463599, 8.0407], - [-12.464399, 8.0374] - ] - ], - "type": "Polygon" - }, - "id": 129, - "properties": { - "cc:admin:id": ["45"], - "cc:oBld:total": 6, - "cc:pop:fifteen-to-twenty-four": 247.18334913612983, - "cc:pop:grid3-total": 2599.1858007510996, - "cc:pop:kontur-total": 1740.8277277791922, - "cc:pop:men": 634.750603328569, - "cc:pop:sixty-plus": 83.07486081263569, - "cc:pop:total": 1325.995541975133, - "cc:pop:under-five": 229.19418328656437, - "cc:pop:women": 691.244938646564, - "cc:pop:women-fiften-to-forty-nine": 325.2582099487655, - "cc:pop:wp-total": 1758.325309967354, - "cc:pop:wp-total-UN": 2039.7576524501683, - "cc:id": "129", - "cc:Name": "Gbongeima MCHP", - "cc:site": [-12.3878, 8.0557], - "user:parentName": "Kaiyamba", - "user:code": "OU_247064", - "user:orgUnitId": "rebbn0ooFSO", - "user:level": "4", - "user:parentId": "USQdmvrHh1Q" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.679583, 8.862916], - [-10.679582, 8.859583], - [-10.677917, 8.857082], - [-10.677916, 8.85375], - [-10.675282, 8.851115], - [-10.675884, 8.850588], - [-10.676298, 8.84987], - [-10.67653, 8.849777], - [-10.674583, 8.844582], - [-10.674582, 8.840417], - [-10.670417, 8.839582], - [-10.671249, 8.829583], - [-10.657083, 8.829583], - [-10.656249, 8.82875], - [-10.645417, 8.832082], - [-10.643749, 8.827917], - [-10.637082, 8.82375], - [-10.636249, 8.82375], - [-10.629583, 8.825416], - [-10.62625, 8.825416], - [-10.62625, 8.824582], - [-10.626968, 8.818116], - [-10.62697, 8.818115], - [-10.627512, 8.818368], - [-10.627799, 8.818182], - [-10.627082, 8.809583], - [-10.622916, 8.80625], - [-10.617083, 8.805417], - [-10.608749, 8.808749], - [-10.60625, 8.804582], - [-10.605416, 8.800417], - [-10.600417, 8.794583], - [-10.600416, 8.792917], - [-10.59625, 8.78875], - [-10.596249, 8.787083], - [-10.589583, 8.782083], - [-10.581249, 8.789582], - [-10.57875, 8.789582], - [-10.576249, 8.787083], - [-10.574582, 8.787082], - [-10.572082, 8.78375], - [-10.569583, 8.782916], - [-10.569582, 8.780005], - [-10.569151, 8.780006], - [-10.56807, 8.779686], - [-10.56715, 8.779637], - [-10.566123, 8.779593], - [-10.565211, 8.780018], - [-10.565209, 8.780017], - [-10.565197, 8.779847], - [-10.562917, 8.780417], - [-10.561249, 8.783749], - [-10.559582, 8.785416], - [-10.553022, 8.786073], - [-10.562699, 8.7937], - [-10.5671, 8.801099], - [-10.570499, 8.801499], - [-10.5763, 8.7981], - [-10.58, 8.801799], - [-10.583499, 8.8016], - [-10.586899, 8.8043], - [-10.5852, 8.817899], - [-10.5834, 8.8216], - [-10.587699, 8.8347], - [-10.5868, 8.84], - [-10.596099, 8.889599], - [-10.593, 8.908699], - [-10.593699, 8.926399], - [-10.592, 8.932599], - [-10.595, 8.937799], - [-10.601099, 8.9332], - [-10.605299, 8.9306], - [-10.609099, 8.9297], - [-10.618299, 8.932199], - [-10.6243, 8.934699], - [-10.627799, 8.934899], - [-10.6304, 8.934399], - [-10.6357, 8.932299], - [-10.6387, 8.931699], - [-10.6439, 8.9315], - [-10.657649, 8.931499], - [-10.658749, 8.92875], - [-10.660416, 8.928749], - [-10.663749, 8.922916], - [-10.662917, 8.91375], - [-10.657083, 8.912916], - [-10.654583, 8.91125], - [-10.654583, 8.902083], - [-10.662916, 8.900417], - [-10.663749, 8.900416], - [-10.664583, 8.895417], - [-10.667082, 8.89125], - [-10.664583, 8.888749], - [-10.668749, 8.879583], - [-10.674582, 8.877916], - [-10.67375, 8.876249], - [-10.67375, 8.864583], - [-10.679583, 8.862916] - ] - ], - "type": "Polygon" - }, - "id": 130, - "properties": { - "cc:admin:id": ["72"], - "cc:oBld:total": 506, - "cc:pop:fifteen-to-twenty-four": 554.5158839315693, - "cc:pop:grid3-total": 4774.634737720426, - "cc:pop:kontur-total": 3030.2844857562995, - "cc:pop:men": 1385.0545171979095, - "cc:pop:sixty-plus": 169.52187661297992, - "cc:pop:total": 2951.513156140487, - "cc:pop:under-five": 475.539859340988, - "cc:pop:women": 1566.4586389425772, - "cc:pop:women-fiften-to-forty-nine": 773.0173111971626, - "cc:pop:wp-total": 3029.3663108761193, - "cc:pop:wp-total-UN": 3519.173401125366, - "cc:id": "130", - "cc:Name": "Gbongongor CHP", - "cc:site": [-10.6357, 8.8919], - "user:parentName": "Lei", - "user:code": "OU_233350", - "user:orgUnitId": "HOgWkpYH3KB", - "user:level": "4", - "user:parentId": "LhaAPLxdSFH" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.479499, 9.2588], - [-12.471999, 9.256899], - [-12.468899, 9.254699], - [-12.463699, 9.251499], - [-12.4538, 9.2437], - [-12.4432, 9.238], - [-12.4402, 9.236], - [-12.437599, 9.233299], - [-12.4327, 9.2251], - [-12.4291, 9.2176], - [-12.4276, 9.212099], - [-12.428, 9.207599], - [-12.433199, 9.19], - [-12.433699, 9.1862], - [-12.432799, 9.182499], - [-12.428399, 9.173], - [-12.4221, 9.173099], - [-12.4181, 9.1742], - [-12.414299, 9.1788], - [-12.4085, 9.185199], - [-12.4067, 9.188], - [-12.4059, 9.190999], - [-12.4055, 9.196299], - [-12.404599, 9.199999], - [-12.401199, 9.2053], - [-12.397399, 9.206699], - [-12.3744, 9.2066], - [-12.3715, 9.206799], - [-12.368699, 9.2075], - [-12.3644, 9.209699], - [-12.361199, 9.2111], - [-12.3568, 9.213299], - [-12.3542, 9.213899], - [-12.351299, 9.2141], - [-12.3397, 9.2141], - [-12.336899, 9.2144], - [-12.333399, 9.2159], - [-12.331199, 9.2177], - [-12.3264, 9.222299], - [-12.323199, 9.224399], - [-12.320499, 9.2251], - [-12.3118, 9.225499], - [-12.309, 9.226099], - [-12.300699, 9.23], - [-12.2948, 9.2339], - [-12.2915, 9.237999], - [-12.289699, 9.2394], - [-12.286599, 9.2409], - [-12.2824, 9.243299], - [-12.279199, 9.2446], - [-12.2749, 9.246999], - [-12.271699, 9.2483], - [-12.2675, 9.250699], - [-12.2643, 9.252099], - [-12.262196, 9.25321], - [-12.262562, 9.256871], - [-12.260969, 9.259631], - [-12.264874, 9.266396], - [-12.264058, 9.267811], - [-12.265417, 9.267917], - [-12.270416, 9.274582], - [-12.270417, 9.276154], - [-12.271248, 9.275965], - [-12.271249, 9.275966], - [-12.27125, 9.279582], - [-12.273749, 9.281249], - [-12.280186, 9.28268], - [-12.281049, 9.281883], - [-12.282083, 9.282917], - [-12.294582, 9.283749], - [-12.29625, 9.279583], - [-12.297917, 9.277917], - [-12.306249, 9.280417], - [-12.30625, 9.281249], - [-12.307083, 9.282083], - [-12.307083, 9.289582], - [-12.312082, 9.28875], - [-12.312917, 9.290416], - [-12.318749, 9.291249], - [-12.319583, 9.288749], - [-12.327083, 9.280417], - [-12.330417, 9.282916], - [-12.332917, 9.282917], - [-12.335417, 9.285416], - [-12.337083, 9.285417], - [-12.339583, 9.288749], - [-12.342083, 9.28625], - [-12.351071, 9.287747], - [-12.351057, 9.288127], - [-12.355416, 9.28875], - [-12.356065, 9.293934], - [-12.357064, 9.293867], - [-12.359903, 9.292808], - [-12.360732, 9.292678], - [-12.361594, 9.292757], - [-12.362861, 9.292666], - [-12.363469, 9.292645], - [-12.365207, 9.292185], - [-12.366179, 9.291722], - [-12.366687, 9.291297], - [-12.367081, 9.291213], - [-12.367083, 9.29125], - [-12.372916, 9.294582], - [-12.37375, 9.294583], - [-12.374583, 9.295416], - [-12.378749, 9.292917], - [-12.379583, 9.292916], - [-12.382859, 9.29226], - [-12.3784, 9.288899], - [-12.376499, 9.286199], - [-12.375, 9.281799], - [-12.3753, 9.2787], - [-12.376799, 9.2765], - [-12.3799, 9.275199], - [-12.3838, 9.275], - [-12.387999, 9.275799], - [-12.3919, 9.2778], - [-12.3953, 9.2806], - [-12.4006, 9.2859], - [-12.411099, 9.296599], - [-12.4187, 9.304999], - [-12.424699, 9.299299], - [-12.426599, 9.295899], - [-12.4273, 9.291999], - [-12.427799, 9.2823], - [-12.4284, 9.278399], - [-12.4297, 9.273899], - [-12.434099, 9.2618], - [-12.4356, 9.259099], - [-12.4395, 9.2572], - [-12.442899, 9.258], - [-12.448799, 9.261899], - [-12.4516, 9.263], - [-12.4563, 9.2639], - [-12.464599, 9.2643], - [-12.4686, 9.266599], - [-12.473699, 9.266799], - [-12.477599, 9.264099], - [-12.479499, 9.2588] - ] - ], - "type": "Polygon" - }, - "id": 131, - "properties": { - "cc:admin:id": ["31"], - "cc:oBld:total": 436, - "cc:pop:fifteen-to-twenty-four": 2099.6541305672963, - "cc:pop:grid3-total": 8311.140787263717, - "cc:pop:kontur-total": 11641.511295458311, - "cc:pop:men": 5431.297492211102, - "cc:pop:sixty-plus": 756.1476779400231, - "cc:pop:total": 11426.6426671613, - "cc:pop:under-five": 1813.7422648626762, - "cc:pop:women": 5995.345174950204, - "cc:pop:women-fiften-to-forty-nine": 2897.685123357417, - "cc:pop:wp-total": 9504.819163402613, - "cc:pop:wp-total-UN": 11033.382003804085, - "cc:id": "131", - "cc:Name": "Gbonkobana CHP", - "cc:site": [-12.3161, 9.2398], - "user:parentName": "Gbanti Kamaranka", - "user:code": "OU_193222", - "user:orgUnitId": "BXJnMD2eJAx", - "user:level": "4", - "user:parentId": "e1eIKM1GIF3" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.896246, 8.802277], - [-12.896299, 8.800099], - [-12.895599, 8.7949], - [-12.891399, 8.785999], - [-12.889299, 8.782999], - [-12.8852, 8.7799], - [-12.8808, 8.777499], - [-12.8777, 8.7743], - [-12.873599, 8.767099], - [-12.8697, 8.7581], - [-12.8689, 8.7519], - [-12.8683, 8.7491], - [-12.8662, 8.7445], - [-12.8644, 8.7379], - [-12.8619, 8.732099], - [-12.8614, 8.725699], - [-12.861399, 8.719205], - [-12.860581, 8.71929], - [-12.85992, 8.719148], - [-12.859695, 8.719191], - [-12.859335, 8.719286], - [-12.858923, 8.719513], - [-12.858606, 8.719745], - [-12.858113, 8.719887], - [-12.856123, 8.720149], - [-12.855264, 8.720288], - [-12.854824, 8.720463], - [-12.853842, 8.720925], - [-12.852665, 8.721672], - [-12.851764, 8.722252], - [-12.850644, 8.723409], - [-12.851646, 8.724395], - [-12.84933, 8.726742], - [-12.848646, 8.727488], - [-12.848357, 8.728055], - [-12.847983, 8.729041], - [-12.846715, 8.731682], - [-12.846486, 8.733014], - [-12.846427, 8.733995], - [-12.846157, 8.73463], - [-12.845816, 8.735169], - [-12.845704, 8.735653], - [-12.845004, 8.736504], - [-12.843714, 8.737493], - [-12.842382, 8.738568], - [-12.842185, 8.739081], - [-12.841913, 8.739486], - [-12.841484, 8.7398], - [-12.840845, 8.74036], - [-12.840344, 8.740645], - [-12.839931, 8.740785], - [-12.837497, 8.741084], - [-12.836381, 8.741314], - [-12.835504, 8.741332], - [-12.833637, 8.741046], - [-12.831981, 8.740107], - [-12.830839, 8.739435], - [-12.830311, 8.739206], - [-12.829664, 8.739043], - [-12.827965, 8.738799], - [-12.826734, 8.738652], - [-12.825658, 8.738321], - [-12.82455, 8.73783], - [-12.823357, 8.737414], - [-12.822762, 8.737302], - [-12.821984, 8.737251], - [-12.821171, 8.737311], - [-12.820019, 8.737518], - [-12.818925, 8.738099], - [-12.818032, 8.738438], - [-12.816425, 8.739065], - [-12.813577, 8.740227], - [-12.812785, 8.740606], - [-12.811755, 8.741378], - [-12.810979, 8.74194], - [-12.810689, 8.742045], - [-12.810289, 8.742281], - [-12.809841, 8.742639], - [-12.809701, 8.742795], - [-12.810949, 8.74366], - [-12.811613, 8.742956], - [-12.811867, 8.743986], - [-12.812514, 8.743989], - [-12.812784, 8.742189], - [-12.813698, 8.740905], - [-12.815252, 8.740657], - [-12.815248, 8.741429], - [-12.816549, 8.740277], - [-12.816812, 8.739636], - [-12.818626, 8.739259], - [-12.81889, 8.738616], - [-12.821479, 8.738503], - [-12.822773, 8.738767], - [-12.824586, 8.73865], - [-12.826002, 8.739945], - [-12.825911, 8.741119], - [-12.824564, 8.740966], - [-12.824165, 8.741148], - [-12.823583, 8.741949], - [-12.823952, 8.742118], - [-12.823085, 8.743426], - [-12.823141, 8.743636], - [-12.822829, 8.744129], - [-12.8227, 8.745154], - [-12.822245, 8.745744], - [-12.821662, 8.746012], - [-12.820709, 8.745591], - [-12.819088, 8.746055], - [-12.818647, 8.746489], - [-12.818703, 8.746486], - [-12.821249, 8.74875], - [-12.821249, 8.751134], - [-12.820883, 8.75129], - [-12.82045, 8.751374], - [-12.820246, 8.75139], - [-12.819537, 8.751263], - [-12.819295, 8.750998], - [-12.818716, 8.750928], - [-12.818249, 8.75051], - [-12.817231, 8.750033], - [-12.816742, 8.750085], - [-12.816511, 8.750006], - [-12.815487, 8.749544], - [-12.814538, 8.748643], - [-12.813503, 8.746364], - [-12.812966, 8.745638], - [-12.809641, 8.742838], - [-12.809566, 8.742889], - [-12.810008, 8.743264], - [-12.810182, 8.744234], - [-12.809534, 8.744488], - [-12.80966, 8.745003], - [-12.809527, 8.745518], - [-12.809264, 8.746289], - [-12.808747, 8.746287], - [-12.808741, 8.747059], - [-12.808224, 8.747057], - [-12.808088, 8.748086], - [-12.807567, 8.748856], - [-12.80769, 8.749629], - [-12.806394, 8.750138], - [-12.806389, 8.750909], - [-12.806905, 8.751042], - [-12.807161, 8.751687], - [-12.807679, 8.751691], - [-12.80819, 8.752723], - [-12.807155, 8.752717], - [-12.80703, 8.751944], - [-12.806644, 8.751685], - [-12.806106, 8.755029], - [-12.805242, 8.754937], - [-12.804343, 8.755593], - [-12.804247, 8.756081], - [-12.809582, 8.758749], - [-12.810665, 8.75875], - [-12.810666, 8.758751], - [-12.810601, 8.758825], - [-12.809978, 8.758969], - [-12.809294, 8.75895], - [-12.807767, 8.758576], - [-12.80689, 8.75887], - [-12.806657, 8.758517], - [-12.806079, 8.758608], - [-12.805854, 8.758371], - [-12.805853, 8.757933], - [-12.805375, 8.757296], - [-12.804758, 8.757132], - [-12.804308, 8.757279], - [-12.804407, 8.757596], - [-12.804328, 8.757684], - [-12.804665, 8.758227], - [-12.80511, 8.758614], - [-12.805514, 8.758668], - [-12.805847, 8.759139], - [-12.806339, 8.759455], - [-12.806371, 8.760163], - [-12.805907, 8.76065], - [-12.806005, 8.760842], - [-12.804583, 8.760417], - [-12.804583, 8.765416], - [-12.805416, 8.767916], - [-12.805791, 8.768167], - [-12.805159, 8.769051], - [-12.80447, 8.769092], - [-12.803182, 8.770023], - [-12.802385, 8.770128], - [-12.801681, 8.77043], - [-12.801459, 8.771317], - [-12.802388, 8.771429], - [-12.802858, 8.771697], - [-12.804239, 8.771094], - [-12.805063, 8.770906], - [-12.805847, 8.770834], - [-12.806499, 8.7712], - [-12.807102, 8.77109], - [-12.807442, 8.771352], - [-12.808058, 8.772803], - [-12.808086, 8.773537], - [-12.808337, 8.773639], - [-12.805417, 8.778749], - [-12.806068, 8.779401], - [-12.806155, 8.779454], - [-12.807383, 8.779678], - [-12.807795, 8.779933], - [-12.807736, 8.780354], - [-12.808585, 8.780577], - [-12.809502, 8.779848], - [-12.809323, 8.779495], - [-12.809747, 8.779402], - [-12.809934, 8.77895], - [-12.810763, 8.778877], - [-12.810817, 8.778287], - [-12.811162, 8.77767], - [-12.811334, 8.777605], - [-12.811435, 8.777801], - [-12.811753, 8.777447], - [-12.812649, 8.775911], - [-12.813712, 8.775314], - [-12.813845, 8.775476], - [-12.8124, 8.777211], - [-12.812118, 8.777889], - [-12.811808, 8.778057], - [-12.811583, 8.778594], - [-12.811929, 8.779245], - [-12.811986, 8.780448], - [-12.811985, 8.780448], - [-12.811519, 8.779867], - [-12.80875, 8.782083], - [-12.809583, 8.782916], - [-12.81125, 8.78375], - [-12.812916, 8.786249], - [-12.812916, 8.787083], - [-12.811736, 8.789443], - [-12.807654, 8.787171], - [-12.80625, 8.792082], - [-12.808749, 8.792917], - [-12.811249, 8.795416], - [-12.810417, 8.797916], - [-12.812916, 8.803749], - [-12.812082, 8.804583], - [-12.810067, 8.807943], - [-12.811855, 8.808985], - [-12.813103, 8.810684], - [-12.812773, 8.811234], - [-12.812246, 8.813463], - [-12.811919, 8.813894], - [-12.811239, 8.814149], - [-12.810718, 8.814451], - [-12.809026, 8.814435], - [-12.80819, 8.814902], - [-12.807497, 8.816107], - [-12.80697, 8.816484], - [-12.805679, 8.8174], - [-12.805609, 8.817404], - [-12.806249, 8.82125], - [-12.79726, 8.829491], - [-12.798942, 8.832815], - [-12.7996, 8.831899], - [-12.8021, 8.8309], - [-12.805599, 8.830999], - [-12.810499, 8.833199], - [-12.8132, 8.8339], - [-12.8199, 8.8342], - [-12.831499, 8.8342], - [-12.835299, 8.8341], - [-12.839, 8.833599], - [-12.8447, 8.831299], - [-12.8486, 8.830599], - [-12.855, 8.830299], - [-12.858499, 8.8296], - [-12.862999, 8.8276], - [-12.866299, 8.826699], - [-12.8683, 8.824199], - [-12.8722, 8.820199], - [-12.8799, 8.818699], - [-12.889599, 8.814399], - [-12.8927, 8.811699], - [-12.894, 8.810199], - [-12.895399, 8.8078], - [-12.896199, 8.8041], - [-12.896246, 8.802277] - ] - ], - "type": "Polygon" - }, - "id": 132, - "properties": { - "cc:admin:id": ["80"], - "cc:oBld:total": 124, - "cc:pop:fifteen-to-twenty-four": 1148.0548272688864, - "cc:pop:grid3-total": 2798.124058309927, - "cc:pop:kontur-total": 6062.506566243183, - "cc:pop:men": 2906.2639002915307, - "cc:pop:sixty-plus": 313.2705845613571, - "cc:pop:total": 6337.031853063285, - "cc:pop:under-five": 973.1109652132656, - "cc:pop:women": 3430.767952771753, - "cc:pop:women-fiften-to-forty-nine": 1687.206307908602, - "cc:pop:wp-total": 5672.45207867742, - "cc:pop:wp-total-UN": 6583.890408216901, - "cc:id": "132", - "cc:Name": "Gbonkoh Kareneh MCHP", - "cc:site": [-12.8428, 8.7827], - "user:parentName": "Maforki", - "user:code": "OU_254959", - "user:orgUnitId": "zm9breCeT1m", - "user:level": "4", - "user:parentId": "JdqfYTIFZXN" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.565799, 9.026199], - [-12.557099, 9.016299], - [-12.552, 9.0115], - [-12.5487, 9.0091], - [-12.5411, 9.0051], - [-12.533399, 9.002699], - [-12.5223, 8.9976], - [-12.518299, 8.996699], - [-12.512599, 8.9965], - [-12.508399, 8.997], - [-12.501199, 8.9992], - [-12.495899, 8.999599], - [-12.490799, 8.998599], - [-12.485299, 8.996199], - [-12.4769, 8.9918], - [-12.474099, 8.989399], - [-12.471299, 8.985399], - [-12.469499, 8.980999], - [-12.467599, 8.974499], - [-12.4642, 8.9679], - [-12.4629, 8.9647], - [-12.461802, 8.961011], - [-12.460499, 8.955599], - [-12.4586, 8.95], - [-12.456413, 8.945253], - [-12.456249, 8.945417], - [-12.454582, 8.946249], - [-12.445417, 8.945417], - [-12.444212, 8.945176], - [-12.444312, 8.945473], - [-12.444965, 8.946467], - [-12.445035, 8.946985], - [-12.444375, 8.947372], - [-12.443635, 8.947515], - [-12.443365, 8.947292], - [-12.44211, 8.949466], - [-12.442449, 8.950011], - [-12.442402, 8.950626], - [-12.441763, 8.952263], - [-12.440788, 8.95296], - [-12.439804, 8.953329], - [-12.435959, 8.954198], - [-12.433351, 8.954229], - [-12.432865, 8.954957], - [-12.432919, 8.957082], - [-12.427485, 8.957083], - [-12.43083, 8.962878], - [-12.430829, 8.962879], - [-12.430416, 8.962917], - [-12.427083, 8.967083], - [-12.427083, 8.970416], - [-12.430371, 8.976994], - [-12.430166, 8.977163], - [-12.426816, 8.977784], - [-12.42483, 8.978887], - [-12.424093, 8.978965], - [-12.423136, 8.978744], - [-12.423619, 8.979581], - [-12.419713, 8.986346], - [-12.418847, 8.986347], - [-12.422082, 8.989583], - [-12.421249, 8.992917], - [-12.418124, 8.995261], - [-12.419417, 8.9975], - [-12.427229, 8.997501], - [-12.427327, 8.997671], - [-12.425417, 8.999583], - [-12.425417, 9.008749], - [-12.427082, 9.011249], - [-12.425417, 9.01125], - [-12.429582, 9.031249], - [-12.422083, 9.03125], - [-12.42375, 9.033749], - [-12.425511, 9.034923], - [-12.426255, 9.034924], - [-12.426199, 9.035382], - [-12.42625, 9.035417], - [-12.427083, 9.039582], - [-12.430416, 9.04125], - [-12.427917, 9.052082], - [-12.427916, 9.052916], - [-12.42375, 9.05625], - [-12.430416, 9.062916], - [-12.425417, 9.065417], - [-12.425416, 9.073749], - [-12.423841, 9.075325], - [-12.42492, 9.075835], - [-12.427757, 9.077517], - [-12.427223, 9.081788], - [-12.424583, 9.080513], - [-12.424582, 9.085416], - [-12.423679, 9.086321], - [-12.425599, 9.089899], - [-12.426399, 9.0922], - [-12.426099, 9.094699], - [-12.4242, 9.098999], - [-12.4235, 9.1023], - [-12.4238, 9.104999], - [-12.424899, 9.107299], - [-12.4264, 9.108799], - [-12.4284, 9.109699], - [-12.431, 9.109899], - [-12.434599, 9.109199], - [-12.4368, 9.107799], - [-12.443299, 9.1014], - [-12.4454, 9.099699], - [-12.4533, 9.095499], - [-12.4559, 9.0948], - [-12.458299, 9.094999], - [-12.4599, 9.0962], - [-12.460099, 9.0985], - [-12.4589, 9.100899], - [-12.4524, 9.107099], - [-12.4506, 9.1099], - [-12.4505, 9.112899], - [-12.453, 9.116199], - [-12.4566, 9.1174], - [-12.464199, 9.117799], - [-12.470899, 9.118399], - [-12.476299, 9.1183], - [-12.483899, 9.115399], - [-12.486699, 9.113199], - [-12.488199, 9.1105], - [-12.488699, 9.1057], - [-12.487199, 9.099799], - [-12.4846, 9.0932], - [-12.481999, 9.087999], - [-12.4787, 9.081799], - [-12.4788, 9.0769], - [-12.481199, 9.0742], - [-12.4902, 9.0711], - [-12.495199, 9.0712], - [-12.498299, 9.0727], - [-12.502099, 9.077899], - [-12.5039, 9.079599], - [-12.507599, 9.079899], - [-12.510799, 9.078099], - [-12.513199, 9.0752], - [-12.5162, 9.069399], - [-12.5187, 9.0677], - [-12.522399, 9.0671], - [-12.527199, 9.068199], - [-12.529899, 9.070699], - [-12.528499, 9.0735], - [-12.5279, 9.076899], - [-12.53, 9.079899], - [-12.5339, 9.080399], - [-12.544099, 9.073799], - [-12.546599, 9.070199], - [-12.546599, 9.0664], - [-12.543, 9.0603], - [-12.541599, 9.056699], - [-12.5413, 9.0528], - [-12.5424, 9.0485], - [-12.5452, 9.045299], - [-12.550199, 9.0418], - [-12.5547, 9.037999], - [-12.565699, 9.0263], - [-12.565799, 9.026199] - ] - ], - "type": "Polygon" - }, - "id": 133, - "properties": { - "cc:admin:id": ["73"], - "cc:oBld:total": 106, - "cc:pop:fifteen-to-twenty-four": 1082.1949592101107, - "cc:pop:grid3-total": 5188.591838526718, - "cc:pop:kontur-total": 5333.177747521872, - "cc:pop:men": 2671.279947380557, - "cc:pop:sixty-plus": 394.2100463145596, - "cc:pop:total": 5777.020598194616, - "cc:pop:under-five": 866.3827784575926, - "cc:pop:women": 3105.7406508140602, - "cc:pop:women-fiften-to-forty-nine": 1483.5265348180221, - "cc:pop:wp-total": 5478.719381156331, - "cc:pop:wp-total-UN": 6342.4838458993045, - "cc:id": "133", - "cc:Name": "Gbonkonka CHP", - "cc:site": [-12.5042, 9.0331], - "user:parentName": "Libeisaygahun", - "user:code": "OU_193307", - "user:orgUnitId": "v2vi8UaIYlo", - "user:level": "4", - "user:parentId": "hRZOIgQ0O1m" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.739632, 7.97747], - [-11.739037, 7.977132], - [-11.739106, 7.976792], - [-11.739163, 7.976564], - [-11.739221, 7.976272], - [-11.739191, 7.975709], - [-11.739152, 7.975562], - [-11.738783, 7.974327], - [-11.738104, 7.973358], - [-11.737834, 7.972984], - [-11.737444, 7.972156], - [-11.737512, 7.971054], - [-11.737595, 7.970405], - [-11.735767, 7.969544], - [-11.73607, 7.969056], - [-11.735147, 7.968505], - [-11.734585, 7.968082], - [-11.734133, 7.967956], - [-11.733743, 7.967429], - [-11.733416, 7.966884], - [-11.733365, 7.966912], - [-11.732, 7.967707], - [-11.731951, 7.967623], - [-11.731284, 7.966418], - [-11.730934, 7.965683], - [-11.730539, 7.963716], - [-11.730444, 7.963692], - [-11.729531, 7.96334], - [-11.728153, 7.963427], - [-11.727963, 7.963195], - [-11.728101, 7.96279], - [-11.72943, 7.962574], - [-11.729959, 7.961817], - [-11.729558, 7.961543], - [-11.728979, 7.961014], - [-11.7286, 7.960558], - [-11.728222, 7.960101], - [-11.726928, 7.961141], - [-11.726454, 7.960999], - [-11.725803, 7.961361], - [-11.725209, 7.961284], - [-11.725204, 7.961307], - [-11.725151, 7.961955], - [-11.724597, 7.962017], - [-11.724164, 7.962015], - [-11.723635, 7.961995], - [-11.723682, 7.961292], - [-11.724203, 7.961226], - [-11.724664, 7.961271], - [-11.724716, 7.961249], - [-11.72477, 7.960729], - [-11.721358, 7.960541], - [-11.721417, 7.960015], - [-11.721465, 7.959683], - [-11.721478, 7.959552], - [-11.720978, 7.959541], - [-11.720972, 7.95957], - [-11.720419, 7.95962], - [-11.720561, 7.958652], - [-11.721081, 7.958663], - [-11.721083, 7.958604], - [-11.721311, 7.956983], - [-11.721608, 7.956445], - [-11.720861, 7.95593], - [-11.720659, 7.955664], - [-11.716775, 7.957373], - [-11.715308, 7.957791], - [-11.714916, 7.958191], - [-11.713996, 7.958597], - [-11.713991, 7.958594], - [-11.71399, 7.958593], - [-11.714124, 7.95847], - [-11.713823, 7.958418], - [-11.713763, 7.9586], - [-11.712938, 7.95845], - [-11.712867, 7.958307], - [-11.712638, 7.958445], - [-11.712396, 7.958096], - [-11.712123, 7.958232], - [-11.710968, 7.957118], - [-11.710365, 7.956806], - [-11.70958, 7.956663], - [-11.709072, 7.955931], - [-11.70875, 7.955976], - [-11.708749, 7.957916], - [-11.707083, 7.958749], - [-11.70375, 7.957917], - [-11.703749, 7.955417], - [-11.702082, 7.952917], - [-11.699583, 7.952917], - [-11.699582, 7.957916], - [-11.697083, 7.960416], - [-11.69625, 7.960417], - [-11.694582, 7.96125], - [-11.68875, 7.96125], - [-11.687917, 7.963749], - [-11.68625, 7.96375], - [-11.686249, 7.969589], - [-11.685398, 7.969137], - [-11.685086, 7.968619], - [-11.683464, 7.967509], - [-11.682646, 7.966735], - [-11.681723, 7.966612], - [-11.681506, 7.96637], - [-11.681532, 7.966166], - [-11.681131, 7.965917], - [-11.681067, 7.964644], - [-11.68089, 7.964318], - [-11.681125, 7.962518], - [-11.68113, 7.962202], - [-11.679583, 7.96375], - [-11.679582, 7.96625], - [-11.677917, 7.967083], - [-11.677083, 7.96625], - [-11.674582, 7.968749], - [-11.67375, 7.968749], - [-11.672082, 7.967917], - [-11.671249, 7.967916], - [-11.668749, 7.967084], - [-11.664583, 7.967916], - [-11.662082, 7.962084], - [-11.661249, 7.962083], - [-11.657082, 7.955417], - [-11.652917, 7.955417], - [-11.64875, 7.95875], - [-11.647916, 7.967082], - [-11.643749, 7.96375], - [-11.639081, 7.96375], - [-11.637213, 7.966984], - [-11.641119, 7.973749], - [-11.640922, 7.974089], - [-11.640481, 7.974018], - [-11.639959, 7.974163], - [-11.640306, 7.975157], - [-11.637213, 7.980516], - [-11.639081, 7.983749], - [-11.642082, 7.98375], - [-11.642083, 7.984583], - [-11.645416, 7.987916], - [-11.647083, 7.987917], - [-11.649683, 7.991167], - [-11.644672, 7.994008], - [-11.641826, 7.994275], - [-11.639864, 7.995152], - [-11.640417, 7.997916], - [-11.642083, 7.99875], - [-11.642917, 8.002916], - [-11.651249, 8.00625], - [-11.650417, 8.010417], - [-11.650417, 8.015416], - [-11.652082, 8.016249], - [-11.652083, 8.017083], - [-11.652917, 8.017083], - [-11.657082, 8.01625], - [-11.657917, 8.015416], - [-11.659583, 8.012917], - [-11.665416, 8.015416], - [-11.66625, 8.015417], - [-11.670416, 8.019583], - [-11.671217, 8.019983], - [-11.671348, 8.019495], - [-11.672077, 8.018147], - [-11.673108, 8.016403], - [-11.67386, 8.015448], - [-11.67802, 8.015447], - [-11.680103, 8.011842], - [-11.680533, 8.012254], - [-11.68197, 8.013301], - [-11.682593, 8.013262], - [-11.683784, 8.01336], - [-11.684779, 8.013987], - [-11.684954, 8.014013], - [-11.685317, 8.01369], - [-11.687067, 8.013759], - [-11.687485, 8.013607], - [-11.687648, 8.014166], - [-11.688139, 8.014314], - [-11.688419, 8.014216], - [-11.68875, 8.01125], - [-11.691249, 8.011249], - [-11.69625, 8.00625], - [-11.703749, 8.002916], - [-11.702917, 7.999583], - [-11.702917, 7.995417], - [-11.704582, 7.995416], - [-11.708674, 7.993371], - [-11.709145, 7.993571], - [-11.710428, 7.993376], - [-11.711321, 7.992488], - [-11.710513, 7.992454], - [-11.710512, 7.992453], - [-11.711249, 7.992083], - [-11.71125, 7.99125], - [-11.711564, 7.990622], - [-11.712149, 7.990779], - [-11.712283, 7.99094], - [-11.712566, 7.992999], - [-11.713077, 7.992484], - [-11.713505, 7.991683], - [-11.714051, 7.991423], - [-11.714677, 7.990657], - [-11.715097, 7.989885], - [-11.715042, 7.989546], - [-11.715343, 7.989295], - [-11.716222, 7.989162], - [-11.717333, 7.988483], - [-11.717559, 7.988149], - [-11.718881, 7.985296], - [-11.719457, 7.985386], - [-11.719945, 7.985183], - [-11.720769, 7.984948], - [-11.720846, 7.984653], - [-11.721355, 7.984145], - [-11.721543, 7.984274], - [-11.721625, 7.984048], - [-11.722267, 7.983953], - [-11.722693, 7.983873], - [-11.722811, 7.983873], - [-11.722537, 7.984584], - [-11.722351, 7.985033], - [-11.72221, 7.985363], - [-11.721984, 7.986038], - [-11.721845, 7.987449], - [-11.721854, 7.987937], - [-11.721996, 7.987983], - [-11.724802, 7.98929], - [-11.724873, 7.989236], - [-11.725574, 7.987997], - [-11.727529, 7.987449], - [-11.727746, 7.9874], - [-11.728132, 7.987206], - [-11.7283, 7.986757], - [-11.728187, 7.986381], - [-11.728507, 7.985618], - [-11.728986, 7.985732], - [-11.729505, 7.985865], - [-11.729673, 7.985494], - [-11.729849, 7.985389], - [-11.730421, 7.985481], - [-11.730719, 7.984488], - [-11.73058, 7.981984], - [-11.731079, 7.98188], - [-11.731616, 7.981826], - [-11.732156, 7.981745], - [-11.732147, 7.982588], - [-11.732557, 7.982565], - [-11.732706, 7.981971], - [-11.732406, 7.977207], - [-11.732662, 7.976962], - [-11.733889, 7.976992], - [-11.734297, 7.976973], - [-11.735351, 7.976917], - [-11.735404, 7.977301], - [-11.7368, 7.978642], - [-11.737562, 7.978546], - [-11.738066, 7.978651], - [-11.738727, 7.978806], - [-11.738835, 7.978109], - [-11.739141, 7.977977], - [-11.739632, 7.97747] - ] - ], - "type": "Polygon" - }, - "id": 134, - "properties": { - "cc:admin:id": ["46"], - "cc:oBld:total": 6577, - "cc:pop:fifteen-to-twenty-four": 11151.247693303612, - "cc:pop:grid3-total": 42554.37900774397, - "cc:pop:kontur-total": 62405.27788621004, - "cc:pop:men": 30055.573048747156, - "cc:pop:sixty-plus": 4458.232184220658, - "cc:pop:total": 62033.99368749512, - "cc:pop:under-five": 10302.171034448342, - "cc:pop:women": 31978.420638747946, - "cc:pop:women-fiften-to-forty-nine": 15248.53252863161, - "cc:pop:wp-total": 50006.49672635262, - "cc:pop:wp-total-UN": 57965.69092514111, - "cc:id": "134", - "cc:Name": "Gbotima MCHP", - "cc:site": [-11.7296, 7.9718], - "user:parentName": "Kakua", - "user:code": "OU_845", - "user:orgUnitId": "i7qaYfmGVDr", - "user:level": "4", - "user:parentId": "U6Kr7Gtpidn" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.203597, 8.266521], - [-12.19875, 8.26375], - [-12.197916, 8.262083], - [-12.194762, 8.260822], - [-12.194559, 8.261073], - [-12.193985, 8.262221], - [-12.19379, 8.262957], - [-12.192917, 8.262083], - [-12.192655, 8.260002], - [-12.187803, 8.260001], - [-12.183897, 8.253236], - [-12.180721, 8.253235], - [-12.180416, 8.249584], - [-12.175416, 8.249583], - [-12.167917, 8.247084], - [-12.167083, 8.24625], - [-12.171249, 8.241249], - [-12.172916, 8.234584], - [-12.170417, 8.233749], - [-12.169583, 8.232917], - [-12.169582, 8.229583], - [-12.162082, 8.225417], - [-12.161021, 8.225416], - [-12.16102, 8.225415], - [-12.161095, 8.22512], - [-12.15375, 8.222917], - [-12.15125, 8.22375], - [-12.149582, 8.226249], - [-12.13625, 8.223749], - [-12.135417, 8.220416], - [-12.142082, 8.212917], - [-12.137916, 8.209584], - [-12.134584, 8.209583], - [-12.134584, 8.209582], - [-12.137082, 8.20625], - [-12.127917, 8.201249], - [-12.12875, 8.199584], - [-12.130425, 8.198884], - [-12.12722, 8.193333], - [-12.131126, 8.186568], - [-12.130461, 8.185416], - [-12.119583, 8.185417], - [-12.120416, 8.197916], - [-12.113749, 8.19875], - [-12.10375, 8.202916], - [-12.10375, 8.205428], - [-12.103983, 8.205835], - [-12.10375, 8.206241], - [-12.103749, 8.207916], - [-12.098749, 8.207917], - [-12.095416, 8.212084], - [-12.092083, 8.224583], - [-12.092082, 8.225416], - [-12.089583, 8.225417], - [-12.086249, 8.227917], - [-12.084583, 8.232917], - [-12.084582, 8.239551], - [-12.084581, 8.23955], - [-12.081888, 8.23484], - [-12.079582, 8.235416], - [-12.069583, 8.232917], - [-12.067916, 8.243749], - [-12.062917, 8.24375], - [-12.062917, 8.246249], - [-12.069582, 8.254584], - [-12.067082, 8.257083], - [-12.05849, 8.257084], - [-12.0609, 8.2593], - [-12.064299, 8.261699], - [-12.073399, 8.265699], - [-12.083299, 8.266999], - [-12.087399, 8.268499], - [-12.0911, 8.2711], - [-12.101099, 8.280599], - [-12.1059, 8.2842], - [-12.113599, 8.287699], - [-12.122499, 8.289599], - [-12.126199, 8.291399], - [-12.1294, 8.2941], - [-12.132199, 8.297299], - [-12.1356, 8.3026], - [-12.140699, 8.309299], - [-12.144099, 8.314499], - [-12.145799, 8.316799], - [-12.149, 8.3197], - [-12.1514, 8.3213], - [-12.1578, 8.3238], - [-12.1651, 8.328], - [-12.1692, 8.3293], - [-12.176499, 8.329899], - [-12.194499, 8.329899], - [-12.189, 8.323], - [-12.1876, 8.3209], - [-12.186699, 8.318299], - [-12.1863, 8.3154], - [-12.1862, 8.311499], - [-12.186799, 8.3073], - [-12.189099, 8.3015], - [-12.1897, 8.298699], - [-12.189899, 8.294699], - [-12.1898, 8.2846], - [-12.189999, 8.2817], - [-12.1908, 8.279399], - [-12.192, 8.277399], - [-12.193899, 8.2752], - [-12.199199, 8.2705], - [-12.203099, 8.267599], - [-12.203597, 8.266521] - ] - ], - "type": "Polygon" - }, - "id": 135, - "properties": { - "cc:admin:id": ["60"], - "cc:oBld:total": 128, - "cc:pop:fifteen-to-twenty-four": 854.6084078323278, - "cc:pop:grid3-total": 3365.3632207979235, - "cc:pop:kontur-total": 5133.209853117448, - "cc:pop:men": 2300.9230220811246, - "cc:pop:sixty-plus": 316.70619272599413, - "cc:pop:total": 4840.033843254011, - "cc:pop:under-five": 789.3534416736503, - "cc:pop:women": 2539.1108211728865, - "cc:pop:women-fiften-to-forty-nine": 1237.6692055686528, - "cc:pop:wp-total": 4734.506704606073, - "cc:pop:wp-total-UN": 5493.439136436073, - "cc:id": "135", - "cc:Name": "Gbuihun MCHP", - "cc:site": [-12.1244, 8.2511], - "user:parentName": "Kori", - "user:code": "OU_246993", - "user:orgUnitId": "DA2BEQMhv9B", - "user:level": "4", - "user:parentId": "nV3OkyzF4US" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.475031, 7.847788], - [-11.474999, 7.846099], - [-11.4744, 7.842], - [-11.4725, 7.8351], - [-11.4716, 7.8295], - [-11.4714, 7.8227], - [-11.473199, 7.8089], - [-11.474299, 7.8025], - [-11.4592, 7.805299], - [-11.4564, 7.806099], - [-11.448899, 7.8097], - [-11.4419, 7.814299], - [-11.438299, 7.815699], - [-11.433599, 7.815999], - [-11.429899, 7.814899], - [-11.425299, 7.8128], - [-11.422999, 7.8137], - [-11.4179, 7.814899], - [-11.4123, 7.817399], - [-11.410099, 7.817799], - [-11.4074, 7.8177], - [-11.4049, 7.817], - [-11.400298, 7.814699], - [-11.399583, 7.820416], - [-11.407083, 7.82875], - [-11.407082, 7.829584], - [-11.404582, 7.834583], - [-11.401954, 7.836554], - [-11.402083, 7.836588], - [-11.402082, 7.843749], - [-11.397917, 7.847916], - [-11.395416, 7.844584], - [-11.390417, 7.844584], - [-11.389583, 7.845417], - [-11.391249, 7.852083], - [-11.38625, 7.855417], - [-11.385417, 7.85875], - [-11.385416, 7.862916], - [-11.37625, 7.862084], - [-11.374583, 7.865417], - [-11.378982, 7.87348], - [-11.379226, 7.873393], - [-11.383749, 7.877917], - [-11.380416, 7.880416], - [-11.374583, 7.882084], - [-11.372083, 7.884584], - [-11.372082, 7.890042], - [-11.371946, 7.890105], - [-11.370308, 7.890372], - [-11.368723, 7.890225], - [-11.368606, 7.890194], - [-11.367916, 7.897083], - [-11.364583, 7.900416], - [-11.362253, 7.900999], - [-11.362324, 7.901717], - [-11.362853, 7.903533], - [-11.361553, 7.903839], - [-11.360452, 7.903642], - [-11.358635, 7.90419], - [-11.357917, 7.904512], - [-11.357949, 7.904713], - [-11.358355, 7.905054], - [-11.359538, 7.906306], - [-11.359598, 7.906454], - [-11.357083, 7.907083], - [-11.356249, 7.907084], - [-11.352917, 7.907917], - [-11.35125, 7.916249], - [-11.351249, 7.917916], - [-11.345417, 7.917917], - [-11.342917, 7.920416], - [-11.339583, 7.92125], - [-11.337917, 7.924584], - [-11.338749, 7.927916], - [-11.332917, 7.929584], - [-11.33125, 7.93125], - [-11.330417, 7.935416], - [-11.332348, 7.936867], - [-11.331724, 7.936934], - [-11.331306, 7.936994], - [-11.329441, 7.937918], - [-11.327083, 7.939412], - [-11.327083, 7.941249], - [-11.335416, 7.942084], - [-11.332916, 7.947083], - [-11.328883, 7.950309], - [-11.3316, 7.9518], - [-11.337599, 7.957199], - [-11.3406, 7.958999], - [-11.3437, 7.9596], - [-11.351699, 7.960399], - [-11.3547, 7.958199], - [-11.3645, 7.952199], - [-11.3689, 7.948599], - [-11.3794, 7.938699], - [-11.3816, 7.936899], - [-11.3879, 7.932699], - [-11.3965, 7.925699], - [-11.4018, 7.922399], - [-11.4076, 7.918199], - [-11.413, 7.914999], - [-11.419999, 7.9101], - [-11.438899, 7.9003], - [-11.448999, 7.8935], - [-11.451799, 7.8911], - [-11.4541, 7.888299], - [-11.4566, 7.884399], - [-11.4608, 7.878299], - [-11.467, 7.866799], - [-11.4727, 7.859099], - [-11.4743, 7.855399], - [-11.475099, 7.8514], - [-11.475031, 7.847788] - ] - ], - "type": "Polygon" - }, - "id": 136, - "properties": { - "cc:admin:id": ["124"], - "cc:oBld:total": 1347, - "cc:pop:fifteen-to-twenty-four": 2300.2139211619924, - "cc:pop:grid3-total": 5907.823410725705, - "cc:pop:kontur-total": 12655.529855312223, - "cc:pop:men": 5924.911774174239, - "cc:pop:sixty-plus": 755.4108088235012, - "cc:pop:total": 12091.723885424852, - "cc:pop:under-five": 1980.1313678757506, - "cc:pop:women": 6166.812111250616, - "cc:pop:women-fiften-to-forty-nine": 3085.5908945722563, - "cc:pop:wp-total": 8177.973581129623, - "cc:pop:wp-total-UN": 9476.233834717008, - "cc:id": "136", - "cc:Name": "Gelehun MCHP", - "cc:site": [-11.3916, 7.8975], - "user:parentName": "Small Bo", - "user:code": "OU_222626", - "user:orgUnitId": "FZxJ0KST9jn", - "user:level": "4", - "user:parentId": "vzup1f6ynON" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.43375, 8.252916], - [-11.433749, 8.25023], - [-11.431799, 8.248799], - [-11.4281, 8.2452], - [-11.425799, 8.242199], - [-11.4218, 8.2348], - [-11.4183, 8.2272], - [-11.414099, 8.2153], - [-11.4109, 8.2118], - [-11.4048, 8.2085], - [-11.3982, 8.2063], - [-11.3948, 8.2045], - [-11.391599, 8.201999], - [-11.383199, 8.194699], - [-11.375999, 8.190099], - [-11.3665, 8.1835], - [-11.365799, 8.1881], - [-11.3641, 8.193399], - [-11.362, 8.196499], - [-11.3585, 8.199899], - [-11.3545, 8.2027], - [-11.351399, 8.2068], - [-11.3472, 8.210899], - [-11.3434, 8.2142], - [-11.3425, 8.217], - [-11.3424, 8.223499], - [-11.341899, 8.226699], - [-11.340899, 8.228599], - [-11.3391, 8.230299], - [-11.336599, 8.2312], - [-11.333699, 8.231499], - [-11.3046, 8.2312], - [-11.3006, 8.231399], - [-11.297799, 8.2321], - [-11.2892, 8.236499], - [-11.285999, 8.2391], - [-11.2768, 8.247999], - [-11.2729, 8.2509], - [-11.2699, 8.254999], - [-11.266399, 8.2586], - [-11.262899, 8.260599], - [-11.2562, 8.2618], - [-11.2566, 8.2658], - [-11.256799, 8.270399], - [-11.2568, 8.275099], - [-11.2566, 8.277699], - [-11.255899, 8.2799], - [-11.254336, 8.283151], - [-11.258289, 8.283152], - [-11.262195, 8.289916], - [-11.267582, 8.289916], - [-11.271249, 8.286249], - [-11.269583, 8.283749], - [-11.269583, 8.280416], - [-11.279583, 8.27375], - [-11.285416, 8.272917], - [-11.288749, 8.272917], - [-11.288806, 8.273649], - [-11.288805, 8.27365], - [-11.281534, 8.273651], - [-11.277628, 8.280416], - [-11.281533, 8.287182], - [-11.281344, 8.287511], - [-11.284582, 8.287917], - [-11.286084, 8.289916], - [-11.291608, 8.289917], - [-11.29125, 8.294583], - [-11.292613, 8.295946], - [-11.298048, 8.295947], - [-11.300149, 8.299583], - [-11.306249, 8.299583], - [-11.308749, 8.297916], - [-11.30625, 8.284584], - [-11.322082, 8.28375], - [-11.322083, 8.289885], - [-11.322347, 8.289827], - [-11.324046, 8.290188], - [-11.324583, 8.283749], - [-11.32875, 8.280417], - [-11.334737, 8.280416], - [-11.335417, 8.278328], - [-11.335599, 8.276173], - [-11.336442, 8.275972], - [-11.337075, 8.274253], - [-11.337944, 8.27335], - [-11.33877, 8.271566], - [-11.339343, 8.269603], - [-11.339377, 8.269209], - [-11.341249, 8.269583], - [-11.341802, 8.270136], - [-11.341701, 8.27031], - [-11.342778, 8.271267], - [-11.342794, 8.27125], - [-11.343749, 8.271249], - [-11.345417, 8.269584], - [-11.354582, 8.269583], - [-11.354799, 8.267212], - [-11.357951, 8.272669], - [-11.365763, 8.272669], - [-11.36967, 8.265904], - [-11.371976, 8.265903], - [-11.371699, 8.265519], - [-11.371618, 8.265325], - [-11.371619, 8.265323], - [-11.381249, 8.264583], - [-11.383215, 8.256723], - [-11.383221, 8.256726], - [-11.384401, 8.256796], - [-11.386077, 8.258061], - [-11.387328, 8.25869], - [-11.391797, 8.257822], - [-11.392125, 8.257948], - [-11.39238, 8.257506], - [-11.388475, 8.250741], - [-11.390536, 8.247168], - [-11.39875, 8.252916], - [-11.408749, 8.24625], - [-11.412082, 8.24625], - [-11.419583, 8.257916], - [-11.430416, 8.257083], - [-11.43375, 8.252916] - ] - ], - "type": "Polygon" - }, - "id": 137, - "properties": { - "cc:admin:id": ["142"], - "cc:oBld:total": 1109, - "cc:pop:fifteen-to-twenty-four": 1664.0751266048828, - "cc:pop:grid3-total": 6647.242040567093, - "cc:pop:kontur-total": 8765.538947612251, - "cc:pop:men": 4503.377519015515, - "cc:pop:sixty-plus": 548.7166433465969, - "cc:pop:total": 8830.985412565937, - "cc:pop:under-five": 1390.0031833221212, - "cc:pop:women": 4327.607893550425, - "cc:pop:women-fiften-to-forty-nine": 2198.7917596183493, - "cc:pop:wp-total": 7213.464946549175, - "cc:pop:wp-total-UN": 8354.285839578415, - "cc:id": "137", - "cc:Name": "Gendema MCHP", - "cc:site": [-11.3478, 8.233], - "user:parentName": "Wandor", - "user:code": "OU_222678", - "user:orgUnitId": "W3t0pSZLtrC", - "user:level": "4", - "user:parentId": "X7dWcGerQIm" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.749765, 7.484584], - [-11.749582, 7.484584], - [-11.747916, 7.485417], - [-11.73625, 7.485417], - [-11.736249, 7.487084], - [-11.733749, 7.489583], - [-11.730416, 7.485417], - [-11.722917, 7.482917], - [-11.719583, 7.484584], - [-11.719582, 7.49026], - [-11.719089, 7.484919], - [-11.719127, 7.484261], - [-11.717083, 7.48375], - [-11.712916, 7.487083], - [-11.70375, 7.487084], - [-11.703749, 7.493749], - [-11.702083, 7.494583], - [-11.690417, 7.490417], - [-11.690416, 7.492083], - [-11.68875, 7.492917], - [-11.688749, 7.494584], - [-11.686249, 7.499583], - [-11.681107, 7.494441], - [-11.682207, 7.491303], - [-11.682481, 7.49061], - [-11.675417, 7.49375], - [-11.672916, 7.496249], - [-11.66875, 7.49625], - [-11.670416, 7.506249], - [-11.662083, 7.504584], - [-11.66125, 7.504584], - [-11.659583, 7.505417], - [-11.659014, 7.508831], - [-11.6612, 7.5091], - [-11.663899, 7.509799], - [-11.6685, 7.5117], - [-11.6714, 7.5123], - [-11.676199, 7.512799], - [-11.678899, 7.513499], - [-11.6836, 7.5154], - [-11.6873, 7.5161], - [-11.693099, 7.516399], - [-11.696899, 7.516899], - [-11.7024, 7.5191], - [-11.7052, 7.5197], - [-11.709999, 7.520199], - [-11.712799, 7.520899], - [-11.7173, 7.5229], - [-11.722299, 7.524699], - [-11.735899, 7.5122], - [-11.7382, 7.509399], - [-11.7402, 7.5065], - [-11.743999, 7.5035], - [-11.745699, 7.5013], - [-11.7465, 7.498499], - [-11.746999, 7.4931], - [-11.747499, 7.4906], - [-11.749699, 7.4852], - [-11.749765, 7.484584] - ] - ], - "type": "Polygon" - }, - "id": 138, - "properties": { - "cc:admin:id": ["66"], - "cc:oBld:total": 1, - "cc:pop:fifteen-to-twenty-four": 648.522166681555, - "cc:pop:grid3-total": 3038.6932180110944, - "cc:pop:kontur-total": 3579.0003664511705, - "cc:pop:men": 1778.7168206366146, - "cc:pop:sixty-plus": 268.79509765632974, - "cc:pop:total": 3655.349657270684, - "cc:pop:under-five": 610.5658342102586, - "cc:pop:women": 1876.6328366340688, - "cc:pop:women-fiften-to-forty-nine": 899.3388196701203, - "cc:pop:wp-total": 4219.482457732032, - "cc:pop:wp-total-UN": 4894.933609926888, - "cc:id": "138", - "cc:Name": "Geoma Jagor CHC", - "cc:site": [-11.694, 7.5099], - "user:parentName": "Sowa", - "user:code": "OU_260385", - "user:orgUnitId": "FbD5Z8z22Yb", - "user:level": "4", - "user:parentId": "NqWaKXcg01b" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.242507, 8.463821], - [-13.242161, 8.463112], - [-13.242046, 8.462606], - [-13.234589, 8.462605], - [-13.233578, 8.460854], - [-13.233705, 8.460113], - [-13.234166, 8.458427], - [-13.234577, 8.458896], - [-13.234887, 8.459229], - [-13.235009, 8.459263], - [-13.23529, 8.458337], - [-13.235398, 8.457548], - [-13.235788, 8.456881], - [-13.236121, 8.457155], - [-13.235974, 8.456824], - [-13.236092, 8.456329], - [-13.235932, 8.456266], - [-13.235774, 8.456197], - [-13.235702, 8.455424], - [-13.235482, 8.455199], - [-13.234881, 8.45547], - [-13.234759, 8.455352], - [-13.234538, 8.455499], - [-13.234175, 8.455123], - [-13.23385, 8.454832], - [-13.233285, 8.454098], - [-13.233224, 8.454017], - [-13.233623, 8.453534], - [-13.23323, 8.453005], - [-13.232839, 8.453449], - [-13.232294, 8.452695], - [-13.230662, 8.451316], - [-13.230197, 8.451055], - [-13.229617, 8.450738], - [-13.229434, 8.450898], - [-13.229039, 8.451344], - [-13.229038, 8.451343], - [-13.229058, 8.451216], - [-13.2283, 8.451185], - [-13.227702, 8.451011], - [-13.227013, 8.450987], - [-13.226776, 8.451068], - [-13.22529, 8.452357], - [-13.224045, 8.452964], - [-13.223581, 8.452923], - [-13.223239, 8.451664], - [-13.222442, 8.450817], - [-13.221654, 8.450661], - [-13.221192, 8.451259], - [-13.220937, 8.451159], - [-13.2203, 8.452005], - [-13.220159, 8.452486], - [-13.221762, 8.452832], - [-13.222136, 8.453734], - [-13.222142, 8.454158], - [-13.222006, 8.45545], - [-13.222031, 8.455503], - [-13.221682, 8.456363], - [-13.221091, 8.457046], - [-13.220677, 8.4571], - [-13.220398, 8.457318], - [-13.220303, 8.457475], - [-13.220099, 8.458093], - [-13.219591, 8.459545], - [-13.219452, 8.459954], - [-13.219272, 8.460523], - [-13.219144, 8.460892], - [-13.218897, 8.461569], - [-13.219036, 8.461732], - [-13.219417, 8.461649], - [-13.220056, 8.461845], - [-13.220709, 8.46186], - [-13.221235, 8.461903], - [-13.2215, 8.462238], - [-13.221066, 8.46312], - [-13.220633, 8.463395], - [-13.221331, 8.464398], - [-13.22199, 8.465798], - [-13.22258, 8.465635], - [-13.22292, 8.465499], - [-13.223706, 8.465363], - [-13.223468, 8.467045], - [-13.223126, 8.467277], - [-13.222768, 8.467497], - [-13.222992, 8.467956], - [-13.223502, 8.467594], - [-13.223953, 8.467922], - [-13.224604, 8.467076], - [-13.224802, 8.467045], - [-13.225441, 8.467686], - [-13.225081, 8.468041], - [-13.224497, 8.468238], - [-13.224761, 8.468851], - [-13.223906, 8.469759], - [-13.224258, 8.470162], - [-13.224789, 8.470714], - [-13.225802, 8.471252], - [-13.226809, 8.471506], - [-13.227211, 8.471945], - [-13.227572, 8.472209], - [-13.228253, 8.472266], - [-13.228717, 8.472519], - [-13.22907, 8.472818], - [-13.229256, 8.473119], - [-13.229758, 8.47285], - [-13.229735, 8.473069], - [-13.230059, 8.473221], - [-13.230599, 8.473834], - [-13.230777, 8.473928], - [-13.231529, 8.474346], - [-13.231374, 8.475798], - [-13.230786, 8.476347], - [-13.230902, 8.476331], - [-13.231613, 8.475744], - [-13.233961, 8.475128], - [-13.234848, 8.474566], - [-13.235277, 8.47543], - [-13.236507, 8.475648], - [-13.236559, 8.47514], - [-13.237044, 8.475202], - [-13.237466, 8.475251], - [-13.23756, 8.475282], - [-13.237915, 8.475413], - [-13.238581, 8.475672], - [-13.238862, 8.475778], - [-13.239157, 8.475901], - [-13.239266, 8.475933], - [-13.239806, 8.474668], - [-13.240011, 8.474377], - [-13.23966, 8.474083], - [-13.239692, 8.473259], - [-13.239516, 8.472894], - [-13.239115, 8.472526], - [-13.238337, 8.472253], - [-13.23881, 8.471995], - [-13.239466, 8.471664], - [-13.2397, 8.471536], - [-13.239669, 8.471432], - [-13.240271, 8.471138], - [-13.240098, 8.469554], - [-13.240019, 8.469161], - [-13.239926, 8.468652], - [-13.23988, 8.468316], - [-13.239478, 8.467575], - [-13.239467, 8.46719], - [-13.239291, 8.467105], - [-13.239337, 8.466604], - [-13.239205, 8.466149], - [-13.239558, 8.465829], - [-13.23986, 8.465515], - [-13.240475, 8.465001], - [-13.241405, 8.464212], - [-13.242507, 8.463821] - ] - ], - "type": "Polygon" - }, - "id": 139, - "properties": { - "cc:admin:id": ["26"], - "cc:oBld:total": 6682, - "cc:pop:fifteen-to-twenty-four": 16705.618254506968, - "cc:pop:grid3-total": 62865.3978827188, - "cc:pop:kontur-total": 68871.03445071138, - "cc:pop:men": 36493.76121616734, - "cc:pop:sixty-plus": 5679.095662053677, - "cc:pop:total": 72787.35613751147, - "cc:pop:under-five": 8405.740794973146, - "cc:pop:women": 36293.59492134413, - "cc:pop:women-fiften-to-forty-nine": 19455.26506593676, - "cc:pop:wp-total": 54461.230290496664, - "cc:pop:wp-total-UN": 63142.76723212894, - "cc:id": "139", - "cc:Name": "George Brook Health Centre", - "cc:site": [-13.23527, 8.46819], - "user:parentName": "Freetown", - "user:code": "OU_278330", - "user:orgUnitId": "U514Dz4v9pv", - "user:level": "4", - "user:parentId": "C9uduqDZr9d" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.220617, 8.482789], - [-13.220523, 8.48247], - [-13.220084, 8.481825], - [-13.219788, 8.481613], - [-13.218969, 8.481319], - [-13.217648, 8.480418], - [-13.217506, 8.480975], - [-13.218232, 8.481564], - [-13.218748, 8.481868], - [-13.218633, 8.482191], - [-13.219025, 8.482571], - [-13.219461, 8.483057], - [-13.219494, 8.483095], - [-13.220617, 8.482789] - ] - ], - "type": "Polygon" - }, - "id": 140, - "properties": { - "cc:admin:id": ["26"], - "cc:oBld:total": 123, - "cc:pop:fifteen-to-twenty-four": 208.01434309658976, - "cc:pop:grid3-total": 1910.9770252359795, - "cc:pop:kontur-total": 0, - "cc:pop:men": 452.92263962426057, - "cc:pop:sixty-plus": 70.44413708494876, - "cc:pop:total": 905.1887329449318, - "cc:pop:under-five": 104.3585899401715, - "cc:pop:women": 452.26609332067125, - "cc:pop:women-fiften-to-forty-nine": 242.5841064130567, - "cc:pop:wp-total": 749.8164526314583, - "cc:pop:wp-total-UN": 869.7182221834705, - "cc:id": "140", - "cc:Name": "Ginger Hall Health Centre", - "cc:site": [-13.2185, 8.4817], - "user:parentName": "Freetown", - "user:code": "OU_278361", - "user:orgUnitId": "m0XorV4WWg0", - "user:level": "4", - "user:parentId": "C9uduqDZr9d" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.293999, 8.4227], - [-13.288199, 8.4185], - [-13.283699, 8.420999], - [-13.266799, 8.3958], - [-13.252299, 8.4019], - [-13.236524, 8.413456], - [-13.236734, 8.414506], - [-13.23686, 8.414722], - [-13.244672, 8.414723], - [-13.248578, 8.421488], - [-13.256391, 8.421489], - [-13.260296, 8.428254], - [-13.258087, 8.432083], - [-13.259582, 8.432084], - [-13.259583, 8.432801], - [-13.259652, 8.432807], - [-13.259961, 8.432963], - [-13.260422, 8.432742], - [-13.261499, 8.432832], - [-13.261371, 8.433229], - [-13.261484, 8.433468], - [-13.262562, 8.433878], - [-13.26277, 8.434117], - [-13.262814, 8.435068], - [-13.263987, 8.436025], - [-13.26506, 8.4362], - [-13.265499, 8.43638], - [-13.265669, 8.436405], - [-13.265887, 8.436499], - [-13.267246, 8.436878], - [-13.267156, 8.437487], - [-13.267094, 8.437887], - [-13.265806, 8.437814], - [-13.264975, 8.437964], - [-13.264371, 8.43854], - [-13.264122, 8.438572], - [-13.265757, 8.440401], - [-13.266619, 8.439915], - [-13.266876, 8.440496], - [-13.266942, 8.440668], - [-13.267415, 8.440627], - [-13.268135, 8.440423], - [-13.268621, 8.440948], - [-13.26862, 8.440949], - [-13.268474, 8.441019], - [-13.267889, 8.441299], - [-13.267544, 8.44164], - [-13.267283, 8.441848], - [-13.267399, 8.442557], - [-13.26777, 8.442841], - [-13.268572, 8.443537], - [-13.268963, 8.44381], - [-13.26917, 8.44327], - [-13.270126, 8.443199], - [-13.270272, 8.443501], - [-13.270792, 8.443435], - [-13.271278, 8.445558], - [-13.272967, 8.445394], - [-13.273087, 8.446072], - [-13.273083, 8.446308], - [-13.273085, 8.446433], - [-13.273047, 8.446832], - [-13.272973, 8.447422], - [-13.272941, 8.448067], - [-13.273339, 8.448105], - [-13.273881, 8.448433], - [-13.274422, 8.447577], - [-13.274697, 8.447512], - [-13.275403, 8.448036], - [-13.275651, 8.448583], - [-13.276891, 8.44793], - [-13.277366, 8.448397], - [-13.278012, 8.449168], - [-13.278205, 8.449281], - [-13.278728, 8.449304], - [-13.2793, 8.441499], - [-13.283699, 8.4363], - [-13.293199, 8.436799], - [-13.2885, 8.4271], - [-13.293999, 8.4227] - ] - ], - "type": "Polygon" - }, - "id": 141, - "properties": { - "cc:admin:id": ["26"], - "cc:oBld:total": 11586, - "cc:pop:fifteen-to-twenty-four": 15259.552637523902, - "cc:pop:grid3-total": 79643.59742150184, - "cc:pop:kontur-total": 68271.69798403572, - "cc:pop:men": 33620.0410679335, - "cc:pop:sixty-plus": 5315.784469939261, - "cc:pop:total": 66815.59754492233, - "cc:pop:under-five": 7804.493521356446, - "cc:pop:women": 33195.55647698883, - "cc:pop:women-fiften-to-forty-nine": 17602.74676015345, - "cc:pop:wp-total": 62144.167235588524, - "cc:pop:wp-total-UN": 72032.35663133443, - "cc:id": "141", - "cc:Name": "Goderich Health Centre", - "cc:site": [-13.29096, 8.43552], - "user:parentName": "Rural Western Area", - "user:code": "OU_278392", - "user:orgUnitId": "dQggcljEImF", - "user:level": "4", - "user:parentId": "qtr8GGlm4gg" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.440058, 7.228266], - [-11.4402, 7.227699], - [-11.440399, 7.2231], - [-11.44, 7.2205], - [-11.439099, 7.2179], - [-11.4374, 7.2156], - [-11.433499, 7.212399], - [-11.4249, 7.2079], - [-11.421599, 7.206599], - [-11.417199, 7.204399], - [-11.411199, 7.202999], - [-11.4028, 7.1991], - [-11.398299, 7.196899], - [-11.394499, 7.196199], - [-11.3853, 7.196], - [-11.3813, 7.1955], - [-11.375799, 7.193299], - [-11.369099, 7.191499], - [-11.364499, 7.189599], - [-11.360899, 7.188899], - [-11.3531, 7.1885], - [-11.3503, 7.1879], - [-11.3415, 7.1835], - [-11.335999, 7.179299], - [-11.3272, 7.1749], - [-11.3204, 7.1736], - [-11.3182, 7.1726], - [-11.318099, 7.1721], - [-11.3108, 7.1806], - [-11.311399, 7.1871], - [-11.3075, 7.1936], - [-11.308799, 7.2033], - [-11.302999, 7.209099], - [-11.2991, 7.207899], - [-11.299099, 7.1988], - [-11.289401, 7.198799], - [-11.289547, 7.198438], - [-11.287886, 7.199125], - [-11.286953, 7.199788], - [-11.286314, 7.201144], - [-11.286815, 7.20449], - [-11.286127, 7.211015], - [-11.286549, 7.213679], - [-11.28595, 7.214644], - [-11.285252, 7.214965], - [-11.284505, 7.215044], - [-11.2836, 7.214849], - [-11.282439, 7.21522], - [-11.281182, 7.216], - [-11.28062, 7.217122], - [-11.280611, 7.218302], - [-11.280984, 7.219979], - [-11.279844, 7.220995], - [-11.279677, 7.221823], - [-11.279292, 7.222195], - [-11.281718, 7.222106], - [-11.28264, 7.222061], - [-11.283261, 7.22243], - [-11.28266, 7.223194], - [-11.281867, 7.223575], - [-11.28061, 7.223885], - [-11.280105, 7.224267], - [-11.280049, 7.2258], - [-11.280156, 7.226249], - [-11.282083, 7.22625], - [-11.28625, 7.229584], - [-11.287082, 7.236249], - [-11.284583, 7.242083], - [-11.29375, 7.247083], - [-11.300416, 7.24625], - [-11.300417, 7.249583], - [-11.302917, 7.255416], - [-11.315417, 7.255417], - [-11.316666, 7.259166], - [-11.316509, 7.259611], - [-11.313451, 7.261176], - [-11.311906, 7.262827], - [-11.311281, 7.263248], - [-11.310609, 7.262962], - [-11.31056, 7.26089], - [-11.310024, 7.259636], - [-11.309184, 7.258634], - [-11.309255, 7.256705], - [-11.308552, 7.256348], - [-11.307991, 7.25669], - [-11.307335, 7.259509], - [-11.307606, 7.263169], - [-11.307303, 7.264249], - [-11.308166, 7.266186], - [-11.30817, 7.266249], - [-11.315416, 7.26625], - [-11.31567, 7.266503], - [-11.315742, 7.266494], - [-11.318749, 7.26875], - [-11.319822, 7.270896], - [-11.319779, 7.27093], - [-11.320416, 7.27125], - [-11.320416, 7.272916], - [-11.319583, 7.274584], - [-11.32087, 7.277801], - [-11.320379, 7.278547], - [-11.319299, 7.279059], - [-11.319261, 7.279085], - [-11.327916, 7.281249], - [-11.327917, 7.282916], - [-11.336203, 7.284423], - [-11.336158, 7.28478], - [-11.341248, 7.285416], - [-11.337083, 7.293749], - [-11.348748, 7.290417], - [-11.348748, 7.290419], - [-11.347231, 7.292948], - [-11.349859, 7.297499], - [-11.355714, 7.2975], - [-11.355417, 7.299583], - [-11.354863, 7.301243], - [-11.356508, 7.301125], - [-11.357916, 7.30156], - [-11.357917, 7.305546], - [-11.358207, 7.305805], - [-11.359054, 7.306878], - [-11.359853, 7.307577], - [-11.361687, 7.307578], - [-11.365684, 7.308557], - [-11.366812, 7.308697], - [-11.36766, 7.309024], - [-11.36849, 7.309501], - [-11.372759, 7.308891], - [-11.372656, 7.308751], - [-11.372656, 7.30875], - [-11.374582, 7.30875], - [-11.374583, 7.314583], - [-11.377082, 7.317083], - [-11.37743, 7.317256], - [-11.3782, 7.315499], - [-11.3802, 7.311999], - [-11.3819, 7.308199], - [-11.384, 7.305199], - [-11.388999, 7.2999], - [-11.391099, 7.2971], - [-11.393899, 7.2919], - [-11.3981, 7.286599], - [-11.401299, 7.2807], - [-11.405399, 7.2754], - [-11.408099, 7.2702], - [-11.409699, 7.2679], - [-11.4125, 7.264999], - [-11.4156, 7.262099], - [-11.4181, 7.260399], - [-11.4224, 7.258299], - [-11.4246, 7.256599], - [-11.4271, 7.253999], - [-11.428799, 7.250799], - [-11.4298, 7.245699], - [-11.433999, 7.2368], - [-11.439199, 7.231699], - [-11.440058, 7.228266] - ] - ], - "type": "Polygon" - }, - "id": 142, - "properties": { - "cc:admin:id": ["84"], - "cc:oBld:total": 661, - "cc:pop:fifteen-to-twenty-four": 2125.989877126341, - "cc:pop:grid3-total": 10467.029648909072, - "cc:pop:kontur-total": 15955.409889030809, - "cc:pop:men": 5927.93913181852, - "cc:pop:sixty-plus": 888.940570713618, - "cc:pop:total": 12131.066029818812, - "cc:pop:under-five": 1954.2083268523088, - "cc:pop:women": 6203.126898000296, - "cc:pop:women-fiften-to-forty-nine": 2936.6798213867855, - "cc:pop:wp-total": 15102.652662105163, - "cc:pop:wp-total-UN": 17515.62216661198, - "cc:id": "142", - "cc:Name": "Gofor CHP", - "cc:site": [-11.3602, 7.2429], - "user:parentName": "Makpele", - "user:code": "OU_260383", - "user:orgUnitId": "lf7FRlrchg3", - "user:level": "4", - "user:parentId": "BD9gU0GKlr2" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.658599, 7.8615], - [-11.651099, 7.8631], - [-11.6476, 7.864899], - [-11.6433, 7.868199], - [-11.641199, 7.8693], - [-11.639099, 7.8698], - [-11.6338, 7.870399], - [-11.6313, 7.870999], - [-11.625399, 7.8733], - [-11.621199, 7.8738], - [-11.616399, 7.873899], - [-11.611499, 7.873799], - [-11.607699, 7.873499], - [-11.604999, 7.872799], - [-11.6014, 7.8713], - [-11.599, 7.8708], - [-11.5965, 7.8712], - [-11.589899, 7.8745], - [-11.587699, 7.876], - [-11.582999, 7.8797], - [-11.5745, 7.884299], - [-11.571299, 7.8857], - [-11.5671, 7.888199], - [-11.563999, 7.8896], - [-11.560799, 7.891499], - [-11.558599, 7.891699], - [-11.5568, 7.8908], - [-11.556669, 7.890475], - [-11.555075, 7.891649], - [-11.553782, 7.892254], - [-11.552443, 7.892259], - [-11.550267, 7.891253], - [-11.546707, 7.890563], - [-11.544448, 7.891351], - [-11.543357, 7.891081], - [-11.542376, 7.891097], - [-11.540617, 7.891538], - [-11.539869, 7.891922], - [-11.541724, 7.893035], - [-11.541021, 7.893317], - [-11.539759, 7.894109], - [-11.537448, 7.89447], - [-11.537154, 7.894363], - [-11.534699, 7.895016], - [-11.529551, 7.897129], - [-11.528939, 7.897462], - [-11.528403, 7.896393], - [-11.527503, 7.896796], - [-11.525113, 7.897199], - [-11.522906, 7.898468], - [-11.521421, 7.898738], - [-11.520417, 7.901249], - [-11.520594, 7.901606], - [-11.519584, 7.903194], - [-11.521249, 7.903749], - [-11.52125, 7.904583], - [-11.519583, 7.90625], - [-11.519583, 7.916249], - [-11.522917, 7.912083], - [-11.530416, 7.909584], - [-11.532916, 7.910417], - [-11.533749, 7.912917], - [-11.532917, 7.920416], - [-11.52875, 7.922917], - [-11.531618, 7.930087], - [-11.532488, 7.929266], - [-11.534329, 7.926326], - [-11.535181, 7.925488], - [-11.535182, 7.925489], - [-11.535073, 7.927586], - [-11.535798, 7.927409], - [-11.536265, 7.927033], - [-11.539582, 7.925969], - [-11.539583, 7.930416], - [-11.54875, 7.930417], - [-11.552082, 7.932916], - [-11.552082, 7.933696], - [-11.551444, 7.933616], - [-11.550913, 7.933244], - [-11.550665, 7.933325], - [-11.55125, 7.936249], - [-11.552758, 7.937758], - [-11.552793, 7.937718], - [-11.553992, 7.937207], - [-11.554635, 7.935805], - [-11.555567, 7.936304], - [-11.556284, 7.936236], - [-11.556906, 7.93581], - [-11.557202, 7.93591], - [-11.558101, 7.936366], - [-11.55873, 7.937172], - [-11.560052, 7.938123], - [-11.560638, 7.937823], - [-11.561069, 7.937869], - [-11.561712, 7.937636], - [-11.562163, 7.937855], - [-11.562163, 7.937856], - [-11.561451, 7.938744], - [-11.564583, 7.94125], - [-11.567082, 7.944583], - [-11.566208, 7.945895], - [-11.566194, 7.945896], - [-11.565781, 7.945989], - [-11.565417, 7.947083], - [-11.567917, 7.95125], - [-11.568458, 7.952875], - [-11.568189, 7.953036], - [-11.569223, 7.956654], - [-11.569882, 7.957096], - [-11.570462, 7.956985], - [-11.5711, 7.956299], - [-11.575799, 7.9516], - [-11.578699, 7.9494], - [-11.5827, 7.947599], - [-11.587, 7.945199], - [-11.590099, 7.9439], - [-11.592399, 7.9425], - [-11.598, 7.937099], - [-11.600599, 7.933399], - [-11.601199, 7.9313], - [-11.6014, 7.928599], - [-11.6014, 7.9223], - [-11.601699, 7.9201], - [-11.6032, 7.917299], - [-11.6059, 7.9153], - [-11.611699, 7.9138], - [-11.613999, 7.9127], - [-11.6195, 7.908499], - [-11.6235, 7.906599], - [-11.627699, 7.9042], - [-11.6309, 7.902899], - [-11.635199, 7.9005], - [-11.6384, 7.899199], - [-11.642699, 7.8969], - [-11.646599, 7.8951], - [-11.6488, 7.893399], - [-11.651299, 7.8907], - [-11.6529, 7.887899], - [-11.6534, 7.884799], - [-11.653599, 7.8776], - [-11.654199, 7.8741], - [-11.656499, 7.8689], - [-11.657599, 7.8646], - [-11.658599, 7.8615] - ] - ], - "type": "Polygon" - }, - "id": 143, - "properties": { - "cc:admin:id": ["2"], - "cc:oBld:total": 166, - "cc:pop:fifteen-to-twenty-four": 4266.250189326623, - "cc:pop:grid3-total": 12730.571491807108, - "cc:pop:kontur-total": 23835.780959725478, - "cc:pop:men": 12323.852221708778, - "cc:pop:sixty-plus": 1688.3597006486652, - "cc:pop:total": 23868.220987650126, - "cc:pop:under-five": 3939.250540409007, - "cc:pop:women": 11544.368765941343, - "cc:pop:women-fiften-to-forty-nine": 5509.319720103991, - "cc:pop:wp-total": 19873.18651021842, - "cc:pop:wp-total-UN": 23043.580775911967, - "cc:id": "143", - "cc:Name": "Golu MCHP", - "cc:site": [-11.5444, 7.9049], - "user:parentName": "Baoma", - "user:code": "OU_577", - "user:orgUnitId": "azRICFoILuh", - "user:level": "4", - "user:parentId": "vWbkYPRmKyS" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.215367, 7.769646], - [-12.215037, 7.769286], - [-12.214578, 7.769146], - [-12.209266, 7.769509], - [-12.204921, 7.769158], - [-12.201802, 7.768704], - [-12.196967, 7.767575], - [-12.191742, 7.766054], - [-12.190769, 7.76598], - [-12.187617, 7.76672], - [-12.187326, 7.765558], - [-12.186098, 7.76579], - [-12.184995, 7.766397], - [-12.184581, 7.767429], - [-12.185109, 7.769197], - [-12.184948, 7.77139], - [-12.184737, 7.771738], - [-12.183089, 7.771738], - [-12.181959, 7.773694], - [-12.181893, 7.773704], - [-12.179733, 7.773037], - [-12.177718, 7.771535], - [-12.174149, 7.768309], - [-12.173697, 7.767656], - [-12.173573, 7.766923], - [-12.172405, 7.7677], - [-12.17218, 7.766359], - [-12.172864, 7.765632], - [-12.17339, 7.764667], - [-12.173512, 7.763572], - [-12.17351, 7.763551], - [-12.169867, 7.763551], - [-12.168668, 7.764864], - [-12.166906, 7.765523], - [-12.166416, 7.765569], - [-12.165923, 7.765214], - [-12.16524, 7.76428], - [-12.164895, 7.763413], - [-12.164299, 7.76097], - [-12.164972, 7.754345], - [-12.164965, 7.752917], - [-12.166229, 7.752916], - [-12.166283, 7.75157], - [-12.165931, 7.750097], - [-12.165802, 7.748298], - [-12.165896, 7.74637], - [-12.165733, 7.745225], - [-12.164713, 7.743084], - [-12.164247, 7.740822], - [-12.164415, 7.739426], - [-12.165747, 7.733871], - [-12.166384, 7.732147], - [-12.168029, 7.72937], - [-12.169462, 7.727382], - [-12.171193, 7.725477], - [-12.172051, 7.724285], - [-12.173115, 7.722266], - [-12.173299, 7.721445], - [-12.17323, 7.720785], - [-12.172441, 7.718705], - [-12.169704, 7.714462], - [-12.168795, 7.71537], - [-12.168749, 7.71532], - [-12.167769, 7.71438], - [-12.167103, 7.714099], - [-12.166407, 7.71416], - [-12.166077, 7.71435], - [-12.166077, 7.715358], - [-12.166322, 7.716308], - [-12.167441, 7.718304], - [-12.167778, 7.719583], - [-12.166571, 7.719584], - [-12.16662, 7.719845], - [-12.166488, 7.720515], - [-12.166248, 7.721249], - [-12.165857, 7.721646], - [-12.164375, 7.722153], - [-12.16371, 7.722057], - [-12.16325, 7.721767], - [-12.162566, 7.720774], - [-12.161425, 7.7177], - [-12.161137, 7.715488], - [-12.162913, 7.713339], - [-12.164067, 7.711627], - [-12.163389, 7.709932], - [-12.163587, 7.709544], - [-12.166024, 7.707031], - [-12.168253, 7.705892], - [-12.17088, 7.705233], - [-12.172136, 7.705263], - [-12.176134, 7.707114], - [-12.176976, 7.707054], - [-12.178862, 7.705991], - [-12.179611, 7.705126], - [-12.179749, 7.704352], - [-12.179519, 7.701863], - [-12.179182, 7.701422], - [-12.178478, 7.70124], - [-12.176809, 7.701437], - [-12.172794, 7.702302], - [-12.171746, 7.702152], - [-12.170743, 7.701321], - [-12.169412, 7.699498], - [-12.167636, 7.695897], - [-12.1666, 7.694659], - [-12.165237, 7.693975], - [-12.163706, 7.69395], - [-12.157174, 7.695078], - [-12.15299, 7.69501], - [-12.150664, 7.694686], - [-12.148852, 7.694019], - [-12.147084, 7.691623], - [-12.144132, 7.690217], - [-12.141505, 7.688628], - [-12.140366, 7.687221], - [-12.139808, 7.685574], - [-12.139983, 7.684203], - [-12.140726, 7.681726], - [-12.140959, 7.679353], - [-12.14097, 7.676565], - [-12.140749, 7.675079], - [-12.140179, 7.673029], - [-12.139342, 7.671301], - [-12.137274, 7.668041], - [-12.137088, 7.667073], - [-12.137227, 7.665853], - [-12.137622, 7.665185], - [-12.139704, 7.663721], - [-12.14082, 7.663702], - [-12.141024, 7.66451], - [-12.142145, 7.664493], - [-12.146015, 7.664792], - [-12.149908, 7.663906], - [-12.151107, 7.663468], - [-12.152756, 7.663503], - [-12.154861, 7.664301], - [-12.155146, 7.663163], - [-12.155508, 7.66338], - [-12.155947, 7.661625], - [-12.152999, 7.660999], - [-12.141799, 7.656799], - [-12.1286, 7.6551], - [-12.1229, 7.6535], - [-12.117699, 7.6579], - [-12.112, 7.661699], - [-12.1092, 7.664299], - [-12.105999, 7.6682], - [-12.099199, 7.6806], - [-12.0928, 7.688499], - [-12.090599, 7.6915], - [-12.085999, 7.6997], - [-12.0809, 7.709799], - [-12.0925, 7.708099], - [-12.102099, 7.7076], - [-12.109899, 7.7076], - [-12.1128, 7.7078], - [-12.115699, 7.708599], - [-12.1187, 7.7108], - [-12.120999, 7.7147], - [-12.1219, 7.7188], - [-12.122199, 7.7234], - [-12.122, 7.739199], - [-12.1228, 7.7453], - [-12.1244, 7.749099], - [-12.1306, 7.7553], - [-12.132599, 7.7585], - [-12.133299, 7.761299], - [-12.1338, 7.7658], - [-12.1338, 7.771699], - [-12.133399, 7.7758], - [-12.1323, 7.782399], - [-12.133, 7.785999], - [-12.137499, 7.787299], - [-12.1404, 7.7878], - [-12.1447, 7.788099], - [-12.149999, 7.7879], - [-12.154, 7.787099], - [-12.1595, 7.784999], - [-12.1635, 7.784399], - [-12.171799, 7.7842], - [-12.175999, 7.7835], - [-12.181, 7.781399], - [-12.1869, 7.779999], - [-12.1922, 7.777599], - [-12.198999, 7.776], - [-12.2042, 7.773699], - [-12.2093, 7.772599], - [-12.214499, 7.77], - [-12.215367, 7.769646] - ] - ], - "type": "Polygon" - }, - "id": 144, - "properties": { - "cc:admin:id": ["76"], - "cc:oBld:total": 70, - "cc:pop:fifteen-to-twenty-four": 843.5890181622702, - "cc:pop:grid3-total": 3400.4146313326123, - "cc:pop:kontur-total": 4529.345275703088, - "cc:pop:men": 2302.3318880185852, - "cc:pop:sixty-plus": 343.3863373050873, - "cc:pop:total": 4622.598881804241, - "cc:pop:under-five": 802.6136681756303, - "cc:pop:women": 2320.266993785655, - "cc:pop:women-fiften-to-forty-nine": 1097.2009611960098, - "cc:pop:wp-total": 3947.6644794899007, - "cc:pop:wp-total-UN": 4569.082504242192, - "cc:id": "144", - "cc:Name": "Gondama MCHP", - "cc:site": [-12.1349, 7.753], - "user:parentName": "Upper Banta", - "user:code": "OU_247004", - "user:orgUnitId": "fRV3Fhz1IP8", - "user:level": "4", - "user:parentId": "DBs6e2Oxaj1" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.356119, 7.430196], - [-11.356999, 7.4262], - [-11.357199, 7.422799], - [-11.353799, 7.408099], - [-11.349199, 7.398], - [-11.344, 7.3939], - [-11.341999, 7.391899], - [-11.327299, 7.385299], - [-11.3182, 7.3834], - [-11.310999, 7.381199], - [-11.301899, 7.379299], - [-11.2845, 7.3713], - [-11.2807, 7.37], - [-11.274599, 7.369399], - [-11.259, 7.3692], - [-11.253199, 7.368199], - [-11.245299, 7.364999], - [-11.237799, 7.361199], - [-11.2229, 7.3534], - [-11.220399, 7.351699], - [-11.211999, 7.344999], - [-11.204399, 7.340799], - [-11.1732, 7.3253], - [-11.165399, 7.322099], - [-11.1564, 7.3202], - [-11.149199, 7.317999], - [-11.1407, 7.3164], - [-11.1383, 7.321], - [-11.140199, 7.332399], - [-11.1362, 7.338199], - [-11.1298, 7.3408], - [-11.131099, 7.3427], - [-11.1259, 7.3446], - [-11.124, 7.3479], - [-11.123299, 7.3557], - [-11.119999, 7.3589], - [-11.1174, 7.362099], - [-11.1148, 7.3621], - [-11.1109, 7.365999], - [-11.109699, 7.371199], - [-11.1058, 7.373199], - [-11.1025, 7.3758], - [-11.098, 7.384799], - [-11.0921, 7.3849], - [-11.0889, 7.388699], - [-11.087591, 7.389027], - [-11.086078, 7.391647], - [-11.089781, 7.392227], - [-11.092098, 7.392383], - [-11.096521, 7.389049], - [-11.097273, 7.389003], - [-11.099269, 7.390281], - [-11.100713, 7.39086], - [-11.10211, 7.390723], - [-11.103062, 7.389687], - [-11.103323, 7.388379], - [-11.102449, 7.38681], - [-11.102449, 7.386261], - [-11.105259, 7.381936], - [-11.109558, 7.377262], - [-11.111554, 7.376668], - [-11.11309, 7.376621], - [-11.11375, 7.375951], - [-11.114072, 7.374626], - [-11.113873, 7.37379], - [-11.113259, 7.373027], - [-11.113904, 7.371489], - [-11.11484, 7.369891], - [-11.11656, 7.369296], - [-11.120522, 7.366343], - [-11.121966, 7.36619], - [-11.124239, 7.36421], - [-11.126171, 7.361096], - [-11.126909, 7.3589], - [-11.128133, 7.359169], - [-11.127498, 7.360799], - [-11.125606, 7.363235], - [-11.125205, 7.364287], - [-11.1237, 7.366251], - [-11.122641, 7.367042], - [-11.121243, 7.367165], - [-11.117068, 7.369997], - [-11.116397, 7.370649], - [-11.11795, 7.373339], - [-11.125763, 7.37334], - [-11.129668, 7.380104], - [-11.125763, 7.386871], - [-11.129668, 7.393637], - [-11.125763, 7.400403], - [-11.129668, 7.407169], - [-11.125763, 7.413935], - [-11.129669, 7.420699], - [-11.137482, 7.4207], - [-11.141387, 7.427466], - [-11.137482, 7.434232], - [-11.141388, 7.440997], - [-11.149199, 7.440998], - [-11.151199, 7.44446], - [-11.150736, 7.450942], - [-11.150734, 7.450943], - [-11.150541, 7.45085], - [-11.149478, 7.451069], - [-11.149211, 7.451283], - [-11.149289, 7.451772], - [-11.14894, 7.452374], - [-11.148184, 7.452521], - [-11.148111, 7.452803], - [-11.148819, 7.45343], - [-11.148529, 7.454529], - [-11.1492, 7.45453], - [-11.153106, 7.461294], - [-11.1492, 7.468061], - [-11.153106, 7.474827], - [-11.1492, 7.481593], - [-11.153107, 7.488358], - [-11.159061, 7.488359], - [-11.15875, 7.48875], - [-11.15875, 7.497083], - [-11.171249, 7.50125], - [-11.17375, 7.512916], - [-11.183749, 7.512084], - [-11.186282, 7.512084], - [-11.186283, 7.512085], - [-11.185473, 7.513488], - [-11.185752, 7.514698], - [-11.186102, 7.515387], - [-11.18677, 7.516018], - [-11.188183, 7.516847], - [-11.190122, 7.516996], - [-11.193333, 7.510707], - [-11.194006, 7.508793], - [-11.194711, 7.507865], - [-11.196237, 7.506735], - [-11.196546, 7.506353], - [-11.198622, 7.506542], - [-11.198733, 7.506735], - [-11.194828, 7.5135], - [-11.197378, 7.517916], - [-11.20125, 7.517917], - [-11.206249, 7.522917], - [-11.206249, 7.532083], - [-11.204878, 7.533798], - [-11.206546, 7.533798], - [-11.210453, 7.527033], - [-11.218265, 7.527033], - [-11.222172, 7.533798], - [-11.226267, 7.533798], - [-11.2261, 7.5278], - [-11.2261, 7.5241], - [-11.226699, 7.5209], - [-11.228, 7.5188], - [-11.230199, 7.517], - [-11.234, 7.515099], - [-11.2413, 7.509699], - [-11.2445, 7.508199], - [-11.2488, 7.505899], - [-11.2519, 7.504499], - [-11.256199, 7.5022], - [-11.2594, 7.500799], - [-11.267896, 7.496302], - [-11.272599, 7.4926], - [-11.274799, 7.4911], - [-11.278699, 7.4893], - [-11.282299, 7.4872], - [-11.2854, 7.485799], - [-11.293499, 7.4799], - [-11.297299, 7.4781], - [-11.3009, 7.476099], - [-11.304, 7.474699], - [-11.311299, 7.4692], - [-11.3163, 7.466499], - [-11.3202, 7.463199], - [-11.327699, 7.4559], - [-11.330599, 7.4538], - [-11.334499, 7.452], - [-11.337999, 7.45], - [-11.3412, 7.448599], - [-11.346499, 7.4458], - [-11.349999, 7.444499], - [-11.352699, 7.441999], - [-11.354199, 7.4389], - [-11.356119, 7.430196] - ] - ], - "type": "Polygon" - }, - "id": 145, - "properties": { - "cc:admin:id": ["138"], - "cc:oBld:total": 1798, - "cc:pop:fifteen-to-twenty-four": 2100.7317309582213, - "cc:pop:grid3-total": 9370.531064935552, - "cc:pop:kontur-total": 11345.679328776325, - "cc:pop:men": 5106.957343576412, - "cc:pop:sixty-plus": 694.878420439319, - "cc:pop:total": 10666.276244104161, - "cc:pop:under-five": 1595.1681279176316, - "cc:pop:women": 5559.318900527748, - "cc:pop:women-fiften-to-forty-nine": 2727.8300114550493, - "cc:pop:wp-total": 8890.614740198225, - "cc:pop:wp-total-UN": 10309.507953900462, - "cc:id": "145", - "cc:Name": "Gorahun CHC", - "cc:site": [-11.2373, 7.467], - "user:parentName": "Tunkia", - "user:code": "OU_222637", - "user:orgUnitId": "QpRIPul20Sb", - "user:level": "4", - "user:parentId": "l7pFejMtUoF" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - [-12.593699, 7.593999], - [-12.593499, 7.5918], - [-12.5929, 7.5904], - [-12.5913, 7.5893], - [-12.591299, 7.588799], - [-12.588499, 7.5874], - [-12.5851, 7.5874], - [-12.5824, 7.587599], - [-12.5801, 7.585699], - [-12.5801, 7.5824], - [-12.581499, 7.580399], - [-12.581799, 7.5785], - [-12.580699, 7.5765], - [-12.578699, 7.575699], - [-12.5729, 7.5685], - [-12.572899, 7.5665], - [-12.5724, 7.5649], - [-12.572899, 7.564299], - [-12.573499, 7.5613], - [-12.572599, 7.560999], - [-12.571499, 7.5596], - [-12.5701, 7.559], - [-12.5693, 7.5576], - [-12.5693, 7.5524], - [-12.568999, 7.552399], - [-12.568799, 7.5488], - [-12.567599, 7.5476], - [-12.563999, 7.5488], - [-12.5624, 7.5499], - [-12.561299, 7.551299], - [-12.5601, 7.5513], - [-12.558799, 7.552099], - [-12.5568, 7.552099], - [-12.5546, 7.551299], - [-12.5515, 7.5488], - [-12.5501, 7.5482], - [-12.549599, 7.5471], - [-12.5479, 7.546199], - [-12.546799, 7.5451], - [-12.5426, 7.5449], - [-12.5424, 7.5454], - [-12.542399, 7.551499], - [-12.5401, 7.5538], - [-12.539599, 7.555699], - [-12.5379, 7.5563], - [-12.537099, 7.557899], - [-12.5343, 7.5601], - [-12.533999, 7.560999], - [-12.5296, 7.562399], - [-12.528499, 7.563199], - [-12.5243, 7.5632], - [-12.5213, 7.563999], - [-12.519899, 7.5629], - [-12.5174, 7.562599], - [-12.516799, 7.561299], - [-12.5146, 7.5588], - [-12.514599, 7.5576], - [-12.5132, 7.555699], - [-12.513199, 7.5538], - [-12.5124, 7.552899], - [-12.512399, 7.551], - [-12.511299, 7.5493], - [-12.5096, 7.549299], - [-12.507899, 7.5485], - [-12.5068, 7.548499], - [-12.505099, 7.5471], - [-12.5029, 7.5476], - [-12.5021, 7.549899], - [-12.501, 7.5504], - [-12.500999, 7.552099], - [-12.5004, 7.553799], - [-12.4996, 7.5543], - [-12.499299, 7.5557], - [-12.496499, 7.5585], - [-12.4954, 7.5604], - [-12.495099, 7.5621], - [-12.4938, 7.5635], - [-12.4938, 7.569299], - [-12.4954, 7.573999], - [-12.4962, 7.5746], - [-12.4982, 7.577599], - [-12.499, 7.5779], - [-12.4999, 7.5796], - [-12.502399, 7.582099], - [-12.5029, 7.583799], - [-12.5038, 7.584], - [-12.5046, 7.585399], - [-12.506499, 7.586], - [-12.5074, 7.587399], - [-12.508799, 7.5876], - [-12.5101, 7.588799], - [-12.511299, 7.589], - [-12.5126, 7.590699], - [-12.514299, 7.591299], - [-12.5154, 7.592599], - [-12.5165, 7.5929], - [-12.5193, 7.5957], - [-12.523499, 7.598199], - [-12.5237, 7.598999], - [-12.524899, 7.5993], - [-12.5274, 7.601499], - [-12.530399, 7.602599], - [-12.531, 7.603499], - [-12.5321, 7.6035], - [-12.5349, 7.6054], - [-12.5385, 7.606499], - [-12.5404, 7.6065], - [-12.542599, 7.607099], - [-12.544, 7.6079], - [-12.5465, 7.6088], - [-12.550699, 7.610999], - [-12.5518, 7.611], - [-12.5532, 7.611799], - [-12.556299, 7.6115], - [-12.5568, 7.612099], - [-12.561799, 7.612599], - [-12.5621, 7.6132], - [-12.564, 7.6135], - [-12.567099, 7.613499], - [-12.568799, 7.612899], - [-12.569599, 7.6118], - [-12.570699, 7.611499], - [-12.5718, 7.610099], - [-12.574599, 7.609599], - [-12.5754, 7.609], - [-12.577899, 7.608799], - [-12.5799, 7.6079], - [-12.583699, 7.607899], - [-12.584599, 7.607399], - [-12.5849, 7.605099], - [-12.586299, 7.603199], - [-12.5863, 7.602399], - [-12.588499, 7.599899], - [-12.5888, 7.5987], - [-12.589899, 7.598199], - [-12.5907, 7.5965], - [-12.591499, 7.596299], - [-12.592899, 7.5943], - [-12.593699, 7.593999] - ] - ], - [ - [ - [-12.495899, 7.5554], - [-12.4949, 7.556], - [-12.4946, 7.557899], - [-12.495399, 7.557899], - [-12.495899, 7.5554] - ] - ] - ], - "type": "MultiPolygon" - }, - "id": 146, - "properties": { - "cc:admin:id": ["18"], - "cc:oBld:total": 0, - "cc:pop:fifteen-to-twenty-four": 118.17969642517437, - "cc:pop:grid3-total": 2080.0976402267884, - "cc:pop:kontur-total": 592.8475660750936, - "cc:pop:men": 318.746878182748, - "cc:pop:sixty-plus": 54.02994499832501, - "cc:pop:total": 672.7262626932203, - "cc:pop:under-five": 110.217123712527, - "cc:pop:women": 353.97938451047224, - "cc:pop:women-fiften-to-forty-nine": 174.20964142349936, - "cc:pop:wp-total": 540.1846907290842, - "cc:pop:wp-total-UN": 628.5373805408412, - "cc:id": "146", - "cc:Name": "Govt. Hosp. Bonthe", - "cc:site": [-12.57888, 7.5918], - "user:parentName": "BMC", - "user:code": "OU_197444", - "user:orgUnitId": "NnQpISrLYWZ", - "user:level": "4", - "user:parentId": "ENHOJz3UH5L" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.211249, 7.887917], - [-11.210417, 7.887916], - [-11.210515, 7.887118], - [-11.206975, 7.887117], - [-11.20307, 7.880353], - [-11.203874, 7.878958], - [-11.203801, 7.878998], - [-11.201496, 7.877765], - [-11.201261, 7.877615], - [-11.200811, 7.877323], - [-11.200675, 7.877628], - [-11.200398, 7.877613], - [-11.199537, 7.87687], - [-11.199277, 7.876589], - [-11.199816, 7.876102], - [-11.200491, 7.874744], - [-11.20003, 7.874442], - [-11.199595, 7.8741], - [-11.199168, 7.87376], - [-11.198732, 7.873396], - [-11.199004, 7.873097], - [-11.199572, 7.87262], - [-11.199219, 7.872294], - [-11.199161, 7.87225], - [-11.198801, 7.871923], - [-11.198754, 7.871883], - [-11.198508, 7.871509], - [-11.199752, 7.870419], - [-11.199367, 7.869967], - [-11.199043, 7.869544], - [-11.198345, 7.870158], - [-11.197088, 7.871187], - [-11.197036, 7.871552], - [-11.197028, 7.871866], - [-11.19665, 7.872231], - [-11.196044, 7.871694], - [-11.195979, 7.871692], - [-11.195515, 7.87125], - [-11.195084, 7.870843], - [-11.195604, 7.870236], - [-11.193978, 7.869332], - [-11.193411, 7.869339], - [-11.193637, 7.868775], - [-11.193032, 7.868472], - [-11.192651, 7.868263], - [-11.191755, 7.867809], - [-11.189509, 7.866533], - [-11.188114, 7.865816], - [-11.187584, 7.866293], - [-11.18723, 7.86505], - [-11.18649, 7.865194], - [-11.185276, 7.865821], - [-11.184892, 7.8661], - [-11.184675, 7.866295], - [-11.18377, 7.867092], - [-11.1837, 7.867934], - [-11.184262, 7.870062], - [-11.183778, 7.870026], - [-11.183478, 7.869986], - [-11.183285, 7.869963], - [-11.182736, 7.870456], - [-11.182434, 7.870635], - [-11.182265, 7.870765], - [-11.181701, 7.871269], - [-11.181302, 7.871026], - [-11.181077, 7.871529], - [-11.180972, 7.871504], - [-11.180514, 7.871252], - [-11.179734, 7.872052], - [-11.179877, 7.873401], - [-11.179874, 7.873503], - [-11.179716, 7.87376], - [-11.179468, 7.874226], - [-11.179201, 7.87411], - [-11.178708, 7.87388], - [-11.178594, 7.874517], - [-11.178577, 7.874589], - [-11.178326, 7.874819], - [-11.177857, 7.874814], - [-11.177767, 7.874851], - [-11.177715, 7.874902], - [-11.177679, 7.875039], - [-11.177825, 7.875477], - [-11.178222, 7.875771], - [-11.178222, 7.875773], - [-11.177422, 7.87596], - [-11.175747, 7.876399], - [-11.175652, 7.87744], - [-11.174983, 7.87856], - [-11.174582, 7.879014], - [-11.17425, 7.879483], - [-11.174203, 7.879523], - [-11.173945, 7.880102], - [-11.17374, 7.880491], - [-11.174547, 7.880147], - [-11.174148, 7.881258], - [-11.173724, 7.881665], - [-11.173363, 7.881327], - [-11.172443, 7.880803], - [-11.172189, 7.880081], - [-11.172391, 7.879812], - [-11.172135, 7.879727], - [-11.171975, 7.879654], - [-11.171402, 7.879347], - [-11.170278, 7.879136], - [-11.170065, 7.878767], - [-11.170378, 7.878141], - [-11.1701, 7.878022], - [-11.169632, 7.878535], - [-11.169265, 7.87867], - [-11.169332, 7.878989], - [-11.168828, 7.879323], - [-11.167581, 7.879249], - [-11.167118, 7.879054], - [-11.166974, 7.878614], - [-11.166648, 7.878715], - [-11.166569, 7.878148], - [-11.166549, 7.877568], - [-11.165945, 7.877876], - [-11.165221, 7.877959], - [-11.165054, 7.877946], - [-11.164972, 7.878155], - [-11.164704, 7.878508], - [-11.164447, 7.878393], - [-11.163781, 7.879148], - [-11.163702, 7.879107], - [-11.163665, 7.879272], - [-11.163487, 7.879447], - [-11.163004, 7.880131], - [-11.162821, 7.880532], - [-11.162911, 7.880848], - [-11.162551, 7.881432], - [-11.16199, 7.881215], - [-11.162375, 7.88013], - [-11.163145, 7.878799], - [-11.162314, 7.878203], - [-11.161982, 7.877982], - [-11.161613, 7.877721], - [-11.161511, 7.877225], - [-11.161384, 7.877049], - [-11.161045, 7.877247], - [-11.159633, 7.878025], - [-11.15927, 7.877978], - [-11.159089, 7.877912], - [-11.1585, 7.878171], - [-11.158276, 7.87851], - [-11.15834, 7.878685], - [-11.157917, 7.879032], - [-11.157497, 7.879587], - [-11.157254, 7.881018], - [-11.15641, 7.881537], - [-11.154449, 7.883132], - [-11.154444, 7.883439], - [-11.154736, 7.883541], - [-11.155869, 7.885087], - [-11.155873, 7.885093], - [-11.157916, 7.884584], - [-11.157916, 7.886249], - [-11.156362, 7.88625], - [-11.156493, 7.886475], - [-11.156809, 7.886673], - [-11.15716, 7.886653], - [-11.158018, 7.887554], - [-11.158144, 7.887734], - [-11.158447, 7.887979], - [-11.158542, 7.888053], - [-11.158566, 7.888023], - [-11.158758, 7.887743], - [-11.158907, 7.887682], - [-11.159958, 7.887768], - [-11.160521, 7.887979], - [-11.160823, 7.888371], - [-11.161078, 7.888031], - [-11.162105, 7.887481], - [-11.162984, 7.887503], - [-11.163453, 7.887323], - [-11.163101, 7.886621], - [-11.162747, 7.886742], - [-11.162014, 7.886484], - [-11.162105, 7.885782], - [-11.162168, 7.88555], - [-11.162561, 7.884317], - [-11.162645, 7.884267], - [-11.164238, 7.884714], - [-11.164554, 7.884867], - [-11.165727, 7.885205], - [-11.16701, 7.885551], - [-11.167539, 7.885679], - [-11.167359, 7.886733], - [-11.167685, 7.886535], - [-11.168491, 7.886488], - [-11.169775, 7.886904], - [-11.170973, 7.887511], - [-11.17165, 7.887157], - [-11.172855, 7.887929], - [-11.173207, 7.887503], - [-11.173642, 7.887802], - [-11.173935, 7.887381], - [-11.174372, 7.887742], - [-11.174849, 7.887939], - [-11.175175, 7.887311], - [-11.175335, 7.887225], - [-11.175681, 7.887481], - [-11.176605, 7.888155], - [-11.177024, 7.888457], - [-11.177456, 7.887833], - [-11.177727, 7.887838], - [-11.177753, 7.887775], - [-11.178129, 7.886627], - [-11.178416, 7.886417], - [-11.179981, 7.887336], - [-11.18019, 7.887315], - [-11.180918, 7.88663], - [-11.181764, 7.886859], - [-11.181967, 7.886552], - [-11.182582, 7.886752], - [-11.183213, 7.886733], - [-11.184098, 7.886409], - [-11.184169, 7.886376], - [-11.184717, 7.886596], - [-11.184886, 7.886652], - [-11.186085, 7.887117], - [-11.185984, 7.887399], - [-11.18657, 7.887597], - [-11.186974, 7.886461], - [-11.18733, 7.886577], - [-11.187585, 7.88667], - [-11.187195, 7.887811], - [-11.187887, 7.888043], - [-11.187742, 7.888481], - [-11.188433, 7.888705], - [-11.18879, 7.887768], - [-11.189388, 7.887935], - [-11.189896, 7.88809], - [-11.190957, 7.888403], - [-11.191665, 7.888592], - [-11.191822, 7.88787], - [-11.191899, 7.887692], - [-11.192196, 7.887214], - [-11.192856, 7.886187], - [-11.193416, 7.886819], - [-11.19376, 7.888271], - [-11.193844, 7.888585], - [-11.194242, 7.889728], - [-11.195259, 7.891147], - [-11.195237, 7.891191], - [-11.195082, 7.892131], - [-11.195242, 7.892782], - [-11.195417, 7.892084], - [-11.197082, 7.892084], - [-11.200085, 7.893883], - [-11.203069, 7.893884], - [-11.204652, 7.896624], - [-11.205416, 7.897083], - [-11.207916, 7.895416], - [-11.208065, 7.894233], - [-11.208202, 7.894468], - [-11.211249, 7.894467], - [-11.211249, 7.887917] - ] - ], - "type": "Polygon" - }, - "id": 147, - "properties": { - "cc:admin:id": ["105"], - "cc:oBld:total": 7593, - "cc:pop:fifteen-to-twenty-four": 11959.20242987793, - "cc:pop:grid3-total": 73334.78906598568, - "cc:pop:kontur-total": 69410.5326635766, - "cc:pop:men": 30916.421729144648, - "cc:pop:sixty-plus": 3634.3021746909076, - "cc:pop:total": 62178.29208681212, - "cc:pop:under-five": 9753.480850504495, - "cc:pop:women": 31261.870357667456, - "cc:pop:women-fiften-to-forty-nine": 15641.719768040755, - "cc:pop:wp-total": 59803.910042372976, - "cc:pop:wp-total-UN": 69343.53812355718, - "cc:id": "147", - "cc:Name": "Govt. Hosp. Kenema", - "cc:site": [-11.1852, 7.8754], - "user:parentName": "Nongowa", - "user:code": "OU_222716", - "user:orgUnitId": "djMCTPYvltl", - "user:level": "4", - "user:parentId": "KIUCimTXf8Q" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.840599, 7.341999], - [-11.8392, 7.3373], - [-11.8379, 7.3341], - [-11.8354, 7.3298], - [-11.834099, 7.326599], - [-11.832099, 7.322999], - [-11.831299, 7.320599], - [-11.830099, 7.315499], - [-11.8278, 7.3111], - [-11.826399, 7.307999], - [-11.824, 7.3037], - [-11.822599, 7.300499], - [-11.819199, 7.2951], - [-11.815299, 7.293099], - [-11.810099, 7.2928], - [-11.7866, 7.292899], - [-11.7829, 7.2928], - [-11.7781, 7.291999], - [-11.7741, 7.2898], - [-11.7709, 7.2885], - [-11.7666, 7.2861], - [-11.7634, 7.2847], - [-11.760399, 7.282599], - [-11.7521, 7.2746], - [-11.7492, 7.271], - [-11.7473, 7.267], - [-11.745299, 7.263399], - [-11.743, 7.2587], - [-11.740399, 7.2564], - [-11.739431, 7.256142], - [-11.738194, 7.257875], - [-11.735993, 7.260348], - [-11.735175, 7.262502], - [-11.734938, 7.264187], - [-11.734983, 7.266077], - [-11.733571, 7.26708], - [-11.733074, 7.267115], - [-11.732294, 7.266771], - [-11.731417, 7.265785], - [-11.730109, 7.265035], - [-11.729413, 7.264419], - [-11.728782, 7.263569], - [-11.728322, 7.261755], - [-11.727979, 7.261176], - [-11.727273, 7.260375], - [-11.726759, 7.260049], - [-11.726587, 7.260733], - [-11.726931, 7.260946], - [-11.726373, 7.265974], - [-11.727696, 7.267084], - [-11.731762, 7.273696], - [-11.73495, 7.275782], - [-11.736658, 7.277794], - [-11.737038, 7.278044], - [-11.737916, 7.278305], - [-11.737917, 7.278962], - [-11.739446, 7.27935], - [-11.743245, 7.279933], - [-11.744967, 7.280422], - [-11.747027, 7.281451], - [-11.748926, 7.281816], - [-11.749268, 7.28212], - [-11.748377, 7.283664], - [-11.748474, 7.283835], - [-11.747267, 7.284625], - [-11.744507, 7.287146], - [-11.743912, 7.289784], - [-11.743031, 7.291508], - [-11.742308, 7.293869], - [-11.741339, 7.295733], - [-11.739809, 7.29949], - [-11.739537, 7.301634], - [-11.73976, 7.302324], - [-11.739637, 7.302808], - [-11.738952, 7.303503], - [-11.735791, 7.305174], - [-11.735239, 7.305281], - [-11.733967, 7.305897], - [-11.732912, 7.308237], - [-11.730895, 7.311266], - [-11.729284, 7.314193], - [-11.728515, 7.315856], - [-11.728375, 7.316587], - [-11.726566, 7.319098], - [-11.726007, 7.319752], - [-11.724765, 7.320583], - [-11.722376, 7.320105], - [-11.72156, 7.319583], - [-11.720808, 7.319375], - [-11.719775, 7.319175], - [-11.71927, 7.31929], - [-11.719077, 7.31976], - [-11.719184, 7.322515], - [-11.718805, 7.323324], - [-11.718704, 7.32491], - [-11.718929, 7.326157], - [-11.720373, 7.329206], - [-11.721047, 7.332994], - [-11.720419, 7.33471], - [-11.719069, 7.337465], - [-11.718324, 7.340476], - [-11.717633, 7.342215], - [-11.71573, 7.345416], - [-11.712917, 7.345417], - [-11.713749, 7.351249], - [-11.712917, 7.352084], - [-11.71235, 7.354349], - [-11.711255, 7.353749], - [-11.710662, 7.353849], - [-11.709237, 7.355364], - [-11.708229, 7.355923], - [-11.707976, 7.356393], - [-11.708072, 7.356889], - [-11.707569, 7.357639], - [-11.706823, 7.357931], - [-11.705531, 7.357913], - [-11.704781, 7.358771], - [-11.704762, 7.3588], - [-11.704491, 7.35956], - [-11.704658, 7.360568], - [-11.705221, 7.361183], - [-11.705785, 7.361276], - [-11.705868, 7.361445], - [-11.705518, 7.361814], - [-11.705946, 7.36423], - [-11.705663, 7.365815], - [-11.705449, 7.365808], - [-11.705801, 7.366688], - [-11.705585, 7.367055], - [-11.705581, 7.368143], - [-11.70602, 7.369363], - [-11.706575, 7.369699], - [-11.707063, 7.370526], - [-11.707236, 7.371503], - [-11.707185, 7.371529], - [-11.706214, 7.372622], - [-11.705429, 7.372649], - [-11.704343, 7.371947], - [-11.702728, 7.369994], - [-11.702345, 7.369967], - [-11.701588, 7.370358], - [-11.699722, 7.372627], - [-11.69892, 7.373272], - [-11.699327, 7.376124], - [-11.699721, 7.376487], - [-11.699649, 7.377542], - [-11.699325, 7.378316], - [-11.696681, 7.381767], - [-11.696857, 7.38273], - [-11.697516, 7.383642], - [-11.697385, 7.384061], - [-11.698411, 7.384987], - [-11.697753, 7.385886], - [-11.697726, 7.386342], - [-11.699525, 7.387916], - [-11.699695, 7.389482], - [-11.69985, 7.389927], - [-11.699444, 7.390926], - [-11.698106, 7.393], - [-11.697616, 7.393524], - [-11.696755, 7.394054], - [-11.695986, 7.394016], - [-11.694954, 7.393255], - [-11.694582, 7.39344], - [-11.694365, 7.393886], - [-11.694435, 7.394148], - [-11.694667, 7.394624], - [-11.695163, 7.395032], - [-11.694947, 7.395495], - [-11.694969, 7.396079], - [-11.695288, 7.39701], - [-11.696305, 7.398642], - [-11.696534, 7.398617], - [-11.69733, 7.398782], - [-11.697881, 7.398401], - [-11.69828, 7.397842], - [-11.699339, 7.399025], - [-11.699947, 7.399326], - [-11.700182, 7.399376], - [-11.700181, 7.399378], - [-11.700014, 7.399363], - [-11.699536, 7.399588], - [-11.699089, 7.39933], - [-11.698737, 7.399842], - [-11.698697, 7.400266], - [-11.698872, 7.400475], - [-11.699986, 7.401101], - [-11.700546, 7.401202], - [-11.701353, 7.400999], - [-11.702192, 7.401177], - [-11.702391, 7.400917], - [-11.703558, 7.40126], - [-11.703903, 7.402687], - [-11.702921, 7.40469], - [-11.702103, 7.407127], - [-11.702069, 7.407687], - [-11.701795, 7.407883], - [-11.701932, 7.408426], - [-11.702732, 7.408992], - [-11.704843, 7.409174], - [-11.707483, 7.409709], - [-11.707327, 7.410484], - [-11.709744, 7.409939], - [-11.710335, 7.409047], - [-11.71073, 7.408739], - [-11.712244, 7.408], - [-11.714215, 7.407792], - [-11.715163, 7.408145], - [-11.717335, 7.408207], - [-11.718198, 7.407968], - [-11.719517, 7.407284], - [-11.720185, 7.407269], - [-11.720556, 7.407915], - [-11.720419, 7.409545], - [-11.72089, 7.411484], - [-11.720562, 7.413289], - [-11.72089, 7.413997], - [-11.72134, 7.414521], - [-11.721407, 7.415858], - [-11.722285, 7.417905], - [-11.723495, 7.418687], - [-11.724512, 7.418888], - [-11.72542, 7.419642], - [-11.727181, 7.419881], - [-11.728446, 7.420573], - [-11.729076, 7.421667], - [-11.729611, 7.423675], - [-11.730178, 7.424569], - [-11.73062, 7.42503], - [-11.732218, 7.425907], - [-11.733724, 7.426077], - [-11.73478, 7.426878], - [-11.736679, 7.429717], - [-11.737393, 7.43135], - [-11.738611, 7.433129], - [-11.739302, 7.433794], - [-11.739912, 7.435072], - [-11.740791, 7.435644], - [-11.741894, 7.43602], - [-11.746219, 7.43863], - [-11.7458, 7.432999], - [-11.746, 7.426199], - [-11.7466, 7.423499], - [-11.750199, 7.416], - [-11.7527, 7.412699], - [-11.762499, 7.4028], - [-11.765499, 7.3995], - [-11.7673, 7.396799], - [-11.7691, 7.392899], - [-11.7712, 7.390199], - [-11.7746, 7.387199], - [-11.7789, 7.385199], - [-11.7832, 7.382899], - [-11.7871, 7.381099], - [-11.7904, 7.378399], - [-11.797799, 7.371], - [-11.801099, 7.3684], - [-11.804899, 7.3665], - [-11.806999, 7.3652], - [-11.810899, 7.3619], - [-11.812899, 7.3606], - [-11.8161, 7.359199], - [-11.8204, 7.356799], - [-11.8236, 7.355399], - [-11.8256, 7.353999], - [-11.8302, 7.350299], - [-11.836, 7.347099], - [-11.8385, 7.344899], - [-11.840599, 7.341999] - ], - [ - [-11.725416, 7.406249], - [-11.727083, 7.404584], - [-11.732082, 7.407917], - [-11.727917, 7.412084], - [-11.726249, 7.41625], - [-11.723816, 7.418075], - [-11.722799, 7.41754], - [-11.722016, 7.415955], - [-11.722054, 7.414597], - [-11.721539, 7.413367], - [-11.721669, 7.412594], - [-11.721396, 7.411537], - [-11.721516, 7.410765], - [-11.721124, 7.409509], - [-11.721418, 7.408546], - [-11.721388, 7.407823], - [-11.720967, 7.406946], - [-11.72051, 7.406568], - [-11.71968, 7.406522], - [-11.719019, 7.406722], - [-11.717809, 7.407414], - [-11.717211, 7.407223], - [-11.715947, 7.407422], - [-11.715869, 7.407392], - [-11.717083, 7.40375], - [-11.722917, 7.406249], - [-11.725416, 7.406249] - ] - ], - "type": "Polygon" - }, - "id": 148, - "properties": { - "cc:admin:id": ["66"], - "cc:oBld:total": 2186, - "cc:pop:fifteen-to-twenty-four": 6663.3583234717125, - "cc:pop:grid3-total": 26720.472781553886, - "cc:pop:kontur-total": 38570.284520586465, - "cc:pop:men": 18173.745078038963, - "cc:pop:sixty-plus": 2734.3446402482277, - "cc:pop:total": 37397.87467425242, - "cc:pop:under-five": 6221.533288186313, - "cc:pop:women": 19224.129596213486, - "cc:pop:women-fiften-to-forty-nine": 9202.290457463385, - "cc:pop:wp-total": 27844.973557014753, - "cc:pop:wp-total-UN": 32296.55937363369, - "cc:id": "148", - "cc:Name": "Govt. Hosp. Pujehun", - "cc:site": [-11.7191, 7.3508], - "user:parentName": "Kpanga Kabonde", - "user:code": "OU_260401", - "user:orgUnitId": "STv4PP4Hiyl", - "user:level": "4", - "user:parentId": "QwMiPiME3bA" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.813845, 8.775476], - [-12.813712, 8.775314], - [-12.81265, 8.775911], - [-12.811753, 8.777447], - [-12.811435, 8.777801], - [-12.811334, 8.777605], - [-12.811162, 8.77767], - [-12.810817, 8.778287], - [-12.810763, 8.778877], - [-12.809934, 8.77895], - [-12.809747, 8.779402], - [-12.809323, 8.779495], - [-12.809502, 8.779849], - [-12.808586, 8.780577], - [-12.807736, 8.780354], - [-12.807795, 8.779933], - [-12.807383, 8.779678], - [-12.806155, 8.779454], - [-12.806068, 8.779401], - [-12.805417, 8.778749], - [-12.808337, 8.773638], - [-12.808086, 8.773537], - [-12.808058, 8.772803], - [-12.807441, 8.771352], - [-12.807102, 8.77109], - [-12.806498, 8.7712], - [-12.805847, 8.770834], - [-12.805063, 8.770906], - [-12.804239, 8.771094], - [-12.802858, 8.771697], - [-12.802388, 8.771429], - [-12.801459, 8.771317], - [-12.801681, 8.770429], - [-12.802385, 8.770128], - [-12.803181, 8.770023], - [-12.804469, 8.769092], - [-12.805159, 8.769051], - [-12.805791, 8.768167], - [-12.805416, 8.767916], - [-12.804583, 8.765416], - [-12.804583, 8.760418], - [-12.804584, 8.760417], - [-12.806007, 8.760843], - [-12.805907, 8.760649], - [-12.806371, 8.760163], - [-12.806339, 8.759455], - [-12.805847, 8.759139], - [-12.805514, 8.758668], - [-12.805109, 8.758614], - [-12.804665, 8.758227], - [-12.804328, 8.757684], - [-12.804407, 8.757596], - [-12.804308, 8.757279], - [-12.804758, 8.757132], - [-12.805375, 8.757295], - [-12.805853, 8.757932], - [-12.805854, 8.758371], - [-12.806079, 8.758608], - [-12.806657, 8.758517], - [-12.80689, 8.75887], - [-12.807767, 8.758576], - [-12.809294, 8.75895], - [-12.809978, 8.758969], - [-12.810601, 8.758825], - [-12.810667, 8.75875], - [-12.809582, 8.758749], - [-12.804246, 8.756081], - [-12.804343, 8.755592], - [-12.805241, 8.754937], - [-12.806105, 8.755029], - [-12.806644, 8.751685], - [-12.807031, 8.751944], - [-12.807155, 8.752717], - [-12.80819, 8.752723], - [-12.807678, 8.751691], - [-12.807161, 8.751687], - [-12.806905, 8.751042], - [-12.806389, 8.750909], - [-12.806394, 8.750138], - [-12.80769, 8.749629], - [-12.807567, 8.748856], - [-12.808088, 8.748086], - [-12.808223, 8.747057], - [-12.808741, 8.747059], - [-12.808747, 8.746287], - [-12.809263, 8.746289], - [-12.809527, 8.745518], - [-12.80966, 8.745003], - [-12.809534, 8.744488], - [-12.810182, 8.744234], - [-12.810007, 8.743264], - [-12.809567, 8.742889], - [-12.809567, 8.742888], - [-12.80964, 8.742837], - [-12.809142, 8.742398], - [-12.809011, 8.742637], - [-12.808229, 8.7422], - [-12.808133, 8.742851], - [-12.80793, 8.742968], - [-12.807292, 8.741888], - [-12.80701, 8.741787], - [-12.806823, 8.742087], - [-12.806108, 8.741887], - [-12.805926, 8.741375], - [-12.805898, 8.739239], - [-12.805448, 8.739418], - [-12.805098, 8.739807], - [-12.805046, 8.740276], - [-12.803646, 8.741822], - [-12.803574, 8.742005], - [-12.803462, 8.742189], - [-12.803417, 8.742533], - [-12.803473, 8.74294], - [-12.80354, 8.743253], - [-12.802049, 8.743047], - [-12.801013, 8.743361], - [-12.800584, 8.7424], - [-12.800226, 8.74226], - [-12.800116, 8.741745], - [-12.799642, 8.741037], - [-12.79919, 8.74082], - [-12.799346, 8.740298], - [-12.800116, 8.740658], - [-12.800421, 8.740444], - [-12.80071, 8.740692], - [-12.800974, 8.740351], - [-12.800776, 8.739541], - [-12.8019, 8.739025], - [-12.802089, 8.738758], - [-12.80097, 8.738168], - [-12.799209, 8.737671], - [-12.798102, 8.737568], - [-12.796808, 8.73772], - [-12.796736, 8.73773], - [-12.794065, 8.740917], - [-12.792876, 8.743359], - [-12.792131, 8.744512], - [-12.790831, 8.743333], - [-12.790586, 8.742415], - [-12.791249, 8.742082], - [-12.791249, 8.739821], - [-12.789985, 8.740023], - [-12.789491, 8.740241], - [-12.789244, 8.740375], - [-12.788979, 8.740589], - [-12.788812, 8.740786], - [-12.788398, 8.74211], - [-12.788558, 8.742347], - [-12.788725, 8.742433], - [-12.788996, 8.742418], - [-12.789179, 8.742529], - [-12.789284, 8.743797], - [-12.789713, 8.743805], - [-12.790439, 8.74342], - [-12.790607, 8.743716], - [-12.790631, 8.743892], - [-12.790057, 8.744751], - [-12.789316, 8.745106], - [-12.788933, 8.744814], - [-12.788868, 8.744216], - [-12.788518, 8.744192], - [-12.788269, 8.744901], - [-12.787832, 8.745407], - [-12.787496, 8.746511], - [-12.787425, 8.746754], - [-12.787489, 8.746943], - [-12.787728, 8.746881], - [-12.78786, 8.747774], - [-12.786696, 8.748793], - [-12.786401, 8.748736], - [-12.786165, 8.747939], - [-12.786464, 8.747557], - [-12.785638, 8.747419], - [-12.784518, 8.747923], - [-12.784379, 8.747021], - [-12.783516, 8.746512], - [-12.782921, 8.746392], - [-12.782653, 8.746677], - [-12.781144, 8.747237], - [-12.780758, 8.747213], - [-12.780565, 8.746936], - [-12.780244, 8.746855], - [-12.779808, 8.74695], - [-12.779788, 8.746959], - [-12.780199, 8.748339], - [-12.780742, 8.749435], - [-12.781243, 8.749914], - [-12.781383, 8.749958], - [-12.782001, 8.750225], - [-12.782949, 8.750706], - [-12.782621, 8.75115], - [-12.782159, 8.751267], - [-12.782332, 8.751502], - [-12.782332, 8.751503], - [-12.780896, 8.750892], - [-12.779986, 8.750937], - [-12.779426, 8.751022], - [-12.779488, 8.751139], - [-12.779718, 8.751593], - [-12.779317, 8.751977], - [-12.778614, 8.752554], - [-12.778378, 8.752733], - [-12.777156, 8.753473], - [-12.777154, 8.753472], - [-12.776985, 8.752738], - [-12.777032, 8.752692], - [-12.7761, 8.751037], - [-12.775428, 8.750936], - [-12.771479, 8.749545], - [-12.770549, 8.749287], - [-12.768139, 8.748609], - [-12.767752, 8.748615], - [-12.769733, 8.749423], - [-12.770329, 8.749874], - [-12.771125, 8.750807], - [-12.771588, 8.75173], - [-12.771872, 8.752973], - [-12.772328, 8.762437], - [-12.772347, 8.76282], - [-12.771788, 8.763044], - [-12.770982, 8.763704], - [-12.770523, 8.764499], - [-12.770246, 8.765902], - [-12.769229, 8.765908], - [-12.767756, 8.767248], - [-12.767383, 8.766864], - [-12.767245, 8.765761], - [-12.766898, 8.764844], - [-12.765237, 8.763581], - [-12.763485, 8.762817], - [-12.763188, 8.762429], - [-12.762822, 8.762502], - [-12.762659, 8.761242], - [-12.762365, 8.760922], - [-12.761564, 8.760946], - [-12.760639, 8.761348], - [-12.758768, 8.762621], - [-12.757301, 8.763364], - [-12.756246, 8.764175], - [-12.755454, 8.76522], - [-12.753476, 8.765575], - [-12.752983, 8.76557], - [-12.750765, 8.764352], - [-12.749091, 8.764457], - [-12.745905, 8.764978], - [-12.745256, 8.764944], - [-12.743758, 8.76414], - [-12.742393, 8.763945], - [-12.739598, 8.763911], - [-12.738989, 8.764086], - [-12.737577, 8.765057], - [-12.736262, 8.766944], - [-12.733321, 8.768309], - [-12.730675, 8.76867], - [-12.728363, 8.768681], - [-12.726593, 8.769088], - [-12.725915, 8.769926], - [-12.726399, 8.771789], - [-12.727335, 8.773912], - [-12.727236, 8.774698], - [-12.726195, 8.776026], - [-12.725518, 8.776087], - [-12.725096, 8.775583], - [-12.724631, 8.773729], - [-12.72429, 8.773547], - [-12.723647, 8.773626], - [-12.723069, 8.774015], - [-12.722814, 8.774432], - [-12.722823, 8.774917], - [-12.72331, 8.775525], - [-12.723373, 8.775869], - [-12.722567, 8.777253], - [-12.721682, 8.77761], - [-12.719239, 8.777313], - [-12.719085, 8.777707], - [-12.719314, 8.779154], - [-12.719487, 8.779695], - [-12.719606, 8.779868], - [-12.726356, 8.782118], - [-12.726357, 8.78212], - [-12.724876, 8.782487], - [-12.724002, 8.782926], - [-12.723616, 8.783349], - [-12.723327, 8.783939], - [-12.722233, 8.785177], - [-12.720269, 8.78583], - [-12.719348, 8.786362], - [-12.717839, 8.786939], - [-12.716155, 8.788259], - [-12.714133, 8.788617], - [-12.714583, 8.790416], - [-12.717916, 8.793749], - [-12.719583, 8.79375], - [-12.725416, 8.803749], - [-12.726249, 8.804582], - [-12.72625, 8.805416], - [-12.730416, 8.806249], - [-12.732082, 8.806249], - [-12.736249, 8.802916], - [-12.737034, 8.800563], - [-12.740496, 8.806558], - [-12.740529, 8.806559], - [-12.740417, 8.807916], - [-12.750416, 8.807917], - [-12.754153, 8.808539], - [-12.754202, 8.80847], - [-12.754518, 8.808871], - [-12.75466, 8.809062], - [-12.759583, 8.80625], - [-12.762916, 8.807917], - [-12.760417, 8.816249], - [-12.770283, 8.818716], - [-12.770165, 8.818963], - [-12.773749, 8.825416], - [-12.77375, 8.827916], - [-12.777995, 8.826703], - [-12.779014, 8.825416], - [-12.778937, 8.82478], - [-12.779606, 8.823896], - [-12.780039, 8.823742], - [-12.781242, 8.823728], - [-12.78362, 8.824477], - [-12.785504, 8.824413], - [-12.785504, 8.824414], - [-12.784173, 8.825203], - [-12.783556, 8.825293], - [-12.783022, 8.825206], - [-12.780417, 8.830416], - [-12.780417, 8.831249], - [-12.795559, 8.836549], - [-12.7973, 8.835099], - [-12.798941, 8.832815], - [-12.79726, 8.82949], - [-12.806249, 8.821249], - [-12.805609, 8.817404], - [-12.805679, 8.8174], - [-12.806971, 8.816483], - [-12.807497, 8.816107], - [-12.808189, 8.814902], - [-12.809026, 8.814435], - [-12.810718, 8.814451], - [-12.811239, 8.814149], - [-12.811918, 8.813894], - [-12.812246, 8.813463], - [-12.812773, 8.811234], - [-12.813103, 8.810684], - [-12.811855, 8.808985], - [-12.810067, 8.807943], - [-12.812082, 8.804583], - [-12.812916, 8.803749], - [-12.810417, 8.797917], - [-12.811249, 8.795417], - [-12.808749, 8.792917], - [-12.80625, 8.792082], - [-12.807654, 8.787171], - [-12.811736, 8.789443], - [-12.812916, 8.787083], - [-12.812916, 8.78625], - [-12.811249, 8.78375], - [-12.809583, 8.782916], - [-12.80875, 8.782082], - [-12.811519, 8.779867], - [-12.811986, 8.78045], - [-12.811929, 8.779245], - [-12.811583, 8.778594], - [-12.811807, 8.778057], - [-12.812117, 8.777889], - [-12.8124, 8.777211], - [-12.813845, 8.775476] - ] - ], - "type": "Polygon" - }, - "id": 149, - "properties": { - "cc:admin:id": ["80"], - "cc:oBld:total": 6248, - "cc:pop:fifteen-to-twenty-four": 7366.715195080505, - "cc:pop:grid3-total": 35867.41560481504, - "cc:pop:kontur-total": 40089.59369781611, - "cc:pop:men": 18508.414430565932, - "cc:pop:sixty-plus": 2437.6474008529544, - "cc:pop:total": 39741.116547163125, - "cc:pop:under-five": 6347.152794967616, - "cc:pop:women": 21232.70211659723, - "cc:pop:women-fiften-to-forty-nine": 10301.8257377357, - "cc:pop:wp-total": 32154.57749476788, - "cc:pop:wp-total-UN": 37275.302639521076, - "cc:id": "149", - "cc:Name": "Govt. Hospital", - "cc:site": [-12.785, 8.7657], - "user:parentName": "Maforki", - "user:code": "OU_254955", - "user:orgUnitId": "ZvX8lXd1tYs", - "user:level": "4", - "user:parentId": "JdqfYTIFZXN" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.492246, 8.177083], - [-12.4921, 8.1707], - [-12.4915, 8.1657], - [-12.489, 8.1595], - [-12.4883, 8.1555], - [-12.488, 8.1473], - [-12.4874, 8.1429], - [-12.485199, 8.137499], - [-12.484599, 8.134999], - [-12.484, 8.1297], - [-12.4832, 8.1271], - [-12.481199, 8.123999], - [-12.479299, 8.121899], - [-12.4725, 8.1152], - [-12.4701, 8.1123], - [-12.467099, 8.106999], - [-12.462499, 8.101199], - [-12.4586, 8.0937], - [-12.457899, 8.091599], - [-12.457399, 8.088299], - [-12.457299, 8.084399], - [-12.457206, 8.068815], - [-12.44875, 8.069584], - [-12.449582, 8.072083], - [-12.450416, 8.07375], - [-12.44875, 8.077916], - [-12.444583, 8.080417], - [-12.442916, 8.08375], - [-12.434583, 8.087916], - [-12.432082, 8.087916], - [-12.429583, 8.085417], - [-12.429582, 8.083976], - [-12.425925, 8.083976], - [-12.422019, 8.090741], - [-12.425924, 8.097507], - [-12.422018, 8.104272], - [-12.42129, 8.104272], - [-12.421249, 8.103749], - [-12.417082, 8.100417], - [-12.411274, 8.100417], - [-12.411766, 8.101152], - [-12.412172, 8.101353], - [-12.412322, 8.101609], - [-12.411812, 8.102761], - [-12.411861, 8.103247], - [-12.412728, 8.10433], - [-12.41349, 8.104675], - [-12.414237, 8.105381], - [-12.414501, 8.10599], - [-12.41433, 8.10755], - [-12.414487, 8.108502], - [-12.414025, 8.109279], - [-12.413964, 8.10989], - [-12.413465, 8.110775], - [-12.413675, 8.111394], - [-12.413586, 8.112394], - [-12.411642, 8.11403], - [-12.410899, 8.11479], - [-12.410312, 8.115906], - [-12.410031, 8.115912], - [-12.409827, 8.115914], - [-12.409979, 8.115519], - [-12.41099, 8.113739], - [-12.411789, 8.113295], - [-12.412953, 8.112324], - [-12.413212, 8.111693], - [-12.413199, 8.110505], - [-12.413855, 8.108636], - [-12.41381, 8.107917], - [-12.414036, 8.106309], - [-12.413643, 8.105294], - [-12.412584, 8.10456], - [-12.411539, 8.103148], - [-12.411516, 8.102471], - [-12.41194, 8.101698], - [-12.411266, 8.100797], - [-12.410773, 8.100417], - [-12.407083, 8.100417], - [-12.40125, 8.104584], - [-12.400417, 8.116249], - [-12.404465, 8.120299], - [-12.403539, 8.121592], - [-12.406708, 8.127083], - [-12.400417, 8.127084], - [-12.397187, 8.129666], - [-12.39732, 8.129741], - [-12.399238, 8.130761], - [-12.397083, 8.132917], - [-12.397757, 8.138318], - [-12.397425, 8.138526], - [-12.396581, 8.140366], - [-12.396447, 8.141411], - [-12.396685, 8.141851], - [-12.397622, 8.14284], - [-12.397622, 8.142841], - [-12.38625, 8.142084], - [-12.38625, 8.150416], - [-12.389583, 8.154583], - [-12.391124, 8.155096], - [-12.39252, 8.153793], - [-12.39277, 8.15343], - [-12.392804, 8.153026], - [-12.393124, 8.152672], - [-12.39315, 8.151623], - [-12.394513, 8.15041], - [-12.395446, 8.149993], - [-12.396108, 8.149405], - [-12.396552, 8.148171], - [-12.397163, 8.147057], - [-12.397427, 8.146901], - [-12.397681, 8.147171], - [-12.397627, 8.147243], - [-12.396558, 8.14892], - [-12.396346, 8.14969], - [-12.395752, 8.150102], - [-12.39543, 8.150612], - [-12.394694, 8.150707], - [-12.393861, 8.151589], - [-12.393698, 8.152007], - [-12.393687, 8.152988], - [-12.394465, 8.15384], - [-12.394785, 8.153737], - [-12.395009, 8.153881], - [-12.395308, 8.154529], - [-12.395308, 8.155084], - [-12.394858, 8.155504], - [-12.394425, 8.156477], - [-12.393546, 8.157682], - [-12.393023, 8.158232], - [-12.392377, 8.158535], - [-12.390962, 8.1602], - [-12.389413, 8.161402], - [-12.388314, 8.162692], - [-12.387942, 8.162934], - [-12.387668, 8.162926], - [-12.387405, 8.163184], - [-12.386782, 8.165266], - [-12.384475, 8.166771], - [-12.384223, 8.166835], - [-12.384583, 8.167916], - [-12.387917, 8.169584], - [-12.390416, 8.173749], - [-12.390417, 8.176249], - [-12.395416, 8.182083], - [-12.395417, 8.184583], - [-12.399583, 8.186249], - [-12.401249, 8.186249], - [-12.405417, 8.184584], - [-12.409282, 8.187675], - [-12.409112, 8.188215], - [-12.411249, 8.188749], - [-12.412083, 8.18875], - [-12.416249, 8.195416], - [-12.417083, 8.198749], - [-12.417916, 8.199584], - [-12.417917, 8.206249], - [-12.422916, 8.20625], - [-12.426249, 8.209584], - [-12.42375, 8.216249], - [-12.42125, 8.222083], - [-12.430416, 8.223749], - [-12.433749, 8.224584], - [-12.432083, 8.231249], - [-12.432917, 8.23125], - [-12.437082, 8.235417], - [-12.437083, 8.239584], - [-12.439189, 8.247305], - [-12.4399, 8.246899], - [-12.4483, 8.243099], - [-12.4508, 8.242399], - [-12.458299, 8.241499], - [-12.466299, 8.2379], - [-12.4686, 8.236299], - [-12.471199, 8.2337], - [-12.472899, 8.2315], - [-12.4752, 8.226899], - [-12.4776, 8.223899], - [-12.482199, 8.2189], - [-12.484299, 8.2159], - [-12.487899, 8.2083], - [-12.4885, 8.205599], - [-12.488799, 8.1988], - [-12.489199, 8.195], - [-12.4916, 8.188899], - [-12.4922, 8.184199], - [-12.492299, 8.1794], - [-12.492246, 8.177083] - ] - ], - "type": "Polygon" - }, - "id": 150, - "properties": { - "cc:admin:id": ["45"], - "cc:oBld:total": 4987, - "cc:pop:fifteen-to-twenty-four": 3310.579101011587, - "cc:pop:grid3-total": 17797.927677171672, - "cc:pop:kontur-total": 18557.060644095, - "cc:pop:men": 8754.875192843385, - "cc:pop:sixty-plus": 1325.5639967538516, - "cc:pop:total": 18512.57701886977, - "cc:pop:under-five": 3055.370106408745, - "cc:pop:women": 9757.701826026403, - "cc:pop:women-fiften-to-forty-nine": 4568.2552545485305, - "cc:pop:wp-total": 13662.670301616592, - "cc:pop:wp-total-UN": 15835.25824934419, - "cc:id": "150", - "cc:Name": "Govt. Hospital Moyamba", - "cc:site": [-12.4343, 8.1597], - "user:parentName": "Kaiyamba", - "user:code": "OU_247056", - "user:orgUnitId": "U8uqyDAu5bH", - "user:level": "4", - "user:parentId": "USQdmvrHh1Q" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.615416, 8.322917], - [-10.604583, 8.317916], - [-10.604582, 8.315417], - [-10.602548, 8.311347], - [-10.602534, 8.310234], - [-10.602416, 8.309872], - [-10.602299, 8.30931], - [-10.602475, 8.307904], - [-10.602813, 8.306815], - [-10.602837, 8.306779], - [-10.60125, 8.30625], - [-10.600416, 8.307084], - [-10.589583, 8.307083], - [-10.587916, 8.302084], - [-10.58375, 8.29625], - [-10.582916, 8.296249], - [-10.581249, 8.29125], - [-10.580416, 8.29125], - [-10.57625, 8.292083], - [-10.575422, 8.292911], - [-10.575204, 8.29267], - [-10.575147, 8.292492], - [-10.575086, 8.290915], - [-10.574127, 8.289432], - [-10.573765, 8.288502], - [-10.573391, 8.287668], - [-10.573276, 8.287091], - [-10.573667, 8.286005], - [-10.573714, 8.285407], - [-10.57335, 8.284268], - [-10.573404, 8.283195], - [-10.573427, 8.283104], - [-10.573642, 8.282455], - [-10.574128, 8.281835], - [-10.572763, 8.281127], - [-10.571923, 8.280764], - [-10.57136, 8.280288], - [-10.571067, 8.279897], - [-10.57095, 8.278966], - [-10.570876, 8.278526], - [-10.570772, 8.278516], - [-10.570575, 8.277882], - [-10.57054, 8.277881], - [-10.569662, 8.277794], - [-10.569649, 8.277646], - [-10.569867, 8.277197], - [-10.570452, 8.276481], - [-10.570545, 8.276378], - [-10.570569, 8.275687], - [-10.570276, 8.275632], - [-10.5703, 8.275259], - [-10.569791, 8.275065], - [-10.569452, 8.274529], - [-10.569057, 8.274306], - [-10.569091, 8.274009], - [-10.568833, 8.273686], - [-10.568831, 8.273567], - [-10.569281, 8.273083], - [-10.569318, 8.27251], - [-10.569343, 8.271945], - [-10.569344, 8.271851], - [-10.569403, 8.271484], - [-10.569247, 8.271376], - [-10.569222, 8.271334], - [-10.569278, 8.271236], - [-10.5691, 8.270726], - [-10.569248, 8.270153], - [-10.5682, 8.269402], - [-10.568052, 8.269412], - [-10.566626, 8.270164], - [-10.566607, 8.270426], - [-10.566075, 8.27131], - [-10.56603, 8.271391], - [-10.565676, 8.271693], - [-10.565079, 8.271685], - [-10.565101, 8.271856], - [-10.564528, 8.27198], - [-10.564322, 8.272225], - [-10.564095, 8.271721], - [-10.563956, 8.271424], - [-10.563904, 8.271284], - [-10.563605, 8.270502], - [-10.563494, 8.270154], - [-10.563409, 8.269884], - [-10.562562, 8.270094], - [-10.562433, 8.269738], - [-10.562252, 8.269251], - [-10.56218, 8.268536], - [-10.562282, 8.2672], - [-10.561941, 8.266577], - [-10.561409, 8.266203], - [-10.560793, 8.266024], - [-10.559745, 8.265245], - [-10.558849, 8.263675], - [-10.558649, 8.263574], - [-10.557707, 8.263243], - [-10.556865, 8.263222], - [-10.554954, 8.263593], - [-10.553534, 8.264121], - [-10.551537, 8.264237], - [-10.549773, 8.264875], - [-10.548334, 8.264684], - [-10.547245, 8.263842], - [-10.546344, 8.263231], - [-10.545729, 8.262932], - [-10.545349, 8.262722], - [-10.545271, 8.262669], - [-10.544965, 8.262453], - [-10.542855, 8.260999], - [-10.542477, 8.260535], - [-10.542378, 8.25921], - [-10.542264, 8.258847], - [-10.541866, 8.25845], - [-10.540551, 8.257659], - [-10.539495, 8.256793], - [-10.538128, 8.256565], - [-10.535864, 8.255229], - [-10.534646, 8.255082], - [-10.533829, 8.255092], - [-10.532751, 8.255547], - [-10.531928, 8.255673], - [-10.531249, 8.260416], - [-10.52625, 8.259584], - [-10.522083, 8.264584], - [-10.522917, 8.269584], - [-10.525452, 8.272751], - [-10.526, 8.272603], - [-10.527081, 8.271765], - [-10.527082, 8.271765], - [-10.527083, 8.277916], - [-10.52375, 8.281249], - [-10.522083, 8.28375], - [-10.522082, 8.287917], - [-10.51625, 8.29125], - [-10.516705, 8.293986], - [-10.514825, 8.294779], - [-10.513825, 8.294721], - [-10.512984, 8.294869], - [-10.512232, 8.294685], - [-10.511395, 8.2947], - [-10.510138, 8.295846], - [-10.508798, 8.296222], - [-10.507995, 8.296258], - [-10.507203, 8.29685], - [-10.509814, 8.301375], - [-10.50625, 8.304584], - [-10.506249, 8.306249], - [-10.494583, 8.309584], - [-10.49375, 8.317916], - [-10.492917, 8.317917], - [-10.49125, 8.319584], - [-10.490416, 8.323749], - [-10.487083, 8.32625], - [-10.487082, 8.327084], - [-10.480417, 8.329584], - [-10.480417, 8.331249], - [-10.481249, 8.332917], - [-10.479583, 8.33625], - [-10.479974, 8.337421], - [-10.480176, 8.337298], - [-10.480402, 8.33707], - [-10.480416, 8.337084], - [-10.479583, 8.341249], - [-10.47875, 8.34125], - [-10.477917, 8.344583], - [-10.483749, 8.349583], - [-10.483899, 8.349584], - [-10.483331, 8.350404], - [-10.482555, 8.350932], - [-10.481043, 8.353005], - [-10.481036, 8.353012], - [-10.484639, 8.358417], - [-10.479914, 8.362273], - [-10.478782, 8.362659], - [-10.47821, 8.363259], - [-10.477949, 8.363916], - [-10.478083, 8.364633], - [-10.478486, 8.365468], - [-10.479751, 8.366342], - [-10.480741, 8.369018], - [-10.480928, 8.369925], - [-10.4842, 8.367599], - [-10.4904, 8.3554], - [-10.512199, 8.336], - [-10.5212, 8.330999], - [-10.553499, 8.3077], - [-10.560899, 8.3052], - [-10.5676, 8.3073], - [-10.5796, 8.308], - [-10.5823, 8.3114], - [-10.5865, 8.325999], - [-10.5971, 8.332299], - [-10.612082, 8.333251], - [-10.612083, 8.329584], - [-10.615416, 8.322917] - ] - ], - "type": "Polygon" - }, - "id": 151, - "properties": { - "cc:admin:id": ["77"], - "cc:oBld:total": 4162, - "cc:pop:fifteen-to-twenty-four": 5118.653829516042, - "cc:pop:grid3-total": 15377.746582639911, - "cc:pop:kontur-total": 29569.454727650398, - "cc:pop:men": 12658.65359312793, - "cc:pop:sixty-plus": 1524.1887381852014, - "cc:pop:total": 26708.9454482366, - "cc:pop:under-five": 4176.781536281484, - "cc:pop:women": 14050.29185510868, - "cc:pop:women-fiften-to-forty-nine": 7022.971767834093, - "cc:pop:wp-total": 22076.549683978992, - "cc:pop:wp-total-UN": 25586.990544514636, - "cc:id": "151", - "cc:Name": "Govt. Medical Hospital", - "cc:site": [-10.5667, 8.2797], - "user:parentName": "Luawa", - "user:code": "OU_204901", - "user:orgUnitId": "xmZNDeO0qCR", - "user:level": "4", - "user:parentId": "cM2BKSrj9F9" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.186948, 8.471275], - [-13.18604, 8.470853], - [-13.185909, 8.471167], - [-13.185756, 8.471476], - [-13.185715, 8.471529], - [-13.185458, 8.47183], - [-13.18521, 8.472], - [-13.184941, 8.472249], - [-13.184254, 8.471881], - [-13.18275, 8.471289], - [-13.18222, 8.471113], - [-13.182589, 8.47041], - [-13.181497, 8.469782], - [-13.180842, 8.47045], - [-13.180678, 8.470689], - [-13.180349, 8.470424], - [-13.179909, 8.469983], - [-13.179286, 8.469365], - [-13.17896, 8.469052], - [-13.17873, 8.468839], - [-13.178471, 8.468582], - [-13.178143, 8.468237], - [-13.177909, 8.467781], - [-13.177144, 8.467004], - [-13.1769, 8.466746], - [-13.176648, 8.46688], - [-13.176006, 8.466422], - [-13.17539, 8.466033], - [-13.175363, 8.466004], - [-13.174827, 8.466445], - [-13.174822, 8.466452], - [-13.174553, 8.467219], - [-13.174869, 8.467506], - [-13.175206, 8.468382], - [-13.173661, 8.469283], - [-13.186652, 8.48292], - [-13.184771, 8.474829], - [-13.186948, 8.471275] - ] - ], - "type": "Polygon" - }, - "id": 152, - "properties": { - "cc:admin:id": ["112"], - "cc:oBld:total": 1254, - "cc:pop:fifteen-to-twenty-four": 2822.9642084760753, - "cc:pop:grid3-total": 15944.872002392704, - "cc:pop:kontur-total": 0, - "cc:pop:men": 6047.438149615274, - "cc:pop:sixty-plus": 960.3298585833951, - "cc:pop:total": 12329.572203560821, - "cc:pop:under-five": 1421.140317114768, - "cc:pop:women": 6282.134053945549, - "cc:pop:women-fiften-to-forty-nine": 3362.2704030516607, - "cc:pop:wp-total": 13578.834527999566, - "cc:pop:wp-total-UN": 15744.745444338665, - "cc:id": "152", - "cc:Name": "Grassfield CHC", - "cc:site": [-13.1842, 8.4746], - "user:parentName": "Freetown", - "user:code": "OU_278336", - "user:orgUnitId": "lL2LBkhlsmV", - "user:level": "4", - "user:parentId": "C9uduqDZr9d" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.258886, 8.196991], - [-11.259599, 8.1928], - [-11.259299, 8.188699], - [-11.258499, 8.186199], - [-11.2565, 8.1826], - [-11.255099, 8.179499], - [-11.253099, 8.175899], - [-11.252199, 8.172599], - [-11.251599, 8.167199], - [-11.250899, 8.164699], - [-11.2489, 8.1602], - [-11.2482, 8.1568], - [-11.2477, 8.1458], - [-11.247, 8.1423], - [-11.2411, 8.1305], - [-11.2403, 8.1268], - [-11.2401, 8.121899], - [-11.240199, 8.116], - [-11.240699, 8.1122], - [-11.2394, 8.106], - [-11.2368, 8.1007], - [-11.235499, 8.097599], - [-11.233499, 8.093999], - [-11.2326, 8.0906], - [-11.2321, 8.0853], - [-11.231499, 8.083199], - [-11.229899, 8.080499], - [-11.2237, 8.0738], - [-11.2216, 8.0709], - [-11.2197, 8.0671], - [-11.2176, 8.0635], - [-11.216299, 8.060399], - [-11.213999, 8.055999], - [-11.2122, 8.0493], - [-11.210499, 8.045699], - [-11.2101, 8.0433], - [-11.2105, 8.040899], - [-11.2124, 8.036599], - [-11.212899, 8.0331], - [-11.212899, 8.030299], - [-11.212199, 8.026899], - [-11.2088, 8.0195], - [-11.2061, 8.026799], - [-11.203999, 8.0312], - [-11.200099, 8.0358], - [-11.1948, 8.041199], - [-11.1927, 8.042999], - [-11.1903, 8.044399], - [-11.187499, 8.0451], - [-11.1846, 8.045299], - [-11.163799, 8.0451], - [-11.160899, 8.0452], - [-11.1576, 8.045799], - [-11.155699, 8.0466], - [-11.1505, 8.049999], - [-11.1483, 8.052999], - [-11.147646, 8.053609], - [-11.149654, 8.057087], - [-11.156761, 8.057087], - [-11.157083, 8.052917], - [-11.161249, 8.049584], - [-11.169582, 8.049584], - [-11.171249, 8.063749], - [-11.17125, 8.065416], - [-11.177917, 8.06625], - [-11.178749, 8.072916], - [-11.172083, 8.07625], - [-11.173749, 8.07875], - [-11.172917, 8.084583], - [-11.172917, 8.085416], - [-11.178749, 8.089584], - [-11.175417, 8.095416], - [-11.180416, 8.097083], - [-11.187083, 8.094584], - [-11.192082, 8.098749], - [-11.192916, 8.09875], - [-11.19375, 8.102083], - [-11.196249, 8.10375], - [-11.197083, 8.112083], - [-11.197687, 8.112385], - [-11.197667, 8.112433], - [-11.201249, 8.114583], - [-11.20125, 8.116249], - [-11.195417, 8.12125], - [-11.194583, 8.125416], - [-11.200416, 8.13125], - [-11.200417, 8.136249], - [-11.202082, 8.137917], - [-11.202917, 8.146249], - [-11.204583, 8.147916], - [-11.208749, 8.149584], - [-11.20875, 8.152916], - [-11.210416, 8.155417], - [-11.210417, 8.161957], - [-11.211397, 8.162015], - [-11.212081, 8.161508], - [-11.212471, 8.161464], - [-11.212721, 8.161699], - [-11.213115, 8.162616], - [-11.214372, 8.163184], - [-11.215566, 8.163285], - [-11.216041, 8.163075], - [-11.216637, 8.16232], - [-11.217405, 8.161902], - [-11.219906, 8.161573], - [-11.224582, 8.166249], - [-11.217917, 8.172917], - [-11.21875, 8.180416], - [-11.222082, 8.184583], - [-11.232916, 8.185416], - [-11.237916, 8.184583], - [-11.238756, 8.183912], - [-11.2424, 8.190225], - [-11.238495, 8.196991], - [-11.242023, 8.203104], - [-11.241249, 8.20375], - [-11.240417, 8.215416], - [-11.24375, 8.218749], - [-11.256521, 8.217998], - [-11.258899, 8.212499], - [-11.258799, 8.2093], - [-11.2571, 8.204999], - [-11.257, 8.2024], - [-11.258799, 8.1975], - [-11.258886, 8.196991] - ] - ], - "type": "Polygon" - }, - "id": 153, - "properties": { - "cc:admin:id": ["22"], - "cc:oBld:total": 880, - "cc:pop:fifteen-to-twenty-four": 1301.9049816971974, - "cc:pop:grid3-total": 6941.68292676989, - "cc:pop:kontur-total": 6923.637129054939, - "cc:pop:men": 3283.5194397871282, - "cc:pop:sixty-plus": 436.0886534443783, - "cc:pop:total": 6637.562022988133, - "cc:pop:under-five": 1103.5442087238248, - "cc:pop:women": 3354.0425832010083, - "cc:pop:women-fiften-to-forty-nine": 1628.053815915675, - "cc:pop:wp-total": 4916.171527034552, - "cc:pop:wp-total-UN": 5708.271112481787, - "cc:id": "153", - "cc:Name": "Guala MCHP", - "cc:site": [-11.2368, 8.1251], - "user:parentName": "Dodo", - "user:code": "OU_222684", - "user:orgUnitId": "ARAZtL7Bdpy", - "user:level": "4", - "user:parentId": "QlCIp2S9NHs" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.266499, 8.394613], - [-13.263471, 8.382628], - [-13.251065, 8.368101], - [-13.247917, 8.371249], - [-13.245417, 8.37125], - [-13.242917, 8.36875], - [-13.242916, 8.36755], - [-13.235776, 8.36755], - [-13.234014, 8.370602], - [-13.233714, 8.370957], - [-13.234199, 8.371337], - [-13.234734, 8.370531], - [-13.235735, 8.369522], - [-13.236346, 8.369456], - [-13.236786, 8.369382], - [-13.236931, 8.369736], - [-13.236766, 8.370118], - [-13.237554, 8.371212], - [-13.235471, 8.372425], - [-13.235403, 8.372486], - [-13.235335, 8.372538], - [-13.234236, 8.371579], - [-13.230479, 8.378085], - [-13.225581, 8.378086], - [-13.222916, 8.380416], - [-13.22125, 8.380417], - [-13.221074, 8.380241], - [-13.217484, 8.386456], - [-13.209672, 8.386457], - [-13.205766, 8.393223], - [-13.209671, 8.399989], - [-13.205766, 8.406754], - [-13.206437, 8.407916], - [-13.21125, 8.407917], - [-13.215416, 8.411249], - [-13.215984, 8.413519], - [-13.217485, 8.41352], - [-13.221391, 8.420285], - [-13.227221, 8.420285], - [-13.252275, 8.401915], - [-13.262862, 8.397495], - [-13.262498, 8.396949], - [-13.261931, 8.396135], - [-13.261768, 8.395884], - [-13.261699, 8.395918], - [-13.261605, 8.395758], - [-13.261289, 8.395989], - [-13.260747, 8.395365], - [-13.260494, 8.394916], - [-13.260224, 8.394224], - [-13.260479, 8.394039], - [-13.260329, 8.393532], - [-13.260529, 8.393853], - [-13.260592, 8.393823], - [-13.261084, 8.394704], - [-13.261574, 8.39435], - [-13.26236, 8.393899], - [-13.263041, 8.394061], - [-13.263257, 8.394278], - [-13.263918, 8.394558], - [-13.264257, 8.394422], - [-13.264535, 8.394694], - [-13.264942, 8.394708], - [-13.264946, 8.394614], - [-13.266499, 8.394613] - ] - ], - "type": "Polygon" - }, - "id": 154, - "properties": { - "cc:admin:id": ["112"], - "cc:oBld:total": 1841, - "cc:pop:fifteen-to-twenty-four": 4798.286733472151, - "cc:pop:grid3-total": 12742.427815354513, - "cc:pop:kontur-total": 26276.861800955594, - "cc:pop:men": 10676.270821203418, - "cc:pop:sixty-plus": 1699.0173673702561, - "cc:pop:total": 21190.6183168079, - "cc:pop:under-five": 2475.655004871534, - "cc:pop:women": 10514.347495604476, - "cc:pop:women-fiften-to-forty-nine": 5572.927540101567, - "cc:pop:wp-total": 18188.870015356333, - "cc:pop:wp-total-UN": 21092.818276152768, - "cc:id": "154", - "cc:Name": "Hamilton MCHP", - "cc:site": [-13.26, 8.3825], - "user:parentName": "Rural Western Area", - "user:code": "OU_278386", - "user:orgUnitId": "oolcy5HBlMy", - "user:level": "4", - "user:parentId": "qtr8GGlm4gg" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.197953, 8.37969], - [-13.194046, 8.372925], - [-13.186235, 8.372924], - [-13.182329, 8.36616], - [-13.186234, 8.359394], - [-13.18358, 8.354797], - [-13.182082, 8.354583], - [-13.179475, 8.352628], - [-13.174515, 8.352627], - [-13.170609, 8.345862], - [-13.162796, 8.345861], - [-13.158891, 8.339095], - [-13.162796, 8.33233], - [-13.15889, 8.325565], - [-13.151078, 8.325564], - [-13.147171, 8.318799], - [-13.146926, 8.318799], - [-13.146249, 8.326249], - [-13.13625, 8.325416], - [-13.136249, 8.312084], - [-13.13125, 8.312084], - [-13.12875, 8.31375], - [-13.12875, 8.317916], - [-13.135416, 8.325416], - [-13.134582, 8.326249], - [-13.13125, 8.32625], - [-13.130417, 8.329583], - [-13.127917, 8.33125], - [-13.127916, 8.333749], - [-13.12625, 8.335417], - [-13.127916, 8.33875], - [-13.127916, 8.346249], - [-13.122916, 8.351249], - [-13.113212, 8.350557], - [-13.112016, 8.352628], - [-13.115729, 8.359061], - [-13.115727, 8.359061], - [-13.113749, 8.357084], - [-13.110184, 8.35637], - [-13.107183, 8.361567], - [-13.111089, 8.368332], - [-13.107183, 8.375098], - [-13.109336, 8.378827], - [-13.109608, 8.378569], - [-13.109778, 8.378754], - [-13.109918, 8.378901], - [-13.110089, 8.379109], - [-13.109168, 8.379691], - [-13.107486, 8.380599], - [-13.107097, 8.380834], - [-13.106813, 8.380599], - [-13.106755, 8.380668], - [-13.106795, 8.380704], - [-13.107341, 8.38124], - [-13.107879, 8.382222], - [-13.108295, 8.383489], - [-13.10861, 8.384018], - [-13.108805, 8.384123], - [-13.108628, 8.384243], - [-13.108531, 8.386081], - [-13.108543, 8.386755], - [-13.108591, 8.38703], - [-13.109188, 8.387922], - [-13.107475, 8.389036], - [-13.10779, 8.389714], - [-13.107855, 8.390012], - [-13.108241, 8.390357], - [-13.108822, 8.390808], - [-13.108908, 8.391131], - [-13.109061, 8.391479], - [-13.109285, 8.391796], - [-13.11038, 8.392662], - [-13.110896, 8.392006], - [-13.111052, 8.391223], - [-13.111266, 8.39089], - [-13.111787, 8.392516], - [-13.111881, 8.392725], - [-13.112396, 8.392189], - [-13.113302, 8.390754], - [-13.113584, 8.390282], - [-13.114591, 8.38905], - [-13.114528, 8.388867], - [-13.114314, 8.388473], - [-13.114313, 8.38846], - [-13.115156, 8.38992], - [-13.115143, 8.389931], - [-13.114623, 8.390064], - [-13.114677, 8.390312], - [-13.115037, 8.390616], - [-13.115097, 8.391269], - [-13.113154, 8.39302], - [-13.112895, 8.39424], - [-13.112204, 8.394533], - [-13.112376, 8.394945], - [-13.112885, 8.395264], - [-13.113587, 8.395036], - [-13.113589, 8.395038], - [-13.113192, 8.395726], - [-13.11148, 8.396645], - [-13.111235, 8.397126], - [-13.112938, 8.400692], - [-13.106542, 8.406243], - [-13.110117, 8.412922], - [-13.125686, 8.413769], - [-13.128306, 8.409966], - [-13.127099, 8.415697], - [-13.13152, 8.418473], - [-13.132367, 8.412358], - [-13.138441, 8.411821], - [-13.138836, 8.41145], - [-13.139417, 8.410707], - [-13.139551, 8.409731], - [-13.139474, 8.408862], - [-13.1379, 8.40755], - [-13.137385, 8.407135], - [-13.13685, 8.40683], - [-13.136329, 8.406176], - [-13.13624, 8.405391], - [-13.136682, 8.404678], - [-13.137432, 8.404354], - [-13.137882, 8.404161], - [-13.138162, 8.404031], - [-13.138412, 8.403832], - [-13.138787, 8.403425], - [-13.139047, 8.403098], - [-13.139193, 8.402842], - [-13.139557, 8.402073], - [-13.140563, 8.399603], - [-13.140847, 8.399337], - [-13.142894, 8.398507], - [-13.143322, 8.398531], - [-13.14386, 8.399038], - [-13.144171, 8.399001], - [-13.14396, 8.400105], - [-13.144442, 8.400137], - [-13.144031, 8.4005], - [-13.143774, 8.401492], - [-13.144285, 8.401645], - [-13.144841, 8.400728], - [-13.146219, 8.399979], - [-13.14689, 8.399417], - [-13.148718, 8.398696], - [-13.149672, 8.398745], - [-13.150071, 8.398873], - [-13.151177, 8.399199], - [-13.151905, 8.399228], - [-13.152103, 8.399214], - [-13.152105, 8.399214], - [-13.152929, 8.399151], - [-13.153714, 8.398799], - [-13.154147, 8.398283], - [-13.154571, 8.396993], - [-13.155706, 8.39468], - [-13.155889, 8.393896], - [-13.156156, 8.394211], - [-13.156817, 8.395048], - [-13.157072, 8.394739], - [-13.157242, 8.394573], - [-13.157426, 8.394428], - [-13.158393, 8.394802], - [-13.158202, 8.395285], - [-13.159693, 8.396446], - [-13.161483, 8.397827], - [-13.162388, 8.398522], - [-13.163674, 8.397373], - [-13.164003, 8.397917], - [-13.164275, 8.398071], - [-13.167133, 8.396252], - [-13.167264, 8.396343], - [-13.167394, 8.396382], - [-13.167693, 8.396505], - [-13.169472, 8.393428], - [-13.173347, 8.393427], - [-13.176249, 8.393749], - [-13.179582, 8.389584], - [-13.184059, 8.390222], - [-13.186235, 8.386457], - [-13.194046, 8.386456], - [-13.197953, 8.37969] - ] - ], - "type": "Polygon" - }, - "id": 155, - "properties": { - "cc:admin:id": ["112"], - "cc:oBld:total": 14948, - "cc:pop:fifteen-to-twenty-four": 15203.597710351876, - "cc:pop:grid3-total": 65000.05023819555, - "cc:pop:kontur-total": 73466.5631069789, - "cc:pop:men": 30973.445832459027, - "cc:pop:sixty-plus": 5061.01336737129, - "cc:pop:total": 64490.54535515796, - "cc:pop:under-five": 7255.39558836238, - "cc:pop:women": 33517.0995226989, - "cc:pop:women-fiften-to-forty-nine": 17944.446413233338, - "cc:pop:wp-total": 48186.87884406739, - "cc:pop:wp-total-UN": 55898.977356734846, - "cc:id": "155", - "cc:Name": "Hastings Health Centre", - "cc:site": [-13.1363, 8.3836], - "user:parentName": "Rural Western Area", - "user:code": "OU_278377", - "user:orgUnitId": "zQpYVEyAM2t", - "user:level": "4", - "user:parentId": "qtr8GGlm4gg" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.696899, 9.557399], - [-11.692699, 9.555299], - [-11.690199, 9.553099], - [-11.687699, 9.550199], - [-11.683699, 9.542499], - [-11.682899, 9.539299], - [-11.6823, 9.5335], - [-11.681299, 9.530399], - [-11.678299, 9.526599], - [-11.6675, 9.5161], - [-11.6637, 9.5123], - [-11.661099, 9.509299], - [-11.659, 9.505], - [-11.6574, 9.5022], - [-11.6565, 9.5], - [-11.655099, 9.494099], - [-11.6508, 9.4857], - [-11.6472, 9.481299], - [-11.6462, 9.4786], - [-11.647799, 9.4726], - [-11.6445, 9.471], - [-11.640999, 9.470299], - [-11.6352, 9.468], - [-11.6312, 9.4674], - [-11.6248, 9.467599], - [-11.6225, 9.468099], - [-11.620599, 9.4689], - [-11.6156, 9.4721], - [-11.6128, 9.476199], - [-11.6099, 9.479599], - [-11.606, 9.483399], - [-11.603799, 9.4851], - [-11.5964, 9.488799], - [-11.5942, 9.489499], - [-11.590899, 9.4899], - [-11.583099, 9.489899], - [-11.578799, 9.489399], - [-11.573, 9.4871], - [-11.5704, 9.4865], - [-11.5642, 9.4858], - [-11.562099, 9.485199], - [-11.5548, 9.4818], - [-11.550499, 9.479399], - [-11.547299, 9.477999], - [-11.543699, 9.475299], - [-11.5376, 9.4698], - [-11.535399, 9.468199], - [-11.5322, 9.4668], - [-11.529399, 9.465299], - [-11.527, 9.4644], - [-11.521799, 9.463299], - [-11.5134, 9.4594], - [-11.509099, 9.457099], - [-11.503599, 9.454999], - [-11.5002, 9.454], - [-11.4967, 9.457999], - [-11.4952, 9.460499], - [-11.494499, 9.4632], - [-11.4944, 9.466068], - [-11.4944, 9.4661], - [-11.4947, 9.4759], - [-11.4955, 9.4784], - [-11.4975, 9.4828], - [-11.4982, 9.4854], - [-11.499099, 9.492499], - [-11.5014, 9.4977], - [-11.5021, 9.5003], - [-11.502699, 9.505599], - [-11.503299, 9.508099], - [-11.5053, 9.5126], - [-11.5061, 9.516], - [-11.506499, 9.523299], - [-11.507199, 9.526799], - [-11.509499, 9.532099], - [-11.5107, 9.5372], - [-11.514699, 9.545499], - [-11.5172, 9.5488], - [-11.520965, 9.551986], - [-11.523552, 9.548651], - [-11.524074, 9.547249], - [-11.524589, 9.546666], - [-11.526138, 9.545705], - [-11.526744, 9.545598], - [-11.52748, 9.545043], - [-11.528804, 9.544462], - [-11.52896, 9.544324], - [-11.529554, 9.544676], - [-11.529672, 9.5447], - [-11.53002, 9.544671], - [-11.530066, 9.544663], - [-11.53116, 9.544279], - [-11.531466, 9.544158], - [-11.532184, 9.544127], - [-11.532471, 9.544138], - [-11.533546, 9.544785], - [-11.53375, 9.544583], - [-11.538749, 9.545417], - [-11.539582, 9.54625], - [-11.539583, 9.547916], - [-11.547916, 9.550416], - [-11.545417, 9.554582], - [-11.54875, 9.557916], - [-11.549583, 9.557917], - [-11.554582, 9.559582], - [-11.557082, 9.557082], - [-11.557083, 9.554583], - [-11.557917, 9.554582], - [-11.563749, 9.553749], - [-11.563245, 9.552232], - [-11.56353, 9.552299], - [-11.565126, 9.552191], - [-11.566201, 9.552291], - [-11.566572, 9.553213], - [-11.566395, 9.553775], - [-11.573884, 9.553776], - [-11.575655, 9.556842], - [-11.575417, 9.557916], - [-11.575417, 9.558749], - [-11.576249, 9.562916], - [-11.577083, 9.565416], - [-11.577917, 9.566249], - [-11.582916, 9.565416], - [-11.588749, 9.56125], - [-11.59125, 9.566249], - [-11.592263, 9.566587], - [-11.592627, 9.566378], - [-11.594743, 9.565766], - [-11.594743, 9.565768], - [-11.594583, 9.565843], - [-11.594583, 9.56625], - [-11.599582, 9.568749], - [-11.605416, 9.560419], - [-11.605417, 9.577082], - [-11.612082, 9.575417], - [-11.612917, 9.583749], - [-11.615417, 9.585417], - [-11.617083, 9.589582], - [-11.622916, 9.592082], - [-11.623749, 9.592083], - [-11.625538, 9.593871], - [-11.6267, 9.593399], - [-11.630999, 9.5911], - [-11.6342, 9.589799], - [-11.638399, 9.5874], - [-11.6416, 9.585999], - [-11.6443, 9.584099], - [-11.6512, 9.577599], - [-11.653299, 9.5762], - [-11.6565, 9.574799], - [-11.660699, 9.5724], - [-11.6639, 9.571099], - [-11.668499, 9.5688], - [-11.674299, 9.5675], - [-11.676599, 9.5666], - [-11.6794, 9.564999], - [-11.6826, 9.563699], - [-11.6869, 9.561299], - [-11.692999, 9.5588], - [-11.696899, 9.557399] - ] - ], - "type": "Polygon" - }, - "id": 156, - "properties": { - "cc:admin:id": ["144"], - "cc:oBld:total": 26, - "cc:pop:fifteen-to-twenty-four": 1591.5408350549353, - "cc:pop:grid3-total": 7114.104351497794, - "cc:pop:kontur-total": 8772.42405939752, - "cc:pop:men": 4093.4253218305134, - "cc:pop:sixty-plus": 526.7427042897185, - "cc:pop:total": 8578.232701177954, - "cc:pop:under-five": 1384.8489672840917, - "cc:pop:women": 4484.807379347441, - "cc:pop:women-fiften-to-forty-nine": 2194.0375777149634, - "cc:pop:wp-total": 9251.137819676334, - "cc:pop:wp-total-UN": 10723.15119668631, - "cc:id": "156", - "cc:Name": "Heremakono MCHP", - "cc:site": [-11.5979, 9.5007], - "user:parentName": "Wara Wara Yagala", - "user:code": "OU_226260", - "user:orgUnitId": "UCwtaCrNUls", - "user:level": "4", - "user:parentId": "EZPwuUTeIIG" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.182658, 8.449386], - [-13.180978, 8.446478], - [-13.18027, 8.446332], - [-13.179878, 8.446419], - [-13.178677, 8.446923], - [-13.178089, 8.446844], - [-13.176456, 8.447571], - [-13.17452, 8.447598], - [-13.174301, 8.447577], - [-13.173262, 8.44749], - [-13.172655, 8.447463], - [-13.17198, 8.447765], - [-13.17127, 8.447941], - [-13.171336, 8.448508], - [-13.170381, 8.448808], - [-13.170464, 8.449246], - [-13.169949, 8.449425], - [-13.169815, 8.449], - [-13.169597, 8.44852], - [-13.168975, 8.448726], - [-13.16827, 8.44897], - [-13.168411, 8.449512], - [-13.167735, 8.449755], - [-13.167917, 8.450249], - [-13.167382, 8.450466], - [-13.167215, 8.450583], - [-13.167627, 8.451077], - [-13.168125, 8.450864], - [-13.168412, 8.451393], - [-13.168561, 8.451821], - [-13.168854, 8.452261], - [-13.168729, 8.452357], - [-13.169223, 8.452938], - [-13.169166, 8.452989], - [-13.168154, 8.451805], - [-13.167992, 8.451619], - [-13.16662, 8.452126], - [-13.166362, 8.451514], - [-13.166134, 8.450983], - [-13.166093, 8.450873], - [-13.16593, 8.450516], - [-13.165718, 8.44999], - [-13.165158, 8.450322], - [-13.164523, 8.450377], - [-13.163884, 8.450579], - [-13.163584, 8.450657], - [-13.166046, 8.454922], - [-13.167007, 8.455306], - [-13.167676, 8.455949], - [-13.167659, 8.456347], - [-13.167688, 8.456403], - [-13.170284, 8.456404], - [-13.170583, 8.456282], - [-13.170775, 8.45655], - [-13.17053, 8.456666], - [-13.170528, 8.457444], - [-13.17164, 8.456924], - [-13.171917, 8.457688], - [-13.172121, 8.45819], - [-13.172199, 8.458187], - [-13.172152, 8.458069], - [-13.171744, 8.456985], - [-13.171181, 8.455598], - [-13.172075, 8.455197], - [-13.172158, 8.455406], - [-13.172301, 8.455678], - [-13.172384, 8.455808], - [-13.172521, 8.456013], - [-13.174294, 8.455108], - [-13.174483, 8.455481], - [-13.175371, 8.454918], - [-13.175466, 8.454317], - [-13.174946, 8.454388], - [-13.174094, 8.454729], - [-13.173831, 8.4543], - [-13.174047, 8.453751], - [-13.174819, 8.452949], - [-13.175802, 8.452914], - [-13.176623, 8.453014], - [-13.178554, 8.453579], - [-13.17923, 8.453451], - [-13.180342, 8.452843], - [-13.18046, 8.452767], - [-13.180616, 8.452558], - [-13.180609, 8.451651], - [-13.180683, 8.451083], - [-13.181011, 8.450889], - [-13.181342, 8.449972], - [-13.182097, 8.449517], - [-13.182313, 8.449494], - [-13.182658, 8.449386] - ] - ], - "type": "Polygon" - }, - "id": 157, - "properties": { - "cc:admin:id": ["112"], - "cc:oBld:total": 2989, - "cc:pop:fifteen-to-twenty-four": 5820.195332037556, - "cc:pop:grid3-total": 26327.632991024475, - "cc:pop:kontur-total": 25076.329743122154, - "cc:pop:men": 12474.23510582032, - "cc:pop:sixty-plus": 1978.8307077937322, - "cc:pop:total": 25426.689662727887, - "cc:pop:under-five": 2939.213528860803, - "cc:pop:women": 12952.454556907569, - "cc:pop:women-fiften-to-forty-nine": 6927.657194569211, - "cc:pop:wp-total": 24729.503992454916, - "cc:pop:wp-total-UN": 28666.584662369085, - "cc:id": "157", - "cc:Name": "Holy Mary Clinic", - "cc:site": [-13.1691, 8.4512], - "user:parentName": "Freetown", - "user:code": "OU_278347", - "user:orgUnitId": "LV2b3vaLRl1", - "user:level": "4", - "user:parentId": "C9uduqDZr9d" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.116289, 9.320417], - [-12.108749, 9.320416], - [-12.106174, 9.318485], - [-12.106174, 9.318484], - [-12.106193, 9.318471], - [-12.103749, 9.315416], - [-12.102917, 9.309583], - [-12.112059, 9.306535], - [-12.110674, 9.304141], - [-12.108961, 9.301963], - [-12.108901, 9.300864], - [-12.108467, 9.299782], - [-12.108583, 9.29947], - [-12.109411, 9.298493], - [-12.10931, 9.297395], - [-12.109581, 9.295366], - [-12.109918, 9.295185], - [-12.110232, 9.294608], - [-12.109989, 9.29407], - [-12.110102, 9.293813], - [-12.109915, 9.292946], - [-12.109546, 9.292422], - [-12.109614, 9.291947], - [-12.10125, 9.291249], - [-12.102083, 9.282083], - [-12.105416, 9.279582], - [-12.104583, 9.275417], - [-12.09875, 9.272082], - [-12.09625, 9.26875], - [-12.09625, 9.267917], - [-12.100416, 9.263749], - [-12.101249, 9.26125], - [-12.102916, 9.261249], - [-12.102917, 9.25125], - [-12.108749, 9.246249], - [-12.100417, 9.237916], - [-12.100417, 9.234583], - [-12.102082, 9.232083], - [-12.10125, 9.231249], - [-12.101249, 9.225417], - [-12.096071, 9.220978], - [-12.095738, 9.221313], - [-12.095737, 9.221313], - [-12.094583, 9.219582], - [-12.094583, 9.215458], - [-12.094938, 9.214646], - [-12.095094, 9.213993], - [-12.094938, 9.213227], - [-12.091711, 9.206205], - [-12.091667, 9.204822], - [-12.091677, 9.204786], - [-12.093749, 9.203749], - [-12.09253, 9.200093], - [-12.092754, 9.199541], - [-12.093315, 9.198225], - [-12.093995, 9.197607], - [-12.094039, 9.197541], - [-12.08625, 9.195417], - [-12.084583, 9.196249], - [-12.083775, 9.194635], - [-12.0809, 9.1967], - [-12.077899, 9.201], - [-12.0751, 9.203899], - [-12.072499, 9.205699], - [-12.069499, 9.2066], - [-12.0641, 9.207099], - [-12.0616, 9.207699], - [-12.055699, 9.21], - [-12.0515, 9.210499], - [-12.0486, 9.210599], - [-12.0418, 9.2103], - [-12.039, 9.2097], - [-12.034499, 9.207699], - [-12.0286, 9.2062], - [-12.0255, 9.2045], - [-12.0218, 9.2016], - [-12.0195, 9.2002], - [-12.0126, 9.1977], - [-12.0123, 9.206699], - [-12.0116, 9.210099], - [-12.0094, 9.215399], - [-12.0079, 9.221299], - [-12.005699, 9.2266], - [-12.0052, 9.2305], - [-12.005399, 9.2406], - [-12.004999, 9.245999], - [-12.0041, 9.248199], - [-12.002499, 9.2505], - [-11.9973, 9.256199], - [-11.9952, 9.259299], - [-11.9938, 9.265099], - [-11.99348, 9.265712], - [-11.992599, 9.2674], - [-11.9886, 9.272799], - [-11.9859, 9.277999], - [-11.984399, 9.28], - [-11.982, 9.282399], - [-11.9792, 9.284299], - [-11.9754, 9.285999], - [-11.971799, 9.288], - [-11.9687, 9.289299], - [-11.9665, 9.290699], - [-11.9635, 9.293699], - [-11.9616, 9.296499], - [-11.960199, 9.2995], - [-11.9579, 9.303799], - [-11.956599, 9.307], - [-11.954399, 9.3114], - [-11.953799, 9.3148], - [-11.9534, 9.323899], - [-11.952799, 9.326], - [-11.950699, 9.3309], - [-11.950299, 9.3344], - [-11.9502, 9.340699], - [-11.949699, 9.3434], - [-11.947999, 9.3465], - [-11.9426, 9.352499], - [-11.9403, 9.355299], - [-11.937699, 9.3602], - [-11.934599, 9.364], - [-11.9276, 9.371099], - [-11.9254, 9.373899], - [-11.9214, 9.3817], - [-11.9214, 9.385299], - [-11.9238, 9.388199], - [-11.9274, 9.389399], - [-11.930399, 9.388999], - [-11.933099, 9.3877], - [-11.937599, 9.3839], - [-11.9401, 9.382399], - [-11.9423, 9.381799], - [-11.944999, 9.3816], - [-11.9486, 9.382], - [-11.9512, 9.3827], - [-11.957899, 9.386199], - [-11.9608, 9.3883], - [-11.9669, 9.3939], - [-11.9703, 9.395999], - [-11.973299, 9.396699], - [-11.9733, 9.3893], - [-11.973899, 9.3858], - [-11.9758, 9.381299], - [-11.9778, 9.375899], - [-11.981, 9.3744], - [-11.990499, 9.3742], - [-11.994299, 9.3737], - [-11.9997, 9.371499], - [-12.0022, 9.370899], - [-12.007499, 9.3703], - [-12.010099, 9.3697], - [-12.0146, 9.367799], - [-12.0183, 9.366999], - [-12.024099, 9.3668], - [-12.027899, 9.3662], - [-12.0341, 9.363799], - [-12.0379, 9.363299], - [-12.043799, 9.363], - [-12.047399, 9.3623], - [-12.051899, 9.3601], - [-12.055099, 9.3588], - [-12.0593, 9.356299], - [-12.065999, 9.3531], - [-12.069499, 9.3522], - [-12.080699, 9.3519], - [-12.0848, 9.351199], - [-12.092399, 9.3476], - [-12.096299, 9.3445], - [-12.0989, 9.341299], - [-12.102699, 9.3338], - [-12.104399, 9.3299], - [-12.107399, 9.3259], - [-12.1106, 9.323299], - [-12.116289, 9.320417] - ] - ], - "type": "Polygon" - }, - "id": 158, - "properties": { - "cc:admin:id": ["81"], - "cc:oBld:total": 394, - "cc:pop:fifteen-to-twenty-four": 1274.9443208727066, - "cc:pop:grid3-total": 8136.040876278192, - "cc:pop:kontur-total": 6778.665218334144, - "cc:pop:men": 3355.5332014405867, - "cc:pop:sixty-plus": 387.94448617256904, - "cc:pop:total": 7027.160509778067, - "cc:pop:under-five": 1089.7618896371678, - "cc:pop:women": 3671.6273083374795, - "cc:pop:women-fiften-to-forty-nine": 1801.785572934035, - "cc:pop:wp-total": 6115.800958000484, - "cc:pop:wp-total-UN": 7096.242985395983, - "cc:id": "158", - "cc:Name": "Hunduwa CHP", - "cc:site": [-12.061, 9.2366], - "user:parentName": "Magbaimba Ndowahun", - "user:code": "OU_193227", - "user:orgUnitId": "J1x66stNjk2", - "user:level": "4", - "user:parentId": "eV4cuxniZgP" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.351535, 8.523635], - [-11.351299, 8.523399], - [-11.3466, 8.5192], - [-11.3434, 8.517], - [-11.336799, 8.513999], - [-11.332799, 8.512799], - [-11.3208, 8.5118], - [-11.3179, 8.5113], - [-11.311699, 8.509599], - [-11.2998, 8.5085], - [-11.2968, 8.508], - [-11.292799, 8.506299], - [-11.2838, 8.5007], - [-11.281499, 8.498999], - [-11.278399, 8.496099], - [-11.2749, 8.4918], - [-11.270999, 8.484299], - [-11.269099, 8.478599], - [-11.2673, 8.4659], - [-11.2655, 8.4599], - [-11.2647, 8.4556], - [-11.2642, 8.4479], - [-11.264199, 8.445417], - [-11.26125, 8.445417], - [-11.255554, 8.449484], - [-11.255417, 8.449584], - [-11.254583, 8.460416], - [-11.256595, 8.461759], - [-11.253047, 8.467905], - [-11.256952, 8.474671], - [-11.256848, 8.47485], - [-11.254583, 8.475417], - [-11.254582, 8.479583], - [-11.252083, 8.48125], - [-11.252082, 8.484583], - [-11.24375, 8.487083], - [-11.240417, 8.487084], - [-11.23875, 8.48875], - [-11.241249, 8.49125], - [-11.243749, 8.497083], - [-11.242082, 8.509583], - [-11.237917, 8.50875], - [-11.237916, 8.510417], - [-11.233295, 8.514267], - [-11.229871, 8.514268], - [-11.229688, 8.514584], - [-11.222917, 8.514583], - [-11.219141, 8.511564], - [-11.213534, 8.511564], - [-11.210268, 8.51722], - [-11.217916, 8.517917], - [-11.213749, 8.530416], - [-11.205417, 8.52875], - [-11.20375, 8.531249], - [-11.199583, 8.532917], - [-11.198152, 8.535061], - [-11.198033, 8.534889], - [-11.19737, 8.533202], - [-11.19727, 8.531788], - [-11.196532, 8.53125], - [-11.195417, 8.53125], - [-11.187083, 8.536249], - [-11.187082, 8.527084], - [-11.186477, 8.52678], - [-11.185835, 8.527533], - [-11.185326, 8.528397], - [-11.184615, 8.528879], - [-11.1847, 8.5302], - [-11.1848, 8.5523], - [-11.185099, 8.558499], - [-11.185899, 8.562399], - [-11.187899, 8.566799], - [-11.18798, 8.567198], - [-11.191512, 8.567199], - [-11.193761, 8.571094], - [-11.19375, 8.571249], - [-11.195825, 8.573843], - [-11.200541, 8.573844], - [-11.202339, 8.576955], - [-11.20375, 8.57625], - [-11.213198, 8.57625], - [-11.213621, 8.576984], - [-11.209715, 8.583749], - [-11.213622, 8.590514], - [-11.214092, 8.590514], - [-11.214583, 8.590417], - [-11.220417, 8.595416], - [-11.225416, 8.59375], - [-11.227427, 8.594252], - [-11.227518, 8.59375], - [-11.227916, 8.59375], - [-11.229583, 8.596249], - [-11.235416, 8.597083], - [-11.237917, 8.58875], - [-11.245416, 8.587917], - [-11.248749, 8.590416], - [-11.249829, 8.589068], - [-11.254892, 8.589068], - [-11.258503, 8.59532], - [-11.258799, 8.595833], - [-11.261341, 8.595833], - [-11.261351, 8.595414], - [-11.261293, 8.591469], - [-11.262681, 8.591815], - [-11.262688, 8.591736], - [-11.262684, 8.59125], - [-11.262916, 8.591249], - [-11.26375, 8.589584], - [-11.267082, 8.588749], - [-11.271248, 8.585418], - [-11.27125, 8.585419], - [-11.27125, 8.593749], - [-11.274902, 8.594358], - [-11.275054, 8.592509], - [-11.274479, 8.590569], - [-11.274411, 8.590418], - [-11.274412, 8.590417], - [-11.285416, 8.590416], - [-11.285417, 8.587917], - [-11.29125, 8.587083], - [-11.293749, 8.584583], - [-11.294583, 8.58125], - [-11.296249, 8.582083], - [-11.298749, 8.574583], - [-11.29875, 8.571154], - [-11.299362, 8.571347], - [-11.30101, 8.571676], - [-11.303549, 8.572136], - [-11.306351, 8.572574], - [-11.306665, 8.57166], - [-11.30673, 8.570354], - [-11.308409, 8.567013], - [-11.30966, 8.56405], - [-11.310355, 8.561695], - [-11.310622, 8.560969], - [-11.311661, 8.559742], - [-11.311134, 8.557593], - [-11.311153, 8.556547], - [-11.31135, 8.556198], - [-11.312308, 8.555728], - [-11.312999, 8.555602], - [-11.313608, 8.555034], - [-11.314279, 8.553382], - [-11.314696, 8.55083], - [-11.314847, 8.550116], - [-11.315339, 8.549268], - [-11.31676, 8.547647], - [-11.317761, 8.547019], - [-11.318361, 8.54644], - [-11.319188, 8.54511], - [-11.321626, 8.542116], - [-11.322225, 8.540344], - [-11.322491, 8.539606], - [-11.323964, 8.537936], - [-11.324003, 8.536928], - [-11.324071, 8.535762], - [-11.324755, 8.534042], - [-11.32496, 8.531598], - [-11.324652, 8.529867], - [-11.326524, 8.527107], - [-11.326802, 8.526177], - [-11.327018, 8.525805], - [-11.327504, 8.525466], - [-11.327769, 8.524782], - [-11.32777, 8.524782], - [-11.32875, 8.526249], - [-11.333749, 8.528749], - [-11.33375, 8.522917], - [-11.336249, 8.522084], - [-11.338447, 8.522084], - [-11.338499, 8.522406], - [-11.343004, 8.52204], - [-11.344407, 8.522118], - [-11.346839, 8.521255], - [-11.348675, 8.521841], - [-11.350179, 8.523557], - [-11.351535, 8.523635] - ] - ], - "type": "Polygon" - }, - "id": 159, - "properties": { - "cc:admin:id": ["101"], - "cc:oBld:total": 1589, - "cc:pop:fifteen-to-twenty-four": 2584.209811966819, - "cc:pop:grid3-total": 14205.091246028816, - "cc:pop:kontur-total": 13080.967858257121, - "cc:pop:men": 7427.843423750811, - "cc:pop:sixty-plus": 755.0663336362986, - "cc:pop:total": 13582.400077174789, - "cc:pop:under-five": 2059.172508455011, - "cc:pop:women": 6154.556653423977, - "cc:pop:women-fiften-to-forty-nine": 3202.5375746604223, - "cc:pop:wp-total": 11476.39390071879, - "cc:pop:wp-total-UN": 13310.146357215768, - "cc:id": "159", - "cc:Name": "Jaiama Sewafe CHC", - "cc:site": [-11.2411, 8.542], - "user:parentName": "Nimiyama", - "user:code": "OU_233333", - "user:orgUnitId": "W7ekX3gi0ut", - "user:level": "4", - "user:parentId": "qgQ49DH9a0v" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.180373, 7.60834], - [-11.176651, 7.601894], - [-11.17125, 7.601894], - [-11.171249, 7.607084], - [-11.167917, 7.611249], - [-11.162832, 7.611641], - [-11.160979, 7.608433], - [-11.154841, 7.608433], - [-11.154583, 7.607917], - [-11.155416, 7.59375], - [-11.15125, 7.593749], - [-11.146478, 7.591704], - [-11.146478, 7.591702], - [-11.146608, 7.591592], - [-11.14125, 7.589584], - [-11.136917, 7.59536], - [-11.1372, 7.5954], - [-11.1405, 7.5975], - [-11.1422, 7.5994], - [-11.143599, 7.6019], - [-11.143899, 7.604799], - [-11.1419, 7.6098], - [-11.1418, 7.612599], - [-11.1426, 7.614599], - [-11.144299, 7.616699], - [-11.148299, 7.620499], - [-11.1513, 7.6227], - [-11.1555, 7.625], - [-11.160099, 7.627499], - [-11.1633, 7.6289], - [-11.1677, 7.6311], - [-11.1714, 7.6318], - [-11.1743, 7.632], - [-11.178408, 7.631999], - [-11.176652, 7.628957], - [-11.178176, 7.626315], - [-11.177916, 7.626249], - [-11.174583, 7.622083], - [-11.174583, 7.612917], - [-11.177916, 7.60875], - [-11.180373, 7.60834] - ] - ], - "type": "Polygon" - }, - "id": 160, - "properties": { - "cc:admin:id": ["138"], - "cc:oBld:total": 317, - "cc:pop:fifteen-to-twenty-four": 353.3586919213891, - "cc:pop:grid3-total": 1275.724340177019, - "cc:pop:kontur-total": 1139.8187688868518, - "cc:pop:men": 865.9169080420985, - "cc:pop:sixty-plus": 109.8490793714661, - "cc:pop:total": 1817.5246611995326, - "cc:pop:under-five": 279.0416839086107, - "cc:pop:women": 951.607753157434, - "cc:pop:women-fiften-to-forty-nine": 471.3520560699759, - "cc:pop:wp-total": 1639.0434616813839, - "cc:pop:wp-total-UN": 1907.1987748587055, - "cc:id": "160", - "cc:Name": "Jao MCHP", - "cc:site": [-11.1446, 7.6138], - "user:parentName": "Tunkia", - "user:code": "OU_222640", - "user:orgUnitId": "t7bcrWLjL1m", - "user:level": "4", - "user:parentId": "l7pFejMtUoF" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.45375, 7.915261], - [-11.453749, 7.912917], - [-11.452917, 7.912083], - [-11.452916, 7.906435], - [-11.45253, 7.906736], - [-11.450752, 7.907107], - [-11.448781, 7.906699], - [-11.448315, 7.906758], - [-11.447121, 7.903573], - [-11.447159, 7.903485], - [-11.447313, 7.90103], - [-11.446039, 7.899953], - [-11.445036, 7.898562], - [-11.444396, 7.896937], - [-11.444094, 7.896803], - [-11.438899, 7.9003], - [-11.419999, 7.9101], - [-11.413, 7.914999], - [-11.4076, 7.918199], - [-11.4018, 7.922399], - [-11.3965, 7.925699], - [-11.3879, 7.932699], - [-11.3816, 7.936899], - [-11.3794, 7.938699], - [-11.3689, 7.948599], - [-11.3645, 7.952199], - [-11.3547, 7.958199], - [-11.3517, 7.9604], - [-11.347699, 7.9708], - [-11.3434, 7.984199], - [-11.3421, 7.990499], - [-11.341967, 7.993646], - [-11.352916, 7.992916], - [-11.35375, 7.989583], - [-11.354583, 7.982084], - [-11.358749, 7.977916], - [-11.35875, 7.972917], - [-11.36625, 7.972916], - [-11.368749, 7.972083], - [-11.372083, 7.96875], - [-11.382082, 7.969583], - [-11.382083, 7.96375], - [-11.382829, 7.963004], - [-11.382733, 7.962939], - [-11.382733, 7.962938], - [-11.385417, 7.959583], - [-11.387917, 7.95875], - [-11.395417, 7.967083], - [-11.397082, 7.967916], - [-11.398506, 7.96839], - [-11.398756, 7.968062], - [-11.399208, 7.966673], - [-11.399353, 7.965357], - [-11.399769, 7.965003], - [-11.399742, 7.964332], - [-11.399457, 7.963505], - [-11.399584, 7.962766], - [-11.401148, 7.962655], - [-11.402266, 7.962322], - [-11.404, 7.962897], - [-11.409582, 7.960416], - [-11.40904, 7.957703], - [-11.412355, 7.951961], - [-11.417995, 7.95196], - [-11.41875, 7.942917], - [-11.425417, 7.940416], - [-11.426249, 7.938749], - [-11.42484, 7.930998], - [-11.425403, 7.930569], - [-11.425733, 7.929839], - [-11.426359, 7.929249], - [-11.426839, 7.929378], - [-11.427142, 7.929278], - [-11.427378, 7.928976], - [-11.426401, 7.928934], - [-11.425361, 7.929196], - [-11.424218, 7.929069], - [-11.422897, 7.929214], - [-11.422844, 7.92919], - [-11.42286, 7.929106], - [-11.422672, 7.92866], - [-11.422791, 7.927717], - [-11.423146, 7.92687], - [-11.423903, 7.926234], - [-11.424608, 7.926073], - [-11.42517, 7.926066], - [-11.42607, 7.926622], - [-11.426623, 7.926663], - [-11.42758, 7.926724], - [-11.427232, 7.925375], - [-11.42717, 7.924838], - [-11.427183, 7.924836], - [-11.430306, 7.924717], - [-11.432296, 7.924153], - [-11.432994, 7.923828], - [-11.432916, 7.923749], - [-11.432534, 7.9226], - [-11.436047, 7.9212], - [-11.437446, 7.920935], - [-11.43919, 7.919725], - [-11.440245, 7.919626], - [-11.4406, 7.919849], - [-11.441531, 7.919986], - [-11.442329, 7.919739], - [-11.442634, 7.920952], - [-11.446747, 7.920086], - [-11.449582, 7.918672], - [-11.449583, 7.917084], - [-11.449464, 7.916964], - [-11.449465, 7.916963], - [-11.451502, 7.916294], - [-11.452321, 7.915881], - [-11.452545, 7.915607], - [-11.453548, 7.915432], - [-11.45375, 7.915261] - ] - ], - "type": "Polygon" - }, - "id": 161, - "properties": { - "cc:admin:id": ["2"], - "cc:oBld:total": 1205, - "cc:pop:fifteen-to-twenty-four": 2282.4428654900867, - "cc:pop:grid3-total": 5800.636311842498, - "cc:pop:kontur-total": 12925.486010045748, - "cc:pop:men": 6684.960988053064, - "cc:pop:sixty-plus": 888.7943535673228, - "cc:pop:total": 12919.267778421397, - "cc:pop:under-five": 2114.6204521648137, - "cc:pop:women": 6234.3067903683295, - "cc:pop:women-fiften-to-forty-nine": 2953.606208196975, - "cc:pop:wp-total": 10358.618459400266, - "cc:pop:wp-total-UN": 12014.442747882775, - "cc:id": "161", - "cc:Name": "Jembe CHC", - "cc:site": [-11.4283, 7.9197], - "user:parentName": "Baoma", - "user:code": "OU_578", - "user:orgUnitId": "Umh4HKqqFp6", - "user:level": "4", - "user:parentId": "vWbkYPRmKyS" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.433458, 6.968784], - [-11.431893, 6.965154], - [-11.428027, 6.960705], - [-11.429699, 6.9636], - [-11.4232, 6.965599], - [-11.417399, 6.9636], - [-11.4109, 6.9682], - [-11.412799, 6.976599], - [-11.4102, 6.984399], - [-11.4011, 6.9831], - [-11.3953, 6.9818], - [-11.3927, 6.9876], - [-11.3933, 6.9915], - [-11.393299, 6.997299], - [-11.3888, 7.003199], - [-11.3817, 7.005099], - [-11.3752, 7.0058], - [-11.3713, 7.0097], - [-11.368, 7.016099], - [-11.3661, 7.0213], - [-11.367399, 7.032999], - [-11.3648, 7.0343], - [-11.366699, 7.0356], - [-11.3628, 7.040799], - [-11.3613, 7.043199], - [-11.3605, 7.046699], - [-11.368599, 7.054299], - [-11.369564, 7.057612], - [-11.37269, 7.060769], - [-11.37375, 7.060416], - [-11.380416, 7.057084], - [-11.381249, 7.055417], - [-11.382916, 7.055416], - [-11.38625, 7.052084], - [-11.397082, 7.053749], - [-11.397083, 7.035417], - [-11.398749, 7.035417], - [-11.39875, 7.046913], - [-11.399844, 7.04502], - [-11.402416, 7.04502], - [-11.402888, 7.04535], - [-11.404937, 7.045678], - [-11.40545, 7.046254], - [-11.406286, 7.046741], - [-11.407094, 7.046846], - [-11.408333, 7.047961], - [-11.408749, 7.047896], - [-11.408749, 7.040417], - [-11.405418, 7.037084], - [-11.411062, 7.036378], - [-11.411031, 7.03596], - [-11.413749, 7.035416], - [-11.416607, 7.03113], - [-11.417696, 7.032124], - [-11.417812, 7.032186], - [-11.421249, 7.028749], - [-11.421249, 7.019584], - [-11.417083, 7.015417], - [-11.422082, 7.010416], - [-11.422082, 7.00125], - [-11.420417, 6.998749], - [-11.422082, 6.996249], - [-11.422083, 6.98625], - [-11.420692, 6.984511], - [-11.423555, 6.97955], - [-11.422917, 6.978749], - [-11.422917, 6.970613], - [-11.424294, 6.970607], - [-11.428634, 6.972456], - [-11.430755, 6.972739], - [-11.431823, 6.972287], - [-11.432691, 6.970789], - [-11.433458, 6.968784] - ] - ], - "type": "Polygon" - }, - "id": 162, - "properties": { - "cc:admin:id": ["127"], - "cc:oBld:total": 1112, - "cc:pop:fifteen-to-twenty-four": 3343.3326871158783, - "cc:pop:grid3-total": 9153.108329877987, - "cc:pop:kontur-total": 17322.28316447987, - "cc:pop:men": 8737.62009338206, - "cc:pop:sixty-plus": 1323.9000524471157, - "cc:pop:total": 18702.373490459657, - "cc:pop:under-five": 3110.586518405066, - "cc:pop:women": 9964.753397077595, - "cc:pop:women-fiften-to-forty-nine": 4758.098054197429, - "cc:pop:wp-total": 12910.586471176759, - "cc:pop:wp-total-UN": 14967.344576710842, - "cc:id": "162", - "cc:Name": "Jendema CHC", - "cc:site": [-11.3911, 7.0244], - "user:parentName": "Soro-Gbeima", - "user:code": "OU_260411", - "user:orgUnitId": "QzPf0qKBU4n", - "user:level": "4", - "user:parentId": "d9iMR1MpuIO" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.212763, 8.48318], - [-13.212778, 8.483061], - [-13.212185, 8.481068], - [-13.212048, 8.480691], - [-13.211652, 8.479318], - [-13.211474, 8.478778], - [-13.212183, 8.478491], - [-13.212422, 8.478384], - [-13.212636, 8.478272], - [-13.21227, 8.477724], - [-13.212343, 8.477392], - [-13.211876, 8.476283], - [-13.211139, 8.475449], - [-13.210288, 8.474919], - [-13.209724, 8.475598], - [-13.209047, 8.475812], - [-13.208755, 8.475998], - [-13.208655, 8.476068], - [-13.208266, 8.476333], - [-13.208264, 8.476333], - [-13.207875, 8.476602], - [-13.207342, 8.476961], - [-13.207194, 8.477076], - [-13.206789, 8.477093], - [-13.206838, 8.477315], - [-13.206781, 8.477361], - [-13.206777, 8.477385], - [-13.206848, 8.477449], - [-13.206749, 8.477975], - [-13.206218, 8.478833], - [-13.206167, 8.479371], - [-13.206148, 8.479529], - [-13.206151, 8.479757], - [-13.206225, 8.479777], - [-13.206216, 8.479891], - [-13.206185, 8.480027], - [-13.206127, 8.480109], - [-13.205969, 8.480418], - [-13.205866, 8.48053], - [-13.205324, 8.480726], - [-13.205186, 8.480808], - [-13.204895, 8.48112], - [-13.204894, 8.481119], - [-13.204709, 8.480696], - [-13.203724, 8.480458], - [-13.20251, 8.479704], - [-13.201145, 8.479484], - [-13.20093, 8.48024], - [-13.200423, 8.480659], - [-13.19901, 8.480643], - [-13.198292, 8.480298], - [-13.198084, 8.479895], - [-13.19752, 8.480216], - [-13.196639, 8.480115], - [-13.196073, 8.480364], - [-13.195901, 8.480351], - [-13.19578, 8.480316], - [-13.195738, 8.480329], - [-13.195675, 8.48053], - [-13.195569, 8.480741], - [-13.195111, 8.480943], - [-13.195331, 8.48166], - [-13.194239, 8.482131], - [-13.202399, 8.4813], - [-13.2029, 8.490699], - [-13.207419, 8.492109], - [-13.207107, 8.491664], - [-13.206056, 8.49093], - [-13.205743, 8.490714], - [-13.204351, 8.490336], - [-13.204087, 8.490257], - [-13.204087, 8.490255], - [-13.204788, 8.489921], - [-13.204822, 8.489449], - [-13.204771, 8.489005], - [-13.20474, 8.488615], - [-13.206495, 8.488574], - [-13.206859, 8.488556], - [-13.207466, 8.488556], - [-13.207829, 8.488567], - [-13.207927, 8.488491], - [-13.208028, 8.487091], - [-13.208357, 8.48668], - [-13.208475, 8.486563], - [-13.208766, 8.486294], - [-13.209904, 8.485325], - [-13.211119, 8.484528], - [-13.211614, 8.483309], - [-13.211759, 8.48304], - [-13.211944, 8.483026], - [-13.212044, 8.483037], - [-13.212215, 8.483066], - [-13.212571, 8.48315], - [-13.212738, 8.483196], - [-13.212763, 8.48318] - ] - ], - "type": "Polygon" - }, - "id": 163, - "properties": { - "cc:admin:id": ["26"], - "cc:oBld:total": 2319, - "cc:pop:fifteen-to-twenty-four": 5359.014363221711, - "cc:pop:grid3-total": 32041.107333328233, - "cc:pop:kontur-total": 16088.22220714435, - "cc:pop:men": 11594.46379179589, - "cc:pop:sixty-plus": 1818.2493305072019, - "cc:pop:total": 23372.150962297324, - "cc:pop:under-five": 2695.085096288026, - "cc:pop:women": 11777.68717050143, - "cc:pop:women-fiften-to-forty-nine": 6309.193244993448, - "cc:pop:wp-total": 24720.35340740094, - "cc:pop:wp-total-UN": 28660.848925040395, - "cc:id": "163", - "cc:Name": "Jenner Wright Clinic", - "cc:site": [-13.2116, 8.4827], - "user:parentName": "Freetown", - "user:code": "OU_278353", - "user:orgUnitId": "cZtKKa9eJZ3", - "user:level": "4", - "user:parentId": "C9uduqDZr9d" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.115733, 8.359067], - [-13.112015, 8.352628], - [-13.108461, 8.352627], - [-13.105649, 8.349816], - [-13.103015, 8.348036], - [-13.099371, 8.348036], - [-13.095464, 8.354801], - [-13.08897, 8.354801], - [-13.088978, 8.354031], - [-13.089201, 8.353553], - [-13.088905, 8.352496], - [-13.088301, 8.352066], - [-13.087857, 8.352229], - [-13.087273, 8.351225], - [-13.087046, 8.351112], - [-13.08666, 8.352179], - [-13.085857, 8.351959], - [-13.085778, 8.352111], - [-13.085268, 8.351866], - [-13.085156, 8.3518], - [-13.08489, 8.351617], - [-13.084452, 8.351964], - [-13.084628, 8.352144], - [-13.084799, 8.352298], - [-13.083953, 8.354142], - [-13.083156, 8.353684], - [-13.083292, 8.353252], - [-13.082956, 8.352859], - [-13.082636, 8.352971], - [-13.079948, 8.354202], - [-13.079665, 8.353419], - [-13.079207, 8.353828], - [-13.077972, 8.352068], - [-13.077904, 8.35197], - [-13.077857, 8.352004], - [-13.076996, 8.352189], - [-13.076539, 8.352047], - [-13.07597, 8.352296], - [-13.075676, 8.352971], - [-13.075327, 8.353478], - [-13.074905, 8.353735], - [-13.074664, 8.354324], - [-13.075024, 8.354499], - [-13.076216, 8.354548], - [-13.076557, 8.354829], - [-13.076936, 8.355913], - [-13.076399, 8.356217], - [-13.075729, 8.35693], - [-13.07394, 8.355536], - [-13.072015, 8.354566], - [-13.070197, 8.3546], - [-13.070034, 8.356109], - [-13.070831, 8.356908], - [-13.070926, 8.357267], - [-13.070785, 8.357619], - [-13.070248, 8.357602], - [-13.069877, 8.357275], - [-13.068656, 8.357546], - [-13.068206, 8.356768], - [-13.068182, 8.35698], - [-13.067578, 8.3577], - [-13.067091, 8.357877], - [-13.065641, 8.357354], - [-13.064745, 8.357267], - [-13.064514, 8.357494], - [-13.064455, 8.357773], - [-13.065204, 8.359262], - [-13.065192, 8.360361], - [-13.064976, 8.361343], - [-13.064542, 8.362181], - [-13.063674, 8.362588], - [-13.063077, 8.362614], - [-13.062014, 8.362142], - [-13.061215, 8.362], - [-13.060942, 8.3621], - [-13.060861, 8.362497], - [-13.063124, 8.364536], - [-13.063818, 8.365734], - [-13.063817, 8.365736], - [-13.06321, 8.365858], - [-13.068485, 8.37543], - [-13.079587, 8.383193], - [-13.093182, 8.414286], - [-13.106258, 8.410429], - [-13.105695, 8.40375], - [-13.112374, 8.400409], - [-13.109893, 8.394324], - [-13.109895, 8.394324], - [-13.111235, 8.397125], - [-13.11148, 8.396644], - [-13.113192, 8.395725], - [-13.11359, 8.395035], - [-13.112884, 8.395264], - [-13.112376, 8.394946], - [-13.112204, 8.394533], - [-13.112895, 8.39424], - [-13.113154, 8.393019], - [-13.115097, 8.391268], - [-13.115036, 8.390616], - [-13.114677, 8.390313], - [-13.114623, 8.390064], - [-13.115143, 8.389931], - [-13.115156, 8.38992], - [-13.114312, 8.388457], - [-13.114314, 8.388473], - [-13.114528, 8.388867], - [-13.114591, 8.389051], - [-13.113584, 8.390282], - [-13.113302, 8.390754], - [-13.112396, 8.392189], - [-13.11188, 8.392724], - [-13.111787, 8.392516], - [-13.111266, 8.390889], - [-13.111052, 8.391223], - [-13.110896, 8.392006], - [-13.11038, 8.392662], - [-13.109285, 8.391796], - [-13.109061, 8.391479], - [-13.108908, 8.391131], - [-13.108822, 8.390809], - [-13.108241, 8.390357], - [-13.107855, 8.390013], - [-13.10779, 8.389714], - [-13.107475, 8.389036], - [-13.109188, 8.387922], - [-13.108591, 8.38703], - [-13.108543, 8.386755], - [-13.108531, 8.386081], - [-13.108628, 8.384243], - [-13.108805, 8.384124], - [-13.108609, 8.384018], - [-13.108295, 8.383489], - [-13.107879, 8.382222], - [-13.107341, 8.38124], - [-13.106795, 8.380704], - [-13.106755, 8.380668], - [-13.106813, 8.380599], - [-13.107097, 8.380834], - [-13.107486, 8.380599], - [-13.109168, 8.379691], - [-13.110089, 8.379109], - [-13.109919, 8.378902], - [-13.109778, 8.378754], - [-13.109607, 8.378569], - [-13.109337, 8.378827], - [-13.109335, 8.378827], - [-13.107183, 8.375098], - [-13.111089, 8.368333], - [-13.107183, 8.361566], - [-13.110184, 8.35637], - [-13.113749, 8.357083], - [-13.115733, 8.359067] - ] - ], - "type": "Polygon" - }, - "id": 164, - "properties": { - "cc:admin:id": ["112"], - "cc:oBld:total": 6359, - "cc:pop:fifteen-to-twenty-four": 7670.996388217672, - "cc:pop:grid3-total": 38702.217567620755, - "cc:pop:kontur-total": 44421.59163313354, - "cc:pop:men": 15577.737184845533, - "cc:pop:sixty-plus": 2536.1277524739453, - "cc:pop:total": 32458.45787925106, - "cc:pop:under-five": 3609.9319412693435, - "cc:pop:women": 16880.720694405518, - "cc:pop:women-fiften-to-forty-nine": 9027.813529518702, - "cc:pop:wp-total": 28453.12030237309, - "cc:pop:wp-total-UN": 32993.91016964957, - "cc:id": "164", - "cc:Name": "John Thorpe MCHP", - "cc:site": [-13.0919, 8.3952], - "user:parentName": "Rural Western Area", - "user:code": "OU_278375", - "user:orgUnitId": "DplgrYeRIZ1", - "user:level": "4", - "user:parentId": "qtr8GGlm4gg" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.909099, 7.7591], - [-10.907199, 7.754599], - [-10.903199, 7.742299], - [-10.8949, 7.727799], - [-10.8946, 7.7233], - [-10.8958, 7.720099], - [-10.9004, 7.7138], - [-10.906199, 7.7096], - [-10.908999, 7.706799], - [-10.910899, 7.703199], - [-10.910899, 7.7006], - [-10.909699, 7.6983], - [-10.9059, 7.695099], - [-10.901999, 7.688999], - [-10.898299, 7.684799], - [-10.894, 7.680799], - [-10.8894, 7.6707], - [-10.8889, 7.667], - [-10.8894, 7.6635], - [-10.891299, 7.6606], - [-10.895299, 7.658399], - [-10.898399, 7.655199], - [-10.903499, 7.6439], - [-10.904299, 7.638699], - [-10.903999, 7.6334], - [-10.8976, 7.632499], - [-10.8945, 7.629899], - [-10.892399, 7.625899], - [-10.8882, 7.6126], - [-10.8868, 7.6098], - [-10.884899, 7.6077], - [-10.880999, 7.605399], - [-10.87, 7.6023], - [-10.8639, 7.5993], - [-10.859199, 7.5982], - [-10.8496, 7.599899], - [-10.842299, 7.600199], - [-10.834999, 7.599799], - [-10.832199, 7.599199], - [-10.8261, 7.5973], - [-10.8201, 7.5966], - [-10.8093, 7.596699], - [-10.8017, 7.597699], - [-10.8005, 7.5923], - [-10.800199, 7.5878], - [-10.797199, 7.5866], - [-10.7906, 7.5885], - [-10.788, 7.596299], - [-10.786, 7.5989], - [-10.7847, 7.603399], - [-10.787299, 7.607299], - [-10.7854, 7.6112], - [-10.785999, 7.6157], - [-10.7763, 7.625399], - [-10.771099, 7.6332], - [-10.7678, 7.6403], - [-10.769799, 7.6449], - [-10.767799, 7.647499], - [-10.7633, 7.6423], - [-10.760699, 7.6468], - [-10.7477, 7.653899], - [-10.7412, 7.6572], - [-10.743199, 7.663], - [-10.739299, 7.6701], - [-10.7347, 7.677299], - [-10.7295, 7.679899], - [-10.727, 7.6779], - [-10.724999, 7.682499], - [-10.7205, 7.6825], - [-10.721099, 7.688899], - [-10.7185, 7.694099], - [-10.7127, 7.6967], - [-10.713899, 7.701899], - [-10.7094, 7.7025], - [-10.709399, 7.7064], - [-10.7036, 7.7077], - [-10.703599, 7.711599], - [-10.701599, 7.7136], - [-10.701, 7.718699], - [-10.700999, 7.7226], - [-10.700299, 7.7265], - [-10.6938, 7.730399], - [-10.6906, 7.7304], - [-10.690599, 7.7336], - [-10.687299, 7.734999], - [-10.6854, 7.735], - [-10.684099, 7.7369], - [-10.6789, 7.7382], - [-10.675, 7.743399], - [-10.6705, 7.7414], - [-10.6653, 7.744], - [-10.664699, 7.7466], - [-10.6575, 7.749199], - [-10.6536, 7.7512], - [-10.654299, 7.7525], - [-10.6523, 7.757599], - [-10.650399, 7.760299], - [-10.6433, 7.7589], - [-10.641299, 7.761499], - [-10.636099, 7.764799], - [-10.630299, 7.764199], - [-10.6212, 7.7629], - [-10.6011, 7.77], - [-10.600999, 7.7939], - [-10.6002, 7.931799], - [-10.5995, 7.984499], - [-10.600299, 7.9318], - [-10.6016, 7.9003], - [-10.606699, 7.9001], - [-10.611199, 7.900199], - [-10.615499, 7.900799], - [-10.619899, 7.902699], - [-10.6232, 7.9035], - [-10.6301, 7.903899], - [-10.649999, 7.9038], - [-10.6534, 7.904], - [-10.6567, 7.9048], - [-10.6689, 7.9103], - [-10.6732, 7.9111], - [-10.682199, 7.911899], - [-10.6876, 7.9141], - [-10.6901, 7.9146], - [-10.695399, 7.915], - [-10.699, 7.9164], - [-10.701899, 7.919799], - [-10.703599, 7.924399], - [-10.7043, 7.927399], - [-10.708799, 7.9233], - [-10.712599, 7.9202], - [-10.7176, 7.917399], - [-10.724899, 7.912], - [-10.728, 7.910499], - [-10.732299, 7.9081], - [-10.7355, 7.906799], - [-10.7397, 7.904399], - [-10.7473, 7.900899], - [-10.7508, 7.900199], - [-10.761799, 7.8999], - [-10.765299, 7.8993], - [-10.770599, 7.897], - [-10.7756, 7.895699], - [-10.7822, 7.893], - [-10.787099, 7.8926], - [-10.789799, 7.892799], - [-10.7919, 7.8935], - [-10.799799, 7.897299], - [-10.8052, 7.900599], - [-10.8096, 7.899599], - [-10.8125, 7.897999], - [-10.8158, 7.894999], - [-10.830899, 7.8797], - [-10.833399, 7.8771], - [-10.835399, 7.8744], - [-10.837299, 7.8705], - [-10.838599, 7.8685], - [-10.841899, 7.8646], - [-10.84191, 7.864583], - [-10.8431, 7.862599], - [-10.845, 7.858699], - [-10.8492, 7.853399], - [-10.8505, 7.851399], - [-10.8524, 7.847499], - [-10.857099, 7.8416], - [-10.860299, 7.8357], - [-10.864, 7.830999], - [-10.8652, 7.829099], - [-10.8672, 7.825199], - [-10.871399, 7.8199], - [-10.872699, 7.8179], - [-10.874099, 7.8147], - [-10.8757, 7.811799], - [-10.8765, 7.809599], - [-10.8776, 7.804299], - [-10.8785, 7.801999], - [-10.88, 7.799199], - [-10.8813, 7.795999], - [-10.8841, 7.792399], - [-10.898299, 7.7781], - [-10.901599, 7.7741], - [-10.904099, 7.7693], - [-10.9062, 7.765699], - [-10.907799, 7.7624], - [-10.909099, 7.7591] - ] - ], - "type": "Polygon" - }, - "id": 165, - "properties": { - "cc:admin:id": ["87"], - "cc:oBld:total": 2310, - "cc:pop:fifteen-to-twenty-four": 7444.60045761977, - "cc:pop:grid3-total": 34836.62783155952, - "cc:pop:kontur-total": 41837.73617787873, - "cc:pop:men": 21002.364723417435, - "cc:pop:sixty-plus": 2305.804618348149, - "cc:pop:total": 38706.99241164925, - "cc:pop:under-five": 5960.61033406938, - "cc:pop:women": 17704.627688231805, - "cc:pop:women-fiften-to-forty-nine": 8901.628730292261, - "cc:pop:wp-total": 33331.21352385852, - "cc:pop:wp-total-UN": 38645.94095957837, - "cc:id": "165", - "cc:Name": "Jojoima CHC", - "cc:site": [-10.7871, 7.8767], - "user:parentName": "Malema", - "user:code": "OU_204872", - "user:orgUnitId": "DvzKyuC0G4w", - "user:level": "4", - "user:parentId": "GE25DpSrqpB" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.705899, 8.272199], - [-10.704899, 8.2667], - [-10.7002, 8.2628], - [-10.6975, 8.2603], - [-10.6956, 8.257699], - [-10.6948, 8.2554], - [-10.6944, 8.252499], - [-10.6946, 8.249499], - [-10.6952, 8.246799], - [-10.6978, 8.241199], - [-10.698099, 8.2272], - [-10.6977, 8.2234], - [-10.696499, 8.2199], - [-10.6926, 8.2149], - [-10.692136, 8.21419], - [-10.691427, 8.214041], - [-10.69055, 8.213408], - [-10.689018, 8.212793], - [-10.687936, 8.212866], - [-10.686674, 8.21332], - [-10.685363, 8.214131], - [-10.683013, 8.216036], - [-10.6818, 8.216361], - [-10.680775, 8.217333], - [-10.679932, 8.217707], - [-10.679359, 8.218705], - [-10.679219, 8.219491], - [-10.679383, 8.221089], - [-10.679988, 8.223861], - [-10.675416, 8.22125], - [-10.667083, 8.225416], - [-10.664583, 8.225417], - [-10.662917, 8.227917], - [-10.662916, 8.234585], - [-10.659479, 8.234586], - [-10.657981, 8.237179], - [-10.657916, 8.237083], - [-10.654582, 8.236249], - [-10.651249, 8.232917], - [-10.63625, 8.232917], - [-10.63125, 8.237917], - [-10.631478, 8.241351], - [-10.62625, 8.241352], - [-10.626249, 8.24875], - [-10.61625, 8.252083], - [-10.615417, 8.252917], - [-10.614848, 8.25519], - [-10.615398, 8.255453], - [-10.615875, 8.255799], - [-10.612916, 8.265416], - [-10.611249, 8.265416], - [-10.602082, 8.25875], - [-10.599583, 8.25875], - [-10.597916, 8.26125], - [-10.596249, 8.266249], - [-10.59375, 8.26875], - [-10.593749, 8.270416], - [-10.59125, 8.27125], - [-10.589583, 8.27375], - [-10.589582, 8.275354], - [-10.588885, 8.275163], - [-10.587317, 8.275329], - [-10.586281, 8.275685], - [-10.586245, 8.2757], - [-10.585375, 8.275898], - [-10.584279, 8.276051], - [-10.583875, 8.275982], - [-10.583612, 8.276458], - [-10.583462, 8.276447], - [-10.583008, 8.276209], - [-10.582378, 8.276021], - [-10.5821, 8.275914], - [-10.581889, 8.275907], - [-10.581586, 8.275827], - [-10.580575, 8.275527], - [-10.580364, 8.275531], - [-10.579858, 8.275704], - [-10.579441, 8.275746], - [-10.579862, 8.273716], - [-10.579629, 8.272813], - [-10.579211, 8.272075], - [-10.578894, 8.27161], - [-10.578407, 8.271868], - [-10.57819, 8.272292], - [-10.577912, 8.272423], - [-10.578006, 8.272512], - [-10.577754, 8.273025], - [-10.577723, 8.273099], - [-10.577267, 8.273442], - [-10.576884, 8.274021], - [-10.576271, 8.274248], - [-10.575452, 8.273691], - [-10.574355, 8.276039], - [-10.573305, 8.275556], - [-10.573201, 8.274039], - [-10.572778, 8.273198], - [-10.572434, 8.272877], - [-10.57213, 8.272798], - [-10.571382, 8.273333], - [-10.570851, 8.274015], - [-10.570786, 8.274444], - [-10.57039, 8.274414], - [-10.570301, 8.275258], - [-10.570276, 8.275632], - [-10.570569, 8.275687], - [-10.570545, 8.276378], - [-10.570452, 8.276481], - [-10.569868, 8.277196], - [-10.569649, 8.277647], - [-10.569662, 8.277794], - [-10.57054, 8.277881], - [-10.570576, 8.277882], - [-10.570773, 8.278516], - [-10.570876, 8.278526], - [-10.57095, 8.278966], - [-10.571067, 8.279897], - [-10.57136, 8.280288], - [-10.571923, 8.280764], - [-10.572763, 8.281127], - [-10.574128, 8.281835], - [-10.573642, 8.282455], - [-10.573427, 8.283104], - [-10.573404, 8.283195], - [-10.57335, 8.284268], - [-10.573714, 8.285407], - [-10.573667, 8.286005], - [-10.573276, 8.287091], - [-10.573391, 8.287668], - [-10.573765, 8.288502], - [-10.574127, 8.289432], - [-10.575086, 8.290914], - [-10.575147, 8.292492], - [-10.575204, 8.292669], - [-10.575422, 8.292911], - [-10.57625, 8.292083], - [-10.580416, 8.29125], - [-10.58125, 8.29125], - [-10.582917, 8.296249], - [-10.58375, 8.29625], - [-10.587916, 8.302084], - [-10.589583, 8.307083], - [-10.600416, 8.307084], - [-10.60125, 8.30625], - [-10.602836, 8.306778], - [-10.602837, 8.30678], - [-10.602813, 8.306815], - [-10.602475, 8.307904], - [-10.602299, 8.30931], - [-10.602416, 8.309872], - [-10.602534, 8.310234], - [-10.602548, 8.311346], - [-10.604582, 8.315417], - [-10.604583, 8.317916], - [-10.615416, 8.322916], - [-10.612083, 8.329584], - [-10.612083, 8.333251], - [-10.6333, 8.3346], - [-10.6567, 8.3409], - [-10.673999, 8.3409], - [-10.687899, 8.322599], - [-10.6914, 8.3079], - [-10.697599, 8.303299], - [-10.7002, 8.293499], - [-10.7007, 8.2733], - [-10.705899, 8.272199] - ] - ], - "type": "Polygon" - }, - "id": 166, - "properties": { - "cc:admin:id": ["77"], - "cc:oBld:total": 3832, - "cc:pop:fifteen-to-twenty-four": 3246.3400103686877, - "cc:pop:grid3-total": 15156.352240212178, - "cc:pop:kontur-total": 20242.071397047403, - "cc:pop:men": 8247.211263277144, - "cc:pop:sixty-plus": 924.1277104516164, - "cc:pop:total": 17354.150493359783, - "cc:pop:under-five": 2663.638467518464, - "cc:pop:women": 9106.939230082635, - "cc:pop:women-fiften-to-forty-nine": 4552.14798209086, - "cc:pop:wp-total": 15299.539638036527, - "cc:pop:wp-total-UN": 17751.105806612282, - "cc:id": "166", - "cc:Name": "Jokibu MCHP", - "cc:site": [-10.5741, 8.2761], - "user:parentName": "Peje West", - "user:code": "OU_204926", - "user:orgUnitId": "f7yRhIeFn1k", - "user:level": "4", - "user:parentId": "pmxZm7klXBy" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.6625, 7.85997], - [-11.658493, 7.859866], - [-11.656077, 7.860073], - [-11.652158, 7.859766], - [-11.65102, 7.859997], - [-11.650327, 7.860219], - [-11.648148, 7.86142], - [-11.646668, 7.862503], - [-11.646471, 7.862889], - [-11.644577, 7.863196], - [-11.643724, 7.863706], - [-11.642661, 7.863975], - [-11.642661, 7.863974], - [-11.643248, 7.863529], - [-11.643257, 7.863179], - [-11.638382, 7.865098], - [-11.637288, 7.865041], - [-11.636775, 7.865125], - [-11.636698, 7.865263], - [-11.636646, 7.865101], - [-11.634549, 7.865781], - [-11.632431, 7.865695], - [-11.628774, 7.86691], - [-11.628435, 7.867509], - [-11.628076, 7.867403], - [-11.62758, 7.866307], - [-11.627222, 7.86613], - [-11.626557, 7.866156], - [-11.623404, 7.867209], - [-11.623275, 7.867432], - [-11.621183, 7.867882], - [-11.618661, 7.868916], - [-11.617574, 7.869534], - [-11.616632, 7.869665], - [-11.616556, 7.870079], - [-11.616391, 7.870172], - [-11.616546, 7.870375], - [-11.616401, 7.870744], - [-11.615221, 7.870269], - [-11.614991, 7.870372], - [-11.614788, 7.86993], - [-11.614502, 7.869961], - [-11.613781, 7.870402], - [-11.613137, 7.87029], - [-11.613054, 7.871165], - [-11.61258, 7.871172], - [-11.612057, 7.87178], - [-11.610435, 7.872135], - [-11.610118, 7.871545], - [-11.608983, 7.871346], - [-11.607785, 7.870662], - [-11.606684, 7.869759], - [-11.606307, 7.869178], - [-11.606192, 7.868693], - [-11.605796, 7.8682], - [-11.605393, 7.868206], - [-11.604223, 7.868711], - [-11.604241, 7.868898], - [-11.602222, 7.870047], - [-11.601265, 7.87097], - [-11.600848, 7.871184], - [-11.6014, 7.8713], - [-11.604999, 7.872799], - [-11.6077, 7.8735], - [-11.6115, 7.8738], - [-11.6164, 7.873899], - [-11.621199, 7.8738], - [-11.625399, 7.8733], - [-11.6313, 7.870999], - [-11.6338, 7.870399], - [-11.639099, 7.8698], - [-11.641199, 7.8693], - [-11.6433, 7.868199], - [-11.6476, 7.864899], - [-11.651099, 7.8631], - [-11.6586, 7.861499], - [-11.662439, 7.860323], - [-11.6625, 7.85997] - ] - ], - "type": "Polygon" - }, - "id": 167, - "properties": { - "cc:admin:id": ["40"], - "cc:oBld:total": 0, - "cc:pop:fifteen-to-twenty-four": 192.96166453953361, - "cc:pop:grid3-total": 1407.9165377949826, - "cc:pop:kontur-total": 1141.787041361203, - "cc:pop:men": 526.9206616177484, - "cc:pop:sixty-plus": 77.98399414586534, - "cc:pop:total": 1079.7919238962495, - "cc:pop:under-five": 176.96547314046668, - "cc:pop:women": 552.871262278501, - "cc:pop:women-fiften-to-forty-nine": 264.94862408785536, - "cc:pop:wp-total": 862.85460332102, - "cc:pop:wp-total-UN": 1000.8327523814573, - "cc:id": "167", - "cc:Name": "Jormu MCHP", - "cc:site": [-11.6279, 7.8716], - "user:parentName": "Baoma", - "user:code": "OU_579", - "user:orgUnitId": "RzgSFJ9E46G", - "user:level": "4", - "user:parentId": "vWbkYPRmKyS" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.241249, 8.245416], - [-12.240417, 8.23125], - [-12.239582, 8.22875], - [-12.236249, 8.22625], - [-12.234583, 8.226249], - [-12.234582, 8.219584], - [-12.232916, 8.217084], - [-12.225417, 8.21375], - [-12.224582, 8.212084], - [-12.219583, 8.209583], - [-12.217916, 8.19875], - [-12.213749, 8.195417], - [-12.204583, 8.196249], - [-12.199584, 8.196249], - [-12.201249, 8.192916], - [-12.199582, 8.185417], - [-12.198749, 8.185417], - [-12.191766, 8.187512], - [-12.1918, 8.1876], - [-12.192099, 8.190999], - [-12.1917, 8.193499], - [-12.1898, 8.197899], - [-12.189099, 8.2007], - [-12.1889, 8.2045], - [-12.189099, 8.208499], - [-12.189799, 8.212199], - [-12.1918, 8.2167], - [-12.1925, 8.2194], - [-12.193099, 8.224199], - [-12.1936, 8.226599], - [-12.1954, 8.2294], - [-12.201299, 8.235699], - [-12.203199, 8.238499], - [-12.2042, 8.2417], - [-12.2045, 8.2455], - [-12.204699, 8.261299], - [-12.204299, 8.264999], - [-12.203099, 8.2676], - [-12.199199, 8.2705], - [-12.1939, 8.275199], - [-12.192, 8.277399], - [-12.190799, 8.2794], - [-12.189999, 8.2817], - [-12.1898, 8.284599], - [-12.189899, 8.294699], - [-12.189699, 8.2987], - [-12.189099, 8.3015], - [-12.1868, 8.307299], - [-12.1862, 8.311499], - [-12.186299, 8.315399], - [-12.186699, 8.318299], - [-12.187599, 8.320899], - [-12.189, 8.323], - [-12.1945, 8.329899], - [-12.200299, 8.332199], - [-12.204599, 8.333099], - [-12.215099, 8.333999], - [-12.219199, 8.334999], - [-12.225699, 8.337899], - [-12.227082, 8.333749], - [-12.22625, 8.330416], - [-12.227916, 8.325417], - [-12.226249, 8.324583], - [-12.224583, 8.322084], - [-12.225172, 8.320314], - [-12.225869, 8.319919], - [-12.224583, 8.315417], - [-12.232082, 8.315416], - [-12.230417, 8.305416], - [-12.234583, 8.297084], - [-12.241249, 8.295416], - [-12.238749, 8.28625], - [-12.237916, 8.286249], - [-12.236249, 8.284584], - [-12.234824, 8.284583], - [-12.233138, 8.281661], - [-12.236583, 8.275692], - [-12.238939, 8.27689], - [-12.239308, 8.277104], - [-12.23875, 8.273749], - [-12.23875, 8.26125], - [-12.23625, 8.25125], - [-12.238749, 8.247917], - [-12.23875, 8.247083], - [-12.241249, 8.245416] - ] - ], - "type": "Polygon" - }, - "id": 168, - "properties": { - "cc:admin:id": ["23"], - "cc:oBld:total": 108, - "cc:pop:fifteen-to-twenty-four": 1487.8932345215185, - "cc:pop:grid3-total": 7869.19134556209, - "cc:pop:kontur-total": 8799.802752080454, - "cc:pop:men": 3943.011459098352, - "cc:pop:sixty-plus": 616.3013738493094, - "cc:pop:total": 8333.192162276086, - "cc:pop:under-five": 1364.8181308064063, - "cc:pop:women": 4390.180703177733, - "cc:pop:women-fiften-to-forty-nine": 2126.1200246043695, - "cc:pop:wp-total": 5686.989032059395, - "cc:pop:wp-total-UN": 6580.966251080872, - "cc:id": "168", - "cc:Name": "Juma MCHP", - "cc:site": [-12.205, 8.2552], - "user:parentName": "Kori", - "user:code": "OU_247001", - "user:orgUnitId": "V6QWyB0KqvP", - "user:level": "4", - "user:parentId": "nV3OkyzF4US" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.28791, 7.947686], - [-12.28381, 7.947685], - [-12.279904, 7.94092], - [-12.276736, 7.940919], - [-12.27678, 7.940227], - [-12.274374, 7.93606], - [-12.266562, 7.93606], - [-12.262656, 7.942825], - [-12.254844, 7.942825], - [-12.253577, 7.940633], - [-12.25375, 7.940416], - [-12.25375, 7.934981], - [-12.253519, 7.934583], - [-12.245708, 7.934582], - [-12.244504, 7.932498], - [-12.245345, 7.93013], - [-12.245633, 7.928232], - [-12.245617, 7.926761], - [-12.245145, 7.924027], - [-12.237917, 7.924584], - [-12.23399, 7.929294], - [-12.231529, 7.929294], - [-12.23173, 7.926667], - [-12.224034, 7.926667], - [-12.220127, 7.933433], - [-12.222234, 7.937083], - [-12.214583, 7.937083], - [-12.213589, 7.934898], - [-12.213449, 7.935135], - [-12.21446, 7.93745], - [-12.212916, 7.942083], - [-12.210416, 7.944584], - [-12.207663, 7.945134], - [-12.205164, 7.940806], - [-12.204294, 7.940805], - [-12.204377, 7.938392], - [-12.204908, 7.936726], - [-12.204351, 7.93484], - [-12.20442, 7.93385], - [-12.204002, 7.933447], - [-12.203575, 7.932515], - [-12.19875, 7.934583], - [-12.200416, 7.945416], - [-12.198749, 7.947084], - [-12.190417, 7.947083], - [-12.190417, 7.937084], - [-12.192082, 7.929584], - [-12.185008, 7.930998], - [-12.183744, 7.928379], - [-12.177917, 7.927084], - [-12.175417, 7.932083], - [-12.17375, 7.932917], - [-12.172082, 7.937916], - [-12.167083, 7.937083], - [-12.16375, 7.934584], - [-12.162083, 7.930417], - [-12.162082, 7.929653], - [-12.16125, 7.929519], - [-12.161249, 7.927384], - [-12.159792, 7.9275], - [-12.159476, 7.927809], - [-12.15875, 7.927084], - [-12.158749, 7.926518], - [-12.157426, 7.927903], - [-12.154365, 7.929956], - [-12.15371, 7.930022], - [-12.149612, 7.929242], - [-12.14899, 7.929423], - [-12.147705, 7.930252], - [-12.14637, 7.93082], - [-12.145391, 7.932356], - [-12.145514, 7.933768], - [-12.145772, 7.9345], - [-12.14773, 7.935051], - [-12.150326, 7.936275], - [-12.151181, 7.937335], - [-12.151321, 7.938205], - [-12.151069, 7.939093], - [-12.1536, 7.94], - [-12.157599, 7.940499], - [-12.164799, 7.940599], - [-12.168799, 7.940999], - [-12.1725, 7.9424], - [-12.1755, 7.9447], - [-12.178299, 7.947499], - [-12.180199, 7.949699], - [-12.181799, 7.952099], - [-12.1836, 7.956], - [-12.186799, 7.961399], - [-12.188599, 7.962899], - [-12.1941, 7.9662], - [-12.202199, 7.969799], - [-12.207299, 7.970499], - [-12.213099, 7.970599], - [-12.217999, 7.9705], - [-12.222999, 7.9697], - [-12.227899, 7.9674], - [-12.2311, 7.966099], - [-12.236199, 7.9636], - [-12.241299, 7.9623], - [-12.246599, 7.9601], - [-12.249299, 7.9594], - [-12.2522, 7.9592], - [-12.264999, 7.959199], - [-12.2688, 7.956699], - [-12.2715, 7.955799], - [-12.278699, 7.954999], - [-12.281899, 7.9534], - [-12.2831, 7.952399], - [-12.28791, 7.947686] - ] - ], - "type": "Polygon" - }, - "id": 169, - "properties": { - "cc:admin:id": ["140"], - "cc:oBld:total": 2, - "cc:pop:fifteen-to-twenty-four": 89.75579020793798, - "cc:pop:grid3-total": 1362.3703268948163, - "cc:pop:kontur-total": 455.272495238195, - "cc:pop:men": 223.91615642337555, - "cc:pop:sixty-plus": 32.080434693831116, - "cc:pop:total": 477.9901411882097, - "cc:pop:under-five": 86.45987817554202, - "cc:pop:women": 254.0739847648342, - "cc:pop:women-fiften-to-forty-nine": 119.54031286937312, - "cc:pop:wp-total": 666.6691833460735, - "cc:pop:wp-total-UN": 774.9476780477876, - "cc:id": "169", - "cc:Name": "Kabaima MCHP", - "cc:site": [-12.1866, 7.9578], - "user:parentName": "Dasse", - "user:code": "OU_247020", - "user:orgUnitId": "EQUwHqZOb5L", - "user:level": "4", - "user:parentId": "RndxKqQGzUl" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.261, 7.641699], - [-12.260999, 7.6383], - [-12.2596, 7.6345], - [-12.2549, 7.628099], - [-12.2538, 7.6241], - [-12.253599, 7.619899], - [-12.253473, 7.611072], - [-12.252429, 7.61069], - [-12.250326, 7.608691], - [-12.249392, 7.608001], - [-12.249029, 7.607915], - [-12.248491, 7.608719], - [-12.248059, 7.608427], - [-12.245741, 7.607899], - [-12.245066, 7.607108], - [-12.244847, 7.606157], - [-12.244921, 7.6053], - [-12.24538, 7.603648], - [-12.247435, 7.601669], - [-12.247654, 7.601095], - [-12.247394, 7.599677], - [-12.246832, 7.598962], - [-12.248095, 7.598864], - [-12.247894, 7.598566], - [-12.246343, 7.597469], - [-12.245544, 7.597205], - [-12.24443, 7.59712], - [-12.243261, 7.597246], - [-12.24245, 7.597577], - [-12.241406, 7.598345], - [-12.240243, 7.60001], - [-12.238867, 7.604331], - [-12.238261, 7.605349], - [-12.237999, 7.605471], - [-12.237712, 7.605439], - [-12.236794, 7.604827], - [-12.232605, 7.603694], - [-12.232077, 7.603348], - [-12.229525, 7.600842], - [-12.228069, 7.600014], - [-12.227283, 7.599881], - [-12.225644, 7.600236], - [-12.223585, 7.601577], - [-12.221767, 7.603367], - [-12.220476, 7.603488], - [-12.219342, 7.602971], - [-12.217637, 7.603341], - [-12.214818, 7.60301], - [-12.214113, 7.603787], - [-12.21337, 7.604987], - [-12.212903, 7.605497], - [-12.212618, 7.60555], - [-12.210582, 7.605017], - [-12.209514, 7.604041], - [-12.209121, 7.603287], - [-12.207989, 7.602317], - [-12.207712, 7.601862], - [-12.207601, 7.600545], - [-12.207728, 7.599287], - [-12.207363, 7.598595], - [-12.206832, 7.598122], - [-12.206079, 7.597933], - [-12.204309, 7.597926], - [-12.203301, 7.597307], - [-12.202857, 7.596567], - [-12.202227, 7.596071], - [-12.201771, 7.595833], - [-12.201606, 7.596487], - [-12.20087, 7.596176], - [-12.199833, 7.596156], - [-12.196519, 7.596767], - [-12.194553, 7.596814], - [-12.192405, 7.594657], - [-12.192053, 7.592943], - [-12.191758, 7.592514], - [-12.191343, 7.592338], - [-12.189323, 7.592085], - [-12.187088, 7.590995], - [-12.186414, 7.59118], - [-12.185823, 7.591678], - [-12.185182, 7.592531], - [-12.184014, 7.595013], - [-12.182839, 7.596478], - [-12.182, 7.598749], - [-12.18056, 7.59875], - [-12.180525, 7.602271], - [-12.182304, 7.602628], - [-12.182548, 7.603845], - [-12.183185, 7.606051], - [-12.183934, 7.607116], - [-12.184187, 7.60789], - [-12.184185, 7.608405], - [-12.185416, 7.610768], - [-12.185416, 7.613749], - [-12.184583, 7.614583], - [-12.184388, 7.614584], - [-12.184423, 7.615052], - [-12.185682, 7.619006], - [-12.185619, 7.620729], - [-12.185898, 7.621425], - [-12.186974, 7.620888], - [-12.187345, 7.621694], - [-12.188799, 7.623423], - [-12.190021, 7.6257], - [-12.19065, 7.625956], - [-12.190695, 7.62613], - [-12.189973, 7.627604], - [-12.188532, 7.629479], - [-12.186705, 7.630621], - [-12.18627, 7.631663], - [-12.18627, 7.632761], - [-12.185854, 7.634164], - [-12.185298, 7.634702], - [-12.183989, 7.633721], - [-12.183816, 7.635572], - [-12.183315, 7.637083], - [-12.185004, 7.637084], - [-12.185005, 7.637085], - [-12.184588, 7.637486], - [-12.183953, 7.637809], - [-12.183756, 7.639914], - [-12.182995, 7.640747], - [-12.182236, 7.641887], - [-12.182207, 7.642171], - [-12.183269, 7.643389], - [-12.183559, 7.644277], - [-12.183961, 7.646833], - [-12.185108, 7.649189], - [-12.185974, 7.651464], - [-12.1871, 7.652568], - [-12.187634, 7.65279], - [-12.188858, 7.652667], - [-12.189357, 7.652779], - [-12.190757, 7.654745], - [-12.191073, 7.656202], - [-12.190972, 7.656521], - [-12.190191, 7.657559], - [-12.194899, 7.659699], - [-12.1983, 7.6619], - [-12.209399, 7.671699], - [-12.215799, 7.675999], - [-12.217999, 7.677799], - [-12.2211, 7.6809], - [-12.2248, 7.685399], - [-12.233899, 7.6834], - [-12.2358, 7.682699], - [-12.2387, 7.680799], - [-12.245, 7.674699], - [-12.2489, 7.669899], - [-12.2511, 7.665499], - [-12.2537, 7.661099], - [-12.256899, 7.6537], - [-12.2585, 7.647899], - [-12.261, 7.641699] - ] - ], - "type": "Polygon" - }, - "id": 170, - "properties": { - "cc:admin:id": ["42"], - "cc:oBld:total": 4, - "cc:pop:fifteen-to-twenty-four": 626.2252508376175, - "cc:pop:grid3-total": 3007.8726719077517, - "cc:pop:kontur-total": 3256.7915112484707, - "cc:pop:men": 1735.3348089944593, - "cc:pop:sixty-plus": 279.0298023654667, - "cc:pop:total": 3621.574112286783, - "cc:pop:under-five": 589.7860596251336, - "cc:pop:women": 1886.239303292323, - "cc:pop:women-fiften-to-forty-nine": 917.5860553414634, - "cc:pop:wp-total": 3347.498737503392, - "cc:pop:wp-total-UN": 3886.19425981556, - "cc:id": "170", - "cc:Name": "Kabati CHP", - "cc:site": [-12.2472, 7.6685], - "user:parentName": "Jong", - "user:code": "OU_197396", - "user:orgUnitId": "Xk2fvz4aTBU", - "user:level": "4", - "user:parentId": "VCtF1DbspR5" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.324346, 9.617248], - [-12.32376, 9.616234], - [-12.323143, 9.616139], - [-12.322659, 9.615513], - [-12.322519, 9.614859], - [-12.321657, 9.614009], - [-12.321489, 9.613314], - [-12.321495, 9.612311], - [-12.320441, 9.610482], - [-12.322451, 9.606998], - [-12.322479, 9.606922], - [-12.322173, 9.605202], - [-12.32244, 9.60442], - [-12.323609, 9.603529], - [-12.323922, 9.602982], - [-12.320441, 9.596951], - [-12.322775, 9.592905], - [-12.312917, 9.592082], - [-12.309583, 9.587916], - [-12.309583, 9.585747], - [-12.310185, 9.585221], - [-12.310825, 9.584156], - [-12.311158, 9.582834], - [-12.311466, 9.581596], - [-12.311844, 9.580998], - [-12.311328, 9.580103], - [-12.312082, 9.577083], - [-12.313749, 9.575416], - [-12.313749, 9.572917], - [-12.310416, 9.569582], - [-12.30603, 9.561542], - [-12.304982, 9.562159], - [-12.301365, 9.563372], - [-12.299541, 9.563701], - [-12.297056, 9.563483], - [-12.293992, 9.562117], - [-12.293409, 9.561992], - [-12.29207, 9.562177], - [-12.29102, 9.562604], - [-12.290725, 9.561124], - [-12.290868, 9.561057], - [-12.292346, 9.5607], - [-12.292991, 9.560988], - [-12.294376, 9.560981], - [-12.29545, 9.560393], - [-12.295991, 9.560471], - [-12.296529, 9.560614], - [-12.297513, 9.561784], - [-12.298307, 9.562133], - [-12.300422, 9.557905], - [-12.300132, 9.557812], - [-12.29907, 9.556231], - [-12.298705, 9.555374], - [-12.297821, 9.554753], - [-12.296968, 9.554463], - [-12.296397, 9.553983], - [-12.298273, 9.552771], - [-12.2927, 9.553399], - [-12.2901, 9.553999], - [-12.285499, 9.5559], - [-12.281899, 9.5565], - [-12.2742, 9.556799], - [-12.2718, 9.557399], - [-12.268599, 9.5593], - [-12.2603, 9.567499], - [-12.258099, 9.5694], - [-12.255399, 9.571], - [-12.2491, 9.572599], - [-12.244699, 9.5746], - [-12.241899, 9.5752], - [-12.238999, 9.5754], - [-12.234099, 9.575399], - [-12.2192, 9.5752], - [-12.215299, 9.5754], - [-12.2125, 9.575899], - [-12.21, 9.577099], - [-12.2051, 9.580999], - [-12.2026, 9.582199], - [-12.199099, 9.5829], - [-12.194499, 9.583099], - [-12.189899, 9.582999], - [-12.1872, 9.5826], - [-12.184699, 9.581699], - [-12.182299, 9.579499], - [-12.1801, 9.575], - [-12.1781, 9.5714], - [-12.1768, 9.5682], - [-12.1745, 9.5639], - [-12.1731, 9.5607], - [-12.171499, 9.558399], - [-12.169, 9.5557], - [-12.166699, 9.554], - [-12.164499, 9.553299], - [-12.1614, 9.5531], - [-12.157999, 9.554], - [-12.1502, 9.558199], - [-12.144, 9.562899], - [-12.1403, 9.564799], - [-12.1384, 9.566399], - [-12.136999, 9.5683], - [-12.135099, 9.5724], - [-12.1324, 9.577299], - [-12.130099, 9.5827], - [-12.127099, 9.586299], - [-12.1202, 9.589699], - [-12.116599, 9.5919], - [-12.112199, 9.5958], - [-12.1083, 9.600199], - [-12.106199, 9.6039], - [-12.1035, 9.613899], - [-12.1014, 9.617599], - [-12.098599, 9.621], - [-12.0913, 9.628499], - [-12.0859, 9.633499], - [-12.082299, 9.636], - [-12.0771, 9.638699], - [-12.073499, 9.6401], - [-12.0621, 9.643499], - [-12.050199, 9.6447], - [-12.0459, 9.645699], - [-12.0433, 9.646999], - [-12.038845, 9.649794], - [-12.039582, 9.657916], - [-12.03777, 9.660334], - [-12.038816, 9.661136], - [-12.039017, 9.661713], - [-12.038974, 9.662089], - [-12.046053, 9.66209], - [-12.046124, 9.66221], - [-12.04917, 9.65988], - [-12.049865, 9.664678], - [-12.054915, 9.664678], - [-12.058821, 9.657913], - [-12.066634, 9.657912], - [-12.070541, 9.651147], - [-12.076898, 9.651147], - [-12.07663, 9.654638], - [-12.081792, 9.654639], - [-12.084438, 9.65922], - [-12.090416, 9.651252], - [-12.090417, 9.666249], - [-12.097916, 9.666249], - [-12.102916, 9.661249], - [-12.102098, 9.650614], - [-12.105696, 9.644381], - [-12.101791, 9.637615], - [-12.105696, 9.63085], - [-12.113509, 9.630849], - [-12.117415, 9.624084], - [-12.125227, 9.624083], - [-12.129135, 9.617318], - [-12.129921, 9.617318], - [-12.130064, 9.619167], - [-12.134713, 9.619168], - [-12.138619, 9.625933], - [-12.143693, 9.625934], - [-12.14375, 9.62625], - [-12.149582, 9.62625], - [-12.149811, 9.626068], - [-12.152572, 9.630849], - [-12.155095, 9.63085], - [-12.155586, 9.632148], - [-12.158482, 9.637245], - [-12.158987, 9.638528], - [-12.159019, 9.639692], - [-12.15872, 9.641123], - [-12.159806, 9.641123], - [-12.159934, 9.639002], - [-12.159772, 9.637797], - [-12.1595, 9.637039], - [-12.15898, 9.63625], - [-12.166249, 9.636249], - [-12.170416, 9.632916], - [-12.170747, 9.628612], - [-12.177781, 9.628612], - [-12.181688, 9.635377], - [-12.1895, 9.635377], - [-12.191428, 9.632038], - [-12.191429, 9.632038], - [-12.192083, 9.637916], - [-12.19625, 9.641249], - [-12.201249, 9.642082], - [-12.204582, 9.639583], - [-12.207083, 9.637083], - [-12.215841, 9.638543], - [-12.215574, 9.639912], - [-12.215774, 9.641839], - [-12.215671, 9.642082], - [-12.219582, 9.642083], - [-12.223749, 9.638749], - [-12.223972, 9.635413], - [-12.224091, 9.635412], - [-12.227998, 9.628647], - [-12.235809, 9.628647], - [-12.238586, 9.633455], - [-12.237917, 9.625417], - [-12.242082, 9.622082], - [-12.241574, 9.612924], - [-12.247198, 9.612924], - [-12.251104, 9.61969], - [-12.256648, 9.619689], - [-12.257083, 9.617082], - [-12.262972, 9.614466], - [-12.263692, 9.615794], - [-12.265301, 9.617742], - [-12.265688, 9.618935], - [-12.265978, 9.619382], - [-12.266309, 9.619555], - [-12.265163, 9.621246], - [-12.26533, 9.621348], - [-12.265672, 9.622811], - [-12.26558, 9.624069], - [-12.262102, 9.623514], - [-12.260955, 9.622919], - [-12.261176, 9.62378], - [-12.26213, 9.625508], - [-12.262193, 9.626358], - [-12.257228, 9.626359], - [-12.260417, 9.628749], - [-12.270416, 9.629582], - [-12.273518, 9.626481], - [-12.275603, 9.62648], - [-12.279511, 9.619715], - [-12.285514, 9.619715], - [-12.285456, 9.620916], - [-12.284913, 9.622484], - [-12.284805, 9.62331], - [-12.284901, 9.623951], - [-12.285214, 9.624582], - [-12.288861, 9.624582], - [-12.289191, 9.624014], - [-12.297002, 9.624014], - [-12.300655, 9.617689], - [-12.30125, 9.625416], - [-12.301895, 9.625933], - [-12.308048, 9.625933], - [-12.311955, 9.619167], - [-12.319582, 9.619167], - [-12.319583, 9.623749], - [-12.319372, 9.624013], - [-12.32044, 9.624013], - [-12.324346, 9.617248] - ] - ], - "type": "Polygon" - }, - "id": 171, - "properties": { - "cc:admin:id": ["131"], - "cc:oBld:total": 29, - "cc:pop:fifteen-to-twenty-four": 525.1319737814209, - "cc:pop:grid3-total": 3309.347336064002, - "cc:pop:kontur-total": 2878.2167774173367, - "cc:pop:men": 1412.9580250854708, - "cc:pop:sixty-plus": 206.40916253676238, - "cc:pop:total": 2926.164545272733, - "cc:pop:under-five": 468.44974742419134, - "cc:pop:women": 1513.206520187262, - "cc:pop:women-fiften-to-forty-nine": 731.5411363181832, - "cc:pop:wp-total": 2814.517647527424, - "cc:pop:wp-total-UN": 3259.2964561879216, - "cc:id": "171", - "cc:Name": "Kabba Ferry MCHP", - "cc:site": [-12.2184, 9.5834], - "user:parentName": "Sella Limba", - "user:code": "OU_193289", - "user:orgUnitId": "TWMVxJANJeU", - "user:level": "4", - "user:parentId": "j43EZb15rjI" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.949582, 8.989583], - [-11.945417, 8.984583], - [-11.945416, 8.983749], - [-11.944583, 8.98125], - [-11.947082, 8.978749], - [-11.947916, 8.974583], - [-11.947082, 8.97375], - [-11.946249, 8.973749], - [-11.942968, 8.972438], - [-11.942774, 8.972699], - [-11.936249, 8.971249], - [-11.935685, 8.96899], - [-11.935686, 8.968989], - [-11.935807, 8.969036], - [-11.936179, 8.969362], - [-11.93674, 8.969042], - [-11.940416, 8.95875], - [-11.937083, 8.957083], - [-11.927917, 8.957083], - [-11.926249, 8.960416], - [-11.92125, 8.964583], - [-11.921249, 8.968749], - [-11.912917, 8.968749], - [-11.911286, 8.967121], - [-11.908182, 8.969216], - [-11.90314, 8.970275], - [-11.900417, 8.977083], - [-11.900416, 8.980492], - [-11.899558, 8.980753], - [-11.900278, 8.981115], - [-11.900416, 8.98111], - [-11.900416, 8.985416], - [-11.897083, 8.98625], - [-11.895915, 8.988001], - [-11.896233, 8.988106], - [-11.897916, 8.989365], - [-11.897917, 8.990417], - [-11.902916, 8.997083], - [-11.900416, 9.000416], - [-11.892917, 8.99875], - [-11.894582, 9.004582], - [-11.894582, 9.007916], - [-11.890417, 9.007917], - [-11.890173, 9.008886], - [-11.889859, 9.008717], - [-11.889681, 9.00898], - [-11.889528, 9.008823], - [-11.889388, 9.008685], - [-11.889094, 9.008803], - [-11.888684, 9.00904], - [-11.887983, 9.009123], - [-11.887243, 9.009685], - [-11.886888, 9.010775], - [-11.88701, 9.011679], - [-11.879583, 9.012917], - [-11.882082, 9.017082], - [-11.885416, 9.020417], - [-11.884583, 9.022917], - [-11.884582, 9.032082], - [-11.880731, 9.032083], - [-11.881127, 9.032927], - [-11.881501, 9.03313], - [-11.882269, 9.034347], - [-11.883276, 9.034593], - [-11.883719, 9.035226], - [-11.884066, 9.035659], - [-11.882824, 9.037312], - [-11.881903, 9.037886], - [-11.878835, 9.040685], - [-11.878624, 9.041635], - [-11.877355, 9.043565], - [-11.877256, 9.045146], - [-11.87702, 9.04618], - [-11.875946, 9.047451], - [-11.874968, 9.048156], - [-11.87455, 9.048813], - [-11.873483, 9.050275], - [-11.873518, 9.050888], - [-11.873829, 9.051485], - [-11.873704, 9.0533], - [-11.873937, 9.053889], - [-11.873708, 9.055347], - [-11.873284, 9.056416], - [-11.873235, 9.057111], - [-11.873335, 9.057905], - [-11.874131, 9.059555], - [-11.874943, 9.060263], - [-11.875381, 9.060267], - [-11.876448, 9.061221], - [-11.876584, 9.062938], - [-11.876221, 9.063915], - [-11.875843, 9.064763], - [-11.875822, 9.065391], - [-11.875822, 9.065488], - [-11.875946, 9.066313], - [-11.876827, 9.067726], - [-11.880099, 9.0659], - [-11.8832, 9.064599], - [-11.8853, 9.063199], - [-11.8892, 9.059999], - [-11.8912, 9.058699], - [-11.8954, 9.056499], - [-11.8994, 9.053099], - [-11.918099, 9.0344], - [-11.920199, 9.0329], - [-11.9248, 9.030699], - [-11.932499, 9.0266], - [-11.937499, 9.0226], - [-11.9395, 9.021299], - [-11.947099, 9.0176], - [-11.947916, 9.017622], - [-11.947916, 9.016647], - [-11.947754, 9.016708], - [-11.946999, 9.016728], - [-11.945417, 9.016103], - [-11.945417, 9.014123], - [-11.945418, 9.014123], - [-11.945539, 9.014167], - [-11.945763, 9.01443], - [-11.946074, 9.014636], - [-11.947082, 9.014552], - [-11.947083, 9.004583], - [-11.948749, 9.002916], - [-11.948181, 9.00007], - [-11.947696, 9.000092], - [-11.945521, 8.999981], - [-11.944421, 8.999584], - [-11.943665, 8.99907], - [-11.942708, 8.998888], - [-11.949582, 8.991249], - [-11.949582, 8.989583] - ] - ], - "type": "Polygon" - }, - "id": 172, - "properties": { - "cc:admin:id": ["113"], - "cc:oBld:total": 68, - "cc:pop:fifteen-to-twenty-four": 657.0727981926939, - "cc:pop:grid3-total": 2789.2023297343935, - "cc:pop:kontur-total": 3200.4696490861866, - "cc:pop:men": 1553.702526247147, - "cc:pop:sixty-plus": 228.76170519713352, - "cc:pop:total": 3379.571868106276, - "cc:pop:under-five": 574.3426314375115, - "cc:pop:women": 1825.8693418591283, - "cc:pop:women-fiften-to-forty-nine": 863.2686759097959, - "cc:pop:wp-total": 3122.1622180645204, - "cc:pop:wp-total-UN": 3625.5425001111385, - "cc:id": "172", - "cc:Name": "Kabonka MCHP", - "cc:site": [-11.9119, 9.0001], - "user:parentName": "Safroko Limba", - "user:code": "OU_193274", - "user:orgUnitId": "wfGRNqXqf92", - "user:level": "4", - "user:parentId": "XG8HGAbrbbL" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.992082, 9.05875], - [-11.985417, 9.056249], - [-11.982167, 9.053001], - [-11.981848, 9.053414], - [-11.981078, 9.053829], - [-11.980303, 9.053904], - [-11.979112, 9.053498], - [-11.978741, 9.052605], - [-11.978804, 9.05163], - [-11.979217, 9.050504], - [-11.978775, 9.049979], - [-11.978048, 9.049827], - [-11.976872, 9.050144], - [-11.975934, 9.049874], - [-11.975381, 9.04892], - [-11.975624, 9.047292], - [-11.971607, 9.04863], - [-11.971397, 9.04948], - [-11.970915, 9.049577], - [-11.97074, 9.049446], - [-11.97125, 9.047916], - [-11.972082, 9.040417], - [-11.969675, 9.038611], - [-11.969016, 9.039457], - [-11.968264, 9.040411], - [-11.967637, 9.038666], - [-11.966649, 9.037812], - [-11.965742, 9.037235], - [-11.964583, 9.03722], - [-11.964583, 9.036249], - [-11.965283, 9.027839], - [-11.9612, 9.0237], - [-11.9584, 9.0216], - [-11.950599, 9.0177], - [-11.9471, 9.0176], - [-11.9395, 9.021299], - [-11.937499, 9.0226], - [-11.932499, 9.0266], - [-11.9248, 9.030699], - [-11.920199, 9.0329], - [-11.918099, 9.0344], - [-11.914583, 9.037916], - [-11.91875, 9.042082], - [-11.925416, 9.042083], - [-11.925416, 9.042917], - [-11.917083, 9.04375], - [-11.912917, 9.049582], - [-11.920416, 9.057917], - [-11.920417, 9.066249], - [-11.922083, 9.06625], - [-11.927686, 9.069752], - [-11.92881, 9.06762], - [-11.932082, 9.069582], - [-11.932083, 9.074582], - [-11.933963, 9.077717], - [-11.934131, 9.077647], - [-11.936249, 9.085416], - [-11.934309, 9.088004], - [-11.933932, 9.088656], - [-11.933819, 9.088657], - [-11.933749, 9.08875], - [-11.929583, 9.089583], - [-11.928749, 9.093749], - [-11.924583, 9.097083], - [-11.924583, 9.105416], - [-11.925417, 9.105417], - [-11.929902, 9.113641], - [-11.925207, 9.117928], - [-11.921799, 9.120146], - [-11.921334, 9.120386], - [-11.927082, 9.125416], - [-11.927293, 9.125375], - [-11.929963, 9.13], - [-11.930576, 9.13], - [-11.930417, 9.127916], - [-11.933749, 9.124583], - [-11.937489, 9.122713], - [-11.937215, 9.121787], - [-11.937268, 9.121165], - [-11.946249, 9.120416], - [-11.947916, 9.117082], - [-11.947083, 9.111249], - [-11.95297, 9.105363], - [-11.955147, 9.10841], - [-11.956361, 9.110004], - [-11.957773, 9.111254], - [-11.96125, 9.107083], - [-11.962083, 9.107083], - [-11.964015, 9.109015], - [-11.964144, 9.108881], - [-11.964145, 9.108881], - [-11.96413, 9.10913], - [-11.96625, 9.111249], - [-11.967082, 9.111249], - [-11.972082, 9.10375], - [-11.972083, 9.102916], - [-11.972916, 9.102082], - [-11.972917, 9.094583], - [-11.977916, 9.090416], - [-11.970417, 9.082917], - [-11.97125, 9.080417], - [-11.976249, 9.075417], - [-11.982082, 9.077082], - [-11.984582, 9.075416], - [-11.984582, 9.072083], - [-11.981972, 9.06686], - [-11.981627, 9.066688], - [-11.981815, 9.066052], - [-11.982621, 9.064681], - [-11.990416, 9.062082], - [-11.992082, 9.05875] - ] - ], - "type": "Polygon" - }, - "id": 173, - "properties": { - "cc:admin:id": ["7"], - "cc:oBld:total": 41, - "cc:pop:fifteen-to-twenty-four": 518.7571925861607, - "cc:pop:grid3-total": 2592.2399887737706, - "cc:pop:kontur-total": 2957.2511912435375, - "cc:pop:men": 1307.4326094708056, - "cc:pop:sixty-plus": 159.5574108076469, - "cc:pop:total": 2847.8626328055407, - "cc:pop:under-five": 446.2596354581936, - "cc:pop:women": 1540.4300233347358, - "cc:pop:women-fiften-to-forty-nine": 762.9652154938177, - "cc:pop:wp-total": 2128.2029181056105, - "cc:pop:wp-total-UN": 2465.6169149586776, - "cc:id": "173", - "cc:Name": "Kagbaneh CHP", - "cc:site": [-11.9536, 9.0677], - "user:parentName": "Biriwa", - "user:code": "OU_193230", - "user:orgUnitId": "duGLGssecoD", - "user:level": "4", - "user:parentId": "fwH9ipvXde9" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.181299, 9.2013], - [-12.1781, 9.196], - [-12.176399, 9.192099], - [-12.1741, 9.1878], - [-12.173499, 9.185099], - [-12.1732, 9.182199], - [-12.173199, 9.179299], - [-12.172899, 9.135399], - [-12.172799, 9.132499], - [-12.171899, 9.1289], - [-12.17, 9.1258], - [-12.1676, 9.123], - [-12.1642, 9.1199], - [-12.161899, 9.1184], - [-12.157899, 9.1173], - [-12.153, 9.117399], - [-12.15, 9.118299], - [-12.148099, 9.1195], - [-12.143799, 9.123], - [-12.138399, 9.126], - [-12.1328, 9.130499], - [-12.1289, 9.1333], - [-12.125799, 9.1376], - [-12.117699, 9.1461], - [-12.1153, 9.148899], - [-12.1141, 9.150799], - [-12.113399, 9.1529], - [-12.1123, 9.157499], - [-12.110799, 9.1603], - [-12.108999, 9.1624], - [-12.1024, 9.169199], - [-12.0995, 9.172799], - [-12.0971, 9.177399], - [-12.0921, 9.183999], - [-12.089699, 9.1886], - [-12.087499, 9.1914], - [-12.0848, 9.193899], - [-12.083776, 9.194635], - [-12.084583, 9.196249], - [-12.08625, 9.195417], - [-12.094039, 9.197541], - [-12.093995, 9.197607], - [-12.093315, 9.198225], - [-12.092754, 9.199541], - [-12.092531, 9.200094], - [-12.093749, 9.203749], - [-12.091678, 9.204785], - [-12.091667, 9.204822], - [-12.091711, 9.206205], - [-12.094938, 9.213227], - [-12.095094, 9.213993], - [-12.094938, 9.214646], - [-12.094583, 9.215457], - [-12.094583, 9.219582], - [-12.095738, 9.221314], - [-12.096072, 9.220979], - [-12.101249, 9.225417], - [-12.10125, 9.231249], - [-12.102082, 9.232083], - [-12.100417, 9.234583], - [-12.100417, 9.237916], - [-12.108749, 9.246249], - [-12.102917, 9.25125], - [-12.102916, 9.261249], - [-12.10125, 9.26125], - [-12.100416, 9.263749], - [-12.09625, 9.267916], - [-12.09625, 9.268749], - [-12.09875, 9.272082], - [-12.104583, 9.275417], - [-12.105416, 9.279582], - [-12.102083, 9.282083], - [-12.10125, 9.291249], - [-12.109614, 9.291947], - [-12.109546, 9.292422], - [-12.109915, 9.292946], - [-12.110102, 9.293813], - [-12.109989, 9.294069], - [-12.110232, 9.294609], - [-12.109919, 9.295185], - [-12.109581, 9.295366], - [-12.10931, 9.297395], - [-12.109411, 9.298493], - [-12.108583, 9.29947], - [-12.108467, 9.299781], - [-12.108901, 9.300864], - [-12.108961, 9.301962], - [-12.110674, 9.304141], - [-12.112059, 9.306535], - [-12.102917, 9.309583], - [-12.10375, 9.315416], - [-12.106193, 9.318471], - [-12.106193, 9.318472], - [-12.106174, 9.318485], - [-12.108749, 9.320416], - [-12.116289, 9.320416], - [-12.1181, 9.319499], - [-12.121999, 9.3177], - [-12.125, 9.315599], - [-12.1292, 9.311899], - [-12.132999, 9.307599], - [-12.133299, 9.2999], - [-12.133799, 9.2969], - [-12.1354, 9.2944], - [-12.1374, 9.292899], - [-12.141199, 9.2912], - [-12.144799, 9.2893], - [-12.148, 9.288099], - [-12.1503, 9.286599], - [-12.152799, 9.284199], - [-12.154099, 9.280799], - [-12.1507, 9.2733], - [-12.1465, 9.2683], - [-12.144699, 9.265199], - [-12.143999, 9.259799], - [-12.1439, 9.2505], - [-12.144099, 9.2469], - [-12.1445, 9.2447], - [-12.1464, 9.241599], - [-12.151299, 9.2364], - [-12.155399, 9.2325], - [-12.1576, 9.230799], - [-12.1638, 9.227399], - [-12.166499, 9.2249], - [-12.168299, 9.2229], - [-12.1711, 9.217599], - [-12.1732, 9.214999], - [-12.1759, 9.212699], - [-12.179099, 9.2082], - [-12.180699, 9.2046], - [-12.181299, 9.2013] - ] - ], - "type": "Polygon" - }, - "id": 174, - "properties": { - "cc:admin:id": ["81"], - "cc:oBld:total": 427, - "cc:pop:fifteen-to-twenty-four": 977.5265745054952, - "cc:pop:grid3-total": 6500.161982451264, - "cc:pop:kontur-total": 5573.932166360125, - "cc:pop:men": 2574.066613222608, - "cc:pop:sixty-plus": 294.9404330060622, - "cc:pop:total": 5374.546298786949, - "cc:pop:under-five": 826.7266211460578, - "cc:pop:women": 2800.479685564343, - "cc:pop:women-fiften-to-forty-nine": 1368.3111155832135, - "cc:pop:wp-total": 4478.234913765015, - "cc:pop:wp-total-UN": 5200.967473792951, - "cc:id": "174", - "cc:Name": "Kagbere CHC", - "cc:site": [-12.1405, 9.2205], - "user:parentName": "Magbaimba Ndowahun", - "user:code": "OU_193225", - "user:orgUnitId": "TjZwphhxCuV", - "user:level": "4", - "user:parentId": "eV4cuxniZgP" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.019583, 9.052916], - [-12.019582, 9.03746], - [-12.019315, 9.037716], - [-12.01125, 9.036249], - [-12.01125, 9.02875], - [-12.013749, 9.025416], - [-12.01375, 9.020417], - [-12.015416, 9.019583], - [-12.012916, 9.018749], - [-12.009952, 9.0106], - [-12.008499, 9.0115], - [-12.004699, 9.0147], - [-12.002599, 9.0161], - [-11.998799, 9.018], - [-11.9961, 9.019999], - [-11.9911, 9.024799], - [-11.9884, 9.026899], - [-11.9845, 9.028899], - [-11.9788, 9.033499], - [-11.976, 9.034899], - [-11.9733, 9.034699], - [-11.9711, 9.0335], - [-11.968599, 9.031199], - [-11.965284, 9.027839], - [-11.964583, 9.036249], - [-11.964583, 9.03722], - [-11.965743, 9.037235], - [-11.966649, 9.037812], - [-11.967637, 9.038666], - [-11.968265, 9.040412], - [-11.969017, 9.039456], - [-11.969675, 9.038611], - [-11.972082, 9.040417], - [-11.97125, 9.047916], - [-11.97074, 9.049445], - [-11.970915, 9.049577], - [-11.971397, 9.04948], - [-11.971607, 9.04863], - [-11.975624, 9.047292], - [-11.975381, 9.04892], - [-11.975934, 9.049874], - [-11.976872, 9.050144], - [-11.978048, 9.049827], - [-11.978775, 9.049978], - [-11.979217, 9.050503], - [-11.978804, 9.05163], - [-11.978741, 9.052605], - [-11.979112, 9.053498], - [-11.980303, 9.053904], - [-11.981078, 9.053829], - [-11.981848, 9.053414], - [-11.982167, 9.053001], - [-11.985417, 9.056249], - [-11.992082, 9.058749], - [-11.996249, 9.055417], - [-11.997082, 9.055416], - [-11.997083, 9.05375], - [-12.007916, 9.055416], - [-12.010416, 9.055417], - [-12.01375, 9.052083], - [-12.017082, 9.052916], - [-12.019583, 9.052916] - ] - ], - "type": "Polygon" - }, - "id": 175, - "properties": { - "cc:admin:id": ["7"], - "cc:oBld:total": 55, - "cc:pop:fifteen-to-twenty-four": 191.19662278975937, - "cc:pop:grid3-total": 881.8954525983689, - "cc:pop:kontur-total": 1524.3358860585276, - "cc:pop:men": 500.9697382285466, - "cc:pop:sixty-plus": 48.55630043332765, - "cc:pop:total": 1107.7656438906415, - "cc:pop:under-five": 170.5918374022024, - "cc:pop:women": 606.7959056620952, - "cc:pop:women-fiften-to-forty-nine": 299.47337736600025, - "cc:pop:wp-total": 740.1721141242931, - "cc:pop:wp-total-UN": 859.4454366226275, - "cc:id": "175", - "cc:Name": "Kagbo MCHP", - "cc:site": [-11.9913, 9.0256], - "user:parentName": "Safroko Limba", - "user:code": "OU_193268", - "user:orgUnitId": "OTlKtnhvEm1", - "user:level": "4", - "user:parentId": "XG8HGAbrbbL" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.357425, 9.525727], - [-12.357434, 9.524217], - [-12.357146, 9.523555], - [-12.356766, 9.523523], - [-12.356192, 9.523207], - [-12.353221, 9.521328], - [-12.35073, 9.51974], - [-12.349598, 9.51894], - [-12.351113, 9.518264], - [-12.351334, 9.517168], - [-12.347917, 9.513749], - [-12.347917, 9.504583], - [-12.348107, 9.504297], - [-12.34559, 9.505982], - [-12.343749, 9.502917], - [-12.339583, 9.500417], - [-12.342082, 9.497082], - [-12.342082, 9.492917], - [-12.334583, 9.487083], - [-12.329582, 9.48125], - [-12.327917, 9.481249], - [-12.327038, 9.479933], - [-12.326895, 9.47998], - [-12.326376, 9.480833], - [-12.325261, 9.481083], - [-12.324718, 9.481362], - [-12.323878, 9.482949], - [-12.322407, 9.483842], - [-12.321823, 9.484489], - [-12.320309, 9.485201], - [-12.319188, 9.485506], - [-12.319062, 9.485869], - [-12.318555, 9.486266], - [-12.318309, 9.486823], - [-12.31793, 9.487096], - [-12.314582, 9.48375], - [-12.311992, 9.484268], - [-12.312184, 9.485046], - [-12.312758, 9.488473], - [-12.310222, 9.489228], - [-12.307169, 9.490273], - [-12.305526, 9.490598], - [-12.302248, 9.491613], - [-12.301802, 9.491658], - [-12.298489, 9.491402], - [-12.297874, 9.491416], - [-12.297523, 9.492054], - [-12.296777, 9.49274], - [-12.296435, 9.492934], - [-12.295932, 9.492833], - [-12.29615, 9.49351], - [-12.296052, 9.493933], - [-12.295666, 9.494468], - [-12.296071, 9.496333], - [-12.29687, 9.497443], - [-12.297097, 9.497629], - [-12.292917, 9.500417], - [-12.297082, 9.507916], - [-12.297144, 9.507917], - [-12.296527, 9.509109], - [-12.29634, 9.512695], - [-12.299367, 9.513186], - [-12.29989, 9.513398], - [-12.298749, 9.516249], - [-12.292917, 9.517917], - [-12.292459, 9.519747], - [-12.293749, 9.520117], - [-12.293749, 9.522916], - [-12.292083, 9.522917], - [-12.290417, 9.526249], - [-12.292082, 9.527917], - [-12.290417, 9.530417], - [-12.290416, 9.532315], - [-12.289991, 9.532315], - [-12.288749, 9.535416], - [-12.287896, 9.536269], - [-12.287149, 9.536158], - [-12.287789, 9.537846], - [-12.288589, 9.538502], - [-12.289703, 9.539507], - [-12.290646, 9.540664], - [-12.291594, 9.54209], - [-12.29414, 9.543943], - [-12.29066, 9.545349], - [-12.290246, 9.545811], - [-12.289588, 9.545803], - [-12.288913, 9.54626], - [-12.287123, 9.547782], - [-12.286869, 9.547755], - [-12.286643, 9.547374], - [-12.286307, 9.54741], - [-12.28544, 9.546121], - [-12.284561, 9.54573], - [-12.284457, 9.545274], - [-12.284111, 9.544945], - [-12.283351, 9.544541], - [-12.282504, 9.544361], - [-12.282284, 9.546351], - [-12.282106, 9.546578], - [-12.282009, 9.547208], - [-12.282007, 9.547208], - [-12.281205, 9.546294], - [-12.279583, 9.547917], - [-12.279582, 9.552082], - [-12.277917, 9.55375], - [-12.277917, 9.556654], - [-12.281899, 9.5565], - [-12.285499, 9.5559], - [-12.2901, 9.553999], - [-12.2927, 9.553399], - [-12.2989, 9.552699], - [-12.302399, 9.5512], - [-12.305099, 9.549], - [-12.3068, 9.546899], - [-12.3079, 9.544299], - [-12.3083, 9.541499], - [-12.308399, 9.5337], - [-12.3088, 9.531], - [-12.311399, 9.526], - [-12.312799, 9.5242], - [-12.314999, 9.5231], - [-12.3189, 9.523], - [-12.3227, 9.5239], - [-12.325299, 9.5259], - [-12.329299, 9.532699], - [-12.3311, 9.5349], - [-12.334299, 9.538199], - [-12.335799, 9.539399], - [-12.338299, 9.540099], - [-12.3408, 9.539199], - [-12.349099, 9.531], - [-12.351899, 9.5286], - [-12.3542, 9.527199], - [-12.357299, 9.5258], - [-12.357425, 9.525727] - ] - ], - "type": "Polygon" - }, - "id": 176, - "properties": { - "cc:admin:id": ["121"], - "cc:oBld:total": 46, - "cc:pop:fifteen-to-twenty-four": 859.0730148064923, - "cc:pop:grid3-total": 3272.7128304203325, - "cc:pop:kontur-total": 4634.996384552048, - "cc:pop:men": 2528.717995963939, - "cc:pop:sixty-plus": 301.1020110177306, - "cc:pop:total": 4684.347436694527, - "cc:pop:under-five": 759.9931502963829, - "cc:pop:women": 2155.62944073059, - "cc:pop:women-fiften-to-forty-nine": 1070.038109591319, - "cc:pop:wp-total": 4237.533436728387, - "cc:pop:wp-total-UN": 4911.3911054834325, - "cc:id": "176", - "cc:Name": "Kagboray MCHP", - "cc:site": [-12.3115, 9.5189], - "user:parentName": "Sella Limba", - "user:code": "OU_193293", - "user:orgUnitId": "Sglj9VCoQmc", - "user:level": "4", - "user:parentId": "j43EZb15rjI" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.77855, 8.554597], - [-10.774347, 8.554597], - [-10.770441, 8.561362], - [-10.76616, 8.561363], - [-10.762916, 8.565417], - [-10.759583, 8.566249], - [-10.756249, 8.56625], - [-10.744583, 8.567916], - [-10.74375, 8.567917], - [-10.743749, 8.575416], - [-10.740733, 8.578432], - [-10.737409, 8.578432], - [-10.731249, 8.574584], - [-10.727083, 8.57375], - [-10.727083, 8.581249], - [-10.72625, 8.585416], - [-10.727082, 8.58625], - [-10.723484, 8.592728], - [-10.723336, 8.592822], - [-10.722447, 8.592797], - [-10.722231, 8.592871], - [-10.722916, 8.600416], - [-10.722082, 8.600416], - [-10.718749, 8.59875], - [-10.715417, 8.599584], - [-10.717082, 8.604583], - [-10.715417, 8.607916], - [-10.713749, 8.607084], - [-10.71125, 8.607084], - [-10.707917, 8.60875], - [-10.707083, 8.610416], - [-10.710416, 8.61375], - [-10.707083, 8.61625], - [-10.708749, 8.61875], - [-10.704583, 8.620416], - [-10.70375, 8.62125], - [-10.704074, 8.622224], - [-10.704073, 8.622225], - [-10.704039, 8.622215], - [-10.706249, 8.629583], - [-10.707082, 8.629584], - [-10.706249, 8.636249], - [-10.70375, 8.639584], - [-10.707916, 8.645417], - [-10.70541, 8.647922], - [-10.705463, 8.647982], - [-10.700417, 8.653749], - [-10.69875, 8.65375], - [-10.70125, 8.662916], - [-10.705416, 8.66625], - [-10.705416, 8.667084], - [-10.70375, 8.672082], - [-10.710416, 8.67625], - [-10.712083, 8.684582], - [-10.71625, 8.68375], - [-10.724582, 8.689582], - [-10.724583, 8.690416], - [-10.727082, 8.691249], - [-10.727083, 8.69209], - [-10.727317, 8.692496], - [-10.727083, 8.692903], - [-10.727083, 8.693749], - [-10.744582, 8.699582], - [-10.743809, 8.703456], - [-10.750201, 8.703456], - [-10.754108, 8.696691], - [-10.76192, 8.696691], - [-10.762844, 8.69829], - [-10.763, 8.694799], - [-10.763, 8.6807], - [-10.7627, 8.6777], - [-10.7618, 8.675], - [-10.7604, 8.6726], - [-10.756499, 8.667599], - [-10.755499, 8.664999], - [-10.7551, 8.662099], - [-10.755199, 8.6591], - [-10.7558, 8.656399], - [-10.760199, 8.6477], - [-10.7649, 8.641599], - [-10.7669, 8.637599], - [-10.769299, 8.6334], - [-10.7706, 8.630199], - [-10.7727, 8.625799], - [-10.773399, 8.6221], - [-10.773499, 8.619099], - [-10.7733, 8.599], - [-10.773, 8.5931], - [-10.772199, 8.589399], - [-10.770199, 8.584899], - [-10.7696, 8.581499], - [-10.7701, 8.578099], - [-10.771899, 8.5736], - [-10.772599, 8.5708], - [-10.773199, 8.565], - [-10.773899, 8.5624], - [-10.777399, 8.5571], - [-10.77855, 8.554597] - ] - ], - "type": "Polygon" - }, - "id": 177, - "properties": { - "cc:admin:id": ["125"], - "cc:oBld:total": 269, - "cc:pop:fifteen-to-twenty-four": 572.3349881200054, - "cc:pop:grid3-total": 5547.064337189203, - "cc:pop:kontur-total": 3499.3607259188866, - "cc:pop:men": 1355.4083428669917, - "cc:pop:sixty-plus": 169.3328104497601, - "cc:pop:total": 2862.6749406000267, - "cc:pop:under-five": 475.43636576579, - "cc:pop:women": 1507.2665977330346, - "cc:pop:women-fiften-to-forty-nine": 755.608384351959, - "cc:pop:wp-total": 2532.073377471416, - "cc:pop:wp-total-UN": 2940.875774937262, - "cc:id": "177", - "cc:Name": "Kainkordu CHC", - "cc:site": [-10.7213, 8.6171], - "user:parentName": "Soa", - "user:code": "OU_233321", - "user:orgUnitId": "KKoPh1lDd9j", - "user:level": "4", - "user:parentId": "iGHlidSFdpu" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.736249, 9.827917], - [-11.726634, 9.827176], - [-11.725955, 9.826001], - [-11.728358, 9.821838], - [-11.725417, 9.822082], - [-11.72375, 9.820416], - [-11.72375, 9.817916], - [-11.727371, 9.809949], - [-11.727372, 9.809949], - [-11.727653, 9.810109], - [-11.730416, 9.804583], - [-11.730417, 9.802083], - [-11.735058, 9.803409], - [-11.735613, 9.802449], - [-11.732971, 9.797873], - [-11.732916, 9.797916], - [-11.722917, 9.797082], - [-11.718749, 9.78625], - [-11.710259, 9.785597], - [-11.70827, 9.782153], - [-11.710333, 9.778577], - [-11.719582, 9.777916], - [-11.722916, 9.773749], - [-11.722916, 9.764583], - [-11.721249, 9.762083], - [-11.714812, 9.761744], - [-11.715287, 9.760919], - [-11.711382, 9.754153], - [-11.71514, 9.747642], - [-11.713749, 9.74625], - [-11.710978, 9.746249], - [-11.70827, 9.741558], - [-11.709647, 9.739171], - [-11.714582, 9.739582], - [-11.719582, 9.736249], - [-11.720416, 9.725417], - [-11.717082, 9.72125], - [-11.707236, 9.720492], - [-11.705508, 9.7175], - [-11.709413, 9.710734], - [-11.705508, 9.703968], - [-11.707076, 9.70125], - [-11.702069, 9.701249], - [-11.703202, 9.699283], - [-11.699297, 9.692518], - [-11.702915, 9.686249], - [-11.699582, 9.68375], - [-11.698029, 9.684682], - [-11.696935, 9.684682], - [-11.69303, 9.677917], - [-11.696935, 9.671151], - [-11.696102, 9.669707], - [-11.696249, 9.669583], - [-11.693749, 9.66875], - [-11.683081, 9.670391], - [-11.68308, 9.670389], - [-11.686362, 9.666757], - [-11.68626, 9.665951], - [-11.685568, 9.664338], - [-11.68542, 9.661751], - [-11.67875, 9.660416], - [-11.679582, 9.65375], - [-11.679695, 9.653637], - [-11.676231, 9.647635], - [-11.680136, 9.64087], - [-11.677607, 9.636488], - [-11.675417, 9.63375], - [-11.677082, 9.627083], - [-11.674583, 9.622083], - [-11.675192, 9.619034], - [-11.674786, 9.61888], - [-11.673916, 9.618335], - [-11.671245, 9.618014], - [-11.669342, 9.618416], - [-11.667903, 9.620404], - [-11.66625, 9.61875], - [-11.666251, 9.618749], - [-11.672916, 9.614582], - [-11.671249, 9.612916], - [-11.665417, 9.603749], - [-11.66625, 9.602083], - [-11.679582, 9.603749], - [-11.677917, 9.59375], - [-11.667082, 9.587917], - [-11.665417, 9.588748], - [-11.665416, 9.584583], - [-11.66375, 9.58375], - [-11.663749, 9.582083], - [-11.66125, 9.580416], - [-11.660417, 9.57625], - [-11.663544, 9.571244], - [-11.6607, 9.572399], - [-11.6565, 9.574799], - [-11.6533, 9.576199], - [-11.6512, 9.577599], - [-11.6443, 9.584099], - [-11.6416, 9.585999], - [-11.638399, 9.5874], - [-11.634199, 9.5898], - [-11.631, 9.591099], - [-11.6267, 9.593399], - [-11.623499, 9.5947], - [-11.6192, 9.597099], - [-11.6154, 9.598999], - [-11.613399, 9.6005], - [-11.607, 9.606399], - [-11.6044, 9.608299], - [-11.6005, 9.610099], - [-11.596899, 9.6121], - [-11.592999, 9.6139], - [-11.590199, 9.616], - [-11.5831, 9.623099], - [-11.58, 9.626899], - [-11.5766, 9.633099], - [-11.572899, 9.6378], - [-11.569499, 9.644], - [-11.566999, 9.6469], - [-11.564299, 9.649], - [-11.5605, 9.650699], - [-11.556899, 9.6527], - [-11.5538, 9.653999], - [-11.5515, 9.655399], - [-11.549399, 9.6571], - [-11.542299, 9.6635], - [-11.5385, 9.665799], - [-11.5346, 9.6677], - [-11.541199, 9.671399], - [-11.5451, 9.6731], - [-11.550299, 9.675599], - [-11.556299, 9.676899], - [-11.561599, 9.679199], - [-11.5668, 9.6804], - [-11.572899, 9.682999], - [-11.577999, 9.684099], - [-11.584199, 9.686699], - [-11.5893, 9.6878], - [-11.595499, 9.690399], - [-11.6006, 9.6915], - [-11.609099, 9.695199], - [-11.611399, 9.696799], - [-11.614099, 9.699399], - [-11.616199, 9.702399], - [-11.619599, 9.709099], - [-11.6216, 9.713299], - [-11.623999, 9.715699], - [-11.6367, 9.7222], - [-11.6399, 9.7248], - [-11.6422, 9.7278], - [-11.6449, 9.7325], - [-11.6477, 9.7349], - [-11.6518, 9.7371], - [-11.656, 9.7408], - [-11.657899, 9.7438], - [-11.659499, 9.750099], - [-11.661799, 9.755399], - [-11.662699, 9.759699], - [-11.6635, 9.7617], - [-11.6653, 9.7643], - [-11.6679, 9.767], - [-11.671999, 9.770599], - [-11.676199, 9.7736], - [-11.677399, 9.775999], - [-11.6778, 9.7794], - [-11.6778, 9.791499], - [-11.6804, 9.7931], - [-11.6816, 9.7966], - [-11.681899, 9.802299], - [-11.6825, 9.806], - [-11.685599, 9.812799], - [-11.687, 9.814799], - [-11.6898, 9.816799], - [-11.693399, 9.817699], - [-11.700299, 9.8177], - [-11.703099, 9.8171], - [-11.7056, 9.815799], - [-11.707899, 9.8139], - [-11.713299, 9.8085], - [-11.7152, 9.8071], - [-11.7185, 9.8063], - [-11.7211, 9.8069], - [-11.722299, 9.8085], - [-11.721999, 9.811], - [-11.719999, 9.8156], - [-11.7193, 9.8219], - [-11.7193, 9.827999], - [-11.719599, 9.831999], - [-11.7204, 9.8357], - [-11.7224, 9.8402], - [-11.723099, 9.843099], - [-11.723199, 9.844586], - [-11.725417, 9.84625], - [-11.729582, 9.847082], - [-11.736249, 9.827917] - ] - ], - "type": "Polygon" - }, - "id": 178, - "properties": { - "cc:admin:id": ["143"], - "cc:oBld:total": 177, - "cc:pop:fifteen-to-twenty-four": 1614.2154404829114, - "cc:pop:grid3-total": 4544.074722281932, - "cc:pop:kontur-total": 8759.09434684635, - "cc:pop:men": 4235.554610997792, - "cc:pop:sixty-plus": 543.3553003509118, - "cc:pop:total": 8812.517121757735, - "cc:pop:under-five": 1433.012115812274, - "cc:pop:women": 4576.962510759943, - "cc:pop:women-fiften-to-forty-nine": 2213.659810623573, - "cc:pop:wp-total": 7859.445833777008, - "cc:pop:wp-total-UN": 9112.884431312645, - "cc:id": "178", - "cc:Name": "Kakoya MCHP", - "cc:site": [-11.6664, 9.6968], - "user:parentName": "Wara Wara Bafodia", - "user:code": "OU_226241", - "user:orgUnitId": "NJolnlvYgLr", - "user:level": "4", - "user:parentId": "XrF5AvaGcuw" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - [-13.160099, 8.885699], - [-13.159599, 8.8843], - [-13.1574, 8.882599], - [-13.156299, 8.8804], - [-13.154599, 8.879899], - [-13.152599, 8.877599], - [-13.1476, 8.8732], - [-13.147099, 8.8715], - [-13.1446, 8.868999], - [-13.144599, 8.8671], - [-13.1418, 8.864], - [-13.139899, 8.862599], - [-13.1374, 8.8599], - [-13.137399, 8.858999], - [-13.1354, 8.8571], - [-13.133999, 8.8563], - [-13.1329, 8.8563], - [-13.132399, 8.857399], - [-13.1313, 8.8568], - [-13.130999, 8.854899], - [-13.130099, 8.8526], - [-13.128499, 8.852099], - [-13.1282, 8.849899], - [-13.128199, 8.84546], - [-13.124887, 8.843566], - [-13.123458, 8.84349], - [-13.121973, 8.843389], - [-13.117917, 8.845417], - [-13.111449, 8.852601], - [-13.108851, 8.852686], - [-13.104568, 8.852729], - [-13.100747, 8.85273], - [-13.09951, 8.853047], - [-13.098746, 8.853678], - [-13.097234, 8.854312], - [-13.097187, 8.856077], - [-13.097185, 8.856078], - [-13.097021, 8.856039], - [-13.09672, 8.856586], - [-13.097196, 8.858387], - [-13.096579, 8.859253], - [-13.09651, 8.860896], - [-13.09397, 8.858922], - [-13.093019, 8.859389], - [-13.09353, 8.86068], - [-13.091454, 8.861442], - [-13.091452, 8.8617], - [-13.090294, 8.861924], - [-13.090293, 8.861923], - [-13.09068, 8.860665], - [-13.089387, 8.8604], - [-13.088873, 8.859367], - [-13.087057, 8.86013], - [-13.087232, 8.859271], - [-13.088366, 8.857304], - [-13.09018, 8.857183], - [-13.091096, 8.855513], - [-13.090974, 8.853968], - [-13.089626, 8.853681], - [-13.08825, 8.853402], - [-13.088241, 8.854132], - [-13.088057, 8.854452], - [-13.087359, 8.854207], - [-13.086822, 8.854633], - [-13.086831, 8.855282], - [-13.087203, 8.855842], - [-13.087374, 8.856907], - [-13.08734, 8.857073], - [-13.087056, 8.857638], - [-13.086823, 8.857945], - [-13.086457, 8.858117], - [-13.085772, 8.858959], - [-13.085707, 8.859755], - [-13.086107, 8.860768], - [-13.086616, 8.861155], - [-13.087436, 8.861341], - [-13.087484, 8.862093], - [-13.086482, 8.862915], - [-13.08579, 8.864269], - [-13.085325, 8.864474], - [-13.084605, 8.865305], - [-13.084269, 8.866014], - [-13.084268, 8.866014], - [-13.08125, 8.86375], - [-13.08047, 8.86375], - [-13.080381, 8.863793], - [-13.077082, 8.867916], - [-13.07375, 8.869583], - [-13.07375, 8.870417], - [-13.075416, 8.874583], - [-13.072083, 8.879582], - [-13.072082, 8.880417], - [-13.071249, 8.88125], - [-13.062917, 8.88125], - [-13.062916, 8.883749], - [-13.060417, 8.88625], - [-13.060417, 8.887916], - [-13.060578, 8.888077], - [-13.060745, 8.888079], - [-13.060727, 8.888227], - [-13.062916, 8.890417], - [-13.063749, 8.892916], - [-13.063008, 8.895142], - [-13.064243, 8.896114], - [-13.06393, 8.897093], - [-13.063761, 8.897259], - [-13.063106, 8.898546], - [-13.061982, 8.899079], - [-13.061151, 8.899973], - [-13.059536, 8.900712], - [-13.058273, 8.901476], - [-13.057058, 8.90215], - [-13.056036, 8.901665], - [-13.05398, 8.900307], - [-13.050417, 8.904582], - [-13.057082, 8.90375], - [-13.057917, 8.906249], - [-13.058749, 8.90625], - [-13.05875, 8.910416], - [-13.060416, 8.910417], - [-13.06125, 8.91125], - [-13.062916, 8.918749], - [-13.06251, 8.919559], - [-13.061653, 8.918959], - [-13.060961, 8.919084], - [-13.064063, 8.925732], - [-13.064062, 8.925733], - [-13.062366, 8.924848], - [-13.06008, 8.923469], - [-13.057838, 8.923728], - [-13.05538, 8.924935], - [-13.056242, 8.926143], - [-13.058355, 8.928083], - [-13.060469, 8.928903], - [-13.063099, 8.928127], - [-13.064794, 8.927296], - [-13.065847, 8.929555], - [-13.063987, 8.929971], - [-13.062675, 8.93009], - [-13.062699, 8.930099], - [-13.0684, 8.9317], - [-13.074899, 8.933999], - [-13.079299, 8.934499], - [-13.0859, 8.933399], - [-13.1056, 8.932899], - [-13.109699, 8.9325], - [-13.1136, 8.931199], - [-13.1201, 8.928499], - [-13.133599, 8.9213], - [-13.1415, 8.9152], - [-13.149099, 8.912399], - [-13.1518, 8.910199], - [-13.156799, 8.907299], - [-13.155099, 8.904], - [-13.153999, 8.902899], - [-13.152099, 8.899], - [-13.150999, 8.897899], - [-13.148999, 8.894], - [-13.1476, 8.8926], - [-13.148499, 8.8882], - [-13.148999, 8.887399], - [-13.149, 8.8843], - [-13.148799, 8.8826], - [-13.1471, 8.880399], - [-13.1476, 8.8801], - [-13.149599, 8.882399], - [-13.150099, 8.884299], - [-13.1496, 8.888499], - [-13.1496, 8.891499], - [-13.1529, 8.891799], - [-13.154899, 8.891499], - [-13.1557, 8.891], - [-13.157399, 8.890999], - [-13.158499, 8.8904], - [-13.1587, 8.8888], - [-13.160099, 8.885699] - ] - ], - [ - [ - [-13.172899, 8.8849], - [-13.171, 8.883999], - [-13.169899, 8.8826], - [-13.1682, 8.8821], - [-13.166799, 8.8807], - [-13.165699, 8.880399], - [-13.164299, 8.8788], - [-13.162399, 8.878199], - [-13.160399, 8.876], - [-13.159, 8.875399], - [-13.156299, 8.8729], - [-13.1524, 8.872599], - [-13.151799, 8.8704], - [-13.150999, 8.870099], - [-13.148199, 8.8679], - [-13.1465, 8.8682], - [-13.1465, 8.869299], - [-13.148499, 8.871499], - [-13.1496, 8.8724], - [-13.1507, 8.873999], - [-13.1526, 8.8746], - [-13.154299, 8.876], - [-13.1549, 8.877099], - [-13.1565, 8.8779], - [-13.1579, 8.880099], - [-13.159299, 8.8807], - [-13.160999, 8.882399], - [-13.1612, 8.883799], - [-13.162399, 8.8851], - [-13.1624, 8.886199], - [-13.166299, 8.887599], - [-13.1668, 8.8874], - [-13.171499, 8.887399], - [-13.172899, 8.8849] - ] - ], - [ - [ - [-13.166299, 8.876299], - [-13.1643, 8.8746], - [-13.164299, 8.8735], - [-13.1626, 8.872599], - [-13.160999, 8.8707], - [-13.160099, 8.870699], - [-13.158199, 8.8687], - [-13.155999, 8.867899], - [-13.1532, 8.8676], - [-13.152599, 8.8668], - [-13.1507, 8.8671], - [-13.1507, 8.868199], - [-13.152599, 8.869899], - [-13.155999, 8.8713], - [-13.1582, 8.873199], - [-13.1593, 8.8732], - [-13.161, 8.875099], - [-13.163699, 8.876], - [-13.1649, 8.877099], - [-13.166299, 8.876299] - ] - ], - [ - [ - [-13.165399, 8.8926], - [-13.162099, 8.8893], - [-13.1607, 8.8893], - [-13.1596, 8.8907], - [-13.1596, 8.891799], - [-13.1607, 8.892899], - [-13.163499, 8.8929], - [-13.164899, 8.893999], - [-13.165399, 8.8926] - ] - ], - [ - [ - [-13.172899, 8.893199], - [-13.172399, 8.8912], - [-13.1693, 8.8912], - [-13.1685, 8.892099], - [-13.1707, 8.894299], - [-13.171499, 8.894299], - [-13.172899, 8.893199] - ] - ] - ], - "type": "MultiPolygon" - }, - "id": 179, - "properties": { - "cc:admin:id": ["89"], - "cc:oBld:total": 301, - "cc:pop:fifteen-to-twenty-four": 1993.4145076810294, - "cc:pop:grid3-total": 12936.3332338239, - "cc:pop:kontur-total": 10187.909645349884, - "cc:pop:men": 5379.737987755824, - "cc:pop:sixty-plus": 589.8219436846421, - "cc:pop:total": 11355.823684129753, - "cc:pop:under-five": 1732.201462038983, - "cc:pop:women": 5976.085696373924, - "cc:pop:women-fiften-to-forty-nine": 2936.178067189763, - "cc:pop:wp-total": 10724.28566105844, - "cc:pop:wp-total-UN": 12428.862577259915, - "cc:id": "179", - "cc:Name": "Kalainkay MCHP", - "cc:site": [-13.0941, 8.8831], - "user:parentName": "Mambolo", - "user:code": "OU_211265", - "user:orgUnitId": "OGaAWQD6SYs", - "user:level": "4", - "user:parentId": "xGMGhjA3y6J" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.164219, 8.792659], - [-13.163749, 8.791249], - [-13.162765, 8.789774], - [-13.162532, 8.78978], - [-13.162016, 8.789651], - [-13.162013, 8.790164], - [-13.162011, 8.790165], - [-13.16072, 8.789515], - [-13.159167, 8.789636], - [-13.159081, 8.788951], - [-13.158653, 8.78886], - [-13.158654, 8.788346], - [-13.158443, 8.788309], - [-13.15875, 8.787083], - [-13.160416, 8.786249], - [-13.161249, 8.782917], - [-13.157917, 8.775416], - [-13.157917, 8.775352], - [-13.159244, 8.774785], - [-13.160416, 8.77443], - [-13.160416, 8.77038], - [-13.159772, 8.770379], - [-13.155866, 8.763614], - [-13.150635, 8.763613], - [-13.150417, 8.762082], - [-13.150417, 8.760417], - [-13.154582, 8.760416], - [-13.157916, 8.757082], - [-13.153749, 8.74875], - [-13.150417, 8.74625], - [-13.145379, 8.748139], - [-13.145363, 8.748245], - [-13.144417, 8.750144], - [-13.144162, 8.750891], - [-13.139583, 8.749583], - [-13.139582, 8.750417], - [-13.13375, 8.752083], - [-13.130417, 8.755416], - [-13.12875, 8.755417], - [-13.128749, 8.756249], - [-13.127917, 8.75625], - [-13.122083, 8.753749], - [-13.120416, 8.752083], - [-13.117916, 8.753749], - [-13.108749, 8.753749], - [-13.104583, 8.750416], - [-13.103749, 8.744583], - [-13.09625, 8.744583], - [-13.096171, 8.744897], - [-13.101386, 8.744898], - [-13.105292, 8.751664], - [-13.102692, 8.756168], - [-13.103749, 8.75625], - [-13.102916, 8.762917], - [-13.100234, 8.766269], - [-13.100101, 8.766196], - [-13.099949, 8.766163], - [-13.09625, 8.772082], - [-13.092917, 8.77125], - [-13.090416, 8.777916], - [-13.089178, 8.778329], - [-13.088399, 8.777992], - [-13.088368, 8.777917], - [-13.087083, 8.777917], - [-13.082083, 8.785417], - [-13.084582, 8.790416], - [-13.085416, 8.79125], - [-13.084904, 8.7933], - [-13.084902, 8.7933], - [-13.084297, 8.792355], - [-13.082973, 8.792486], - [-13.082807, 8.793522], - [-13.083691, 8.794111], - [-13.08388, 8.795017], - [-13.084041, 8.795083], - [-13.08375, 8.79625], - [-13.08375, 8.804582], - [-13.084669, 8.805962], - [-13.082083, 8.805646], - [-13.082082, 8.809582], - [-13.081231, 8.810435], - [-13.081654, 8.810623], - [-13.084379, 8.810612], - [-13.088738, 8.810413], - [-13.089374, 8.812477], - [-13.089646, 8.81016], - [-13.09094, 8.809909], - [-13.090941, 8.80991], - [-13.09055, 8.813242], - [-13.090336, 8.814502], - [-13.090416, 8.814583], - [-13.090302, 8.814697], - [-13.089868, 8.817245], - [-13.087793, 8.817879], - [-13.087024, 8.816073], - [-13.083907, 8.818118], - [-13.085645, 8.825302], - [-13.087083, 8.824583], - [-13.087917, 8.827082], - [-13.08875, 8.827083], - [-13.089285, 8.828687], - [-13.1036, 8.828499], - [-13.1097, 8.827699], - [-13.115799, 8.8261], - [-13.121199, 8.8259], - [-13.135999, 8.829699], - [-13.141799, 8.831399], - [-13.145099, 8.831399], - [-13.149099, 8.83], - [-13.151499, 8.827499], - [-13.151999, 8.824499], - [-13.151499, 8.8213], - [-13.1468, 8.8139], - [-13.147, 8.8087], - [-13.1521, 8.8059], - [-13.157899, 8.8057], - [-13.15907, 8.805799], - [-13.159582, 8.80375], - [-13.159583, 8.802082], - [-13.162082, 8.797083], - [-13.162916, 8.797082], - [-13.163385, 8.796614], - [-13.163277, 8.796613], - [-13.163278, 8.796098], - [-13.16302, 8.796097], - [-13.163017, 8.796612], - [-13.162498, 8.796866], - [-13.162242, 8.796093], - [-13.161982, 8.796349], - [-13.161724, 8.796347], - [-13.16225, 8.794547], - [-13.161215, 8.794541], - [-13.161087, 8.794283], - [-13.161089, 8.793769], - [-13.16135, 8.793511], - [-13.161486, 8.791967], - [-13.162782, 8.791458], - [-13.162783, 8.791459], - [-13.162652, 8.791972], - [-13.163037, 8.79236], - [-13.163815, 8.792364], - [-13.164073, 8.792622], - [-13.164219, 8.792659] - ] - ], - "type": "Polygon" - }, - "id": 181, - "properties": { - "cc:admin:id": ["74"], - "cc:oBld:total": 281, - "cc:pop:fifteen-to-twenty-four": 2973.2604993001473, - "cc:pop:grid3-total": 11919.823788781106, - "cc:pop:kontur-total": 15772.748904710908, - "cc:pop:men": 7664.7881551066, - "cc:pop:sixty-plus": 921.4528504117309, - "cc:pop:total": 16339.278008884352, - "cc:pop:under-five": 2554.55819998745, - "cc:pop:women": 8674.489853777748, - "cc:pop:women-fiften-to-forty-nine": 4303.365661237518, - "cc:pop:wp-total": 14426.99203046362, - "cc:pop:wp-total-UN": 16729.38360540328, - "cc:id": "181", - "cc:Name": "Kalangba MCHP", - "cc:site": [-13.1405, 8.808], - "user:parentName": "Lokomasama", - "user:code": "OU_254989", - "user:orgUnitId": "UqXSUMp19FB", - "user:level": "4", - "user:parentId": "fRLX08WHWpL" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.012599, 9.197699], - [-12.0122, 9.1928], - [-12.0116, 9.1894], - [-12.0093, 9.184], - [-12.008499, 9.179399], - [-12.0082, 9.167], - [-12.0083, 9.164099], - [-12.008799, 9.16], - [-12.010999, 9.1543], - [-12.011399, 9.1509], - [-12.011099, 9.148299], - [-12.0098, 9.1431], - [-12.010228, 9.142406], - [-12.007916, 9.14125], - [-12.005417, 9.141249], - [-12.002917, 9.13875], - [-12.002179, 9.132112], - [-12.001905, 9.13216], - [-12.001772, 9.132199], - [-12.001249, 9.129583], - [-11.99625, 9.130416], - [-11.994583, 9.12875], - [-11.995416, 9.12625], - [-11.994582, 9.12375], - [-11.990417, 9.120417], - [-11.992916, 9.117917], - [-11.992082, 9.117083], - [-11.987621, 9.115171], - [-11.986471, 9.116872], - [-11.985337, 9.118408], - [-11.984407, 9.119249], - [-11.984126, 9.119304], - [-11.984398, 9.120496], - [-11.984442, 9.121791], - [-11.984531, 9.122082], - [-11.982083, 9.122082], - [-11.98094, 9.12037], - [-11.980953, 9.120362], - [-11.980417, 9.11875], - [-11.981249, 9.115417], - [-11.981249, 9.114583], - [-11.977083, 9.112917], - [-11.970417, 9.116249], - [-11.967916, 9.112082], - [-11.967082, 9.11125], - [-11.966249, 9.111249], - [-11.96413, 9.10913], - [-11.964145, 9.108879], - [-11.964017, 9.109015], - [-11.964015, 9.109015], - [-11.962082, 9.107083], - [-11.961249, 9.107083], - [-11.957773, 9.111254], - [-11.956361, 9.110004], - [-11.955147, 9.10841], - [-11.95297, 9.105363], - [-11.947083, 9.11125], - [-11.947916, 9.117082], - [-11.94625, 9.120416], - [-11.937269, 9.121165], - [-11.937215, 9.121787], - [-11.937489, 9.122714], - [-11.93375, 9.124583], - [-11.930417, 9.127917], - [-11.930576, 9.13], - [-11.929962, 9.13], - [-11.927292, 9.125375], - [-11.927082, 9.125416], - [-11.921333, 9.120386], - [-11.920362, 9.120886], - [-11.916145, 9.123872], - [-11.915703, 9.123924], - [-11.912407, 9.128318], - [-11.917225, 9.128319], - [-11.921131, 9.135084], - [-11.920808, 9.135643], - [-11.912917, 9.136249], - [-11.911249, 9.134583], - [-11.904583, 9.134583], - [-11.906249, 9.137917], - [-11.90375, 9.144582], - [-11.908749, 9.14875], - [-11.90625, 9.155416], - [-11.913749, 9.159583], - [-11.91125, 9.165417], - [-11.912917, 9.173749], - [-11.917916, 9.174583], - [-11.924583, 9.179582], - [-11.926249, 9.179582], - [-11.927917, 9.177082], - [-11.932916, 9.17625], - [-11.934582, 9.17625], - [-11.936528, 9.180139], - [-11.936527, 9.18014], - [-11.93625, 9.180245], - [-11.93625, 9.180416], - [-11.940416, 9.182083], - [-11.939811, 9.186926], - [-11.941455, 9.18493], - [-11.942916, 9.185417], - [-11.943869, 9.186369], - [-11.944036, 9.186163], - [-11.945416, 9.187082], - [-11.947083, 9.184583], - [-11.957082, 9.184583], - [-11.957082, 9.186279], - [-11.955404, 9.187535], - [-11.954422, 9.187892], - [-11.953989, 9.188647], - [-11.952889, 9.189985], - [-11.95375, 9.190416], - [-11.962395, 9.188976], - [-11.962832, 9.190189], - [-11.963625, 9.191464], - [-11.966355, 9.194067], - [-11.967173, 9.195089], - [-11.967857, 9.19646], - [-11.968113, 9.197818], - [-11.973411, 9.195169], - [-11.973505, 9.195163], - [-11.9749, 9.19556], - [-11.975792, 9.195553], - [-11.976836, 9.195316], - [-11.979582, 9.198749], - [-11.979583, 9.199582], - [-11.982082, 9.20125], - [-11.982082, 9.20375], - [-11.980417, 9.206249], - [-11.984582, 9.207917], - [-11.984583, 9.210416], - [-11.987082, 9.212917], - [-11.987083, 9.216249], - [-11.994582, 9.212916], - [-11.995161, 9.210029], - [-11.995252, 9.210085], - [-11.996497, 9.211471], - [-11.998039, 9.212595], - [-11.998539, 9.212773], - [-11.998589, 9.208834], - [-11.997847, 9.207407], - [-11.99769, 9.206725], - [-11.996909, 9.205722], - [-11.996896, 9.205603], - [-11.997083, 9.205416], - [-12.002916, 9.202083], - [-12.005417, 9.204582], - [-12.007916, 9.204582], - [-12.012082, 9.202917], - [-12.012383, 9.202917], - [-12.012419, 9.203099], - [-12.012599, 9.197699] - ] - ], - "type": "Polygon" - }, - "id": 182, - "properties": { - "cc:admin:id": ["7"], - "cc:oBld:total": 442, - "cc:pop:fifteen-to-twenty-four": 1039.4297306184953, - "cc:pop:grid3-total": 7951.538398529294, - "cc:pop:kontur-total": 5824.054475347925, - "cc:pop:men": 2637.0765326626183, - "cc:pop:sixty-plus": 328.46162859580147, - "cc:pop:total": 5733.706006776958, - "cc:pop:under-five": 911.5260254479618, - "cc:pop:women": 3096.6294741143397, - "cc:pop:women-fiften-to-forty-nine": 1524.4168528703422, - "cc:pop:wp-total": 5227.430394200958, - "cc:pop:wp-total-UN": 6055.715777089415, - "cc:id": "182", - "cc:Name": "Kamabai CHC", - "cc:site": [-11.9619, 9.157], - "user:parentName": "Biriwa", - "user:code": "OU_193231", - "user:orgUnitId": "mt47bcb0Rcj", - "user:level": "4", - "user:parentId": "fwH9ipvXde9" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.352916, 9.43125], - [-12.349583, 9.430416], - [-12.349582, 9.425416], - [-12.348326, 9.421021], - [-12.347406, 9.420689], - [-12.349479, 9.419595], - [-12.350411, 9.419454], - [-12.350593, 9.419392], - [-12.351018, 9.418967], - [-12.351392, 9.417963], - [-12.351495, 9.417293], - [-12.352154, 9.415671], - [-12.351937, 9.41274], - [-12.351766, 9.411727], - [-12.351572, 9.411511], - [-12.351709, 9.411371], - [-12.351867, 9.410267], - [-12.351617, 9.409713], - [-12.344583, 9.410416], - [-12.337917, 9.412083], - [-12.335431, 9.415811], - [-12.33594, 9.415946], - [-12.336427, 9.416329], - [-12.336797, 9.416979], - [-12.337783, 9.417794], - [-12.33815, 9.417892], - [-12.338749, 9.422083], - [-12.332083, 9.424583], - [-12.330438, 9.426776], - [-12.328531, 9.426796], - [-12.327446, 9.427421], - [-12.325747, 9.429257], - [-12.323739, 9.429659], - [-12.322694, 9.430159], - [-12.321736, 9.430225], - [-12.321803, 9.430786], - [-12.321723, 9.431899], - [-12.321343, 9.434319], - [-12.320009, 9.436905], - [-12.315417, 9.43625], - [-12.314582, 9.440417], - [-12.31125, 9.442917], - [-12.311249, 9.443749], - [-12.307876, 9.444312], - [-12.307928, 9.444389], - [-12.30795, 9.444548], - [-12.307916, 9.444583], - [-12.30375, 9.447916], - [-12.299583, 9.447916], - [-12.297916, 9.44625], - [-12.295146, 9.445696], - [-12.294923, 9.446221], - [-12.293283, 9.449015], - [-12.294582, 9.452917], - [-12.292083, 9.455417], - [-12.29125, 9.458749], - [-12.289582, 9.460416], - [-12.286249, 9.462082], - [-12.28487, 9.461623], - [-12.284938, 9.46125], - [-12.28125, 9.46125], - [-12.27625, 9.462082], - [-12.275417, 9.462083], - [-12.274583, 9.464582], - [-12.275416, 9.465417], - [-12.275416, 9.471249], - [-12.269583, 9.47125], - [-12.26785, 9.47356], - [-12.267874, 9.473586], - [-12.268056, 9.474199], - [-12.268533, 9.474745], - [-12.268775, 9.475977], - [-12.269042, 9.476068], - [-12.26913, 9.476315], - [-12.268522, 9.476402], - [-12.26731, 9.477186], - [-12.266215, 9.47726], - [-12.265057, 9.477623], - [-12.264583, 9.477628], - [-12.264583, 9.477917], - [-12.267082, 9.479583], - [-12.267083, 9.482082], - [-12.269583, 9.487916], - [-12.272082, 9.489582], - [-12.272179, 9.489773], - [-12.274889, 9.489019], - [-12.275801, 9.48898], - [-12.277587, 9.489523], - [-12.278313, 9.489244], - [-12.278694, 9.488824], - [-12.282917, 9.493749], - [-12.284582, 9.49375], - [-12.284583, 9.495416], - [-12.290255, 9.499671], - [-12.290693, 9.499059], - [-12.291587, 9.497115], - [-12.293387, 9.494562], - [-12.29456, 9.493491], - [-12.295665, 9.494467], - [-12.296052, 9.493933], - [-12.29615, 9.49351], - [-12.295932, 9.492833], - [-12.296435, 9.492934], - [-12.296777, 9.49274], - [-12.297523, 9.492054], - [-12.297874, 9.491416], - [-12.298489, 9.491402], - [-12.301802, 9.491658], - [-12.302248, 9.491613], - [-12.305526, 9.490598], - [-12.307169, 9.490273], - [-12.310222, 9.489228], - [-12.312758, 9.488472], - [-12.312184, 9.485046], - [-12.311992, 9.484267], - [-12.314583, 9.48375], - [-12.31793, 9.487096], - [-12.318308, 9.486823], - [-12.318554, 9.486266], - [-12.319062, 9.485868], - [-12.319188, 9.485506], - [-12.320309, 9.485201], - [-12.321823, 9.484489], - [-12.322407, 9.483842], - [-12.323877, 9.482949], - [-12.324718, 9.481361], - [-12.325261, 9.481083], - [-12.326376, 9.480833], - [-12.326895, 9.479979], - [-12.327038, 9.479933], - [-12.327917, 9.481249], - [-12.329582, 9.481249], - [-12.330813, 9.47756], - [-12.333053, 9.476539], - [-12.333517, 9.471904], - [-12.333448, 9.471782], - [-12.333547, 9.471611], - [-12.33375, 9.469582], - [-12.339582, 9.465416], - [-12.342153, 9.46156], - [-12.342208, 9.461603], - [-12.345421, 9.459996], - [-12.344331, 9.458107], - [-12.348236, 9.451342], - [-12.34433, 9.444576], - [-12.342917, 9.444575], - [-12.342917, 9.442144], - [-12.344845, 9.441971], - [-12.345362, 9.44193], - [-12.346925, 9.441082], - [-12.347861, 9.441361], - [-12.349582, 9.442295], - [-12.349583, 9.434583], - [-12.352916, 9.43125] - ] - ], - "type": "Polygon" - }, - "id": 183, - "properties": { - "cc:admin:id": ["121"], - "cc:oBld:total": 208, - "cc:pop:fifteen-to-twenty-four": 1293.0892964224424, - "cc:pop:grid3-total": 6759.830304515764, - "cc:pop:kontur-total": 7306.698361328847, - "cc:pop:men": 3808.2471241518724, - "cc:pop:sixty-plus": 449.762513540173, - "cc:pop:total": 7063.518000018875, - "cc:pop:under-five": 1141.7275842567776, - "cc:pop:women": 3255.2708758670055, - "cc:pop:women-fiften-to-forty-nine": 1600.491801944393, - "cc:pop:wp-total": 6873.8602997520675, - "cc:pop:wp-total-UN": 7968.806544553006, - "cc:id": "183", - "cc:Name": "Kamabaio MCHP", - "cc:site": [-12.2949, 9.4636], - "user:parentName": "Sella Limba", - "user:code": "OU_193294", - "user:orgUnitId": "OwHjzJEVEUN", - "user:level": "4", - "user:parentId": "j43EZb15rjI" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.278008, 9.489362], - [-12.277587, 9.489523], - [-12.275801, 9.48898], - [-12.274889, 9.489019], - [-12.272178, 9.489773], - [-12.272082, 9.489582], - [-12.269582, 9.487916], - [-12.267083, 9.482082], - [-12.267082, 9.479583], - [-12.264583, 9.477917], - [-12.264582, 9.477628], - [-12.264193, 9.477631], - [-12.263342, 9.477711], - [-12.26158, 9.478334], - [-12.261749, 9.477475], - [-12.261716, 9.476072], - [-12.26207, 9.475676], - [-12.26456, 9.474354], - [-12.265017, 9.473822], - [-12.264582, 9.472082], - [-12.262082, 9.469583], - [-12.260417, 9.46875], - [-12.260416, 9.468012], - [-12.259507, 9.468219], - [-12.258749, 9.462917], - [-12.250416, 9.465416], - [-12.247916, 9.462917], - [-12.245417, 9.462916], - [-12.24375, 9.46125], - [-12.243749, 9.45625], - [-12.238086, 9.454834], - [-12.238002, 9.455065], - [-12.232083, 9.45375], - [-12.231249, 9.454583], - [-12.219583, 9.457082], - [-12.218749, 9.455417], - [-12.21836, 9.455416], - [-12.218352, 9.455263], - [-12.212917, 9.454582], - [-12.215416, 9.442083], - [-12.214582, 9.44125], - [-12.208101, 9.442428], - [-12.207411, 9.442828], - [-12.206751, 9.442086], - [-12.2031, 9.448999], - [-12.201799, 9.4522], - [-12.197599, 9.4604], - [-12.194699, 9.4642], - [-12.1894, 9.469599], - [-12.186699, 9.4721], - [-12.1835, 9.473999], - [-12.1808, 9.474699], - [-12.1731, 9.474999], - [-12.1693, 9.475699], - [-12.1648, 9.477699], - [-12.1589, 9.479199], - [-12.154836, 9.480919], - [-12.155126, 9.481963], - [-12.155195, 9.483177], - [-12.155309, 9.484], - [-12.156011, 9.483494], - [-12.157064, 9.483793], - [-12.157794, 9.48431], - [-12.159026, 9.484369], - [-12.160799, 9.484001], - [-12.162522, 9.483921], - [-12.164599, 9.483087], - [-12.165212, 9.48334], - [-12.166033, 9.483344], - [-12.16803, 9.483063], - [-12.171037, 9.482873], - [-12.173749, 9.482538], - [-12.17375, 9.493749], - [-12.177917, 9.497082], - [-12.184012, 9.497083], - [-12.183179, 9.498526], - [-12.177083, 9.497917], - [-12.177083, 9.507548], - [-12.177745, 9.507446], - [-12.17859, 9.507479], - [-12.179282, 9.50808], - [-12.180504, 9.509389], - [-12.180967, 9.509578], - [-12.181574, 9.509556], - [-12.182398, 9.509176], - [-12.183187, 9.508534], - [-12.184234, 9.507123], - [-12.185664, 9.506368], - [-12.186983, 9.506756], - [-12.187794, 9.506557], - [-12.188233, 9.506645], - [-12.189248, 9.507534], - [-12.190115, 9.507492], - [-12.192083, 9.512082], - [-12.192917, 9.512083], - [-12.195411, 9.512706], - [-12.195461, 9.51261], - [-12.198748, 9.514582], - [-12.198747, 9.514583], - [-12.195417, 9.515417], - [-12.194583, 9.517083], - [-12.19481, 9.517763], - [-12.196198, 9.518467], - [-12.19887, 9.519578], - [-12.199395, 9.519963], - [-12.200187, 9.520176], - [-12.201073, 9.520691], - [-12.201996, 9.52167], - [-12.202983, 9.522621], - [-12.203591, 9.523898], - [-12.203597, 9.523902], - [-12.19875, 9.528749], - [-12.210841, 9.528039], - [-12.210853, 9.528056], - [-12.21176, 9.528506], - [-12.212916, 9.529436], - [-12.212916, 9.53125], - [-12.211068, 9.538645], - [-12.210916, 9.538604], - [-12.209889, 9.539037], - [-12.209337, 9.539549], - [-12.208856, 9.540517], - [-12.209415, 9.541575], - [-12.210488, 9.540962], - [-12.210417, 9.54125], - [-12.213749, 9.544582], - [-12.214457, 9.550236], - [-12.215017, 9.550329], - [-12.217048, 9.550031], - [-12.218221, 9.549684], - [-12.219954, 9.550576], - [-12.221393, 9.550776], - [-12.221915, 9.550335], - [-12.222369, 9.550257], - [-12.223499, 9.550529], - [-12.223782, 9.550776], - [-12.224389, 9.550913], - [-12.225339, 9.552101], - [-12.225175, 9.552267], - [-12.225269, 9.55308], - [-12.225384, 9.55391], - [-12.225709, 9.554583], - [-12.225751, 9.555451], - [-12.226015, 9.556002], - [-12.225934, 9.556468], - [-12.225186, 9.557788], - [-12.224064, 9.561216], - [-12.223639, 9.563328], - [-12.223365, 9.563909], - [-12.228749, 9.564583], - [-12.228115, 9.568393], - [-12.22812, 9.568395], - [-12.228639, 9.568845], - [-12.230096, 9.568658], - [-12.231174, 9.567825], - [-12.233904, 9.567131], - [-12.234858, 9.567262], - [-12.235905, 9.566815], - [-12.236284, 9.566549], - [-12.236565, 9.56607], - [-12.237596, 9.5644], - [-12.239623, 9.562564], - [-12.239988, 9.561994], - [-12.242916, 9.563749], - [-12.246249, 9.557082], - [-12.24625, 9.5545], - [-12.24649, 9.55447], - [-12.246744, 9.554604], - [-12.247039, 9.553687], - [-12.248051, 9.554575], - [-12.248298, 9.554629], - [-12.249243, 9.554632], - [-12.250059, 9.554876], - [-12.250386, 9.553157], - [-12.25033, 9.552681], - [-12.250417, 9.552599], - [-12.250417, 9.544582], - [-12.252083, 9.542916], - [-12.256249, 9.540417], - [-12.259582, 9.539582], - [-12.260417, 9.535416], - [-12.261249, 9.529583], - [-12.25875, 9.527082], - [-12.258749, 9.525794], - [-12.258429, 9.525804], - [-12.257917, 9.523749], - [-12.257917, 9.517917], - [-12.262916, 9.516249], - [-12.262917, 9.50875], - [-12.263283, 9.507648], - [-12.263285, 9.507647], - [-12.263425, 9.507732], - [-12.264621, 9.505341], - [-12.266715, 9.505147], - [-12.264583, 9.498749], - [-12.269582, 9.492917], - [-12.274658, 9.495816], - [-12.275124, 9.495027], - [-12.275754, 9.494318], - [-12.275962, 9.493835], - [-12.275869, 9.493424], - [-12.276177, 9.492708], - [-12.276158, 9.492258], - [-12.278008, 9.489362] - ] - ], - "type": "Polygon" - }, - "id": 184, - "properties": { - "cc:admin:id": ["121"], - "cc:oBld:total": 1962, - "cc:pop:fifteen-to-twenty-four": 6517.671269469488, - "cc:pop:grid3-total": 31128.500918775575, - "cc:pop:kontur-total": 35548.36259123049, - "cc:pop:men": 19109.257066345952, - "cc:pop:sixty-plus": 2263.12827317633, - "cc:pop:total": 35482.72896864461, - "cc:pop:under-five": 5718.367902899769, - "cc:pop:women": 16373.471902298636, - "cc:pop:women-fiften-to-forty-nine": 8009.012455607219, - "cc:pop:wp-total": 26459.3017256497, - "cc:pop:wp-total-UN": 30687.90464506481, - "cc:id": "184", - "cc:Name": "Kamakwie MCHP", - "cc:site": [-12.2377, 9.4981], - "user:parentName": "Sella Limba", - "user:code": "OU_193292", - "user:orgUnitId": "KnU2XHRvyiX", - "user:level": "4", - "user:parentId": "j43EZb15rjI" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.30918, 9.417054], - [-12.307937, 9.416967], - [-12.30898, 9.41597], - [-12.308581, 9.415466], - [-12.308275, 9.414193], - [-12.308228, 9.412791], - [-12.307876, 9.411916], - [-12.30855, 9.41125], - [-12.30375, 9.411249], - [-12.30375, 9.409582], - [-12.306249, 9.406249], - [-12.304817, 9.399808], - [-12.30464, 9.399781], - [-12.30315, 9.40053], - [-12.301565, 9.400763], - [-12.299811, 9.400535], - [-12.298641, 9.400106], - [-12.297452, 9.400209], - [-12.295425, 9.399931], - [-12.294437, 9.399994], - [-12.294437, 9.399993], - [-12.2953, 9.399314], - [-12.297288, 9.397276], - [-12.297785, 9.395723], - [-12.298287, 9.395217], - [-12.298326, 9.394904], - [-12.298579, 9.394583], - [-12.295416, 9.394582], - [-12.289679, 9.390996], - [-12.290079, 9.388269], - [-12.290418, 9.387157], - [-12.290408, 9.386063], - [-12.291612, 9.383415], - [-12.291628, 9.383321], - [-12.290416, 9.382917], - [-12.282933, 9.383747], - [-12.282932, 9.383746], - [-12.283031, 9.383524], - [-12.282896, 9.383076], - [-12.282095, 9.382806], - [-12.281628, 9.382614], - [-12.280871, 9.380719], - [-12.281287, 9.380436], - [-12.276588, 9.378086], - [-12.277396, 9.375709], - [-12.278425, 9.373159], - [-12.279033, 9.372784], - [-12.278466, 9.372303], - [-12.277684, 9.371115], - [-12.278113, 9.370356], - [-12.278278, 9.369973], - [-12.277534, 9.369595], - [-12.276469, 9.369124], - [-12.276187, 9.368978], - [-12.275963, 9.368627], - [-12.278749, 9.36375], - [-12.275417, 9.362083], - [-12.274798, 9.358995], - [-12.274313, 9.359222], - [-12.272956, 9.359477], - [-12.271458, 9.359389], - [-12.269811, 9.359995], - [-12.271249, 9.352083], - [-12.272916, 9.350416], - [-12.272916, 9.349252], - [-12.271931, 9.349761], - [-12.270098, 9.353233], - [-12.268972, 9.352597], - [-12.268536, 9.352638], - [-12.267827, 9.353234], - [-12.267286, 9.354055], - [-12.266266, 9.353356], - [-12.265725, 9.352391], - [-12.265224, 9.35011], - [-12.264621, 9.349267], - [-12.264203, 9.348035], - [-12.263266, 9.348692], - [-12.262329, 9.348938], - [-12.261122, 9.348877], - [-12.25983, 9.349596], - [-12.259445, 9.348629], - [-12.259888, 9.348126], - [-12.260767, 9.347976], - [-12.261475, 9.347618], - [-12.262235, 9.346918], - [-12.262667, 9.346117], - [-12.262797, 9.344808], - [-12.262725, 9.34481], - [-12.262078, 9.344031], - [-12.262421, 9.343801], - [-12.261377, 9.342731], - [-12.261455, 9.342448], - [-12.262178, 9.342151], - [-12.262719, 9.341724], - [-12.262698, 9.341174], - [-12.262402, 9.340672], - [-12.2607, 9.34025], - [-12.260122, 9.339674], - [-12.260377, 9.337841], - [-12.261433, 9.33636], - [-12.26136, 9.335827], - [-12.260371, 9.336175], - [-12.259517, 9.333941], - [-12.258851, 9.333594], - [-12.257716, 9.333745], - [-12.255485, 9.334603], - [-12.254643, 9.333925], - [-12.254172, 9.331995], - [-12.250899, 9.3328], - [-12.2456, 9.333299], - [-12.2395, 9.333399], - [-12.2344, 9.3333], - [-12.229099, 9.332799], - [-12.223599, 9.3313], - [-12.2145, 9.333399], - [-12.2121, 9.334399], - [-12.209999, 9.3368], - [-12.209099, 9.3391], - [-12.207999, 9.343999], - [-12.2061, 9.346699], - [-12.202999, 9.348199], - [-12.2, 9.348299], - [-12.199153, 9.347945], - [-12.19625, 9.35375], - [-12.197571, 9.357713], - [-12.198126, 9.357202], - [-12.198153, 9.357195], - [-12.19875, 9.359582], - [-12.203749, 9.362083], - [-12.202916, 9.367083], - [-12.20125, 9.372916], - [-12.199583, 9.372083], - [-12.199583, 9.372917], - [-12.200148, 9.379689], - [-12.204412, 9.37969], - [-12.208198, 9.386249], - [-12.205401, 9.38625], - [-12.201797, 9.392489], - [-12.195419, 9.39249], - [-12.194582, 9.395417], - [-12.193907, 9.40083], - [-12.194057, 9.400916], - [-12.19502, 9.401506], - [-12.19696, 9.40275], - [-12.197666, 9.402902], - [-12.200797, 9.402192], - [-12.20108, 9.40329], - [-12.202916, 9.40375], - [-12.202917, 9.408749], - [-12.204582, 9.409583], - [-12.204582, 9.419582], - [-12.20375, 9.421249], - [-12.203286, 9.421199], - [-12.201235, 9.424749], - [-12.193424, 9.42475], - [-12.189517, 9.431515], - [-12.189801, 9.432005], - [-12.190417, 9.432083], - [-12.193749, 9.436249], - [-12.194582, 9.44125], - [-12.192083, 9.446249], - [-12.191249, 9.44625], - [-12.184947, 9.455702], - [-12.18289, 9.456374], - [-12.181735, 9.457094], - [-12.180943, 9.457122], - [-12.180335, 9.457348], - [-12.179925, 9.457644], - [-12.179713, 9.458042], - [-12.179329, 9.458242], - [-12.179583, 9.45875], - [-12.182917, 9.462083], - [-12.182916, 9.471249], - [-12.179413, 9.474753], - [-12.1808, 9.474699], - [-12.183499, 9.474], - [-12.186699, 9.4721], - [-12.1894, 9.469599], - [-12.1947, 9.464199], - [-12.1976, 9.460399], - [-12.201799, 9.4522], - [-12.2031, 9.448999], - [-12.207799, 9.4401], - [-12.212199, 9.4343], - [-12.2151, 9.428899], - [-12.219099, 9.4239], - [-12.222, 9.4198], - [-12.2277, 9.416299], - [-12.2303, 9.415499], - [-12.233199, 9.4152], - [-12.243899, 9.4152], - [-12.248999, 9.4146], - [-12.2548, 9.412299], - [-12.2583, 9.4116], - [-12.261899, 9.4116], - [-12.2653, 9.4123], - [-12.2707, 9.4146], - [-12.2745, 9.4151], - [-12.280399, 9.415399], - [-12.283999, 9.416099], - [-12.288599, 9.418099], - [-12.2914, 9.4187], - [-12.2963, 9.419], - [-12.308399, 9.419], - [-12.309115, 9.418935], - [-12.3091, 9.418892], - [-12.308751, 9.41817], - [-12.30918, 9.417054] - ] - ], - "type": "Polygon" - }, - "id": 185, - "properties": { - "cc:admin:id": ["116"], - "cc:oBld:total": 367, - "cc:pop:fifteen-to-twenty-four": 3118.5848174065786, - "cc:pop:grid3-total": 19815.203644372796, - "cc:pop:kontur-total": 16286.27928122309, - "cc:pop:men": 7989.10285112629, - "cc:pop:sixty-plus": 1040.630415789255, - "cc:pop:total": 16840.330847899062, - "cc:pop:under-five": 2717.401589154919, - "cc:pop:women": 8851.22799677277, - "cc:pop:women-fiften-to-forty-nine": 4282.65323257136, - "cc:pop:wp-total": 13254.952876093024, - "cc:pop:wp-total-UN": 15369.929145062875, - "cc:id": "185", - "cc:Name": "Kamalo CHC", - "cc:site": [-12.244, 9.4009], - "user:parentName": "Sanda Loko", - "user:code": "OU_193242", - "user:orgUnitId": "HNv1aLPdMYb", - "user:level": "4", - "user:parentId": "WXnNDWTiE9r" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.267916, 9.282083], - [-12.262083, 9.282916], - [-12.259666, 9.282313], - [-12.259589, 9.281919], - [-12.259523, 9.281056], - [-12.259578, 9.279762], - [-12.259216, 9.27641], - [-12.258635, 9.274697], - [-12.255416, 9.277916], - [-12.247083, 9.27375], - [-12.246249, 9.27875], - [-12.24125, 9.282916], - [-12.236084, 9.283654], - [-12.235876, 9.28398], - [-12.232083, 9.282082], - [-12.232083, 9.281249], - [-12.233749, 9.27625], - [-12.22625, 9.274583], - [-12.224583, 9.275417], - [-12.224582, 9.279582], - [-12.222916, 9.280416], - [-12.218782, 9.280416], - [-12.218868, 9.279791], - [-12.219447, 9.277669], - [-12.219504, 9.276378], - [-12.219156, 9.275597], - [-12.214583, 9.27625], - [-12.213749, 9.281249], - [-12.212916, 9.282082], - [-12.207916, 9.282083], - [-12.20125, 9.282916], - [-12.197917, 9.280417], - [-12.197916, 9.27875], - [-12.19625, 9.27875], - [-12.194125, 9.280343], - [-12.193822, 9.279884], - [-12.192906, 9.279014], - [-12.19108, 9.280248], - [-12.190717, 9.281092], - [-12.189156, 9.28273], - [-12.188469, 9.284295], - [-12.186708, 9.285291], - [-12.1859, 9.285571], - [-12.183731, 9.285189], - [-12.183078, 9.285311], - [-12.182159, 9.28593], - [-12.179997, 9.285645], - [-12.177883, 9.286045], - [-12.177617, 9.285863], - [-12.176663, 9.285711], - [-12.17575, 9.285109], - [-12.174944, 9.284222], - [-12.17466, 9.282963], - [-12.174126, 9.282197], - [-12.173304, 9.281683], - [-12.172671, 9.28174], - [-12.172939, 9.284136], - [-12.173275, 9.285198], - [-12.173482, 9.286433], - [-12.169583, 9.287082], - [-12.167916, 9.286249], - [-12.164583, 9.285417], - [-12.162082, 9.282917], - [-12.155417, 9.282083], - [-12.153609, 9.282083], - [-12.152799, 9.284199], - [-12.150299, 9.2866], - [-12.147999, 9.2881], - [-12.144799, 9.2893], - [-12.141199, 9.2912], - [-12.1374, 9.292899], - [-12.1354, 9.2944], - [-12.133799, 9.2969], - [-12.133299, 9.2999], - [-12.133, 9.307599], - [-12.1364, 9.310299], - [-12.144299, 9.311899], - [-12.1497, 9.3141], - [-12.1544, 9.3147], - [-12.167, 9.3148], - [-12.1706, 9.3155], - [-12.1783, 9.319], - [-12.1807, 9.3206], - [-12.1829, 9.3225], - [-12.186299, 9.325999], - [-12.188699, 9.329099], - [-12.1907, 9.333], - [-12.192699, 9.337499], - [-12.1944, 9.3441], - [-12.1969, 9.347], - [-12.2, 9.348299], - [-12.202999, 9.348199], - [-12.206099, 9.346699], - [-12.207999, 9.344], - [-12.209099, 9.3391], - [-12.209999, 9.3368], - [-12.2121, 9.334399], - [-12.2145, 9.333399], - [-12.223599, 9.3313], - [-12.2291, 9.3328], - [-12.234399, 9.333299], - [-12.238184, 9.333373], - [-12.239582, 9.327083], - [-12.23625, 9.322916], - [-12.239037, 9.318038], - [-12.238966, 9.317865], - [-12.237748, 9.317943], - [-12.236742, 9.318259], - [-12.236741, 9.318258], - [-12.239583, 9.315417], - [-12.24125, 9.31625], - [-12.244424, 9.317043], - [-12.2447, 9.316281], - [-12.244853, 9.314382], - [-12.244771, 9.313481], - [-12.245637, 9.311843], - [-12.245623, 9.310255], - [-12.245339, 9.308182], - [-12.248749, 9.308749], - [-12.250416, 9.308749], - [-12.25098, 9.306493], - [-12.249168, 9.305282], - [-12.248835, 9.305059], - [-12.248834, 9.305058], - [-12.250166, 9.303896], - [-12.253587, 9.301398], - [-12.254583, 9.297916], - [-12.258512, 9.295297], - [-12.258513, 9.295298], - [-12.258517, 9.295329], - [-12.259088, 9.294522], - [-12.259661, 9.293737], - [-12.260095, 9.291139], - [-12.260338, 9.289518], - [-12.262311, 9.289878], - [-12.264344, 9.291293], - [-12.264582, 9.291388], - [-12.264583, 9.287916], - [-12.267916, 9.282083] - ] - ], - "type": "Polygon" - }, - "id": 186, - "properties": { - "cc:admin:id": ["31"], - "cc:oBld:total": 292, - "cc:pop:fifteen-to-twenty-four": 1727.7233825218213, - "cc:pop:grid3-total": 6697.281857125781, - "cc:pop:kontur-total": 9044.879524886905, - "cc:pop:men": 4461.706225053783, - "cc:pop:sixty-plus": 621.9171185384745, - "cc:pop:total": 9369.273263848907, - "cc:pop:under-five": 1483.4260150888106, - "cc:pop:women": 4907.567038795127, - "cc:pop:women-fiften-to-forty-nine": 2379.7920559117215, - "cc:pop:wp-total": 7825.281623769951, - "cc:pop:wp-total-UN": 9070.546713441316, - "cc:id": "186", - "cc:Name": "Kamaranka CHC", - "cc:site": [-12.2061, 9.2976], - "user:parentName": "Gbanti Kamaranka", - "user:code": "OU_193218", - "user:orgUnitId": "bSj2UnYhTFb", - "user:level": "4", - "user:parentId": "e1eIKM1GIF3" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.9815, 9.425899], - [-11.9821, 9.423199], - [-11.984199, 9.4179], - [-11.984499, 9.414399], - [-11.983799, 9.411599], - [-11.9799, 9.4036], - [-11.975899, 9.398], - [-11.973299, 9.396699], - [-11.970299, 9.395999], - [-11.966899, 9.393899], - [-11.9608, 9.3883], - [-11.9579, 9.3862], - [-11.9512, 9.3827], - [-11.9486, 9.382], - [-11.944999, 9.3816], - [-11.9423, 9.381799], - [-11.9401, 9.382399], - [-11.937599, 9.3839], - [-11.933099, 9.3877], - [-11.930399, 9.388999], - [-11.9274, 9.389399], - [-11.9238, 9.3882], - [-11.9214, 9.385299], - [-11.9214, 9.3817], - [-11.9254, 9.373899], - [-11.9276, 9.371099], - [-11.934599, 9.364], - [-11.937699, 9.3602], - [-11.9403, 9.355299], - [-11.9426, 9.352499], - [-11.947999, 9.3465], - [-11.949699, 9.3434], - [-11.9502, 9.340699], - [-11.950299, 9.3344], - [-11.950699, 9.3309], - [-11.952799, 9.326], - [-11.9534, 9.323899], - [-11.953799, 9.3148], - [-11.954399, 9.3114], - [-11.956599, 9.307], - [-11.956727, 9.306685], - [-11.95553, 9.306358], - [-11.954379, 9.306358], - [-11.954245, 9.306409], - [-11.952082, 9.302083], - [-11.948863, 9.299507], - [-11.948359, 9.299513], - [-11.948358, 9.299512], - [-11.948406, 9.299289], - [-11.94625, 9.29875], - [-11.945416, 9.297083], - [-11.93875, 9.293749], - [-11.937916, 9.287083], - [-11.935417, 9.286249], - [-11.938749, 9.282082], - [-11.938749, 9.279826], - [-11.93712, 9.279751], - [-11.936721, 9.279455], - [-11.935339, 9.279185], - [-11.934054, 9.278177], - [-11.932296, 9.277367], - [-11.932045, 9.277022], - [-11.931375, 9.276826], - [-11.931372, 9.276823], - [-11.931373, 9.276822], - [-11.939582, 9.277916], - [-11.939582, 9.270417], - [-11.930269, 9.264828], - [-11.926796, 9.270841], - [-11.919576, 9.270842], - [-11.917917, 9.272916], - [-11.917082, 9.272917], - [-11.913033, 9.274265], - [-11.911099, 9.270916], - [-11.906276, 9.270915], - [-11.90476, 9.269616], - [-11.904941, 9.269194], - [-11.90493, 9.268601], - [-11.904662, 9.268147], - [-11.903707, 9.26786], - [-11.902945, 9.266864], - [-11.902066, 9.265256], - [-11.901744, 9.265138], - [-11.901316, 9.264176], - [-11.901132, 9.263095], - [-11.900693, 9.261963], - [-11.899672, 9.260147], - [-11.899694, 9.259686], - [-11.898891, 9.258601], - [-11.898684, 9.258254], - [-11.892917, 9.260417], - [-11.892916, 9.26625], - [-11.892207, 9.274768], - [-11.892083, 9.274797], - [-11.892082, 9.279582], - [-11.889074, 9.284096], - [-11.889073, 9.284096], - [-11.888925, 9.283766], - [-11.888902, 9.283573], - [-11.882916, 9.279583], - [-11.872917, 9.285417], - [-11.872917, 9.288753], - [-11.879949, 9.288754], - [-11.883854, 9.295518], - [-11.884582, 9.295519], - [-11.884583, 9.297916], - [-11.889582, 9.302917], - [-11.88875, 9.307916], - [-11.88625, 9.309583], - [-11.884906, 9.312941], - [-11.885901, 9.313179], - [-11.890644, 9.314316], - [-11.890698, 9.314914], - [-11.891014, 9.315633], - [-11.888553, 9.315175], - [-11.877633, 9.314822], - [-11.877797, 9.315417], - [-11.87828, 9.315951], - [-11.87984, 9.316573], - [-11.88008, 9.316717], - [-11.877083, 9.317917], - [-11.87625, 9.322082], - [-11.882082, 9.322917], - [-11.879583, 9.32875], - [-11.879582, 9.333749], - [-11.87875, 9.336249], - [-11.885417, 9.33625], - [-11.886249, 9.342916], - [-11.88405, 9.342445], - [-11.881371, 9.347085], - [-11.88522, 9.353749], - [-11.88767, 9.35375], - [-11.886989, 9.354933], - [-11.893749, 9.355416], - [-11.894796, 9.356987], - [-11.889037, 9.356988], - [-11.88513, 9.363753], - [-11.877918, 9.363754], - [-11.878749, 9.365417], - [-11.875417, 9.381249], - [-11.877083, 9.382083], - [-11.877917, 9.390416], - [-11.879582, 9.39375], - [-11.879583, 9.399582], - [-11.887082, 9.405417], - [-11.887082, 9.410416], - [-11.88375, 9.41375], - [-11.888749, 9.41875], - [-11.88875, 9.428749], - [-11.887916, 9.430417], - [-11.887082, 9.434581], - [-11.885416, 9.432917], - [-11.877083, 9.432917], - [-11.87625, 9.437916], - [-11.879582, 9.451249], - [-11.877917, 9.45125], - [-11.877082, 9.455416], - [-11.87169, 9.457439], - [-11.872199, 9.4594], - [-11.8714, 9.470099], - [-11.8711, 9.475999], - [-11.8711, 9.486399], - [-11.871499, 9.492199], - [-11.872099, 9.495099], - [-11.8735, 9.4996], - [-11.8776, 9.5082], - [-11.882399, 9.516799], - [-11.887199, 9.521899], - [-11.8908, 9.5241], - [-11.8937, 9.5249], - [-11.898099, 9.525399], - [-11.914899, 9.5253], - [-11.919299, 9.5249], - [-11.922199, 9.5243], - [-11.9249, 9.523299], - [-11.9335, 9.5189], - [-11.943199, 9.5172], - [-11.9459, 9.516299], - [-11.9489, 9.514299], - [-11.954, 9.508699], - [-11.960499, 9.504399], - [-11.962599, 9.4983], - [-11.963299, 9.4928], - [-11.963999, 9.4902], - [-11.9661, 9.484799], - [-11.9666, 9.480999], - [-11.966899, 9.4752], - [-11.967499, 9.4716], - [-11.969499, 9.4671], - [-11.970099, 9.4633], - [-11.970099, 9.461299], - [-11.9693, 9.4567], - [-11.9669, 9.451499], - [-11.9666, 9.4472], - [-11.9677, 9.444399], - [-11.9697, 9.442499], - [-11.974899, 9.4396], - [-11.977699, 9.4373], - [-11.980199, 9.434], - [-11.9809, 9.431699], - [-11.9815, 9.425899] - ] - ], - "type": "Polygon" - }, - "id": 187, - "properties": { - "cc:admin:id": ["7"], - "cc:oBld:total": 707, - "cc:pop:fifteen-to-twenty-four": 1537.2391617886224, - "cc:pop:grid3-total": 9294.204126051865, - "cc:pop:kontur-total": 9055.429414652472, - "cc:pop:men": 3863.879526574053, - "cc:pop:sixty-plus": 500.1313699472342, - "cc:pop:total": 8402.963375191031, - "cc:pop:under-five": 1329.9769913168323, - "cc:pop:women": 4539.083848616978, - "cc:pop:women-fiften-to-forty-nine": 2218.4070790121377, - "cc:pop:wp-total": 5864.315644935204, - "cc:pop:wp-total-UN": 6804.391468179478, - "cc:id": "187", - "cc:Name": "Kamasikie MCHP", - "cc:site": [-11.9088, 9.3181], - "user:parentName": "Biriwa", - "user:code": "OU_193235", - "user:orgUnitId": "ZxuSbAmsLCn", - "user:level": "4", - "user:parentId": "fwH9ipvXde9" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.410499, 9.463599], - [-12.4104, 9.4519], - [-12.4096, 9.4449], - [-12.407799, 9.438999], - [-12.403999, 9.431299], - [-12.402799, 9.424099], - [-12.402399, 9.4108], - [-12.400799, 9.4062], - [-12.398199, 9.4037], - [-12.395099, 9.4024], - [-12.390899, 9.401999], - [-12.380799, 9.401899], - [-12.375399, 9.400899], - [-12.3702, 9.3983], - [-12.3676, 9.395799], - [-12.3657, 9.3918], - [-12.3651, 9.3879], - [-12.36527, 9.385562], - [-12.363749, 9.387083], - [-12.360417, 9.387917], - [-12.36087, 9.389734], - [-12.36067, 9.389645], - [-12.359104, 9.38923], - [-12.359356, 9.389884], - [-12.359935, 9.390335], - [-12.359935, 9.390337], - [-12.358793, 9.390495], - [-12.358438, 9.390728], - [-12.356716, 9.39087], - [-12.355473, 9.391304], - [-12.355085, 9.391701], - [-12.354583, 9.392087], - [-12.354582, 9.401249], - [-12.352083, 9.402917], - [-12.352083, 9.409582], - [-12.351559, 9.409583], - [-12.351867, 9.410267], - [-12.351709, 9.411371], - [-12.351572, 9.411511], - [-12.351766, 9.411727], - [-12.351937, 9.41274], - [-12.352154, 9.415671], - [-12.351495, 9.417293], - [-12.351392, 9.417963], - [-12.351017, 9.418968], - [-12.350593, 9.419392], - [-12.350411, 9.419454], - [-12.349479, 9.419595], - [-12.347405, 9.420689], - [-12.348327, 9.421021], - [-12.349582, 9.425416], - [-12.349583, 9.430416], - [-12.352916, 9.43125], - [-12.349583, 9.434583], - [-12.349582, 9.442294], - [-12.347861, 9.441361], - [-12.346925, 9.441082], - [-12.345362, 9.44193], - [-12.344845, 9.441971], - [-12.342917, 9.442144], - [-12.342917, 9.444575], - [-12.344331, 9.444576], - [-12.348236, 9.451342], - [-12.344331, 9.458107], - [-12.345421, 9.459997], - [-12.342208, 9.461603], - [-12.342154, 9.46156], - [-12.339582, 9.465416], - [-12.33375, 9.469583], - [-12.333547, 9.471611], - [-12.333448, 9.471783], - [-12.333517, 9.471904], - [-12.333053, 9.476539], - [-12.330813, 9.477561], - [-12.329583, 9.481249], - [-12.334583, 9.487083], - [-12.342082, 9.492916], - [-12.342082, 9.497083], - [-12.339583, 9.500416], - [-12.343749, 9.502917], - [-12.34559, 9.505982], - [-12.348104, 9.504299], - [-12.348105, 9.504299], - [-12.347917, 9.504583], - [-12.347917, 9.513749], - [-12.351334, 9.517167], - [-12.351113, 9.518264], - [-12.349597, 9.51894], - [-12.35073, 9.51974], - [-12.353221, 9.521328], - [-12.356192, 9.523207], - [-12.356766, 9.523523], - [-12.357146, 9.523555], - [-12.357434, 9.524217], - [-12.357426, 9.525727], - [-12.360799, 9.5238], - [-12.364, 9.522499], - [-12.368299, 9.5201], - [-12.371499, 9.5189], - [-12.375099, 9.5169], - [-12.378099, 9.5156], - [-12.380199, 9.514199], - [-12.381999, 9.511999], - [-12.3828, 9.508899], - [-12.382999, 9.504099], - [-12.3826, 9.4892], - [-12.383, 9.483899], - [-12.3836, 9.481699], - [-12.387299, 9.4742], - [-12.389, 9.471999], - [-12.391699, 9.4695], - [-12.393899, 9.4679], - [-12.401499, 9.4644], - [-12.4053, 9.463699], - [-12.410499, 9.463599] - ] - ], - "type": "Polygon" - }, - "id": 188, - "properties": { - "cc:admin:id": ["121"], - "cc:oBld:total": 101, - "cc:pop:fifteen-to-twenty-four": 748.4186618782888, - "cc:pop:grid3-total": 2870.9857964349208, - "cc:pop:kontur-total": 4205.911252147336, - "cc:pop:men": 2207.0795429834393, - "cc:pop:sixty-plus": 259.329514732904, - "cc:pop:total": 4097.626914017815, - "cc:pop:under-five": 658.975484087726, - "cc:pop:women": 1890.5473710343733, - "cc:pop:women-fiften-to-forty-nine": 932.2495418750914, - "cc:pop:wp-total": 4304.178025034491, - "cc:pop:wp-total-UN": 4994.609838769949, - "cc:id": "188", - "cc:Name": "Kamawornie CHP", - "cc:site": [-12.3726, 9.4863], - "user:parentName": "Sella Limba", - "user:code": "OU_193290", - "user:orgUnitId": "wO4z5Aqo0hf", - "user:level": "4", - "user:parentId": "j43EZb15rjI" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.413099, 9.3127], - [-12.406399, 9.309299], - [-12.3967, 9.3037], - [-12.393199, 9.300899], - [-12.3853, 9.2941], - [-12.382859, 9.292261], - [-12.379583, 9.292916], - [-12.37875, 9.292917], - [-12.374583, 9.295416], - [-12.373749, 9.294583], - [-12.372916, 9.294582], - [-12.367083, 9.29125], - [-12.367082, 9.291213], - [-12.366687, 9.291297], - [-12.366179, 9.291722], - [-12.365207, 9.292185], - [-12.363469, 9.292645], - [-12.362861, 9.292666], - [-12.361594, 9.292757], - [-12.360732, 9.292678], - [-12.359903, 9.292808], - [-12.357064, 9.293867], - [-12.356065, 9.293935], - [-12.355416, 9.28875], - [-12.351058, 9.288127], - [-12.351071, 9.287747], - [-12.342083, 9.28625], - [-12.339582, 9.288749], - [-12.337082, 9.285417], - [-12.335416, 9.285416], - [-12.332916, 9.282917], - [-12.330416, 9.282916], - [-12.327083, 9.280417], - [-12.319583, 9.288749], - [-12.318749, 9.291249], - [-12.312917, 9.290417], - [-12.312082, 9.28875], - [-12.307083, 9.289582], - [-12.307083, 9.282083], - [-12.30625, 9.281249], - [-12.306249, 9.280416], - [-12.297917, 9.277917], - [-12.29625, 9.279583], - [-12.294582, 9.283749], - [-12.282083, 9.282917], - [-12.281048, 9.281883], - [-12.280185, 9.28268], - [-12.27375, 9.281249], - [-12.27125, 9.279583], - [-12.271249, 9.275965], - [-12.270417, 9.276155], - [-12.270416, 9.279583], - [-12.267916, 9.282083], - [-12.264583, 9.287917], - [-12.264582, 9.291388], - [-12.264344, 9.291293], - [-12.262311, 9.289878], - [-12.260338, 9.289518], - [-12.260095, 9.291139], - [-12.259661, 9.293737], - [-12.259088, 9.294522], - [-12.258518, 9.295327], - [-12.258516, 9.295327], - [-12.258512, 9.295297], - [-12.254583, 9.297917], - [-12.253587, 9.301399], - [-12.250166, 9.303896], - [-12.248834, 9.305058], - [-12.25098, 9.306493], - [-12.250417, 9.308749], - [-12.248749, 9.308749], - [-12.245339, 9.308182], - [-12.245623, 9.310255], - [-12.245637, 9.311843], - [-12.244771, 9.313482], - [-12.244853, 9.314382], - [-12.2447, 9.316281], - [-12.244425, 9.317043], - [-12.24125, 9.31625], - [-12.239583, 9.315417], - [-12.23674, 9.318259], - [-12.237748, 9.317943], - [-12.238966, 9.317865], - [-12.239037, 9.318039], - [-12.23625, 9.322916], - [-12.239582, 9.327083], - [-12.238185, 9.333373], - [-12.2395, 9.333399], - [-12.245599, 9.3333], - [-12.250899, 9.3328], - [-12.257, 9.3313], - [-12.2598, 9.3328], - [-12.264199, 9.340999], - [-12.2662, 9.344999], - [-12.2687, 9.347299], - [-12.2709, 9.3481], - [-12.2738, 9.348399], - [-12.279699, 9.3482], - [-12.2833, 9.347499], - [-12.288699, 9.3452], - [-12.293699, 9.3439], - [-12.296899, 9.3421], - [-12.304799, 9.3351], - [-12.307299, 9.3338], - [-12.313099, 9.3323], - [-12.3176, 9.330299], - [-12.3213, 9.329499], - [-12.3252, 9.3294], - [-12.329199, 9.329599], - [-12.3327, 9.3306], - [-12.341099, 9.334899], - [-12.3465, 9.3393], - [-12.355299, 9.343599], - [-12.360199, 9.344799], - [-12.362699, 9.345999], - [-12.3662, 9.349999], - [-12.3726, 9.3508], - [-12.3809, 9.353099], - [-12.3857, 9.352699], - [-12.388899, 9.351199], - [-12.391, 9.349299], - [-12.3934, 9.345999], - [-12.397499, 9.3363], - [-12.400899, 9.3305], - [-12.4063, 9.325099], - [-12.4083, 9.322099], - [-12.4104, 9.317399], - [-12.413099, 9.3127] - ] - ], - "type": "Polygon" - }, - "id": 190, - "properties": { - "cc:admin:id": ["31"], - "cc:oBld:total": 480, - "cc:pop:fifteen-to-twenty-four": 1869.7826202168378, - "cc:pop:grid3-total": 6331.188240007232, - "cc:pop:kontur-total": 9831.313709688555, - "cc:pop:men": 4837.1687699479935, - "cc:pop:sixty-plus": 671.9048384428696, - "cc:pop:total": 10172.89229587774, - "cc:pop:under-five": 1611.6109486667233, - "cc:pop:women": 5335.723525929747, - "cc:pop:women-fiften-to-forty-nine": 2580.5671756226934, - "cc:pop:wp-total": 9591.154157351802, - "cc:pop:wp-total-UN": 11101.278207193629, - "cc:id": "190", - "cc:Name": "Kambia CHP", - "cc:site": [-12.2948, 9.3407], - "user:parentName": "Gbanti Kamaranka", - "user:code": "OU_193223", - "user:orgUnitId": "UUgajyaViT7", - "user:level": "4", - "user:parentId": "e1eIKM1GIF3" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.950281, 9.080231], - [-12.948855, 9.079312], - [-12.94796, 9.07859], - [-12.946091, 9.077543], - [-12.944872, 9.076578], - [-12.944217, 9.075762], - [-12.944006, 9.075333], - [-12.94393, 9.074605], - [-12.943304, 9.073931], - [-12.942599, 9.07349], - [-12.94097, 9.071771], - [-12.940351, 9.071452], - [-12.937513, 9.070364], - [-12.935239, 9.069034], - [-12.933047, 9.068305], - [-12.930719, 9.0678], - [-12.929684, 9.0678], - [-12.92875, 9.067961], - [-12.92875, 9.072917], - [-12.929582, 9.083749], - [-12.92625, 9.087916], - [-12.92375, 9.087916], - [-12.91875, 9.085417], - [-12.918749, 9.08375], - [-12.916249, 9.08125], - [-12.914582, 9.082082], - [-12.912456, 9.081552], - [-12.912233, 9.082039], - [-12.911508, 9.083328], - [-12.909361, 9.088027], - [-12.906249, 9.089582], - [-12.90415, 9.089583], - [-12.905457, 9.092], - [-12.905455, 9.092001], - [-12.904927, 9.091884], - [-12.902916, 9.097916], - [-12.892917, 9.097917], - [-12.891249, 9.10125], - [-12.885417, 9.10375], - [-12.885416, 9.113749], - [-12.882916, 9.113749], - [-12.878239, 9.111077], - [-12.878372, 9.11063], - [-12.878567, 9.110488], - [-12.872917, 9.10625], - [-12.870417, 9.10875], - [-12.868749, 9.113749], - [-12.859189, 9.112279], - [-12.859068, 9.114707], - [-12.857486, 9.116731], - [-12.857317, 9.117279], - [-12.857439, 9.118329], - [-12.857293, 9.120102], - [-12.857489, 9.121224], - [-12.85737, 9.124546], - [-12.857152, 9.125347], - [-12.852917, 9.129582], - [-12.850417, 9.129582], - [-12.845417, 9.127917], - [-12.843559, 9.125441], - [-12.843356, 9.124217], - [-12.843199, 9.1263], - [-12.8425, 9.128399], - [-12.838999, 9.1355], - [-12.836599, 9.1389], - [-12.829299, 9.1463], - [-12.825299, 9.1495], - [-12.820399, 9.1522], - [-12.812599, 9.1591], - [-12.809599, 9.1611], - [-12.805799, 9.1629], - [-12.7975, 9.167299], - [-12.7917, 9.171699], - [-12.7873, 9.174199], - [-12.7851, 9.176499], - [-12.782, 9.183099], - [-12.7812, 9.187399], - [-12.7847, 9.194999], - [-12.787, 9.197399], - [-12.790199, 9.198799], - [-12.795599, 9.1995], - [-12.797799, 9.200499], - [-12.799, 9.203699], - [-12.803699, 9.203], - [-12.807199, 9.2041], - [-12.8102, 9.2063], - [-12.816999, 9.212999], - [-12.820199, 9.215699], - [-12.824, 9.217399], - [-12.8269, 9.2177], - [-12.834599, 9.217799], - [-12.839399, 9.218299], - [-12.8448, 9.2205], - [-12.8473, 9.2211], - [-12.852699, 9.221799], - [-12.855199, 9.222399], - [-12.860099, 9.224499], - [-12.862299, 9.224899], - [-12.865699, 9.224599], - [-12.870999, 9.2223], - [-12.874299, 9.221399], - [-12.8769, 9.218099], - [-12.880799, 9.2099], - [-12.8818, 9.206], - [-12.883199, 9.2039], - [-12.8887, 9.201899], - [-12.8911, 9.200599], - [-12.893099, 9.1987], - [-12.8955, 9.195899], - [-12.897399, 9.192], - [-12.899399, 9.1884], - [-12.899999, 9.1864], - [-12.900099, 9.1833], - [-12.898899, 9.180099], - [-12.896599, 9.1779], - [-12.890299, 9.175799], - [-12.8886, 9.172799], - [-12.8889, 9.168299], - [-12.8905, 9.166199], - [-12.8928, 9.165599], - [-12.897, 9.165299], - [-12.899699, 9.1645], - [-12.902499, 9.162099], - [-12.9035, 9.159799], - [-12.9045, 9.154799], - [-12.906699, 9.1504], - [-12.9079, 9.147199], - [-12.910299, 9.1421], - [-12.9114, 9.136999], - [-12.913899, 9.1317], - [-12.915199, 9.1286], - [-12.917499, 9.1243], - [-12.9189, 9.121199], - [-12.9204, 9.118899], - [-12.9229, 9.116099], - [-12.929899, 9.109], - [-12.932299, 9.1057], - [-12.934099, 9.1018], - [-12.936, 9.098199], - [-12.937699, 9.0943], - [-12.941399, 9.0884], - [-12.944599, 9.0863], - [-12.947499, 9.084], - [-12.950281, 9.080231] - ] - ], - "type": "Polygon" - }, - "id": 191, - "properties": { - "cc:admin:id": ["82"], - "cc:oBld:total": 3977, - "cc:pop:fifteen-to-twenty-four": 7290.499542313473, - "cc:pop:grid3-total": 29913.724963046378, - "cc:pop:kontur-total": 38358.367120048424, - "cc:pop:men": 18630.832661693978, - "cc:pop:sixty-plus": 2569.073700628534, - "cc:pop:total": 39176.458040706755, - "cc:pop:under-five": 6262.8409631945015, - "cc:pop:women": 20545.625379012752, - "cc:pop:women-fiften-to-forty-nine": 9955.940264546902, - "cc:pop:wp-total": 32529.305025639216, - "cc:pop:wp-total-UN": 37706.13026787596, - "cc:id": "191", - "cc:Name": "Kambia GH", - "cc:site": [-12.9133, 9.125], - "user:parentName": "Magbema", - "user:code": "OU_211238", - "user:orgUnitId": "N7mHLD3ljYc", - "user:level": "4", - "user:parentId": "QywkxFudXrC" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.616817, 8.770655], - [-12.615799, 8.770399], - [-12.6074, 8.7665], - [-12.603099, 8.764099], - [-12.5958, 8.7606], - [-12.593, 8.7598], - [-12.590199, 8.7597], - [-12.5857, 8.7603], - [-12.5809, 8.762499], - [-12.578899, 8.7631], - [-12.575199, 8.7634], - [-12.566, 8.763599], - [-12.5623, 8.7644], - [-12.5547, 8.769299], - [-12.553099, 8.771799], - [-12.550499, 8.773799], - [-12.546999, 8.7746], - [-12.539199, 8.7749], - [-12.5362, 8.775599], - [-12.535417, 8.775965], - [-12.535416, 8.777916], - [-12.532412, 8.777917], - [-12.532685, 8.779298], - [-12.533184, 8.780561], - [-12.5332, 8.781261], - [-12.532877, 8.782888], - [-12.532905, 8.785045], - [-12.533369, 8.786152], - [-12.53545, 8.788395], - [-12.536099, 8.787198], - [-12.537085, 8.787586], - [-12.537417, 8.788595], - [-12.53716, 8.789097], - [-12.536326, 8.789419], - [-12.536523, 8.789822], - [-12.535539, 8.790549], - [-12.533485, 8.792892], - [-12.532962, 8.793241], - [-12.532239, 8.793633], - [-12.532523, 8.794323], - [-12.533564, 8.795753], - [-12.53413, 8.796098], - [-12.535187, 8.797598], - [-12.535312, 8.798881], - [-12.536276, 8.799909], - [-12.536715, 8.800921], - [-12.537916, 8.800185], - [-12.537917, 8.800417], - [-12.540114, 8.806278], - [-12.540968, 8.805871], - [-12.54268, 8.809865], - [-12.542632, 8.809928], - [-12.547916, 8.81125], - [-12.545417, 8.820416], - [-12.547082, 8.823749], - [-12.542917, 8.82375], - [-12.537917, 8.82625], - [-12.542083, 8.834582], - [-12.547916, 8.834583], - [-12.550371, 8.837651], - [-12.551007, 8.83702], - [-12.552608, 8.835936], - [-12.554115, 8.833881], - [-12.555463, 8.83283], - [-12.556174, 8.832474], - [-12.557542, 8.830855], - [-12.558056, 8.830363], - [-12.559696, 8.828582], - [-12.560691, 8.827184], - [-12.563305, 8.825564], - [-12.564628, 8.824634], - [-12.566789, 8.823857], - [-12.56785, 8.824028], - [-12.56986, 8.824028], - [-12.572523, 8.824341], - [-12.572956, 8.824296], - [-12.573597, 8.823909], - [-12.574318, 8.823143], - [-12.575514, 8.822096], - [-12.576551, 8.821626], - [-12.577083, 8.823749], - [-12.578749, 8.824582], - [-12.582083, 8.82125], - [-12.588006, 8.822566], - [-12.587377, 8.821814], - [-12.586676, 8.821442], - [-12.586127, 8.820813], - [-12.586101, 8.82068], - [-12.588787, 8.818441], - [-12.587949, 8.818383], - [-12.585417, 8.814583], - [-12.590416, 8.812082], - [-12.589708, 8.806415], - [-12.59293, 8.805463], - [-12.593461, 8.805386], - [-12.592083, 8.801249], - [-12.592082, 8.799583], - [-12.589727, 8.79487], - [-12.589855, 8.794935], - [-12.590603, 8.795034], - [-12.590938, 8.794858], - [-12.591351, 8.793832], - [-12.591425, 8.793764], - [-12.597082, 8.791249], - [-12.597917, 8.789583], - [-12.600868, 8.789582], - [-12.60039, 8.789016], - [-12.599999, 8.788751], - [-12.599999, 8.78875], - [-12.603749, 8.788749], - [-12.60375, 8.782802], - [-12.604175, 8.782643], - [-12.604363, 8.782899], - [-12.604562, 8.782862], - [-12.6046, 8.782831], - [-12.605323, 8.782536], - [-12.605476, 8.782167], - [-12.605358, 8.781609], - [-12.606415, 8.781038], - [-12.606489, 8.780503], - [-12.607178, 8.780413], - [-12.608156, 8.780597], - [-12.608474, 8.779955], - [-12.609581, 8.779669], - [-12.609898, 8.778703], - [-12.610508, 8.778255], - [-12.610837, 8.777524], - [-12.611363, 8.777316], - [-12.611645, 8.776892], - [-12.611658, 8.776569], - [-12.61199, 8.776344], - [-12.612059, 8.776048], - [-12.613715, 8.775126], - [-12.613885, 8.774651], - [-12.61454, 8.773885], - [-12.614615, 8.772264], - [-12.6154, 8.771304], - [-12.616093, 8.771059], - [-12.616817, 8.770655] - ] - ], - "type": "Polygon" - }, - "id": 192, - "properties": { - "cc:admin:id": ["130"], - "cc:oBld:total": 52, - "cc:pop:fifteen-to-twenty-four": 1418.4368882298495, - "cc:pop:grid3-total": 3846.0674465067664, - "cc:pop:kontur-total": 7767.988909347529, - "cc:pop:men": 3512.3683461859728, - "cc:pop:sixty-plus": 486.7475411689489, - "cc:pop:total": 7579.410100373908, - "cc:pop:under-five": 1182.0456406671694, - "cc:pop:women": 4067.041754187938, - "cc:pop:women-fiften-to-forty-nine": 1950.9686604899628, - "cc:pop:wp-total": 6148.8358608461285, - "cc:pop:wp-total-UN": 7123.314321268404, - "cc:id": "192", - "cc:Name": "Kambia Makama CHP", - "cc:site": [-12.5834, 8.8169], - "user:parentName": "Tainkatopa Makama Safrokoh ", - "user:code": "OU_255064", - "user:orgUnitId": "kO9xe2HCovK", - "user:level": "4", - "user:parentId": "PrJQHI6q7w2" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.560899, 8.7119], - [-10.5565, 8.7076], - [-10.5541, 8.704099], - [-10.553299, 8.700599], - [-10.5532, 8.6924], - [-10.5528, 8.6883], - [-10.551399, 8.6846], - [-10.549699, 8.682399], - [-10.5405, 8.6733], - [-10.5386, 8.670199], - [-10.538099, 8.667999], - [-10.537299, 8.661399], - [-10.5346, 8.6549], - [-10.533399, 8.649799], - [-10.5295, 8.6414], - [-10.5269, 8.6363], - [-10.526, 8.632], - [-10.525, 8.6296], - [-10.523499, 8.627299], - [-10.515599, 8.6181], - [-10.5021, 8.6246], - [-10.498399, 8.6313], - [-10.4818, 8.637899], - [-10.4792, 8.640399], - [-10.4785, 8.646399], - [-10.481699, 8.6523], - [-10.478699, 8.6597], - [-10.4694, 8.674599], - [-10.4751, 8.680799], - [-10.482799, 8.6801], - [-10.4846, 8.689299], - [-10.494, 8.701999], - [-10.510399, 8.709399], - [-10.5069, 8.715399], - [-10.517699, 8.729899], - [-10.5103, 8.7354], - [-10.5114, 8.738799], - [-10.5232, 8.7375], - [-10.525499, 8.741], - [-10.526499, 8.748799], - [-10.5262, 8.746299], - [-10.5309, 8.741599], - [-10.537899, 8.7357], - [-10.542299, 8.7333], - [-10.544799, 8.731], - [-10.548, 8.725299], - [-10.5519, 8.720899], - [-10.560899, 8.7119] - ] - ], - "type": "Polygon" - }, - "id": 193, - "properties": { - "cc:admin:id": ["79"], - "cc:oBld:total": 1073, - "cc:pop:fifteen-to-twenty-four": 1271.5795881854265, - "cc:pop:grid3-total": 10834.229415338761, - "cc:pop:kontur-total": 7364.922805530928, - "cc:pop:men": 3156.378717164244, - "cc:pop:sixty-plus": 337.72067505483216, - "cc:pop:total": 6829.553990805051, - "cc:pop:under-five": 1025.7514866557478, - "cc:pop:women": 3673.1752736408052, - "cc:pop:women-fiften-to-forty-nine": 1868.6652191194437, - "cc:pop:wp-total": 5891.872972819195, - "cc:pop:wp-total-UN": 6835.0581446717515, - "cc:id": "193", - "cc:Name": "Kamiendor MCHP", - "cc:site": [-10.5153, 8.6827], - "user:parentName": "Mafindor", - "user:code": "OU_233346", - "user:orgUnitId": "hHKKi9WNoBG", - "user:level": "4", - "user:parentId": "EjnIQNVAXGp" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.33875, 8.062916], - [-12.338749, 8.052917], - [-12.327917, 8.049583], - [-12.329582, 8.04125], - [-12.331819, 8.039759], - [-12.324127, 8.039758], - [-12.320222, 8.032993], - [-12.324127, 8.026228], - [-12.331249, 8.026227], - [-12.33125, 8.015417], - [-12.332796, 8.014178], - [-12.33194, 8.012695], - [-12.335846, 8.005929], - [-12.332492, 8.000121], - [-12.329799, 7.999499], - [-12.327899, 7.998499], - [-12.3257, 7.9967], - [-12.322999, 7.993499], - [-12.320299, 7.988799], - [-12.318699, 7.987], - [-12.3168, 7.986], - [-12.314599, 7.985399], - [-12.3068, 7.985], - [-12.3031, 7.9844], - [-12.2977, 7.9823], - [-12.2939, 7.9817], - [-12.2879, 7.9815], - [-12.2842, 7.9809], - [-12.2788, 7.9787], - [-12.273699, 7.977299], - [-12.2658, 7.9725], - [-12.2625, 7.976699], - [-12.2599, 7.979499], - [-12.2584, 7.981899], - [-12.257799, 7.9845], - [-12.2577, 7.988099], - [-12.2583, 7.9917], - [-12.260699, 7.996899], - [-12.261399, 7.999399], - [-12.261999, 8.004699], - [-12.262699, 8.007199], - [-12.264799, 8.011699], - [-12.265499, 8.015199], - [-12.265799, 8.019699], - [-12.2656, 8.023399], - [-12.2646, 8.026799], - [-12.2628, 8.030299], - [-12.261399, 8.0335], - [-12.2591, 8.037799], - [-12.257799, 8.0409], - [-12.253799, 8.047399], - [-12.2477, 8.051399], - [-12.243899, 8.0532], - [-12.237299, 8.058], - [-12.234799, 8.059199], - [-12.2278, 8.060099], - [-12.2257, 8.060599], - [-12.223799, 8.0615], - [-12.2212, 8.0635], - [-12.221299, 8.092199], - [-12.221699, 8.097399], - [-12.222399, 8.100399], - [-12.2239, 8.1031], - [-12.2271, 8.107799], - [-12.232499, 8.108999], - [-12.2371, 8.111], - [-12.2396, 8.1115], - [-12.244899, 8.112099], - [-12.247699, 8.113], - [-12.250499, 8.1154], - [-12.252899, 8.119599], - [-12.254599, 8.121399], - [-12.2566, 8.1228], - [-12.2618, 8.1255], - [-12.2651, 8.1267], - [-12.268699, 8.126899], - [-12.272199, 8.126499], - [-12.2752, 8.125099], - [-12.2769, 8.123399], - [-12.2787, 8.120899], - [-12.2811, 8.1198], - [-12.284399, 8.1199], - [-12.290399, 8.122299], - [-12.2975, 8.1232], - [-12.2997, 8.1237], - [-12.301799, 8.124699], - [-12.3039, 8.1265], - [-12.306299, 8.129299], - [-12.309499, 8.135099], - [-12.310868, 8.136784], - [-12.312082, 8.133749], - [-12.310417, 8.127916], - [-12.315416, 8.12375], - [-12.318749, 8.122083], - [-12.31875, 8.112917], - [-12.320416, 8.112083], - [-12.320417, 8.10375], - [-12.323749, 8.100416], - [-12.324583, 8.097083], - [-12.327082, 8.094584], - [-12.332055, 8.094085], - [-12.33194, 8.093885], - [-12.335846, 8.08712], - [-12.333524, 8.083097], - [-12.33375, 8.082916], - [-12.335416, 8.078749], - [-12.33375, 8.074583], - [-12.33375, 8.067917], - [-12.33875, 8.062916] - ] - ], - "type": "Polygon" - }, - "id": 194, - "properties": { - "cc:admin:id": ["45"], - "cc:oBld:total": 15, - "cc:pop:fifteen-to-twenty-four": 389.3527972406183, - "cc:pop:grid3-total": 3116.546362151047, - "cc:pop:kontur-total": 2340.826671903263, - "cc:pop:men": 1025.146579116635, - "cc:pop:sixty-plus": 143.9451333283506, - "cc:pop:total": 2149.1966794418145, - "cc:pop:under-five": 364.373904335102, - "cc:pop:women": 1124.05010032518, - "cc:pop:women-fiften-to-forty-nine": 530.3044870152701, - "cc:pop:wp-total": 3154.706474167377, - "cc:pop:wp-total-UN": 3651.038981775585, - "cc:id": "194", - "cc:Name": "Kangahun CHC", - "cc:site": [-12.287, 8.0805], - "user:parentName": "Kaiyamba", - "user:code": "OU_247057", - "user:orgUnitId": "wUmVUKhnPuy", - "user:level": "4", - "user:parentId": "USQdmvrHh1Q" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.718099, 9.279799], - [-11.715499, 9.264299], - [-11.715, 9.2462], - [-11.7144, 9.2402], - [-11.712599, 9.234299], - [-11.709599, 9.227699], - [-11.705799, 9.217799], - [-11.704199, 9.212099], - [-11.703399, 9.206199], - [-11.7031, 9.196899], - [-11.703199, 9.183], - [-11.704199, 9.1689], - [-11.702899, 9.156399], - [-11.7026, 9.1397], - [-11.7031, 9.132299], - [-11.705399, 9.1227], - [-11.706099, 9.117], - [-11.706299, 9.111099], - [-11.7061, 9.1068], - [-11.7057, 9.1039], - [-11.704399, 9.099999], - [-11.699599, 9.091599], - [-11.695899, 9.086899], - [-11.6927, 9.0837], - [-11.6892, 9.0809], - [-11.6865, 9.0795], - [-11.683699, 9.078599], - [-11.679199, 9.078099], - [-11.673099, 9.078], - [-11.667, 9.078299], - [-11.661299, 9.0794], - [-11.6535, 9.082799], - [-11.6427, 9.0905], - [-11.639799, 9.0945], - [-11.6343, 9.098699], - [-11.6317, 9.101199], - [-11.626699, 9.1083], - [-11.620699, 9.115], - [-11.6132, 9.122499], - [-11.608499, 9.126], - [-11.6032, 9.128599], - [-11.599499, 9.1299], - [-11.5846, 9.131399], - [-11.5785, 9.133099], - [-11.5757, 9.133599], - [-11.5626, 9.134499], - [-11.5583, 9.135299], - [-11.5484, 9.140299], - [-11.541899, 9.1425], - [-11.533699, 9.1457], - [-11.5305, 9.1477], - [-11.525602, 9.153595], - [-11.529582, 9.15625], - [-11.531249, 9.162916], - [-11.521126, 9.165809], - [-11.521313, 9.166443], - [-11.519583, 9.16875], - [-11.521249, 9.172083], - [-11.519583, 9.182916], - [-11.521249, 9.18375], - [-11.519583, 9.187917], - [-11.520417, 9.202082], - [-11.528749, 9.205417], - [-11.525417, 9.21375], - [-11.53125, 9.217083], - [-11.534582, 9.217916], - [-11.53625, 9.217083], - [-11.537916, 9.219582], - [-11.537917, 9.216249], - [-11.545416, 9.208751], - [-11.545417, 9.210416], - [-11.548749, 9.212917], - [-11.550417, 9.216249], - [-11.559582, 9.21625], - [-11.56125, 9.217916], - [-11.566249, 9.217083], - [-11.570417, 9.224582], - [-11.573965, 9.225174], - [-11.574201, 9.225699], - [-11.574268, 9.226092], - [-11.574582, 9.226249], - [-11.575416, 9.226249], - [-11.57625, 9.224583], - [-11.584582, 9.228749], - [-11.587083, 9.225417], - [-11.59125, 9.227917], - [-11.593339, 9.232095], - [-11.593697, 9.232036], - [-11.593803, 9.231715], - [-11.593864, 9.231656], - [-11.593866, 9.231656], - [-11.595417, 9.237082], - [-11.604582, 9.23625], - [-11.600417, 9.244582], - [-11.594583, 9.244583], - [-11.59875, 9.248749], - [-11.599582, 9.248749], - [-11.60125, 9.247917], - [-11.604582, 9.248749], - [-11.604583, 9.252916], - [-11.60625, 9.252917], - [-11.611249, 9.257082], - [-11.617083, 9.25125], - [-11.61875, 9.25125], - [-11.622083, 9.254582], - [-11.630416, 9.250417], - [-11.632082, 9.250417], - [-11.632083, 9.260416], - [-11.639582, 9.257917], - [-11.642916, 9.258749], - [-11.642917, 9.264582], - [-11.644583, 9.264583], - [-11.64625, 9.267082], - [-11.648749, 9.267083], - [-11.649583, 9.272082], - [-11.65125, 9.272083], - [-11.660417, 9.276249], - [-11.662083, 9.27625], - [-11.665416, 9.277082], - [-11.667083, 9.279583], - [-11.669583, 9.282082], - [-11.67375, 9.282083], - [-11.679582, 9.289583], - [-11.677917, 9.294582], - [-11.677916, 9.295417], - [-11.675417, 9.300416], - [-11.686249, 9.30125], - [-11.682083, 9.307916], - [-11.685416, 9.311249], - [-11.690417, 9.311249], - [-11.692916, 9.309582], - [-11.694583, 9.30625], - [-11.700416, 9.308749], - [-11.694583, 9.319582], - [-11.702609, 9.319582], - [-11.7026, 9.319499], - [-11.702699, 9.314], - [-11.703599, 9.3107], - [-11.705599, 9.307], - [-11.7069, 9.303899], - [-11.7093, 9.299699], - [-11.712599, 9.2925], - [-11.7132, 9.290399], - [-11.713599, 9.2852], - [-11.7142, 9.2828], - [-11.716, 9.2807], - [-11.718099, 9.279799] - ] - ], - "type": "Polygon" - }, - "id": 195, - "properties": { - "cc:admin:id": ["20"], - "cc:oBld:total": 360, - "cc:pop:fifteen-to-twenty-four": 1615.7346405355242, - "cc:pop:grid3-total": 9297.947801344428, - "cc:pop:kontur-total": 9830.425298058197, - "cc:pop:men": 4007.7935396717294, - "cc:pop:sixty-plus": 559.4505825335289, - "cc:pop:total": 8701.368325543266, - "cc:pop:under-five": 1379.4953286311809, - "cc:pop:women": 4693.574785871538, - "cc:pop:women-fiften-to-forty-nine": 2264.1571817938957, - "cc:pop:wp-total": 7008.805656698196, - "cc:pop:wp-total-UN": 8087.624007632096, - "cc:id": "195", - "cc:Name": "Kania MCHP", - "cc:site": [-11.6091, 9.211], - "user:parentName": "Diang", - "user:code": "OU_226265", - "user:orgUnitId": "AGrsLyKWrVX", - "user:level": "4", - "user:parentId": "Lt8U7GVWvSR" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.894796, 9.356987], - [-11.893749, 9.355417], - [-11.88699, 9.354933], - [-11.886989, 9.354932], - [-11.887671, 9.35375], - [-11.885219, 9.353749], - [-11.881371, 9.347085], - [-11.884049, 9.342445], - [-11.886249, 9.342916], - [-11.885417, 9.33625], - [-11.87875, 9.336249], - [-11.879582, 9.333749], - [-11.879583, 9.32875], - [-11.882082, 9.322917], - [-11.87625, 9.322082], - [-11.877083, 9.317917], - [-11.880081, 9.316716], - [-11.87984, 9.316573], - [-11.87828, 9.315951], - [-11.877797, 9.315417], - [-11.877633, 9.314822], - [-11.888553, 9.315175], - [-11.891014, 9.315633], - [-11.890698, 9.314914], - [-11.890644, 9.314317], - [-11.8859, 9.313178], - [-11.884906, 9.312941], - [-11.886249, 9.309583], - [-11.888749, 9.307916], - [-11.889582, 9.302917], - [-11.884583, 9.297917], - [-11.884582, 9.295519], - [-11.883854, 9.295518], - [-11.879948, 9.288754], - [-11.872917, 9.288753], - [-11.872917, 9.285416], - [-11.882916, 9.279583], - [-11.888902, 9.283573], - [-11.888925, 9.283766], - [-11.889074, 9.284097], - [-11.892082, 9.279583], - [-11.892083, 9.274797], - [-11.892207, 9.274769], - [-11.892916, 9.26625], - [-11.892917, 9.260417], - [-11.892082, 9.259582], - [-11.891442, 9.256382], - [-11.88851, 9.256952], - [-11.888234, 9.256887], - [-11.887916, 9.25625], - [-11.884369, 9.255067], - [-11.88446, 9.255392], - [-11.885087, 9.256594], - [-11.885275, 9.258165], - [-11.885458, 9.258749], - [-11.884244, 9.258749], - [-11.880337, 9.251984], - [-11.877182, 9.251984], - [-11.877082, 9.252082], - [-11.873749, 9.247917], - [-11.867083, 9.24625], - [-11.866249, 9.244583], - [-11.863751, 9.24375], - [-11.863751, 9.243748], - [-11.867082, 9.240416], - [-11.865416, 9.237082], - [-11.860417, 9.230417], - [-11.860416, 9.227083], - [-11.856401, 9.226413], - [-11.856396, 9.226278], - [-11.856211, 9.225781], - [-11.855291, 9.224544], - [-11.854784, 9.224077], - [-11.853686, 9.22364], - [-11.852301, 9.222705], - [-11.851279, 9.221652], - [-11.850417, 9.222083], - [-11.848749, 9.226249], - [-11.844583, 9.225417], - [-11.842083, 9.221249], - [-11.840417, 9.21375], - [-11.839583, 9.212917], - [-11.832083, 9.214582], - [-11.829583, 9.212917], - [-11.831249, 9.20125], - [-11.827916, 9.195417], - [-11.82375, 9.195416], - [-11.824582, 9.18625], - [-11.817082, 9.180417], - [-11.812608, 9.180417], - [-11.8102, 9.194399], - [-11.8091, 9.203199], - [-11.8116, 9.2103], - [-11.815199, 9.223899], - [-11.815699, 9.226699], - [-11.8161, 9.2342], - [-11.816299, 9.258499], - [-11.8166, 9.266], - [-11.817, 9.2701], - [-11.819399, 9.279799], - [-11.8201, 9.284], - [-11.8204, 9.2899], - [-11.820599, 9.307699], - [-11.820999, 9.313499], - [-11.8215, 9.3163], - [-11.823699, 9.324399], - [-11.8245, 9.33], - [-11.824799, 9.338599], - [-11.824499, 9.3457], - [-11.823999, 9.3498], - [-11.8217, 9.359299], - [-11.8212, 9.3651], - [-11.8212, 9.378399], - [-11.822199, 9.386999], - [-11.8244, 9.3926], - [-11.829999, 9.400499], - [-11.831699, 9.404199], - [-11.833799, 9.412999], - [-11.8351, 9.4161], - [-11.8371, 9.418799], - [-11.844599, 9.422999], - [-11.8474, 9.4252], - [-11.8535, 9.4331], - [-11.867399, 9.447999], - [-11.870899, 9.454399], - [-11.87169, 9.457438], - [-11.877082, 9.455416], - [-11.877916, 9.45125], - [-11.879582, 9.451249], - [-11.87625, 9.437916], - [-11.877083, 9.432917], - [-11.885416, 9.432917], - [-11.887082, 9.434582], - [-11.887916, 9.430417], - [-11.88875, 9.428749], - [-11.888749, 9.41875], - [-11.88375, 9.41375], - [-11.887082, 9.410416], - [-11.887082, 9.405417], - [-11.879583, 9.399582], - [-11.879582, 9.39375], - [-11.877917, 9.390416], - [-11.877082, 9.382083], - [-11.875417, 9.381249], - [-11.878749, 9.365417], - [-11.877919, 9.363754], - [-11.88513, 9.363753], - [-11.889036, 9.356988], - [-11.894796, 9.356987] - ] - ], - "type": "Polygon" - }, - "id": 196, - "properties": { - "cc:admin:id": ["7"], - "cc:oBld:total": 398, - "cc:pop:fifteen-to-twenty-four": 1249.8405215961202, - "cc:pop:grid3-total": 6982.8890663947295, - "cc:pop:kontur-total": 6901.918143985717, - "cc:pop:men": 3148.6516425982404, - "cc:pop:sixty-plus": 394.93138487971714, - "cc:pop:total": 6843.6121966064875, - "cc:pop:under-five": 1065.5477799594105, - "cc:pop:women": 3694.9605540082443, - "cc:pop:women-fiften-to-forty-nine": 1830.1777990539942, - "cc:pop:wp-total": 6604.8490450599975, - "cc:pop:wp-total-UN": 7658.606516085068, - "cc:id": "196", - "cc:Name": "Kanikay MCHP", - "cc:site": [-11.8612, 9.308], - "user:parentName": "Biriwa", - "user:code": "OU_193233", - "user:orgUnitId": "nDwbwJZQUYU", - "user:level": "4", - "user:parentId": "fwH9ipvXde9" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.112379, 7.707771], - [-12.109899, 7.7076], - [-12.1021, 7.7076], - [-12.0925, 7.708099], - [-12.0809, 7.709799], - [-12.073399, 7.707099], - [-12.064599, 7.702699], - [-12.059199, 7.698299], - [-12.0514, 7.6906], - [-12.0459, 7.6759], - [-12.04432, 7.672917], - [-12.040417, 7.672917], - [-12.036983, 7.675662], - [-12.036685, 7.675146], - [-12.036686, 7.675049], - [-12.036632, 7.675055], - [-12.035469, 7.673041], - [-12.030417, 7.67304], - [-12.030416, 7.672084], - [-12.027916, 7.66875], - [-12.015416, 7.673749], - [-12.014582, 7.672916], - [-12.005417, 7.667917], - [-12.005416, 7.66125], - [-11.999471, 7.655305], - [-11.997496, 7.657337], - [-11.993106, 7.660392], - [-11.99125, 7.657916], - [-11.992916, 7.649584], - [-11.986249, 7.651249], - [-11.981249, 7.64625], - [-11.977916, 7.646249], - [-11.973928, 7.643591], - [-11.974041, 7.643324], - [-11.974436, 7.64259], - [-11.972917, 7.642084], - [-11.972591, 7.641432], - [-11.972442, 7.641751], - [-11.972899, 7.643], - [-11.9725, 7.646299], - [-11.9711, 7.648599], - [-11.969099, 7.6506], - [-11.9662, 7.652899], - [-11.961399, 7.6555], - [-11.958999, 7.6581], - [-11.956999, 7.6617], - [-11.954899, 7.6639], - [-11.9513, 7.6667], - [-11.947699, 7.6733], - [-11.947299, 7.6755], - [-11.94721, 7.677928], - [-11.9473, 7.677828], - [-11.949848, 7.675204], - [-11.950417, 7.674376], - [-11.952041, 7.675592], - [-11.952133, 7.675567], - [-11.952416, 7.675068], - [-11.953917, 7.675852], - [-11.955579, 7.676476], - [-11.957172, 7.676635], - [-11.957641, 7.676535], - [-11.958426, 7.677896], - [-11.958177, 7.678121], - [-11.959772, 7.678993], - [-11.960455, 7.679164], - [-11.961525, 7.679819], - [-11.961685, 7.680373], - [-11.962751, 7.681007], - [-11.963219, 7.681105], - [-11.96456, 7.680859], - [-11.965732, 7.681267], - [-11.96658, 7.681855], - [-11.967864, 7.681754], - [-11.967651, 7.683679], - [-11.967378, 7.684454], - [-11.966678, 7.685796], - [-11.966098, 7.686514], - [-11.964771, 7.687798], - [-11.962883, 7.689291], - [-11.962775, 7.689441], - [-11.96375, 7.690416], - [-11.9706, 7.690417], - [-11.970871, 7.690889], - [-11.968994, 7.693236], - [-11.9743, 7.693236], - [-11.976326, 7.689729], - [-11.984582, 7.690417], - [-11.984583, 7.707182], - [-11.989296, 7.707183], - [-11.991055, 7.71023], - [-11.991813, 7.710307], - [-11.990855, 7.711968], - [-11.994319, 7.717968], - [-11.990417, 7.71875], - [-11.987083, 7.722917], - [-11.987917, 7.732917], - [-11.98875, 7.742083], - [-11.992917, 7.745416], - [-11.998749, 7.745416], - [-12.00125, 7.743749], - [-12.007797, 7.742295], - [-12.007899, 7.742693], - [-12.016249, 7.740416], - [-12.015925, 7.736849], - [-12.02093, 7.736848], - [-12.024328, 7.730963], - [-12.024508, 7.728824], - [-12.026804, 7.728512], - [-12.027424, 7.728354], - [-12.035416, 7.729583], - [-12.042916, 7.732916], - [-12.046249, 7.730416], - [-12.04669, 7.727339], - [-12.048275, 7.730083], - [-12.056086, 7.730082], - [-12.057586, 7.727488], - [-12.062127, 7.72803], - [-12.064092, 7.728553], - [-12.064583, 7.727083], - [-12.070417, 7.722084], - [-12.079582, 7.722084], - [-12.079583, 7.72125], - [-12.089371, 7.72125], - [-12.089639, 7.720595], - [-12.092916, 7.721249], - [-12.094583, 7.722084], - [-12.095417, 7.729583], - [-12.103859, 7.729584], - [-12.104034, 7.729282], - [-12.104959, 7.729281], - [-12.108749, 7.726249], - [-12.109582, 7.715417], - [-12.108896, 7.713013], - [-12.109354, 7.713012], - [-12.112379, 7.707771] - ] - ], - "type": "Polygon" - }, - "id": 197, - "properties": { - "cc:admin:id": ["11"], - "cc:oBld:total": 8, - "cc:pop:fifteen-to-twenty-four": 1575.572778514276, - "cc:pop:grid3-total": 6102.511192430403, - "cc:pop:kontur-total": 8644.327055437701, - "cc:pop:men": 4129.279524588878, - "cc:pop:sixty-plus": 652.8586754136929, - "cc:pop:total": 8632.657333635141, - "cc:pop:under-five": 1351.9401548313158, - "cc:pop:women": 4503.377809046263, - "cc:pop:women-fiften-to-forty-nine": 2099.282496581927, - "cc:pop:wp-total": 7678.863233750557, - "cc:pop:wp-total-UN": 8911.239623577845, - "cc:id": "197", - "cc:Name": "Kaniya MCHP", - "cc:site": [-11.9937, 7.682], - "user:parentName": "Bumpe Ngao", - "user:code": "OU_642", - "user:orgUnitId": "CTOMXJg41hz", - "user:level": "4", - "user:parentId": "BGGmAwx33dj" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.569998, 9.20659], - [-12.563919, 9.206589], - [-12.562083, 9.202916], - [-12.562083, 9.195417], - [-12.562556, 9.194825], - [-12.558861, 9.194824], - [-12.554955, 9.188059], - [-12.556203, 9.185898], - [-12.557665, 9.185276], - [-12.558682, 9.185108], - [-12.558822, 9.185108], - [-12.557917, 9.183749], - [-12.557916, 9.175746], - [-12.556449, 9.175657], - [-12.554675, 9.175231], - [-12.551805, 9.175082], - [-12.550463, 9.174415], - [-12.548162, 9.17424], - [-12.546357, 9.17342], - [-12.546056, 9.17338], - [-12.542541, 9.174424], - [-12.540877, 9.174057], - [-12.540048, 9.174234], - [-12.537324, 9.173549], - [-12.533933, 9.171168], - [-12.534583, 9.167916], - [-12.537916, 9.164583], - [-12.543749, 9.163749], - [-12.543749, 9.161984], - [-12.543189, 9.161983], - [-12.539513, 9.155617], - [-12.539274, 9.15569], - [-12.537904, 9.155568], - [-12.537103, 9.155218], - [-12.53147, 9.155217], - [-12.527565, 9.148451], - [-12.53147, 9.141686], - [-12.527565, 9.13492], - [-12.519753, 9.134919], - [-12.515846, 9.128155], - [-12.519752, 9.121388], - [-12.517305, 9.11715], - [-12.514582, 9.120416], - [-12.508583, 9.120878], - [-12.506927, 9.118014], - [-12.499757, 9.118013], - [-12.500056, 9.117722], - [-12.501435, 9.116013], - [-12.502809, 9.114158], - [-12.504002, 9.111917], - [-12.504503, 9.110437], - [-12.504473, 9.109785], - [-12.504237, 9.109479], - [-12.503422, 9.109168], - [-12.502957, 9.108639], - [-12.502424, 9.108914], - [-12.502207, 9.108876], - [-12.502407, 9.108682], - [-12.502249, 9.108542], - [-12.501694, 9.10838], - [-12.500199, 9.108304], - [-12.500143, 9.108191], - [-12.501041, 9.108131], - [-12.499866, 9.107862], - [-12.498979, 9.107426], - [-12.495861, 9.105061], - [-12.493208, 9.102475], - [-12.492408, 9.101091], - [-12.491861, 9.10109], - [-12.490341, 9.099094], - [-12.488997, 9.09675], - [-12.488648, 9.095112], - [-12.488933, 9.0938], - [-12.490845, 9.091303], - [-12.492624, 9.088299], - [-12.492899, 9.087376], - [-12.492986, 9.086346], - [-12.492174, 9.085142], - [-12.491537, 9.084642], - [-12.491097, 9.083861], - [-12.490383, 9.083048], - [-12.489878, 9.081725], - [-12.490844, 9.07961], - [-12.491965, 9.078926], - [-12.496602, 9.079181], - [-12.498436, 9.079147], - [-12.499198, 9.078988], - [-12.500347, 9.078382], - [-12.501182, 9.077516], - [-12.50145, 9.077011], - [-12.498299, 9.0727], - [-12.495199, 9.0712], - [-12.4902, 9.0711], - [-12.4812, 9.0742], - [-12.4788, 9.0769], - [-12.4787, 9.081799], - [-12.481999, 9.087999], - [-12.484599, 9.093199], - [-12.4872, 9.0998], - [-12.488699, 9.1057], - [-12.488199, 9.110499], - [-12.4867, 9.113199], - [-12.483899, 9.115399], - [-12.4763, 9.118299], - [-12.4709, 9.1184], - [-12.4631, 9.126499], - [-12.456999, 9.1325], - [-12.4527, 9.136099], - [-12.4485, 9.138599], - [-12.4453, 9.140999], - [-12.4412, 9.144699], - [-12.4375, 9.148799], - [-12.435399, 9.1521], - [-12.4318, 9.159599], - [-12.4301, 9.165299], - [-12.4284, 9.172999], - [-12.432799, 9.182499], - [-12.433699, 9.1862], - [-12.433199, 9.19], - [-12.428, 9.207599], - [-12.4276, 9.212099], - [-12.4291, 9.2176], - [-12.4327, 9.2251], - [-12.437599, 9.233299], - [-12.4402, 9.236], - [-12.4432, 9.238], - [-12.4538, 9.2437], - [-12.463699, 9.251499], - [-12.468899, 9.254699], - [-12.472, 9.2569], - [-12.479499, 9.258799], - [-12.4831, 9.252199], - [-12.4855, 9.2501], - [-12.4892, 9.2499], - [-12.491399, 9.2514], - [-12.493, 9.2542], - [-12.494, 9.2573], - [-12.495899, 9.266199], - [-12.4978, 9.270599], - [-12.5024, 9.274599], - [-12.506499, 9.275299], - [-12.5097, 9.274199], - [-12.512299, 9.271699], - [-12.513599, 9.2686], - [-12.5164, 9.256699], - [-12.519399, 9.2415], - [-12.5202, 9.2322], - [-12.522099, 9.2283], - [-12.5259, 9.2272], - [-12.530199, 9.2289], - [-12.531699, 9.2322], - [-12.532499, 9.241499], - [-12.5343, 9.247099], - [-12.5374, 9.2509], - [-12.5418, 9.252499], - [-12.5453, 9.251999], - [-12.548199, 9.250499], - [-12.550399, 9.2479], - [-12.552199, 9.2437], - [-12.553699, 9.2366], - [-12.554099, 9.2257], - [-12.5552, 9.2215], - [-12.5569, 9.219299], - [-12.561799, 9.2152], - [-12.563004, 9.214621], - [-12.563407, 9.213703], - [-12.563502, 9.212907], - [-12.565298, 9.21144], - [-12.568033, 9.210084], - [-12.569431, 9.20787], - [-12.569998, 9.20659] - ] - ], - "type": "Polygon" - }, - "id": 198, - "properties": { - "cc:admin:id": ["117"], - "cc:oBld:total": 144, - "cc:pop:fifteen-to-twenty-four": 716.6322515974441, - "cc:pop:grid3-total": 3991.301946656292, - "cc:pop:kontur-total": 5520.466230010292, - "cc:pop:men": 1804.694561513081, - "cc:pop:sixty-plus": 247.97736527132045, - "cc:pop:total": 3899.740517149857, - "cc:pop:under-five": 636.7460595731853, - "cc:pop:women": 2095.045955636776, - "cc:pop:women-fiften-to-forty-nine": 1027.022651390942, - "cc:pop:wp-total": 2972.7089779073476, - "cc:pop:wp-total-UN": 3445.9261760772956, - "cc:id": "198", - "cc:Name": "Kantia CHP", - "cc:site": [-12.4809, 9.2225], - "user:parentName": "Sanda Magbolonthor", - "user:code": "OU_255000", - "user:orgUnitId": "KGN2jvZ0GJy", - "user:level": "4", - "user:parentId": "HWjrSuoNPte" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.058771, 8.999125], - [-12.0588, 8.998999], - [-12.058999, 8.9963], - [-12.058999, 8.996283], - [-12.058899, 8.990799], - [-12.058599, 8.9847], - [-12.0515, 8.9825], - [-12.047427, 8.980417], - [-12.044583, 8.980417], - [-12.035416, 8.987082], - [-12.032083, 8.985417], - [-12.032916, 8.982917], - [-12.027916, 8.977083], - [-12.027082, 8.977917], - [-12.017916, 8.977916], - [-12.015416, 8.976249], - [-12.014582, 8.974582], - [-12.011247, 8.968581], - [-12.010566, 8.968772], - [-12.008781, 8.968494], - [-12.006229, 8.967932], - [-12.000416, 8.972082], - [-11.99625, 8.97125], - [-11.995416, 8.969583], - [-11.992917, 8.96875], - [-11.989915, 8.971752], - [-11.990186, 8.973583], - [-11.990254, 8.973701], - [-11.990253, 8.973703], - [-11.984583, 8.972082], - [-11.983749, 8.96875], - [-11.982916, 8.967917], - [-11.982082, 8.967917], - [-11.977083, 8.970416], - [-11.976249, 8.969583], - [-11.972082, 8.969583], - [-11.969582, 8.970417], - [-11.967083, 8.972082], - [-11.963155, 8.968156], - [-11.962483, 8.968637], - [-11.957916, 8.976249], - [-11.954582, 8.97125], - [-11.951249, 8.974582], - [-11.947917, 8.974583], - [-11.947083, 8.978749], - [-11.944583, 8.98125], - [-11.945416, 8.983749], - [-11.945417, 8.984582], - [-11.949582, 8.989582], - [-11.949582, 8.991249], - [-11.942708, 8.998888], - [-11.943665, 8.99907], - [-11.944421, 8.999584], - [-11.945521, 8.999981], - [-11.947696, 9.000092], - [-11.94818, 9.00007], - [-11.948749, 9.002916], - [-11.947083, 9.004583], - [-11.947082, 9.014552], - [-11.946073, 9.014636], - [-11.945763, 9.01443], - [-11.945538, 9.014167], - [-11.945417, 9.014122], - [-11.945417, 9.016102], - [-11.946999, 9.016728], - [-11.947754, 9.016708], - [-11.947916, 9.016647], - [-11.947917, 9.017622], - [-11.9506, 9.0177], - [-11.958399, 9.021599], - [-11.9612, 9.0237], - [-11.968599, 9.031199], - [-11.971099, 9.033499], - [-11.9733, 9.034699], - [-11.975999, 9.034899], - [-11.9788, 9.033499], - [-11.9845, 9.028899], - [-11.9884, 9.026899], - [-11.9911, 9.024799], - [-11.996099, 9.02], - [-11.998799, 9.018], - [-12.0026, 9.016099], - [-12.0047, 9.014699], - [-12.008499, 9.0115], - [-12.010599, 9.0102], - [-12.0138, 9.008699], - [-12.018, 9.006199], - [-12.024499, 9.0035], - [-12.026599, 9.0037], - [-12.032599, 9.006299], - [-12.036799, 9.008699], - [-12.0401, 9.0101], - [-12.044299, 9.012599], - [-12.046599, 9.014499], - [-12.0504, 9.010399], - [-12.054499, 9.0066], - [-12.056799, 9.0039], - [-12.058199, 9.001599], - [-12.058771, 8.999125] - ] - ], - "type": "Polygon" - }, - "id": 199, - "properties": { - "cc:admin:id": ["113"], - "cc:oBld:total": 616, - "cc:pop:fifteen-to-twenty-four": 1221.3059602490412, - "cc:pop:grid3-total": 4226.75001169428, - "cc:pop:kontur-total": 6559.88554232648, - "cc:pop:men": 2862.8136971689933, - "cc:pop:sixty-plus": 434.83878900186454, - "cc:pop:total": 6235.04114776951, - "cc:pop:under-five": 1072.0634106204973, - "cc:pop:women": 3372.227450600515, - "cc:pop:women-fiften-to-forty-nine": 1584.7972143790616, - "cc:pop:wp-total": 4982.365138248649, - "cc:pop:wp-total-UN": 5770.68929009646, - "cc:id": "199", - "cc:Name": "Kapethe MCHP", - "cc:site": [-11.9826, 8.9869], - "user:parentName": "Safroko Limba", - "user:code": "OU_193271", - "user:orgUnitId": "GhDwjKv07iC", - "user:level": "4", - "user:parentId": "XG8HGAbrbbL" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.29989, 9.513397], - [-12.299367, 9.513186], - [-12.29634, 9.512695], - [-12.296527, 9.509109], - [-12.297145, 9.507917], - [-12.297082, 9.507916], - [-12.292917, 9.500417], - [-12.297097, 9.497628], - [-12.29687, 9.497443], - [-12.296072, 9.496333], - [-12.295665, 9.494468], - [-12.294561, 9.493491], - [-12.293386, 9.494563], - [-12.291587, 9.497115], - [-12.290693, 9.499059], - [-12.290255, 9.499671], - [-12.284583, 9.495417], - [-12.284582, 9.49375], - [-12.282916, 9.493749], - [-12.278693, 9.488824], - [-12.278313, 9.489244], - [-12.278008, 9.489362], - [-12.276158, 9.492258], - [-12.276177, 9.492708], - [-12.275869, 9.493425], - [-12.275962, 9.493835], - [-12.275754, 9.494318], - [-12.275124, 9.495027], - [-12.274658, 9.495816], - [-12.269583, 9.492917], - [-12.264583, 9.49875], - [-12.266715, 9.505146], - [-12.264621, 9.505342], - [-12.263425, 9.507732], - [-12.263423, 9.507732], - [-12.263283, 9.507647], - [-12.262917, 9.50875], - [-12.262916, 9.516249], - [-12.257917, 9.517917], - [-12.257917, 9.523749], - [-12.25843, 9.525804], - [-12.258749, 9.525795], - [-12.25875, 9.527082], - [-12.261249, 9.529583], - [-12.260417, 9.535416], - [-12.259583, 9.539582], - [-12.256249, 9.540417], - [-12.252083, 9.542916], - [-12.250417, 9.544583], - [-12.250417, 9.552599], - [-12.25033, 9.552681], - [-12.250386, 9.553157], - [-12.25006, 9.554876], - [-12.249243, 9.554632], - [-12.248298, 9.554629], - [-12.248051, 9.554576], - [-12.247039, 9.553687], - [-12.246745, 9.554604], - [-12.246489, 9.55447], - [-12.24625, 9.5545], - [-12.246249, 9.557082], - [-12.242917, 9.563749], - [-12.239989, 9.561994], - [-12.239623, 9.562564], - [-12.237596, 9.5644], - [-12.236565, 9.56607], - [-12.236284, 9.566549], - [-12.235905, 9.566815], - [-12.234859, 9.567262], - [-12.233904, 9.567131], - [-12.231174, 9.567825], - [-12.230097, 9.568658], - [-12.229061, 9.568792], - [-12.230253, 9.575347], - [-12.2341, 9.5754], - [-12.238999, 9.5754], - [-12.2419, 9.575199], - [-12.2447, 9.574599], - [-12.2491, 9.572599], - [-12.2554, 9.570999], - [-12.258099, 9.5694], - [-12.260299, 9.5675], - [-12.2686, 9.559299], - [-12.2718, 9.557399], - [-12.2742, 9.556799], - [-12.277916, 9.556654], - [-12.277917, 9.55375], - [-12.279582, 9.552082], - [-12.279583, 9.547917], - [-12.281205, 9.546294], - [-12.282008, 9.547209], - [-12.282106, 9.546578], - [-12.282284, 9.546351], - [-12.282504, 9.544361], - [-12.283351, 9.544541], - [-12.284111, 9.544945], - [-12.284457, 9.545273], - [-12.284561, 9.54573], - [-12.285441, 9.546121], - [-12.286308, 9.54741], - [-12.286643, 9.547374], - [-12.28687, 9.547755], - [-12.287123, 9.547782], - [-12.288913, 9.54626], - [-12.289588, 9.545803], - [-12.290246, 9.545811], - [-12.29066, 9.545349], - [-12.294141, 9.543943], - [-12.291594, 9.54209], - [-12.290646, 9.540664], - [-12.289703, 9.539507], - [-12.288589, 9.538502], - [-12.287789, 9.537847], - [-12.287149, 9.536159], - [-12.287896, 9.536268], - [-12.288749, 9.535416], - [-12.28999, 9.532315], - [-12.290416, 9.532315], - [-12.290417, 9.530416], - [-12.292082, 9.527917], - [-12.290417, 9.526249], - [-12.292082, 9.522917], - [-12.293749, 9.522916], - [-12.293749, 9.520118], - [-12.292459, 9.519747], - [-12.292916, 9.517917], - [-12.298749, 9.516249], - [-12.29989, 9.513397] - ] - ], - "type": "Polygon" - }, - "id": 200, - "properties": { - "cc:admin:id": ["121"], - "cc:oBld:total": 6, - "cc:pop:fifteen-to-twenty-four": 1209.2963470706754, - "cc:pop:grid3-total": 4855.5291851319525, - "cc:pop:kontur-total": 6681.193390483726, - "cc:pop:men": 3558.1995421828706, - "cc:pop:sixty-plus": 409.8049653929015, - "cc:pop:total": 6599.532436205108, - "cc:pop:under-five": 1068.6604779271613, - "cc:pop:women": 3041.3328940222386, - "cc:pop:women-fiften-to-forty-nine": 1490.4598618979041, - "cc:pop:wp-total": 5867.903981908251, - "cc:pop:wp-total-UN": 6794.718520681153, - "cc:id": "200", - "cc:Name": "Kaponkie MCHP", - "cc:site": [-12.2865, 9.5165], - "user:parentName": "Sella Limba", - "user:code": "OU_193287", - "user:orgUnitId": "Crgx572DnXR", - "user:level": "4", - "user:parentId": "j43EZb15rjI" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.640086, 8.917236], - [-12.639999, 8.917099], - [-12.632199, 8.909599], - [-12.6238, 8.9013], - [-12.6217, 8.8996], - [-12.619299, 8.898199], - [-12.6153, 8.8968], - [-12.6123, 8.8954], - [-12.606, 8.899699], - [-12.6022, 8.900899], - [-12.595, 8.901399], - [-12.5912, 8.901999], - [-12.585699, 8.9041], - [-12.5821, 8.904799], - [-12.5762, 8.905099], - [-12.5724, 8.905799], - [-12.567, 8.907999], - [-12.5638, 8.908599], - [-12.5604, 8.907999], - [-12.556999, 8.905899], - [-12.551599, 8.900799], - [-12.5489, 8.8989], - [-12.545, 8.8969], - [-12.5423, 8.895], - [-12.5385, 8.8915], - [-12.534, 8.8868], - [-12.5318, 8.8843], - [-12.5279, 8.8781], - [-12.525799, 8.8753], - [-12.522199, 8.878899], - [-12.5094, 8.8789], - [-12.5065, 8.879099], - [-12.503, 8.880299], - [-12.496199, 8.8834], - [-12.4888, 8.887099], - [-12.4846, 8.889499], - [-12.481399, 8.8908], - [-12.477, 8.892999], - [-12.470699, 8.8946], - [-12.4659, 8.896899], - [-12.462699, 8.8982], - [-12.4585, 8.900599], - [-12.455299, 8.9021], - [-12.448, 8.907499], - [-12.442699, 8.9101], - [-12.437399, 8.9135], - [-12.433499, 8.9198], - [-12.432899, 8.9228], - [-12.4327, 8.926399], - [-12.433099, 8.933299], - [-12.439799, 8.9329], - [-12.445099, 8.9331], - [-12.449299, 8.9346], - [-12.4514, 8.9366], - [-12.4551, 8.9424], - [-12.458599, 8.949999], - [-12.460499, 8.955599], - [-12.461799, 8.960999], - [-12.4629, 8.9647], - [-12.4642, 8.9679], - [-12.467599, 8.974499], - [-12.469499, 8.980999], - [-12.471299, 8.985399], - [-12.474099, 8.989399], - [-12.476899, 8.991799], - [-12.485299, 8.996199], - [-12.490799, 8.998599], - [-12.495899, 8.999599], - [-12.501199, 8.9992], - [-12.508399, 8.997], - [-12.512599, 8.9965], - [-12.518299, 8.996699], - [-12.5223, 8.9976], - [-12.533399, 9.002699], - [-12.5411, 9.0051], - [-12.5487, 9.0091], - [-12.552, 9.0115], - [-12.557099, 9.016299], - [-12.565799, 9.026199], - [-12.5657, 9.026299], - [-12.571999, 9.0215], - [-12.5765, 9.019299], - [-12.5815, 9.015299], - [-12.5843, 9.013899], - [-12.5898, 9.012499], - [-12.595099, 9.01], - [-12.598499, 9.009199], - [-12.597899, 9.006499], - [-12.594, 8.9984], - [-12.5917, 8.994499], - [-12.591, 8.9916], - [-12.590699, 8.988099], - [-12.5906, 8.981099], - [-12.5908, 8.978499], - [-12.5918, 8.9752], - [-12.5933, 8.973099], - [-12.5957, 8.970499], - [-12.6046, 8.961699], - [-12.629899, 8.9363], - [-12.6395, 8.926999], - [-12.641299, 8.924599], - [-12.641999, 8.922099], - [-12.641399, 8.9193], - [-12.640086, 8.917236] - ] - ], - "type": "Polygon" - }, - "id": 201, - "properties": { - "cc:admin:id": ["21"], - "cc:oBld:total": 167, - "cc:pop:fifteen-to-twenty-four": 4237.5956867721015, - "cc:pop:grid3-total": 18757.010907998996, - "cc:pop:kontur-total": 22062.72447894427, - "cc:pop:men": 10733.970532372947, - "cc:pop:sixty-plus": 1470.6659039277504, - "cc:pop:total": 22681.73020947846, - "cc:pop:under-five": 3653.236318113235, - "cc:pop:women": 11947.759677105514, - "cc:pop:women-fiften-to-forty-nine": 5811.458668181944, - "cc:pop:wp-total": 19533.892615527748, - "cc:pop:wp-total-UN": 22677.616809215666, - "cc:id": "201", - "cc:Name": "Kareneh MCHP", - "cc:site": [-12.5748, 8.9166], - "user:parentName": "Dibia", - "user:code": "OU_254981", - "user:orgUnitId": "YBZcWphXQ99", - "user:level": "4", - "user:parentId": "ZiOVcrSjSYe" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.090295, 9.187458], - [-12.089607, 9.187334], - [-12.089261, 9.187133], - [-12.089042, 9.18676], - [-12.089367, 9.185284], - [-12.08946, 9.184896], - [-12.088706, 9.184928], - [-12.088248, 9.184289], - [-12.08763, 9.183942], - [-12.087131, 9.182987], - [-12.086792, 9.182759], - [-12.084732, 9.182652], - [-12.085757, 9.181603], - [-12.086163, 9.181402], - [-12.085746, 9.181023], - [-12.084785, 9.17798], - [-12.083726, 9.176543], - [-12.085416, 9.175416], - [-12.085416, 9.174583], - [-12.082083, 9.172917], - [-12.080416, 9.170417], - [-12.07875, 9.170416], - [-12.078749, 9.169582], - [-12.072082, 9.164583], - [-12.070416, 9.165416], - [-12.067644, 9.161257], - [-12.068421, 9.160697], - [-12.068968, 9.16047], - [-12.069587, 9.160319], - [-12.070398, 9.160432], - [-12.072799, 9.160617], - [-12.075626, 9.159689], - [-12.076298, 9.158997], - [-12.077091, 9.158958], - [-12.077473, 9.158609], - [-12.076096, 9.157808], - [-12.075778, 9.157177], - [-12.074944, 9.156566], - [-12.073305, 9.155717], - [-12.071817, 9.154509], - [-12.070074, 9.154144], - [-12.067703, 9.154189], - [-12.066407, 9.153677], - [-12.065298, 9.153623], - [-12.064606, 9.153798], - [-12.063439, 9.153605], - [-12.063236, 9.151115], - [-12.062374, 9.151121], - [-12.061811, 9.151552], - [-12.059227, 9.151503], - [-12.058953, 9.151572], - [-12.058712, 9.151877], - [-12.057847, 9.151481], - [-12.057348, 9.151638], - [-12.056138, 9.151345], - [-12.05466, 9.151423], - [-12.053473, 9.15102], - [-12.053193, 9.150733], - [-12.051737, 9.149045], - [-12.049583, 9.149582], - [-12.047082, 9.147917], - [-12.040417, 9.147083], - [-12.038749, 9.150417], - [-12.027083, 9.151249], - [-12.025704, 9.15033], - [-12.025704, 9.150329], - [-12.026382, 9.150007], - [-12.027754, 9.14899], - [-12.028956, 9.144076], - [-12.029205, 9.140774], - [-12.029448, 9.136573], - [-12.029129, 9.133738], - [-12.030038, 9.132239], - [-12.029582, 9.130417], - [-12.025417, 9.130417], - [-12.018679, 9.135656], - [-12.018475, 9.135312], - [-12.0149, 9.137099], - [-12.0119, 9.1397], - [-12.0098, 9.143099], - [-12.011099, 9.148299], - [-12.011399, 9.1509], - [-12.010999, 9.1543], - [-12.008799, 9.16], - [-12.0083, 9.164099], - [-12.0082, 9.167], - [-12.008499, 9.179399], - [-12.0093, 9.184], - [-12.0116, 9.1894], - [-12.0122, 9.1928], - [-12.0126, 9.197699], - [-12.0195, 9.2002], - [-12.0218, 9.2016], - [-12.0255, 9.2045], - [-12.028599, 9.206199], - [-12.034499, 9.207699], - [-12.039, 9.2097], - [-12.0418, 9.2103], - [-12.048599, 9.210599], - [-12.0515, 9.210499], - [-12.055699, 9.21], - [-12.0616, 9.207699], - [-12.0641, 9.207099], - [-12.069499, 9.2066], - [-12.0725, 9.205699], - [-12.0751, 9.203899], - [-12.077899, 9.201], - [-12.0809, 9.1967], - [-12.084799, 9.1939], - [-12.087499, 9.1914], - [-12.089699, 9.1886], - [-12.090295, 9.187458] - ] - ], - "type": "Polygon" - }, - "id": 202, - "properties": { - "cc:admin:id": ["32"], - "cc:oBld:total": 278, - "cc:pop:fifteen-to-twenty-four": 686.9753209090688, - "cc:pop:grid3-total": 4004.826767856264, - "cc:pop:kontur-total": 3882.1486298084324, - "cc:pop:men": 1703.4506053423538, - "cc:pop:sixty-plus": 249.20073059364495, - "cc:pop:total": 3599.6531613298503, - "cc:pop:under-five": 567.0996909419603, - "cc:pop:women": 1896.2025559874962, - "cc:pop:women-fiften-to-forty-nine": 929.254505049832, - "cc:pop:wp-total": 3291.504864442274, - "cc:pop:wp-total-UN": 3822.79478594216, - "cc:id": "202", - "cc:Name": "Karina MCHP", - "cc:site": [-12.0134, 9.1722], - "user:parentName": "Biriwa", - "user:code": "OU_193234", - "user:orgUnitId": "ObV5AR1NECl", - "user:level": "4", - "user:parentId": "fwH9ipvXde9" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.860099, 7.187], - [-11.855599, 7.186399], - [-11.850899, 7.185299], - [-11.8437, 7.1847], - [-11.8402, 7.1836], - [-11.837199, 7.181399], - [-11.8297, 7.174], - [-11.826099, 7.170999], - [-11.818499, 7.167299], - [-11.815099, 7.166399], - [-11.806899, 7.165999], - [-11.803499, 7.165299], - [-11.798099, 7.163099], - [-11.793499, 7.1625], - [-11.7813, 7.1625], - [-11.7763, 7.1622], - [-11.773399, 7.161599], - [-11.768899, 7.159599], - [-11.765099, 7.1589], - [-11.7612, 7.158999], - [-11.7584, 7.159599], - [-11.754, 7.161599], - [-11.750999, 7.1622], - [-11.743799, 7.1626], - [-11.7301, 7.1626], - [-11.7249, 7.1624], - [-11.720899, 7.161599], - [-11.715499, 7.159499], - [-11.711499, 7.158899], - [-11.7023, 7.1586], - [-11.6984, 7.1579], - [-11.6939, 7.156], - [-11.6872, 7.1542], - [-11.6827, 7.1522], - [-11.6798, 7.1515], - [-11.673599, 7.151299], - [-11.6428, 7.1507], - [-11.644899, 7.154399], - [-11.6464, 7.1585], - [-11.648799, 7.162799], - [-11.6501, 7.166], - [-11.6524, 7.1703], - [-11.654199, 7.176999], - [-11.6565, 7.1824], - [-11.657, 7.1853], - [-11.657199, 7.188299], - [-11.657399, 7.199399], - [-11.658199, 7.203099], - [-11.660399, 7.207499], - [-11.6618, 7.2107], - [-11.6637, 7.2144], - [-11.6646, 7.2169], - [-11.665299, 7.222399], - [-11.666299, 7.224699], - [-11.668899, 7.227499], - [-11.671799, 7.228899], - [-11.676, 7.2303], - [-11.681299, 7.232699], - [-11.685599, 7.233599], - [-11.687999, 7.234399], - [-11.691699, 7.236299], - [-11.6949, 7.2377], - [-11.702299, 7.243199], - [-11.7073, 7.2459], - [-11.7113, 7.2492], - [-11.718099, 7.255999], - [-11.7202, 7.2577], - [-11.7227, 7.258599], - [-11.725199, 7.2584], - [-11.729499, 7.2564], - [-11.7329, 7.2556], - [-11.737399, 7.2556], - [-11.740399, 7.2564], - [-11.743, 7.2587], - [-11.745299, 7.263399], - [-11.7473, 7.267], - [-11.7492, 7.271], - [-11.7521, 7.2746], - [-11.760399, 7.282599], - [-11.7634, 7.2847], - [-11.7666, 7.2861], - [-11.7709, 7.2885], - [-11.7741, 7.2898], - [-11.7781, 7.292], - [-11.7829, 7.2928], - [-11.7866, 7.292899], - [-11.810099, 7.2928], - [-11.815299, 7.293099], - [-11.819199, 7.295099], - [-11.822699, 7.2895], - [-11.8253, 7.286199], - [-11.828, 7.281299], - [-11.8302, 7.278399], - [-11.835699, 7.2724], - [-11.837299, 7.2702], - [-11.840799, 7.2627], - [-11.8414, 7.259199], - [-11.841699, 7.251], - [-11.842499, 7.2477], - [-11.846299, 7.2403], - [-11.849099, 7.237099], - [-11.849099, 7.232599], - [-11.8479, 7.2263], - [-11.8481, 7.222899], - [-11.849299, 7.2187], - [-11.851199, 7.215], - [-11.855199, 7.2102], - [-11.8568, 7.206999], - [-11.8576, 7.203099], - [-11.8586, 7.194599], - [-11.860099, 7.187] - ] - ], - "type": "Polygon" - }, - "id": 203, - "properties": { - "cc:admin:id": ["146"], - "cc:oBld:total": 29, - "cc:pop:fifteen-to-twenty-four": 2562.1937810737218, - "cc:pop:grid3-total": 14785.561320532577, - "cc:pop:kontur-total": 14508.806814725911, - "cc:pop:men": 6848.797133362614, - "cc:pop:sixty-plus": 1077.2182734130558, - "cc:pop:total": 14168.01795838977, - "cc:pop:under-five": 2424.2429352596732, - "cc:pop:women": 7319.220825027159, - "cc:pop:women-fiften-to-forty-nine": 3499.005130503364, - "cc:pop:wp-total": 12265.350666990122, - "cc:pop:wp-total-UN": 14235.765756535904, - "cc:id": "203", - "cc:Name": "Karlu CHC", - "cc:site": [-11.7632, 7.2412], - "user:parentName": "Ya Kpukumu Krim", - "user:code": "OU_260399", - "user:orgUnitId": "K00jR5dmoFZ", - "user:level": "4", - "user:parentId": "pk7bUK5c1Uf" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - [-13.109899, 8.5965], - [-13.1082, 8.5965], - [-13.1076, 8.5971], - [-13.1076, 8.599299], - [-13.1082, 8.600099], - [-13.109599, 8.599299], - [-13.109899, 8.5965] - ] - ], - [ - [ - [-13.199349, 8.61285], - [-13.195899, 8.612696], - [-13.194982, 8.612666], - [-13.194107, 8.612646], - [-13.19409, 8.61231], - [-13.194562, 8.611249], - [-13.195475, 8.609414], - [-13.195718, 8.608909], - [-13.196739, 8.607147], - [-13.196883, 8.60694], - [-13.19582, 8.606782], - [-13.194906, 8.606989], - [-13.192047, 8.608429], - [-13.192071, 8.6079], - [-13.192496, 8.607361], - [-13.192513, 8.607343], - [-13.192835, 8.606874], - [-13.193726, 8.605641], - [-13.193874, 8.605086], - [-13.193058, 8.604859], - [-13.19248, 8.605178], - [-13.191095, 8.605322], - [-13.190792, 8.605068], - [-13.190444, 8.605074], - [-13.190131, 8.605125], - [-13.190093, 8.60478], - [-13.190012, 8.603729], - [-13.189955, 8.603551], - [-13.190177, 8.603542], - [-13.190681, 8.603341], - [-13.190773, 8.603332], - [-13.190992, 8.603131], - [-13.190853, 8.602812], - [-13.190859, 8.601895], - [-13.190315, 8.601886], - [-13.190219, 8.600627], - [-13.189612, 8.600147], - [-13.189813, 8.5999], - [-13.190311, 8.599463], - [-13.19079, 8.599133], - [-13.191218, 8.598743], - [-13.191246, 8.598718], - [-13.190664, 8.598079], - [-13.190138, 8.597702], - [-13.189725, 8.597055], - [-13.189711, 8.597038], - [-13.189674, 8.597037], - [-13.187441, 8.597459], - [-13.187309, 8.597478], - [-13.187241, 8.596986], - [-13.187089, 8.596709], - [-13.184561, 8.597695], - [-13.184454, 8.597151], - [-13.184156, 8.59629], - [-13.184108, 8.596115], - [-13.184043, 8.595926], - [-13.183929, 8.595135], - [-13.183876, 8.594777], - [-13.183744, 8.59408], - [-13.183692, 8.593738], - [-13.183405, 8.593629], - [-13.182832, 8.593762], - [-13.182102, 8.594015], - [-13.181848, 8.593668], - [-13.181582, 8.593326], - [-13.184576, 8.588138], - [-13.183297, 8.585922], - [-13.17875, 8.585416], - [-13.177916, 8.579584], - [-13.176249, 8.579583], - [-13.172083, 8.57875], - [-13.172082, 8.577084], - [-13.169582, 8.574584], - [-13.168749, 8.574584], - [-13.165417, 8.575416], - [-13.164565, 8.574567], - [-13.164521, 8.574607], - [-13.162944, 8.574607], - [-13.16313, 8.574991], - [-13.163499, 8.578281], - [-13.163569, 8.578994], - [-13.163895, 8.582482], - [-13.163941, 8.582858], - [-13.164036, 8.58383], - [-13.164101, 8.584393], - [-13.164188, 8.585316], - [-13.16437, 8.586373], - [-13.164786, 8.587677], - [-13.165389, 8.58901], - [-13.164657, 8.589529], - [-13.163644, 8.589444], - [-13.163913, 8.590226], - [-13.164171, 8.59024], - [-13.164874, 8.590356], - [-13.165237, 8.590417], - [-13.164146, 8.592418], - [-13.163542, 8.593573], - [-13.163594, 8.594595], - [-13.161798, 8.594488], - [-13.161268, 8.594796], - [-13.159993, 8.593762], - [-13.159597, 8.594555], - [-13.159669, 8.594569], - [-13.159571, 8.595106], - [-13.159074, 8.595813], - [-13.158982, 8.596192], - [-13.159966, 8.596016], - [-13.160019, 8.596203], - [-13.159477, 8.596591], - [-13.158948, 8.597692], - [-13.159104, 8.59815], - [-13.160391, 8.598967], - [-13.160391, 8.598968], - [-13.159724, 8.598701], - [-13.158207, 8.598411], - [-13.157807, 8.598406], - [-13.157231, 8.598444], - [-13.156663, 8.59847], - [-13.156337, 8.598436], - [-13.156064, 8.598362], - [-13.155755, 8.59817], - [-13.15533, 8.598058], - [-13.154879, 8.597978], - [-13.154477, 8.597998], - [-13.154242, 8.598038], - [-13.153986, 8.598149], - [-13.153665, 8.598325], - [-13.153132, 8.59865], - [-13.152854, 8.598775], - [-13.15265, 8.598814], - [-13.15222, 8.598821], - [-13.151731, 8.598792], - [-13.151584, 8.598727], - [-13.151392, 8.598504], - [-13.151331, 8.598311], - [-13.151214, 8.597861], - [-13.151128, 8.59732], - [-13.15114, 8.596858], - [-13.151198, 8.596634], - [-13.151205, 8.596338], - [-13.151145, 8.595871], - [-13.151036, 8.595421], - [-13.150937, 8.594911], - [-13.150815, 8.59461], - [-13.150572, 8.594263], - [-13.150491, 8.594054], - [-13.150469, 8.593881], - [-13.150469, 8.593693], - [-13.150507, 8.593548], - [-13.150612, 8.59341], - [-13.150729, 8.593324], - [-13.151007, 8.593182], - [-13.151335, 8.593024], - [-13.151471, 8.592917], - [-13.151549, 8.592909], - [-13.151561, 8.59296], - [-13.151514, 8.593106], - [-13.151514, 8.593246], - [-13.151591, 8.593469], - [-13.151704, 8.593624], - [-13.15164, 8.593294], - [-13.151669, 8.593123], - [-13.151717, 8.592972], - [-13.151661, 8.592814], - [-13.151471, 8.592793], - [-13.151024, 8.593036], - [-13.150742, 8.593221], - [-13.150578, 8.593324], - [-13.150421, 8.593479], - [-13.150386, 8.593595], - [-13.15048, 8.594283], - [-13.15059, 8.594457], - [-13.150763, 8.594807], - [-13.150946, 8.595486], - [-13.151049, 8.596081], - [-13.151075, 8.596385], - [-13.151058, 8.59666], - [-13.150997, 8.59676], - [-13.150811, 8.596844], - [-13.150682, 8.596807], - [-13.150568, 8.59669], - [-13.150206, 8.596478], - [-13.149875, 8.596336], - [-13.149628, 8.596328], - [-13.149031, 8.596359], - [-13.14815, 8.596435], - [-13.147429, 8.596491], - [-13.146467, 8.596589], - [-13.145842, 8.596623], - [-13.145118, 8.59659], - [-13.144789, 8.596585], - [-13.144515, 8.596444], - [-13.144432, 8.596298], - [-13.144367, 8.596311], - [-13.14415, 8.596482], - [-13.14399, 8.59647], - [-13.143665, 8.59652], - [-13.143422, 8.596645], - [-13.143162, 8.596856], - [-13.143036, 8.59707], - [-13.142963, 8.597375], - [-13.142963, 8.597572], - [-13.143002, 8.597807], - [-13.143097, 8.597958], - [-13.143201, 8.598129], - [-13.143331, 8.598267], - [-13.143539, 8.598438], - [-13.143846, 8.598626], - [-13.14402, 8.598716], - [-13.144363, 8.59884], - [-13.144967, 8.59898], - [-13.145243, 8.599041], - [-13.145777, 8.599144], - [-13.146128, 8.599218], - [-13.146526, 8.5994], - [-13.147384, 8.599781], - [-13.148151, 8.600175], - [-13.148758, 8.600539], - [-13.148916, 8.6007], - [-13.148915, 8.600702], - [-13.148463, 8.600649], - [-13.148194, 8.600655], - [-13.147758, 8.60071], - [-13.146973, 8.600855], - [-13.146409, 8.601025], - [-13.145673, 8.601195], - [-13.145403, 8.601274], - [-13.145091, 8.601376], - [-13.144711, 8.601412], - [-13.14395, 8.601189], - [-13.143238, 8.60106], - [-13.142545, 8.60083], - [-13.141851, 8.600496], - [-13.140797, 8.600194], - [-13.139993, 8.600011], - [-13.139319, 8.599763], - [-13.138723, 8.599489], - [-13.137864, 8.599162], - [-13.137454, 8.598956], - [-13.136657, 8.598478], - [-13.136154, 8.598308], - [-13.135632, 8.598235], - [-13.135062, 8.598246], - [-13.134498, 8.598325], - [-13.134144, 8.598522], - [-13.134154, 8.601889], - [-13.134547, 8.602244], - [-13.135086, 8.602698], - [-13.135362, 8.602965], - [-13.135448, 8.603298], - [-13.135405, 8.603469], - [-13.135276, 8.603536], - [-13.134828, 8.603542], - [-13.134135, 8.603615], - [-13.132449, 8.603747], - [-13.131418, 8.603821], - [-13.130308, 8.603862], - [-13.129462, 8.603845], - [-13.128744, 8.603771], - [-13.128008, 8.603578], - [-13.127726, 8.603433], - [-13.127493, 8.603183], - [-13.127377, 8.602934], - [-13.127469, 8.602607], - [-13.127671, 8.602377], - [-13.128229, 8.602055], - [-13.128823, 8.601456], - [-13.129332, 8.600855], - [-13.129651, 8.600291], - [-13.1297, 8.599715], - [-13.129701, 8.599284], - [-13.129602, 8.59886], - [-13.129333, 8.598532], - [-13.129069, 8.598264], - [-13.128498, 8.597955], - [-13.127517, 8.597452], - [-13.126518, 8.596962], - [-13.125917, 8.59664], - [-13.125333, 8.596142], - [-13.124726, 8.595687], - [-13.123975, 8.595083], - [-13.123399, 8.594657], - [-13.123044, 8.594547], - [-13.122252, 8.594457], - [-13.121468, 8.594529], - [-13.120775, 8.594753], - [-13.120602, 8.594638], - [-13.120449, 8.594603], - [-13.12029, 8.594633], - [-13.120143, 8.594712], - [-13.120039, 8.594862], - [-13.119965, 8.595123], - [-13.119909, 8.59527], - [-13.119314, 8.596088], - [-13.118462, 8.597034], - [-13.117499, 8.597975], - [-13.117126, 8.598283], - [-13.116769, 8.598465], - [-13.116445, 8.598466], - [-13.116255, 8.598422], - [-13.116114, 8.598325], - [-13.116034, 8.598217], - [-13.116046, 8.597992], - [-13.11615, 8.597652], - [-13.116347, 8.597294], - [-13.116672, 8.596821], - [-13.117057, 8.596246], - [-13.1175, 8.595396], - [-13.117825, 8.594547], - [-13.118253, 8.593353], - [-13.11842, 8.59263], - [-13.118671, 8.59183], - [-13.118738, 8.591193], - [-13.118714, 8.590527], - [-13.118696, 8.590175], - [-13.118555, 8.589745], - [-13.118357, 8.589252], - [-13.118081, 8.588804], - [-13.117819, 8.588386], - [-13.117543, 8.587974], - [-13.117266, 8.587631], - [-13.117206, 8.587697], - [-13.117099, 8.5888], - [-13.1154, 8.5893], - [-13.1149, 8.592099], - [-13.1143, 8.5926], - [-13.113499, 8.595399], - [-13.1112, 8.598499], - [-13.1093, 8.6007], - [-13.109299, 8.602399], - [-13.1088, 8.6035], - [-13.1093, 8.6065], - [-13.111, 8.610099], - [-13.1135, 8.611799], - [-13.1146, 8.6121], - [-13.1157, 8.613199], - [-13.1168, 8.6135], - [-13.1182, 8.614899], - [-13.121299, 8.616499], - [-13.1221, 8.617899], - [-13.124, 8.6187], - [-13.125999, 8.620099], - [-13.1265, 8.621199], - [-13.129899, 8.620999], - [-13.1326, 8.6196], - [-13.134899, 8.619599], - [-13.1363, 8.618199], - [-13.138999, 8.6179], - [-13.140399, 8.618699], - [-13.140699, 8.620399], - [-13.1396, 8.620399], - [-13.139299, 8.6196], - [-13.1382, 8.6193], - [-13.137099, 8.6199], - [-13.135099, 8.621799], - [-13.1332, 8.6224], - [-13.132099, 8.623199], - [-13.1301, 8.6235], - [-13.129599, 8.623999], - [-13.1271, 8.623999], - [-13.126799, 8.6235], - [-13.1249, 8.622899], - [-13.123499, 8.6215], - [-13.1218, 8.6215], - [-13.122099, 8.623199], - [-13.1229, 8.6237], - [-13.124299, 8.626799], - [-13.1246, 8.628799], - [-13.125099, 8.6288], - [-13.1251, 8.630699], - [-13.125999, 8.632399], - [-13.128799, 8.634599], - [-13.1288, 8.635099], - [-13.1313, 8.636], - [-13.1338, 8.637399], - [-13.134899, 8.6374], - [-13.1374, 8.638499], - [-13.139299, 8.6385], - [-13.1401, 8.638999], - [-13.141799, 8.639], - [-13.1451, 8.640099], - [-13.150699, 8.640099], - [-13.151299, 8.638799], - [-13.1513, 8.6357], - [-13.152899, 8.6351], - [-13.1529, 8.638199], - [-13.1526, 8.640699], - [-13.152665, 8.640751], - [-13.152684, 8.6406], - [-13.152816, 8.640449], - [-13.152916, 8.640167], - [-13.152973, 8.639706], - [-13.15303, 8.638728], - [-13.153017, 8.637383], - [-13.153224, 8.635692], - [-13.153167, 8.635251], - [-13.152996, 8.634707], - [-13.152902, 8.634508], - [-13.152881, 8.634239], - [-13.152953, 8.634097], - [-13.15311, 8.634027], - [-13.153331, 8.633914], - [-13.153603, 8.633743], - [-13.153662, 8.633637], - [-13.153862, 8.633226], - [-13.154091, 8.632908], - [-13.154348, 8.63259], - [-13.154521, 8.632464], - [-13.15476, 8.632295], - [-13.154878, 8.63219], - [-13.15505, 8.63213], - [-13.155155, 8.632092], - [-13.155281, 8.632105], - [-13.155369, 8.63216], - [-13.155459, 8.632274], - [-13.155513, 8.632403], - [-13.155567, 8.632625], - [-13.1556, 8.632841], - [-13.155597, 8.632985], - [-13.155569, 8.633122], - [-13.155552, 8.633232], - [-13.155473, 8.633515], - [-13.155392, 8.633674], - [-13.155335, 8.633823], - [-13.155315, 8.634015], - [-13.155317, 8.634215], - [-13.155335, 8.634337], - [-13.155384, 8.634503], - [-13.155426, 8.634577], - [-13.155485, 8.634644], - [-13.155613, 8.634707], - [-13.155799, 8.634801], - [-13.156032, 8.634862], - [-13.156283, 8.634888], - [-13.156457, 8.634874], - [-13.156656, 8.6349], - [-13.157149, 8.63498], - [-13.157437, 8.634994], - [-13.157696, 8.635], - [-13.157918, 8.634989], - [-13.158114, 8.634974], - [-13.158311, 8.634948], - [-13.158583, 8.634848], - [-13.158853, 8.634728], - [-13.159108, 8.634601], - [-13.159261, 8.634532], - [-13.159389, 8.63446], - [-13.159486, 8.634396], - [-13.159549, 8.634342], - [-13.159605, 8.634234], - [-13.159619, 8.634138], - [-13.159597, 8.633896], - [-13.159611, 8.633662], - [-13.159653, 8.633433], - [-13.159681, 8.633196], - [-13.159727, 8.633], - [-13.159758, 8.632833], - [-13.159772, 8.632768], - [-13.159819, 8.632713], - [-13.159869, 8.632713], - [-13.159971, 8.632755], - [-13.160114, 8.632857], - [-13.160246, 8.632927], - [-13.16032, 8.633086], - [-13.160373, 8.633251], - [-13.160409, 8.633425], - [-13.160444, 8.63351], - [-13.160517, 8.633668], - [-13.16058, 8.633774], - [-13.160702, 8.633901], - [-13.160854, 8.633994], - [-13.161049, 8.634062], - [-13.161222, 8.634079], - [-13.161453, 8.634079], - [-13.161625, 8.634048], - [-13.161887, 8.633989], - [-13.162074, 8.633978], - [-13.162293, 8.633977], - [-13.162432, 8.633941], - [-13.162581, 8.633909], - [-13.162689, 8.633881], - [-13.162844, 8.633762], - [-13.162948, 8.633653], - [-13.163037, 8.633527], - [-13.163077, 8.633436], - [-13.163097, 8.633302], - [-13.163088, 8.633206], - [-13.163067, 8.6331], - [-13.163008, 8.632918], - [-13.162893, 8.632657], - [-13.162803, 8.632489], - [-13.162711, 8.632294], - [-13.162671, 8.632157], - [-13.162662, 8.632076], - [-13.162675, 8.632032], - [-13.162736, 8.631959], - [-13.162876, 8.631856], - [-13.163067, 8.63169], - [-13.163514, 8.631441], - [-13.163644, 8.631358], - [-13.163792, 8.631258], - [-13.163886, 8.631208], - [-13.16399, 8.631188], - [-13.164117, 8.631198], - [-13.164197, 8.631227], - [-13.164367, 8.631347], - [-13.16451, 8.631483], - [-13.1646, 8.631608], - [-13.164626, 8.631672], - [-13.16465, 8.631772], - [-13.164678, 8.631882], - [-13.164703, 8.63196], - [-13.164749, 8.632039], - [-13.16479, 8.632097], - [-13.164862, 8.632156], - [-13.164903, 8.632178], - [-13.165023, 8.6322], - [-13.165103, 8.632209], - [-13.165187, 8.632204], - [-13.16525, 8.632179], - [-13.165278, 8.63215], - [-13.165317, 8.632092], - [-13.165372, 8.632027], - [-13.16544, 8.631916], - [-13.165471, 8.631889], - [-13.165542, 8.631879], - [-13.165632, 8.631893], - [-13.165687, 8.63192], - [-13.165745, 8.631994], - [-13.165805, 8.632068], - [-13.165904, 8.632146], - [-13.166015, 8.632203], - [-13.166111, 8.632247], - [-13.16621, 8.632274], - [-13.166363, 8.632287], - [-13.166503, 8.632277], - [-13.166648, 8.632259], - [-13.166763, 8.632258], - [-13.166858, 8.632272], - [-13.166955, 8.632296], - [-13.167026, 8.632297], - [-13.167215, 8.632241], - [-13.167278, 8.632227], - [-13.167318, 8.632201], - [-13.16738, 8.63214], - [-13.167423, 8.632083], - [-13.1675, 8.631901], - [-13.167574, 8.631716], - [-13.167664, 8.631514], - [-13.16777, 8.631372], - [-13.167841, 8.631261], - [-13.167867, 8.631154], - [-13.167889, 8.631087], - [-13.167923, 8.631064], - [-13.168019, 8.631061], - [-13.168134, 8.631076], - [-13.168187, 8.631063], - [-13.168222, 8.631034], - [-13.168621, 8.630534], - [-13.170718, 8.629761], - [-13.17138, 8.62985], - [-13.171471, 8.629692], - [-13.171425, 8.629378], - [-13.17054, 8.628751], - [-13.17054, 8.62875], - [-13.17375, 8.62875], - [-13.177489, 8.630993], - [-13.177546, 8.630894], - [-13.179984, 8.629699], - [-13.181335, 8.629638], - [-13.182687, 8.62937], - [-13.183799, 8.629915], - [-13.184351, 8.629841], - [-13.184584, 8.629205], - [-13.186071, 8.630383], - [-13.187675, 8.632027], - [-13.188749, 8.630417], - [-13.190416, 8.630416], - [-13.189583, 8.627916], - [-13.192083, 8.625417], - [-13.194582, 8.624583], - [-13.194582, 8.61625], - [-13.193546, 8.615212], - [-13.193547, 8.615211], - [-13.195741, 8.615809], - [-13.19616, 8.614567], - [-13.189955, 8.612758], - [-13.189955, 8.612756], - [-13.190392, 8.612774], - [-13.19213, 8.612814], - [-13.192381, 8.61308], - [-13.194299, 8.613671], - [-13.195274, 8.613809], - [-13.195892, 8.614166], - [-13.196668, 8.613805], - [-13.197169, 8.613956], - [-13.197371, 8.614244], - [-13.197991, 8.614372], - [-13.198426, 8.614721], - [-13.199349, 8.61285] - ] - ] - ], - "type": "MultiPolygon" - }, - "id": 204, - "properties": { - "cc:admin:id": ["44"], - "cc:oBld:total": 5025, - "cc:pop:fifteen-to-twenty-four": 4786.885628919421, - "cc:pop:grid3-total": 47140.762260326446, - "cc:pop:kontur-total": 24319.692869137656, - "cc:pop:men": 12695.559254283193, - "cc:pop:sixty-plus": 1619.799733369, - "cc:pop:total": 26449.61259383952, - "cc:pop:under-five": 4302.938383391442, - "cc:pop:women": 13754.053339556334, - "cc:pop:women-fiften-to-forty-nine": 6655.126989430284, - "cc:pop:wp-total": 27706.334256804097, - "cc:pop:wp-total-UN": 32127.10778326032, - "cc:id": "204", - "cc:Name": "Kasongha MCHP", - "cc:site": [-13.1876, 8.6092], - "user:parentName": "Kaffu Bullom", - "user:code": "OU_255011", - "user:orgUnitId": "OqBiNJjKQAu", - "user:level": "4", - "user:parentId": "vn9KJsLyP5f" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.962083, 7.541249], - [-11.962082, 7.537021], - [-11.9525, 7.5361], - [-11.949599, 7.535599], - [-11.946899, 7.534599], - [-11.939499, 7.530599], - [-11.936699, 7.529799], - [-11.933699, 7.529299], - [-11.9246, 7.529], - [-11.916999, 7.5296], - [-11.912699, 7.5306], - [-11.9054, 7.533299], - [-11.901599, 7.5354], - [-11.897399, 7.5366], - [-11.893099, 7.536899], - [-11.8888, 7.5366], - [-11.885999, 7.535999], - [-11.882899, 7.533999], - [-11.8731, 7.5226], - [-11.871399, 7.520199], - [-11.87, 7.5176], - [-11.868899, 7.513199], - [-11.868, 7.5043], - [-11.867499, 7.501399], - [-11.866499, 7.498699], - [-11.863199, 7.491999], - [-11.860499, 7.4835], - [-11.854499, 7.4864], - [-11.8479, 7.489099], - [-11.8452, 7.4912], - [-11.842099, 7.4958], - [-11.837799, 7.5032], - [-11.8293, 7.514599], - [-11.8237, 7.5198], - [-11.822099, 7.5226], - [-11.8211, 7.5269], - [-11.821499, 7.530199], - [-11.8229, 7.5348], - [-11.824599, 7.544599], - [-11.826, 7.5485], - [-11.8295, 7.5548], - [-11.830999, 7.5592], - [-11.831099, 7.563999], - [-11.829999, 7.566999], - [-11.827499, 7.5696], - [-11.8216, 7.572999], - [-11.8119, 7.577599], - [-11.8052, 7.580399], - [-11.798099, 7.581399], - [-11.792599, 7.581199], - [-11.7886, 7.5805], - [-11.787192, 7.580017], - [-11.786952, 7.580435], - [-11.785605, 7.580493], - [-11.786196, 7.581759], - [-11.785362, 7.583219], - [-11.785423, 7.583295], - [-11.786457, 7.583618], - [-11.78678, 7.583996], - [-11.787632, 7.583699], - [-11.788152, 7.583836], - [-11.788613, 7.584496], - [-11.788625, 7.585096], - [-11.789063, 7.585128], - [-11.789339, 7.5848], - [-11.789779, 7.584603], - [-11.790476, 7.584543], - [-11.791805, 7.584512], - [-11.792078, 7.584344], - [-11.7922, 7.584555], - [-11.792935, 7.585515], - [-11.79364, 7.586147], - [-11.793788, 7.586313], - [-11.79394, 7.586514], - [-11.794807, 7.588776], - [-11.79557, 7.590233], - [-11.795956, 7.590781], - [-11.797448, 7.592756], - [-11.798156, 7.593649], - [-11.798729, 7.594095], - [-11.80041, 7.594867], - [-11.802014, 7.595413], - [-11.803041, 7.595645], - [-11.805417, 7.592084], - [-11.80875, 7.591249], - [-11.812082, 7.589584], - [-11.817083, 7.599583], - [-11.825416, 7.600417], - [-11.828336, 7.602606], - [-11.832629, 7.601588], - [-11.833997, 7.600687], - [-11.835455, 7.59919], - [-11.836249, 7.598743], - [-11.83625, 7.606249], - [-11.841249, 7.606249], - [-11.842083, 7.602083], - [-11.844583, 7.60125], - [-11.851249, 7.601249], - [-11.853749, 7.600416], - [-11.85375, 7.599584], - [-11.858749, 7.599583], - [-11.86125, 7.592084], - [-11.864582, 7.592916], - [-11.867917, 7.59125], - [-11.869582, 7.592084], - [-11.872082, 7.594583], - [-11.874582, 7.590416], - [-11.872083, 7.585416], - [-11.876249, 7.58375], - [-11.877917, 7.586249], - [-11.882082, 7.586249], - [-11.888749, 7.57875], - [-11.891249, 7.579583], - [-11.891249, 7.57875], - [-11.88875, 7.576249], - [-11.88875, 7.56875], - [-11.898749, 7.567917], - [-11.902916, 7.567916], - [-11.90375, 7.565417], - [-11.907082, 7.564583], - [-11.909582, 7.562084], - [-11.909583, 7.560417], - [-11.91125, 7.560417], - [-11.91875, 7.564583], - [-11.922916, 7.563749], - [-11.924583, 7.559584], - [-11.929582, 7.557083], - [-11.930417, 7.554583], - [-11.934582, 7.55375], - [-11.935417, 7.554583], - [-11.938698, 7.55327], - [-11.938752, 7.553331], - [-11.939583, 7.552917], - [-11.944582, 7.55375], - [-11.947082, 7.556249], - [-11.950416, 7.552084], - [-11.952916, 7.552083], - [-11.95125, 7.54625], - [-11.952083, 7.546249], - [-11.95625, 7.54375], - [-11.960416, 7.544583], - [-11.962083, 7.541249] - ] - ], - "type": "Polygon" - }, - "id": 205, - "properties": { - "cc:admin:id": ["4"], - "cc:oBld:total": 32, - "cc:pop:fifteen-to-twenty-four": 2939.8307193664855, - "cc:pop:grid3-total": 10774.553259003558, - "cc:pop:kontur-total": 16583.05503770824, - "cc:pop:men": 7946.2217253539375, - "cc:pop:sixty-plus": 1149.759821389381, - "cc:pop:total": 16404.027393196913, - "cc:pop:under-five": 2753.117314981679, - "cc:pop:women": 8457.805667842975, - "cc:pop:women-fiften-to-forty-nine": 4014.577260399413, - "cc:pop:wp-total": 14535.54388867848, - "cc:pop:wp-total-UN": 16852.58838297655, - "cc:id": "205", - "cc:Name": "Kasse MCHP", - "cc:site": [-11.9198, 7.537], - "user:parentName": "Bargbo", - "user:code": "OU_621", - "user:orgUnitId": "cJkZLwhL8RP", - "user:level": "4", - "user:parentId": "zFDYIgyGmXG" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.987956, 8.828411], - [-11.986387, 8.827354], - [-11.985238, 8.826385], - [-11.985086, 8.825788], - [-11.97875, 8.832916], - [-11.976965, 8.832916], - [-11.976417, 8.830557], - [-11.97649, 8.829037], - [-11.975434, 8.824787], - [-11.972916, 8.825416], - [-11.970416, 8.822083], - [-11.962083, 8.823749], - [-11.961249, 8.824582], - [-11.95375, 8.82375], - [-11.95125, 8.82375], - [-11.951249, 8.825417], - [-11.948749, 8.827916], - [-11.942917, 8.82875], - [-11.942325, 8.83052], - [-11.93654, 8.830521], - [-11.935638, 8.832082], - [-11.937081, 8.832083], - [-11.937082, 8.832084], - [-11.934583, 8.840416], - [-11.932083, 8.843749], - [-11.929583, 8.841249], - [-11.928749, 8.83375], - [-11.923398, 8.835756], - [-11.923064, 8.835326], - [-11.922769, 8.835077], - [-11.922082, 8.841249], - [-11.921249, 8.841249], - [-11.917082, 8.837917], - [-11.91375, 8.837083], - [-11.912916, 8.835417], - [-11.91125, 8.835417], - [-11.90875, 8.837916], - [-11.908644, 8.838336], - [-11.901672, 8.838337], - [-11.897764, 8.845101], - [-11.890807, 8.845102], - [-11.8906, 8.850199], - [-11.8902, 8.853199], - [-11.8892, 8.856899], - [-11.887799, 8.8601], - [-11.885399, 8.8635], - [-11.8824, 8.866399], - [-11.8759, 8.8716], - [-11.873099, 8.8764], - [-11.8723, 8.881499], - [-11.8726, 8.8854], - [-11.8738, 8.8891], - [-11.878399, 8.896399], - [-11.8811, 8.9029], - [-11.8859, 8.909199], - [-11.8888, 8.906599], - [-11.896999, 8.902], - [-11.9002, 8.900699], - [-11.9046, 8.898499], - [-11.910399, 8.8971], - [-11.915799, 8.8948], - [-11.919399, 8.894], - [-11.925299, 8.8938], - [-11.929199, 8.893899], - [-11.931999, 8.894199], - [-11.934599, 8.895099], - [-11.940534, 8.897892], - [-11.9414, 8.8983], - [-11.9457, 8.9007], - [-11.949599, 8.902599], - [-11.952999, 8.905099], - [-11.960799, 8.8972], - [-11.963099, 8.8944], - [-11.9648, 8.890499], - [-11.9671, 8.886299], - [-11.969199, 8.882], - [-11.972899, 8.8773], - [-11.974399, 8.8751], - [-11.977899, 8.8678], - [-11.9786, 8.864999], - [-11.978799, 8.8568], - [-11.979499, 8.8534], - [-11.981699, 8.849], - [-11.983, 8.845799], - [-11.9848, 8.842299], - [-11.9857, 8.838899], - [-11.9862, 8.833599], - [-11.986999, 8.8303], - [-11.987956, 8.828411] - ] - ], - "type": "Polygon" - }, - "id": 206, - "properties": { - "cc:admin:id": ["106"], - "cc:oBld:total": 102, - "cc:pop:fifteen-to-twenty-four": 517.2655728073402, - "cc:pop:grid3-total": 2410.34533073733, - "cc:pop:kontur-total": 2898.5436062841018, - "cc:pop:men": 1285.756139255077, - "cc:pop:sixty-plus": 151.70908912221057, - "cc:pop:total": 2808.601686302129, - "cc:pop:under-five": 442.293161446822, - "cc:pop:women": 1522.845547047052, - "cc:pop:women-fiften-to-forty-nine": 759.1121706228338, - "cc:pop:wp-total": 2471.5839287331223, - "cc:pop:wp-total-UN": 2853.644729003169, - "cc:id": "206", - "cc:Name": "Kathanta Bana MCHP", - "cc:site": [-11.9286, 8.8772], - "user:parentName": "Paki Masabong", - "user:code": "OU_193298", - "user:orgUnitId": "pmzk0ho80aA", - "user:level": "4", - "user:parentId": "L8iA6eLwKNb" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.230252, 9.575347], - [-12.22906, 9.568792], - [-12.228639, 9.568845], - [-12.22812, 9.568395], - [-12.228115, 9.568394], - [-12.228749, 9.564583], - [-12.223365, 9.563909], - [-12.223639, 9.563328], - [-12.224064, 9.561216], - [-12.225186, 9.557788], - [-12.225934, 9.556468], - [-12.226015, 9.556002], - [-12.225751, 9.555451], - [-12.225709, 9.554583], - [-12.225384, 9.55391], - [-12.225268, 9.553079], - [-12.225175, 9.552267], - [-12.225339, 9.552101], - [-12.224389, 9.550914], - [-12.223782, 9.550777], - [-12.223499, 9.550529], - [-12.222369, 9.550257], - [-12.221916, 9.550335], - [-12.221393, 9.550776], - [-12.219954, 9.550576], - [-12.218221, 9.549684], - [-12.217048, 9.550031], - [-12.215017, 9.550329], - [-12.214457, 9.550236], - [-12.213749, 9.544583], - [-12.210417, 9.54125], - [-12.210488, 9.540962], - [-12.209415, 9.541575], - [-12.208856, 9.540518], - [-12.209337, 9.539549], - [-12.209889, 9.539037], - [-12.210916, 9.538604], - [-12.211067, 9.538645], - [-12.212916, 9.53125], - [-12.212916, 9.529436], - [-12.21176, 9.528506], - [-12.210853, 9.528056], - [-12.210841, 9.528039], - [-12.198751, 9.528749], - [-12.198751, 9.528748], - [-12.203597, 9.523903], - [-12.203591, 9.523898], - [-12.202983, 9.522621], - [-12.201996, 9.52167], - [-12.201073, 9.520691], - [-12.200187, 9.520176], - [-12.199395, 9.519963], - [-12.19887, 9.519578], - [-12.196198, 9.518467], - [-12.194809, 9.517763], - [-12.194583, 9.517082], - [-12.195417, 9.515417], - [-12.198749, 9.514582], - [-12.195461, 9.51261], - [-12.195411, 9.512706], - [-12.192917, 9.512083], - [-12.192082, 9.512082], - [-12.190115, 9.507493], - [-12.189248, 9.507534], - [-12.188233, 9.506645], - [-12.187794, 9.506557], - [-12.186982, 9.506756], - [-12.185665, 9.506368], - [-12.184234, 9.507123], - [-12.183187, 9.508534], - [-12.182398, 9.509176], - [-12.181574, 9.509556], - [-12.180967, 9.509578], - [-12.180504, 9.509389], - [-12.179282, 9.50808], - [-12.178589, 9.507479], - [-12.177745, 9.507446], - [-12.177083, 9.507548], - [-12.177083, 9.497917], - [-12.183179, 9.498525], - [-12.184012, 9.497083], - [-12.177917, 9.497082], - [-12.17375, 9.49375], - [-12.173749, 9.482538], - [-12.171037, 9.482873], - [-12.16803, 9.483063], - [-12.166033, 9.483344], - [-12.165212, 9.48334], - [-12.164599, 9.483087], - [-12.162522, 9.483921], - [-12.160799, 9.484001], - [-12.159026, 9.484369], - [-12.157794, 9.48431], - [-12.157064, 9.483793], - [-12.156011, 9.483494], - [-12.155309, 9.483999], - [-12.155195, 9.483177], - [-12.155126, 9.481963], - [-12.154835, 9.480919], - [-12.153699, 9.4814], - [-12.1511, 9.481999], - [-12.144, 9.482899], - [-12.1387, 9.485099], - [-12.1362, 9.485699], - [-12.1308, 9.486199], - [-12.1274, 9.487199], - [-12.1238, 9.488999], - [-12.120699, 9.4903], - [-12.1164, 9.492699], - [-12.113299, 9.4942], - [-12.110999, 9.4957], - [-12.105899, 9.4997], - [-12.100599, 9.5027], - [-12.095199, 9.5069], - [-12.090999, 9.5091], - [-12.0857, 9.511599], - [-12.080699, 9.5128], - [-12.075299, 9.515], - [-12.0716, 9.515699], - [-12.068699, 9.515899], - [-12.0475, 9.5158], - [-12.0362, 9.5162], - [-12.0403, 9.5221], - [-12.044, 9.5288], - [-12.0473, 9.533299], - [-12.0502, 9.5351], - [-12.056999, 9.537], - [-12.0601, 9.5393], - [-12.061199, 9.5428], - [-12.060499, 9.5458], - [-12.057599, 9.5516], - [-12.0567, 9.555999], - [-12.0577, 9.5601], - [-12.0599, 9.5629], - [-12.0629, 9.565], - [-12.0664, 9.566], - [-12.0721, 9.566199], - [-12.076399, 9.5655], - [-12.082299, 9.5635], - [-12.086699, 9.5626], - [-12.092799, 9.5623], - [-12.0973, 9.5627], - [-12.1014, 9.5638], - [-12.118699, 9.571999], - [-12.126199, 9.574699], - [-12.132399, 9.577299], - [-12.135099, 9.5724], - [-12.137, 9.568299], - [-12.1384, 9.566399], - [-12.140299, 9.5648], - [-12.144, 9.562899], - [-12.1502, 9.558199], - [-12.157999, 9.554], - [-12.1614, 9.5531], - [-12.164499, 9.553299], - [-12.166699, 9.554], - [-12.169, 9.5557], - [-12.171499, 9.558399], - [-12.1731, 9.5607], - [-12.1745, 9.5639], - [-12.1768, 9.5682], - [-12.1781, 9.5714], - [-12.1801, 9.575], - [-12.1823, 9.579499], - [-12.1847, 9.581699], - [-12.187199, 9.582599], - [-12.1899, 9.583], - [-12.1945, 9.583099], - [-12.199099, 9.5829], - [-12.202599, 9.5822], - [-12.2051, 9.580999], - [-12.21, 9.577099], - [-12.2125, 9.575899], - [-12.215299, 9.5754], - [-12.2192, 9.5752], - [-12.230252, 9.575347] - ] - ], - "type": "Polygon" - }, - "id": 207, - "properties": { - "cc:admin:id": ["121"], - "cc:oBld:total": 138, - "cc:pop:fifteen-to-twenty-four": 1329.5421021090017, - "cc:pop:grid3-total": 5390.969488115676, - "cc:pop:kontur-total": 7512.417514429211, - "cc:pop:men": 3938.130605389742, - "cc:pop:sixty-plus": 461.23064590287237, - "cc:pop:total": 7301.401896116644, - "cc:pop:under-five": 1181.2400250839955, - "cc:pop:women": 3363.2712907269006, - "cc:pop:women-fiften-to-forty-nine": 1658.5459353161036, - "cc:pop:wp-total": 7133.235966929105, - "cc:pop:wp-total-UN": 8268.159891059559, - "cc:id": "207", - "cc:Name": "Kathanta Yimbor CHC", - "cc:site": [-12.1699, 9.546], - "user:parentName": "Sella Limba", - "user:code": "OU_193291", - "user:orgUnitId": "NjyJYiIuKIG", - "user:level": "4", - "user:parentId": "j43EZb15rjI" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.856417, 9.088918], - [-11.856249, 9.088749], - [-11.853749, 9.085417], - [-11.85125, 9.084583], - [-11.849583, 9.08375], - [-11.849544, 9.08371], - [-11.849498, 9.083787], - [-11.849062, 9.083968], - [-11.848576, 9.084531], - [-11.8479, 9.084944], - [-11.847784, 9.085543], - [-11.847368, 9.086149], - [-11.847328, 9.086689], - [-11.845781, 9.08884], - [-11.84518, 9.089082], - [-11.844962, 9.088515], - [-11.84502, 9.088059], - [-11.84463, 9.087184], - [-11.84464, 9.086639], - [-11.845064, 9.085469], - [-11.845676, 9.0847], - [-11.846201, 9.08362], - [-11.846547, 9.083106], - [-11.846515, 9.082346], - [-11.846418, 9.08193], - [-11.846607, 9.081226], - [-11.847059, 9.080642], - [-11.848608, 9.079036], - [-11.8492, 9.07729], - [-11.848749, 9.074583], - [-11.842917, 9.070416], - [-11.84375, 9.067082], - [-11.844582, 9.062917], - [-11.840416, 9.062916], - [-11.837083, 9.060417], - [-11.836249, 9.057916], - [-11.835416, 9.05375], - [-11.833945, 9.053258], - [-11.835584, 9.050776], - [-11.834635, 9.048878], - [-11.833809, 9.048222], - [-11.833444, 9.047496], - [-11.83308, 9.045613], - [-11.832474, 9.044503], - [-11.832326, 9.042404], - [-11.832332, 9.042089], - [-11.826886, 9.038093], - [-11.826178, 9.038027], - [-11.825818, 9.037891], - [-11.825811, 9.037901], - [-11.825415, 9.037738], - [-11.823888, 9.037158], - [-11.823692, 9.036027], - [-11.823018, 9.036006], - [-11.820876, 9.032296], - [-11.822457, 9.029559], - [-11.822926, 9.029636], - [-11.823363, 9.029243], - [-11.823675, 9.028569], - [-11.823722, 9.027334], - [-11.823552, 9.025743], - [-11.823153, 9.024461], - [-11.821609, 9.023187], - [-11.820681, 9.021586], - [-11.820643, 9.019041], - [-11.821194, 9.018164], - [-11.820099, 9.018099], - [-11.8167, 9.017], - [-11.8105, 9.0132], - [-11.806999, 9.0119], - [-11.8017, 9.0119], - [-11.7966, 9.013999], - [-11.7912, 9.018799], - [-11.7896, 9.024299], - [-11.787499, 9.028299], - [-11.784999, 9.0306], - [-11.7799, 9.033999], - [-11.7782, 9.0359], - [-11.777099, 9.0388], - [-11.775099, 9.047899], - [-11.772899, 9.051299], - [-11.769599, 9.053899], - [-11.7613, 9.056399], - [-11.7585, 9.0577], - [-11.756499, 9.0597], - [-11.7549, 9.062599], - [-11.754, 9.066299], - [-11.7544, 9.071499], - [-11.756899, 9.075899], - [-11.7609, 9.078099], - [-11.7661, 9.078699], - [-11.783099, 9.0784], - [-11.7908, 9.0786], - [-11.7953, 9.0793], - [-11.8014, 9.081], - [-11.812299, 9.0821], - [-11.816399, 9.083999], - [-11.8185, 9.087], - [-11.8201, 9.0915], - [-11.821699, 9.098599], - [-11.821899, 9.1044], - [-11.8207, 9.112999], - [-11.8255, 9.111199], - [-11.8313, 9.109299], - [-11.8353, 9.106199], - [-11.842099, 9.0994], - [-11.845599, 9.0965], - [-11.8499, 9.094399], - [-11.8526, 9.092499], - [-11.855799, 9.0896], - [-11.856417, 9.088918] - ] - ], - "type": "Polygon" - }, - "id": 208, - "properties": { - "cc:admin:id": ["113"], - "cc:oBld:total": 278, - "cc:pop:fifteen-to-twenty-four": 657.9229767703104, - "cc:pop:grid3-total": 2916.91541849255, - "cc:pop:kontur-total": 3919.1325079607536, - "cc:pop:men": 1577.2836420758574, - "cc:pop:sixty-plus": 223.37951741816244, - "cc:pop:total": 3431.337242344571, - "cc:pop:under-five": 569.34215905473, - "cc:pop:women": 1854.0536002687131, - "cc:pop:women-fiften-to-forty-nine": 885.4503505450155, - "cc:pop:wp-total": 3210.0800044340403, - "cc:pop:wp-total-UN": 3721.7827558837253, - "cc:id": "208", - "cc:Name": "Kathombo MCHP", - "cc:site": [-11.7623, 9.0678], - "user:parentName": "Kalansogoia", - "user:code": "OU_268193", - "user:orgUnitId": "yEU926iVAJJ", - "user:level": "4", - "user:parentId": "smoyi1iYNK6" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.369582, 7.962917], - [-12.36125, 7.954584], - [-12.360306, 7.955054], - [-12.357627, 7.950414], - [-12.352235, 7.950413], - [-12.353749, 7.942084], - [-12.354828, 7.942083], - [-12.358347, 7.935988], - [-12.354442, 7.929221], - [-12.356638, 7.925417], - [-12.357083, 7.925416], - [-12.360416, 7.921249], - [-12.360417, 7.915834], - [-12.356119, 7.915833], - [-12.352212, 7.909068], - [-12.349572, 7.909067], - [-12.350417, 7.90625], - [-12.354582, 7.907083], - [-12.35125, 7.902916], - [-12.351936, 7.894671], - [-12.3474, 7.888299], - [-12.345999, 7.8833], - [-12.343, 7.882], - [-12.3355, 7.885499], - [-12.331399, 7.8879], - [-12.3263, 7.890099], - [-12.3242, 7.890499], - [-12.3219, 7.889899], - [-12.316499, 7.886], - [-12.311899, 7.8849], - [-12.3077, 7.885199], - [-12.299799, 7.888], - [-12.2913, 7.8892], - [-12.2841, 7.8933], - [-12.280599, 7.8979], - [-12.2766, 7.902199], - [-12.2729, 7.905499], - [-12.2695, 7.9082], - [-12.2683, 7.912999], - [-12.2702, 7.916499], - [-12.2726, 7.9181], - [-12.282999, 7.922699], - [-12.286299, 7.925199], - [-12.289699, 7.9293], - [-12.291, 7.9333], - [-12.291199, 7.937899], - [-12.2909, 7.941699], - [-12.2895, 7.945399], - [-12.288099, 7.9475], - [-12.2831, 7.952399], - [-12.281899, 7.9534], - [-12.278699, 7.954999], - [-12.2715, 7.955799], - [-12.2688, 7.956699], - [-12.265, 7.9592], - [-12.265299, 7.967999], - [-12.2658, 7.972499], - [-12.273699, 7.977299], - [-12.2788, 7.9787], - [-12.2842, 7.9809], - [-12.2879, 7.9815], - [-12.2939, 7.9817], - [-12.2977, 7.9823], - [-12.3031, 7.9844], - [-12.3068, 7.985], - [-12.314599, 7.985399], - [-12.316799, 7.985999], - [-12.318699, 7.987], - [-12.320299, 7.988799], - [-12.322999, 7.993499], - [-12.3257, 7.9967], - [-12.327899, 7.998499], - [-12.329799, 7.999499], - [-12.334582, 8.000603], - [-12.334583, 7.997084], - [-12.348749, 7.997083], - [-12.344583, 7.992916], - [-12.34375, 7.990417], - [-12.350416, 7.990416], - [-12.349583, 7.987916], - [-12.349583, 7.982917], - [-12.356249, 7.986249], - [-12.356249, 7.984583], - [-12.35375, 7.979584], - [-12.361249, 7.977916], - [-12.365416, 7.974583], - [-12.364583, 7.972083], - [-12.364583, 7.967084], - [-12.367082, 7.966249], - [-12.369582, 7.962917] - ] - ], - "type": "Polygon" - }, - "id": 209, - "properties": { - "cc:admin:id": ["1"], - "cc:oBld:total": 7, - "cc:pop:fifteen-to-twenty-four": 274.2528813886123, - "cc:pop:grid3-total": 4448.078109559269, - "cc:pop:kontur-total": 1398.847763180238, - "cc:pop:men": 673.5808862563341, - "cc:pop:sixty-plus": 87.65302386237629, - "cc:pop:total": 1450.7279692166496, - "cc:pop:under-five": 254.7189468248667, - "cc:pop:women": 777.1470829603154, - "cc:pop:women-fiften-to-forty-nine": 360.81752773402883, - "cc:pop:wp-total": 1733.7033936940136, - "cc:pop:wp-total-UN": 2001.4170930890068, - "cc:id": "209", - "cc:Name": "Kawaya MCHP", - "cc:site": [-12.2927, 7.9614], - "user:parentName": "Bagruwa", - "user:code": "OU_247050", - "user:orgUnitId": "qMbxFg9McOF", - "user:level": "4", - "user:parentId": "jPidqyo7cpF" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.239582, 8.905416], - [-11.238749, 8.902083], - [-11.236249, 8.900417], - [-11.227082, 8.903749], - [-11.21875, 8.892917], - [-11.222082, 8.887916], - [-11.22125, 8.881249], - [-11.221249, 8.867083], - [-11.217917, 8.862917], - [-11.217135, 8.862838], - [-11.217749, 8.861773], - [-11.213991, 8.855264], - [-11.21875, 8.854583], - [-11.225416, 8.854582], - [-11.228749, 8.851249], - [-11.227082, 8.84625], - [-11.224582, 8.843749], - [-11.22375, 8.839583], - [-11.226249, 8.837916], - [-11.227917, 8.832917], - [-11.232082, 8.832082], - [-11.228749, 8.82625], - [-11.227082, 8.827082], - [-11.224582, 8.826249], - [-11.22375, 8.823749], - [-11.227082, 8.81875], - [-11.21875, 8.820416], - [-11.218749, 8.81375], - [-11.212082, 8.817082], - [-11.205417, 8.81125], - [-11.207082, 8.807917], - [-11.200417, 8.804583], - [-11.197917, 8.804582], - [-11.198749, 8.802083], - [-11.193749, 8.800417], - [-11.189583, 8.800416], - [-11.18875, 8.799582], - [-11.188749, 8.79875], - [-11.182083, 8.799582], - [-11.177181, 8.797745], - [-11.176002, 8.798535], - [-11.175424, 8.798757], - [-11.171249, 8.794583], - [-11.169583, 8.795417], - [-11.166249, 8.798749], - [-11.152917, 8.79625], - [-11.154277, 8.800333], - [-11.154309, 8.800336], - [-11.158636, 8.812598], - [-11.151945, 8.812599], - [-11.151449, 8.813456], - [-11.14875, 8.812917], - [-11.147302, 8.812112], - [-11.147326, 8.811757], - [-11.146915, 8.811897], - [-11.141249, 8.80875], - [-11.137917, 8.80875], - [-11.134583, 8.811249], - [-11.133749, 8.809583], - [-11.129583, 8.80875], - [-11.128965, 8.808749], - [-11.127898, 8.808241], - [-11.126371, 8.808002], - [-11.125718, 8.808222], - [-11.124216, 8.808052], - [-11.123584, 8.8077], - [-11.122771, 8.807588], - [-11.122061, 8.806574], - [-11.120987, 8.808405], - [-11.120567, 8.80852], - [-11.120188, 8.808978], - [-11.120573, 8.809397], - [-11.120513, 8.810155], - [-11.121405, 8.811238], - [-11.121773, 8.812045], - [-11.121999, 8.812738], - [-11.117083, 8.81625], - [-11.117082, 8.81875], - [-11.110416, 8.821249], - [-11.104583, 8.82125], - [-11.102917, 8.822082], - [-11.103749, 8.82625], - [-11.10125, 8.827916], - [-11.09875, 8.827917], - [-11.09625, 8.82875], - [-11.095657, 8.831122], - [-11.09602, 8.830951], - [-11.096021, 8.830952], - [-11.095416, 8.834582], - [-11.09125, 8.834583], - [-11.09125, 8.838749], - [-11.092917, 8.842916], - [-11.095416, 8.842083], - [-11.097273, 8.844559], - [-11.097715, 8.843793], - [-11.097856, 8.843182], - [-11.097933, 8.842933], - [-11.099582, 8.844582], - [-11.09875, 8.84625], - [-11.09875, 8.849582], - [-11.102082, 8.852917], - [-11.102082, 8.857916], - [-11.092083, 8.857083], - [-11.094583, 8.865416], - [-11.102916, 8.865417], - [-11.102916, 8.86625], - [-11.102083, 8.875416], - [-11.109581, 8.875417], - [-11.10375, 8.880417], - [-11.10375, 8.884582], - [-11.106249, 8.884582], - [-11.109583, 8.882083], - [-11.115415, 8.880417], - [-11.115416, 8.880418], - [-11.112916, 8.892082], - [-11.107083, 8.89375], - [-11.112082, 8.903749], - [-11.117917, 8.90125], - [-11.122082, 8.902916], - [-11.12125, 8.912916], - [-11.126249, 8.91375], - [-11.12875, 8.915416], - [-11.129582, 8.915417], - [-11.12875, 8.925416], - [-11.12875, 8.926249], - [-11.133749, 8.924582], - [-11.135416, 8.92125], - [-11.137917, 8.919583], - [-11.141249, 8.922083], - [-11.142205, 8.923517], - [-11.14208, 8.923747], - [-11.145416, 8.927083], - [-11.145416, 8.928749], - [-11.14375, 8.932916], - [-11.14125, 8.934583], - [-11.14125, 8.937916], - [-11.142917, 8.937917], - [-11.151249, 8.940416], - [-11.15125, 8.941249], - [-11.153221, 8.944534], - [-11.160299, 8.9377], - [-11.165099, 8.9345], - [-11.1716, 8.932099], - [-11.1837, 8.926799], - [-11.1962, 8.922799], - [-11.2003, 8.922299], - [-11.211399, 8.9212], - [-11.217399, 8.9194], - [-11.221599, 8.9187], - [-11.225999, 8.9185], - [-11.227112, 8.918482], - [-11.227916, 8.91125], - [-11.22625, 8.910416], - [-11.22625, 8.908749], - [-11.22805, 8.90695], - [-11.228191, 8.907344], - [-11.22829, 8.908289], - [-11.229582, 8.909582], - [-11.231249, 8.909582], - [-11.239582, 8.905416] - ] - ], - "type": "Polygon" - }, - "id": 210, - "properties": { - "cc:admin:id": ["119"], - "cc:oBld:total": 1203, - "cc:pop:fifteen-to-twenty-four": 1411.8255656672916, - "cc:pop:grid3-total": 9542.140647017843, - "cc:pop:kontur-total": 7209.334123928741, - "cc:pop:men": 3551.721515432488, - "cc:pop:sixty-plus": 379.8924749918629, - "cc:pop:total": 7173.591273006294, - "cc:pop:under-five": 1253.0118144210626, - "cc:pop:women": 3621.869757573809, - "cc:pop:women-fiften-to-forty-nine": 1687.2045550521293, - "cc:pop:wp-total": 4494.492099632493, - "cc:pop:wp-total-UN": 5250.665683589997, - "cc:id": "210", - "cc:Name": "Kayima CHC", - "cc:site": [-11.1599, 8.8908], - "user:parentName": "Sandor", - "user:code": "OU_233370", - "user:orgUnitId": "k8ZPul89UDm", - "user:level": "4", - "user:parentId": "g5ptsn0SFX8" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.987083, 9.216249], - [-11.987082, 9.212917], - [-11.984583, 9.210416], - [-11.984582, 9.207917], - [-11.980417, 9.206249], - [-11.982082, 9.203749], - [-11.982082, 9.20125], - [-11.979583, 9.199583], - [-11.979582, 9.198749], - [-11.976835, 9.195316], - [-11.975792, 9.195553], - [-11.9749, 9.19556], - [-11.973505, 9.195163], - [-11.973411, 9.19517], - [-11.968113, 9.197818], - [-11.967857, 9.19646], - [-11.967173, 9.195089], - [-11.966355, 9.194067], - [-11.963625, 9.191464], - [-11.962832, 9.190189], - [-11.962395, 9.188976], - [-11.95375, 9.190416], - [-11.952889, 9.189986], - [-11.953989, 9.188647], - [-11.954422, 9.187892], - [-11.955404, 9.187535], - [-11.957082, 9.186278], - [-11.957082, 9.184583], - [-11.947083, 9.184583], - [-11.945416, 9.187082], - [-11.944036, 9.186163], - [-11.943869, 9.186369], - [-11.942916, 9.185417], - [-11.941456, 9.18493], - [-11.939812, 9.186925], - [-11.940416, 9.182083], - [-11.93625, 9.180417], - [-11.93625, 9.180245], - [-11.936528, 9.18014], - [-11.934582, 9.17625], - [-11.932916, 9.17625], - [-11.927917, 9.177083], - [-11.92625, 9.179582], - [-11.924583, 9.179582], - [-11.917916, 9.174583], - [-11.912917, 9.173749], - [-11.91125, 9.165417], - [-11.913749, 9.159583], - [-11.90625, 9.155417], - [-11.908749, 9.14875], - [-11.90375, 9.144583], - [-11.899583, 9.150416], - [-11.89625, 9.150416], - [-11.895416, 9.149582], - [-11.893749, 9.14625], - [-11.890166, 9.144458], - [-11.890188, 9.144111], - [-11.88375, 9.14125], - [-11.882917, 9.14125], - [-11.880155, 9.148152], - [-11.87999, 9.148148], - [-11.878749, 9.151249], - [-11.87625, 9.150416], - [-11.870417, 9.145417], - [-11.870416, 9.146671], - [-11.866119, 9.146671], - [-11.862213, 9.139906], - [-11.86043, 9.139906], - [-11.860103, 9.140167], - [-11.859894, 9.13968], - [-11.86008, 9.138751], - [-11.858049, 9.13875], - [-11.854143, 9.131985], - [-11.846331, 9.131985], - [-11.842425, 9.13875], - [-11.834612, 9.138751], - [-11.830705, 9.131985], - [-11.826154, 9.131985], - [-11.826299, 9.1335], - [-11.8258, 9.140099], - [-11.8242, 9.145899], - [-11.821199, 9.1524], - [-11.8177, 9.162299], - [-11.815999, 9.1681], - [-11.8144, 9.174699], - [-11.8128, 9.179299], - [-11.812608, 9.180416], - [-11.817083, 9.180417], - [-11.824582, 9.186249], - [-11.82375, 9.195416], - [-11.827917, 9.195417], - [-11.831249, 9.20125], - [-11.829583, 9.212916], - [-11.832083, 9.214582], - [-11.839583, 9.212917], - [-11.840417, 9.21375], - [-11.842083, 9.221249], - [-11.844583, 9.225416], - [-11.848749, 9.226249], - [-11.850416, 9.222083], - [-11.85128, 9.221651], - [-11.852301, 9.222705], - [-11.853686, 9.22364], - [-11.854784, 9.224077], - [-11.855291, 9.224544], - [-11.856211, 9.225781], - [-11.856396, 9.226278], - [-11.856401, 9.226413], - [-11.860416, 9.227083], - [-11.860417, 9.230416], - [-11.865416, 9.237082], - [-11.867082, 9.240416], - [-11.86375, 9.243749], - [-11.866249, 9.244583], - [-11.867083, 9.246249], - [-11.873749, 9.247916], - [-11.877083, 9.252082], - [-11.877182, 9.251984], - [-11.880338, 9.251984], - [-11.884244, 9.258749], - [-11.885457, 9.258749], - [-11.885275, 9.258165], - [-11.885087, 9.256594], - [-11.88446, 9.255392], - [-11.884368, 9.255068], - [-11.884369, 9.255067], - [-11.887916, 9.256249], - [-11.888235, 9.256887], - [-11.88851, 9.256952], - [-11.891442, 9.256382], - [-11.892083, 9.259582], - [-11.892917, 9.260416], - [-11.898685, 9.258254], - [-11.898891, 9.258601], - [-11.899694, 9.259685], - [-11.899672, 9.260146], - [-11.900693, 9.261963], - [-11.901132, 9.263095], - [-11.901316, 9.264176], - [-11.901745, 9.265138], - [-11.902067, 9.265256], - [-11.902945, 9.266864], - [-11.903708, 9.26786], - [-11.904663, 9.268147], - [-11.904931, 9.268602], - [-11.904941, 9.269194], - [-11.90476, 9.269615], - [-11.906277, 9.270915], - [-11.911099, 9.270916], - [-11.913034, 9.274266], - [-11.917082, 9.272917], - [-11.917916, 9.272916], - [-11.919577, 9.270842], - [-11.926796, 9.270841], - [-11.930268, 9.264828], - [-11.927083, 9.262917], - [-11.927082, 9.25875], - [-11.92375, 9.25625], - [-11.92375, 9.254583], - [-11.931249, 9.247083], - [-11.935042, 9.248166], - [-11.935572, 9.248906], - [-11.935824, 9.250097], - [-11.936198, 9.250858], - [-11.938749, 9.249583], - [-11.941249, 9.248749], - [-11.94125, 9.240417], - [-11.951249, 9.245416], - [-11.952082, 9.244582], - [-11.952916, 9.24125], - [-11.94851, 9.2317], - [-11.94962, 9.231647], - [-11.953637, 9.230724], - [-11.954737, 9.2307], - [-11.955953, 9.230922], - [-11.95718, 9.235314], - [-11.958042, 9.236443], - [-11.959582, 9.235416], - [-11.960417, 9.231249], - [-11.964771, 9.227516], - [-11.96491, 9.22628], - [-11.964456, 9.222712], - [-11.975416, 9.22125], - [-11.97625, 9.222082], - [-11.977917, 9.22125], - [-11.985416, 9.221249], - [-11.987083, 9.216249] - ] - ], - "type": "Polygon" - }, - "id": 211, - "properties": { - "cc:admin:id": ["7"], - "cc:oBld:total": 241, - "cc:pop:fifteen-to-twenty-four": 866.0774091450647, - "cc:pop:grid3-total": 3712.3512725705073, - "cc:pop:kontur-total": 5487.906127923586, - "cc:pop:men": 2195.3344955256293, - "cc:pop:sixty-plus": 272.4792353131934, - "cc:pop:total": 4779.596540936402, - "cc:pop:under-five": 758.7859254029538, - "cc:pop:women": 2584.262045410768, - "cc:pop:women-fiften-to-forty-nine": 1274.383172084885, - "cc:pop:wp-total": 4676.877520355156, - "cc:pop:wp-total-UN": 5443.374888435911, - "cc:id": "211", - "cc:Name": "Kayongoro MCHP", - "cc:site": [-11.9221, 9.2126], - "user:parentName": "Biriwa", - "user:code": "OU_193232", - "user:orgUnitId": "tEgxbwwrwUd", - "user:level": "4", - "user:parentId": "fwH9ipvXde9" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.748022, 8.97657], - [-11.747916, 8.976249], - [-11.747082, 8.972083], - [-11.744582, 8.969583], - [-11.742917, 8.969582], - [-11.742916, 8.967917], - [-11.738749, 8.964583], - [-11.736012, 8.964582], - [-11.738544, 8.960195], - [-11.734639, 8.953429], - [-11.738544, 8.946664], - [-11.738745, 8.946663], - [-11.737082, 8.945416], - [-11.735416, 8.937917], - [-11.732083, 8.934582], - [-11.732082, 8.92875], - [-11.728749, 8.927916], - [-11.725417, 8.923749], - [-11.726249, 8.914583], - [-11.72675, 8.912077], - [-11.727551, 8.91191], - [-11.727923, 8.912133], - [-11.728052, 8.912465], - [-11.727725, 8.912846], - [-11.726949, 8.912988], - [-11.72678, 8.913578], - [-11.726963, 8.914138], - [-11.727812, 8.91437], - [-11.728749, 8.913672], - [-11.72875, 8.912917], - [-11.729583, 8.911249], - [-11.732082, 8.909582], - [-11.732916, 8.907083], - [-11.733749, 8.907082], - [-11.73375, 8.906249], - [-11.734463, 8.898399], - [-11.732299, 8.898], - [-11.7284, 8.8985], - [-11.720099, 8.9023], - [-11.7155, 8.905199], - [-11.714, 8.9069], - [-11.713199, 8.9094], - [-11.7131, 8.913199], - [-11.713599, 8.926099], - [-11.7134, 8.931999], - [-11.712699, 8.935199], - [-11.7109, 8.937799], - [-11.7081, 8.940399], - [-11.7053, 8.941899], - [-11.703, 8.942299], - [-11.70125, 8.942367], - [-11.701249, 8.943485], - [-11.695725, 8.943486], - [-11.693002, 8.948201], - [-11.689583, 8.947917], - [-11.685417, 8.95125], - [-11.683749, 8.95625], - [-11.682917, 8.967082], - [-11.68375, 8.968749], - [-11.687916, 8.972082], - [-11.689746, 8.972083], - [-11.689288, 8.97329], - [-11.688129, 8.974924], - [-11.68125, 8.975417], - [-11.677917, 8.979583], - [-11.677916, 8.98408], - [-11.672288, 8.984081], - [-11.668381, 8.990846], - [-11.660569, 8.990847], - [-11.66043, 8.991087], - [-11.660935, 8.991994], - [-11.660308, 8.994161], - [-11.660377, 8.994582], - [-11.65625, 8.994583], - [-11.652878, 9.000652], - [-11.653909, 9.000523], - [-11.655029, 9.001574], - [-11.654878, 9.002028], - [-11.654365, 9.002103], - [-11.654144, 9.001974], - [-11.654172, 9.001579], - [-11.653968, 9.001221], - [-11.653654, 9.000988], - [-11.653205, 9.001111], - [-11.652499, 9.00087], - [-11.652365, 9.001025], - [-11.652431, 9.001399], - [-11.652163, 9.001652], - [-11.650644, 9.004752], - [-11.650643, 9.004762], - [-11.645417, 9.005417], - [-11.645416, 9.012083], - [-11.642083, 9.016249], - [-11.64125, 9.01625], - [-11.640416, 9.017082], - [-11.639583, 9.017083], - [-11.63625, 9.02125], - [-11.63625, 9.030416], - [-11.639582, 9.033749], - [-11.639583, 9.035416], - [-11.642082, 9.037916], - [-11.639771, 9.039073], - [-11.6413, 9.0409], - [-11.642599, 9.043299], - [-11.643299, 9.0459], - [-11.643099, 9.049399], - [-11.6408, 9.054599], - [-11.639, 9.061199], - [-11.6374, 9.0648], - [-11.6372, 9.068299], - [-11.6391, 9.0732], - [-11.640599, 9.079099], - [-11.642099, 9.083799], - [-11.6427, 9.090499], - [-11.653499, 9.0828], - [-11.6613, 9.079399], - [-11.667, 9.078299], - [-11.673099, 9.078], - [-11.679199, 9.078099], - [-11.6837, 9.0786], - [-11.686499, 9.079499], - [-11.688584, 9.08058], - [-11.692916, 9.07625], - [-11.692916, 9.062917], - [-11.691681, 9.061372], - [-11.692178, 9.060508], - [-11.688272, 9.053743], - [-11.690475, 9.049926], - [-11.69058, 9.049891], - [-11.691508, 9.048917], - [-11.692419, 9.048466], - [-11.692602, 9.047831], - [-11.692976, 9.047417], - [-11.693163, 9.046978], - [-11.692178, 9.046977], - [-11.688272, 9.040211], - [-11.690201, 9.036869], - [-11.690417, 9.037083], - [-11.696605, 9.037082], - [-11.695971, 9.035579], - [-11.695771, 9.034742], - [-11.695814, 9.034336], - [-11.698749, 9.033749], - [-11.705416, 9.029583], - [-11.708749, 9.030416], - [-11.710417, 9.029583], - [-11.713749, 9.029582], - [-11.714171, 9.024098], - [-11.710469, 9.017684], - [-11.714374, 9.010918], - [-11.71233, 9.007376], - [-11.714582, 9.006249], - [-11.717082, 9.002917], - [-11.71668, 9.00171], - [-11.717363, 9.000526], - [-11.720103, 9.000525], - [-11.720124, 9.000395], - [-11.720526, 8.999965], - [-11.721375, 8.999452], - [-11.721557, 8.999451], - [-11.724582, 8.995416], - [-11.72375, 8.984583], - [-11.722969, 8.9825], - [-11.724893, 8.979166], - [-11.724895, 8.979167], - [-11.725417, 8.981249], - [-11.727916, 8.983749], - [-11.729582, 8.983749], - [-11.732082, 8.982083], - [-11.732917, 8.981249], - [-11.746954, 8.976571], - [-11.748022, 8.97657] - ] - ], - "type": "Polygon" - }, - "id": 212, - "properties": { - "cc:admin:id": ["47"], - "cc:oBld:total": 61, - "cc:pop:fifteen-to-twenty-four": 998.4031936967399, - "cc:pop:grid3-total": 7006.453391191054, - "cc:pop:kontur-total": 5308.868464816387, - "cc:pop:men": 2572.114070418126, - "cc:pop:sixty-plus": 328.3045023132588, - "cc:pop:total": 5524.517476784607, - "cc:pop:under-five": 903.7325390920754, - "cc:pop:women": 2952.403406366481, - "cc:pop:women-fiften-to-forty-nine": 1405.8916843541224, - "cc:pop:wp-total": 4454.533899295265, - "cc:pop:wp-total-UN": 5155.701675189639, - "cc:id": "212", - "cc:Name": "Kemedugu MCHP", - "cc:site": [-11.6616, 9.0067], - "user:parentName": "Kalansogoia", - "user:code": "OU_268192", - "user:orgUnitId": "QMnoFLTLpkY", - "user:level": "4", - "user:parentId": "smoyi1iYNK6" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.17625, 8.080416], - [-12.176249, 8.079583], - [-12.167082, 8.073749], - [-12.16625, 8.072083], - [-12.167627, 8.066571], - [-12.162399, 8.0679], - [-12.157099, 8.0701], - [-12.151199, 8.0716], - [-12.1429, 8.075399], - [-12.1386, 8.077799], - [-12.135399, 8.0791], - [-12.131, 8.081299], - [-12.125099, 8.0828], - [-12.12, 8.085299], - [-12.116799, 8.0867], - [-12.112499, 8.088899], - [-12.109899, 8.089299], - [-12.1064, 8.088999], - [-12.101099, 8.086799], - [-12.0974, 8.086], - [-12.096405, 8.085949], - [-12.091049, 8.092965], - [-12.0905, 8.094295], - [-12.088277, 8.096678], - [-12.087514, 8.097795], - [-12.085147, 8.102083], - [-12.086188, 8.102084], - [-12.085535, 8.103143], - [-12.084909, 8.104561], - [-12.084632, 8.106134], - [-12.084573, 8.109099], - [-12.084379, 8.110588], - [-12.082406, 8.114103], - [-12.08148, 8.11496], - [-12.080686, 8.11545], - [-12.080554, 8.115926], - [-12.080719, 8.116391], - [-12.084144, 8.116819], - [-12.086016, 8.115974], - [-12.090589, 8.112531], - [-12.094582, 8.108718], - [-12.094583, 8.109913], - [-12.094681, 8.109802], - [-12.097003, 8.106693], - [-12.097484, 8.106467], - [-12.098412, 8.10661], - [-12.10243, 8.108468], - [-12.10444, 8.109052], - [-12.105162, 8.109541], - [-12.105607, 8.110339], - [-12.105715, 8.111161], - [-12.105439, 8.112221], - [-12.10467, 8.11415], - [-12.103501, 8.115438], - [-12.10118, 8.117212], - [-12.099831, 8.117976], - [-12.099337, 8.118106], - [-12.097809, 8.117701], - [-12.096535, 8.117582], - [-12.095752, 8.117678], - [-12.094284, 8.118607], - [-12.093779, 8.119584], - [-12.093609, 8.120954], - [-12.093526, 8.128137], - [-12.093045, 8.133021], - [-12.093017, 8.133749], - [-12.094148, 8.13375], - [-12.093899, 8.136249], - [-12.094367, 8.137799], - [-12.094228, 8.138289], - [-12.093707, 8.138642], - [-12.093674, 8.138749], - [-12.092424, 8.13875], - [-12.092563, 8.139525], - [-12.093212, 8.140419], - [-12.093874, 8.141074], - [-12.095524, 8.142219], - [-12.09852, 8.143791], - [-12.103128, 8.145803], - [-12.105896, 8.146757], - [-12.106137, 8.147007], - [-12.106138, 8.147531], - [-12.105595, 8.148747], - [-12.102179, 8.152963], - [-12.101636, 8.153284], - [-12.100324, 8.153534], - [-12.098532, 8.153214], - [-12.095974, 8.152079], - [-12.095594, 8.153216], - [-12.096963, 8.153749], - [-12.094583, 8.15375], - [-12.09375, 8.160416], - [-12.098749, 8.16125], - [-12.099583, 8.162084], - [-12.107082, 8.162916], - [-12.107916, 8.162917], - [-12.109561, 8.157983], - [-12.109586, 8.158001], - [-12.111395, 8.159929], - [-12.11271, 8.160105], - [-12.113271, 8.160384], - [-12.11421, 8.160389], - [-12.116976, 8.155599], - [-12.116249, 8.155416], - [-12.115417, 8.153749], - [-12.120416, 8.15125], - [-12.121107, 8.151249], - [-12.118463, 8.146669], - [-12.12181, 8.140873], - [-12.12625, 8.142084], - [-12.129582, 8.144583], - [-12.130417, 8.147083], - [-12.136133, 8.146607], - [-12.134713, 8.149069], - [-12.13862, 8.155834], - [-12.142916, 8.155834], - [-12.142917, 8.14875], - [-12.147082, 8.146249], - [-12.14625, 8.145416], - [-12.152916, 8.12625], - [-12.157083, 8.127916], - [-12.161249, 8.12625], - [-12.164582, 8.124583], - [-12.164582, 8.120417], - [-12.162083, 8.117916], - [-12.162082, 8.114584], - [-12.155417, 8.114583], - [-12.15375, 8.112916], - [-12.154583, 8.095417], - [-12.164582, 8.094583], - [-12.164583, 8.092083], - [-12.175416, 8.090416], - [-12.177082, 8.084583], - [-12.17625, 8.080416] - ] - ], - "type": "Polygon" - }, - "id": 213, - "properties": { - "cc:admin:id": ["60"], - "cc:oBld:total": 36, - "cc:pop:fifteen-to-twenty-four": 202.685190097332, - "cc:pop:grid3-total": 850.0524817922178, - "cc:pop:kontur-total": 1052.6629765196735, - "cc:pop:men": 548.9609518621678, - "cc:pop:sixty-plus": 67.9864640054849, - "cc:pop:total": 1157.9961583969362, - "cc:pop:under-five": 184.64602592651605, - "cc:pop:women": 609.0352065347686, - "cc:pop:women-fiften-to-forty-nine": 300.371620389776, - "cc:pop:wp-total": 1333.9127856435725, - "cc:pop:wp-total-UN": 1543.3418753253318, - "cc:id": "213", - "cc:Name": "Kenema Gbandoma MCHP", - "cc:site": [-12.1217, 8.0863], - "user:parentName": "Dasse", - "user:code": "OU_247024", - "user:orgUnitId": "s7SLtx8wmRA", - "user:level": "4", - "user:parentId": "RndxKqQGzUl" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.012082, 8.644584], - [-11.002083, 8.644584], - [-11.000416, 8.645416], - [-10.998677, 8.644546], - [-10.998857, 8.644242], - [-10.998898, 8.643826], - [-10.998677, 8.643253], - [-10.997562, 8.641566], - [-10.997202, 8.641007], - [-10.995733, 8.639016], - [-10.995702, 8.63899], - [-10.995829, 8.638693], - [-10.996616, 8.63781], - [-10.996914, 8.637156], - [-10.997102, 8.636788], - [-10.996702, 8.63635], - [-10.996112, 8.636347], - [-10.99576, 8.636309], - [-10.995431, 8.636277], - [-10.994948, 8.636323], - [-10.99443, 8.636436], - [-10.993937, 8.636835], - [-10.993663, 8.637053], - [-10.993424, 8.636892], - [-10.992955, 8.636585], - [-10.992861, 8.6365], - [-10.990939, 8.634885], - [-10.990698, 8.635402], - [-10.990174, 8.636756], - [-10.989774, 8.637293], - [-10.989772, 8.637292], - [-10.989581, 8.636157], - [-10.989067, 8.636639], - [-10.988999, 8.636815], - [-10.988852, 8.637145], - [-10.988843, 8.637155], - [-10.988842, 8.637159], - [-10.988664, 8.63733], - [-10.988593, 8.637383], - [-10.98846, 8.637504], - [-10.988443, 8.637486], - [-10.988394, 8.637511], - [-10.988378, 8.637508], - [-10.988247, 8.637698], - [-10.988215, 8.637755], - [-10.988197, 8.6378], - [-10.988004, 8.638532], - [-10.987995, 8.638534], - [-10.987979, 8.638612], - [-10.987829, 8.638958], - [-10.987838, 8.640246], - [-10.987902, 8.642014], - [-10.987821, 8.642878], - [-10.987724, 8.643425], - [-10.986465, 8.645467], - [-10.985655, 8.646978], - [-10.985552, 8.647049], - [-10.984707, 8.647437], - [-10.984762, 8.647554], - [-10.985041, 8.648899], - [-10.98608, 8.648913], - [-10.986645, 8.649011], - [-10.986964, 8.649314], - [-10.986964, 8.649315], - [-10.986586, 8.649446], - [-10.985751, 8.650271], - [-10.987848, 8.652008], - [-10.987875, 8.652055], - [-10.987835, 8.65219], - [-10.987645, 8.652676], - [-10.986569, 8.65304], - [-10.98567, 8.654128], - [-10.985962, 8.654557], - [-10.985987, 8.654909], - [-10.985144, 8.65591], - [-10.985256, 8.656222], - [-10.984165, 8.657048], - [-10.983543, 8.657286], - [-10.982224, 8.657633], - [-10.981584, 8.657856], - [-10.980105, 8.658586], - [-10.97972, 8.658476], - [-10.979078, 8.65848], - [-10.979245, 8.659233], - [-10.979061, 8.661244], - [-10.978224, 8.661357], - [-10.977867, 8.661695], - [-10.9778, 8.661686], - [-10.976736, 8.66174], - [-10.976447, 8.661689], - [-10.975733, 8.660847], - [-10.975556, 8.66155], - [-10.975559, 8.661671], - [-10.975599, 8.66252], - [-10.975981, 8.664115], - [-10.976016, 8.664178], - [-10.976218, 8.666286], - [-10.976129, 8.667149], - [-10.977631, 8.66838], - [-10.979236, 8.669986], - [-10.979766, 8.670482], - [-10.98008, 8.671285], - [-10.980286, 8.672492], - [-10.98032, 8.672493], - [-10.980722, 8.674523], - [-10.980673, 8.674672], - [-10.980059, 8.67494], - [-10.977042, 8.675643], - [-10.976829, 8.677512], - [-10.976583, 8.678834], - [-10.97673, 8.679623], - [-10.977392, 8.679296], - [-10.978249, 8.677838], - [-10.978459, 8.677701], - [-10.977917, 8.680416], - [-10.975417, 8.682917], - [-10.975417, 8.684582], - [-10.978475, 8.687642], - [-10.9785, 8.687599], - [-10.981699, 8.6837], - [-10.983099, 8.6816], - [-10.985, 8.677799], - [-10.9878, 8.674399], - [-10.9942, 8.667899], - [-10.997299, 8.6641], - [-10.999399, 8.66], - [-11.0014, 8.657099], - [-11.0044, 8.653699], - [-11.010599, 8.6478], - [-11.012082, 8.646776], - [-11.012082, 8.644584] - ] - ], - "type": "Polygon" - }, - "id": 214, - "properties": { - "cc:admin:id": ["33"], - "cc:oBld:total": 1827, - "cc:pop:fifteen-to-twenty-four": 1325.651766855794, - "cc:pop:grid3-total": 5857.054652227919, - "cc:pop:kontur-total": 8253.73495007776, - "cc:pop:men": 3546.385013847755, - "cc:pop:sixty-plus": 372.3394817975328, - "cc:pop:total": 6675.904659073623, - "cc:pop:under-five": 1041.6979465760248, - "cc:pop:women": 3129.51964522587, - "cc:pop:women-fiften-to-forty-nine": 1562.9474335010104, - "cc:pop:wp-total": 5147.698971191509, - "cc:pop:wp-total-UN": 5973.2524410433325, - "cc:id": "214", - "cc:Name": "Kensay MCHP", - "cc:site": [-10.9879, 8.6393], - "user:parentName": "Tankoro", - "user:code": "OU_233330", - "user:orgUnitId": "UjusePB4jmP", - "user:level": "4", - "user:parentId": "M2qEv692lS6" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - [-13.164025, 8.19432], - [-13.163461, 8.171506], - [-13.155418, 8.171506], - [-13.130439, 8.196531], - [-13.107106, 8.201236], - [-13.099015, 8.213466], - [-13.096546, 8.214108], - [-13.096558, 8.214114], - [-13.098318, 8.214025], - [-13.098419, 8.214381], - [-13.099809, 8.21414], - [-13.099809, 8.214142], - [-13.099665, 8.214294], - [-13.099179, 8.214512], - [-13.099191, 8.214714], - [-13.098178, 8.215269], - [-13.098211, 8.215657], - [-13.098922, 8.215968], - [-13.099288, 8.216094], - [-13.099545, 8.2165], - [-13.100044, 8.216582], - [-13.101111, 8.217314], - [-13.101653, 8.218353], - [-13.101664, 8.21836], - [-13.10186, 8.218111], - [-13.102864, 8.217267], - [-13.10318, 8.217023], - [-13.103212, 8.218323], - [-13.104146, 8.219096], - [-13.104189, 8.219324], - [-13.104661, 8.219525], - [-13.105279, 8.219365], - [-13.106664, 8.219368], - [-13.107006, 8.219531], - [-13.108158, 8.219607], - [-13.108189, 8.219626], - [-13.108758, 8.218643], - [-13.116569, 8.218643], - [-13.118113, 8.221313], - [-13.118749, 8.22125], - [-13.11875, 8.224076], - [-13.123735, 8.224077], - [-13.12764, 8.230843], - [-13.123735, 8.237609], - [-13.12764, 8.244374], - [-13.135454, 8.244375], - [-13.137082, 8.247196], - [-13.137083, 8.248749], - [-13.147917, 8.259583], - [-13.155377, 8.252867], - [-13.154341, 8.251528], - [-13.15301, 8.249364], - [-13.153147, 8.24931], - [-13.154167, 8.250999], - [-13.157082, 8.250416], - [-13.15625, 8.248749], - [-13.157083, 8.245417], - [-13.159583, 8.245417], - [-13.16146, 8.248544], - [-13.163743, 8.237082], - [-13.153489, 8.211821], - [-13.164025, 8.19432] - ] - ], - [ - [ - [-13.239856, 8.097651], - [-13.219018, 8.101273], - [-13.21817, 8.111527], - [-13.207634, 8.110117], - [-13.205704, 8.122629], - [-13.191545, 8.132368], - [-13.188488, 8.139282], - [-13.191544, 8.142104], - [-13.207634, 8.124606], - [-13.219581, 8.118489], - [-13.219582, 8.111809], - [-13.235952, 8.106259], - [-13.239856, 8.097651] - ] - ], - [ - [ - [-13.250393, 8.0929], - [-13.240986, 8.094593], - [-13.243479, 8.100708], - [-13.250393, 8.0929] - ] - ] - ], - "type": "MultiPolygon" - }, - "id": 215, - "properties": { - "cc:admin:id": ["112"], - "cc:oBld:total": 1566, - "cc:pop:fifteen-to-twenty-four": 3251.956668510658, - "cc:pop:grid3-total": 9926.699834146179, - "cc:pop:kontur-total": 13289.778661548484, - "cc:pop:men": 7330.394652593037, - "cc:pop:sixty-plus": 1144.2805839462073, - "cc:pop:total": 14542.789188848088, - "cc:pop:under-five": 1724.7300715841334, - "cc:pop:women": 7212.394536255046, - "cc:pop:women-fiften-to-forty-nine": 3848.907196144636, - "cc:pop:wp-total": 11064.292692883664, - "cc:pop:wp-total-UN": 12832.687105942143, - "cc:id": "215", - "cc:Name": "Kent CHP", - "cc:site": [-13.1623, 8.1742], - "user:parentName": "Rural Western Area", - "user:code": "OU_278394", - "user:orgUnitId": "lELJZCBxz7H", - "user:level": "4", - "user:parentId": "qtr8GGlm4gg" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.686916, 8.909702], - [-11.6866, 8.9069], - [-11.685899, 8.904699], - [-11.684, 8.9011], - [-11.6826, 8.898], - [-11.680499, 8.894499], - [-11.6786, 8.8907], - [-11.676499, 8.887699], - [-11.6708, 8.8818], - [-11.669, 8.8792], - [-11.668299, 8.877099], - [-11.667599, 8.8701], - [-11.666599, 8.8677], - [-11.664399, 8.8653], - [-11.656999, 8.861599], - [-11.653599, 8.860799], - [-11.645399, 8.860599], - [-11.6423, 8.860099], - [-11.640499, 8.858999], - [-11.639, 8.857499], - [-11.6379, 8.8548], - [-11.6375, 8.8495], - [-11.637, 8.8469], - [-11.635, 8.8434], - [-11.630999, 8.838899], - [-11.6235, 8.8316], - [-11.620599, 8.829299], - [-11.617899, 8.8277], - [-11.6132, 8.8267], - [-11.6107, 8.8259], - [-11.6071, 8.824], - [-11.603899, 8.822699], - [-11.601699, 8.821199], - [-11.5956, 8.8155], - [-11.593499, 8.813799], - [-11.5845, 8.809], - [-11.581399, 8.807699], - [-11.5769, 8.8055], - [-11.571999, 8.804699], - [-11.5648, 8.8046], - [-11.5656, 8.8076], - [-11.566299, 8.812999], - [-11.566999, 8.815499], - [-11.5694, 8.8208], - [-11.569899, 8.8248], - [-11.569599, 8.829699], - [-11.5647, 8.839499], - [-11.5602, 8.845299], - [-11.557199, 8.8506], - [-11.553, 8.855999], - [-11.5487, 8.864599], - [-11.548099, 8.8681], - [-11.5478, 8.876299], - [-11.547299, 8.878799], - [-11.545799, 8.8811], - [-11.5397, 8.887799], - [-11.5377, 8.890699], - [-11.535999, 8.8946], - [-11.5324, 8.901999], - [-11.531985, 8.902353], - [-11.532917, 8.903749], - [-11.537916, 8.905417], - [-11.542081, 8.909582], - [-11.532917, 8.910417], - [-11.529583, 8.914583], - [-11.529583, 8.922082], - [-11.531249, 8.927083], - [-11.530416, 8.934582], - [-11.52125, 8.935417], - [-11.522082, 8.944582], - [-11.519583, 8.94625], - [-11.519583, 8.947082], - [-11.524582, 8.950416], - [-11.52375, 8.952083], - [-11.525416, 8.955416], - [-11.522917, 8.95625], - [-11.522916, 8.959582], - [-11.522083, 8.960417], - [-11.522083, 8.970416], - [-11.526249, 8.97125], - [-11.51875, 8.979583], - [-11.51875, 8.980417], - [-11.520417, 8.984582], - [-11.52125, 8.985417], - [-11.523749, 8.987082], - [-11.52125, 8.990417], - [-11.526249, 9.000416], - [-11.527916, 9.004583], - [-11.527916, 9.012082], - [-11.527083, 9.012083], - [-11.525417, 9.014583], - [-11.525417, 9.026249], - [-11.529583, 9.030416], - [-11.540417, 9.022083], - [-11.542083, 9.022083], - [-11.548749, 9.025417], - [-11.542917, 9.037083], - [-11.542917, 9.042082], - [-11.544197, 9.045284], - [-11.544993, 9.044721], - [-11.545832, 9.044592], - [-11.546515, 9.044696], - [-11.546808, 9.044985], - [-11.54704, 9.045291], - [-11.547916, 9.045339], - [-11.547916, 9.052082], - [-11.545417, 9.058749], - [-11.535417, 9.057083], - [-11.534583, 9.062916], - [-11.537083, 9.069582], - [-11.540416, 9.071249], - [-11.539583, 9.072916], - [-11.54625, 9.079582], - [-11.547917, 9.079583], - [-11.548749, 9.082916], - [-11.549582, 9.08375], - [-11.549583, 9.084582], - [-11.552917, 9.084583], - [-11.555416, 9.089582], - [-11.54875, 9.09375], - [-11.54875, 9.097082], - [-11.550416, 9.100416], - [-11.547083, 9.102083], - [-11.547083, 9.106249], - [-11.547917, 9.107916], - [-11.551249, 9.10875], - [-11.55125, 9.109583], - [-11.552083, 9.11375], - [-11.552917, 9.115416], - [-11.554582, 9.11625], - [-11.554583, 9.124582], - [-11.559583, 9.12875], - [-11.560416, 9.13125], - [-11.559788, 9.135022], - [-11.5626, 9.134499], - [-11.5757, 9.133599], - [-11.5785, 9.133099], - [-11.5846, 9.131399], - [-11.599499, 9.1299], - [-11.6032, 9.128599], - [-11.608499, 9.126], - [-11.6132, 9.122499], - [-11.620699, 9.115], - [-11.626699, 9.1083], - [-11.6317, 9.101199], - [-11.6343, 9.098699], - [-11.639799, 9.0945], - [-11.642699, 9.090499], - [-11.642099, 9.083799], - [-11.640599, 9.079099], - [-11.6391, 9.0732], - [-11.6372, 9.068299], - [-11.6374, 9.0648], - [-11.639, 9.061199], - [-11.6408, 9.054599], - [-11.643099, 9.049399], - [-11.643299, 9.0459], - [-11.642599, 9.043299], - [-11.6413, 9.0409], - [-11.637199, 9.035999], - [-11.632899, 9.027799], - [-11.632099, 9.024099], - [-11.631899, 9.019199], - [-11.6318, 9.004299], - [-11.6319, 9.001399], - [-11.632599, 8.9984], - [-11.6359, 8.9924], - [-11.6376, 8.990799], - [-11.643, 8.987999], - [-11.6458, 8.987299], - [-11.653299, 8.986499], - [-11.662099, 8.9824], - [-11.665899, 8.979], - [-11.668399, 8.9757], - [-11.671899, 8.9677], - [-11.672799, 8.9614], - [-11.673599, 8.9589], - [-11.6802, 8.953199], - [-11.6819, 8.951099], - [-11.683699, 8.948299], - [-11.6835, 8.9331], - [-11.683699, 8.9271], - [-11.6843, 8.924199], - [-11.6863, 8.919799], - [-11.686999, 8.9161], - [-11.687199, 8.9122], - [-11.686916, 8.909702] - ] - ], - "type": "Polygon" - }, - "id": 216, - "properties": { - "cc:admin:id": ["114"], - "cc:oBld:total": 119, - "cc:pop:fifteen-to-twenty-four": 3207.875217945267, - "cc:pop:grid3-total": 15259.48598958704, - "cc:pop:kontur-total": 17238.653243077766, - "cc:pop:men": 7866.091143799991, - "cc:pop:sixty-plus": 1086.5315684111417, - "cc:pop:total": 17028.979635631735, - "cc:pop:under-five": 2718.459276285925, - "cc:pop:women": 9162.888491831747, - "cc:pop:women-fiften-to-forty-nine": 4483.158442726877, - "cc:pop:wp-total": 16498.13046234029, - "cc:pop:wp-total-UN": 19116.549996868544, - "cc:id": "216", - "cc:Name": "Kholifaga MCHP", - "cc:site": [-11.5914, 9.0432], - "user:parentName": "Sambaia Bendugu", - "user:code": "OU_268171", - "user:orgUnitId": "lCEeiuv4NaB", - "user:level": "4", - "user:parentId": "r1RUyfVBkLp" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.592199, 7.8196], - [-11.590599, 7.8182], - [-11.5879, 7.8177], - [-11.5832, 7.818299], - [-11.5783, 7.820399], - [-11.5747, 7.821299], - [-11.567899, 7.8218], - [-11.563799, 7.8225], - [-11.557899, 7.8247], - [-11.554099, 7.8252], - [-11.5483, 7.825499], - [-11.5446, 7.826299], - [-11.539199, 7.8285], - [-11.533399, 7.83], - [-11.529, 7.831999], - [-11.526099, 7.8326], - [-11.522199, 7.832899], - [-11.5101, 7.8328], - [-11.5062, 7.833099], - [-11.503399, 7.8337], - [-11.498899, 7.8357], - [-11.493499, 7.836599], - [-11.482799, 7.836499], - [-11.478999, 7.836099], - [-11.4725, 7.8351], - [-11.474399, 7.841999], - [-11.474999, 7.846099], - [-11.475003, 7.846249], - [-11.478749, 7.846249], - [-11.48375, 7.842084], - [-11.492082, 7.842084], - [-11.497083, 7.847084], - [-11.497082, 7.856249], - [-11.492917, 7.862083], - [-11.48125, 7.862916], - [-11.481181, 7.862871], - [-11.479303, 7.866123], - [-11.480626, 7.868415], - [-11.477083, 7.87125], - [-11.477083, 7.883118], - [-11.478368, 7.881759], - [-11.479667, 7.881186], - [-11.479668, 7.881187], - [-11.479595, 7.881532], - [-11.488749, 7.884583], - [-11.489083, 7.884916], - [-11.490615, 7.884645], - [-11.490989, 7.884784], - [-11.491986, 7.884764], - [-11.492929, 7.885159], - [-11.49375, 7.885888], - [-11.494358, 7.886165], - [-11.495276, 7.887096], - [-11.496226, 7.88921], - [-11.497818, 7.89179], - [-11.501946, 7.896568], - [-11.502969, 7.897459], - [-11.503768, 7.898556], - [-11.504899, 7.899529], - [-11.505716, 7.900769], - [-11.506151, 7.901074], - [-11.507333, 7.901424], - [-11.508057, 7.901905], - [-11.511248, 7.897918], - [-11.51125, 7.897919], - [-11.51125, 7.898749], - [-11.517916, 7.897917], - [-11.517917, 7.901249], - [-11.520416, 7.901249], - [-11.52142, 7.898738], - [-11.522906, 7.898468], - [-11.525113, 7.897199], - [-11.527503, 7.896796], - [-11.528403, 7.896393], - [-11.528939, 7.897461], - [-11.529551, 7.897129], - [-11.534699, 7.895016], - [-11.537154, 7.894363], - [-11.537448, 7.89447], - [-11.539759, 7.894109], - [-11.541021, 7.893317], - [-11.541724, 7.893034], - [-11.53987, 7.891922], - [-11.53987, 7.891921], - [-11.540617, 7.891538], - [-11.542376, 7.891097], - [-11.543357, 7.891081], - [-11.544447, 7.891351], - [-11.546707, 7.890563], - [-11.550267, 7.891253], - [-11.552443, 7.892259], - [-11.553781, 7.892254], - [-11.555074, 7.89165], - [-11.556669, 7.890474], - [-11.5558, 7.888299], - [-11.5558, 7.884999], - [-11.5564, 7.882399], - [-11.558099, 7.8792], - [-11.5616, 7.874899], - [-11.5644, 7.869599], - [-11.5682, 7.8637], - [-11.5724, 7.860699], - [-11.575899, 7.8571], - [-11.577499, 7.8549], - [-11.578899, 7.8517], - [-11.5809, 7.848199], - [-11.582699, 7.8443], - [-11.5875, 7.837799], - [-11.5887, 7.835299], - [-11.59, 7.830299], - [-11.5925, 7.824699], - [-11.592899, 7.8219], - [-11.592199, 7.8196] - ] - ], - "type": "Polygon" - }, - "id": 217, - "properties": { - "cc:admin:id": ["2"], - "cc:oBld:total": 192, - "cc:pop:fifteen-to-twenty-four": 1576.512163390516, - "cc:pop:grid3-total": 6168.585061895677, - "cc:pop:kontur-total": 8694.68398376497, - "cc:pop:men": 4553.788392188136, - "cc:pop:sixty-plus": 622.9009425489135, - "cc:pop:total": 8818.081889146664, - "cc:pop:under-five": 1449.3964525136714, - "cc:pop:women": 4264.293496958528, - "cc:pop:women-fiften-to-forty-nine": 2035.345851660111, - "cc:pop:wp-total": 8372.787286378254, - "cc:pop:wp-total-UN": 9708.58780104055, - "cc:id": "217", - "cc:Name": "Kigbai MCHP", - "cc:site": [-11.5052, 7.8704], - "user:parentName": "Baoma", - "user:code": "OU_580", - "user:orgUnitId": "egv5Es0QlQP", - "user:level": "4", - "user:parentId": "vWbkYPRmKyS" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.252652, 8.474072], - [-13.25215, 8.473844], - [-13.252047, 8.473772], - [-13.251923, 8.473641], - [-13.25173, 8.473145], - [-13.251713, 8.47265], - [-13.25165, 8.471645], - [-13.251408, 8.471575], - [-13.251272, 8.471506], - [-13.251408, 8.471238], - [-13.25167, 8.470975], - [-13.251697, 8.470501], - [-13.251481, 8.469926], - [-13.251059, 8.469493], - [-13.251029, 8.468793], - [-13.251451, 8.467582], - [-13.250123, 8.468547], - [-13.249995, 8.469165], - [-13.249267, 8.470013], - [-13.249141, 8.470217], - [-13.249098, 8.470301], - [-13.249042, 8.47028], - [-13.248699, 8.470421], - [-13.248698, 8.47042], - [-13.248707, 8.469485], - [-13.247224, 8.469996], - [-13.246996, 8.470198], - [-13.246991, 8.470499], - [-13.246682, 8.470774], - [-13.246442, 8.470501], - [-13.246021, 8.470036], - [-13.245828, 8.469797], - [-13.245618, 8.469524], - [-13.245462, 8.469245], - [-13.245474, 8.469198], - [-13.245398, 8.469069], - [-13.245713, 8.468867], - [-13.245664, 8.468652], - [-13.246168, 8.4684], - [-13.247656, 8.467725], - [-13.247468, 8.467453], - [-13.247781, 8.467089], - [-13.247782, 8.466755], - [-13.247427, 8.466738], - [-13.247005, 8.466472], - [-13.246379, 8.466646], - [-13.24619, 8.466566], - [-13.245681, 8.465506], - [-13.245765, 8.465258], - [-13.245868, 8.464538], - [-13.245106, 8.46366], - [-13.244193, 8.462668], - [-13.244656, 8.462285], - [-13.243881, 8.462141], - [-13.243366, 8.461993], - [-13.243274, 8.462044], - [-13.24199, 8.462355], - [-13.242161, 8.463112], - [-13.242507, 8.463822], - [-13.241405, 8.464212], - [-13.240474, 8.465002], - [-13.23986, 8.465515], - [-13.239558, 8.465829], - [-13.239205, 8.466149], - [-13.239337, 8.466604], - [-13.239291, 8.467105], - [-13.239467, 8.46719], - [-13.239478, 8.467575], - [-13.23988, 8.468316], - [-13.239926, 8.468652], - [-13.240019, 8.469161], - [-13.240098, 8.469554], - [-13.240271, 8.471138], - [-13.239669, 8.471433], - [-13.2397, 8.471536], - [-13.239466, 8.471664], - [-13.23881, 8.471995], - [-13.238336, 8.472253], - [-13.239115, 8.472526], - [-13.239516, 8.472894], - [-13.239692, 8.473259], - [-13.23966, 8.474083], - [-13.240011, 8.474377], - [-13.239806, 8.474668], - [-13.239267, 8.475933], - [-13.239157, 8.475902], - [-13.238956, 8.476402], - [-13.238803, 8.476861], - [-13.238618, 8.477375], - [-13.240674, 8.478123], - [-13.240874, 8.477606], - [-13.242007, 8.478011], - [-13.242146, 8.477573], - [-13.241698, 8.477378], - [-13.241958, 8.476906], - [-13.24222, 8.476926], - [-13.242938, 8.477969], - [-13.243394, 8.478059], - [-13.243519, 8.478023], - [-13.243957, 8.477807], - [-13.244161, 8.477332], - [-13.244321, 8.476899], - [-13.244463, 8.476586], - [-13.244596, 8.476162], - [-13.244727, 8.475677], - [-13.246087, 8.476279], - [-13.24683, 8.475911], - [-13.246923, 8.475849], - [-13.248248, 8.477241], - [-13.248303, 8.477288], - [-13.248437, 8.47716], - [-13.249084, 8.476517], - [-13.249666, 8.475926], - [-13.24972, 8.475873], - [-13.249554, 8.475676], - [-13.24877, 8.474779], - [-13.248598, 8.474304], - [-13.249098, 8.473832], - [-13.249443, 8.472975], - [-13.249592, 8.472535], - [-13.250086, 8.47199], - [-13.250719, 8.471374], - [-13.251258, 8.471531], - [-13.250998, 8.47238], - [-13.250544, 8.473166], - [-13.250491, 8.473988], - [-13.25083, 8.474212], - [-13.250908, 8.474546], - [-13.251519, 8.475268], - [-13.251541, 8.475288], - [-13.251827, 8.475035], - [-13.252652, 8.474072] - ] - ], - "type": "Polygon" - }, - "id": 218, - "properties": { - "cc:admin:id": ["26"], - "cc:oBld:total": 2842, - "cc:pop:fifteen-to-twenty-four": 8115.266527644233, - "cc:pop:grid3-total": 29317.29360483192, - "cc:pop:kontur-total": 42051.00000000001, - "cc:pop:men": 17669.326893005345, - "cc:pop:sixty-plus": 2748.0960071349255, - "cc:pop:total": 35318.5455254067, - "cc:pop:under-five": 4074.5579751435175, - "cc:pop:women": 17649.218632401364, - "cc:pop:women-fiften-to-forty-nine": 9462.056016343078, - "cc:pop:wp-total": 33316.89719172023, - "cc:pop:wp-total-UN": 38620.70175722551, - "cc:id": "218", - "cc:Name": "KingHarman Rd. Hospital", - "cc:site": [-13.2482, 8.4731], - "user:parentName": "Freetown", - "user:code": "OU_278338", - "user:orgUnitId": "gei3Sqw8do7", - "user:level": "4", - "user:parentId": "C9uduqDZr9d" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.265385, 8.460923], - [-13.265215, 8.460455], - [-13.265136, 8.460262], - [-13.264883, 8.460008], - [-13.264202, 8.460729], - [-13.263861, 8.460655], - [-13.263627, 8.460895], - [-13.26316, 8.460453], - [-13.263529, 8.460046], - [-13.263347, 8.459605], - [-13.263542, 8.459471], - [-13.263856, 8.459102], - [-13.263082, 8.458662], - [-13.262399, 8.458184], - [-13.261623, 8.457629], - [-13.261417, 8.45721], - [-13.261184, 8.456911], - [-13.260539, 8.457333], - [-13.260362, 8.457337], - [-13.260355, 8.457362], - [-13.260064, 8.458081], - [-13.259881, 8.457918], - [-13.259397, 8.45657], - [-13.259116, 8.456241], - [-13.258585, 8.456366], - [-13.258305, 8.455909], - [-13.257653, 8.456232], - [-13.257109, 8.455515], - [-13.256957, 8.455556], - [-13.256569, 8.45558], - [-13.256023, 8.455152], - [-13.25492, 8.4547], - [-13.254356, 8.454523], - [-13.253647, 8.454726], - [-13.253279, 8.454311], - [-13.252963, 8.454318], - [-13.252626, 8.453413], - [-13.252315, 8.452844], - [-13.252236, 8.452698], - [-13.251589, 8.453437], - [-13.251435, 8.454047], - [-13.251305, 8.454411], - [-13.250959, 8.454528], - [-13.250735, 8.454883], - [-13.25042, 8.454631], - [-13.25053, 8.453711], - [-13.250015, 8.452878], - [-13.249395, 8.452466], - [-13.248399, 8.452217], - [-13.247372, 8.451937], - [-13.246011, 8.451668], - [-13.245908, 8.450746], - [-13.245619, 8.450009], - [-13.244216, 8.449704], - [-13.242875, 8.448341], - [-13.242861, 8.448495], - [-13.242416, 8.448726], - [-13.241451, 8.447839], - [-13.241165, 8.448167], - [-13.24051, 8.447734], - [-13.240861, 8.447113], - [-13.240865, 8.447053], - [-13.240849, 8.447004], - [-13.240592, 8.446918], - [-13.239779, 8.446697], - [-13.237317, 8.444614], - [-13.236545, 8.444262], - [-13.23592, 8.443413], - [-13.236859, 8.441786], - [-13.234448, 8.43761], - [-13.232918, 8.437916], - [-13.232917, 8.437915], - [-13.232917, 8.427917], - [-13.234582, 8.426249], - [-13.234583, 8.424584], - [-13.232107, 8.421489], - [-13.225558, 8.421489], - [-13.2108, 8.432299], - [-13.210477, 8.432827], - [-13.211021, 8.433079], - [-13.211937, 8.433209], - [-13.212465, 8.433314], - [-13.213419, 8.433837], - [-13.213594, 8.434171], - [-13.214861, 8.435077], - [-13.215255, 8.435393], - [-13.215944, 8.435856], - [-13.216291, 8.436413], - [-13.215622, 8.436689], - [-13.216342, 8.437627], - [-13.216689, 8.43738], - [-13.217057, 8.438212], - [-13.216599, 8.438287], - [-13.215831, 8.438368], - [-13.214854, 8.439638], - [-13.215607, 8.440008], - [-13.217147, 8.440018], - [-13.217148, 8.440019], - [-13.21706, 8.44035], - [-13.217718, 8.440433], - [-13.218798, 8.440897], - [-13.219163, 8.441421], - [-13.219244, 8.441808], - [-13.219117, 8.442212], - [-13.219462, 8.44243], - [-13.219671, 8.443187], - [-13.220015, 8.443803], - [-13.219921, 8.444059], - [-13.219762, 8.444518], - [-13.220385, 8.444883], - [-13.221977, 8.446076], - [-13.222806, 8.446336], - [-13.223594, 8.446299], - [-13.224865, 8.446454], - [-13.22494, 8.447049], - [-13.225804, 8.447802], - [-13.226216, 8.447189], - [-13.226319, 8.447029], - [-13.226813, 8.447388], - [-13.227342, 8.447778], - [-13.227858, 8.448224], - [-13.227606, 8.448641], - [-13.2284, 8.449658], - [-13.228042, 8.44982], - [-13.2283, 8.451184], - [-13.229058, 8.451215], - [-13.229038, 8.451346], - [-13.229434, 8.450898], - [-13.229617, 8.450738], - [-13.230197, 8.451055], - [-13.230662, 8.451316], - [-13.232294, 8.452695], - [-13.23284, 8.453449], - [-13.233231, 8.453005], - [-13.233623, 8.453534], - [-13.233224, 8.454017], - [-13.23385, 8.454832], - [-13.234175, 8.455123], - [-13.234539, 8.455499], - [-13.234759, 8.455352], - [-13.234881, 8.45547], - [-13.235482, 8.455198], - [-13.235794, 8.454879], - [-13.235919, 8.45471], - [-13.236015, 8.454549], - [-13.236336, 8.454037], - [-13.236707, 8.454103], - [-13.237899, 8.454828], - [-13.239664, 8.455994], - [-13.2395, 8.456422], - [-13.239719, 8.456613], - [-13.240063, 8.456874], - [-13.241012, 8.4574], - [-13.24167, 8.457698], - [-13.24253, 8.45789], - [-13.243093, 8.458401], - [-13.243543, 8.458589], - [-13.243726, 8.458208], - [-13.244488, 8.457941], - [-13.245031, 8.457772], - [-13.245232, 8.457906], - [-13.245635, 8.458139], - [-13.245926, 8.458182], - [-13.246647, 8.458265], - [-13.247784, 8.458437], - [-13.248744, 8.458159], - [-13.250538, 8.456817], - [-13.25133, 8.456957], - [-13.251331, 8.456959], - [-13.251301, 8.456982], - [-13.250965, 8.457234], - [-13.251024, 8.457577], - [-13.2512, 8.457752], - [-13.252601, 8.459002], - [-13.25223, 8.459049], - [-13.251817, 8.459398], - [-13.251443, 8.460167], - [-13.251356, 8.461434], - [-13.251743, 8.461942], - [-13.252429, 8.462385], - [-13.252611, 8.462066], - [-13.252655, 8.461808], - [-13.253083, 8.460797], - [-13.254797, 8.462299], - [-13.254591, 8.462548], - [-13.254545, 8.462919], - [-13.255328, 8.46302], - [-13.255293, 8.462922], - [-13.255388, 8.462928], - [-13.255409, 8.462916], - [-13.255456, 8.462743], - [-13.255457, 8.462742], - [-13.255834, 8.463048], - [-13.256702, 8.463623], - [-13.256967, 8.463044], - [-13.257258, 8.462828], - [-13.25686, 8.462302], - [-13.257302, 8.461804], - [-13.25751, 8.46208], - [-13.258151, 8.462637], - [-13.258456, 8.46264], - [-13.259004, 8.46324], - [-13.258972, 8.463396], - [-13.259602, 8.463384], - [-13.260536, 8.463325], - [-13.261114, 8.464091], - [-13.261287, 8.464318], - [-13.261204, 8.464667], - [-13.26124, 8.465833], - [-13.260847, 8.466555], - [-13.261503, 8.467446], - [-13.262066, 8.466651], - [-13.262353, 8.466528], - [-13.262981, 8.466101], - [-13.263458, 8.465088], - [-13.263473, 8.464397], - [-13.263761, 8.463586], - [-13.263553, 8.462372], - [-13.26395, 8.462369], - [-13.264238, 8.462551], - [-13.264631, 8.462083], - [-13.264811, 8.461829], - [-13.264858, 8.461273], - [-13.265359, 8.461192], - [-13.265385, 8.460923] - ] - ], - "type": "Polygon" - }, - "id": 219, - "properties": { - "cc:admin:id": ["26"], - "cc:oBld:total": 5644, - "cc:pop:fifteen-to-twenty-four": 9910.708016722661, - "cc:pop:grid3-total": 23022.30374324879, - "cc:pop:kontur-total": 35641.16257547161, - "cc:pop:men": 21959.11005702507, - "cc:pop:sixty-plus": 3368.862790499202, - "cc:pop:total": 43138.259022141756, - "cc:pop:under-five": 4990.127968494548, - "cc:pop:women": 21179.148965116692, - "cc:pop:women-fiften-to-forty-nine": 11332.88474910658, - "cc:pop:wp-total": 34515.75461495638, - "cc:pop:wp-total-UN": 40028.261490725585, - "cc:id": "219", - "cc:Name": "Kingtom Police Hospital (MI Room)", - "cc:site": [-13.2549, 8.4556], - "user:parentName": "Freetown", - "user:code": "OU_278324", - "user:orgUnitId": "lekPjgUm0o2", - "user:level": "4", - "user:parentId": "C9uduqDZr9d" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.206319, 8.47588], - [-13.205325, 8.474158], - [-13.205096, 8.474363], - [-13.204938, 8.474545], - [-13.204222, 8.474194], - [-13.204585, 8.473483], - [-13.20462, 8.473043], - [-13.204659, 8.473005], - [-13.202412, 8.469114], - [-13.199127, 8.469114], - [-13.198359, 8.468967], - [-13.197862, 8.468566], - [-13.197782, 8.468478], - [-13.197394, 8.467995], - [-13.197028, 8.467923], - [-13.1967, 8.468294], - [-13.196131, 8.468282], - [-13.196154, 8.467974], - [-13.196956, 8.467291], - [-13.196849, 8.466779], - [-13.196112, 8.466832], - [-13.196099, 8.466008], - [-13.195248, 8.46605], - [-13.194373, 8.466084], - [-13.19432, 8.465335], - [-13.194314, 8.464624], - [-13.193342, 8.46466], - [-13.192415, 8.464787], - [-13.192407, 8.465373], - [-13.191554, 8.465397], - [-13.190639, 8.465387], - [-13.190539, 8.465419], - [-13.1848, 8.4748], - [-13.1867, 8.482899], - [-13.194238, 8.482131], - [-13.195331, 8.481659], - [-13.195111, 8.480943], - [-13.195569, 8.480741], - [-13.195675, 8.48053], - [-13.195738, 8.48033], - [-13.19578, 8.480316], - [-13.195901, 8.480351], - [-13.196072, 8.480364], - [-13.196638, 8.480115], - [-13.19752, 8.480216], - [-13.198084, 8.479895], - [-13.198292, 8.480297], - [-13.199009, 8.480643], - [-13.199462, 8.479163], - [-13.19856, 8.47921], - [-13.198344, 8.479284], - [-13.198361, 8.47908], - [-13.197994, 8.478227], - [-13.198079, 8.477902], - [-13.198134, 8.477824], - [-13.199699, 8.478513], - [-13.200965, 8.478833], - [-13.201052, 8.47844], - [-13.20109, 8.478223], - [-13.201111, 8.477988], - [-13.201129, 8.477838], - [-13.200367, 8.477661], - [-13.198932, 8.476779], - [-13.198932, 8.476777], - [-13.200136, 8.476658], - [-13.200266, 8.476821], - [-13.200833, 8.477413], - [-13.201387, 8.477645], - [-13.201905, 8.477631], - [-13.202561, 8.477536], - [-13.20298, 8.477634], - [-13.203398, 8.477726], - [-13.204651, 8.477634], - [-13.205419, 8.477437], - [-13.206319, 8.47588] - ] - ], - "type": "Polygon" - }, - "id": 220, - "properties": { - "cc:admin:id": ["26"], - "cc:oBld:total": 5577, - "cc:pop:fifteen-to-twenty-four": 12667.468857309064, - "cc:pop:grid3-total": 67099.96712646846, - "cc:pop:kontur-total": 53599.42329387333, - "cc:pop:men": 27145.334541793593, - "cc:pop:sixty-plus": 4298.72734135676, - "cc:pop:total": 55346.35248392748, - "cc:pop:under-five": 6395.603532541634, - "cc:pop:women": 28201.0179421339, - "cc:pop:women-fiften-to-forty-nine": 15082.967360715193, - "cc:pop:wp-total": 58321.70137695668, - "cc:pop:wp-total-UN": 67610.99343866966, - "cc:id": "220", - "cc:Name": "Kissy Health Centre", - "cc:site": [-13.196, 8.4713], - "user:parentName": "Freetown", - "user:code": "OU_278340", - "user:orgUnitId": "FclfbEFMcf3", - "user:level": "4", - "user:parentId": "C9uduqDZr9d" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - [-13.081199, 8.412099], - [-13.080399, 8.4099], - [-13.079299, 8.408499], - [-13.078199, 8.4054], - [-13.076299, 8.404599], - [-13.0757, 8.401799], - [-13.075699, 8.3979], - [-13.0746, 8.396499], - [-13.074299, 8.3951], - [-13.072599, 8.3929], - [-13.0713, 8.392899], - [-13.0699, 8.3915], - [-13.069299, 8.3893], - [-13.068699, 8.388999], - [-13.068499, 8.3865], - [-13.0674, 8.3838], - [-13.0657, 8.3821], - [-13.065399, 8.381], - [-13.0632, 8.380699], - [-13.061799, 8.3796], - [-13.060399, 8.379599], - [-13.058999, 8.3788], - [-13.0554, 8.378799], - [-13.055099, 8.3782], - [-13.0488, 8.3782], - [-13.048499, 8.377599], - [-13.0438, 8.377599], - [-13.0426, 8.377899], - [-13.041499, 8.3765], - [-13.0401, 8.375999], - [-13.039599, 8.374], - [-13.037599, 8.373399], - [-13.033499, 8.371499], - [-13.026899, 8.3705], - [-13.015, 8.3705], - [-13.010899, 8.3735], - [-13.005699, 8.377999], - [-13.002, 8.3761], - [-12.9983, 8.3748], - [-12.992599, 8.373399], - [-12.9865, 8.3715], - [-12.981799, 8.370799], - [-12.977, 8.370799], - [-12.9739, 8.371199], - [-12.966199, 8.3733], - [-12.9553, 8.375099], - [-12.9476, 8.377299], - [-12.9432, 8.377899], - [-12.936999, 8.378199], - [-12.9294, 8.3781], - [-12.927963, 8.377848], - [-12.926998, 8.379684], - [-12.929583, 8.382917], - [-12.930417, 8.387916], - [-12.93125, 8.387084], - [-12.932917, 8.387917], - [-12.93375, 8.389583], - [-12.93625, 8.390417], - [-12.937082, 8.39125], - [-12.938278, 8.39424], - [-12.937627, 8.394549], - [-12.937804, 8.394738], - [-12.937803, 8.394739], - [-12.934552, 8.396306], - [-12.93419, 8.3969], - [-12.933958, 8.397322], - [-12.932544, 8.398145], - [-12.931555, 8.398659], - [-12.931464, 8.399956], - [-12.932065, 8.401453], - [-12.933009, 8.402626], - [-12.933349, 8.402724], - [-12.933367, 8.403125], - [-12.933627, 8.403591], - [-12.934699, 8.403977], - [-12.935074, 8.404412], - [-12.936114, 8.404685], - [-12.937327, 8.404478], - [-12.937418, 8.406472], - [-12.937267, 8.408441], - [-12.937633, 8.409448], - [-12.937761, 8.410881], - [-12.937758, 8.41101], - [-12.939054, 8.411556], - [-12.939734, 8.412315], - [-12.940037, 8.412226], - [-12.940375, 8.41221], - [-12.941054, 8.412333], - [-12.941572, 8.41281], - [-12.942286, 8.413162], - [-12.945284, 8.413199], - [-12.94666, 8.413727], - [-12.947982, 8.413797], - [-12.945281, 8.420214], - [-12.944862, 8.421848], - [-12.944389, 8.422978], - [-12.943327, 8.424152], - [-12.943022, 8.424401], - [-12.942255, 8.425539], - [-12.941765, 8.429449], - [-12.940628, 8.432641], - [-12.940702, 8.434071], - [-12.940228, 8.435793], - [-12.940185, 8.43592], - [-12.940183, 8.435921], - [-12.939626, 8.435445], - [-12.938173, 8.434777], - [-12.937234, 8.434692], - [-12.936639, 8.434952], - [-12.936188, 8.43536], - [-12.935859, 8.435982], - [-12.935893, 8.436011], - [-12.937807, 8.438469], - [-12.937981, 8.440027], - [-12.938185, 8.440518], - [-12.939346, 8.43833], - [-12.939436, 8.438112], - [-12.940417, 8.439583], - [-12.943749, 8.44125], - [-12.942916, 8.44375], - [-12.940417, 8.445417], - [-12.93875, 8.449583], - [-12.940416, 8.452083], - [-12.939342, 8.454769], - [-12.939733, 8.455323], - [-12.941545, 8.45594], - [-12.942184, 8.456481], - [-12.942462, 8.456528], - [-12.943122, 8.456253], - [-12.9436, 8.455775], - [-12.944431, 8.455924], - [-12.944561, 8.458759], - [-12.945796, 8.461605], - [-12.946646, 8.461692], - [-12.947491, 8.462234], - [-12.948506, 8.462574], - [-12.94942, 8.462407], - [-12.950761, 8.461564], - [-12.951077, 8.461182], - [-12.951378, 8.461314], - [-12.950853, 8.461951], - [-12.950554, 8.463032], - [-12.950578, 8.464501], - [-12.950337, 8.465652], - [-12.950184, 8.465976], - [-12.94996, 8.466774], - [-12.949967, 8.467371], - [-12.950018, 8.467662], - [-12.950142, 8.467771], - [-12.950646, 8.467761], - [-12.951118, 8.4678], - [-12.951871, 8.467959], - [-12.952526, 8.468315], - [-12.953105, 8.467806], - [-12.953669, 8.467277], - [-12.954466, 8.466744], - [-12.954924, 8.466198], - [-12.955447, 8.46585], - [-12.955839, 8.4654], - [-12.956069, 8.465047], - [-12.956165, 8.464482], - [-12.956209, 8.463963], - [-12.956643, 8.46249], - [-12.957555, 8.461746], - [-12.957812, 8.461219], - [-12.957932, 8.460839], - [-12.958191, 8.460413], - [-12.958311, 8.460169], - [-12.958461, 8.460062], - [-12.958909, 8.460017], - [-12.95913, 8.46011], - [-12.959313, 8.460285], - [-12.959502, 8.46052], - [-12.959652, 8.460773], - [-12.959789, 8.461181], - [-12.959852, 8.461478], - [-12.960114, 8.461629], - [-12.960337, 8.461691], - [-12.960763, 8.461717], - [-12.961525, 8.461715], - [-12.96171, 8.461893], - [-12.961635, 8.46208], - [-12.961315, 8.461989], - [-12.961008, 8.462004], - [-12.960693, 8.462063], - [-12.960136, 8.462123], - [-12.959619, 8.461957], - [-12.959393, 8.461515], - [-12.959342, 8.461079], - [-12.959257, 8.460842], - [-12.959042, 8.460529], - [-12.95888, 8.460414], - [-12.95865, 8.460394], - [-12.958455, 8.460466], - [-12.958346, 8.460768], - [-12.958153, 8.461336], - [-12.957986, 8.46167], - [-12.957691, 8.462104], - [-12.957325, 8.462418], - [-12.957084, 8.462527], - [-12.956843, 8.462819], - [-12.956703, 8.463349], - [-12.956777, 8.464013], - [-12.956706, 8.464699], - [-12.956595, 8.464976], - [-12.956244, 8.465556], - [-12.955777, 8.466133], - [-12.955106, 8.466753], - [-12.954042, 8.467684], - [-12.953624, 8.468024], - [-12.953374, 8.468426], - [-12.953205, 8.468833], - [-12.953205, 8.468987], - [-12.953223, 8.469137], - [-12.953221, 8.469207], - [-12.953366, 8.471297], - [-12.953612, 8.471546], - [-12.953934, 8.471765], - [-12.95416, 8.472152], - [-12.954571, 8.472831], - [-12.954782, 8.473531], - [-12.954832, 8.474122], - [-12.954843, 8.474657], - [-12.954732, 8.475191], - [-12.954434, 8.475756], - [-12.95412, 8.476181], - [-12.953642, 8.476511], - [-12.95314, 8.476728], - [-12.952609, 8.476812], - [-12.951953, 8.476776], - [-12.950794, 8.477134], - [-12.950751, 8.477345], - [-12.95108, 8.478007], - [-12.951108, 8.478453], - [-12.951236, 8.479148], - [-12.951161, 8.479612], - [-12.951067, 8.479949], - [-12.950926, 8.480516], - [-12.950627, 8.481408], - [-12.950198, 8.482467], - [-12.949952, 8.483287], - [-12.949407, 8.484445], - [-12.948842, 8.485487], - [-12.948501, 8.485834], - [-12.948485, 8.48612], - [-12.948493, 8.486593], - [-12.948734, 8.486926], - [-12.949308, 8.487496], - [-12.949903, 8.488071], - [-12.950377, 8.488652], - [-12.950882, 8.489628], - [-12.95117, 8.490444], - [-12.951383, 8.491204], - [-12.951563, 8.491894], - [-12.951649, 8.492698], - [-12.951584, 8.494141], - [-12.951465, 8.495794], - [-12.951585, 8.496041], - [-12.951876, 8.49621], - [-12.952255, 8.496467], - [-12.952671, 8.49693], - [-12.9529, 8.4968], - [-12.9546, 8.4999], - [-12.955099, 8.501799], - [-12.9551, 8.503499], - [-12.955699, 8.5043], - [-12.955699, 8.506499], - [-12.954599, 8.5071], - [-12.9532, 8.5093], - [-12.953199, 8.5107], - [-12.9513, 8.5121], - [-12.9501, 8.513999], - [-12.949299, 8.5168], - [-12.9474, 8.518499], - [-12.945999, 8.520099], - [-12.942599, 8.5221], - [-12.9421, 8.5229], - [-12.9421, 8.524599], - [-12.9432, 8.525699], - [-12.944899, 8.5257], - [-12.946, 8.526799], - [-12.9488, 8.5268], - [-12.951799, 8.527599], - [-12.952399, 8.5282], - [-12.9521, 8.529899], - [-12.954899, 8.530999], - [-12.9554, 8.532099], - [-12.957399, 8.532099], - [-12.958199, 8.5307], - [-12.959299, 8.5301], - [-12.961299, 8.530399], - [-12.9615, 8.530999], - [-12.963199, 8.531299], - [-12.964, 8.5293], - [-12.966299, 8.529899], - [-12.965699, 8.530699], - [-12.9643, 8.531], - [-12.964599, 8.533199], - [-12.9651, 8.534299], - [-12.966499, 8.5346], - [-12.9674, 8.536499], - [-12.967899, 8.5368], - [-12.967899, 8.538499], - [-12.9674, 8.5393], - [-12.9674, 8.542399], - [-12.9676, 8.5438], - [-12.9676, 8.547399], - [-12.9671, 8.5482], - [-12.9671, 8.550099], - [-12.9676, 8.5513], - [-12.9679, 8.553499], - [-12.970699, 8.555399], - [-12.971, 8.556299], - [-12.973199, 8.557399], - [-12.9737, 8.558799], - [-12.975099, 8.5599], - [-12.975399, 8.5615], - [-12.9751, 8.563499], - [-12.976199, 8.563799], - [-12.977399, 8.562899], - [-12.977599, 8.5599], - [-12.978499, 8.5593], - [-12.983799, 8.5593], - [-12.983801, 8.559], - [-12.987899, 8.559], - [-12.9893, 8.559899], - [-12.993199, 8.559599], - [-12.994899, 8.558499], - [-12.9957, 8.5565], - [-12.996799, 8.556299], - [-12.9979, 8.554899], - [-13.0001, 8.5538], - [-13.002899, 8.5535], - [-13.006499, 8.554599], - [-13.0074, 8.555399], - [-13.0124, 8.5551], - [-13.014, 8.5571], - [-13.016, 8.558799], - [-13.017599, 8.5593], - [-13.019299, 8.561], - [-13.019599, 8.5618], - [-13.0193, 8.564899], - [-13.022099, 8.564899], - [-13.023799, 8.562899], - [-13.0243, 8.5613], - [-13.025099, 8.560999], - [-13.0254, 8.559599], - [-13.027399, 8.557399], - [-13.027399, 8.5554], - [-13.022899, 8.555999], - [-13.0218, 8.554599], - [-13.0218, 8.5529], - [-13.022399, 8.551499], - [-13.022399, 8.5499], - [-13.020399, 8.5488], - [-13.019599, 8.548799], - [-13.0176, 8.5474], - [-13.0179, 8.545999], - [-13.020099, 8.5435], - [-13.0226, 8.541299], - [-13.023499, 8.539599], - [-13.0235, 8.5382], - [-13.020999, 8.5368], - [-13.0174, 8.537099], - [-13.0174, 8.5363], - [-13.0213, 8.536], - [-13.023499, 8.536799], - [-13.024899, 8.538499], - [-13.024899, 8.5396], - [-13.024, 8.540999], - [-13.0204, 8.544299], - [-13.019, 8.545999], - [-13.019, 8.547099], - [-13.021499, 8.5479], - [-13.023799, 8.549899], - [-13.024, 8.552899], - [-13.024599, 8.554299], - [-13.025699, 8.5543], - [-13.0265, 8.551], - [-13.027599, 8.549599], - [-13.0279, 8.5474], - [-13.029899, 8.5446], - [-13.0315, 8.543199], - [-13.0335, 8.540999], - [-13.0371, 8.5393], - [-13.039599, 8.538999], - [-13.040699, 8.5365], - [-13.041499, 8.536299], - [-13.0415, 8.5351], - [-13.042399, 8.534899], - [-13.042399, 8.5332], - [-13.0396, 8.5318], - [-13.038199, 8.531499], - [-13.0365, 8.5301], - [-13.036499, 8.5293], - [-13.033999, 8.5263], - [-13.0318, 8.525099], - [-13.030999, 8.524], - [-13.0276, 8.5229], - [-13.027099, 8.526799], - [-13.025399, 8.528499], - [-13.023799, 8.528999], - [-13.0218, 8.529], - [-13.0204, 8.528199], - [-13.0204, 8.526799], - [-13.0215, 8.5257], - [-13.022899, 8.525099], - [-13.0229, 8.524], - [-13.024299, 8.5243], - [-13.024, 8.526299], - [-13.0224, 8.5271], - [-13.0218, 8.528199], - [-13.023799, 8.528199], - [-13.025999, 8.5268], - [-13.026199, 8.526299], - [-13.026199, 8.521], - [-13.0249, 8.5204], - [-13.024599, 8.5193], - [-13.0229, 8.517899], - [-13.0226, 8.515099], - [-13.025399, 8.5113], - [-13.027399, 8.5096], - [-13.029599, 8.508799], - [-13.0299, 8.508199], - [-13.032099, 8.507399], - [-13.0321, 8.506799], - [-13.0343, 8.505699], - [-13.036799, 8.5035], - [-13.037399, 8.501], - [-13.0357, 8.4988], - [-13.034, 8.4974], - [-13.0318, 8.4946], - [-13.0299, 8.492899], - [-13.027899, 8.4893], - [-13.0271, 8.4893], - [-13.0271, 8.490699], - [-13.029299, 8.492899], - [-13.029299, 8.494599], - [-13.0274, 8.495999], - [-13.0262, 8.496], - [-13.0251, 8.496799], - [-13.0251, 8.497899], - [-13.0262, 8.499299], - [-13.028499, 8.4993], - [-13.028499, 8.500099], - [-13.026199, 8.500099], - [-13.0249, 8.4982], - [-13.0243, 8.496799], - [-13.0257, 8.495399], - [-13.0285, 8.494599], - [-13.028499, 8.4938], - [-13.025999, 8.491799], - [-13.0257, 8.4893], - [-13.026499, 8.4876], - [-13.025699, 8.4868], - [-13.024299, 8.4871], - [-13.021299, 8.487099], - [-13.0199, 8.485999], - [-13.017899, 8.4824], - [-13.017399, 8.482399], - [-13.016299, 8.4807], - [-13.015099, 8.480399], - [-13.014601, 8.479], - [-13.018799, 8.480699], - [-13.0196, 8.4796], - [-13.020999, 8.479299], - [-13.020699, 8.473999], - [-13.020399, 8.4721], - [-13.0199, 8.471799], - [-13.019899, 8.4688], - [-13.0193, 8.468199], - [-13.0193, 8.466501], - [-13.019301, 8.4665], - [-13.019473, 8.466547], - [-13.019198, 8.46632], - [-13.018921, 8.465453], - [-13.018781, 8.464514], - [-13.018712, 8.463507], - [-13.018574, 8.462675], - [-13.018157, 8.461772], - [-13.017879, 8.462812], - [-13.018156, 8.463682], - [-13.018087, 8.465139], - [-13.017739, 8.465452], - [-13.016803, 8.465001], - [-13.016907, 8.465625], - [-13.01781, 8.465939], - [-13.018747, 8.466494], - [-13.018816, 8.4675], - [-13.019199, 8.468647], - [-13.019372, 8.46955], - [-13.01965, 8.471425], - [-13.019997, 8.473403], - [-13.020096, 8.473878], - [-13.017679, 8.473273], - [-13.017634, 8.473144], - [-13.018171, 8.472079], - [-13.01789, 8.47092], - [-13.017549, 8.470588], - [-13.01667, 8.470221], - [-13.016072, 8.470186], - [-13.014952, 8.470587], - [-13.013362, 8.470398], - [-13.013009, 8.470084], - [-13.013051, 8.469747], - [-13.013576, 8.469398], - [-13.013248, 8.468594], - [-13.013403, 8.468108], - [-13.013289, 8.4677], - [-13.01284, 8.467369], - [-13.01257, 8.467306], - [-13.01223, 8.464236], - [-13.012381, 8.464215], - [-13.01472, 8.465297], - [-13.015078, 8.46522], - [-13.015383, 8.464942], - [-13.015616, 8.463866], - [-13.015467, 8.463184], - [-13.014977, 8.462286], - [-13.013188, 8.460268], - [-13.012948, 8.460167], - [-13.012083, 8.460427], - [-13.012083, 8.459584], - [-13.0139, 8.457161], - [-13.014743, 8.457274], - [-13.016249, 8.45125], - [-13.016249, 8.449584], - [-13.014582, 8.449583], - [-13.007242, 8.443711], - [-13.007242, 8.44371], - [-13.011632, 8.441439], - [-13.012738, 8.441162], - [-13.014068, 8.441108], - [-13.014396, 8.440943], - [-13.015495, 8.438484], - [-13.015628, 8.438177], - [-13.016673, 8.435668], - [-13.019582, 8.436249], - [-13.019583, 8.43125], - [-13.019729, 8.431103], - [-13.019812, 8.431169], - [-13.021157, 8.425788], - [-13.021738, 8.425661], - [-13.023765, 8.426674], - [-13.023812, 8.426784], - [-13.024304, 8.426062], - [-13.02485, 8.425775], - [-13.02639, 8.424052], - [-13.028451, 8.424467], - [-13.028989, 8.424989], - [-13.029409, 8.424939], - [-13.029315, 8.423425], - [-13.030595, 8.42298], - [-13.030866, 8.422569], - [-13.030707, 8.422035], - [-13.030708, 8.422033], - [-13.033779, 8.423261], - [-13.03502, 8.422829], - [-13.036382, 8.423033], - [-13.037624, 8.423566], - [-13.037804, 8.42402], - [-13.037579, 8.424583], - [-13.039686, 8.424583], - [-13.039851, 8.424269], - [-13.040067, 8.424159], - [-13.040236, 8.423857], - [-13.040429, 8.424011], - [-13.040472, 8.424017], - [-13.040844, 8.420311], - [-13.041673, 8.420877], - [-13.042512, 8.421046], - [-13.04313, 8.42081], - [-13.043306, 8.420439], - [-13.043202, 8.419891], - [-13.042761, 8.419381], - [-13.0428, 8.418453], - [-13.04229, 8.417725], - [-13.041943, 8.417648], - [-13.041795, 8.417372], - [-13.041881, 8.417105], - [-13.044583, 8.418158], - [-13.045301, 8.418141], - [-13.04606, 8.4173], - [-13.046971, 8.41673], - [-13.047423, 8.416743], - [-13.04759, 8.417047], - [-13.047338, 8.417738], - [-13.047667, 8.418492], - [-13.04914, 8.419258], - [-13.04969, 8.419227], - [-13.050998, 8.420028], - [-13.051374, 8.42006], - [-13.051617, 8.419455], - [-13.051904, 8.419284], - [-13.053259, 8.41932], - [-13.053372, 8.419425], - [-13.052534, 8.422778], - [-13.052602, 8.422791], - [-13.053499, 8.4226], - [-13.0535, 8.421499], - [-13.0549, 8.4199], - [-13.056499, 8.419899], - [-13.0568, 8.4193], - [-13.0585, 8.4193], - [-13.060999, 8.419899], - [-13.063999, 8.417399], - [-13.0654, 8.4143], - [-13.068199, 8.4132], - [-13.070399, 8.4129], - [-13.0724, 8.414299], - [-13.076799, 8.4143], - [-13.078699, 8.413499], - [-13.0787, 8.412899], - [-13.081199, 8.412099] - ] - ], - [ - [ - [-12.962399, 8.5321], - [-12.960999, 8.531], - [-12.9593, 8.531], - [-12.9585, 8.532099], - [-12.9596, 8.5329], - [-12.962099, 8.532899], - [-12.962399, 8.5321] - ] - ], - [ - [ - [-13.022599, 8.4824], - [-13.021499, 8.4807], - [-13.019, 8.4815], - [-13.019, 8.482899], - [-13.021299, 8.484599], - [-13.0218, 8.485399], - [-13.022599, 8.485099], - [-13.022599, 8.4824] - ] - ] - ], - "type": "MultiPolygon" - }, - "id": 221, - "properties": { - "cc:admin:id": ["62"], - "cc:oBld:total": 648, - "cc:pop:fifteen-to-twenty-four": 2379.919814429936, - "cc:pop:grid3-total": 9428.954344145557, - "cc:pop:kontur-total": 16392.715948330282, - "cc:pop:men": 6296.810280758676, - "cc:pop:sixty-plus": 785.2804527545856, - "cc:pop:total": 13344.812472127807, - "cc:pop:under-five": 2209.141022371104, - "cc:pop:women": 7048.002191369133, - "cc:pop:women-fiften-to-forty-nine": 3615.074003721077, - "cc:pop:wp-total": 13535.317502527294, - "cc:pop:wp-total-UN": 15711.238065365204, - "cc:id": "221", - "cc:Name": "Kissy Koya MCHP", - "cc:site": [-12.9783, 8.4025], - "user:parentName": "Koya", - "user:code": "OU_254968", - "user:orgUnitId": "XLiqwElsFHO", - "user:level": "4", - "user:parentId": "pRHGAROvuyI" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.069104, 8.353874], - [-13.068996, 8.353388], - [-13.068562, 8.353015], - [-13.067193, 8.352871], - [-13.067221, 8.352648], - [-13.068329, 8.352177], - [-13.068654, 8.351349], - [-13.068666, 8.350956], - [-13.068446, 8.350563], - [-13.067965, 8.350423], - [-13.067487, 8.350523], - [-13.067486, 8.350522], - [-13.067916, 8.347084], - [-13.067776, 8.347084], - [-13.067775, 8.347082], - [-13.068523, 8.345785], - [-13.067296, 8.343854], - [-13.06776, 8.342543], - [-13.066667, 8.341899], - [-13.065687, 8.341538], - [-13.065117, 8.340538], - [-13.06593, 8.339199], - [-13.065232, 8.338966], - [-13.065382, 8.338493], - [-13.065318, 8.337917], - [-13.066249, 8.337916], - [-13.06625, 8.335306], - [-13.066951, 8.334036], - [-13.065636, 8.333694], - [-13.065428, 8.333676], - [-13.065427, 8.333674], - [-13.067178, 8.330572], - [-13.067609, 8.329739], - [-13.06714, 8.329727], - [-13.066628, 8.329318], - [-13.065981, 8.329216], - [-13.065981, 8.329214], - [-13.066457, 8.328678], - [-13.067045, 8.328371], - [-13.068184, 8.328032], - [-13.068391, 8.327675], - [-13.068422, 8.32764], - [-13.068003, 8.327264], - [-13.067177, 8.326846], - [-13.065847, 8.326426], - [-13.064907, 8.326223], - [-13.064415, 8.326174], - [-13.062732, 8.326475], - [-13.061624, 8.326767], - [-13.061031, 8.326913], - [-13.059995, 8.327179], - [-13.059625, 8.327276], - [-13.059497, 8.327246], - [-13.057938, 8.327671], - [-13.056374, 8.328075], - [-13.056384, 8.328138], - [-13.055027, 8.328534], - [-13.054898, 8.328028], - [-13.054424, 8.327484], - [-13.053864, 8.32754], - [-13.053539, 8.326932], - [-13.05271, 8.326908], - [-13.052717, 8.326388], - [-13.052557, 8.325645], - [-13.052481, 8.325593], - [-13.051576, 8.325557], - [-13.050939, 8.323307], - [-13.050886, 8.323277], - [-13.050131, 8.322319], - [-13.04982, 8.32243], - [-13.0491, 8.322257], - [-13.048874, 8.322194], - [-13.048956, 8.320943], - [-13.049273, 8.32097], - [-13.049968, 8.320514], - [-13.050456, 8.320243], - [-13.05033, 8.319463], - [-13.049855, 8.318968], - [-13.04965, 8.31857], - [-13.049676, 8.318419], - [-13.049631, 8.317847], - [-13.049611, 8.317755], - [-13.049225, 8.31748], - [-13.048827, 8.317182], - [-13.04663, 8.317486], - [-13.046605, 8.317928], - [-13.046798, 8.318335], - [-13.046624, 8.318926], - [-13.046222, 8.318795], - [-13.045467, 8.31851], - [-13.045068, 8.319471], - [-13.044799, 8.319397], - [-13.044071, 8.320434], - [-13.044754, 8.320851], - [-13.045714, 8.321475], - [-13.046241, 8.32205], - [-13.046266, 8.322106], - [-13.046337, 8.322496], - [-13.04644, 8.322861], - [-13.04611, 8.323115], - [-13.045079, 8.322897], - [-13.04518, 8.323831], - [-13.044465, 8.324382], - [-13.043828, 8.323486], - [-13.042024, 8.322191], - [-13.041198, 8.320361], - [-13.039851, 8.320279], - [-13.039627, 8.319799], - [-13.03898, 8.320002], - [-13.038796, 8.320261], - [-13.037794, 8.32025], - [-13.038373, 8.319547], - [-13.039084, 8.31709], - [-13.040703, 8.315154], - [-13.040968, 8.31449], - [-13.040664, 8.314311], - [-13.040297, 8.314225], - [-13.039842, 8.314411], - [-13.039127, 8.314051], - [-13.038826, 8.313638], - [-13.037758, 8.31296], - [-13.037677, 8.313065], - [-13.03698, 8.314647], - [-13.03632, 8.315727], - [-13.03547, 8.317096], - [-13.035186, 8.317708], - [-13.034373, 8.319874], - [-13.032223, 8.320841], - [-13.032741, 8.32161], - [-13.031853, 8.321983], - [-13.030302, 8.32262], - [-13.029869, 8.322686], - [-13.028933, 8.323554], - [-13.028481, 8.324417], - [-13.028099, 8.325055], - [-13.028287, 8.325496], - [-13.030024, 8.327247], - [-13.030258, 8.327517], - [-13.030673, 8.327475], - [-13.031195, 8.327106], - [-13.032002, 8.328044], - [-13.032163, 8.328327], - [-13.032511, 8.328858], - [-13.0317, 8.329676], - [-13.031742, 8.329793], - [-13.032075, 8.330548], - [-13.031892, 8.331223], - [-13.030749, 8.331609], - [-13.029242, 8.332094], - [-13.029476, 8.333115], - [-13.029712, 8.334015], - [-13.029769, 8.334771], - [-13.029629, 8.334767], - [-13.029642, 8.335129], - [-13.029654, 8.335339], - [-13.034512, 8.335486], - [-13.035576, 8.335394], - [-13.034524, 8.33554], - [-13.032918, 8.33558], - [-13.032348, 8.33557], - [-13.029648, 8.335475], - [-13.029674, 8.335832], - [-13.029642, 8.336402], - [-13.029634, 8.336744], - [-13.029647, 8.336863], - [-13.03153, 8.336728], - [-13.031553, 8.337717], - [-13.03155, 8.337898], - [-13.031522, 8.338358], - [-13.030557, 8.340183], - [-13.030524, 8.340525], - [-13.030617, 8.340759], - [-13.030924, 8.340801], - [-13.030933, 8.341242], - [-13.030975, 8.341707], - [-13.030969, 8.342165], - [-13.030254, 8.342206], - [-13.030138, 8.343054], - [-13.029802, 8.343339], - [-13.029814, 8.344115], - [-13.030204, 8.344956], - [-13.030228, 8.345148], - [-13.030126, 8.345436], - [-13.030141, 8.345448], - [-13.029834, 8.3465], - [-13.033749, 8.350417], - [-13.033749, 8.357083], - [-13.032781, 8.359502], - [-13.032349, 8.355344], - [-13.032289, 8.356846], - [-13.032188, 8.358352], - [-13.032317, 8.359345], - [-13.032917, 8.3603], - [-13.033593, 8.360965], - [-13.033979, 8.361526], - [-13.034702, 8.362119], - [-13.035165, 8.362557], - [-13.035697, 8.362628], - [-13.036087, 8.362344], - [-13.036242, 8.361953], - [-13.036632, 8.361066], - [-13.036775, 8.360829], - [-13.037591, 8.360876], - [-13.037935, 8.361172], - [-13.037817, 8.361645], - [-13.03751, 8.361966], - [-13.037439, 8.362403], - [-13.03745, 8.36303], - [-13.037591, 8.363458], - [-13.037533, 8.36393], - [-13.037295, 8.364499], - [-13.036977, 8.364878], - [-13.036182, 8.364913], - [-13.035744, 8.364641], - [-13.035116, 8.364204], - [-13.034738, 8.364216], - [-13.034264, 8.364654], - [-13.03379, 8.365115], - [-13.033282, 8.365282], - [-13.032678, 8.365743], - [-13.032382, 8.366442], - [-13.032346, 8.36707], - [-13.032464, 8.367472], - [-13.033245, 8.367566], - [-13.034051, 8.367389], - [-13.034962, 8.367176], - [-13.035922, 8.367519], - [-13.036811, 8.368432], - [-13.037403, 8.368858], - [-13.038432, 8.369556], - [-13.039061, 8.36964], - [-13.039297, 8.370102], - [-13.039261, 8.370835], - [-13.039107, 8.37106], - [-13.03867, 8.371001], - [-13.037923, 8.370623], - [-13.036671, 8.370503], - [-13.035794, 8.371706], - [-13.03554, 8.372159], - [-13.035214, 8.372867], - [-13.035172, 8.373355], - [-13.039601, 8.373972], - [-13.040118, 8.370118], - [-13.040119, 8.370117], - [-13.042894, 8.376512], - [-13.065426, 8.37623], - [-13.062653, 8.364852], - [-13.062655, 8.364852], - [-13.06321, 8.365857], - [-13.063818, 8.365735], - [-13.063124, 8.364536], - [-13.060861, 8.362497], - [-13.060942, 8.3621], - [-13.061215, 8.362], - [-13.062015, 8.362143], - [-13.063077, 8.362614], - [-13.063674, 8.362588], - [-13.064541, 8.362181], - [-13.064976, 8.361343], - [-13.065192, 8.360361], - [-13.065204, 8.359262], - [-13.064455, 8.357774], - [-13.064514, 8.357493], - [-13.064745, 8.357267], - [-13.065641, 8.357354], - [-13.06709, 8.357877], - [-13.067577, 8.3577], - [-13.068182, 8.356979], - [-13.068359, 8.355359], - [-13.069104, 8.353874] - ] - ], - "type": "Polygon" - }, - "id": 222, - "properties": { - "cc:admin:id": ["112"], - "cc:oBld:total": 10467, - "cc:pop:fifteen-to-twenty-four": 6357.79758024706, - "cc:pop:grid3-total": 74056.42797947662, - "cc:pop:kontur-total": 28690.30850841876, - "cc:pop:men": 12860.5195135903, - "cc:pop:sixty-plus": 2092.2388067086317, - "cc:pop:total": 26895.879867637697, - "cc:pop:under-five": 2966.7293137266065, - "cc:pop:women": 14035.36035404739, - "cc:pop:women-fiften-to-forty-nine": 7503.970756594845, - "cc:pop:wp-total": 30580.55444754185, - "cc:pop:wp-total-UN": 35454.5779778371, - "cc:id": "222", - "cc:Name": "Kissy Town CHP", - "cc:site": [-13.0424, 8.3371], - "user:parentName": "Rural Western Area", - "user:code": "OU_278396", - "user:orgUnitId": "lmNWdmeOYmV", - "user:level": "4", - "user:parentId": "qtr8GGlm4gg" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.08625, 8.832082], - [-11.086249, 8.831257], - [-11.085988, 8.831329], - [-11.085117, 8.831783], - [-11.083749, 8.830417], - [-11.079583, 8.829582], - [-11.080416, 8.82625], - [-11.075417, 8.820417], - [-11.077768, 8.814928], - [-11.077243, 8.813813], - [-11.07611, 8.812455], - [-11.07322, 8.807348], - [-11.075417, 8.806249], - [-11.077916, 8.802082], - [-11.077916, 8.800417], - [-11.077082, 8.799582], - [-11.069583, 8.797917], - [-11.067917, 8.79625], - [-11.069582, 8.793749], - [-11.067917, 8.790416], - [-11.068749, 8.78625], - [-11.064672, 8.786929], - [-11.064634, 8.787289], - [-11.063707, 8.78635], - [-11.063117, 8.786277], - [-11.062386, 8.785813], - [-11.059685, 8.785489], - [-11.057992, 8.784791], - [-11.057865, 8.784634], - [-11.057084, 8.785415], - [-11.057082, 8.785415], - [-11.05375, 8.777082], - [-11.053749, 8.767917], - [-11.047658, 8.768593], - [-11.047366, 8.768185], - [-11.047181, 8.767458], - [-11.04747, 8.767133], - [-11.046987, 8.765882], - [-11.047791, 8.764846], - [-11.048304, 8.764775], - [-11.048371, 8.764533], - [-11.04816, 8.764415], - [-11.047883, 8.764703], - [-11.047882, 8.764702], - [-11.048018, 8.764224], - [-11.048695, 8.764054], - [-11.048691, 8.763764], - [-11.048543, 8.763724], - [-11.045699, 8.7662], - [-11.037, 8.770699], - [-11.032199, 8.771399], - [-11.0281, 8.7711], - [-11.025599, 8.770399], - [-11.022, 8.7684], - [-11.018799, 8.766999], - [-11.0145, 8.7646], - [-11.011299, 8.763199], - [-11.007, 8.7608], - [-11.0037, 8.7595], - [-11.000299, 8.7578], - [-10.9926, 8.760999], - [-10.988299, 8.762899], - [-10.9848, 8.762799], - [-10.979999, 8.7607], - [-10.977099, 8.7604], - [-10.9744, 8.7612], - [-10.972999, 8.763], - [-10.971799, 8.7655], - [-10.9714, 8.767599], - [-10.973399, 8.773799], - [-10.973799, 8.7787], - [-10.973199, 8.7818], - [-10.971999, 8.783899], - [-10.969799, 8.7858], - [-10.962299, 8.7893], - [-10.959699, 8.7898], - [-10.951499, 8.7902], - [-10.948, 8.790899], - [-10.9435, 8.792799], - [-10.941, 8.793399], - [-10.9356, 8.793999], - [-10.9331, 8.794599], - [-10.927699, 8.7968], - [-10.924199, 8.7973], - [-10.9178, 8.797599], - [-10.9144, 8.798299], - [-10.9069, 8.801899], - [-10.9033, 8.803899], - [-10.902958, 8.803991], - [-10.903101, 8.804302], - [-10.903438, 8.804512], - [-10.904629, 8.804989], - [-10.907632, 8.805424], - [-10.90929, 8.803853], - [-10.909363, 8.804022], - [-10.909621, 8.803752], - [-10.910765, 8.803209], - [-10.910822, 8.803314], - [-10.911933, 8.802934], - [-10.912433, 8.802975], - [-10.912461, 8.802827], - [-10.913183, 8.802831], - [-10.913095, 8.803054], - [-10.911899, 8.803196], - [-10.910093, 8.803714], - [-10.909583, 8.804008], - [-10.909583, 8.807036], - [-10.916207, 8.807037], - [-10.920113, 8.813802], - [-10.919851, 8.814258], - [-10.923749, 8.814582], - [-10.924582, 8.815416], - [-10.92375, 8.827082], - [-10.92375, 8.827916], - [-10.943749, 8.829583], - [-10.943749, 8.837916], - [-10.939748, 8.841919], - [-10.940804, 8.843749], - [-10.939313, 8.84375], - [-10.940693, 8.846139], - [-10.945456, 8.84614], - [-10.945856, 8.853333], - [-10.950137, 8.853334], - [-10.954043, 8.860099], - [-10.958605, 8.8601], - [-10.95875, 8.86125], - [-10.960611, 8.861249], - [-10.960654, 8.860549], - [-10.960679, 8.859629], - [-10.960378, 8.858707], - [-10.960423, 8.858295], - [-10.961088, 8.857119], - [-10.961194, 8.856366], - [-10.961078, 8.856001], - [-10.964582, 8.855416], - [-10.967082, 8.85375], - [-10.969582, 8.854583], - [-10.970416, 8.855417], - [-10.970417, 8.856249], - [-10.96875, 8.860417], - [-10.96875, 8.869583], - [-10.969583, 8.870416], - [-10.970417, 8.870417], - [-10.972917, 8.87125], - [-10.97375, 8.871249], - [-10.977083, 8.870417], - [-10.983749, 8.870417], - [-10.98375, 8.874582], - [-10.985416, 8.875416], - [-10.987067, 8.875967], - [-10.986525, 8.876869], - [-10.984253, 8.878611], - [-10.98371, 8.879306], - [-10.983702, 8.879771], - [-10.983772, 8.880054], - [-10.983161, 8.882621], - [-10.985417, 8.88375], - [-10.988749, 8.884582], - [-10.991249, 8.882083], - [-10.992916, 8.882083], - [-10.992917, 8.888749], - [-10.997917, 8.88625], - [-11.000416, 8.887916], - [-11.000417, 8.890416], - [-11.004583, 8.892916], - [-11.005209, 8.892602], - [-11.004871, 8.892315], - [-11.003333, 8.891839], - [-11.001844, 8.891027], - [-11.001657, 8.890843], - [-11.002916, 8.889583], - [-11.005416, 8.890416], - [-11.007083, 8.887083], - [-11.012082, 8.887082], - [-11.014583, 8.88375], - [-11.018749, 8.883749], - [-11.01875, 8.87375], - [-11.024582, 8.87375], - [-11.02625, 8.875416], - [-11.02875, 8.875417], - [-11.033749, 8.878749], - [-11.037082, 8.880416], - [-11.041249, 8.87625], - [-11.04125, 8.875416], - [-11.043749, 8.873749], - [-11.043749, 8.872082], - [-11.042083, 8.86625], - [-11.047916, 8.867916], - [-11.054582, 8.864582], - [-11.054583, 8.85875], - [-11.055417, 8.857917], - [-11.056249, 8.857916], - [-11.05625, 8.856249], - [-11.058749, 8.854582], - [-11.062082, 8.84875], - [-11.066249, 8.84625], - [-11.069582, 8.847916], - [-11.072082, 8.844583], - [-11.073749, 8.84125], - [-11.079582, 8.840416], - [-11.079583, 8.83625], - [-11.080416, 8.836249], - [-11.082916, 8.832917], - [-11.085416, 8.832916], - [-11.08625, 8.832082] - ] - ], - "type": "Polygon" - }, - "id": 223, - "properties": { - "cc:admin:id": ["119"], - "cc:oBld:total": 900, - "cc:pop:fifteen-to-twenty-four": 983.6627961863794, - "cc:pop:grid3-total": 11061.07659316856, - "cc:pop:kontur-total": 4611.823693055679, - "cc:pop:men": 2484.6571466644014, - "cc:pop:sixty-plus": 291.39463440808447, - "cc:pop:total": 5037.858148663307, - "cc:pop:under-five": 828.7412785554454, - "cc:pop:women": 2553.2010019989057, - "cc:pop:women-fiften-to-forty-nine": 1246.8589640785383, - "cc:pop:wp-total": 5338.013664732921, - "cc:pop:wp-total-UN": 6189.332455781069, - "cc:id": "223", - "cc:Name": "Koakor MCHP", - "cc:site": [-10.9919, 8.7955], - "user:parentName": "Gbense", - "user:code": "OU_233377", - "user:orgUnitId": "EQc3n1juPFn", - "user:level": "4", - "user:parentId": "TQkG0sX9nca" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.016838, 8.640416], - [-11.016199, 8.637699], - [-11.014, 8.632499], - [-11.0137, 8.629], - [-11.0142, 8.626399], - [-11.0161, 8.622099], - [-11.016599, 8.6183], - [-11.016, 8.6148], - [-11.0122, 8.607], - [-11.009399, 8.6017], - [-11.005, 8.604699], - [-11.002299, 8.6072], - [-10.9999, 8.610099], - [-10.9976, 8.614599], - [-10.995799, 8.6168], - [-10.993199, 8.618199], - [-10.9892, 8.618799], - [-10.9796, 8.6188], - [-10.977666, 8.619174], - [-10.978676, 8.619663], - [-10.97877, 8.61985], - [-10.978829, 8.623082], - [-10.978347, 8.626093], - [-10.978423, 8.626262], - [-10.979127, 8.627208], - [-10.979294, 8.627663], - [-10.979595, 8.627849], - [-10.979731, 8.628014], - [-10.981167, 8.6274], - [-10.981259, 8.627386], - [-10.981787, 8.627187], - [-10.984239, 8.626281], - [-10.984335, 8.626482], - [-10.984202, 8.62854], - [-10.981786, 8.629823], - [-10.982083, 8.630416], - [-10.984582, 8.630416], - [-10.984583, 8.625417], - [-10.984996, 8.62521], - [-10.985007, 8.625674], - [-10.98523, 8.626432], - [-10.985302, 8.627209], - [-10.985683, 8.627754], - [-10.985844, 8.627954], - [-10.98591, 8.628707], - [-10.986544, 8.630013], - [-10.986267, 8.631505], - [-10.986729, 8.632301], - [-10.986537, 8.632675], - [-10.986704, 8.6342], - [-10.987538, 8.634607], - [-10.987656, 8.635094], - [-10.987925, 8.635088], - [-10.987966, 8.63546], - [-10.988329, 8.635583], - [-10.988439, 8.635806], - [-10.988189, 8.635985], - [-10.988226, 8.636152], - [-10.988745, 8.636388], - [-10.988843, 8.637154], - [-10.988852, 8.637145], - [-10.988999, 8.636815], - [-10.989067, 8.636639], - [-10.989581, 8.636158], - [-10.989773, 8.637294], - [-10.990174, 8.636756], - [-10.990698, 8.635402], - [-10.990939, 8.634885], - [-10.992543, 8.636232], - [-10.992861, 8.6365], - [-10.992955, 8.636585], - [-10.993424, 8.636892], - [-10.993663, 8.637053], - [-10.993937, 8.636835], - [-10.99443, 8.636436], - [-10.994948, 8.636323], - [-10.995431, 8.636277], - [-10.99576, 8.636309], - [-10.996112, 8.636347], - [-10.996703, 8.63635], - [-10.997102, 8.636788], - [-10.996914, 8.637156], - [-10.996616, 8.63781], - [-10.995829, 8.638693], - [-10.995702, 8.638989], - [-10.995733, 8.639016], - [-10.997202, 8.641007], - [-10.997562, 8.641566], - [-10.998677, 8.643253], - [-10.998898, 8.643826], - [-10.998857, 8.644242], - [-10.998677, 8.644547], - [-11.000417, 8.645416], - [-11.002083, 8.644584], - [-11.012082, 8.644584], - [-11.012083, 8.646776], - [-11.0135, 8.6458], - [-11.016399, 8.644899], - [-11.016999, 8.6411], - [-11.016838, 8.640416] - ] - ], - "type": "Polygon" - }, - "id": 224, - "properties": { - "cc:admin:id": ["33"], - "cc:oBld:total": 3400, - "cc:pop:fifteen-to-twenty-four": 3245.14270320467, - "cc:pop:grid3-total": 18059.334208672833, - "cc:pop:kontur-total": 17187.19718112196, - "cc:pop:men": 8786.567714622599, - "cc:pop:sixty-plus": 972.462343970899, - "cc:pop:total": 16577.12383753644, - "cc:pop:under-five": 2601.146387763743, - "cc:pop:women": 7790.556122913839, - "cc:pop:women-fiften-to-forty-nine": 3910.3553119668113, - "cc:pop:wp-total": 14311.438075863693, - "cc:pop:wp-total-UN": 16584.327973794807, - "cc:id": "224", - "cc:Name": "Koakoyima CHC", - "cc:site": [-10.9945, 8.6224], - "user:parentName": "Tankoro", - "user:code": "OU_233327", - "user:orgUnitId": "SnCrOCRrxGX", - "user:level": "4", - "user:parentId": "M2qEv692lS6" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.623042, 8.63689], - [-10.623499, 8.634599], - [-10.623299, 8.631999], - [-10.621999, 8.6287], - [-10.6185, 8.6245], - [-10.617, 8.622199], - [-10.6161, 8.6186], - [-10.615899, 8.614899], - [-10.6158, 8.5915], - [-10.615199, 8.5865], - [-10.612799, 8.581099], - [-10.611299, 8.575299], - [-10.6074, 8.5669], - [-10.6035, 8.5596], - [-10.6006, 8.5559], - [-10.602199, 8.5498], - [-10.594899, 8.564599], - [-10.590199, 8.5694], - [-10.5831, 8.5716], - [-10.5812, 8.575099], - [-10.582299, 8.591399], - [-10.579499, 8.5957], - [-10.575799, 8.597099], - [-10.5664, 8.5957], - [-10.559399, 8.601899], - [-10.5516, 8.6053], - [-10.544199, 8.611699], - [-10.531, 8.612999], - [-10.526199, 8.6098], - [-10.5229, 8.6102], - [-10.5156, 8.6181], - [-10.523499, 8.627299], - [-10.525, 8.6296], - [-10.526, 8.632], - [-10.5269, 8.6363], - [-10.5295, 8.6414], - [-10.533399, 8.649799], - [-10.5346, 8.6549], - [-10.537299, 8.661399], - [-10.538099, 8.667999], - [-10.5386, 8.670199], - [-10.5405, 8.6733], - [-10.549699, 8.682399], - [-10.551399, 8.6846], - [-10.5528, 8.6883], - [-10.5532, 8.6924], - [-10.553299, 8.700599], - [-10.5541, 8.704099], - [-10.5565, 8.7076], - [-10.560899, 8.711899], - [-10.572799, 8.6999], - [-10.576799, 8.6961], - [-10.5789, 8.694499], - [-10.582799, 8.6925], - [-10.5851, 8.690999], - [-10.5872, 8.689199], - [-10.601799, 8.6745], - [-10.605799, 8.6706], - [-10.608, 8.668899], - [-10.612499, 8.6665], - [-10.6149, 8.664399], - [-10.6164, 8.662399], - [-10.6194, 8.655699], - [-10.6201, 8.652199], - [-10.620299, 8.6458], - [-10.620799, 8.6424], - [-10.622999, 8.6371], - [-10.623042, 8.63689] - ] - ], - "type": "Polygon" - }, - "id": 225, - "properties": { - "cc:admin:id": ["30"], - "cc:oBld:total": 1455, - "cc:pop:fifteen-to-twenty-four": 853.2761739175045, - "cc:pop:grid3-total": 10567.570043852405, - "cc:pop:kontur-total": 5082.877831623048, - "cc:pop:men": 2069.592003625111, - "cc:pop:sixty-plus": 167.63787693987575, - "cc:pop:total": 4378.165308908645, - "cc:pop:under-five": 764.6074323701478, - "cc:pop:women": 2308.573305283535, - "cc:pop:women-fiften-to-forty-nine": 1164.6374897319395, - "cc:pop:wp-total": 3686.8412757019346, - "cc:pop:wp-total-UN": 4276.04014864237, - "cc:id": "225", - "cc:Name": "Koardu MCHP", - "cc:site": [-10.5828, 8.6151], - "user:parentName": "Gbane Kandor", - "user:code": "OU_233313", - "user:orgUnitId": "PwoQgMJNWbR", - "user:level": "4", - "user:parentId": "Zoy23SSHCPs" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.008749, 9.002083], - [-11.004582, 9.002082], - [-11.000417, 8.997917], - [-10.999583, 8.99375], - [-11.002916, 8.992916], - [-11.002083, 8.98625], - [-11.00125, 8.985416], - [-11.00125, 8.979583], - [-11.002916, 8.977916], - [-11.003749, 8.974583], - [-11.002917, 8.973749], - [-11.002916, 8.972916], - [-11.002083, 8.967917], - [-11.002083, 8.96625], - [-11.002916, 8.965416], - [-11.002916, 8.964582], - [-11.000417, 8.953749], - [-11.001249, 8.949583], - [-11.000417, 8.948749], - [-11.001249, 8.94375], - [-10.999583, 8.942082], - [-10.999583, 8.93375], - [-11.002083, 8.932916], - [-11.002082, 8.929583], - [-11.000417, 8.928749], - [-11.000416, 8.92625], - [-10.999583, 8.925416], - [-11.000187, 8.923], - [-10.999985, 8.922949], - [-10.999984, 8.922947], - [-11.000416, 8.922083], - [-10.999583, 8.920417], - [-11.002916, 8.918749], - [-11.003749, 8.917083], - [-11.002082, 8.916249], - [-11.00125, 8.912917], - [-11.001249, 8.910417], - [-10.999052, 8.909317], - [-10.999613, 8.908979], - [-11.00141, 8.90588], - [-11.002885, 8.904254], - [-11.002919, 8.904169], - [-11.002082, 8.903749], - [-11.00125, 8.900417], - [-11.001249, 8.897917], - [-10.997083, 8.894582], - [-11.000416, 8.890416], - [-11.000416, 8.887917], - [-10.997916, 8.88625], - [-10.992917, 8.888749], - [-10.992916, 8.882083], - [-10.99125, 8.882083], - [-10.988749, 8.884582], - [-10.985417, 8.88375], - [-10.983161, 8.882622], - [-10.983772, 8.880054], - [-10.983702, 8.879771], - [-10.98371, 8.879305], - [-10.984253, 8.878611], - [-10.986525, 8.876869], - [-10.987067, 8.875967], - [-10.985416, 8.875416], - [-10.98375, 8.874582], - [-10.983749, 8.870417], - [-10.977083, 8.870417], - [-10.97375, 8.871249], - [-10.972917, 8.87125], - [-10.970417, 8.870417], - [-10.969583, 8.870416], - [-10.96875, 8.869583], - [-10.96875, 8.860417], - [-10.970417, 8.856249], - [-10.970416, 8.855417], - [-10.969582, 8.854583], - [-10.967083, 8.85375], - [-10.964582, 8.855416], - [-10.961078, 8.856001], - [-10.961194, 8.856366], - [-10.961088, 8.857119], - [-10.960423, 8.858295], - [-10.960378, 8.858707], - [-10.960679, 8.859629], - [-10.960654, 8.860549], - [-10.960611, 8.861249], - [-10.95875, 8.86125], - [-10.958605, 8.8601], - [-10.954042, 8.860099], - [-10.950136, 8.853334], - [-10.945857, 8.853333], - [-10.945456, 8.84614], - [-10.940693, 8.846139], - [-10.939313, 8.843751], - [-10.939314, 8.84375], - [-10.940804, 8.843749], - [-10.939748, 8.841918], - [-10.943749, 8.837916], - [-10.943749, 8.829583], - [-10.92375, 8.827917], - [-10.92375, 8.835011], - [-10.923983, 8.835418], - [-10.92375, 8.835824], - [-10.923749, 8.837083], - [-10.921249, 8.839582], - [-10.91625, 8.839583], - [-10.912083, 8.842916], - [-10.909582, 8.848749], - [-10.908749, 8.848749], - [-10.907916, 8.842916], - [-10.900417, 8.842083], - [-10.900416, 8.84375], - [-10.898749, 8.844583], - [-10.888749, 8.84875], - [-10.888577, 8.84875], - [-10.888576, 8.848748], - [-10.888867, 8.843482], - [-10.882244, 8.843482], - [-10.880508, 8.846489], - [-10.877082, 8.84375], - [-10.867917, 8.84375], - [-10.862083, 8.852917], - [-10.861249, 8.857083], - [-10.857917, 8.860416], - [-10.855852, 8.860416], - [-10.85551, 8.859715], - [-10.847083, 8.860416], - [-10.844213, 8.85812], - [-10.84132, 8.863128], - [-10.833508, 8.863129], - [-10.829602, 8.869894], - [-10.82926, 8.869895], - [-10.828799, 8.8734], - [-10.828599, 8.8826], - [-10.8278, 8.886499], - [-10.826, 8.890899], - [-10.825399, 8.8937], - [-10.8251, 8.9013], - [-10.8255, 8.911799], - [-10.8343, 8.9156], - [-10.849499, 8.922799], - [-10.856899, 8.926899], - [-10.8604, 8.9294], - [-10.868199, 8.936299], - [-10.872999, 8.939299], - [-10.881799, 8.941599], - [-10.885099, 8.9434], - [-10.8883, 8.947], - [-10.8907, 8.9523], - [-10.8927, 8.9588], - [-10.8941, 8.9613], - [-10.8959, 8.9637], - [-10.899999, 8.967999], - [-10.904499, 8.971899], - [-10.911, 8.976], - [-10.919799, 8.982899], - [-10.9262, 8.9871], - [-10.9304, 8.9908], - [-10.9332, 8.994], - [-10.9375, 9.0003], - [-10.952099, 9.016399], - [-10.9601, 9.0304], - [-10.965599, 9.037699], - [-10.969299, 9.040699], - [-10.978799, 9.044199], - [-10.979702, 9.044343], - [-10.979774, 9.043692], - [-10.979366, 9.042982], - [-10.97997, 9.041935], - [-10.980416, 9.037917], - [-10.98304, 9.035816], - [-10.979366, 9.02945], - [-10.983271, 9.022685], - [-10.991083, 9.022684], - [-10.99499, 9.01592], - [-10.994427, 9.014943], - [-10.997622, 9.014676], - [-10.997872, 9.012429], - [-11.004582, 9.010416], - [-11.008749, 9.002083] - ] - ], - "type": "Polygon" - }, - "id": 226, - "properties": { - "cc:admin:id": ["119"], - "cc:oBld:total": 463, - "cc:pop:fifteen-to-twenty-four": 1194.4043449566389, - "cc:pop:grid3-total": 11944.0912586965, - "cc:pop:kontur-total": 6131.829764837404, - "cc:pop:men": 3029.6483013100374, - "cc:pop:sixty-plus": 358.8203417613098, - "cc:pop:total": 6137.622670749627, - "cc:pop:under-five": 1001.1828860456292, - "cc:pop:women": 3107.9743694395897, - "cc:pop:women-fiften-to-forty-nine": 1531.9462828115584, - "cc:pop:wp-total": 5064.408625710691, - "cc:pop:wp-total-UN": 5889.907719865519, - "cc:id": "226", - "cc:Name": "Kochero MCHP", - "cc:site": [-10.9094, 8.9077], - "user:parentName": "Sandor", - "user:code": "OU_233366", - "user:orgUnitId": "VF7LfO19vxS", - "user:level": "4", - "user:parentId": "g5ptsn0SFX8" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.955525, 8.63952], - [-10.955162, 8.638961], - [-10.954863, 8.63861], - [-10.954442, 8.638961], - [-10.953965, 8.63942], - [-10.953327, 8.638542], - [-10.953763, 8.638151], - [-10.95303, 8.637012], - [-10.951862, 8.635372], - [-10.952903, 8.634756], - [-10.952192, 8.633947], - [-10.952106, 8.633841], - [-10.951508, 8.633186], - [-10.950746, 8.632481], - [-10.950659, 8.632405], - [-10.950436, 8.632173], - [-10.950708, 8.631759], - [-10.95113, 8.631396], - [-10.951198, 8.631306], - [-10.950934, 8.630955], - [-10.950954, 8.630487], - [-10.950473, 8.630495], - [-10.950153, 8.630321], - [-10.950008, 8.630027], - [-10.948799, 8.6301], - [-10.945399, 8.631], - [-10.9419, 8.632899], - [-10.938699, 8.6342], - [-10.9345, 8.636699], - [-10.931399, 8.6381], - [-10.9278, 8.640099], - [-10.925399, 8.6409], - [-10.9218, 8.640899], - [-10.9184, 8.639499], - [-10.9151, 8.6361], - [-10.913399, 8.6329], - [-10.9085, 8.637399], - [-10.9055, 8.639699], - [-10.9021, 8.641299], - [-10.8999, 8.642599], - [-10.8971, 8.645199], - [-10.894399, 8.6489], - [-10.892299, 8.653], - [-10.8894, 8.656499], - [-10.8867, 8.658699], - [-10.8829, 8.660399], - [-10.879199, 8.6623], - [-10.876799, 8.663], - [-10.8734, 8.663599], - [-10.8707, 8.664699], - [-10.867599, 8.6671], - [-10.865199, 8.6701], - [-10.862699, 8.675], - [-10.860599, 8.6778], - [-10.8562, 8.682499], - [-10.854, 8.685299], - [-10.8512, 8.690599], - [-10.847099, 8.6958], - [-10.8439, 8.701699], - [-10.839699, 8.707], - [-10.8353, 8.715399], - [-10.8346, 8.7189], - [-10.8346, 8.735399], - [-10.842699, 8.738999], - [-10.846599, 8.742299], - [-10.8491, 8.7456], - [-10.850899, 8.749499], - [-10.8529, 8.7531], - [-10.855, 8.7574], - [-10.8578, 8.7605], - [-10.8607, 8.7628], - [-10.8658, 8.7654], - [-10.868999, 8.767999], - [-10.870799, 8.770099], - [-10.8719, 8.7721], - [-10.873499, 8.778499], - [-10.875699, 8.783799], - [-10.8769, 8.7889], - [-10.880005, 8.795111], - [-10.882917, 8.798749], - [-10.886571, 8.799271], - [-10.885115, 8.796748], - [-10.88902, 8.789983], - [-10.893432, 8.789982], - [-10.892082, 8.784583], - [-10.890416, 8.784582], - [-10.886305, 8.781157], - [-10.885114, 8.783216], - [-10.881416, 8.783217], - [-10.881174, 8.783505], - [-10.878563, 8.778982], - [-10.882037, 8.772962], - [-10.886249, 8.768749], - [-10.885417, 8.76125], - [-10.887083, 8.760417], - [-10.900416, 8.760416], - [-10.899582, 8.757082], - [-10.898749, 8.749583], - [-10.897917, 8.749582], - [-10.897917, 8.740417], - [-10.898749, 8.740416], - [-10.899583, 8.737083], - [-10.904582, 8.736249], - [-10.906249, 8.73125], - [-10.902429, 8.729976], - [-10.902571, 8.729806], - [-10.903792, 8.727091], - [-10.905339, 8.726393], - [-10.905834, 8.725769], - [-10.906528, 8.724462], - [-10.906752, 8.723062], - [-10.90718, 8.721736], - [-10.907462, 8.720678], - [-10.907651, 8.720027], - [-10.909952, 8.716022], - [-10.911128, 8.713556], - [-10.911354, 8.712646], - [-10.911476, 8.712254], - [-10.911659, 8.711874], - [-10.912562, 8.71065], - [-10.912949, 8.709805], - [-10.913253, 8.708702], - [-10.913307, 8.708479], - [-10.913488, 8.707856], - [-10.913688, 8.70745], - [-10.914098, 8.70663], - [-10.914295, 8.705148], - [-10.914931, 8.703155], - [-10.915517, 8.70184], - [-10.916378, 8.70047], - [-10.917161, 8.69952], - [-10.918083, 8.698949], - [-10.917803, 8.698791], - [-10.91785, 8.698293], - [-10.917672, 8.697741], - [-10.918142, 8.697709], - [-10.918174, 8.697175], - [-10.919417, 8.696076], - [-10.919313, 8.695054], - [-10.918987, 8.694855], - [-10.91932, 8.693881], - [-10.91967, 8.693663], - [-10.919865, 8.694007], - [-10.921249, 8.687083], - [-10.924582, 8.686249], - [-10.92478, 8.686052], - [-10.924864, 8.686109], - [-10.927916, 8.684582], - [-10.92625, 8.679583], - [-10.928749, 8.677082], - [-10.92875, 8.674583], - [-10.932083, 8.675417], - [-10.936116, 8.677433], - [-10.935941, 8.67699], - [-10.935634, 8.674194], - [-10.935719, 8.673754], - [-10.936256, 8.67284], - [-10.936762, 8.672902], - [-10.937118, 8.673423], - [-10.937708, 8.673728], - [-10.938113, 8.673748], - [-10.9392, 8.672713], - [-10.939564, 8.672586], - [-10.940258, 8.671925], - [-10.937917, 8.669583], - [-10.937917, 8.667916], - [-10.93875, 8.667084], - [-10.941401, 8.667083], - [-10.942324, 8.668089], - [-10.94273, 8.668114], - [-10.944691, 8.66887], - [-10.944804, 8.66874], - [-10.945428, 8.667246], - [-10.945422, 8.666885], - [-10.945297, 8.666769], - [-10.945186, 8.66687], - [-10.943518, 8.666611], - [-10.942814, 8.666148], - [-10.942243, 8.666083], - [-10.940771, 8.665479], - [-10.939592, 8.664275], - [-10.939817, 8.66413], - [-10.940817, 8.664744], - [-10.942198, 8.664311], - [-10.941728, 8.663333], - [-10.941368, 8.661812], - [-10.941363, 8.659769], - [-10.941977, 8.659318], - [-10.943222, 8.658177], - [-10.944642, 8.65677], - [-10.945838, 8.654421], - [-10.946903, 8.6539], - [-10.948649, 8.654083], - [-10.949978, 8.653773], - [-10.950086, 8.653758], - [-10.950447, 8.653632], - [-10.950906, 8.653203], - [-10.951449, 8.651856], - [-10.951763, 8.651647], - [-10.951809, 8.651413], - [-10.952234, 8.651166], - [-10.95292, 8.650667], - [-10.953152, 8.649865], - [-10.953133, 8.64879], - [-10.953212, 8.648545], - [-10.953059, 8.648121], - [-10.953, 8.647537], - [-10.953681, 8.647436], - [-10.954016, 8.647302], - [-10.953867, 8.647009], - [-10.953921, 8.646221], - [-10.953147, 8.646459], - [-10.952976, 8.646176], - [-10.952986, 8.645622], - [-10.952124, 8.64571], - [-10.952106, 8.645586], - [-10.952055, 8.645092], - [-10.951968, 8.644487], - [-10.954655, 8.644208], - [-10.954565, 8.643682], - [-10.954575, 8.643614], - [-10.954566, 8.643608], - [-10.954569, 8.642593], - [-10.954582, 8.642309], - [-10.954596, 8.642184], - [-10.954642, 8.641559], - [-10.955068, 8.639997], - [-10.955525, 8.63952] - ] - ], - "type": "Polygon" - }, - "id": 227, - "properties": { - "cc:admin:id": ["33"], - "cc:oBld:total": 5211, - "cc:pop:fifteen-to-twenty-four": 3443.587480210181, - "cc:pop:grid3-total": 20469.199993188122, - "cc:pop:kontur-total": 16900.860829994774, - "cc:pop:men": 9042.415224815504, - "cc:pop:sixty-plus": 924.6243399593542, - "cc:pop:total": 17018.211229941735, - "cc:pop:under-five": 2597.615326528325, - "cc:pop:women": 7975.796005126236, - "cc:pop:women-fiften-to-forty-nine": 4025.1738907804042, - "cc:pop:wp-total": 12624.788168591693, - "cc:pop:wp-total-UN": 14633.630611538469, - "cc:id": "227", - "cc:Name": "Koeyor MCHP", - "cc:site": [-10.9475, 8.6488], - "user:parentName": "Gbense", - "user:code": "OU_233384", - "user:orgUnitId": "zsqxu7ZZRpO", - "user:level": "4", - "user:parentId": "TQkG0sX9nca" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.969468, 8.645507], - [-10.969451, 8.645137], - [-10.969197, 8.644471], - [-10.968664, 8.6446], - [-10.968103, 8.644738], - [-10.968069, 8.643839], - [-10.967999, 8.643138], - [-10.967184, 8.643238], - [-10.967183, 8.643245], - [-10.967147, 8.643244], - [-10.966404, 8.642861], - [-10.966355, 8.642961], - [-10.963837, 8.642619], - [-10.963055, 8.642559], - [-10.963199, 8.641409], - [-10.963112, 8.641411], - [-10.961903, 8.641401], - [-10.961769, 8.641554], - [-10.961684, 8.641407], - [-10.961591, 8.64132], - [-10.961474, 8.640835], - [-10.961084, 8.641101], - [-10.959423, 8.639987], - [-10.957601, 8.639058], - [-10.957601, 8.639056], - [-10.958208, 8.63903], - [-10.958269, 8.638726], - [-10.958231, 8.638357], - [-10.959305, 8.638396], - [-10.959275, 8.638356], - [-10.958908, 8.637282], - [-10.95863, 8.636954], - [-10.958188, 8.636892], - [-10.958199, 8.636337], - [-10.957897, 8.636471], - [-10.957704, 8.636486], - [-10.957202, 8.635549], - [-10.956857, 8.635034], - [-10.956275, 8.634216], - [-10.955993, 8.633858], - [-10.95563, 8.634107], - [-10.95555, 8.63417], - [-10.955046, 8.63451], - [-10.954975, 8.634547], - [-10.9547, 8.634059], - [-10.954851, 8.63394], - [-10.954678, 8.633488], - [-10.954084, 8.633151], - [-10.953933, 8.633175], - [-10.953535, 8.632632], - [-10.953246, 8.632344], - [-10.953424, 8.631949], - [-10.953209, 8.631335], - [-10.953148, 8.630744], - [-10.953125, 8.630085], - [-10.953126, 8.62984], - [-10.950009, 8.630027], - [-10.950153, 8.63032], - [-10.950473, 8.630495], - [-10.950954, 8.630487], - [-10.950934, 8.630955], - [-10.951198, 8.631306], - [-10.95113, 8.631396], - [-10.950708, 8.631759], - [-10.950436, 8.632172], - [-10.950659, 8.632405], - [-10.950746, 8.632481], - [-10.951508, 8.633186], - [-10.952106, 8.633841], - [-10.952192, 8.633947], - [-10.952903, 8.634756], - [-10.951862, 8.635372], - [-10.95303, 8.637012], - [-10.953763, 8.638151], - [-10.953327, 8.638542], - [-10.953965, 8.63942], - [-10.954442, 8.638961], - [-10.954864, 8.63861], - [-10.955162, 8.638961], - [-10.955525, 8.63952], - [-10.955069, 8.639997], - [-10.954642, 8.641559], - [-10.954596, 8.642184], - [-10.954582, 8.642309], - [-10.954569, 8.642593], - [-10.954566, 8.643608], - [-10.954575, 8.643614], - [-10.954565, 8.643682], - [-10.954655, 8.644208], - [-10.951968, 8.644487], - [-10.952055, 8.645092], - [-10.952106, 8.645586], - [-10.952124, 8.64571], - [-10.952986, 8.645622], - [-10.952976, 8.646176], - [-10.953147, 8.646459], - [-10.953921, 8.646221], - [-10.953867, 8.647009], - [-10.954016, 8.647302], - [-10.953681, 8.647436], - [-10.953, 8.647537], - [-10.953059, 8.648121], - [-10.953212, 8.648545], - [-10.953133, 8.64879], - [-10.953152, 8.649865], - [-10.952921, 8.650667], - [-10.952234, 8.651166], - [-10.951809, 8.651413], - [-10.951764, 8.651647], - [-10.95287, 8.651506], - [-10.954437, 8.651736], - [-10.957048, 8.653125], - [-10.957563, 8.653539], - [-10.957662, 8.653826], - [-10.958478, 8.653447], - [-10.959073, 8.653151], - [-10.960038, 8.652825], - [-10.961098, 8.651825], - [-10.961282, 8.651372], - [-10.961947, 8.649564], - [-10.962114, 8.64949], - [-10.963126, 8.648855], - [-10.963755, 8.648643], - [-10.964578, 8.648652], - [-10.965375, 8.648046], - [-10.966109, 8.647562], - [-10.96639, 8.647333], - [-10.966695, 8.647224], - [-10.968113, 8.646566], - [-10.969312, 8.64593], - [-10.969468, 8.645507] - ] - ], - "type": "Polygon" - }, - "id": 228, - "properties": { - "cc:admin:id": ["33"], - "cc:oBld:total": 3218, - "cc:pop:fifteen-to-twenty-four": 2436.6189560157663, - "cc:pop:grid3-total": 19441.83106208039, - "cc:pop:kontur-total": 13973.116960050154, - "cc:pop:men": 6640.198015625703, - "cc:pop:sixty-plus": 744.1253457894477, - "cc:pop:total": 12542.835290337633, - "cc:pop:under-five": 1968.2498323718905, - "cc:pop:women": 5902.637274711929, - "cc:pop:women-fiften-to-forty-nine": 2962.1312792441527, - "cc:pop:wp-total": 11351.342650393948, - "cc:pop:wp-total-UN": 13163.67638309329, - "cc:id": "228", - "cc:Name": "Koidu Govt. Hospital", - "cc:site": [-10.965, 8.648], - "user:parentName": "Gbense", - "user:code": "OU_233387", - "user:orgUnitId": "OzjRQLn3G24", - "user:level": "4", - "user:parentId": "TQkG0sX9nca" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.979245, 8.659232], - [-10.979077, 8.65848], - [-10.976641, 8.657559], - [-10.975906, 8.657154], - [-10.975578, 8.654762], - [-10.975309, 8.652246], - [-10.974752, 8.652178], - [-10.974601, 8.650381], - [-10.974336, 8.650363], - [-10.974103, 8.651147], - [-10.973495, 8.651201], - [-10.972976, 8.651225], - [-10.973011, 8.650512], - [-10.973469, 8.650418], - [-10.973436, 8.649021], - [-10.973579, 8.648525], - [-10.972836, 8.648361], - [-10.972638, 8.648385], - [-10.972075, 8.648373], - [-10.971487, 8.64784], - [-10.971058, 8.647348], - [-10.970944, 8.647199], - [-10.970639, 8.646932], - [-10.970993, 8.646315], - [-10.971036, 8.645848], - [-10.970924, 8.645201], - [-10.969469, 8.645508], - [-10.969312, 8.64593], - [-10.968113, 8.646566], - [-10.966695, 8.647224], - [-10.96639, 8.647333], - [-10.966109, 8.647562], - [-10.965375, 8.648046], - [-10.964579, 8.648652], - [-10.963755, 8.648643], - [-10.963126, 8.648855], - [-10.962114, 8.64949], - [-10.961947, 8.649565], - [-10.961282, 8.651372], - [-10.961098, 8.651825], - [-10.960038, 8.652825], - [-10.959073, 8.653151], - [-10.958478, 8.653447], - [-10.957662, 8.653827], - [-10.957701, 8.654034], - [-10.957739, 8.654125], - [-10.958751, 8.65738], - [-10.958791, 8.657547], - [-10.958996, 8.658325], - [-10.959079, 8.658568], - [-10.959482, 8.659395], - [-10.961175, 8.660363], - [-10.961384, 8.660461], - [-10.964827, 8.662204], - [-10.964267, 8.661171], - [-10.963698, 8.660869], - [-10.964437, 8.660711], - [-10.965187, 8.660905], - [-10.964939, 8.662276], - [-10.964987, 8.662924], - [-10.965582, 8.662652], - [-10.966824, 8.663378], - [-10.967331, 8.663645], - [-10.969227, 8.664576], - [-10.971251, 8.665696], - [-10.971387, 8.665775], - [-10.971721, 8.666055], - [-10.973163, 8.666411], - [-10.97366, 8.666541], - [-10.974374, 8.666654], - [-10.976138, 8.667052], - [-10.976218, 8.666286], - [-10.976016, 8.664178], - [-10.975981, 8.664115], - [-10.975598, 8.662519], - [-10.975559, 8.661671], - [-10.975556, 8.661551], - [-10.975732, 8.660848], - [-10.975734, 8.660848], - [-10.976448, 8.661689], - [-10.976736, 8.66174], - [-10.9778, 8.661686], - [-10.977867, 8.661695], - [-10.978224, 8.661357], - [-10.979061, 8.661244], - [-10.979245, 8.659232] - ] - ], - "type": "Polygon" - }, - "id": 229, - "properties": { - "cc:admin:id": ["33"], - "cc:oBld:total": 3396, - "cc:pop:fifteen-to-twenty-four": 2421.099881305162, - "cc:pop:grid3-total": 17713.641013867884, - "cc:pop:kontur-total": 10107.506924770758, - "cc:pop:men": 6612.968991445455, - "cc:pop:sixty-plus": 741.4604784636178, - "cc:pop:total": 12480.111939745495, - "cc:pop:under-five": 1959.9542264482789, - "cc:pop:women": 5867.142948300037, - "cc:pop:women-fiften-to-forty-nine": 2949.8704529303177, - "cc:pop:wp-total": 11711.65465055892, - "cc:pop:wp-total-UN": 13578.769592255447, - "cc:id": "229", - "cc:Name": "Koidu Under Five Clinic", - "cc:site": [-10.9659, 8.6481], - "user:parentName": "Gbense", - "user:code": "OU_233376", - "user:orgUnitId": "Ls2ESQONh9S", - "user:level": "4", - "user:parentId": "TQkG0sX9nca" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.323015, 9.676496], - [-11.319582, 9.67375], - [-11.316255, 9.673987], - [-11.318554, 9.670002], - [-11.315332, 9.664422], - [-11.3087, 9.665299], - [-11.306, 9.665899], - [-11.3015, 9.667799], - [-11.298699, 9.6684], - [-11.294699, 9.6687], - [-11.2855, 9.6687], - [-11.2806, 9.669399], - [-11.2753, 9.671499], - [-11.272399, 9.6722], - [-11.266299, 9.672499], - [-11.2373, 9.6723], - [-11.230099, 9.6727], - [-11.227299, 9.6732], - [-11.222, 9.675599], - [-11.216199, 9.6771], - [-11.210699, 9.6793], - [-11.206899, 9.679899], - [-11.1855, 9.6798], - [-11.182499, 9.68], - [-11.179599, 9.6805], - [-11.173299, 9.683], - [-11.169499, 9.6835], - [-11.1637, 9.683799], - [-11.16, 9.684499], - [-11.155499, 9.6864], - [-11.1498, 9.6885], - [-11.1468, 9.691999], - [-11.1443, 9.693999], - [-11.140599, 9.6959], - [-11.1334, 9.700299], - [-11.1264, 9.702899], - [-11.1221, 9.705299], - [-11.1189, 9.706599], - [-11.1147, 9.708999], - [-11.111399, 9.7104], - [-11.107599, 9.7133], - [-11.1014, 9.719299], - [-11.099, 9.721999], - [-11.0972, 9.7249], - [-11.0955, 9.731699], - [-11.093399, 9.7369], - [-11.092099, 9.742599], - [-11.0902, 9.745699], - [-11.0849, 9.751299], - [-11.0828, 9.753999], - [-11.0809, 9.757899], - [-11.079099, 9.7605], - [-11.076199, 9.7637], - [-11.0678, 9.771999], - [-11.065399, 9.7748], - [-11.064, 9.7771], - [-11.0627, 9.782999], - [-11.0618, 9.785299], - [-11.0585, 9.792099], - [-11.056599, 9.7948], - [-11.0503, 9.802499], - [-11.0471, 9.805899], - [-11.069799, 9.828099], - [-11.096199, 9.845599], - [-11.0973, 9.847899], - [-11.142799, 9.869099], - [-11.154399, 9.8792], - [-11.1602, 9.8905], - [-11.1646, 9.9126], - [-11.1671, 9.9448], - [-11.171299, 9.966199], - [-11.174999, 9.975799], - [-11.194699, 9.991099], - [-11.205999, 9.999999], - [-11.2067, 10.000399], - [-11.236254, 9.999828], - [-11.242899, 9.9997], - [-11.245416, 9.999653], - [-11.245416, 9.987917], - [-11.243206, 9.985706], - [-11.243207, 9.985704], - [-11.243544, 9.985698], - [-11.242083, 9.98375], - [-11.242083, 9.981126], - [-11.242306, 9.980738], - [-11.242094, 9.98037], - [-11.243749, 9.973749], - [-11.242917, 9.970417], - [-11.244582, 9.968749], - [-11.246249, 9.959583], - [-11.247082, 9.959582], - [-11.249582, 9.957916], - [-11.252083, 9.950417], - [-11.25375, 9.950417], - [-11.257917, 9.955416], - [-11.259583, 9.955417], - [-11.262916, 9.958749], - [-11.259582, 9.939583], - [-11.25754, 9.939875], - [-11.257539, 9.939874], - [-11.260702, 9.934393], - [-11.256796, 9.927628], - [-11.254827, 9.927627], - [-11.255254, 9.924211], - [-11.254137, 9.924168], - [-11.250417, 9.91375], - [-11.256249, 9.907917], - [-11.258394, 9.907379], - [-11.258384, 9.907358], - [-11.258345, 9.907192], - [-11.258282, 9.905702], - [-11.257978, 9.905072], - [-11.257743, 9.904766], - [-11.257599, 9.904642], - [-11.262082, 9.897917], - [-11.254583, 9.894582], - [-11.252082, 9.887083], - [-11.249583, 9.887082], - [-11.247083, 9.884583], - [-11.245417, 9.880417], - [-11.252082, 9.870416], - [-11.252083, 9.865417], - [-11.250416, 9.865416], - [-11.249583, 9.859583], - [-11.250416, 9.85375], - [-11.245417, 9.852083], - [-11.245417, 9.85125], - [-11.248749, 9.848749], - [-11.24875, 9.847082], - [-11.257082, 9.844582], - [-11.257082, 9.842917], - [-11.252672, 9.83777], - [-11.25236, 9.838321], - [-11.252301, 9.838353], - [-11.252082, 9.837916], - [-11.244583, 9.834583], - [-11.24375, 9.833749], - [-11.24375, 9.832082], - [-11.247082, 9.829582], - [-11.247083, 9.827917], - [-11.242083, 9.82375], - [-11.24125, 9.822916], - [-11.24125, 9.821249], - [-11.245416, 9.81125], - [-11.244582, 9.809583], - [-11.242082, 9.80875], - [-11.241156, 9.808749], - [-11.240925, 9.804961], - [-11.242322, 9.794964], - [-11.24056, 9.79412], - [-11.240032, 9.794111], - [-11.238936, 9.794553], - [-11.237954, 9.794341], - [-11.236879, 9.792729], - [-11.234907, 9.791759], - [-11.233014, 9.791241], - [-11.232415, 9.790784], - [-11.232248, 9.790285], - [-11.231374, 9.789323], - [-11.229853, 9.78956], - [-11.229773, 9.789538], - [-11.229772, 9.789536], - [-11.239582, 9.787082], - [-11.244582, 9.774583], - [-11.246216, 9.774746], - [-11.244336, 9.771488], - [-11.248241, 9.764724], - [-11.256054, 9.764723], - [-11.257345, 9.762488], - [-11.262917, 9.762916], - [-11.26375, 9.761249], - [-11.264582, 9.757083], - [-11.25875, 9.752083], - [-11.258749, 9.750417], - [-11.25375, 9.744582], - [-11.25625, 9.742083], - [-11.258608, 9.742082], - [-11.256055, 9.737659], - [-11.256868, 9.73625], - [-11.257083, 9.736249], - [-11.261249, 9.732916], - [-11.261405, 9.730894], - [-11.267773, 9.730893], - [-11.271679, 9.724129], - [-11.267774, 9.717363], - [-11.271679, 9.710597], - [-11.279491, 9.710596], - [-11.283399, 9.703831], - [-11.29121, 9.70383], - [-11.295117, 9.697065], - [-11.302929, 9.697064], - [-11.306578, 9.690746], - [-11.30658, 9.690746], - [-11.307917, 9.692082], - [-11.315231, 9.684768], - [-11.315218, 9.684754], - [-11.314674, 9.683849], - [-11.314517, 9.683818], - [-11.314709, 9.682697], - [-11.315159, 9.682169], - [-11.318366, 9.679778], - [-11.321738, 9.677672], - [-11.323015, 9.676496] - ] - ], - "type": "Polygon" - }, - "id": 231, - "properties": { - "cc:admin:id": ["129"], - "cc:oBld:total": 1224, - "cc:pop:fifteen-to-twenty-four": 3097.4965678167027, - "cc:pop:grid3-total": 16424.02570575358, - "cc:pop:kontur-total": 17234.52973174387, - "cc:pop:men": 8095.218796667414, - "cc:pop:sixty-plus": 1074.436508229101, - "cc:pop:total": 16911.84840663152, - "cc:pop:under-five": 2765.933607103031, - "cc:pop:women": 8816.629609964119, - "cc:pop:women-fiften-to-forty-nine": 4305.690009818823, - "cc:pop:wp-total": 14011.711494776924, - "cc:pop:wp-total-UN": 16233.479924742598, - "cc:id": "231", - "cc:Name": "Koindukura MCHP", - "cc:site": [-11.1676, 9.8765], - "user:parentName": "Sulima (Koinadugu)", - "user:code": "OU_226229", - "user:orgUnitId": "bqSIIRuZ1qj", - "user:level": "4", - "user:parentId": "PaqugoqjRIj" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.155499, 7.625], - [-11.1513, 7.6227], - [-11.1483, 7.6205], - [-11.1443, 7.6167], - [-11.1426, 7.614599], - [-11.1418, 7.612599], - [-11.141899, 7.6098], - [-11.143899, 7.604799], - [-11.143599, 7.6019], - [-11.1422, 7.5994], - [-11.1405, 7.5975], - [-11.137199, 7.595399], - [-11.1343, 7.595], - [-11.1319, 7.596099], - [-11.13, 7.597599], - [-11.1278, 7.600199], - [-11.1265, 7.602299], - [-11.124499, 7.6066], - [-11.1216, 7.610099], - [-11.1184, 7.612299], - [-11.112199, 7.614], - [-11.106099, 7.6165], - [-11.103499, 7.6169], - [-11.098899, 7.6171], - [-11.0942, 7.6171], - [-11.0915, 7.6169], - [-11.0893, 7.6164], - [-11.086699, 7.614899], - [-11.082, 7.6112], - [-11.07875, 7.60945], - [-11.07875, 7.614583], - [-11.080416, 7.619583], - [-11.085416, 7.627916], - [-11.08625, 7.627917], - [-11.088749, 7.634583], - [-11.08625, 7.64125], - [-11.086943, 7.64749], - [-11.090336, 7.646045], - [-11.09393, 7.64459], - [-11.097845, 7.642333], - [-11.099422, 7.641377], - [-11.104583, 7.648749], - [-11.107082, 7.64875], - [-11.107082, 7.657083], - [-11.104583, 7.660416], - [-11.109582, 7.660417], - [-11.117083, 7.667916], - [-11.121248, 7.667917], - [-11.120417, 7.669584], - [-11.122082, 7.674583], - [-11.125401, 7.677901], - [-11.1258, 7.677499], - [-11.128099, 7.6748], - [-11.129699, 7.672], - [-11.1312, 7.665799], - [-11.133299, 7.6614], - [-11.1346, 7.658199], - [-11.136599, 7.6546], - [-11.1383, 7.650699], - [-11.142099, 7.6434], - [-11.144, 7.640999], - [-11.147499, 7.638199], - [-11.148499, 7.6362], - [-11.149299, 7.633], - [-11.1503, 7.6308], - [-11.155499, 7.625] - ] - ], - "type": "Polygon" - }, - "id": 232, - "properties": { - "cc:admin:id": ["28"], - "cc:oBld:total": 636, - "cc:pop:fifteen-to-twenty-four": 812.530458078752, - "cc:pop:grid3-total": 3017.527952073264, - "cc:pop:kontur-total": 4864.801612043499, - "cc:pop:men": 2031.3261451968801, - "cc:pop:sixty-plus": 245.79252067282022, - "cc:pop:total": 4194.942328548843, - "cc:pop:under-five": 660.0577497121963, - "cc:pop:women": 2163.6161833519627, - "cc:pop:women-fiften-to-forty-nine": 1086.5056489630454, - "cc:pop:wp-total": 3713.2982261070265, - "cc:pop:wp-total-UN": 4306.899356265056, - "cc:id": "232", - "cc:Name": "Kokoru CHP", - "cc:site": [-11.1165, 7.6297], - "user:parentName": "Gaura", - "user:code": "OU_222747", - "user:orgUnitId": "F2TAF765q1b", - "user:level": "4", - "user:parentId": "eROJsBwxQHt" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.266799, 8.723199], - [-12.266599, 8.7188], - [-12.264799, 8.7155], - [-12.262699, 8.7144], - [-12.2593, 8.7147], - [-12.256299, 8.7173], - [-12.2526, 8.724499], - [-12.248999, 8.731899], - [-12.245699, 8.734299], - [-12.2422, 8.734799], - [-12.239099, 8.732899], - [-12.2379, 8.729999], - [-12.2374, 8.7204], - [-12.2362, 8.7155], - [-12.234699, 8.7126], - [-12.232199, 8.7108], - [-12.2277, 8.7104], - [-12.2147, 8.715699], - [-12.210399, 8.7167], - [-12.202899, 8.717099], - [-12.1901, 8.7167], - [-12.1878, 8.722899], - [-12.186499, 8.7289], - [-12.1841, 8.734099], - [-12.182799, 8.7373], - [-12.1805, 8.741499], - [-12.179199, 8.7447], - [-12.176799, 8.749], - [-12.1741, 8.754199], - [-12.170099, 8.7592], - [-12.168099, 8.7633], - [-12.1657, 8.767599], - [-12.164399, 8.7708], - [-12.1621, 8.774999], - [-12.160799, 8.7782], - [-12.1585, 8.782499], - [-12.156999, 8.7857], - [-12.154899, 8.7888], - [-12.151699, 8.7922], - [-12.1491, 8.794499], - [-12.1464, 8.796399], - [-12.144169, 8.797489], - [-12.14375, 8.798749], - [-12.147916, 8.79875], - [-12.147972, 8.798805], - [-12.149031, 8.79815], - [-12.150827, 8.797534], - [-12.152029, 8.796758], - [-12.15331, 8.796207], - [-12.153749, 8.797083], - [-12.153749, 8.797917], - [-12.147917, 8.80125], - [-12.14625, 8.803749], - [-12.149582, 8.807083], - [-12.147917, 8.811249], - [-12.155429, 8.807835], - [-12.155626, 8.807475], - [-12.155699, 8.807382], - [-12.15625, 8.809582], - [-12.162082, 8.812083], - [-12.16125, 8.815417], - [-12.165417, 8.817916], - [-12.176068, 8.820374], - [-12.176042, 8.820592], - [-12.176067, 8.820624], - [-12.170417, 8.827083], - [-12.171673, 8.831481], - [-12.178553, 8.830511], - [-12.179562, 8.830354], - [-12.180843, 8.83018], - [-12.181669, 8.828118], - [-12.182305, 8.828916], - [-12.182699, 8.829885], - [-12.182714, 8.829927], - [-12.186427, 8.829246], - [-12.188248, 8.828643], - [-12.191733, 8.827218], - [-12.192917, 8.829582], - [-12.198074, 8.829068], - [-12.201504, 8.829068], - [-12.204583, 8.832916], - [-12.210416, 8.832916], - [-12.211133, 8.822882], - [-12.215782, 8.823021], - [-12.216767, 8.822925], - [-12.217387, 8.822795], - [-12.217621, 8.822733], - [-12.219127, 8.822276], - [-12.223458, 8.820669], - [-12.22375, 8.821249], - [-12.227083, 8.82125], - [-12.231249, 8.826249], - [-12.233749, 8.821249], - [-12.23246, 8.81738], - [-12.233203, 8.817203], - [-12.232799, 8.816718], - [-12.231774, 8.816178], - [-12.232917, 8.815417], - [-12.234582, 8.816249], - [-12.237082, 8.812083], - [-12.237916, 8.805417], - [-12.241249, 8.806249], - [-12.244582, 8.805416], - [-12.245417, 8.800416], - [-12.247916, 8.797917], - [-12.249582, 8.797916], - [-12.250416, 8.792083], - [-12.249583, 8.787917], - [-12.253749, 8.781249], - [-12.253749, 8.778749], - [-12.253082, 8.774751], - [-12.251859, 8.774907], - [-12.250625, 8.774746], - [-12.249772, 8.774278], - [-12.249642, 8.773594], - [-12.246972, 8.772688], - [-12.246001, 8.772481], - [-12.246027, 8.77193], - [-12.246075, 8.771727], - [-12.245957, 8.770927], - [-12.245352, 8.769613], - [-12.244794, 8.768965], - [-12.247621, 8.76579], - [-12.248806, 8.766082], - [-12.252288, 8.768228], - [-12.256171, 8.768819], - [-12.254583, 8.764582], - [-12.254582, 8.762082], - [-12.254178, 8.761275], - [-12.254029, 8.761358], - [-12.253948, 8.761449], - [-12.252917, 8.760416], - [-12.252917, 8.754583], - [-12.254582, 8.752916], - [-12.254583, 8.750416], - [-12.257082, 8.747916], - [-12.256592, 8.744972], - [-12.256593, 8.744972], - [-12.25695, 8.745252], - [-12.258366, 8.745906], - [-12.259339, 8.7459], - [-12.261214, 8.745078], - [-12.261636, 8.74456], - [-12.26284, 8.741593], - [-12.2598, 8.741799], - [-12.2566, 8.739399], - [-12.2602, 8.7319], - [-12.264699, 8.727399], - [-12.266799, 8.723199] - ] - ], - "type": "Polygon" - }, - "id": 233, - "properties": { - "cc:admin:id": ["83"], - "cc:oBld:total": 116, - "cc:pop:fifteen-to-twenty-four": 1191.4075667575244, - "cc:pop:grid3-total": 4145.140417415117, - "cc:pop:kontur-total": 7897.351187748396, - "cc:pop:men": 3057.8430935624247, - "cc:pop:sixty-plus": 409.1326243120228, - "cc:pop:total": 6533.895620219375, - "cc:pop:under-five": 1050.8837154619782, - "cc:pop:women": 3476.05252665695, - "cc:pop:women-fiften-to-forty-nine": 1678.9514535326937, - "cc:pop:wp-total": 4057.6863158179112, - "cc:pop:wp-total-UN": 4704.334129364424, - "cc:id": "233", - "cc:Name": "Kolisokor MCHP", - "cc:site": [-12.1982, 8.7685], - "user:parentName": "Makari Gbanti", - "user:code": "OU_193259", - "user:orgUnitId": "m7fBMpmVpSM", - "user:level": "4", - "user:parentId": "lY93YpCxJqf" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.832183, 8.847078], - [-10.832, 8.8347], - [-10.831799, 8.831599], - [-10.830999, 8.827599], - [-10.829099, 8.823099], - [-10.827, 8.8128], - [-10.8251, 8.8083], - [-10.824399, 8.805399], - [-10.823999, 8.799199], - [-10.8238, 8.7633], - [-10.823499, 8.757099], - [-10.822999, 8.754099], - [-10.8204, 8.7478], - [-10.8179, 8.7423], - [-10.8114, 8.741399], - [-10.8091, 8.740099], - [-10.8068, 8.7368], - [-10.804499, 8.734099], - [-10.7981, 8.7276], - [-10.7921, 8.722], - [-10.789299, 8.719999], - [-10.785399, 8.718099], - [-10.779999, 8.713899], - [-10.773599, 8.710499], - [-10.770099, 8.707599], - [-10.7661, 8.7035], - [-10.762799, 8.6993], - [-10.7561, 8.703299], - [-10.7515, 8.705599], - [-10.7464, 8.709599], - [-10.7445, 8.710799], - [-10.742399, 8.7115], - [-10.738099, 8.7125], - [-10.733, 8.714899], - [-10.7298, 8.716199], - [-10.7255, 8.718599], - [-10.721599, 8.7203], - [-10.7157, 8.7241], - [-10.713, 8.727699], - [-10.710599, 8.7298], - [-10.704, 8.733199], - [-10.700099, 8.7342], - [-10.6951, 8.734399], - [-10.691499, 8.734199], - [-10.689199, 8.733699], - [-10.6865, 8.7322], - [-10.682799, 8.728799], - [-10.6792, 8.7246], - [-10.6764, 8.7197], - [-10.673199, 8.7164], - [-10.6654, 8.7126], - [-10.662799, 8.711999], - [-10.658899, 8.7117], - [-10.6482, 8.711799], - [-10.6449, 8.712299], - [-10.642899, 8.713], - [-10.639299, 8.7149], - [-10.6317, 8.718499], - [-10.629099, 8.7191], - [-10.624199, 8.719399], - [-10.6092, 8.7192], - [-10.6052, 8.719599], - [-10.6017, 8.7207], - [-10.5968, 8.724499], - [-10.5949, 8.725599], - [-10.5918, 8.725899], - [-10.585999, 8.723799], - [-10.582199, 8.723199], - [-10.5754, 8.7228], - [-10.5726, 8.7222], - [-10.5672, 8.7201], - [-10.563, 8.719], - [-10.5606, 8.718], - [-10.5572, 8.7156], - [-10.5519, 8.720899], - [-10.548, 8.725299], - [-10.544799, 8.731], - [-10.542299, 8.7333], - [-10.537899, 8.7357], - [-10.5309, 8.741599], - [-10.5262, 8.7463], - [-10.5265, 8.7488], - [-10.5275, 8.756999], - [-10.535799, 8.772499], - [-10.553021, 8.786072], - [-10.559582, 8.785416], - [-10.561249, 8.783749], - [-10.562917, 8.780417], - [-10.565196, 8.779847], - [-10.56521, 8.780018], - [-10.566123, 8.779593], - [-10.56715, 8.779637], - [-10.56807, 8.779686], - [-10.569151, 8.780006], - [-10.569582, 8.780005], - [-10.569583, 8.782916], - [-10.572083, 8.78375], - [-10.574583, 8.787082], - [-10.57625, 8.787083], - [-10.57875, 8.789582], - [-10.581249, 8.789582], - [-10.589583, 8.782083], - [-10.596249, 8.787082], - [-10.59625, 8.788749], - [-10.600416, 8.792916], - [-10.600417, 8.794582], - [-10.605416, 8.800416], - [-10.60625, 8.804582], - [-10.60875, 8.808749], - [-10.617083, 8.805417], - [-10.622916, 8.80625], - [-10.627082, 8.809582], - [-10.627799, 8.818182], - [-10.627512, 8.818368], - [-10.626969, 8.818115], - [-10.62625, 8.824582], - [-10.62625, 8.825416], - [-10.629583, 8.825416], - [-10.636249, 8.82375], - [-10.637083, 8.82375], - [-10.643749, 8.827916], - [-10.645417, 8.832082], - [-10.656249, 8.82875], - [-10.657083, 8.829583], - [-10.671249, 8.829583], - [-10.670417, 8.839582], - [-10.674582, 8.840416], - [-10.67625, 8.840417], - [-10.683749, 8.842082], - [-10.685416, 8.84375], - [-10.685822, 8.844965], - [-10.685896, 8.844937], - [-10.686813, 8.844036], - [-10.68876, 8.843589], - [-10.689991, 8.84304], - [-10.690451, 8.842532], - [-10.691771, 8.841419], - [-10.692212, 8.841692], - [-10.693849, 8.841759], - [-10.694275, 8.84191], - [-10.697086, 8.843745], - [-10.697466, 8.844427], - [-10.697839, 8.846164], - [-10.698376, 8.84689], - [-10.698402, 8.846921], - [-10.700417, 8.84625], - [-10.705416, 8.847082], - [-10.70875, 8.842917], - [-10.71125, 8.842916], - [-10.720416, 8.840417], - [-10.722083, 8.841249], - [-10.729582, 8.839583], - [-10.730417, 8.840417], - [-10.732083, 8.847083], - [-10.735416, 8.847916], - [-10.737917, 8.844583], - [-10.742082, 8.84375], - [-10.742916, 8.849582], - [-10.742917, 8.852082], - [-10.753749, 8.847082], - [-10.754583, 8.842916], - [-10.757917, 8.842083], - [-10.764583, 8.845416], - [-10.768749, 8.844582], - [-10.775416, 8.832917], - [-10.779582, 8.832917], - [-10.78375, 8.839582], - [-10.79375, 8.842917], - [-10.795417, 8.842916], - [-10.798749, 8.842083], - [-10.800142, 8.840691], - [-10.803831, 8.847078], - [-10.811643, 8.847079], - [-10.815548, 8.853845], - [-10.811643, 8.86061], - [-10.815548, 8.867376], - [-10.811643, 8.874142], - [-10.815549, 8.880907], - [-10.823361, 8.880908], - [-10.827268, 8.887674], - [-10.82732, 8.887673], - [-10.8278, 8.886499], - [-10.8286, 8.882599], - [-10.828799, 8.8734], - [-10.829299, 8.8696], - [-10.831599, 8.8632], - [-10.832099, 8.8602], - [-10.832299, 8.854899], - [-10.832183, 8.847078] - ] - ], - "type": "Polygon" - }, - "id": 234, - "properties": { - "cc:admin:id": ["72"], - "cc:oBld:total": 1273, - "cc:pop:fifteen-to-twenty-four": 2277.0247541003982, - "cc:pop:grid3-total": 16905.259178999597, - "cc:pop:kontur-total": 13785.772353700595, - "cc:pop:men": 5719.106700727811, - "cc:pop:sixty-plus": 668.3585018733842, - "cc:pop:total": 12105.66593678524, - "cc:pop:under-five": 2026.4736532727884, - "cc:pop:women": 6386.559236057429, - "cc:pop:women-fiften-to-forty-nine": 3105.197797138846, - "cc:pop:wp-total": 8731.253289673195, - "cc:pop:wp-total-UN": 10134.35587416248, - "cc:id": "234", - "cc:Name": "Komba Yendeh CHP", - "cc:site": [-10.7089, 8.7864], - "user:parentName": "Lei", - "user:code": "OU_233351", - "user:orgUnitId": "T62lSjsZe9n", - "user:level": "4", - "user:parentId": "LhaAPLxdSFH" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.264999, 8.557199], - [-12.262099, 8.553699], - [-12.259799, 8.551999], - [-12.255899, 8.550099], - [-12.2485, 8.5446], - [-12.245399, 8.543199], - [-12.240999, 8.540799], - [-12.237799, 8.539399], - [-12.233499, 8.537099], - [-12.230299, 8.535699], - [-12.225899, 8.533499], - [-12.2199, 8.5321], - [-12.214599, 8.529799], - [-12.2086, 8.5284], - [-12.203299, 8.526099], - [-12.1965, 8.5244], - [-12.192899, 8.522599], - [-12.187599, 8.521599], - [-12.1799, 8.5215], - [-12.1749, 8.5209], - [-12.168499, 8.518499], - [-12.164599, 8.517899], - [-12.1574, 8.5178], - [-12.1544, 8.5175], - [-12.151499, 8.516899], - [-12.146999, 8.514999], - [-12.144099, 8.514499], - [-12.1374, 8.514], - [-12.1336, 8.5135], - [-12.1282, 8.5113], - [-12.122299, 8.509799], - [-12.116, 8.5073], - [-12.1122, 8.5067], - [-12.107099, 8.5066], - [-12.098, 8.506699], - [-12.0931, 8.506999], - [-12.086499, 8.5098], - [-12.081199, 8.5104], - [-12.068999, 8.5105], - [-12.065699, 8.5112], - [-12.0635, 8.512299], - [-12.062099, 8.513403], - [-12.062145, 8.519083], - [-12.061922, 8.519789], - [-12.061425, 8.520459], - [-12.061015, 8.52078], - [-12.06125, 8.521249], - [-12.062917, 8.52125], - [-12.06407, 8.522982], - [-12.062272, 8.525928], - [-12.062173, 8.526015], - [-12.062917, 8.537916], - [-12.07065, 8.537144], - [-12.066934, 8.543582], - [-12.07084, 8.550349], - [-12.066934, 8.557114], - [-12.07084, 8.56388], - [-12.066934, 8.570645], - [-12.059121, 8.570646], - [-12.05785, 8.572849], - [-12.060416, 8.575417], - [-12.05625, 8.585416], - [-12.05375, 8.587917], - [-12.056464, 8.592668], - [-12.055115, 8.593307], - [-12.053386, 8.593816], - [-12.04899, 8.594357], - [-12.049582, 8.597916], - [-12.057082, 8.603749], - [-12.05591, 8.606683], - [-12.0567, 8.607], - [-12.0602, 8.6076], - [-12.0626, 8.6084], - [-12.069399, 8.611499], - [-12.0722, 8.6135], - [-12.0747, 8.6159], - [-12.0766, 8.6188], - [-12.0784, 8.6225], - [-12.080499, 8.625199], - [-12.084399, 8.628499], - [-12.0883, 8.6303], - [-12.092699, 8.632699], - [-12.0959, 8.6339], - [-12.100199, 8.636299], - [-12.1034, 8.6376], - [-12.112399, 8.642299], - [-12.1154, 8.6445], - [-12.120999, 8.648999], - [-12.127199, 8.6418], - [-12.1297, 8.640099], - [-12.133099, 8.6391], - [-12.135999, 8.6387], - [-12.150499, 8.637999], - [-12.151799, 8.6324], - [-12.152899, 8.6298], - [-12.1558, 8.625899], - [-12.159899, 8.6218], - [-12.1622, 8.620099], - [-12.1648, 8.619099], - [-12.172399, 8.618099], - [-12.175499, 8.616599], - [-12.177599, 8.613799], - [-12.179399, 8.6068], - [-12.181599, 8.6027], - [-12.183, 8.6009], - [-12.1852, 8.5998], - [-12.1877, 8.5996], - [-12.192899, 8.600499], - [-12.197399, 8.602599], - [-12.2011, 8.603399], - [-12.2051, 8.603299], - [-12.2078, 8.602599], - [-12.2123, 8.600499], - [-12.215099, 8.5998], - [-12.218999, 8.5996], - [-12.222299, 8.6002], - [-12.224799, 8.6019], - [-12.226399, 8.6044], - [-12.227, 8.6076], - [-12.2271, 8.614], - [-12.2281, 8.616799], - [-12.2307, 8.618399], - [-12.2343, 8.618499], - [-12.237999, 8.6178], - [-12.242499, 8.6157], - [-12.247499, 8.6145], - [-12.249799, 8.613499], - [-12.2524, 8.610599], - [-12.2533, 8.607699], - [-12.253699, 8.6029], - [-12.254199, 8.6002], - [-12.255699, 8.5965], - [-12.255999, 8.5941], - [-12.255599, 8.591699], - [-12.253699, 8.587299], - [-12.253199, 8.584499], - [-12.2528, 8.5787], - [-12.2522, 8.575], - [-12.2508, 8.569699], - [-12.2529, 8.5636], - [-12.2549, 8.561], - [-12.2573, 8.5594], - [-12.262799, 8.5581], - [-12.264999, 8.557199] - ] - ], - "type": "Polygon" - }, - "id": 235, - "properties": { - "cc:admin:id": ["53"], - "cc:oBld:total": 283, - "cc:pop:fifteen-to-twenty-four": 2976.489595005881, - "cc:pop:grid3-total": 10401.677986860885, - "cc:pop:kontur-total": 16027.933581077265, - "cc:pop:men": 7416.000400865969, - "cc:pop:sixty-plus": 1031.7170391070827, - "cc:pop:total": 16122.514777956772, - "cc:pop:under-five": 2566.7560724874434, - "cc:pop:women": 8706.514377090805, - "cc:pop:women-fiften-to-forty-nine": 4223.902971780408, - "cc:pop:wp-total": 14059.815343161208, - "cc:pop:wp-total-UN": 16296.663669869324, - "cc:id": "235", - "cc:Name": "Komrabai Station MCHP", - "cc:site": [-12.0991, 8.5396], - "user:parentName": "Kholifa Mabang", - "user:code": "OU_268165", - "user:orgUnitId": "cUltUneFSan", - "user:level": "4", - "user:parentId": "fwxkctgmffZ" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.144582, 7.905416], - [-11.142083, 7.897917], - [-11.142082, 7.897084], - [-11.141249, 7.897083], - [-11.13875, 7.889584], - [-11.140416, 7.882084], - [-11.140416, 7.879584], - [-11.137917, 7.87625], - [-11.137916, 7.873749], - [-11.132645, 7.865467], - [-11.132599, 7.8655], - [-11.129099, 7.8664], - [-11.1212, 7.866599], - [-11.1147, 7.8664], - [-11.1111, 7.865899], - [-11.1067, 7.8638], - [-11.1046, 7.8631], - [-11.102499, 7.8629], - [-11.100199, 7.8631], - [-11.098199, 7.8637], - [-11.0946, 7.865599], - [-11.0915, 7.866999], - [-11.0849, 7.871299], - [-11.0828, 7.874299], - [-11.080499, 7.876499], - [-11.077199, 7.8776], - [-11.0689, 7.877899], - [-11.0643, 7.8776], - [-11.0607, 7.876399], - [-11.057399, 7.873799], - [-11.055199, 7.871299], - [-11.0526, 7.8679], - [-11.048399, 7.8746], - [-11.0432, 7.881599], - [-11.041599, 7.8848], - [-11.036, 7.903899], - [-11.0346, 7.909599], - [-11.0343, 7.9142], - [-11.035099, 7.9199], - [-11.035, 7.923399], - [-11.034299, 7.9268], - [-11.0317, 7.932199], - [-11.0297, 7.935399], - [-11.022099, 7.9451], - [-11.017399, 7.9547], - [-11.013099, 7.9601], - [-11.0049, 7.9685], - [-11.007999, 7.972699], - [-11.011299, 7.978599], - [-11.012628, 7.98034], - [-11.015599, 7.976489], - [-11.019788, 7.972936], - [-11.022912, 7.971781], - [-11.029022, 7.969857], - [-11.029583, 7.970417], - [-11.032083, 7.971249], - [-11.038749, 7.971249], - [-11.036625, 7.965585], - [-11.037726, 7.965314], - [-11.038846, 7.964569], - [-11.040053, 7.964129], - [-11.040415, 7.963894], - [-11.040417, 7.963895], - [-11.040417, 7.964584], - [-11.04375, 7.970417], - [-11.04625, 7.972083], - [-11.049582, 7.970417], - [-11.051249, 7.965416], - [-11.05125, 7.96125], - [-11.05375, 7.961249], - [-11.055417, 7.960416], - [-11.061249, 7.957083], - [-11.06125, 7.955417], - [-11.062916, 7.951249], - [-11.062917, 7.949584], - [-11.067082, 7.949584], - [-11.072083, 7.953749], - [-11.076249, 7.954583], - [-11.075417, 7.947917], - [-11.077082, 7.945417], - [-11.078749, 7.945416], - [-11.07875, 7.94375], - [-11.084582, 7.94375], - [-11.08625, 7.944583], - [-11.089582, 7.944583], - [-11.089583, 7.942916], - [-11.092917, 7.94125], - [-11.097082, 7.942916], - [-11.09875, 7.945416], - [-11.10125, 7.94375], - [-11.108749, 7.945416], - [-11.110417, 7.944584], - [-11.115416, 7.945416], - [-11.119582, 7.941249], - [-11.119583, 7.935044], - [-11.120189, 7.935049], - [-11.121997, 7.936371], - [-11.123496, 7.937006], - [-11.126885, 7.93704], - [-11.12803, 7.937205], - [-11.130417, 7.935417], - [-11.133749, 7.935416], - [-11.134583, 7.932917], - [-11.137916, 7.934583], - [-11.139582, 7.933749], - [-11.142916, 7.927916], - [-11.142082, 7.924583], - [-11.140417, 7.921249], - [-11.140417, 7.917916], - [-11.141249, 7.91375], - [-11.138607, 7.91331], - [-11.1386, 7.913311], - [-11.13855, 7.913299], - [-11.137895, 7.913191], - [-11.137481, 7.913222], - [-11.136201, 7.913952], - [-11.135557, 7.914155], - [-11.134235, 7.914022], - [-11.13375, 7.912083], - [-11.13375, 7.907917], - [-11.144582, 7.905416] - ] - ], - "type": "Polygon" - }, - "id": 236, - "properties": { - "cc:admin:id": ["105"], - "cc:oBld:total": 1162, - "cc:pop:fifteen-to-twenty-four": 1233.2683798311893, - "cc:pop:grid3-total": 11105.316349133525, - "cc:pop:kontur-total": 6453.319764180359, - "cc:pop:men": 3174.5048768431807, - "cc:pop:sixty-plus": 379.83873933182986, - "cc:pop:total": 6327.227118367342, - "cc:pop:under-five": 1023.4589070816196, - "cc:pop:women": 3152.722241524161, - "cc:pop:women-fiften-to-forty-nine": 1579.1362868825343, - "cc:pop:wp-total": 7950.271843581992, - "cc:pop:wp-total-UN": 9210.873264937605, - "cc:id": "236", - "cc:Name": "Konabu MCHP", - "cc:site": [-11.1034, 7.8955], - "user:parentName": "Nongowa", - "user:code": "OU_222713", - "user:orgUnitId": "mhJQYk2Jwym", - "user:level": "4", - "user:parentId": "KIUCimTXf8Q" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.204667, 8.258749], - [-12.2045, 8.2455], - [-12.204199, 8.241699], - [-12.203199, 8.238499], - [-12.2013, 8.2357], - [-12.1954, 8.2294], - [-12.1936, 8.226599], - [-12.193099, 8.224199], - [-12.192499, 8.219399], - [-12.191799, 8.216699], - [-12.189799, 8.212199], - [-12.189099, 8.208499], - [-12.1889, 8.2045], - [-12.1891, 8.200699], - [-12.1898, 8.197899], - [-12.191699, 8.1935], - [-12.192099, 8.190999], - [-12.191799, 8.187599], - [-12.1897, 8.182099], - [-12.1897, 8.1792], - [-12.1917, 8.173999], - [-12.1929, 8.168999], - [-12.194799, 8.1646], - [-12.195199, 8.1622], - [-12.194699, 8.159799], - [-12.192899, 8.155399], - [-12.192299, 8.151899], - [-12.1917, 8.1447], - [-12.1911, 8.1421], - [-12.190857, 8.141593], - [-12.187917, 8.140417], - [-12.186249, 8.143749], - [-12.183749, 8.144583], - [-12.18125, 8.142083], - [-12.181249, 8.13625], - [-12.177916, 8.137083], - [-12.17375, 8.13625], - [-12.17125, 8.13375], - [-12.169582, 8.136249], - [-12.16625, 8.135417], - [-12.161249, 8.12625], - [-12.157083, 8.127916], - [-12.152917, 8.12625], - [-12.14625, 8.145416], - [-12.147082, 8.14625], - [-12.142917, 8.14875], - [-12.142916, 8.155834], - [-12.138619, 8.155834], - [-12.134713, 8.149069], - [-12.136134, 8.146607], - [-12.130417, 8.147083], - [-12.129582, 8.144584], - [-12.12625, 8.142084], - [-12.12181, 8.140873], - [-12.118463, 8.146669], - [-12.121107, 8.151249], - [-12.120416, 8.15125], - [-12.115417, 8.15375], - [-12.11625, 8.155416], - [-12.116976, 8.155599], - [-12.114211, 8.160389], - [-12.113271, 8.160384], - [-12.11271, 8.160105], - [-12.111394, 8.159929], - [-12.109586, 8.158001], - [-12.109561, 8.157983], - [-12.107917, 8.162916], - [-12.11375, 8.169583], - [-12.117916, 8.170417], - [-12.120416, 8.173749], - [-12.122083, 8.17125], - [-12.12625, 8.170417], - [-12.132082, 8.182083], - [-12.132082, 8.185416], - [-12.130462, 8.185417], - [-12.131126, 8.186568], - [-12.12722, 8.193333], - [-12.130425, 8.198884], - [-12.12875, 8.199584], - [-12.127917, 8.201249], - [-12.137082, 8.206249], - [-12.134583, 8.209583], - [-12.137917, 8.209584], - [-12.142082, 8.212917], - [-12.135417, 8.220417], - [-12.13625, 8.223749], - [-12.149582, 8.226249], - [-12.151249, 8.22375], - [-12.15375, 8.222917], - [-12.161094, 8.22512], - [-12.16102, 8.225416], - [-12.162083, 8.225417], - [-12.169582, 8.229583], - [-12.169583, 8.232916], - [-12.170417, 8.233749], - [-12.172916, 8.234584], - [-12.171249, 8.241249], - [-12.167083, 8.246249], - [-12.167917, 8.247083], - [-12.175417, 8.249583], - [-12.180416, 8.249584], - [-12.180721, 8.253235], - [-12.183898, 8.253236], - [-12.187804, 8.260001], - [-12.192656, 8.260002], - [-12.192917, 8.262083], - [-12.193791, 8.262958], - [-12.193985, 8.262221], - [-12.194559, 8.261073], - [-12.194761, 8.260821], - [-12.197916, 8.262083], - [-12.19875, 8.263749], - [-12.203597, 8.26652], - [-12.2043, 8.264999], - [-12.204699, 8.2613], - [-12.204667, 8.258749] - ] - ], - "type": "Polygon" - }, - "id": 237, - "properties": { - "cc:admin:id": ["60"], - "cc:oBld:total": 12, - "cc:pop:fifteen-to-twenty-four": 359.92008644458497, - "cc:pop:grid3-total": 1987.4655179930064, - "cc:pop:kontur-total": 1940.4917797900393, - "cc:pop:men": 972.6695914631213, - "cc:pop:sixty-plus": 133.7310508847433, - "cc:pop:total": 2048.454025240751, - "cc:pop:under-five": 331.12049572600114, - "cc:pop:women": 1075.784433777629, - "cc:pop:women-fiften-to-forty-nine": 523.4661644970895, - "cc:pop:wp-total": 2244.947402752949, - "cc:pop:wp-total-UN": 2601.3990068886706, - "cc:id": "237", - "cc:Name": "Konda CHP", - "cc:site": [-12.1847, 8.1909], - "user:parentName": "Kori", - "user:code": "OU_246992", - "user:orgUnitId": "jkPHBqdn9SA", - "user:level": "4", - "user:parentId": "nV3OkyzF4US" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.662939, 9.019044], - [-10.661249, 9.017917], - [-10.65375, 9.017916], - [-10.652082, 9.015417], - [-10.649582, 9.014582], - [-10.647916, 9.012083], - [-10.637083, 9.012082], - [-10.635417, 9.007916], - [-10.635416, 9.002083], - [-10.633749, 9.00125], - [-10.632916, 9.001249], - [-10.62375, 8.997082], - [-10.622587, 8.994175], - [-10.622604, 8.994169], - [-10.620416, 8.985417], - [-10.615401, 8.985416], - [-10.612937, 8.981151], - [-10.605126, 8.98115], - [-10.601219, 8.974385], - [-10.598305, 8.974385], - [-10.594299, 9.0033], - [-10.5918, 9.009299], - [-10.5876, 9.0123], - [-10.586199, 9.0162], - [-10.5854, 9.031599], - [-10.5836, 9.0364], - [-10.5848, 9.043199], - [-10.585, 9.043399], - [-10.587699, 9.0432], - [-10.5962, 9.042099], - [-10.608499, 9.0413], - [-10.6144, 9.040299], - [-10.6211, 9.037299], - [-10.6292, 9.032399], - [-10.6348, 9.030699], - [-10.643699, 9.0299], - [-10.648, 9.028899], - [-10.6518, 9.026899], - [-10.660599, 9.0211], - [-10.662939, 9.019044] - ] - ], - "type": "Polygon" - }, - "id": 238, - "properties": { - "cc:admin:id": ["136"], - "cc:oBld:total": 19, - "cc:pop:fifteen-to-twenty-four": 121.22219855612299, - "cc:pop:grid3-total": 1550.7794126297151, - "cc:pop:kontur-total": 840.5911617894972, - "cc:pop:men": 290.3021984321922, - "cc:pop:sixty-plus": 35.75513630567407, - "cc:pop:total": 635.6508559700924, - "cc:pop:under-five": 96.44542029481103, - "cc:pop:women": 345.3486575379001, - "cc:pop:women-fiften-to-forty-nine": 174.94806232831021, - "cc:pop:wp-total": 629.2156032042877, - "cc:pop:wp-total-UN": 735.1012023344775, - "cc:id": "238", - "cc:Name": "Kondewakoro CHP", - "cc:site": [-10.5955, 9.017], - "user:parentName": "Toli", - "user:code": "OU_233315", - "user:orgUnitId": "ZSBnWFBpPPJ", - "user:level": "4", - "user:parentId": "FRxcUEwktoV" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.550899, 9.5663], - [-11.549999, 9.5647], - [-11.544799, 9.561499], - [-11.540799, 9.559899], - [-11.5363, 9.5577], - [-11.5312, 9.5566], - [-11.5287, 9.5558], - [-11.5211, 9.5521], - [-11.5172, 9.5488], - [-11.5147, 9.5455], - [-11.5107, 9.5372], - [-11.509499, 9.532099], - [-11.507199, 9.526799], - [-11.506499, 9.523299], - [-11.5061, 9.516], - [-11.5053, 9.5126], - [-11.503299, 9.508099], - [-11.502699, 9.505599], - [-11.5021, 9.5003], - [-11.5014, 9.4977], - [-11.499099, 9.492499], - [-11.4982, 9.4854], - [-11.4975, 9.4828], - [-11.4955, 9.4784], - [-11.494699, 9.4759], - [-11.4891, 9.4754], - [-11.4866, 9.476099], - [-11.483, 9.477999], - [-11.479899, 9.4793], - [-11.4756, 9.481799], - [-11.472499, 9.4831], - [-11.4682, 9.485499], - [-11.464999, 9.4869], - [-11.460599, 9.4891], - [-11.458099, 9.4897], - [-11.452699, 9.4902], - [-11.450199, 9.4909], - [-11.444799, 9.493], - [-11.440199, 9.4936], - [-11.4323, 9.493699], - [-11.4286, 9.494299], - [-11.423199, 9.4966], - [-11.4184, 9.497299], - [-11.417009, 9.497158], - [-11.414583, 9.499583], - [-11.414583, 9.509582], - [-11.417916, 9.509583], - [-11.417917, 9.517083], - [-11.42125, 9.521249], - [-11.430528, 9.522023], - [-11.430414, 9.522225], - [-11.43432, 9.52899], - [-11.442132, 9.528991], - [-11.446038, 9.535756], - [-11.443829, 9.539582], - [-11.446249, 9.539583], - [-11.44625, 9.549582], - [-11.454582, 9.557916], - [-11.460416, 9.555416], - [-11.460952, 9.548993], - [-11.462355, 9.548604], - [-11.463535, 9.548149], - [-11.464212, 9.547677], - [-11.466165, 9.547201], - [-11.46648, 9.547047], - [-11.466625, 9.54663], - [-11.466916, 9.546408], - [-11.467436, 9.546292], - [-11.467784, 9.546358], - [-11.469475, 9.549288], - [-11.465747, 9.555746], - [-11.468749, 9.558749], - [-11.471249, 9.560416], - [-11.471851, 9.562819], - [-11.475416, 9.56282], - [-11.475417, 9.565416], - [-11.488749, 9.56625], - [-11.487083, 9.571249], - [-11.487083, 9.572916], - [-11.487917, 9.573749], - [-11.492082, 9.57375], - [-11.492083, 9.577082], - [-11.49625, 9.580416], - [-11.502083, 9.57875], - [-11.503749, 9.58125], - [-11.504304, 9.584573], - [-11.504867, 9.584802], - [-11.50606, 9.585618], - [-11.506676, 9.586229], - [-11.506249, 9.587083], - [-11.505417, 9.593749], - [-11.50875, 9.596249], - [-11.514329, 9.59625], - [-11.516842, 9.598046], - [-11.51625, 9.600416], - [-11.51625, 9.601046], - [-11.518988, 9.600048], - [-11.519532, 9.599848], - [-11.519688, 9.599823], - [-11.52003, 9.599822], - [-11.5224, 9.598499], - [-11.5256, 9.597199], - [-11.534099, 9.5928], - [-11.5381, 9.589499], - [-11.544199, 9.5834], - [-11.546499, 9.5805], - [-11.547699, 9.578], - [-11.548899, 9.573], - [-11.550699, 9.568799], - [-11.550899, 9.5663] - ] - ], - "type": "Polygon" - }, - "id": 239, - "properties": { - "cc:admin:id": ["122"], - "cc:oBld:total": 418, - "cc:pop:fifteen-to-twenty-four": 1492.3613294179002, - "cc:pop:grid3-total": 2240.5251027993145, - "cc:pop:kontur-total": 8361.459151581264, - "cc:pop:men": 3761.396801773573, - "cc:pop:sixty-plus": 518.8968610599487, - "cc:pop:total": 8042.304163291476, - "cc:pop:under-five": 1304.1959014986244, - "cc:pop:women": 4280.907361517904, - "cc:pop:women-fiften-to-forty-nine": 2076.500841162622, - "cc:pop:wp-total": 5494.638169632651, - "cc:pop:wp-total-UN": 6367.344779045068, - "cc:id": "239", - "cc:Name": "Kondeya MCHP", - "cc:site": [-11.5287, 9.562], - "user:parentName": "Sengbeh", - "user:code": "OU_226234", - "user:orgUnitId": "OynYyQiFu82", - "user:level": "4", - "user:parentId": "VGAFxBXz16y" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.105124, 8.270222], - [-11.102917, 8.26875], - [-11.102083, 8.26625], - [-11.104582, 8.263749], - [-11.104582, 8.25625], - [-11.09366, 8.255522], - [-11.093659, 8.255417], - [-11.08375, 8.255417], - [-11.083749, 8.262083], - [-11.081249, 8.264583], - [-11.075416, 8.262917], - [-11.071055, 8.264162], - [-11.070587, 8.262084], - [-11.062083, 8.262084], - [-11.061249, 8.262916], - [-11.055461, 8.259298], - [-11.055481, 8.259253], - [-11.050416, 8.257084], - [-11.045417, 8.259584], - [-11.042082, 8.269583], - [-11.038749, 8.272916], - [-11.03125, 8.272917], - [-11.027083, 8.272084], - [-11.02625, 8.272083], - [-11.026249, 8.270416], - [-11.013248, 8.269652], - [-11.012654, 8.270416], - [-11.00616, 8.270417], - [-11.006266, 8.27063], - [-11.00807, 8.271978], - [-11.008376, 8.272582], - [-11.008471, 8.273747], - [-11.008255, 8.275315], - [-11.008224, 8.277525], - [-11.007246, 8.279612], - [-11.007157, 8.280262], - [-11.006652, 8.280853], - [-11.005729, 8.280853], - [-11.004991, 8.281088], - [-11.004204, 8.280912], - [-11.003266, 8.28074], - [-11.002218, 8.280765], - [-11.001215, 8.280983], - [-11.000403, 8.281523], - [-10.999858, 8.281529], - [-10.992083, 8.285417], - [-10.993749, 8.287917], - [-10.99324, 8.294534], - [-10.98898, 8.294535], - [-10.985072, 8.3013], - [-10.977261, 8.301301], - [-10.973354, 8.308066], - [-10.967888, 8.308067], - [-10.9669, 8.312599], - [-10.9659, 8.316099], - [-10.963999, 8.3204], - [-10.961799, 8.3237], - [-10.9544, 8.331799], - [-10.9518, 8.334899], - [-10.9469, 8.343299], - [-10.945599, 8.3468], - [-10.9441, 8.355799], - [-10.941999, 8.3612], - [-10.939799, 8.364199], - [-10.930899, 8.3707], - [-10.926799, 8.3744], - [-10.9207, 8.380399], - [-10.925499, 8.384199], - [-10.9283, 8.385999], - [-10.9334, 8.3872], - [-10.944499, 8.391899], - [-10.948399, 8.392899], - [-10.9528, 8.3933], - [-10.964699, 8.393599], - [-10.970599, 8.393999], - [-10.9747, 8.3947], - [-10.9792, 8.3961], - [-10.9833, 8.396399], - [-10.987499, 8.395299], - [-10.9899, 8.393799], - [-10.9933, 8.390899], - [-10.996199, 8.3875], - [-10.998599, 8.3838], - [-10.9999, 8.380499], - [-11.000799, 8.3767], - [-11.001499, 8.3667], - [-11.0022, 8.362699], - [-11.0041, 8.357199], - [-11.0084, 8.3505], - [-11.0111, 8.348399], - [-11.0151, 8.346099], - [-11.026599, 8.3402], - [-11.0337, 8.335699], - [-11.0364, 8.334599], - [-11.040599, 8.3339], - [-11.046499, 8.3336], - [-11.071899, 8.3336], - [-11.076199, 8.334099], - [-11.0803, 8.3355], - [-11.082699, 8.337099], - [-11.084799, 8.338999], - [-11.087999, 8.343399], - [-11.089614, 8.347204], - [-11.099582, 8.347916], - [-11.101249, 8.347084], - [-11.104582, 8.342916], - [-11.103749, 8.332084], - [-11.094583, 8.329584], - [-11.09375, 8.32375], - [-11.099855, 8.319001], - [-11.100641, 8.318993], - [-11.101582, 8.318737], - [-11.100599, 8.316699], - [-11.099899, 8.312999], - [-11.099699, 8.308999], - [-11.0996, 8.301], - [-11.099899, 8.2941], - [-11.1005, 8.291299], - [-11.1024, 8.286399], - [-11.1031, 8.282199], - [-11.1034, 8.275399], - [-11.104299, 8.272], - [-11.105124, 8.270222] - ] - ], - "type": "Polygon" - }, - "id": 241, - "properties": { - "cc:admin:id": ["75"], - "cc:oBld:total": 1066, - "cc:pop:fifteen-to-twenty-four": 3178.450015204332, - "cc:pop:grid3-total": 9505.600637668242, - "cc:pop:kontur-total": 17392.19503086026, - "cc:pop:men": 9224.639588166163, - "cc:pop:sixty-plus": 976.8365579584467, - "cc:pop:total": 16480.926805725983, - "cc:pop:under-five": 2544.089963291077, - "cc:pop:women": 7256.287217559814, - "cc:pop:women-fiften-to-forty-nine": 3597.5254445045844, - "cc:pop:wp-total": 13223.40608977462, - "cc:pop:wp-total-UN": 15338.325745519842, - "cc:id": "241", - "cc:Name": "Konjo MCHP", - "cc:site": [-11.0538, 8.2703], - "user:parentName": "Lower Bambara", - "user:code": "OU_222670", - "user:orgUnitId": "d7hw1ababST", - "user:level": "4", - "user:parentId": "hdEuw2ugkVF" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.688174, 9.340372], - [-12.686964, 9.339633], - [-12.6865, 9.339742], - [-12.68547, 9.339573], - [-12.684911, 9.339555], - [-12.684222, 9.339005], - [-12.683493, 9.339097], - [-12.682212, 9.338666], - [-12.681541, 9.338327], - [-12.680029, 9.338164], - [-12.678851, 9.336889], - [-12.678744, 9.336071], - [-12.674657, 9.335779], - [-12.674582, 9.335817], - [-12.67095, 9.335636], - [-12.670599, 9.336], - [-12.664699, 9.3416], - [-12.661899, 9.3436], - [-12.657899, 9.3456], - [-12.6545, 9.348299], - [-12.6481, 9.354699], - [-12.6443, 9.357799], - [-12.64, 9.360099], - [-12.637299, 9.3619], - [-12.6308, 9.368199], - [-12.6263, 9.372699], - [-12.623899, 9.3753], - [-12.621999, 9.3781], - [-12.620099, 9.382], - [-12.615299, 9.3883], - [-12.613199, 9.3925], - [-12.6108, 9.396699], - [-12.609599, 9.3999], - [-12.6072, 9.405099], - [-12.605999, 9.4109], - [-12.6042, 9.413899], - [-12.6024, 9.415799], - [-12.5989, 9.418099], - [-12.595699, 9.4188], - [-12.5907, 9.419099], - [-12.5875, 9.419999], - [-12.584, 9.421899], - [-12.580899, 9.4233], - [-12.5769, 9.425499], - [-12.5743, 9.426099], - [-12.569799, 9.425499], - [-12.564399, 9.4232], - [-12.5609, 9.4229], - [-12.5581, 9.423399], - [-12.553899, 9.4253], - [-12.548799, 9.4265], - [-12.546399, 9.4274], - [-12.5396, 9.4309], - [-12.5365, 9.434199], - [-12.535, 9.437099], - [-12.5335, 9.438999], - [-12.531699, 9.4405], - [-12.524899, 9.4438], - [-12.522499, 9.4446], - [-12.517399, 9.4457], - [-12.515199, 9.4468], - [-12.5107, 9.449799], - [-12.508, 9.453699], - [-12.5063, 9.455699], - [-12.5042, 9.457599], - [-12.502299, 9.4588], - [-12.500299, 9.4596], - [-12.495999, 9.4606], - [-12.490699, 9.4628], - [-12.486999, 9.4634], - [-12.4783, 9.463599], - [-12.475399, 9.4638], - [-12.472999, 9.4643], - [-12.4693, 9.4658], - [-12.473599, 9.480599], - [-12.4752, 9.4875], - [-12.477, 9.4931], - [-12.483699, 9.512099], - [-12.485399, 9.519199], - [-12.485399, 9.5234], - [-12.484145, 9.529045], - [-12.488305, 9.529045], - [-12.491106, 9.524193], - [-12.491143, 9.521496], - [-12.49132, 9.521199], - [-12.491308, 9.520716], - [-12.488306, 9.515513], - [-12.492212, 9.508748], - [-12.500024, 9.508748], - [-12.503931, 9.515513], - [-12.508325, 9.515513], - [-12.50875, 9.509583], - [-12.512916, 9.50625], - [-12.523749, 9.50625], - [-12.524555, 9.506853], - [-12.527369, 9.501982], - [-12.53518, 9.501981], - [-12.539087, 9.495217], - [-12.546449, 9.495217], - [-12.547083, 9.494583], - [-12.55625, 9.495417], - [-12.560416, 9.496249], - [-12.561374, 9.497207], - [-12.562525, 9.495217], - [-12.566479, 9.495216], - [-12.566177, 9.49498], - [-12.566177, 9.494978], - [-12.56715, 9.49476], - [-12.568428, 9.494822], - [-12.568988, 9.494653], - [-12.570767, 9.494309], - [-12.57088, 9.494274], - [-12.574244, 9.488451], - [-12.582055, 9.48845], - [-12.58482, 9.483664], - [-12.585533, 9.483751], - [-12.586635, 9.483276], - [-12.587023, 9.483271], - [-12.587787, 9.483652], - [-12.587954, 9.48393], - [-12.588723, 9.48423], - [-12.589062, 9.484662], - [-12.590104, 9.48357], - [-12.591102, 9.482937], - [-12.591428, 9.482373], - [-12.591944, 9.481687], - [-12.592294, 9.48042], - [-12.592499, 9.480051], - [-12.592632, 9.479605], - [-12.592559, 9.479101], - [-12.592493, 9.478871], - [-12.592763, 9.478813], - [-12.592237, 9.476747], - [-12.592613, 9.475931], - [-12.593323, 9.472362], - [-12.593263, 9.472083], - [-12.596249, 9.472082], - [-12.597083, 9.465417], - [-12.601249, 9.462917], - [-12.602916, 9.462916], - [-12.602917, 9.455417], - [-12.605417, 9.44875], - [-12.607083, 9.447917], - [-12.611249, 9.449582], - [-12.612083, 9.446249], - [-12.614582, 9.44375], - [-12.620416, 9.442916], - [-12.62125, 9.439582], - [-12.623749, 9.437083], - [-12.627916, 9.436249], - [-12.627208, 9.429878], - [-12.627084, 9.429923], - [-12.627083, 9.429922], - [-12.627083, 9.424583], - [-12.631249, 9.420416], - [-12.63125, 9.419297], - [-12.632918, 9.419212], - [-12.634088, 9.419309], - [-12.635846, 9.419068], - [-12.637433, 9.41919], - [-12.638372, 9.419041], - [-12.640244, 9.418219], - [-12.641021, 9.41812], - [-12.641699, 9.41685], - [-12.645277, 9.41339], - [-12.646317, 9.412537], - [-12.648049, 9.411847], - [-12.64875, 9.40625], - [-12.651249, 9.40375], - [-12.655416, 9.404582], - [-12.655417, 9.403749], - [-12.659863, 9.399303], - [-12.659923, 9.399285], - [-12.660675, 9.399238], - [-12.661011, 9.399246], - [-12.661589, 9.399379], - [-12.66295, 9.399483], - [-12.662963, 9.399316], - [-12.662638, 9.399032], - [-12.661744, 9.398783], - [-12.660761, 9.398017], - [-12.660653, 9.397625], - [-12.660874, 9.396937], - [-12.661301, 9.396647], - [-12.661488, 9.396227], - [-12.66131, 9.395894], - [-12.660174, 9.395446], - [-12.659987, 9.395105], - [-12.660252, 9.393825], - [-12.660128, 9.393387], - [-12.659783, 9.393282], - [-12.658182, 9.394192], - [-12.657561, 9.394298], - [-12.656467, 9.393798], - [-12.656264, 9.393097], - [-12.656796, 9.391878], - [-12.65676, 9.391317], - [-12.656224, 9.389313], - [-12.657917, 9.38875], - [-12.65875, 9.388749], - [-12.66375, 9.387082], - [-12.665416, 9.386249], - [-12.665417, 9.385416], - [-12.667544, 9.384353], - [-12.667636, 9.384624], - [-12.672082, 9.382082], - [-12.674067, 9.379437], - [-12.674374, 9.379622], - [-12.674769, 9.379505], - [-12.675322, 9.379058], - [-12.677725, 9.37905], - [-12.677701, 9.378777], - [-12.677764, 9.378612], - [-12.677648, 9.378573], - [-12.677496, 9.37798], - [-12.676689, 9.374901], - [-12.675754, 9.373203], - [-12.674848, 9.372099], - [-12.674139, 9.36972], - [-12.674044, 9.368279], - [-12.673712, 9.362273], - [-12.671971, 9.359575], - [-12.671463, 9.358105], - [-12.669328, 9.351595], - [-12.669005, 9.350621], - [-12.669583, 9.345417], - [-12.672082, 9.342917], - [-12.675416, 9.342082], - [-12.677917, 9.339583], - [-12.688174, 9.340372] - ] - ], - "type": "Polygon" - }, - "id": 243, - "properties": { - "cc:admin:id": ["9"], - "cc:oBld:total": 42, - "cc:pop:fifteen-to-twenty-four": 923.4765673650494, - "cc:pop:grid3-total": 2865.8219282997707, - "cc:pop:kontur-total": 5069.6670868942365, - "cc:pop:men": 2210.6558390833525, - "cc:pop:sixty-plus": 344.0810786821769, - "cc:pop:total": 4852.762694225397, - "cc:pop:under-five": 734.3572221943289, - "cc:pop:women": 2642.106855142043, - "cc:pop:women-fiften-to-forty-nine": 1254.1541843727034, - "cc:pop:wp-total": 3598.982957730356, - "cc:pop:wp-total-UN": 4168.006760802592, - "cc:id": "243", - "cc:Name": "Konta CHP", - "cc:site": [-12.66, 9.38], - "user:parentName": "Bramaia", - "user:code": "OU_211224", - "user:orgUnitId": "AQQCxQqDxLe", - "user:level": "4", - "user:parentId": "kbPmt60yi0L" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.620477, 8.514534], - [-12.619525, 8.513202], - [-12.6161, 8.5113], - [-12.612199, 8.509599], - [-12.607799, 8.507199], - [-12.6038, 8.5056], - [-12.600999, 8.503899], - [-12.597899, 8.502599], - [-12.595799, 8.501199], - [-12.593699, 8.498699], - [-12.591699, 8.494999], - [-12.5861, 8.4876], - [-12.5847, 8.4845], - [-12.5823, 8.4802], - [-12.580499, 8.476299], - [-12.573099, 8.4643], - [-12.570999, 8.462899], - [-12.5657, 8.4552], - [-12.560699, 8.450799], - [-12.556199, 8.445399], - [-12.553599, 8.442999], - [-12.549799, 8.440399], - [-12.5471, 8.4379], - [-12.544999, 8.435099], - [-12.541699, 8.429599], - [-12.539699, 8.4278], - [-12.535499, 8.4264], - [-12.531499, 8.4264], - [-12.5284, 8.4276], - [-12.526399, 8.4294], - [-12.524099, 8.4332], - [-12.5221, 8.438599], - [-12.5184, 8.451699], - [-12.514899, 8.455099], - [-12.510999, 8.4563], - [-12.506799, 8.456399], - [-12.502499, 8.455699], - [-12.496599, 8.453699], - [-12.492399, 8.452999], - [-12.486599, 8.4529], - [-12.482399, 8.4536], - [-12.466599, 8.4587], - [-12.463799, 8.4593], - [-12.4568, 8.460199], - [-12.4515, 8.462], - [-12.447099, 8.4653], - [-12.444399, 8.4685], - [-12.441099, 8.4738], - [-12.437499, 8.4782], - [-12.4303, 8.485399], - [-12.422299, 8.4916], - [-12.4201, 8.494399], - [-12.4188, 8.497299], - [-12.422599, 8.5016], - [-12.424099, 8.505099], - [-12.424899, 8.510899], - [-12.425499, 8.513599], - [-12.4277, 8.519], - [-12.428799, 8.525999], - [-12.429399, 8.528499], - [-12.4317, 8.5339], - [-12.4323, 8.5376], - [-12.432499, 8.541499], - [-12.4325, 8.564], - [-12.432699, 8.566799], - [-12.4334, 8.569399], - [-12.4359, 8.5724], - [-12.444199, 8.576699], - [-12.447499, 8.577999], - [-12.451799, 8.580299], - [-12.4551, 8.5816], - [-12.460286, 8.584348], - [-12.464583, 8.582917], - [-12.473749, 8.582916], - [-12.475416, 8.577917], - [-12.47625, 8.577916], - [-12.482082, 8.572084], - [-12.487467, 8.571484], - [-12.488075, 8.570837], - [-12.490547, 8.568695], - [-12.49102, 8.568066], - [-12.491729, 8.567099], - [-12.492831, 8.565052], - [-12.493889, 8.566316], - [-12.494361, 8.566633], - [-12.495182, 8.566729], - [-12.495805, 8.566608], - [-12.495941, 8.566683], - [-12.495417, 8.564583], - [-12.505929, 8.561579], - [-12.505729, 8.56114], - [-12.505839, 8.560526], - [-12.505741, 8.559928], - [-12.507082, 8.557917], - [-12.509582, 8.557084], - [-12.513749, 8.557916], - [-12.514582, 8.557917], - [-12.514583, 8.558749], - [-12.515416, 8.558749], - [-12.521249, 8.550417], - [-12.522083, 8.550416], - [-12.525417, 8.548749], - [-12.534796, 8.547306], - [-12.534708, 8.547163], - [-12.532943, 8.546631], - [-12.532074, 8.546125], - [-12.531085, 8.544675], - [-12.530862, 8.543989], - [-12.53091, 8.543248], - [-12.532045, 8.541778], - [-12.53222, 8.540684], - [-12.532157, 8.540399], - [-12.540308, 8.538518], - [-12.54051, 8.538666], - [-12.544878, 8.538899], - [-12.546234, 8.539542], - [-12.546514, 8.539516], - [-12.546734, 8.539352], - [-12.547396, 8.539418], - [-12.547746, 8.539269], - [-12.54792, 8.538899], - [-12.548076, 8.538454], - [-12.548184, 8.538079], - [-12.548369, 8.537496], - [-12.549178, 8.538765], - [-12.553603, 8.535815], - [-12.554588, 8.535487], - [-12.556518, 8.535204], - [-12.55664, 8.535117], - [-12.557917, 8.539583], - [-12.567143, 8.540292], - [-12.567026, 8.538413], - [-12.566615, 8.53753], - [-12.565924, 8.535832], - [-12.565503, 8.533588], - [-12.565129, 8.532949], - [-12.56513, 8.532947], - [-12.565593, 8.532805], - [-12.566023, 8.532901], - [-12.566065, 8.532945], - [-12.567154, 8.532598], - [-12.567379, 8.53216], - [-12.567736, 8.531973], - [-12.568582, 8.531914], - [-12.568748, 8.531833], - [-12.56875, 8.531834], - [-12.56875, 8.532083], - [-12.569583, 8.532084], - [-12.572916, 8.532916], - [-12.574285, 8.53246], - [-12.575036, 8.533338], - [-12.575408, 8.53378], - [-12.575594, 8.534246], - [-12.579582, 8.532917], - [-12.580417, 8.531249], - [-12.58482, 8.529894], - [-12.584449, 8.529761], - [-12.584228, 8.529405], - [-12.583426, 8.528792], - [-12.582734, 8.52788], - [-12.582402, 8.526889], - [-12.582309, 8.526579], - [-12.583089, 8.525923], - [-12.584531, 8.525875], - [-12.584902, 8.525721], - [-12.584917, 8.525726], - [-12.585383, 8.525519], - [-12.585869, 8.524315], - [-12.586861, 8.522855], - [-12.591586, 8.520605], - [-12.591857, 8.52056], - [-12.593444, 8.520122], - [-12.594572, 8.5203], - [-12.594933, 8.520154], - [-12.595651, 8.520278], - [-12.596241, 8.520651], - [-12.597317, 8.520675], - [-12.597712, 8.518313], - [-12.597906, 8.518281], - [-12.598379, 8.518613], - [-12.598673, 8.519095], - [-12.599639, 8.519502], - [-12.600365, 8.519482], - [-12.600289, 8.519789], - [-12.600763, 8.519943], - [-12.60122, 8.51981], - [-12.601891, 8.518374], - [-12.602743, 8.518242], - [-12.603168, 8.517702], - [-12.604422, 8.517276], - [-12.605487, 8.517412], - [-12.606114, 8.517277], - [-12.606275, 8.516394], - [-12.606728, 8.516025], - [-12.606971, 8.515518], - [-12.606594, 8.514752], - [-12.606117, 8.514204], - [-12.604491, 8.513395], - [-12.603095, 8.512989], - [-12.601892, 8.513026], - [-12.60263, 8.509813], - [-12.60625, 8.510417], - [-12.609582, 8.513749], - [-12.61125, 8.521249], - [-12.612917, 8.520417], - [-12.618083, 8.521708], - [-12.61825, 8.52124], - [-12.618651, 8.520861], - [-12.619313, 8.520371], - [-12.619623, 8.5188], - [-12.619694, 8.518734], - [-12.619849, 8.517765], - [-12.620402, 8.516361], - [-12.620332, 8.515505], - [-12.620477, 8.514534] - ] - ], - "type": "Polygon" - }, - "id": 244, - "properties": { - "cc:admin:id": ["93"], - "cc:oBld:total": 430, - "cc:pop:fifteen-to-twenty-four": 1516.5618795319317, - "cc:pop:grid3-total": 15743.191358601509, - "cc:pop:kontur-total": 7889.819727369384, - "cc:pop:men": 3727.804405382628, - "cc:pop:sixty-plus": 512.627999733054, - "cc:pop:total": 7883.452297289944, - "cc:pop:under-five": 1262.2993963542067, - "cc:pop:women": 4155.647891907312, - "cc:pop:women-fiften-to-forty-nine": 2013.5017521144462, - "cc:pop:wp-total": 7893.637192204593, - "cc:pop:wp-total-UN": 9177.495555984951, - "cc:id": "244", - "cc:Name": "Konta-Line MCHP", - "cc:site": [-12.5449, 8.4743], - "user:parentName": "Masimera", - "user:code": "OU_255033", - "user:orgUnitId": "nornKUJmQqn", - "user:level": "4", - "user:parentId": "EfWCa0Cc8WW" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.22519, 7.901175], - [-11.214583, 7.900416], - [-11.21125, 7.89625], - [-11.211249, 7.894468], - [-11.208202, 7.894468], - [-11.208065, 7.894231], - [-11.207916, 7.895417], - [-11.205416, 7.897083], - [-11.204651, 7.896624], - [-11.203069, 7.893884], - [-11.200084, 7.893883], - [-11.197082, 7.892084], - [-11.195417, 7.892084], - [-11.195242, 7.892779], - [-11.195241, 7.892779], - [-11.195082, 7.892131], - [-11.195237, 7.891191], - [-11.195259, 7.891148], - [-11.194242, 7.889728], - [-11.193844, 7.888585], - [-11.19376, 7.888271], - [-11.193416, 7.886819], - [-11.192856, 7.886187], - [-11.192196, 7.887214], - [-11.191899, 7.887692], - [-11.191822, 7.88787], - [-11.191665, 7.888592], - [-11.190957, 7.888403], - [-11.189896, 7.88809], - [-11.189388, 7.887935], - [-11.18879, 7.887768], - [-11.188433, 7.888705], - [-11.187742, 7.888482], - [-11.187887, 7.888043], - [-11.187195, 7.887811], - [-11.187585, 7.886671], - [-11.18733, 7.886577], - [-11.186974, 7.886461], - [-11.18657, 7.887597], - [-11.185984, 7.8874], - [-11.186085, 7.887118], - [-11.184886, 7.886652], - [-11.184717, 7.886596], - [-11.184169, 7.886376], - [-11.184098, 7.886409], - [-11.183213, 7.886733], - [-11.182582, 7.886752], - [-11.181967, 7.886552], - [-11.181764, 7.886859], - [-11.180918, 7.88663], - [-11.180191, 7.887315], - [-11.179981, 7.887336], - [-11.178417, 7.886417], - [-11.17813, 7.886627], - [-11.177753, 7.887775], - [-11.177728, 7.887838], - [-11.177457, 7.887833], - [-11.177024, 7.888457], - [-11.176604, 7.888154], - [-11.175681, 7.887481], - [-11.175334, 7.887225], - [-11.175176, 7.887311], - [-11.174849, 7.887939], - [-11.174372, 7.887742], - [-11.173935, 7.887381], - [-11.173643, 7.887802], - [-11.173207, 7.887503], - [-11.172855, 7.887929], - [-11.171649, 7.887157], - [-11.170973, 7.887511], - [-11.169775, 7.886904], - [-11.168491, 7.886488], - [-11.167685, 7.886535], - [-11.16736, 7.886732], - [-11.167539, 7.88568], - [-11.16701, 7.885551], - [-11.165727, 7.885205], - [-11.164554, 7.884867], - [-11.164238, 7.884714], - [-11.162645, 7.884267], - [-11.162561, 7.884317], - [-11.162168, 7.88555], - [-11.162105, 7.885782], - [-11.162014, 7.886484], - [-11.162748, 7.886742], - [-11.163102, 7.886621], - [-11.163453, 7.887324], - [-11.162984, 7.887503], - [-11.162106, 7.887481], - [-11.161078, 7.888031], - [-11.160823, 7.888371], - [-11.160521, 7.88798], - [-11.159958, 7.887768], - [-11.158907, 7.887682], - [-11.158759, 7.887743], - [-11.158566, 7.888023], - [-11.158542, 7.888053], - [-11.158447, 7.887979], - [-11.158144, 7.887734], - [-11.158018, 7.887554], - [-11.157159, 7.886653], - [-11.156808, 7.886673], - [-11.156493, 7.886475], - [-11.156362, 7.88625], - [-11.157916, 7.886249], - [-11.157916, 7.884584], - [-11.155873, 7.885093], - [-11.15581, 7.885008], - [-11.154583, 7.885416], - [-11.153521, 7.884354], - [-11.153103, 7.885013], - [-11.15329, 7.886168], - [-11.152998, 7.887121], - [-11.15268, 7.88747], - [-11.151519, 7.888165], - [-11.14893, 7.888166], - [-11.149582, 7.892083], - [-11.14625, 7.897083], - [-11.142083, 7.897084], - [-11.142083, 7.897917], - [-11.144582, 7.905416], - [-11.13375, 7.907917], - [-11.13375, 7.912083], - [-11.134235, 7.914022], - [-11.135557, 7.914155], - [-11.136201, 7.913952], - [-11.137481, 7.913222], - [-11.137895, 7.913191], - [-11.13855, 7.913299], - [-11.1386, 7.913311], - [-11.138607, 7.91331], - [-11.141249, 7.91375], - [-11.140417, 7.917916], - [-11.140417, 7.921249], - [-11.142082, 7.924583], - [-11.142916, 7.927917], - [-11.139583, 7.933749], - [-11.137917, 7.934583], - [-11.134583, 7.932917], - [-11.133749, 7.935416], - [-11.130417, 7.935417], - [-11.12803, 7.937206], - [-11.126885, 7.93704], - [-11.123496, 7.937006], - [-11.121997, 7.936371], - [-11.120188, 7.935049], - [-11.119583, 7.935044], - [-11.119582, 7.941249], - [-11.115417, 7.945417], - [-11.117082, 7.947917], - [-11.117083, 7.955416], - [-11.119583, 7.95375], - [-11.122916, 7.953749], - [-11.122917, 7.947917], - [-11.124582, 7.945417], - [-11.132916, 7.945417], - [-11.13375, 7.947084], - [-11.135417, 7.952083], - [-11.138358, 7.951495], - [-11.138427, 7.952577], - [-11.138251, 7.954157], - [-11.138044, 7.954878], - [-11.147916, 7.957917], - [-11.147917, 7.958749], - [-11.148749, 7.959584], - [-11.147917, 7.969583], - [-11.148092, 7.971516], - [-11.149608, 7.968892], - [-11.157419, 7.968892], - [-11.161327, 7.975656], - [-11.169138, 7.975657], - [-11.173045, 7.968892], - [-11.180857, 7.968892], - [-11.184763, 7.975656], - [-11.180858, 7.982423], - [-11.184763, 7.989188], - [-11.192576, 7.989189], - [-11.196051, 7.995206], - [-11.199192, 7.994757], - [-11.198299, 7.992699], - [-11.197499, 7.989099], - [-11.1973, 7.985199], - [-11.1973, 7.9803], - [-11.1979, 7.975599], - [-11.2001, 7.970299], - [-11.2015, 7.964399], - [-11.203999, 7.9584], - [-11.2051, 7.953299], - [-11.2077, 7.948099], - [-11.210899, 7.940799], - [-11.210899, 7.937499], - [-11.2099, 7.933699], - [-11.2103, 7.931399], - [-11.2124, 7.926299], - [-11.214799, 7.922], - [-11.216899, 7.9178], - [-11.220599, 7.9131], - [-11.221999, 7.9104], - [-11.223399, 7.9049], - [-11.22519, 7.901175] - ] - ], - "type": "Polygon" - }, - "id": 245, - "properties": { - "cc:admin:id": ["105"], - "cc:oBld:total": 7282, - "cc:pop:fifteen-to-twenty-four": 14955.380007563468, - "cc:pop:grid3-total": 43353.32018448246, - "cc:pop:kontur-total": 74242.62930732295, - "cc:pop:men": 38655.296908036675, - "cc:pop:sixty-plus": 4583.442163023928, - "cc:pop:total": 77573.63823703911, - "cc:pop:under-five": 12157.980001776728, - "cc:pop:women": 38918.34132900241, - "cc:pop:women-fiften-to-forty-nine": 19493.92822482333, - "cc:pop:wp-total": 58283.196176164405, - "cc:pop:wp-total-UN": 67608.12121167539, - "cc:id": "245", - "cc:Name": "Kordebotehun MCHP", - "cc:site": [-11.1828, 7.8991], - "user:parentName": "Nongowa", - "user:code": "OU_222701", - "user:orgUnitId": "lwHs72tP6Kh", - "user:level": "4", - "user:parentId": "KIUCimTXf8Q" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.513646, 8.048529], - [-12.512799, 8.0485], - [-12.493, 8.048699], - [-12.4877, 8.048], - [-12.483999, 8.045699], - [-12.481799, 8.043699], - [-12.4768, 8.0387], - [-12.472799, 8.035499], - [-12.4689, 8.0339], - [-12.4644, 8.0374], - [-12.463599, 8.0407], - [-12.461599, 8.0452], - [-12.460999, 8.0477], - [-12.460499, 8.0531], - [-12.459899, 8.0556], - [-12.457999, 8.06], - [-12.4574, 8.062799], - [-12.4572, 8.0676], - [-12.457299, 8.084399], - [-12.457399, 8.088299], - [-12.457899, 8.091599], - [-12.458599, 8.093699], - [-12.462499, 8.101199], - [-12.467099, 8.106999], - [-12.470099, 8.112299], - [-12.470523, 8.11281], - [-12.472083, 8.11125], - [-12.479241, 8.111249], - [-12.480187, 8.109611], - [-12.477474, 8.104909], - [-12.484582, 8.105416], - [-12.489582, 8.100416], - [-12.488825, 8.091316], - [-12.491218, 8.09171], - [-12.492221, 8.091657], - [-12.494394, 8.09076], - [-12.494473, 8.090665], - [-12.49375, 8.08125], - [-12.497818, 8.077181], - [-12.493749, 8.07718], - [-12.489844, 8.070415], - [-12.490418, 8.069419], - [-12.489583, 8.06875], - [-12.489562, 8.068435], - [-12.496801, 8.068434], - [-12.500708, 8.061669], - [-12.50852, 8.061668], - [-12.50875, 8.061271], - [-12.50875, 8.057435], - [-12.508804, 8.057429], - [-12.509431, 8.057551], - [-12.510284, 8.05797], - [-12.510563, 8.057934], - [-12.512113, 8.058719], - [-12.512966, 8.0588], - [-12.512917, 8.058749], - [-12.513646, 8.048529] - ] - ], - "type": "Polygon" - }, - "id": 246, - "properties": { - "cc:admin:id": ["59"], - "cc:oBld:total": 8, - "cc:pop:fifteen-to-twenty-four": 175.9569292123883, - "cc:pop:grid3-total": 862.260216962175, - "cc:pop:kontur-total": 617.456147144248, - "cc:pop:men": 477.88941240785937, - "cc:pop:sixty-plus": 71.97481082656502, - "cc:pop:total": 977.7236883279471, - "cc:pop:under-five": 163.22810803328713, - "cc:pop:women": 499.8342759200875, - "cc:pop:women-fiften-to-forty-nine": 239.9452746756803, - "cc:pop:wp-total": 808.2943331043574, - "cc:pop:wp-total-UN": 935.6037991245787, - "cc:id": "246", - "cc:Name": "Korgbotuma MCHP", - "cc:site": [-12.4627, 8.0525], - "user:parentName": "Kaiyamba", - "user:code": "OU_247060", - "user:orgUnitId": "hCm2Nh7C8BW", - "user:level": "4", - "user:parentId": "USQdmvrHh1Q" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.680416, 8.269584], - [-11.67125, 8.265417], - [-11.669582, 8.265416], - [-11.668278, 8.2615], - [-11.668753, 8.261253], - [-11.66375, 8.256249], - [-11.663749, 8.252084], - [-11.662082, 8.251249], - [-11.661249, 8.247917], - [-11.658749, 8.245417], - [-11.65375, 8.244583], - [-11.653749, 8.242917], - [-11.65125, 8.240417], - [-11.64875, 8.239583], - [-11.648749, 8.238749], - [-11.642083, 8.225417], - [-11.642916, 8.223749], - [-11.642916, 8.22125], - [-11.641249, 8.21625], - [-11.640416, 8.216249], - [-11.63625, 8.214583], - [-11.632917, 8.211249], - [-11.632917, 8.210417], - [-11.633749, 8.209583], - [-11.63375, 8.20625], - [-11.636249, 8.20125], - [-11.635417, 8.20125], - [-11.633749, 8.202083], - [-11.630597, 8.198932], - [-11.6266, 8.200699], - [-11.623999, 8.201199], - [-11.6205, 8.200799], - [-11.6153, 8.1985], - [-11.6127, 8.1979], - [-11.6091, 8.1977], - [-11.606399, 8.1979], - [-11.604299, 8.1987], - [-11.6015, 8.200599], - [-11.596, 8.205899], - [-11.593, 8.208199], - [-11.5891, 8.209999], - [-11.585499, 8.2119], - [-11.581499, 8.2135], - [-11.5775, 8.215899], - [-11.5758, 8.2173], - [-11.575, 8.2198], - [-11.5752, 8.223199], - [-11.577499, 8.227899], - [-11.5784, 8.2315], - [-11.5786, 8.2362], - [-11.578699, 8.249899], - [-11.5794, 8.2524], - [-11.582, 8.2585], - [-11.582399, 8.261899], - [-11.581999, 8.2641], - [-11.579899, 8.2689], - [-11.578199, 8.2756], - [-11.5746, 8.283099], - [-11.573199, 8.2854], - [-11.569699, 8.2897], - [-11.566499, 8.2954], - [-11.563899, 8.2986], - [-11.561, 8.300799], - [-11.5571, 8.302699], - [-11.554199, 8.3048], - [-11.552199, 8.3068], - [-11.550099, 8.3097], - [-11.5483, 8.313599], - [-11.546399, 8.3172], - [-11.545099, 8.3203], - [-11.5427, 8.324599], - [-11.541399, 8.3278], - [-11.538999, 8.3321], - [-11.536899, 8.3385], - [-11.536399, 8.3413], - [-11.5361, 8.345099], - [-11.539799, 8.348899], - [-11.5418, 8.3519], - [-11.5438, 8.3562], - [-11.5488, 8.3707], - [-11.5506, 8.3751], - [-11.553659, 8.381074], - [-11.559583, 8.380417], - [-11.562083, 8.392083], - [-11.566249, 8.391249], - [-11.567917, 8.389583], - [-11.569583, 8.387084], - [-11.577083, 8.397083], - [-11.579583, 8.397916], - [-11.583749, 8.393749], - [-11.582916, 8.382917], - [-11.57875, 8.379584], - [-11.578281, 8.379626], - [-11.57828, 8.379625], - [-11.582094, 8.373019], - [-11.578188, 8.366252], - [-11.582094, 8.359487], - [-11.589906, 8.359486], - [-11.593813, 8.352722], - [-11.601625, 8.352721], - [-11.605531, 8.345956], - [-11.611249, 8.345955], - [-11.61125, 8.344584], - [-11.612916, 8.34125], - [-11.615417, 8.338749], - [-11.621249, 8.337084], - [-11.622916, 8.337084], - [-11.629582, 8.341249], - [-11.63375, 8.351249], - [-11.641249, 8.351249], - [-11.645416, 8.347916], - [-11.646249, 8.337084], - [-11.644582, 8.335416], - [-11.642083, 8.32875], - [-11.640417, 8.325416], - [-11.640417, 8.320416], - [-11.64375, 8.316249], - [-11.652082, 8.315417], - [-11.657916, 8.315416], - [-11.65875, 8.312916], - [-11.671249, 8.308749], - [-11.672082, 8.304584], - [-11.667917, 8.297917], - [-11.670416, 8.294583], - [-11.670416, 8.292083], - [-11.669582, 8.28875], - [-11.662083, 8.287917], - [-11.662083, 8.287084], - [-11.667082, 8.282084], - [-11.671249, 8.283749], - [-11.673749, 8.281249], - [-11.672082, 8.27625], - [-11.669583, 8.274583], - [-11.669583, 8.272917], - [-11.678749, 8.271249], - [-11.680416, 8.269584] - ] - ], - "type": "Polygon" - }, - "id": 247, - "properties": { - "cc:admin:id": ["141"], - "cc:oBld:total": 6, - "cc:pop:fifteen-to-twenty-four": 1102.7380613845985, - "cc:pop:grid3-total": 7312.733324930592, - "cc:pop:kontur-total": 6058.650087789045, - "cc:pop:men": 2987.9942545681515, - "cc:pop:sixty-plus": 451.72117177584954, - "cc:pop:total": 6099.467863395095, - "cc:pop:under-five": 993.8178202608906, - "cc:pop:women": 3111.473608826943, - "cc:pop:women-fiften-to-forty-nine": 1495.4609814802802, - "cc:pop:wp-total": 6436.946362829612, - "cc:pop:wp-total-UN": 7463.443365744249, - "cc:id": "247", - "cc:Name": "Koribondo CHC", - "cc:site": [-11.58991, 8.26653], - "user:parentName": "Jaiama Bongor", - "user:code": "OU_820", - "user:orgUnitId": "mwN7QuEfT8m", - "user:level": "4", - "user:parentId": "daJPPxtIrQn" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.033456, 8.012216], - [-11.031899, 8.010599], - [-11.03, 8.008], - [-11.027999, 8.003799], - [-11.0241, 7.9979], - [-11.0211, 7.9957], - [-11.0188, 7.992899], - [-11.017, 7.9869], - [-11.0158, 7.9845], - [-11.0113, 7.9786], - [-11.008, 7.9727], - [-11.004899, 7.9685], - [-11.000599, 7.9735], - [-10.995799, 7.9822], - [-10.993899, 7.9892], - [-10.9931, 8.001599], - [-10.9922, 8.005599], - [-10.988871, 8.011789], - [-10.991812, 8.011789], - [-10.9955, 8.005402], - [-10.995417, 8.006249], - [-11.007082, 8.00625], - [-11.010147, 8.013142], - [-11.011646, 8.01099], - [-11.013452, 8.008448], - [-11.013515, 8.005869], - [-11.014013, 8.002338], - [-11.016249, 8.00625], - [-11.016843, 8.010994], - [-11.01746, 8.011643], - [-11.018623, 8.012143], - [-11.020089, 8.013873], - [-11.02375, 8.00875], - [-11.033456, 8.012216] - ] - ], - "type": "Polygon" - }, - "id": 248, - "properties": { - "cc:admin:id": ["75"], - "cc:oBld:total": 10, - "cc:pop:fifteen-to-twenty-four": 414.94519001611627, - "cc:pop:grid3-total": 1930.933814118556, - "cc:pop:kontur-total": 2046, - "cc:pop:men": 1214.5215476277817, - "cc:pop:sixty-plus": 128.98236306550712, - "cc:pop:total": 2169.74068237314, - "cc:pop:under-five": 335.9628097594318, - "cc:pop:women": 955.2191347453582, - "cc:pop:women-fiften-to-forty-nine": 476.94422753253076, - "cc:pop:wp-total": 2307.2189968756566, - "cc:pop:wp-total-UN": 2676.756983895019, - "cc:id": "248", - "cc:Name": "Kormende MCHP", - "cc:site": [-11.0083, 7.9827], - "user:parentName": "Jong", - "user:code": "OU_197393", - "user:orgUnitId": "S9QckzKX6Lg", - "user:level": "4", - "user:parentId": "VCtF1DbspR5" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.100416, 7.857084], - [-11.099583, 7.856249], - [-11.099582, 7.854584], - [-11.094583, 7.848749], - [-11.094582, 7.842084], - [-11.08375, 7.837916], - [-11.086249, 7.83125], - [-11.08363, 7.827319], - [-11.085265, 7.825901], - [-11.086404, 7.824835], - [-11.082917, 7.825416], - [-11.081249, 7.824583], - [-11.079583, 7.821249], - [-11.079582, 7.81375], - [-11.078497, 7.813749], - [-11.077015, 7.811182], - [-11.072917, 7.807083], - [-11.07375, 7.79625], - [-11.077082, 7.792917], - [-11.080265, 7.792007], - [-11.080917, 7.790878], - [-11.077012, 7.784112], - [-11.077701, 7.782917], - [-11.072083, 7.782916], - [-11.067917, 7.779584], - [-11.067082, 7.767917], - [-11.065416, 7.765417], - [-11.062082, 7.767916], - [-11.057083, 7.767917], - [-11.057082, 7.77125], - [-11.056249, 7.777917], - [-11.05375, 7.780416], - [-11.052083, 7.780417], - [-11.04875, 7.783749], - [-11.046059, 7.78375], - [-11.046234, 7.784111], - [-11.045761, 7.784112], - [-11.041856, 7.790877], - [-11.045445, 7.797096], - [-11.045444, 7.797097], - [-11.045416, 7.797084], - [-11.039583, 7.802917], - [-11.03875, 7.807916], - [-11.038781, 7.807947], - [-11.038819, 7.807948], - [-11.039028, 7.807917], - [-11.039583, 7.808749], - [-11.042916, 7.809584], - [-11.04125, 7.812083], - [-11.03875, 7.812084], - [-11.037484, 7.812505], - [-11.037392, 7.812219], - [-11.037274, 7.812084], - [-11.037083, 7.812084], - [-11.03625, 7.813749], - [-11.037917, 7.814584], - [-11.040417, 7.825416], - [-11.043519, 7.82453], - [-11.042316, 7.826616], - [-11.046189, 7.833325], - [-11.049583, 7.83375], - [-11.054582, 7.842083], - [-11.055416, 7.842917], - [-11.055416, 7.851249], - [-11.052083, 7.85375], - [-11.052082, 7.855417], - [-11.049583, 7.857917], - [-11.049582, 7.859619], - [-11.047934, 7.859566], - [-11.047083, 7.860417], - [-11.047083, 7.866], - [-11.0526, 7.8679], - [-11.055199, 7.871299], - [-11.057399, 7.873799], - [-11.0607, 7.8764], - [-11.0643, 7.8776], - [-11.0689, 7.877899], - [-11.077199, 7.8776], - [-11.0805, 7.876499], - [-11.0828, 7.874299], - [-11.0849, 7.871299], - [-11.091499, 7.867], - [-11.0946, 7.865599], - [-11.097916, 7.863849], - [-11.097917, 7.860465], - [-11.098439, 7.860288], - [-11.099847, 7.859926], - [-11.100416, 7.857084] - ] - ], - "type": "Polygon" - }, - "id": 249, - "properties": { - "cc:admin:id": ["15"], - "cc:oBld:total": 573, - "cc:pop:fifteen-to-twenty-four": 599.412662994964, - "cc:pop:grid3-total": 2744.748081094767, - "cc:pop:kontur-total": 2962.1750155960003, - "cc:pop:men": 1459.601619178765, - "cc:pop:sixty-plus": 192.259854199942, - "cc:pop:total": 3056.0094615046382, - "cc:pop:under-five": 491.9661856974241, - "cc:pop:women": 1596.407842325873, - "cc:pop:women-fiften-to-forty-nine": 811.6391184818946, - "cc:pop:wp-total": 3257.9538148835877, - "cc:pop:wp-total-UN": 3781.1362310734257, - "cc:id": "249", - "cc:Name": "Kornia MCHP", - "cc:site": [-11.0719, 7.8652], - "user:parentName": "Dama", - "user:code": "OU_222736", - "user:orgUnitId": "CSDGDOa7wHd", - "user:level": "4", - "user:parentId": "myQ4q1W6B4y" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.154952, 9.117359], - [-12.153749, 9.11375], - [-12.150417, 9.111249], - [-12.14875, 9.107916], - [-12.14875, 9.106249], - [-12.152916, 9.101249], - [-12.152082, 9.09875], - [-12.148749, 9.096249], - [-12.147082, 9.09125], - [-12.145416, 9.090417], - [-12.142189, 9.090416], - [-12.142476, 9.087537], - [-12.14235, 9.083037], - [-12.142845, 9.081755], - [-12.134583, 9.078749], - [-12.13625, 9.077082], - [-12.141249, 9.071249], - [-12.142082, 9.067083], - [-12.139582, 9.06625], - [-12.130417, 9.067917], - [-12.12923, 9.073848], - [-12.125718, 9.073849], - [-12.12441, 9.076111], - [-12.120416, 9.072917], - [-12.11375, 9.073749], - [-12.111249, 9.072083], - [-12.109583, 9.072082], - [-12.106249, 9.070417], - [-12.104582, 9.071249], - [-12.100416, 9.067083], - [-12.092083, 9.067083], - [-12.094582, 9.070417], - [-12.094582, 9.077082], - [-12.092083, 9.077917], - [-12.090417, 9.082083], - [-12.09125, 9.085416], - [-12.096382, 9.084775], - [-12.096459, 9.085698], - [-12.096178, 9.08686], - [-12.095409, 9.087773], - [-12.092441, 9.089186], - [-12.092266, 9.089767], - [-12.091403, 9.090981], - [-12.089701, 9.092506], - [-12.089017, 9.092839], - [-12.08789, 9.093127], - [-12.087414, 9.093214], - [-12.086218, 9.093203], - [-12.084709, 9.092542], - [-12.084318, 9.092671], - [-12.085417, 9.095416], - [-12.086045, 9.095731], - [-12.08606, 9.095723], - [-12.088989, 9.09964], - [-12.084583, 9.10625], - [-12.083749, 9.110416], - [-12.081826, 9.110898], - [-12.081524, 9.11319], - [-12.087081, 9.118749], - [-12.08375, 9.11875], - [-12.082917, 9.120417], - [-12.082916, 9.125416], - [-12.077082, 9.122083], - [-12.07125, 9.122083], - [-12.071249, 9.12375], - [-12.067083, 9.127917], - [-12.06125, 9.139583], - [-12.06125, 9.140417], - [-12.06711, 9.146276], - [-12.067076, 9.1463], - [-12.06625, 9.152916], - [-12.06625, 9.153669], - [-12.066408, 9.153678], - [-12.067703, 9.154189], - [-12.070074, 9.154144], - [-12.071817, 9.154509], - [-12.073305, 9.155717], - [-12.074944, 9.156566], - [-12.075778, 9.157177], - [-12.076096, 9.157807], - [-12.077473, 9.158608], - [-12.077091, 9.158958], - [-12.076299, 9.158997], - [-12.075626, 9.159689], - [-12.072799, 9.160617], - [-12.070398, 9.160432], - [-12.069587, 9.160319], - [-12.068968, 9.16047], - [-12.068421, 9.160697], - [-12.067644, 9.161257], - [-12.070417, 9.165416], - [-12.072083, 9.164583], - [-12.078749, 9.169582], - [-12.07875, 9.170416], - [-12.080417, 9.170417], - [-12.082083, 9.172916], - [-12.085416, 9.174582], - [-12.085416, 9.175417], - [-12.083725, 9.176544], - [-12.084785, 9.17798], - [-12.085746, 9.181023], - [-12.086163, 9.181402], - [-12.085757, 9.181603], - [-12.084731, 9.182652], - [-12.086793, 9.182759], - [-12.087132, 9.182987], - [-12.087631, 9.183942], - [-12.088248, 9.184289], - [-12.088707, 9.184928], - [-12.08946, 9.184896], - [-12.089367, 9.185284], - [-12.089042, 9.186759], - [-12.089262, 9.187133], - [-12.089607, 9.187334], - [-12.090295, 9.187457], - [-12.0921, 9.183999], - [-12.0971, 9.177399], - [-12.0995, 9.172799], - [-12.1024, 9.169199], - [-12.108999, 9.1624], - [-12.1108, 9.160299], - [-12.1123, 9.157499], - [-12.113399, 9.1529], - [-12.114099, 9.1508], - [-12.115299, 9.1489], - [-12.1177, 9.146099], - [-12.125799, 9.1376], - [-12.1289, 9.1333], - [-12.1328, 9.130499], - [-12.138399, 9.126], - [-12.143799, 9.123], - [-12.148099, 9.1195], - [-12.149999, 9.1183], - [-12.152999, 9.1174], - [-12.154952, 9.117359] - ] - ], - "type": "Polygon" - }, - "id": 250, - "properties": { - "cc:admin:id": ["32"], - "cc:oBld:total": 112, - "cc:pop:fifteen-to-twenty-four": 678.8976866177103, - "cc:pop:grid3-total": 3219.695406465812, - "cc:pop:kontur-total": 3713.3446136255593, - "cc:pop:men": 1674.1002072822746, - "cc:pop:sixty-plus": 251.26792617905986, - "cc:pop:total": 3524.5948946410645, - "cc:pop:under-five": 555.2051461633315, - "cc:pop:women": 1850.4946873587896, - "cc:pop:women-fiften-to-forty-nine": 909.7939059052989, - "cc:pop:wp-total": 3471.0764141946565, - "cc:pop:wp-total-UN": 4023.8055745272964, - "cc:id": "250", - "cc:Name": "Kortohun CHP", - "cc:site": [-12.1149, 9.1225], - "user:parentName": "Gbendembu Ngowahun", - "user:code": "OU_193284", - "user:orgUnitId": "z6v73gowbuM", - "user:level": "4", - "user:parentId": "BXJdOLvUrZB" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.635382, 7.417589], - [-11.634865, 7.417428], - [-11.63198, 7.418419], - [-11.631498, 7.41875], - [-11.628965, 7.418749], - [-11.62513, 7.412107], - [-11.628889, 7.405594], - [-11.617083, 7.406249], - [-11.617083, 7.405825], - [-11.618954, 7.404787], - [-11.61875, 7.404583], - [-11.619582, 7.397917], - [-11.618749, 7.395417], - [-11.60875, 7.39125], - [-11.608749, 7.38875], - [-11.606249, 7.385417], - [-11.602083, 7.386249], - [-11.599926, 7.384092], - [-11.599926, 7.384091], - [-11.600116, 7.384016], - [-11.597917, 7.382917], - [-11.597082, 7.37625], - [-11.58875, 7.379583], - [-11.587917, 7.370417], - [-11.587083, 7.367083], - [-11.587082, 7.36125], - [-11.577917, 7.36125], - [-11.57375, 7.364584], - [-11.572917, 7.375416], - [-11.575416, 7.377916], - [-11.575417, 7.379583], - [-11.579582, 7.382917], - [-11.579582, 7.384583], - [-11.576066, 7.384877], - [-11.572386, 7.391251], - [-11.576148, 7.39777], - [-11.575416, 7.397916], - [-11.567917, 7.397084], - [-11.570417, 7.407083], - [-11.572916, 7.41125], - [-11.568749, 7.415416], - [-11.559583, 7.415417], - [-11.554583, 7.410417], - [-11.553749, 7.414583], - [-11.552532, 7.416104], - [-11.55051, 7.419607], - [-11.545731, 7.419608], - [-11.545871, 7.419778], - [-11.54599, 7.420303], - [-11.54577, 7.426448], - [-11.546134, 7.430833], - [-11.541956, 7.430834], - [-11.53805, 7.437599], - [-11.538988, 7.439226], - [-11.537917, 7.439584], - [-11.53625, 7.442084], - [-11.538995, 7.448947], - [-11.539065, 7.448941], - [-11.542082, 7.45875], - [-11.542082, 7.459584], - [-11.540417, 7.466249], - [-11.542082, 7.470416], - [-11.542917, 7.473749], - [-11.54625, 7.477083], - [-11.552572, 7.477715], - [-11.552631, 7.477799], - [-11.554886, 7.479935], - [-11.556929, 7.48133], - [-11.558386, 7.482082], - [-11.5593, 7.481899], - [-11.5619, 7.479999], - [-11.564699, 7.4769], - [-11.5681, 7.471099], - [-11.570699, 7.4686], - [-11.5744, 7.466699], - [-11.5786, 7.463099], - [-11.5807, 7.460199], - [-11.5826, 7.456399], - [-11.5848, 7.453399], - [-11.590799, 7.4467], - [-11.5934, 7.4428], - [-11.5978, 7.44], - [-11.600699, 7.4395], - [-11.6037, 7.4409], - [-11.606399, 7.442899], - [-11.6075, 7.445499], - [-11.610799, 7.444699], - [-11.612999, 7.4434], - [-11.6176, 7.439799], - [-11.6235, 7.436599], - [-11.6269, 7.433499], - [-11.6292, 7.430399], - [-11.630899, 7.4265], - [-11.632899, 7.4229], - [-11.634199, 7.4198], - [-11.635382, 7.417589] - ] - ], - "type": "Polygon" - }, - "id": 251, - "properties": { - "cc:admin:id": ["27"], - "cc:oBld:total": 2, - "cc:pop:fifteen-to-twenty-four": 919.3848091947699, - "cc:pop:grid3-total": 4125.0777195288165, - "cc:pop:kontur-total": 5045.4342462172835, - "cc:pop:men": 2446.438397542042, - "cc:pop:sixty-plus": 354.59261756076637, - "cc:pop:total": 5077.755450540905, - "cc:pop:under-five": 840.6620548590834, - "cc:pop:women": 2631.3170529988643, - "cc:pop:women-fiften-to-forty-nine": 1255.0080079616057, - "cc:pop:wp-total": 5471.351141129838, - "cc:pop:wp-total-UN": 6347.766901363339, - "cc:id": "251", - "cc:Name": "Kowama MCHP", - "cc:site": [-11.5706, 7.4362], - "user:parentName": "Galliness Perri", - "user:code": "OU_260426", - "user:orgUnitId": "jr5hIZcJBXB", - "user:level": "4", - "user:parentId": "eNtRuQrrZeo" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.092029, 8.960195], - [-13.09066, 8.959852], - [-13.090585, 8.956788], - [-13.089903, 8.953656], - [-13.089583, 8.952754], - [-13.089583, 8.95125], - [-13.090452, 8.950814], - [-13.089379, 8.949437], - [-13.086815, 8.947955], - [-13.082083, 8.947256], - [-13.082083, 8.947915], - [-13.082081, 8.947916], - [-13.07875, 8.947083], - [-13.075417, 8.947082], - [-13.073749, 8.944583], - [-13.073291, 8.944582], - [-13.073233, 8.942917], - [-13.073187, 8.94125], - [-13.073926, 8.939827], - [-13.074782, 8.93863], - [-13.076178, 8.937661], - [-13.078371, 8.936921], - [-13.081417, 8.93621], - [-13.084294, 8.935668], - [-13.085547, 8.935753], - [-13.087143, 8.934415], - [-13.088562, 8.933332], - [-13.085899, 8.9334], - [-13.0793, 8.934499], - [-13.0749, 8.934], - [-13.0684, 8.9317], - [-13.062699, 8.930099], - [-13.0581, 8.9282], - [-13.054799, 8.927599], - [-13.048999, 8.9273], - [-13.0303, 8.9273], - [-13.024599, 8.9275], - [-13.0204, 8.9287], - [-13.014, 8.933299], - [-13.009299, 8.9361], - [-13.003, 8.940899], - [-12.9934, 8.9456], - [-12.99, 8.950699], - [-12.9881, 8.954799], - [-12.987499, 8.9615], - [-12.9869, 8.964099], - [-12.9856, 8.966399], - [-12.983299, 8.9691], - [-12.976799, 8.9755], - [-12.973999, 8.9777], - [-12.970391, 8.979719], - [-12.973002, 8.982852], - [-12.974217, 8.981891], - [-12.976617, 8.979826], - [-12.978083, 8.9788], - [-12.979418, 8.978134], - [-12.9807, 8.977615], - [-12.981688, 8.977359], - [-12.983194, 8.976991], - [-12.981251, 8.973752], - [-12.981251, 8.97375], - [-12.987917, 8.975417], - [-12.988476, 8.975977], - [-12.988127, 8.976061], - [-12.987657, 8.976141], - [-12.987338, 8.978052], - [-12.987641, 8.977985], - [-12.987916, 8.977909], - [-12.987917, 8.977917], - [-12.991149, 8.979532], - [-12.991065, 8.979686], - [-12.991243, 8.980656], - [-12.992206, 8.981399], - [-12.992298, 8.979957], - [-12.992669, 8.979329], - [-12.992998, 8.978279], - [-12.994018, 8.977565], - [-12.994583, 8.977542], - [-12.9951, 8.977221], - [-12.995737, 8.977208], - [-12.996795, 8.976264], - [-12.99789, 8.977648], - [-12.999432, 8.978584], - [-13.000155, 8.982874], - [-13.002672, 8.985123], - [-13.00314, 8.985735], - [-13.004365, 8.988685], - [-13.005386, 8.990337], - [-13.005957, 8.990906], - [-13.006434, 8.991351], - [-13.006458, 8.991389], - [-13.010416, 8.98875], - [-13.010417, 8.993466], - [-13.010871, 8.993367], - [-13.012042, 8.993287], - [-13.01317, 8.993257], - [-13.013341, 8.993446], - [-13.013545, 8.993113], - [-13.013753, 8.992924], - [-13.015104, 8.992294], - [-13.015864, 8.992169], - [-13.01638, 8.992089], - [-13.017463, 8.991939], - [-13.017917, 8.993749], - [-13.021249, 8.996249], - [-13.02125, 8.998949], - [-13.023103, 8.998408], - [-13.023101, 8.998923], - [-13.024136, 8.998929], - [-13.024135, 8.999443], - [-13.02517, 8.999449], - [-13.024916, 8.998676], - [-13.025434, 8.998677], - [-13.025179, 8.998162], - [-13.026731, 8.998298], - [-13.028286, 8.997921], - [-13.028286, 8.997923], - [-13.028029, 8.998177], - [-13.028027, 8.998434], - [-13.029323, 8.998184], - [-13.029589, 8.997155], - [-13.030367, 8.9969], - [-13.030459, 8.996474], - [-13.031146, 8.996647], - [-13.03141, 8.995619], - [-13.030894, 8.995615], - [-13.031153, 8.995359], - [-13.031154, 8.995102], - [-13.030896, 8.995101], - [-13.030637, 8.995354], - [-13.030636, 8.995354], - [-13.030899, 8.994328], - [-13.030639, 8.994454], - [-13.030253, 8.994323], - [-13.030383, 8.993938], - [-13.029998, 8.99355], - [-13.029871, 8.993035], - [-13.029872, 8.993034], - [-13.030388, 8.993036], - [-13.030392, 8.992264], - [-13.029616, 8.992259], - [-13.029617, 8.992002], - [-13.030653, 8.992008], - [-13.030781, 8.992523], - [-13.031166, 8.99304], - [-13.032202, 8.993047], - [-13.031939, 8.993817], - [-13.032457, 8.993821], - [-13.032455, 8.994335], - [-13.03427, 8.993831], - [-13.034271, 8.993832], - [-13.03418, 8.994256], - [-13.033751, 8.994343], - [-13.033749, 8.9946], - [-13.034266, 8.994602], - [-13.034357, 8.994434], - [-13.034785, 8.994605], - [-13.03479, 8.993833], - [-13.035048, 8.993834], - [-13.035045, 8.994607], - [-13.036598, 8.994743], - [-13.037079, 8.994509], - [-13.036034, 8.995461], - [-13.035241, 8.995593], - [-13.034652, 8.996181], - [-13.034766, 8.996147], - [-13.035813, 8.995852], - [-13.036861, 8.995579], - [-13.037796, 8.995419], - [-13.039823, 8.99576], - [-13.040347, 8.995828], - [-13.040963, 8.995646], - [-13.041099, 8.994598], - [-13.040918, 8.992844], - [-13.040895, 8.991318], - [-13.040827, 8.990042], - [-13.040667, 8.988469], - [-13.040577, 8.987401], - [-13.040606, 8.986441], - [-13.040367, 8.985688], - [-13.039632, 8.98492], - [-13.038775, 8.984389], - [-13.03757, 8.983382], - [-13.037683, 8.982781], - [-13.038181, 8.982158], - [-13.039255, 8.982818], - [-13.041072, 8.983375], - [-13.041133, 8.982653], - [-13.042251, 8.983116], - [-13.043162, 8.983373], - [-13.043903, 8.983418], - [-13.04454, 8.983194], - [-13.045319, 8.982645], - [-13.046551, 8.980865], - [-13.047244, 8.980228], - [-13.04803, 8.979863], - [-13.049014, 8.979885], - [-13.049913, 8.980369], - [-13.05073, 8.981204], - [-13.051268, 8.982431], - [-13.052162, 8.984166], - [-13.053245, 8.984337], - [-13.055779, 8.984224], - [-13.05951, 8.983796], - [-13.060877, 8.983084], - [-13.061505, 8.981916], - [-13.062245, 8.980349], - [-13.063669, 8.978726], - [-13.065406, 8.977131], - [-13.066118, 8.97491], - [-13.066603, 8.97323], - [-13.067868, 8.971887], - [-13.070416, 8.97125], - [-13.070689, 8.970977], - [-13.071729, 8.971263], - [-13.07415, 8.972317], - [-13.075424, 8.972933], - [-13.07625, 8.974582], - [-13.077916, 8.974582], - [-13.080416, 8.973749], - [-13.080416, 8.972917], - [-13.080198, 8.972698], - [-13.080389, 8.972539], - [-13.084205, 8.968837], - [-13.085225, 8.967727], - [-13.085226, 8.967727], - [-13.085417, 8.967917], - [-13.087342, 8.967916], - [-13.090545, 8.96461], - [-13.091969, 8.96233], - [-13.092029, 8.960195] - ] - ], - "type": "Polygon" - }, - "id": 252, - "properties": { - "cc:admin:id": ["115"], - "cc:oBld:total": 1577, - "cc:pop:fifteen-to-twenty-four": 1948.934341606828, - "cc:pop:grid3-total": 9784.76414156452, - "cc:pop:kontur-total": 10938.028147556573, - "cc:pop:men": 5163.413828715724, - "cc:pop:sixty-plus": 608.3448920345312, - "cc:pop:total": 11183.323622714986, - "cc:pop:under-five": 1725.1826017504686, - "cc:pop:women": 6019.90979399926, - "cc:pop:women-fiften-to-forty-nine": 2896.174474191345, - "cc:pop:wp-total": 9993.632327716266, - "cc:pop:wp-total-UN": 11605.743515780037, - "cc:id": "252", - "cc:Name": "Koya MCHP", - "cc:site": [-13.035, 8.9658], - "user:parentName": "Samu", - "user:code": "OU_211244", - "user:orgUnitId": "brnL0W3Fbsj", - "user:level": "4", - "user:parentId": "r06ohri9wA9" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.239343, 7.720817], - [-11.23892, 7.721562], - [-11.235966, 7.723747], - [-11.235143, 7.725709], - [-11.235141, 7.725709], - [-11.234871, 7.725242], - [-11.234582, 7.72625], - [-11.232082, 7.728749], - [-11.230416, 7.728749], - [-11.221711, 7.725848], - [-11.221612, 7.726249], - [-11.221249, 7.726249], - [-11.214583, 7.722084], - [-11.209583, 7.725417], - [-11.209007, 7.730595], - [-11.208203, 7.72964], - [-11.207452, 7.72933], - [-11.206493, 7.729375], - [-11.206112, 7.729243], - [-11.205992, 7.729449], - [-11.198181, 7.729449], - [-11.194273, 7.736214], - [-11.190943, 7.736214], - [-11.190814, 7.735309], - [-11.185187, 7.735308], - [-11.18128, 7.728544], - [-11.176877, 7.728543], - [-11.172917, 7.724584], - [-11.173749, 7.712917], - [-11.170416, 7.70875], - [-11.154583, 7.71125], - [-11.153749, 7.722083], - [-11.150417, 7.725417], - [-11.147916, 7.732083], - [-11.143287, 7.731422], - [-11.143247, 7.731638], - [-11.142083, 7.73125], - [-11.139582, 7.727917], - [-11.137916, 7.727916], - [-11.132917, 7.72375], - [-11.129583, 7.727084], - [-11.12875, 7.732083], - [-11.128307, 7.732525], - [-11.127464, 7.731067], - [-11.119653, 7.731067], - [-11.117386, 7.734991], - [-11.113749, 7.732084], - [-11.104893, 7.732821], - [-11.104765, 7.731479], - [-11.104369, 7.730896], - [-11.102647, 7.729384], - [-11.10173, 7.726604], - [-11.100597, 7.724141], - [-11.099575, 7.723435], - [-11.098759, 7.722193], - [-11.097782, 7.721336], - [-11.09625, 7.720417], - [-11.08375, 7.722083], - [-11.082916, 7.717917], - [-11.07125, 7.717083], - [-11.069052, 7.714337], - [-11.066862, 7.714337], - [-11.064697, 7.718086], - [-11.066249, 7.720417], - [-11.057083, 7.729583], - [-11.061635, 7.729583], - [-11.065541, 7.722818], - [-11.069837, 7.722818], - [-11.071249, 7.724584], - [-11.070997, 7.727868], - [-11.074674, 7.727869], - [-11.07858, 7.734634], - [-11.083749, 7.734635], - [-11.08375, 7.735417], - [-11.086249, 7.73875], - [-11.087083, 7.741249], - [-11.092917, 7.742917], - [-11.097083, 7.751249], - [-11.102082, 7.75125], - [-11.105416, 7.752916], - [-11.11125, 7.758749], - [-11.112083, 7.758749], - [-11.116249, 7.757084], - [-11.118747, 7.756251], - [-11.119786, 7.757651], - [-11.120319, 7.75813], - [-11.126209, 7.758131], - [-11.12621, 7.758132], - [-11.124554, 7.759839], - [-11.124099, 7.761031], - [-11.123599, 7.76153], - [-11.124235, 7.763046], - [-11.12455, 7.763454], - [-11.126612, 7.764046], - [-11.128951, 7.765381], - [-11.129332, 7.765855], - [-11.129813, 7.767221], - [-11.130741, 7.7683], - [-11.131347, 7.768826], - [-11.132695, 7.769479], - [-11.133762, 7.770693], - [-11.135589, 7.771907], - [-11.135888, 7.772753], - [-11.141249, 7.772083], - [-11.146833, 7.76929], - [-11.147073, 7.767492], - [-11.146854, 7.765087], - [-11.146906, 7.764495], - [-11.150417, 7.76625], - [-11.157083, 7.77125], - [-11.158749, 7.777084], - [-11.155209, 7.783455], - [-11.15482, 7.783275], - [-11.152917, 7.787083], - [-11.154973, 7.789483], - [-11.154868, 7.789484], - [-11.150963, 7.796249], - [-11.154869, 7.803014], - [-11.157817, 7.803014], - [-11.158749, 7.802084], - [-11.159583, 7.797917], - [-11.162916, 7.797917], - [-11.162917, 7.812083], - [-11.16609, 7.815257], - [-11.16609, 7.815259], - [-11.166005, 7.815319], - [-11.168059, 7.817888], - [-11.163914, 7.824904], - [-11.16151, 7.827723], - [-11.160362, 7.830425], - [-11.159713, 7.831159], - [-11.157858, 7.832362], - [-11.157375, 7.831901], - [-11.157083, 7.831915], - [-11.157082, 7.832083], - [-11.156568, 7.832084], - [-11.154995, 7.832956], - [-11.152909, 7.833763], - [-11.151395, 7.835445], - [-11.150878, 7.836862], - [-11.150172, 7.840306], - [-11.150204, 7.841048], - [-11.149581, 7.84137], - [-11.149265, 7.842638], - [-11.14963, 7.843711], - [-11.149472, 7.845984], - [-11.148317, 7.847797], - [-11.147593, 7.848449], - [-11.14751, 7.848761], - [-11.147758, 7.849446], - [-11.146777, 7.852198], - [-11.146244, 7.852824], - [-11.145695, 7.852947], - [-11.145214, 7.852866], - [-11.144098, 7.853631], - [-11.141861, 7.854168], - [-11.140881, 7.855099], - [-11.140205, 7.855991], - [-11.140285, 7.856456], - [-11.139955, 7.857001], - [-11.139436, 7.857022], - [-11.139248, 7.857254], - [-11.139624, 7.858774], - [-11.139796, 7.85894], - [-11.139569, 7.859022], - [-11.139578, 7.859213], - [-11.139025, 7.859907], - [-11.138638, 7.860084], - [-11.138617, 7.860266], - [-11.137178, 7.861595], - [-11.13421, 7.863135], - [-11.134117, 7.863449], - [-11.132908, 7.863879], - [-11.13218, 7.864447], - [-11.131048, 7.865013], - [-11.131441, 7.865797], - [-11.132599, 7.865499], - [-11.135099, 7.8637], - [-11.139699, 7.8593], - [-11.142799, 7.8568], - [-11.147699, 7.8542], - [-11.1506, 7.851999], - [-11.1577, 7.844899], - [-11.1607, 7.841199], - [-11.1633, 7.836299], - [-11.165499, 7.8334], - [-11.1674, 7.831299], - [-11.217799, 7.7808], - [-11.2209, 7.777899], - [-11.225499, 7.773999], - [-11.228099, 7.7693], - [-11.229999, 7.7654], - [-11.233099, 7.7616], - [-11.233392, 7.761302], - [-11.232884, 7.760363], - [-11.232614, 7.759414], - [-11.235106, 7.755369], - [-11.23532, 7.754707], - [-11.235412, 7.751534], - [-11.234231, 7.750806], - [-11.235779, 7.744869], - [-11.234353, 7.744423], - [-11.234516, 7.741394], - [-11.236023, 7.73875], - [-11.233961, 7.73875], - [-11.23396, 7.738748], - [-11.234189, 7.737983], - [-11.234679, 7.737639], - [-11.234911, 7.735983], - [-11.235631, 7.734726], - [-11.235228, 7.734526], - [-11.236136, 7.731498], - [-11.236383, 7.731174], - [-11.2363, 7.730953], - [-11.239343, 7.720817] - ] - ], - "type": "Polygon" - }, - "id": 253, - "properties": { - "cc:admin:id": ["15"], - "cc:oBld:total": 1550, - "cc:pop:fifteen-to-twenty-four": 1981.494111067261, - "cc:pop:grid3-total": 7408.536780029349, - "cc:pop:kontur-total": 10199.791053325109, - "cc:pop:men": 4810.566753171662, - "cc:pop:sixty-plus": 608.484032759446, - "cc:pop:total": 10108.169608628443, - "cc:pop:under-five": 1599.2310882930763, - "cc:pop:women": 5297.602855456778, - "cc:pop:women-fiften-to-forty-nine": 2671.0086638122457, - "cc:pop:wp-total": 8699.172907368655, - "cc:pop:wp-total-UN": 10097.383642870396, - "cc:id": "253", - "cc:Name": "Kpandebu CHC", - "cc:site": [-11.1959, 7.7551], - "user:parentName": "Dama", - "user:code": "OU_222740", - "user:orgUnitId": "TljiT6C5D0J", - "user:level": "4", - "user:parentId": "myQ4q1W6B4y" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.110416, 8.182917], - [-11.107916, 8.180417], - [-11.105416, 8.182084], - [-11.095417, 8.183749], - [-11.095417, 8.180416], - [-11.096249, 8.177084], - [-11.095417, 8.177083], - [-11.095416, 8.176249], - [-11.09375, 8.170417], - [-11.098773, 8.166829], - [-11.09876, 8.166775], - [-11.097997, 8.165627], - [-11.095381, 8.16379], - [-11.094829, 8.163215], - [-11.093483, 8.160369], - [-11.093023, 8.157818], - [-11.092981, 8.157717], - [-11.087917, 8.157084], - [-11.087916, 8.162083], - [-11.087344, 8.162656], - [-11.087257, 8.162925], - [-11.087491, 8.163076], - [-11.087422, 8.16393], - [-11.087421, 8.16393], - [-11.087119, 8.16364], - [-11.086968, 8.1636], - [-11.086945, 8.163743], - [-11.086944, 8.163743], - [-11.086751, 8.163545], - [-11.0862, 8.16384], - [-11.086184, 8.163815], - [-11.085417, 8.164584], - [-11.085416, 8.16875], - [-11.083749, 8.169583], - [-11.075417, 8.167917], - [-11.075417, 8.171249], - [-11.079014, 8.177007], - [-11.079396, 8.176712], - [-11.079582, 8.177084], - [-11.07875, 8.186249], - [-11.077917, 8.18625], - [-11.077083, 8.187084], - [-11.07625, 8.190416], - [-11.076249, 8.197917], - [-11.074583, 8.199584], - [-11.072917, 8.202916], - [-11.072083, 8.202917], - [-11.07125, 8.203749], - [-11.071222, 8.203884], - [-11.070628, 8.203796], - [-11.069793, 8.203909], - [-11.069197, 8.204561], - [-11.068968, 8.2053], - [-11.068133, 8.205601], - [-11.067373, 8.205301], - [-11.066764, 8.205839], - [-11.065816, 8.205575], - [-11.065498, 8.204975], - [-11.065616, 8.204857], - [-11.065321, 8.204575], - [-11.064659, 8.203637], - [-11.064857, 8.203455], - [-11.064866, 8.203438], - [-11.064737, 8.203335], - [-11.06465, 8.203282], - [-11.064073, 8.203097], - [-11.064009, 8.203133], - [-11.063156, 8.20404], - [-11.062663, 8.203944], - [-11.062089, 8.20356], - [-11.062121, 8.203505], - [-11.061885, 8.203303], - [-11.060854, 8.203261], - [-11.060661, 8.203168], - [-11.059208, 8.202931], - [-11.057362, 8.203209], - [-11.057159, 8.204009], - [-11.056126, 8.204792], - [-11.056554, 8.204809], - [-11.056706, 8.20459], - [-11.056978, 8.204576], - [-11.057248, 8.204965], - [-11.057164, 8.205307], - [-11.056732, 8.205374], - [-11.056461, 8.20529], - [-11.056451, 8.204965], - [-11.056219, 8.205136], - [-11.055966, 8.204959], - [-11.055481, 8.205317], - [-11.055805, 8.20604], - [-11.056012, 8.206709], - [-11.056013, 8.206887], - [-11.056261, 8.206756], - [-11.056754, 8.206943], - [-11.057262, 8.207457], - [-11.059148, 8.207634], - [-11.057148, 8.209163], - [-11.056319, 8.20948], - [-11.056248, 8.210266], - [-11.056667, 8.211175], - [-11.05714, 8.211819], - [-11.057221, 8.212044], - [-11.057194, 8.212694], - [-11.057487, 8.21325], - [-11.0582, 8.213779], - [-11.05852, 8.214147], - [-11.059465, 8.215289], - [-11.060168, 8.216177], - [-11.060183, 8.216279], - [-11.059754, 8.216421], - [-11.060086, 8.217128], - [-11.060735, 8.216994], - [-11.060825, 8.217153], - [-11.061051, 8.217195], - [-11.063348, 8.217399], - [-11.064328, 8.217076], - [-11.064698, 8.216748], - [-11.06471, 8.216689], - [-11.064017, 8.216368], - [-11.064017, 8.216366], - [-11.066094, 8.215927], - [-11.066637, 8.216109], - [-11.066772, 8.215792], - [-11.067605, 8.215667], - [-11.068139, 8.215578], - [-11.068125, 8.215185], - [-11.068123, 8.215047], - [-11.06815, 8.214786], - [-11.068366, 8.21468], - [-11.07006, 8.214501], - [-11.070375, 8.215102], - [-11.071159, 8.214988], - [-11.071008, 8.214347], - [-11.071009, 8.214346], - [-11.071633, 8.214214], - [-11.073175, 8.21395], - [-11.07495, 8.213655], - [-11.075189, 8.213765], - [-11.075471, 8.213623], - [-11.075787, 8.213402], - [-11.075874, 8.213493], - [-11.076329, 8.213173], - [-11.0763, 8.213045], - [-11.076513, 8.212885], - [-11.076512, 8.21283], - [-11.07659, 8.212822], - [-11.07749, 8.212035], - [-11.078011, 8.211346], - [-11.077916, 8.211185], - [-11.077917, 8.210417], - [-11.078573, 8.210417], - [-11.078551, 8.210582], - [-11.079365, 8.209549], - [-11.081512, 8.207895], - [-11.082736, 8.206085], - [-11.083158, 8.204861], - [-11.083664, 8.205322], - [-11.084273, 8.205879], - [-11.085252, 8.207364], - [-11.086087, 8.20791], - [-11.088749, 8.204584], - [-11.090416, 8.204583], - [-11.08875, 8.200417], - [-11.089583, 8.199583], - [-11.096249, 8.195417], - [-11.097083, 8.195416], - [-11.102083, 8.192917], - [-11.109582, 8.192916], - [-11.110416, 8.182917] - ] - ], - "type": "Polygon" - }, - "id": 254, - "properties": { - "cc:admin:id": ["75"], - "cc:oBld:total": 733, - "cc:pop:fifteen-to-twenty-four": 2446.0294079352398, - "cc:pop:grid3-total": 8278.225728923973, - "cc:pop:kontur-total": 8244.450565668903, - "cc:pop:men": 7120.079324982882, - "cc:pop:sixty-plus": 747.7789960814272, - "cc:pop:total": 12736.923972573808, - "cc:pop:under-five": 1981.0602296020816, - "cc:pop:women": 5616.844647590928, - "cc:pop:women-fiften-to-forty-nine": 2794.0665917947103, - "cc:pop:wp-total": 9913.032547665538, - "cc:pop:wp-total-UN": 11485.160547304726, - "cc:id": "254", - "cc:Name": "Kpandebu MCHP", - "cc:site": [-11.0713, 8.2141], - "user:parentName": "Lower Bambara", - "user:code": "OU_222653", - "user:orgUnitId": "PFZbQjwty2n", - "user:level": "4", - "user:parentId": "hdEuw2ugkVF" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.181301, 7.871026], - [-11.181202, 7.870925], - [-11.180856, 7.870768], - [-11.180758, 7.870682], - [-11.180388, 7.870446], - [-11.180047, 7.86942], - [-11.179527, 7.868596], - [-11.179242, 7.867619], - [-11.178873, 7.867357], - [-11.178786, 7.867058], - [-11.177684, 7.866911], - [-11.176425, 7.866601], - [-11.175719, 7.865877], - [-11.175688, 7.865388], - [-11.175868, 7.865023], - [-11.174887, 7.864637], - [-11.174706, 7.865121], - [-11.174841, 7.86585], - [-11.175003, 7.86606], - [-11.17479, 7.866689], - [-11.174392, 7.86615], - [-11.173661, 7.865829], - [-11.173657, 7.86568], - [-11.173363, 7.865521], - [-11.173056, 7.865617], - [-11.173317, 7.864911], - [-11.173332, 7.864899], - [-11.174118, 7.864013], - [-11.174535, 7.864109], - [-11.174692, 7.863526], - [-11.174471, 7.863463], - [-11.1742, 7.86341], - [-11.173553, 7.863268], - [-11.173149, 7.863461], - [-11.173197, 7.863575], - [-11.173196, 7.863577], - [-11.168965, 7.863576], - [-11.168475, 7.86273], - [-11.16723, 7.863031], - [-11.166599, 7.863407], - [-11.16604, 7.862407], - [-11.165724, 7.861717], - [-11.165683, 7.861684], - [-11.164461, 7.861024], - [-11.163371, 7.860604], - [-11.162956, 7.860339], - [-11.162916, 7.860417], - [-11.16125, 7.860417], - [-11.161249, 7.862083], - [-11.155417, 7.862083], - [-11.152916, 7.859584], - [-11.147083, 7.857916], - [-11.14625, 7.855417], - [-11.146072, 7.855063], - [-11.142799, 7.8568], - [-11.139699, 7.8593], - [-11.1351, 7.863699], - [-11.132646, 7.865467], - [-11.137916, 7.873749], - [-11.137917, 7.876249], - [-11.140416, 7.879584], - [-11.140416, 7.882084], - [-11.13875, 7.889583], - [-11.14125, 7.897083], - [-11.146249, 7.897083], - [-11.149582, 7.892083], - [-11.14893, 7.888166], - [-11.151519, 7.888165], - [-11.15268, 7.88747], - [-11.152998, 7.887121], - [-11.15329, 7.886168], - [-11.153103, 7.885013], - [-11.15352, 7.884354], - [-11.154583, 7.885416], - [-11.15581, 7.885007], - [-11.154736, 7.883541], - [-11.154444, 7.883439], - [-11.15445, 7.883132], - [-11.15641, 7.881537], - [-11.157254, 7.881018], - [-11.157497, 7.879587], - [-11.157917, 7.879032], - [-11.15834, 7.878684], - [-11.158276, 7.878509], - [-11.1585, 7.87817], - [-11.159089, 7.877912], - [-11.15927, 7.877978], - [-11.159632, 7.878025], - [-11.161045, 7.877247], - [-11.161385, 7.877049], - [-11.161511, 7.877225], - [-11.161613, 7.87772], - [-11.161982, 7.877982], - [-11.162314, 7.878203], - [-11.163145, 7.878799], - [-11.162375, 7.88013], - [-11.16199, 7.881215], - [-11.162551, 7.881432], - [-11.162911, 7.880847], - [-11.162821, 7.880532], - [-11.163004, 7.880131], - [-11.163487, 7.879447], - [-11.163665, 7.879271], - [-11.163701, 7.879107], - [-11.163781, 7.879148], - [-11.164446, 7.878393], - [-11.164703, 7.878508], - [-11.164972, 7.878155], - [-11.165054, 7.877946], - [-11.165221, 7.877959], - [-11.165945, 7.877876], - [-11.166549, 7.877568], - [-11.16657, 7.878149], - [-11.166649, 7.878715], - [-11.166974, 7.878614], - [-11.167118, 7.879054], - [-11.167581, 7.879249], - [-11.168827, 7.879323], - [-11.169332, 7.878988], - [-11.169265, 7.878669], - [-11.169632, 7.878535], - [-11.1701, 7.878022], - [-11.170378, 7.878141], - [-11.170065, 7.878767], - [-11.170279, 7.879136], - [-11.171402, 7.879347], - [-11.171975, 7.879654], - [-11.172135, 7.879727], - [-11.172391, 7.879811], - [-11.172189, 7.880081], - [-11.172443, 7.880803], - [-11.173363, 7.881327], - [-11.173723, 7.881665], - [-11.174148, 7.881258], - [-11.174547, 7.880146], - [-11.173866, 7.880438], - [-11.173742, 7.88049], - [-11.173741, 7.880489], - [-11.173945, 7.880102], - [-11.174203, 7.879523], - [-11.17425, 7.879483], - [-11.174582, 7.879014], - [-11.174983, 7.87856], - [-11.175652, 7.87744], - [-11.175747, 7.876399], - [-11.177422, 7.87596], - [-11.178223, 7.875772], - [-11.177824, 7.875477], - [-11.177679, 7.87504], - [-11.177715, 7.874901], - [-11.177767, 7.874851], - [-11.177857, 7.874814], - [-11.178326, 7.874819], - [-11.178577, 7.874589], - [-11.178594, 7.874517], - [-11.178708, 7.87388], - [-11.179201, 7.87411], - [-11.179467, 7.874226], - [-11.179716, 7.87376], - [-11.179874, 7.873503], - [-11.179877, 7.873401], - [-11.179734, 7.872051], - [-11.180513, 7.871252], - [-11.180972, 7.871504], - [-11.181077, 7.871529], - [-11.181301, 7.871026] - ] - ], - "type": "Polygon" - }, - "id": 255, - "properties": { - "cc:admin:id": ["105"], - "cc:oBld:total": 1730, - "cc:pop:fifteen-to-twenty-four": 3432.0779018792346, - "cc:pop:grid3-total": 11496.806766373988, - "cc:pop:kontur-total": 14287.14903573512, - "cc:pop:men": 8881.314887845312, - "cc:pop:sixty-plus": 1055.723752564715, - "cc:pop:total": 17820.67882025742, - "cc:pop:under-five": 2796.123763553825, - "cc:pop:women": 8939.363932412107, - "cc:pop:women-fiften-to-forty-nine": 4474.667127221913, - "cc:pop:wp-total": 14857.85267100837, - "cc:pop:wp-total-UN": 17238.237187597188, - "cc:id": "255", - "cc:Name": "Kpayama 1 MCHP", - "cc:site": [-11.1774, 7.8679], - "user:parentName": "Nongowa", - "user:code": "OU_222703", - "user:orgUnitId": "So2b8zJfcMa", - "user:level": "4", - "user:parentId": "KIUCimTXf8Q" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.18723, 7.865049], - [-11.186924, 7.863476], - [-11.186603, 7.862622], - [-11.186529, 7.86245], - [-11.186534, 7.862296], - [-11.186477, 7.862239], - [-11.18636, 7.862227], - [-11.186322, 7.862243], - [-11.186114, 7.862128], - [-11.185833, 7.86179], - [-11.184966, 7.862036], - [-11.182776, 7.862331], - [-11.182522, 7.86172], - [-11.182682, 7.86151], - [-11.18265, 7.861191], - [-11.181145, 7.860983], - [-11.180881, 7.860898], - [-11.180157, 7.860702], - [-11.179879, 7.860765], - [-11.180041, 7.860179], - [-11.180184, 7.85976], - [-11.179771, 7.85949], - [-11.179204, 7.859173], - [-11.179171, 7.860141], - [-11.178764, 7.860059], - [-11.178553, 7.859738], - [-11.177511, 7.859626], - [-11.177106, 7.859624], - [-11.176829, 7.859572], - [-11.176694, 7.859535], - [-11.176695, 7.859342], - [-11.176449, 7.859246], - [-11.17622, 7.859019], - [-11.176334, 7.858749], - [-11.176176, 7.858572], - [-11.17664, 7.858], - [-11.176968, 7.857849], - [-11.176894, 7.857756], - [-11.176791, 7.857551], - [-11.175987, 7.856799], - [-11.175733, 7.856635], - [-11.175408, 7.856334], - [-11.175127, 7.85679], - [-11.174932, 7.856693], - [-11.174117, 7.856214], - [-11.173913, 7.856108], - [-11.173734, 7.856002], - [-11.173504, 7.855862], - [-11.173348, 7.855739], - [-11.173093, 7.855544], - [-11.172995, 7.855408], - [-11.172971, 7.855192], - [-11.17301, 7.855076], - [-11.173348, 7.854573], - [-11.173298, 7.854218], - [-11.173378, 7.854077], - [-11.173611, 7.854109], - [-11.174579, 7.8547], - [-11.17487, 7.854364], - [-11.175262, 7.853977], - [-11.175144, 7.853881], - [-11.174484, 7.853633], - [-11.173524, 7.853493], - [-11.173214, 7.853332], - [-11.172881, 7.853257], - [-11.172824, 7.853053], - [-11.173685, 7.852254], - [-11.172577, 7.851819], - [-11.171388, 7.851696], - [-11.169974, 7.851006], - [-11.16788, 7.849341], - [-11.1672, 7.849073], - [-11.166194, 7.848961], - [-11.163428, 7.847728], - [-11.16375, 7.847083], - [-11.163749, 7.842084], - [-11.161451, 7.839785], - [-11.160699, 7.8412], - [-11.1577, 7.844899], - [-11.1506, 7.851999], - [-11.1477, 7.854199], - [-11.146073, 7.855063], - [-11.14625, 7.855417], - [-11.147083, 7.857916], - [-11.152916, 7.859583], - [-11.155417, 7.862083], - [-11.161249, 7.862083], - [-11.16125, 7.860417], - [-11.162916, 7.860417], - [-11.162956, 7.860339], - [-11.163371, 7.860604], - [-11.164461, 7.861024], - [-11.165683, 7.861684], - [-11.165724, 7.861717], - [-11.16604, 7.862407], - [-11.166599, 7.863407], - [-11.16723, 7.863031], - [-11.168475, 7.86273], - [-11.168965, 7.863576], - [-11.173197, 7.863577], - [-11.173149, 7.86346], - [-11.173553, 7.863268], - [-11.1742, 7.86341], - [-11.174471, 7.863463], - [-11.174692, 7.863525], - [-11.174536, 7.864109], - [-11.174118, 7.864013], - [-11.173332, 7.864899], - [-11.173318, 7.864911], - [-11.173056, 7.865617], - [-11.173363, 7.865521], - [-11.173657, 7.86568], - [-11.173661, 7.865828], - [-11.174393, 7.86615], - [-11.17479, 7.86669], - [-11.175003, 7.86606], - [-11.174841, 7.86585], - [-11.174706, 7.865121], - [-11.174886, 7.864637], - [-11.175868, 7.865022], - [-11.175688, 7.865388], - [-11.175719, 7.865877], - [-11.176426, 7.866601], - [-11.177684, 7.866911], - [-11.178787, 7.867058], - [-11.178873, 7.867356], - [-11.179243, 7.867619], - [-11.179527, 7.868596], - [-11.180047, 7.86942], - [-11.180389, 7.870446], - [-11.180758, 7.870682], - [-11.180856, 7.870768], - [-11.181202, 7.870925], - [-11.181302, 7.871026], - [-11.1817, 7.871269], - [-11.182265, 7.870765], - [-11.182434, 7.870635], - [-11.182736, 7.870456], - [-11.183284, 7.869963], - [-11.183478, 7.869986], - [-11.183778, 7.870026], - [-11.184262, 7.870062], - [-11.1837, 7.867934], - [-11.18377, 7.867091], - [-11.184675, 7.866295], - [-11.184892, 7.8661], - [-11.185276, 7.865821], - [-11.18649, 7.865194], - [-11.18723, 7.865049] - ] - ], - "type": "Polygon" - }, - "id": 256, - "properties": { - "cc:admin:id": ["105"], - "cc:oBld:total": 1708, - "cc:pop:fifteen-to-twenty-four": 2864.362596921175, - "cc:pop:grid3-total": 10761.190472192155, - "cc:pop:kontur-total": 18155.656934286166, - "cc:pop:men": 7408.404958233089, - "cc:pop:sixty-plus": 879.8581597336179, - "cc:pop:total": 14852.865036737554, - "cc:pop:under-five": 2333.499720627959, - "cc:pop:women": 7444.460078504469, - "cc:pop:women-fiften-to-forty-nine": 3728.743774416417, - "cc:pop:wp-total": 12569.141270274647, - "cc:pop:wp-total-UN": 14578.1865078097, - "cc:id": "256", - "cc:Name": "Kpayama 2 MCHP", - "cc:site": [-11.1796, 7.8657], - "user:parentName": "Nongowa", - "user:code": "OU_222719", - "user:orgUnitId": "geVF87N7qTw", - "user:level": "4", - "user:parentId": "KIUCimTXf8Q" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.147634, 7.882744], - [-12.147199, 7.881199], - [-12.1434, 7.874], - [-12.1398, 7.8675], - [-12.138699, 7.863399], - [-12.1382, 7.856099], - [-12.138299, 7.8457], - [-12.1389, 7.839899], - [-12.140399, 7.8308], - [-12.139599, 7.8266], - [-12.136, 7.821899], - [-12.134799, 7.818399], - [-12.1344, 7.812999], - [-12.135199, 7.803599], - [-12.133, 7.786], - [-12.1323, 7.782399], - [-12.133399, 7.7758], - [-12.1338, 7.771699], - [-12.1338, 7.7658], - [-12.133299, 7.761299], - [-12.132599, 7.7585], - [-12.1306, 7.7553], - [-12.1244, 7.749099], - [-12.1228, 7.7453], - [-12.122, 7.739199], - [-12.122199, 7.7234], - [-12.121899, 7.718799], - [-12.120999, 7.7147], - [-12.1187, 7.7108], - [-12.115699, 7.7086], - [-12.1128, 7.7078], - [-12.11238, 7.707771], - [-12.109354, 7.713012], - [-12.108896, 7.713013], - [-12.109582, 7.715417], - [-12.108749, 7.726249], - [-12.10496, 7.729281], - [-12.104034, 7.729282], - [-12.103859, 7.729584], - [-12.095417, 7.729583], - [-12.094582, 7.722084], - [-12.092916, 7.721249], - [-12.089639, 7.720595], - [-12.089372, 7.721249], - [-12.079583, 7.72125], - [-12.079582, 7.722084], - [-12.070417, 7.722084], - [-12.064583, 7.727083], - [-12.064092, 7.728553], - [-12.062127, 7.72803], - [-12.057586, 7.727488], - [-12.056086, 7.730082], - [-12.048275, 7.730082], - [-12.04669, 7.727338], - [-12.046249, 7.730416], - [-12.042917, 7.732916], - [-12.035416, 7.729583], - [-12.027424, 7.728354], - [-12.026804, 7.728512], - [-12.024508, 7.728825], - [-12.024329, 7.730962], - [-12.020931, 7.736848], - [-12.015926, 7.736849], - [-12.016249, 7.740417], - [-12.0079, 7.742693], - [-12.007899, 7.742692], - [-12.007798, 7.742295], - [-12.00125, 7.743749], - [-11.998749, 7.745416], - [-11.994542, 7.745417], - [-11.99476, 7.745797], - [-11.990855, 7.752562], - [-11.983042, 7.752563], - [-11.980913, 7.756249], - [-11.977083, 7.75625], - [-11.972083, 7.76125], - [-11.972082, 7.76603], - [-11.971031, 7.766299], - [-11.966855, 7.765527], - [-11.967764, 7.767105], - [-11.963858, 7.77387], - [-11.958631, 7.77387], - [-11.957916, 7.769584], - [-11.955416, 7.76625], - [-11.940417, 7.76625], - [-11.937917, 7.769584], - [-11.938749, 7.780416], - [-11.936249, 7.783749], - [-11.927083, 7.784583], - [-11.924491, 7.780696], - [-11.924584, 7.780625], - [-11.922082, 7.77875], - [-11.919582, 7.778749], - [-11.910417, 7.777917], - [-11.90875, 7.77875], - [-11.905417, 7.782917], - [-11.905416, 7.787916], - [-11.89875, 7.78875], - [-11.901249, 7.797083], - [-11.901487, 7.798031], - [-11.901926, 7.797786], - [-11.902068, 7.797697], - [-11.907114, 7.801481], - [-11.907125, 7.801484], - [-11.907753, 7.801086], - [-11.909583, 7.802916], - [-11.913749, 7.802917], - [-11.913749, 7.803], - [-11.913523, 7.803031], - [-11.913618, 7.803278], - [-11.913446, 7.80343], - [-11.91304, 7.803445], - [-11.913559, 7.809161], - [-11.915564, 7.812632], - [-11.923376, 7.812633], - [-11.926074, 7.817305], - [-11.925417, 7.821249], - [-11.936249, 7.823749], - [-11.937917, 7.82375], - [-11.939583, 7.830416], - [-11.942082, 7.83375], - [-11.941818, 7.834279], - [-11.940866, 7.834588], - [-11.939257, 7.834184], - [-11.938745, 7.833883], - [-11.938225, 7.833271], - [-11.937929, 7.833719], - [-11.937854, 7.834555], - [-11.939246, 7.835451], - [-11.940536, 7.837464], - [-11.940923, 7.837692], - [-11.941662, 7.838784], - [-11.942275, 7.839813], - [-11.942878, 7.84174], - [-11.942909, 7.842437], - [-11.942751, 7.843919], - [-11.943155, 7.844661], - [-11.944588, 7.846207], - [-11.944821, 7.846015], - [-11.944774, 7.845532], - [-11.945244, 7.84525], - [-11.946312, 7.845706], - [-11.946312, 7.845707], - [-11.945756, 7.846021], - [-11.945448, 7.846619], - [-11.947087, 7.847659], - [-11.949506, 7.849107], - [-11.950494, 7.849701], - [-11.95474, 7.852411], - [-11.957862, 7.853902], - [-11.95939, 7.854249], - [-11.959406, 7.855093], - [-11.959216, 7.855129], - [-11.961477, 7.859047], - [-11.960085, 7.86146], - [-11.960104, 7.861473], - [-11.96086, 7.862488], - [-11.96087, 7.862916], - [-11.964583, 7.862917], - [-11.965983, 7.869921], - [-11.96604, 7.869886], - [-11.966414, 7.869898], - [-11.967917, 7.880416], - [-11.973012, 7.880417], - [-11.973889, 7.881932], - [-11.982082, 7.88125], - [-11.98625, 7.897083], - [-11.989583, 7.898749], - [-11.994583, 7.899584], - [-11.999582, 7.903749], - [-11.999583, 7.914898], - [-12.001032, 7.915901], - [-12.002838, 7.916352], - [-12.002083, 7.925416], - [-12.006249, 7.930416], - [-12.009582, 7.932083], - [-12.012916, 7.932916], - [-12.014583, 7.933749], - [-12.01875, 7.93375], - [-12.030416, 7.939584], - [-12.030416, 7.943333], - [-12.024453, 7.943334], - [-12.021052, 7.949223], - [-12.025416, 7.952917], - [-12.02375, 7.956249], - [-12.021939, 7.957238], - [-12.020161, 7.960317], - [-12.024067, 7.967083], - [-12.02745, 7.967084], - [-12.027449, 7.967085], - [-12.027294, 7.967182], - [-12.027319, 7.968225], - [-12.027667, 7.969531], - [-12.0288, 7.971597], - [-12.02902, 7.972886], - [-12.029955, 7.974293], - [-12.030194, 7.977916], - [-12.030211, 7.977917], - [-12.030251, 7.978782], - [-12.029734, 7.980607], - [-12.029583, 7.983526], - [-12.028314, 7.986866], - [-12.03, 7.986799], - [-12.034399, 7.9861], - [-12.039099, 7.9847], - [-12.042099, 7.9841], - [-12.056099, 7.9832], - [-12.0606, 7.982399], - [-12.0693, 7.978499], - [-12.0756, 7.975099], - [-12.0839, 7.969899], - [-12.094999, 7.9658], - [-12.1016, 7.963699], - [-12.1126, 7.959099], - [-12.1166, 7.957999], - [-12.131399, 7.956499], - [-12.136899, 7.9541], - [-12.139699, 7.952099], - [-12.141799, 7.949099], - [-12.142899, 7.9448], - [-12.142999, 7.9388], - [-12.138599, 7.936999], - [-12.135299, 7.934299], - [-12.1324, 7.930199], - [-12.1315, 7.9267], - [-12.1312, 7.9238], - [-12.1314, 7.9153], - [-12.1331, 7.9105], - [-12.140099, 7.9036], - [-12.143599, 7.8994], - [-12.147399, 7.8921], - [-12.148299, 7.887799], - [-12.1481, 7.8844], - [-12.147634, 7.882744] - ] - ], - "type": "Polygon" - }, - "id": 257, - "properties": { - "cc:admin:id": ["11"], - "cc:oBld:total": 1460, - "cc:pop:fifteen-to-twenty-four": 6312.349579466968, - "cc:pop:grid3-total": 22762.71418858747, - "cc:pop:kontur-total": 34328.97295610457, - "cc:pop:men": 16280.13210164187, - "cc:pop:sixty-plus": 2638.8189986722573, - "cc:pop:total": 34165.387672286204, - "cc:pop:under-five": 5276.541594623773, - "cc:pop:women": 17885.25557064436, - "cc:pop:women-fiften-to-forty-nine": 8270.632816223453, - "cc:pop:wp-total": 28549.696332069645, - "cc:pop:wp-total-UN": 33111.308411553044, - "cc:id": "257", - "cc:Name": "Kpetema CHP", - "cc:site": [-11.9917, 7.82], - "user:parentName": "Bumpe Ngao", - "user:code": "OU_639", - "user:orgUnitId": "RTixJpRqS4C", - "user:level": "4", - "user:parentId": "BGGmAwx33dj" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.719107, 8.967544], - [-10.718799, 8.964899], - [-10.717199, 8.960099], - [-10.715599, 8.956899], - [-10.712, 8.9518], - [-10.7102, 8.9487], - [-10.708399, 8.944199], - [-10.7063, 8.9379], - [-10.702399, 8.9319], - [-10.6985, 8.932599], - [-10.6941, 8.934399], - [-10.690099, 8.9352], - [-10.6847, 8.935299], - [-10.6807, 8.9347], - [-10.675299, 8.932499], - [-10.671399, 8.931699], - [-10.666199, 8.9315], - [-10.6439, 8.9315], - [-10.6387, 8.931699], - [-10.6357, 8.932299], - [-10.6304, 8.934399], - [-10.627799, 8.934899], - [-10.6243, 8.934699], - [-10.618299, 8.932199], - [-10.609099, 8.9297], - [-10.605299, 8.9306], - [-10.601099, 8.9332], - [-10.595, 8.9378], - [-10.598199, 8.958999], - [-10.5972, 8.9634], - [-10.598399, 8.973699], - [-10.598305, 8.974384], - [-10.60122, 8.974385], - [-10.605126, 8.98115], - [-10.612937, 8.981151], - [-10.615401, 8.985416], - [-10.620416, 8.985417], - [-10.622604, 8.994169], - [-10.622587, 8.994175], - [-10.62375, 8.997082], - [-10.632916, 9.001249], - [-10.633749, 9.00125], - [-10.635416, 9.002083], - [-10.635417, 9.007916], - [-10.637083, 9.012082], - [-10.647916, 9.012083], - [-10.649583, 9.014582], - [-10.652083, 9.015417], - [-10.65375, 9.017916], - [-10.661249, 9.017917], - [-10.662939, 9.019043], - [-10.670499, 9.0124], - [-10.6739, 9.009799], - [-10.6765, 9.008599], - [-10.6817, 9.006799], - [-10.693699, 9.0016], - [-10.700299, 8.9993], - [-10.7037, 8.997199], - [-10.7069, 8.994499], - [-10.709799, 8.9915], - [-10.712399, 8.9883], - [-10.717799, 8.9788], - [-10.719, 8.974899], - [-10.719299, 8.9692], - [-10.719107, 8.967544] - ] - ], - "type": "Polygon" - }, - "id": 258, - "properties": { - "cc:admin:id": ["136"], - "cc:oBld:total": 177, - "cc:pop:fifteen-to-twenty-four": 386.99562999085634, - "cc:pop:grid3-total": 3454.654976428893, - "cc:pop:kontur-total": 2134.4095307790208, - "cc:pop:men": 919.5464931740825, - "cc:pop:sixty-plus": 113.7145951010396, - "cc:pop:total": 2016.0326472255963, - "cc:pop:under-five": 302.1334197896576, - "cc:pop:women": 1096.486154051515, - "cc:pop:women-fiften-to-forty-nine": 559.4964797322692, - "cc:pop:wp-total": 1666.4797542146375, - "cc:pop:wp-total-UN": 1922.784427724324, - "cc:id": "258", - "cc:Name": "Kpetema CHP (Toli)", - "cc:site": [-10.6539, 8.9599], - "user:parentName": "Toli", - "user:code": "OU_233316", - "user:orgUnitId": "GIRLSZ1tB00", - "user:level": "4", - "user:parentId": "FRxcUEwktoV" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.202916, 7.822084], - [-11.199043, 7.820147], - [-11.199028, 7.820185], - [-11.195417, 7.819583], - [-11.19125, 7.817084], - [-11.193749, 7.807917], - [-11.192242, 7.806409], - [-11.167399, 7.8313], - [-11.165499, 7.8334], - [-11.1633, 7.836299], - [-11.161451, 7.839784], - [-11.163749, 7.842084], - [-11.16375, 7.847083], - [-11.163428, 7.847727], - [-11.166194, 7.848961], - [-11.1672, 7.849073], - [-11.16788, 7.849341], - [-11.169974, 7.851006], - [-11.171388, 7.851696], - [-11.172577, 7.851819], - [-11.173684, 7.852253], - [-11.173684, 7.852255], - [-11.172824, 7.853054], - [-11.172881, 7.853257], - [-11.173214, 7.853332], - [-11.173524, 7.853493], - [-11.174484, 7.853633], - [-11.175144, 7.853881], - [-11.175262, 7.853977], - [-11.17487, 7.854364], - [-11.174579, 7.8547], - [-11.173611, 7.854109], - [-11.173379, 7.854077], - [-11.173298, 7.854218], - [-11.173348, 7.854573], - [-11.17301, 7.855076], - [-11.172971, 7.855192], - [-11.172995, 7.855407], - [-11.173093, 7.855544], - [-11.173348, 7.855739], - [-11.173504, 7.855862], - [-11.173734, 7.856002], - [-11.173913, 7.856108], - [-11.174117, 7.856214], - [-11.174932, 7.856693], - [-11.175127, 7.85679], - [-11.175408, 7.856334], - [-11.175733, 7.856635], - [-11.175987, 7.856799], - [-11.176791, 7.857551], - [-11.176894, 7.857756], - [-11.176968, 7.85785], - [-11.17664, 7.858], - [-11.176176, 7.858572], - [-11.176334, 7.858749], - [-11.17622, 7.859018], - [-11.176449, 7.859246], - [-11.176695, 7.859341], - [-11.176694, 7.859535], - [-11.176829, 7.859572], - [-11.177106, 7.859624], - [-11.177511, 7.859626], - [-11.178553, 7.859737], - [-11.178764, 7.860059], - [-11.179171, 7.860141], - [-11.179174, 7.860047], - [-11.179203, 7.859174], - [-11.179205, 7.859173], - [-11.179771, 7.85949], - [-11.180184, 7.859759], - [-11.180041, 7.860179], - [-11.179879, 7.860765], - [-11.180158, 7.860702], - [-11.180881, 7.860898], - [-11.181145, 7.860983], - [-11.18265, 7.861191], - [-11.182682, 7.86151], - [-11.182522, 7.86172], - [-11.182776, 7.862331], - [-11.184966, 7.862036], - [-11.185834, 7.86179], - [-11.186114, 7.862128], - [-11.186323, 7.862243], - [-11.18636, 7.862227], - [-11.186477, 7.862239], - [-11.186534, 7.862296], - [-11.186529, 7.86245], - [-11.186603, 7.862622], - [-11.186924, 7.863476], - [-11.18723, 7.865049], - [-11.187584, 7.866293], - [-11.188114, 7.865816], - [-11.189508, 7.866532], - [-11.191754, 7.867808], - [-11.192651, 7.868263], - [-11.193031, 7.868471], - [-11.193319, 7.867931], - [-11.193545, 7.867435], - [-11.193763, 7.866949], - [-11.193377, 7.866747], - [-11.191378, 7.865791], - [-11.191655, 7.865266], - [-11.191895, 7.864801], - [-11.192145, 7.864285], - [-11.192341, 7.863756], - [-11.192724, 7.862884], - [-11.192271, 7.862722], - [-11.192231, 7.862703], - [-11.191812, 7.862318], - [-11.192443, 7.861127], - [-11.190352, 7.859467], - [-11.190792, 7.859211], - [-11.191783, 7.858627], - [-11.193186, 7.857864], - [-11.194972, 7.856904], - [-11.194619, 7.856244], - [-11.194418, 7.855778], - [-11.194227, 7.85535], - [-11.194978, 7.854893], - [-11.195108, 7.854875], - [-11.195118, 7.854772], - [-11.195011, 7.854755], - [-11.194826, 7.854143], - [-11.194787, 7.853692], - [-11.195426, 7.85337], - [-11.19515, 7.852853], - [-11.194902, 7.85256], - [-11.19493, 7.852344], - [-11.196213, 7.851524], - [-11.195954, 7.850982], - [-11.196819, 7.850506], - [-11.196465, 7.850025], - [-11.195561, 7.849421], - [-11.195302, 7.849479], - [-11.195437, 7.849114], - [-11.194766, 7.848941], - [-11.194441, 7.848641], - [-11.194508, 7.848498], - [-11.195044, 7.847762], - [-11.195228, 7.846768], - [-11.195287, 7.846523], - [-11.195291, 7.846336], - [-11.1948, 7.845859], - [-11.194479, 7.845502], - [-11.194265, 7.844762], - [-11.194259, 7.844734], - [-11.1944, 7.844268], - [-11.194242, 7.842743], - [-11.193814, 7.842493], - [-11.193432, 7.842486], - [-11.193041, 7.842129], - [-11.192916, 7.842023], - [-11.192916, 7.839584], - [-11.192083, 7.837916], - [-11.192083, 7.83625], - [-11.196249, 7.832916], - [-11.19625, 7.832083], - [-11.199582, 7.830416], - [-11.199583, 7.82625], - [-11.200416, 7.825416], - [-11.200417, 7.82375], - [-11.202916, 7.822084] - ] - ], - "type": "Polygon" - }, - "id": 259, - "properties": { - "cc:admin:id": ["105"], - "cc:oBld:total": 3807, - "cc:pop:fifteen-to-twenty-four": 7228.418159844326, - "cc:pop:grid3-total": 25496.879668350626, - "cc:pop:kontur-total": 34784.664935769615, - "cc:pop:men": 18695.990976673344, - "cc:pop:sixty-plus": 2210.496970779751, - "cc:pop:total": 37463.39050444357, - "cc:pop:under-five": 5868.919566040043, - "cc:pop:women": 18767.399527770238, - "cc:pop:women-fiften-to-forty-nine": 9408.674295154166, - "cc:pop:wp-total": 30639.009222867535, - "cc:pop:wp-total-UN": 35521.997952780344, - "cc:id": "259", - "cc:Name": "Kpetema MCHP", - "cc:site": [-11.1857, 7.856], - "user:parentName": "Nongowa", - "user:code": "OU_222698", - "user:orgUnitId": "kDxbU1uSBFh", - "user:level": "4", - "user:parentId": "KIUCimTXf8Q" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.861285, 7.758854], - [-11.85861, 7.759029], - [-11.858749, 7.758749], - [-11.856249, 7.75375], - [-11.854583, 7.752916], - [-11.854583, 7.742084], - [-11.857082, 7.737084], - [-11.849582, 7.730417], - [-11.84125, 7.730416], - [-11.84125, 7.727916], - [-11.844582, 7.722083], - [-11.842917, 7.712917], - [-11.845414, 7.71125], - [-11.845281, 7.710653], - [-11.844242, 7.708371], - [-11.843068, 7.707201], - [-11.842417, 7.706001], - [-11.832917, 7.701249], - [-11.83375, 7.700416], - [-11.838749, 7.690417], - [-11.82875, 7.68875], - [-11.827082, 7.689583], - [-11.824583, 7.688749], - [-11.822083, 7.682084], - [-11.823125, 7.679479], - [-11.824948, 7.679538], - [-11.825416, 7.679324], - [-11.825416, 7.675417], - [-11.822082, 7.67375], - [-11.814593, 7.673749], - [-11.814637, 7.67332], - [-11.812917, 7.673749], - [-11.812916, 7.66875], - [-11.810417, 7.665417], - [-11.807918, 7.672078], - [-11.807917, 7.672079], - [-11.807916, 7.660417], - [-11.80333, 7.659107], - [-11.792, 7.670599], - [-11.786899, 7.675], - [-11.782699, 7.6771], - [-11.7784, 7.679499], - [-11.775199, 7.6808], - [-11.771599, 7.6827], - [-11.768499, 7.6835], - [-11.7627, 7.683999], - [-11.7594, 7.6851], - [-11.7555, 7.688499], - [-11.7531, 7.692099], - [-11.7559, 7.6939], - [-11.764199, 7.697899], - [-11.769299, 7.698899], - [-11.771999, 7.699999], - [-11.775999, 7.703399], - [-11.7783, 7.7065], - [-11.7797, 7.7096], - [-11.7817, 7.7132], - [-11.7836, 7.7174], - [-11.786, 7.7198], - [-11.798199, 7.7259], - [-11.800999, 7.7289], - [-11.8028, 7.7326], - [-11.804899, 7.736199], - [-11.8062, 7.7394], - [-11.808599, 7.743699], - [-11.810199, 7.747599], - [-11.814, 7.753199], - [-11.8177, 7.7546], - [-11.833999, 7.7546], - [-11.8377, 7.755], - [-11.8399, 7.7557], - [-11.843499, 7.757599], - [-11.8466, 7.759], - [-11.850999, 7.761299], - [-11.853599, 7.761799], - [-11.857, 7.761499], - [-11.859499, 7.7603], - [-11.861285, 7.758854] - ] - ], - "type": "Polygon" - }, - "id": 260, - "properties": { - "cc:admin:id": ["78"], - "cc:oBld:total": 497, - "cc:pop:fifteen-to-twenty-four": 1526.1442303318547, - "cc:pop:grid3-total": 7783.738276758743, - "cc:pop:kontur-total": 8080.296210605617, - "cc:pop:men": 4381.577755609781, - "cc:pop:sixty-plus": 582.7955020902026, - "cc:pop:total": 8462.847025185276, - "cc:pop:under-five": 1387.5289444530817, - "cc:pop:women": 4081.2692695754968, - "cc:pop:women-fiften-to-forty-nine": 1942.2071670948578, - "cc:pop:wp-total": 9158.553701653214, - "cc:pop:wp-total-UN": 10608.526952845716, - "cc:id": "260", - "cc:Name": "Kpetewoma CHP", - "cc:site": [-11.8153, 7.7346], - "user:parentName": "Lugbu", - "user:code": "OU_1058", - "user:orgUnitId": "mGmu0GJ5neg", - "user:level": "4", - "user:parentId": "kU8vhUkAGaT" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.745645, 7.953181], - [-11.743577, 7.952393], - [-11.743854, 7.951859], - [-11.745081, 7.949346], - [-11.744814, 7.949226], - [-11.744265, 7.948996], - [-11.743915, 7.948836], - [-11.743795, 7.948788], - [-11.743282, 7.948548], - [-11.743035, 7.949022], - [-11.741835, 7.950111], - [-11.741638, 7.950176], - [-11.74037, 7.950293], - [-11.74005, 7.950299], - [-11.73992, 7.950304], - [-11.73985, 7.949981], - [-11.739977, 7.949583], - [-11.739966, 7.949525], - [-11.739721, 7.949329], - [-11.738947, 7.948871], - [-11.738756, 7.949897], - [-11.738062, 7.949978], - [-11.737549, 7.949986], - [-11.737076, 7.950021], - [-11.736537, 7.950081], - [-11.736596, 7.951254], - [-11.736146, 7.951356], - [-11.735582, 7.951416], - [-11.735031, 7.951458], - [-11.734537, 7.951506], - [-11.734032, 7.95157], - [-11.733496, 7.951629], - [-11.733627, 7.953021], - [-11.733838, 7.955463], - [-11.733892, 7.956164], - [-11.733332, 7.95584], - [-11.732642, 7.955094], - [-11.732034, 7.954144], - [-11.731553, 7.953538], - [-11.731806, 7.954322], - [-11.731103, 7.954458], - [-11.730481, 7.954637], - [-11.730922, 7.956324], - [-11.730905, 7.956825], - [-11.730726, 7.957225], - [-11.729129, 7.957063], - [-11.729056, 7.957052], - [-11.727521, 7.956933], - [-11.727062, 7.957349], - [-11.726267, 7.957249], - [-11.725874, 7.957396], - [-11.725891, 7.95748], - [-11.725964, 7.957975], - [-11.725478, 7.957988], - [-11.725372, 7.959117], - [-11.723521, 7.958983], - [-11.723529, 7.959549], - [-11.723478, 7.96011], - [-11.723381, 7.960651], - [-11.72477, 7.960729], - [-11.724716, 7.961249], - [-11.724664, 7.961271], - [-11.724203, 7.961226], - [-11.723682, 7.961292], - [-11.723635, 7.961995], - [-11.724164, 7.962015], - [-11.724597, 7.962017], - [-11.725151, 7.961954], - [-11.725204, 7.961307], - [-11.725209, 7.961284], - [-11.725802, 7.961361], - [-11.726454, 7.960999], - [-11.726927, 7.961141], - [-11.728223, 7.960101], - [-11.7286, 7.960558], - [-11.728979, 7.961014], - [-11.729558, 7.961543], - [-11.729959, 7.961817], - [-11.72943, 7.962574], - [-11.728101, 7.962791], - [-11.727963, 7.963195], - [-11.728153, 7.963427], - [-11.729531, 7.96334], - [-11.730444, 7.963692], - [-11.730539, 7.963716], - [-11.730934, 7.965683], - [-11.731284, 7.966418], - [-11.731951, 7.967623], - [-11.732001, 7.967707], - [-11.733365, 7.966912], - [-11.733416, 7.966884], - [-11.733743, 7.967429], - [-11.734134, 7.967956], - [-11.734585, 7.968081], - [-11.73465, 7.967656], - [-11.735098, 7.967466], - [-11.735288, 7.967167], - [-11.735676, 7.966972], - [-11.736454, 7.966352], - [-11.736737, 7.96632], - [-11.736531, 7.96584], - [-11.736555, 7.965702], - [-11.737352, 7.965281], - [-11.737869, 7.965055], - [-11.737933, 7.965083], - [-11.73796, 7.965078], - [-11.738014, 7.965002], - [-11.738013, 7.964987], - [-11.737921, 7.96492], - [-11.73726, 7.964218], - [-11.73726, 7.964217], - [-11.738016, 7.963764], - [-11.739035, 7.963238], - [-11.738807, 7.96266], - [-11.738189, 7.962964], - [-11.737903, 7.962401], - [-11.737469, 7.961361], - [-11.738528, 7.961347], - [-11.739863, 7.96091], - [-11.739724, 7.96037], - [-11.739732, 7.959996], - [-11.73976, 7.959944], - [-11.740032, 7.959737], - [-11.741213, 7.959245], - [-11.741903, 7.958638], - [-11.741988, 7.957454], - [-11.741892, 7.956727], - [-11.74232, 7.956389], - [-11.743044, 7.956489], - [-11.743254, 7.95655], - [-11.743622, 7.956586], - [-11.743798, 7.955992], - [-11.744137, 7.956095], - [-11.744492, 7.955957], - [-11.745223, 7.954322], - [-11.745634, 7.953255], - [-11.745645, 7.953181] - ] - ], - "type": "Polygon" - }, - "id": 261, - "properties": { - "cc:admin:id": ["46"], - "cc:oBld:total": 3268, - "cc:pop:fifteen-to-twenty-four": 5338.852183736314, - "cc:pop:grid3-total": 33211.85767970271, - "cc:pop:kontur-total": 34609.43657140411, - "cc:pop:men": 14424.746747990583, - "cc:pop:sixty-plus": 2125.832122541924, - "cc:pop:total": 29763.49610416774, - "cc:pop:under-five": 4934.41850467881, - "cc:pop:women": 15338.74935617716, - "cc:pop:women-fiften-to-forty-nine": 7309.19644988442, - "cc:pop:wp-total": 33195.903016108045, - "cc:pop:wp-total-UN": 38485.218478654126, - "cc:id": "261", - "cc:Name": "Kpolies Clinic", - "cc:site": [-11.7344, 7.9579], - "user:parentName": "Kakua", - "user:code": "OU_172172", - "user:orgUnitId": "bM4Ky73uMao", - "user:level": "4", - "user:parentId": "U6Kr7Gtpidn" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.606703, 7.338981], - [-11.607082, 7.337083], - [-11.60625, 7.332916], - [-11.606249, 7.32511], - [-11.600622, 7.325109], - [-11.602082, 7.322916], - [-11.602916, 7.312917], - [-11.599582, 7.308749], - [-11.595499, 7.308069], - [-11.594872, 7.309386], - [-11.590417, 7.308749], - [-11.588749, 7.307917], - [-11.58375, 7.307917], - [-11.577083, 7.317916], - [-11.574583, 7.317917], - [-11.566164, 7.309497], - [-11.566254, 7.309044], - [-11.567011, 7.308203], - [-11.568799, 7.307484], - [-11.568999, 7.306204], - [-11.562917, 7.309584], - [-11.562082, 7.31125], - [-11.561649, 7.311249], - [-11.559, 7.306663], - [-11.552917, 7.306663], - [-11.552917, 7.31067], - [-11.552507, 7.311379], - [-11.544695, 7.31138], - [-11.541161, 7.317499], - [-11.540396, 7.317588], - [-11.538803, 7.31738], - [-11.53629, 7.316775], - [-11.536249, 7.316249], - [-11.534582, 7.307916], - [-11.52741, 7.305867], - [-11.524296, 7.311259], - [-11.516484, 7.31126], - [-11.51625, 7.310853], - [-11.51625, 7.309583], - [-11.518749, 7.30625], - [-11.507083, 7.30625], - [-11.506249, 7.30875], - [-11.502917, 7.31125], - [-11.502916, 7.312917], - [-11.500416, 7.315416], - [-11.487917, 7.315417], - [-11.487413, 7.31592], - [-11.489399, 7.320199], - [-11.4907, 7.3252], - [-11.4933, 7.3319], - [-11.494099, 7.339999], - [-11.494599, 7.343799], - [-11.497199, 7.349999], - [-11.497799, 7.353699], - [-11.498, 7.3566], - [-11.498032, 7.36157], - [-11.503931, 7.361571], - [-11.507836, 7.368336], - [-11.50751, 7.368903], - [-11.508793, 7.368923], - [-11.509765, 7.368403], - [-11.50999, 7.368337], - [-11.513749, 7.368336], - [-11.51375, 7.364584], - [-11.514582, 7.364584], - [-11.514583, 7.372916], - [-11.52059, 7.376348], - [-11.522628, 7.376348], - [-11.526535, 7.369584], - [-11.533868, 7.369584], - [-11.534583, 7.372916], - [-11.544019, 7.372917], - [-11.543626, 7.373364], - [-11.545416, 7.372917], - [-11.55375, 7.387916], - [-11.556249, 7.387916], - [-11.560416, 7.384584], - [-11.560707, 7.381101], - [-11.563538, 7.386001], - [-11.569114, 7.386002], - [-11.569583, 7.385416], - [-11.579582, 7.384583], - [-11.579582, 7.382917], - [-11.575417, 7.379584], - [-11.575416, 7.377917], - [-11.572917, 7.375416], - [-11.572932, 7.375209], - [-11.57375, 7.364584], - [-11.577917, 7.36125], - [-11.587083, 7.36125], - [-11.596542, 7.361977], - [-11.594788, 7.358938], - [-11.597788, 7.35374], - [-11.597917, 7.353749], - [-11.602916, 7.348749], - [-11.602917, 7.338641], - [-11.606506, 7.338641], - [-11.606703, 7.338981] - ] - ], - "type": "Polygon" - }, - "id": 262, - "properties": { - "cc:admin:id": ["27"], - "cc:oBld:total": 199, - "cc:pop:fifteen-to-twenty-four": 1073.4393675444855, - "cc:pop:grid3-total": 7934.480978049275, - "cc:pop:kontur-total": 5890.498528145374, - "cc:pop:men": 2861.825126429774, - "cc:pop:sixty-plus": 404.09405251880685, - "cc:pop:total": 5915.052889467105, - "cc:pop:under-five": 992.5600059124745, - "cc:pop:women": 3053.2277630373333, - "cc:pop:women-fiften-to-forty-nine": 1464.5329316816953, - "cc:pop:wp-total": 5273.540789747925, - "cc:pop:wp-total-UN": 6111.8351076693325, - "cc:id": "262", - "cc:Name": "Kpowubu MCHP", - "cc:site": [-11.5709, 7.3429], - "user:parentName": "Galliness Perri", - "user:code": "OU_260421", - "user:orgUnitId": "QkczRcSeNck", - "user:level": "4", - "user:parentId": "eNtRuQrrZeo" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.812, 8.205299], - [-11.812499, 8.196799], - [-11.812, 8.1854], - [-11.8105, 8.1802], - [-11.8057, 8.1719], - [-11.8005, 8.1648], - [-11.7965, 8.1587], - [-11.789399, 8.1511], - [-11.786099, 8.1523], - [-11.783099, 8.1528], - [-11.7769, 8.153199], - [-11.7729, 8.153999], - [-11.7685, 8.155899], - [-11.765599, 8.1565], - [-11.7617, 8.156599], - [-11.7579, 8.1559], - [-11.7524, 8.1537], - [-11.748399, 8.153], - [-11.743099, 8.1531], - [-11.739199, 8.1539], - [-11.733699, 8.1561], - [-11.729799, 8.1567], - [-11.723499, 8.156799], - [-11.6948, 8.1566], - [-11.6897, 8.156899], - [-11.6867, 8.157699], - [-11.681, 8.1607], - [-11.677399, 8.1655], - [-11.6707, 8.172599], - [-11.669, 8.174899], - [-11.665299, 8.1825], - [-11.664599, 8.1858], - [-11.6643, 8.191099], - [-11.6635, 8.193799], - [-11.661, 8.196699], - [-11.658099, 8.197699], - [-11.6538, 8.1972], - [-11.648999, 8.194899], - [-11.646499, 8.1943], - [-11.6434, 8.194499], - [-11.641299, 8.195], - [-11.637699, 8.1968], - [-11.6318, 8.198399], - [-11.630598, 8.198932], - [-11.63375, 8.202083], - [-11.635417, 8.20125], - [-11.636249, 8.20125], - [-11.63375, 8.20625], - [-11.633749, 8.209583], - [-11.632917, 8.210417], - [-11.632917, 8.211249], - [-11.63625, 8.214583], - [-11.640416, 8.216249], - [-11.64125, 8.21625], - [-11.642916, 8.22125], - [-11.642916, 8.223749], - [-11.642083, 8.225417], - [-11.648749, 8.238749], - [-11.64875, 8.239583], - [-11.651249, 8.240417], - [-11.653749, 8.242916], - [-11.65375, 8.244583], - [-11.658749, 8.245417], - [-11.661249, 8.247916], - [-11.662083, 8.251249], - [-11.663749, 8.252084], - [-11.66375, 8.256249], - [-11.668753, 8.261253], - [-11.668753, 8.261255], - [-11.668278, 8.2615], - [-11.669583, 8.265416], - [-11.67125, 8.265416], - [-11.676249, 8.262917], - [-11.679583, 8.265416], - [-11.682082, 8.265416], - [-11.681249, 8.25875], - [-11.680417, 8.258749], - [-11.68125, 8.252917], - [-11.682917, 8.252916], - [-11.688749, 8.250416], - [-11.68875, 8.247917], - [-11.690416, 8.246249], - [-11.69125, 8.242084], - [-11.694221, 8.241488], - [-11.694051, 8.241251], - [-11.694051, 8.24125], - [-11.697082, 8.241249], - [-11.704582, 8.237084], - [-11.706374, 8.243055], - [-11.706888, 8.243945], - [-11.706727, 8.244228], - [-11.707083, 8.245416], - [-11.707917, 8.246249], - [-11.709583, 8.24625], - [-11.712082, 8.248749], - [-11.712917, 8.252916], - [-11.71625, 8.252917], - [-11.72625, 8.263749], - [-11.730416, 8.26375], - [-11.734583, 8.267916], - [-11.743749, 8.267916], - [-11.74875, 8.262917], - [-11.750416, 8.26375], - [-11.75125, 8.266249], - [-11.755417, 8.269583], - [-11.763749, 8.269583], - [-11.76625, 8.264584], - [-11.774582, 8.266249], - [-11.77625, 8.268749], - [-11.787081, 8.267084], - [-11.787082, 8.267085], - [-11.78625, 8.269583], - [-11.795416, 8.273749], - [-11.797916, 8.262917], - [-11.802408, 8.264199], - [-11.801699, 8.260299], - [-11.8014, 8.2558], - [-11.8015, 8.249699], - [-11.8018, 8.243699], - [-11.8023, 8.240799], - [-11.805899, 8.226], - [-11.810499, 8.2113], - [-11.812, 8.205299] - ] - ], - "type": "Polygon" - }, - "id": 263, - "properties": { - "cc:admin:id": ["141"], - "cc:oBld:total": 52, - "cc:pop:fifteen-to-twenty-four": 1195.012695332675, - "cc:pop:grid3-total": 6753.429828981886, - "cc:pop:kontur-total": 6726.650787435592, - "cc:pop:men": 3225.265299342732, - "cc:pop:sixty-plus": 501.0882728450585, - "cc:pop:total": 6583.518981793656, - "cc:pop:under-five": 1079.4297004331554, - "cc:pop:women": 3358.2536824509266, - "cc:pop:women-fiften-to-forty-nine": 1626.4688177893827, - "cc:pop:wp-total": 5861.236849928567, - "cc:pop:wp-total-UN": 6803.872518021091, - "cc:id": "263", - "cc:Name": "Kpuabu MCHP", - "cc:site": [-11.7436, 8.1919], - "user:parentName": "Valunia", - "user:code": "OU_1144", - "user:orgUnitId": "S7KwVLbFlss", - "user:level": "4", - "user:parentId": "npWGUj37qDe" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.251865, 8.489656], - [-13.251831, 8.488063], - [-13.251184, 8.488035], - [-13.250036, 8.488035], - [-13.24943, 8.488026], - [-13.24932, 8.488025], - [-13.249442, 8.487041], - [-13.249332, 8.48625], - [-13.248956, 8.485841], - [-13.246035, 8.485669], - [-13.246077, 8.484521], - [-13.245124, 8.484687], - [-13.244975, 8.484718], - [-13.244694, 8.484752], - [-13.24458, 8.484687], - [-13.244255, 8.484318], - [-13.244259, 8.484312], - [-13.244, 8.484029], - [-13.244198, 8.483208], - [-13.244331, 8.482203], - [-13.243791, 8.482155], - [-13.24396, 8.480729], - [-13.243357, 8.480679], - [-13.243516, 8.47948], - [-13.243474, 8.47922], - [-13.24344, 8.479155], - [-13.243405, 8.479122], - [-13.242951, 8.47958], - [-13.242389, 8.479396], - [-13.241757, 8.479173], - [-13.240771, 8.478818], - [-13.240771, 8.478816], - [-13.241299, 8.478361], - [-13.240674, 8.478123], - [-13.238319, 8.477267], - [-13.23806, 8.477858], - [-13.238739, 8.478107], - [-13.238739, 8.478108], - [-13.237323, 8.478972], - [-13.237156, 8.478503], - [-13.236832, 8.478586], - [-13.23631, 8.478458], - [-13.236117, 8.478407], - [-13.235757, 8.478302], - [-13.235694, 8.47828], - [-13.235424, 8.483345], - [-13.234883, 8.483315], - [-13.234417, 8.483283], - [-13.234139, 8.48328], - [-13.233263, 8.485312], - [-13.233222, 8.485816], - [-13.233174, 8.486231], - [-13.231559, 8.486305], - [-13.231352, 8.486198], - [-13.230503, 8.486446], - [-13.230647, 8.486968], - [-13.230878, 8.487078], - [-13.231769, 8.488254], - [-13.232682, 8.489482], - [-13.232162, 8.489832], - [-13.233022, 8.491114], - [-13.233504, 8.491814], - [-13.234037, 8.491468], - [-13.234558, 8.491087], - [-13.234658, 8.491017], - [-13.23483, 8.49122], - [-13.235053, 8.491071], - [-13.235388, 8.491435], - [-13.235996, 8.49087], - [-13.236183, 8.491054], - [-13.2393, 8.4885], - [-13.248199, 8.494299], - [-13.251865, 8.489656] - ] - ], - "type": "Polygon" - }, - "id": 264, - "properties": { - "cc:admin:id": ["26"], - "cc:oBld:total": 4394, - "cc:pop:fifteen-to-twenty-four": 9962.679053601028, - "cc:pop:grid3-total": 48236.83042735001, - "cc:pop:kontur-total": 22126, - "cc:pop:men": 21708.962613044892, - "cc:pop:sixty-plus": 3376.727036709615, - "cc:pop:total": 43389.82629991606, - "cc:pop:under-five": 5006.486632741395, - "cc:pop:women": 21680.86368687117, - "cc:pop:women-fiften-to-forty-nine": 11624.82900211098, - "cc:pop:wp-total": 44082.89379036431, - "cc:pop:wp-total-UN": 51113.97478743125, - "cc:id": "264", - "cc:Name": "Kroo Bay CHC", - "cc:site": [-13.2407, 8.4868], - "user:parentName": "Freetown", - "user:code": "OU_278359", - "user:orgUnitId": "sM0Us0NkSez", - "user:level": "4", - "user:parentId": "C9uduqDZr9d" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.721008, 9.38876], - [-12.720532, 9.388645], - [-12.718953, 9.388045], - [-12.717967, 9.387944], - [-12.7154, 9.387011], - [-12.715259, 9.386927], - [-12.715141, 9.385311], - [-12.71463, 9.384537], - [-12.710417, 9.381675], - [-12.710416, 9.380416], - [-12.70906, 9.376351], - [-12.708436, 9.376526], - [-12.707619, 9.377162], - [-12.70375, 9.374583], - [-12.70375, 9.373749], - [-12.706229, 9.37065], - [-12.704678, 9.369148], - [-12.703952, 9.368358], - [-12.703515, 9.367607], - [-12.703152, 9.366638], - [-12.703189, 9.365714], - [-12.703571, 9.365639], - [-12.70031, 9.3657], - [-12.699025, 9.364589], - [-12.700416, 9.360417], - [-12.702082, 9.359582], - [-12.703749, 9.354583], - [-12.700417, 9.35125], - [-12.692083, 9.351249], - [-12.692082, 9.344583], - [-12.688749, 9.340417], - [-12.677917, 9.339583], - [-12.675417, 9.342082], - [-12.672082, 9.342917], - [-12.669583, 9.345417], - [-12.669005, 9.35062], - [-12.669329, 9.351596], - [-12.671463, 9.358105], - [-12.671971, 9.359575], - [-12.673712, 9.362273], - [-12.674045, 9.36828], - [-12.674139, 9.36972], - [-12.674848, 9.372099], - [-12.675754, 9.373203], - [-12.676689, 9.374901], - [-12.677496, 9.37798], - [-12.677648, 9.378573], - [-12.677764, 9.378612], - [-12.677701, 9.378777], - [-12.677725, 9.37905], - [-12.675322, 9.379058], - [-12.674769, 9.379505], - [-12.674374, 9.379622], - [-12.674068, 9.379437], - [-12.672082, 9.382082], - [-12.667636, 9.384624], - [-12.667635, 9.384624], - [-12.667544, 9.384353], - [-12.665417, 9.385416], - [-12.665416, 9.38625], - [-12.66375, 9.387082], - [-12.65875, 9.388749], - [-12.657917, 9.38875], - [-12.656224, 9.389314], - [-12.65676, 9.391317], - [-12.656796, 9.391878], - [-12.656264, 9.393098], - [-12.656468, 9.393798], - [-12.657561, 9.394298], - [-12.658182, 9.394192], - [-12.659782, 9.393282], - [-12.660128, 9.393387], - [-12.660252, 9.393825], - [-12.659987, 9.395105], - [-12.660174, 9.395446], - [-12.66131, 9.395893], - [-12.661488, 9.396226], - [-12.661301, 9.396648], - [-12.660874, 9.396937], - [-12.660653, 9.397626], - [-12.660762, 9.398017], - [-12.661744, 9.398783], - [-12.662638, 9.399032], - [-12.662963, 9.399315], - [-12.66295, 9.399483], - [-12.661589, 9.399379], - [-12.661011, 9.399246], - [-12.660675, 9.399238], - [-12.659923, 9.399285], - [-12.659863, 9.399304], - [-12.655417, 9.403749], - [-12.655416, 9.404582], - [-12.651249, 9.40375], - [-12.64875, 9.40625], - [-12.648049, 9.411847], - [-12.646317, 9.412537], - [-12.645277, 9.41339], - [-12.641699, 9.41685], - [-12.641021, 9.41812], - [-12.640244, 9.418219], - [-12.638372, 9.419041], - [-12.637433, 9.41919], - [-12.635846, 9.419068], - [-12.634088, 9.419309], - [-12.632918, 9.419212], - [-12.63125, 9.419297], - [-12.631249, 9.420417], - [-12.627083, 9.424583], - [-12.627083, 9.429923], - [-12.627207, 9.429878], - [-12.627209, 9.429878], - [-12.627916, 9.436249], - [-12.623749, 9.437083], - [-12.62125, 9.439583], - [-12.620416, 9.442916], - [-12.614583, 9.44375], - [-12.612083, 9.44625], - [-12.611249, 9.449582], - [-12.607083, 9.447917], - [-12.605417, 9.44875], - [-12.602917, 9.455417], - [-12.602916, 9.462916], - [-12.60125, 9.462917], - [-12.597083, 9.465417], - [-12.596249, 9.472082], - [-12.593263, 9.472083], - [-12.593323, 9.472362], - [-12.592613, 9.475931], - [-12.592237, 9.476747], - [-12.592763, 9.478813], - [-12.592493, 9.478871], - [-12.592559, 9.479101], - [-12.592632, 9.479605], - [-12.592499, 9.480051], - [-12.592294, 9.48042], - [-12.591944, 9.481687], - [-12.591428, 9.482373], - [-12.591102, 9.482937], - [-12.590104, 9.48357], - [-12.589062, 9.484662], - [-12.588723, 9.484231], - [-12.587954, 9.483931], - [-12.587787, 9.483653], - [-12.587023, 9.483271], - [-12.586635, 9.483276], - [-12.585534, 9.483751], - [-12.58482, 9.483664], - [-12.582055, 9.48845], - [-12.574244, 9.488451], - [-12.570881, 9.494274], - [-12.570767, 9.494309], - [-12.568988, 9.494653], - [-12.568428, 9.494822], - [-12.56715, 9.49476], - [-12.566176, 9.494979], - [-12.566479, 9.495215], - [-12.566478, 9.495216], - [-12.562525, 9.495217], - [-12.561375, 9.497207], - [-12.560416, 9.49625], - [-12.55625, 9.495417], - [-12.547083, 9.494583], - [-12.546449, 9.495217], - [-12.539087, 9.495217], - [-12.535181, 9.501981], - [-12.527369, 9.501982], - [-12.524555, 9.506853], - [-12.523749, 9.50625], - [-12.512916, 9.50625], - [-12.50875, 9.509583], - [-12.508325, 9.515513], - [-12.50393, 9.515513], - [-12.500024, 9.508748], - [-12.492212, 9.508748], - [-12.488306, 9.515514], - [-12.491308, 9.520715], - [-12.49132, 9.521199], - [-12.491143, 9.521496], - [-12.491106, 9.524194], - [-12.488306, 9.529045], - [-12.484145, 9.529046], - [-12.482999, 9.5342], - [-12.4827, 9.5399], - [-12.483199, 9.545599], - [-12.485799, 9.556399], - [-12.486099, 9.561699], - [-12.485599, 9.5657], - [-12.4832, 9.574999], - [-12.4829, 9.581599], - [-12.484099, 9.586299], - [-12.4857, 9.589099], - [-12.4881, 9.590599], - [-12.490799, 9.590899], - [-12.499999, 9.5879], - [-12.507099, 9.5854], - [-12.512199, 9.585], - [-12.516699, 9.5866], - [-12.5216, 9.590499], - [-12.531299, 9.593199], - [-12.5373, 9.5952], - [-12.541599, 9.595599], - [-12.545899, 9.5954], - [-12.5501, 9.594699], - [-12.556, 9.592799], - [-12.561799, 9.5921], - [-12.5662, 9.5922], - [-12.57, 9.5928], - [-12.576699, 9.594899], - [-12.583499, 9.596399], - [-12.5917, 9.599899], - [-12.6001, 9.6008], - [-12.614899, 9.606199], - [-12.621199, 9.6011], - [-12.630799, 9.5721], - [-12.636299, 9.565499], - [-12.636499, 9.5611], - [-12.6328, 9.552599], - [-12.634399, 9.5482], - [-12.642899, 9.549599], - [-12.647999, 9.547899], - [-12.657499, 9.539199], - [-12.660499, 9.532], - [-12.658599, 9.531799], - [-12.651199, 9.524499], - [-12.6493, 9.516699], - [-12.650699, 9.5089], - [-12.671999, 9.4754], - [-12.6713, 9.4692], - [-12.672699, 9.4669], - [-12.678499, 9.463699], - [-12.6794, 9.459999], - [-12.6803, 9.4506], - [-12.683899, 9.443], - [-12.68, 9.438899], - [-12.68, 9.4352], - [-12.685499, 9.430799], - [-12.6834, 9.4211], - [-12.686099, 9.417699], - [-12.6868, 9.4092], - [-12.688899, 9.4073], - [-12.691199, 9.407999], - [-12.6984, 9.416299], - [-12.703499, 9.415499], - [-12.7088, 9.410899], - [-12.7113, 9.401499], - [-12.7122, 9.3895], - [-12.716799, 9.3904], - [-12.719941, 9.392494], - [-12.721008, 9.38876] - ] - ], - "type": "Polygon" - }, - "id": 265, - "properties": { - "cc:admin:id": ["9"], - "cc:oBld:total": 1146, - "cc:pop:fifteen-to-twenty-four": 3402.901877309979, - "cc:pop:grid3-total": 24035.252909168717, - "cc:pop:kontur-total": 17914.053425299488, - "cc:pop:men": 8292.978870723246, - "cc:pop:sixty-plus": 1216.7198922028965, - "cc:pop:total": 18083.97242088641, - "cc:pop:under-five": 2807.833958852761, - "cc:pop:women": 9790.993550163164, - "cc:pop:women-fiften-to-forty-nine": 4706.151372862511, - "cc:pop:wp-total": 14911.965521067244, - "cc:pop:wp-total-UN": 17291.99888374986, - "cc:id": "265", - "cc:Name": "Kukuna CHP", - "cc:site": [-12.6704, 9.3884], - "user:parentName": "Bramaia", - "user:code": "OU_211223", - "user:orgUnitId": "M9JyYBZTqR7", - "user:level": "4", - "user:parentId": "kbPmt60yi0L" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.369264, 8.42204], - [-12.36625, 8.41375], - [-12.367916, 8.412916], - [-12.367917, 8.407917], - [-12.368749, 8.404584], - [-12.36625, 8.402083], - [-12.36375, 8.39625], - [-12.368749, 8.392083], - [-12.368749, 8.389584], - [-12.362917, 8.387083], - [-12.362917, 8.382084], - [-12.365416, 8.380416], - [-12.364458, 8.378978], - [-12.364566, 8.378903], - [-12.36125, 8.376249], - [-12.362917, 8.374584], - [-12.366249, 8.372916], - [-12.367082, 8.370417], - [-12.362082, 8.367917], - [-12.35875, 8.367916], - [-12.35875, 8.355417], - [-12.359582, 8.355416], - [-12.359583, 8.354584], - [-12.357917, 8.350417], - [-12.358418, 8.347906], - [-12.356399, 8.3483], - [-12.3506, 8.3483], - [-12.3464, 8.3474], - [-12.3387, 8.344], - [-12.333339, 8.34125], - [-12.330745, 8.34125], - [-12.328879, 8.344481], - [-12.332674, 8.351054], - [-12.332784, 8.351247], - [-12.328879, 8.358012], - [-12.321378, 8.358013], - [-12.324583, 8.360416], - [-12.335416, 8.36125], - [-12.335417, 8.367083], - [-12.340416, 8.374583], - [-12.341249, 8.377083], - [-12.341249, 8.384584], - [-12.338749, 8.386249], - [-12.330417, 8.387917], - [-12.330417, 8.39293], - [-12.331249, 8.392958], - [-12.331249, 8.393749], - [-12.327083, 8.401249], - [-12.321249, 8.402083], - [-12.314583, 8.40125], - [-12.312083, 8.411249], - [-12.30625, 8.407917], - [-12.302917, 8.412084], - [-12.301249, 8.419583], - [-12.29625, 8.420417], - [-12.294582, 8.422083], - [-12.292917, 8.422916], - [-12.290535, 8.421726], - [-12.290249, 8.422384], - [-12.282917, 8.424584], - [-12.282082, 8.427083], - [-12.277917, 8.432083], - [-12.27625, 8.432084], - [-12.280145, 8.437925], - [-12.281426, 8.437959], - [-12.281448, 8.438199], - [-12.281324, 8.4389], - [-12.285416, 8.439584], - [-12.287917, 8.442083], - [-12.288749, 8.442084], - [-12.284583, 8.451249], - [-12.282917, 8.45125], - [-12.282123, 8.458395], - [-12.281771, 8.458762], - [-12.280933, 8.459086], - [-12.281092, 8.460289], - [-12.281758, 8.461299], - [-12.283017, 8.462386], - [-12.284357, 8.464021], - [-12.28575, 8.465346], - [-12.28739, 8.466618], - [-12.288822, 8.46739], - [-12.287916, 8.46875], - [-12.285301, 8.469404], - [-12.284162, 8.468147], - [-12.282054, 8.466746], - [-12.280799, 8.466169], - [-12.279496, 8.46644], - [-12.279463, 8.468328], - [-12.279105, 8.468631], - [-12.279334, 8.46975], - [-12.278976, 8.470164], - [-12.278563, 8.471363], - [-12.278798, 8.471852], - [-12.278776, 8.473289], - [-12.277334, 8.474387], - [-12.277025, 8.474583], - [-12.281249, 8.474584], - [-12.282917, 8.477916], - [-12.286249, 8.47875], - [-12.285799, 8.480548], - [-12.281758, 8.479187], - [-12.281767, 8.479469], - [-12.282729, 8.481477], - [-12.285545, 8.484613], - [-12.285139, 8.485598], - [-12.28464, 8.487726], - [-12.285699, 8.488426], - [-12.286032, 8.488831], - [-12.286647, 8.489239], - [-12.289194, 8.490323], - [-12.290589, 8.491391], - [-12.291029, 8.492965], - [-12.291658, 8.49354], - [-12.290161, 8.494759], - [-12.289282, 8.494754], - [-12.28833, 8.495073], - [-12.286792, 8.495235], - [-12.285937, 8.495174], - [-12.284751, 8.495575], - [-12.283091, 8.495653], - [-12.282708, 8.496141], - [-12.283114, 8.496142], - [-12.28702, 8.502907], - [-12.294831, 8.502907], - [-12.298738, 8.496142], - [-12.30655, 8.496142], - [-12.310456, 8.502907], - [-12.30949, 8.504583], - [-12.311249, 8.504583], - [-12.31125, 8.499583], - [-12.314583, 8.495416], - [-12.317083, 8.494584], - [-12.319582, 8.494583], - [-12.322917, 8.487917], - [-12.325481, 8.485352], - [-12.325759, 8.48572], - [-12.325917, 8.48624], - [-12.326955, 8.487824], - [-12.327513, 8.489081], - [-12.328422, 8.490035], - [-12.329056, 8.489901], - [-12.330476, 8.489179], - [-12.331554, 8.489483], - [-12.333267, 8.489291], - [-12.33125, 8.484583], - [-12.332916, 8.479584], - [-12.332917, 8.479018], - [-12.334107, 8.479093], - [-12.340548, 8.480569], - [-12.340849, 8.47969], - [-12.341788, 8.478999], - [-12.34239, 8.477907], - [-12.343803, 8.476702], - [-12.344373, 8.475646], - [-12.34446, 8.474392], - [-12.343892, 8.473215], - [-12.343728, 8.471929], - [-12.343954, 8.469427], - [-12.343598, 8.468303], - [-12.345295, 8.467066], - [-12.346154, 8.466716], - [-12.34632, 8.466709], - [-12.346154, 8.465888], - [-12.345645, 8.465554], - [-12.345623, 8.465399], - [-12.345661, 8.46524], - [-12.345737, 8.465091], - [-12.34579, 8.464959], - [-12.346249, 8.464318], - [-12.346556, 8.464231], - [-12.346754, 8.463927], - [-12.346826, 8.463773], - [-12.346872, 8.463458], - [-12.346803, 8.463129], - [-12.346615, 8.463001], - [-12.346255, 8.463028], - [-12.345183, 8.463229], - [-12.34476, 8.462948], - [-12.344769, 8.462874], - [-12.345017, 8.462433], - [-12.346116, 8.461239], - [-12.346192, 8.460671], - [-12.346191, 8.460306], - [-12.346117, 8.460161], - [-12.346118, 8.46016], - [-12.347916, 8.460416], - [-12.348749, 8.460416], - [-12.349583, 8.45125], - [-12.355416, 8.445416], - [-12.355417, 8.442916], - [-12.360417, 8.441249], - [-12.362082, 8.438749], - [-12.362083, 8.43375], - [-12.362975, 8.433303], - [-12.361927, 8.429281], - [-12.364582, 8.42875], - [-12.367916, 8.429583], - [-12.367917, 8.424584], - [-12.368921, 8.42207], - [-12.369171, 8.422079], - [-12.369264, 8.42204] - ] - ], - "type": "Polygon" - }, - "id": 266, - "properties": { - "cc:admin:id": ["149"], - "cc:oBld:total": 282, - "cc:pop:fifteen-to-twenty-four": 1377.6971794320555, - "cc:pop:grid3-total": 5227.3154310323125, - "cc:pop:kontur-total": 7967.2001933520405, - "cc:pop:men": 3429.276591273324, - "cc:pop:sixty-plus": 474.14936154947287, - "cc:pop:total": 7393.1262037113065, - "cc:pop:under-five": 1187.2125984947666, - "cc:pop:women": 3963.8496124379826, - "cc:pop:women-fiften-to-forty-nine": 1953.0405928431235, - "cc:pop:wp-total": 6687.681145195112, - "cc:pop:wp-total-UN": 7757.494681496122, - "cc:id": "266", - "cc:Name": "Kumrabai Yoni MCHP", - "cc:site": [-12.3205, 8.4387], - "user:parentName": "Yoni", - "user:code": "OU_268233", - "user:orgUnitId": "bJ0VSATHwO2", - "user:level": "4", - "user:parentId": "NNE0YMCDZkO" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.827319, 8.887674], - [-10.827267, 8.887673], - [-10.823361, 8.880908], - [-10.815548, 8.880907], - [-10.811643, 8.874142], - [-10.815548, 8.867376], - [-10.811643, 8.86061], - [-10.815548, 8.853845], - [-10.811642, 8.847079], - [-10.803831, 8.847078], - [-10.800141, 8.840691], - [-10.798749, 8.842083], - [-10.795417, 8.842916], - [-10.79375, 8.842917], - [-10.78375, 8.839583], - [-10.779582, 8.832917], - [-10.775417, 8.832917], - [-10.768749, 8.844583], - [-10.764583, 8.845416], - [-10.757916, 8.842083], - [-10.754583, 8.842916], - [-10.753749, 8.847083], - [-10.742918, 8.852082], - [-10.742917, 8.852081], - [-10.742916, 8.849582], - [-10.742082, 8.84375], - [-10.737917, 8.844583], - [-10.735416, 8.847916], - [-10.732083, 8.847083], - [-10.730417, 8.840417], - [-10.729582, 8.839583], - [-10.722083, 8.841249], - [-10.720416, 8.840417], - [-10.71125, 8.842916], - [-10.70875, 8.842917], - [-10.705416, 8.847082], - [-10.700417, 8.84625], - [-10.698402, 8.846921], - [-10.698376, 8.84689], - [-10.697839, 8.846164], - [-10.697466, 8.844427], - [-10.697086, 8.843745], - [-10.694275, 8.84191], - [-10.693849, 8.841759], - [-10.692212, 8.841692], - [-10.691772, 8.841419], - [-10.690451, 8.842532], - [-10.689991, 8.84304], - [-10.68876, 8.843589], - [-10.686813, 8.844037], - [-10.685896, 8.844937], - [-10.685822, 8.844965], - [-10.685416, 8.84375], - [-10.683749, 8.842083], - [-10.67625, 8.840417], - [-10.674583, 8.840417], - [-10.674583, 8.844582], - [-10.67653, 8.849777], - [-10.676299, 8.84987], - [-10.675884, 8.850588], - [-10.675282, 8.851116], - [-10.677916, 8.85375], - [-10.677917, 8.857082], - [-10.679582, 8.859583], - [-10.679582, 8.862916], - [-10.67375, 8.864583], - [-10.67375, 8.876249], - [-10.674582, 8.877916], - [-10.668749, 8.879583], - [-10.664583, 8.888749], - [-10.667082, 8.89125], - [-10.664583, 8.895417], - [-10.663749, 8.900416], - [-10.662916, 8.900417], - [-10.654583, 8.902083], - [-10.654583, 8.911249], - [-10.657083, 8.912916], - [-10.662917, 8.91375], - [-10.663749, 8.922917], - [-10.660417, 8.928749], - [-10.65875, 8.92875], - [-10.65765, 8.931499], - [-10.666199, 8.9315], - [-10.671399, 8.931699], - [-10.6753, 8.9325], - [-10.6807, 8.9347], - [-10.6847, 8.935299], - [-10.690099, 8.9352], - [-10.6941, 8.934399], - [-10.6985, 8.932599], - [-10.7024, 8.931899], - [-10.7118, 8.930299], - [-10.726699, 8.9291], - [-10.734099, 8.9271], - [-10.738699, 8.9263], - [-10.7624, 8.925599], - [-10.766899, 8.9248], - [-10.771599, 8.9234], - [-10.774599, 8.9228], - [-10.790699, 8.922], - [-10.795399, 8.9215], - [-10.803, 8.919299], - [-10.811799, 8.9174], - [-10.825499, 8.911799], - [-10.8251, 8.9013], - [-10.825399, 8.8937], - [-10.826, 8.890899], - [-10.827319, 8.887674] - ] - ], - "type": "Polygon" - }, - "id": 267, - "properties": { - "cc:admin:id": ["72"], - "cc:oBld:total": 79, - "cc:pop:fifteen-to-twenty-four": 289.78577652496256, - "cc:pop:grid3-total": 3987.647263319247, - "cc:pop:kontur-total": 1690.9253955595696, - "cc:pop:men": 729.9481707083452, - "cc:pop:sixty-plus": 89.96733307482289, - "cc:pop:total": 1548.8822879336008, - "cc:pop:under-five": 249.79970429099603, - "cc:pop:women": 818.9341172252564, - "cc:pop:women-fiften-to-forty-nine": 404.73918183375184, - "cc:pop:wp-total": 2667.7566452851433, - "cc:pop:wp-total-UN": 3072.532714206861, - "cc:id": "267", - "cc:Name": "Kundundu MCHP", - "cc:site": [-10.6815, 8.8989], - "user:parentName": "Lei", - "user:code": "OU_233353", - "user:orgUnitId": "jYPY8mT8gn6", - "user:level": "4", - "user:parentId": "LhaAPLxdSFH" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.11993, 8.957892], - [-12.119081, 8.9573], - [-12.113199, 8.957299], - [-12.1103, 8.957], - [-12.1075, 8.9564], - [-12.102999, 8.954399], - [-12.097099, 8.952899], - [-12.0918, 8.9506], - [-12.0883, 8.95], - [-12.084899, 8.9506], - [-12.0766, 8.954299], - [-12.0714, 8.9577], - [-12.069899, 8.9606], - [-12.0697, 8.9642], - [-12.069799, 8.971799], - [-12.069099, 8.975499], - [-12.067199, 8.9786], - [-12.0645, 8.981199], - [-12.062199, 8.9829], - [-12.0586, 8.9847], - [-12.058899, 8.990799], - [-12.059, 8.996299], - [-12.0588, 8.998999], - [-12.058199, 9.001599], - [-12.056799, 9.0039], - [-12.0545, 9.006599], - [-12.050399, 9.0104], - [-12.0466, 9.0145], - [-12.047499, 9.016999], - [-12.047693, 9.018861], - [-12.047917, 9.01875], - [-12.057421, 9.01948], - [-12.057509, 9.019054], - [-12.058079, 9.013439], - [-12.058087, 9.012917], - [-12.063749, 9.012917], - [-12.065416, 9.012082], - [-12.065416, 9.004583], - [-12.062917, 9.002916], - [-12.062083, 8.999583], - [-12.071611, 8.996651], - [-12.071625, 8.99668], - [-12.075416, 8.995416], - [-12.072083, 8.992082], - [-12.07375, 8.989583], - [-12.077082, 8.990416], - [-12.078119, 8.988344], - [-12.078308, 8.988409], - [-12.079582, 8.984583], - [-12.07875, 8.982916], - [-12.086249, 8.981249], - [-12.08625, 8.977917], - [-12.092254, 8.977917], - [-12.09352, 8.979223], - [-12.095899, 8.980313], - [-12.097043, 8.980337], - [-12.092917, 8.972082], - [-12.09625, 8.969583], - [-12.102916, 8.972082], - [-12.103586, 8.96806], - [-12.103273, 8.967859], - [-12.103636, 8.966951], - [-12.103993, 8.966866], - [-12.106684, 8.964909], - [-12.107083, 8.962917], - [-12.117916, 8.961249], - [-12.11993, 8.957892] - ] - ], - "type": "Polygon" - }, - "id": 268, - "properties": { - "cc:admin:id": ["32"], - "cc:oBld:total": 35, - "cc:pop:fifteen-to-twenty-four": 580.1000381249428, - "cc:pop:grid3-total": 859.5366741280524, - "cc:pop:kontur-total": 2963.904690301353, - "cc:pop:men": 1458.1986089667926, - "cc:pop:sixty-plus": 204.10592594853208, - "cc:pop:total": 3090.0229515916258, - "cc:pop:under-five": 490.31505127328955, - "cc:pop:women": 1631.8243426248341, - "cc:pop:women-fiften-to-forty-nine": 798.0118337505696, - "cc:pop:wp-total": 1885.6496865629422, - "cc:pop:wp-total-UN": 2189.6353007016846, - "cc:id": "268", - "cc:Name": "Kunsho CHP", - "cc:site": [-12.0791, 8.9542], - "user:parentName": "Makari Gbanti", - "user:code": "OU_193254", - "user:orgUnitId": "tdhB1JXYBx2", - "user:level": "4", - "user:parentId": "lY93YpCxJqf" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - [-12.9537, 8.506799], - [-12.953699, 8.5024], - [-12.9526, 8.5007], - [-12.952599, 8.4993], - [-12.952532, 8.499196], - [-12.951662, 8.498075], - [-12.950757, 8.496851], - [-12.950446, 8.496241], - [-12.950297, 8.495743], - [-12.950327, 8.493743], - [-12.95049, 8.492948], - [-12.950568, 8.492279], - [-12.950423, 8.491538], - [-12.950187, 8.490801], - [-12.949814, 8.490008], - [-12.949204, 8.489046], - [-12.94887, 8.488681], - [-12.948473, 8.487868], - [-12.947894, 8.487375], - [-12.947408, 8.486184], - [-12.94741, 8.485278], - [-12.947792, 8.484447], - [-12.948283, 8.483874], - [-12.948552, 8.483569], - [-12.948976, 8.482807], - [-12.948863, 8.482529], - [-12.948969, 8.48022], - [-12.948381, 8.479952], - [-12.944919, 8.483414], - [-12.942581, 8.483048], - [-12.942478, 8.483391], - [-12.941953, 8.48362], - [-12.939583, 8.48125], - [-12.940416, 8.472084], - [-12.934583, 8.469583], - [-12.935416, 8.46375], - [-12.931316, 8.461017], - [-12.931068, 8.461022], - [-12.929609, 8.460667], - [-12.928591, 8.460933], - [-12.928124, 8.461277], - [-12.928028, 8.461686], - [-12.928214, 8.462498], - [-12.928059, 8.463066], - [-12.927715, 8.463234], - [-12.927298, 8.463177], - [-12.927206, 8.462891], - [-12.926814, 8.462788], - [-12.926198, 8.463522], - [-12.926526, 8.464095], - [-12.926921, 8.466077], - [-12.926036, 8.4654], - [-12.925351, 8.4654], - [-12.924734, 8.465765], - [-12.924429, 8.46576], - [-12.924888, 8.464519], - [-12.925339, 8.463914], - [-12.925291, 8.463204], - [-12.923177, 8.462127], - [-12.921782, 8.462104], - [-12.921628, 8.461908], - [-12.921906, 8.461087], - [-12.92172, 8.460735], - [-12.917082, 8.461249], - [-12.916587, 8.459763], - [-12.916647, 8.459726], - [-12.915416, 8.455417], - [-12.91125, 8.45125], - [-12.907083, 8.451249], - [-12.902082, 8.447084], - [-12.893722, 8.44778], - [-12.893654, 8.448609], - [-12.894055, 8.450924], - [-12.894931, 8.452237], - [-12.89606, 8.453447], - [-12.896249, 8.453857], - [-12.896249, 8.458749], - [-12.887083, 8.455417], - [-12.887082, 8.454584], - [-12.884583, 8.454584], - [-12.880614, 8.45723], - [-12.880743, 8.457349], - [-12.880743, 8.457351], - [-12.877917, 8.457917], - [-12.877507, 8.458736], - [-12.877604, 8.459104], - [-12.876877, 8.462917], - [-12.869583, 8.462916], - [-12.867082, 8.45875], - [-12.86125, 8.45875], - [-12.860416, 8.462083], - [-12.857083, 8.462917], - [-12.856249, 8.465416], - [-12.853249, 8.466017], - [-12.853364, 8.466239], - [-12.853368, 8.466249], - [-12.852917, 8.46625], - [-12.851249, 8.468749], - [-12.84625, 8.46875], - [-12.847083, 8.470416], - [-12.850416, 8.470417], - [-12.850417, 8.478749], - [-12.849583, 8.479583], - [-12.842082, 8.474584], - [-12.840417, 8.474584], - [-12.837083, 8.477916], - [-12.837916, 8.48125], - [-12.835417, 8.48375], - [-12.83375, 8.489583], - [-12.83375, 8.494583], - [-12.839581, 8.494584], - [-12.834503, 8.499664], - [-12.83569, 8.50091], - [-12.838906, 8.502796], - [-12.839882, 8.502834], - [-12.840794, 8.503256], - [-12.841695, 8.503772], - [-12.842899, 8.505], - [-12.843419, 8.505334], - [-12.843699, 8.505331], - [-12.844919, 8.50471], - [-12.845706, 8.504152], - [-12.851025, 8.504152], - [-12.849583, 8.512083], - [-12.854413, 8.514154], - [-12.852209, 8.515346], - [-12.851153, 8.516894], - [-12.850945, 8.517307], - [-12.85375, 8.522916], - [-12.862916, 8.52125], - [-12.862917, 8.525416], - [-12.870316, 8.527636], - [-12.869408, 8.52909], - [-12.869626, 8.529847], - [-12.870832, 8.531405], - [-12.871216, 8.532246], - [-12.870793, 8.535362], - [-12.870902, 8.535913], - [-12.87149, 8.536495], - [-12.873923, 8.537742], - [-12.874405, 8.538224], - [-12.874623, 8.53871], - [-12.874633, 8.539176], - [-12.873908, 8.542238], - [-12.874977, 8.543131], - [-12.87581, 8.544598], - [-12.874583, 8.545416], - [-12.874576, 8.545417], - [-12.874739, 8.545839], - [-12.876294, 8.547021], - [-12.876572, 8.547824], - [-12.877104, 8.548217], - [-12.877584, 8.549195], - [-12.877852, 8.549406], - [-12.878887, 8.549511], - [-12.879626, 8.548856], - [-12.87987, 8.548435], - [-12.880571, 8.548848], - [-12.881021, 8.548095], - [-12.881607, 8.547817], - [-12.881934, 8.547862], - [-12.881759, 8.548465], - [-12.881096, 8.549074], - [-12.88071, 8.549211], - [-12.88043, 8.54911], - [-12.880109, 8.549433], - [-12.877799, 8.550076], - [-12.877601, 8.550228], - [-12.877558, 8.55068], - [-12.877238, 8.550988], - [-12.876907, 8.550981], - [-12.875852, 8.552217], - [-12.875475, 8.553268], - [-12.875516, 8.554675], - [-12.875485, 8.554781], - [-12.878409, 8.556146], - [-12.879727, 8.555008], - [-12.880472, 8.554821], - [-12.880827, 8.554521], - [-12.881576, 8.553128], - [-12.882225, 8.553155], - [-12.881791, 8.554446], - [-12.881043, 8.555597], - [-12.879879, 8.556831], - [-12.880416, 8.557083], - [-12.883069, 8.554961], - [-12.88307, 8.554962], - [-12.883018, 8.555037], - [-12.881775, 8.557993], - [-12.8823, 8.557799], - [-12.8853, 8.557199], - [-12.891499, 8.556699], - [-12.8952, 8.553], - [-12.9028, 8.560399], - [-12.915699, 8.5603], - [-12.922499, 8.560099], - [-12.919299, 8.5565], - [-12.9179, 8.556299], - [-12.917899, 8.554899], - [-12.9171, 8.5504], - [-12.9165, 8.548999], - [-12.9163, 8.5463], - [-12.918499, 8.545999], - [-12.920399, 8.544899], - [-12.9232, 8.541], - [-12.925399, 8.539899], - [-12.926299, 8.5385], - [-12.927099, 8.538199], - [-12.9271, 8.537099], - [-12.9279, 8.535999], - [-12.929899, 8.5351], - [-12.9313, 8.533999], - [-12.934899, 8.5332], - [-12.9365, 8.533199], - [-12.938199, 8.532399], - [-12.940399, 8.5304], - [-12.942099, 8.530399], - [-12.943999, 8.529299], - [-12.943799, 8.5274], - [-12.9415, 8.526799], - [-12.940399, 8.525999], - [-12.9401, 8.524299], - [-12.9401, 8.521], - [-12.940699, 8.520999], - [-12.9413, 8.519], - [-12.942599, 8.5176], - [-12.9449, 8.517399], - [-12.946799, 8.5162], - [-12.948199, 8.5149], - [-12.9485, 8.512399], - [-12.9493, 8.5113], - [-12.952099, 8.509899], - [-12.9521, 8.508999], - [-12.9537, 8.506799] - ] - ], - [ - [ - [-12.962099, 8.552599], - [-12.9615, 8.5476], - [-12.961, 8.547399], - [-12.960999, 8.5438], - [-12.9604, 8.542399], - [-12.960399, 8.5407], - [-12.959899, 8.5396], - [-12.958699, 8.539599], - [-12.9574, 8.5387], - [-12.955099, 8.5357], - [-12.9543, 8.535699], - [-12.953199, 8.5346], - [-12.9515, 8.534], - [-12.950099, 8.5321], - [-12.948999, 8.5315], - [-12.946, 8.5315], - [-12.944, 8.5313], - [-12.942599, 8.532399], - [-12.9415, 8.5326], - [-12.940699, 8.533999], - [-12.9376, 8.5343], - [-12.937099, 8.5351], - [-12.934, 8.536], - [-12.932399, 8.537399], - [-12.9307, 8.5374], - [-12.9296, 8.539], - [-12.929599, 8.540999], - [-12.928999, 8.5421], - [-12.9271, 8.543999], - [-12.9251, 8.5443], - [-12.9238, 8.5457], - [-12.9243, 8.548499], - [-12.9263, 8.549899], - [-12.9274, 8.5499], - [-12.928999, 8.551799], - [-12.929, 8.552599], - [-12.9318, 8.5526], - [-12.932899, 8.5532], - [-12.934, 8.554599], - [-12.9368, 8.556], - [-12.938799, 8.556299], - [-12.939, 8.556], - [-12.9429, 8.555999], - [-12.945099, 8.5557], - [-12.9471, 8.5549], - [-12.952399, 8.555399], - [-12.9529, 8.5549], - [-12.957099, 8.5546], - [-12.958499, 8.555099], - [-12.959, 8.554299], - [-12.962099, 8.552599] - ] - ] - ], - "type": "MultiPolygon" - }, - "id": 269, - "properties": { - "cc:admin:id": ["62"], - "cc:oBld:total": 108, - "cc:pop:fifteen-to-twenty-four": 1067.3064800293346, - "cc:pop:grid3-total": 2488.972546586717, - "cc:pop:kontur-total": 5350.714400273968, - "cc:pop:men": 2822.7199453776566, - "cc:pop:sixty-plus": 339.3161607358409, - "cc:pop:total": 5972.758108439642, - "cc:pop:under-five": 991.4596847399401, - "cc:pop:women": 3150.0381630619836, - "cc:pop:women-fiften-to-forty-nine": 1631.0438134495562, - "cc:pop:wp-total": 4658.542183826803, - "cc:pop:wp-total-UN": 5404.924450829349, - "cc:id": "269", - "cc:Name": "Kuranko MCHP", - "cc:site": [-12.8726, 8.4754], - "user:parentName": "Koya", - "user:code": "OU_254962", - "user:orgUnitId": "WUQrS4Yqmoy", - "user:level": "4", - "user:parentId": "pRHGAROvuyI" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - [-13.257746, 8.994128], - [-13.257312, 8.99391], - [-13.255767, 8.993693], - [-13.253842, 8.993015], - [-13.252541, 8.991903], - [-13.25179, 8.990014], - [-13.252083, 8.987083], - [-13.253749, 8.986249], - [-13.256249, 8.980417], - [-13.253049, 8.978495], - [-13.253045, 8.978332], - [-13.253606, 8.97561], - [-13.253621, 8.97402], - [-13.253363, 8.972258], - [-13.253234, 8.969627], - [-13.252882, 8.964692], - [-13.253424, 8.955147], - [-13.253799, 8.954737], - [-13.253799, 8.9543], - [-13.250099, 8.953999], - [-13.2468, 8.9513], - [-13.246499, 8.9496], - [-13.245999, 8.949299], - [-13.245399, 8.9457], - [-13.2415, 8.9457], - [-13.2404, 8.946499], - [-13.2393, 8.9465], - [-13.2374, 8.9485], - [-13.237556, 8.949122], - [-13.237599, 8.949298], - [-13.237598, 8.949299], - [-13.2346, 8.949], - [-13.2318, 8.9482], - [-13.2301, 8.948199], - [-13.229599, 8.9471], - [-13.2279, 8.946499], - [-13.227399, 8.9451], - [-13.2257, 8.9438], - [-13.2232, 8.943499], - [-13.2226, 8.942599], - [-13.222599, 8.941], - [-13.221499, 8.940099], - [-13.220099, 8.9382], - [-13.2188, 8.937899], - [-13.2176, 8.9371], - [-13.216499, 8.9354], - [-13.2146, 8.9346], - [-13.213499, 8.9329], - [-13.2101, 8.9304], - [-13.209599, 8.929], - [-13.206, 8.927099], - [-13.2038, 8.9249], - [-13.2021, 8.922399], - [-13.201499, 8.920099], - [-13.199599, 8.916299], - [-13.197599, 8.9137], - [-13.196499, 8.913499], - [-13.194899, 8.9121], - [-13.192099, 8.9113], - [-13.1876, 8.911499], - [-13.186799, 8.9104], - [-13.185099, 8.9096], - [-13.182099, 8.909599], - [-13.178999, 8.9088], - [-13.1774, 8.9088], - [-13.176499, 8.909299], - [-13.174899, 8.908799], - [-13.1696, 8.908499], - [-13.168699, 8.9076], - [-13.166799, 8.907899], - [-13.1643, 8.9076], - [-13.163999, 8.9071], - [-13.1612, 8.9071], - [-13.160099, 8.908199], - [-13.1574, 8.9082], - [-13.156799, 8.9073], - [-13.1518, 8.910199], - [-13.149099, 8.912399], - [-13.1415, 8.9152], - [-13.133599, 8.9213], - [-13.1201, 8.928499], - [-13.117636, 8.929524], - [-13.120631, 8.933716], - [-13.12063, 8.933718], - [-13.120076, 8.933882], - [-13.120421, 8.934497], - [-13.122, 8.936051], - [-13.122655, 8.936934], - [-13.122969, 8.938358], - [-13.122954, 8.938484], - [-13.126248, 8.939582], - [-13.126248, 8.939584], - [-13.125543, 8.940289], - [-13.12633, 8.940837], - [-13.126722, 8.941402], - [-13.126711, 8.942944], - [-13.126673, 8.943624], - [-13.126102, 8.944682], - [-13.125248, 8.945564], - [-13.124583, 8.946057], - [-13.124582, 8.948749], - [-13.12375, 8.949583], - [-13.123749, 8.951249], - [-13.12246, 8.951679], - [-13.122365, 8.9507], - [-13.122129, 8.950463], - [-13.121823, 8.951258], - [-13.121047, 8.951255], - [-13.121172, 8.952029], - [-13.121037, 8.953058], - [-13.120259, 8.953183], - [-13.119998, 8.95344], - [-13.11948, 8.953566], - [-13.118823, 8.955366], - [-13.118945, 8.956654], - [-13.118427, 8.956523], - [-13.117391, 8.956647], - [-13.117388, 8.957162], - [-13.11687, 8.95716], - [-13.117119, 8.958964], - [-13.116471, 8.959219], - [-13.116554, 8.961706], - [-13.117916, 8.96375], - [-13.117243, 8.967788], - [-13.11785, 8.967987], - [-13.119696, 8.967363], - [-13.12158, 8.967173], - [-13.123394, 8.967324], - [-13.123548, 8.967583], - [-13.120871, 8.971224], - [-13.119689, 8.973072], - [-13.123749, 8.97375], - [-13.124577, 8.974578], - [-13.12482, 8.973175], - [-13.124652, 8.973003], - [-13.124822, 8.972788], - [-13.124396, 8.97231], - [-13.124442, 8.971369], - [-13.124704, 8.970855], - [-13.125224, 8.970343], - [-13.125253, 8.970264], - [-13.130035, 8.970264], - [-13.130036, 8.970265], - [-13.129922, 8.970549], - [-13.129858, 8.970844], - [-13.129998, 8.970977], - [-13.131005, 8.970504], - [-13.134773, 8.977029], - [-13.141105, 8.977028], - [-13.138666, 8.972737], - [-13.138702, 8.972715], - [-13.139142, 8.972466], - [-13.140053, 8.972465], - [-13.140941, 8.972261], - [-13.14199, 8.973264], - [-13.14379, 8.973856], - [-13.145863, 8.974311], - [-13.146956, 8.974607], - [-13.146341, 8.97413], - [-13.144814, 8.97381], - [-13.143675, 8.973468], - [-13.142241, 8.972967], - [-13.141375, 8.972216], - [-13.141243, 8.97209], - [-13.142083, 8.97125], - [-13.143603, 8.97125], - [-13.143747, 8.971466], - [-13.144265, 8.971598], - [-13.145038, 8.972375], - [-13.147881, 8.973676], - [-13.148019, 8.973627], - [-13.148749, 8.984582], - [-13.149833, 8.985667], - [-13.149832, 8.985668], - [-13.149117, 8.985665], - [-13.149246, 8.985923], - [-13.149361, 8.988757], - [-13.150913, 8.989023], - [-13.150917, 8.988508], - [-13.151183, 8.988637], - [-13.151428, 8.988394], - [-13.15185, 8.988284], - [-13.152916, 8.990416], - [-13.152083, 8.992083], - [-13.152082, 8.998174], - [-13.148792, 8.998673], - [-13.148354, 8.99889], - [-13.148905, 8.999553], - [-13.149266, 8.999716], - [-13.150314, 8.999562], - [-13.150582, 8.999375], - [-13.151745, 8.99973], - [-13.15848, 9.000723], - [-13.158874, 9.000822], - [-13.159583, 9.007916], - [-13.161249, 9.010417], - [-13.160417, 9.019582], - [-13.169736, 9.020299], - [-13.170551, 9.018408], - [-13.171176, 9.0149], - [-13.173666, 9.01577], - [-13.174348, 9.015877], - [-13.17435, 9.01588], - [-13.174583, 9.015416], - [-13.174583, 9.012916], - [-13.176609, 9.011397], - [-13.176716, 9.011825], - [-13.177233, 9.011829], - [-13.17749, 9.012473], - [-13.178007, 9.012604], - [-13.177883, 9.011832], - [-13.178532, 9.011448], - [-13.179569, 9.011453], - [-13.180862, 9.011847], - [-13.180464, 9.013647], - [-13.179943, 9.014419], - [-13.17981, 9.014932], - [-13.179292, 9.014931], - [-13.179291, 9.015188], - [-13.180067, 9.015321], - [-13.180195, 9.015707], - [-13.180064, 9.015964], - [-13.181331, 9.015553], - [-13.18239, 9.017317], - [-13.182388, 9.017779], - [-13.182905, 9.017782], - [-13.18304, 9.017011], - [-13.1833, 9.016753], - [-13.183431, 9.01624], - [-13.183171, 9.016495], - [-13.182913, 9.016494], - [-13.182914, 9.016237], - [-13.183084, 9.016148], - [-13.183306, 9.015465], - [-13.183312, 9.014434], - [-13.183707, 9.012891], - [-13.184226, 9.012893], - [-13.184228, 9.012379], - [-13.182932, 9.012629], - [-13.182934, 9.012115], - [-13.182157, 9.012239], - [-13.181377, 9.012621], - [-13.181381, 9.011849], - [-13.182417, 9.011853], - [-13.182422, 9.011081], - [-13.18294, 9.010954], - [-13.183459, 9.010572], - [-13.18346, 9.010573], - [-13.183326, 9.0116], - [-13.183454, 9.011987], - [-13.183712, 9.011988], - [-13.184234, 9.011475], - [-13.184752, 9.01135], - [-13.184753, 9.011093], - [-13.183977, 9.011088], - [-13.18398, 9.010316], - [-13.184241, 9.01006], - [-13.184499, 9.010061], - [-13.184499, 9.010318], - [-13.184238, 9.010574], - [-13.185015, 9.010707], - [-13.185789, 9.011483], - [-13.186218, 9.011526], - [-13.186308, 9.011357], - [-13.186737, 9.011271], - [-13.18683, 9.010588], - [-13.187088, 9.010589], - [-13.187087, 9.011103], - [-13.187345, 9.010975], - [-13.188129, 9.009821], - [-13.187352, 9.009816], - [-13.187228, 9.008786], - [-13.188142, 9.007373], - [-13.188401, 9.007374], - [-13.189175, 9.00815], - [-13.189691, 9.008283], - [-13.18969, 9.008797], - [-13.19021, 9.008413], - [-13.191248, 9.008033], - [-13.191376, 9.008548], - [-13.191592, 9.008718], - [-13.19228, 9.00881], - [-13.192413, 9.008295], - [-13.192289, 9.007265], - [-13.193458, 9.006756], - [-13.193844, 9.007014], - [-13.19372, 9.006241], - [-13.194368, 9.005987], - [-13.194366, 9.006501], - [-13.195119, 9.006587], - [-13.194954, 9.00729], - [-13.195568, 9.008199], - [-13.195479, 9.00972], - [-13.195749, 9.010802], - [-13.196127, 9.011544], - [-13.196509, 9.011765], - [-13.197593, 9.011887], - [-13.198433, 9.011734], - [-13.199297, 9.011807], - [-13.20043, 9.012416], - [-13.20219, 9.01421], - [-13.203267, 9.016756], - [-13.203687, 9.017363], - [-13.204902, 9.018405], - [-13.20527, 9.019703], - [-13.204129, 9.022284], - [-13.203832, 9.023114], - [-13.204206, 9.023895], - [-13.205256, 9.024529], - [-13.207429, 9.024664], - [-13.2076, 9.024774], - [-13.207688, 9.024489], - [-13.207496, 9.024344], - [-13.208342, 9.0226], - [-13.20926, 9.022699], - [-13.208726, 9.024213], - [-13.209308, 9.024739], - [-13.209829, 9.024099], - [-13.210348, 9.024102], - [-13.210324, 9.025081], - [-13.209306, 9.025385], - [-13.210597, 9.026164], - [-13.209549, 9.028477], - [-13.210567, 9.028951], - [-13.211885, 9.027717], - [-13.212041, 9.028834], - [-13.21375, 9.025417], - [-13.216593, 9.025853], - [-13.217014, 9.025412], - [-13.217169, 9.02529], - [-13.217288, 9.025005], - [-13.217753, 9.024794], - [-13.218231, 9.024714], - [-13.218627, 9.024762], - [-13.218936, 9.024835], - [-13.219108, 9.024898], - [-13.219161, 9.024803], - [-13.21913, 9.024577], - [-13.219138, 9.0244], - [-13.219279, 9.023307], - [-13.219153, 9.022481], - [-13.219581, 9.020056], - [-13.219604, 9.020011], - [-13.220416, 9.020416], - [-13.220487, 9.020392], - [-13.220838, 9.019688], - [-13.22523, 9.016022], - [-13.228124, 9.014981], - [-13.228393, 9.014824], - [-13.228187, 9.013999], - [-13.228751, 9.013721], - [-13.2293, 9.013259], - [-13.230211, 9.012526], - [-13.230558, 9.011852], - [-13.230471, 9.010812], - [-13.230103, 9.010399], - [-13.230212, 9.009748], - [-13.230841, 9.008771], - [-13.231881, 9.00784], - [-13.232539, 9.007371], - [-13.233529, 9.007321], - [-13.234263, 9.007774], - [-13.234811, 9.008642], - [-13.235375, 9.010421], - [-13.236221, 9.011331], - [-13.237067, 9.011266], - [-13.238109, 9.009834], - [-13.239497, 9.008338], - [-13.240255, 9.007232], - [-13.240321, 9.006343], - [-13.239844, 9.004694], - [-13.239432, 9.003522], - [-13.239376, 9.002557], - [-13.238735, 9.00255], - [-13.237937, 9.001995], - [-13.237625, 9.001266], - [-13.237677, 9.000434], - [-13.23777, 9.000271], - [-13.238019, 9.00052], - [-13.237868, 9.000729], - [-13.237886, 9.001371], - [-13.238563, 9.001891], - [-13.239735, 9.001857], - [-13.239974, 9.001612], - [-13.240384, 9.00125], - [-13.241618, 9.001249], - [-13.243166, 9.000208], - [-13.244385, 8.999294], - [-13.245394, 8.999], - [-13.246637, 8.999052], - [-13.247401, 8.99965], - [-13.247852, 9.000402], - [-13.248031, 9.000775], - [-13.249117, 9.000233], - [-13.249737, 9.001916], - [-13.25106, 9.003001], - [-13.251776, 9.003239], - [-13.252751, 9.003088], - [-13.252817, 9.002176], - [-13.252644, 8.998966], - [-13.252557, 8.997296], - [-13.25247, 8.997064], - [-13.253215, 8.995425], - [-13.253217, 8.995425], - [-13.254086, 8.996784], - [-13.257746, 8.994128] - ] - ], - [ - [ - [-13.162599, 8.9026], - [-13.1582, 8.9018], - [-13.1565, 8.9035], - [-13.1565, 8.905399], - [-13.1574, 8.905999], - [-13.160399, 8.905399], - [-13.162399, 8.903999], - [-13.162599, 8.9026] - ] - ], - [ - [ - [-13.240099, 8.9082], - [-13.239, 8.9082], - [-13.2379, 8.910099], - [-13.2363, 8.9104], - [-13.235999, 8.911299], - [-13.2343, 8.910399], - [-13.2343, 8.909599], - [-13.237599, 8.908799], - [-13.2376, 8.9063], - [-13.238999, 8.905999], - [-13.2379, 8.902899], - [-13.2379, 8.9013], - [-13.239599, 8.899599], - [-13.239, 8.8971], - [-13.237899, 8.8957], - [-13.2354, 8.893999], - [-13.234599, 8.8929], - [-13.2338, 8.892899], - [-13.233199, 8.8912], - [-13.2288, 8.8888], - [-13.228199, 8.8876], - [-13.226299, 8.8868], - [-13.2251, 8.8868], - [-13.2235, 8.8876], - [-13.222899, 8.888999], - [-13.2193, 8.889], - [-13.2168, 8.8899], - [-13.216499, 8.890399], - [-13.2149, 8.8904], - [-13.2126, 8.891499], - [-13.211, 8.8918], - [-13.209899, 8.892599], - [-13.2076, 8.8932], - [-13.206299, 8.8943], - [-13.2035, 8.8949], - [-13.201499, 8.896299], - [-13.1985, 8.8968], - [-13.1963, 8.898999], - [-13.197599, 8.9001], - [-13.1982, 8.901299], - [-13.1993, 8.9013], - [-13.201299, 8.902099], - [-13.2013, 8.902599], - [-13.2029, 8.9029], - [-13.2049, 8.9038], - [-13.208199, 8.907399], - [-13.2085, 8.908799], - [-13.209899, 8.9099], - [-13.2115, 8.913499], - [-13.212899, 8.9146], - [-13.214, 8.916299], - [-13.2176, 8.917599], - [-13.221299, 8.9176], - [-13.2213, 8.9179], - [-13.226299, 8.9179], - [-13.2265, 8.918999], - [-13.228799, 8.919], - [-13.2282, 8.920999], - [-13.2301, 8.921799], - [-13.233199, 8.921799], - [-13.2349, 8.9207], - [-13.237399, 8.920399], - [-13.237599, 8.9193], - [-13.2351, 8.9193], - [-13.234599, 8.919899], - [-13.2329, 8.9193], - [-13.2329, 8.9179], - [-13.233999, 8.917399], - [-13.234599, 8.916299], - [-13.2338, 8.914299], - [-13.2351, 8.9132], - [-13.237099, 8.912599], - [-13.2379, 8.911499], - [-13.239299, 8.910999], - [-13.240099, 8.9082] - ] - ], - [ - [ - [-13.204299, 8.911499], - [-13.2035, 8.909899], - [-13.203499, 8.9079], - [-13.202599, 8.907599], - [-13.201799, 8.906], - [-13.198799, 8.906], - [-13.1974, 8.9065], - [-13.1968, 8.907399], - [-13.1979, 8.908799], - [-13.1988, 8.9088], - [-13.200699, 8.909899], - [-13.2015, 8.910999], - [-13.202899, 8.911799], - [-13.204299, 8.911499] - ] - ], - [ - [ - [-13.250999, 8.8801], - [-13.249, 8.8793], - [-13.2474, 8.8801], - [-13.2476, 8.881299], - [-13.249899, 8.881299], - [-13.250999, 8.8801] - ] - ] - ], - "type": "MultiPolygon" - }, - "id": 270, - "properties": { - "cc:admin:id": ["115"], - "cc:oBld:total": 2658, - "cc:pop:fifteen-to-twenty-four": 3362.496890818232, - "cc:pop:grid3-total": 19153.84554331394, - "cc:pop:kontur-total": 19148.42174962937, - "cc:pop:men": 8923.476621959388, - "cc:pop:sixty-plus": 1074.5403556094025, - "cc:pop:total": 19308.564411731397, - "cc:pop:under-five": 2960.2422422448208, - "cc:pop:women": 10385.087789771987, - "cc:pop:women-fiften-to-forty-nine": 4985.035110927694, - "cc:pop:wp-total": 14581.218842202692, - "cc:pop:wp-total-UN": 16921.03587656195, - "cc:id": "270", - "cc:Name": "Kychom CHC", - "cc:site": [-13.1436, 8.928], - "user:parentName": "Samu", - "user:code": "OU_211253", - "user:orgUnitId": "PcADvhvcaI2", - "user:level": "4", - "user:parentId": "r06ohri9wA9" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.183272, 9.45625], - [-12.17875, 9.456249], - [-12.175417, 9.453749], - [-12.178749, 9.442917], - [-12.177082, 9.437917], - [-12.172917, 9.437083], - [-12.169582, 9.444582], - [-12.168749, 9.444582], - [-12.165416, 9.442083], - [-12.162083, 9.442082], - [-12.159583, 9.440417], - [-12.167082, 9.433749], - [-12.166249, 9.42375], - [-12.15625, 9.422917], - [-12.150417, 9.422917], - [-12.149582, 9.42375], - [-12.147083, 9.425416], - [-12.146249, 9.426249], - [-12.144583, 9.426249], - [-12.141651, 9.425348], - [-12.140545, 9.423432], - [-12.144451, 9.416667], - [-12.140544, 9.409901], - [-12.135932, 9.409901], - [-12.133749, 9.412082], - [-12.126694, 9.409967], - [-12.126072, 9.413512], - [-12.125617, 9.415905], - [-12.125288, 9.416852], - [-12.124031, 9.417865], - [-12.122917, 9.41847], - [-12.122917, 9.415416], - [-12.123598, 9.407911], - [-12.122332, 9.407669], - [-12.119918, 9.407654], - [-12.119583, 9.407701], - [-12.119583, 9.397917], - [-12.122917, 9.39375], - [-12.126227, 9.393087], - [-12.126223, 9.393007], - [-12.126028, 9.392083], - [-12.117917, 9.392082], - [-12.114842, 9.389009], - [-12.110341, 9.389008], - [-12.106433, 9.382244], - [-12.098622, 9.382244], - [-12.094715, 9.389009], - [-12.086903, 9.389008], - [-12.082996, 9.382244], - [-12.075184, 9.382244], - [-12.072068, 9.38764], - [-12.077082, 9.387083], - [-12.077082, 9.396659], - [-12.076721, 9.396592], - [-12.07375, 9.406249], - [-12.07168, 9.40625], - [-12.068635, 9.411522], - [-12.070416, 9.41375], - [-12.069761, 9.421617], - [-12.069759, 9.421617], - [-12.069384, 9.420803], - [-12.068194, 9.419768], - [-12.065584, 9.419974], - [-12.064314, 9.41987], - [-12.064003, 9.419587], - [-12.063383, 9.419815], - [-12.061838, 9.419276], - [-12.060835, 9.418567], - [-12.060388, 9.418377], - [-12.05918, 9.4166], - [-12.058597, 9.416207], - [-12.058576, 9.416172], - [-12.05625, 9.417917], - [-12.056249, 9.419583], - [-12.052916, 9.422083], - [-12.052083, 9.424582], - [-12.055642, 9.428143], - [-12.052808, 9.433051], - [-12.052073, 9.433052], - [-12.052081, 9.433334], - [-12.051616, 9.435238], - [-12.051597, 9.435277], - [-12.04625, 9.43375], - [-12.045416, 9.440416], - [-12.042916, 9.445417], - [-12.04056, 9.446359], - [-12.039525, 9.446377], - [-12.039158, 9.446126], - [-12.036012, 9.444493], - [-12.035182, 9.444368], - [-12.034693, 9.444129], - [-12.035417, 9.452082], - [-12.035839, 9.45242], - [-12.038781, 9.457518], - [-12.035257, 9.463622], - [-12.035417, 9.46375], - [-12.036109, 9.471377], - [-12.035444, 9.472281], - [-12.034765, 9.472736], - [-12.034075, 9.472796], - [-12.035136, 9.474635], - [-12.031231, 9.481401], - [-12.035136, 9.488167], - [-12.032321, 9.493042], - [-12.031868, 9.492941], - [-12.031096, 9.493085], - [-12.029583, 9.502916], - [-12.032917, 9.506249], - [-12.038749, 9.507082], - [-12.039583, 9.507083], - [-12.040416, 9.511249], - [-12.040996, 9.514733], - [-12.039437, 9.515611], - [-12.038844, 9.516105], - [-12.0475, 9.5158], - [-12.068699, 9.515899], - [-12.0716, 9.515699], - [-12.0753, 9.514999], - [-12.080699, 9.5128], - [-12.0857, 9.511599], - [-12.090999, 9.5091], - [-12.095199, 9.5069], - [-12.100599, 9.5027], - [-12.105899, 9.4997], - [-12.110999, 9.4957], - [-12.113299, 9.4942], - [-12.1164, 9.492699], - [-12.120699, 9.4903], - [-12.1238, 9.488999], - [-12.1274, 9.487199], - [-12.1308, 9.486199], - [-12.136199, 9.4857], - [-12.138699, 9.4851], - [-12.144, 9.482899], - [-12.151099, 9.482], - [-12.153699, 9.4814], - [-12.1589, 9.479199], - [-12.1648, 9.477699], - [-12.1693, 9.475699], - [-12.1731, 9.474999], - [-12.179412, 9.474753], - [-12.182916, 9.471249], - [-12.182917, 9.462083], - [-12.179583, 9.45875], - [-12.179329, 9.458242], - [-12.179713, 9.458041], - [-12.179925, 9.457644], - [-12.180335, 9.457348], - [-12.180943, 9.457122], - [-12.181734, 9.457094], - [-12.182889, 9.456375], - [-12.183272, 9.45625] - ] - ], - "type": "Polygon" - }, - "id": 271, - "properties": { - "cc:admin:id": ["116"], - "cc:oBld:total": 3, - "cc:pop:fifteen-to-twenty-four": 712.8310685870761, - "cc:pop:grid3-total": 3902.7716626292286, - "cc:pop:kontur-total": 3692.918499878933, - "cc:pop:men": 1838.543357224953, - "cc:pop:sixty-plus": 239.4336464880205, - "cc:pop:total": 3867.69645198044, - "cc:pop:under-five": 623.9402074138271, - "cc:pop:women": 2029.153094755487, - "cc:pop:women-fiften-to-forty-nine": 983.470196627208, - "cc:pop:wp-total": 3635.7514631227914, - "cc:pop:wp-total-UN": 4222.879715421213, - "cc:id": "271", - "cc:Name": "Laiya CHP", - "cc:site": [-12.1062, 9.4544], - "user:parentName": "Sanda Loko", - "user:code": "OU_193243", - "user:orgUnitId": "yg7uxUol97F", - "user:level": "4", - "user:parentId": "WXnNDWTiE9r" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.266811, 8.395846], - [-13.266499, 8.394614], - [-13.264946, 8.394614], - [-13.264942, 8.394708], - [-13.264535, 8.394694], - [-13.264256, 8.394422], - [-13.263917, 8.394558], - [-13.263257, 8.394278], - [-13.263041, 8.394062], - [-13.26236, 8.393899], - [-13.261574, 8.39435], - [-13.261084, 8.394704], - [-13.260592, 8.393823], - [-13.260528, 8.393853], - [-13.260327, 8.393526], - [-13.260479, 8.394039], - [-13.260224, 8.394224], - [-13.260494, 8.394916], - [-13.260747, 8.395365], - [-13.26129, 8.395989], - [-13.261605, 8.395758], - [-13.2617, 8.395918], - [-13.261769, 8.395884], - [-13.261931, 8.396135], - [-13.262498, 8.396949], - [-13.262863, 8.397495], - [-13.266811, 8.395846] - ] - ], - "type": "Polygon" - }, - "id": 272, - "properties": { - "cc:admin:id": ["112"], - "cc:oBld:total": 107, - "cc:pop:fifteen-to-twenty-four": 121.66654012713377, - "cc:pop:grid3-total": 376.0529532926694, - "cc:pop:kontur-total": 0, - "cc:pop:men": 272.6994663547306, - "cc:pop:sixty-plus": 43.821791553137054, - "cc:pop:total": 540.5991642585388, - "cc:pop:under-five": 63.70039429522309, - "cc:pop:women": 267.89969790380826, - "cc:pop:women-fiften-to-forty-nine": 141.10893236046593, - "cc:pop:wp-total": 500.7517837591253, - "cc:pop:wp-total-UN": 582.235441703232, - "cc:id": "272", - "cc:Name": "Lakka Hospital", - "cc:site": [-13.2632, 8.3972], - "user:parentName": "Rural Western Area", - "user:code": "OU_278378", - "user:orgUnitId": "K0d08d3sUOv", - "user:level": "4", - "user:parentId": "qtr8GGlm4gg" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.150439, 8.050082], - [-11.149607, 8.050081], - [-11.145701, 8.043316], - [-11.137889, 8.043316], - [-11.133982, 8.050081], - [-11.12617, 8.050081], - [-11.122263, 8.043316], - [-11.117463, 8.043315], - [-11.117083, 8.038749], - [-11.117082, 8.032084], - [-11.10625, 8.032083], - [-11.106249, 8.030417], - [-11.104716, 8.030417], - [-11.104562, 8.031266], - [-11.10411, 8.031148], - [-11.103886, 8.030927], - [-11.100416, 8.032083], - [-11.097083, 8.032084], - [-11.092916, 8.03625], - [-11.08875, 8.036249], - [-11.084582, 8.032084], - [-11.080417, 8.032917], - [-11.078749, 8.035416], - [-11.076404, 8.035886], - [-11.0784, 8.037], - [-11.0816, 8.0384], - [-11.0855, 8.0413], - [-11.090499, 8.046099], - [-11.0937, 8.0494], - [-11.0953, 8.0515], - [-11.098399, 8.056899], - [-11.1008, 8.059299], - [-11.1086, 8.0632], - [-11.113499, 8.063899], - [-11.117599, 8.0636], - [-11.1197, 8.062999], - [-11.125, 8.0597], - [-11.1299, 8.060099], - [-11.134899, 8.06], - [-11.138399, 8.059299], - [-11.142399, 8.0571], - [-11.145399, 8.055699], - [-11.148299, 8.053], - [-11.150439, 8.050082] - ] - ], - "type": "Polygon" - }, - "id": 273, - "properties": { - "cc:admin:id": ["105"], - "cc:oBld:total": 517, - "cc:pop:fifteen-to-twenty-four": 493.7277699609024, - "cc:pop:grid3-total": 3746.0764940294002, - "cc:pop:kontur-total": 2547.239171656827, - "cc:pop:men": 1277.2664016076524, - "cc:pop:sixty-plus": 150.36458288460327, - "cc:pop:total": 2539.622237044772, - "cc:pop:under-five": 399.7737702670042, - "cc:pop:women": 1262.35583543712, - "cc:pop:women-fiften-to-forty-nine": 636.0923528455057, - "cc:pop:wp-total": 2843.402280454873, - "cc:pop:wp-total-UN": 3295.2611180411677, - "cc:id": "273", - "cc:Name": "Largo CHC", - "cc:site": [-11.1054, 8.0538], - "user:parentName": "Nongowa", - "user:code": "OU_222699", - "user:orgUnitId": "iOA3z6Y3cq5", - "user:level": "4", - "user:parentId": "KIUCimTXf8Q" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.04432, 7.672916], - [-12.041399, 7.667399], - [-12.039799, 7.662899], - [-12.038099, 7.656099], - [-12.036899, 7.652799], - [-12.035199, 7.649699], - [-12.032699, 7.646899], - [-12.025699, 7.641999], - [-12.016999, 7.634999], - [-12.007999, 7.630799], - [-12.003699, 7.629899], - [-11.999199, 7.6298], - [-11.9933, 7.630099], - [-11.9845, 7.627], - [-11.979699, 7.624699], - [-11.9761, 7.6243], - [-11.9722, 7.6251], - [-11.969899, 7.6267], - [-11.967399, 7.6294], - [-11.966, 7.6322], - [-11.9664, 7.635199], - [-11.9683, 7.637599], - [-11.971799, 7.639999], - [-11.972442, 7.64175], - [-11.97259, 7.641433], - [-11.972591, 7.641433], - [-11.972917, 7.642083], - [-11.974436, 7.642589], - [-11.974041, 7.643324], - [-11.973928, 7.64359], - [-11.977917, 7.646249], - [-11.98125, 7.64625], - [-11.98625, 7.651249], - [-11.992916, 7.649584], - [-11.99125, 7.657916], - [-11.993107, 7.660392], - [-11.997496, 7.657337], - [-11.999471, 7.655305], - [-12.005416, 7.66125], - [-12.005417, 7.667916], - [-12.014582, 7.672916], - [-12.015417, 7.673749], - [-12.027916, 7.66875], - [-12.030416, 7.672083], - [-12.030417, 7.67304], - [-12.035469, 7.673041], - [-12.036632, 7.675055], - [-12.036686, 7.675049], - [-12.036685, 7.675146], - [-12.036984, 7.675662], - [-12.040416, 7.672917], - [-12.04432, 7.672916] - ] - ], - "type": "Polygon" - }, - "id": 274, - "properties": { - "cc:admin:id": ["11"], - "cc:oBld:total": 1, - "cc:pop:fifteen-to-twenty-four": 343.82848804099785, - "cc:pop:grid3-total": 924.4428714996455, - "cc:pop:kontur-total": 1900.9395877738152, - "cc:pop:men": 892.7134005688762, - "cc:pop:sixty-plus": 143.18021780712692, - "cc:pop:total": 1872.5924946534683, - "cc:pop:under-five": 291.3354472591342, - "cc:pop:women": 979.879094084592, - "cc:pop:women-fiften-to-forty-nine": 458.0566785208714, - "cc:pop:wp-total": 1476.7481176884028, - "cc:pop:wp-total-UN": 1716.2838547105823, - "cc:id": "274", - "cc:Name": "Lawana MCHP", - "cc:site": [-12.0149, 7.6424], - "user:parentName": "Kpanda Kemoh", - "user:code": "OU_197426", - "user:orgUnitId": "X7ZVgRPt31q", - "user:level": "4", - "user:parentId": "aWQTfvgPA5v" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.777917, 9.523299], - [-11.777916, 9.522083], - [-11.771249, 9.518749], - [-11.768301, 9.513345], - [-11.768302, 9.513344], - [-11.773034, 9.513343], - [-11.77694, 9.506578], - [-11.777325, 9.506577], - [-11.774582, 9.504583], - [-11.767082, 9.507082], - [-11.764583, 9.502082], - [-11.764583, 9.49625], - [-11.763749, 9.494583], - [-11.75125, 9.494582], - [-11.754582, 9.482917], - [-11.750094, 9.482418], - [-11.750707, 9.481354], - [-11.746802, 9.474589], - [-11.750707, 9.467822], - [-11.750142, 9.466843], - [-11.74125, 9.46625], - [-11.741249, 9.467083], - [-11.732269, 9.469328], - [-11.732267, 9.469327], - [-11.732277, 9.469243], - [-11.732255, 9.469158], - [-11.724582, 9.47125], - [-11.723749, 9.471249], - [-11.722083, 9.46875], - [-11.722917, 9.457083], - [-11.725054, 9.455372], - [-11.724725, 9.454801], - [-11.72863, 9.448035], - [-11.727083, 9.445353], - [-11.727082, 9.440417], - [-11.723749, 9.438749], - [-11.720417, 9.432083], - [-11.719583, 9.431249], - [-11.719582, 9.427635], - [-11.715436, 9.433371], - [-11.714965, 9.434711], - [-11.713711, 9.43699], - [-11.71317, 9.437441], - [-11.71306, 9.437495], - [-11.713059, 9.437494], - [-11.714711, 9.434585], - [-11.714745, 9.434076], - [-11.712082, 9.42875], - [-11.704797, 9.42875], - [-11.703999, 9.429299], - [-11.7018, 9.429999], - [-11.6989, 9.430299], - [-11.688199, 9.4304], - [-11.684699, 9.4314], - [-11.6772, 9.435099], - [-11.673599, 9.438], - [-11.6688, 9.442699], - [-11.665399, 9.4465], - [-11.6635, 9.4502], - [-11.6628, 9.457099], - [-11.6621, 9.459699], - [-11.6599, 9.463099], - [-11.656099, 9.4664], - [-11.6515, 9.4687], - [-11.6478, 9.4726], - [-11.6462, 9.4786], - [-11.6472, 9.481299], - [-11.6508, 9.4857], - [-11.655099, 9.494099], - [-11.6565, 9.5], - [-11.6574, 9.5022], - [-11.659, 9.505], - [-11.661099, 9.509299], - [-11.6637, 9.5123], - [-11.6675, 9.5161], - [-11.678299, 9.526599], - [-11.681299, 9.530399], - [-11.6823, 9.5335], - [-11.682899, 9.539299], - [-11.683699, 9.542499], - [-11.687699, 9.550199], - [-11.690199, 9.553099], - [-11.692699, 9.555299], - [-11.696899, 9.557399], - [-11.7024, 9.556699], - [-11.7049, 9.555999], - [-11.7102, 9.553799], - [-11.7161, 9.552299], - [-11.720499, 9.5501], - [-11.7236, 9.548799], - [-11.727899, 9.5464], - [-11.7311, 9.544999], - [-11.7354, 9.542599], - [-11.7385, 9.541299], - [-11.742799, 9.5389], - [-11.746699, 9.537], - [-11.752899, 9.5323], - [-11.7571, 9.530099], - [-11.7614, 9.527599], - [-11.7645, 9.526299], - [-11.768099, 9.5245], - [-11.770699, 9.5236], - [-11.7735, 9.5233], - [-11.777917, 9.523299] - ] - ], - "type": "Polygon" - }, - "id": 275, - "properties": { - "cc:admin:id": ["52"], - "cc:oBld:total": 157, - "cc:pop:fifteen-to-twenty-four": 521.6871028278765, - "cc:pop:grid3-total": 2649.4268285448284, - "cc:pop:kontur-total": 2767.633025297398, - "cc:pop:men": 1261.3497035577873, - "cc:pop:sixty-plus": 168.78685076046136, - "cc:pop:total": 2801.036855518924, - "cc:pop:under-five": 439.7762002653937, - "cc:pop:women": 1539.6871519611368, - "cc:pop:women-fiften-to-forty-nine": 747.768160178831, - "cc:pop:wp-total": 2554.3689102900425, - "cc:pop:wp-total-UN": 2956.461339745299, - "cc:id": "275", - "cc:Name": "Lengekoro MCHP", - "cc:site": [-11.6759, 9.4663], - "user:parentName": "Diang", - "user:code": "OU_226266", - "user:orgUnitId": "rs87nYgwbKv", - "user:level": "4", - "user:parentId": "Lt8U7GVWvSR" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.755417, 8.071903], - [-10.755416, 8.064584], - [-10.750417, 8.05875], - [-10.750416, 8.057917], - [-10.749583, 8.057083], - [-10.749582, 8.052917], - [-10.748749, 8.052916], - [-10.742008, 8.049171], - [-10.741417, 8.05036], - [-10.741416, 8.05036], - [-10.739583, 8.047916], - [-10.739583, 8.040417], - [-10.746249, 8.03375], - [-10.747082, 8.03125], - [-10.748749, 8.031249], - [-10.752916, 8.01875], - [-10.747082, 8.017084], - [-10.742082, 8.01875], - [-10.739263, 8.021007], - [-10.739175, 8.021528], - [-10.738583, 8.022966], - [-10.737772, 8.02396], - [-10.73767, 8.024043], - [-10.737083, 8.023749], - [-10.73625, 8.022916], - [-10.737916, 8.018749], - [-10.737916, 8.012917], - [-10.732916, 8.01125], - [-10.72625, 8.012916], - [-10.725416, 8.009584], - [-10.71375, 8.008749], - [-10.714583, 8.006249], - [-10.719582, 8.003749], - [-10.717082, 8.002084], - [-10.710968, 8.002084], - [-10.710875, 8.002276], - [-10.709553, 8.003402], - [-10.70887, 8.003714], - [-10.70689, 8.004451], - [-10.706249, 8.00125], - [-10.702082, 7.999583], - [-10.700416, 7.997084], - [-10.699582, 7.997083], - [-10.697916, 7.992917], - [-10.69375, 7.992916], - [-10.69375, 7.99125], - [-10.694582, 7.98875], - [-10.696249, 7.987083], - [-10.696249, 7.98375], - [-10.695416, 7.982084], - [-10.68875, 7.988749], - [-10.687903, 7.988468], - [-10.687999, 7.997799], - [-10.688199, 8.002899], - [-10.688699, 8.006799], - [-10.691, 8.0122], - [-10.6918, 8.0156], - [-10.692, 8.0192], - [-10.695199, 8.023399], - [-10.6971, 8.026799], - [-10.700399, 8.026999], - [-10.702999, 8.027599], - [-10.708299, 8.029799], - [-10.7134, 8.031], - [-10.722599, 8.035199], - [-10.725899, 8.037799], - [-10.729499, 8.041299], - [-10.731799, 8.044099], - [-10.7349, 8.0494], - [-10.7388, 8.0545], - [-10.7401, 8.0569], - [-10.741699, 8.062699], - [-10.7429, 8.064899], - [-10.745, 8.0668], - [-10.749099, 8.068799], - [-10.752699, 8.070799], - [-10.755417, 8.071903] - ] - ], - "type": "Polygon" - }, - "id": 276, - "properties": { - "cc:admin:id": ["90"], - "cc:oBld:total": 173, - "cc:pop:fifteen-to-twenty-four": 432.0371286989186, - "cc:pop:grid3-total": 783.612395105558, - "cc:pop:kontur-total": 3371.029790808892, - "cc:pop:men": 1056.548112960453, - "cc:pop:sixty-plus": 144.13397697218372, - "cc:pop:total": 2194.1822395027775, - "cc:pop:under-five": 359.152541321643, - "cc:pop:women": 1137.6341265423248, - "cc:pop:women-fiften-to-forty-nine": 587.9420217089224, - "cc:pop:wp-total": 1876.5966620105758, - "cc:pop:wp-total-UN": 2179.064573974701, - "cc:id": "276", - "cc:Name": "Levuma CHP", - "cc:site": [-10.7263, 8.0369], - "user:parentName": "Mandu", - "user:code": "OU_204911", - "user:orgUnitId": "Bf9R1R91mw4", - "user:level": "4", - "user:parentId": "yu4N82FFeLm" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.425924, 8.097507], - [-12.422018, 8.090741], - [-12.414206, 8.09074], - [-12.410299, 8.083976], - [-12.402487, 8.083976], - [-12.400733, 8.087013], - [-12.398536, 8.085854], - [-12.397289, 8.08492], - [-12.396672, 8.084116], - [-12.396189, 8.081741], - [-12.395806, 8.080903], - [-12.395671, 8.080903], - [-12.391766, 8.087667], - [-12.384473, 8.087668], - [-12.384472, 8.087666], - [-12.387082, 8.08375], - [-12.372917, 8.077084], - [-12.375416, 8.085415], - [-12.375415, 8.085416], - [-12.367916, 8.082916], - [-12.36375, 8.079584], - [-12.363749, 8.077084], - [-12.360417, 8.080416], - [-12.35875, 8.080417], - [-12.356155, 8.083658], - [-12.355483, 8.083179], - [-12.354424, 8.078562], - [-12.35273, 8.075757], - [-12.35125, 8.07625], - [-12.348749, 8.078749], - [-12.343749, 8.079584], - [-12.337917, 8.081249], - [-12.335417, 8.07875], - [-12.33375, 8.082916], - [-12.333524, 8.083097], - [-12.335846, 8.08712], - [-12.33194, 8.093885], - [-12.332055, 8.094085], - [-12.327082, 8.094584], - [-12.324583, 8.097084], - [-12.323749, 8.100417], - [-12.320417, 8.10375], - [-12.320416, 8.112083], - [-12.31875, 8.112917], - [-12.318749, 8.122083], - [-12.315416, 8.12375], - [-12.310417, 8.127917], - [-12.312082, 8.133749], - [-12.310869, 8.136784], - [-12.3121, 8.138299], - [-12.316, 8.1409], - [-12.3197, 8.1417], - [-12.327916, 8.141777], - [-12.327917, 8.135417], - [-12.331249, 8.135416], - [-12.332229, 8.127093], - [-12.336509, 8.127093], - [-12.336551, 8.1273], - [-12.336273, 8.128436], - [-12.336606, 8.130724], - [-12.336971, 8.13083], - [-12.337765, 8.13063], - [-12.339196, 8.131264], - [-12.339813, 8.131591], - [-12.340651, 8.132604], - [-12.342597, 8.133688], - [-12.34266, 8.133858], - [-12.344239, 8.133857], - [-12.345416, 8.132917], - [-12.345831, 8.131259], - [-12.345832, 8.131258], - [-12.348931, 8.136624], - [-12.356743, 8.136624], - [-12.359228, 8.13232], - [-12.35923, 8.132321], - [-12.359164, 8.132548], - [-12.366477, 8.132549], - [-12.370385, 8.139314], - [-12.378196, 8.139315], - [-12.382103, 8.146079], - [-12.386249, 8.146079], - [-12.38625, 8.142084], - [-12.397622, 8.142841], - [-12.396685, 8.141851], - [-12.396447, 8.141411], - [-12.396581, 8.140366], - [-12.397425, 8.138526], - [-12.397757, 8.138318], - [-12.397083, 8.132917], - [-12.399238, 8.130761], - [-12.39732, 8.129741], - [-12.397187, 8.129666], - [-12.400417, 8.127084], - [-12.406708, 8.127083], - [-12.403539, 8.121592], - [-12.404465, 8.1203], - [-12.400417, 8.116249], - [-12.40125, 8.104584], - [-12.407082, 8.100417], - [-12.410774, 8.100416], - [-12.411266, 8.100797], - [-12.41194, 8.101698], - [-12.411516, 8.102472], - [-12.411539, 8.103147], - [-12.412584, 8.10456], - [-12.413643, 8.105293], - [-12.414036, 8.106309], - [-12.41381, 8.107917], - [-12.413855, 8.108636], - [-12.413199, 8.110505], - [-12.413212, 8.111693], - [-12.412953, 8.112324], - [-12.411789, 8.113295], - [-12.41099, 8.113739], - [-12.409979, 8.115519], - [-12.409827, 8.115914], - [-12.410311, 8.115906], - [-12.410899, 8.11479], - [-12.411642, 8.11403], - [-12.413586, 8.112394], - [-12.413675, 8.111394], - [-12.413465, 8.110774], - [-12.413964, 8.10989], - [-12.414025, 8.109279], - [-12.414487, 8.108502], - [-12.41433, 8.10755], - [-12.414501, 8.10599], - [-12.414237, 8.105381], - [-12.41349, 8.104675], - [-12.412728, 8.10433], - [-12.411861, 8.103248], - [-12.411812, 8.10276], - [-12.412322, 8.10161], - [-12.412172, 8.101354], - [-12.411765, 8.101152], - [-12.411274, 8.100417], - [-12.417083, 8.100417], - [-12.421249, 8.103749], - [-12.42129, 8.104272], - [-12.422018, 8.104272], - [-12.425924, 8.097507] - ] - ], - "type": "Polygon" - }, - "id": 277, - "properties": { - "cc:admin:id": ["45"], - "cc:oBld:total": 40, - "cc:pop:fifteen-to-twenty-four": 204.26943562640048, - "cc:pop:grid3-total": 869.3803302144222, - "cc:pop:kontur-total": 1143.641394725114, - "cc:pop:men": 542.829711234235, - "cc:pop:sixty-plus": 78.9501871604398, - "cc:pop:total": 1141.8471594500759, - "cc:pop:under-five": 194.30088542081282, - "cc:pop:women": 599.0174482158408, - "cc:pop:women-fiften-to-forty-nine": 281.21958298170546, - "cc:pop:wp-total": 1486.1721154597333, - "cc:pop:wp-total-UN": 1721.1409312136184, - "cc:id": "277", - "cc:Name": "Levuma Kai MCHP", - "cc:site": [-12.372, 8.1168], - "user:parentName": "Kaiyamba", - "user:code": "OU_247065", - "user:orgUnitId": "BgOhMcH9bxq", - "user:level": "4", - "user:parentId": "USQdmvrHh1Q" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - [-11.684967, 7.337306], - [-11.6851, 7.336799], - [-11.685199, 7.331499], - [-11.6849, 7.3276], - [-11.6843, 7.3239], - [-11.681999, 7.318499], - [-11.681299, 7.315699], - [-11.680699, 7.310899], - [-11.68, 7.3082], - [-11.677999, 7.303599], - [-11.677299, 7.299999], - [-11.6769, 7.2932], - [-11.6761, 7.2896], - [-11.6738, 7.2842], - [-11.6722, 7.2784], - [-11.6702, 7.2739], - [-11.669499, 7.271099], - [-11.669199, 7.264999], - [-11.668899, 7.2275], - [-11.666299, 7.224699], - [-11.665299, 7.222399], - [-11.6646, 7.2169], - [-11.6637, 7.2144], - [-11.6618, 7.2107], - [-11.660399, 7.207499], - [-11.658199, 7.203099], - [-11.657399, 7.199399], - [-11.657199, 7.188299], - [-11.657, 7.1853], - [-11.6565, 7.1824], - [-11.654199, 7.176999], - [-11.6524, 7.1703], - [-11.6501, 7.166], - [-11.648799, 7.162799], - [-11.6464, 7.1585], - [-11.644899, 7.154399], - [-11.642799, 7.150699], - [-11.639099, 7.144399], - [-11.638199, 7.141899], - [-11.637199, 7.137699], - [-11.634899, 7.132399], - [-11.634099, 7.128899], - [-11.6339, 7.1253], - [-11.633999, 7.1216], - [-11.6347, 7.118199], - [-11.636899, 7.1138], - [-11.6382, 7.110599], - [-11.640599, 7.1064], - [-11.641999, 7.1033], - [-11.6435, 7.100999], - [-11.6469, 7.096699], - [-11.6503, 7.090599], - [-11.654799, 7.0848], - [-11.6573, 7.080199], - [-11.6612, 7.075099], - [-11.6624, 7.072799], - [-11.6643, 7.066099], - [-11.6657, 7.063799], - [-11.6691, 7.059499], - [-11.6702, 7.057599], - [-11.672699, 7.0511], - [-11.674499, 7.0485], - [-11.6707, 7.046299], - [-11.669599, 7.0451], - [-11.667599, 7.044599], - [-11.665399, 7.0426], - [-11.664, 7.042399], - [-11.662899, 7.0413], - [-11.6613, 7.0407], - [-11.660699, 7.0396], - [-11.6576, 7.0379], - [-11.657099, 7.0368], - [-11.6557, 7.036799], - [-11.655399, 7.036], - [-11.6535, 7.034899], - [-11.652099, 7.0329], - [-11.650999, 7.032899], - [-11.650099, 7.031], - [-11.6471, 7.028799], - [-11.646299, 7.0276], - [-11.644899, 7.027099], - [-11.6426, 7.0246], - [-11.642099, 7.024599], - [-11.640099, 7.0224], - [-11.6388, 7.0218], - [-11.638199, 7.020999], - [-11.6346, 7.0188], - [-11.633799, 7.0174], - [-11.631, 7.016799], - [-11.629899, 7.0149], - [-11.6282, 7.014299], - [-11.6271, 7.0132], - [-11.624, 7.0171], - [-11.623799, 7.018799], - [-11.6221, 7.0201], - [-11.6213, 7.021499], - [-11.619899, 7.022099], - [-11.6179, 7.0221], - [-11.617099, 7.022899], - [-11.6154, 7.0235], - [-11.613999, 7.0249], - [-11.6104, 7.0257], - [-11.6096, 7.0265], - [-11.6088, 7.029299], - [-11.6082, 7.0296], - [-11.608199, 7.031799], - [-11.6071, 7.031499], - [-11.6071, 7.030099], - [-11.608199, 7.028499], - [-11.6079, 7.027099], - [-11.6088, 7.025699], - [-11.610399, 7.0243], - [-11.612899, 7.023999], - [-11.6149, 7.022099], - [-11.6168, 7.021], - [-11.619899, 7.020399], - [-11.621499, 7.018999], - [-11.6218, 7.017899], - [-11.622899, 7.017099], - [-11.6229, 7.0154], - [-11.623999, 7.012899], - [-11.623999, 7.011], - [-11.620999, 7.0074], - [-11.6193, 7.007099], - [-11.618799, 7.0051], - [-11.617899, 7.004299], - [-11.617099, 7.0021], - [-11.615399, 7.000399], - [-11.614899, 6.9985], - [-11.6135, 6.996299], - [-11.6135, 6.9929], - [-11.613199, 6.9918], - [-11.611499, 6.991799], - [-11.6107, 6.9882], - [-11.611499, 6.987899], - [-11.611499, 6.9868], - [-11.609, 6.986499], - [-11.608999, 6.984], - [-11.6076, 6.983499], - [-11.607399, 6.9826], - [-11.605399, 6.981799], - [-11.602599, 6.9796], - [-11.6001, 6.9788], - [-11.599299, 6.9779], - [-11.5976, 6.977599], - [-11.5976, 6.976], - [-11.59734, 6.974963], - [-11.591901, 6.97281], - [-11.590612, 6.972101], - [-11.58875, 6.974584], - [-11.588749, 6.979583], - [-11.585883, 6.979584], - [-11.585664, 6.980263], - [-11.584067, 6.9815], - [-11.582569, 6.983106], - [-11.581227, 6.984104], - [-11.580015, 6.984647], - [-11.578092, 6.98523], - [-11.575416, 6.991249], - [-11.571629, 6.991882], - [-11.572, 6.9927], - [-11.5734, 7.001], - [-11.575599, 7.006499], - [-11.577499, 7.013199], - [-11.579099, 7.016799], - [-11.579899, 7.019699], - [-11.580699, 7.027999], - [-11.581399, 7.031799], - [-11.5835, 7.0363], - [-11.585299, 7.042999], - [-11.587599, 7.048299], - [-11.589199, 7.054099], - [-11.591499, 7.059599], - [-11.592099, 7.063399], - [-11.5922, 7.0665], - [-11.592499, 7.107599], - [-11.592799, 7.113699], - [-11.593599, 7.117499], - [-11.595599, 7.121899], - [-11.5963, 7.1248], - [-11.5967, 7.1298], - [-11.5967, 7.148499], - [-11.596999, 7.154599], - [-11.5978, 7.1584], - [-11.599899, 7.1628], - [-11.600399, 7.166299], - [-11.5999, 7.169699], - [-11.5977, 7.174999], - [-11.5972, 7.177899], - [-11.5971, 7.185099], - [-11.5973, 7.1881], - [-11.5978, 7.1911], - [-11.600099, 7.196499], - [-11.600799, 7.199199], - [-11.601399, 7.204099], - [-11.601999, 7.206799], - [-11.604, 7.2113], - [-11.606299, 7.218399], - [-11.610799, 7.224599], - [-11.6119, 7.2267], - [-11.6125, 7.229], - [-11.612699, 7.231999], - [-11.612799, 7.241099], - [-11.612999, 7.244999], - [-11.613999, 7.248699], - [-11.615899, 7.252199], - [-11.6173, 7.2554], - [-11.619799, 7.259599], - [-11.6212, 7.2628], - [-11.623499, 7.267099], - [-11.6241, 7.27], - [-11.625, 7.276699], - [-11.627599, 7.281999], - [-11.6289, 7.2851], - [-11.6312, 7.2896], - [-11.6319, 7.2932], - [-11.632399, 7.300899], - [-11.633399, 7.304499], - [-11.635299, 7.307999], - [-11.6367, 7.3112], - [-11.639, 7.3156], - [-11.639799, 7.319299], - [-11.639999, 7.322199], - [-11.640099, 7.330199], - [-11.64, 7.336199], - [-11.639599, 7.3391], - [-11.6373, 7.3456], - [-11.637499, 7.348499], - [-11.6394, 7.3537], - [-11.640099, 7.357399], - [-11.640499, 7.363199], - [-11.6411, 7.366599], - [-11.6422, 7.3686], - [-11.645499, 7.372899], - [-11.646899, 7.375199], - [-11.648, 7.378499], - [-11.6514, 7.377699], - [-11.659699, 7.3736], - [-11.662, 7.371899], - [-11.6662, 7.367899], - [-11.668099, 7.3657], - [-11.669599, 7.3633], - [-11.671, 7.360199], - [-11.673299, 7.3558], - [-11.6746, 7.352699], - [-11.678299, 7.3467], - [-11.681699, 7.3439], - [-11.683999, 7.340999], - [-11.684967, 7.337306] - ] - ], - [ - [ - [-11.620399, 6.9951], - [-11.619, 6.9943], - [-11.619, 6.997099], - [-11.6196, 6.997899], - [-11.620099, 6.997899], - [-11.620399, 6.9951] - ] - ] - ], - "type": "MultiPolygon" - }, - "id": 278, - "properties": { - "cc:admin:id": ["64"], - "cc:oBld:total": 153, - "cc:pop:fifteen-to-twenty-four": 3488.2328645575326, - "cc:pop:grid3-total": 12104.522373261927, - "cc:pop:kontur-total": 18952.042898282085, - "cc:pop:men": 8876.572845912633, - "cc:pop:sixty-plus": 1307.177420596082, - "cc:pop:total": 19095.612750924727, - "cc:pop:under-five": 3129.0866432881453, - "cc:pop:women": 10219.039905012085, - "cc:pop:women-fiften-to-forty-nine": 4816.378422505241, - "cc:pop:wp-total": 17377.05769077497, - "cc:pop:wp-total-UN": 20146.80544543008, - "cc:id": "278", - "cc:Name": "Liya MCHP", - "cc:site": [-11.6021, 6.989], - "user:parentName": "Kpaka", - "user:code": "OU_260442", - "user:orgUnitId": "tBRDdxfKbMx", - "user:level": "4", - "user:parentId": "zSNUViKdkk3" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.393034, 7.806693], - [-11.392499, 7.805699], - [-11.3897, 7.8025], - [-11.387, 7.8005], - [-11.3787, 7.7963], - [-11.374799, 7.794499], - [-11.3688, 7.7899], - [-11.363399, 7.786999], - [-11.360599, 7.784799], - [-11.3552, 7.7798], - [-11.352999, 7.778199], - [-11.345399, 7.774399], - [-11.342999, 7.773599], - [-11.337899, 7.772499], - [-11.3335, 7.7703], - [-11.330299, 7.768899], - [-11.3259, 7.7665], - [-11.322699, 7.765199], - [-11.3137, 7.7606], - [-11.308199, 7.755599], - [-11.305799, 7.752799], - [-11.3026, 7.7478], - [-11.3005, 7.754899], - [-11.2992, 7.758099], - [-11.2969, 7.762399], - [-11.295599, 7.7656], - [-11.2932, 7.769799], - [-11.291899, 7.773], - [-11.2897, 7.777399], - [-11.2886, 7.782499], - [-11.2878, 7.784899], - [-11.2839, 7.792799], - [-11.281299, 7.7959], - [-11.271, 7.806099], - [-11.268399, 7.8093], - [-11.2673, 7.811799], - [-11.2669, 7.814399], - [-11.2667, 7.820699], - [-11.2663, 7.824299], - [-11.264099, 7.8296], - [-11.263599, 7.8321], - [-11.2631, 7.837399], - [-11.2626, 7.839599], - [-11.261699, 7.8415], - [-11.258099, 7.8461], - [-11.2566, 7.848999], - [-11.255199, 7.854899], - [-11.2528, 7.858399], - [-11.251, 7.860099], - [-11.248199, 7.862], - [-11.244399, 7.8639], - [-11.241799, 7.8658], - [-11.238699, 7.8694], - [-11.234499, 7.878], - [-11.2338, 7.881299], - [-11.2362, 7.8847], - [-11.2372, 7.8871], - [-11.2386, 7.8921], - [-11.24, 7.8944], - [-11.2441, 7.8994], - [-11.248099, 7.907299], - [-11.2487, 7.9094], - [-11.249499, 7.915599], - [-11.25, 7.9182], - [-11.252299, 7.923499], - [-11.253299, 7.927799], - [-11.254099, 7.930199], - [-11.2577, 7.935999], - [-11.2647, 7.940099], - [-11.269899, 7.941299], - [-11.272299, 7.942099], - [-11.275999, 7.943999], - [-11.2791, 7.9453], - [-11.283599, 7.947499], - [-11.287199, 7.948199], - [-11.296249, 7.948368], - [-11.29625, 7.946249], - [-11.304582, 7.943749], - [-11.304583, 7.942917], - [-11.305416, 7.942083], - [-11.302798, 7.93292], - [-11.308028, 7.932919], - [-11.311935, 7.926154], - [-11.310738, 7.924082], - [-11.308757, 7.923751], - [-11.308604, 7.923835], - [-11.308486, 7.923942], - [-11.307442, 7.924632], - [-11.305298, 7.925198], - [-11.304713, 7.925564], - [-11.303778, 7.92602], - [-11.30235, 7.926416], - [-11.299895, 7.927848], - [-11.299877, 7.92669], - [-11.29911, 7.925698], - [-11.299003, 7.92514], - [-11.296802, 7.924122], - [-11.297268, 7.923389], - [-11.297828, 7.920605], - [-11.297711, 7.920055], - [-11.297865, 7.919906], - [-11.300416, 7.920416], - [-11.30125, 7.918749], - [-11.305415, 7.917084], - [-11.305417, 7.917085], - [-11.305417, 7.921249], - [-11.312916, 7.917084], - [-11.315416, 7.917916], - [-11.317083, 7.918749], - [-11.319582, 7.917916], - [-11.320417, 7.911249], - [-11.323749, 7.90625], - [-11.327082, 7.905416], - [-11.327082, 7.895417], - [-11.325417, 7.893749], - [-11.335416, 7.886249], - [-11.33375, 7.882916], - [-11.334526, 7.882529], - [-11.334843, 7.883116], - [-11.335075, 7.883499], - [-11.335718, 7.883719], - [-11.336534, 7.883479], - [-11.337257, 7.883117], - [-11.337741, 7.882484], - [-11.338559, 7.882275], - [-11.339953, 7.881659], - [-11.341005, 7.880923], - [-11.339529, 7.879961], - [-11.338863, 7.879492], - [-11.338565, 7.879289], - [-11.338335, 7.879127], - [-11.338455, 7.878847], - [-11.338601, 7.87858], - [-11.338747, 7.878381], - [-11.339302, 7.877337], - [-11.339581, 7.877236], - [-11.339724, 7.8769], - [-11.340184, 7.876388], - [-11.341448, 7.875705], - [-11.341548, 7.873491], - [-11.342409, 7.873018], - [-11.342227, 7.872409], - [-11.342026, 7.871083], - [-11.341516, 7.86989], - [-11.341268, 7.868515], - [-11.341053, 7.867147], - [-11.340627, 7.866068], - [-11.340451, 7.865236], - [-11.340453, 7.865235], - [-11.342917, 7.867083], - [-11.344582, 7.866249], - [-11.34625, 7.859583], - [-11.34625, 7.852084], - [-11.350416, 7.850416], - [-11.350416, 7.844584], - [-11.349584, 7.844584], - [-11.349583, 7.844582], - [-11.351249, 7.839584], - [-11.352916, 7.839583], - [-11.355416, 7.83625], - [-11.355417, 7.834583], - [-11.357916, 7.830416], - [-11.357917, 7.822916], - [-11.36125, 7.820417], - [-11.367917, 7.825416], - [-11.371249, 7.826249], - [-11.374582, 7.822916], - [-11.37375, 7.817084], - [-11.377082, 7.812084], - [-11.382082, 7.812916], - [-11.385788, 7.811063], - [-11.385255, 7.809754], - [-11.385308, 7.809307], - [-11.385336, 7.809291], - [-11.386726, 7.809242], - [-11.388318, 7.808469], - [-11.392324, 7.80726], - [-11.393034, 7.806693] - ] - ], - "type": "Polygon" - }, - "id": 279, - "properties": { - "cc:admin:id": ["124"], - "cc:oBld:total": 1850, - "cc:pop:fifteen-to-twenty-four": 4001.053653402493, - "cc:pop:grid3-total": 11017.507211352226, - "cc:pop:kontur-total": 19403.90008133428, - "cc:pop:men": 10166.861913940942, - "cc:pop:sixty-plus": 1244.243920723912, - "cc:pop:total": 20792.83052418049, - "cc:pop:under-five": 3346.841617227699, - "cc:pop:women": 10625.968610239544, - "cc:pop:women-fiften-to-forty-nine": 5316.720854774191, - "cc:pop:wp-total": 18588.655656629657, - "cc:pop:wp-total-UN": 21533.482895959547, - "cc:id": "279", - "cc:Name": "London (Blama) MCHP", - "cc:site": [-11.3401, 7.8679], - "user:parentName": "Small Bo", - "user:code": "OU_222620", - "user:orgUnitId": "hIpcmjLrDDW", - "user:level": "4", - "user:parentId": "vzup1f6ynON" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.217057, 8.438212], - [-13.216688, 8.43738], - [-13.216341, 8.437627], - [-13.215622, 8.436689], - [-13.215623, 8.436688], - [-13.216291, 8.436413], - [-13.215944, 8.435855], - [-13.215255, 8.435393], - [-13.214861, 8.435077], - [-13.213594, 8.434171], - [-13.213419, 8.433837], - [-13.212465, 8.433314], - [-13.211937, 8.433209], - [-13.211021, 8.433079], - [-13.210477, 8.432828], - [-13.190539, 8.465418], - [-13.190639, 8.465387], - [-13.191554, 8.465397], - [-13.192407, 8.465372], - [-13.192415, 8.464786], - [-13.193342, 8.46466], - [-13.194314, 8.464624], - [-13.19432, 8.465335], - [-13.194373, 8.466084], - [-13.195249, 8.466049], - [-13.196099, 8.466008], - [-13.196112, 8.466832], - [-13.19685, 8.466779], - [-13.196956, 8.467292], - [-13.196154, 8.467975], - [-13.196131, 8.468282], - [-13.1967, 8.468294], - [-13.197028, 8.467923], - [-13.197395, 8.467995], - [-13.197782, 8.468478], - [-13.197862, 8.468566], - [-13.198359, 8.468967], - [-13.199127, 8.469114], - [-13.202412, 8.469113], - [-13.206319, 8.462348], - [-13.211847, 8.462347], - [-13.212201, 8.461963], - [-13.212017, 8.461525], - [-13.212206, 8.461219], - [-13.212796, 8.460892], - [-13.213416, 8.460111], - [-13.213909, 8.458538], - [-13.214303, 8.458439], - [-13.214353, 8.457911], - [-13.214872, 8.457563], - [-13.214944, 8.457081], - [-13.214782, 8.456392], - [-13.21507, 8.45625], - [-13.215164, 8.455919], - [-13.214921, 8.455044], - [-13.214551, 8.454436], - [-13.213829, 8.454083], - [-13.213442, 8.453466], - [-13.213443, 8.453464], - [-13.214728, 8.453323], - [-13.214022, 8.452679], - [-13.214005, 8.452208], - [-13.214319, 8.452043], - [-13.21413, 8.451633], - [-13.213927, 8.451164], - [-13.21372, 8.450745], - [-13.213492, 8.450373], - [-13.213535, 8.450347], - [-13.214162, 8.450033], - [-13.214348, 8.450479], - [-13.214936, 8.450189], - [-13.215394, 8.450034], - [-13.215367, 8.44957], - [-13.216035, 8.449054], - [-13.216268, 8.448702], - [-13.216336, 8.446649], - [-13.21647, 8.44538], - [-13.216477, 8.445229], - [-13.215326, 8.445233], - [-13.214431, 8.444557], - [-13.214068, 8.442812], - [-13.213712, 8.442119], - [-13.213746, 8.441543], - [-13.213771, 8.441076], - [-13.2143, 8.440196], - [-13.214854, 8.439638], - [-13.21583, 8.438368], - [-13.216599, 8.438287], - [-13.217057, 8.438212] - ] - ], - "type": "Polygon" - }, - "id": 280, - "properties": { - "cc:admin:id": ["26"], - "cc:oBld:total": 2059, - "cc:pop:fifteen-to-twenty-four": 6309.586572990715, - "cc:pop:grid3-total": 16245.572282609113, - "cc:pop:kontur-total": 34068.11941253413, - "cc:pop:men": 13704.207094584066, - "cc:pop:sixty-plus": 2137.7774494815035, - "cc:pop:total": 27620.118036044867, - "cc:pop:under-five": 3177.6252793503986, - "cc:pop:women": 13915.910941460803, - "cc:pop:women-fiften-to-forty-nine": 7431.735965078745, - "cc:pop:wp-total": 15777.94309279763, - "cc:pop:wp-total-UN": 18292.736620191838, - "cc:id": "280", - "cc:Name": "Looking Town MCHP", - "cc:site": [-13.1963, 8.4619], - "user:parentName": "Freetown", - "user:code": "OU_278344", - "user:orgUnitId": "Z7UAnjpK74g", - "user:level": "4", - "user:parentId": "C9uduqDZr9d" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.271599, 7.6283], - [-11.269099, 7.6255], - [-11.266399, 7.624399], - [-11.263499, 7.6242], - [-11.2529, 7.624299], - [-11.2491, 7.6241], - [-11.246299, 7.623499], - [-11.2419, 7.6215], - [-11.239299, 7.6211], - [-11.2359, 7.6213], - [-11.230399, 7.623399], - [-11.2275, 7.6234], - [-11.223099, 7.621599], - [-11.217099, 7.620299], - [-11.211, 7.6196], - [-11.2052, 7.623199], - [-11.201399, 7.6251], - [-11.1971, 7.627499], - [-11.193899, 7.6289], - [-11.1903, 7.630799], - [-11.1868, 7.631699], - [-11.182099, 7.632], - [-11.1743, 7.632], - [-11.171399, 7.631799], - [-11.1677, 7.6311], - [-11.1633, 7.6289], - [-11.160099, 7.627499], - [-11.1555, 7.625], - [-11.1503, 7.630799], - [-11.149413, 7.632751], - [-11.15003, 7.633822], - [-11.148978, 7.635644], - [-11.15125, 7.637917], - [-11.152917, 7.643749], - [-11.155417, 7.64125], - [-11.165416, 7.64125], - [-11.169582, 7.644584], - [-11.170187, 7.653036], - [-11.173468, 7.647354], - [-11.173975, 7.647354], - [-11.177917, 7.652083], - [-11.180416, 7.652916], - [-11.177083, 7.657917], - [-11.177083, 7.658359], - [-11.178968, 7.661623], - [-11.18678, 7.661623], - [-11.18809, 7.659356], - [-11.188399, 7.656569], - [-11.188153, 7.654908], - [-11.189329, 7.654908], - [-11.193234, 7.661673], - [-11.189329, 7.668439], - [-11.191432, 7.672083], - [-11.192916, 7.672083], - [-11.194069, 7.670932], - [-11.196906, 7.675844], - [-11.204718, 7.675845], - [-11.208625, 7.682609], - [-11.210722, 7.68261], - [-11.210417, 7.682917], - [-11.210417, 7.692083], - [-11.215416, 7.697083], - [-11.216249, 7.69875], - [-11.215507, 7.709151], - [-11.217711, 7.709152], - [-11.218451, 7.710432], - [-11.219583, 7.709584], - [-11.227052, 7.717052], - [-11.225465, 7.71883], - [-11.22174, 7.725726], - [-11.221711, 7.725847], - [-11.230416, 7.728749], - [-11.232082, 7.728749], - [-11.234582, 7.726249], - [-11.23487, 7.725243], - [-11.235142, 7.725711], - [-11.235966, 7.723746], - [-11.23892, 7.721562], - [-11.239339, 7.720824], - [-11.239341, 7.720824], - [-11.236301, 7.730952], - [-11.236383, 7.731175], - [-11.236136, 7.731498], - [-11.235228, 7.734526], - [-11.235631, 7.734726], - [-11.234911, 7.735983], - [-11.23468, 7.737639], - [-11.23419, 7.737983], - [-11.23396, 7.738749], - [-11.236023, 7.73875], - [-11.234515, 7.741394], - [-11.234353, 7.744423], - [-11.235779, 7.744869], - [-11.234231, 7.750806], - [-11.235412, 7.751534], - [-11.235321, 7.754706], - [-11.235106, 7.755369], - [-11.232614, 7.759415], - [-11.232884, 7.760363], - [-11.233393, 7.761302], - [-11.240699, 7.7539], - [-11.2426, 7.751099], - [-11.2435, 7.747899], - [-11.243699, 7.7441], - [-11.2433, 7.724399], - [-11.2434, 7.721499], - [-11.243999, 7.7179], - [-11.246, 7.713299], - [-11.2475, 7.707499], - [-11.2487, 7.705099], - [-11.2525, 7.700099], - [-11.2537, 7.697599], - [-11.254199, 7.6948], - [-11.254299, 7.689899], - [-11.2542, 7.678], - [-11.2539, 7.6731], - [-11.2531, 7.6695], - [-11.251, 7.665], - [-11.2502, 7.6615], - [-11.2501, 7.6579], - [-11.2505, 7.655299], - [-11.2518, 7.652199], - [-11.2547, 7.6479], - [-11.259, 7.644699], - [-11.263299, 7.6405], - [-11.2661, 7.6367], - [-11.269199, 7.634699], - [-11.271399, 7.6319], - [-11.271599, 7.6283] - ] - ], - "type": "Polygon" - }, - "id": 281, - "properties": { - "cc:admin:id": ["15"], - "cc:oBld:total": 1178, - "cc:pop:fifteen-to-twenty-four": 918.3067318473269, - "cc:pop:grid3-total": 4660.979691124545, - "cc:pop:kontur-total": 5515.430993782421, - "cc:pop:men": 2232.422073659395, - "cc:pop:sixty-plus": 287.1293922864415, - "cc:pop:total": 4681.815858393131, - "cc:pop:under-five": 746.2827582101052, - "cc:pop:women": 2449.393784733735, - "cc:pop:women-fiften-to-forty-nine": 1236.9771262786364, - "cc:pop:wp-total": 3946.781829307455, - "cc:pop:wp-total-UN": 4571.493410337899, - "cc:id": "281", - "cc:Name": "Loppa CHP", - "cc:site": [-11.2439, 7.6746], - "user:parentName": "Dama", - "user:code": "OU_222732", - "user:orgUnitId": "IW3guWF3uvF", - "user:level": "4", - "user:parentId": "myQ4q1W6B4y" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.046591, 8.888906], - [-12.0463, 8.8822], - [-12.045699, 8.879899], - [-12.044599, 8.877799], - [-12.0396, 8.8713], - [-12.038889, 8.869833], - [-12.038437, 8.870706], - [-12.037529, 8.87039], - [-12.037324, 8.871127], - [-12.037152, 8.871834], - [-12.036849, 8.872332], - [-12.036678, 8.872174], - [-12.036623, 8.872966], - [-12.03757, 8.874852], - [-12.037471, 8.874881], - [-12.037058, 8.874769], - [-12.036561, 8.874339], - [-12.036427, 8.87475], - [-12.03651, 8.875376], - [-12.036505, 8.875647], - [-12.036613, 8.876318], - [-12.035865, 8.876295], - [-12.034885, 8.876288], - [-12.035129, 8.878444], - [-12.035429, 8.87904], - [-12.034797, 8.879248], - [-12.034088, 8.879399], - [-12.033924, 8.879194], - [-12.033302, 8.879237], - [-12.033395, 8.879516], - [-12.033678, 8.880169], - [-12.033968, 8.880876], - [-12.034247, 8.881354], - [-12.032827, 8.881729], - [-12.032839, 8.882415], - [-12.033063, 8.883025], - [-12.033062, 8.883027], - [-12.031861, 8.883202], - [-12.031079, 8.882817], - [-12.030329, 8.883207], - [-12.030809, 8.883541], - [-12.031525, 8.884726], - [-12.03166, 8.884925], - [-12.031397, 8.885144], - [-12.03102, 8.885109], - [-12.031135, 8.885379], - [-12.030903, 8.885523], - [-12.030086, 8.885703], - [-12.030069, 8.886041], - [-12.029931, 8.886059], - [-12.029889, 8.885772], - [-12.028954, 8.885596], - [-12.027968, 8.885904], - [-12.027603, 8.886603], - [-12.027432, 8.886566], - [-12.027195, 8.88603], - [-12.026646, 8.886033], - [-12.02644, 8.886191], - [-12.026253, 8.886726], - [-12.026281, 8.887143], - [-12.02628, 8.887143], - [-12.02611, 8.887036], - [-12.026422, 8.887793], - [-12.027001, 8.887401], - [-12.028778, 8.88736], - [-12.030377, 8.888608], - [-12.030792, 8.888163], - [-12.031089, 8.88853], - [-12.031256, 8.888661], - [-12.031471, 8.88882], - [-12.032396, 8.889235], - [-12.033071, 8.889283], - [-12.033354, 8.889262], - [-12.033929, 8.889138], - [-12.03466, 8.888894], - [-12.035338, 8.888664], - [-12.036026, 8.888303], - [-12.036606, 8.887932], - [-12.036955, 8.888387], - [-12.037337, 8.888881], - [-12.039409, 8.88776], - [-12.039719, 8.887781], - [-12.039984, 8.888312], - [-12.04041, 8.888431], - [-12.04038, 8.889575], - [-12.04071, 8.890087], - [-12.041327, 8.890417], - [-12.042193, 8.889777], - [-12.043201, 8.890157], - [-12.042831, 8.890837], - [-12.041714, 8.891889], - [-12.042982, 8.892466], - [-12.043556, 8.892721], - [-12.043337, 8.893178], - [-12.044766, 8.894307], - [-12.044799, 8.89434], - [-12.044943, 8.894857], - [-12.044805, 8.895335], - [-12.044842, 8.895545], - [-12.045351, 8.895494], - [-12.045586, 8.896165], - [-12.045483, 8.896876], - [-12.045264, 8.897004], - [-12.045476, 8.89714], - [-12.045228, 8.897424], - [-12.045192, 8.898236], - [-12.044562, 8.899368], - [-12.044357, 8.899455], - [-12.044295, 8.899815], - [-12.043981, 8.900051], - [-12.044369, 8.900179], - [-12.044511, 8.899946], - [-12.044711, 8.900269], - [-12.044813, 8.899791], - [-12.044537, 8.899548], - [-12.045031, 8.899206], - [-12.045286, 8.89821], - [-12.045214, 8.898043], - [-12.045749, 8.896594], - [-12.04635, 8.896074], - [-12.046298, 8.895853], - [-12.045941, 8.895791], - [-12.045811, 8.895459], - [-12.045914, 8.895047], - [-12.046099, 8.894646], - [-12.046135, 8.894573], - [-12.046263, 8.894654], - [-12.04648, 8.894806], - [-12.046599, 8.8891], - [-12.046591, 8.888906] - ] - ], - "type": "Polygon" - }, - "id": 282, - "properties": { - "cc:admin:id": ["83"], - "cc:oBld:total": 3652, - "cc:pop:fifteen-to-twenty-four": 2727.063138237814, - "cc:pop:grid3-total": 38126.433943898795, - "cc:pop:kontur-total": 9870.011442674446, - "cc:pop:men": 7116.939907695677, - "cc:pop:sixty-plus": 941.6057496838417, - "cc:pop:total": 14737.044987661293, - "cc:pop:under-five": 2364.112433594603, - "cc:pop:women": 7620.105079965614, - "cc:pop:women-fiften-to-forty-nine": 3701.4421870849237, - "cc:pop:wp-total": 21381.393722534503, - "cc:pop:wp-total-UN": 24783.75599929462, - "cc:id": "282", - "cc:Name": "Loreto Clinic", - "cc:site": [-12.0437, 8.8868], - "user:parentName": "Bombali Sebora", - "user:code": "OU_193213", - "user:orgUnitId": "cgqkFdShPzg", - "user:level": "4", - "user:parentId": "KKkLOTpMXGV" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.021249, 8.174583], - [-11.017082, 8.171249], - [-11.01625, 8.168749], - [-11.016249, 8.163383], - [-11.0158, 8.163336], - [-11.015047, 8.16375], - [-11.008633, 8.16375], - [-11.004727, 8.170515], - [-10.999632, 8.170515], - [-10.997083, 8.165416], - [-10.997916, 8.159584], - [-10.99125, 8.155417], - [-10.989163, 8.151662], - [-10.989164, 8.151661], - [-10.994295, 8.15166], - [-10.998201, 8.144895], - [-10.997628, 8.143903], - [-10.996249, 8.143749], - [-10.994583, 8.137917], - [-10.996249, 8.136249], - [-10.996249, 8.125417], - [-10.992917, 8.125416], - [-10.991249, 8.12375], - [-10.988749, 8.12375], - [-10.981782, 8.127234], - [-10.981999, 8.1394], - [-10.9818, 8.142499], - [-10.9813, 8.144999], - [-10.979899, 8.1477], - [-10.9774, 8.150499], - [-10.974599, 8.152399], - [-10.971099, 8.1533], - [-10.9646, 8.1533], - [-10.9598, 8.1524], - [-10.955399, 8.150099], - [-10.948599, 8.1472], - [-10.946399, 8.1474], - [-10.9402, 8.150299], - [-10.9379, 8.1531], - [-10.9377, 8.156299], - [-10.9397, 8.159299], - [-10.9461, 8.1627], - [-10.9507, 8.1664], - [-10.953299, 8.169099], - [-10.954899, 8.171299], - [-10.955699, 8.173399], - [-10.955999, 8.175599], - [-10.9554, 8.178999], - [-10.951599, 8.1865], - [-10.950199, 8.1887], - [-10.946399, 8.1934], - [-10.942, 8.201899], - [-10.940199, 8.2059], - [-10.937999, 8.2087], - [-10.9348, 8.211899], - [-10.9314, 8.214899], - [-10.927799, 8.2176], - [-10.926699, 8.2196], - [-10.9254, 8.223599], - [-10.923808, 8.227083], - [-10.9218, 8.230599], - [-10.9273, 8.2343], - [-10.931999, 8.239499], - [-10.935699, 8.242699], - [-10.946799, 8.248999], - [-10.9495, 8.2516], - [-10.952699, 8.257699], - [-10.953999, 8.262199], - [-10.9547, 8.2659], - [-10.955499, 8.273699], - [-10.956599, 8.277399], - [-10.9587, 8.281], - [-10.9638, 8.2876], - [-10.966699, 8.292699], - [-10.968099, 8.295999], - [-10.968999, 8.3003], - [-10.9686, 8.304799], - [-10.967888, 8.308066], - [-10.973354, 8.308066], - [-10.97726, 8.301301], - [-10.985072, 8.3013], - [-10.988979, 8.294535], - [-10.99324, 8.294534], - [-10.993749, 8.287917], - [-10.992083, 8.285416], - [-10.999858, 8.281529], - [-11.000402, 8.281523], - [-11.001215, 8.280983], - [-11.002218, 8.280765], - [-11.003266, 8.28074], - [-11.004204, 8.280912], - [-11.00499, 8.281088], - [-11.005729, 8.280853], - [-11.006652, 8.280853], - [-11.007157, 8.280261], - [-11.007246, 8.279612], - [-11.008224, 8.277525], - [-11.008255, 8.275315], - [-11.008471, 8.273747], - [-11.008375, 8.272582], - [-11.00807, 8.271977], - [-11.006266, 8.270629], - [-11.005219, 8.268525], - [-11.00507, 8.266868], - [-11.004626, 8.265146], - [-11.003981, 8.263722], - [-11.003646, 8.26237], - [-11.006249, 8.260416], - [-11.00625, 8.254584], - [-11.007916, 8.25125], - [-11.004583, 8.251249], - [-11.004583, 8.244584], - [-11.007225, 8.244584], - [-11.007774, 8.246575], - [-11.008408, 8.246772], - [-11.008449, 8.246715], - [-11.00761, 8.243359], - [-11.007935, 8.24301], - [-11.00837, 8.242199], - [-11.00813, 8.241795], - [-11.007204, 8.241818], - [-11.006683, 8.24125], - [-11.007083, 8.241249], - [-11.008749, 8.240416], - [-11.010416, 8.23375], - [-11.017916, 8.233749], - [-11.018749, 8.230417], - [-11.016249, 8.227084], - [-11.009743, 8.223468], - [-11.009861, 8.223082], - [-11.010492, 8.222784], - [-11.011701, 8.222854], - [-11.011942, 8.222745], - [-11.012723, 8.221621], - [-11.012998, 8.220422], - [-11.015962, 8.220384], - [-11.017293, 8.218977], - [-11.017409, 8.218395], - [-11.016717, 8.218508], - [-11.014827, 8.217137], - [-11.013635, 8.215074], - [-11.012583, 8.214388], - [-11.010783, 8.212555], - [-11.010253, 8.212487], - [-11.009932, 8.212249], - [-11.009776, 8.211692], - [-11.01001, 8.211183], - [-11.009065, 8.209214], - [-11.008937, 8.208308], - [-11.008591, 8.20754], - [-11.010416, 8.207084], - [-11.01125, 8.208749], - [-11.014582, 8.204584], - [-11.010417, 8.204583], - [-11.007917, 8.202917], - [-11.007916, 8.19625], - [-11.006249, 8.196249], - [-11.002083, 8.190416], - [-11.002916, 8.184584], - [-11.004582, 8.179584], - [-11.007082, 8.177084], - [-11.012917, 8.175416], - [-11.021249, 8.174583] - ] - ], - "type": "Polygon" - }, - "id": 283, - "properties": { - "cc:admin:id": ["75"], - "cc:oBld:total": 1549, - "cc:pop:fifteen-to-twenty-four": 3048.235341183665, - "cc:pop:grid3-total": 9074.012806882663, - "cc:pop:kontur-total": 16116.883952251968, - "cc:pop:men": 8861.870643773598, - "cc:pop:sixty-plus": 926.6156050734678, - "cc:pop:total": 15820.448305021377, - "cc:pop:under-five": 2446.608058757685, - "cc:pop:women": 6958.577661247775, - "cc:pop:women-fiften-to-forty-nine": 3468.4146401241383, - "cc:pop:wp-total": 13242.501694335997, - "cc:pop:wp-total-UN": 15366.112942813586, - "cc:id": "283", - "cc:Name": "Lowoma CHC", - "cc:site": [-10.9907, 8.2187], - "user:parentName": "Lower Bambara", - "user:code": "OU_222656", - "user:orgUnitId": "IlMQTFvcq9r", - "user:level": "4", - "user:parentId": "hdEuw2ugkVF" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.278727, 8.449305], - [-13.278205, 8.44928], - [-13.278013, 8.449168], - [-13.277366, 8.448397], - [-13.276891, 8.44793], - [-13.275651, 8.448583], - [-13.275403, 8.448037], - [-13.274697, 8.447512], - [-13.274423, 8.447577], - [-13.273881, 8.448433], - [-13.273339, 8.448105], - [-13.272941, 8.448067], - [-13.272973, 8.447422], - [-13.273047, 8.446832], - [-13.273085, 8.446433], - [-13.273083, 8.446308], - [-13.273087, 8.446072], - [-13.272967, 8.445394], - [-13.271278, 8.445558], - [-13.270792, 8.443435], - [-13.270272, 8.443501], - [-13.270126, 8.443199], - [-13.26917, 8.443271], - [-13.268963, 8.44381], - [-13.268572, 8.443537], - [-13.26777, 8.442841], - [-13.267399, 8.442558], - [-13.267283, 8.441848], - [-13.267544, 8.44164], - [-13.267889, 8.441299], - [-13.268621, 8.440948], - [-13.268135, 8.440423], - [-13.267415, 8.440627], - [-13.266942, 8.440668], - [-13.266876, 8.440496], - [-13.266619, 8.439915], - [-13.265756, 8.440401], - [-13.264123, 8.438573], - [-13.264123, 8.438571], - [-13.26437, 8.43854], - [-13.264975, 8.437964], - [-13.265806, 8.437814], - [-13.267094, 8.437887], - [-13.267246, 8.436878], - [-13.265887, 8.436499], - [-13.265669, 8.436405], - [-13.265499, 8.43638], - [-13.26506, 8.4362], - [-13.263987, 8.436025], - [-13.262814, 8.435069], - [-13.26277, 8.434117], - [-13.262562, 8.433878], - [-13.261483, 8.433468], - [-13.261371, 8.433229], - [-13.261499, 8.432832], - [-13.260422, 8.432742], - [-13.25996, 8.432963], - [-13.259652, 8.432807], - [-13.259583, 8.432801], - [-13.259582, 8.432084], - [-13.257083, 8.432084], - [-13.257386, 8.433295], - [-13.256391, 8.43502], - [-13.255032, 8.435021], - [-13.255258, 8.435301], - [-13.255778, 8.436904], - [-13.256203, 8.438305], - [-13.257026, 8.4389], - [-13.257271, 8.439649], - [-13.257764, 8.440269], - [-13.257976, 8.440849], - [-13.257941, 8.441361], - [-13.257896, 8.441437], - [-13.257813, 8.441564], - [-13.257928, 8.441738], - [-13.257565, 8.442039], - [-13.257488, 8.442423], - [-13.256981, 8.442748], - [-13.2565, 8.441573], - [-13.256294, 8.441438], - [-13.255459, 8.441068], - [-13.254603, 8.44233], - [-13.255407, 8.442577], - [-13.25549, 8.443264], - [-13.255883, 8.443761], - [-13.255317, 8.443953], - [-13.25527, 8.444604], - [-13.255446, 8.444766], - [-13.25609, 8.444633], - [-13.256468, 8.44498], - [-13.257254, 8.445153], - [-13.258471, 8.445436], - [-13.25864, 8.445644], - [-13.258479, 8.446612], - [-13.258484, 8.446619], - [-13.258439, 8.446854], - [-13.258722, 8.44713], - [-13.258782, 8.447778], - [-13.258446, 8.447981], - [-13.257936, 8.448272], - [-13.257538, 8.447549], - [-13.256734, 8.447972], - [-13.257153, 8.448754], - [-13.257023, 8.450553], - [-13.256816, 8.450538], - [-13.256589, 8.451752], - [-13.256534, 8.452362], - [-13.256151, 8.45229], - [-13.25578, 8.452431], - [-13.255155, 8.452527], - [-13.254778, 8.452316], - [-13.25461, 8.453085], - [-13.254676, 8.453171], - [-13.25497, 8.453232], - [-13.25492, 8.454699], - [-13.256023, 8.455152], - [-13.256569, 8.45558], - [-13.256957, 8.455556], - [-13.25711, 8.455515], - [-13.257654, 8.456232], - [-13.258305, 8.455909], - [-13.258585, 8.456366], - [-13.259117, 8.456241], - [-13.259397, 8.45657], - [-13.259881, 8.457918], - [-13.260064, 8.458081], - [-13.260355, 8.457362], - [-13.260362, 8.457337], - [-13.260538, 8.457333], - [-13.261185, 8.456911], - [-13.261417, 8.45721], - [-13.261623, 8.457629], - [-13.262399, 8.458184], - [-13.263082, 8.458662], - [-13.263856, 8.459101], - [-13.263542, 8.459471], - [-13.263347, 8.459606], - [-13.263529, 8.460046], - [-13.26316, 8.460452], - [-13.263626, 8.460895], - [-13.263861, 8.460655], - [-13.264201, 8.460729], - [-13.264883, 8.460008], - [-13.265137, 8.460262], - [-13.265215, 8.460455], - [-13.265385, 8.460923], - [-13.265464, 8.461054], - [-13.265524, 8.461366], - [-13.265979, 8.461551], - [-13.267364, 8.461853], - [-13.267464, 8.461661], - [-13.268281, 8.461976], - [-13.267912, 8.462892], - [-13.268375, 8.463121], - [-13.269307, 8.461102], - [-13.269385, 8.461082], - [-13.269458, 8.461067], - [-13.269538, 8.460721], - [-13.269635, 8.460463], - [-13.269853, 8.459995], - [-13.270275, 8.459306], - [-13.270354, 8.459305], - [-13.270626, 8.459618], - [-13.27146, 8.461033], - [-13.271536, 8.460995], - [-13.27168, 8.461222], - [-13.272544, 8.460907], - [-13.272799, 8.46178], - [-13.273395, 8.461578], - [-13.273575, 8.461931], - [-13.273872, 8.461766], - [-13.274342, 8.460723], - [-13.274544, 8.460056], - [-13.275228, 8.459262], - [-13.276508, 8.460237], - [-13.278137, 8.460588], - [-13.278326, 8.459938], - [-13.278311, 8.459525], - [-13.278291, 8.458349], - [-13.278097, 8.457273], - [-13.277978, 8.456794], - [-13.277682, 8.455702], - [-13.277239, 8.455481], - [-13.276957, 8.455265], - [-13.276977, 8.455234], - [-13.276564, 8.454847], - [-13.277455, 8.454282], - [-13.277956, 8.454375], - [-13.278158, 8.454835], - [-13.278319, 8.454865], - [-13.278727, 8.449305] - ] - ], - "type": "Polygon" - }, - "id": 284, - "properties": { - "cc:admin:id": ["26"], - "cc:oBld:total": 6335, - "cc:pop:fifteen-to-twenty-four": 23985.787408272172, - "cc:pop:grid3-total": 43484.50616337683, - "cc:pop:kontur-total": 90598.12464442215, - "cc:pop:men": 52282.32674542119, - "cc:pop:sixty-plus": 8148.927390587522, - "cc:pop:total": 104488.08448532474, - "cc:pop:under-five": 12062.479720266963, - "cc:pop:women": 52205.75773990355, - "cc:pop:women-fiften-to-forty-nine": 27986.230432980272, - "cc:pop:wp-total": 87590.05378764348, - "cc:pop:wp-total-UN": 101546.94268277654, - "cc:id": "284", - "cc:Name": "Lumley Hospital", - "cc:site": [-13.2589, 8.4514], - "user:parentName": "Freetown", - "user:code": "OU_278358", - "user:orgUnitId": "PqlNXedmh7u", - "user:level": "4", - "user:parentId": "C9uduqDZr9d" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.21434, 8.62843], - [-13.214269, 8.628264], - [-13.20914, 8.626464], - [-13.208694, 8.626615], - [-13.208047, 8.627374], - [-13.207341, 8.626717], - [-13.206735, 8.626135], - [-13.207561, 8.625286], - [-13.207781, 8.625028], - [-13.209049, 8.623788], - [-13.209525, 8.623607], - [-13.210288, 8.623609], - [-13.211794, 8.623648], - [-13.212195, 8.623523], - [-13.213626, 8.622821], - [-13.213846, 8.622747], - [-13.21372, 8.622567], - [-13.212116, 8.620817], - [-13.211959, 8.620896], - [-13.212926, 8.621927], - [-13.212991, 8.622244], - [-13.212845, 8.622469], - [-13.212441, 8.622607], - [-13.211195, 8.622238], - [-13.211045, 8.621959], - [-13.211046, 8.621958], - [-13.211831, 8.621912], - [-13.21167, 8.621365], - [-13.211462, 8.621144], - [-13.211249, 8.621249], - [-13.208749, 8.619584], - [-13.202917, 8.61875], - [-13.200417, 8.619583], - [-13.198749, 8.617917], - [-13.195417, 8.618749], - [-13.194583, 8.61875], - [-13.194582, 8.624583], - [-13.192083, 8.625417], - [-13.189583, 8.627916], - [-13.190416, 8.630416], - [-13.18875, 8.630417], - [-13.187675, 8.632027], - [-13.186071, 8.630383], - [-13.184584, 8.629205], - [-13.184351, 8.629841], - [-13.183799, 8.629915], - [-13.182687, 8.62937], - [-13.181335, 8.629638], - [-13.179984, 8.629699], - [-13.177546, 8.630894], - [-13.177489, 8.630993], - [-13.173749, 8.62875], - [-13.170538, 8.62875], - [-13.171425, 8.629377], - [-13.171471, 8.629692], - [-13.171381, 8.62985], - [-13.170718, 8.629761], - [-13.168621, 8.630535], - [-13.168222, 8.631034], - [-13.168187, 8.631063], - [-13.168134, 8.631076], - [-13.168019, 8.631061], - [-13.167923, 8.631064], - [-13.167889, 8.631088], - [-13.167867, 8.631154], - [-13.167841, 8.631261], - [-13.16777, 8.631372], - [-13.167664, 8.631514], - [-13.167574, 8.631716], - [-13.1675, 8.631901], - [-13.167423, 8.632083], - [-13.16738, 8.63214], - [-13.167318, 8.632201], - [-13.167278, 8.632227], - [-13.167215, 8.632241], - [-13.167026, 8.632297], - [-13.166955, 8.632296], - [-13.166858, 8.632272], - [-13.166763, 8.632258], - [-13.166648, 8.632259], - [-13.166503, 8.632277], - [-13.166363, 8.632287], - [-13.16621, 8.632274], - [-13.166111, 8.632247], - [-13.166015, 8.632203], - [-13.165904, 8.632146], - [-13.165805, 8.632068], - [-13.165745, 8.631994], - [-13.165687, 8.63192], - [-13.165632, 8.631893], - [-13.165542, 8.631879], - [-13.165471, 8.631889], - [-13.16544, 8.631916], - [-13.165372, 8.632027], - [-13.165317, 8.632092], - [-13.165278, 8.63215], - [-13.16525, 8.632179], - [-13.165187, 8.632204], - [-13.165103, 8.632209], - [-13.165023, 8.6322], - [-13.164903, 8.632178], - [-13.164862, 8.632156], - [-13.16479, 8.632097], - [-13.164749, 8.632039], - [-13.164703, 8.63196], - [-13.164678, 8.631882], - [-13.16465, 8.631772], - [-13.164626, 8.631672], - [-13.1646, 8.631608], - [-13.164511, 8.631484], - [-13.164367, 8.631347], - [-13.164198, 8.631228], - [-13.164117, 8.631198], - [-13.16399, 8.631188], - [-13.163885, 8.631208], - [-13.163792, 8.631258], - [-13.163644, 8.631358], - [-13.163514, 8.631441], - [-13.163067, 8.63169], - [-13.162876, 8.631856], - [-13.162735, 8.63196], - [-13.162675, 8.632032], - [-13.162662, 8.632076], - [-13.162672, 8.632158], - [-13.162712, 8.632295], - [-13.162803, 8.632489], - [-13.162893, 8.632657], - [-13.163009, 8.632919], - [-13.163067, 8.6331], - [-13.163088, 8.633206], - [-13.163097, 8.633302], - [-13.163077, 8.633436], - [-13.163037, 8.633527], - [-13.162948, 8.633653], - [-13.162844, 8.633762], - [-13.162688, 8.633882], - [-13.162581, 8.633909], - [-13.162432, 8.633941], - [-13.162293, 8.633977], - [-13.162074, 8.633978], - [-13.161887, 8.633989], - [-13.161625, 8.634048], - [-13.161453, 8.634079], - [-13.161222, 8.634079], - [-13.161049, 8.634062], - [-13.160854, 8.633994], - [-13.160702, 8.633901], - [-13.16058, 8.633774], - [-13.160517, 8.633668], - [-13.160444, 8.63351], - [-13.160409, 8.633425], - [-13.160373, 8.633251], - [-13.16032, 8.633086], - [-13.160245, 8.632927], - [-13.160114, 8.632857], - [-13.159971, 8.632755], - [-13.159869, 8.632713], - [-13.159819, 8.632713], - [-13.159772, 8.632768], - [-13.159758, 8.632833], - [-13.159727, 8.633], - [-13.159682, 8.633195], - [-13.159653, 8.633433], - [-13.159612, 8.633661], - [-13.159597, 8.633896], - [-13.159619, 8.634137], - [-13.159605, 8.634234], - [-13.159549, 8.634342], - [-13.159486, 8.634396], - [-13.159388, 8.634461], - [-13.159261, 8.634532], - [-13.159108, 8.634601], - [-13.158853, 8.634728], - [-13.158582, 8.634849], - [-13.158312, 8.634947], - [-13.158115, 8.634973], - [-13.157918, 8.634989], - [-13.157695, 8.635], - [-13.157437, 8.634994], - [-13.15715, 8.634981], - [-13.156656, 8.6349], - [-13.156457, 8.634874], - [-13.156283, 8.634888], - [-13.156031, 8.634861], - [-13.155799, 8.634801], - [-13.155613, 8.634707], - [-13.155485, 8.634645], - [-13.155426, 8.634577], - [-13.155383, 8.634502], - [-13.155335, 8.634337], - [-13.155317, 8.634215], - [-13.155315, 8.634015], - [-13.155334, 8.633824], - [-13.155392, 8.633674], - [-13.155473, 8.633515], - [-13.155552, 8.633232], - [-13.155569, 8.633122], - [-13.155597, 8.632985], - [-13.1556, 8.632841], - [-13.155567, 8.632625], - [-13.155513, 8.632403], - [-13.155459, 8.632274], - [-13.155369, 8.63216], - [-13.155282, 8.632105], - [-13.155155, 8.632092], - [-13.15505, 8.63213], - [-13.154878, 8.63219], - [-13.15476, 8.632295], - [-13.154521, 8.632464], - [-13.154348, 8.63259], - [-13.154091, 8.632908], - [-13.153862, 8.633226], - [-13.153662, 8.633637], - [-13.153603, 8.633744], - [-13.153331, 8.633914], - [-13.15311, 8.634027], - [-13.152953, 8.634098], - [-13.152881, 8.63424], - [-13.152901, 8.634508], - [-13.152996, 8.634707], - [-13.153167, 8.635251], - [-13.153224, 8.635692], - [-13.153017, 8.637383], - [-13.15303, 8.638728], - [-13.152973, 8.639706], - [-13.152916, 8.640167], - [-13.152816, 8.640449], - [-13.152684, 8.6406], - [-13.152666, 8.640751], - [-13.155399, 8.642899], - [-13.1563, 8.645099], - [-13.157099, 8.645999], - [-13.1579, 8.6454], - [-13.161499, 8.6454], - [-13.164299, 8.6465], - [-13.164299, 8.647399], - [-13.1629, 8.647399], - [-13.162099, 8.6465], - [-13.1599, 8.6465], - [-13.1568, 8.6474], - [-13.1568, 8.650399], - [-13.1574, 8.6504], - [-13.159299, 8.653499], - [-13.160098, 8.654299], - [-13.1574, 8.6546], - [-13.1565, 8.656], - [-13.156299, 8.657599], - [-13.1557, 8.6576], - [-13.154899, 8.659299], - [-13.1529, 8.661199], - [-13.1537, 8.6607], - [-13.156199, 8.6641], - [-13.156699, 8.6674], - [-13.156476, 8.671124], - [-13.159168, 8.673418], - [-13.160162, 8.674159], - [-13.161099, 8.674624], - [-13.163333, 8.676954], - [-13.163136, 8.677346], - [-13.165416, 8.677917], - [-13.164635, 8.684947], - [-13.171249, 8.680978], - [-13.17125, 8.675529], - [-13.171611, 8.675502], - [-13.172045, 8.675446], - [-13.172539, 8.675374], - [-13.173936, 8.675068], - [-13.175864, 8.674632], - [-13.177265, 8.673883], - [-13.178223, 8.672916], - [-13.178923, 8.67161], - [-13.18064, 8.669017], - [-13.181404, 8.666122], - [-13.18206, 8.664618], - [-13.182307, 8.664806], - [-13.182318, 8.665173], - [-13.183031, 8.665299], - [-13.18398, 8.665985], - [-13.184137, 8.66586], - [-13.184941, 8.666176], - [-13.187191, 8.661486], - [-13.189582, 8.662083], - [-13.190416, 8.661249], - [-13.192597, 8.655432], - [-13.191943, 8.655166], - [-13.190008, 8.655607], - [-13.190006, 8.655606], - [-13.192223, 8.650945], - [-13.193328, 8.647799], - [-13.198504, 8.649687], - [-13.202232, 8.65157], - [-13.205294, 8.65278], - [-13.204583, 8.647084], - [-13.211095, 8.650339], - [-13.211538, 8.649855], - [-13.211691, 8.649393], - [-13.211727, 8.649319], - [-13.211561, 8.649281], - [-13.211284, 8.647404], - [-13.211334, 8.645148], - [-13.210933, 8.645622], - [-13.210837, 8.645607], - [-13.210684, 8.645536], - [-13.210681, 8.645517], - [-13.210471, 8.645056], - [-13.210464, 8.645043], - [-13.210538, 8.644962], - [-13.21077, 8.644695], - [-13.210909, 8.644011], - [-13.211675, 8.644264], - [-13.211863, 8.643869], - [-13.212094, 8.643187], - [-13.212418, 8.642507], - [-13.212868, 8.641656], - [-13.212875, 8.641163], - [-13.212245, 8.641144], - [-13.212, 8.641229], - [-13.211569, 8.640353], - [-13.21122, 8.639926], - [-13.211627, 8.639511], - [-13.211917, 8.639332], - [-13.211905, 8.639238], - [-13.212099, 8.639176], - [-13.212016, 8.638546], - [-13.212002, 8.638292], - [-13.212725, 8.63822], - [-13.212599, 8.637516], - [-13.212521, 8.637294], - [-13.212585, 8.636852], - [-13.212071, 8.636947], - [-13.212044, 8.636904], - [-13.211934, 8.63592], - [-13.212227, 8.635827], - [-13.212176, 8.63548], - [-13.211253, 8.635251], - [-13.211446, 8.634066], - [-13.211975, 8.634026], - [-13.211859, 8.633201], - [-13.211477, 8.633003], - [-13.211348, 8.630829], - [-13.212765, 8.630539], - [-13.212947, 8.630322], - [-13.213122, 8.630478], - [-13.213537, 8.630371], - [-13.213498, 8.62958], - [-13.21434, 8.62843] - ] - ], - "type": "Polygon" - }, - "id": 285, - "properties": { - "cc:admin:id": ["44"], - "cc:oBld:total": 1566, - "cc:pop:fifteen-to-twenty-four": 2755.0917179040102, - "cc:pop:grid3-total": 11962.108521698872, - "cc:pop:kontur-total": 16262.583507124793, - "cc:pop:men": 7336.27477407305, - "cc:pop:sixty-plus": 929.5865446442045, - "cc:pop:total": 15288.499276117116, - "cc:pop:under-five": 2483.8137635959406, - "cc:pop:women": 7952.224502044067, - "cc:pop:women-fiften-to-forty-nine": 3854.4047874321345, - "cc:pop:wp-total": 11895.319106438812, - "cc:pop:wp-total-UN": 13781.32112082547, - "cc:id": "285", - "cc:Name": "Lungi Govt. Hospital, Port Loko", - "cc:site": [-13.2042, 8.628], - "user:parentName": "Kaffu Bullom", - "user:code": "OU_255010", - "user:orgUnitId": "gsypzntLahf", - "user:level": "4", - "user:parentId": "vn9KJsLyP5f" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.186512, 8.562169], - [-13.185676, 8.561809], - [-13.185516, 8.561868], - [-13.185637, 8.562472], - [-13.185404, 8.562702], - [-13.185017, 8.562772], - [-13.184285, 8.561946], - [-13.183559, 8.562295], - [-13.183372, 8.562147], - [-13.183426, 8.561716], - [-13.183205, 8.561403], - [-13.182773, 8.561545], - [-13.182452, 8.56142], - [-13.182452, 8.560991], - [-13.18295, 8.560406], - [-13.182391, 8.559941], - [-13.182347, 8.559743], - [-13.182585, 8.558888], - [-13.182595, 8.557946], - [-13.181726, 8.558], - [-13.181311, 8.55784], - [-13.181763, 8.557713], - [-13.18214, 8.5576], - [-13.182248, 8.557546], - [-13.182594, 8.557059], - [-13.182614, 8.557003], - [-13.182773, 8.556426], - [-13.182868, 8.556123], - [-13.18346, 8.554723], - [-13.183586, 8.554508], - [-13.183713, 8.55475], - [-13.183977, 8.554794], - [-13.184063, 8.555173], - [-13.183499, 8.556132], - [-13.183632, 8.556065], - [-13.184175, 8.555785], - [-13.184583, 8.55375], - [-13.186192, 8.552676], - [-13.185099, 8.5504], - [-13.183999, 8.549899], - [-13.182599, 8.5471], - [-13.181499, 8.546499], - [-13.178499, 8.5424], - [-13.1774, 8.542399], - [-13.1765, 8.5415], - [-13.176499, 8.5399], - [-13.1751, 8.5382], - [-13.1732, 8.5371], - [-13.173199, 8.536], - [-13.1724, 8.534599], - [-13.172399, 8.5326], - [-13.1713, 8.530999], - [-13.170399, 8.5271], - [-13.169299, 8.5263], - [-13.167399, 8.5265], - [-13.1632, 8.5265], - [-13.162599, 8.5257], - [-13.1599, 8.525699], - [-13.1568, 8.5224], - [-13.156, 8.522099], - [-13.155399, 8.5199], - [-13.1529, 8.519599], - [-13.150999, 8.5179], - [-13.149599, 8.517899], - [-13.148199, 8.5162], - [-13.1468, 8.5162], - [-13.147099, 8.5207], - [-13.1454, 8.522099], - [-13.1443, 8.5221], - [-13.143999, 8.5229], - [-13.1424, 8.524299], - [-13.141, 8.5243], - [-13.140099, 8.525699], - [-13.139, 8.526], - [-13.1374, 8.528999], - [-13.136499, 8.5296], - [-13.1351, 8.5337], - [-13.1351, 8.539899], - [-13.1349, 8.541799], - [-13.13486, 8.5418], - [-13.134702, 8.542202], - [-13.137916, 8.545416], - [-13.139526, 8.547563], - [-13.139783, 8.547068], - [-13.140358, 8.545985], - [-13.140785, 8.545415], - [-13.141287, 8.545006], - [-13.14166, 8.544834], - [-13.142107, 8.544816], - [-13.142541, 8.544873], - [-13.143383, 8.545375], - [-13.144854, 8.546495], - [-13.145652, 8.546829], - [-13.146874, 8.547278], - [-13.14822, 8.547748], - [-13.148966, 8.548071], - [-13.149882, 8.548202], - [-13.150326, 8.548252], - [-13.150923, 8.548242], - [-13.151434, 8.548105], - [-13.151861, 8.54811], - [-13.152463, 8.548246], - [-13.152718, 8.548307], - [-13.152874, 8.548417], - [-13.153062, 8.548635], - [-13.153195, 8.548844], - [-13.15325, 8.549228], - [-13.153217, 8.549474], - [-13.153055, 8.549762], - [-13.152619, 8.550395], - [-13.150968, 8.551907], - [-13.150448, 8.552509], - [-13.150138, 8.553052], - [-13.149625, 8.555354], - [-13.149528, 8.555922], - [-13.149368, 8.556376], - [-13.148442, 8.557741], - [-13.148293, 8.558179], - [-13.148325, 8.559253], - [-13.14837, 8.55973], - [-13.148546, 8.559928], - [-13.149583, 8.559584], - [-13.152727, 8.559583], - [-13.152771, 8.559526], - [-13.152815, 8.55899], - [-13.152974, 8.558808], - [-13.156666, 8.5625], - [-13.156665, 8.562502], - [-13.156472, 8.562528], - [-13.157917, 8.565417], - [-13.157916, 8.566282], - [-13.157864, 8.56631], - [-13.157643, 8.566901], - [-13.15742, 8.567022], - [-13.157083, 8.566635], - [-13.157083, 8.568531], - [-13.158586, 8.569021], - [-13.160579, 8.569603], - [-13.160821, 8.569747], - [-13.161191, 8.569683], - [-13.161447, 8.569694], - [-13.161425, 8.570024], - [-13.161482, 8.571586], - [-13.162944, 8.574606], - [-13.164521, 8.574607], - [-13.164566, 8.574566], - [-13.165417, 8.575416], - [-13.168749, 8.574584], - [-13.169582, 8.574584], - [-13.172082, 8.577083], - [-13.172083, 8.578749], - [-13.176249, 8.579583], - [-13.172917, 8.57125], - [-13.179582, 8.569583], - [-13.179583, 8.56875], - [-13.180416, 8.567916], - [-13.180977, 8.566235], - [-13.180979, 8.566235], - [-13.181221, 8.566471], - [-13.181051, 8.566936], - [-13.181443, 8.567078], - [-13.181814, 8.56647], - [-13.181732, 8.565648], - [-13.182546, 8.564964], - [-13.183027, 8.564772], - [-13.183926, 8.563747], - [-13.184562, 8.563583], - [-13.184895, 8.563272], - [-13.185316, 8.563228], - [-13.185355, 8.563588], - [-13.185592, 8.563577], - [-13.185698, 8.563391], - [-13.185499, 8.562921], - [-13.185792, 8.56263], - [-13.185815, 8.562329], - [-13.186512, 8.562169] - ] - ], - "type": "Polygon" - }, - "id": 286, - "properties": { - "cc:admin:id": ["44"], - "cc:oBld:total": 1810, - "cc:pop:fifteen-to-twenty-four": 2557.0010821956002, - "cc:pop:grid3-total": 12971.336579811199, - "cc:pop:kontur-total": 14515.936029942568, - "cc:pop:men": 6786.724279038356, - "cc:pop:sixty-plus": 856.5220612194306, - "cc:pop:total": 14146.876736416256, - "cc:pop:under-five": 2293.986864540743, - "cc:pop:women": 7360.152457377896, - "cc:pop:women-fiften-to-forty-nine": 3554.525324414949, - "cc:pop:wp-total": 10492.89814386821, - "cc:pop:wp-total-UN": 12179.990527826423, - "cc:id": "286", - "cc:Name": "Lungi Town MCHP", - "cc:site": [-13.16, 8.55], - "user:parentName": "Kaffu Bullom", - "user:code": "OU_255008", - "user:orgUnitId": "ntQSuMb7J21", - "user:level": "4", - "user:parentId": "vn9KJsLyP5f" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.61618, 8.686401], - [-12.608678, 8.68765], - [-12.608678, 8.687649], - [-12.610161, 8.686733], - [-12.611676, 8.685004], - [-12.607918, 8.683749], - [-12.610457, 8.681843], - [-12.610141, 8.681056], - [-12.609484, 8.68024], - [-12.609025, 8.679309], - [-12.607874, 8.67809], - [-12.607194, 8.677646], - [-12.606917, 8.677224], - [-12.606936, 8.676861], - [-12.606509, 8.675972], - [-12.606732, 8.675863], - [-12.607103, 8.675684], - [-12.607938, 8.675743], - [-12.608529, 8.67557], - [-12.607916, 8.675416], - [-12.607082, 8.67375], - [-12.602083, 8.673749], - [-12.602083, 8.67125], - [-12.602916, 8.669583], - [-12.599443, 8.668425], - [-12.59954, 8.666869], - [-12.59952, 8.66564], - [-12.599165, 8.663963], - [-12.599748, 8.663827], - [-12.60003, 8.662189], - [-12.600395, 8.66129], - [-12.600364, 8.659731], - [-12.60052, 8.659393], - [-12.598914, 8.660129], - [-12.598915, 8.660248], - [-12.598914, 8.660249], - [-12.592917, 8.65875], - [-12.59267, 8.658259], - [-12.592154, 8.658313], - [-12.590635, 8.658896], - [-12.589279, 8.658553], - [-12.586515, 8.656835], - [-12.58625, 8.656591], - [-12.586249, 8.654824], - [-12.582626, 8.651113], - [-12.580031, 8.649394], - [-12.578657, 8.64876], - [-12.576928, 8.648574], - [-12.575305, 8.649103], - [-12.574653, 8.649843], - [-12.574315, 8.649976], - [-12.573699, 8.651359], - [-12.572566, 8.652285], - [-12.572103, 8.652461], - [-12.570917, 8.652259], - [-12.569249, 8.652461], - [-12.567109, 8.651316], - [-12.56365, 8.650962], - [-12.562117, 8.65002], - [-12.561474, 8.649534], - [-12.560895, 8.648776], - [-12.560574, 8.646344], - [-12.560289, 8.645426], - [-12.560448, 8.644509], - [-12.560216, 8.643654], - [-12.559174, 8.641698], - [-12.558825, 8.640101], - [-12.55871, 8.639344], - [-12.558986, 8.63774], - [-12.558906, 8.636418], - [-12.557765, 8.634884], - [-12.555597, 8.634723], - [-12.554385, 8.634116], - [-12.551184, 8.635297], - [-12.549846, 8.635351], - [-12.547608, 8.636073], - [-12.545959, 8.63609], - [-12.544889, 8.63587], - [-12.544675, 8.635464], - [-12.544906, 8.632811], - [-12.544747, 8.629611], - [-12.544943, 8.628342], - [-12.54553, 8.627486], - [-12.545388, 8.625512], - [-12.544933, 8.623934], - [-12.542938, 8.622062], - [-12.542916, 8.622084], - [-12.541309, 8.622083], - [-12.540519, 8.620822], - [-12.539927, 8.620417], - [-12.539582, 8.620416], - [-12.536778, 8.617612], - [-12.536135, 8.616533], - [-12.535044, 8.61526], - [-12.534611, 8.614935], - [-12.533942, 8.614706], - [-12.531994, 8.614673], - [-12.532916, 8.61375], - [-12.533005, 8.613572], - [-12.531124, 8.613957], - [-12.529055, 8.614935], - [-12.526987, 8.616654], - [-12.526242, 8.61792], - [-12.52569, 8.620249], - [-12.52618, 8.621321], - [-12.527035, 8.62191], - [-12.527705, 8.623559], - [-12.52788, 8.624746], - [-12.52731, 8.625752], - [-12.526714, 8.626245], - [-12.525715, 8.626635], - [-12.524813, 8.626583], - [-12.523884, 8.626255], - [-12.522246, 8.626423], - [-12.52125, 8.627916], - [-12.520021, 8.628326], - [-12.52002, 8.628324], - [-12.520024, 8.62831], - [-12.519996, 8.628153], - [-12.519231, 8.627901], - [-12.517833, 8.62671], - [-12.516836, 8.626269], - [-12.516298, 8.625755], - [-12.51544, 8.625742], - [-12.515671, 8.625933], - [-12.515671, 8.625934], - [-12.513834, 8.626066], - [-12.513647, 8.62624], - [-12.514229, 8.626911], - [-12.51483, 8.626732], - [-12.515516, 8.626899], - [-12.515685, 8.627536], - [-12.515978, 8.62753], - [-12.516165, 8.627832], - [-12.516248, 8.627619], - [-12.516521, 8.627527], - [-12.516592, 8.62772], - [-12.518405, 8.628863], - [-12.518405, 8.628864], - [-12.517279, 8.62924], - [-12.514759, 8.627189], - [-12.51259, 8.627279], - [-12.512156, 8.627984], - [-12.512517, 8.629963], - [-12.51298, 8.630745], - [-12.513729, 8.631569], - [-12.513897, 8.632038], - [-12.514079, 8.632857], - [-12.513945, 8.634089], - [-12.513647, 8.634627], - [-12.51267, 8.635082], - [-12.510463, 8.63544], - [-12.509352, 8.636692], - [-12.508845, 8.636923], - [-12.508821, 8.637083], - [-12.508274, 8.637083], - [-12.508271, 8.636951], - [-12.508985, 8.635674], - [-12.510082, 8.634957], - [-12.508549, 8.634588], - [-12.507341, 8.633785], - [-12.505992, 8.633771], - [-12.505095, 8.633486], - [-12.503636, 8.633634], - [-12.502692, 8.634056], - [-12.49925, 8.637582], - [-12.49925, 8.637581], - [-12.499562, 8.636331], - [-12.497404, 8.638727], - [-12.497402, 8.63886], - [-12.495849, 8.6402], - [-12.495564, 8.640209], - [-12.495391, 8.640901], - [-12.495488, 8.6409], - [-12.495546, 8.640996], - [-12.495545, 8.640998], - [-12.495467, 8.640986], - [-12.494882, 8.640734], - [-12.492523, 8.639309], - [-12.491674, 8.639515], - [-12.491002, 8.640226], - [-12.490565, 8.640387], - [-12.490669, 8.640934], - [-12.490547, 8.64129], - [-12.489503, 8.641546], - [-12.488917, 8.642317], - [-12.486957, 8.643956], - [-12.486112, 8.644896], - [-12.483642, 8.644701], - [-12.483391, 8.644373], - [-12.482807, 8.644222], - [-12.482709, 8.643971], - [-12.482904, 8.64293], - [-12.483525, 8.642572], - [-12.484359, 8.64162], - [-12.486156, 8.640801], - [-12.486482, 8.64111], - [-12.48737, 8.640491], - [-12.487697, 8.640402], - [-12.48765, 8.64034], - [-12.486739, 8.640372], - [-12.486532, 8.640249], - [-12.486361, 8.639628], - [-12.486436, 8.639203], - [-12.486924, 8.639206], - [-12.487082, 8.639128], - [-12.487082, 8.638982], - [-12.486831, 8.639109], - [-12.486247, 8.639004], - [-12.486388, 8.640369], - [-12.48629, 8.640522], - [-12.484564, 8.64115], - [-12.483807, 8.641589], - [-12.482696, 8.642701], - [-12.482448, 8.643708], - [-12.482196, 8.643987], - [-12.480431, 8.644064], - [-12.4799, 8.644376], - [-12.47881, 8.642998], - [-12.478344, 8.642754], - [-12.478599, 8.647699], - [-12.479399, 8.651399], - [-12.481599, 8.656699], - [-12.4829, 8.6618], - [-12.486899, 8.670099], - [-12.4893, 8.6744], - [-12.4907, 8.6776], - [-12.493199, 8.681899], - [-12.494377, 8.684706], - [-12.496313, 8.684208], - [-12.496742, 8.68425], - [-12.496861, 8.684155], - [-12.496904, 8.684306], - [-12.497455, 8.684527], - [-12.500413, 8.684661], - [-12.500646, 8.684547], - [-12.502652, 8.686052], - [-12.502833, 8.686683], - [-12.504367, 8.6882], - [-12.505364, 8.68731], - [-12.505946, 8.685504], - [-12.507294, 8.68439], - [-12.507978, 8.683446], - [-12.508094, 8.683109], - [-12.507849, 8.681641], - [-12.507851, 8.68164], - [-12.508279, 8.682022], - [-12.508776, 8.682126], - [-12.509226, 8.68224], - [-12.509349, 8.681478], - [-12.509677, 8.681014], - [-12.509673, 8.680693], - [-12.509844, 8.680682], - [-12.509904, 8.681753], - [-12.510717, 8.682878], - [-12.511298, 8.683439], - [-12.510873, 8.683723], - [-12.511019, 8.683763], - [-12.511367, 8.684876], - [-12.510681, 8.685526], - [-12.510821, 8.685567], - [-12.510927, 8.685954], - [-12.510912, 8.688853], - [-12.51074, 8.69037], - [-12.510852, 8.690375], - [-12.510976, 8.689814], - [-12.511839, 8.689804], - [-12.512521, 8.69116], - [-12.512718, 8.691249], - [-12.512917, 8.69125], - [-12.515417, 8.692916], - [-12.519918, 8.692273], - [-12.519955, 8.692343], - [-12.519908, 8.692512], - [-12.522916, 8.692082], - [-12.523482, 8.690953], - [-12.525888, 8.690867], - [-12.526977, 8.69133], - [-12.527653, 8.690804], - [-12.528066, 8.69084], - [-12.528314, 8.690858], - [-12.528315, 8.69086], - [-12.52818, 8.691756], - [-12.528155, 8.692247], - [-12.528145, 8.692766], - [-12.528177, 8.692775], - [-12.528604, 8.693561], - [-12.528565, 8.693798], - [-12.528547, 8.69425], - [-12.529225, 8.694394], - [-12.528924, 8.695376], - [-12.529222, 8.695651], - [-12.529598, 8.69541], - [-12.529808, 8.695046], - [-12.532654, 8.693485], - [-12.532744, 8.693591], - [-12.533539, 8.693134], - [-12.53364, 8.693308], - [-12.533735, 8.693436], - [-12.533837, 8.693931], - [-12.534138, 8.694326], - [-12.534241, 8.694407], - [-12.534119, 8.69448], - [-12.533886, 8.694697], - [-12.534062, 8.695315], - [-12.534672, 8.695171], - [-12.534954, 8.695479], - [-12.535073, 8.695493], - [-12.535334, 8.695897], - [-12.535336, 8.695992], - [-12.536983, 8.695612], - [-12.53691, 8.69506], - [-12.537058, 8.6944], - [-12.536418, 8.694368], - [-12.536493, 8.693985], - [-12.536501, 8.693653], - [-12.536613, 8.693527], - [-12.53728, 8.693305], - [-12.537595, 8.694448], - [-12.537525, 8.694995], - [-12.537648, 8.696018], - [-12.537863, 8.696227], - [-12.537808, 8.696499], - [-12.538261, 8.696488], - [-12.538198, 8.697853], - [-12.538943, 8.697953], - [-12.539165, 8.698078], - [-12.539559, 8.699615], - [-12.54032, 8.700191], - [-12.543348, 8.700911], - [-12.543347, 8.700913], - [-12.543128, 8.700983], - [-12.542151, 8.702488], - [-12.541202, 8.703216], - [-12.541196, 8.703228], - [-12.544583, 8.704582], - [-12.549582, 8.704583], - [-12.55125, 8.707916], - [-12.554485, 8.709857], - [-12.554654, 8.710407], - [-12.555032, 8.714386], - [-12.555995, 8.716624], - [-12.556112, 8.716943], - [-12.556283, 8.716978], - [-12.556668, 8.718027], - [-12.556524, 8.71823], - [-12.556677, 8.719088], - [-12.557168, 8.720295], - [-12.557647, 8.720635], - [-12.558628, 8.721841], - [-12.558906, 8.72273], - [-12.559973, 8.723565], - [-12.561166, 8.725221], - [-12.562041, 8.724662], - [-12.565391, 8.722797], - [-12.567491, 8.721686], - [-12.568608, 8.722452], - [-12.570231, 8.722515], - [-12.570288, 8.722673], - [-12.570702, 8.722502], - [-12.571359, 8.723033], - [-12.571848, 8.724401], - [-12.572979, 8.724991], - [-12.5739, 8.726144], - [-12.574948, 8.726595], - [-12.575466, 8.726488], - [-12.575881, 8.726629], - [-12.576976, 8.727403], - [-12.5779, 8.726999], - [-12.582199, 8.726], - [-12.584299, 8.7253], - [-12.586899, 8.7236], - [-12.5905, 8.720099], - [-12.593899, 8.7159], - [-12.5965, 8.710899], - [-12.601099, 8.705], - [-12.603799, 8.7013], - [-12.607599, 8.6986], - [-12.610099, 8.6964], - [-12.612499, 8.6935], - [-12.614899, 8.6885], - [-12.61618, 8.686401] - ] - ], - "type": "Polygon" - }, - "id": 287, - "properties": { - "cc:admin:id": ["93"], - "cc:oBld:total": 6796, - "cc:pop:fifteen-to-twenty-four": 4480.136921261133, - "cc:pop:grid3-total": 44867.70616899399, - "cc:pop:kontur-total": 22564.76751241193, - "cc:pop:men": 11147.104847634142, - "cc:pop:sixty-plus": 1506.6907136052948, - "cc:pop:total": 23871.09327877461, - "cc:pop:under-five": 3843.463384879191, - "cc:pop:women": 12723.988431140486, - "cc:pop:women-fiften-to-forty-nine": 6159.891949294521, - "cc:pop:wp-total": 19541.016752368534, - "cc:pop:wp-total-UN": 22673.597861265884, - "cc:id": "287", - "cc:Name": "Lunsar CHC", - "cc:site": [-12.5313, 8.6821], - "user:parentName": "Marampa", - "user:code": "OU_255057", - "user:orgUnitId": "q56204kKXgZ", - "user:level": "4", - "user:parentId": "RWvG1aFrr0r" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.330556, 8.531391], - [-12.327916, 8.52875], - [-12.327082, 8.528749], - [-12.320417, 8.526249], - [-12.323749, 8.518749], - [-12.316249, 8.514584], - [-12.305417, 8.514584], - [-12.302083, 8.513749], - [-12.302917, 8.509584], - [-12.305416, 8.50625], - [-12.307916, 8.504584], - [-12.309489, 8.504583], - [-12.310456, 8.502908], - [-12.30655, 8.496142], - [-12.298739, 8.496142], - [-12.294831, 8.502907], - [-12.28702, 8.502908], - [-12.286533, 8.50375], - [-12.278973, 8.50375], - [-12.278972, 8.503748], - [-12.279365, 8.50209], - [-12.278463, 8.500709], - [-12.277136, 8.497541], - [-12.275416, 8.49625], - [-12.267083, 8.496249], - [-12.267082, 8.495417], - [-12.255417, 8.495417], - [-12.257082, 8.500416], - [-12.253185, 8.499767], - [-12.253267, 8.499525], - [-12.253379, 8.499283], - [-12.25125, 8.49875], - [-12.247917, 8.500416], - [-12.247916, 8.502917], - [-12.24375, 8.506249], - [-12.242917, 8.507083], - [-12.242916, 8.508749], - [-12.23625, 8.509583], - [-12.235416, 8.509584], - [-12.232083, 8.510416], - [-12.229694, 8.512806], - [-12.229098, 8.512545], - [-12.228228, 8.511637], - [-12.22375, 8.512917], - [-12.223749, 8.522916], - [-12.219583, 8.522916], - [-12.217082, 8.519584], - [-12.215416, 8.519583], - [-12.207575, 8.517445], - [-12.20745, 8.517054], - [-12.206548, 8.515187], - [-12.206363, 8.514584], - [-12.202083, 8.514584], - [-12.19625, 8.517084], - [-12.194582, 8.51875], - [-12.192337, 8.522493], - [-12.1929, 8.5226], - [-12.1965, 8.5244], - [-12.203299, 8.526099], - [-12.2086, 8.5284], - [-12.214599, 8.529799], - [-12.2199, 8.5321], - [-12.2259, 8.5335], - [-12.230299, 8.535699], - [-12.2335, 8.5371], - [-12.237799, 8.539399], - [-12.240999, 8.540799], - [-12.245399, 8.543199], - [-12.248499, 8.544599], - [-12.255899, 8.550099], - [-12.259799, 8.551999], - [-12.262099, 8.553699], - [-12.265, 8.557199], - [-12.269599, 8.558799], - [-12.281199, 8.5542], - [-12.287699, 8.5519], - [-12.2962, 8.546899], - [-12.306199, 8.5435], - [-12.3103, 8.542599], - [-12.320599, 8.5418], - [-12.324699, 8.540599], - [-12.327499, 8.538299], - [-12.328515, 8.536382], - [-12.327916, 8.534584], - [-12.325596, 8.533423], - [-12.325595, 8.533421], - [-12.32587, 8.533234], - [-12.326533, 8.533166], - [-12.327109, 8.533258], - [-12.327222, 8.532901], - [-12.327613, 8.532753], - [-12.329139, 8.532752], - [-12.330256, 8.532058], - [-12.330556, 8.531391] - ] - ], - "type": "Polygon" - }, - "id": 288, - "properties": { - "cc:admin:id": ["149"], - "cc:oBld:total": 331, - "cc:pop:fifteen-to-twenty-four": 816.7933395920774, - "cc:pop:grid3-total": 3672.9988384383655, - "cc:pop:kontur-total": 4411.549074419465, - "cc:pop:men": 2028.198427632446, - "cc:pop:sixty-plus": 289.650510084456, - "cc:pop:total": 4361.037452233158, - "cc:pop:under-five": 710.9670304586546, - "cc:pop:women": 2332.8390246007134, - "cc:pop:women-fiften-to-forty-nine": 1159.867687721582, - "cc:pop:wp-total": 3385.704993784676, - "cc:pop:wp-total-UN": 3922.454046101218, - "cc:id": "288", - "cc:Name": "Mabai MCHP", - "cc:site": [-12.2494, 8.5395], - "user:parentName": "Kholifa Mabang", - "user:code": "OU_268164", - "user:orgUnitId": "xRsoZIRmnt4", - "user:level": "4", - "user:parentId": "fwxkctgmffZ" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.228832, 8.485004], - [-13.228645, 8.484085], - [-13.228093, 8.484198], - [-13.228015, 8.484202], - [-13.227596, 8.4841], - [-13.227549, 8.483624], - [-13.227564, 8.483084], - [-13.226653, 8.482963], - [-13.226568, 8.483158], - [-13.225753, 8.482884], - [-13.225451, 8.483549], - [-13.226265, 8.483955], - [-13.22615, 8.484276], - [-13.226104, 8.484395], - [-13.225956, 8.484828], - [-13.225888, 8.485021], - [-13.226856, 8.485489], - [-13.226813, 8.4858], - [-13.226795, 8.48603], - [-13.22679, 8.486255], - [-13.226425, 8.487275], - [-13.226313, 8.487574], - [-13.226126, 8.487804], - [-13.226141, 8.487874], - [-13.226136, 8.487916], - [-13.226205, 8.488002], - [-13.226298, 8.487987], - [-13.226576, 8.488186], - [-13.226347, 8.488853], - [-13.225932, 8.490046], - [-13.225864, 8.490481], - [-13.22652, 8.490556], - [-13.22678, 8.490829], - [-13.227023, 8.490703], - [-13.226813, 8.490385], - [-13.226729, 8.490148], - [-13.226574, 8.489789], - [-13.227373, 8.488516], - [-13.22732, 8.48827], - [-13.22705, 8.488135], - [-13.227337, 8.487295], - [-13.22744, 8.48663], - [-13.227703, 8.486632], - [-13.228663, 8.486341], - [-13.228498, 8.485747], - [-13.228316, 8.485137], - [-13.228832, 8.485004] - ] - ], - "type": "Polygon" - }, - "id": 289, - "properties": { - "cc:admin:id": ["26"], - "cc:oBld:total": 496, - "cc:pop:fifteen-to-twenty-four": 709.6288448050036, - "cc:pop:grid3-total": 8536.280704463741, - "cc:pop:kontur-total": 0, - "cc:pop:men": 1545.5113494808052, - "cc:pop:sixty-plus": 240.35560605069276, - "cc:pop:total": 3089.0124147991846, - "cc:pop:under-five": 355.86889988067287, - "cc:pop:women": 1543.50106531838, - "cc:pop:women-fiften-to-forty-nine": 827.6500897368462, - "cc:pop:wp-total": 2837.8273648475924, - "cc:pop:wp-total-UN": 3289.9216992572037, - "cc:id": "289", - "cc:Name": "Mabella MCHP", - "cc:site": [-13.2265, 8.4905], - "user:parentName": "Freetown", - "user:code": "OU_278329", - "user:orgUnitId": "MiYhwDprCCA", - "user:level": "4", - "user:parentId": "C9uduqDZr9d" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.046249, 9.43375], - [-12.03625, 9.434583], - [-12.032917, 9.438749], - [-12.032916, 9.439191], - [-12.032915, 9.43919], - [-12.031677, 9.437048], - [-12.031177, 9.43776], - [-12.029994, 9.438459], - [-12.026704, 9.441201], - [-12.025873, 9.440877], - [-12.02355, 9.436854], - [-12.022461, 9.436853], - [-12.022413, 9.436459], - [-12.021969, 9.435816], - [-12.021721, 9.435006], - [-12.021811, 9.434093], - [-12.021636, 9.433211], - [-12.021589, 9.431473], - [-12.020603, 9.429863], - [-12.020286, 9.428972], - [-12.019726, 9.428206], - [-12.019541, 9.427016], - [-12.013751, 9.432081], - [-12.013749, 9.432081], - [-12.012917, 9.427916], - [-12.015416, 9.420417], - [-12.010606, 9.419042], - [-12.010271, 9.41987], - [-12.008939, 9.421987], - [-12.008636, 9.421821], - [-12.008088, 9.420297], - [-12.007787, 9.41987], - [-12.007024, 9.419359], - [-12.006901, 9.418913], - [-12.006072, 9.418047], - [-12.005083, 9.415715], - [-12.00495, 9.414645], - [-12.004441, 9.413483], - [-12.004187, 9.413306], - [-12.004008, 9.412005], - [-12.002516, 9.409627], - [-12.004884, 9.408398], - [-12.005055, 9.408379], - [-12.005041, 9.408333], - [-12.001076, 9.408333], - [-11.997169, 9.415098], - [-11.993591, 9.415098], - [-11.993508, 9.414931], - [-11.993845, 9.414689], - [-11.995379, 9.411634], - [-11.99583, 9.409694], - [-11.995771, 9.408958], - [-11.994965, 9.407949], - [-11.994002, 9.407852], - [-11.992016, 9.408355], - [-11.991151, 9.408413], - [-11.989852, 9.407463], - [-11.989558, 9.407075], - [-11.989655, 9.406144], - [-11.989932, 9.40593], - [-11.990029, 9.40434], - [-11.989951, 9.403739], - [-11.98942, 9.403002], - [-11.989165, 9.402283], - [-11.989377, 9.401526], - [-11.989681, 9.401196], - [-11.991127, 9.400651], - [-11.991904, 9.399934], - [-11.992583, 9.398799], - [-11.993241, 9.397159], - [-11.994194, 9.391776], - [-11.993929, 9.390932], - [-11.993565, 9.39066], - [-11.992179, 9.390021], - [-11.990959, 9.389864], - [-11.989397, 9.387983], - [-11.990166, 9.385417], - [-11.985417, 9.385417], - [-11.982082, 9.384583], - [-11.974414, 9.384583], - [-11.973899, 9.3858], - [-11.9733, 9.389299], - [-11.9733, 9.396699], - [-11.975899, 9.398], - [-11.9799, 9.4036], - [-11.9838, 9.4116], - [-11.984499, 9.4144], - [-11.9842, 9.417899], - [-11.982099, 9.4232], - [-11.981499, 9.4259], - [-11.9809, 9.431699], - [-11.980199, 9.433999], - [-11.977699, 9.4373], - [-11.974899, 9.4396], - [-11.9697, 9.442499], - [-11.9677, 9.444399], - [-11.9666, 9.447199], - [-11.9669, 9.451499], - [-11.9693, 9.4567], - [-11.970099, 9.461299], - [-11.970099, 9.4633], - [-11.969499, 9.4671], - [-11.967499, 9.4716], - [-11.966899, 9.4752], - [-11.9666, 9.480999], - [-11.9661, 9.484799], - [-11.963999, 9.4902], - [-11.963299, 9.4928], - [-11.962599, 9.4983], - [-11.9605, 9.504399], - [-11.970699, 9.5027], - [-11.976399, 9.5027], - [-11.980699, 9.503099], - [-11.984599, 9.504499], - [-11.988, 9.507], - [-11.9919, 9.511], - [-11.9942, 9.5144], - [-11.997099, 9.520499], - [-11.9998, 9.524099], - [-12.005699, 9.527599], - [-12.0095, 9.5287], - [-12.0135, 9.528699], - [-12.0186, 9.527599], - [-12.0262, 9.523599], - [-12.036199, 9.5162], - [-12.038843, 9.516105], - [-12.039437, 9.515611], - [-12.040996, 9.514733], - [-12.040416, 9.511249], - [-12.039582, 9.507083], - [-12.038749, 9.507082], - [-12.032917, 9.506249], - [-12.029583, 9.502916], - [-12.031095, 9.493085], - [-12.031868, 9.492941], - [-12.03232, 9.493043], - [-12.035136, 9.488166], - [-12.031231, 9.4814], - [-12.035136, 9.474635], - [-12.034075, 9.472796], - [-12.034764, 9.472736], - [-12.035444, 9.472281], - [-12.036109, 9.471377], - [-12.035417, 9.46375], - [-12.035257, 9.463621], - [-12.038781, 9.457518], - [-12.035839, 9.452422], - [-12.035416, 9.452082], - [-12.034693, 9.444129], - [-12.034694, 9.444129], - [-12.035182, 9.444368], - [-12.036012, 9.444493], - [-12.039158, 9.446126], - [-12.039525, 9.446377], - [-12.04056, 9.446358], - [-12.042916, 9.445416], - [-12.045416, 9.440416], - [-12.046249, 9.43375] - ] - ], - "type": "Polygon" - }, - "id": 290, - "properties": { - "cc:admin:id": ["116"], - "cc:oBld:total": 1, - "cc:pop:fifteen-to-twenty-four": 593.8457670477393, - "cc:pop:grid3-total": 2701.453391569256, - "cc:pop:kontur-total": 3587.761777496117, - "cc:pop:men": 1517.8166050728596, - "cc:pop:sixty-plus": 195.92959099793532, - "cc:pop:total": 3196.3609577696093, - "cc:pop:under-five": 523.0766588561581, - "cc:pop:women": 1678.5443526967497, - "cc:pop:women-fiften-to-forty-nine": 812.9533308638923, - "cc:pop:wp-total": 3293.918390174994, - "cc:pop:wp-total-UN": 3815.372360644335, - "cc:id": "290", - "cc:Name": "Mabenteh Community Hospital", - "cc:site": [-11.98737, 9.44655], - "user:parentName": "Makari Gbanti", - "user:code": "OU_193250", - "user:orgUnitId": "taKiTcaf05H", - "user:level": "4", - "user:parentId": "lY93YpCxJqf" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.114582, 8.820416], - [-12.112082, 8.814583], - [-12.107916, 8.816249], - [-12.107082, 8.809583], - [-12.102917, 8.812082], - [-12.102268, 8.812083], - [-12.102258, 8.812107], - [-12.102575, 8.812354], - [-12.102236, 8.81251], - [-12.102275, 8.812892], - [-12.102274, 8.812893], - [-12.100416, 8.810417], - [-12.095417, 8.807917], - [-12.093749, 8.808749], - [-12.090434, 8.808198], - [-12.090373, 8.808245], - [-12.089813, 8.808292], - [-12.089573, 8.808997], - [-12.088635, 8.809583], - [-12.082917, 8.809583], - [-12.080924, 8.81224], - [-12.080035, 8.811319], - [-12.079546, 8.811216], - [-12.079182, 8.810956], - [-12.079157, 8.810424], - [-12.078893, 8.810511], - [-12.078668, 8.810366], - [-12.07831, 8.810529], - [-12.078103, 8.810051], - [-12.07778, 8.810071], - [-12.077888, 8.810724], - [-12.077742, 8.811078], - [-12.077742, 8.811844], - [-12.076676, 8.812211], - [-12.075721, 8.8131], - [-12.075215, 8.813454], - [-12.070417, 8.812082], - [-12.071601, 8.808529], - [-12.071652, 8.808578], - [-12.07168, 8.808695], - [-12.072082, 8.807083], - [-12.071249, 8.804583], - [-12.062917, 8.802917], - [-12.062082, 8.804583], - [-12.056893, 8.80588], - [-12.056983, 8.806248], - [-12.056982, 8.806249], - [-12.05625, 8.80625], - [-12.056249, 8.809583], - [-12.050417, 8.812082], - [-12.049583, 8.812083], - [-12.048749, 8.812917], - [-12.045393, 8.81426], - [-12.045999, 8.816048], - [-12.045827, 8.816285], - [-12.044254, 8.816734], - [-12.042875, 8.817402], - [-12.042195, 8.817367], - [-12.041252, 8.817045], - [-12.041109, 8.816974], - [-12.0393, 8.816187], - [-12.038919, 8.813568], - [-12.038237, 8.814153], - [-12.037751, 8.815246], - [-12.035891, 8.819553], - [-12.035863, 8.819649], - [-12.035607, 8.819529], - [-12.035302, 8.819275], - [-12.034538, 8.819072], - [-12.033919, 8.819216], - [-12.03347, 8.819571], - [-12.033081, 8.81898], - [-12.032506, 8.81942], - [-12.031987, 8.819656], - [-12.031846, 8.820005], - [-12.03222, 8.820911], - [-12.031981, 8.820997], - [-12.031583, 8.821917], - [-12.031493, 8.822695], - [-12.031063, 8.823354], - [-12.030041, 8.823411], - [-12.029679, 8.823258], - [-12.029051, 8.823317], - [-12.028034, 8.823691], - [-12.027601, 8.823983], - [-12.027262, 8.823505], - [-12.027006, 8.82373], - [-12.026744, 8.824025], - [-12.026629, 8.824079], - [-12.027099, 8.824412], - [-12.027429, 8.824293], - [-12.02778, 8.824505], - [-12.028107, 8.824804], - [-12.028345, 8.825339], - [-12.028228, 8.825809], - [-12.027795, 8.825916], - [-12.026592, 8.826661], - [-12.026143, 8.826956], - [-12.026249, 8.827429], - [-12.025503, 8.827705], - [-12.024407, 8.829077], - [-12.024779, 8.830567], - [-12.024667, 8.830807], - [-12.025554, 8.831038], - [-12.026121, 8.831909], - [-12.0262, 8.832296], - [-12.025967, 8.832639], - [-12.02596, 8.833242], - [-12.024317, 8.831975], - [-12.024123, 8.831998], - [-12.023571, 8.832053], - [-12.022637, 8.831712], - [-12.022141, 8.832147], - [-12.022093, 8.832401], - [-12.021322, 8.83233], - [-12.021119, 8.832525], - [-12.022129, 8.833228], - [-12.022217, 8.833554], - [-12.022725, 8.833838], - [-12.022561, 8.83441], - [-12.022254, 8.834489], - [-12.022091, 8.834757], - [-12.022059, 8.835425], - [-12.02192, 8.835816], - [-12.021917, 8.837119], - [-12.022369, 8.837493], - [-12.022471, 8.837898], - [-12.0271, 8.837043], - [-12.026716, 8.838453], - [-12.027098, 8.839284], - [-12.02714, 8.83983], - [-12.027463, 8.839942], - [-12.027573, 8.840215], - [-12.027389, 8.840782], - [-12.027639, 8.841072], - [-12.028708, 8.841149], - [-12.029448, 8.840297], - [-12.03012, 8.840077], - [-12.029744, 8.842486], - [-12.030276, 8.842739], - [-12.0309, 8.842588], - [-12.031253, 8.841901], - [-12.031848, 8.841455], - [-12.032024, 8.841141], - [-12.033083, 8.840956], - [-12.03363, 8.840282], - [-12.034794, 8.840679], - [-12.035592, 8.840671], - [-12.036171, 8.840526], - [-12.037571, 8.838648], - [-12.03821, 8.838796], - [-12.038382, 8.839016], - [-12.03879, 8.839027], - [-12.038961, 8.839277], - [-12.041448, 8.839036], - [-12.041323, 8.837475], - [-12.042141, 8.838845], - [-12.042766, 8.839474], - [-12.043074, 8.840475], - [-12.043804, 8.841815], - [-12.043812, 8.842082], - [-12.044583, 8.842082], - [-12.048749, 8.841249], - [-12.04875, 8.840417], - [-12.050416, 8.840416], - [-12.052082, 8.83625], - [-12.055105, 8.834436], - [-12.055107, 8.834437], - [-12.055871, 8.836837], - [-12.056471, 8.836483], - [-12.057561, 8.833299], - [-12.057813, 8.832386], - [-12.057996, 8.830782], - [-12.061249, 8.832083], - [-12.057917, 8.837082], - [-12.059583, 8.83875], - [-12.062916, 8.838749], - [-12.067083, 8.834583], - [-12.06875, 8.834583], - [-12.069583, 8.837082], - [-12.075416, 8.837916], - [-12.076978, 8.837134], - [-12.076781, 8.83686], - [-12.07679, 8.836777], - [-12.082916, 8.835416], - [-12.082083, 8.833749], - [-12.084583, 8.83125], - [-12.087082, 8.83125], - [-12.090416, 8.832916], - [-12.096249, 8.829583], - [-12.10125, 8.832916], - [-12.102339, 8.832554], - [-12.102371, 8.832711], - [-12.107916, 8.828749], - [-12.110416, 8.825416], - [-12.110417, 8.823749], - [-12.114582, 8.820416] - ] - ], - "type": "Polygon" - }, - "id": 291, - "properties": { - "cc:admin:id": ["8"], - "cc:oBld:total": 471, - "cc:pop:fifteen-to-twenty-four": 386.9259911882511, - "cc:pop:grid3-total": 3179.841090942723, - "cc:pop:kontur-total": 2049.81015325618, - "cc:pop:men": 1033.1871723548481, - "cc:pop:sixty-plus": 117.0122513014305, - "cc:pop:total": 2171.4654243950345, - "cc:pop:under-five": 358.45688075928103, - "cc:pop:women": 1138.2782520401865, - "cc:pop:women-fiften-to-forty-nine": 524.0176459657544, - "cc:pop:wp-total": 2344.530020318022, - "cc:pop:wp-total-UN": 2704.879941442698, - "cc:id": "291", - "cc:Name": "Mabolleh MCHP", - "cc:site": [-12.0543, 8.8214], - "user:parentName": "Bombali Sebora", - "user:code": "OU_193210", - "user:orgUnitId": "PybxeRWVSrI", - "user:level": "4", - "user:parentId": "KKkLOTpMXGV" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.792916, 8.547916], - [-12.789583, 8.539584], - [-12.792082, 8.534584], - [-12.787917, 8.53125], - [-12.783749, 8.537083], - [-12.77625, 8.537083], - [-12.77375, 8.534583], - [-12.772917, 8.532916], - [-12.776249, 8.525417], - [-12.769583, 8.524584], - [-12.768125, 8.525556], - [-12.76811, 8.525908], - [-12.764583, 8.527083], - [-12.763749, 8.527083], - [-12.759583, 8.52625], - [-12.759582, 8.52375], - [-12.758099, 8.523255], - [-12.757988, 8.523459], - [-12.756494, 8.525072], - [-12.754421, 8.526692], - [-12.753445, 8.527222], - [-12.753221, 8.527296], - [-12.750416, 8.519584], - [-12.74625, 8.519584], - [-12.742917, 8.520417], - [-12.741249, 8.52375], - [-12.740417, 8.523749], - [-12.740416, 8.522084], - [-12.724583, 8.52125], - [-12.722082, 8.510417], - [-12.715898, 8.511103], - [-12.715897, 8.511102], - [-12.715961, 8.510417], - [-12.710417, 8.510417], - [-12.70625, 8.51375], - [-12.706249, 8.515416], - [-12.704383, 8.515417], - [-12.704446, 8.515554], - [-12.704366, 8.515566], - [-12.7033, 8.51372], - [-12.695488, 8.51372], - [-12.691582, 8.520485], - [-12.683769, 8.520486], - [-12.683599, 8.520779], - [-12.68386, 8.521288], - [-12.684672, 8.522113], - [-12.683376, 8.524359], - [-12.687281, 8.531126], - [-12.684071, 8.536687], - [-12.683601, 8.536587], - [-12.683508, 8.536491], - [-12.681265, 8.538735], - [-12.682699, 8.5404], - [-12.683499, 8.543799], - [-12.683699, 8.547499], - [-12.6835, 8.551099], - [-12.682799, 8.5546], - [-12.680499, 8.5589], - [-12.677, 8.5669], - [-12.677399, 8.570399], - [-12.680599, 8.576999], - [-12.6831, 8.5813], - [-12.684499, 8.584399], - [-12.686099, 8.586699], - [-12.6927, 8.5937], - [-12.695399, 8.596299], - [-12.6976, 8.598], - [-12.701, 8.599299], - [-12.7037, 8.599399], - [-12.7062, 8.598899], - [-12.7114, 8.596499], - [-12.714999, 8.5959], - [-12.718599, 8.5958], - [-12.722299, 8.595999], - [-12.726, 8.5972], - [-12.733299, 8.598199], - [-12.737799, 8.5978], - [-12.745599, 8.5954], - [-12.7501, 8.593099], - [-12.7582, 8.586899], - [-12.7731, 8.571299], - [-12.777399, 8.5682], - [-12.780815, 8.566569], - [-12.781723, 8.563488], - [-12.782402, 8.560566], - [-12.783245, 8.560472], - [-12.783375, 8.559923], - [-12.783749, 8.559108], - [-12.78375, 8.555416], - [-12.789582, 8.552083], - [-12.790117, 8.549944], - [-12.791752, 8.549755], - [-12.792082, 8.549756], - [-12.792083, 8.54875], - [-12.792916, 8.547916] - ] - ], - "type": "Polygon" - }, - "id": 292, - "properties": { - "cc:admin:id": ["62"], - "cc:oBld:total": 120, - "cc:pop:fifteen-to-twenty-four": 1575.8643805309525, - "cc:pop:grid3-total": 6376.53561973946, - "cc:pop:kontur-total": 8408.510503115896, - "cc:pop:men": 4118.5411699542665, - "cc:pop:sixty-plus": 517.7447275637463, - "cc:pop:total": 8765.771492661013, - "cc:pop:under-five": 1454.1454158431166, - "cc:pop:women": 4647.230322706742, - "cc:pop:women-fiften-to-forty-nine": 2363.08709670123, - "cc:pop:wp-total": 6578.542436666858, - "cc:pop:wp-total-UN": 7640.2340779049055, - "cc:id": "292", - "cc:Name": "Mabora MCHP", - "cc:site": [-12.7381, 8.5531], - "user:parentName": "Koya", - "user:code": "OU_254961", - "user:orgUnitId": "fmkqsEx6MRo", - "user:level": "4", - "user:parentId": "pRHGAROvuyI" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.120999, 8.649], - [-12.1154, 8.6445], - [-12.112399, 8.642299], - [-12.1034, 8.6376], - [-12.100199, 8.636299], - [-12.0959, 8.6339], - [-12.092699, 8.632699], - [-12.0883, 8.6303], - [-12.084399, 8.628499], - [-12.080499, 8.625199], - [-12.0784, 8.6225], - [-12.0766, 8.6188], - [-12.0747, 8.6159], - [-12.072199, 8.613499], - [-12.069399, 8.611499], - [-12.0626, 8.6084], - [-12.060199, 8.607599], - [-12.056699, 8.606999], - [-12.054199, 8.605999], - [-12.051299, 8.603999], - [-12.0467, 8.5995], - [-12.045095, 8.597822], - [-12.041844, 8.6033], - [-12.038608, 8.606695], - [-12.035354, 8.614583], - [-12.030417, 8.614583], - [-12.027917, 8.612084], - [-12.026249, 8.617084], - [-12.022083, 8.620416], - [-12.027082, 8.62125], - [-12.028802, 8.62297], - [-12.024351, 8.629218], - [-12.017952, 8.633485], - [-12.017107, 8.634009], - [-12.016569, 8.634705], - [-12.016454, 8.635905], - [-12.016437, 8.635909], - [-12.016414, 8.636312], - [-12.016347, 8.637005], - [-12.010392, 8.637006], - [-12.013618, 8.644679], - [-12.00723, 8.647328], - [-12.010306, 8.654693], - [-12.005294, 8.659706], - [-12.008461, 8.667243], - [-12.003749, 8.667917], - [-11.99875, 8.669583], - [-11.99625, 8.678749], - [-11.998036, 8.681726], - [-11.998041, 8.681722], - [-11.998156, 8.681405], - [-11.999981, 8.679588], - [-12.000826, 8.678344], - [-12.001278, 8.677954], - [-12.002037, 8.677837], - [-12.003313, 8.678441], - [-12.0046, 8.6776], - [-12.008, 8.6767], - [-12.012099, 8.676999], - [-12.027799, 8.682499], - [-12.030699, 8.683199], - [-12.0337, 8.6835], - [-12.038299, 8.6835], - [-12.0428, 8.683099], - [-12.0457, 8.682399], - [-12.0503, 8.680799], - [-12.0547, 8.679899], - [-12.060699, 8.6797], - [-12.065099, 8.680199], - [-12.067899, 8.6812], - [-12.071199, 8.684499], - [-12.0752, 8.691899], - [-12.0786, 8.694099], - [-12.082499, 8.693899], - [-12.085299, 8.691799], - [-12.086399, 8.6882], - [-12.0851, 8.681], - [-12.085199, 8.6766], - [-12.0877, 8.671999], - [-12.0905, 8.669099], - [-12.0951, 8.6662], - [-12.105199, 8.6635], - [-12.1088, 8.661499], - [-12.112, 8.658799], - [-12.115099, 8.6558], - [-12.120999, 8.649] - ] - ], - "type": "Polygon" - }, - "id": 293, - "properties": { - "cc:admin:id": ["54"], - "cc:oBld:total": 173, - "cc:pop:fifteen-to-twenty-four": 1100.2276468092643, - "cc:pop:grid3-total": 6837.149526510828, - "cc:pop:kontur-total": 7021.3690256833415, - "cc:pop:men": 2787.960418983132, - "cc:pop:sixty-plus": 374.41782311857594, - "cc:pop:total": 5871.190076925677, - "cc:pop:under-five": 948.9752253600772, - "cc:pop:women": 3083.2296579425433, - "cc:pop:women-fiften-to-forty-nine": 1492.5252548248664, - "cc:pop:wp-total": 6769.081769359103, - "cc:pop:wp-total-UN": 7862.757723822172, - "cc:id": "293", - "cc:Name": "Maborie MCHP", - "cc:site": [-12.0682, 8.6506], - "user:parentName": "Kholifa Rowalla", - "user:code": "OU_268154", - "user:orgUnitId": "ApLCxUmnT6q", - "user:level": "4", - "user:parentId": "PQZJPIpTepd" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.316249, 9.166249], - [-12.310416, 9.15625], - [-12.304583, 9.152083], - [-12.306552, 9.150113], - [-12.306224, 9.150094], - [-12.305685, 9.149089], - [-12.305337, 9.147775], - [-12.304785, 9.14696], - [-12.304161, 9.144533], - [-12.303403, 9.143963], - [-12.303072, 9.143231], - [-12.303061, 9.143163], - [-12.30625, 9.14125], - [-12.312916, 9.140416], - [-12.312083, 9.137917], - [-12.312082, 9.137083], - [-12.308749, 9.132917], - [-12.302083, 9.130417], - [-12.299583, 9.12875], - [-12.302916, 9.117917], - [-12.301657, 9.116656], - [-12.302044, 9.116132], - [-12.302175, 9.114971], - [-12.301703, 9.113508], - [-12.294583, 9.112082], - [-12.293749, 9.108749], - [-12.292083, 9.10125], - [-12.290416, 9.097917], - [-12.284583, 9.097916], - [-12.28375, 9.095417], - [-12.288749, 9.092082], - [-12.289422, 9.08738], - [-12.290417, 9.087429], - [-12.291609, 9.087329], - [-12.293988, 9.086523], - [-12.296241, 9.08633], - [-12.300048, 9.085249], - [-12.300585, 9.084763], - [-12.301486, 9.083299], - [-12.303466, 9.08224], - [-12.305298, 9.080858], - [-12.305894, 9.080616], - [-12.305123, 9.080161], - [-12.30216, 9.079475], - [-12.299799, 9.08], - [-12.294599, 9.080099], - [-12.2849, 9.08], - [-12.2787, 9.080599], - [-12.2729, 9.082899], - [-12.266999, 9.0844], - [-12.2619, 9.086799], - [-12.258699, 9.0881], - [-12.2502, 9.092799], - [-12.2455, 9.096399], - [-12.2432, 9.097899], - [-12.2394, 9.099699], - [-12.235799, 9.1017], - [-12.231899, 9.1036], - [-12.228299, 9.1065], - [-12.224199, 9.1104], - [-12.2203, 9.114699], - [-12.2181, 9.1181], - [-12.216899, 9.1236], - [-12.214499, 9.1297], - [-12.214, 9.1334], - [-12.214099, 9.143999], - [-12.2136, 9.149199], - [-12.2114, 9.154499], - [-12.2107, 9.157999], - [-12.210695, 9.158461], - [-12.211169, 9.158488], - [-12.212529, 9.158747], - [-12.213687, 9.159678], - [-12.21445, 9.16078], - [-12.215818, 9.161742], - [-12.215755, 9.162579], - [-12.215249, 9.163746], - [-12.21519, 9.164161], - [-12.219582, 9.165416], - [-12.224582, 9.164582], - [-12.227083, 9.162917], - [-12.230043, 9.170315], - [-12.233255, 9.169392], - [-12.233458, 9.169322], - [-12.233814, 9.168776], - [-12.233685, 9.167102], - [-12.234868, 9.164577], - [-12.235375, 9.16382], - [-12.235523, 9.16254], - [-12.236004, 9.162233], - [-12.238119, 9.16166], - [-12.238258, 9.161554], - [-12.240416, 9.168749], - [-12.23875, 9.173749], - [-12.244582, 9.177916], - [-12.244583, 9.179582], - [-12.248749, 9.180416], - [-12.252082, 9.180417], - [-12.255416, 9.183749], - [-12.254583, 9.193749], - [-12.255417, 9.194582], - [-12.25625, 9.194583], - [-12.257083, 9.196249], - [-12.262082, 9.197082], - [-12.267588, 9.195706], - [-12.267824, 9.193789], - [-12.267825, 9.191552], - [-12.267437, 9.190067], - [-12.268583, 9.190775], - [-12.270409, 9.191487], - [-12.271283, 9.192015], - [-12.274792, 9.191963], - [-12.275044, 9.191993], - [-12.277083, 9.187917], - [-12.284583, 9.187917], - [-12.288762, 9.18911], - [-12.28896, 9.189791], - [-12.292082, 9.190416], - [-12.29375, 9.187083], - [-12.300416, 9.187916], - [-12.30125, 9.187083], - [-12.30375, 9.187916], - [-12.307082, 9.187082], - [-12.307083, 9.184582], - [-12.311249, 9.17625], - [-12.310109, 9.175109], - [-12.310837, 9.173844], - [-12.307896, 9.16875], - [-12.313749, 9.168749], - [-12.316249, 9.166249] - ] - ], - "type": "Polygon" - }, - "id": 294, - "properties": { - "cc:admin:id": ["118"], - "cc:oBld:total": 565, - "cc:pop:fifteen-to-twenty-four": 1187.1555666790725, - "cc:pop:grid3-total": 5278.435544404582, - "cc:pop:kontur-total": 7162.345680484918, - "cc:pop:men": 3019.02020963997, - "cc:pop:sixty-plus": 414.0478229957094, - "cc:pop:total": 6379.508493171923, - "cc:pop:under-five": 1002.168935849659, - "cc:pop:women": 3360.488283531954, - "cc:pop:women-fiften-to-forty-nine": 1646.025546999314, - "cc:pop:wp-total": 5887.102204434124, - "cc:pop:wp-total-UN": 6818.638755660598, - "cc:id": "294", - "cc:Name": "Mabunduka CHC", - "cc:site": [-12.2384, 9.1345], - "user:parentName": "Sanda Tendaren", - "user:code": "OU_193195", - "user:orgUnitId": "TmCsvdJLHoX", - "user:level": "4", - "user:parentId": "UhHipWG7J8b" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.239157, 8.475902], - [-13.238862, 8.475778], - [-13.23858, 8.475671], - [-13.237915, 8.475413], - [-13.23756, 8.475282], - [-13.237467, 8.475252], - [-13.237044, 8.475202], - [-13.236559, 8.47514], - [-13.236507, 8.475648], - [-13.235277, 8.475431], - [-13.234848, 8.474566], - [-13.233961, 8.475128], - [-13.231613, 8.475744], - [-13.230902, 8.476331], - [-13.230788, 8.476347], - [-13.230788, 8.476345], - [-13.231373, 8.475798], - [-13.231529, 8.474347], - [-13.230777, 8.473928], - [-13.230599, 8.473834], - [-13.230059, 8.473221], - [-13.229735, 8.47307], - [-13.229758, 8.47285], - [-13.229256, 8.473119], - [-13.22907, 8.472818], - [-13.228717, 8.472519], - [-13.228253, 8.472266], - [-13.227572, 8.47221], - [-13.227482, 8.472572], - [-13.227395, 8.473708], - [-13.227106, 8.474382], - [-13.22704, 8.474681], - [-13.227138, 8.475942], - [-13.2271, 8.476003], - [-13.227159, 8.476016], - [-13.227194, 8.476138], - [-13.227305, 8.476382], - [-13.227904, 8.477376], - [-13.22744, 8.477977], - [-13.226359, 8.478444], - [-13.225877, 8.478866], - [-13.225531, 8.478801], - [-13.225089, 8.478337], - [-13.225063, 8.47836], - [-13.225151, 8.479179], - [-13.225477, 8.479533], - [-13.225716, 8.480176], - [-13.227064, 8.481792], - [-13.226968, 8.482067], - [-13.22616, 8.481784], - [-13.225943, 8.482334], - [-13.225753, 8.482883], - [-13.226568, 8.483158], - [-13.226653, 8.482963], - [-13.227564, 8.483083], - [-13.227549, 8.483624], - [-13.227596, 8.4841], - [-13.228015, 8.484202], - [-13.228093, 8.484198], - [-13.228645, 8.484085], - [-13.228832, 8.485004], - [-13.228316, 8.485137], - [-13.228498, 8.485747], - [-13.228664, 8.486341], - [-13.230337, 8.485829], - [-13.230503, 8.486445], - [-13.231352, 8.486198], - [-13.231559, 8.486305], - [-13.233174, 8.486231], - [-13.233222, 8.485816], - [-13.233263, 8.485312], - [-13.234138, 8.48328], - [-13.234417, 8.483283], - [-13.234883, 8.483315], - [-13.235423, 8.483345], - [-13.235694, 8.47828], - [-13.235757, 8.478302], - [-13.236117, 8.478407], - [-13.23631, 8.478458], - [-13.236832, 8.478586], - [-13.237156, 8.478503], - [-13.237323, 8.478972], - [-13.23874, 8.478108], - [-13.23806, 8.477858], - [-13.238318, 8.477267], - [-13.238617, 8.477375], - [-13.238803, 8.476861], - [-13.238956, 8.476402], - [-13.239157, 8.475902] - ] - ], - "type": "Polygon" - }, - "id": 295, - "properties": { - "cc:admin:id": ["26"], - "cc:oBld:total": 2701, - "cc:pop:fifteen-to-twenty-four": 7013.7722018132345, - "cc:pop:grid3-total": 31665.904477539458, - "cc:pop:kontur-total": 41994.44063069069, - "cc:pop:men": 15278.31976702825, - "cc:pop:sixty-plus": 2380.0159048973737, - "cc:pop:total": 30538.076398036006, - "cc:pop:under-five": 3522.5755089244567, - "cc:pop:women": 15259.756631007758, - "cc:pop:women-fiften-to-forty-nine": 8179.814132946374, - "cc:pop:wp-total": 28439.03795462065, - "cc:pop:wp-total-UN": 32984.56075437068, - "cc:id": "295", - "cc:Name": "Macauley Satellite Hospital", - "cc:site": [-13.2283, 8.4795], - "user:parentName": "Freetown", - "user:code": "OU_278356", - "user:orgUnitId": "rIgJX4N0DGZ", - "user:level": "4", - "user:parentId": "C9uduqDZr9d" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.135482, 8.312083], - [-13.135453, 8.312033], - [-13.127917, 8.312032], - [-13.127916, 8.307084], - [-13.124878, 8.303286], - [-13.12764, 8.298501], - [-13.12375, 8.291762], - [-13.12375, 8.291709], - [-13.12764, 8.284969], - [-13.123735, 8.278203], - [-13.12764, 8.271438], - [-13.123735, 8.264671], - [-13.12764, 8.257906], - [-13.123735, 8.25114], - [-13.12764, 8.244375], - [-13.123735, 8.237608], - [-13.12764, 8.230843], - [-13.123734, 8.224077], - [-13.11875, 8.224076], - [-13.118749, 8.22125], - [-13.118112, 8.221313], - [-13.116569, 8.218643], - [-13.108758, 8.218643], - [-13.108189, 8.219626], - [-13.108158, 8.219607], - [-13.107006, 8.219531], - [-13.106664, 8.219368], - [-13.105279, 8.219365], - [-13.10466, 8.219525], - [-13.104189, 8.219325], - [-13.104146, 8.219097], - [-13.103212, 8.218323], - [-13.10318, 8.217022], - [-13.102864, 8.217267], - [-13.10186, 8.218111], - [-13.101664, 8.21836], - [-13.101653, 8.218353], - [-13.101111, 8.217314], - [-13.100044, 8.216582], - [-13.099545, 8.2165], - [-13.099288, 8.216095], - [-13.098922, 8.215968], - [-13.098211, 8.215657], - [-13.098178, 8.215268], - [-13.099191, 8.214713], - [-13.099179, 8.214511], - [-13.099665, 8.214294], - [-13.099811, 8.21414], - [-13.098419, 8.214381], - [-13.098318, 8.214025], - [-13.096558, 8.214114], - [-13.096545, 8.214108], - [-13.081798, 8.217936], - [-13.074364, 8.233176], - [-13.061241, 8.23821], - [-13.035415, 8.23346], - [-13.01848, 8.240421], - [-13.017391, 8.238637], - [-13.0175, 8.239203], - [-13.01742, 8.23958], - [-13.0182, 8.240375], - [-13.017651, 8.243579], - [-13.017186, 8.245699], - [-13.016325, 8.247158], - [-13.015463, 8.248948], - [-13.014338, 8.2512], - [-13.013382, 8.252785], - [-13.012736, 8.253367], - [-13.012217, 8.253653], - [-13.011422, 8.254647], - [-13.011223, 8.255574], - [-13.011753, 8.256634], - [-13.012548, 8.256435], - [-13.013476, 8.256105], - [-13.014933, 8.256105], - [-13.016988, 8.257098], - [-13.017983, 8.25796], - [-13.019373, 8.258821], - [-13.019904, 8.259948], - [-13.021031, 8.261075], - [-13.023681, 8.263393], - [-13.024344, 8.263925], - [-13.024637, 8.264667], - [-13.024604, 8.265819], - [-13.024332, 8.266838], - [-13.024502, 8.267686], - [-13.025281, 8.267687], - [-13.027385, 8.268432], - [-13.028539, 8.269246], - [-13.029761, 8.269858], - [-13.031457, 8.27023], - [-13.032809, 8.270608], - [-13.035553, 8.265857], - [-13.043365, 8.265857], - [-13.044563, 8.26793], - [-13.044583, 8.267917], - [-13.048319, 8.267917], - [-13.048956, 8.268899], - [-13.049993, 8.268959], - [-13.051515, 8.270658], - [-13.051971, 8.272255], - [-13.054812, 8.272912], - [-13.056368, 8.272148], - [-13.056433, 8.27217], - [-13.057001, 8.275007], - [-13.056998, 8.275629], - [-13.057157, 8.27579], - [-13.057916, 8.279583], - [-13.056161, 8.281777], - [-13.056322, 8.281681], - [-13.059918, 8.28685], - [-13.061726, 8.287118], - [-13.06185, 8.288535], - [-13.063529, 8.288802], - [-13.065582, 8.29216], - [-13.066376, 8.292308], - [-13.067082, 8.29125], - [-13.067623, 8.291249], - [-13.067527, 8.291139], - [-13.067274, 8.290108], - [-13.067513, 8.290014], - [-13.06875, 8.291249], - [-13.071249, 8.29125], - [-13.07375, 8.292084], - [-13.077082, 8.292916], - [-13.077083, 8.292083], - [-13.07974, 8.289958], - [-13.080112, 8.292835], - [-13.079593, 8.295353], - [-13.079491, 8.295783], - [-13.079195, 8.297167], - [-13.079066, 8.298079], - [-13.079302, 8.300051], - [-13.079526, 8.301867], - [-13.079538, 8.301937], - [-13.079672, 8.301962], - [-13.079803, 8.304075], - [-13.080526, 8.305094], - [-13.080298, 8.30571], - [-13.080351, 8.306275], - [-13.081478, 8.307297], - [-13.081531, 8.307377], - [-13.082092, 8.308035], - [-13.081621, 8.308403], - [-13.081507, 8.309187], - [-13.081027, 8.310199], - [-13.081406, 8.31103], - [-13.080763, 8.311871], - [-13.081008, 8.312981], - [-13.081247, 8.313076], - [-13.081024, 8.313756], - [-13.081443, 8.314959], - [-13.081446, 8.314963], - [-13.083057, 8.314289], - [-13.084911, 8.313321], - [-13.085276, 8.313146], - [-13.089535, 8.311234], - [-13.089843, 8.31108], - [-13.09031, 8.311243], - [-13.091083, 8.311851], - [-13.089955, 8.3142], - [-13.089151, 8.317635], - [-13.089856, 8.318126], - [-13.089737, 8.318596], - [-13.089432, 8.318959], - [-13.09426, 8.31796], - [-13.095534, 8.317354], - [-13.096426, 8.317248], - [-13.096487, 8.316756], - [-13.096063, 8.315918], - [-13.097508, 8.315638], - [-13.097747, 8.315959], - [-13.097756, 8.317245], - [-13.098203, 8.317903], - [-13.097426, 8.318647], - [-13.099624, 8.318118], - [-13.101368, 8.318147], - [-13.102585, 8.317991], - [-13.102585, 8.317992], - [-13.102188, 8.318635], - [-13.101702, 8.318905], - [-13.101735, 8.319583], - [-13.102917, 8.319584], - [-13.10875, 8.320417], - [-13.109582, 8.32125], - [-13.105417, 8.325417], - [-13.105417, 8.330416], - [-13.117082, 8.330417], - [-13.11625, 8.337083], - [-13.127082, 8.337083], - [-13.12625, 8.335416], - [-13.127916, 8.333749], - [-13.127917, 8.331249], - [-13.130416, 8.329583], - [-13.131249, 8.32625], - [-13.134582, 8.326249], - [-13.135416, 8.325416], - [-13.12875, 8.317917], - [-13.12875, 8.31375], - [-13.13125, 8.312084], - [-13.135482, 8.312083] - ] - ], - "type": "Polygon" - }, - "id": 296, - "properties": { - "cc:admin:id": ["112"], - "cc:oBld:total": 2513, - "cc:pop:fifteen-to-twenty-four": 4925.964687546915, - "cc:pop:grid3-total": 18595.516469066108, - "cc:pop:kontur-total": 21406.456940749962, - "cc:pop:men": 10799.689920404144, - "cc:pop:sixty-plus": 1698.9311675792887, - "cc:pop:total": 21739.0081798683, - "cc:pop:under-five": 2501.575905043718, - "cc:pop:women": 10939.318259464164, - "cc:pop:women-fiften-to-forty-nine": 5811.812163742352, - "cc:pop:wp-total": 16813.951536827248, - "cc:pop:wp-total-UN": 19503.777202109686, - "cc:id": "296", - "cc:Name": "MacDonald MCHP", - "cc:site": [-13.0796, 8.2837], - "user:parentName": "Rural Western Area", - "user:code": "OU_278387", - "user:orgUnitId": "FupvWBUFXr7", - "user:level": "4", - "user:parentId": "qtr8GGlm4gg" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.366199, 9.35], - [-12.362699, 9.345999], - [-12.360199, 9.344799], - [-12.355299, 9.343599], - [-12.3465, 9.3393], - [-12.341099, 9.334899], - [-12.3327, 9.3306], - [-12.329199, 9.329599], - [-12.3252, 9.3294], - [-12.3213, 9.329499], - [-12.317599, 9.3303], - [-12.313099, 9.3323], - [-12.3073, 9.333799], - [-12.3048, 9.335099], - [-12.2969, 9.342099], - [-12.2937, 9.343899], - [-12.288699, 9.3452], - [-12.283299, 9.3475], - [-12.279699, 9.3482], - [-12.2738, 9.348399], - [-12.2709, 9.3481], - [-12.2687, 9.3473], - [-12.2662, 9.344999], - [-12.264199, 9.340999], - [-12.259799, 9.3328], - [-12.256999, 9.3313], - [-12.254173, 9.331995], - [-12.254644, 9.333925], - [-12.255486, 9.334603], - [-12.257715, 9.333746], - [-12.258852, 9.333594], - [-12.259518, 9.333941], - [-12.260372, 9.336175], - [-12.261359, 9.335827], - [-12.261361, 9.335828], - [-12.261433, 9.336361], - [-12.260377, 9.337841], - [-12.260122, 9.339674], - [-12.2607, 9.340249], - [-12.262402, 9.340671], - [-12.262698, 9.341174], - [-12.262719, 9.341725], - [-12.262178, 9.342151], - [-12.261455, 9.342449], - [-12.261377, 9.342731], - [-12.262421, 9.343801], - [-12.262078, 9.344031], - [-12.262725, 9.34481], - [-12.262797, 9.344808], - [-12.262668, 9.346117], - [-12.262235, 9.346918], - [-12.261476, 9.347617], - [-12.260767, 9.347976], - [-12.259888, 9.348126], - [-12.259445, 9.348629], - [-12.259831, 9.349596], - [-12.261121, 9.348877], - [-12.262329, 9.348938], - [-12.263266, 9.348692], - [-12.264204, 9.348035], - [-12.264621, 9.349267], - [-12.265224, 9.35011], - [-12.265725, 9.352391], - [-12.266266, 9.353356], - [-12.267286, 9.354055], - [-12.267827, 9.353234], - [-12.268536, 9.352638], - [-12.268973, 9.352597], - [-12.270097, 9.353233], - [-12.27193, 9.349761], - [-12.272916, 9.349253], - [-12.272916, 9.350417], - [-12.27125, 9.352083], - [-12.269811, 9.359995], - [-12.271458, 9.359389], - [-12.272956, 9.359477], - [-12.274313, 9.359222], - [-12.274798, 9.358995], - [-12.275417, 9.362082], - [-12.278749, 9.36375], - [-12.275963, 9.368627], - [-12.276187, 9.368978], - [-12.276469, 9.369124], - [-12.277534, 9.369595], - [-12.278278, 9.369972], - [-12.278113, 9.370356], - [-12.277684, 9.371114], - [-12.278466, 9.372303], - [-12.279033, 9.372784], - [-12.278425, 9.373159], - [-12.277396, 9.375709], - [-12.276588, 9.378085], - [-12.281286, 9.380435], - [-12.281286, 9.380437], - [-12.280871, 9.380719], - [-12.281628, 9.382614], - [-12.282095, 9.382806], - [-12.282896, 9.383076], - [-12.283031, 9.383524], - [-12.282932, 9.383747], - [-12.290416, 9.382917], - [-12.291629, 9.383321], - [-12.291612, 9.383415], - [-12.290408, 9.386063], - [-12.290418, 9.387157], - [-12.290079, 9.388269], - [-12.289679, 9.390996], - [-12.295417, 9.394582], - [-12.298579, 9.394583], - [-12.298326, 9.394905], - [-12.298287, 9.395218], - [-12.297785, 9.395723], - [-12.297288, 9.397276], - [-12.2953, 9.399314], - [-12.294435, 9.399994], - [-12.295425, 9.399931], - [-12.297452, 9.400209], - [-12.298641, 9.400106], - [-12.299811, 9.400535], - [-12.301565, 9.400763], - [-12.30315, 9.40053], - [-12.30464, 9.399781], - [-12.304817, 9.399807], - [-12.306249, 9.406249], - [-12.30375, 9.409583], - [-12.30375, 9.411249], - [-12.308549, 9.41125], - [-12.307876, 9.411916], - [-12.308228, 9.412791], - [-12.308275, 9.414193], - [-12.308581, 9.415466], - [-12.30898, 9.41597], - [-12.307936, 9.416967], - [-12.30918, 9.417054], - [-12.308751, 9.41817], - [-12.3091, 9.418892], - [-12.309116, 9.418934], - [-12.312799, 9.4186], - [-12.315, 9.417899], - [-12.321599, 9.414599], - [-12.3248, 9.411399], - [-12.328599, 9.4037], - [-12.330199, 9.397], - [-12.332, 9.392499], - [-12.3327, 9.388799], - [-12.332999, 9.381], - [-12.333799, 9.3775], - [-12.336099, 9.3733], - [-12.337599, 9.3713], - [-12.3434, 9.367899], - [-12.3459, 9.366999], - [-12.3501, 9.366199], - [-12.356199, 9.3637], - [-12.361399, 9.3625], - [-12.363699, 9.361599], - [-12.364999, 9.3552], - [-12.366199, 9.35] - ] - ], - "type": "Polygon" - }, - "id": 297, - "properties": { - "cc:admin:id": ["116"], - "cc:oBld:total": 396, - "cc:pop:fifteen-to-twenty-four": 1547.6936145937334, - "cc:pop:grid3-total": 7879.777553083095, - "cc:pop:kontur-total": 8684.2508101676, - "cc:pop:men": 3965.8195540959805, - "cc:pop:sixty-plus": 517.7421162540717, - "cc:pop:total": 8354.516307028454, - "cc:pop:under-five": 1347.8418435280573, - "cc:pop:women": 4388.696752932474, - "cc:pop:women-fiften-to-forty-nine": 2123.937151571496, - "cc:pop:wp-total": 7426.1025579978495, - "cc:pop:wp-total-UN": 8603.62598888945, - "cc:id": "297", - "cc:Name": "Madina Fullah CHP", - "cc:site": [-12.3182, 9.3577], - "user:parentName": "Sanda Loko", - "user:code": "OU_193244", - "user:orgUnitId": "pJj2r2HElLE", - "user:level": "4", - "user:parentId": "WXnNDWTiE9r" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.052099, 7.360299], - [-12.0497, 7.3573], - [-12.047199, 7.354999], - [-12.044499, 7.352999], - [-12.040599, 7.350899], - [-12.038299, 7.348599], - [-12.0356, 7.3442], - [-12.034699, 7.3432], - [-12.0323, 7.3418], - [-12.029, 7.3409], - [-12.0273, 7.3399], - [-12.026299, 7.338199], - [-12.0253, 7.3348], - [-12.0243, 7.3326], - [-12.0218, 7.3298], - [-12.0181, 7.327], - [-12.014199, 7.325099], - [-12.011399, 7.322999], - [-12.008699, 7.320499], - [-12.0015, 7.3135], - [-11.9984, 7.3102], - [-11.9964, 7.3075], - [-11.994699, 7.304399], - [-11.992799, 7.3021], - [-11.989899, 7.300899], - [-11.983499, 7.298899], - [-11.9801, 7.2982], - [-11.9781, 7.298799], - [-11.973399, 7.3008], - [-11.969099, 7.3032], - [-11.9621, 7.306699], - [-11.959699, 7.3074], - [-11.953499, 7.307799], - [-11.934599, 7.3076], - [-11.9315, 7.307799], - [-11.9285, 7.308499], - [-11.9242, 7.310699], - [-11.921, 7.311999], - [-11.916799, 7.3145], - [-11.9093, 7.317999], - [-11.9054, 7.318799], - [-11.8943, 7.318899], - [-11.8903, 7.319199], - [-11.887499, 7.3198], - [-11.883099, 7.3217], - [-11.8796, 7.322199], - [-11.877099, 7.321899], - [-11.8747, 7.3211], - [-11.8718, 7.325], - [-11.8704, 7.329999], - [-11.877199, 7.340799], - [-11.882899, 7.348899], - [-11.884799, 7.354599], - [-11.885199, 7.358599], - [-11.884099, 7.3625], - [-11.8759, 7.3771], - [-11.8751, 7.382199], - [-11.8754, 7.3861], - [-11.8775, 7.3933], - [-11.878599, 7.406799], - [-11.8792, 7.4107], - [-11.8804, 7.413899], - [-11.883599, 7.417699], - [-11.887, 7.42], - [-11.893, 7.4223], - [-11.896, 7.4252], - [-11.897299, 7.4281], - [-11.8973, 7.430049], - [-11.903749, 7.432916], - [-11.904582, 7.434583], - [-11.900417, 7.437917], - [-11.900416, 7.447083], - [-11.89875, 7.447084], - [-11.895417, 7.460416], - [-11.895022, 7.460304], - [-11.892118, 7.465336], - [-11.892917, 7.465417], - [-11.900078, 7.466718], - [-11.901509, 7.466187], - [-11.903353, 7.466394], - [-11.903948, 7.466278], - [-11.904143, 7.466338], - [-11.904583, 7.464583], - [-11.907916, 7.46125], - [-11.914795, 7.460562], - [-11.914885, 7.460719], - [-11.91098, 7.467485], - [-11.914595, 7.473748], - [-11.90875, 7.474584], - [-11.908749, 7.477916], - [-11.90733, 7.481465], - [-11.908391, 7.48133], - [-11.910352, 7.480752], - [-11.912344, 7.480378], - [-11.915015, 7.480097], - [-11.915416, 7.480094], - [-11.915417, 7.487083], - [-11.920417, 7.48875], - [-11.921249, 7.490417], - [-11.92125, 7.494173], - [-11.924, 7.492199], - [-11.927199, 7.489], - [-11.9289, 7.486799], - [-11.9308, 7.4831], - [-11.9341, 7.48], - [-11.940799, 7.478], - [-11.9453, 7.475899], - [-11.948099, 7.4753], - [-11.954999, 7.4751], - [-11.957899, 7.475399], - [-11.9605, 7.4763], - [-11.967199, 7.479799], - [-11.973099, 7.484199], - [-11.974999, 7.485399], - [-11.977299, 7.486099], - [-11.9832, 7.486499], - [-12.002499, 7.4863], - [-12.008499, 7.486499], - [-12.011799, 7.486999], - [-12.0139, 7.4877], - [-12.019799, 7.490699], - [-12.022799, 7.4935], - [-12.027199, 7.502499], - [-12.0283, 7.5076], - [-12.0314, 7.514499], - [-12.035099, 7.5121], - [-12.037699, 7.509299], - [-12.0389, 7.505499], - [-12.039199, 7.501499], - [-12.0387, 7.4767], - [-12.038099, 7.472799], - [-12.035799, 7.467399], - [-12.034099, 7.461599], - [-12.032399, 7.458399], - [-12.028599, 7.453299], - [-12.027499, 7.449899], - [-12.027099, 7.4454], - [-12.0237, 7.4453], - [-12.0212, 7.444599], - [-12.016799, 7.440699], - [-12.015999, 7.438299], - [-12.0152, 7.4324], - [-12.014599, 7.430199], - [-12.0106, 7.4227], - [-12.0061, 7.4169], - [-12.0049, 7.414899], - [-12.004199, 7.411499], - [-12.004, 7.404699], - [-12.0048, 7.4011], - [-12.006599, 7.3981], - [-12.0084, 7.396299], - [-12.011499, 7.3942], - [-12.0136, 7.393499], - [-12.019899, 7.393], - [-12.023199, 7.3922], - [-12.029999, 7.389], - [-12.0321, 7.387599], - [-12.0358, 7.383599], - [-12.039299, 7.3774], - [-12.0434, 7.371999], - [-12.0461, 7.366799], - [-12.0487, 7.363599], - [-12.052099, 7.360299] - ] - ], - "type": "Polygon" - }, - "id": 298, - "properties": { - "cc:admin:id": ["10"], - "cc:oBld:total": 318, - "cc:pop:fifteen-to-twenty-four": 4450.718296745401, - "cc:pop:grid3-total": 19385.30200622025, - "cc:pop:kontur-total": 23868.48172880056, - "cc:pop:men": 11793.71304563867, - "cc:pop:sixty-plus": 1733.504287977342, - "cc:pop:total": 24458.093526625693, - "cc:pop:under-five": 4085.991002704347, - "cc:pop:women": 12664.380480987023, - "cc:pop:women-fiften-to-forty-nine": 6148.302175654788, - "cc:pop:wp-total": 20645.724011268183, - "cc:pop:wp-total-UN": 23933.1680506729, - "cc:id": "298", - "cc:Name": "Madina Gbonkobor MCHP", - "cc:site": [-11.9492, 7.4637], - "user:parentName": "Bum", - "user:code": "OU_226223", - "user:orgUnitId": "SZrG4yHGV4x", - "user:level": "4", - "user:parentId": "iUauWFeH8Qp" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.100417, 9.067082], - [-12.100416, 9.064582], - [-12.095417, 9.054583], - [-12.093325, 9.055628], - [-12.093518, 9.054091], - [-12.093215, 9.052375], - [-12.093311, 9.052353], - [-12.093842, 9.050909], - [-12.093849, 9.050365], - [-12.094517, 9.049518], - [-12.091249, 9.04625], - [-12.085417, 9.047082], - [-12.083749, 9.044583], - [-12.080416, 9.047916], - [-12.07875, 9.046249], - [-12.077916, 9.044583], - [-12.075417, 9.043749], - [-12.07375, 9.042083], - [-12.073749, 9.039583], - [-12.06625, 9.042916], - [-12.06375, 9.03875], - [-12.063749, 9.03625], - [-12.059583, 9.037916], - [-12.055667, 9.038569], - [-12.055715, 9.038157], - [-12.056369, 9.036917], - [-12.057586, 9.035701], - [-12.059406, 9.034221], - [-12.05965, 9.033927], - [-12.055485, 9.030357], - [-12.054251, 9.031499], - [-12.05375, 9.031249], - [-12.048032, 9.025532], - [-12.047999, 9.0268], - [-12.0477, 9.029599], - [-12.047, 9.031799], - [-12.045799, 9.0337], - [-12.0424, 9.037999], - [-12.041399, 9.04], - [-12.040899, 9.0421], - [-12.0404, 9.047399], - [-12.0398, 9.049999], - [-12.037799, 9.0545], - [-12.0365, 9.060299], - [-12.0352, 9.0653], - [-12.036199, 9.069299], - [-12.036099, 9.072599], - [-12.031, 9.0839], - [-12.031, 9.087599], - [-12.032799, 9.091699], - [-12.033299, 9.095], - [-12.032999, 9.098], - [-12.030799, 9.1037], - [-12.030299, 9.1075], - [-12.0301, 9.113299], - [-12.0294, 9.116999], - [-12.0273, 9.121399], - [-12.025999, 9.1246], - [-12.023099, 9.1301], - [-12.021199, 9.133199], - [-12.0187, 9.135199], - [-12.018476, 9.135312], - [-12.018679, 9.135656], - [-12.025416, 9.130417], - [-12.029583, 9.130417], - [-12.030038, 9.132239], - [-12.029129, 9.133738], - [-12.029448, 9.136573], - [-12.029205, 9.140774], - [-12.028956, 9.144076], - [-12.027755, 9.14899], - [-12.026382, 9.150007], - [-12.025703, 9.15033], - [-12.027083, 9.151249], - [-12.038749, 9.150416], - [-12.040417, 9.147083], - [-12.047082, 9.147917], - [-12.049583, 9.149582], - [-12.051738, 9.149045], - [-12.053193, 9.150733], - [-12.053473, 9.15102], - [-12.05466, 9.151423], - [-12.056138, 9.151345], - [-12.057348, 9.151638], - [-12.057847, 9.151481], - [-12.058712, 9.151877], - [-12.058952, 9.151572], - [-12.059227, 9.151503], - [-12.061811, 9.151552], - [-12.062374, 9.151121], - [-12.063236, 9.151115], - [-12.063383, 9.152916], - [-12.063439, 9.153604], - [-12.064606, 9.153798], - [-12.065298, 9.153623], - [-12.066249, 9.153669], - [-12.06625, 9.152916], - [-12.067076, 9.1463], - [-12.06711, 9.146276], - [-12.06125, 9.140417], - [-12.06125, 9.139582], - [-12.067083, 9.127917], - [-12.071249, 9.123749], - [-12.07125, 9.122083], - [-12.077083, 9.122083], - [-12.082916, 9.125416], - [-12.082917, 9.120417], - [-12.083749, 9.11875], - [-12.087082, 9.118749], - [-12.081524, 9.11319], - [-12.081825, 9.110898], - [-12.083749, 9.110416], - [-12.084583, 9.10625], - [-12.088989, 9.09964], - [-12.08606, 9.095723], - [-12.086045, 9.095731], - [-12.085416, 9.095416], - [-12.084318, 9.092671], - [-12.08471, 9.092542], - [-12.086218, 9.093203], - [-12.087414, 9.093214], - [-12.08789, 9.093127], - [-12.089017, 9.092839], - [-12.089701, 9.092506], - [-12.091403, 9.090981], - [-12.092266, 9.089767], - [-12.092441, 9.089185], - [-12.095408, 9.087773], - [-12.096179, 9.08686], - [-12.096459, 9.085698], - [-12.096383, 9.084775], - [-12.09125, 9.085416], - [-12.090417, 9.082083], - [-12.092082, 9.077917], - [-12.094582, 9.077082], - [-12.094582, 9.070417], - [-12.092084, 9.067083], - [-12.100417, 9.067082] - ] - ], - "type": "Polygon" - }, - "id": 299, - "properties": { - "cc:admin:id": ["32"], - "cc:oBld:total": 328, - "cc:pop:fifteen-to-twenty-four": 873.8439575966304, - "cc:pop:grid3-total": 4044.7703364584295, - "cc:pop:kontur-total": 4495.646663056575, - "cc:pop:men": 2172.802186321794, - "cc:pop:sixty-plus": 313.68475480341107, - "cc:pop:total": 4591.321513856772, - "cc:pop:under-five": 725.5805138732743, - "cc:pop:women": 2418.5193275349766, - "cc:pop:women-fiften-to-forty-nine": 1180.8137495809756, - "cc:pop:wp-total": 4383.548585437802, - "cc:pop:wp-total-UN": 5092.988288916014, - "cc:id": "299", - "cc:Name": "Madina Loko CHP", - "cc:site": [-12.0513, 9.094], - "user:parentName": "Gbendembu Ngowahun", - "user:code": "OU_193283", - "user:orgUnitId": "I48Qu6R0sGm", - "user:level": "4", - "user:parentId": "BXJdOLvUrZB" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.660899, 9.124899], - [-12.660599, 9.120699], - [-12.657899, 9.112199], - [-12.6577, 9.1069], - [-12.658899, 9.103471], - [-12.658126, 9.103746], - [-12.657213, 9.104681], - [-12.656928, 9.105306], - [-12.656698, 9.105609], - [-12.655416, 9.106249], - [-12.649869, 9.10625], - [-12.649033, 9.105714], - [-12.64844, 9.104859], - [-12.647607, 9.104483], - [-12.646646, 9.104063], - [-12.646264, 9.103365], - [-12.645133, 9.102083], - [-12.640518, 9.102083], - [-12.640535, 9.10428], - [-12.640586, 9.104413], - [-12.639583, 9.105416], - [-12.63125, 9.107916], - [-12.629, 9.098167], - [-12.630693, 9.096304], - [-12.627083, 9.09125], - [-12.627768, 9.088506], - [-12.627507, 9.088268], - [-12.627219, 9.087221], - [-12.623886, 9.083887], - [-12.623678, 9.08413], - [-12.62125, 9.082916], - [-12.617916, 9.07875], - [-12.609583, 9.083749], - [-12.601249, 9.077083], - [-12.596392, 9.077777], - [-12.596369, 9.077658], - [-12.594495, 9.077347], - [-12.592804, 9.075682], - [-12.59207, 9.075417], - [-12.579583, 9.075417], - [-12.575417, 9.07875], - [-12.575417, 9.089122], - [-12.575415, 9.089123], - [-12.572289, 9.083707], - [-12.576166, 9.076991], - [-12.575155, 9.075701], - [-12.573922, 9.075218], - [-12.573374, 9.074693], - [-12.572147, 9.074255], - [-12.571865, 9.074254], - [-12.571249, 9.06625], - [-12.567082, 9.062917], - [-12.561008, 9.062916], - [-12.561039, 9.061301], - [-12.561878, 9.058791], - [-12.563424, 9.057313], - [-12.566079, 9.055744], - [-12.567547, 9.05527], - [-12.570172, 9.054846], - [-12.572077, 9.054323], - [-12.572932, 9.054043], - [-12.573525, 9.053514], - [-12.57356, 9.053069], - [-12.573193, 9.052071], - [-12.572982, 9.050816], - [-12.573031, 9.049993], - [-12.573702, 9.047358], - [-12.574478, 9.046529], - [-12.576052, 9.044145], - [-12.579885, 9.041043], - [-12.580207, 9.040822], - [-12.580636, 9.040932], - [-12.581705, 9.040039], - [-12.582637, 9.038359], - [-12.582525, 9.037544], - [-12.583442, 9.034993], - [-12.583489, 9.033791], - [-12.583604, 9.033102], - [-12.584059, 9.032056], - [-12.58542, 9.029966], - [-12.586477, 9.029145], - [-12.587385, 9.028746], - [-12.588241, 9.028099], - [-12.589299, 9.026408], - [-12.589954, 9.024616], - [-12.590635, 9.02347], - [-12.591878, 9.022354], - [-12.592534, 9.02208], - [-12.594926, 9.021894], - [-12.596049, 9.021967], - [-12.598164, 9.021732], - [-12.600395, 9.020761], - [-12.603506, 9.020562], - [-12.604463, 9.020289], - [-12.605786, 9.01948], - [-12.606227, 9.019007], - [-12.606795, 9.017874], - [-12.608307, 9.015895], - [-12.608748, 9.015597], - [-12.611724, 9.015032], - [-12.609399, 9.013999], - [-12.6023, 9.011799], - [-12.598499, 9.0092], - [-12.595099, 9.01], - [-12.589799, 9.0125], - [-12.584299, 9.0139], - [-12.581499, 9.0153], - [-12.576499, 9.0193], - [-12.571999, 9.0215], - [-12.565699, 9.0263], - [-12.5547, 9.037999], - [-12.550199, 9.0418], - [-12.5452, 9.045299], - [-12.5424, 9.048499], - [-12.5413, 9.0528], - [-12.5416, 9.056699], - [-12.543, 9.0603], - [-12.5466, 9.0664], - [-12.546599, 9.0702], - [-12.544099, 9.0738], - [-12.5339, 9.080399], - [-12.53, 9.0799], - [-12.5279, 9.076899], - [-12.528499, 9.0735], - [-12.529899, 9.0707], - [-12.527199, 9.0682], - [-12.522399, 9.0671], - [-12.5187, 9.0677], - [-12.5162, 9.0694], - [-12.513199, 9.0752], - [-12.510799, 9.078099], - [-12.5076, 9.079899], - [-12.503899, 9.079599], - [-12.5021, 9.0779], - [-12.501451, 9.077012], - [-12.501182, 9.077516], - [-12.500347, 9.078382], - [-12.499199, 9.078987], - [-12.498437, 9.079146], - [-12.496601, 9.079181], - [-12.491965, 9.078926], - [-12.490845, 9.07961], - [-12.489878, 9.081725], - [-12.490383, 9.083048], - [-12.491097, 9.083861], - [-12.491537, 9.084642], - [-12.492174, 9.085142], - [-12.492986, 9.086347], - [-12.492899, 9.087376], - [-12.492624, 9.088299], - [-12.490845, 9.091303], - [-12.488933, 9.0938], - [-12.488648, 9.095112], - [-12.488997, 9.096751], - [-12.49034, 9.099093], - [-12.491861, 9.10109], - [-12.492409, 9.101091], - [-12.493208, 9.102475], - [-12.495862, 9.105062], - [-12.498979, 9.107426], - [-12.499866, 9.107862], - [-12.501036, 9.108131], - [-12.501035, 9.108132], - [-12.500142, 9.108191], - [-12.500199, 9.108304], - [-12.501694, 9.10838], - [-12.502249, 9.108542], - [-12.502407, 9.108682], - [-12.502206, 9.108876], - [-12.502424, 9.108914], - [-12.502958, 9.108639], - [-12.503422, 9.109168], - [-12.504237, 9.109478], - [-12.504473, 9.109785], - [-12.504503, 9.110437], - [-12.504002, 9.111917], - [-12.502809, 9.114158], - [-12.501435, 9.116013], - [-12.500056, 9.117722], - [-12.499756, 9.118013], - [-12.506927, 9.118014], - [-12.508582, 9.120877], - [-12.514582, 9.120416], - [-12.517304, 9.11715], - [-12.517306, 9.11715], - [-12.519752, 9.121389], - [-12.515846, 9.128154], - [-12.519753, 9.134919], - [-12.527565, 9.13492], - [-12.53147, 9.141686], - [-12.527565, 9.148452], - [-12.53147, 9.155217], - [-12.537103, 9.155218], - [-12.537904, 9.155568], - [-12.539274, 9.15569], - [-12.539513, 9.155617], - [-12.543189, 9.161983], - [-12.543749, 9.161984], - [-12.543749, 9.16375], - [-12.537916, 9.164583], - [-12.534583, 9.167917], - [-12.533933, 9.171168], - [-12.537324, 9.173549], - [-12.540048, 9.174234], - [-12.540877, 9.174057], - [-12.54254, 9.174424], - [-12.546056, 9.17338], - [-12.546357, 9.17342], - [-12.548162, 9.17424], - [-12.550463, 9.174415], - [-12.551805, 9.175082], - [-12.554675, 9.175231], - [-12.556449, 9.175657], - [-12.557916, 9.175746], - [-12.557917, 9.183749], - [-12.558821, 9.185107], - [-12.558682, 9.185108], - [-12.557665, 9.185276], - [-12.556203, 9.185899], - [-12.554955, 9.188059], - [-12.558862, 9.194824], - [-12.562555, 9.194825], - [-12.562083, 9.195417], - [-12.562083, 9.202916], - [-12.56392, 9.206589], - [-12.569998, 9.20659], - [-12.569431, 9.20787], - [-12.568034, 9.210084], - [-12.565298, 9.21144], - [-12.563502, 9.212907], - [-12.563407, 9.213703], - [-12.563005, 9.214621], - [-12.5668, 9.2128], - [-12.5708, 9.2125], - [-12.5747, 9.2129], - [-12.580599, 9.214799], - [-12.584699, 9.215599], - [-12.589, 9.215699], - [-12.593299, 9.215099], - [-12.5971, 9.213299], - [-12.605599, 9.2065], - [-12.611999, 9.203], - [-12.6155, 9.201599], - [-12.6208, 9.200099], - [-12.6306, 9.196699], - [-12.6332, 9.195499], - [-12.6368, 9.192899], - [-12.6423, 9.187799], - [-12.648599, 9.1813], - [-12.651199, 9.1778], - [-12.652699, 9.1744], - [-12.653599, 9.169899], - [-12.653299, 9.166399], - [-12.6513, 9.1582], - [-12.6509, 9.1553], - [-12.6507, 9.1508], - [-12.650999, 9.1465], - [-12.652, 9.1434], - [-12.656299, 9.138], - [-12.6579, 9.135099], - [-12.6596, 9.130799], - [-12.660899, 9.124899] - ] - ], - "type": "Polygon" - }, - "id": 300, - "properties": { - "cc:admin:id": ["117"], - "cc:oBld:total": 103, - "cc:pop:fifteen-to-twenty-four": 1451.7508681192828, - "cc:pop:grid3-total": 5927.5657081348845, - "cc:pop:kontur-total": 8305.010779382346, - "cc:pop:men": 3653.1975675944327, - "cc:pop:sixty-plus": 507.0595956019397, - "cc:pop:total": 7899.685533864066, - "cc:pop:under-five": 1295.8151288038132, - "cc:pop:women": 4246.487966269631, - "cc:pop:women-fiften-to-forty-nine": 2094.52056286184, - "cc:pop:wp-total": 6846.467202187134, - "cc:pop:wp-total-UN": 7932.216246244769, - "cc:id": "300", - "cc:Name": "Madina MCHP", - "cc:site": [-12.63086, 9.15972], - "user:parentName": "Buya Romende", - "user:code": "OU_255022", - "user:orgUnitId": "kFScvrF3wPo", - "user:level": "4", - "user:parentId": "Pc3JTyqnsmL" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.015599, 9.088999], - [-13.0121, 9.0845], - [-13.010099, 9.082699], - [-13.007199, 9.0808], - [-13.0014, 9.0794], - [-12.9992, 9.0784], - [-12.995, 9.074899], - [-12.992799, 9.070599], - [-12.992399, 9.066699], - [-12.9923, 9.0575], - [-12.9908, 9.0526], - [-12.987699, 9.049], - [-12.985, 9.0475], - [-12.9817, 9.0473], - [-12.9768, 9.049299], - [-12.972299, 9.0501], - [-12.9682, 9.0501], - [-12.9643, 9.0493], - [-12.9587, 9.053899], - [-12.956, 9.057199], - [-12.954099, 9.061], - [-12.949999, 9.0668], - [-12.9494, 9.069499], - [-12.950899, 9.073499], - [-12.951199, 9.075799], - [-12.950599, 9.079799], - [-12.947499, 9.084], - [-12.944599, 9.0863], - [-12.941399, 9.0884], - [-12.937699, 9.0943], - [-12.936, 9.098199], - [-12.934099, 9.1018], - [-12.932299, 9.1057], - [-12.929899, 9.109], - [-12.9229, 9.116099], - [-12.9204, 9.118899], - [-12.9189, 9.121199], - [-12.917499, 9.1243], - [-12.915199, 9.1286], - [-12.913899, 9.1317], - [-12.9114, 9.136999], - [-12.910299, 9.1421], - [-12.907898, 9.147202], - [-12.906699, 9.1504], - [-12.9045, 9.154799], - [-12.9035, 9.159799], - [-12.902499, 9.162099], - [-12.899699, 9.1645], - [-12.897, 9.165299], - [-12.8928, 9.165599], - [-12.8905, 9.1662], - [-12.8889, 9.1683], - [-12.8886, 9.172799], - [-12.890299, 9.175799], - [-12.896599, 9.1779], - [-12.898899, 9.180099], - [-12.900099, 9.1833], - [-12.899999, 9.1864], - [-12.899399, 9.1884], - [-12.897399, 9.192], - [-12.8955, 9.195899], - [-12.893099, 9.1987], - [-12.8911, 9.200599], - [-12.8887, 9.201899], - [-12.883199, 9.2039], - [-12.8818, 9.206], - [-12.880799, 9.2099], - [-12.8769, 9.218099], - [-12.8743, 9.221399], - [-12.8778, 9.2238], - [-12.8802, 9.2246], - [-12.8852, 9.2259], - [-12.887599, 9.2274], - [-12.888899, 9.2296], - [-12.889399, 9.232599], - [-12.888799, 9.236099], - [-12.887299, 9.2383], - [-12.8838, 9.242499], - [-12.8827, 9.2445], - [-12.8821, 9.248], - [-12.882199, 9.252099], - [-12.8832, 9.2555], - [-12.8852, 9.259], - [-12.888199, 9.265499], - [-12.8888, 9.267599], - [-12.8919, 9.271099], - [-12.8931, 9.2703], - [-12.9007, 9.271], - [-12.916499, 9.282599], - [-12.9265, 9.2865], - [-12.935099, 9.286699], - [-12.943799, 9.2756], - [-12.952399, 9.2493], - [-12.958799, 9.235299], - [-12.9542, 9.1898], - [-12.956199, 9.1822], - [-12.9702, 9.171799], - [-12.973199, 9.165099], - [-12.9734, 9.158899], - [-12.980899, 9.1324], - [-12.9916, 9.112799], - [-13.0021, 9.0974], - [-13.011799, 9.0909], - [-13.015599, 9.088999] - ] - ], - "type": "Polygon" - }, - "id": 302, - "properties": { - "cc:admin:id": ["34"], - "cc:oBld:total": 3020, - "cc:pop:fifteen-to-twenty-four": 5317.923974556117, - "cc:pop:grid3-total": 29237.70447769756, - "cc:pop:kontur-total": 34604.36801167716, - "cc:pop:men": 14181.83837488727, - "cc:pop:sixty-plus": 1785.9192349132027, - "cc:pop:total": 29453.585757440687, - "cc:pop:under-five": 4617.066623729841, - "cc:pop:women": 15271.747382553413, - "cc:pop:women-fiften-to-forty-nine": 7401.458894392236, - "cc:pop:wp-total": 25398.492785610437, - "cc:pop:wp-total-UN": 29465.05944473187, - "cc:id": "302", - "cc:Name": "Mafaray CHP", - "cc:site": [-12.9192, 9.2171], - "user:parentName": "Gbinleh Dixion", - "user:code": "OU_211215", - "user:orgUnitId": "OjRCvy71kAL", - "user:level": "4", - "user:parentId": "qIRCo0MfuGb" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.940099, 8.571399], - [-12.939599, 8.570399], - [-12.9376, 8.5699], - [-12.9357, 8.569899], - [-12.935699, 8.569299], - [-12.931299, 8.5665], - [-12.9293, 8.566499], - [-12.9282, 8.566], - [-12.9274, 8.5646], - [-12.927399, 8.5635], - [-12.9265, 8.563199], - [-12.926299, 8.5621], - [-12.9243, 8.561499], - [-12.922499, 8.5601], - [-12.915699, 8.5603], - [-12.9028, 8.560399], - [-12.8952, 8.553], - [-12.891499, 8.556699], - [-12.8853, 8.557199], - [-12.8823, 8.557799], - [-12.879599, 8.5588], - [-12.873599, 8.5622], - [-12.869599, 8.5635], - [-12.8653, 8.563999], - [-12.8579, 8.564199], - [-12.852399, 8.5623], - [-12.8476, 8.5625], - [-12.842899, 8.5642], - [-12.825899, 8.5645], - [-12.8047, 8.565799], - [-12.787999, 8.5649], - [-12.7818, 8.566099], - [-12.777399, 8.5682], - [-12.773099, 8.5713], - [-12.758199, 8.5869], - [-12.750099, 8.5931], - [-12.745599, 8.5954], - [-12.740017, 8.597118], - [-12.742082, 8.60125], - [-12.742917, 8.607083], - [-12.746249, 8.607916], - [-12.746249, 8.608749], - [-12.744583, 8.60875], - [-12.742083, 8.61125], - [-12.74125, 8.614583], - [-12.739583, 8.615417], - [-12.739288, 8.616888], - [-12.739105, 8.617022], - [-12.738837, 8.617346], - [-12.740416, 8.622084], - [-12.73625, 8.62625], - [-12.734582, 8.630416], - [-12.732083, 8.63125], - [-12.734582, 8.634583], - [-12.73375, 8.63625], - [-12.73375, 8.639833], - [-12.73577, 8.640166], - [-12.736834, 8.640523], - [-12.737192, 8.640841], - [-12.73877, 8.641504], - [-12.739039, 8.641598], - [-12.738759, 8.641884], - [-12.734336, 8.645778], - [-12.733912, 8.646325], - [-12.732896, 8.6489], - [-12.733339, 8.649181], - [-12.734727, 8.650686], - [-12.735831, 8.651144], - [-12.738468, 8.651672], - [-12.740767, 8.652115], - [-12.742916, 8.651454], - [-12.742917, 8.662083], - [-12.74875, 8.660417], - [-12.750416, 8.664583], - [-12.747083, 8.672083], - [-12.747083, 8.676249], - [-12.754068, 8.67625], - [-12.753878, 8.676936], - [-12.75409, 8.677404], - [-12.75428, 8.678095], - [-12.754243, 8.679417], - [-12.754307, 8.680381], - [-12.754076, 8.682695], - [-12.755046, 8.681901], - [-12.755737, 8.6816], - [-12.757964, 8.681199], - [-12.758575, 8.680901], - [-12.761249, 8.68625], - [-12.760077, 8.68918], - [-12.758785, 8.687562], - [-12.758577, 8.687403], - [-12.758076, 8.687552], - [-12.758009, 8.687131], - [-12.757385, 8.685933], - [-12.757385, 8.68555], - [-12.757602, 8.685277], - [-12.75747, 8.684988], - [-12.756996, 8.685053], - [-12.75641, 8.684333], - [-12.756522, 8.684791], - [-12.756419, 8.685137], - [-12.755831, 8.685633], - [-12.754903, 8.68511], - [-12.75355, 8.685081], - [-12.75319, 8.684726], - [-12.753075, 8.684249], - [-12.75266, 8.684174], - [-12.752328, 8.684614], - [-12.752403, 8.685146], - [-12.752001, 8.685177], - [-12.751791, 8.68603], - [-12.752233, 8.685633], - [-12.753473, 8.685335], - [-12.754919, 8.686019], - [-12.755789, 8.686039], - [-12.756891, 8.686331], - [-12.757214, 8.68667], - [-12.757492, 8.687512], - [-12.758029, 8.688169], - [-12.758769, 8.68839], - [-12.759491, 8.689871], - [-12.759776, 8.689932], - [-12.758426, 8.69331], - [-12.75903, 8.693662], - [-12.761249, 8.694576], - [-12.76125, 8.695745], - [-12.761314, 8.695741], - [-12.761823, 8.695102], - [-12.762527, 8.695549], - [-12.763813, 8.695166], - [-12.764127, 8.695367], - [-12.764193, 8.695695], - [-12.765616, 8.696603], - [-12.765693, 8.69665], - [-12.765997, 8.696967], - [-12.766515, 8.697041], - [-12.766949, 8.697369], - [-12.767413, 8.698376], - [-12.767856, 8.698166], - [-12.768115, 8.698313], - [-12.768865, 8.699208], - [-12.769292, 8.699995], - [-12.769911, 8.700095], - [-12.770586, 8.699786], - [-12.770671, 8.699979], - [-12.770668, 8.701144], - [-12.770115, 8.700882], - [-12.769624, 8.700371], - [-12.76917, 8.700645], - [-12.769014, 8.701112], - [-12.769069, 8.702044], - [-12.769347, 8.702849], - [-12.769782, 8.703169], - [-12.770531, 8.703059], - [-12.770869, 8.702832], - [-12.771135, 8.703249], - [-12.77115, 8.703241], - [-12.771869, 8.704405], - [-12.772352, 8.705165], - [-12.773008, 8.705606], - [-12.774103, 8.707029], - [-12.774273, 8.707659], - [-12.774151, 8.709317], - [-12.773197, 8.711927], - [-12.772742, 8.715985], - [-12.77268, 8.718156], - [-12.772772, 8.71824], - [-12.775555, 8.720803], - [-12.775371, 8.721615], - [-12.773792, 8.721339], - [-12.773815, 8.72153], - [-12.773883, 8.723023], - [-12.774229, 8.724576], - [-12.774249, 8.725197], - [-12.780347, 8.728012], - [-12.780545, 8.72772], - [-12.781855, 8.726874], - [-12.782621, 8.727091], - [-12.783579, 8.728104], - [-12.782452, 8.727695], - [-12.781986, 8.727733], - [-12.781051, 8.728285], - [-12.781013, 8.728319], - [-12.783749, 8.729582], - [-12.78375, 8.730416], - [-12.784582, 8.730417], - [-12.785417, 8.731249], - [-12.789582, 8.73125], - [-12.789732, 8.731622], - [-12.790265, 8.731746], - [-12.792125, 8.730976], - [-12.791963, 8.731311], - [-12.791006, 8.731827], - [-12.789934, 8.732126], - [-12.791249, 8.735416], - [-12.79125, 8.736409], - [-12.791595, 8.736077], - [-12.792535, 8.736775], - [-12.793834, 8.73681], - [-12.794783, 8.736126], - [-12.794785, 8.736127], - [-12.793474, 8.737435], - [-12.792849, 8.73751], - [-12.792172, 8.737138], - [-12.790287, 8.739139], - [-12.790416, 8.73934], - [-12.79202, 8.73949], - [-12.791988, 8.739703], - [-12.79125, 8.739821], - [-12.791249, 8.742082], - [-12.790586, 8.742415], - [-12.790831, 8.743332], - [-12.79213, 8.744512], - [-12.792876, 8.743359], - [-12.794065, 8.740917], - [-12.796737, 8.737729], - [-12.796809, 8.737719], - [-12.798102, 8.737568], - [-12.799209, 8.737671], - [-12.80097, 8.738168], - [-12.802089, 8.738757], - [-12.8019, 8.739026], - [-12.800776, 8.739541], - [-12.800974, 8.740351], - [-12.800711, 8.740692], - [-12.80042, 8.740444], - [-12.800116, 8.740658], - [-12.799346, 8.740298], - [-12.79919, 8.74082], - [-12.799642, 8.741037], - [-12.800116, 8.741745], - [-12.800226, 8.74226], - [-12.800585, 8.7424], - [-12.801013, 8.743361], - [-12.802049, 8.743047], - [-12.80354, 8.743253], - [-12.803473, 8.74294], - [-12.803417, 8.742533], - [-12.803462, 8.742189], - [-12.803574, 8.742005], - [-12.803646, 8.741822], - [-12.805046, 8.740275], - [-12.805098, 8.739807], - [-12.805448, 8.739418], - [-12.805898, 8.739239], - [-12.805926, 8.741375], - [-12.806108, 8.741887], - [-12.806823, 8.742087], - [-12.80701, 8.741787], - [-12.807292, 8.741887], - [-12.80793, 8.742968], - [-12.808132, 8.742851], - [-12.808229, 8.7422], - [-12.809011, 8.742637], - [-12.809141, 8.742399], - [-12.809142, 8.742398], - [-12.809641, 8.742838], - [-12.812966, 8.745638], - [-12.813503, 8.746364], - [-12.814538, 8.748643], - [-12.815486, 8.749544], - [-12.816511, 8.750006], - [-12.816742, 8.750085], - [-12.817231, 8.750033], - [-12.818249, 8.75051], - [-12.818717, 8.750928], - [-12.819295, 8.750998], - [-12.819537, 8.751262], - [-12.820246, 8.75139], - [-12.82045, 8.751374], - [-12.820884, 8.751289], - [-12.821249, 8.751133], - [-12.821249, 8.74875], - [-12.818704, 8.746487], - [-12.818649, 8.746489], - [-12.818648, 8.746488], - [-12.819088, 8.746054], - [-12.820709, 8.745591], - [-12.821662, 8.746012], - [-12.822245, 8.745744], - [-12.8227, 8.745154], - [-12.822829, 8.744129], - [-12.823141, 8.743636], - [-12.823085, 8.743425], - [-12.823952, 8.742118], - [-12.823584, 8.74195], - [-12.823583, 8.741949], - [-12.824165, 8.741148], - [-12.824564, 8.740966], - [-12.825911, 8.741119], - [-12.826002, 8.739946], - [-12.824586, 8.73865], - [-12.822773, 8.738767], - [-12.821479, 8.738503], - [-12.81889, 8.738617], - [-12.818626, 8.73926], - [-12.816812, 8.739636], - [-12.816549, 8.740277], - [-12.815249, 8.741428], - [-12.815248, 8.741427], - [-12.815252, 8.740657], - [-12.813698, 8.740906], - [-12.812784, 8.742189], - [-12.812514, 8.743989], - [-12.811867, 8.743986], - [-12.811613, 8.742955], - [-12.810949, 8.74366], - [-12.809701, 8.742796], - [-12.809701, 8.742795], - [-12.809841, 8.742639], - [-12.810289, 8.742281], - [-12.810689, 8.742045], - [-12.810979, 8.74194], - [-12.811755, 8.741378], - [-12.812785, 8.740606], - [-12.813577, 8.740227], - [-12.816425, 8.739065], - [-12.818032, 8.738438], - [-12.818925, 8.738099], - [-12.820019, 8.737518], - [-12.821171, 8.737311], - [-12.821984, 8.737251], - [-12.822762, 8.737302], - [-12.823357, 8.737414], - [-12.82455, 8.73783], - [-12.825658, 8.738321], - [-12.826734, 8.738652], - [-12.827965, 8.738799], - [-12.829664, 8.739043], - [-12.830311, 8.739206], - [-12.830839, 8.739435], - [-12.831981, 8.740107], - [-12.833637, 8.741046], - [-12.835504, 8.741332], - [-12.836381, 8.741314], - [-12.837497, 8.741084], - [-12.839931, 8.740785], - [-12.840344, 8.740645], - [-12.840845, 8.74036], - [-12.841484, 8.7398], - [-12.841913, 8.739486], - [-12.842185, 8.739081], - [-12.842382, 8.738567], - [-12.843714, 8.737493], - [-12.845004, 8.736504], - [-12.845704, 8.735653], - [-12.845816, 8.735169], - [-12.846157, 8.73463], - [-12.846427, 8.733995], - [-12.846486, 8.733014], - [-12.846715, 8.731682], - [-12.847983, 8.729041], - [-12.848357, 8.728055], - [-12.848646, 8.727488], - [-12.84933, 8.726742], - [-12.851646, 8.724395], - [-12.850644, 8.723409], - [-12.851764, 8.722252], - [-12.852666, 8.721671], - [-12.853842, 8.720925], - [-12.854824, 8.720463], - [-12.855264, 8.720288], - [-12.856123, 8.720149], - [-12.858113, 8.719887], - [-12.858606, 8.719745], - [-12.858923, 8.719513], - [-12.859335, 8.719286], - [-12.859695, 8.719191], - [-12.85992, 8.719148], - [-12.860581, 8.71929], - [-12.861399, 8.719204], - [-12.8614, 8.7134], - [-12.861499, 8.7084], - [-12.862099, 8.699599], - [-12.8611, 8.678999], - [-12.861399, 8.6731], - [-12.861999, 8.6691], - [-12.8633, 8.665399], - [-12.8668, 8.658499], - [-12.8763, 8.637099], - [-12.879399, 8.6313], - [-12.882699, 8.6269], - [-12.888299, 8.6217], - [-12.904299, 8.6123], - [-12.912199, 8.6068], - [-12.9183, 8.603699], - [-12.924399, 8.5985], - [-12.928099, 8.5947], - [-12.9303, 8.591699], - [-12.933099, 8.586499], - [-12.933, 8.579299], - [-12.938199, 8.5737], - [-12.940099, 8.571399] - ] - ], - "type": "Polygon" - }, - "id": 303, - "properties": { - "cc:admin:id": ["80"], - "cc:oBld:total": 538, - "cc:pop:fifteen-to-twenty-four": 4208.55058447403, - "cc:pop:grid3-total": 12352.108989778006, - "cc:pop:kontur-total": 22755.073557236527, - "cc:pop:men": 10650.663416328682, - "cc:pop:sixty-plus": 1156.3600529616438, - "cc:pop:total": 23281.40329942298, - "cc:pop:under-five": 3594.8623301061807, - "cc:pop:women": 12630.73988309431, - "cc:pop:women-fiften-to-forty-nine": 6247.39817696412, - "cc:pop:wp-total": 17340.20325750566, - "cc:pop:wp-total-UN": 20125.64389263533, - "cc:id": "303", - "cc:Name": "Maforay MCHP", - "cc:site": [-12.8051, 8.7137], - "user:parentName": "Maforki", - "user:code": "OU_254953", - "user:orgUnitId": "simyC07XwnS", - "user:level": "4", - "user:parentId": "JdqfYTIFZXN" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.094568, 8.975754], - [-13.094141, 8.974757], - [-13.092931, 8.974898], - [-13.091792, 8.975646], - [-13.091399, 8.975932], - [-13.08969, 8.976964], - [-13.088373, 8.977497], - [-13.086604, 8.97753], - [-13.085632, 8.97732], - [-13.084836, 8.977012], - [-13.084583, 8.976249], - [-13.084582, 8.974583], - [-13.082083, 8.974583], - [-13.082083, 8.975615], - [-13.082081, 8.975616], - [-13.081501, 8.975219], - [-13.080826, 8.974508], - [-13.080973, 8.974308], - [-13.080416, 8.97375], - [-13.077916, 8.974582], - [-13.07625, 8.974582], - [-13.075424, 8.972934], - [-13.07415, 8.972317], - [-13.07173, 8.971264], - [-13.07069, 8.970977], - [-13.070416, 8.97125], - [-13.067868, 8.971887], - [-13.066603, 8.973229], - [-13.066118, 8.97491], - [-13.065407, 8.977131], - [-13.063669, 8.978726], - [-13.062245, 8.980349], - [-13.061505, 8.981916], - [-13.060877, 8.983085], - [-13.05951, 8.983797], - [-13.055779, 8.984224], - [-13.053245, 8.984337], - [-13.052511, 8.984222], - [-13.052733, 8.985336], - [-13.052355, 8.9854], - [-13.051558, 8.986425], - [-13.051159, 8.988048], - [-13.052555, 8.990184], - [-13.053665, 8.990611], - [-13.054507, 8.990266], - [-13.054908, 8.991065], - [-13.055136, 8.991016], - [-13.057108, 8.990265], - [-13.058168, 8.989967], - [-13.059509, 8.989924], - [-13.060181, 8.990195], - [-13.060733, 8.99064], - [-13.061645, 8.990977], - [-13.062749, 8.991205], - [-13.063446, 8.991284], - [-13.06425, 8.991232], - [-13.064675, 8.991195], - [-13.065281, 8.991455], - [-13.06586, 8.992322], - [-13.066344, 8.993834], - [-13.066585, 8.994353], - [-13.066906, 8.994935], - [-13.066562, 8.995226], - [-13.065626, 8.994827], - [-13.064579, 8.993834], - [-13.064269, 8.993537], - [-13.063565, 8.9932], - [-13.063172, 8.993027], - [-13.062028, 8.992475], - [-13.061355, 8.992207], - [-13.060754, 8.992285], - [-13.060204, 8.992289], - [-13.060198, 8.992574], - [-13.060148, 8.992634], - [-13.06023, 8.99279], - [-13.060201, 8.99419], - [-13.060208, 8.994559], - [-13.060098, 8.995148], - [-13.059744, 8.995841], - [-13.059424, 8.996077], - [-13.059103, 8.996247], - [-13.058463, 8.996556], - [-13.058099, 8.996658], - [-13.057569, 8.997029], - [-13.057098, 8.997213], - [-13.056819, 8.997335], - [-13.056528, 8.997415], - [-13.056208, 8.99751], - [-13.056004, 8.99761], - [-13.055639, 8.998], - [-13.05547, 8.998155], - [-13.055317, 8.998417], - [-13.055426, 8.998811], - [-13.055485, 8.999033], - [-13.055807, 8.999293], - [-13.056068, 8.999378], - [-13.057193, 8.999921], - [-13.057977, 9.000456], - [-13.05839, 9.000697], - [-13.058822, 9.000816], - [-13.059099, 9.000941], - [-13.059356, 9.001169], - [-13.059457, 9.001455], - [-13.059449, 9.001608], - [-13.059533, 9.001971], - [-13.059349, 9.002599], - [-13.059334, 9.002701], - [-13.058989, 9.003272], - [-13.058364, 9.0039], - [-13.057927, 9.004353], - [-13.05743, 9.004775], - [-13.057255, 9.004987], - [-13.056889, 9.0055], - [-13.056677, 9.005982], - [-13.056601, 9.006107], - [-13.056397, 9.006375], - [-13.056039, 9.006734], - [-13.055869, 9.007032], - [-13.055714, 9.007349], - [-13.055657, 9.00762], - [-13.055655, 9.007824], - [-13.055662, 9.008075], - [-13.055667, 9.008295], - [-13.055636, 9.008902], - [-13.055657, 9.009529], - [-13.055676, 9.00982], - [-13.055537, 9.010096], - [-13.055289, 9.010224], - [-13.055158, 9.010264], - [-13.0548, 9.010381], - [-13.05426, 9.010668], - [-13.054172, 9.010846], - [-13.054308, 9.01093], - [-13.054537, 9.010724], - [-13.054815, 9.010571], - [-13.054958, 9.010464], - [-13.055107, 9.010391], - [-13.055323, 9.010296], - [-13.055641, 9.010297], - [-13.055827, 9.010351], - [-13.05587, 9.010386], - [-13.056084, 9.01055], - [-13.05633, 9.010779], - [-13.056549, 9.010965], - [-13.056548, 9.010966], - [-13.055417, 9.01125], - [-13.055061, 9.011962], - [-13.055207, 9.012329], - [-13.055438, 9.012344], - [-13.055604, 9.014338], - [-13.055454, 9.014787], - [-13.055968, 9.015504], - [-13.056612, 9.017777], - [-13.056563, 9.018296], - [-13.055583, 9.020027], - [-13.055711, 9.020197], - [-13.056109, 9.020388], - [-13.056249, 9.022082], - [-13.056648, 9.023275], - [-13.057082, 9.023233], - [-13.057083, 9.025416], - [-13.056249, 9.02875], - [-13.05125, 9.03375], - [-13.05375, 9.03625], - [-13.054583, 9.037917], - [-13.055416, 9.042082], - [-13.05375, 9.042917], - [-13.052083, 9.047082], - [-13.052917, 9.049582], - [-13.057916, 9.049583], - [-13.060416, 9.051249], - [-13.057917, 9.052917], - [-13.057917, 9.055416], - [-13.05922, 9.055851], - [-13.059614, 9.055707], - [-13.061911, 9.056382], - [-13.0694, 9.0522], - [-13.077881, 9.050428], - [-13.077621, 9.049368], - [-13.077642, 9.047905], - [-13.078157, 9.045711], - [-13.078427, 9.045061], - [-13.079349, 9.044127], - [-13.081852, 9.042161], - [-13.08362, 9.038534], - [-13.084433, 9.037947], - [-13.084682, 9.037823], - [-13.07973, 9.036201], - [-13.081249, 9.027083], - [-13.079582, 9.025417], - [-13.078192, 9.025417], - [-13.078191, 9.025415], - [-13.078475, 9.024605], - [-13.078492, 9.023025], - [-13.079999, 9.01856], - [-13.080535, 9.01551], - [-13.08067, 9.014583], - [-13.082521, 9.014582], - [-13.08261, 9.01424], - [-13.082611, 9.014239], - [-13.083364, 9.016117], - [-13.083392, 9.016117], - [-13.083653, 9.015861], - [-13.08443, 9.015737], - [-13.084428, 9.016251], - [-13.085075, 9.016513], - [-13.085845, 9.017805], - [-13.08636, 9.018323], - [-13.08643, 9.018749], - [-13.086865, 9.018749], - [-13.086752, 9.01781], - [-13.08727, 9.017683], - [-13.087924, 9.016785], - [-13.087926, 9.016271], - [-13.087669, 9.016011], - [-13.087672, 9.015239], - [-13.087158, 9.01472], - [-13.087041, 9.012145], - [-13.087042, 9.012144], - [-13.087559, 9.012145], - [-13.087188, 9.011658], - [-13.087046, 9.011371], - [-13.087734, 9.011285], - [-13.087698, 9.010601], - [-13.087957, 9.010344], - [-13.087959, 9.010087], - [-13.087444, 9.009569], - [-13.087316, 9.009053], - [-13.086539, 9.009048], - [-13.086803, 9.00802], - [-13.086286, 9.008016], - [-13.086287, 9.007502], - [-13.086041, 9.0075], - [-13.085416, 9.00625], - [-13.084913, 9.00625], - [-13.08487, 9.006207], - [-13.084968, 9.004583], - [-13.082158, 9.004582], - [-13.082249, 9.003951], - [-13.082139, 9.00303], - [-13.082082, 9.002916], - [-13.080658, 9.001491], - [-13.080541, 9.001138], - [-13.080683, 9.000356], - [-13.082035, 9.000071], - [-13.083283, 9.000463], - [-13.08556, 9.000497], - [-13.08492, 8.999429], - [-13.084849, 8.998148], - [-13.084849, 8.996582], - [-13.084899, 8.99625], - [-13.085168, 8.996249], - [-13.08517, 8.996189], - [-13.085489, 8.995229], - [-13.085062, 8.994552], - [-13.084607, 8.99375], - [-13.084079, 8.993749], - [-13.082998, 8.992844], - [-13.082891, 8.99181], - [-13.083495, 8.99092], - [-13.083781, 8.989781], - [-13.084172, 8.988322], - [-13.084456, 8.987788], - [-13.086094, 8.987147], - [-13.087554, 8.986327], - [-13.088846, 8.984874], - [-13.08875, 8.984582], - [-13.08911, 8.983863], - [-13.089262, 8.983813], - [-13.08923, 8.983623], - [-13.089583, 8.982917], - [-13.090402, 8.982916], - [-13.09051, 8.982732], - [-13.091827, 8.982732], - [-13.092681, 8.983479], - [-13.093501, 8.983977], - [-13.09382, 8.983479], - [-13.093963, 8.982269], - [-13.093646, 8.980859], - [-13.094294, 8.980696], - [-13.093715, 8.979741], - [-13.093465, 8.978887], - [-13.093536, 8.977997], - [-13.094319, 8.977106], - [-13.094568, 8.975754] - ] - ], - "type": "Polygon" - }, - "id": 304, - "properties": { - "cc:admin:id": ["115"], - "cc:oBld:total": 880, - "cc:pop:fifteen-to-twenty-four": 1179.1013741255006, - "cc:pop:grid3-total": 4250.952898458427, - "cc:pop:kontur-total": 6820.60800454324, - "cc:pop:men": 3077.5479969085195, - "cc:pop:sixty-plus": 388.574371188415, - "cc:pop:total": 6612.822432025872, - "cc:pop:under-five": 1016.4502930970405, - "cc:pop:women": 3535.2744351173556, - "cc:pop:women-fiften-to-forty-nine": 1708.274699025697, - "cc:pop:wp-total": 6763.178250941525, - "cc:pop:wp-total-UN": 7837.936184638629, - "cc:id": "304", - "cc:Name": "Mafufuneh MCHP", - "cc:site": [-13.0747, 9.0051], - "user:parentName": "Samu", - "user:code": "OU_211251", - "user:orgUnitId": "L3GgannGGKl", - "user:level": "4", - "user:parentId": "r06ohri9wA9" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.66242, 8.391836], - [-12.659582, 8.390417], - [-12.650417, 8.390417], - [-12.648749, 8.392083], - [-12.645209, 8.387943], - [-12.644105, 8.38652], - [-12.642265, 8.385727], - [-12.640494, 8.385115], - [-12.638949, 8.384972], - [-12.637784, 8.38437], - [-12.63695, 8.384791], - [-12.637046, 8.386049], - [-12.637253, 8.38659], - [-12.63702, 8.386838], - [-12.636999, 8.387407], - [-12.636607, 8.387807], - [-12.629236, 8.387193], - [-12.629203, 8.387291], - [-12.629521, 8.390347], - [-12.619583, 8.389584], - [-12.615417, 8.392917], - [-12.614583, 8.404583], - [-12.615658, 8.406018], - [-12.615295, 8.405836], - [-12.614039, 8.40552], - [-12.612878, 8.404746], - [-12.613189, 8.403719], - [-12.613688, 8.402779], - [-12.613654, 8.401912], - [-12.613302, 8.400814], - [-12.611622, 8.399768], - [-12.610662, 8.400152], - [-12.609137, 8.400185], - [-12.609123, 8.399492], - [-12.609587, 8.398751], - [-12.60407, 8.398751], - [-12.604489, 8.404209], - [-12.604316, 8.4043], - [-12.603291, 8.404406], - [-12.602934, 8.404595], - [-12.602493, 8.404849], - [-12.601159, 8.406825], - [-12.59968, 8.407943], - [-12.598848, 8.408828], - [-12.597873, 8.409069], - [-12.59706, 8.408986], - [-12.597372, 8.410272], - [-12.595417, 8.41125], - [-12.593749, 8.420416], - [-12.58625, 8.419584], - [-12.58125, 8.420417], - [-12.580652, 8.42281], - [-12.580904, 8.423012], - [-12.581007, 8.42305], - [-12.579583, 8.428749], - [-12.578749, 8.42875], - [-12.575416, 8.437916], - [-12.574496, 8.438837], - [-12.574495, 8.438836], - [-12.573733, 8.436394], - [-12.573633, 8.436112], - [-12.573489, 8.435417], - [-12.569583, 8.435417], - [-12.567917, 8.437084], - [-12.567917, 8.442083], - [-12.569582, 8.445416], - [-12.562352, 8.445417], - [-12.5633, 8.446858], - [-12.563584, 8.447328], - [-12.562748, 8.447869], - [-12.562451, 8.447891], - [-12.56212, 8.44799], - [-12.561368, 8.44872], - [-12.560698, 8.449009], - [-12.560238, 8.449031], - [-12.55961, 8.449492], - [-12.5607, 8.4508], - [-12.565699, 8.455199], - [-12.570999, 8.462899], - [-12.5731, 8.464299], - [-12.580899, 8.464], - [-12.589, 8.461199], - [-12.5999, 8.459499], - [-12.603599, 8.457399], - [-12.6055, 8.454599], - [-12.605699, 8.4505], - [-12.6027, 8.4433], - [-12.6018, 8.4378], - [-12.6022, 8.433], - [-12.6036, 8.429999], - [-12.6076, 8.4272], - [-12.614399, 8.4254], - [-12.6181, 8.423399], - [-12.6202, 8.421399], - [-12.623799, 8.4164], - [-12.626499, 8.4132], - [-12.6306, 8.409599], - [-12.639299, 8.4053], - [-12.6466, 8.403699], - [-12.649499, 8.4028], - [-12.652099, 8.4014], - [-12.6545, 8.399599], - [-12.661099, 8.3934], - [-12.66242, 8.391836] - ] - ], - "type": "Polygon" - }, - "id": 305, - "properties": { - "cc:admin:id": ["149"], - "cc:oBld:total": 281, - "cc:pop:fifteen-to-twenty-four": 401.4951085696849, - "cc:pop:grid3-total": 2201.538232723603, - "cc:pop:kontur-total": 2190.889340151596, - "cc:pop:men": 995.1589346301381, - "cc:pop:sixty-plus": 143.03554224746054, - "cc:pop:total": 2131.9165035531246, - "cc:pop:under-five": 349.22267312772124, - "cc:pop:women": 1136.7575689229864, - "cc:pop:women-fiften-to-forty-nine": 570.4003475006512, - "cc:pop:wp-total": 1617.9528183026073, - "cc:pop:wp-total-UN": 1875.4384551336982, - "cc:id": "305", - "cc:Name": "Magbaft MCHP", - "cc:site": [-12.5973, 8.4569], - "user:parentName": "Yoni", - "user:code": "OU_268248", - "user:orgUnitId": "XjpmsLNjyrz", - "user:level": "4", - "user:parentId": "NNE0YMCDZkO" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.274699, 8.907699], - [-12.273999, 8.9042], - [-12.268599, 8.8982], - [-12.264299, 8.897699], - [-12.2472, 8.8974], - [-12.2432, 8.897499], - [-12.2408, 8.8979], - [-12.2387, 8.8993], - [-12.2368, 8.904699], - [-12.235, 8.909099], - [-12.233799, 8.913399], - [-12.232099, 8.9155], - [-12.229499, 8.9163], - [-12.226499, 8.916599], - [-12.2182, 8.9164], - [-12.2152, 8.915999], - [-12.2128, 8.914799], - [-12.2098, 8.9112], - [-12.2076, 8.9095], - [-12.204899, 8.9087], - [-12.2028, 8.9091], - [-12.2013, 8.9106], - [-12.2012, 8.913199], - [-12.203, 8.9168], - [-12.2051, 8.9233], - [-12.207187, 8.927291], - [-12.210649, 8.924983], - [-12.211689, 8.925132], - [-12.217917, 8.932916], - [-12.223749, 8.930417], - [-12.224132, 8.92965], - [-12.224008, 8.929653], - [-12.222438, 8.929002], - [-12.220053, 8.926025], - [-12.218502, 8.924684], - [-12.220401, 8.922311], - [-12.226511, 8.922311], - [-12.229506, 8.927496], - [-12.231138, 8.926258], - [-12.232157, 8.92604], - [-12.232645, 8.926366], - [-12.233131, 8.927777], - [-12.232864, 8.92849], - [-12.232278, 8.929075], - [-12.238229, 8.929075], - [-12.242136, 8.922311], - [-12.246378, 8.92231], - [-12.246304, 8.921216], - [-12.244468, 8.918424], - [-12.244233, 8.917757], - [-12.244405, 8.917059], - [-12.244939, 8.916453], - [-12.246478, 8.915554], - [-12.252599, 8.912715], - [-12.253353, 8.91265], - [-12.257186, 8.913894], - [-12.259586, 8.913927], - [-12.2603, 8.913299], - [-12.263199, 8.9126], - [-12.268599, 8.9124], - [-12.270699, 8.912099], - [-12.273499, 8.910099], - [-12.274699, 8.907699] - ] - ], - "type": "Polygon" - }, - "id": 306, - "properties": { - "cc:admin:id": ["32"], - "cc:oBld:total": 1, - "cc:pop:fifteen-to-twenty-four": 88.74201575919119, - "cc:pop:grid3-total": 500.00000000000006, - "cc:pop:kontur-total": 471, - "cc:pop:men": 221.0136144607026, - "cc:pop:sixty-plus": 29.871007879595602, - "cc:pop:total": 469.96806303676476, - "cc:pop:under-five": 73.8710078795956, - "cc:pop:women": 248.9544485760622, - "cc:pop:women-fiften-to-forty-nine": 120.74201575919119, - "cc:pop:wp-total": 442, - "cc:pop:wp-total-UN": 516, - "cc:id": "306", - "cc:Name": "Magbaikoli MCHP", - "cc:site": [-12.2106, 8.9155], - "user:parentName": "Makari Gbanti", - "user:code": "OU_193252", - "user:orgUnitId": "cTU2WmWcJKx", - "user:level": "4", - "user:parentId": "lY93YpCxJqf" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.456413, 8.945252], - [-12.455099, 8.942399], - [-12.4514, 8.9366], - [-12.449299, 8.934599], - [-12.445099, 8.933099], - [-12.439799, 8.9329], - [-12.4331, 8.933299], - [-12.432999, 8.933299], - [-12.4244, 8.9327], - [-12.4202, 8.9319], - [-12.412399, 8.928699], - [-12.4038, 8.9239], - [-12.400399, 8.921099], - [-12.3915, 8.9133], - [-12.3849, 8.9089], - [-12.381399, 8.906099], - [-12.372399, 8.897499], - [-12.3548, 8.8798], - [-12.3515, 8.8768], - [-12.348299, 8.8749], - [-12.344799, 8.8741], - [-12.341399, 8.8745], - [-12.3382, 8.875799], - [-12.3323, 8.879399], - [-12.3249, 8.8827], - [-12.326699, 8.886999], - [-12.3274, 8.8899], - [-12.3278, 8.895], - [-12.327799, 8.901], - [-12.327499, 8.903399], - [-12.3259, 8.906299], - [-12.323099, 8.9083], - [-12.320799, 8.9089], - [-12.317799, 8.908999], - [-12.3056, 8.9089], - [-12.3022, 8.908299], - [-12.2993, 8.9066], - [-12.2966, 8.9041], - [-12.294899, 8.901899], - [-12.2907, 8.8927], - [-12.289599, 8.887], - [-12.287599, 8.884599], - [-12.2853, 8.8842], - [-12.2825, 8.886099], - [-12.2748, 8.893999], - [-12.2725, 8.896199], - [-12.2686, 8.8982], - [-12.274, 8.9042], - [-12.274699, 8.907699], - [-12.2735, 8.910099], - [-12.270699, 8.9121], - [-12.268599, 8.9124], - [-12.2632, 8.912599], - [-12.2603, 8.9133], - [-12.2578, 8.9155], - [-12.257, 8.918599], - [-12.2587, 8.922199], - [-12.2621, 8.925299], - [-12.2654, 8.9268], - [-12.269699, 8.927899], - [-12.271399, 8.9296], - [-12.271499, 8.932299], - [-12.270499, 8.9339], - [-12.268499, 8.934699], - [-12.2646, 8.934899], - [-12.2624, 8.9354], - [-12.2608, 8.937199], - [-12.2604, 8.939599], - [-12.261, 8.9421], - [-12.2625, 8.944099], - [-12.2651, 8.945299], - [-12.267999, 8.945099], - [-12.2724, 8.943], - [-12.274799, 8.943899], - [-12.275799, 8.9477], - [-12.274599, 8.9509], - [-12.272199, 8.953499], - [-12.2686, 8.955599], - [-12.2645, 8.9551], - [-12.260799, 8.955499], - [-12.256799, 8.9549], - [-12.2544, 8.9565], - [-12.2533, 8.9592], - [-12.2533, 8.961426], - [-12.253945, 8.962142], - [-12.25425, 8.962843], - [-12.254689, 8.961981], - [-12.26125, 8.967082], - [-12.262917, 8.967083], - [-12.266673, 8.970839], - [-12.267564, 8.970888], - [-12.270416, 8.968749], - [-12.271249, 8.965418], - [-12.27125, 8.965417], - [-12.274583, 8.967916], - [-12.279582, 8.967917], - [-12.282917, 8.970416], - [-12.284583, 8.969583], - [-12.287917, 8.972916], - [-12.292916, 8.972917], - [-12.293396, 8.972677], - [-12.293592, 8.973141], - [-12.293704, 8.973224], - [-12.295417, 8.972083], - [-12.296374, 8.97304], - [-12.296998, 8.972752], - [-12.298696, 8.974097], - [-12.299576, 8.974139], - [-12.300426, 8.974971], - [-12.300599, 8.975383], - [-12.300605, 8.975665], - [-12.30021, 8.976511], - [-12.300982, 8.977091], - [-12.301058, 8.977016], - [-12.301439, 8.975971], - [-12.302595, 8.975021], - [-12.302823, 8.973738], - [-12.303461, 8.973713], - [-12.304129, 8.973373], - [-12.304059, 8.972308], - [-12.305112, 8.971478], - [-12.30549, 8.971391], - [-12.30664, 8.9716], - [-12.308356, 8.972806], - [-12.3093, 8.972514], - [-12.309666, 8.972754], - [-12.310226, 8.972685], - [-12.310698, 8.972857], - [-12.31375, 8.970417], - [-12.317916, 8.970417], - [-12.322082, 8.974582], - [-12.322916, 8.970417], - [-12.324582, 8.96875], - [-12.33181, 8.96875], - [-12.331935, 8.968917], - [-12.332185, 8.967772], - [-12.332531, 8.967015], - [-12.332623, 8.965566], - [-12.332828, 8.964936], - [-12.33333, 8.964279], - [-12.334162, 8.962865], - [-12.335399, 8.96363], - [-12.338075, 8.963964], - [-12.339582, 8.964534], - [-12.339583, 8.96625], - [-12.34125, 8.973749], - [-12.34375, 8.977916], - [-12.347916, 8.973749], - [-12.350653, 8.966908], - [-12.351122, 8.96785], - [-12.353653, 8.969591], - [-12.356102, 8.970639], - [-12.35762, 8.971103], - [-12.359498, 8.972236], - [-12.360431, 8.972982], - [-12.361824, 8.97454], - [-12.362916, 8.976], - [-12.362917, 8.975416], - [-12.364583, 8.974582], - [-12.368749, 8.972916], - [-12.36875, 8.972082], - [-12.373749, 8.970417], - [-12.374583, 8.971249], - [-12.386248, 8.96875], - [-12.38625, 8.968751], - [-12.38625, 8.969208], - [-12.386494, 8.968531], - [-12.387232, 8.967645], - [-12.389003, 8.968668], - [-12.390509, 8.968947], - [-12.392158, 8.969052], - [-12.392793, 8.96893], - [-12.395041, 8.969279], - [-12.395526, 8.970127], - [-12.396562, 8.969671], - [-12.397712, 8.968885], - [-12.398562, 8.968857], - [-12.399488, 8.969262], - [-12.400474, 8.969313], - [-12.400969, 8.969016], - [-12.401554, 8.968194], - [-12.402813, 8.96344], - [-12.403744, 8.961289], - [-12.404523, 8.960806], - [-12.405559, 8.95973], - [-12.408054, 8.959238], - [-12.40883, 8.959148], - [-12.40918, 8.958931], - [-12.409443, 8.958516], - [-12.409543, 8.957603], - [-12.410348, 8.956247], - [-12.410361, 8.955905], - [-12.411472, 8.95553], - [-12.413165, 8.955532], - [-12.414138, 8.955723], - [-12.415358, 8.955458], - [-12.416723, 8.954443], - [-12.419328, 8.954514], - [-12.421242, 8.953203], - [-12.421249, 8.953197], - [-12.42125, 8.956463], - [-12.426308, 8.956463], - [-12.427083, 8.957083], - [-12.432919, 8.957082], - [-12.432865, 8.954957], - [-12.43335, 8.954229], - [-12.435959, 8.954198], - [-12.439804, 8.953329], - [-12.440788, 8.95296], - [-12.441762, 8.952263], - [-12.442402, 8.950626], - [-12.442449, 8.950012], - [-12.44211, 8.949466], - [-12.443365, 8.947293], - [-12.443366, 8.947293], - [-12.443635, 8.947515], - [-12.444375, 8.947372], - [-12.445035, 8.946985], - [-12.444965, 8.946467], - [-12.444312, 8.945473], - [-12.444212, 8.945176], - [-12.445417, 8.945417], - [-12.454582, 8.946249], - [-12.456249, 8.945417], - [-12.456413, 8.945252] - ] - ], - "type": "Polygon" - }, - "id": 307, - "properties": { - "cc:admin:id": ["73"], - "cc:oBld:total": 347, - "cc:pop:fifteen-to-twenty-four": 997.6784526247482, - "cc:pop:grid3-total": 4631.901685238718, - "cc:pop:kontur-total": 5460.949430762883, - "cc:pop:men": 2508.387922989648, - "cc:pop:sixty-plus": 356.61062238282295, - "cc:pop:total": 5409.0821512574885, - "cc:pop:under-five": 823.78468143664, - "cc:pop:women": 2900.6942282678424, - "cc:pop:women-fiften-to-forty-nine": 1398.4947649128876, - "cc:pop:wp-total": 4252.196211719003, - "cc:pop:wp-total-UN": 4931.110731661168, - "cc:id": "307", - "cc:Name": "Magbaingba MCHP", - "cc:site": [-12.34627, 8.92733], - "user:parentName": "Libeisaygahun", - "user:code": "OU_193306", - "user:orgUnitId": "DIQl5jJ17IE", - "user:level": "4", - "user:parentId": "hRZOIgQ0O1m" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.490443, 8.419154], - [-12.490416, 8.419074], - [-12.490416, 8.40875], - [-12.486649, 8.40875], - [-12.488446, 8.413587], - [-12.487925, 8.413785], - [-12.485988, 8.413642], - [-12.485082, 8.413835], - [-12.484582, 8.414584], - [-12.480428, 8.414584], - [-12.479743, 8.414766], - [-12.478112, 8.414459], - [-12.477917, 8.414322], - [-12.477916, 8.40625], - [-12.477083, 8.405416], - [-12.47625, 8.40375], - [-12.476249, 8.402084], - [-12.467917, 8.402083], - [-12.467917, 8.394584], - [-12.467082, 8.392917], - [-12.458749, 8.394583], - [-12.456947, 8.393502], - [-12.456747, 8.392902], - [-12.456838, 8.392615], - [-12.457519, 8.391947], - [-12.457965, 8.390774], - [-12.45875, 8.389681], - [-12.454583, 8.389681], - [-12.454582, 8.393749], - [-12.442917, 8.39375], - [-12.442082, 8.392917], - [-12.43625, 8.392916], - [-12.435416, 8.387917], - [-12.427917, 8.388749], - [-12.427916, 8.38625], - [-12.425783, 8.385182], - [-12.426308, 8.383809], - [-12.426249, 8.38375], - [-12.422917, 8.384583], - [-12.422916, 8.382084], - [-12.421175, 8.380343], - [-12.420646, 8.380533], - [-12.419302, 8.381254], - [-12.416499, 8.383159], - [-12.415667, 8.383535], - [-12.414765, 8.383665], - [-12.414009, 8.38399], - [-12.413407, 8.3829], - [-12.41272, 8.38258], - [-12.412516, 8.382324], - [-12.407432, 8.375746], - [-12.404928, 8.372084], - [-12.404582, 8.372084], - [-12.402916, 8.374583], - [-12.39875, 8.374583], - [-12.397916, 8.370417], - [-12.396339, 8.36884], - [-12.387273, 8.368619], - [-12.386249, 8.367084], - [-12.382917, 8.365417], - [-12.382916, 8.36375], - [-12.380596, 8.362977], - [-12.380582, 8.363], - [-12.380416, 8.362917], - [-12.37625, 8.364584], - [-12.376249, 8.366249], - [-12.374582, 8.365417], - [-12.36875, 8.365416], - [-12.366249, 8.36125], - [-12.362083, 8.367916], - [-12.367082, 8.370417], - [-12.366249, 8.372916], - [-12.362917, 8.374584], - [-12.36125, 8.376249], - [-12.364566, 8.378903], - [-12.364566, 8.378904], - [-12.364458, 8.378978], - [-12.365416, 8.380416], - [-12.362917, 8.382084], - [-12.362917, 8.387083], - [-12.368749, 8.389584], - [-12.368749, 8.392084], - [-12.36375, 8.39625], - [-12.36625, 8.402083], - [-12.368749, 8.404584], - [-12.367917, 8.407917], - [-12.367916, 8.412916], - [-12.36625, 8.41375], - [-12.369264, 8.42204], - [-12.369171, 8.422079], - [-12.368922, 8.42207], - [-12.367917, 8.424584], - [-12.367917, 8.428749], - [-12.372083, 8.429583], - [-12.377083, 8.42875], - [-12.37875, 8.432083], - [-12.382082, 8.433749], - [-12.38375, 8.436249], - [-12.385417, 8.43625], - [-12.387916, 8.438749], - [-12.38875, 8.445416], - [-12.389583, 8.445417], - [-12.394583, 8.450416], - [-12.403749, 8.450417], - [-12.404137, 8.45158], - [-12.403904, 8.451984], - [-12.40781, 8.458749], - [-12.418749, 8.45875], - [-12.41875, 8.464583], - [-12.427083, 8.467917], - [-12.430416, 8.470416], - [-12.430417, 8.473749], - [-12.437466, 8.476569], - [-12.437046, 8.477215], - [-12.435782, 8.478198], - [-12.43534, 8.479143], - [-12.434167, 8.480629], - [-12.43355, 8.482149], - [-12.4375, 8.478199], - [-12.441099, 8.4738], - [-12.444399, 8.4685], - [-12.447099, 8.4653], - [-12.4515, 8.462], - [-12.4568, 8.460199], - [-12.463799, 8.4593], - [-12.4666, 8.458699], - [-12.47996, 8.454386], - [-12.480177, 8.453884], - [-12.480159, 8.453451], - [-12.479833, 8.452004], - [-12.480202, 8.451638], - [-12.480412, 8.451139], - [-12.482128, 8.452138], - [-12.486249, 8.444584], - [-12.482917, 8.440416], - [-12.482916, 8.439583], - [-12.482083, 8.432084], - [-12.489353, 8.429174], - [-12.489081, 8.428684], - [-12.48855, 8.42734], - [-12.488483, 8.425672], - [-12.489327, 8.422961], - [-12.490443, 8.419154] - ] - ], - "type": "Polygon" - }, - "id": 308, - "properties": { - "cc:admin:id": ["149"], - "cc:oBld:total": 138, - "cc:pop:fifteen-to-twenty-four": 1036.046543115011, - "cc:pop:grid3-total": 4586.86294523184, - "cc:pop:kontur-total": 5687.958282743363, - "cc:pop:men": 2564.181591309615, - "cc:pop:sixty-plus": 353.60652505448206, - "cc:pop:total": 5524.940047153832, - "cc:pop:under-five": 891.1704712586259, - "cc:pop:women": 2960.7584558442168, - "cc:pop:women-fiften-to-forty-nine": 1465.508788677251, - "cc:pop:wp-total": 5926.139432728268, - "cc:pop:wp-total-UN": 6868.25882854942, - "cc:id": "308", - "cc:Name": "Magbass MCHP", - "cc:site": [-12.424, 8.4199], - "user:parentName": "Kholifa Rowalla", - "user:code": "OU_268152", - "user:orgUnitId": "sFgNRYS5pBo", - "user:level": "4", - "user:parentId": "PQZJPIpTepd" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.883072, 8.554958], - [-12.880416, 8.557083], - [-12.879879, 8.556831], - [-12.881043, 8.555597], - [-12.881791, 8.554446], - [-12.882225, 8.553155], - [-12.881577, 8.553128], - [-12.880827, 8.554521], - [-12.880472, 8.554821], - [-12.879727, 8.555008], - [-12.878409, 8.556146], - [-12.875485, 8.554782], - [-12.875516, 8.554675], - [-12.875475, 8.553268], - [-12.875851, 8.552217], - [-12.876906, 8.550981], - [-12.877238, 8.550988], - [-12.877558, 8.55068], - [-12.877601, 8.550227], - [-12.877799, 8.550076], - [-12.880109, 8.549432], - [-12.880429, 8.54911], - [-12.88071, 8.549211], - [-12.881096, 8.549074], - [-12.881759, 8.548464], - [-12.881934, 8.547862], - [-12.881608, 8.547817], - [-12.881021, 8.548096], - [-12.880571, 8.548848], - [-12.879871, 8.548435], - [-12.879626, 8.548856], - [-12.878887, 8.549511], - [-12.877852, 8.549406], - [-12.877584, 8.549195], - [-12.877104, 8.548217], - [-12.876571, 8.547824], - [-12.876294, 8.547022], - [-12.874738, 8.545839], - [-12.874576, 8.545417], - [-12.874583, 8.545416], - [-12.87581, 8.544597], - [-12.874977, 8.543131], - [-12.873908, 8.542238], - [-12.874633, 8.539176], - [-12.874623, 8.53871], - [-12.874405, 8.538224], - [-12.873923, 8.537742], - [-12.87149, 8.536495], - [-12.870901, 8.535913], - [-12.870793, 8.535362], - [-12.871216, 8.532247], - [-12.870832, 8.531405], - [-12.869626, 8.529847], - [-12.869408, 8.52909], - [-12.870317, 8.527637], - [-12.862917, 8.525417], - [-12.862916, 8.52125], - [-12.853749, 8.522916], - [-12.850945, 8.517307], - [-12.851153, 8.516894], - [-12.852209, 8.515346], - [-12.854415, 8.514155], - [-12.849583, 8.512083], - [-12.851024, 8.504152], - [-12.845706, 8.504152], - [-12.844919, 8.50471], - [-12.843801, 8.505279], - [-12.840546, 8.510917], - [-12.84181, 8.513109], - [-12.83375, 8.51125], - [-12.83125, 8.512917], - [-12.831249, 8.514584], - [-12.829565, 8.516829], - [-12.828906, 8.516765], - [-12.826954, 8.515659], - [-12.825618, 8.514445], - [-12.817917, 8.522916], - [-12.813749, 8.520417], - [-12.804583, 8.524584], - [-12.804582, 8.533749], - [-12.802083, 8.53625], - [-12.802916, 8.542916], - [-12.792917, 8.547917], - [-12.792083, 8.54875], - [-12.792082, 8.549757], - [-12.791752, 8.549755], - [-12.790118, 8.549944], - [-12.789582, 8.552084], - [-12.78375, 8.555417], - [-12.783749, 8.559108], - [-12.783375, 8.559923], - [-12.783246, 8.560472], - [-12.782403, 8.560566], - [-12.781723, 8.563488], - [-12.780816, 8.566569], - [-12.7818, 8.566099], - [-12.788, 8.5649], - [-12.8047, 8.565799], - [-12.825899, 8.5645], - [-12.842899, 8.5642], - [-12.8476, 8.5625], - [-12.852399, 8.5623], - [-12.8579, 8.564199], - [-12.8653, 8.563999], - [-12.869599, 8.5635], - [-12.8736, 8.562199], - [-12.879599, 8.5588], - [-12.881774, 8.557993], - [-12.883018, 8.555037], - [-12.883072, 8.554958] - ] - ], - "type": "Polygon" - }, - "id": 309, - "properties": { - "cc:admin:id": ["62"], - "cc:oBld:total": 14, - "cc:pop:fifteen-to-twenty-four": 573.5065588832755, - "cc:pop:grid3-total": 2050.426548665149, - "cc:pop:kontur-total": 3302.146236015282, - "cc:pop:men": 1515.1142831477, - "cc:pop:sixty-plus": 173.5799044054785, - "cc:pop:total": 3207.2312365383286, - "cc:pop:under-five": 532.8738262813439, - "cc:pop:women": 1692.1169533906289, - "cc:pop:women-fiften-to-forty-nine": 875.1677481572092, - "cc:pop:wp-total": 2552.7381522560377, - "cc:pop:wp-total-UN": 2958.392031894326, - "cc:id": "309", - "cc:Name": "Magbeni MCHP", - "cc:site": [-12.8132, 8.5552], - "user:parentName": "Koya", - "user:code": "OU_254963", - "user:orgUnitId": "UJ80rknbJtm", - "user:level": "4", - "user:parentId": "pRHGAROvuyI" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.528199, 8.741099], - [-12.525599, 8.737799], - [-12.522599, 8.732499], - [-12.518299, 8.727099], - [-12.516099, 8.722799], - [-12.5136, 8.7185], - [-12.512299, 8.715399], - [-12.509799, 8.711099], - [-12.508499, 8.707899], - [-12.506, 8.7036], - [-12.5041, 8.6998], - [-12.4992, 8.6936], - [-12.496999, 8.689299], - [-12.4945, 8.685], - [-12.493199, 8.681899], - [-12.4907, 8.6776], - [-12.4893, 8.6744], - [-12.486899, 8.670099], - [-12.4829, 8.6618], - [-12.481599, 8.656699], - [-12.479399, 8.651399], - [-12.4786, 8.6477], - [-12.4783, 8.6419], - [-12.4777, 8.6382], - [-12.4755, 8.6328], - [-12.4747, 8.6291], - [-12.4744, 8.6233], - [-12.4736, 8.6192], - [-12.471199, 8.613299], - [-12.470699, 8.609499], - [-12.4704, 8.6037], - [-12.4696, 8.6001], - [-12.4677, 8.5955], - [-12.4665, 8.5905], - [-12.4656, 8.5886], - [-12.463399, 8.585999], - [-12.4551, 8.5816], - [-12.451799, 8.580299], - [-12.447499, 8.577999], - [-12.444199, 8.576699], - [-12.4359, 8.5724], - [-12.4334, 8.569399], - [-12.432699, 8.566799], - [-12.4325, 8.564], - [-12.432499, 8.541499], - [-12.4323, 8.5376], - [-12.4317, 8.5339], - [-12.429399, 8.528499], - [-12.428799, 8.525999], - [-12.4277, 8.519], - [-12.425499, 8.513599], - [-12.424899, 8.510899], - [-12.424099, 8.505099], - [-12.422599, 8.5016], - [-12.418799, 8.4973], - [-12.4049, 8.4969], - [-12.400499, 8.496099], - [-12.395899, 8.494699], - [-12.3904, 8.4945], - [-12.375599, 8.498], - [-12.371999, 8.4999], - [-12.3689, 8.502699], - [-12.366199, 8.5059], - [-12.362099, 8.5121], - [-12.3593, 8.515199], - [-12.3559, 8.517599], - [-12.351999, 8.519], - [-12.341, 8.5211], - [-12.3364, 8.524099], - [-12.332799, 8.5283], - [-12.327499, 8.538299], - [-12.324699, 8.540599], - [-12.320599, 8.5418], - [-12.3103, 8.542599], - [-12.306199, 8.5435], - [-12.2962, 8.546899], - [-12.287699, 8.5519], - [-12.281199, 8.5542], - [-12.2696, 8.5588], - [-12.270199, 8.564499], - [-12.271699, 8.568199], - [-12.2751, 8.5716], - [-12.2823, 8.5755], - [-12.288899, 8.578299], - [-12.2956, 8.5803], - [-12.303299, 8.583799], - [-12.310599, 8.588199], - [-12.317799, 8.5914], - [-12.320799, 8.595099], - [-12.321599, 8.600099], - [-12.3198, 8.6085], - [-12.3198, 8.6128], - [-12.321099, 8.6199], - [-12.3201, 8.628799], - [-12.3207, 8.631599], - [-12.3235, 8.635299], - [-12.3264, 8.637099], - [-12.330399, 8.637499], - [-12.3373, 8.635899], - [-12.342999, 8.6354], - [-12.347299, 8.635799], - [-12.361499, 8.639799], - [-12.367899, 8.644099], - [-12.3743, 8.6478], - [-12.3764, 8.6498], - [-12.377999, 8.652299], - [-12.378699, 8.655099], - [-12.378799, 8.6594], - [-12.376599, 8.6683], - [-12.375899, 8.6821], - [-12.375199, 8.684899], - [-12.373099, 8.688199], - [-12.369899, 8.6903], - [-12.365699, 8.691], - [-12.355399, 8.6918], - [-12.351599, 8.6929], - [-12.346299, 8.6953], - [-12.3424, 8.697799], - [-12.34, 8.699799], - [-12.334699, 8.7077], - [-12.332099, 8.7101], - [-12.3279, 8.7131], - [-12.332899, 8.718399], - [-12.3354, 8.7216], - [-12.3368, 8.7249], - [-12.337299, 8.729299], - [-12.335999, 8.7336], - [-12.3307, 8.741599], - [-12.326299, 8.75], - [-12.324699, 8.756], - [-12.3243, 8.7616], - [-12.324399, 8.772999], - [-12.323899, 8.777099], - [-12.321899, 8.7816], - [-12.3179, 8.786299], - [-12.3173, 8.787499], - [-12.320899, 8.791999], - [-12.324599, 8.795099], - [-12.3272, 8.796599], - [-12.3296, 8.7971], - [-12.333499, 8.797299], - [-12.337399, 8.7971], - [-12.341199, 8.7963], - [-12.346399, 8.794], - [-12.3515, 8.792799], - [-12.3567, 8.790299], - [-12.364999, 8.7865], - [-12.3701, 8.785399], - [-12.3793, 8.780999], - [-12.3823, 8.778599], - [-12.389399, 8.7715], - [-12.393099, 8.7684], - [-12.401399, 8.7643], - [-12.4041, 8.763699], - [-12.406999, 8.7635], - [-12.415699, 8.7634], - [-12.419399, 8.7627], - [-12.423899, 8.7608], - [-12.426499, 8.7601], - [-12.4331, 8.759299], - [-12.441999, 8.7555], - [-12.446199, 8.7531], - [-12.4494, 8.751699], - [-12.4523, 8.749499], - [-12.4553, 8.746099], - [-12.4581, 8.7423], - [-12.463999, 8.7384], - [-12.466099, 8.7377], - [-12.4695, 8.7373], - [-12.476399, 8.737499], - [-12.479199, 8.738199], - [-12.484399, 8.740499], - [-12.4895, 8.7418], - [-12.4927, 8.7435], - [-12.4978, 8.747299], - [-12.5014, 8.7485], - [-12.5053, 8.7487], - [-12.514899, 8.748699], - [-12.520299, 8.7458], - [-12.524899, 8.7438], - [-12.528199, 8.741099] - ] - ], - "type": "Polygon" - }, - "id": 310, - "properties": { - "cc:admin:id": ["92"], - "cc:oBld:total": 585, - "cc:pop:fifteen-to-twenty-four": 10157.536026624184, - "cc:pop:grid3-total": 18121.53613459695, - "cc:pop:kontur-total": 54097.0136479929, - "cc:pop:men": 25944.286738292914, - "cc:pop:sixty-plus": 3422.841127593977, - "cc:pop:total": 54228.71319038776, - "cc:pop:under-five": 8700.745767853965, - "cc:pop:women": 28284.42645209484, - "cc:pop:women-fiften-to-forty-nine": 13740.348791379985, - "cc:pop:wp-total": 46930.19508373279, - "cc:pop:wp-total-UN": 54413.579509363444, - "cc:id": "310", - "cc:Name": "Magbil MCHP", - "cc:site": [-12.4889, 8.6935], - "user:parentName": "Marampa", - "user:code": "OU_255054", - "user:orgUnitId": "n9HIySyR00g", - "user:level": "4", - "user:parentId": "RWvG1aFrr0r" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.723339, 9.038648], - [-12.723299, 9.037299], - [-12.7215, 9.0294], - [-12.7211, 9.0248], - [-12.721999, 9.0173], - [-12.721799, 9.01], - [-12.719599, 9.0072], - [-12.717699, 9.0061], - [-12.7142, 9.0057], - [-12.7108, 9.0064], - [-12.708899, 9.0077], - [-12.7047, 9.011099], - [-12.702599, 9.0122], - [-12.699299, 9.0129], - [-12.692299, 9.013099], - [-12.6852, 9.0129], - [-12.6813, 9.0121], - [-12.676199, 9.009499], - [-12.6718, 9.0077], - [-12.6697, 9.0073], - [-12.663299, 9.0089], - [-12.658099, 9.009299], - [-12.6503, 9.009], - [-12.647599, 9.008299], - [-12.642199, 9.005999], - [-12.6393, 9.0055], - [-12.636399, 9.0054], - [-12.6335, 9.006], - [-12.6304, 9.008099], - [-12.626899, 9.0138], - [-12.625199, 9.015499], - [-12.6231, 9.016399], - [-12.620699, 9.0168], - [-12.617699, 9.016799], - [-12.6139, 9.016], - [-12.611724, 9.015033], - [-12.608748, 9.015597], - [-12.608306, 9.015896], - [-12.606795, 9.017874], - [-12.606227, 9.019007], - [-12.605786, 9.01948], - [-12.604463, 9.020289], - [-12.603506, 9.020562], - [-12.600395, 9.020761], - [-12.598164, 9.021732], - [-12.596049, 9.021967], - [-12.594926, 9.021894], - [-12.592534, 9.022079], - [-12.591877, 9.022354], - [-12.590634, 9.023471], - [-12.589954, 9.024616], - [-12.589299, 9.026408], - [-12.588241, 9.028099], - [-12.587385, 9.028746], - [-12.586477, 9.029145], - [-12.58542, 9.029966], - [-12.584059, 9.032056], - [-12.583604, 9.033102], - [-12.583489, 9.033791], - [-12.583442, 9.034993], - [-12.582525, 9.037544], - [-12.582637, 9.03836], - [-12.581705, 9.040039], - [-12.580637, 9.040932], - [-12.580207, 9.040822], - [-12.579885, 9.041043], - [-12.576052, 9.044145], - [-12.574478, 9.046529], - [-12.573702, 9.047359], - [-12.573031, 9.049993], - [-12.572982, 9.050816], - [-12.573193, 9.052071], - [-12.57356, 9.053069], - [-12.573525, 9.053515], - [-12.572932, 9.054043], - [-12.572077, 9.054323], - [-12.570172, 9.054846], - [-12.567547, 9.05527], - [-12.566079, 9.055744], - [-12.563424, 9.057313], - [-12.561878, 9.058791], - [-12.561039, 9.061301], - [-12.561008, 9.062916], - [-12.567082, 9.062917], - [-12.571249, 9.06625], - [-12.571866, 9.074254], - [-12.572147, 9.074255], - [-12.573374, 9.074693], - [-12.573922, 9.075218], - [-12.575155, 9.0757], - [-12.576166, 9.07699], - [-12.572289, 9.083708], - [-12.575416, 9.089125], - [-12.575417, 9.07875], - [-12.579583, 9.075417], - [-12.59207, 9.075417], - [-12.592804, 9.075682], - [-12.594495, 9.077346], - [-12.596369, 9.077658], - [-12.596392, 9.077777], - [-12.601249, 9.077083], - [-12.609583, 9.083749], - [-12.617917, 9.07875], - [-12.62125, 9.082916], - [-12.623678, 9.08413], - [-12.623886, 9.083887], - [-12.62722, 9.087221], - [-12.627508, 9.088268], - [-12.627768, 9.088506], - [-12.627083, 9.091249], - [-12.630693, 9.096304], - [-12.629, 9.098167], - [-12.63125, 9.107916], - [-12.639582, 9.105416], - [-12.640586, 9.104412], - [-12.640535, 9.10428], - [-12.640518, 9.102084], - [-12.640519, 9.102083], - [-12.645133, 9.102083], - [-12.646264, 9.103365], - [-12.646646, 9.104062], - [-12.647608, 9.104484], - [-12.64844, 9.104858], - [-12.649033, 9.105714], - [-12.64987, 9.106249], - [-12.655416, 9.106249], - [-12.656699, 9.105608], - [-12.656928, 9.105306], - [-12.657213, 9.104681], - [-12.658126, 9.103746], - [-12.658899, 9.10347], - [-12.6591, 9.102899], - [-12.6611, 9.1016], - [-12.663999, 9.1013], - [-12.667, 9.102199], - [-12.673799, 9.1008], - [-12.682499, 9.0966], - [-12.686199, 9.0936], - [-12.6885, 9.090699], - [-12.6942, 9.0809], - [-12.701399, 9.0749], - [-12.7074, 9.069399], - [-12.714099, 9.0626], - [-12.717999, 9.0573], - [-12.720799, 9.0507], - [-12.722499, 9.0452], - [-12.723399, 9.0407], - [-12.723339, 9.038648] - ] - ], - "type": "Polygon" - }, - "id": 311, - "properties": { - "cc:admin:id": ["117"], - "cc:oBld:total": 358, - "cc:pop:fifteen-to-twenty-four": 1991.619186181793, - "cc:pop:grid3-total": 12093.583857320045, - "cc:pop:kontur-total": 10854.855193892516, - "cc:pop:men": 5012.123280209263, - "cc:pop:sixty-plus": 696.8232988722993, - "cc:pop:total": 10818.943158559434, - "cc:pop:under-five": 1757.4178765825588, - "cc:pop:women": 5806.819878350174, - "cc:pop:women-fiften-to-forty-nine": 2850.7756377467636, - "cc:pop:wp-total": 9722.843272396636, - "cc:pop:wp-total-UN": 11266.650450520354, - "cc:id": "311", - "cc:Name": "Magbolonthor MCHP", - "cc:site": [-12.6722, 9.0644], - "user:parentName": "Sanda Magbolonthor", - "user:code": "OU_255001", - "user:orgUnitId": "XfVYz6l2rzg", - "user:level": "4", - "user:parentId": "HWjrSuoNPte" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.003313, 8.678442], - [-12.002036, 8.677837], - [-12.001278, 8.677954], - [-12.000826, 8.678344], - [-11.999981, 8.679588], - [-11.998156, 8.681405], - [-11.998041, 8.681722], - [-11.998036, 8.681726], - [-11.99625, 8.67875], - [-11.998749, 8.669583], - [-11.986932, 8.669582], - [-11.986019, 8.665818], - [-11.986048, 8.663652], - [-11.985472, 8.661837], - [-11.985347, 8.65943], - [-11.985703, 8.657732], - [-11.985463, 8.657258], - [-11.984558, 8.656813], - [-11.983374, 8.658822], - [-11.980886, 8.661739], - [-11.980162, 8.662397], - [-11.979641, 8.662672], - [-11.979553, 8.662715], - [-11.977542, 8.663784], - [-11.97719, 8.664224], - [-11.976944, 8.664943], - [-11.976308, 8.666909], - [-11.9741, 8.669421], - [-11.97296, 8.671558], - [-11.972447, 8.672362], - [-11.969116, 8.67604], - [-11.967208, 8.678751], - [-11.964738, 8.68244], - [-11.963192, 8.684835], - [-11.957039, 8.685955], - [-11.957011, 8.687057], - [-11.956429, 8.688109], - [-11.956493, 8.688971], - [-11.955139, 8.689191], - [-11.954168, 8.689023], - [-11.952732, 8.688485], - [-11.952266, 8.688047], - [-11.950274, 8.687885], - [-11.947779, 8.688435], - [-11.946352, 8.688358], - [-11.945656, 8.687894], - [-11.945494, 8.68902], - [-11.945301, 8.689393], - [-11.944512, 8.690242], - [-11.943486, 8.691915], - [-11.942328, 8.695826], - [-11.940352, 8.698749], - [-11.937917, 8.698749], - [-11.932917, 8.69625], - [-11.932916, 8.69875], - [-11.932083, 8.702082], - [-11.934582, 8.70375], - [-11.934583, 8.708984], - [-11.93349, 8.709698], - [-11.932928, 8.710044], - [-11.932591, 8.710249], - [-11.932609, 8.710519], - [-11.933631, 8.710876], - [-11.934326, 8.711513], - [-11.93565, 8.712684], - [-11.936021, 8.713415], - [-11.937008, 8.71567], - [-11.938023, 8.717904], - [-11.93781, 8.718137], - [-11.937506, 8.71806], - [-11.937209, 8.718297], - [-11.93722, 8.718518], - [-11.937314, 8.718652], - [-11.937488, 8.718811], - [-11.937339, 8.719192], - [-11.937248, 8.71944], - [-11.937411, 8.720133], - [-11.937416, 8.720163], - [-11.937442, 8.72024], - [-11.935206, 8.721509], - [-11.936012, 8.722142], - [-11.936893, 8.722957], - [-11.937119, 8.723246], - [-11.938054, 8.724529], - [-11.937427, 8.725143], - [-11.939254, 8.726636], - [-11.939513, 8.727119], - [-11.938494, 8.727517], - [-11.937594, 8.72786], - [-11.937527, 8.727921], - [-11.937996, 8.728859], - [-11.937998, 8.728866], - [-11.937954, 8.728968], - [-11.938608, 8.730484], - [-11.938626, 8.730528], - [-11.938756, 8.730886], - [-11.938762, 8.730894], - [-11.9467, 8.725399], - [-11.9493, 8.723099], - [-11.953699, 8.7182], - [-11.9584, 8.715199], - [-11.9681, 8.710499], - [-11.974799, 8.7086], - [-11.980199, 8.7066], - [-11.986399, 8.705499], - [-11.9887, 8.700999], - [-11.9937, 8.693599], - [-11.9977, 8.684899], - [-11.9998, 8.681599], - [-12.001699, 8.6795], - [-12.003313, 8.678442] - ] - ], - "type": "Polygon" - }, - "id": 312, - "properties": { - "cc:admin:id": ["54"], - "cc:oBld:total": 2541, - "cc:pop:fifteen-to-twenty-four": 3547.8680413739958, - "cc:pop:grid3-total": 15588.144745103335, - "cc:pop:kontur-total": 17951.841155664606, - "cc:pop:men": 9030.295864421954, - "cc:pop:sixty-plus": 1200.096335132703, - "cc:pop:total": 19085.41012513131, - "cc:pop:under-five": 3058.012922971783, - "cc:pop:women": 10055.114260709352, - "cc:pop:women-fiften-to-forty-nine": 4884.082585490972, - "cc:pop:wp-total": 15711.832459760708, - "cc:pop:wp-total-UN": 18219.933210307383, - "cc:id": "312", - "cc:Name": "Magburaka Govt. Hospital", - "cc:site": [-11.9388, 8.7208], - "user:parentName": "Kholifa Rowalla", - "user:code": "OU_268156", - "user:orgUnitId": "mEUUK7MHLSF", - "user:level": "4", - "user:parentId": "PQZJPIpTepd" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.208198, 9.386249], - [-12.204411, 9.37969], - [-12.200147, 9.379689], - [-12.199583, 9.372917], - [-12.199583, 9.372084], - [-12.199584, 9.372083], - [-12.201249, 9.372916], - [-12.202916, 9.367083], - [-12.203749, 9.362083], - [-12.19875, 9.359583], - [-12.198152, 9.357194], - [-12.198126, 9.357202], - [-12.197572, 9.357713], - [-12.19757, 9.357712], - [-12.19625, 9.35375], - [-12.199152, 9.347945], - [-12.1969, 9.346999], - [-12.1944, 9.344099], - [-12.1927, 9.3375], - [-12.1907, 9.333], - [-12.1887, 9.3291], - [-12.186299, 9.325999], - [-12.1829, 9.3225], - [-12.180699, 9.320599], - [-12.178299, 9.318999], - [-12.1706, 9.3155], - [-12.166999, 9.314799], - [-12.1544, 9.3147], - [-12.1497, 9.3141], - [-12.144299, 9.311899], - [-12.1364, 9.310299], - [-12.133, 9.3076], - [-12.1292, 9.311899], - [-12.124999, 9.3156], - [-12.121999, 9.3177], - [-12.118099, 9.3195], - [-12.1106, 9.323299], - [-12.1074, 9.325899], - [-12.104399, 9.3299], - [-12.102699, 9.3338], - [-12.098899, 9.3413], - [-12.096299, 9.3445], - [-12.0924, 9.347599], - [-12.084799, 9.3512], - [-12.080699, 9.3519], - [-12.075417, 9.352042], - [-12.075417, 9.356249], - [-12.078749, 9.360416], - [-12.075417, 9.36125], - [-12.072083, 9.365417], - [-12.072083, 9.374582], - [-12.077083, 9.379582], - [-12.084531, 9.379583], - [-12.082997, 9.382243], - [-12.086903, 9.389008], - [-12.094715, 9.389008], - [-12.098621, 9.382244], - [-12.106433, 9.382244], - [-12.110341, 9.389008], - [-12.114842, 9.389009], - [-12.117917, 9.392082], - [-12.126028, 9.392083], - [-12.126223, 9.393007], - [-12.126226, 9.393088], - [-12.122917, 9.39375], - [-12.119583, 9.397917], - [-12.119583, 9.407701], - [-12.119918, 9.407654], - [-12.122332, 9.407669], - [-12.123598, 9.407912], - [-12.122917, 9.415416], - [-12.122917, 9.418471], - [-12.124031, 9.417865], - [-12.125288, 9.416852], - [-12.125617, 9.415905], - [-12.126072, 9.413512], - [-12.126694, 9.409967], - [-12.133749, 9.412082], - [-12.135932, 9.409901], - [-12.140544, 9.409901], - [-12.144451, 9.416666], - [-12.140545, 9.423432], - [-12.141651, 9.425347], - [-12.144583, 9.426249], - [-12.146249, 9.426249], - [-12.147083, 9.425416], - [-12.149582, 9.42375], - [-12.150417, 9.422917], - [-12.15625, 9.422917], - [-12.166249, 9.42375], - [-12.167082, 9.43375], - [-12.159583, 9.440416], - [-12.162083, 9.442082], - [-12.165417, 9.442083], - [-12.168749, 9.444582], - [-12.169582, 9.444582], - [-12.172916, 9.437083], - [-12.177082, 9.437917], - [-12.178749, 9.442917], - [-12.175417, 9.453749], - [-12.17875, 9.456249], - [-12.183272, 9.456249], - [-12.184947, 9.455701], - [-12.191249, 9.44625], - [-12.192082, 9.446249], - [-12.194582, 9.44125], - [-12.193749, 9.43625], - [-12.190417, 9.432083], - [-12.189801, 9.432006], - [-12.189517, 9.431516], - [-12.193423, 9.42475], - [-12.201235, 9.424749], - [-12.203286, 9.421199], - [-12.203749, 9.421249], - [-12.204582, 9.419583], - [-12.204582, 9.409583], - [-12.202917, 9.408749], - [-12.202916, 9.40375], - [-12.20108, 9.403291], - [-12.200797, 9.402192], - [-12.197666, 9.402902], - [-12.19696, 9.40275], - [-12.19502, 9.401506], - [-12.194057, 9.400916], - [-12.193907, 9.40083], - [-12.194582, 9.395417], - [-12.195419, 9.39249], - [-12.201797, 9.392489], - [-12.2054, 9.38625], - [-12.208198, 9.386249] - ] - ], - "type": "Polygon" - }, - "id": 313, - "properties": { - "cc:admin:id": ["116"], - "cc:oBld:total": 46, - "cc:pop:fifteen-to-twenty-four": 814.2559010766182, - "cc:pop:grid3-total": 2832.6965371331216, - "cc:pop:kontur-total": 4293.13365711773, - "cc:pop:men": 2091.4714559179924, - "cc:pop:sixty-plus": 264.9688721848384, - "cc:pop:total": 4401.797894116527, - "cc:pop:under-five": 714.4823392044549, - "cc:pop:women": 2310.326438198534, - "cc:pop:women-fiften-to-forty-nine": 1118.1515615792548, - "cc:pop:wp-total": 4000.237954747155, - "cc:pop:wp-total-UN": 4646.163575404422, - "cc:id": "313", - "cc:Name": "Maharibo MCHP", - "cc:site": [-12.1498, 9.3911], - "user:parentName": "Sanda Loko", - "user:code": "OU_193241", - "user:orgUnitId": "CKJ9YS2AbWy", - "user:level": "4", - "user:parentId": "WXnNDWTiE9r" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.304899, 9.002599], - [-12.304599, 9.0003], - [-12.3033, 8.9984], - [-12.301599, 8.9968], - [-12.299499, 8.9958], - [-12.2975, 8.996], - [-12.2953, 8.997499], - [-12.287499, 9.005599], - [-12.2842, 9.005699], - [-12.2818, 9.004899], - [-12.2809, 9.002099], - [-12.2822, 8.999599], - [-12.284499, 8.9972], - [-12.285999, 8.9951], - [-12.286699, 8.992599], - [-12.286299, 8.990199], - [-12.282599, 8.982699], - [-12.280799, 8.980499], - [-12.278, 8.978], - [-12.2752, 8.9765], - [-12.272999, 8.975999], - [-12.2668, 8.9755], - [-12.263399, 8.974199], - [-12.261199, 8.972599], - [-12.2559, 8.9674], - [-12.2541, 8.9648], - [-12.2533, 8.962299], - [-12.2533, 8.9592], - [-12.2544, 8.956499], - [-12.2568, 8.9549], - [-12.260799, 8.955499], - [-12.2645, 8.9551], - [-12.268599, 8.955599], - [-12.272199, 8.953499], - [-12.274599, 8.9509], - [-12.275799, 8.947699], - [-12.274799, 8.943899], - [-12.2724, 8.943], - [-12.267999, 8.945099], - [-12.2651, 8.945299], - [-12.2625, 8.9441], - [-12.261, 8.942099], - [-12.2604, 8.939599], - [-12.2608, 8.937199], - [-12.2624, 8.935399], - [-12.2646, 8.934899], - [-12.268499, 8.934699], - [-12.270499, 8.933899], - [-12.271499, 8.932299], - [-12.2714, 8.9296], - [-12.269699, 8.9279], - [-12.2654, 8.9268], - [-12.2621, 8.925299], - [-12.2587, 8.922199], - [-12.257, 8.918599], - [-12.257799, 8.9155], - [-12.259586, 8.913928], - [-12.257186, 8.913894], - [-12.253353, 8.91265], - [-12.252599, 8.912715], - [-12.246478, 8.915554], - [-12.244939, 8.916454], - [-12.244405, 8.917059], - [-12.244233, 8.917757], - [-12.244468, 8.918424], - [-12.246304, 8.921215], - [-12.246378, 8.92231], - [-12.242137, 8.922311], - [-12.238229, 8.929075], - [-12.23228, 8.929075], - [-12.23228, 8.929074], - [-12.232864, 8.92849], - [-12.233131, 8.927777], - [-12.232644, 8.926366], - [-12.232157, 8.92604], - [-12.231138, 8.926258], - [-12.229506, 8.927497], - [-12.226511, 8.922311], - [-12.220402, 8.922311], - [-12.218502, 8.924684], - [-12.220053, 8.926025], - [-12.222439, 8.929002], - [-12.224008, 8.929653], - [-12.224131, 8.929649], - [-12.224132, 8.92965], - [-12.223749, 8.930417], - [-12.217917, 8.932916], - [-12.211689, 8.925132], - [-12.21065, 8.924983], - [-12.207187, 8.927292], - [-12.2074, 8.9277], - [-12.208099, 8.930499], - [-12.208299, 8.934199], - [-12.2075, 8.936699], - [-12.205799, 8.938199], - [-12.202599, 8.938399], - [-12.199899, 8.937599], - [-12.1955, 8.9356], - [-12.1916, 8.9349], - [-12.1838, 8.9349], - [-12.179199, 8.9356], - [-12.173299, 8.938099], - [-12.1704, 8.938299], - [-12.167899, 8.937299], - [-12.165399, 8.9339], - [-12.1631, 8.9323], - [-12.1609, 8.9322], - [-12.159099, 8.9334], - [-12.157499, 8.936], - [-12.1532, 8.941799], - [-12.15164, 8.94492], - [-12.152083, 8.946249], - [-12.158749, 8.949583], - [-12.154583, 8.955417], - [-12.154583, 8.958685], - [-12.155416, 8.958796], - [-12.155417, 8.960416], - [-12.157917, 8.960417], - [-12.162797, 8.964076], - [-12.163995, 8.964086], - [-12.165555, 8.963647], - [-12.166495, 8.963547], - [-12.167082, 8.963693], - [-12.167083, 8.969582], - [-12.169582, 8.975417], - [-12.16625, 8.979582], - [-12.162606, 8.980191], - [-12.162566, 8.981035], - [-12.163023, 8.983325], - [-12.163023, 8.983937], - [-12.166249, 8.984582], - [-12.167916, 8.984583], - [-12.167917, 8.996249], - [-12.168749, 8.997916], - [-12.16625, 9.000416], - [-12.164583, 9.000417], - [-12.165555, 9.00236], - [-12.168911, 9.00182], - [-12.168912, 9.001821], - [-12.168702, 9.002208], - [-12.168096, 9.003321], - [-12.171249, 9.004582], - [-12.17125, 9.005416], - [-12.172083, 9.005417], - [-12.178749, 9.00875], - [-12.177916, 9.012083], - [-12.177083, 9.017082], - [-12.177082, 9.017917], - [-12.172083, 9.026249], - [-12.172083, 9.027083], - [-12.174582, 9.032082], - [-12.175257, 9.03242], - [-12.177098, 9.031132], - [-12.178549, 9.029516], - [-12.180055, 9.028493], - [-12.180522, 9.028236], - [-12.181511, 9.027685], - [-12.182901, 9.026936], - [-12.185528, 9.024785], - [-12.186108, 9.023906], - [-12.186184, 9.02354], - [-12.186213, 9.023542], - [-12.187749, 9.023707], - [-12.186986, 9.024108], - [-12.186771, 9.02444], - [-12.186167, 9.024516], - [-12.185815, 9.024736], - [-12.185693, 9.025181], - [-12.186174, 9.025522], - [-12.186243, 9.026103], - [-12.186022, 9.026685], - [-12.185402, 9.027064], - [-12.185439, 9.027359], - [-12.18459, 9.027518], - [-12.184215, 9.028349], - [-12.183641, 9.028645], - [-12.182615, 9.029899], - [-12.182683, 9.030791], - [-12.182446, 9.031139], - [-12.181764, 9.031518], - [-12.178972, 9.031803], - [-12.178044, 9.032111], - [-12.177376, 9.032744], - [-12.176279, 9.032453], - [-12.175836, 9.032754], - [-12.179582, 9.038749], - [-12.18125, 9.040416], - [-12.186249, 9.040416], - [-12.190416, 9.037082], - [-12.19125, 9.027083], - [-12.200416, 9.027082], - [-12.202016, 9.025483], - [-12.204452, 9.029701], - [-12.212264, 9.029702], - [-12.216171, 9.036467], - [-12.223169, 9.036467], - [-12.22375, 9.03125], - [-12.22875, 9.027083], - [-12.237082, 9.027083], - [-12.240417, 9.030416], - [-12.245416, 9.02875], - [-12.252083, 9.031249], - [-12.254582, 9.030417], - [-12.257917, 9.035416], - [-12.261249, 9.036249], - [-12.262083, 9.035416], - [-12.267083, 9.03375], - [-12.272947, 9.033749], - [-12.2728, 9.0319], - [-12.273499, 9.0296], - [-12.274799, 9.0283], - [-12.280599, 9.0267], - [-12.2854, 9.024599], - [-12.288699, 9.022799], - [-12.290499, 9.0205], - [-12.2914, 9.017599], - [-12.291499, 9.014899], - [-12.2913, 9.0093], - [-12.295399, 9.0093], - [-12.298799, 9.008599], - [-12.302899, 9.005599], - [-12.304899, 9.002599] - ] - ], - "type": "Polygon" - }, - "id": 314, - "properties": { - "cc:admin:id": ["32"], - "cc:oBld:total": 240, - "cc:pop:fifteen-to-twenty-four": 956.9473739493418, - "cc:pop:grid3-total": 5298.408719679246, - "cc:pop:kontur-total": 4740.757032297681, - "cc:pop:men": 2376.864453189265, - "cc:pop:sixty-plus": 346.55231287407605, - "cc:pop:total": 5017.645016526608, - "cc:pop:under-five": 790.4573172628752, - "cc:pop:women": 2640.780563337342, - "cc:pop:women-fiften-to-forty-nine": 1293.1716486119399, - "cc:pop:wp-total": 5324.649702365459, - "cc:pop:wp-total-UN": 6181.489813403745, - "cc:id": "314", - "cc:Name": "Maharie MCHP", - "cc:site": [-12.224, 8.9515], - "user:parentName": "Gbendembu Ngowahun", - "user:code": "OU_193282", - "user:orgUnitId": "qEQFWnKh4gs", - "user:level": "4", - "user:parentId": "BXJdOLvUrZB" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.208077, 8.60719], - [-13.207399, 8.6046], - [-13.2068, 8.603999], - [-13.206499, 8.6021], - [-13.205099, 8.600399], - [-13.204599, 8.5974], - [-13.204, 8.5965], - [-13.203998, 8.596486], - [-13.201657, 8.596876], - [-13.201641, 8.596616], - [-13.201627, 8.596434], - [-13.201011, 8.596493], - [-13.200918, 8.596667], - [-13.199709, 8.596407], - [-13.198696, 8.596811], - [-13.198453, 8.596708], - [-13.198265, 8.596852], - [-13.197708, 8.596777], - [-13.197532, 8.596891], - [-13.196763, 8.596724], - [-13.195814, 8.596978], - [-13.195762, 8.59698], - [-13.193415, 8.596979], - [-13.193148, 8.598149], - [-13.193131, 8.598146], - [-13.19245, 8.598164], - [-13.191938, 8.598285], - [-13.191247, 8.598718], - [-13.191218, 8.598743], - [-13.19079, 8.599133], - [-13.190311, 8.599463], - [-13.189813, 8.5999], - [-13.189612, 8.600147], - [-13.190219, 8.600627], - [-13.190315, 8.601886], - [-13.190859, 8.601895], - [-13.190853, 8.602812], - [-13.190992, 8.603131], - [-13.190773, 8.603332], - [-13.190681, 8.603341], - [-13.190177, 8.603542], - [-13.189955, 8.603551], - [-13.190012, 8.603729], - [-13.190093, 8.60478], - [-13.190132, 8.605125], - [-13.190444, 8.605074], - [-13.190792, 8.605068], - [-13.191095, 8.605322], - [-13.19248, 8.605178], - [-13.193058, 8.604859], - [-13.193874, 8.605086], - [-13.193726, 8.605641], - [-13.192835, 8.606874], - [-13.192513, 8.607343], - [-13.192496, 8.607361], - [-13.192071, 8.607901], - [-13.192047, 8.60843], - [-13.194906, 8.606989], - [-13.19582, 8.606782], - [-13.196883, 8.60694], - [-13.196739, 8.607147], - [-13.195718, 8.608909], - [-13.195475, 8.609414], - [-13.194941, 8.610488], - [-13.195398, 8.610804], - [-13.196613, 8.610729], - [-13.197498, 8.61092], - [-13.197625, 8.61117], - [-13.198142, 8.611191], - [-13.200156, 8.609915], - [-13.200808, 8.60826], - [-13.200811, 8.608245], - [-13.201195, 8.608314], - [-13.201885, 8.608586], - [-13.202606, 8.608884], - [-13.202983, 8.60734], - [-13.203728, 8.607492], - [-13.204222, 8.607563], - [-13.204562, 8.607591], - [-13.205243, 8.607609], - [-13.204972, 8.6056], - [-13.205075, 8.605153], - [-13.205134, 8.604828], - [-13.205407, 8.60487], - [-13.206029, 8.604805], - [-13.206498, 8.605831], - [-13.206887, 8.606831], - [-13.206792, 8.60749], - [-13.20746, 8.6073], - [-13.207504, 8.607445], - [-13.208077, 8.60719] - ] - ], - "type": "Polygon" - }, - "id": 315, - "properties": { - "cc:admin:id": ["44"], - "cc:oBld:total": 1184, - "cc:pop:fifteen-to-twenty-four": 1465.6341790754234, - "cc:pop:grid3-total": 10667.984956496199, - "cc:pop:kontur-total": 7218.033783348991, - "cc:pop:men": 3851.758777283576, - "cc:pop:sixty-plus": 495.0008917416095, - "cc:pop:total": 8009.578854296768, - "cc:pop:under-five": 1285.4658918217067, - "cc:pop:women": 4157.820077013189, - "cc:pop:women-fiften-to-forty-nine": 2030.1523122613967, - "cc:pop:wp-total": 6479.458772786643, - "cc:pop:wp-total-UN": 7514.682804379287, - "cc:id": "315", - "cc:Name": "Mahera CHC", - "cc:site": [-13.199, 8.6037], - "user:parentName": "Kaffu Bullom", - "user:code": "OU_255018", - "user:orgUnitId": "LnToY3ExKxL", - "user:level": "4", - "user:parentId": "vn9KJsLyP5f" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.168059, 7.817888], - [-11.166006, 7.81532], - [-11.166006, 7.815318], - [-11.166091, 7.815258], - [-11.162917, 7.812083], - [-11.162916, 7.797917], - [-11.159583, 7.797917], - [-11.158749, 7.802084], - [-11.157818, 7.803014], - [-11.154869, 7.803014], - [-11.150963, 7.79625], - [-11.154868, 7.789484], - [-11.154973, 7.789483], - [-11.152917, 7.787083], - [-11.15482, 7.783276], - [-11.155209, 7.783456], - [-11.158749, 7.777083], - [-11.157082, 7.771249], - [-11.150417, 7.76625], - [-11.146906, 7.764495], - [-11.146854, 7.765087], - [-11.147073, 7.767492], - [-11.146834, 7.76929], - [-11.141249, 7.772083], - [-11.135887, 7.772753], - [-11.135589, 7.771908], - [-11.133762, 7.770693], - [-11.132695, 7.769479], - [-11.131347, 7.768826], - [-11.130741, 7.7683], - [-11.129813, 7.767221], - [-11.129332, 7.765855], - [-11.128951, 7.765381], - [-11.126612, 7.764046], - [-11.12455, 7.763455], - [-11.124235, 7.763046], - [-11.123599, 7.761529], - [-11.124099, 7.761031], - [-11.124554, 7.759839], - [-11.126211, 7.758131], - [-11.120319, 7.75813], - [-11.119786, 7.757651], - [-11.118747, 7.756251], - [-11.116249, 7.757084], - [-11.112083, 7.758749], - [-11.11125, 7.758749], - [-11.105416, 7.752916], - [-11.102082, 7.75125], - [-11.097083, 7.751249], - [-11.092916, 7.742917], - [-11.087083, 7.741249], - [-11.086249, 7.73875], - [-11.08375, 7.735417], - [-11.083749, 7.734635], - [-11.078579, 7.734634], - [-11.074673, 7.727869], - [-11.070997, 7.727868], - [-11.071249, 7.724584], - [-11.069836, 7.722818], - [-11.065542, 7.722818], - [-11.061636, 7.729583], - [-11.057083, 7.729584], - [-11.055922, 7.730745], - [-11.056399, 7.748999], - [-11.056291, 7.750519], - [-11.057917, 7.754583], - [-11.059769, 7.754769], - [-11.056028, 7.76125], - [-11.059877, 7.767916], - [-11.062082, 7.767916], - [-11.065416, 7.765417], - [-11.067082, 7.767916], - [-11.067917, 7.779583], - [-11.072083, 7.782916], - [-11.077701, 7.782917], - [-11.077012, 7.784112], - [-11.080917, 7.790878], - [-11.080266, 7.792007], - [-11.077083, 7.792917], - [-11.07375, 7.79625], - [-11.072917, 7.807083], - [-11.077015, 7.811182], - [-11.078498, 7.813749], - [-11.079582, 7.81375], - [-11.079583, 7.821249], - [-11.08125, 7.824583], - [-11.082917, 7.825416], - [-11.086403, 7.824835], - [-11.085265, 7.825901], - [-11.08363, 7.82732], - [-11.086249, 7.83125], - [-11.08375, 7.837916], - [-11.094582, 7.842084], - [-11.094583, 7.848749], - [-11.099582, 7.854583], - [-11.099583, 7.856249], - [-11.100416, 7.857084], - [-11.099848, 7.859926], - [-11.098439, 7.860288], - [-11.097917, 7.860466], - [-11.097917, 7.863849], - [-11.0982, 7.863699], - [-11.1002, 7.863099], - [-11.102499, 7.8629], - [-11.104599, 7.863099], - [-11.1067, 7.8638], - [-11.1111, 7.865899], - [-11.1147, 7.8664], - [-11.1212, 7.866599], - [-11.129099, 7.8664], - [-11.13144, 7.865797], - [-11.131048, 7.865012], - [-11.13218, 7.864447], - [-11.132908, 7.863879], - [-11.134117, 7.863448], - [-11.13421, 7.863135], - [-11.137178, 7.861595], - [-11.138617, 7.860266], - [-11.138638, 7.860084], - [-11.139025, 7.859907], - [-11.139578, 7.859212], - [-11.139569, 7.859022], - [-11.139796, 7.85894], - [-11.139624, 7.858774], - [-11.139248, 7.857253], - [-11.139436, 7.857022], - [-11.139954, 7.857001], - [-11.140285, 7.856456], - [-11.140205, 7.855991], - [-11.140881, 7.855099], - [-11.141861, 7.854168], - [-11.144098, 7.853631], - [-11.145214, 7.852866], - [-11.145695, 7.852947], - [-11.146244, 7.852823], - [-11.146777, 7.852198], - [-11.147758, 7.849446], - [-11.14751, 7.848762], - [-11.147592, 7.848449], - [-11.148317, 7.847797], - [-11.149472, 7.845984], - [-11.14963, 7.843711], - [-11.149265, 7.842638], - [-11.14958, 7.84137], - [-11.150204, 7.841048], - [-11.150172, 7.840306], - [-11.150878, 7.836862], - [-11.151362, 7.83553], - [-11.151395, 7.835445], - [-11.152909, 7.833763], - [-11.154995, 7.832956], - [-11.156567, 7.832084], - [-11.157082, 7.832083], - [-11.157083, 7.831914], - [-11.157376, 7.831901], - [-11.157858, 7.832362], - [-11.159713, 7.831159], - [-11.160362, 7.830425], - [-11.16151, 7.827723], - [-11.163914, 7.824904], - [-11.168059, 7.817888] - ] - ], - "type": "Polygon" - }, - "id": 316, - "properties": { - "cc:admin:id": ["15"], - "cc:oBld:total": 1570, - "cc:pop:fifteen-to-twenty-four": 2225.5776987737418, - "cc:pop:grid3-total": 9177.99416515438, - "cc:pop:kontur-total": 11455.070043705553, - "cc:pop:men": 5405.551878840341, - "cc:pop:sixty-plus": 689.2197092627655, - "cc:pop:total": 11361.316819183996, - "cc:pop:under-five": 1802.2316198296933, - "cc:pop:women": 5955.764940343655, - "cc:pop:women-fiften-to-forty-nine": 3001.4389268478367, - "cc:pop:wp-total": 10018.710830435874, - "cc:pop:wp-total-UN": 11614.369835087158, - "cc:id": "316", - "cc:Name": "Majihun MCHP", - "cc:site": [-11.1181, 7.8484], - "user:parentName": "Dama", - "user:code": "OU_222735", - "user:orgUnitId": "ShdRyzuLKA2", - "user:level": "4", - "user:parentId": "myQ4q1W6B4y" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - [-12.960049, 8.587242], - [-12.9599, 8.587099], - [-12.959899, 8.5865], - [-12.9565, 8.5835], - [-12.9554, 8.5818], - [-12.955999, 8.580999], - [-12.955999, 8.5793], - [-12.954899, 8.5774], - [-12.9532, 8.5771], - [-12.953199, 8.5765], - [-12.951, 8.576299], - [-12.948499, 8.5749], - [-12.945699, 8.574899], - [-12.944299, 8.574299], - [-12.9401, 8.5714], - [-12.938199, 8.5737], - [-12.933, 8.5793], - [-12.933099, 8.5865], - [-12.930299, 8.5917], - [-12.928099, 8.5947], - [-12.9244, 8.598499], - [-12.918299, 8.6037], - [-12.912199, 8.6068], - [-12.904299, 8.6123], - [-12.8883, 8.621699], - [-12.8827, 8.626899], - [-12.8794, 8.631299], - [-12.876299, 8.6371], - [-12.8668, 8.658499], - [-12.8633, 8.665399], - [-12.861999, 8.6691], - [-12.861399, 8.6731], - [-12.8611, 8.678999], - [-12.862099, 8.699599], - [-12.861499, 8.7084], - [-12.8614, 8.7134], - [-12.8614, 8.719204], - [-12.861996, 8.719142], - [-12.862862, 8.718867], - [-12.864342, 8.717979], - [-12.865723, 8.716807], - [-12.866733, 8.716016], - [-12.86749, 8.715556], - [-12.868564, 8.714929], - [-12.869613, 8.714379], - [-12.87052, 8.713994], - [-12.871036, 8.713829], - [-12.871646, 8.713819], - [-12.872688, 8.713862], - [-12.874889, 8.714008], - [-12.875934, 8.713844], - [-12.876505, 8.713591], - [-12.877117, 8.712995], - [-12.878033, 8.711605], - [-12.879111, 8.709646], - [-12.87987, 8.708368], - [-12.880542, 8.707673], - [-12.882124, 8.706124], - [-12.882999, 8.704959], - [-12.883429, 8.704186], - [-12.883517, 8.703687], - [-12.883319, 8.702693], - [-12.882692, 8.702031], - [-12.881871, 8.701421], - [-12.880825, 8.700362], - [-12.879673, 8.69868], - [-12.878337, 8.69736], - [-12.87713, 8.696764], - [-12.876237, 8.696098], - [-12.875766, 8.695609], - [-12.874747, 8.693881], - [-12.87376, 8.690429], - [-12.873504, 8.68783], - [-12.873869, 8.686339], - [-12.874062, 8.686107], - [-12.877901, 8.685626], - [-12.878495, 8.684868], - [-12.880048, 8.682571], - [-12.883259, 8.675859], - [-12.884105, 8.674186], - [-12.880345, 8.671051], - [-12.8811, 8.670235], - [-12.882722, 8.668538], - [-12.884554, 8.666943], - [-12.88481, 8.666662], - [-12.885963, 8.665487], - [-12.886038, 8.664817], - [-12.88668, 8.664627], - [-12.886714, 8.664565], - [-12.889098, 8.668733], - [-12.889334, 8.668545], - [-12.88996, 8.667893], - [-12.890209, 8.667683], - [-12.890426, 8.667437], - [-12.890688, 8.666977], - [-12.890959, 8.665866], - [-12.891288, 8.664965], - [-12.891736, 8.664029], - [-12.892043, 8.663492], - [-12.893812, 8.660753], - [-12.89467, 8.658834], - [-12.895511, 8.656158], - [-12.895725, 8.655688], - [-12.895823, 8.655211], - [-12.895885, 8.65448], - [-12.895621, 8.653226], - [-12.895943, 8.652435], - [-12.89623, 8.651141], - [-12.896663, 8.649215], - [-12.896812, 8.647902], - [-12.896951, 8.646564], - [-12.89744, 8.643809], - [-12.89746, 8.64375], - [-12.892781, 8.64375], - [-12.89278, 8.643748], - [-12.892992, 8.642693], - [-12.893406, 8.641708], - [-12.894489, 8.639921], - [-12.896154, 8.637641], - [-12.897455, 8.636029], - [-12.897945, 8.635674], - [-12.899782, 8.634624], - [-12.901639, 8.633226], - [-12.904181, 8.631918], - [-12.906454, 8.630429], - [-12.906319, 8.629918], - [-12.90679, 8.629444], - [-12.91142, 8.635396], - [-12.913039, 8.633663], - [-12.913749, 8.632885], - [-12.91375, 8.626335], - [-12.914217, 8.625883], - [-12.915522, 8.624429], - [-12.916679, 8.622497], - [-12.918347, 8.618474], - [-12.921054, 8.613424], - [-12.922859, 8.609566], - [-12.924097, 8.607601], - [-12.925858, 8.604725], - [-12.931145, 8.605312], - [-12.934036, 8.598376], - [-12.934426, 8.597411], - [-12.934583, 8.596901], - [-12.934973, 8.596154], - [-12.935188, 8.595751], - [-12.935499, 8.5953], - [-12.935987, 8.594637], - [-12.936272, 8.594303], - [-12.936631, 8.594001], - [-12.936981, 8.593793], - [-12.937801, 8.593163], - [-12.938333, 8.592711], - [-12.938744, 8.592459], - [-12.939029, 8.59225], - [-12.939266, 8.592134], - [-12.93984, 8.592134], - [-12.94044, 8.59217], - [-12.941797, 8.592355], - [-12.943193, 8.592616], - [-12.943949, 8.592733], - [-12.9453, 8.59295], - [-12.946254, 8.593115], - [-12.94875, 8.588749], - [-12.960049, 8.587242] - ] - ], - [ - [ - [-12.956499, 8.5707], - [-12.956299, 8.5704], - [-12.9529, 8.5704], - [-12.951, 8.5701], - [-12.950699, 8.5696], - [-12.9485, 8.5696], - [-12.9485, 8.572599], - [-12.9493, 8.573199], - [-12.951499, 8.573599], - [-12.955999, 8.573799], - [-12.956499, 8.5707] - ] - ], - [ - [ - [-13.009299, 8.5715], - [-13.005699, 8.5718], - [-13.0001, 8.5718], - [-12.998999, 8.572599], - [-12.9968, 8.573199], - [-12.994899, 8.573199], - [-12.9924, 8.5726], - [-12.991799, 8.573199], - [-12.9885, 8.5726], - [-12.987899, 8.5721], - [-12.985699, 8.571499], - [-12.9832, 8.5704], - [-12.982599, 8.5688], - [-12.981199, 8.5676], - [-12.9776, 8.5679], - [-12.976499, 8.5688], - [-12.973199, 8.570399], - [-12.9701, 8.5701], - [-12.969899, 8.5696], - [-12.9668, 8.5688], - [-12.966499, 8.5682], - [-12.964299, 8.5676], - [-12.9615, 8.5676], - [-12.9607, 8.569], - [-12.961, 8.570099], - [-12.9621, 8.571], - [-12.964, 8.573499], - [-12.964899, 8.5735], - [-12.9651, 8.574599], - [-12.968199, 8.576799], - [-12.9682, 8.577599], - [-12.9707, 8.5785], - [-12.973499, 8.580399], - [-12.9737, 8.581299], - [-12.976, 8.5813], - [-12.9785, 8.583199], - [-12.9799, 8.583499], - [-12.9829, 8.582899], - [-12.984899, 8.581499], - [-12.986, 8.579599], - [-12.9888, 8.5779], - [-12.990699, 8.577599], - [-12.991, 8.5771], - [-12.992599, 8.577099], - [-12.995099, 8.576], - [-12.996299, 8.576299], - [-12.9988, 8.5743], - [-13.001299, 8.574299], - [-13.0018, 8.5738], - [-13.003499, 8.573999], - [-13.0038, 8.573199], - [-13.008799, 8.572599], - [-13.009299, 8.5715] - ] - ], - [ - [ - [-12.999299, 8.581], - [-12.9979, 8.5807], - [-12.9979, 8.582099], - [-12.999299, 8.582899], - [-12.9988, 8.582099], - [-12.999299, 8.581] - ] - ], - [ - [ - [-13.014299, 8.579599], - [-13.013799, 8.5782], - [-13.0126, 8.577899], - [-13.011799, 8.576499], - [-13.008799, 8.5751], - [-13.0051, 8.5751], - [-13.003199, 8.5754], - [-13.0018, 8.5768], - [-13.001299, 8.578499], - [-13.0001, 8.5785], - [-12.9993, 8.5793], - [-12.9993, 8.580399], - [-13.0007, 8.580999], - [-13.005399, 8.580699], - [-13.0063, 8.5801], - [-13.013199, 8.5801], - [-13.014299, 8.579599] - ] - ] - ], - "type": "MultiPolygon" - }, - "id": 317, - "properties": { - "cc:admin:id": ["74"], - "cc:oBld:total": 67, - "cc:pop:fifteen-to-twenty-four": 783.2017010748252, - "cc:pop:grid3-total": 3930.988080590905, - "cc:pop:kontur-total": 4595.076881468573, - "cc:pop:men": 2096.165171931673, - "cc:pop:sixty-plus": 225.96854348309364, - "cc:pop:total": 4432.162240330273, - "cc:pop:under-five": 673.6198567904501, - "cc:pop:women": 2335.9970683986003, - "cc:pop:women-fiften-to-forty-nine": 1162.6902680256671, - "cc:pop:wp-total": 3218.7100539805274, - "cc:pop:wp-total-UN": 3733.615388744997, - "cc:id": "317", - "cc:Name": "Makaba MCHP", - "cc:site": [-12.9152, 8.6074], - "user:parentName": "Maforki", - "user:code": "OU_254952", - "user:orgUnitId": "kSo9KSpHUPL", - "user:level": "4", - "user:parentId": "JdqfYTIFZXN" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.725999, 8.5972], - [-12.722299, 8.595999], - [-12.7186, 8.5958], - [-12.715, 8.595899], - [-12.711399, 8.5965], - [-12.706199, 8.5989], - [-12.703699, 8.599399], - [-12.701, 8.599299], - [-12.697599, 8.597999], - [-12.695399, 8.596299], - [-12.6927, 8.5937], - [-12.69174, 8.592683], - [-12.691139, 8.592486], - [-12.690258, 8.591864], - [-12.689565, 8.59183], - [-12.688245, 8.591963], - [-12.686438, 8.59268], - [-12.685663, 8.592676], - [-12.683846, 8.593438], - [-12.681515, 8.593681], - [-12.67944, 8.594441], - [-12.676859, 8.594087], - [-12.673086, 8.59448], - [-12.668321, 8.594296], - [-12.66625, 8.594402], - [-12.666249, 8.595348], - [-12.6652, 8.595386], - [-12.662842, 8.595826], - [-12.662287, 8.59578], - [-12.660027, 8.594969], - [-12.658993, 8.594832], - [-12.658103, 8.593773], - [-12.657659, 8.592974], - [-12.657152, 8.59255], - [-12.655383, 8.592493], - [-12.651943, 8.592809], - [-12.650721, 8.593237], - [-12.650376, 8.59371], - [-12.64993, 8.593265], - [-12.649877, 8.59331], - [-12.649572, 8.594173], - [-12.648345, 8.5959], - [-12.648345, 8.595898], - [-12.648771, 8.595119], - [-12.649037, 8.593614], - [-12.649717, 8.593051], - [-12.649583, 8.592916], - [-12.649582, 8.592312], - [-12.649433, 8.592328], - [-12.648858, 8.593054], - [-12.648118, 8.595411], - [-12.647338, 8.596049], - [-12.646821, 8.596176], - [-12.646945, 8.596949], - [-12.646812, 8.597463], - [-12.646035, 8.597717], - [-12.645642, 8.598487], - [-12.645507, 8.599258], - [-12.645197, 8.599708], - [-12.644362, 8.600011], - [-12.644294, 8.600416], - [-12.646033, 8.600417], - [-12.645624, 8.601319], - [-12.645233, 8.601703], - [-12.644715, 8.6017], - [-12.644179, 8.601396], - [-12.64383, 8.601985], - [-12.644542, 8.604984], - [-12.644563, 8.605692], - [-12.644817, 8.606209], - [-12.64488, 8.60711], - [-12.645185, 8.607697], - [-12.645199, 8.608203], - [-12.645961, 8.609825], - [-12.645974, 8.610661], - [-12.646894, 8.612054], - [-12.647399, 8.613214], - [-12.647754, 8.613206], - [-12.647599, 8.611741], - [-12.648326, 8.610806], - [-12.648371, 8.610534], - [-12.648322, 8.61002], - [-12.647777, 8.608778], - [-12.647879, 8.608279], - [-12.64945, 8.610634], - [-12.649485, 8.611975], - [-12.649308, 8.612419], - [-12.648753, 8.612843], - [-12.648704, 8.613303], - [-12.648263, 8.614086], - [-12.647954, 8.615549], - [-12.647602, 8.616271], - [-12.646746, 8.617082], - [-12.645395, 8.617417], - [-12.64526, 8.617643], - [-12.644924, 8.617676], - [-12.641647, 8.617313], - [-12.640218, 8.617643], - [-12.638746, 8.61888], - [-12.638171, 8.619734], - [-12.636162, 8.620068], - [-12.635022, 8.62083], - [-12.633585, 8.622474], - [-12.633056, 8.62262], - [-12.632919, 8.62287], - [-12.630872, 8.622716], - [-12.625577, 8.623335], - [-12.623276, 8.6232], - [-12.622461, 8.623408], - [-12.62203, 8.623373], - [-12.621743, 8.623097], - [-12.621729, 8.623306], - [-12.620627, 8.623705], - [-12.620578, 8.623934], - [-12.620299, 8.6241], - [-12.620085, 8.623892], - [-12.619877, 8.624567], - [-12.620098, 8.62441], - [-12.62003, 8.624659], - [-12.618846, 8.625534], - [-12.618608, 8.625914], - [-12.616771, 8.625107], - [-12.616581, 8.62478], - [-12.616443, 8.624858], - [-12.615706, 8.626307], - [-12.615624, 8.62886], - [-12.615794, 8.629521], - [-12.617042, 8.631634], - [-12.618225, 8.63409], - [-12.618855, 8.637768], - [-12.618854, 8.638378], - [-12.618527, 8.638889], - [-12.618072, 8.639364], - [-12.616632, 8.640309], - [-12.615295, 8.64082], - [-12.614412, 8.640944], - [-12.613922, 8.641306], - [-12.61368, 8.641826], - [-12.613573, 8.644109], - [-12.611462, 8.647873], - [-12.610056, 8.649346], - [-12.606606, 8.650564], - [-12.605609, 8.651056], - [-12.605156, 8.651405], - [-12.603935, 8.653439], - [-12.602162, 8.653433], - [-12.602035, 8.653464], - [-12.599827, 8.653096], - [-12.598581, 8.654233], - [-12.59856, 8.654246], - [-12.598345, 8.655746], - [-12.598151, 8.655874], - [-12.596663, 8.656235], - [-12.59652, 8.656393], - [-12.597028, 8.656939], - [-12.597429, 8.657027], - [-12.598008, 8.656895], - [-12.598207, 8.656699], - [-12.598209, 8.656699], - [-12.598181, 8.656893], - [-12.597171, 8.65753], - [-12.596788, 8.65753], - [-12.596493, 8.657319], - [-12.596225, 8.656561], - [-12.595967, 8.65657], - [-12.594859, 8.657707], - [-12.593837, 8.658138], - [-12.592671, 8.658259], - [-12.592917, 8.65875], - [-12.598915, 8.660249], - [-12.598914, 8.660129], - [-12.600519, 8.659394], - [-12.600364, 8.659731], - [-12.600395, 8.66129], - [-12.60003, 8.662189], - [-12.599749, 8.663827], - [-12.599165, 8.663963], - [-12.59952, 8.66564], - [-12.59954, 8.666869], - [-12.599443, 8.668425], - [-12.602916, 8.669583], - [-12.602083, 8.67125], - [-12.602083, 8.673749], - [-12.607082, 8.67375], - [-12.607917, 8.675416], - [-12.608527, 8.675569], - [-12.608527, 8.675571], - [-12.607938, 8.675743], - [-12.607104, 8.675684], - [-12.606509, 8.675972], - [-12.606936, 8.67686], - [-12.606917, 8.677223], - [-12.607194, 8.677646], - [-12.607874, 8.67809], - [-12.609025, 8.67931], - [-12.609484, 8.68024], - [-12.610141, 8.681056], - [-12.610458, 8.681843], - [-12.607917, 8.683749], - [-12.611676, 8.685004], - [-12.610161, 8.686733], - [-12.608675, 8.687651], - [-12.61618, 8.6864], - [-12.6185, 8.6826], - [-12.622299, 8.6799], - [-12.6254, 8.677099], - [-12.627, 8.675199], - [-12.6293, 8.670799], - [-12.632, 8.6678], - [-12.639299, 8.6639], - [-12.643199, 8.6623], - [-12.647499, 8.6599], - [-12.6506, 8.658499], - [-12.6535, 8.656399], - [-12.658199, 8.652], - [-12.661299, 8.6495], - [-12.666199, 8.6468], - [-12.669099, 8.6446], - [-12.675099, 8.6391], - [-12.677299, 8.6375], - [-12.6804, 8.636099], - [-12.684699, 8.6337], - [-12.6878, 8.632399], - [-12.692199, 8.6302], - [-12.697299, 8.6291], - [-12.6997, 8.628299], - [-12.707199, 8.6246], - [-12.710099, 8.6224], - [-12.717199, 8.6154], - [-12.7195, 8.612699], - [-12.7207, 8.610399], - [-12.7224, 8.603999], - [-12.7242, 8.600899], - [-12.725999, 8.5972] - ] - ], - "type": "Polygon" - }, - "id": 318, - "properties": { - "cc:admin:id": ["93"], - "cc:oBld:total": 81, - "cc:pop:fifteen-to-twenty-four": 576.4335104682073, - "cc:pop:grid3-total": 1747.644609555692, - "cc:pop:kontur-total": 3553.7813700521597, - "cc:pop:men": 1368.5122746893073, - "cc:pop:sixty-plus": 181.2196819353716, - "cc:pop:total": 2869.247682134644, - "cc:pop:under-five": 479.596657172297, - "cc:pop:women": 1500.735407445337, - "cc:pop:women-fiften-to-forty-nine": 727.6857103467227, - "cc:pop:wp-total": 2577.5246344182, - "cc:pop:wp-total-UN": 2975.8394014849005, - "cc:id": "318", - "cc:Name": "Makabo MCHP", - "cc:site": [-12.6622, 8.633], - "user:parentName": "Marampa", - "user:code": "OU_255056", - "user:orgUnitId": "en0j7qFnySQ", - "user:level": "4", - "user:parentId": "RWvG1aFrr0r" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.270416, 9.279582], - [-12.270416, 9.274583], - [-12.265416, 9.267917], - [-12.264058, 9.267811], - [-12.264874, 9.266396], - [-12.260969, 9.259631], - [-12.262561, 9.256871], - [-12.262195, 9.25321], - [-12.260699, 9.254], - [-12.2586, 9.254699], - [-12.2544, 9.255199], - [-12.2437, 9.2551], - [-12.239, 9.2545], - [-12.233599, 9.252299], - [-12.230199, 9.251599], - [-12.2244, 9.250899], - [-12.2147, 9.2465], - [-12.211699, 9.244199], - [-12.2019, 9.2345], - [-12.198999, 9.231899], - [-12.1967, 9.2302], - [-12.1922, 9.2279], - [-12.189499, 9.225999], - [-12.175899, 9.2127], - [-12.1732, 9.214999], - [-12.1711, 9.217599], - [-12.1683, 9.222899], - [-12.1665, 9.224899], - [-12.163799, 9.2274], - [-12.1576, 9.230799], - [-12.155399, 9.2325], - [-12.151299, 9.2364], - [-12.1464, 9.241599], - [-12.144499, 9.2447], - [-12.144099, 9.2469], - [-12.1439, 9.2505], - [-12.143999, 9.259799], - [-12.1447, 9.265199], - [-12.1465, 9.2683], - [-12.1507, 9.2733], - [-12.154099, 9.280799], - [-12.153609, 9.282082], - [-12.155417, 9.282083], - [-12.162082, 9.282917], - [-12.164583, 9.285416], - [-12.167916, 9.286249], - [-12.169583, 9.287082], - [-12.173482, 9.286433], - [-12.173275, 9.285198], - [-12.172939, 9.284136], - [-12.172671, 9.28174], - [-12.173305, 9.281683], - [-12.174126, 9.282197], - [-12.17466, 9.282963], - [-12.174944, 9.284221], - [-12.17575, 9.285109], - [-12.176663, 9.285711], - [-12.177617, 9.285863], - [-12.177883, 9.286045], - [-12.179997, 9.285645], - [-12.182159, 9.28593], - [-12.183078, 9.285311], - [-12.183731, 9.285189], - [-12.185899, 9.285571], - [-12.186708, 9.285291], - [-12.188469, 9.284294], - [-12.189156, 9.28273], - [-12.190717, 9.281092], - [-12.19108, 9.280247], - [-12.192906, 9.279014], - [-12.193822, 9.279884], - [-12.194125, 9.280343], - [-12.196249, 9.27875], - [-12.197916, 9.27875], - [-12.197917, 9.280416], - [-12.20125, 9.282916], - [-12.207916, 9.282083], - [-12.212916, 9.282082], - [-12.213749, 9.281249], - [-12.214583, 9.27625], - [-12.219156, 9.275597], - [-12.219504, 9.276378], - [-12.219447, 9.277669], - [-12.218868, 9.279791], - [-12.218783, 9.280416], - [-12.222916, 9.280416], - [-12.224582, 9.279582], - [-12.224583, 9.275417], - [-12.22625, 9.274583], - [-12.233749, 9.27625], - [-12.232083, 9.281249], - [-12.232083, 9.282082], - [-12.235876, 9.28398], - [-12.236084, 9.283654], - [-12.241249, 9.282916], - [-12.246249, 9.27875], - [-12.247083, 9.27375], - [-12.255416, 9.277916], - [-12.258636, 9.274697], - [-12.259216, 9.27641], - [-12.259578, 9.279762], - [-12.259523, 9.281056], - [-12.259589, 9.281919], - [-12.259666, 9.282313], - [-12.262083, 9.282916], - [-12.267916, 9.282083], - [-12.270416, 9.279582] - ] - ], - "type": "Polygon" - }, - "id": 319, - "properties": { - "cc:admin:id": ["31"], - "cc:oBld:total": 258, - "cc:pop:fifteen-to-twenty-four": 1134.9467806237026, - "cc:pop:grid3-total": 4740.201757817897, - "cc:pop:kontur-total": 6402.721770882088, - "cc:pop:men": 2951.5675628483177, - "cc:pop:sixty-plus": 418.8121310161483, - "cc:pop:total": 6204.2803163111075, - "cc:pop:under-five": 981.3496262643266, - "cc:pop:women": 3252.712753462789, - "cc:pop:women-fiften-to-forty-nine": 1578.5673969650259, - "cc:pop:wp-total": 5226.840795895873, - "cc:pop:wp-total-UN": 6066.767411013313, - "cc:id": "319", - "cc:Name": "Makaiba MCHP", - "cc:site": [-12.2088, 9.2598], - "user:parentName": "Gbanti Kamaranka", - "user:code": "OU_193219", - "user:orgUnitId": "ewh5SKxcCAl", - "user:level": "4", - "user:parentId": "e1eIKM1GIF3" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.706989, 8.667025], - [-11.706999, 8.666599], - [-11.7068, 8.6532], - [-11.7066, 8.6489], - [-11.705899, 8.6449], - [-11.7036, 8.6405], - [-11.702199, 8.637399], - [-11.699599, 8.633099], - [-11.696, 8.625199], - [-11.6961, 8.622399], - [-11.6974, 8.620099], - [-11.7017, 8.614499], - [-11.7052, 8.607799], - [-11.7062, 8.603099], - [-11.706299, 8.598], - [-11.705799, 8.594399], - [-11.705099, 8.592299], - [-11.703, 8.5884], - [-11.701599, 8.585199], - [-11.699, 8.5801], - [-11.697799, 8.574999], - [-11.6954, 8.5698], - [-11.6934, 8.5659], - [-11.691099, 8.562999], - [-11.6835, 8.5556], - [-11.6816, 8.5535], - [-11.6802, 8.5511], - [-11.679399, 8.548399], - [-11.6791, 8.5446], - [-11.679299, 8.5368], - [-11.679378, 8.53625], - [-11.675417, 8.53625], - [-11.672082, 8.539584], - [-11.66375, 8.54125], - [-11.660417, 8.545417], - [-11.660417, 8.554583], - [-11.665417, 8.559583], - [-11.66875, 8.559584], - [-11.673749, 8.564584], - [-11.673005, 8.574265], - [-11.667784, 8.574266], - [-11.667389, 8.574947], - [-11.66375, 8.574583], - [-11.657916, 8.567084], - [-11.652688, 8.572311], - [-11.652654, 8.572299], - [-11.652083, 8.574583], - [-11.655417, 8.575417], - [-11.657916, 8.582917], - [-11.652917, 8.586249], - [-11.649583, 8.58625], - [-11.647083, 8.595417], - [-11.647083, 8.600416], - [-11.650417, 8.59875], - [-11.654581, 8.601249], - [-11.654582, 8.60125], - [-11.649583, 8.606249], - [-11.647083, 8.60625], - [-11.647082, 8.607084], - [-11.645417, 8.607917], - [-11.645416, 8.609584], - [-11.639583, 8.615416], - [-11.637917, 8.615417], - [-11.63375, 8.617083], - [-11.632082, 8.618749], - [-11.627917, 8.617917], - [-11.626249, 8.61625], - [-11.622554, 8.618713], - [-11.625379, 8.620145], - [-11.625997, 8.620659], - [-11.628244, 8.622891], - [-11.629568, 8.623465], - [-11.630443, 8.623443], - [-11.631119, 8.623203], - [-11.632444, 8.622333], - [-11.632916, 8.62375], - [-11.632917, 8.624584], - [-11.633566, 8.627829], - [-11.6353, 8.6275], - [-11.6403, 8.6289], - [-11.647299, 8.629799], - [-11.650799, 8.630999], - [-11.653399, 8.633799], - [-11.654899, 8.636799], - [-11.656399, 8.638999], - [-11.659, 8.6417], - [-11.6616, 8.6437], - [-11.6659, 8.6456], - [-11.671199, 8.6488], - [-11.672599, 8.6507], - [-11.673099, 8.653299], - [-11.673199, 8.6561], - [-11.6731, 8.666699], - [-11.6739, 8.670399], - [-11.6753, 8.6728], - [-11.677899, 8.675499], - [-11.680599, 8.677299], - [-11.6828, 8.677899], - [-11.6854, 8.677799], - [-11.688, 8.677299], - [-11.692, 8.6755], - [-11.695699, 8.6754], - [-11.704099, 8.679999], - [-11.7065, 8.673199], - [-11.7069, 8.670399], - [-11.706989, 8.667025] - ] - ], - "type": "Polygon" - }, - "id": 320, - "properties": { - "cc:admin:id": ["69"], - "cc:oBld:total": 459, - "cc:pop:fifteen-to-twenty-four": 1802.0341903268445, - "cc:pop:grid3-total": 7610.581074960499, - "cc:pop:kontur-total": 9751.528103050145, - "cc:pop:men": 4731.368664426824, - "cc:pop:sixty-plus": 626.5310017359535, - "cc:pop:total": 9645.914930394863, - "cc:pop:under-five": 1536.1468545210266, - "cc:pop:women": 4914.546265968034, - "cc:pop:women-fiften-to-forty-nine": 2400.07691891335, - "cc:pop:wp-total": 7316.739770778618, - "cc:pop:wp-total-UN": 8485.365874731096, - "cc:id": "320", - "cc:Name": "Makali CHC", - "cc:site": [-11.6608, 8.6302], - "user:parentName": "Kunike Barina", - "user:code": "OU_268215", - "user:orgUnitId": "scc4QyxenJd", - "user:level": "4", - "user:parentId": "rXLor9Knq6l" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.780517, 8.381015], - [-12.780484, 8.380937], - [-12.780134, 8.379601], - [-12.779052, 8.379252], - [-12.777335, 8.379378], - [-12.776253, 8.379283], - [-12.77475, 8.378152], - [-12.766499, 8.376899], - [-12.759699, 8.374199], - [-12.7522, 8.3703], - [-12.7488, 8.3679], - [-12.7454, 8.3649], - [-12.7377, 8.3572], - [-12.7343, 8.3544], - [-12.731799, 8.353], - [-12.729, 8.3525], - [-12.7251, 8.3533], - [-12.7221, 8.3562], - [-12.721199, 8.3593], - [-12.7203, 8.367199], - [-12.716699, 8.369999], - [-12.7131, 8.369699], - [-12.7017, 8.3644], - [-12.700416, 8.36413], - [-12.699614, 8.364233], - [-12.696231, 8.363962], - [-12.695438, 8.364042], - [-12.691262, 8.366061], - [-12.689848, 8.366172], - [-12.690417, 8.369583], - [-12.692916, 8.37125], - [-12.693405, 8.373208], - [-12.693103, 8.373321], - [-12.692532, 8.373195], - [-12.690223, 8.376112], - [-12.688977, 8.379014], - [-12.69125, 8.379584], - [-12.693749, 8.382083], - [-12.69375, 8.383749], - [-12.69125, 8.38625], - [-12.691249, 8.393749], - [-12.689727, 8.394766], - [-12.690594, 8.396029], - [-12.690697, 8.396379], - [-12.690129, 8.39774], - [-12.689827, 8.398096], - [-12.689593, 8.399232], - [-12.689014, 8.401154], - [-12.68864, 8.40354], - [-12.688651, 8.404739], - [-12.688595, 8.405291], - [-12.688511, 8.406206], - [-12.688875, 8.406983], - [-12.689013, 8.409023], - [-12.691249, 8.409583], - [-12.692083, 8.409584], - [-12.692916, 8.417916], - [-12.69125, 8.425416], - [-12.687917, 8.427084], - [-12.687917, 8.427916], - [-12.690417, 8.435416], - [-12.695037, 8.438056], - [-12.695444, 8.437567], - [-12.695917, 8.437254], - [-12.696249, 8.437916], - [-12.695417, 8.439584], - [-12.697917, 8.451249], - [-12.700416, 8.452083], - [-12.705416, 8.447083], - [-12.707082, 8.434585], - [-12.707084, 8.434585], - [-12.708582, 8.435707], - [-12.708828, 8.435334], - [-12.709653, 8.435238], - [-12.709917, 8.434699], - [-12.709784, 8.434129], - [-12.70985, 8.433453], - [-12.710266, 8.432046], - [-12.709826, 8.430401], - [-12.715416, 8.427916], - [-12.715417, 8.42375], - [-12.727916, 8.423749], - [-12.732917, 8.41875], - [-12.735416, 8.42125], - [-12.735417, 8.426249], - [-12.737917, 8.428749], - [-12.745416, 8.428749], - [-12.747082, 8.423749], - [-12.74625, 8.418749], - [-12.754582, 8.414584], - [-12.757083, 8.417916], - [-12.760827, 8.41878], - [-12.760143, 8.417594], - [-12.764048, 8.410829], - [-12.767192, 8.410829], - [-12.769058, 8.410406], - [-12.770072, 8.410563], - [-12.765417, 8.40125], - [-12.775386, 8.400796], - [-12.7718, 8.394584], - [-12.774551, 8.389816], - [-12.772083, 8.387916], - [-12.780517, 8.381015] - ] - ], - "type": "Polygon" - }, - "id": 321, - "properties": { - "cc:admin:id": ["62"], - "cc:oBld:total": 38, - "cc:pop:fifteen-to-twenty-four": 316.8288002402285, - "cc:pop:grid3-total": 957.5910404483172, - "cc:pop:kontur-total": 2012.2162945379916, - "cc:pop:men": 829.6464313462609, - "cc:pop:sixty-plus": 100.5950048020884, - "cc:pop:total": 1762.3752648096806, - "cc:pop:under-five": 292.72921080161336, - "cc:pop:women": 932.7288334634196, - "cc:pop:women-fiften-to-forty-nine": 478.85130317419316, - "cc:pop:wp-total": 1719.18186424214, - "cc:pop:wp-total-UN": 1998.9932975521288, - "cc:id": "321", - "cc:Name": "Makalie MCHP", - "cc:site": [-12.7186, 8.4142], - "user:parentName": "Koya", - "user:code": "OU_254969", - "user:orgUnitId": "CgunjDKbM45", - "user:level": "4", - "user:parentId": "pRHGAROvuyI" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.125076, 8.818848], - [-12.11625, 8.819582], - [-12.115806, 8.819806], - [-12.115821, 8.820004], - [-12.114583, 8.820417], - [-12.110417, 8.82375], - [-12.110416, 8.825417], - [-12.107916, 8.828749], - [-12.102371, 8.832711], - [-12.10237, 8.83271], - [-12.102339, 8.832554], - [-12.101249, 8.832916], - [-12.096249, 8.829583], - [-12.090417, 8.832916], - [-12.087082, 8.83125], - [-12.084583, 8.83125], - [-12.082083, 8.83375], - [-12.082916, 8.835417], - [-12.07679, 8.836777], - [-12.076781, 8.836859], - [-12.076978, 8.837135], - [-12.075417, 8.837916], - [-12.069583, 8.837083], - [-12.068749, 8.834583], - [-12.067083, 8.834583], - [-12.062917, 8.838749], - [-12.059583, 8.83875], - [-12.057917, 8.837082], - [-12.061249, 8.832083], - [-12.057995, 8.830782], - [-12.057813, 8.832386], - [-12.057561, 8.833299], - [-12.056471, 8.836483], - [-12.055872, 8.836837], - [-12.05587, 8.836836], - [-12.055106, 8.834436], - [-12.052083, 8.836249], - [-12.050417, 8.840416], - [-12.04875, 8.840417], - [-12.048749, 8.84125], - [-12.044583, 8.842082], - [-12.043811, 8.842082], - [-12.043804, 8.841815], - [-12.043074, 8.840475], - [-12.042766, 8.839474], - [-12.042141, 8.838845], - [-12.041322, 8.837472], - [-12.041448, 8.839036], - [-12.038961, 8.839277], - [-12.03879, 8.839027], - [-12.038382, 8.839016], - [-12.03821, 8.838797], - [-12.037571, 8.838648], - [-12.036171, 8.840527], - [-12.035592, 8.840671], - [-12.034794, 8.840679], - [-12.03363, 8.840282], - [-12.033083, 8.840956], - [-12.032025, 8.841141], - [-12.031848, 8.841455], - [-12.031253, 8.841901], - [-12.0309, 8.842589], - [-12.030277, 8.842739], - [-12.029744, 8.842486], - [-12.03012, 8.840077], - [-12.029449, 8.840297], - [-12.028709, 8.841149], - [-12.027639, 8.841073], - [-12.027508, 8.841326], - [-12.026102, 8.841928], - [-12.025368, 8.842492], - [-12.024994, 8.843107], - [-12.024151, 8.842772], - [-12.02353, 8.842834], - [-12.022949, 8.842316], - [-12.022568, 8.842442], - [-12.02155, 8.842399], - [-12.021085, 8.841797], - [-12.020875, 8.84193], - [-12.02057, 8.842592], - [-12.020688, 8.84319], - [-12.020842, 8.843243], - [-12.020902, 8.843949], - [-12.020797, 8.844031], - [-12.020992, 8.844221], - [-12.020991, 8.844222], - [-12.019798, 8.84416], - [-12.019446, 8.844482], - [-12.018801, 8.844451], - [-12.018721, 8.844282], - [-12.016782, 8.84441], - [-12.016411, 8.844115], - [-12.01626, 8.844095], - [-12.015952, 8.844636], - [-12.016072, 8.845331], - [-12.016563, 8.84591], - [-12.017588, 8.846271], - [-12.017795, 8.846491], - [-12.015128, 8.846465], - [-12.014551, 8.846305], - [-12.014431, 8.846417], - [-12.013974, 8.847009], - [-12.011921, 8.84849], - [-12.010942, 8.851291], - [-12.009894, 8.853512], - [-12.00955, 8.854174], - [-12.004583, 8.855417], - [-12.003749, 8.857917], - [-12.001988, 8.859091], - [-12.00213, 8.85934], - [-11.999583, 8.861249], - [-11.998749, 8.86125], - [-11.994583, 8.862082], - [-11.988593, 8.860752], - [-11.988224, 8.860915], - [-11.98769, 8.861658], - [-11.987634, 8.862434], - [-11.987408, 8.862864], - [-11.987045, 8.863145], - [-11.987183, 8.863574], - [-11.98702, 8.863883], - [-11.987417, 8.864264], - [-11.987035, 8.864633], - [-11.987297, 8.864817], - [-11.987303, 8.865329], - [-11.986648, 8.866494], - [-11.986046, 8.867055], - [-11.984308, 8.86596], - [-11.983614, 8.865229], - [-11.982083, 8.86625], - [-11.981249, 8.870417], - [-11.980607, 8.874909], - [-11.980335, 8.874956], - [-11.978737, 8.874643], - [-11.977071, 8.87461], - [-11.973873, 8.875873], - [-11.972899, 8.8773], - [-11.969199, 8.882], - [-11.967099, 8.8863], - [-11.9648, 8.890499], - [-11.963099, 8.8944], - [-11.960799, 8.8972], - [-11.953, 8.905099], - [-11.956499, 8.907699], - [-11.960899, 8.909999], - [-11.963, 8.9114], - [-11.9668, 8.9149], - [-11.988399, 8.936299], - [-11.991499, 8.939299], - [-11.9946, 8.9419], - [-11.998999, 8.945199], - [-12.001299, 8.9383], - [-12.002899, 8.9316], - [-12.0048, 8.927099], - [-12.0054, 8.923499], - [-12.005599, 8.9148], - [-12.006099, 8.9101], - [-12.008199, 8.9047], - [-12.008899, 8.902], - [-12.009399, 8.8971], - [-12.009999, 8.8944], - [-12.0122, 8.888999], - [-12.012699, 8.885199], - [-12.0125, 8.8664], - [-12.0126, 8.863499], - [-12.0132, 8.860799], - [-12.017099, 8.8524], - [-12.0187, 8.850099], - [-12.0213, 8.8476], - [-12.0245, 8.846], - [-12.0273, 8.8465], - [-12.030099, 8.8489], - [-12.0311, 8.8513], - [-12.032399, 8.857099], - [-12.034299, 8.860699], - [-12.0356, 8.8639], - [-12.038099, 8.868199], - [-12.0396, 8.8713], - [-12.044599, 8.877799], - [-12.0457, 8.8799], - [-12.0463, 8.8822], - [-12.046599, 8.889099], - [-12.0464, 8.898599], - [-12.046599, 8.902199], - [-12.0473, 8.904699], - [-12.0487, 8.9068], - [-12.0504, 8.908099], - [-12.052499, 8.908799], - [-12.0561, 8.909099], - [-12.058799, 8.9089], - [-12.061399, 8.9082], - [-12.0689, 8.904599], - [-12.0711, 8.902999], - [-12.073799, 8.9004], - [-12.075399, 8.8982], - [-12.079599, 8.89], - [-12.0809, 8.886799], - [-12.0833, 8.882499], - [-12.0845, 8.879299], - [-12.086799, 8.8746], - [-12.088, 8.868999], - [-12.090499, 8.8639], - [-12.0917, 8.860699], - [-12.0937, 8.857099], - [-12.095899, 8.8526], - [-12.0989, 8.848899], - [-12.114499, 8.8333], - [-12.118099, 8.8294], - [-12.1199, 8.826699], - [-12.1218, 8.822799], - [-12.123899, 8.8201], - [-12.125076, 8.818848] - ] - ], - "type": "Polygon" - }, - "id": 322, - "properties": { - "cc:admin:id": ["8"], - "cc:oBld:total": 9189, - "cc:pop:fifteen-to-twenty-four": 15397.951924146351, - "cc:pop:grid3-total": 93686.52761133194, - "cc:pop:kontur-total": 86468.89580997435, - "cc:pop:men": 40254.654744994805, - "cc:pop:sixty-plus": 5247.477897907386, - "cc:pop:total": 83502.8935820819, - "cc:pop:under-five": 13434.941008807034, - "cc:pop:women": 43248.23883708712, - "cc:pop:women-fiften-to-forty-nine": 20917.976331215283, - "cc:pop:wp-total": 61763.44571223771, - "cc:pop:wp-total-UN": 71588.02998264018, - "cc:id": "322", - "cc:Name": "Makama MCHP", - "cc:site": [-12.0557, 8.8624], - "user:parentName": "Bombali Sebora", - "user:code": "OU_193209", - "user:orgUnitId": "Dbn6fyCgMBV", - "user:level": "4", - "user:parentId": "KKkLOTpMXGV" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.700415, 8.364129], - [-12.697899, 8.3636], - [-12.6938, 8.3636], - [-12.69, 8.364499], - [-12.684599, 8.3669], - [-12.6749, 8.371499], - [-12.6719, 8.373499], - [-12.668, 8.383799], - [-12.666, 8.387599], - [-12.661099, 8.3934], - [-12.654499, 8.3996], - [-12.6521, 8.401399], - [-12.649499, 8.4028], - [-12.646599, 8.4037], - [-12.639299, 8.4053], - [-12.6306, 8.409599], - [-12.626499, 8.4132], - [-12.623799, 8.4164], - [-12.6202, 8.421399], - [-12.6181, 8.423399], - [-12.614399, 8.4254], - [-12.6076, 8.4272], - [-12.6036, 8.43], - [-12.602199, 8.433], - [-12.6018, 8.437799], - [-12.602374, 8.441306], - [-12.604128, 8.438976], - [-12.604285, 8.439326], - [-12.605741, 8.440626], - [-12.606416, 8.440525], - [-12.607468, 8.440852], - [-12.608749, 8.441803], - [-12.60875, 8.440416], - [-12.61125, 8.43625], - [-12.612916, 8.43625], - [-12.61375, 8.437084], - [-12.620417, 8.437084], - [-12.625617, 8.438383], - [-12.625264, 8.440592], - [-12.625537, 8.440937], - [-12.625847, 8.440104], - [-12.626442, 8.439442], - [-12.629452, 8.437329], - [-12.630233, 8.436787], - [-12.631259, 8.436452], - [-12.632458, 8.435419], - [-12.634422, 8.434378], - [-12.642916, 8.437916], - [-12.642917, 8.433323], - [-12.643944, 8.434146], - [-12.644787, 8.435001], - [-12.646171, 8.435411], - [-12.647163, 8.435514], - [-12.647437, 8.435763], - [-12.647659, 8.435949], - [-12.647717, 8.436403], - [-12.649085, 8.435556], - [-12.65033, 8.435124], - [-12.651277, 8.435177], - [-12.65344, 8.434697], - [-12.654711, 8.434795], - [-12.656661, 8.433776], - [-12.657424, 8.433843], - [-12.658075, 8.434107], - [-12.659092, 8.434013], - [-12.65838, 8.433027], - [-12.658325, 8.43214], - [-12.657387, 8.429827], - [-12.657407, 8.429598], - [-12.657652, 8.429174], - [-12.663659, 8.429173], - [-12.66375, 8.427917], - [-12.671761, 8.427916], - [-12.671877, 8.427581], - [-12.673772, 8.427066], - [-12.675064, 8.426062], - [-12.677643, 8.424449], - [-12.680441, 8.421906], - [-12.681411, 8.421302], - [-12.684788, 8.424301], - [-12.684805, 8.424286], - [-12.686016, 8.423751], - [-12.685968, 8.424148], - [-12.685458, 8.424897], - [-12.687917, 8.427083], - [-12.691249, 8.425416], - [-12.692916, 8.417916], - [-12.692083, 8.409584], - [-12.691249, 8.409583], - [-12.689013, 8.409023], - [-12.688875, 8.406983], - [-12.688511, 8.406206], - [-12.688595, 8.405291], - [-12.688651, 8.404739], - [-12.68864, 8.403541], - [-12.689014, 8.401154], - [-12.689593, 8.399232], - [-12.689826, 8.398096], - [-12.690129, 8.39774], - [-12.690697, 8.396378], - [-12.690594, 8.396029], - [-12.689727, 8.394766], - [-12.691249, 8.393749], - [-12.69125, 8.38625], - [-12.693749, 8.383749], - [-12.69375, 8.382084], - [-12.691249, 8.379584], - [-12.688977, 8.379014], - [-12.690223, 8.376112], - [-12.692531, 8.373195], - [-12.693103, 8.373321], - [-12.693405, 8.373207], - [-12.692916, 8.37125], - [-12.690416, 8.369583], - [-12.689848, 8.366172], - [-12.691262, 8.366061], - [-12.695438, 8.364042], - [-12.696231, 8.363962], - [-12.699614, 8.364233], - [-12.700415, 8.364129] - ] - ], - "type": "Polygon" - }, - "id": 323, - "properties": { - "cc:admin:id": ["62"], - "cc:oBld:total": 77, - "cc:pop:fifteen-to-twenty-four": 294.651655285991, - "cc:pop:grid3-total": 2207.966249864426, - "cc:pop:kontur-total": 1642.4384546615788, - "cc:pop:men": 768.9402609768463, - "cc:pop:sixty-plus": 96.07398981785605, - "cc:pop:total": 1636.6773707967739, - "cc:pop:under-five": 272.77956179946233, - "cc:pop:women": 867.7371098199277, - "cc:pop:women-fiften-to-forty-nine": 438.5520702042783, - "cc:pop:wp-total": 1792.9756568184623, - "cc:pop:wp-total-UN": 2081.5951444890243, - "cc:id": "323", - "cc:Name": "Makarankay MCHP", - "cc:site": [-12.6539, 8.4068], - "user:parentName": "Koya", - "user:code": "OU_254966", - "user:orgUnitId": "XePkcmza9e8", - "user:level": "4", - "user:parentId": "pRHGAROvuyI" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.201249, 8.875416], - [-12.199582, 8.870417], - [-12.197082, 8.868749], - [-12.19625, 8.864583], - [-12.198749, 8.857082], - [-12.19625, 8.847083], - [-12.199582, 8.842917], - [-12.200217, 8.842599], - [-12.197796, 8.842598], - [-12.193891, 8.835833], - [-12.197779, 8.829097], - [-12.192917, 8.829582], - [-12.191733, 8.827218], - [-12.188248, 8.828643], - [-12.186427, 8.829246], - [-12.182714, 8.829927], - [-12.182699, 8.829885], - [-12.182305, 8.828916], - [-12.181669, 8.828118], - [-12.180843, 8.830181], - [-12.179562, 8.830354], - [-12.178552, 8.830512], - [-12.171672, 8.831481], - [-12.170417, 8.827082], - [-12.176067, 8.820624], - [-12.176042, 8.820592], - [-12.176068, 8.820375], - [-12.165417, 8.817916], - [-12.16125, 8.815417], - [-12.162082, 8.812083], - [-12.15625, 8.809583], - [-12.155699, 8.807382], - [-12.155626, 8.807475], - [-12.155429, 8.807835], - [-12.147919, 8.811248], - [-12.147917, 8.811248], - [-12.149582, 8.807083], - [-12.14625, 8.803749], - [-12.147917, 8.80125], - [-12.153749, 8.797916], - [-12.153749, 8.797083], - [-12.153311, 8.796208], - [-12.152029, 8.796758], - [-12.150827, 8.797534], - [-12.149031, 8.79815], - [-12.147972, 8.798805], - [-12.147916, 8.79875], - [-12.143751, 8.798749], - [-12.144169, 8.797489], - [-12.142099, 8.7985], - [-12.138499, 8.8014], - [-12.133799, 8.8065], - [-12.132499, 8.8085], - [-12.1306, 8.812399], - [-12.1286, 8.815099], - [-12.1239, 8.820099], - [-12.1218, 8.822799], - [-12.1199, 8.826699], - [-12.118099, 8.8294], - [-12.114499, 8.8333], - [-12.0989, 8.848899], - [-12.0959, 8.852599], - [-12.0937, 8.857099], - [-12.0917, 8.860699], - [-12.090499, 8.8639], - [-12.088, 8.868999], - [-12.086799, 8.8746], - [-12.0845, 8.879299], - [-12.083299, 8.8825], - [-12.0809, 8.886799], - [-12.080863, 8.886889], - [-12.08125, 8.887082], - [-12.085416, 8.88625], - [-12.088749, 8.887082], - [-12.092083, 8.88375], - [-12.097082, 8.884582], - [-12.097916, 8.880417], - [-12.099582, 8.87875], - [-12.103749, 8.87875], - [-12.105416, 8.884582], - [-12.099583, 8.88625], - [-12.099583, 8.890416], - [-12.101249, 8.890417], - [-12.102083, 8.892082], - [-12.105416, 8.892082], - [-12.107472, 8.891398], - [-12.107795, 8.892334], - [-12.108047, 8.893018], - [-12.108514, 8.893677], - [-12.111816, 8.896628], - [-12.112026, 8.897151], - [-12.111981, 8.899582], - [-12.116249, 8.899583], - [-12.11625, 8.901249], - [-12.11875, 8.903749], - [-12.124582, 8.902083], - [-12.129013, 8.903559], - [-12.128098, 8.904764], - [-12.129583, 8.90625], - [-12.130417, 8.909582], - [-12.134582, 8.911249], - [-12.135416, 8.912082], - [-12.134583, 8.920416], - [-12.137063, 8.925375], - [-12.137142, 8.925381], - [-12.147083, 8.919583], - [-12.151884, 8.922326], - [-12.151979, 8.922164], - [-12.15198, 8.922163], - [-12.154582, 8.925416], - [-12.153865, 8.934032], - [-12.154149, 8.934257], - [-12.155061, 8.935761], - [-12.156691, 8.937089], - [-12.1575, 8.935999], - [-12.1591, 8.933399], - [-12.1609, 8.9322], - [-12.163099, 8.932299], - [-12.165399, 8.9339], - [-12.1679, 8.937299], - [-12.1704, 8.938299], - [-12.173299, 8.9381], - [-12.179199, 8.9356], - [-12.181786, 8.935205], - [-12.182277, 8.934128], - [-12.183018, 8.933257], - [-12.1837, 8.931937], - [-12.184813, 8.930442], - [-12.185555, 8.929721], - [-12.18375, 8.927916], - [-12.184477, 8.916994], - [-12.184174, 8.916643], - [-12.184583, 8.915416], - [-12.187082, 8.913749], - [-12.187917, 8.90375], - [-12.192082, 8.900417], - [-12.195049, 8.900416], - [-12.195335, 8.899979], - [-12.195336, 8.898446], - [-12.195504, 8.8974], - [-12.196301, 8.895329], - [-12.196252, 8.894878], - [-12.19574, 8.894552], - [-12.194165, 8.894978], - [-12.192876, 8.893999], - [-12.192578, 8.893259], - [-12.192507, 8.890324], - [-12.192707, 8.890135], - [-12.192933, 8.890157], - [-12.19337, 8.890512], - [-12.193769, 8.890293], - [-12.19405, 8.889752], - [-12.194246, 8.888426], - [-12.194639, 8.887939], - [-12.190328, 8.887938], - [-12.193847, 8.886408], - [-12.194234, 8.886331], - [-12.194072, 8.885186], - [-12.192083, 8.884372], - [-12.192082, 8.883025], - [-12.191603, 8.882779], - [-12.194812, 8.882778], - [-12.195037, 8.882412], - [-12.194945, 8.881867], - [-12.195251, 8.881028], - [-12.195279, 8.878875], - [-12.196545, 8.87648], - [-12.196167, 8.875961], - [-12.195882, 8.875865], - [-12.195882, 8.875863], - [-12.201249, 8.875416] - ] - ], - "type": "Polygon" - }, - "id": 324, - "properties": { - "cc:admin:id": ["83"], - "cc:oBld:total": 214, - "cc:pop:fifteen-to-twenty-four": 1680.1081305440882, - "cc:pop:grid3-total": 10195.2912319142, - "cc:pop:kontur-total": 9747.971661787486, - "cc:pop:men": 4309.855682885321, - "cc:pop:sixty-plus": 565.304504514734, - "cc:pop:total": 9214.694571934404, - "cc:pop:under-five": 1480.0284893479807, - "cc:pop:women": 4904.838889049086, - "cc:pop:women-fiften-to-forty-nine": 2367.102432440391, - "cc:pop:wp-total": 8440.005611066848, - "cc:pop:wp-total-UN": 9788.593962070227, - "cc:id": "324", - "cc:Name": "Makarie MCHP", - "cc:site": [-12.1263, 8.8648], - "user:parentName": "Makari Gbanti", - "user:code": "OU_193253", - "user:orgUnitId": "wSHfjjFqUay", - "user:level": "4", - "user:parentId": "lY93YpCxJqf" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.146131, 8.435416], - [-12.142278, 8.428743], - [-12.134467, 8.428742], - [-12.132981, 8.42617], - [-12.136249, 8.422083], - [-12.136249, 8.419584], - [-12.132083, 8.414584], - [-12.131249, 8.409584], - [-12.130416, 8.408749], - [-12.12625, 8.407083], - [-12.126249, 8.400417], - [-12.12375, 8.398749], - [-12.123749, 8.392084], - [-12.12226, 8.390594], - [-12.121426, 8.391354], - [-12.120929, 8.392422], - [-12.11625, 8.390417], - [-12.117082, 8.38625], - [-12.117916, 8.384583], - [-12.117082, 8.382917], - [-12.112083, 8.380416], - [-12.112083, 8.379583], - [-12.117082, 8.377916], - [-12.112916, 8.374584], - [-12.110417, 8.37375], - [-12.110416, 8.372084], - [-12.105417, 8.37125], - [-12.105416, 8.376249], - [-12.10375, 8.377917], - [-12.104582, 8.38125], - [-12.100417, 8.385416], - [-12.097083, 8.385417], - [-12.09625, 8.387084], - [-12.096948, 8.39337], - [-12.094873, 8.392593], - [-12.09375, 8.392298], - [-12.093749, 8.394583], - [-12.091249, 8.397083], - [-12.087082, 8.395417], - [-12.083749, 8.395416], - [-12.081249, 8.39375], - [-12.07875, 8.39375], - [-12.077917, 8.39625], - [-12.077917, 8.402083], - [-12.082083, 8.407084], - [-12.082082, 8.410416], - [-12.079583, 8.412916], - [-12.074069, 8.413605], - [-12.074104, 8.412588], - [-12.074061, 8.412014], - [-12.067917, 8.407917], - [-12.060417, 8.41625], - [-12.060417, 8.417084], - [-12.06125, 8.417916], - [-12.062916, 8.41875], - [-12.063749, 8.419584], - [-12.065416, 8.422917], - [-12.064893, 8.424485], - [-12.064499, 8.424142], - [-12.062787, 8.423462], - [-12.061582, 8.423556], - [-12.058654, 8.424531], - [-12.057229, 8.425511], - [-12.0603, 8.4258], - [-12.062599, 8.427399], - [-12.0637, 8.4297], - [-12.063799, 8.4336], - [-12.0624, 8.439599], - [-12.063599, 8.444499], - [-12.063799, 8.448], - [-12.063399, 8.4505], - [-12.061199, 8.4558], - [-12.060699, 8.4585], - [-12.0605, 8.462299], - [-12.0605, 8.472899], - [-12.060599, 8.475599], - [-12.0612, 8.478099], - [-12.0629, 8.479999], - [-12.0679, 8.4816], - [-12.073499, 8.484399], - [-12.075299, 8.485899], - [-12.0779, 8.4897], - [-12.0814, 8.4934], - [-12.087499, 8.499599], - [-12.089999, 8.502499], - [-12.0931, 8.506999], - [-12.098, 8.506699], - [-12.107099, 8.5066], - [-12.111527, 8.506686], - [-12.111823, 8.504547], - [-12.111488, 8.499584], - [-12.113749, 8.499583], - [-12.116291, 8.495771], - [-12.117318, 8.496281], - [-12.119582, 8.494583], - [-12.120416, 8.492917], - [-12.115417, 8.486249], - [-12.114583, 8.482917], - [-12.127916, 8.482083], - [-12.12875, 8.478749], - [-12.128749, 8.472917], - [-12.124583, 8.470416], - [-12.124583, 8.46375], - [-12.132082, 8.459583], - [-12.13125, 8.457916], - [-12.131868, 8.455443], - [-12.135833, 8.455594], - [-12.136263, 8.455757], - [-12.136559, 8.456115], - [-12.136883, 8.456685], - [-12.136903, 8.457026], - [-12.137239, 8.456826], - [-12.137349, 8.456404], - [-12.136646, 8.44985], - [-12.13678, 8.449123], - [-12.138001, 8.448035], - [-12.13625, 8.448011], - [-12.13625, 8.437917], - [-12.13875, 8.435417], - [-12.146131, 8.435416] - ] - ], - "type": "Polygon" - }, - "id": 325, - "properties": { - "cc:admin:id": ["149"], - "cc:oBld:total": 1, - "cc:pop:fifteen-to-twenty-four": 619.522692315673, - "cc:pop:grid3-total": 3207.5432548902445, - "cc:pop:kontur-total": 3409.9594955986645, - "cc:pop:men": 1554.015979787524, - "cc:pop:sixty-plus": 215.1041572973853, - "cc:pop:total": 3345.998654769525, - "cc:pop:under-five": 541.4718953972985, - "cc:pop:women": 1791.9826749819997, - "cc:pop:women-fiften-to-forty-nine": 884.7813798345858, - "cc:pop:wp-total": 4805.2827825422, - "cc:pop:wp-total-UN": 5562.66370357461, - "cc:id": "325", - "cc:Name": "Makelleh MCHP", - "cc:site": [-12.102, 8.4718], - "user:parentName": "Yoni", - "user:code": "OU_268244", - "user:orgUnitId": "NwX8noGxLoz", - "user:level": "4", - "user:parentId": "NNE0YMCDZkO" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.011268, 8.744325], - [-12.0112, 8.7366], - [-12.010999, 8.732999], - [-12.010299, 8.730399], - [-12.0067, 8.7229], - [-12.0044, 8.72], - [-12.0024, 8.718], - [-11.9994, 8.716], - [-11.996199, 8.714499], - [-11.9932, 8.7124], - [-11.9905, 8.7098], - [-11.988924, 8.708148], - [-11.982632, 8.710218], - [-11.980889, 8.710642], - [-11.979471, 8.71143], - [-11.97846, 8.712261], - [-11.97385, 8.714465], - [-11.971853, 8.716586], - [-11.970718, 8.717491], - [-11.969597, 8.718282], - [-11.966312, 8.720203], - [-11.959979, 8.723022], - [-11.956043, 8.724099], - [-11.955035, 8.724459], - [-11.954824, 8.724834], - [-11.954112, 8.724797], - [-11.954134, 8.725158], - [-11.953443, 8.72513], - [-11.953224, 8.72543], - [-11.950919, 8.726455], - [-11.94985, 8.727473], - [-11.949512, 8.728115], - [-11.948925, 8.728563], - [-11.948484, 8.729298], - [-11.948471, 8.729397], - [-11.947917, 8.729583], - [-11.947916, 8.7299], - [-11.947822, 8.730008], - [-11.947786, 8.73007], - [-11.94837, 8.730527], - [-11.948378, 8.730521], - [-11.949244, 8.729459], - [-11.949299, 8.729307], - [-11.952083, 8.72875], - [-11.952451, 8.729486], - [-11.952218, 8.7296], - [-11.952065, 8.729836], - [-11.953749, 8.732083], - [-11.95375, 8.73493], - [-11.956306, 8.735437], - [-11.95744, 8.735921], - [-11.958124, 8.736419], - [-11.959773, 8.738227], - [-11.960342, 8.739079], - [-11.961384, 8.74176], - [-11.965416, 8.740416], - [-11.96625, 8.73875], - [-11.968749, 8.73875], - [-11.967917, 8.745416], - [-11.967917, 8.750416], - [-11.969583, 8.749583], - [-11.970417, 8.752082], - [-11.972916, 8.750417], - [-11.975415, 8.751249], - [-11.972083, 8.75375], - [-11.973781, 8.756014], - [-11.973808, 8.756019], - [-11.974878, 8.756822], - [-11.975636, 8.75779], - [-11.974889, 8.758279], - [-11.97499, 8.758821], - [-11.973775, 8.759173], - [-11.975445, 8.760518], - [-11.975915, 8.760886], - [-11.975984, 8.761603], - [-11.976807, 8.763482], - [-11.977238, 8.764044], - [-11.9786, 8.76518], - [-11.978595, 8.765404], - [-11.978804, 8.765336], - [-11.980268, 8.766672], - [-11.980443, 8.766894], - [-11.980649, 8.767238], - [-11.981387, 8.768273], - [-11.98283, 8.769511], - [-11.98297, 8.769613], - [-11.981962, 8.770124], - [-11.981794, 8.770348], - [-11.98242, 8.770587], - [-11.98202, 8.771206], - [-11.98197, 8.771994], - [-11.982284, 8.772387], - [-11.982141, 8.772901], - [-11.982826, 8.772857], - [-11.983074, 8.772669], - [-11.983311, 8.772832], - [-11.983438, 8.773279], - [-11.983305, 8.77358], - [-11.982912, 8.773806], - [-11.983323, 8.773969], - [-11.983305, 8.774332], - [-11.983055, 8.774688], - [-11.98253, 8.774935], - [-11.982767, 8.775617], - [-11.982647, 8.776471], - [-11.982645, 8.776472], - [-11.982152, 8.77625], - [-11.981918, 8.777019], - [-11.982097, 8.777083], - [-11.98287, 8.776657], - [-11.983635, 8.775692], - [-11.985319, 8.775027], - [-11.985626, 8.774671], - [-11.985627, 8.774672], - [-11.985611, 8.775648], - [-11.985993, 8.776055], - [-11.9875, 8.774799], - [-11.992299, 8.7721], - [-11.9969, 8.769999], - [-12.0005, 8.767199], - [-12.004399, 8.7633], - [-12.0065, 8.760499], - [-12.0104, 8.752599], - [-12.011, 8.750499], - [-12.011299, 8.7478], - [-12.011268, 8.744325] - ] - ], - "type": "Polygon" - }, - "id": 326, - "properties": { - "cc:admin:id": ["106"], - "cc:oBld:total": 327, - "cc:pop:fifteen-to-twenty-four": 740.5965838260848, - "cc:pop:grid3-total": 3214.5086464871347, - "cc:pop:kontur-total": 5269.04053410083, - "cc:pop:men": 1832.2555801024278, - "cc:pop:sixty-plus": 228.62513429624724, - "cc:pop:total": 4000.237839222008, - "cc:pop:under-five": 634.5529158915176, - "cc:pop:women": 2167.9822591195807, - "cc:pop:women-fiften-to-forty-nine": 1076.9846204913683, - "cc:pop:wp-total": 3428.170867184334, - "cc:pop:wp-total-UN": 3978.137821766695, - "cc:id": "326", - "cc:Name": "Makeni-Lol MCHP", - "cc:site": [-11.9981, 8.74], - "user:parentName": "Paki Masabong", - "user:code": "OU_193297", - "user:orgUnitId": "dmdYffw2I0F", - "user:level": "4", - "user:parentId": "L8iA6eLwKNb" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.604489, 8.404208], - [-12.603749, 8.394584], - [-12.592917, 8.397916], - [-12.592482, 8.399215], - [-12.591847, 8.398853], - [-12.58986, 8.398155], - [-12.587271, 8.397922], - [-12.584471, 8.399319], - [-12.583377, 8.399499], - [-12.583376, 8.399498], - [-12.583749, 8.39875], - [-12.582082, 8.397084], - [-12.57625, 8.394584], - [-12.575633, 8.398277], - [-12.574505, 8.397539], - [-12.568751, 8.400416], - [-12.56875, 8.400415], - [-12.568749, 8.392917], - [-12.56375, 8.392917], - [-12.562917, 8.394583], - [-12.562082, 8.394583], - [-12.55875, 8.392916], - [-12.557916, 8.387917], - [-12.55625, 8.38875], - [-12.553749, 8.393749], - [-12.55125, 8.392084], - [-12.551249, 8.390417], - [-12.549583, 8.38875], - [-12.549582, 8.38732], - [-12.549487, 8.387357], - [-12.546749, 8.389952], - [-12.546506, 8.390193], - [-12.545597, 8.389752], - [-12.545317, 8.389753], - [-12.545317, 8.389752], - [-12.54627, 8.388804], - [-12.546444, 8.388343], - [-12.546444, 8.387571], - [-12.546185, 8.386157], - [-12.546228, 8.385865], - [-12.54375, 8.389583], - [-12.54125, 8.389584], - [-12.541249, 8.391249], - [-12.529583, 8.391249], - [-12.529583, 8.384584], - [-12.529999, 8.384167], - [-12.526943, 8.384166], - [-12.523037, 8.377401], - [-12.520099, 8.377401], - [-12.517917, 8.379583], - [-12.51625, 8.379584], - [-12.517082, 8.38375], - [-12.509583, 8.38625], - [-12.508749, 8.391249], - [-12.505417, 8.39125], - [-12.500417, 8.393749], - [-12.499582, 8.39375], - [-12.494583, 8.395416], - [-12.492083, 8.397084], - [-12.4914, 8.403233], - [-12.492587, 8.403903], - [-12.492083, 8.405416], - [-12.487917, 8.408749], - [-12.490417, 8.40875], - [-12.490417, 8.419073], - [-12.490443, 8.419154], - [-12.489327, 8.422961], - [-12.488483, 8.425672], - [-12.48855, 8.42734], - [-12.489081, 8.428684], - [-12.489353, 8.429174], - [-12.482083, 8.432084], - [-12.482916, 8.439583], - [-12.482917, 8.440416], - [-12.486249, 8.444584], - [-12.482129, 8.452138], - [-12.480412, 8.451139], - [-12.480202, 8.451638], - [-12.479833, 8.452004], - [-12.480159, 8.453451], - [-12.480177, 8.453884], - [-12.479961, 8.454386], - [-12.4824, 8.453599], - [-12.486599, 8.4529], - [-12.49231, 8.452998], - [-12.4924, 8.453], - [-12.4966, 8.4537], - [-12.5025, 8.4557], - [-12.506799, 8.456399], - [-12.510999, 8.4563], - [-12.514899, 8.455099], - [-12.518399, 8.451699], - [-12.522099, 8.4386], - [-12.5241, 8.433199], - [-12.5264, 8.429399], - [-12.5284, 8.4276], - [-12.5315, 8.4264], - [-12.535499, 8.4264], - [-12.5397, 8.4278], - [-12.541699, 8.4296], - [-12.544999, 8.435099], - [-12.5471, 8.4379], - [-12.549799, 8.440399], - [-12.553599, 8.442999], - [-12.556199, 8.445399], - [-12.55961, 8.449491], - [-12.560237, 8.449031], - [-12.560698, 8.449009], - [-12.561368, 8.44872], - [-12.56212, 8.44799], - [-12.562451, 8.447891], - [-12.562747, 8.447869], - [-12.563584, 8.447327], - [-12.5633, 8.446858], - [-12.562353, 8.445418], - [-12.562353, 8.445417], - [-12.569582, 8.445416], - [-12.567917, 8.442083], - [-12.567917, 8.437084], - [-12.569582, 8.435417], - [-12.573489, 8.435417], - [-12.573633, 8.436112], - [-12.573733, 8.436394], - [-12.574496, 8.438837], - [-12.575416, 8.437916], - [-12.578749, 8.42875], - [-12.579583, 8.428749], - [-12.581007, 8.42305], - [-12.580904, 8.423012], - [-12.580652, 8.42281], - [-12.58125, 8.420417], - [-12.58625, 8.419584], - [-12.593749, 8.420416], - [-12.595417, 8.41125], - [-12.597372, 8.410271], - [-12.59706, 8.408986], - [-12.597873, 8.409069], - [-12.598847, 8.408828], - [-12.59968, 8.407943], - [-12.601159, 8.406825], - [-12.602493, 8.404849], - [-12.602934, 8.404595], - [-12.603291, 8.404406], - [-12.604316, 8.4043], - [-12.604489, 8.404208] - ] - ], - "type": "Polygon" - }, - "id": 327, - "properties": { - "cc:admin:id": ["149"], - "cc:oBld:total": 309, - "cc:pop:fifteen-to-twenty-four": 868.988469132906, - "cc:pop:grid3-total": 5627.4486377715, - "cc:pop:kontur-total": 4838.322382758435, - "cc:pop:men": 2159.5909712471253, - "cc:pop:sixty-plus": 301.86941992326723, - "cc:pop:total": 4643.415788137075, - "cc:pop:under-five": 751.2224916277471, - "cc:pop:women": 2483.824816889951, - "cc:pop:women-fiften-to-forty-nine": 1233.259323109475, - "cc:pop:wp-total": 4383.074029535575, - "cc:pop:wp-total-UN": 5081.896069375849, - "cc:id": "327", - "cc:Name": "Makeni-Rokfullah MCHP", - "cc:site": [-12.5409, 8.4255], - "user:parentName": "Yoni", - "user:code": "OU_268245", - "user:orgUnitId": "jbfISeV6Wdu", - "user:level": "4", - "user:parentId": "NNE0YMCDZkO" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.713749, 8.467084], - [-12.707082, 8.466249], - [-12.705363, 8.463097], - [-12.704983, 8.462903], - [-12.705158, 8.462721], - [-12.702083, 8.457084], - [-12.700417, 8.456249], - [-12.701249, 8.45375], - [-12.700417, 8.452084], - [-12.697916, 8.451249], - [-12.695417, 8.439584], - [-12.696249, 8.437917], - [-12.695918, 8.437254], - [-12.695444, 8.437567], - [-12.695037, 8.438056], - [-12.690417, 8.435416], - [-12.687917, 8.427917], - [-12.687916, 8.427084], - [-12.685458, 8.424898], - [-12.685968, 8.424148], - [-12.686016, 8.423751], - [-12.684805, 8.424286], - [-12.684787, 8.424301], - [-12.681411, 8.421302], - [-12.680441, 8.421906], - [-12.677643, 8.424449], - [-12.675064, 8.426062], - [-12.673772, 8.427066], - [-12.671877, 8.427582], - [-12.671761, 8.427916], - [-12.66375, 8.427917], - [-12.663659, 8.429173], - [-12.657652, 8.429174], - [-12.657407, 8.429598], - [-12.657387, 8.429827], - [-12.658325, 8.43214], - [-12.65838, 8.433026], - [-12.659091, 8.434012], - [-12.659091, 8.434014], - [-12.658075, 8.434107], - [-12.657424, 8.433843], - [-12.656662, 8.433776], - [-12.654712, 8.434795], - [-12.65344, 8.434697], - [-12.651277, 8.435177], - [-12.65033, 8.435124], - [-12.649085, 8.435556], - [-12.647717, 8.436403], - [-12.647659, 8.435949], - [-12.647437, 8.435763], - [-12.647162, 8.435514], - [-12.646171, 8.435411], - [-12.644787, 8.435002], - [-12.643944, 8.434146], - [-12.642917, 8.433323], - [-12.642917, 8.437915], - [-12.642915, 8.437916], - [-12.634423, 8.434378], - [-12.632458, 8.435419], - [-12.631259, 8.436452], - [-12.630233, 8.436787], - [-12.629452, 8.437329], - [-12.626442, 8.439442], - [-12.625847, 8.440104], - [-12.625537, 8.440936], - [-12.625264, 8.440592], - [-12.625617, 8.438383], - [-12.620417, 8.437084], - [-12.61375, 8.437084], - [-12.612916, 8.43625], - [-12.61125, 8.43625], - [-12.60875, 8.440417], - [-12.608749, 8.441802], - [-12.607468, 8.440852], - [-12.606416, 8.440525], - [-12.60574, 8.440626], - [-12.604285, 8.439326], - [-12.604128, 8.438976], - [-12.602374, 8.441307], - [-12.6027, 8.4433], - [-12.604351, 8.447262], - [-12.609582, 8.447917], - [-12.61125, 8.44875], - [-12.614582, 8.448749], - [-12.61625, 8.447917], - [-12.622916, 8.447917], - [-12.625417, 8.451249], - [-12.626422, 8.451586], - [-12.626664, 8.452961], - [-12.626572, 8.453503], - [-12.626445, 8.453749], - [-12.635416, 8.45375], - [-12.635251, 8.455733], - [-12.638562, 8.455734], - [-12.642468, 8.462499], - [-12.64651, 8.4625], - [-12.64625, 8.464583], - [-12.647083, 8.464584], - [-12.651643, 8.472941], - [-12.653121, 8.472346], - [-12.654483, 8.471255], - [-12.655179, 8.469801], - [-12.655921, 8.467466], - [-12.666249, 8.470416], - [-12.664583, 8.476249], - [-12.664293, 8.47654], - [-12.664847, 8.477499], - [-12.670346, 8.4775], - [-12.669471, 8.478551], - [-12.670117, 8.478865], - [-12.670412, 8.478866], - [-12.671323, 8.481396], - [-12.671892, 8.483105], - [-12.672615, 8.484492], - [-12.671599, 8.484661], - [-12.670852, 8.484987], - [-12.670472, 8.485347], - [-12.670244, 8.486011], - [-12.670338, 8.486931], - [-12.670708, 8.487292], - [-12.670795, 8.487763], - [-12.670978, 8.487929], - [-12.672869, 8.487332], - [-12.673446, 8.48771], - [-12.674373, 8.487902], - [-12.675596, 8.488759], - [-12.676545, 8.488593], - [-12.676853, 8.487758], - [-12.677359, 8.487385], - [-12.677626, 8.486648], - [-12.677628, 8.486647], - [-12.67986, 8.490513], - [-12.682658, 8.490514], - [-12.682917, 8.490417], - [-12.684583, 8.490417], - [-12.687917, 8.494583], - [-12.689313, 8.495048], - [-12.689211, 8.495231], - [-12.694583, 8.497916], - [-12.697917, 8.497916], - [-12.697916, 8.497083], - [-12.695417, 8.484583], - [-12.697917, 8.482917], - [-12.705416, 8.487083], - [-12.703749, 8.482084], - [-12.700417, 8.480416], - [-12.700936, 8.478856], - [-12.701825, 8.478905], - [-12.70254, 8.479125], - [-12.705417, 8.47625], - [-12.712082, 8.476249], - [-12.713749, 8.467084] - ] - ], - "type": "Polygon" - }, - "id": 328, - "properties": { - "cc:admin:id": ["62"], - "cc:oBld:total": 175, - "cc:pop:fifteen-to-twenty-four": 614.1326544322342, - "cc:pop:grid3-total": 5743.301790628677, - "cc:pop:kontur-total": 3178.395999469136, - "cc:pop:men": 1571.0712342923136, - "cc:pop:sixty-plus": 206.47446993110134, - "cc:pop:total": 3355.928191070231, - "cc:pop:under-five": 552.3311220028628, - "cc:pop:women": 1784.856956777918, - "cc:pop:women-fiften-to-forty-nine": 892.269649840683, - "cc:pop:wp-total": 3116.3347472192913, - "cc:pop:wp-total-UN": 3610.2700135855507, - "cc:id": "328", - "cc:Name": "Makiteh MCHP", - "cc:site": [-12.6678, 8.4556], - "user:parentName": "Koya", - "user:code": "OU_254974", - "user:orgUnitId": "YldSFPxB6WH", - "user:level": "4", - "user:parentId": "pRHGAROvuyI" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.321156, 8.597329], - [-12.320799, 8.5951], - [-12.317799, 8.591399], - [-12.310599, 8.588199], - [-12.303299, 8.583799], - [-12.2956, 8.5803], - [-12.288899, 8.578299], - [-12.2823, 8.5755], - [-12.275099, 8.571599], - [-12.271699, 8.568199], - [-12.270199, 8.564499], - [-12.269599, 8.5588], - [-12.265, 8.5572], - [-12.262799, 8.5581], - [-12.2573, 8.559399], - [-12.2549, 8.561], - [-12.2529, 8.5636], - [-12.2508, 8.5697], - [-12.2522, 8.575], - [-12.2528, 8.5787], - [-12.253199, 8.584499], - [-12.253699, 8.587299], - [-12.255599, 8.591699], - [-12.255999, 8.594099], - [-12.255699, 8.5965], - [-12.2542, 8.600199], - [-12.253808, 8.602315], - [-12.257414, 8.602316], - [-12.26132, 8.609081], - [-12.266068, 8.609081], - [-12.265417, 8.60125], - [-12.273265, 8.599109], - [-12.273278, 8.599587], - [-12.273835, 8.600752], - [-12.275327, 8.604275], - [-12.275922, 8.60473], - [-12.277719, 8.605268], - [-12.278775, 8.606531], - [-12.279334, 8.60659], - [-12.282082, 8.606271], - [-12.282083, 8.611249], - [-12.284583, 8.612084], - [-12.287083, 8.615416], - [-12.29079, 8.615417], - [-12.290748, 8.615649], - [-12.29375, 8.61625], - [-12.297916, 8.617917], - [-12.298749, 8.619584], - [-12.29125, 8.626249], - [-12.290417, 8.627916], - [-12.29125, 8.632083], - [-12.29375, 8.632083], - [-12.301249, 8.629584], - [-12.302917, 8.627917], - [-12.30875, 8.62875], - [-12.311249, 8.631249], - [-12.31125, 8.632916], - [-12.312917, 8.627916], - [-12.315417, 8.626249], - [-12.320637, 8.624011], - [-12.321099, 8.619899], - [-12.3198, 8.6128], - [-12.3198, 8.6085], - [-12.321599, 8.6001], - [-12.321156, 8.597329] - ] - ], - "type": "Polygon" - }, - "id": 329, - "properties": { - "cc:admin:id": ["85"], - "cc:oBld:total": 10, - "cc:pop:fifteen-to-twenty-four": 303.37888356820247, - "cc:pop:grid3-total": 2411.4030535167035, - "cc:pop:kontur-total": 1583.860665143615, - "cc:pop:men": 740.7884917482176, - "cc:pop:sixty-plus": 103.22562861488814, - "cc:pop:total": 1596.3013219431834, - "cc:pop:under-five": 258.9132485803268, - "cc:pop:women": 855.5128301949657, - "cc:pop:women-fiften-to-forty-nine": 424.14261855008414, - "cc:pop:wp-total": 1326.8961971819033, - "cc:pop:wp-total-UN": 1541.663058975797, - "cc:id": "329", - "cc:Name": "Makoba Bana MCHP", - "cc:site": [-12.3177, 8.6081], - "user:parentName": "Malal Mara", - "user:code": "OU_268188", - "user:orgUnitId": "KwSj4DlRWAm", - "user:level": "4", - "user:parentId": "EVkm2xYcf6Z" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.997064, 8.810262], - [-11.997099, 8.809299], - [-11.9964, 8.8058], - [-11.9947, 8.8026], - [-11.9883, 8.796], - [-11.9866, 8.7939], - [-11.9827, 8.786599], - [-11.9822, 8.7837], - [-11.982899, 8.7809], - [-11.985699, 8.7763], - [-11.985992, 8.776055], - [-11.985611, 8.775648], - [-11.985627, 8.77467], - [-11.985319, 8.775027], - [-11.983635, 8.775693], - [-11.98287, 8.776658], - [-11.982098, 8.777083], - [-11.981918, 8.777019], - [-11.982151, 8.77625], - [-11.982646, 8.776472], - [-11.982767, 8.775617], - [-11.98253, 8.774935], - [-11.983055, 8.774687], - [-11.983305, 8.774332], - [-11.983323, 8.773969], - [-11.982913, 8.773806], - [-11.983305, 8.773579], - [-11.983438, 8.773279], - [-11.983311, 8.772832], - [-11.983074, 8.772669], - [-11.982826, 8.772857], - [-11.982141, 8.772901], - [-11.982284, 8.772387], - [-11.98197, 8.771994], - [-11.98202, 8.771206], - [-11.98242, 8.770587], - [-11.981794, 8.770348], - [-11.981962, 8.770124], - [-11.98297, 8.769613], - [-11.98283, 8.769511], - [-11.981387, 8.768273], - [-11.980649, 8.767238], - [-11.980443, 8.766894], - [-11.980268, 8.766672], - [-11.978804, 8.765336], - [-11.978595, 8.765404], - [-11.9786, 8.765181], - [-11.977238, 8.764044], - [-11.976807, 8.763482], - [-11.975984, 8.761603], - [-11.975915, 8.760887], - [-11.975445, 8.760518], - [-11.973776, 8.759173], - [-11.973776, 8.759172], - [-11.97499, 8.75882], - [-11.974889, 8.758278], - [-11.975636, 8.75779], - [-11.974878, 8.756822], - [-11.973808, 8.756019], - [-11.973782, 8.756015], - [-11.972083, 8.75375], - [-11.975416, 8.75125], - [-11.972917, 8.750417], - [-11.970417, 8.752082], - [-11.969582, 8.749583], - [-11.967918, 8.750416], - [-11.967917, 8.750415], - [-11.967917, 8.745416], - [-11.968749, 8.73875], - [-11.96625, 8.73875], - [-11.965416, 8.740417], - [-11.961384, 8.74176], - [-11.960342, 8.739079], - [-11.959773, 8.738227], - [-11.958124, 8.736419], - [-11.95744, 8.735921], - [-11.956306, 8.735437], - [-11.95375, 8.73493], - [-11.953749, 8.732083], - [-11.952065, 8.729837], - [-11.952217, 8.7296], - [-11.95245, 8.729485], - [-11.952082, 8.72875], - [-11.949299, 8.729307], - [-11.949244, 8.729459], - [-11.948378, 8.730521], - [-11.948371, 8.730527], - [-11.947786, 8.73007], - [-11.947822, 8.730008], - [-11.947916, 8.7299], - [-11.947917, 8.729583], - [-11.948471, 8.729397], - [-11.948484, 8.729298], - [-11.948925, 8.728563], - [-11.949512, 8.728115], - [-11.94985, 8.727473], - [-11.950919, 8.726455], - [-11.953224, 8.72543], - [-11.953443, 8.72513], - [-11.954134, 8.725158], - [-11.954112, 8.724797], - [-11.954824, 8.724834], - [-11.955035, 8.724458], - [-11.956043, 8.724099], - [-11.959979, 8.723022], - [-11.966312, 8.720203], - [-11.969597, 8.718282], - [-11.970718, 8.717491], - [-11.971853, 8.716586], - [-11.97385, 8.714465], - [-11.97846, 8.712261], - [-11.979471, 8.71143], - [-11.980889, 8.710642], - [-11.982632, 8.710218], - [-11.988924, 8.708147], - [-11.986399, 8.7055], - [-11.980199, 8.7066], - [-11.974799, 8.7086], - [-11.9681, 8.710499], - [-11.958399, 8.7152], - [-11.953699, 8.7182], - [-11.9493, 8.723099], - [-11.946699, 8.7254], - [-11.9337, 8.734399], - [-11.926199, 8.7377], - [-11.9163, 8.745099], - [-11.91, 8.749299], - [-11.9069, 8.752099], - [-11.905569, 8.753726], - [-11.90668, 8.753873], - [-11.907672, 8.755095], - [-11.908765, 8.755835], - [-11.909589, 8.755818], - [-11.910021, 8.75564], - [-11.910326, 8.755357], - [-11.910965, 8.753176], - [-11.911381, 8.753196], - [-11.911769, 8.752657], - [-11.91176, 8.750766], - [-11.912138, 8.749523], - [-11.91537, 8.74789], - [-11.915416, 8.747895], - [-11.915417, 8.747917], - [-11.918749, 8.752917], - [-11.919481, 8.759501], - [-11.91924, 8.759766], - [-11.925416, 8.762083], - [-11.92375, 8.767082], - [-11.924583, 8.767916], - [-11.929582, 8.767084], - [-11.92875, 8.772082], - [-11.928749, 8.772433], - [-11.927115, 8.773808], - [-11.924769, 8.775974], - [-11.924202, 8.776819], - [-11.92389, 8.777029], - [-11.927083, 8.779582], - [-11.936249, 8.779583], - [-11.93875, 8.782082], - [-11.940612, 8.782549], - [-11.940607, 8.782559], - [-11.939958, 8.783015], - [-11.937545, 8.783322], - [-11.936017, 8.785151], - [-11.937917, 8.789582], - [-11.941249, 8.79125], - [-11.943749, 8.79375], - [-11.945416, 8.797083], - [-11.945417, 8.798749], - [-11.954582, 8.79875], - [-11.954583, 8.805416], - [-11.957082, 8.807916], - [-11.957083, 8.808467], - [-11.957351, 8.808399], - [-11.958489, 8.808558], - [-11.959973, 8.809146], - [-11.960574, 8.809231], - [-11.955417, 8.812917], - [-11.95375, 8.823749], - [-11.961249, 8.824582], - [-11.962083, 8.823749], - [-11.970416, 8.822083], - [-11.972917, 8.825416], - [-11.975434, 8.824787], - [-11.97649, 8.829037], - [-11.976417, 8.830557], - [-11.976965, 8.832916], - [-11.978749, 8.832916], - [-11.985086, 8.825789], - [-11.985087, 8.825789], - [-11.985238, 8.826385], - [-11.986387, 8.827354], - [-11.987956, 8.82841], - [-11.9908, 8.822799], - [-11.9954, 8.817099], - [-11.9965, 8.814699], - [-11.996999, 8.812], - [-11.997064, 8.810262] - ] - ], - "type": "Polygon" - }, - "id": 330, - "properties": { - "cc:admin:id": ["106"], - "cc:oBld:total": 2238, - "cc:pop:fifteen-to-twenty-four": 2393.1990971303007, - "cc:pop:grid3-total": 16565.064803953297, - "cc:pop:kontur-total": 12383.769142473782, - "cc:pop:men": 5895.810387106996, - "cc:pop:sixty-plus": 760.291237512171, - "cc:pop:total": 12906.104734623548, - "cc:pop:under-five": 2046.701931487748, - "cc:pop:women": 7010.294347516554, - "cc:pop:women-fiften-to-forty-nine": 3470.2324277461084, - "cc:pop:wp-total": 11233.78736084022, - "cc:pop:wp-total-UN": 13019.745230428694, - "cc:id": "330", - "cc:Name": "Makolor CHP", - "cc:site": [-11.9556, 8.7597], - "user:parentName": "Paki Masabong", - "user:code": "OU_193296", - "user:orgUnitId": "si34vmovtgR", - "user:level": "4", - "user:parentId": "L8iA6eLwKNb" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.623421, 8.647808], - [-11.61375, 8.644584], - [-11.605417, 8.647916], - [-11.604583, 8.647083], - [-11.603749, 8.644584], - [-11.58625, 8.644584], - [-11.586249, 8.649583], - [-11.585417, 8.649583], - [-11.585417, 8.633342], - [-11.588087, 8.632803], - [-11.590088, 8.632091], - [-11.591114, 8.631444], - [-11.592073, 8.630592], - [-11.592916, 8.629603], - [-11.592916, 8.625417], - [-11.58875, 8.621249], - [-11.587082, 8.617084], - [-11.581249, 8.618749], - [-11.580417, 8.616249], - [-11.580416, 8.60375], - [-11.57625, 8.602917], - [-11.574582, 8.602916], - [-11.570417, 8.599584], - [-11.569582, 8.59625], - [-11.564583, 8.595417], - [-11.563749, 8.59375], - [-11.561249, 8.592916], - [-11.560058, 8.589341], - [-11.561305, 8.588122], - [-11.561651, 8.587516], - [-11.56206, 8.58716], - [-11.563175, 8.58445], - [-11.563294, 8.583085], - [-11.56435, 8.580724], - [-11.5603, 8.584699], - [-11.5573, 8.588299], - [-11.5535, 8.5958], - [-11.5526, 8.6011], - [-11.552699, 8.612699], - [-11.5522, 8.617299], - [-11.5499, 8.622699], - [-11.5484, 8.628499], - [-11.5465, 8.632999], - [-11.545899, 8.6351], - [-11.5455, 8.6393], - [-11.5455, 8.651899], - [-11.5448, 8.655399], - [-11.5427, 8.659799], - [-11.541399, 8.663], - [-11.5389, 8.668099], - [-11.537399, 8.674], - [-11.536099, 8.6763], - [-11.532199, 8.6814], - [-11.5303, 8.685299], - [-11.5282, 8.688799], - [-11.5264, 8.692699], - [-11.5244, 8.696199], - [-11.5235, 8.6993], - [-11.5241, 8.702299], - [-11.5261, 8.703599], - [-11.5284, 8.703299], - [-11.536099, 8.6989], - [-11.5411, 8.694699], - [-11.5445, 8.692799], - [-11.5493, 8.690399], - [-11.5527, 8.689499], - [-11.559699, 8.6886], - [-11.565099, 8.6865], - [-11.567699, 8.6859], - [-11.572999, 8.6853], - [-11.5756, 8.684699], - [-11.5779, 8.683299], - [-11.583, 8.679399], - [-11.5883, 8.676399], - [-11.5937, 8.672099], - [-11.6015, 8.668099], - [-11.604, 8.667299], - [-11.608699, 8.6663], - [-11.6107, 8.665299], - [-11.616099, 8.6605], - [-11.619199, 8.6566], - [-11.623399, 8.6479], - [-11.623421, 8.647808] - ] - ], - "type": "Polygon" - }, - "id": 331, - "properties": { - "cc:admin:id": ["69"], - "cc:oBld:total": 1, - "cc:pop:fifteen-to-twenty-four": 842.6231235233179, - "cc:pop:grid3-total": 5265.953364363055, - "cc:pop:kontur-total": 4880.84366182994, - "cc:pop:men": 2208.547321074737, - "cc:pop:sixty-plus": 292.56223419860896, - "cc:pop:total": 4501.268066153719, - "cc:pop:under-five": 709.6446881975276, - "cc:pop:women": 2292.720745078983, - "cc:pop:women-fiften-to-forty-nine": 1120.2176415265856, - "cc:pop:wp-total": 4140.878639495394, - "cc:pop:wp-total-UN": 4793.876028749003, - "cc:id": "331", - "cc:Name": "Makoni Line MCHP", - "cc:site": [-11.5743, 8.6373], - "user:parentName": "Kunike Barina", - "user:code": "OU_268214", - "user:orgUnitId": "CebtBqqp1fp", - "user:level": "4", - "user:parentId": "rXLor9Knq6l" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.838749, 8.642917], - [-11.837083, 8.641249], - [-11.838749, 8.63375], - [-11.83625, 8.632917], - [-11.836152, 8.632819], - [-11.836028, 8.632958], - [-11.83375, 8.631249], - [-11.832916, 8.62625], - [-11.832083, 8.625416], - [-11.83125, 8.622917], - [-11.832916, 8.61625], - [-11.83375, 8.615416], - [-11.835416, 8.612917], - [-11.832917, 8.609583], - [-11.833749, 8.59875], - [-11.82625, 8.594583], - [-11.829582, 8.589584], - [-11.834582, 8.587083], - [-11.834582, 8.586249], - [-11.832917, 8.582083], - [-11.833749, 8.579584], - [-11.83375, 8.578749], - [-11.838749, 8.567917], - [-11.831249, 8.567083], - [-11.824583, 8.560417], - [-11.824583, 8.558749], - [-11.825416, 8.554584], - [-11.826591, 8.552821], - [-11.825299, 8.552099], - [-11.822099, 8.550799], - [-11.8177, 8.5484], - [-11.814499, 8.546999], - [-11.8102, 8.5446], - [-11.806999, 8.543299], - [-11.8027, 8.5409], - [-11.799499, 8.539599], - [-11.7951, 8.5372], - [-11.791899, 8.535899], - [-11.7876, 8.5335], - [-11.7837, 8.5317], - [-11.777199, 8.526799], - [-11.7688, 8.5223], - [-11.765499, 8.520999], - [-11.7612, 8.5186], - [-11.757999, 8.517299], - [-11.7537, 8.5149], - [-11.750499, 8.513499], - [-11.746099, 8.511199], - [-11.742899, 8.509799], - [-11.7386, 8.5075], - [-11.7343, 8.5054], - [-11.7286, 8.501], - [-11.722999, 8.497899], - [-11.719999, 8.495499], - [-11.714599, 8.490499], - [-11.7103, 8.487], - [-11.706099, 8.484799], - [-11.6984, 8.4803], - [-11.6947, 8.489199], - [-11.693, 8.495299], - [-11.6907, 8.500699], - [-11.6892, 8.506399], - [-11.687299, 8.5109], - [-11.6857, 8.517599], - [-11.6837, 8.521999], - [-11.682199, 8.528], - [-11.6797, 8.533999], - [-11.679299, 8.5368], - [-11.6791, 8.544599], - [-11.6794, 8.5484], - [-11.680199, 8.551099], - [-11.681599, 8.553499], - [-11.6835, 8.5556], - [-11.6911, 8.563], - [-11.6934, 8.5659], - [-11.695399, 8.569799], - [-11.697799, 8.574999], - [-11.699, 8.5801], - [-11.701599, 8.585199], - [-11.703, 8.5884], - [-11.7051, 8.5923], - [-11.7058, 8.5944], - [-11.706299, 8.597999], - [-11.7062, 8.603099], - [-11.705199, 8.6078], - [-11.7017, 8.614499], - [-11.6974, 8.620099], - [-11.6961, 8.622399], - [-11.696, 8.625199], - [-11.699599, 8.633099], - [-11.702199, 8.637399], - [-11.7036, 8.6405], - [-11.705899, 8.644899], - [-11.7066, 8.6489], - [-11.7068, 8.6532], - [-11.706999, 8.666599], - [-11.7069, 8.670399], - [-11.706499, 8.6732], - [-11.7041, 8.679999], - [-11.705599, 8.6817], - [-11.7068, 8.685], - [-11.7073, 8.6898], - [-11.707399, 8.698799], - [-11.7073, 8.702799], - [-11.7069, 8.706199], - [-11.706299, 8.7083], - [-11.7024, 8.715799], - [-11.6992, 8.720099], - [-11.6979, 8.722199], - [-11.6973, 8.724599], - [-11.6991, 8.7271], - [-11.70259, 8.733142], - [-11.702702, 8.733142], - [-11.706608, 8.726377], - [-11.71442, 8.726376], - [-11.718327, 8.719612], - [-11.726139, 8.719611], - [-11.730046, 8.712846], - [-11.732916, 8.712846], - [-11.732917, 8.715416], - [-11.735417, 8.717916], - [-11.743749, 8.715417], - [-11.744582, 8.71125], - [-11.746249, 8.710416], - [-11.74625, 8.709582], - [-11.747601, 8.709132], - [-11.747549, 8.708933], - [-11.752916, 8.70625], - [-11.757082, 8.705416], - [-11.757083, 8.701249], - [-11.758749, 8.700417], - [-11.760517, 8.702183], - [-11.765544, 8.702183], - [-11.76945, 8.695418], - [-11.772321, 8.695417], - [-11.772083, 8.694582], - [-11.772083, 8.687401], - [-11.776379, 8.687401], - [-11.780286, 8.694166], - [-11.784443, 8.694167], - [-11.784583, 8.692916], - [-11.793749, 8.692082], - [-11.794583, 8.690416], - [-11.798749, 8.689583], - [-11.806249, 8.690416], - [-11.810416, 8.683752], - [-11.811187, 8.693764], - [-11.811821, 8.693085], - [-11.813106, 8.692101], - [-11.813648, 8.691364], - [-11.814432, 8.68992], - [-11.815154, 8.689538], - [-11.815512, 8.689923], - [-11.816964, 8.690794], - [-11.818108, 8.691218], - [-11.820765, 8.691359], - [-11.824736, 8.691134], - [-11.825135, 8.69123], - [-11.82375, 8.682916], - [-11.827083, 8.677917], - [-11.831249, 8.677082], - [-11.83125, 8.674583], - [-11.829582, 8.674583], - [-11.820417, 8.675416], - [-11.81875, 8.67375], - [-11.82125, 8.665417], - [-11.823749, 8.662084], - [-11.822083, 8.660416], - [-11.82263, 8.657679], - [-11.826139, 8.657305], - [-11.835069, 8.656455], - [-11.836249, 8.656617], - [-11.836249, 8.65375], - [-11.834583, 8.651249], - [-11.837082, 8.647084], - [-11.837916, 8.646249], - [-11.837917, 8.645525], - [-11.838229, 8.645514], - [-11.838749, 8.642917] - ] - ], - "type": "Polygon" - }, - "id": 332, - "properties": { - "cc:admin:id": ["132"], - "cc:oBld:total": 228, - "cc:pop:fifteen-to-twenty-four": 2523.3785413433175, - "cc:pop:grid3-total": 17866.844704577805, - "cc:pop:kontur-total": 13806.292197050472, - "cc:pop:men": 6179.448039886663, - "cc:pop:sixty-plus": 889.5466903082762, - "cc:pop:total": 13406.016065685142, - "cc:pop:under-five": 2108.524030184982, - "cc:pop:women": 7226.568025798475, - "cc:pop:women-fiften-to-forty-nine": 3509.2013911835247, - "cc:pop:wp-total": 13614.691926816242, - "cc:pop:wp-total-UN": 15742.032755443066, - "cc:id": "332", - "cc:Name": "Makrugbeh MCHP", - "cc:site": [-11.8119, 8.6483], - "user:parentName": "Tane", - "user:code": "OU_268219", - "user:orgUnitId": "G5NCnFJ3bbV", - "user:level": "4", - "user:parentId": "xhyjU2SVewz" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.056249, 8.80625], - [-12.052084, 8.807082], - [-12.054582, 8.802917], - [-12.051249, 8.80125], - [-12.048749, 8.801249], - [-12.047917, 8.799583], - [-12.050416, 8.797082], - [-12.050416, 8.794583], - [-12.047083, 8.794583], - [-12.042917, 8.798749], - [-12.042083, 8.798749], - [-12.042083, 8.792082], - [-12.04375, 8.790417], - [-12.045416, 8.790416], - [-12.049582, 8.78625], - [-12.044841, 8.785063], - [-12.044842, 8.785062], - [-12.045103, 8.785053], - [-12.045661, 8.78407], - [-12.046031, 8.78253], - [-12.047425, 8.782726], - [-12.047998, 8.781377], - [-12.047745, 8.781367], - [-12.047189, 8.782423], - [-12.046955, 8.782514], - [-12.046053, 8.781887], - [-12.04582, 8.781577], - [-12.045683, 8.781107], - [-12.045016, 8.780797], - [-12.04326, 8.780458], - [-12.041443, 8.784204], - [-12.040576, 8.784467], - [-12.039386, 8.784272], - [-12.038758, 8.784007], - [-12.038424, 8.782576], - [-12.037625, 8.782135], - [-12.036858, 8.781419], - [-12.036784, 8.780444], - [-12.037716, 8.780369], - [-12.037707, 8.779888], - [-12.037352, 8.779114], - [-12.037015, 8.779075], - [-12.036513, 8.777929], - [-12.036538, 8.777609], - [-12.036924, 8.777178], - [-12.03684, 8.776853], - [-12.037084, 8.776255], - [-12.037572, 8.775846], - [-12.03585, 8.775713], - [-12.035341, 8.775865], - [-12.035205, 8.775831], - [-12.034582, 8.775417], - [-12.034231, 8.775592], - [-12.03314, 8.776059], - [-12.033108, 8.776154], - [-12.03125, 8.777083], - [-12.031134, 8.777256], - [-12.031633, 8.777145], - [-12.031634, 8.777146], - [-12.031249, 8.777917], - [-12.022917, 8.782082], - [-12.022082, 8.767917], - [-12.017986, 8.772013], - [-12.018528, 8.77251], - [-12.018407, 8.773932], - [-12.018574, 8.774253], - [-12.018384, 8.774545], - [-12.01831, 8.775541], - [-12.018617, 8.777455], - [-12.017944, 8.778028], - [-12.017181, 8.778241], - [-12.015926, 8.778187], - [-12.015694, 8.778129], - [-12.014734, 8.776455], - [-12.01447, 8.776342], - [-12.01423, 8.775733], - [-12.01424, 8.775304], - [-12.014459, 8.775208], - [-12.014439, 8.774997], - [-12.01409, 8.77435], - [-12.01417, 8.774064], - [-12.014004, 8.773687], - [-12.014579, 8.773372], - [-12.014332, 8.773067], - [-12.014216, 8.772422], - [-12.014325, 8.772371], - [-12.013749, 8.772082], - [-12.009582, 8.769583], - [-12.00625, 8.769582], - [-12.006249, 8.76875], - [-12.005876, 8.768004], - [-12.003201, 8.767822], - [-12.001126, 8.768243], - [-11.999721, 8.768553], - [-11.998959, 8.768958], - [-11.99718, 8.772233], - [-11.996875, 8.772004], - [-11.996048, 8.770591], - [-11.995244, 8.770756], - [-11.992299, 8.7721], - [-11.9875, 8.774799], - [-11.9857, 8.776299], - [-11.982899, 8.7809], - [-11.9822, 8.7837], - [-11.9827, 8.786599], - [-11.9866, 8.7939], - [-11.9883, 8.796], - [-11.9947, 8.8026], - [-11.9964, 8.8058], - [-11.997099, 8.809299], - [-11.996999, 8.812], - [-11.9965, 8.814699], - [-11.9954, 8.817099], - [-11.990799, 8.8228], - [-11.986999, 8.8303], - [-11.986199, 8.8336], - [-11.985699, 8.8389], - [-11.984801, 8.842294], - [-11.983, 8.845799], - [-11.981699, 8.849], - [-11.979499, 8.8534], - [-11.978799, 8.8568], - [-11.9786, 8.864999], - [-11.9779, 8.867799], - [-11.9744, 8.875099], - [-11.973873, 8.875872], - [-11.977071, 8.87461], - [-11.978737, 8.874643], - [-11.980335, 8.874956], - [-11.980607, 8.874909], - [-11.981249, 8.870417], - [-11.982083, 8.86625], - [-11.983614, 8.865229], - [-11.984308, 8.86596], - [-11.986046, 8.867055], - [-11.986648, 8.866494], - [-11.987303, 8.865329], - [-11.987297, 8.864817], - [-11.987035, 8.864633], - [-11.987417, 8.864265], - [-11.98702, 8.863884], - [-11.987183, 8.863574], - [-11.987045, 8.863145], - [-11.987409, 8.862864], - [-11.987634, 8.862433], - [-11.98769, 8.861658], - [-11.988224, 8.860914], - [-11.988594, 8.860752], - [-11.994583, 8.862082], - [-11.998749, 8.86125], - [-11.999582, 8.861249], - [-12.00213, 8.85934], - [-12.001988, 8.859091], - [-12.003749, 8.857916], - [-12.004583, 8.855417], - [-12.00955, 8.854174], - [-12.009894, 8.853512], - [-12.010942, 8.851291], - [-12.01192, 8.84849], - [-12.013974, 8.847009], - [-12.014431, 8.846417], - [-12.014551, 8.846305], - [-12.015128, 8.846465], - [-12.017796, 8.846491], - [-12.017588, 8.846271], - [-12.016563, 8.845911], - [-12.016072, 8.845332], - [-12.015952, 8.844636], - [-12.016259, 8.844095], - [-12.016412, 8.844115], - [-12.016782, 8.84441], - [-12.018721, 8.844282], - [-12.018801, 8.84445], - [-12.019446, 8.844482], - [-12.019798, 8.84416], - [-12.020993, 8.844222], - [-12.020797, 8.844031], - [-12.020902, 8.843949], - [-12.020842, 8.843243], - [-12.020687, 8.84319], - [-12.02057, 8.842592], - [-12.020874, 8.84193], - [-12.021085, 8.841797], - [-12.02155, 8.842399], - [-12.022568, 8.842442], - [-12.022949, 8.842316], - [-12.02353, 8.842834], - [-12.024151, 8.842772], - [-12.024994, 8.843107], - [-12.025368, 8.842492], - [-12.026102, 8.841928], - [-12.027508, 8.841325], - [-12.027638, 8.841073], - [-12.027389, 8.840782], - [-12.027573, 8.840216], - [-12.027463, 8.839942], - [-12.02714, 8.83983], - [-12.027098, 8.839284], - [-12.026716, 8.838453], - [-12.0271, 8.837043], - [-12.022471, 8.837898], - [-12.022369, 8.837494], - [-12.021917, 8.837119], - [-12.02192, 8.835816], - [-12.022059, 8.835425], - [-12.022091, 8.834756], - [-12.022254, 8.834489], - [-12.022561, 8.83441], - [-12.022725, 8.833838], - [-12.022217, 8.833555], - [-12.022129, 8.833229], - [-12.021119, 8.832525], - [-12.021322, 8.83233], - [-12.022093, 8.832401], - [-12.022141, 8.832146], - [-12.022637, 8.831712], - [-12.023571, 8.832053], - [-12.024123, 8.831998], - [-12.024318, 8.831975], - [-12.02596, 8.833243], - [-12.025967, 8.832639], - [-12.0262, 8.832296], - [-12.026121, 8.831909], - [-12.025554, 8.831038], - [-12.024667, 8.830807], - [-12.024779, 8.830567], - [-12.024407, 8.829077], - [-12.025502, 8.827705], - [-12.026249, 8.827429], - [-12.026143, 8.826955], - [-12.026592, 8.826661], - [-12.027795, 8.825916], - [-12.028227, 8.825809], - [-12.028345, 8.82534], - [-12.028107, 8.824804], - [-12.02778, 8.824505], - [-12.027429, 8.824293], - [-12.027098, 8.824412], - [-12.02663, 8.82408], - [-12.02663, 8.824078], - [-12.026744, 8.824025], - [-12.027006, 8.82373], - [-12.027262, 8.823505], - [-12.027601, 8.823983], - [-12.028034, 8.823691], - [-12.029051, 8.823317], - [-12.029679, 8.823258], - [-12.030041, 8.823411], - [-12.031062, 8.823354], - [-12.031493, 8.822695], - [-12.031583, 8.821917], - [-12.031981, 8.820997], - [-12.03222, 8.820911], - [-12.031846, 8.820006], - [-12.031987, 8.819656], - [-12.032506, 8.81942], - [-12.033081, 8.81898], - [-12.03347, 8.819571], - [-12.033919, 8.819216], - [-12.034538, 8.819072], - [-12.035302, 8.819275], - [-12.035607, 8.819529], - [-12.035862, 8.819649], - [-12.035891, 8.819553], - [-12.037751, 8.815246], - [-12.038237, 8.814153], - [-12.038918, 8.813568], - [-12.03892, 8.813569], - [-12.039089, 8.814729], - [-12.0393, 8.816187], - [-12.041109, 8.816974], - [-12.041252, 8.817045], - [-12.042195, 8.817367], - [-12.042875, 8.817402], - [-12.044254, 8.816734], - [-12.045827, 8.816284], - [-12.045999, 8.816048], - [-12.045393, 8.814259], - [-12.048749, 8.812917], - [-12.049583, 8.812083], - [-12.050417, 8.812082], - [-12.056249, 8.809582], - [-12.056249, 8.80625] - ] - ], - "type": "Polygon" - }, - "id": 333, - "properties": { - "cc:admin:id": ["8"], - "cc:oBld:total": 629, - "cc:pop:fifteen-to-twenty-four": 903.9315752650912, - "cc:pop:grid3-total": 5285.758949906287, - "cc:pop:kontur-total": 5208.598148894868, - "cc:pop:men": 2396.373807648333, - "cc:pop:sixty-plus": 285.1412048589192, - "cc:pop:total": 5048.9381418903495, - "cc:pop:under-five": 830.757219000047, - "cc:pop:women": 2652.5643342420162, - "cc:pop:women-fiften-to-forty-nine": 1241.2712056971047, - "cc:pop:wp-total": 2669.489882771359, - "cc:pop:wp-total-UN": 3076.877425986675, - "cc:id": "333", - "cc:Name": "Makump Bana MCHP", - "cc:site": [-12.0393, 8.8057], - "user:parentName": "Bombali Sebora", - "user:code": "OU_193211", - "user:orgUnitId": "E7IDb3nNiW7", - "user:level": "4", - "user:parentId": "KKkLOTpMXGV" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.671899, 8.3735], - [-12.6644, 8.374199], - [-12.658499, 8.374399], - [-12.6543, 8.3741], - [-12.6502, 8.3731], - [-12.646399, 8.370999], - [-12.639, 8.3659], - [-12.636399, 8.363499], - [-12.6329, 8.3593], - [-12.629999, 8.3572], - [-12.626099, 8.355999], - [-12.616299, 8.354499], - [-12.605, 8.3508], - [-12.5964, 8.3459], - [-12.589899, 8.343699], - [-12.5833, 8.3406], - [-12.578599, 8.337499], - [-12.5741, 8.3334], - [-12.570299, 8.328799], - [-12.568499, 8.325399], - [-12.567, 8.3193], - [-12.5671, 8.313999], - [-12.5696, 8.304099], - [-12.57, 8.299799], - [-12.570199, 8.2924], - [-12.564, 8.292999], - [-12.5597, 8.294099], - [-12.5523, 8.297699], - [-12.548999, 8.298299], - [-12.5309, 8.2953], - [-12.5271, 8.2935], - [-12.524001, 8.291486], - [-12.520417, 8.292084], - [-12.51875, 8.292916], - [-12.517917, 8.292084], - [-12.517082, 8.301249], - [-12.512083, 8.30375], - [-12.512083, 8.307917], - [-12.512809, 8.308642], - [-12.513741, 8.307578], - [-12.517082, 8.309583], - [-12.51875, 8.313749], - [-12.521249, 8.31375], - [-12.521249, 8.320416], - [-12.520416, 8.321249], - [-12.517917, 8.322084], - [-12.51625, 8.332083], - [-12.51875, 8.334584], - [-12.518749, 8.337084], - [-12.517083, 8.345416], - [-12.528749, 8.35125], - [-12.519583, 8.359584], - [-12.520417, 8.362917], - [-12.524582, 8.371249], - [-12.522083, 8.37375], - [-12.521249, 8.376249], - [-12.520099, 8.3774], - [-12.523038, 8.377401], - [-12.526944, 8.384166], - [-12.529998, 8.384167], - [-12.529583, 8.384584], - [-12.529583, 8.391249], - [-12.541249, 8.391249], - [-12.54125, 8.389584], - [-12.543749, 8.389583], - [-12.546227, 8.385867], - [-12.546185, 8.386157], - [-12.546444, 8.387571], - [-12.546444, 8.388343], - [-12.54627, 8.388804], - [-12.545316, 8.389753], - [-12.545597, 8.389752], - [-12.546505, 8.390193], - [-12.546749, 8.389952], - [-12.549487, 8.387357], - [-12.549582, 8.38732], - [-12.549583, 8.388749], - [-12.551249, 8.390417], - [-12.55125, 8.392083], - [-12.553749, 8.393749], - [-12.556249, 8.38875], - [-12.557916, 8.387917], - [-12.55875, 8.392916], - [-12.562082, 8.394583], - [-12.562916, 8.394583], - [-12.56375, 8.392917], - [-12.568749, 8.392917], - [-12.56875, 8.400416], - [-12.574506, 8.397538], - [-12.575633, 8.398277], - [-12.57625, 8.394584], - [-12.582082, 8.397084], - [-12.583749, 8.398749], - [-12.583375, 8.3995], - [-12.584471, 8.399319], - [-12.587271, 8.397922], - [-12.58986, 8.398155], - [-12.591847, 8.398853], - [-12.592482, 8.399215], - [-12.592917, 8.397916], - [-12.603749, 8.394584], - [-12.60407, 8.39875], - [-12.609585, 8.398751], - [-12.609586, 8.398752], - [-12.609123, 8.399493], - [-12.609137, 8.400185], - [-12.610662, 8.400152], - [-12.611623, 8.399768], - [-12.613302, 8.400814], - [-12.613654, 8.401912], - [-12.613688, 8.402779], - [-12.613189, 8.403719], - [-12.612878, 8.404745], - [-12.614039, 8.40552], - [-12.615295, 8.405836], - [-12.61566, 8.406019], - [-12.614583, 8.404583], - [-12.615417, 8.392917], - [-12.619582, 8.389584], - [-12.629521, 8.390347], - [-12.629203, 8.387291], - [-12.629236, 8.387193], - [-12.636607, 8.387807], - [-12.636999, 8.387407], - [-12.63702, 8.386838], - [-12.637253, 8.38659], - [-12.637046, 8.386049], - [-12.63695, 8.384791], - [-12.637785, 8.38437], - [-12.638949, 8.384972], - [-12.640494, 8.385115], - [-12.642264, 8.385726], - [-12.644105, 8.386519], - [-12.645209, 8.387943], - [-12.64875, 8.392083], - [-12.650417, 8.390417], - [-12.659582, 8.390417], - [-12.66242, 8.391835], - [-12.665999, 8.3876], - [-12.667999, 8.3838], - [-12.671899, 8.3735] - ] - ], - "type": "Polygon" - }, - "id": 334, - "properties": { - "cc:admin:id": ["149"], - "cc:oBld:total": 44, - "cc:pop:fifteen-to-twenty-four": 1102.432524232394, - "cc:pop:grid3-total": 6288.304338762895, - "cc:pop:kontur-total": 5867.975543043219, - "cc:pop:men": 2736.4860542352535, - "cc:pop:sixty-plus": 372.8081501969409, - "cc:pop:total": 5907.970479596414, - "cc:pop:under-five": 944.0753609207508, - "cc:pop:women": 3171.4844253611604, - "cc:pop:women-fiften-to-forty-nine": 1555.0149006118875, - "cc:pop:wp-total": 5318.511440993751, - "cc:pop:wp-total-UN": 6162.748928814397, - "cc:id": "334", - "cc:Name": "Makundu MCHP", - "cc:site": [-12.5722, 8.3622], - "user:parentName": "Yoni", - "user:code": "OU_268230", - "user:orgUnitId": "LWlh25dfvEA", - "user:level": "4", - "user:parentId": "NNE0YMCDZkO" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.795559, 8.83655], - [-12.780417, 8.831249], - [-12.780417, 8.830416], - [-12.783021, 8.825206], - [-12.783556, 8.825293], - [-12.784173, 8.825203], - [-12.785507, 8.824413], - [-12.78362, 8.824477], - [-12.781242, 8.823728], - [-12.780039, 8.823742], - [-12.779607, 8.823896], - [-12.778937, 8.82478], - [-12.779014, 8.825417], - [-12.777996, 8.826703], - [-12.77375, 8.827916], - [-12.773749, 8.825417], - [-12.770165, 8.818963], - [-12.770283, 8.818717], - [-12.760417, 8.816249], - [-12.762916, 8.807917], - [-12.759583, 8.80625], - [-12.75466, 8.809062], - [-12.754628, 8.809021], - [-12.754518, 8.808871], - [-12.754202, 8.80847], - [-12.754153, 8.808539], - [-12.750416, 8.807917], - [-12.740417, 8.807916], - [-12.740529, 8.806559], - [-12.740496, 8.806558], - [-12.737035, 8.800563], - [-12.736249, 8.802917], - [-12.732083, 8.806249], - [-12.730416, 8.806249], - [-12.72625, 8.805417], - [-12.726249, 8.804583], - [-12.725416, 8.803749], - [-12.719583, 8.79375], - [-12.717916, 8.793749], - [-12.714583, 8.790417], - [-12.714132, 8.788617], - [-12.713828, 8.788671], - [-12.712673, 8.789031], - [-12.710989, 8.790018], - [-12.708886, 8.790781], - [-12.708418, 8.791107], - [-12.706772, 8.791502], - [-12.705612, 8.791163], - [-12.703703, 8.790893], - [-12.702633, 8.79101], - [-12.700417, 8.791736], - [-12.700417, 8.790416], - [-12.701249, 8.785417], - [-12.69125, 8.78125], - [-12.689583, 8.787082], - [-12.685416, 8.787916], - [-12.683751, 8.787084], - [-12.683713, 8.78678], - [-12.678457, 8.783278], - [-12.677106, 8.78162], - [-12.676089, 8.781121], - [-12.673496, 8.779084], - [-12.67315, 8.778512], - [-12.672292, 8.777922], - [-12.671498, 8.777026], - [-12.670014, 8.775801], - [-12.667748, 8.775858], - [-12.667321, 8.775978], - [-12.667399, 8.7774], - [-12.667, 8.780099], - [-12.6655, 8.783399], - [-12.6622, 8.787499], - [-12.6609, 8.7898], - [-12.6609, 8.793099], - [-12.662799, 8.798], - [-12.662499, 8.801199], - [-12.6608, 8.804699], - [-12.659499, 8.8079], - [-12.6571, 8.812099], - [-12.655699, 8.8153], - [-12.6533, 8.819599], - [-12.651999, 8.8227], - [-12.65, 8.826299], - [-12.649199, 8.8297], - [-12.6489, 8.8333], - [-12.649, 8.837], - [-12.65, 8.8418], - [-12.654399, 8.849999], - [-12.6571, 8.8531], - [-12.66, 8.8554], - [-12.665399, 8.858299], - [-12.668099, 8.860299], - [-12.670599, 8.857], - [-12.6729, 8.853599], - [-12.677, 8.850999], - [-12.6792, 8.8505], - [-12.681599, 8.8513], - [-12.683599, 8.853099], - [-12.685299, 8.855099], - [-12.686299, 8.857199], - [-12.6868, 8.8594], - [-12.686999, 8.866699], - [-12.687299, 8.869399], - [-12.688, 8.871599], - [-12.689799, 8.874199], - [-12.6931, 8.8774], - [-12.697199, 8.879899], - [-12.6999, 8.881999], - [-12.7023, 8.8826], - [-12.705699, 8.882699], - [-12.709299, 8.881899], - [-12.7116, 8.880499], - [-12.7137, 8.878599], - [-12.720999, 8.8711], - [-12.7231, 8.8694], - [-12.7265, 8.868099], - [-12.737299, 8.867299], - [-12.740599, 8.8659], - [-12.7464, 8.861499], - [-12.7503, 8.859599], - [-12.754499, 8.8572], - [-12.758499, 8.8555], - [-12.7613, 8.853899], - [-12.7651, 8.852099], - [-12.7682, 8.849799], - [-12.773799, 8.8445], - [-12.7765, 8.8427], - [-12.7795, 8.841899], - [-12.785799, 8.8412], - [-12.787899, 8.8407], - [-12.794899, 8.8371], - [-12.795559, 8.83655] - ] - ], - "type": "Polygon" - }, - "id": 335, - "properties": { - "cc:admin:id": ["80"], - "cc:oBld:total": 106, - "cc:pop:fifteen-to-twenty-four": 1152.6789056699536, - "cc:pop:grid3-total": 5660.567542640789, - "cc:pop:kontur-total": 6110.946721959553, - "cc:pop:men": 2898.3195605716205, - "cc:pop:sixty-plus": 354.9555149878769, - "cc:pop:total": 6270.562302889229, - "cc:pop:under-five": 991.2812137358451, - "cc:pop:women": 3372.2427423176077, - "cc:pop:women-fiften-to-forty-nine": 1646.5774730929475, - "cc:pop:wp-total": 7343.959224777607, - "cc:pop:wp-total-UN": 8508.313945326541, - "cc:id": "335", - "cc:Name": "Malal MCHP", - "cc:site": [-12.7345, 8.8474], - "user:parentName": "Maforki", - "user:code": "OU_254947", - "user:orgUnitId": "FFU3PJ3pY7s", - "user:level": "4", - "user:parentId": "JdqfYTIFZXN" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.260296, 8.428255], - [-13.25639, 8.421489], - [-13.248578, 8.421488], - [-13.244671, 8.414723], - [-13.23686, 8.414722], - [-13.236734, 8.414506], - [-13.236523, 8.413456], - [-13.225558, 8.421488], - [-13.232107, 8.421489], - [-13.234582, 8.424583], - [-13.234582, 8.426249], - [-13.232917, 8.427917], - [-13.232917, 8.437916], - [-13.234449, 8.437611], - [-13.236859, 8.441786], - [-13.23592, 8.443413], - [-13.236546, 8.444262], - [-13.237317, 8.444614], - [-13.239779, 8.446697], - [-13.240592, 8.446918], - [-13.240849, 8.447004], - [-13.240865, 8.447053], - [-13.240861, 8.447113], - [-13.24051, 8.447734], - [-13.241165, 8.448167], - [-13.241451, 8.447839], - [-13.242416, 8.448726], - [-13.242861, 8.448494], - [-13.242874, 8.448343], - [-13.242876, 8.448342], - [-13.244217, 8.449704], - [-13.245619, 8.450009], - [-13.245908, 8.450746], - [-13.246011, 8.451668], - [-13.247372, 8.451937], - [-13.248399, 8.452217], - [-13.249395, 8.452466], - [-13.250015, 8.452878], - [-13.25053, 8.45371], - [-13.25042, 8.454631], - [-13.250735, 8.454883], - [-13.250959, 8.454528], - [-13.251304, 8.454411], - [-13.251435, 8.454047], - [-13.251589, 8.453437], - [-13.252236, 8.452698], - [-13.252626, 8.453413], - [-13.252964, 8.454318], - [-13.25328, 8.454311], - [-13.253648, 8.454726], - [-13.254355, 8.454523], - [-13.254919, 8.454699], - [-13.25497, 8.453232], - [-13.254676, 8.453172], - [-13.25461, 8.453085], - [-13.254777, 8.452317], - [-13.254779, 8.452316], - [-13.255155, 8.452527], - [-13.25578, 8.452431], - [-13.25615, 8.45229], - [-13.256534, 8.452362], - [-13.256589, 8.451752], - [-13.256816, 8.450538], - [-13.257022, 8.450553], - [-13.257153, 8.448754], - [-13.256734, 8.447971], - [-13.257538, 8.447549], - [-13.257936, 8.448272], - [-13.258446, 8.447981], - [-13.258782, 8.447778], - [-13.258721, 8.44713], - [-13.258439, 8.446854], - [-13.258484, 8.446619], - [-13.258479, 8.446612], - [-13.25864, 8.445644], - [-13.25847, 8.445436], - [-13.257254, 8.445153], - [-13.256468, 8.444981], - [-13.25609, 8.444633], - [-13.255446, 8.444766], - [-13.25527, 8.444604], - [-13.255317, 8.443953], - [-13.255883, 8.443761], - [-13.25549, 8.443264], - [-13.255407, 8.442577], - [-13.254603, 8.44233], - [-13.255459, 8.441068], - [-13.256294, 8.441438], - [-13.2565, 8.441572], - [-13.256981, 8.442748], - [-13.257488, 8.442422], - [-13.257565, 8.442038], - [-13.257928, 8.441737], - [-13.257813, 8.441564], - [-13.257896, 8.441437], - [-13.257941, 8.441361], - [-13.257976, 8.440849], - [-13.257764, 8.440269], - [-13.257271, 8.439649], - [-13.257025, 8.4389], - [-13.256202, 8.438305], - [-13.255778, 8.436904], - [-13.255258, 8.435301], - [-13.255033, 8.435021], - [-13.25639, 8.43502], - [-13.257385, 8.433295], - [-13.257083, 8.432084], - [-13.258086, 8.432083], - [-13.260296, 8.428255] - ] - ], - "type": "Polygon" - }, - "id": 336, - "properties": { - "cc:admin:id": ["26"], - "cc:oBld:total": 3114, - "cc:pop:fifteen-to-twenty-four": 13339.483458929335, - "cc:pop:grid3-total": 14761.921937352587, - "cc:pop:kontur-total": 69668.67288168309, - "cc:pop:men": 29170.450816245568, - "cc:pop:sixty-plus": 4542.152058321345, - "cc:pop:total": 58188.0232665576, - "cc:pop:under-five": 6728.897249117571, - "cc:pop:women": 29017.57245031204, - "cc:pop:women-fiften-to-forty-nine": 15554.51931947647, - "cc:pop:wp-total": 35804.97340228947, - "cc:pop:wp-total-UN": 41514.59472621525, - "cc:id": "336", - "cc:Name": "Malama MCHP", - "cc:site": [-13.2542, 8.4506], - "user:parentName": "Freetown", - "user:code": "OU_278327", - "user:orgUnitId": "kBrq7i12aan", - "user:level": "4", - "user:parentId": "C9uduqDZr9d" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.046152, 8.306916], - [-13.046121, 8.306298], - [-13.045598, 8.305461], - [-13.041685, 8.304861], - [-13.040417, 8.305294], - [-13.040416, 8.302084], - [-13.037243, 8.29891], - [-13.037622, 8.29692], - [-13.03507, 8.296737], - [-13.034583, 8.296249], - [-13.036147, 8.29312], - [-13.037642, 8.292796], - [-13.037434, 8.291862], - [-13.039582, 8.285416], - [-13.037917, 8.275417], - [-13.038749, 8.274583], - [-13.039582, 8.271249], - [-13.038975, 8.27052], - [-13.037972, 8.270943], - [-13.036614, 8.271656], - [-13.035427, 8.272198], - [-13.034442, 8.272639], - [-13.033526, 8.272402], - [-13.032815, 8.271453], - [-13.032169, 8.270944], - [-13.030914, 8.270739], - [-13.029693, 8.270367], - [-13.028641, 8.269926], - [-13.028064, 8.269518], - [-13.027215, 8.268975], - [-13.026335, 8.268433], - [-13.024908, 8.268398], - [-13.024163, 8.268026], - [-13.023722, 8.26738], - [-13.023822, 8.266194], - [-13.023959, 8.26565], - [-13.023959, 8.264904], - [-13.023857, 8.264226], - [-13.023721, 8.263886], - [-13.023043, 8.263445], - [-13.022805, 8.263276], - [-13.022262, 8.262766], - [-13.02121, 8.262087], - [-13.020395, 8.261341], - [-13.019582, 8.260629], - [-13.019378, 8.260052], - [-13.018631, 8.259034], - [-13.017444, 8.25839], - [-13.016325, 8.257542], - [-13.015238, 8.256863], - [-13.01378, 8.256727], - [-13.012727, 8.2571], - [-13.011709, 8.257608], - [-13.010488, 8.257269], - [-13.010183, 8.256387], - [-13.010387, 8.254962], - [-13.010489, 8.254216], - [-13.0111, 8.253334], - [-13.011812, 8.252926], - [-13.012693, 8.252417], - [-13.013236, 8.251705], - [-13.013644, 8.250653], - [-13.014119, 8.249499], - [-13.014391, 8.248787], - [-13.014696, 8.248244], - [-13.015748, 8.246683], - [-13.016188, 8.245327], - [-13.016426, 8.244241], - [-13.016595, 8.242985], - [-13.016698, 8.242543], - [-13.016771, 8.241527], - [-13.017419, 8.239581], - [-13.0175, 8.239204], - [-13.01739, 8.238636], - [-13.014574, 8.234024], - [-13.004885, 8.232378], - [-12.999993, 8.236516], - [-12.994018, 8.236988], - [-12.969205, 8.256153], - [-12.966201, 8.258472], - [-12.963182, 8.260806], - [-12.963132, 8.261229], - [-12.964024, 8.263893], - [-12.964696, 8.265432], - [-12.965827, 8.26611], - [-12.967916, 8.26628], - [-12.967917, 8.270416], - [-12.972575, 8.271082], - [-12.972571, 8.271088], - [-12.97257, 8.271602], - [-12.973473, 8.272123], - [-12.974106, 8.274702], - [-12.975136, 8.275222], - [-12.975134, 8.275995], - [-12.975907, 8.276258], - [-12.975902, 8.277545], - [-12.976935, 8.277551], - [-12.976928, 8.279096], - [-12.980726, 8.278227], - [-12.981161, 8.278661], - [-12.980977, 8.279286], - [-12.978992, 8.280138], - [-12.978984, 8.281683], - [-12.979362, 8.283747], - [-12.980772, 8.286071], - [-12.981548, 8.286205], - [-12.982059, 8.287109], - [-12.981148, 8.28865], - [-12.982215, 8.290289], - [-12.982797, 8.29072], - [-12.9829, 8.291265], - [-12.982256, 8.291911], - [-12.982545, 8.2923], - [-12.982082, 8.292917], - [-12.98125, 8.300416], - [-12.981927, 8.301093], - [-12.982628, 8.300612], - [-12.983103, 8.300129], - [-12.983375, 8.29954], - [-12.984747, 8.299902], - [-12.986206, 8.300799], - [-12.988682, 8.302348], - [-12.986027, 8.303748], - [-12.984793, 8.303899], - [-12.98375, 8.303672], - [-12.98375, 8.308749], - [-12.987917, 8.307084], - [-12.990416, 8.307084], - [-12.992083, 8.30875], - [-12.992917, 8.312083], - [-12.995416, 8.314583], - [-12.995417, 8.314711], - [-12.995995, 8.314768], - [-12.996352, 8.315229], - [-12.996844, 8.315448], - [-12.997906, 8.31534], - [-12.998749, 8.315563], - [-13.000043, 8.3154], - [-13.000542, 8.315566], - [-13.001471, 8.31529], - [-13.003344, 8.315835], - [-13.004762, 8.316871], - [-13.007258, 8.318658], - [-13.008506, 8.319428], - [-13.00972, 8.320002], - [-13.010417, 8.317917], - [-13.012083, 8.317084], - [-13.01375, 8.31875], - [-13.014583, 8.322916], - [-13.018749, 8.322917], - [-13.020015, 8.324181], - [-13.020891, 8.323879], - [-13.021547, 8.323352], - [-13.022133, 8.323338], - [-13.02292, 8.323195], - [-13.023797, 8.323288], - [-13.02411, 8.323249], - [-13.024297, 8.323118], - [-13.024935, 8.322866], - [-13.025524, 8.322664], - [-13.025549, 8.322695], - [-13.026109, 8.323478], - [-13.02754, 8.322751], - [-13.02786, 8.322636], - [-13.027398, 8.321222], - [-13.027588, 8.320843], - [-13.027371, 8.32044], - [-13.027371, 8.320438], - [-13.02794, 8.320628], - [-13.028479, 8.321222], - [-13.028429, 8.321288], - [-13.028337, 8.321572], - [-13.028367, 8.322621], - [-13.029869, 8.322685], - [-13.030301, 8.322621], - [-13.031854, 8.321982], - [-13.032741, 8.321609], - [-13.032223, 8.32084], - [-13.034373, 8.319874], - [-13.035186, 8.317708], - [-13.03547, 8.317096], - [-13.036321, 8.315726], - [-13.03698, 8.314647], - [-13.037677, 8.313065], - [-13.037757, 8.31296], - [-13.038826, 8.313638], - [-13.039127, 8.314051], - [-13.039842, 8.314411], - [-13.040296, 8.314225], - [-13.040664, 8.31431], - [-13.040056, 8.313772], - [-13.039791, 8.312548], - [-13.040505, 8.312357], - [-13.041546, 8.311685], - [-13.042305, 8.311453], - [-13.042867, 8.310466], - [-13.045186, 8.310037], - [-13.045476, 8.309612], - [-13.04514, 8.309151], - [-13.045328, 8.308414], - [-13.046152, 8.306916] - ] - ], - "type": "Polygon" - }, - "id": 337, - "properties": { - "cc:admin:id": ["112"], - "cc:oBld:total": 465, - "cc:pop:fifteen-to-twenty-four": 1666.1488619248748, - "cc:pop:grid3-total": 3664.4713227780308, - "cc:pop:kontur-total": 7565.384170441776, - "cc:pop:men": 3337.1673877632916, - "cc:pop:sixty-plus": 535.6281378063604, - "cc:pop:total": 6991.850356882479, - "cc:pop:under-five": 697.9127134539408, - "cc:pop:women": 3654.6829691191892, - "cc:pop:women-fiften-to-forty-nine": 1956.1593776330978, - "cc:pop:wp-total": 5452.23165189561, - "cc:pop:wp-total-UN": 6329.174441768516, - "cc:id": "337", - "cc:Name": "Malambay CHP", - "cc:site": [-13.0226, 8.314], - "user:parentName": "Rural Western Area", - "user:code": "OU_278373", - "user:orgUnitId": "ZoHdXy2ueVn", - "user:level": "4", - "user:parentId": "qtr8GGlm4gg" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.452082, 7.097083], - [-11.452082, 7.09625], - [-11.449583, 7.093749], - [-11.449582, 7.088426], - [-11.449202, 7.088425], - [-11.445297, 7.08166], - [-11.447691, 7.077512], - [-11.447395, 7.077084], - [-11.43875, 7.077083], - [-11.434583, 7.07375], - [-11.434583, 7.073294], - [-11.436693, 7.072583], - [-11.43375, 7.06375], - [-11.436249, 7.059584], - [-11.43125, 7.057083], - [-11.42125, 7.047084], - [-11.422916, 7.045416], - [-11.42125, 7.042917], - [-11.421249, 7.040679], - [-11.418929, 7.040678], - [-11.415024, 7.033913], - [-11.414752, 7.033913], - [-11.413749, 7.035416], - [-11.411031, 7.035961], - [-11.411062, 7.036378], - [-11.405417, 7.037084], - [-11.408749, 7.040417], - [-11.408749, 7.047896], - [-11.408332, 7.047961], - [-11.407093, 7.046846], - [-11.406286, 7.046741], - [-11.40545, 7.046254], - [-11.404937, 7.045678], - [-11.402888, 7.04535], - [-11.402416, 7.04502], - [-11.399844, 7.04502], - [-11.39875, 7.046911], - [-11.398749, 7.035417], - [-11.397083, 7.035417], - [-11.397082, 7.053749], - [-11.38625, 7.052084], - [-11.382917, 7.055417], - [-11.387917, 7.063749], - [-11.396249, 7.062917], - [-11.397083, 7.062084], - [-11.398749, 7.062084], - [-11.39875, 7.076249], - [-11.400417, 7.077084], - [-11.409821, 7.077807], - [-11.409808, 7.07793], - [-11.408555, 7.081031], - [-11.408101, 7.082182], - [-11.417083, 7.090416], - [-11.417917, 7.090416], - [-11.420416, 7.089583], - [-11.423749, 7.085417], - [-11.42375, 7.084937], - [-11.423751, 7.084936], - [-11.425765, 7.088425], - [-11.425579, 7.088749], - [-11.432917, 7.08875], - [-11.437082, 7.092083], - [-11.437083, 7.093749], - [-11.442916, 7.094584], - [-11.44625, 7.097083], - [-11.452082, 7.097083] - ] - ], - "type": "Polygon" - }, - "id": 338, - "properties": { - "cc:admin:id": ["127"], - "cc:oBld:total": 49, - "cc:pop:fifteen-to-twenty-four": 563.9364382006958, - "cc:pop:grid3-total": 2355.150589795205, - "cc:pop:kontur-total": 4299.429165762246, - "cc:pop:men": 1487.6991967901627, - "cc:pop:sixty-plus": 219.37766508778466, - "cc:pop:total": 3178.6414740212035, - "cc:pop:under-five": 533.5379048204046, - "cc:pop:women": 1690.9422772310415, - "cc:pop:women-fiften-to-forty-nine": 807.5506515476945, - "cc:pop:wp-total": 3120.826206637732, - "cc:pop:wp-total-UN": 3619.516963885439, - "cc:id": "338", - "cc:Name": "Malema 1 MCHP", - "cc:site": [-11.4081, 7.0705], - "user:parentName": "Soro-Gbeima", - "user:code": "OU_260416", - "user:orgUnitId": "dCvUVvKnhMe", - "user:level": "4", - "user:parentId": "d9iMR1MpuIO" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.984557, 8.656813], - [-11.982321, 8.65587], - [-11.978793, 8.654093], - [-11.977869, 8.656089], - [-11.977082, 8.658371], - [-11.977068, 8.658485], - [-11.977067, 8.658486], - [-11.976463, 8.656853], - [-11.976462, 8.656436], - [-11.975981, 8.65561], - [-11.976108, 8.654109], - [-11.975891, 8.652718], - [-11.972083, 8.652084], - [-11.970416, 8.653749], - [-11.967083, 8.651249], - [-11.965156, 8.647397], - [-11.964551, 8.647767], - [-11.964094, 8.648373], - [-11.963426, 8.649796], - [-11.962115, 8.652516], - [-11.957917, 8.650417], - [-11.957082, 8.645417], - [-11.953749, 8.646249], - [-11.950905, 8.643405], - [-11.951596, 8.642596], - [-11.951959, 8.641475], - [-11.950915, 8.64114], - [-11.950238, 8.64054], - [-11.949811, 8.640337], - [-11.950416, 8.637917], - [-11.949582, 8.63625], - [-11.944582, 8.636249], - [-11.943895, 8.633499], - [-11.943905, 8.633495], - [-11.945416, 8.622917], - [-11.941496, 8.622263], - [-11.939399, 8.6271], - [-11.937999, 8.632999], - [-11.9354, 8.636799], - [-11.9326, 8.639099], - [-11.930199, 8.6403], - [-11.9259, 8.641099], - [-11.9235, 8.641999], - [-11.9177, 8.645399], - [-11.9154, 8.648799], - [-11.9131, 8.651599], - [-11.909199, 8.654699], - [-11.905999, 8.6555], - [-11.902199, 8.6557], - [-11.8934, 8.655799], - [-11.891, 8.656299], - [-11.889099, 8.6571], - [-11.8845, 8.659999], - [-11.8812, 8.664099], - [-11.8787, 8.665899], - [-11.873099, 8.668], - [-11.8657, 8.677099], - [-11.862526, 8.683749], - [-11.862917, 8.68375], - [-11.863749, 8.684583], - [-11.86375, 8.686249], - [-11.869582, 8.690417], - [-11.872352, 8.69457], - [-11.872377, 8.69453], - [-11.872724, 8.692878], - [-11.872701, 8.692191], - [-11.877916, 8.689583], - [-11.881249, 8.689582], - [-11.884582, 8.687083], - [-11.889582, 8.687082], - [-11.890366, 8.6863], - [-11.894283, 8.689355], - [-11.896127, 8.690631], - [-11.901341, 8.691006], - [-11.901383, 8.6922], - [-11.901814, 8.69287], - [-11.90224, 8.694398], - [-11.90277, 8.695177], - [-11.903522, 8.697457], - [-11.90392, 8.697648], - [-11.904545, 8.697273], - [-11.905671, 8.697017], - [-11.906777, 8.696039], - [-11.907177, 8.696017], - [-11.907777, 8.695664], - [-11.907889, 8.695269], - [-11.908205, 8.695455], - [-11.908452, 8.695321], - [-11.908749, 8.69544], - [-11.90875, 8.697082], - [-11.914582, 8.699582], - [-11.916249, 8.698749], - [-11.917082, 8.695417], - [-11.919386, 8.693689], - [-11.92122, 8.695983], - [-11.922745, 8.698138], - [-11.923526, 8.699475], - [-11.923617, 8.699715], - [-11.925416, 8.697916], - [-11.924583, 8.69625], - [-11.926249, 8.695416], - [-11.92625, 8.69375], - [-11.931249, 8.694583], - [-11.932916, 8.695416], - [-11.932917, 8.696249], - [-11.937916, 8.698749], - [-11.940352, 8.698749], - [-11.942328, 8.695826], - [-11.943486, 8.691915], - [-11.944512, 8.690242], - [-11.945301, 8.689393], - [-11.945494, 8.68902], - [-11.945656, 8.687894], - [-11.946352, 8.688358], - [-11.947779, 8.688435], - [-11.950274, 8.687885], - [-11.952266, 8.688047], - [-11.952732, 8.688485], - [-11.954168, 8.689023], - [-11.955139, 8.689191], - [-11.956493, 8.688971], - [-11.956429, 8.688109], - [-11.957011, 8.687057], - [-11.957039, 8.685954], - [-11.963191, 8.684835], - [-11.964738, 8.68244], - [-11.967208, 8.678751], - [-11.969116, 8.67604], - [-11.972447, 8.672362], - [-11.97296, 8.671558], - [-11.9741, 8.669421], - [-11.976308, 8.666909], - [-11.976944, 8.664943], - [-11.97719, 8.664224], - [-11.977542, 8.663784], - [-11.979553, 8.662715], - [-11.979641, 8.662672], - [-11.980162, 8.662397], - [-11.980886, 8.661739], - [-11.983374, 8.658822], - [-11.984557, 8.656813] - ] - ], - "type": "Polygon" - }, - "id": 339, - "properties": { - "cc:admin:id": ["54"], - "cc:oBld:total": 955, - "cc:pop:fifteen-to-twenty-four": 1701.951550110174, - "cc:pop:grid3-total": 4580.667697852793, - "cc:pop:kontur-total": 9628.134328353364, - "cc:pop:men": 4338.511918227121, - "cc:pop:sixty-plus": 582.1658938651317, - "cc:pop:total": 9118.012308855778, - "cc:pop:under-five": 1486.7356538842175, - "cc:pop:women": 4779.500390628656, - "cc:pop:women-fiften-to-forty-nine": 2306.9738638894014, - "cc:pop:wp-total": 8128.019349404763, - "cc:pop:wp-total-UN": 9417.245293307991, - "cc:id": "339", - "cc:Name": "Malone MCHP", - "cc:site": [-11.9229, 8.6687], - "user:parentName": "Kholifa Rowalla", - "user:code": "OU_268157", - "user:orgUnitId": "F0uVXCVvOPO", - "user:level": "4", - "user:parentId": "PQZJPIpTepd" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.43083, 8.962878], - [-12.427484, 8.957083], - [-12.427082, 8.957082], - [-12.426307, 8.956464], - [-12.42125, 8.956463], - [-12.421249, 8.953196], - [-12.421242, 8.953203], - [-12.419328, 8.954514], - [-12.416723, 8.954443], - [-12.415358, 8.955458], - [-12.414138, 8.955723], - [-12.413165, 8.955532], - [-12.411472, 8.95553], - [-12.410361, 8.955906], - [-12.410348, 8.956248], - [-12.409543, 8.957603], - [-12.409443, 8.958516], - [-12.40918, 8.958931], - [-12.40883, 8.959148], - [-12.408054, 8.959238], - [-12.405559, 8.959731], - [-12.404523, 8.960806], - [-12.403745, 8.961289], - [-12.402813, 8.96344], - [-12.401554, 8.968194], - [-12.400969, 8.969016], - [-12.400475, 8.969313], - [-12.399488, 8.969262], - [-12.398562, 8.968857], - [-12.397712, 8.968885], - [-12.396562, 8.969671], - [-12.395526, 8.970127], - [-12.395041, 8.96928], - [-12.392793, 8.96893], - [-12.392158, 8.969052], - [-12.390509, 8.968947], - [-12.389003, 8.968668], - [-12.387233, 8.967645], - [-12.386494, 8.968531], - [-12.386251, 8.969203], - [-12.38625, 8.969202], - [-12.386249, 8.96875], - [-12.374583, 8.971249], - [-12.373749, 8.970417], - [-12.36875, 8.972082], - [-12.368749, 8.972917], - [-12.364583, 8.974582], - [-12.362917, 8.975416], - [-12.362916, 8.975999], - [-12.361824, 8.97454], - [-12.360431, 8.972982], - [-12.359498, 8.972236], - [-12.35762, 8.971103], - [-12.356102, 8.970639], - [-12.353653, 8.969591], - [-12.351122, 8.967851], - [-12.350654, 8.966907], - [-12.347916, 8.973749], - [-12.34375, 8.977916], - [-12.34125, 8.973749], - [-12.339583, 8.96625], - [-12.339582, 8.964534], - [-12.338075, 8.963964], - [-12.335399, 8.96363], - [-12.334162, 8.962865], - [-12.33333, 8.964279], - [-12.332828, 8.964936], - [-12.332623, 8.965566], - [-12.332531, 8.967015], - [-12.332185, 8.967772], - [-12.331936, 8.968916], - [-12.331934, 8.968916], - [-12.33181, 8.96875], - [-12.324583, 8.96875], - [-12.322917, 8.970417], - [-12.322082, 8.974581], - [-12.317916, 8.970417], - [-12.31375, 8.970417], - [-12.310699, 8.972857], - [-12.310226, 8.972685], - [-12.309666, 8.972754], - [-12.3093, 8.972514], - [-12.308355, 8.972806], - [-12.30664, 8.9716], - [-12.30549, 8.971391], - [-12.305112, 8.971478], - [-12.304059, 8.972309], - [-12.304129, 8.973374], - [-12.303461, 8.973713], - [-12.302823, 8.973738], - [-12.302595, 8.975021], - [-12.301439, 8.975972], - [-12.301058, 8.977016], - [-12.300982, 8.977091], - [-12.300209, 8.976511], - [-12.300605, 8.975665], - [-12.300599, 8.975383], - [-12.300426, 8.974971], - [-12.299576, 8.974139], - [-12.298695, 8.974097], - [-12.296997, 8.972752], - [-12.296373, 8.97304], - [-12.295416, 8.972083], - [-12.293703, 8.973225], - [-12.293591, 8.973141], - [-12.293395, 8.972677], - [-12.292916, 8.972917], - [-12.287917, 8.972916], - [-12.284582, 8.969583], - [-12.282917, 8.970416], - [-12.279582, 8.967917], - [-12.274583, 8.967916], - [-12.27125, 8.965417], - [-12.270416, 8.96875], - [-12.267565, 8.970888], - [-12.266673, 8.970839], - [-12.262916, 8.967083], - [-12.261249, 8.967082], - [-12.254689, 8.961981], - [-12.25425, 8.962842], - [-12.254249, 8.962842], - [-12.253945, 8.962142], - [-12.2533, 8.961427], - [-12.2533, 8.9623], - [-12.2541, 8.964799], - [-12.255899, 8.967399], - [-12.261199, 8.972599], - [-12.263399, 8.974199], - [-12.2668, 8.9755], - [-12.272999, 8.975999], - [-12.2752, 8.9765], - [-12.278, 8.978], - [-12.280799, 8.980499], - [-12.282599, 8.982699], - [-12.286299, 8.990199], - [-12.286699, 8.992599], - [-12.285999, 8.9951], - [-12.284499, 8.9972], - [-12.2822, 8.999599], - [-12.2809, 9.0021], - [-12.2818, 9.004899], - [-12.2842, 9.005699], - [-12.287499, 9.005599], - [-12.295299, 8.9975], - [-12.2975, 8.996], - [-12.2995, 8.9958], - [-12.301599, 8.9968], - [-12.303299, 8.998399], - [-12.304599, 9.0003], - [-12.304899, 9.002599], - [-12.3029, 9.005599], - [-12.2988, 9.008599], - [-12.295399, 9.0093], - [-12.2913, 9.0093], - [-12.291499, 9.014899], - [-12.291399, 9.0176], - [-12.290499, 9.020499], - [-12.288699, 9.022799], - [-12.285399, 9.0246], - [-12.2806, 9.026699], - [-12.2748, 9.0283], - [-12.2735, 9.0296], - [-12.2728, 9.0319], - [-12.273, 9.034399], - [-12.2748, 9.0376], - [-12.277799, 9.040599], - [-12.281, 9.0425], - [-12.2842, 9.042799], - [-12.2879, 9.042099], - [-12.2959, 9.037999], - [-12.2995, 9.034999], - [-12.306799, 9.0276], - [-12.309, 9.025899], - [-12.3179, 9.020999], - [-12.3241, 9.0185], - [-12.3266, 9.0187], - [-12.3287, 9.0201], - [-12.333299, 9.024399], - [-12.335999, 9.026599], - [-12.339899, 9.0286], - [-12.342599, 9.031299], - [-12.3455, 9.0361], - [-12.3482, 9.0393], - [-12.353999, 9.045699], - [-12.356399, 9.049199], - [-12.358599, 9.0519], - [-12.3593, 9.055], - [-12.359499, 9.058599], - [-12.359, 9.063599], - [-12.3564, 9.070799], - [-12.359699, 9.071899], - [-12.364899, 9.072899], - [-12.367299, 9.073699], - [-12.374199, 9.076999], - [-12.3772, 9.0791], - [-12.381099, 9.082899], - [-12.383999, 9.086299], - [-12.3863, 9.089599], - [-12.3891, 9.091099], - [-12.393799, 9.091499], - [-12.397899, 9.0912], - [-12.400399, 9.090399], - [-12.402999, 9.088499], - [-12.4056, 9.0848], - [-12.4114, 9.081099], - [-12.4139, 9.0805], - [-12.416599, 9.0811], - [-12.421799, 9.084099], - [-12.423399, 9.085799], - [-12.423679, 9.08632], - [-12.424582, 9.085416], - [-12.424583, 9.080514], - [-12.427223, 9.081789], - [-12.427757, 9.077517], - [-12.42492, 9.075835], - [-12.423841, 9.075325], - [-12.425416, 9.073749], - [-12.425417, 9.065417], - [-12.430416, 9.062916], - [-12.42375, 9.056249], - [-12.427916, 9.052916], - [-12.427917, 9.052082], - [-12.430416, 9.04125], - [-12.427083, 9.039583], - [-12.42625, 9.035417], - [-12.426199, 9.035382], - [-12.426255, 9.034924], - [-12.42551, 9.034923], - [-12.42375, 9.033749], - [-12.422083, 9.03125], - [-12.429582, 9.031249], - [-12.425417, 9.011251], - [-12.425418, 9.01125], - [-12.427082, 9.011249], - [-12.425417, 9.008749], - [-12.425417, 8.999583], - [-12.427327, 8.997671], - [-12.427229, 8.997501], - [-12.419417, 8.9975], - [-12.418124, 8.995261], - [-12.42125, 8.992916], - [-12.422082, 8.989583], - [-12.418848, 8.986347], - [-12.419713, 8.986346], - [-12.423619, 8.979581], - [-12.423137, 8.978744], - [-12.424093, 8.978965], - [-12.42483, 8.978887], - [-12.426816, 8.977784], - [-12.430166, 8.977163], - [-12.430371, 8.976993], - [-12.427083, 8.970416], - [-12.427083, 8.967083], - [-12.430416, 8.962917], - [-12.43083, 8.962878] - ] - ], - "type": "Polygon" - }, - "id": 340, - "properties": { - "cc:admin:id": ["73"], - "cc:oBld:total": 452, - "cc:pop:fifteen-to-twenty-four": 1424.677653578906, - "cc:pop:grid3-total": 6321.344278368194, - "cc:pop:kontur-total": 7880.762245846617, - "cc:pop:men": 3558.6694975594637, - "cc:pop:sixty-plus": 499.56689991691866, - "cc:pop:total": 7679.830359560688, - "cc:pop:under-five": 1179.5566965287494, - "cc:pop:women": 4121.160862001225, - "cc:pop:women-fiften-to-forty-nine": 1992.6191516219328, - "cc:pop:wp-total": 6661.213328118902, - "cc:pop:wp-total-UN": 7727.370446639399, - "cc:id": "340", - "cc:Name": "Mamaka MCHP", - "cc:site": [-12.3347, 9.0217], - "user:parentName": "Gbendembu Ngowahun", - "user:code": "OU_193279", - "user:orgUnitId": "d9uZeZ5fMUo", - "user:level": "4", - "user:parentId": "BXJdOLvUrZB" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - [-13.123999, 8.5643], - [-13.1229, 8.564299], - [-13.123499, 8.5624], - [-13.1224, 8.559899], - [-13.122399, 8.5588], - [-13.1199, 8.559299], - [-13.1196, 8.5601], - [-13.119899, 8.564299], - [-13.121499, 8.5643], - [-13.121, 8.565999], - [-13.1196, 8.565699], - [-13.118799, 8.564], - [-13.1165, 8.5638], - [-13.1149, 8.5651], - [-13.114899, 8.566499], - [-13.1138, 8.566499], - [-13.113199, 8.5618], - [-13.1126, 8.561799], - [-13.112099, 8.5601], - [-13.1115, 8.560099], - [-13.111499, 8.5571], - [-13.1088, 8.5574], - [-13.108799, 8.558499], - [-13.1065, 8.5588], - [-13.1046, 8.561799], - [-13.105099, 8.5635], - [-13.1049, 8.566499], - [-13.105999, 8.5668], - [-13.1065, 8.567899], - [-13.108799, 8.568199], - [-13.109, 8.568799], - [-13.110699, 8.5685], - [-13.110999, 8.569599], - [-13.109, 8.5713], - [-13.109599, 8.5732], - [-13.1076, 8.5751], - [-13.1071, 8.577399], - [-13.1057, 8.5788], - [-13.105399, 8.5801], - [-13.1035, 8.5821], - [-13.103199, 8.583999], - [-13.1024, 8.5854], - [-13.1024, 8.586799], - [-13.106, 8.5882], - [-13.1068, 8.5907], - [-13.1074, 8.594299], - [-13.111199, 8.593699], - [-13.112399, 8.592099], - [-13.1124, 8.5907], - [-13.113999, 8.588799], - [-13.114599, 8.5868], - [-13.115699, 8.586499], - [-13.115999, 8.5849], - [-13.116499, 8.584599], - [-13.1165, 8.582899], - [-13.117099, 8.5818], - [-13.118199, 8.581299], - [-13.1185, 8.5793], - [-13.119899, 8.577399], - [-13.1201, 8.575699], - [-13.121299, 8.5738], - [-13.122599, 8.573799], - [-13.1226, 8.5713], - [-13.123799, 8.570399], - [-13.124599, 8.5688], - [-13.124599, 8.567099], - [-13.123999, 8.5643] - ] - ], - [ - [ - [-13.125099, 8.5424], - [-13.124299, 8.541799], - [-13.123799, 8.5387], - [-13.122899, 8.5376], - [-13.121, 8.5376], - [-13.1201, 8.538199], - [-13.119299, 8.5404], - [-13.1179, 8.542899], - [-13.116, 8.5446], - [-13.1154, 8.545999], - [-13.115699, 8.548699], - [-13.1157, 8.549899], - [-13.116799, 8.549899], - [-13.1182, 8.5485], - [-13.119599, 8.547899], - [-13.1207, 8.5468], - [-13.123499, 8.546799], - [-13.124599, 8.545399], - [-13.125099, 8.5424] - ] - ], - [ - [ - [-13.165389, 8.58901], - [-13.164786, 8.587677], - [-13.16437, 8.586373], - [-13.164188, 8.585316], - [-13.164101, 8.584393], - [-13.164036, 8.58383], - [-13.163941, 8.582858], - [-13.163895, 8.582482], - [-13.163568, 8.578993], - [-13.163499, 8.578281], - [-13.163129, 8.574991], - [-13.161482, 8.571586], - [-13.161425, 8.570024], - [-13.161447, 8.569694], - [-13.161191, 8.569683], - [-13.160821, 8.569747], - [-13.160579, 8.569603], - [-13.158586, 8.569021], - [-13.157083, 8.568532], - [-13.157083, 8.566638], - [-13.157084, 8.566637], - [-13.157421, 8.567022], - [-13.157642, 8.566901], - [-13.157864, 8.56631], - [-13.157916, 8.566282], - [-13.157916, 8.565416], - [-13.156472, 8.562529], - [-13.156667, 8.562501], - [-13.152974, 8.558808], - [-13.152815, 8.55899], - [-13.152771, 8.559526], - [-13.152727, 8.559583], - [-13.149583, 8.559584], - [-13.148546, 8.559928], - [-13.14837, 8.559729], - [-13.148325, 8.559253], - [-13.148293, 8.558179], - [-13.148442, 8.557741], - [-13.149368, 8.556376], - [-13.149528, 8.555922], - [-13.149625, 8.555354], - [-13.150138, 8.553052], - [-13.150448, 8.552509], - [-13.150968, 8.551907], - [-13.152619, 8.550395], - [-13.153055, 8.549762], - [-13.153217, 8.549474], - [-13.15325, 8.549228], - [-13.153195, 8.548844], - [-13.153063, 8.548636], - [-13.152874, 8.548417], - [-13.152718, 8.548307], - [-13.152463, 8.548246], - [-13.151861, 8.54811], - [-13.151434, 8.548105], - [-13.150923, 8.548242], - [-13.150326, 8.548252], - [-13.149882, 8.548202], - [-13.148966, 8.548071], - [-13.14822, 8.547748], - [-13.146874, 8.547278], - [-13.145652, 8.546829], - [-13.144854, 8.546495], - [-13.143383, 8.545375], - [-13.142541, 8.544873], - [-13.142107, 8.544816], - [-13.14166, 8.544834], - [-13.141287, 8.545006], - [-13.140785, 8.545415], - [-13.140358, 8.545985], - [-13.139783, 8.547068], - [-13.139526, 8.547563], - [-13.137916, 8.545416], - [-13.134702, 8.542203], - [-13.13486, 8.5418], - [-13.1343, 8.5418], - [-13.1338, 8.544299], - [-13.1324, 8.546], - [-13.1326, 8.547599], - [-13.133799, 8.547099], - [-13.135399, 8.5454], - [-13.136729, 8.545868], - [-13.137099, 8.546], - [-13.136799, 8.546499], - [-13.1354, 8.5463], - [-13.1326, 8.548999], - [-13.1315, 8.549], - [-13.1301, 8.549899], - [-13.1282, 8.5524], - [-13.128199, 8.554299], - [-13.1276, 8.556], - [-13.128199, 8.561299], - [-13.1282, 8.565099], - [-13.128799, 8.5663], - [-13.1282, 8.568499], - [-13.128199, 8.570099], - [-13.125699, 8.5735], - [-13.1238, 8.577399], - [-13.121799, 8.579], - [-13.119, 8.5832], - [-13.1185, 8.584899], - [-13.1174, 8.5857], - [-13.117207, 8.587696], - [-13.117267, 8.587631], - [-13.117543, 8.587974], - [-13.117818, 8.588385], - [-13.118082, 8.588805], - [-13.118357, 8.589252], - [-13.118555, 8.589745], - [-13.118696, 8.590175], - [-13.118714, 8.590527], - [-13.118738, 8.591193], - [-13.118671, 8.59183], - [-13.11842, 8.59263], - [-13.118253, 8.593353], - [-13.117825, 8.594547], - [-13.1175, 8.595396], - [-13.117057, 8.596246], - [-13.116672, 8.596821], - [-13.116347, 8.597294], - [-13.11615, 8.597652], - [-13.116046, 8.597992], - [-13.116034, 8.598217], - [-13.116114, 8.598325], - [-13.116255, 8.598422], - [-13.116445, 8.598466], - [-13.116769, 8.598465], - [-13.117126, 8.598283], - [-13.117499, 8.597975], - [-13.118462, 8.597034], - [-13.119314, 8.596088], - [-13.119909, 8.59527], - [-13.119965, 8.595123], - [-13.120039, 8.594862], - [-13.120143, 8.594712], - [-13.12029, 8.594633], - [-13.120449, 8.594603], - [-13.120602, 8.594638], - [-13.120775, 8.594753], - [-13.121468, 8.594529], - [-13.122252, 8.594457], - [-13.123045, 8.594548], - [-13.1234, 8.594657], - [-13.123975, 8.595083], - [-13.124726, 8.595687], - [-13.125333, 8.596142], - [-13.125917, 8.59664], - [-13.126518, 8.596962], - [-13.127517, 8.597452], - [-13.128498, 8.597955], - [-13.129069, 8.598265], - [-13.129333, 8.598532], - [-13.129602, 8.59886], - [-13.129701, 8.599284], - [-13.1297, 8.599715], - [-13.129651, 8.60029], - [-13.129332, 8.600855], - [-13.128823, 8.601456], - [-13.128229, 8.602055], - [-13.127671, 8.602377], - [-13.127469, 8.602608], - [-13.127377, 8.602934], - [-13.127493, 8.603183], - [-13.127726, 8.603432], - [-13.128008, 8.603578], - [-13.128745, 8.603772], - [-13.129462, 8.603845], - [-13.130308, 8.603862], - [-13.131419, 8.60382], - [-13.132449, 8.603747], - [-13.134135, 8.603615], - [-13.134828, 8.603542], - [-13.135276, 8.603535], - [-13.135405, 8.603468], - [-13.135448, 8.603299], - [-13.135362, 8.602966], - [-13.135086, 8.602698], - [-13.134547, 8.602244], - [-13.134154, 8.601889], - [-13.134144, 8.598522], - [-13.134498, 8.598325], - [-13.135062, 8.598246], - [-13.135632, 8.598235], - [-13.136154, 8.598308], - [-13.136657, 8.598478], - [-13.137454, 8.598956], - [-13.137864, 8.599162], - [-13.138723, 8.599489], - [-13.139319, 8.599763], - [-13.139993, 8.600011], - [-13.140797, 8.600194], - [-13.141851, 8.600496], - [-13.142545, 8.60083], - [-13.143238, 8.60106], - [-13.14395, 8.601189], - [-13.144711, 8.601412], - [-13.145091, 8.601376], - [-13.145403, 8.601274], - [-13.145673, 8.601195], - [-13.146409, 8.601025], - [-13.146973, 8.600855], - [-13.147758, 8.60071], - [-13.148194, 8.600655], - [-13.148463, 8.600649], - [-13.148917, 8.600702], - [-13.148758, 8.600539], - [-13.148151, 8.600175], - [-13.147384, 8.599781], - [-13.146526, 8.5994], - [-13.146128, 8.599218], - [-13.145777, 8.599144], - [-13.145243, 8.599041], - [-13.144967, 8.59898], - [-13.144363, 8.59884], - [-13.14402, 8.598716], - [-13.143846, 8.598626], - [-13.143539, 8.598438], - [-13.143331, 8.598267], - [-13.143201, 8.598129], - [-13.143097, 8.597958], - [-13.143002, 8.597807], - [-13.142963, 8.597572], - [-13.142963, 8.597375], - [-13.143036, 8.59707], - [-13.143162, 8.596856], - [-13.143422, 8.596645], - [-13.143665, 8.59652], - [-13.14399, 8.59647], - [-13.14415, 8.596482], - [-13.144367, 8.596311], - [-13.144432, 8.596298], - [-13.144515, 8.596443], - [-13.144789, 8.596585], - [-13.145118, 8.59659], - [-13.145842, 8.596623], - [-13.146467, 8.596589], - [-13.147429, 8.596491], - [-13.14815, 8.596435], - [-13.149031, 8.596359], - [-13.149628, 8.596328], - [-13.149875, 8.596336], - [-13.150206, 8.596478], - [-13.150568, 8.59669], - [-13.150682, 8.596807], - [-13.150811, 8.596844], - [-13.150997, 8.59676], - [-13.151058, 8.59666], - [-13.151075, 8.596385], - [-13.151049, 8.596081], - [-13.150946, 8.595486], - [-13.150763, 8.594807], - [-13.15059, 8.594457], - [-13.15048, 8.594283], - [-13.150386, 8.593595], - [-13.150421, 8.593478], - [-13.150578, 8.593324], - [-13.150742, 8.593221], - [-13.151024, 8.593036], - [-13.151471, 8.592793], - [-13.151661, 8.592814], - [-13.151717, 8.592972], - [-13.151669, 8.593123], - [-13.15164, 8.593294], - [-13.151703, 8.593621], - [-13.151702, 8.593621], - [-13.151591, 8.593469], - [-13.151514, 8.593246], - [-13.151514, 8.593106], - [-13.151561, 8.592959], - [-13.151549, 8.592909], - [-13.151471, 8.592917], - [-13.151335, 8.593024], - [-13.151007, 8.593182], - [-13.150729, 8.593324], - [-13.150612, 8.59341], - [-13.150507, 8.593548], - [-13.150469, 8.593693], - [-13.150469, 8.593881], - [-13.150491, 8.594054], - [-13.150572, 8.594263], - [-13.150815, 8.59461], - [-13.150937, 8.594911], - [-13.151036, 8.595421], - [-13.151145, 8.595871], - [-13.151205, 8.596338], - [-13.151198, 8.596634], - [-13.15114, 8.596858], - [-13.151128, 8.59732], - [-13.151214, 8.597861], - [-13.151331, 8.598311], - [-13.151392, 8.598504], - [-13.151584, 8.598727], - [-13.151731, 8.598792], - [-13.15222, 8.598821], - [-13.15265, 8.598814], - [-13.152854, 8.598775], - [-13.153132, 8.59865], - [-13.153665, 8.598325], - [-13.153986, 8.598149], - [-13.154242, 8.598038], - [-13.154477, 8.597998], - [-13.154879, 8.597978], - [-13.15533, 8.598058], - [-13.155755, 8.59817], - [-13.156064, 8.598362], - [-13.156337, 8.598436], - [-13.156663, 8.59847], - [-13.157231, 8.598444], - [-13.157807, 8.598406], - [-13.158207, 8.598411], - [-13.159724, 8.598701], - [-13.1604, 8.598972], - [-13.159104, 8.598151], - [-13.158948, 8.597692], - [-13.159476, 8.596591], - [-13.160019, 8.596203], - [-13.159966, 8.596016], - [-13.158983, 8.596192], - [-13.158982, 8.596191], - [-13.159074, 8.595813], - [-13.159571, 8.595106], - [-13.159669, 8.594569], - [-13.159598, 8.594555], - [-13.159597, 8.594554], - [-13.159993, 8.593763], - [-13.159994, 8.593762], - [-13.160082, 8.593833], - [-13.161269, 8.594796], - [-13.161798, 8.594488], - [-13.163594, 8.594595], - [-13.163542, 8.593572], - [-13.164146, 8.592418], - [-13.165237, 8.590417], - [-13.164171, 8.59024], - [-13.163913, 8.590226], - [-13.163644, 8.589444], - [-13.164657, 8.589529], - [-13.165389, 8.58901] - ] - ], - [ - [ - [-13.131799, 8.5371], - [-13.1307, 8.5363], - [-13.1293, 8.537899], - [-13.129599, 8.538999], - [-13.1296, 8.539899], - [-13.131499, 8.539899], - [-13.131799, 8.5371] - ] - ] - ], - "type": "MultiPolygon" - }, - "id": 341, - "properties": { - "cc:admin:id": ["44"], - "cc:oBld:total": 502, - "cc:pop:fifteen-to-twenty-four": 985.8259705923604, - "cc:pop:grid3-total": 2154.748785553579, - "cc:pop:kontur-total": 5386.133756619829, - "cc:pop:men": 2649.2701642717243, - "cc:pop:sixty-plus": 322.1368396241098, - "cc:pop:total": 5539.764625888995, - "cc:pop:under-five": 904.8108414888957, - "cc:pop:women": 2890.494461617272, - "cc:pop:women-fiften-to-forty-nine": 1375.4781896669936, - "cc:pop:wp-total": 3936.269539207663, - "cc:pop:wp-total-UN": 4560.630627465694, - "cc:id": "341", - "cc:Name": "Mamankie MCHP", - "cc:site": [-13.145, 8.5681], - "user:parentName": "Kaffu Bullom", - "user:code": "OU_255012", - "user:orgUnitId": "eP4F9eB76B0", - "user:level": "4", - "user:parentId": "vn9KJsLyP5f" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.196249, 8.517083], - [-12.190416, 8.50625], - [-12.187917, 8.506249], - [-12.186675, 8.505008], - [-12.186671, 8.504861], - [-12.186967, 8.503915], - [-12.187584, 8.502712], - [-12.18787, 8.500109], - [-12.187784, 8.498948], - [-12.188451, 8.496668], - [-12.188975, 8.495867], - [-12.188749, 8.495416], - [-12.187916, 8.492083], - [-12.187082, 8.482917], - [-12.180417, 8.488749], - [-12.177917, 8.488749], - [-12.177917, 8.48375], - [-12.178288, 8.483191], - [-12.180799, 8.48201], - [-12.181893, 8.480029], - [-12.187498, 8.476564], - [-12.188336, 8.476119], - [-12.186249, 8.47125], - [-12.185402, 8.470826], - [-12.184926, 8.471421], - [-12.184582, 8.47125], - [-12.175417, 8.472083], - [-12.175416, 8.462084], - [-12.172916, 8.462083], - [-12.172456, 8.46024], - [-12.172457, 8.460239], - [-12.172572, 8.460219], - [-12.169582, 8.45125], - [-12.168749, 8.451249], - [-12.156251, 8.44875], - [-12.161249, 8.442083], - [-12.161249, 8.441249], - [-12.158749, 8.437084], - [-12.154583, 8.43625], - [-12.15125, 8.437083], - [-12.147916, 8.435417], - [-12.13875, 8.435417], - [-12.13625, 8.437917], - [-12.13625, 8.448011], - [-12.137999, 8.448034], - [-12.138, 8.448036], - [-12.13678, 8.449124], - [-12.136646, 8.44985], - [-12.137349, 8.456404], - [-12.137239, 8.456826], - [-12.136903, 8.457026], - [-12.136883, 8.456685], - [-12.136559, 8.456115], - [-12.136262, 8.455757], - [-12.135833, 8.455594], - [-12.131868, 8.455443], - [-12.13125, 8.457916], - [-12.132082, 8.459584], - [-12.124583, 8.46375], - [-12.124583, 8.470416], - [-12.128749, 8.472917], - [-12.12875, 8.478749], - [-12.127917, 8.482083], - [-12.114583, 8.482917], - [-12.115417, 8.486249], - [-12.120416, 8.492917], - [-12.119582, 8.494583], - [-12.117318, 8.496281], - [-12.116292, 8.495771], - [-12.11375, 8.499583], - [-12.111488, 8.499584], - [-12.111823, 8.504547], - [-12.111528, 8.506686], - [-12.1122, 8.5067], - [-12.116, 8.5073], - [-12.122299, 8.509799], - [-12.1282, 8.5113], - [-12.1336, 8.5135], - [-12.1374, 8.514], - [-12.144099, 8.514499], - [-12.146999, 8.514999], - [-12.151499, 8.516899], - [-12.1544, 8.5175], - [-12.1574, 8.5178], - [-12.164599, 8.517899], - [-12.168499, 8.518499], - [-12.1749, 8.5209], - [-12.1799, 8.5215], - [-12.187599, 8.521599], - [-12.192336, 8.522493], - [-12.194582, 8.51875], - [-12.196249, 8.517083] - ] - ], - "type": "Polygon" - }, - "id": 342, - "properties": { - "cc:admin:id": ["149"], - "cc:oBld:total": 15, - "cc:pop:fifteen-to-twenty-four": 642.037581702414, - "cc:pop:grid3-total": 2728.5844657047946, - "cc:pop:kontur-total": 3492.6810480006907, - "cc:pop:men": 1590.9123623086614, - "cc:pop:sixty-plus": 213.99281873722418, - "cc:pop:total": 3439.8339314596506, - "cc:pop:under-five": 550.3795046716049, - "cc:pop:women": 1848.9215691509885, - "cc:pop:women-fiften-to-forty-nine": 908.7290408048966, - "cc:pop:wp-total": 3576.4855947011993, - "cc:pop:wp-total-UN": 4145.613363799878, - "cc:id": "342", - "cc:Name": "Mamanso Kafla MCHP", - "cc:site": [-12.1414, 8.4932], - "user:parentName": "Kholifa Mabang", - "user:code": "OU_268168", - "user:orgUnitId": "T1lTKu6zkHN", - "user:level": "4", - "user:parentId": "fwxkctgmffZ" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.70731, 8.690808], - [-11.707299, 8.689799], - [-11.7068, 8.685], - [-11.705599, 8.681699], - [-11.704099, 8.679999], - [-11.6957, 8.6754], - [-11.692, 8.6755], - [-11.687999, 8.6773], - [-11.6854, 8.677799], - [-11.6828, 8.677899], - [-11.6806, 8.677299], - [-11.677899, 8.675499], - [-11.6753, 8.6728], - [-11.673899, 8.670399], - [-11.6731, 8.666699], - [-11.673199, 8.6561], - [-11.673099, 8.653299], - [-11.672599, 8.6507], - [-11.6712, 8.6488], - [-11.6659, 8.6456], - [-11.6616, 8.6437], - [-11.659, 8.6417], - [-11.656399, 8.638999], - [-11.654899, 8.636799], - [-11.653399, 8.633799], - [-11.650799, 8.631], - [-11.647299, 8.629799], - [-11.6403, 8.6289], - [-11.635299, 8.6275], - [-11.6332, 8.6279], - [-11.6293, 8.630099], - [-11.627799, 8.6318], - [-11.625199, 8.6367], - [-11.6244, 8.639999], - [-11.624, 8.645399], - [-11.6234, 8.647899], - [-11.6192, 8.656599], - [-11.616099, 8.6605], - [-11.610699, 8.6653], - [-11.608699, 8.6663], - [-11.604, 8.667299], - [-11.6015, 8.668099], - [-11.5937, 8.672099], - [-11.5883, 8.676399], - [-11.583, 8.679399], - [-11.5779, 8.683299], - [-11.575599, 8.684699], - [-11.572999, 8.6853], - [-11.567699, 8.6859], - [-11.565099, 8.6865], - [-11.559699, 8.6886], - [-11.5527, 8.689499], - [-11.549299, 8.6904], - [-11.5445, 8.692799], - [-11.5411, 8.694699], - [-11.536099, 8.6989], - [-11.528399, 8.7033], - [-11.5261, 8.703599], - [-11.5241, 8.7023], - [-11.5235, 8.6993], - [-11.5244, 8.696199], - [-11.5264, 8.692699], - [-11.5282, 8.688799], - [-11.530299, 8.6853], - [-11.531232, 8.683386], - [-11.52625, 8.68125], - [-11.524582, 8.682083], - [-11.515417, 8.682917], - [-11.515416, 8.685417], - [-11.510417, 8.69125], - [-11.510416, 8.692916], - [-11.50979, 8.692916], - [-11.509708, 8.692406], - [-11.509262, 8.691795], - [-11.509247, 8.691585], - [-11.507916, 8.692916], - [-11.50625, 8.69375], - [-11.504582, 8.697082], - [-11.502083, 8.697917], - [-11.501249, 8.699582], - [-11.497083, 8.700417], - [-11.496249, 8.702917], - [-11.495416, 8.70625], - [-11.491249, 8.708749], - [-11.48625, 8.70875], - [-11.48375, 8.71625], - [-11.483749, 8.720416], - [-11.478605, 8.720417], - [-11.478423, 8.72241], - [-11.477916, 8.722917], - [-11.476249, 8.728749], - [-11.47375, 8.729582], - [-11.472917, 8.729583], - [-11.465417, 8.727917], - [-11.465417, 8.72875], - [-11.467916, 8.73375], - [-11.46625, 8.738749], - [-11.467083, 8.740417], - [-11.467916, 8.743749], - [-11.464583, 8.744582], - [-11.461879, 8.744582], - [-11.461266, 8.743571], - [-11.460667, 8.742894], - [-11.460465, 8.742083], - [-11.45875, 8.742083], - [-11.458749, 8.74375], - [-11.453175, 8.748628], - [-11.453174, 8.750103], - [-11.452541, 8.753009], - [-11.447395, 8.753406], - [-11.444067, 8.759166], - [-11.4375, 8.759167], - [-11.439583, 8.76125], - [-11.441249, 8.767082], - [-11.431731, 8.771477], - [-11.432043, 8.771752], - [-11.432671, 8.77286], - [-11.432963, 8.774172], - [-11.433427, 8.774811], - [-11.434012, 8.775064], - [-11.434825, 8.775153], - [-11.434833, 8.776672], - [-11.434172, 8.777751], - [-11.433522, 8.778304], - [-11.433441, 8.778876], - [-11.432425, 8.780307], - [-11.431799, 8.780489], - [-11.429518, 8.781778], - [-11.428667, 8.781956], - [-11.426871, 8.781895], - [-11.425728, 8.78168], - [-11.425605, 8.781706], - [-11.424583, 8.783749], - [-11.432081, 8.791249], - [-11.42409, 8.792704], - [-11.4244, 8.7932], - [-11.429399, 8.800299], - [-11.432099, 8.807099], - [-11.4338, 8.8198], - [-11.4355, 8.8257], - [-11.4385, 8.8322], - [-11.4426, 8.8433], - [-11.4442, 8.849], - [-11.445599, 8.858399], - [-11.447499, 8.863999], - [-11.457399, 8.883199], - [-11.4596, 8.8888], - [-11.4644, 8.9033], - [-11.466799, 8.908599], - [-11.4691, 8.911599], - [-11.473, 8.914299], - [-11.476599, 8.914899], - [-11.4811, 8.913499], - [-11.486399, 8.9125], - [-11.489599, 8.910899], - [-11.4916, 8.907599], - [-11.492199, 8.9048], - [-11.492499, 8.9], - [-11.493, 8.897699], - [-11.495299, 8.8933], - [-11.496799, 8.8914], - [-11.4993, 8.890299], - [-11.502299, 8.89], - [-11.5053, 8.89], - [-11.508399, 8.8904], - [-11.510999, 8.891599], - [-11.513399, 8.8937], - [-11.515799, 8.898099], - [-11.518499, 8.900799], - [-11.526, 8.904599], - [-11.529699, 8.904299], - [-11.532399, 8.901999], - [-11.535999, 8.8946], - [-11.5377, 8.890699], - [-11.5397, 8.887799], - [-11.545799, 8.8811], - [-11.547299, 8.878799], - [-11.5478, 8.876299], - [-11.548099, 8.8681], - [-11.548699, 8.8646], - [-11.552999, 8.856], - [-11.557199, 8.8506], - [-11.5602, 8.845299], - [-11.564699, 8.8395], - [-11.569599, 8.829699], - [-11.569899, 8.8248], - [-11.5694, 8.8208], - [-11.566999, 8.815499], - [-11.566299, 8.812999], - [-11.5656, 8.8076], - [-11.5648, 8.8046], - [-11.5665, 8.801299], - [-11.569, 8.796999], - [-11.5725, 8.789499], - [-11.5732, 8.785799], - [-11.573299, 8.7771], - [-11.573899, 8.7721], - [-11.5763, 8.765799], - [-11.576799, 8.760599], - [-11.5767, 8.7486], - [-11.577599, 8.745], - [-11.5788, 8.743099], - [-11.582699, 8.7381], - [-11.5852, 8.733499], - [-11.5881, 8.729899], - [-11.594099, 8.7237], - [-11.597099, 8.7198], - [-11.5999, 8.7132], - [-11.6029, 8.7126], - [-11.606599, 8.714299], - [-11.6101, 8.7151], - [-11.6159, 8.7154], - [-11.623699, 8.7154], - [-11.627599, 8.7152], - [-11.631199, 8.7147], - [-11.6362, 8.7127], - [-11.639899, 8.7127], - [-11.647199, 8.715899], - [-11.651499, 8.718399], - [-11.6547, 8.7198], - [-11.658699, 8.721899], - [-11.660799, 8.722499], - [-11.6662, 8.722599], - [-11.6688, 8.722199], - [-11.6745, 8.72], - [-11.677599, 8.720299], - [-11.6796, 8.7213], - [-11.6845, 8.7252], - [-11.6884, 8.726299], - [-11.6933, 8.725999], - [-11.697299, 8.724599], - [-11.6979, 8.722199], - [-11.6992, 8.720099], - [-11.7024, 8.715799], - [-11.7063, 8.708299], - [-11.7069, 8.706199], - [-11.7073, 8.702799], - [-11.707399, 8.698799], - [-11.70731, 8.690808] - ] - ], - "type": "Polygon" - }, - "id": 343, - "properties": { - "cc:admin:id": ["68"], - "cc:oBld:total": 126, - "cc:pop:fifteen-to-twenty-four": 2644.25397201483, - "cc:pop:grid3-total": 19786.224700493192, - "cc:pop:kontur-total": 14315.624531270494, - "cc:pop:men": 6790.302115679746, - "cc:pop:sixty-plus": 921.80166561089, - "cc:pop:total": 14429.163371726901, - "cc:pop:under-five": 2330.7357685216393, - "cc:pop:women": 7638.861256047154, - "cc:pop:women-fiften-to-forty-nine": 3727.1294674350506, - "cc:pop:wp-total": 17497.56640300319, - "cc:pop:wp-total-UN": 20276.282667454743, - "cc:id": "343", - "cc:Name": "Mamanso Sanka CHP", - "cc:site": [-11.549, 8.7192], - "user:parentName": "Kunike", - "user:code": "OU_268181", - "user:orgUnitId": "YFlZA0y0Vi6", - "user:level": "4", - "user:parentId": "l0ccv2yzfF3" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.075416, 8.874582], - [-13.07375, 8.870417], - [-13.073749, 8.869583], - [-13.067082, 8.864583], - [-13.062917, 8.865416], - [-13.062082, 8.864583], - [-13.058593, 8.865165], - [-13.059043, 8.867071], - [-13.060851, 8.867854], - [-13.061362, 8.869274], - [-13.057984, 8.871574], - [-13.057982, 8.871573], - [-13.057748, 8.869125], - [-13.052083, 8.871249], - [-13.05125, 8.872917], - [-13.051249, 8.873749], - [-13.048852, 8.873749], - [-13.049041, 8.872301], - [-13.048396, 8.871654], - [-13.046792, 8.870959], - [-13.043669, 8.867835], - [-13.043622, 8.867917], - [-13.042082, 8.867916], - [-13.038621, 8.86734], - [-13.036452, 8.869127], - [-13.035277, 8.870826], - [-13.034961, 8.871689], - [-13.034948, 8.871736], - [-13.034942, 8.871739], - [-13.034843, 8.872113], - [-13.034012, 8.873227], - [-13.03337, 8.873741], - [-13.031765, 8.875223], - [-13.03169, 8.875255], - [-13.029782, 8.871332], - [-13.029777, 8.871326], - [-13.029452, 8.871046], - [-13.027198, 8.870647], - [-13.026635, 8.870556], - [-13.026259, 8.870541], - [-13.026574, 8.872874], - [-13.026695, 8.873789], - [-13.026862, 8.874968], - [-13.02704, 8.876247], - [-13.023381, 8.876115], - [-13.023311, 8.876115], - [-13.020485, 8.876356], - [-13.021554, 8.884318], - [-13.018553, 8.883881], - [-13.015682, 8.883466], - [-13.015596, 8.883464], - [-13.015581, 8.88366], - [-13.00762, 8.883291], - [-13.010416, 8.889582], - [-13.010416, 8.890417], - [-13.008749, 8.892916], - [-13.005417, 8.892917], - [-13.002916, 8.89625], - [-12.999583, 8.897082], - [-12.998796, 8.896296], - [-12.998552, 8.896996], - [-12.998245, 8.896502], - [-12.997082, 8.897082], - [-12.990417, 8.89375], - [-12.987917, 8.896249], - [-12.987083, 8.89625], - [-12.986029, 8.898357], - [-12.986192, 8.898496], - [-12.986319, 8.898833], - [-12.982917, 8.902917], - [-12.982916, 8.905417], - [-12.979583, 8.911249], - [-12.975417, 8.91125], - [-12.972917, 8.912083], - [-12.972916, 8.917326], - [-12.972915, 8.917327], - [-12.971727, 8.915362], - [-12.971724, 8.918153], - [-12.969583, 8.917083], - [-12.968749, 8.917917], - [-12.96402, 8.920281], - [-12.96374, 8.920231], - [-12.961321, 8.920999], - [-12.961272, 8.921046], - [-12.95875, 8.920417], - [-12.95625, 8.920417], - [-12.955416, 8.922082], - [-12.954516, 8.921858], - [-12.954432, 8.92178], - [-12.954288, 8.921801], - [-12.952083, 8.92125], - [-12.94625, 8.924582], - [-12.94571, 8.924314], - [-12.943964, 8.925286], - [-12.941723, 8.926467], - [-12.939615, 8.926695], - [-12.93918, 8.926611], - [-12.938133, 8.927737], - [-12.936894, 8.927338], - [-12.936449, 8.926889], - [-12.935973, 8.926755], - [-12.934952, 8.927081], - [-12.934403, 8.927554], - [-12.932472, 8.928421], - [-12.93143, 8.928373], - [-12.929322, 8.930052], - [-12.92837, 8.931717], - [-12.928469, 8.932044], - [-12.928098, 8.932892], - [-12.926453, 8.932102], - [-12.925794, 8.931995], - [-12.924749, 8.932343], - [-12.924255, 8.932759], - [-12.923984, 8.933518], - [-12.924023, 8.934235], - [-12.923798, 8.934861], - [-12.923287, 8.933099], - [-12.92261, 8.932529], - [-12.921703, 8.932172], - [-12.921887, 8.931674], - [-12.924434, 8.931981], - [-12.924521, 8.930806], - [-12.924991, 8.930014], - [-12.926165, 8.929869], - [-12.928131, 8.929253], - [-12.92898, 8.928788], - [-12.929391, 8.927949], - [-12.929431, 8.927223], - [-12.920417, 8.927917], - [-12.919582, 8.929583], - [-12.91875, 8.93375], - [-12.919414, 8.938399], - [-12.955, 8.938399], - [-12.9593, 8.937899], - [-12.965299, 8.9355], - [-12.9687, 8.9349], - [-12.9721, 8.9355], - [-12.979699, 8.938999], - [-12.983999, 8.941399], - [-12.9873, 8.9427], - [-12.993399, 8.945599], - [-13.003, 8.940899], - [-13.009299, 8.9361], - [-13.014, 8.933299], - [-13.020399, 8.9287], - [-13.024599, 8.9275], - [-13.0303, 8.9273], - [-13.049, 8.9273], - [-13.054799, 8.927599], - [-13.058099, 8.928199], - [-13.062675, 8.930089], - [-13.063987, 8.929971], - [-13.065847, 8.929555], - [-13.064793, 8.927296], - [-13.063099, 8.928127], - [-13.060469, 8.928903], - [-13.058356, 8.928084], - [-13.056242, 8.926143], - [-13.05538, 8.924935], - [-13.055381, 8.924934], - [-13.057838, 8.923728], - [-13.06008, 8.923469], - [-13.062366, 8.924848], - [-13.064064, 8.925734], - [-13.060961, 8.919085], - [-13.060962, 8.919084], - [-13.061653, 8.918959], - [-13.06251, 8.919559], - [-13.062916, 8.918749], - [-13.06125, 8.91125], - [-13.060416, 8.910417], - [-13.05875, 8.910416], - [-13.058749, 8.90625], - [-13.057916, 8.906249], - [-13.057082, 8.90375], - [-13.050419, 8.904582], - [-13.050418, 8.904581], - [-13.053979, 8.900307], - [-13.056036, 8.901665], - [-13.057057, 8.90215], - [-13.058273, 8.901476], - [-13.059536, 8.900712], - [-13.061151, 8.899973], - [-13.061982, 8.899079], - [-13.063105, 8.898546], - [-13.063761, 8.897259], - [-13.06393, 8.897093], - [-13.064243, 8.896114], - [-13.063008, 8.895142], - [-13.063749, 8.892916], - [-13.062916, 8.890417], - [-13.060726, 8.888226], - [-13.060745, 8.888079], - [-13.060578, 8.888077], - [-13.060417, 8.887916], - [-13.060417, 8.886249], - [-13.062916, 8.883749], - [-13.062917, 8.88125], - [-13.071249, 8.881249], - [-13.072082, 8.880416], - [-13.072083, 8.879582], - [-13.075416, 8.874582] - ] - ], - "type": "Polygon" - }, - "id": 344, - "properties": { - "cc:admin:id": ["89"], - "cc:oBld:total": 238, - "cc:pop:fifteen-to-twenty-four": 3347.0233321234587, - "cc:pop:grid3-total": 13468.809203096063, - "cc:pop:kontur-total": 19063.66345940156, - "cc:pop:men": 8756.645386006583, - "cc:pop:sixty-plus": 1068.6585249981463, - "cc:pop:total": 18593.932662704883, - "cc:pop:under-five": 2843.930844683729, - "cc:pop:women": 9837.2872766983, - "cc:pop:women-fiften-to-forty-nine": 4771.402588836736, - "cc:pop:wp-total": 13504.576891595358, - "cc:pop:wp-total-UN": 15648.850111933802, - "cc:id": "344", - "cc:Name": "Mambolo CHC", - "cc:site": [-13.0288, 8.907], - "user:parentName": "Mambolo", - "user:code": "OU_211269", - "user:orgUnitId": "RAsstekPRco", - "user:level": "4", - "user:parentId": "xGMGhjA3y6J" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.710284, 7.76375], - [-11.708749, 7.763749], - [-11.70125, 7.762084], - [-11.698606, 7.758778], - [-11.697164, 7.761275], - [-11.701069, 7.768041], - [-11.697164, 7.774806], - [-11.694359, 7.774807], - [-11.69375, 7.775417], - [-11.693749, 7.777084], - [-11.691249, 7.779584], - [-11.688173, 7.780096], - [-11.684386, 7.778969], - [-11.683021, 7.778646], - [-11.684582, 7.781249], - [-11.684582, 7.782083], - [-11.683749, 7.782084], - [-11.672917, 7.787084], - [-11.672083, 7.792916], - [-11.672916, 7.79375], - [-11.667917, 7.799584], - [-11.669582, 7.804583], - [-11.668534, 7.804584], - [-11.668617, 7.80479], - [-11.657917, 7.807084], - [-11.658749, 7.815415], - [-11.655416, 7.812917], - [-11.65125, 7.812084], - [-11.648749, 7.823749], - [-11.644583, 7.822917], - [-11.644246, 7.823591], - [-11.644528, 7.823804], - [-11.642917, 7.825416], - [-11.64125, 7.825417], - [-11.63875, 7.828749], - [-11.636249, 7.82875], - [-11.632917, 7.829584], - [-11.632083, 7.830417], - [-11.632083, 7.835416], - [-11.63375, 7.835417], - [-11.637082, 7.83875], - [-11.640811, 7.848442], - [-11.643026, 7.849104], - [-11.643025, 7.849106], - [-11.640469, 7.849106], - [-11.636563, 7.855872], - [-11.640468, 7.862637], - [-11.639388, 7.864509], - [-11.643465, 7.862675], - [-11.64443, 7.861985], - [-11.644768, 7.861339], - [-11.645326, 7.860886], - [-11.646864, 7.860111], - [-11.649507, 7.859608], - [-11.651661, 7.858991], - [-11.652367, 7.858972], - [-11.652863, 7.85874], - [-11.654451, 7.859154], - [-11.65515, 7.859136], - [-11.657641, 7.858576], - [-11.657911, 7.858563], - [-11.659157, 7.858253], - [-11.659834, 7.858002], - [-11.660817, 7.857889], - [-11.665787, 7.858972], - [-11.668983, 7.85794], - [-11.669949, 7.857827], - [-11.67204, 7.858034], - [-11.673331, 7.858348], - [-11.673933, 7.858293], - [-11.674373, 7.857984], - [-11.67511, 7.857908], - [-11.677112, 7.856839], - [-11.68054, 7.856322], - [-11.680777, 7.856128], - [-11.683632, 7.855482], - [-11.684871, 7.85488], - [-11.686408, 7.854995], - [-11.687574, 7.854901], - [-11.689631, 7.854081], - [-11.691355, 7.852611], - [-11.692256, 7.852005], - [-11.692651, 7.851985], - [-11.693327, 7.852693], - [-11.693589, 7.853278], - [-11.693774, 7.854285], - [-11.693668, 7.85478], - [-11.694049, 7.855562], - [-11.694704, 7.856303], - [-11.694996, 7.856079], - [-11.69555, 7.856812], - [-11.695599, 7.856799], - [-11.697299, 7.851299], - [-11.697299, 7.8487], - [-11.696499, 7.846399], - [-11.691199, 7.836199], - [-11.690499, 7.833599], - [-11.6903, 7.8309], - [-11.690699, 7.8269], - [-11.692999, 7.8212], - [-11.693004, 7.821183], - [-11.6936, 7.818699], - [-11.694099, 7.8134], - [-11.6945, 7.8112], - [-11.6962, 7.808399], - [-11.702099, 7.802], - [-11.704199, 7.799], - [-11.7076, 7.792299], - [-11.708399, 7.7897], - [-11.708599, 7.7869], - [-11.7084, 7.769999], - [-11.7089, 7.766499], - [-11.709799, 7.7645], - [-11.710284, 7.76375] - ] - ], - "type": "Polygon" - }, - "id": 346, - "properties": { - "cc:admin:id": ["40"], - "cc:oBld:total": 962, - "cc:pop:fifteen-to-twenty-four": 1607.1899170972922, - "cc:pop:grid3-total": 4318.839406707224, - "cc:pop:kontur-total": 9127.250726730179, - "cc:pop:men": 4429.252665467628, - "cc:pop:sixty-plus": 679.1451533366778, - "cc:pop:total": 9157.629596514595, - "cc:pop:under-five": 1479.1589405128002, - "cc:pop:women": 4728.37693104696, - "cc:pop:women-fiften-to-forty-nine": 2205.234834269809, - "cc:pop:wp-total": 6074.385830339229, - "cc:pop:wp-total-UN": 7041.996908131765, - "cc:id": "346", - "cc:Name": "Mamboma MCHP", - "cc:site": [-11.6574, 7.8392], - "user:parentName": "Jaiama Bongor", - "user:code": "OU_828", - "user:orgUnitId": "w3vRmEz3J7t", - "user:level": "4", - "user:parentId": "daJPPxtIrQn" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.74625, 8.608749], - [-12.746249, 8.607917], - [-12.742917, 8.607083], - [-12.742082, 8.60125], - [-12.740016, 8.597118], - [-12.737799, 8.5978], - [-12.7333, 8.598199], - [-12.726, 8.5972], - [-12.7242, 8.600899], - [-12.7224, 8.603999], - [-12.7207, 8.610399], - [-12.7195, 8.612699], - [-12.717199, 8.6154], - [-12.710099, 8.6224], - [-12.707199, 8.6246], - [-12.6997, 8.628299], - [-12.697299, 8.6291], - [-12.692199, 8.6302], - [-12.6878, 8.632399], - [-12.684699, 8.6337], - [-12.6804, 8.636099], - [-12.677299, 8.6375], - [-12.675099, 8.6391], - [-12.669099, 8.6446], - [-12.666199, 8.6468], - [-12.661299, 8.6495], - [-12.658199, 8.652], - [-12.6535, 8.656399], - [-12.6506, 8.658499], - [-12.647499, 8.6599], - [-12.643199, 8.6623], - [-12.639299, 8.6639], - [-12.632, 8.6678], - [-12.6293, 8.670799], - [-12.627, 8.675199], - [-12.6254, 8.677099], - [-12.622299, 8.6799], - [-12.6185, 8.6826], - [-12.6149, 8.688499], - [-12.612499, 8.6935], - [-12.610099, 8.6964], - [-12.607599, 8.6986], - [-12.603799, 8.7013], - [-12.601099, 8.705], - [-12.5965, 8.710899], - [-12.593906, 8.715888], - [-12.593907, 8.715891], - [-12.595443, 8.71588], - [-12.596061, 8.715354], - [-12.596899, 8.715731], - [-12.597598, 8.716716], - [-12.598185, 8.717113], - [-12.599249, 8.71832], - [-12.600651, 8.721589], - [-12.601577, 8.722702], - [-12.602022, 8.723141], - [-12.603142, 8.723737], - [-12.604421, 8.724114], - [-12.605437, 8.724164], - [-12.604147, 8.73078], - [-12.608426, 8.733597], - [-12.609134, 8.734255], - [-12.609631, 8.73518], - [-12.61147, 8.736026], - [-12.612036, 8.736533], - [-12.612594, 8.737666], - [-12.613758, 8.738331], - [-12.613705, 8.73876], - [-12.613958, 8.739329], - [-12.614357, 8.741621], - [-12.614939, 8.742507], - [-12.615706, 8.744518], - [-12.616001, 8.744879], - [-12.616174, 8.745705], - [-12.615443, 8.747667], - [-12.615006, 8.74796], - [-12.614248, 8.749053], - [-12.613183, 8.750636], - [-12.613161, 8.750669], - [-12.612419, 8.752165], - [-12.612305, 8.753971], - [-12.612917, 8.754583], - [-12.618749, 8.754583], - [-12.61875, 8.756919], - [-12.61899, 8.756971], - [-12.619582, 8.758749], - [-12.616066, 8.764379], - [-12.616762, 8.765551], - [-12.617931, 8.766397], - [-12.618515, 8.768351], - [-12.620132, 8.770128], - [-12.619081, 8.769884], - [-12.617945, 8.769946], - [-12.61756, 8.770325], - [-12.617024, 8.770354], - [-12.616818, 8.770654], - [-12.6218, 8.7719], - [-12.6266, 8.7741], - [-12.628799, 8.774499], - [-12.631, 8.774499], - [-12.6336, 8.773699], - [-12.636199, 8.7719], - [-12.641999, 8.7662], - [-12.644799, 8.7641], - [-12.6506, 8.7614], - [-12.652799, 8.7613], - [-12.6605, 8.7647], - [-12.664399, 8.768099], - [-12.666299, 8.7707], - [-12.667199, 8.773799], - [-12.667321, 8.775977], - [-12.667748, 8.775858], - [-12.670014, 8.775801], - [-12.670843, 8.776485], - [-12.670416, 8.775417], - [-12.66875, 8.774582], - [-12.668749, 8.773916], - [-12.670466, 8.771243], - [-12.670384, 8.769765], - [-12.670124, 8.76923], - [-12.669929, 8.767698], - [-12.670242, 8.766721], - [-12.670509, 8.76682], - [-12.670556, 8.767782], - [-12.67146, 8.768356], - [-12.672666, 8.768814], - [-12.674405, 8.768699], - [-12.675403, 8.768011], - [-12.677119, 8.766339], - [-12.678006, 8.766488], - [-12.677487, 8.766005], - [-12.679582, 8.760417], - [-12.676241, 8.757074], - [-12.677954, 8.754417], - [-12.67826, 8.75324], - [-12.67938, 8.751842], - [-12.68039, 8.75112], - [-12.680706, 8.750737], - [-12.680905, 8.748326], - [-12.680804, 8.747731], - [-12.681338, 8.745241], - [-12.681376, 8.74516], - [-12.677917, 8.744582], - [-12.67922, 8.739368], - [-12.679202, 8.739364], - [-12.679201, 8.739363], - [-12.681249, 8.734582], - [-12.68125, 8.732083], - [-12.686249, 8.730416], - [-12.685417, 8.727083], - [-12.685417, 8.725333], - [-12.685418, 8.725332], - [-12.686947, 8.725775], - [-12.685269, 8.724687], - [-12.685361, 8.724099], - [-12.684491, 8.723841], - [-12.685765, 8.722568], - [-12.684432, 8.723046], - [-12.684146, 8.722905], - [-12.684145, 8.722904], - [-12.685465, 8.72177], - [-12.686439, 8.721343], - [-12.686827, 8.72089], - [-12.687229, 8.72001], - [-12.687351, 8.718761], - [-12.687634, 8.718522], - [-12.687635, 8.718523], - [-12.687392, 8.720847], - [-12.688123, 8.721649], - [-12.691065, 8.721429], - [-12.693208, 8.720747], - [-12.693874, 8.720797], - [-12.694464, 8.721137], - [-12.695282, 8.721294], - [-12.697296, 8.720623], - [-12.697372, 8.720587], - [-12.698276, 8.719694], - [-12.699188, 8.719323], - [-12.699736, 8.719412], - [-12.699879, 8.719112], - [-12.700325, 8.719112], - [-12.70059, 8.719382], - [-12.701411, 8.719022], - [-12.701918, 8.719101], - [-12.702365, 8.718499], - [-12.702315, 8.718019], - [-12.702618, 8.717095], - [-12.702557, 8.716484], - [-12.701696, 8.71511], - [-12.70119, 8.714601], - [-12.699996, 8.714953], - [-12.698524, 8.714894], - [-12.69762, 8.715143], - [-12.697062, 8.715074], - [-12.696727, 8.714532], - [-12.696148, 8.714481], - [-12.695297, 8.71382], - [-12.694525, 8.711945], - [-12.693673, 8.711594], - [-12.692253, 8.712346], - [-12.691694, 8.713098], - [-12.69071, 8.71395], - [-12.689797, 8.714652], - [-12.689494, 8.714632], - [-12.689494, 8.714631], - [-12.691389, 8.712846], - [-12.691612, 8.712365], - [-12.691319, 8.711683], - [-12.691461, 8.711302], - [-12.691876, 8.710991], - [-12.692028, 8.7105], - [-12.691208, 8.709567], - [-12.691176, 8.709076], - [-12.690344, 8.707822], - [-12.689483, 8.707691], - [-12.68934, 8.70693], - [-12.689341, 8.706929], - [-12.690161, 8.707311], - [-12.691176, 8.708413], - [-12.691481, 8.708473], - [-12.692485, 8.708443], - [-12.693206, 8.707572], - [-12.693207, 8.707571], - [-12.693398, 8.707842], - [-12.693246, 8.708182], - [-12.692678, 8.708804], - [-12.692111, 8.709016], - [-12.6923, 8.709803], - [-12.692912, 8.710903], - [-12.694276, 8.711007], - [-12.695924, 8.712035], - [-12.695745, 8.712355], - [-12.695868, 8.712859], - [-12.696275, 8.712945], - [-12.696624, 8.713252], - [-12.696587, 8.713533], - [-12.697752, 8.714469], - [-12.699561, 8.714469], - [-12.701653, 8.714189], - [-12.703605, 8.717184], - [-12.704939, 8.717558], - [-12.705357, 8.717129], - [-12.705819, 8.717162], - [-12.703873, 8.713683], - [-12.702784, 8.711742], - [-12.701655, 8.709747], - [-12.700586, 8.707849], - [-12.71108, 8.701908], - [-12.710404, 8.7007], - [-12.707727, 8.69597], - [-12.710085, 8.69465], - [-12.71102, 8.69624], - [-12.711618, 8.697274], - [-12.712082, 8.695417], - [-12.704583, 8.689583], - [-12.704583, 8.684583], - [-12.707916, 8.682916], - [-12.712189, 8.678643], - [-12.712347, 8.678689], - [-12.716532, 8.681676], - [-12.718749, 8.68248], - [-12.71875, 8.677083], - [-12.720416, 8.675416], - [-12.721249, 8.672083], - [-12.721754, 8.671578], - [-12.722739, 8.669871], - [-12.72112, 8.667065], - [-12.722371, 8.666207], - [-12.726457, 8.663994], - [-12.726624, 8.664041], - [-12.723914, 8.659281], - [-12.720697, 8.653587], - [-12.720822, 8.653314], - [-12.721636, 8.65199], - [-12.722264, 8.651692], - [-12.722774, 8.65089], - [-12.72271, 8.650025], - [-12.723577, 8.647503], - [-12.723943, 8.646054], - [-12.724039, 8.645229], - [-12.725289, 8.644976], - [-12.725588, 8.644404], - [-12.727432, 8.643998], - [-12.727545, 8.643413], - [-12.728422, 8.64274], - [-12.729645, 8.641439], - [-12.7296, 8.64051], - [-12.72976, 8.640139], - [-12.730647, 8.639381], - [-12.731164, 8.638665], - [-12.729276, 8.637697], - [-12.729582, 8.637083], - [-12.727917, 8.629585], - [-12.727918, 8.629584], - [-12.732083, 8.631249], - [-12.734582, 8.630416], - [-12.73625, 8.62625], - [-12.740416, 8.622083], - [-12.738837, 8.617346], - [-12.739105, 8.617022], - [-12.739288, 8.616887], - [-12.739583, 8.615417], - [-12.741249, 8.614583], - [-12.742083, 8.611249], - [-12.744582, 8.60875], - [-12.74625, 8.608749] - ] - ], - "type": "Polygon" - }, - "id": 347, - "properties": { - "cc:admin:id": ["80"], - "cc:oBld:total": 793, - "cc:pop:fifteen-to-twenty-four": 2868.0789542530615, - "cc:pop:grid3-total": 18768.05379675041, - "cc:pop:kontur-total": 15708.071547169688, - "cc:pop:men": 7199.166438862831, - "cc:pop:sixty-plus": 906.3011988251379, - "cc:pop:total": 15539.807546424057, - "cc:pop:under-five": 2466.636897875492, - "cc:pop:women": 8340.641107561232, - "cc:pop:women-fiften-to-forty-nine": 4067.0927907707555, - "cc:pop:wp-total": 15436.565950602275, - "cc:pop:wp-total-UN": 17881.967889108997, - "cc:id": "347", - "cc:Name": "Mamusa MCHP", - "cc:site": [-12.6215, 8.7006], - "user:parentName": "Marampa", - "user:code": "OU_255058", - "user:orgUnitId": "FRX63UWciyO", - "user:level": "4", - "user:parentId": "RWvG1aFrr0r" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.056499, 8.657399], - [-13.0562, 8.6532], - [-13.0557, 8.6512], - [-13.0543, 8.650399], - [-13.054299, 8.6468], - [-13.052599, 8.6451], - [-13.0513, 8.6451], - [-13.047599, 8.648499], - [-13.045399, 8.649299], - [-13.0443, 8.6493], - [-13.043499, 8.650099], - [-13.0404, 8.6499], - [-13.040099, 8.6493], - [-13.038499, 8.6496], - [-13.0354, 8.6496], - [-13.033799, 8.6501], - [-13.0307, 8.652099], - [-13.0299, 8.653699], - [-13.028999, 8.654], - [-13.0282, 8.6565], - [-13.028199, 8.6579], - [-13.0271, 8.6596], - [-13.027099, 8.661299], - [-13.0265, 8.6621], - [-13.026499, 8.663999], - [-13.0254, 8.663499], - [-13.0254, 8.6607], - [-13.025999, 8.660399], - [-13.026, 8.6554], - [-13.026799, 8.654899], - [-13.027099, 8.6529], - [-13.026499, 8.6526], - [-13.0224, 8.6526], - [-13.022099, 8.653499], - [-13.021, 8.6535], - [-13.0185, 8.654899], - [-13.0174, 8.6549], - [-13.016799, 8.655699], - [-13.0154, 8.655699], - [-13.0154, 8.654899], - [-13.0179, 8.6532], - [-13.020099, 8.652899], - [-13.021499, 8.6518], - [-13.023499, 8.651499], - [-13.025099, 8.6504], - [-13.0265, 8.650399], - [-13.028499, 8.648999], - [-13.0301, 8.6457], - [-13.031499, 8.6451], - [-13.033499, 8.6451], - [-13.0351, 8.6457], - [-13.0385, 8.6462], - [-13.0424, 8.646199], - [-13.046799, 8.645699], - [-13.0482, 8.643799], - [-13.049299, 8.6413], - [-13.050699, 8.640399], - [-13.0513, 8.6393], - [-13.053799, 8.637099], - [-13.054, 8.6338], - [-13.0551, 8.630999], - [-13.055099, 8.630835], - [-13.055047, 8.630921], - [-13.055011, 8.630799], - [-13.054862, 8.630605], - [-13.054623, 8.630303], - [-13.054533, 8.630191], - [-13.054463, 8.629987], - [-13.054389, 8.629651], - [-13.054297, 8.629442], - [-13.054208, 8.629311], - [-13.054134, 8.629278], - [-13.054008, 8.62935], - [-13.053931, 8.629441], - [-13.053874, 8.62959], - [-13.053762, 8.629799], - [-13.053585, 8.630001], - [-13.053229, 8.630113], - [-13.052661, 8.630214], - [-13.052412, 8.630233], - [-13.052259, 8.63021], - [-13.052202, 8.630053], - [-13.052199, 8.629957], - [-13.052222, 8.629855], - [-13.052299, 8.629753], - [-13.052507, 8.629579], - [-13.052508, 8.62958], - [-13.052395, 8.629721], - [-13.052285, 8.62984], - [-13.052275, 8.629988], - [-13.052295, 8.630082], - [-13.052328, 8.630141], - [-13.052521, 8.630171], - [-13.052771, 8.630115], - [-13.053202, 8.630044], - [-13.053505, 8.629964], - [-13.053631, 8.62986], - [-13.053721, 8.62974], - [-13.053792, 8.629494], - [-13.053901, 8.629251], - [-13.053967, 8.629149], - [-13.054091, 8.629132], - [-13.054394, 8.629112], - [-13.054513, 8.628501], - [-13.054639, 8.627755], - [-13.054635, 8.627132], - [-13.054556, 8.625864], - [-13.054382, 8.62515], - [-13.054202, 8.62473], - [-13.05405, 8.624162], - [-13.053973, 8.623734], - [-13.053955, 8.623353], - [-13.053868, 8.623118], - [-13.053776, 8.623013], - [-13.053669, 8.623018], - [-13.053559, 8.623062], - [-13.053291, 8.623291], - [-13.052952, 8.623597], - [-13.052681, 8.624045], - [-13.052204, 8.624505], - [-13.051464, 8.625044], - [-13.051192, 8.625173], - [-13.050858, 8.625306], - [-13.050443, 8.625484], - [-13.050194, 8.625572], - [-13.04992, 8.625566], - [-13.049606, 8.625637], - [-13.049291, 8.625739], - [-13.049126, 8.625831], - [-13.049041, 8.62605], - [-13.049041, 8.626232], - [-13.049198, 8.626534], - [-13.049397, 8.626861], - [-13.04973, 8.627291], - [-13.050103, 8.627732], - [-13.050274, 8.628019], - [-13.050343, 8.628256], - [-13.050309, 8.628729], - [-13.05023, 8.62886], - [-13.050012, 8.628993], - [-13.049575, 8.629173], - [-13.049205, 8.629265], - [-13.048744, 8.629444], - [-13.048197, 8.629622], - [-13.047844, 8.62968], - [-13.047522, 8.629663], - [-13.04728, 8.629614], - [-13.046819, 8.629472], - [-13.046591, 8.629407], - [-13.046362, 8.629266], - [-13.046172, 8.629076], - [-13.046013, 8.628928], - [-13.045878, 8.628814], - [-13.045753, 8.628812], - [-13.045635, 8.62883], - [-13.045459, 8.628898], - [-13.045236, 8.629035], - [-13.044942, 8.629223], - [-13.044848, 8.629257], - [-13.044745, 8.629253], - [-13.044675, 8.629246], - [-13.044591, 8.62927], - [-13.044503, 8.629338], - [-13.044431, 8.629407], - [-13.044317, 8.629477], - [-13.044289, 8.629537], - [-13.04429, 8.629613], - [-13.044335, 8.629709], - [-13.044335, 8.62978], - [-13.044302, 8.629835], - [-13.044225, 8.629875], - [-13.044109, 8.629861], - [-13.043986, 8.629809], - [-13.043892, 8.629779], - [-13.043785, 8.629775], - [-13.043609, 8.62975], - [-13.04361, 8.629748], - [-13.043769, 8.629752], - [-13.043909, 8.629744], - [-13.044147, 8.629831], - [-13.044213, 8.629824], - [-13.04429, 8.629754], - [-13.044258, 8.629663], - [-13.044237, 8.629581], - [-13.044253, 8.629518], - [-13.044269, 8.629472], - [-13.044388, 8.629389], - [-13.044551, 8.629232], - [-13.04463, 8.629188], - [-13.044812, 8.629179], - [-13.044954, 8.629136], - [-13.045126, 8.629031], - [-13.045286, 8.628878], - [-13.045511, 8.628754], - [-13.045675, 8.628678], - [-13.045539, 8.628404], - [-13.045313, 8.627834], - [-13.045235, 8.627419], - [-13.045113, 8.626857], - [-13.045052, 8.626725], - [-13.044939, 8.626647], - [-13.04475, 8.626594], - [-13.044438, 8.626581], - [-13.044182, 8.626613], - [-13.043941, 8.626685], - [-13.043765, 8.626682], - [-13.043616, 8.626659], - [-13.043088, 8.626473], - [-13.042912, 8.626453], - [-13.042781, 8.626473], - [-13.042698, 8.626558], - [-13.042618, 8.626709], - [-13.042541, 8.627012], - [-13.042539, 8.627173], - [-13.042561, 8.627593], - [-13.042561, 8.627844], - [-13.042505, 8.628057], - [-13.042408, 8.628277], - [-13.042202, 8.628459], - [-13.042056, 8.628498], - [-13.041794, 8.628507], - [-13.041704, 8.628475], - [-13.041737, 8.628383], - [-13.041907, 8.628428], - [-13.042075, 8.628415], - [-13.04223, 8.628363], - [-13.042343, 8.628192], - [-13.042432, 8.628044], - [-13.042465, 8.627797], - [-13.042466, 8.627593], - [-13.042404, 8.627312], - [-13.0424, 8.626932], - [-13.042513, 8.62656], - [-13.042635, 8.626407], - [-13.042738, 8.626337], - [-13.042946, 8.626286], - [-13.04318, 8.626317], - [-13.043472, 8.626415], - [-13.043741, 8.626508], - [-13.043943, 8.626499], - [-13.04429, 8.626397], - [-13.044586, 8.626351], - [-13.044915, 8.626359], - [-13.044713, 8.625843], - [-13.044357, 8.625003], - [-13.044168, 8.624592], - [-13.044107, 8.624425], - [-13.044078, 8.624118], - [-13.043722, 8.623408], - [-13.04357, 8.62325], - [-13.043284, 8.62317], - [-13.042771, 8.623118], - [-13.042034, 8.62304], - [-13.041576, 8.623012], - [-13.041496, 8.623184], - [-13.041493, 8.623369], - [-13.041544, 8.623462], - [-13.04183, 8.623597], - [-13.041784, 8.623681], - [-13.042, 8.623747], - [-13.042098, 8.623816], - [-13.042137, 8.623932], - [-13.04224, 8.624031], - [-13.04225, 8.62424], - [-13.042367, 8.624364], - [-13.042512, 8.624384], - [-13.042682, 8.624481], - [-13.042762, 8.624592], - [-13.042639, 8.624671], - [-13.042372, 8.624686], - [-13.042282, 8.624761], - [-13.042118, 8.624964], - [-13.04201, 8.624992], - [-13.041958, 8.624918], - [-13.04192, 8.6247], - [-13.041808, 8.624677], - [-13.041709, 8.624876], - [-13.041648, 8.624978], - [-13.04146, 8.625058], - [-13.041459, 8.625416], - [-13.041356, 8.625574], - [-13.041252, 8.625713], - [-13.04113, 8.625778], - [-13.041036, 8.625708], - [-13.040904, 8.625542], - [-13.040792, 8.625579], - [-13.04074, 8.625736], - [-13.040819, 8.625881], - [-13.040834, 8.626012], - [-13.040966, 8.626313], - [-13.041046, 8.626379], - [-13.041158, 8.626517], - [-13.041228, 8.626638], - [-13.04121, 8.626765], - [-13.041172, 8.626858], - [-13.041065, 8.627044], - [-13.041051, 8.627131], - [-13.041251, 8.627586], - [-13.041263, 8.627849], - [-13.041146, 8.627587], - [-13.041015, 8.627402], - [-13.040908, 8.627183], - [-13.040813, 8.627189], - [-13.040759, 8.627307], - [-13.04066, 8.62733], - [-13.040491, 8.627291], - [-13.040353, 8.627251], - [-13.039995, 8.627226], - [-13.039134, 8.627386], - [-13.038533, 8.627643], - [-13.03819, 8.628089], - [-13.037894, 8.627856], - [-13.037582, 8.62797], - [-13.037462, 8.627951], - [-13.037383, 8.627885], - [-13.037432, 8.627817], - [-13.037536, 8.627786], - [-13.037654, 8.627767], - [-13.037575, 8.627681], - [-13.037446, 8.6276], - [-13.037443, 8.627495], - [-13.037581, 8.627505], - [-13.037681, 8.627543], - [-13.037837, 8.627629], - [-13.037915, 8.627708], - [-13.03797, 8.627698], - [-13.038111, 8.627584], - [-13.038233, 8.627554], - [-13.03831, 8.627612], - [-13.038359, 8.627632], - [-13.038424, 8.6275], - [-13.038482, 8.627306], - [-13.038459, 8.627225], - [-13.03836, 8.627133], - [-13.038247, 8.627074], - [-13.038171, 8.627037], - [-13.03808, 8.626804], - [-13.037967, 8.626761], - [-13.037838, 8.626745], - [-13.037671, 8.62682], - [-13.037535, 8.626823], - [-13.03732, 8.626816], - [-13.037242, 8.626754], - [-13.037157, 8.626636], - [-13.037157, 8.62653], - [-13.03722, 8.626432], - [-13.037349, 8.62631], - [-13.037503, 8.626229], - [-13.037814, 8.626277], - [-13.037861, 8.626248], - [-13.037902, 8.626077], - [-13.037945, 8.625646], - [-13.037945, 8.625318], - [-13.03791, 8.62502], - [-13.037795, 8.624904], - [-13.037609, 8.624818], - [-13.037367, 8.624857], - [-13.037147, 8.624905], - [-13.036935, 8.624983], - [-13.036735, 8.62509], - [-13.036549, 8.625248], - [-13.036401, 8.625321], - [-13.036179, 8.625342], - [-13.035976, 8.625384], - [-13.035693, 8.625475], - [-13.035543, 8.625462], - [-13.03544, 8.625445], - [-13.035385, 8.625317], - [-13.035361, 8.625141], - [-13.035215, 8.624999], - [-13.035216, 8.624998], - [-13.035394, 8.625096], - [-13.035492, 8.62531], - [-13.035591, 8.625391], - [-13.035774, 8.625352], - [-13.036001, 8.62529], - [-13.036462, 8.625146], - [-13.036577, 8.62504], - [-13.036618, 8.624867], - [-13.036662, 8.624797], - [-13.036712, 8.624849], - [-13.036802, 8.624868], - [-13.0369, 8.624838], - [-13.037205, 8.624667], - [-13.037363, 8.62462], - [-13.037608, 8.624671], - [-13.037873, 8.62481], - [-13.037963, 8.624873], - [-13.038031, 8.624847], - [-13.038057, 8.624649], - [-13.037891, 8.624035], - [-13.037731, 8.623594], - [-13.037688, 8.623394], - [-13.037582, 8.623319], - [-13.03739, 8.623268], - [-13.037284, 8.62327], - [-13.037042, 8.623341], - [-13.036747, 8.623314], - [-13.03636, 8.623234], - [-13.036138, 8.623221], - [-13.035915, 8.62326], - [-13.035915, 8.623258], - [-13.036069, 8.623206], - [-13.036124, 8.62316], - [-13.036131, 8.623104], - [-13.036097, 8.623035], - [-13.036072, 8.622963], - [-13.036079, 8.622855], - [-13.036101, 8.622987], - [-13.036224, 8.623118], - [-13.036609, 8.623183], - [-13.037027, 8.623192], - [-13.037333, 8.62309], - [-13.037587, 8.623081], - [-13.037803, 8.623177], - [-13.037897, 8.623266], - [-13.037973, 8.62336], - [-13.038104, 8.623626], - [-13.038209, 8.62397], - [-13.038277, 8.624128], - [-13.038396, 8.624057], - [-13.038479, 8.623985], - [-13.038522, 8.624039], - [-13.038523, 8.624204], - [-13.038582, 8.624365], - [-13.038618, 8.624523], - [-13.03854, 8.624635], - [-13.038472, 8.62457], - [-13.038377, 8.624553], - [-13.03835, 8.624947], - [-13.038383, 8.625013], - [-13.038463, 8.624957], - [-13.038622, 8.6248], - [-13.038791, 8.624825], - [-13.038888, 8.624948], - [-13.038905, 8.625147], - [-13.038795, 8.625279], - [-13.038649, 8.625296], - [-13.038387, 8.625454], - [-13.03833, 8.625638], - [-13.03833, 8.626183], - [-13.038423, 8.626617], - [-13.038609, 8.626867], - [-13.038799, 8.626999], - [-13.038981, 8.626979], - [-13.039284, 8.626819], - [-13.03968, 8.626469], - [-13.040063, 8.626035], - [-13.040467, 8.625562], - [-13.040572, 8.625269], - [-13.040654, 8.624934], - [-13.040607, 8.624684], - [-13.040501, 8.624411], - [-13.040382, 8.624119], - [-13.040324, 8.623846], - [-13.040222, 8.623869], - [-13.040155, 8.624046], - [-13.040029, 8.62402], - [-13.040029, 8.623941], - [-13.040088, 8.623652], - [-13.040042, 8.623481], - [-13.039976, 8.623408], - [-13.040069, 8.623284], - [-13.040248, 8.623278], - [-13.040334, 8.623283], - [-13.040454, 8.622949], - [-13.040541, 8.622745], - [-13.040441, 8.622744], - [-13.040249, 8.622587], - [-13.040109, 8.622502], - [-13.040076, 8.622619], - [-13.040062, 8.622725], - [-13.039942, 8.622816], - [-13.03969, 8.622909], - [-13.039669, 8.623027], - [-13.039583, 8.623079], - [-13.039477, 8.622908], - [-13.039284, 8.622732], - [-13.039019, 8.62262], - [-13.038807, 8.622554], - [-13.038807, 8.622553], - [-13.038965, 8.622403], - [-13.039204, 8.62256], - [-13.039411, 8.622691], - [-13.039623, 8.622691], - [-13.039809, 8.622593], - [-13.039829, 8.622487], - [-13.039803, 8.622278], - [-13.039916, 8.622179], - [-13.039113, 8.621937], - [-13.038667, 8.622624], - [-13.038527, 8.622638], - [-13.038238, 8.621189], - [-13.038545, 8.621166], - [-13.037464, 8.616298], - [-13.037042, 8.616136], - [-13.035841, 8.616062], - [-13.035668, 8.615826], - [-13.03565, 8.615357], - [-13.036, 8.614303], - [-13.035877, 8.614107], - [-13.035273, 8.613906], - [-13.03435, 8.613961], - [-13.033783, 8.614187], - [-13.033592, 8.615496], - [-13.033455, 8.615593], - [-13.033042, 8.615502], - [-13.03242, 8.614887], - [-13.031706, 8.614845], - [-13.031571, 8.615253], - [-13.031804, 8.615966], - [-13.031286, 8.616586], - [-13.030762, 8.616234], - [-13.030103, 8.616117], - [-13.029406, 8.615441], - [-13.028212, 8.614814], - [-13.026887, 8.614758], - [-13.025117, 8.613748], - [-13.02436, 8.613692], - [-13.023614, 8.613053], - [-13.02302, 8.613647], - [-13.023886, 8.615458], - [-13.023884, 8.615459], - [-13.023299, 8.614725], - [-13.022444, 8.613441], - [-13.021542, 8.612256], - [-13.019848, 8.61012], - [-13.019603, 8.609731], - [-13.019451, 8.609266], - [-13.0194, 8.608832], - [-13.019548, 8.608479], - [-13.02065, 8.607383], - [-13.021168, 8.606859], - [-13.021542, 8.606388], - [-13.021771, 8.605717], - [-13.022086, 8.604678], - [-13.022264, 8.60394], - [-13.022574, 8.603225], - [-13.022709, 8.60301], - [-13.021, 8.603998], - [-13.021, 8.6015], - [-13.021499, 8.600399], - [-13.0215, 8.5985], - [-13.020399, 8.5965], - [-13.018999, 8.5957], - [-13.0168, 8.5954], - [-13.016499, 8.595999], - [-13.0138, 8.596], - [-13.012399, 8.5954], - [-13.0096, 8.5951], - [-13.0049, 8.5951], - [-13.0038, 8.5963], - [-13.003799, 8.5974], - [-13.002399, 8.5987], - [-12.9993, 8.600699], - [-12.997399, 8.601299], - [-12.9918, 8.6013], - [-12.988199, 8.6004], - [-12.9843, 8.600399], - [-12.9821, 8.5996], - [-12.981499, 8.5987], - [-12.9796, 8.5985], - [-12.979299, 8.5979], - [-12.9771, 8.5968], - [-12.976199, 8.596799], - [-12.974899, 8.5954], - [-12.973699, 8.595399], - [-12.972099, 8.5935], - [-12.9693, 8.5929], - [-12.9693, 8.599299], - [-12.971, 8.600399], - [-12.9726, 8.6004], - [-12.973999, 8.6015], - [-12.974299, 8.604299], - [-12.974899, 8.606], - [-12.974899, 8.607899], - [-12.974599, 8.6079], - [-12.975008, 8.608827], - [-12.975208, 8.608958], - [-12.974541, 8.609625], - [-12.974735, 8.609796], - [-12.976429, 8.610704], - [-12.976817, 8.610767], - [-12.977256, 8.61092], - [-12.977658, 8.6111], - [-12.978151, 8.611483], - [-12.978951, 8.6124], - [-12.979333, 8.612798], - [-12.980937, 8.614612], - [-12.980203, 8.615882], - [-12.979766, 8.615965], - [-12.978603, 8.61597], - [-12.977484, 8.616383], - [-12.9765, 8.617348], - [-12.974757, 8.619873], - [-12.973843, 8.622266], - [-12.973233, 8.623357], - [-12.97294, 8.623731], - [-12.972512, 8.624028], - [-12.971959, 8.624126], - [-12.971715, 8.624124], - [-12.971377, 8.623915], - [-12.971276, 8.623486], - [-12.971516, 8.623019], - [-12.971344, 8.62312], - [-12.971104, 8.623246], - [-12.9709, 8.623332], - [-12.970766, 8.623469], - [-12.970631, 8.62358], - [-12.970411, 8.623548], - [-12.970164, 8.623443], - [-12.969971, 8.623464], - [-12.969719, 8.623523], - [-12.969452, 8.623533], - [-12.969086, 8.623661], - [-12.968807, 8.623804], - [-12.968501, 8.623989], - [-12.968196, 8.624048], - [-12.967794, 8.624407], - [-12.967536, 8.624635], - [-12.967306, 8.624848], - [-12.967102, 8.625023], - [-12.966859, 8.625172], - [-12.966538, 8.625246], - [-12.966296, 8.625278], - [-12.965996, 8.625288], - [-12.965846, 8.625277], - [-12.965572, 8.625102], - [-12.965019, 8.624964], - [-12.964606, 8.624933], - [-12.96406, 8.625017], - [-12.963567, 8.625252], - [-12.963308, 8.625533], - [-12.961763, 8.626556], - [-12.961083, 8.627123], - [-12.960949, 8.627293], - [-12.960783, 8.627484], - [-12.960696, 8.627596], - [-12.960562, 8.627675], - [-12.960278, 8.627712], - [-12.960176, 8.627755], - [-12.960305, 8.627828], - [-12.960588, 8.627814], - [-12.960841, 8.627712], - [-12.961163, 8.627272], - [-12.961973, 8.626625], - [-12.962992, 8.626063], - [-12.963335, 8.625777], - [-12.963577, 8.625516], - [-12.963926, 8.625293], - [-12.96435, 8.625071], - [-12.964591, 8.625061], - [-12.964896, 8.625118], - [-12.965106, 8.625156], - [-12.965396, 8.625257], - [-12.96567, 8.6254], - [-12.966008, 8.625558], - [-12.966389, 8.625532], - [-12.966881, 8.625453], - [-12.967488, 8.625182], - [-12.967911, 8.624817], - [-12.968159, 8.624572], - [-12.96847, 8.624308], - [-12.968786, 8.624179], - [-12.969232, 8.624052], - [-12.969693, 8.623925], - [-12.97016, 8.623921], - [-12.970406, 8.624095], - [-12.970813, 8.624423], - [-12.971089, 8.624609], - [-12.97035, 8.625198], - [-12.969811, 8.625713], - [-12.969542, 8.626371], - [-12.968432, 8.627818], - [-12.967821, 8.628709], - [-12.967418, 8.62978], - [-12.967398, 8.629825], - [-12.967397, 8.629825], - [-12.967195, 8.629475], - [-12.967121, 8.629677], - [-12.966389, 8.629831], - [-12.966379, 8.630105], - [-12.966636, 8.63053], - [-12.966146, 8.631392], - [-12.963398, 8.631861], - [-12.961496, 8.631728], - [-12.959957, 8.631298], - [-12.959521, 8.631827], - [-12.958964, 8.631828], - [-12.959226, 8.632518], - [-12.959125, 8.633376], - [-12.959533, 8.633128], - [-12.959956, 8.633085], - [-12.960401, 8.633534], - [-12.961221, 8.633758], - [-12.962172, 8.632916], - [-12.964027, 8.633121], - [-12.965495, 8.632746], - [-12.965894, 8.632853], - [-12.966032, 8.633215], - [-12.965949, 8.633465], - [-12.964992, 8.634154], - [-12.964778, 8.634568], - [-12.964871, 8.635109], - [-12.965262, 8.63552], - [-12.966051, 8.635558], - [-12.966083, 8.635583], - [-12.957382, 8.644284], - [-12.957381, 8.644284], - [-12.957272, 8.644169], - [-12.957282, 8.643433], - [-12.958634, 8.642365], - [-12.958676, 8.641993], - [-12.957019, 8.642802], - [-12.95572, 8.643018], - [-12.954807, 8.643008], - [-12.953854, 8.642781], - [-12.953349, 8.64249], - [-12.953109, 8.642096], - [-12.952983, 8.640863], - [-12.952783, 8.640783], - [-12.952226, 8.645797], - [-12.95202, 8.645852], - [-12.95125, 8.651249], - [-12.952916, 8.652917], - [-12.952916, 8.65875], - [-12.947917, 8.66125], - [-12.94668, 8.663719], - [-12.945661, 8.663373], - [-12.9456, 8.663383], - [-12.945416, 8.66375], - [-12.941249, 8.665416], - [-12.937083, 8.664584], - [-12.937083, 8.666534], - [-12.938565, 8.667648], - [-12.939736, 8.669452], - [-12.939479, 8.67017], - [-12.939951, 8.671122], - [-12.940009, 8.671912], - [-12.939879, 8.67211], - [-12.93918, 8.672211], - [-12.938268, 8.671753], - [-12.93756, 8.670914], - [-12.936735, 8.670469], - [-12.936355, 8.669597], - [-12.935776, 8.669011], - [-12.932917, 8.669583], - [-12.927916, 8.673749], - [-12.920417, 8.669583], - [-12.920416, 8.668265], - [-12.919993, 8.668113], - [-12.919614, 8.667899], - [-12.91923, 8.667632], - [-12.918874, 8.667338], - [-12.9186, 8.667094], - [-12.918407, 8.666816], - [-12.918215, 8.666665], - [-12.918034, 8.666542], - [-12.917815, 8.666436], - [-12.917646, 8.666419], - [-12.917558, 8.66645], - [-12.917362, 8.6666], - [-12.917002, 8.666929], - [-12.916831, 8.66713], - [-12.916671, 8.667257], - [-12.916289, 8.667427], - [-12.916023, 8.667521], - [-12.915024, 8.667534], - [-12.913628, 8.667018], - [-12.913362, 8.666776], - [-12.913164, 8.666556], - [-12.913161, 8.666421], - [-12.913119, 8.6663], - [-12.912788, 8.666087], - [-12.912517, 8.665998], - [-12.912157, 8.665931], - [-12.911856, 8.665897], - [-12.911136, 8.665749], - [-12.910968, 8.665729], - [-12.91077, 8.665745], - [-12.91056, 8.66574], - [-12.910189, 8.665716], - [-12.910059, 8.665676], - [-12.909601, 8.665498], - [-12.909428, 8.665191], - [-12.909169, 8.665085], - [-12.909014, 8.665102], - [-12.908793, 8.665297], - [-12.908565, 8.665542], - [-12.908172, 8.665842], - [-12.907772, 8.666061], - [-12.9073, 8.666196], - [-12.906844, 8.66624], - [-12.906602, 8.666228], - [-12.905971, 8.666268], - [-12.905574, 8.666245], - [-12.905112, 8.666257], - [-12.904715, 8.666312], - [-12.904219, 8.666479], - [-12.903741, 8.666627], - [-12.903044, 8.666767], - [-12.902261, 8.6669], - [-12.90184, 8.667039], - [-12.90132, 8.667219], - [-12.900689, 8.667749], - [-12.900364, 8.668246], - [-12.900094, 8.66854], - [-12.899715, 8.668788], - [-12.899318, 8.668898], - [-12.899052, 8.668884], - [-12.898832, 8.668796], - [-12.898645, 8.668666], - [-12.898442, 8.668331], - [-12.898301, 8.667735], - [-12.898131, 8.66724], - [-12.897886, 8.666804], - [-12.897689, 8.66662], - [-12.897506, 8.666606], - [-12.89723, 8.666617], - [-12.896713, 8.666705], - [-12.896131, 8.666838], - [-12.895865, 8.666992], - [-12.895758, 8.667144], - [-12.895692, 8.667574], - [-12.895744, 8.667998], - [-12.895819, 8.668574], - [-12.89593, 8.668911], - [-12.896165, 8.669165], - [-12.896447, 8.669344], - [-12.896745, 8.669485], - [-12.897179, 8.66974], - [-12.897351, 8.669931], - [-12.897411, 8.670082], - [-12.897455, 8.670402], - [-12.897437, 8.67071], - [-12.897313, 8.670894], - [-12.895589, 8.671452], - [-12.895278, 8.671582], - [-12.894515, 8.672057], - [-12.893176, 8.672777], - [-12.892755, 8.672961], - [-12.892529, 8.673005], - [-12.892336, 8.67301], - [-12.892159, 8.672981], - [-12.8919, 8.672835], - [-12.891676, 8.672634], - [-12.891514, 8.672422], - [-12.891372, 8.672003], - [-12.891352, 8.671609], - [-12.8914, 8.671282], - [-12.891528, 8.670782], - [-12.891792, 8.670478], - [-12.892155, 8.670161], - [-12.892394, 8.6699], - [-12.8926, 8.66956], - [-12.892804, 8.669249], - [-12.893028, 8.668885], - [-12.893162, 8.66852], - [-12.893207, 8.668012], - [-12.89319, 8.667629], - [-12.893059, 8.667257], - [-12.892822, 8.666879], - [-12.89261, 8.666674], - [-12.892266, 8.666623], - [-12.89169, 8.666738], - [-12.891351, 8.666825], - [-12.891082, 8.666895], - [-12.890688, 8.666978], - [-12.890426, 8.667437], - [-12.890209, 8.667683], - [-12.88996, 8.667893], - [-12.889334, 8.668545], - [-12.889097, 8.668733], - [-12.886715, 8.664564], - [-12.88668, 8.664627], - [-12.886038, 8.664817], - [-12.885963, 8.665487], - [-12.88481, 8.666662], - [-12.884554, 8.666943], - [-12.882722, 8.668538], - [-12.8811, 8.670235], - [-12.880345, 8.671051], - [-12.884106, 8.674186], - [-12.883259, 8.675859], - [-12.880048, 8.682571], - [-12.878496, 8.684867], - [-12.877901, 8.685626], - [-12.874062, 8.686106], - [-12.87387, 8.686339], - [-12.873504, 8.687831], - [-12.873759, 8.690428], - [-12.874747, 8.693881], - [-12.875767, 8.69561], - [-12.876237, 8.696098], - [-12.87713, 8.696764], - [-12.878337, 8.69736], - [-12.879673, 8.69868], - [-12.880825, 8.700362], - [-12.881871, 8.701421], - [-12.882692, 8.702031], - [-12.88332, 8.702694], - [-12.883517, 8.703687], - [-12.883429, 8.704186], - [-12.883, 8.704958], - [-12.882123, 8.706125], - [-12.880542, 8.707673], - [-12.879871, 8.708367], - [-12.879509, 8.708977], - [-12.882596, 8.709419], - [-12.881303, 8.710642], - [-12.881351, 8.710846], - [-12.88141, 8.711075], - [-12.881609, 8.711412], - [-12.881757, 8.711597], - [-12.881894, 8.711657], - [-12.882173, 8.711663], - [-12.882489, 8.711645], - [-12.882732, 8.711635], - [-12.88308, 8.711713], - [-12.883322, 8.711735], - [-12.883489, 8.711756], - [-12.883804, 8.711906], - [-12.884169, 8.712137], - [-12.884557, 8.712364], - [-12.885032, 8.712661], - [-12.885553, 8.71294], - [-12.886006, 8.713137], - [-12.8864, 8.713275], - [-12.886715, 8.713303], - [-12.887083, 8.713329], - [-12.887558, 8.713387], - [-12.88786, 8.713398], - [-12.888331, 8.713379], - [-12.888697, 8.713446], - [-12.889997, 8.714396], - [-12.890153, 8.714501], - [-12.890506, 8.714744], - [-12.890616, 8.714846], - [-12.890749, 8.715136], - [-12.890859, 8.715612], - [-12.890921, 8.716115], - [-12.890921, 8.716525], - [-12.890903, 8.71669], - [-12.890963, 8.716813], - [-12.891109, 8.716969], - [-12.891504, 8.717238], - [-12.892272, 8.717692], - [-12.892621, 8.717866], - [-12.893011, 8.717984], - [-12.893248, 8.71805], - [-12.893525, 8.718215], - [-12.893748, 8.718446], - [-12.894106, 8.718807], - [-12.894169, 8.718916], - [-12.894266, 8.719122], - [-12.894421, 8.719266], - [-12.894643, 8.719345], - [-12.894844, 8.719366], - [-12.895037, 8.719339], - [-12.895247, 8.719275], - [-12.895383, 8.719181], - [-12.895563, 8.719071], - [-12.895894, 8.718962], - [-12.896328, 8.718814], - [-12.896587, 8.718799], - [-12.896901, 8.718786], - [-12.897354, 8.718797], - [-12.897786, 8.718845], - [-12.898489, 8.719005], - [-12.899111, 8.719208], - [-12.899697, 8.719382], - [-12.901584, 8.720015], - [-12.901939, 8.720272], - [-12.902392, 8.720625], - [-12.903084, 8.72119], - [-12.904155, 8.721594], - [-12.904525, 8.721656], - [-12.9051, 8.721756], - [-12.905615, 8.721696], - [-12.906042, 8.721597], - [-12.906206, 8.721459], - [-12.906328, 8.721398], - [-12.906493, 8.721393], - [-12.906908, 8.721489], - [-12.907458, 8.721626], - [-12.907916, 8.721867], - [-12.909086, 8.722584], - [-12.909382, 8.722731], - [-12.90955, 8.722918], - [-12.909839, 8.723222], - [-12.909984, 8.723287], - [-12.910198, 8.723406], - [-12.910266, 8.723536], - [-12.910273, 8.72381], - [-12.910335, 8.724197], - [-12.910377, 8.724575], - [-12.910403, 8.724943], - [-12.910496, 8.725679], - [-12.910535, 8.725899], - [-12.910622, 8.726168], - [-12.910811, 8.726544], - [-12.91094, 8.726886], - [-12.911024, 8.72725], - [-12.91114, 8.727566], - [-12.911244, 8.727862], - [-12.911268, 8.7281], - [-12.911357, 8.728283], - [-12.911629, 8.728467], - [-12.911851, 8.728545], - [-12.912123, 8.728522], - [-12.912546, 8.728426], - [-12.912838, 8.728259], - [-12.913144, 8.72803], - [-12.913323, 8.72772], - [-12.913386, 8.727475], - [-12.913353, 8.727328], - [-12.913337, 8.727109], - [-12.913387, 8.72698], - [-12.913491, 8.72684], - [-12.913686, 8.726692], - [-12.914207, 8.726359], - [-12.914555, 8.726143], - [-12.914782, 8.726037], - [-12.915081, 8.726023], - [-12.915303, 8.726028], - [-12.91552, 8.72613], - [-12.915677, 8.726268], - [-12.915987, 8.726703], - [-12.916291, 8.726988], - [-12.916938, 8.727705], - [-12.91752, 8.72828], - [-12.917652, 8.728489], - [-12.917717, 8.728708], - [-12.917811, 8.72906], - [-12.917868, 8.729279], - [-12.917915, 8.729336], - [-12.918105, 8.729368], - [-12.918199, 8.72936], - [-12.918373, 8.729279], - [-12.918646, 8.729016], - [-12.91892, 8.728772], - [-12.919234, 8.728381], - [-12.919394, 8.728031], - [-12.919484, 8.727759], - [-12.919689, 8.727333], - [-12.919818, 8.727234], - [-12.92009, 8.727044], - [-12.920411, 8.726725], - [-12.920742, 8.726432], - [-12.920941, 8.726135], - [-12.921258, 8.725835], - [-12.922293, 8.726078], - [-12.922873, 8.725833], - [-12.923233, 8.725415], - [-12.923871, 8.72542], - [-12.924304, 8.726193], - [-12.924181, 8.727301], - [-12.924863, 8.727243], - [-12.924854, 8.727656], - [-12.925203, 8.727784], - [-12.925351, 8.727676], - [-12.925317, 8.727144], - [-12.925417, 8.727137], - [-12.925416, 8.719583], - [-12.923616, 8.717332], - [-12.930124, 8.717332], - [-12.930416, 8.717838], - [-12.930417, 8.718749], - [-12.931661, 8.719994], - [-12.93403, 8.724097], - [-12.930864, 8.729582], - [-12.937916, 8.729583], - [-12.93875, 8.732916], - [-12.943789, 8.737956], - [-12.939899, 8.74095], - [-12.93838, 8.741793], - [-12.938024, 8.741971], - [-12.938056, 8.742028], - [-12.938303, 8.74226], - [-12.939568, 8.741561], - [-12.940019, 8.741283], - [-12.940302, 8.741431], - [-12.94131, 8.741007], - [-12.942397, 8.740948], - [-12.942702, 8.740915], - [-12.943726, 8.739885], - [-12.943188, 8.739504], - [-12.942652, 8.739457], - [-12.942651, 8.739455], - [-12.943852, 8.738618], - [-12.94625, 8.740417], - [-12.948749, 8.747082], - [-12.947917, 8.749583], - [-12.947917, 8.756249], - [-12.951249, 8.760417], - [-12.947917, 8.765416], - [-12.950417, 8.767917], - [-12.954582, 8.770416], - [-12.95625, 8.77375], - [-12.958478, 8.774864], - [-12.958695, 8.774654], - [-12.967082, 8.775416], - [-12.968749, 8.777916], - [-12.96875, 8.778855], - [-12.971905, 8.778855], - [-12.972007, 8.76089], - [-12.976273, 8.757691], - [-12.977083, 8.757083], - [-12.984582, 8.757082], - [-12.98375, 8.752916], - [-12.992916, 8.751249], - [-12.995383, 8.748783], - [-12.994184, 8.747823], - [-12.993185, 8.746547], - [-12.992916, 8.747082], - [-12.990417, 8.747082], - [-12.990839, 8.746025], - [-12.990841, 8.746025], - [-12.990922, 8.746071], - [-12.99625, 8.735417], - [-12.998749, 8.73625], - [-13.001152, 8.738651], - [-13.002442, 8.737754], - [-13.002617, 8.737802], - [-13.00258, 8.738456], - [-13.003092, 8.739838], - [-13.003991, 8.740985], - [-13.004701, 8.741208], - [-13.005039, 8.741997], - [-13.0054, 8.742206], - [-13.005749, 8.742268], - [-13.006111, 8.74212], - [-13.006587, 8.741343], - [-13.007522, 8.740849], - [-13.007659, 8.740505], - [-13.007398, 8.740184], - [-13.006323, 8.739665], - [-13.0054, 8.738136], - [-13.004945, 8.737932], - [-13.004771, 8.73676], - [-13.005126, 8.735983], - [-13.006361, 8.734886], - [-13.007466, 8.734331], - [-13.010131, 8.734324], - [-13.011122, 8.734786], - [-13.012274, 8.735551], - [-13.012783, 8.73148], - [-13.012801, 8.731481], - [-13.012917, 8.731249], - [-13.013352, 8.726023], - [-13.014418, 8.723726], - [-13.015231, 8.723066], - [-13.015797, 8.722894], - [-13.016552, 8.723023], - [-13.017249, 8.723353], - [-13.017727, 8.723352], - [-13.0178, 8.723124], - [-13.016029, 8.72186], - [-13.01571, 8.721142], - [-13.01584, 8.720125], - [-13.014012, 8.719522], - [-13.013996, 8.719533], - [-13.013995, 8.719532], - [-13.014583, 8.715417], - [-13.01625, 8.712917], - [-13.017746, 8.711793], - [-13.019408, 8.708916], - [-13.025416, 8.709582], - [-13.02625, 8.705416], - [-13.028334, 8.701248], - [-13.030568, 8.702291], - [-13.037364, 8.707735], - [-13.037984, 8.706523], - [-13.036962, 8.705814], - [-13.035677, 8.704938], - [-13.035978, 8.70465], - [-13.036979, 8.704199], - [-13.036743, 8.701254], - [-13.037021, 8.700054], - [-13.036916, 8.69945], - [-13.036917, 8.699449], - [-13.037848, 8.69969], - [-13.038559, 8.699366], - [-13.03949, 8.699429], - [-13.040835, 8.699966], - [-13.041281, 8.699886], - [-13.041342, 8.699593], - [-13.041126, 8.699034], - [-13.040453, 8.698022], - [-13.040758, 8.697452], - [-13.040305, 8.696643], - [-13.04033, 8.695614], - [-13.040767, 8.69482], - [-13.041442, 8.694148], - [-13.041508, 8.692883], - [-13.043065, 8.691454], - [-13.043114, 8.69125], - [-13.048445, 8.691249], - [-13.048677, 8.691032], - [-13.048653, 8.689864], - [-13.048637, 8.689748], - [-13.048639, 8.689626], - [-13.048652, 8.689537], - [-13.048703, 8.68937], - [-13.0488, 8.689232], - [-13.04887, 8.689155], - [-13.048975, 8.689056], - [-13.04907, 8.689011], - [-13.049212, 8.688998], - [-13.049297, 8.689021], - [-13.049399, 8.689066], - [-13.049539, 8.689199], - [-13.04963, 8.689313], - [-13.049668, 8.689411], - [-13.049717, 8.689622], - [-13.049815, 8.689764], - [-13.049868, 8.689808], - [-13.049943, 8.689843], - [-13.050073, 8.689852], - [-13.050117, 8.689828], - [-13.050123, 8.689775], - [-13.050118, 8.6896], - [-13.050073, 8.689315], - [-13.049995, 8.689114], - [-13.049873, 8.68887], - [-13.049818, 8.688789], - [-13.049704, 8.688669], - [-13.049436, 8.688455], - [-13.049087, 8.687999], - [-13.048938, 8.687797], - [-13.048801, 8.68766], - [-13.048709, 8.687556], - [-13.048624, 8.6874], - [-13.048586, 8.687281], - [-13.048553, 8.687156], - [-13.048533, 8.686993], - [-13.048533, 8.68688], - [-13.048545, 8.686719], - [-13.048576, 8.686556], - [-13.048654, 8.686445], - [-13.048679, 8.686393], - [-13.048651, 8.68636], - [-13.048366, 8.686346], - [-13.047985, 8.686355], - [-13.047598, 8.686394], - [-13.047193, 8.686406], - [-13.046929, 8.68643], - [-13.046653, 8.686505], - [-13.046325, 8.686662], - [-13.046057, 8.686712], - [-13.045867, 8.686709], - [-13.045737, 8.686752], - [-13.045614, 8.686817], - [-13.045543, 8.686862], - [-13.045487, 8.686958], - [-13.045482, 8.68711], - [-13.045445, 8.687388], - [-13.045355, 8.687548], - [-13.045217, 8.687678], - [-13.045082, 8.687709], - [-13.044944, 8.687793], - [-13.04484, 8.687925], - [-13.044674, 8.68817], - [-13.044607, 8.688238], - [-13.044514, 8.688242], - [-13.044308, 8.688366], - [-13.044183, 8.688523], - [-13.044064, 8.688716], - [-13.043909, 8.68901], - [-13.04381, 8.689267], - [-13.043746, 8.689463], - [-13.043675, 8.689601], - [-13.043574, 8.689675], - [-13.043427, 8.689765], - [-13.043128, 8.689896], - [-13.043079, 8.689961], - [-13.043036, 8.689964], - [-13.042939, 8.689934], - [-13.042876, 8.689974], - [-13.042782, 8.690003], - [-13.042734, 8.689989], - [-13.042671, 8.689981], - [-13.042644, 8.690009], - [-13.042634, 8.690069], - [-13.042665, 8.690302], - [-13.042668, 8.69042], - [-13.042642, 8.690505], - [-13.042534, 8.690673], - [-13.042473, 8.690757], - [-13.042401, 8.690797], - [-13.042327, 8.690794], - [-13.042188, 8.690719], - [-13.042086, 8.690634], - [-13.041908, 8.690423], - [-13.041787, 8.690264], - [-13.041682, 8.690177], - [-13.041551, 8.690158], - [-13.041441, 8.690197], - [-13.041383, 8.690224], - [-13.041317, 8.690292], - [-13.041279, 8.69036], - [-13.041269, 8.690501], - [-13.041254, 8.69081], - [-13.041199, 8.691147], - [-13.041104, 8.691316], - [-13.040981, 8.691469], - [-13.040832, 8.691583], - [-13.040719, 8.691635], - [-13.040641, 8.691677], - [-13.040634, 8.691725], - [-13.040643, 8.691758], - [-13.040668, 8.691796], - [-13.040738, 8.691851], - [-13.040902, 8.691941], - [-13.040902, 8.691942], - [-13.040718, 8.691858], - [-13.04065, 8.691808], - [-13.040587, 8.691723], - [-13.040554, 8.691692], - [-13.040505, 8.691715], - [-13.040326, 8.691842], - [-13.040192, 8.69195], - [-13.040084, 8.692105], - [-13.040006, 8.692269], - [-13.039963, 8.692469], - [-13.039946, 8.692565], - [-13.039904, 8.692645], - [-13.039644, 8.692876], - [-13.039593, 8.693006], - [-13.039576, 8.693098], - [-13.039562, 8.693225], - [-13.039593, 8.69336], - [-13.039647, 8.693629], - [-13.039684, 8.693957], - [-13.03971, 8.694224], - [-13.039739, 8.694418], - [-13.039778, 8.694569], - [-13.039796, 8.694662], - [-13.039784, 8.694766], - [-13.039753, 8.694848], - [-13.039707, 8.694939], - [-13.039637, 8.695029], - [-13.039604, 8.695075], - [-13.039601, 8.695171], - [-13.039586, 8.69524], - [-13.039506, 8.695359], - [-13.039455, 8.695431], - [-13.039423, 8.695488], - [-13.039398, 8.695616], - [-13.039398, 8.695667], - [-13.039404, 8.695717], - [-13.039444, 8.695815], - [-13.039463, 8.695951], - [-13.039504, 8.696051], - [-13.039569, 8.696205], - [-13.039568, 8.696252], - [-13.039524, 8.696256], - [-13.039487, 8.696251], - [-13.039445, 8.696273], - [-13.039417, 8.696314], - [-13.039397, 8.69641], - [-13.039346, 8.696557], - [-13.03931, 8.696588], - [-13.039231, 8.696625], - [-13.039077, 8.696763], - [-13.039042, 8.696819], - [-13.039038, 8.696892], - [-13.039078, 8.696948], - [-13.03912, 8.696967], - [-13.039253, 8.696997], - [-13.039457, 8.697019], - [-13.039646, 8.697005], - [-13.039731, 8.69703], - [-13.039775, 8.697056], - [-13.039823, 8.697117], - [-13.039858, 8.697183], - [-13.039844, 8.697244], - [-13.039758, 8.697334], - [-13.039693, 8.697343], - [-13.039638, 8.697313], - [-13.039586, 8.697266], - [-13.039446, 8.697274], - [-13.039397, 8.697299], - [-13.039323, 8.697366], - [-13.0393, 8.697488], - [-13.039276, 8.697601], - [-13.039282, 8.697684], - [-13.03932, 8.697707], - [-13.039442, 8.697747], - [-13.039603, 8.697778], - [-13.039603, 8.697779], - [-13.039443, 8.697779], - [-13.039392, 8.69775], - [-13.039279, 8.697724], - [-13.039227, 8.697744], - [-13.039115, 8.697805], - [-13.039013, 8.697837], - [-13.038894, 8.697832], - [-13.038894, 8.697831], - [-13.039107, 8.697777], - [-13.039172, 8.697748], - [-13.039231, 8.697696], - [-13.039236, 8.697553], - [-13.039257, 8.697405], - [-13.03931, 8.69729], - [-13.039278, 8.697216], - [-13.039215, 8.697211], - [-13.039127, 8.697226], - [-13.039082, 8.697212], - [-13.03905, 8.697176], - [-13.039053, 8.697133], - [-13.039116, 8.697128], - [-13.039177, 8.697125], - [-13.039214, 8.697093], - [-13.039234, 8.697041], - [-13.03918, 8.697018], - [-13.039095, 8.69699], - [-13.039011, 8.696907], - [-13.038988, 8.696847], - [-13.038999, 8.696799], - [-13.039069, 8.696713], - [-13.039261, 8.696541], - [-13.039348, 8.696459], - [-13.039372, 8.696376], - [-13.039352, 8.696289], - [-13.039326, 8.69622], - [-13.039311, 8.696151], - [-13.039304, 8.696093], - [-13.039319, 8.696025], - [-13.039334, 8.695889], - [-13.039315, 8.695798], - [-13.039276, 8.695761], - [-13.03927, 8.695647], - [-13.039334, 8.695593], - [-13.039395, 8.695497], - [-13.039397, 8.695419], - [-13.039362, 8.695321], - [-13.039364, 8.695171], - [-13.039396, 8.695097], - [-13.039482, 8.695008], - [-13.039648, 8.694844], - [-13.039758, 8.694666], - [-13.039758, 8.694571], - [-13.039678, 8.694342], - [-13.039647, 8.694062], - [-13.039624, 8.693755], - [-13.039582, 8.69356], - [-13.039502, 8.693317], - [-13.039486, 8.693093], - [-13.039503, 8.692972], - [-13.03968, 8.692799], - [-13.039767, 8.692737], - [-13.039852, 8.692628], - [-13.039931, 8.692395], - [-13.039952, 8.692254], - [-13.039963, 8.69211], - [-13.040021, 8.691985], - [-13.040095, 8.691941], - [-13.040196, 8.69185], - [-13.040349, 8.691727], - [-13.040659, 8.691538], - [-13.040879, 8.691396], - [-13.041012, 8.691276], - [-13.041067, 8.691174], - [-13.04107, 8.691101], - [-13.041053, 8.691001], - [-13.041046, 8.690819], - [-13.041086, 8.690597], - [-13.041145, 8.690387], - [-13.041205, 8.690286], - [-13.041271, 8.69019], - [-13.041372, 8.690122], - [-13.041526, 8.690079], - [-13.041727, 8.690092], - [-13.041959, 8.690222], - [-13.042298, 8.690487], - [-13.042359, 8.690489], - [-13.042412, 8.690457], - [-13.042411, 8.690371], - [-13.04238, 8.690323], - [-13.042323, 8.690225], - [-13.042316, 8.690174], - [-13.042338, 8.69012], - [-13.042485, 8.689942], - [-13.042693, 8.689695], - [-13.042867, 8.689596], - [-13.042997, 8.689548], - [-13.043226, 8.689613], - [-13.043324, 8.689664], - [-13.043408, 8.689507], - [-13.043465, 8.689334], - [-13.043511, 8.689283], - [-13.043641, 8.689072], - [-13.043775, 8.688669], - [-13.04382, 8.688564], - [-13.043812, 8.68844], - [-13.043778, 8.688364], - [-13.043826, 8.688269], - [-13.04393, 8.688151], - [-13.044147, 8.68797], - [-13.044356, 8.687804], - [-13.044606, 8.687639], - [-13.044671, 8.68757], - [-13.044694, 8.687345], - [-13.044756, 8.687224], - [-13.044836, 8.687076], - [-13.044996, 8.686893], - [-13.045219, 8.686665], - [-13.045285, 8.686568], - [-13.045273, 8.686481], - [-13.045235, 8.686414], - [-13.045059, 8.686373], - [-13.044817, 8.686314], - [-13.044698, 8.686295], - [-13.044678, 8.686243], - [-13.045447, 8.686287], - [-13.045647, 8.686283], - [-13.045762, 8.68625], - [-13.045852, 8.686195], - [-13.046031, 8.686003], - [-13.046254, 8.685788], - [-13.04637, 8.685689], - [-13.046549, 8.685625], - [-13.046775, 8.685644], - [-13.046989, 8.685732], - [-13.047154, 8.685733], - [-13.047409, 8.68566], - [-13.047633, 8.685636], - [-13.047877, 8.685673], - [-13.047982, 8.685732], - [-13.048083, 8.685865], - [-13.048253, 8.686038], - [-13.048472, 8.6861], - [-13.048628, 8.686105], - [-13.048919, 8.686039], - [-13.049144, 8.685947], - [-13.049263, 8.685859], - [-13.049308, 8.685656], - [-13.049303, 8.685411], - [-13.049287, 8.68521], - [-13.049317, 8.685055], - [-13.049473, 8.684549], - [-13.049554, 8.684269], - [-13.049629, 8.684057], - [-13.049632, 8.683877], - [-13.049657, 8.683791], - [-13.049738, 8.683681], - [-13.049873, 8.683521], - [-13.050114, 8.683325], - [-13.050216, 8.6832], - [-13.050202, 8.683166], - [-13.050147, 8.68311], - [-13.050042, 8.683061], - [-13.049977, 8.683056], - [-13.049884, 8.683055], - [-13.049825, 8.683028], - [-13.049772, 8.68295], - [-13.049789, 8.682898], - [-13.049814, 8.682856], - [-13.049805, 8.682803], - [-13.049734, 8.682675], - [-13.049703, 8.682608], - [-13.04967, 8.682466], - [-13.049671, 8.682467], - [-13.049748, 8.682649], - [-13.049855, 8.682825], - [-13.049865, 8.682874], - [-13.049839, 8.682922], - [-13.049824, 8.682973], - [-13.049889, 8.683025], - [-13.049934, 8.683032], - [-13.050013, 8.683004], - [-13.050105, 8.683013], - [-13.050162, 8.683044], - [-13.050213, 8.683111], - [-13.050248, 8.683149], - [-13.050302, 8.683155], - [-13.050367, 8.683136], - [-13.051363, 8.682473], - [-13.0518, 8.681799], - [-13.054299, 8.681299], - [-13.055099, 8.680099], - [-13.0549, 8.6757], - [-13.055099, 8.6738], - [-13.053999, 8.6713], - [-13.052899, 8.6713], - [-13.049899, 8.672899], - [-13.0471, 8.672899], - [-13.0476, 8.6721], - [-13.048999, 8.672099], - [-13.051799, 8.670699], - [-13.0524, 8.6696], - [-13.053799, 8.668499], - [-13.0538, 8.6674], - [-13.054599, 8.665399], - [-13.0546, 8.6626], - [-13.055699, 8.660699], - [-13.056, 8.6582], - [-13.056499, 8.657399] - ] - ], - "type": "Polygon" - }, - "id": 348, - "properties": { - "cc:admin:id": ["74"], - "cc:oBld:total": 136, - "cc:pop:fifteen-to-twenty-four": 2618.777973248552, - "cc:pop:grid3-total": 7236.029943213852, - "cc:pop:kontur-total": 14732.654928629192, - "cc:pop:men": 6918.764249360037, - "cc:pop:sixty-plus": 768.8495081172188, - "cc:pop:total": 14665.885894977731, - "cc:pop:under-five": 2232.347083116533, - "cc:pop:women": 7747.121645617687, - "cc:pop:women-fiften-to-forty-nine": 3848.712583133243, - "cc:pop:wp-total": 12631.03496426915, - "cc:pop:wp-total-UN": 14630.356775147597, - "cc:id": "348", - "cc:Name": "Mana II CHP", - "cc:site": [-12.9693, 8.7077], - "user:parentName": "Lokomasama", - "user:code": "OU_254984", - "user:orgUnitId": "U9klfqqGlRa", - "user:level": "4", - "user:parentId": "fRLX08WHWpL" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.189844, 8.714789], - [-12.189499, 8.712199], - [-12.1827, 8.6942], - [-12.180099, 8.688799], - [-12.1764, 8.6802], - [-12.17, 8.6698], - [-12.164799, 8.662699], - [-12.160899, 8.655299], - [-12.157099, 8.646699], - [-12.154599, 8.642899], - [-12.150734, 8.638279], - [-12.148583, 8.638632], - [-12.144257, 8.640115], - [-12.142448, 8.640381], - [-12.137961, 8.640547], - [-12.131894, 8.641896], - [-12.128805, 8.641937], - [-12.127622, 8.642302], - [-12.127157, 8.642615], - [-12.126195, 8.643527], - [-12.125564, 8.645242], - [-12.125387, 8.646249], - [-12.129582, 8.64625], - [-12.131249, 8.647917], - [-12.125225, 8.659212], - [-12.125246, 8.659286], - [-12.127998, 8.658257], - [-12.127999, 8.658258], - [-12.126189, 8.660432], - [-12.125483, 8.661232], - [-12.124862, 8.661933], - [-12.125185, 8.662714], - [-12.126191, 8.663752], - [-12.127159, 8.664499], - [-12.128578, 8.664196], - [-12.128107, 8.665881], - [-12.127994, 8.666189], - [-12.131249, 8.66674], - [-12.131249, 8.672082], - [-12.127916, 8.676249], - [-12.121497, 8.67625], - [-12.121932, 8.676537], - [-12.123158, 8.678452], - [-12.123679, 8.678679], - [-12.123891, 8.680312], - [-12.123827, 8.681931], - [-12.123192, 8.683428], - [-12.122351, 8.683285], - [-12.121894, 8.684748], - [-12.121782, 8.685306], - [-12.121635, 8.685552], - [-12.121443, 8.685584], - [-12.121521, 8.685771], - [-12.121606, 8.686133], - [-12.121628, 8.686414], - [-12.121626, 8.686416], - [-12.121645, 8.686707], - [-12.121652, 8.686712], - [-12.121679, 8.687063], - [-12.122939, 8.706078], - [-12.123182, 8.70937], - [-12.121335, 8.710339], - [-12.119861, 8.711484], - [-12.118509, 8.711937], - [-12.118422, 8.711932], - [-12.120416, 8.717917], - [-12.120416, 8.720416], - [-12.110062, 8.721567], - [-12.110152, 8.721635], - [-12.110833, 8.721884], - [-12.1119, 8.722742], - [-12.112871, 8.723861], - [-12.11278, 8.724317], - [-12.111665, 8.726407], - [-12.111622, 8.726702], - [-12.111829, 8.727255], - [-12.110967, 8.72875], - [-12.105536, 8.728751], - [-12.107917, 8.732082], - [-12.114582, 8.735416], - [-12.115417, 8.737082], - [-12.117082, 8.737083], - [-12.11625, 8.738749], - [-12.115417, 8.73875], - [-12.112917, 8.740417], - [-12.109583, 8.748749], - [-12.114477, 8.752246], - [-12.114205, 8.752398], - [-12.112917, 8.752499], - [-12.102917, 8.758749], - [-12.102917, 8.760416], - [-12.10625, 8.764582], - [-12.108749, 8.765417], - [-12.109583, 8.767916], - [-12.113749, 8.771249], - [-12.118027, 8.77125], - [-12.116658, 8.773625], - [-12.120564, 8.78039], - [-12.128377, 8.780391], - [-12.131673, 8.786103], - [-12.131179, 8.786528], - [-12.131105, 8.786962], - [-12.130838, 8.787294], - [-12.128534, 8.788003], - [-12.12839, 8.788321], - [-12.128415, 8.789675], - [-12.128228, 8.790195], - [-12.127268, 8.790217], - [-12.126805, 8.790539], - [-12.125962, 8.790501], - [-12.12521, 8.790805], - [-12.124857, 8.790725], - [-12.124475, 8.790935], - [-12.126303, 8.791545], - [-12.12647, 8.79147], - [-12.130131, 8.79513], - [-12.131222, 8.795131], - [-12.132571, 8.797468], - [-12.132672, 8.797355], - [-12.134126, 8.796975], - [-12.134478, 8.801543], - [-12.134877, 8.801228], - [-12.135585, 8.801135], - [-12.138504, 8.801395], - [-12.1421, 8.798499], - [-12.146399, 8.7964], - [-12.146555, 8.79629], - [-12.1491, 8.794499], - [-12.1517, 8.792199], - [-12.154899, 8.7888], - [-12.156999, 8.7857], - [-12.1585, 8.782499], - [-12.160799, 8.7782], - [-12.1621, 8.774999], - [-12.164399, 8.7708], - [-12.1657, 8.767599], - [-12.168099, 8.7633], - [-12.170099, 8.7592], - [-12.1741, 8.754199], - [-12.176799, 8.749], - [-12.179199, 8.7447], - [-12.1805, 8.741499], - [-12.1828, 8.737299], - [-12.1841, 8.734099], - [-12.1865, 8.728899], - [-12.1878, 8.722899], - [-12.190099, 8.716699], - [-12.189844, 8.714789] - ] - ], - "type": "Polygon" - }, - "id": 349, - "properties": { - "cc:admin:id": ["8"], - "cc:oBld:total": 122, - "cc:pop:fifteen-to-twenty-four": 576.1167582789794, - "cc:pop:grid3-total": 4966.824395512495, - "cc:pop:kontur-total": 3244.407409313504, - "cc:pop:men": 1523.6686981922223, - "cc:pop:sixty-plus": 185.34419794382293, - "cc:pop:total": 3209.6101448177747, - "cc:pop:under-five": 523.3090982244062, - "cc:pop:women": 1685.9414466255514, - "cc:pop:women-fiften-to-forty-nine": 797.3776667785564, - "cc:pop:wp-total": 2410.2011748557475, - "cc:pop:wp-total-UN": 2790.6035566007204, - "cc:id": "349", - "cc:Name": "Manewa MCHP", - "cc:site": [-12.1419, 8.703], - "user:parentName": "Malal Mara", - "user:code": "OU_268189", - "user:orgUnitId": "CTnuuI55SOj", - "user:level": "4", - "user:parentId": "EVkm2xYcf6Z" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.156691, 8.93709], - [-12.155061, 8.935761], - [-12.154149, 8.934257], - [-12.153865, 8.934032], - [-12.154582, 8.925417], - [-12.15198, 8.922163], - [-12.151884, 8.922326], - [-12.147083, 8.919583], - [-12.137142, 8.925381], - [-12.137063, 8.925375], - [-12.134583, 8.920416], - [-12.135416, 8.912083], - [-12.134582, 8.911249], - [-12.130417, 8.909582], - [-12.129582, 8.90625], - [-12.128098, 8.904765], - [-12.129013, 8.90356], - [-12.124582, 8.902083], - [-12.118749, 8.903749], - [-12.11625, 8.90125], - [-12.116249, 8.899583], - [-12.111982, 8.899582], - [-12.112026, 8.897151], - [-12.111816, 8.896628], - [-12.108514, 8.893677], - [-12.108047, 8.893018], - [-12.107795, 8.892334], - [-12.107471, 8.891398], - [-12.105416, 8.892082], - [-12.102083, 8.892082], - [-12.101249, 8.890417], - [-12.099583, 8.890416], - [-12.099583, 8.88625], - [-12.105416, 8.884582], - [-12.103749, 8.87875], - [-12.099582, 8.87875], - [-12.097917, 8.880417], - [-12.097082, 8.884582], - [-12.092083, 8.88375], - [-12.08875, 8.887082], - [-12.085416, 8.88625], - [-12.08125, 8.887082], - [-12.080863, 8.88689], - [-12.079599, 8.89], - [-12.0754, 8.898199], - [-12.0738, 8.900399], - [-12.0711, 8.902999], - [-12.0689, 8.904599], - [-12.065794, 8.906091], - [-12.066249, 8.907916], - [-12.066249, 8.908749], - [-12.062916, 8.910417], - [-12.062083, 8.914582], - [-12.064582, 8.921249], - [-12.06375, 8.922083], - [-12.064582, 8.929582], - [-12.064583, 8.937082], - [-12.063749, 8.938749], - [-12.06125, 8.939583], - [-12.060998, 8.940087], - [-12.061502, 8.940454], - [-12.060417, 8.942083], - [-12.062082, 8.94958], - [-12.06208, 8.94958], - [-12.05625, 8.94375], - [-12.054583, 8.947083], - [-12.054583, 8.948749], - [-12.056249, 8.950417], - [-12.05375, 8.95375], - [-12.054583, 8.957916], - [-12.057916, 8.959582], - [-12.059582, 8.962082], - [-12.05375, 8.968749], - [-12.057082, 8.97125], - [-12.060416, 8.976249], - [-12.057154, 8.978859], - [-12.056307, 8.978723], - [-12.056087, 8.978714], - [-12.055582, 8.983764], - [-12.0586, 8.984699], - [-12.0622, 8.982899], - [-12.0645, 8.981199], - [-12.0672, 8.978599], - [-12.069099, 8.975499], - [-12.069799, 8.9718], - [-12.0697, 8.9642], - [-12.0699, 8.9606], - [-12.0714, 8.957699], - [-12.0766, 8.954299], - [-12.084899, 8.9506], - [-12.0883, 8.95], - [-12.0918, 8.9506], - [-12.097099, 8.952899], - [-12.102999, 8.954399], - [-12.107499, 8.956399], - [-12.1103, 8.957], - [-12.1132, 8.9573], - [-12.130099, 8.9573], - [-12.135, 8.956999], - [-12.1384, 8.955799], - [-12.145099, 8.9524], - [-12.147299, 8.9507], - [-12.150799, 8.9466], - [-12.1532, 8.941799], - [-12.156691, 8.93709] - ] - ], - "type": "Polygon" - }, - "id": 350, - "properties": { - "cc:admin:id": ["83"], - "cc:oBld:total": 228, - "cc:pop:fifteen-to-twenty-four": 1106.1183641293524, - "cc:pop:grid3-total": 3251.0925172304414, - "cc:pop:kontur-total": 5761.578406806161, - "cc:pop:men": 2857.416897095843, - "cc:pop:sixty-plus": 384.4979627926795, - "cc:pop:total": 6117.1742964687755, - "cc:pop:under-five": 988.2431116288208, - "cc:pop:women": 3259.757399372932, - "cc:pop:women-fiften-to-forty-nine": 1568.9332446405767, - "cc:pop:wp-total": 4636.25420793697, - "cc:pop:wp-total-UN": 5371.418026835293, - "cc:id": "350", - "cc:Name": "Mangay Loko MCHP", - "cc:site": [-12.0882, 8.9213], - "user:parentName": "Makari Gbanti", - "user:code": "OU_193265", - "user:orgUnitId": "gaOSAjPM07w", - "user:level": "4", - "user:parentId": "lY93YpCxJqf" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.888608, 8.86383], - [-12.884766, 8.867619], - [-12.883154, 8.869522], - [-12.882082, 8.867917], - [-12.877083, 8.870417], - [-12.877083, 8.870491], - [-12.877175, 8.870462], - [-12.877562, 8.870594], - [-12.877559, 8.871108], - [-12.876385, 8.872518], - [-12.874561, 8.874311], - [-12.872873, 8.87546], - [-12.871959, 8.876356], - [-12.871182, 8.876611], - [-12.870048, 8.877794], - [-12.869685, 8.877941], - [-12.872916, 8.878749], - [-12.873739, 8.879162], - [-12.870761, 8.882147], - [-12.866292, 8.88895], - [-12.86367, 8.886853], - [-12.860417, 8.893949], - [-12.860416, 8.899399], - [-12.859128, 8.900242], - [-12.854451, 8.90279], - [-12.852111, 8.904323], - [-12.850826, 8.905935], - [-12.84875, 8.905417], - [-12.851249, 8.912916], - [-12.8519, 8.914216], - [-12.852439, 8.914759], - [-12.852634, 8.915498], - [-12.852488, 8.916249], - [-12.84875, 8.916249], - [-12.847082, 8.912917], - [-12.840812, 8.912132], - [-12.839887, 8.909597], - [-12.839543, 8.908615], - [-12.838987, 8.907083], - [-12.833893, 8.907082], - [-12.833361, 8.90642], - [-12.83311, 8.908674], - [-12.833392, 8.909233], - [-12.833466, 8.910647], - [-12.833939, 8.911302], - [-12.833708, 8.911406], - [-12.832943, 8.910177], - [-12.832916, 8.910417], - [-12.832573, 8.91076], - [-12.832571, 8.91076], - [-12.832179, 8.909799], - [-12.831913, 8.909307], - [-12.830031, 8.90717], - [-12.828632, 8.905321], - [-12.826873, 8.902448], - [-12.826346, 8.901907], - [-12.825241, 8.901731], - [-12.825269, 8.902083], - [-12.825268, 8.902084], - [-12.823649, 8.9005], - [-12.823618, 8.900234], - [-12.822606, 8.899102], - [-12.822174, 8.899057], - [-12.819549, 8.89649], - [-12.819195, 8.89529], - [-12.818392, 8.89357], - [-12.817065, 8.891612], - [-12.816068, 8.889007], - [-12.816544, 8.88558], - [-12.816466, 8.884716], - [-12.817916, 8.883749], - [-12.818486, 8.88033], - [-12.818376, 8.880017], - [-12.815562, 8.876456], - [-12.814399, 8.875868], - [-12.812524, 8.87578], - [-12.811034, 8.876102], - [-12.809515, 8.87725], - [-12.806803, 8.880275], - [-12.808773, 8.882739], - [-12.807519, 8.883842], - [-12.806507, 8.883902], - [-12.805851, 8.884226], - [-12.802008, 8.887875], - [-12.80049, 8.889964], - [-12.800102, 8.891053], - [-12.800578, 8.891495], - [-12.800578, 8.8922], - [-12.80037, 8.892476], - [-12.798198, 8.891391], - [-12.798255, 8.891171], - [-12.798039, 8.891311], - [-12.797146, 8.890865], - [-12.796989, 8.891142], - [-12.795857, 8.892451], - [-12.795039, 8.893098], - [-12.794115, 8.893511], - [-12.790675, 8.898632], - [-12.79053, 8.900574], - [-12.793609, 8.901088], - [-12.793683, 8.904841], - [-12.794233, 8.908489], - [-12.794814, 8.909652], - [-12.794963, 8.910564], - [-12.79486, 8.913197], - [-12.795172, 8.913287], - [-12.795008, 8.915493], - [-12.794115, 8.915214], - [-12.793758, 8.915759], - [-12.794309, 8.917759], - [-12.794829, 8.918216], - [-12.795098, 8.918922], - [-12.795842, 8.920025], - [-12.795812, 8.920422], - [-12.795053, 8.920775], - [-12.793698, 8.920864], - [-12.792581, 8.921893], - [-12.791658, 8.922468], - [-12.791568, 8.922805], - [-12.791807, 8.924497], - [-12.793005, 8.926248], - [-12.793004, 8.92625], - [-12.791399, 8.92625], - [-12.792372, 8.927925], - [-12.793072, 8.928808], - [-12.793146, 8.929264], - [-12.792967, 8.929957], - [-12.792224, 8.931325], - [-12.792193, 8.933444], - [-12.791628, 8.935635], - [-12.790254, 8.938131], - [-12.793533, 8.9386], - [-12.792745, 8.940668], - [-12.7927, 8.942006], - [-12.792833, 8.94261], - [-12.791941, 8.944698], - [-12.791819, 8.945599], - [-12.791313, 8.947118], - [-12.79024, 8.948449], - [-12.78908, 8.949406], - [-12.786111, 8.95053], - [-12.782615, 8.951466], - [-12.781607, 8.951488], - [-12.780871, 8.949282], - [-12.779611, 8.949024], - [-12.769775, 8.956084], - [-12.769092, 8.955635], - [-12.767666, 8.956516], - [-12.767141, 8.957114], - [-12.766956, 8.958108], - [-12.764041, 8.9602], - [-12.763637, 8.960341], - [-12.763635, 8.96034], - [-12.763055, 8.955698], - [-12.762639, 8.955648], - [-12.761755, 8.955769], - [-12.759558, 8.956497], - [-12.756173, 8.959192], - [-12.754048, 8.960453], - [-12.75325, 8.96074], - [-12.750958, 8.962191], - [-12.748498, 8.964621], - [-12.746889, 8.965899], - [-12.746214, 8.96616], - [-12.745454, 8.966712], - [-12.745138, 8.96717], - [-12.744437, 8.967673], - [-12.741988, 8.970542], - [-12.741253, 8.973091], - [-12.741207, 8.973756], - [-12.742652, 8.97626], - [-12.744762, 8.97626], - [-12.744394, 8.975227], - [-12.74394, 8.9726], - [-12.745715, 8.970577], - [-12.746144, 8.970516], - [-12.746923, 8.969799], - [-12.747053, 8.969583], - [-12.748749, 8.969583], - [-12.749583, 8.970417], - [-12.757082, 8.972916], - [-12.760416, 8.972917], - [-12.762917, 8.976249], - [-12.770417, 8.97625], - [-12.774582, 8.977917], - [-12.777083, 8.980416], - [-12.782917, 8.97625], - [-12.787916, 8.977083], - [-12.787916, 8.983749], - [-12.785417, 8.984583], - [-12.78375, 8.987916], - [-12.787916, 8.989582], - [-12.787917, 8.989734], - [-12.78802, 8.989686], - [-12.78875, 8.996249], - [-12.79125, 8.99625], - [-12.795417, 9.001249], - [-12.797917, 9.002083], - [-12.799583, 9.005416], - [-12.800416, 9.005417], - [-12.802083, 9.006249], - [-12.804582, 9.006249], - [-12.805417, 8.99875], - [-12.810416, 8.999583], - [-12.810417, 9.003749], - [-12.812382, 9.00375], - [-12.812079, 9.004297], - [-12.812104, 9.005446], - [-12.812398, 9.006956], - [-12.812373, 9.008067], - [-12.81295, 9.008487], - [-12.813436, 9.008449], - [-12.814122, 9.008464], - [-12.81375, 9.009582], - [-12.815417, 9.013749], - [-12.817916, 9.01375], - [-12.817917, 9.014582], - [-12.819622, 9.016288], - [-12.821, 9.014699], - [-12.8249, 9.008499], - [-12.829299, 9.0024], - [-12.8324, 8.997199], - [-12.840199, 8.9876], - [-12.8434, 8.982399], - [-12.8477, 8.976399], - [-12.853199, 8.967], - [-12.857299, 8.9574], - [-12.8611, 8.949999], - [-12.8634, 8.946699], - [-12.870799, 8.9386], - [-12.873399, 8.9354], - [-12.879399, 8.9241], - [-12.8794, 8.923999], - [-12.882899, 8.9115], - [-12.8836, 8.907299], - [-12.883899, 8.901299], - [-12.8838, 8.8811], - [-12.884, 8.876699], - [-12.8846, 8.873699], - [-12.887599, 8.8661], - [-12.888608, 8.86383] - ] - ], - "type": "Polygon" - }, - "id": 351, - "properties": { - "cc:admin:id": ["13"], - "cc:oBld:total": 922, - "cc:pop:fifteen-to-twenty-four": 2358.7475198273064, - "cc:pop:grid3-total": 13819.18622035301, - "cc:pop:kontur-total": 13443.475747189295, - "cc:pop:men": 6176.793847760121, - "cc:pop:sixty-plus": 722.6503319083021, - "cc:pop:total": 13048.15200205932, - "cc:pop:under-five": 2022.7396775187374, - "cc:pop:women": 6871.358154299209, - "cc:pop:women-fiften-to-forty-nine": 3415.7383744058197, - "cc:pop:wp-total": 8645.181551446736, - "cc:pop:wp-total-UN": 10026.74282644902, - "cc:id": "351", - "cc:Name": "Mange CHC", - "cc:site": [-12.8567, 8.9244], - "user:parentName": "Bureh Kasseh Maconteh", - "user:code": "OU_255043", - "user:orgUnitId": "w3mBVfrWhXl", - "user:level": "4", - "user:parentId": "TA7NvKjsn4A" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.727083, 8.581249], - [-10.727082, 8.573749], - [-10.725416, 8.569584], - [-10.722917, 8.56875], - [-10.722916, 8.567084], - [-10.721249, 8.56625], - [-10.714583, 8.56875], - [-10.707376, 8.574355], - [-10.707375, 8.574354], - [-10.707508, 8.5736], - [-10.708469, 8.571823], - [-10.710106, 8.569524], - [-10.710129, 8.566688], - [-10.710308, 8.56584], - [-10.709362, 8.56561], - [-10.7068, 8.563987], - [-10.705684, 8.563756], - [-10.705452, 8.563652], - [-10.704794, 8.563644], - [-10.704237, 8.563746], - [-10.703493, 8.565102], - [-10.702293, 8.566325], - [-10.702035, 8.564272], - [-10.702271, 8.56375], - [-10.702083, 8.56375], - [-10.694583, 8.567916], - [-10.688749, 8.564584], - [-10.687916, 8.564583], - [-10.68375, 8.56375], - [-10.682916, 8.567083], - [-10.677083, 8.567083], - [-10.674583, 8.55875], - [-10.67375, 8.55875], - [-10.670957, 8.565731], - [-10.670956, 8.565732], - [-10.670861, 8.565674], - [-10.67072, 8.565642], - [-10.66875, 8.569583], - [-10.677082, 8.572084], - [-10.677082, 8.577916], - [-10.676249, 8.577917], - [-10.674583, 8.586249], - [-10.674582, 8.590416], - [-10.669583, 8.590417], - [-10.66875, 8.592916], - [-10.670416, 8.597083], - [-10.667917, 8.597917], - [-10.66625, 8.602083], - [-10.665417, 8.602084], - [-10.664583, 8.605416], - [-10.66375, 8.60625], - [-10.662917, 8.607917], - [-10.665417, 8.61625], - [-10.667083, 8.617916], - [-10.667794, 8.617917], - [-10.667907, 8.617398], - [-10.668515, 8.616232], - [-10.668809, 8.615863], - [-10.669582, 8.616249], - [-10.669583, 8.617084], - [-10.676544, 8.622652], - [-10.676543, 8.622653], - [-10.676495, 8.622665], - [-10.675906, 8.623098], - [-10.675636, 8.623766], - [-10.674529, 8.624862], - [-10.674058, 8.624983], - [-10.675417, 8.630416], - [-10.677082, 8.63125], - [-10.677083, 8.633749], - [-10.678641, 8.635826], - [-10.67973, 8.635227], - [-10.680771, 8.634977], - [-10.682086, 8.633688], - [-10.682103, 8.633222], - [-10.682387, 8.632905], - [-10.683314, 8.632716], - [-10.683328, 8.632539], - [-10.683658, 8.63229], - [-10.68381, 8.632343], - [-10.684315, 8.631603], - [-10.68508, 8.629406], - [-10.685485, 8.629362], - [-10.685938, 8.629016], - [-10.686308, 8.626677], - [-10.68631, 8.626677], - [-10.687082, 8.632083], - [-10.685417, 8.634583], - [-10.687083, 8.636249], - [-10.687917, 8.63625], - [-10.68875, 8.639583], - [-10.695416, 8.63875], - [-10.697082, 8.640416], - [-10.697081, 8.640417], - [-10.689583, 8.64375], - [-10.692082, 8.647916], - [-10.689583, 8.651249], - [-10.692082, 8.652916], - [-10.692917, 8.655416], - [-10.696189, 8.65607], - [-10.696495, 8.655589], - [-10.697039, 8.652609], - [-10.69875, 8.653749], - [-10.700416, 8.653749], - [-10.705463, 8.647982], - [-10.70541, 8.647922], - [-10.707916, 8.645416], - [-10.70375, 8.639584], - [-10.706249, 8.636249], - [-10.707082, 8.629584], - [-10.706249, 8.629583], - [-10.704039, 8.622216], - [-10.704074, 8.622225], - [-10.70375, 8.62125], - [-10.704583, 8.620416], - [-10.708749, 8.618749], - [-10.707083, 8.616249], - [-10.710416, 8.613749], - [-10.707083, 8.610417], - [-10.707916, 8.60875], - [-10.71125, 8.607084], - [-10.713749, 8.607084], - [-10.715417, 8.607916], - [-10.717082, 8.604583], - [-10.715417, 8.599584], - [-10.718749, 8.59875], - [-10.722082, 8.600416], - [-10.722916, 8.600416], - [-10.722231, 8.592871], - [-10.722447, 8.592797], - [-10.723336, 8.592822], - [-10.723483, 8.592729], - [-10.727082, 8.58625], - [-10.72625, 8.585416], - [-10.727083, 8.581249] - ] - ], - "type": "Polygon" - }, - "id": 352, - "properties": { - "cc:admin:id": ["125"], - "cc:oBld:total": 769, - "cc:pop:fifteen-to-twenty-four": 717.3726782917946, - "cc:pop:grid3-total": 6095.865287085639, - "cc:pop:kontur-total": 3205.46813915473, - "cc:pop:men": 1673.1807413877034, - "cc:pop:sixty-plus": 190.4749679214938, - "cc:pop:total": 3587.8633914589727, - "cc:pop:under-five": 598.1491823353506, - "cc:pop:women": 1914.68265007127, - "cc:pop:women-fiften-to-forty-nine": 926.4588298588218, - "cc:pop:wp-total": 2707.7741344757605, - "cc:pop:wp-total-UN": 3127.3940134729232, - "cc:id": "352", - "cc:Name": "Manjama MCHP", - "cc:site": [-10.6971, 8.6102], - "user:parentName": "Soa", - "user:code": "OU_233319", - "user:orgUnitId": "mMvt6zhCclb", - "user:level": "4", - "user:parentId": "iGHlidSFdpu" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.75375, 8.033749], - [-11.753749, 8.03125], - [-11.75125, 8.027917], - [-11.74625, 8.025416], - [-11.746249, 8.01625], - [-11.745417, 8.015416], - [-11.744582, 8.013749], - [-11.739582, 8.00875], - [-11.733749, 8.010416], - [-11.73125, 8.008749], - [-11.730416, 8.004584], - [-11.72928, 8.004205], - [-11.729017, 8.004583], - [-11.724583, 8.004583], - [-11.722916, 8.002084], - [-11.719583, 8.002917], - [-11.719582, 8.00375], - [-11.711303, 8.006008], - [-11.711487, 8.006622], - [-11.711314, 8.007091], - [-11.71151, 8.007386], - [-11.711368, 8.007725], - [-11.711988, 8.00852], - [-11.711765, 8.009089], - [-11.711335, 8.009626], - [-11.709583, 8.008749], - [-11.708749, 8.00625], - [-11.708476, 8.006067], - [-11.708313, 8.006413], - [-11.707492, 8.006369], - [-11.707407, 8.005943], - [-11.707102, 8.005625], - [-11.70686, 8.005145], - [-11.706865, 8.004994], - [-11.703749, 8.002917], - [-11.69625, 8.00625], - [-11.69125, 8.011249], - [-11.68875, 8.01125], - [-11.688419, 8.014217], - [-11.688139, 8.014314], - [-11.687648, 8.014167], - [-11.687485, 8.013607], - [-11.687067, 8.013759], - [-11.685317, 8.01369], - [-11.684954, 8.014013], - [-11.684779, 8.013987], - [-11.683784, 8.01336], - [-11.682593, 8.013262], - [-11.68197, 8.013301], - [-11.680533, 8.012254], - [-11.680103, 8.011842], - [-11.67802, 8.015447], - [-11.673861, 8.015448], - [-11.673108, 8.016403], - [-11.672077, 8.018147], - [-11.671348, 8.019495], - [-11.671217, 8.019983], - [-11.670416, 8.019583], - [-11.666249, 8.015417], - [-11.665416, 8.015416], - [-11.659583, 8.012917], - [-11.657917, 8.015416], - [-11.657083, 8.01625], - [-11.656249, 8.020417], - [-11.654583, 8.022084], - [-11.654583, 8.026249], - [-11.657916, 8.029584], - [-11.654583, 8.033749], - [-11.650417, 8.035417], - [-11.647083, 8.039583], - [-11.647083, 8.040416], - [-11.649204, 8.047485], - [-11.649581, 8.046886], - [-11.649582, 8.046886], - [-11.649583, 8.047123], - [-11.649798, 8.047497], - [-11.649583, 8.047871], - [-11.649583, 8.047917], - [-11.652917, 8.052083], - [-11.663749, 8.052917], - [-11.663749, 8.055416], - [-11.659583, 8.05625], - [-11.657083, 8.05875], - [-11.656368, 8.067334], - [-11.6587, 8.067199], - [-11.662399, 8.0665], - [-11.6679, 8.064299], - [-11.6728, 8.0637], - [-11.6779, 8.063699], - [-11.6813, 8.062799], - [-11.6857, 8.060799], - [-11.6924, 8.058999], - [-11.6968, 8.0572], - [-11.700099, 8.0572], - [-11.705299, 8.059199], - [-11.7103, 8.0605], - [-11.7156, 8.063], - [-11.7237, 8.0666], - [-11.7279, 8.0673], - [-11.7366, 8.0675], - [-11.7407, 8.0682], - [-11.745784, 8.070181], - [-11.747535, 8.068625], - [-11.743928, 8.062376], - [-11.747833, 8.055611], - [-11.749776, 8.05561], - [-11.74875, 8.054583], - [-11.74875, 8.052084], - [-11.752916, 8.047916], - [-11.752083, 8.039584], - [-11.752916, 8.037916], - [-11.752917, 8.037083], - [-11.75375, 8.033749] - ] - ], - "type": "Polygon" - }, - "id": 353, - "properties": { - "cc:admin:id": ["46"], - "cc:oBld:total": 206, - "cc:pop:fifteen-to-twenty-four": 224.76052657315807, - "cc:pop:grid3-total": 1545.3713108572333, - "cc:pop:kontur-total": 1158.1775925796196, - "cc:pop:men": 555.875343227882, - "cc:pop:sixty-plus": 74.87054161136834, - "cc:pop:total": 1149.9169205812236, - "cc:pop:under-five": 209.76030882622638, - "cc:pop:women": 594.0415773533415, - "cc:pop:women-fiften-to-forty-nine": 289.63085043759475, - "cc:pop:wp-total": 1515.6651907084995, - "cc:pop:wp-total-UN": 1751.3502454513916, - "cc:id": "353", - "cc:Name": "Manjama UMC CHC", - "cc:site": [-11.7289, 8.0145], - "user:parentName": "Kakua", - "user:code": "OU_969", - "user:orgUnitId": "Z9ny6QeqsgX", - "user:level": "4", - "user:parentId": "U6Kr7Gtpidn" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.227099, 8.107799], - [-12.2239, 8.1031], - [-12.2224, 8.1004], - [-12.221699, 8.097399], - [-12.2213, 8.092199], - [-12.221199, 8.0635], - [-12.217699, 8.062699], - [-12.213199, 8.060599], - [-12.207299, 8.059199], - [-12.202, 8.0568], - [-12.1985, 8.0561], - [-12.194, 8.056199], - [-12.191, 8.056999], - [-12.1871, 8.059099], - [-12.183899, 8.0604], - [-12.1787, 8.062999], - [-12.1736, 8.064199], - [-12.1683, 8.066399], - [-12.167628, 8.066571], - [-12.16625, 8.072083], - [-12.167083, 8.073749], - [-12.176249, 8.079584], - [-12.17625, 8.080417], - [-12.177082, 8.084583], - [-12.175417, 8.090416], - [-12.164583, 8.092084], - [-12.164582, 8.094584], - [-12.154583, 8.095417], - [-12.15375, 8.112916], - [-12.155417, 8.114583], - [-12.162082, 8.114584], - [-12.162083, 8.117916], - [-12.164582, 8.120417], - [-12.164583, 8.124583], - [-12.16125, 8.12625], - [-12.166249, 8.135416], - [-12.169582, 8.136249], - [-12.17125, 8.13375], - [-12.17375, 8.13625], - [-12.177916, 8.137083], - [-12.181249, 8.13625], - [-12.18125, 8.142083], - [-12.18375, 8.144583], - [-12.186249, 8.143749], - [-12.187917, 8.140417], - [-12.190857, 8.141592], - [-12.189, 8.1377], - [-12.1884, 8.1338], - [-12.1891, 8.1301], - [-12.1926, 8.124199], - [-12.196, 8.121799], - [-12.200899, 8.1179], - [-12.204099, 8.1163], - [-12.211299, 8.1154], - [-12.214599, 8.1145], - [-12.222099, 8.1109], - [-12.227099, 8.107799] - ] - ], - "type": "Polygon" - }, - "id": 354, - "properties": { - "cc:admin:id": ["60"], - "cc:oBld:total": 96, - "cc:pop:fifteen-to-twenty-four": 304.82633178956706, - "cc:pop:grid3-total": 2303.742045378382, - "cc:pop:kontur-total": 1574.424464791499, - "cc:pop:men": 826.6954840959713, - "cc:pop:sixty-plus": 112.12042136647275, - "cc:pop:total": 1734.592833407598, - "cc:pop:under-five": 284.7329971756341, - "cc:pop:women": 907.8973493116265, - "cc:pop:women-fiften-to-forty-nine": 446.35621119654877, - "cc:pop:wp-total": 1871.712100274145, - "cc:pop:wp-total-UN": 2171.2385747517696, - "cc:id": "354", - "cc:Name": "Manjeihun MCHP", - "cc:site": [-12.2155, 8.0889], - "user:parentName": "Kori", - "user:code": "OU_246998", - "user:orgUnitId": "J3wTSn87RP2", - "user:level": "4", - "user:parentId": "nV3OkyzF4US" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.012383, 9.202917], - [-12.012082, 9.202917], - [-12.007916, 9.204582], - [-12.005417, 9.204583], - [-12.002916, 9.202083], - [-11.997083, 9.205416], - [-11.996897, 9.205603], - [-11.996909, 9.205721], - [-11.99769, 9.206725], - [-11.997847, 9.207407], - [-11.998589, 9.208834], - [-11.998539, 9.212773], - [-11.998039, 9.212595], - [-11.996497, 9.211471], - [-11.995252, 9.210085], - [-11.995161, 9.210029], - [-11.994582, 9.212917], - [-11.987083, 9.21625], - [-11.985416, 9.221249], - [-11.977917, 9.22125], - [-11.97625, 9.222082], - [-11.975416, 9.22125], - [-11.964456, 9.222712], - [-11.96491, 9.22628], - [-11.964772, 9.227516], - [-11.960417, 9.23125], - [-11.959583, 9.235416], - [-11.958042, 9.236443], - [-11.95718, 9.235314], - [-11.955953, 9.230922], - [-11.954737, 9.2307], - [-11.953637, 9.230724], - [-11.94962, 9.231647], - [-11.948509, 9.2317], - [-11.952916, 9.241249], - [-11.952083, 9.244582], - [-11.95125, 9.245416], - [-11.94125, 9.240417], - [-11.941249, 9.24875], - [-11.938749, 9.249583], - [-11.936198, 9.250858], - [-11.935824, 9.250097], - [-11.935572, 9.248906], - [-11.935042, 9.248167], - [-11.93125, 9.247083], - [-11.92375, 9.254583], - [-11.92375, 9.256249], - [-11.927082, 9.25875], - [-11.927083, 9.262916], - [-11.939582, 9.270417], - [-11.939582, 9.277916], - [-11.931369, 9.276822], - [-11.931375, 9.276826], - [-11.932045, 9.277021], - [-11.932296, 9.277366], - [-11.934054, 9.278177], - [-11.935339, 9.279185], - [-11.936721, 9.279455], - [-11.93712, 9.279751], - [-11.938749, 9.279826], - [-11.938749, 9.282083], - [-11.935417, 9.286249], - [-11.937916, 9.287083], - [-11.93875, 9.293749], - [-11.945416, 9.297082], - [-11.94625, 9.298749], - [-11.948406, 9.299288], - [-11.948358, 9.299513], - [-11.948863, 9.299507], - [-11.952082, 9.302082], - [-11.954246, 9.306409], - [-11.954379, 9.306358], - [-11.95553, 9.306358], - [-11.956727, 9.306684], - [-11.9579, 9.303799], - [-11.960199, 9.2995], - [-11.9616, 9.296499], - [-11.9635, 9.293699], - [-11.966499, 9.2907], - [-11.9687, 9.289299], - [-11.971799, 9.288], - [-11.9754, 9.285999], - [-11.9792, 9.284299], - [-11.982, 9.282399], - [-11.9844, 9.279999], - [-11.9859, 9.277999], - [-11.9886, 9.272799], - [-11.9926, 9.267399], - [-11.9938, 9.265099], - [-11.9952, 9.259299], - [-11.9973, 9.256199], - [-12.002499, 9.2505], - [-12.004099, 9.2482], - [-12.005, 9.245999], - [-12.005399, 9.240599], - [-12.0052, 9.2305], - [-12.005699, 9.2266], - [-12.0079, 9.221299], - [-12.0094, 9.215399], - [-12.0116, 9.210099], - [-12.0123, 9.206699], - [-12.012419, 9.2031], - [-12.012383, 9.202917] - ] - ], - "type": "Polygon" - }, - "id": 355, - "properties": { - "cc:admin:id": ["7"], - "cc:oBld:total": 388, - "cc:pop:fifteen-to-twenty-four": 725.6362928856946, - "cc:pop:grid3-total": 4682.943440947906, - "cc:pop:kontur-total": 4447.092456665918, - "cc:pop:men": 1835.772496574588, - "cc:pop:sixty-plus": 236.98546962507424, - "cc:pop:total": 3979.7227279137646, - "cc:pop:under-five": 628.3301121866174, - "cc:pop:women": 2143.9502313391768, - "cc:pop:women-fiften-to-forty-nine": 1061.3979955335985, - "cc:pop:wp-total": 3313.2241786459567, - "cc:pop:wp-total-UN": 3847.599850533072, - "cc:id": "355", - "cc:Name": "Manjoro MCHP", - "cc:site": [-11.9738, 9.2684], - "user:parentName": "Biriwa", - "user:code": "OU_193237", - "user:orgUnitId": "Uwcj0mz78BV", - "user:level": "4", - "user:parentId": "fwH9ipvXde9" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.528493, 9.837446], - [-11.5283, 9.8291], - [-11.5276, 9.8258], - [-11.526499, 9.823799], - [-11.5231, 9.8195], - [-11.5218, 9.8176], - [-11.521099, 9.815499], - [-11.520699, 9.812699], - [-11.5205, 9.7992], - [-11.519799, 9.7956], - [-11.5152, 9.787], - [-11.5114, 9.7823], - [-11.510199, 9.780399], - [-11.509399, 9.778299], - [-11.508399, 9.774099], - [-11.506099, 9.768799], - [-11.504599, 9.762899], - [-11.5006, 9.7546], - [-11.498699, 9.750999], - [-11.497699, 9.747599], - [-11.497199, 9.742299], - [-11.496499, 9.739799], - [-11.494199, 9.734499], - [-11.493299, 9.727399], - [-11.492599, 9.724899], - [-11.490599, 9.720399], - [-11.489999, 9.717799], - [-11.4894, 9.7125], - [-11.4887, 9.71], - [-11.4864, 9.7047], - [-11.485199, 9.699599], - [-11.480799, 9.690499], - [-11.479099, 9.688299], - [-11.4751, 9.6841], - [-11.469499, 9.678899], - [-11.466799, 9.677099], - [-11.464699, 9.676399], - [-11.4588, 9.675], - [-11.455199, 9.673099], - [-11.4513, 9.6713], - [-11.449299, 9.669699], - [-11.4435, 9.6644], - [-11.440799, 9.662399], - [-11.436899, 9.660499], - [-11.4326, 9.6581], - [-11.429399, 9.656799], - [-11.4241, 9.6543], - [-11.4182, 9.6529], - [-11.4128, 9.6507], - [-11.407699, 9.649499], - [-11.404699, 9.648099], - [-11.3987, 9.6442], - [-11.3959, 9.650199], - [-11.394599, 9.6535], - [-11.3922, 9.658699], - [-11.3908, 9.664599], - [-11.3886, 9.669899], - [-11.387399, 9.6749], - [-11.385799, 9.6781], - [-11.381399, 9.6839], - [-11.3778, 9.691399], - [-11.3764, 9.697299], - [-11.374199, 9.7026], - [-11.373699, 9.7051], - [-11.373199, 9.7104], - [-11.372499, 9.7129], - [-11.370399, 9.7183], - [-11.369999, 9.7221], - [-11.3697, 9.727899], - [-11.369, 9.731599], - [-11.367099, 9.7361], - [-11.366599, 9.7386], - [-11.366, 9.743899], - [-11.3654, 9.746499], - [-11.363499, 9.751], - [-11.3629, 9.754599], - [-11.3627, 9.760499], - [-11.3621, 9.764199], - [-11.359899, 9.7701], - [-11.3592, 9.7751], - [-11.3592, 9.782899], - [-11.358934, 9.784456], - [-11.364422, 9.784457], - [-11.366179, 9.787499], - [-11.36625, 9.787082], - [-11.369583, 9.782916], - [-11.380416, 9.782083], - [-11.387082, 9.782083], - [-11.387917, 9.782917], - [-11.395416, 9.783749], - [-11.39875, 9.782083], - [-11.407082, 9.785417], - [-11.410417, 9.792916], - [-11.414582, 9.792083], - [-11.41625, 9.792082], - [-11.423749, 9.79125], - [-11.42625, 9.792916], - [-11.432916, 9.793749], - [-11.432828, 9.794102], - [-11.433583, 9.79541], - [-11.434582, 9.795411], - [-11.434583, 9.798749], - [-11.437917, 9.802916], - [-11.448749, 9.803749], - [-11.44875, 9.804582], - [-11.449583, 9.805416], - [-11.458749, 9.805417], - [-11.459583, 9.80625], - [-11.46125, 9.811249], - [-11.467916, 9.810417], - [-11.47125, 9.809583], - [-11.471977, 9.809948], - [-11.471092, 9.811691], - [-11.470794, 9.811925], - [-11.47125, 9.813749], - [-11.483749, 9.812083], - [-11.485417, 9.814582], - [-11.487916, 9.815417], - [-11.487916, 9.818749], - [-11.487082, 9.819583], - [-11.48625, 9.826249], - [-11.488749, 9.827083], - [-11.487917, 9.830416], - [-11.493634, 9.832323], - [-11.493634, 9.832324], - [-11.493511, 9.832372], - [-11.491367, 9.832764], - [-11.491074, 9.833048], - [-11.491474, 9.833608], - [-11.493421, 9.833899], - [-11.49375, 9.832916], - [-11.498749, 9.829583], - [-11.505417, 9.833749], - [-11.512917, 9.830417], - [-11.51375, 9.830417], - [-11.51625, 9.832082], - [-11.522082, 9.829583], - [-11.522083, 9.839582], - [-11.528493, 9.837446] - ] - ], - "type": "Polygon" - }, - "id": 356, - "properties": { - "cc:admin:id": ["19"], - "cc:oBld:total": 55, - "cc:pop:fifteen-to-twenty-four": 572.3690708784742, - "cc:pop:grid3-total": 2619.974260973715, - "cc:pop:kontur-total": 3272.2902859229166, - "cc:pop:men": 1579.1068177245263, - "cc:pop:sixty-plus": 208.30841009115534, - "cc:pop:total": 3215.7889874875186, - "cc:pop:under-five": 535.4666478313859, - "cc:pop:women": 1636.6821697629928, - "cc:pop:women-fiften-to-forty-nine": 840.6467611148495, - "cc:pop:wp-total": 3243.4913970516013, - "cc:pop:wp-total-UN": 3767.584852801028, - "cc:id": "356", - "cc:Name": "Manna MCHP", - "cc:site": [-11.4945, 9.7533], - "user:parentName": "Dembelia Sinkunia", - "user:code": "OU_226215", - "user:orgUnitId": "gowgzHWc8FT", - "user:level": "4", - "user:parentId": "Mr4au3jR9bt" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.132599, 7.982008], - [-12.132696, 7.980943], - [-12.132402, 7.978676], - [-12.132014, 7.977595], - [-12.131603, 7.977165], - [-12.130958, 7.976875], - [-12.128977, 7.97696], - [-12.12865, 7.976727], - [-12.128386, 7.976274], - [-12.129582, 7.972084], - [-12.130415, 7.972084], - [-12.130416, 7.97208], - [-12.130416, 7.957084], - [-12.125642, 7.957084], - [-12.1166, 7.957999], - [-12.112599, 7.9591], - [-12.1016, 7.963699], - [-12.094999, 7.9658], - [-12.0839, 7.969899], - [-12.0756, 7.975099], - [-12.0693, 7.978499], - [-12.060599, 7.9824], - [-12.056099, 7.9832], - [-12.042099, 7.9841], - [-12.039099, 7.9847], - [-12.034399, 7.9861], - [-12.03, 7.986799], - [-12.0098, 7.987599], - [-12.0054, 7.988399], - [-12.0007, 7.989799], - [-11.9978, 7.990299], - [-11.9843, 7.990799], - [-11.9799, 7.991199], - [-11.975999, 7.9926], - [-11.9726, 7.9957], - [-11.9713, 7.998399], - [-11.9752, 8.0018], - [-11.979499, 8.0051], - [-11.9806, 8.0071], - [-11.9817, 8.0111], - [-11.983, 8.0132], - [-11.986199, 8.017099], - [-11.987599, 8.019299], - [-11.991099, 8.025899], - [-11.9929, 8.0298], - [-11.9951, 8.0327], - [-12.001299, 8.039299], - [-12.002899, 8.041499], - [-12.0044, 8.0447], - [-12.006799, 8.048899], - [-12.0081, 8.0521], - [-12.010499, 8.056399], - [-12.0124, 8.0603], - [-12.014, 8.0624], - [-12.019899, 8.068199], - [-12.022599, 8.070499], - [-12.0295, 8.0754], - [-12.034299, 8.077799], - [-12.0382, 8.0795], - [-12.041799, 8.081499], - [-12.045, 8.0828], - [-12.049399, 8.084999], - [-12.054999, 8.087099], - [-12.0566, 8.089599], - [-12.073699, 8.089699], - [-12.079599, 8.0894], - [-12.0825, 8.088699], - [-12.0869, 8.086699], - [-12.090599, 8.0859], - [-12.0935, 8.0858], - [-12.097399, 8.085999], - [-12.097866, 8.0861], - [-12.099543, 8.083684], - [-12.100323, 8.081811], - [-12.10218, 8.075061], - [-12.102413, 8.072514], - [-12.1016, 8.064384], - [-12.10102, 8.061082], - [-12.098332, 8.049763], - [-12.097685, 8.043948], - [-12.097055, 8.040748], - [-12.096445, 8.040807], - [-12.09625, 8.040416], - [-12.097916, 8.037917], - [-12.09987, 8.037917], - [-12.101599, 8.037607], - [-12.102578, 8.036932], - [-12.103292, 8.035694], - [-12.103111, 8.034864], - [-12.104075, 8.034606], - [-12.106718, 8.030872], - [-12.107302, 8.030328], - [-12.106873, 8.029684], - [-12.107399, 8.029286], - [-12.108194, 8.028195], - [-12.108989, 8.028392], - [-12.110152, 8.027208], - [-12.111322, 8.024966], - [-12.113338, 8.022633], - [-12.11498, 8.020037], - [-12.114997, 8.019545], - [-12.114499, 8.018617], - [-12.113868, 8.018561], - [-12.113404, 8.018008], - [-12.112899, 8.016325], - [-12.112823, 8.015446], - [-12.112284, 8.014467], - [-12.112164, 8.013268], - [-12.112491, 8.012106], - [-12.112076, 8.011322], - [-12.112092, 8.01101], - [-12.110872, 8.009754], - [-12.110034, 8.009305], - [-12.109775, 8.009003], - [-12.109571, 8.007871], - [-12.110544, 8.006518], - [-12.110885, 8.00625], - [-12.10875, 8.006249], - [-12.108545, 8.00584], - [-12.109107, 8.005649], - [-12.110029, 8.004978], - [-12.111086, 8.004492], - [-12.111536, 8.003752], - [-12.112145, 8.001976], - [-12.113665, 8.000575], - [-12.115442, 7.99748], - [-12.116101, 7.995881], - [-12.117754, 7.993716], - [-12.119578, 7.992798], - [-12.120557, 7.992705], - [-12.121284, 7.992804], - [-12.121608, 7.993], - [-12.12274, 7.994404], - [-12.123117, 7.994632], - [-12.123478, 7.994675], - [-12.123873, 7.994499], - [-12.124821, 7.993684], - [-12.126145, 7.992162], - [-12.126229, 7.990996], - [-12.127181, 7.990188], - [-12.127896, 7.989166], - [-12.128905, 7.986541], - [-12.129339, 7.985912], - [-12.129433, 7.984972], - [-12.129105, 7.984019], - [-12.129152, 7.983461], - [-12.129363, 7.983159], - [-12.13029, 7.982556], - [-12.132266, 7.982335], - [-12.132599, 7.982008] - ] - ], - "type": "Polygon" - }, - "id": 357, - "properties": { - "cc:admin:id": ["16"], - "cc:oBld:total": 187, - "cc:pop:fifteen-to-twenty-four": 1163.3936738920393, - "cc:pop:grid3-total": 5345.480169350704, - "cc:pop:kontur-total": 6681.9773699920615, - "cc:pop:men": 3151.2228103520483, - "cc:pop:sixty-plus": 415.0958654221069, - "cc:pop:total": 6655.302707566023, - "cc:pop:under-five": 1066.3893044431043, - "cc:pop:women": 3504.0798972139737, - "cc:pop:women-fiften-to-forty-nine": 1737.2593619630975, - "cc:pop:wp-total": 5023.8049533797275, - "cc:pop:wp-total-UN": 5822.163930775121, - "cc:id": "357", - "cc:Name": "Mano CHC", - "cc:site": [-12.089, 8.0408], - "user:parentName": "Dasse", - "user:code": "OU_247019", - "user:orgUnitId": "va2lE4FiVVb", - "user:level": "4", - "user:parentId": "RndxKqQGzUl" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.159062, 7.488359], - [-11.153106, 7.488358], - [-11.1492, 7.481593], - [-11.153106, 7.474827], - [-11.1492, 7.468061], - [-11.153106, 7.461295], - [-11.1492, 7.45453], - [-11.148529, 7.454529], - [-11.148819, 7.45343], - [-11.148111, 7.452803], - [-11.148184, 7.452521], - [-11.148939, 7.452374], - [-11.149289, 7.451771], - [-11.149211, 7.451282], - [-11.149478, 7.451069], - [-11.150541, 7.45085], - [-11.150735, 7.450943], - [-11.151198, 7.44446], - [-11.149199, 7.440998], - [-11.141387, 7.440997], - [-11.137482, 7.434231], - [-11.141387, 7.427466], - [-11.137482, 7.4207], - [-11.129669, 7.420699], - [-11.125763, 7.413935], - [-11.129668, 7.407169], - [-11.125763, 7.400402], - [-11.129668, 7.393637], - [-11.125763, 7.38687], - [-11.129668, 7.380105], - [-11.125762, 7.37334], - [-11.11795, 7.373339], - [-11.116397, 7.370649], - [-11.117068, 7.369997], - [-11.121243, 7.367165], - [-11.122641, 7.367042], - [-11.123701, 7.36625], - [-11.125205, 7.364287], - [-11.125606, 7.363235], - [-11.127499, 7.360798], - [-11.128133, 7.359169], - [-11.12691, 7.3589], - [-11.126171, 7.361096], - [-11.124238, 7.364211], - [-11.121966, 7.36619], - [-11.120523, 7.366343], - [-11.11656, 7.369296], - [-11.114841, 7.369891], - [-11.113904, 7.371489], - [-11.113259, 7.373027], - [-11.113873, 7.37379], - [-11.114072, 7.374626], - [-11.11375, 7.375952], - [-11.11309, 7.376621], - [-11.111554, 7.376668], - [-11.109559, 7.377262], - [-11.105259, 7.381936], - [-11.102449, 7.386262], - [-11.102449, 7.386809], - [-11.103323, 7.388379], - [-11.103062, 7.389688], - [-11.102111, 7.390723], - [-11.100713, 7.39086], - [-11.099269, 7.390281], - [-11.097273, 7.389003], - [-11.096521, 7.389049], - [-11.092098, 7.392383], - [-11.089781, 7.392227], - [-11.086079, 7.391647], - [-11.08759, 7.389027], - [-11.083699, 7.39], - [-11.077199, 7.39], - [-11.071999, 7.3913], - [-11.065599, 7.3946], - [-11.055899, 7.3991], - [-11.0467, 7.406299], - [-11.0396, 7.412699], - [-11.036999, 7.4173], - [-11.0312, 7.420499], - [-11.0273, 7.4244], - [-11.029199, 7.4302], - [-11.027299, 7.431499], - [-11.0221, 7.4257], - [-11.0208, 7.433499], - [-11.0204, 7.4336], - [-11.0204, 7.433799], - [-11.024599, 7.436699], - [-11.026199, 7.438499], - [-11.029799, 7.446099], - [-11.0305, 7.4497], - [-11.030699, 7.458399], - [-11.031299, 7.462699], - [-11.033699, 7.468399], - [-11.0345, 7.472], - [-11.034699, 7.476899], - [-11.034699, 7.4817], - [-11.034099, 7.4854], - [-11.031599, 7.4921], - [-11.0311, 7.4963], - [-11.0311, 7.503999], - [-11.030799, 7.5074], - [-11.030099, 7.5095], - [-11.0282, 7.512999], - [-11.026899, 7.5162], - [-11.0245, 7.520399], - [-11.023199, 7.5236], - [-11.021, 7.527999], - [-11.019599, 7.5339], - [-11.017999, 7.537], - [-11.014499, 7.5413], - [-11.01, 7.550399], - [-11.008299, 7.557099], - [-11.006299, 7.5602], - [-11.0017, 7.565099], - [-11, 7.567299], - [-10.998899, 7.5694], - [-10.997199, 7.5757], - [-10.995299, 7.5788], - [-10.99, 7.584499], - [-10.9878, 7.587499], - [-10.986, 7.591299], - [-10.984, 7.594899], - [-10.982699, 7.5981], - [-10.980599, 7.6025], - [-10.9788, 7.611399], - [-10.983299, 7.609], - [-10.9876, 7.606499], - [-10.9907, 7.605099], - [-10.994299, 7.6032], - [-10.9964, 7.602499], - [-10.9997, 7.602099], - [-11.007499, 7.602], - [-11.011699, 7.6015], - [-11.017499, 7.5992], - [-11.02, 7.5988], - [-11.023499, 7.599], - [-11.0297, 7.6015], - [-11.0335, 7.6021], - [-11.0384, 7.602099], - [-11.042199, 7.6016], - [-11.047899, 7.5991], - [-11.0528, 7.5983], - [-11.058699, 7.598499], - [-11.0626, 7.5994], - [-11.070399, 7.603399], - [-11.076799, 7.608399], - [-11.081999, 7.611199], - [-11.082074, 7.611258], - [-11.084582, 7.608749], - [-11.084583, 7.602917], - [-11.085416, 7.601249], - [-11.084583, 7.598749], - [-11.087083, 7.59375], - [-11.091249, 7.592083], - [-11.090417, 7.587084], - [-11.095416, 7.588749], - [-11.097083, 7.586249], - [-11.103749, 7.584583], - [-11.104583, 7.582083], - [-11.110416, 7.580416], - [-11.112916, 7.565417], - [-11.111486, 7.565286], - [-11.109373, 7.561624], - [-11.112164, 7.556788], - [-11.115416, 7.557083], - [-11.117641, 7.554859], - [-11.120176, 7.554859], - [-11.121998, 7.556584], - [-11.12375, 7.555417], - [-11.128749, 7.555416], - [-11.12875, 7.552084], - [-11.129756, 7.55074], - [-11.128264, 7.548155], - [-11.132169, 7.54139], - [-11.137082, 7.541389], - [-11.137083, 7.53625], - [-11.13765, 7.53554], - [-11.142238, 7.535539], - [-11.143241, 7.533802], - [-11.141638, 7.531676], - [-11.142916, 7.53125], - [-11.149297, 7.534252], - [-11.153199, 7.527494], - [-11.154998, 7.527493], - [-11.152916, 7.517084], - [-11.15125, 7.517083], - [-11.151604, 7.512824], - [-11.151606, 7.512823], - [-11.153107, 7.515421], - [-11.158547, 7.515421], - [-11.155417, 7.512916], - [-11.154583, 7.50125], - [-11.158749, 7.497083], - [-11.15875, 7.48875], - [-11.159062, 7.488359] - ] - ], - "type": "Polygon" - }, - "id": 359, - "properties": { - "cc:admin:id": ["138"], - "cc:oBld:total": 1238, - "cc:pop:fifteen-to-twenty-four": 1831.9215101000116, - "cc:pop:grid3-total": 12593.178505676688, - "cc:pop:kontur-total": 10856.445721786777, - "cc:pop:men": 4488.941187628743, - "cc:pop:sixty-plus": 584.3238517774412, - "cc:pop:total": 9398.991818015942, - "cc:pop:under-five": 1422.7030320759159, - "cc:pop:women": 4910.050630387202, - "cc:pop:women-fiften-to-forty-nine": 2419.7391303184204, - "cc:pop:wp-total": 9964.545999101492, - "cc:pop:wp-total-UN": 11548.430009082138, - "cc:id": "359", - "cc:Name": "Mano Njeigbla CHP", - "cc:site": [-11.0995, 7.5238], - "user:parentName": "Tunkia", - "user:code": "OU_222638", - "user:orgUnitId": "Fbq6Vxa4MIx", - "user:level": "4", - "user:parentId": "l7pFejMtUoF" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.740799, 7.725599], - [-11.740199, 7.723399], - [-11.738699, 7.720699], - [-11.7373, 7.7176], - [-11.7325, 7.7091], - [-11.7281, 7.7037], - [-11.725099, 7.698399], - [-11.72, 7.6918], - [-11.7188, 7.6884], - [-11.7186, 7.683399], - [-11.719099, 7.678], - [-11.7215, 7.672299], - [-11.7221, 7.669599], - [-11.722599, 7.6641], - [-11.723199, 7.6598], - [-11.721799, 7.654599], - [-11.716899, 7.641], - [-11.713099, 7.6448], - [-11.709, 7.648299], - [-11.706799, 7.6495], - [-11.703299, 7.6503], - [-11.696, 7.650499], - [-11.6925, 7.651099], - [-11.685, 7.654699], - [-11.681399, 7.6567], - [-11.678999, 7.6575], - [-11.674599, 7.6584], - [-11.668599, 7.661], - [-11.663499, 7.6621], - [-11.6578, 7.664599], - [-11.655699, 7.665], - [-11.6474, 7.665399], - [-11.6447, 7.665799], - [-11.6387, 7.668399], - [-11.633499, 7.6695], - [-11.6284, 7.671999], - [-11.625199, 7.6733], - [-11.616299, 7.6781], - [-11.613499, 7.6804], - [-11.6049, 7.689099], - [-11.6016, 7.692199], - [-11.598599, 7.6943], - [-11.594799, 7.6963], - [-11.591999, 7.6984], - [-11.5853, 7.704499], - [-11.5814, 7.707199], - [-11.5788, 7.711099], - [-11.575799, 7.7145], - [-11.5574, 7.733099], - [-11.5533, 7.736999], - [-11.550399, 7.739], - [-11.546499, 7.741], - [-11.543799, 7.7431], - [-11.5384, 7.748099], - [-11.5355, 7.750199], - [-11.5317, 7.751899], - [-11.5281, 7.753899], - [-11.524799, 7.7555], - [-11.5221, 7.7581], - [-11.5203, 7.761799], - [-11.5189, 7.763899], - [-11.516, 7.766899], - [-11.513199, 7.7688], - [-11.509499, 7.7707], - [-11.5064, 7.773099], - [-11.4952, 7.784199], - [-11.492999, 7.787], - [-11.490199, 7.7923], - [-11.4882, 7.794999], - [-11.4864, 7.796799], - [-11.484399, 7.7983], - [-11.4765, 7.801999], - [-11.4743, 7.8025], - [-11.473199, 7.8089], - [-11.4714, 7.822699], - [-11.471599, 7.829499], - [-11.4725, 7.835099], - [-11.477428, 7.835857], - [-11.477207, 7.835285], - [-11.478234, 7.834454], - [-11.480245, 7.832817], - [-11.482105, 7.831549], - [-11.484416, 7.82961], - [-11.48672, 7.82826], - [-11.488258, 7.827091], - [-11.492291, 7.825708], - [-11.493022, 7.82508], - [-11.493437, 7.824428], - [-11.499579, 7.825445], - [-11.500494, 7.825383], - [-11.50125, 7.817084], - [-11.503749, 7.815417], - [-11.506305, 7.815416], - [-11.505005, 7.813163], - [-11.506843, 7.80998], - [-11.512082, 7.810416], - [-11.514583, 7.80875], - [-11.518244, 7.809031], - [-11.52063, 7.813163], - [-11.528442, 7.813164], - [-11.532348, 7.806398], - [-11.539594, 7.806397], - [-11.539583, 7.806249], - [-11.540884, 7.803648], - [-11.54637, 7.803648], - [-11.550276, 7.810414], - [-11.552918, 7.810413], - [-11.556249, 7.807083], - [-11.557083, 7.80125], - [-11.565416, 7.80125], - [-11.569582, 7.804583], - [-11.569583, 7.79625], - [-11.572053, 7.793162], - [-11.57194, 7.793059], - [-11.572917, 7.792084], - [-11.574583, 7.79125], - [-11.583749, 7.79125], - [-11.585058, 7.79234], - [-11.583433, 7.789523], - [-11.587339, 7.782759], - [-11.595152, 7.782759], - [-11.599057, 7.789523], - [-11.597141, 7.792844], - [-11.598292, 7.791405], - [-11.598685, 7.792081], - [-11.604193, 7.792081], - [-11.604372, 7.790353], - [-11.603481, 7.787918], - [-11.603482, 7.787917], - [-11.61125, 7.787917], - [-11.616249, 7.789583], - [-11.618515, 7.792755], - [-11.622073, 7.786593], - [-11.624092, 7.786592], - [-11.623854, 7.786354], - [-11.623855, 7.786353], - [-11.630129, 7.786352], - [-11.634035, 7.779587], - [-11.641848, 7.779586], - [-11.642083, 7.77918], - [-11.642083, 7.776251], - [-11.642084, 7.776251], - [-11.642207, 7.776349], - [-11.645962, 7.776348], - [-11.649869, 7.769584], - [-11.654304, 7.769583], - [-11.654583, 7.767916], - [-11.654583, 7.759584], - [-11.662916, 7.760416], - [-11.662917, 7.754584], - [-11.673753, 7.754584], - [-11.673941, 7.754262], - [-11.676249, 7.755416], - [-11.68125, 7.749584], - [-11.687916, 7.753749], - [-11.690416, 7.754583], - [-11.69125, 7.749583], - [-11.69125, 7.74375], - [-11.695416, 7.742083], - [-11.694828, 7.739729], - [-11.694878, 7.739711], - [-11.695023, 7.739674], - [-11.696897, 7.739208], - [-11.6981, 7.739413], - [-11.699462, 7.740127], - [-11.699673, 7.74], - [-11.699805, 7.740241], - [-11.699877, 7.740375], - [-11.700739, 7.740383], - [-11.700818, 7.740304], - [-11.700878, 7.740422], - [-11.701654, 7.742852], - [-11.701544, 7.74317], - [-11.703193, 7.744864], - [-11.70375, 7.742084], - [-11.709582, 7.739583], - [-11.710417, 7.737917], - [-11.714583, 7.737916], - [-11.71875, 7.737083], - [-11.720416, 7.735416], - [-11.720417, 7.728334], - [-11.726378, 7.728334], - [-11.730283, 7.735098], - [-11.729139, 7.737083], - [-11.732082, 7.737083], - [-11.736249, 7.732917], - [-11.737524, 7.73196], - [-11.738999, 7.7296], - [-11.740399, 7.727999], - [-11.740799, 7.725599] - ] - ], - "type": "Polygon" - }, - "id": 360, - "properties": { - "cc:admin:id": ["40"], - "cc:oBld:total": 1061, - "cc:pop:fifteen-to-twenty-four": 4067.9197054648143, - "cc:pop:grid3-total": 15762.665923140572, - "cc:pop:kontur-total": 22472.391441121094, - "cc:pop:men": 11109.53133766035, - "cc:pop:sixty-plus": 1673.6087776584777, - "cc:pop:total": 22859.935983250834, - "cc:pop:under-five": 3741.0351912558235, - "cc:pop:women": 11750.404645590488, - "cc:pop:women-fiften-to-forty-nine": 5574.296674952199, - "cc:pop:wp-total": 21782.05295696239, - "cc:pop:wp-total-UN": 25255.266504161504, - "cc:id": "360", - "cc:Name": "Mano-Jaiama CHP", - "cc:site": [-11.6135, 7.749], - "user:parentName": "Jaiama Bongor", - "user:code": "OU_822", - "user:orgUnitId": "hLGkoHmvBgI", - "user:level": "4", - "user:parentId": "daJPPxtIrQn" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.500199, 9.453999], - [-11.4989, 9.448199], - [-11.499, 9.4455], - [-11.5011, 9.440399], - [-11.501399, 9.4369], - [-11.5007, 9.4341], - [-11.4986, 9.43], - [-11.497199, 9.426799], - [-11.4947, 9.4226], - [-11.4933, 9.4194], - [-11.4909, 9.4151], - [-11.489499, 9.411999], - [-11.487, 9.4077], - [-11.485599, 9.404499], - [-11.4832, 9.4002], - [-11.481799, 9.397099], - [-11.4794, 9.3928], - [-11.477999, 9.389599], - [-11.475499, 9.385399], - [-11.474099, 9.382199], - [-11.4719, 9.3778], - [-11.4703, 9.372], - [-11.467999, 9.366699], - [-11.4662, 9.3599], - [-11.464199, 9.355499], - [-11.463499, 9.352899], - [-11.462899, 9.347599], - [-11.462299, 9.345099], - [-11.460299, 9.340599], - [-11.459699, 9.337999], - [-11.4586, 9.331], - [-11.456399, 9.325699], - [-11.455799, 9.323099], - [-11.4551, 9.3178], - [-11.4544, 9.3153], - [-11.452399, 9.310799], - [-11.451699, 9.307099], - [-11.4513, 9.3003], - [-11.4505, 9.2967], - [-11.448199, 9.291299], - [-11.447699, 9.288499], - [-11.4475, 9.2855], - [-11.4475, 9.2745], - [-11.4473, 9.2706], - [-11.446699, 9.267699], - [-11.444399, 9.261799], - [-11.443699, 9.257499], - [-11.4435, 9.2495], - [-11.4424, 9.2456], - [-11.440399, 9.243799], - [-11.4377, 9.2422], - [-11.434599, 9.240999], - [-11.4291, 9.239599], - [-11.425799, 9.237199], - [-11.4213, 9.229], - [-11.419999, 9.225799], - [-11.4177, 9.2214], - [-11.4162, 9.2156], - [-11.413799, 9.210299], - [-11.4122, 9.2072], - [-11.4106, 9.2049], - [-11.4046, 9.1985], - [-11.4027, 9.1958], - [-11.401899, 9.193699], - [-11.400899, 9.189499], - [-11.398599, 9.184199], - [-11.397099, 9.178399], - [-11.395299, 9.175199], - [-11.391472, 9.170417], - [-11.382083, 9.170416], - [-11.379766, 9.168678], - [-11.379981, 9.168315], - [-11.378749, 9.167083], - [-11.37375, 9.165417], - [-11.372486, 9.164152], - [-11.37074, 9.167175], - [-11.369978, 9.167176], - [-11.369977, 9.167174], - [-11.370416, 9.165417], - [-11.35375, 9.16375], - [-11.353749, 9.164582], - [-11.352916, 9.166249], - [-11.34875, 9.170416], - [-11.347916, 9.170417], - [-11.342917, 9.173749], - [-11.342083, 9.17375], - [-11.339583, 9.177083], - [-11.338749, 9.180417], - [-11.33625, 9.182916], - [-11.334583, 9.182917], - [-11.333749, 9.184583], - [-11.32125, 9.189583], - [-11.317916, 9.192916], - [-11.313749, 9.192916], - [-11.309582, 9.189583], - [-11.305417, 9.191249], - [-11.302917, 9.192083], - [-11.302916, 9.197082], - [-11.29625, 9.197083], - [-11.291, 9.199709], - [-11.291179, 9.200393], - [-11.291672, 9.201487], - [-11.292525, 9.202561], - [-11.291442, 9.204436], - [-11.28363, 9.204436], - [-11.280887, 9.199687], - [-11.275417, 9.201249], - [-11.273749, 9.20125], - [-11.267916, 9.202917], - [-11.257917, 9.203749], - [-11.255416, 9.202083], - [-11.249583, 9.20375], - [-11.246249, 9.207082], - [-11.239583, 9.207082], - [-11.234583, 9.205417], - [-11.23375, 9.205417], - [-11.23125, 9.207083], - [-11.229583, 9.210416], - [-11.229582, 9.212082], - [-11.227917, 9.215417], - [-11.227916, 9.217916], - [-11.225417, 9.21875], - [-11.22125, 9.22375], - [-11.222082, 9.227083], - [-11.216249, 9.23125], - [-11.210417, 9.231249], - [-11.207083, 9.22875], - [-11.205727, 9.224682], - [-11.206708, 9.22437], - [-11.206811, 9.22435], - [-11.20125, 9.219583], - [-11.201249, 9.219161], - [-11.201226, 9.21916], - [-11.19732, 9.212395], - [-11.19488, 9.212395], - [-11.194582, 9.21625], - [-11.184582, 9.217082], - [-11.182917, 9.215416], - [-11.182916, 9.213749], - [-11.174582, 9.20375], - [-11.170417, 9.204583], - [-11.167082, 9.209582], - [-11.165244, 9.210962], - [-11.162164, 9.205629], - [-11.154351, 9.205628], - [-11.150445, 9.198863], - [-11.142634, 9.198863], - [-11.138727, 9.205628], - [-11.130915, 9.205628], - [-11.128367, 9.201215], - [-11.138749, 9.200416], - [-11.142082, 9.196249], - [-11.142082, 9.187083], - [-11.137082, 9.182083], - [-11.12625, 9.182917], - [-11.124317, 9.185331], - [-11.119196, 9.185332], - [-11.118391, 9.186724], - [-11.11625, 9.184583], - [-11.111249, 9.189582], - [-11.10375, 9.192917], - [-11.104582, 9.194583], - [-11.102916, 9.199582], - [-11.101249, 9.199583], - [-11.092917, 9.203749], - [-11.09125, 9.202082], - [-11.091249, 9.196469], - [-11.090099, 9.1993], - [-11.088099, 9.2029], - [-11.0861, 9.207099], - [-11.083599, 9.209699], - [-11.0756, 9.213799], - [-11.072399, 9.2151], - [-11.064299, 9.2193], - [-11.060699, 9.2222], - [-11.0337, 9.249399], - [-11.0293, 9.253399], - [-11.027299, 9.2548], - [-11.0241, 9.256099], - [-11.020499, 9.2581], - [-11.0166, 9.259799], - [-11.013899, 9.2618], - [-11.011499, 9.2642], - [-11.009699, 9.2669], - [-11.007799, 9.2707], - [-11.005599, 9.2735], - [-11.0007, 9.278899], - [-10.9991, 9.281099], - [-10.9982, 9.283499], - [-10.997299, 9.2878], - [-10.995099, 9.293], - [-10.994499, 9.2965], - [-10.9944, 9.300099], - [-10.9977, 9.301], - [-11.0022, 9.3031], - [-11.006599, 9.303899], - [-11.009299, 9.3038], - [-11.0127, 9.302999], - [-11.0152, 9.301099], - [-11.0176, 9.2979], - [-11.0201, 9.2966], - [-11.0238, 9.2962], - [-11.0267, 9.2962], - [-11.029599, 9.296599], - [-11.031799, 9.297399], - [-11.033799, 9.298599], - [-11.0385, 9.3022], - [-11.0425, 9.303599], - [-11.050299, 9.303899], - [-11.053999, 9.304599], - [-11.061499, 9.308299], - [-11.0644, 9.3111], - [-11.067, 9.3156], - [-11.0699, 9.317899], - [-11.072399, 9.318599], - [-11.074999, 9.3185], - [-11.077499, 9.3178], - [-11.081, 9.315799], - [-11.087699, 9.3125], - [-11.090399, 9.3115], - [-11.0934, 9.3112], - [-11.099599, 9.3111], - [-11.103599, 9.311499], - [-11.106599, 9.312099], - [-11.111899, 9.314399], - [-11.1149, 9.3148], - [-11.12, 9.315], - [-11.13375, 9.314999], - [-11.166499, 9.3149], - [-11.172699, 9.315399], - [-11.1749, 9.316], - [-11.178499, 9.317899], - [-11.182399, 9.319599], - [-11.1853, 9.3212], - [-11.1891, 9.323], - [-11.191, 9.3246], - [-11.1926, 9.3265], - [-11.194399, 9.330199], - [-11.1961, 9.3331], - [-11.1978, 9.337], - [-11.200199, 9.341299], - [-11.201999, 9.345199], - [-11.204, 9.3488], - [-11.2054, 9.352], - [-11.2092, 9.3593], - [-11.212, 9.3623], - [-11.220099, 9.366399], - [-11.223399, 9.367799], - [-11.2258, 9.3693], - [-11.228, 9.3712], - [-11.232699, 9.376199], - [-11.234099, 9.378599], - [-11.2357, 9.3845], - [-11.238299, 9.389699], - [-11.2396, 9.3928], - [-11.2419, 9.3973], - [-11.2426, 9.4009], - [-11.242999, 9.408699], - [-11.244, 9.4122], - [-11.245899, 9.415799], - [-11.2473, 9.419], - [-11.249799, 9.423199], - [-11.2512, 9.4264], - [-11.253599, 9.430699], - [-11.2554, 9.4345], - [-11.2575, 9.4381], - [-11.261199, 9.446099], - [-11.262199, 9.453599], - [-11.2631, 9.456999], - [-11.2667, 9.462599], - [-11.269899, 9.463899], - [-11.273399, 9.4639], - [-11.276799, 9.4632], - [-11.281299, 9.4612], - [-11.283799, 9.4605], - [-11.289099, 9.4599], - [-11.292099, 9.4591], - [-11.2941, 9.457899], - [-11.299, 9.453999], - [-11.303, 9.451999], - [-11.307199, 9.4496], - [-11.3104, 9.448199], - [-11.3147, 9.445799], - [-11.3219, 9.4433], - [-11.332399, 9.445699], - [-11.3391, 9.4495], - [-11.339899, 9.451999], - [-11.3382, 9.455299], - [-11.3332, 9.460299], - [-11.331299, 9.4625], - [-11.3301, 9.4646], - [-11.3295, 9.467699], - [-11.329599, 9.472199], - [-11.3305, 9.475599], - [-11.3344, 9.4812], - [-11.3369, 9.482399], - [-11.339599, 9.482699], - [-11.3555, 9.4824], - [-11.3585, 9.4825], - [-11.362299, 9.483099], - [-11.3677, 9.4853], - [-11.3736, 9.4869], - [-11.3789, 9.4891], - [-11.3827, 9.4898], - [-11.3895, 9.4901], - [-11.393099, 9.490799], - [-11.3978, 9.4927], - [-11.4003, 9.4933], - [-11.405699, 9.493999], - [-11.408199, 9.494599], - [-11.413499, 9.496799], - [-11.4184, 9.497299], - [-11.4232, 9.496599], - [-11.4286, 9.494299], - [-11.4323, 9.493699], - [-11.440199, 9.4936], - [-11.444799, 9.493], - [-11.450199, 9.4909], - [-11.452699, 9.4902], - [-11.458099, 9.4897], - [-11.460599, 9.4891], - [-11.464999, 9.4869], - [-11.4682, 9.485499], - [-11.472499, 9.4831], - [-11.4756, 9.481799], - [-11.479899, 9.4793], - [-11.483, 9.477999], - [-11.4866, 9.476099], - [-11.4891, 9.4754], - [-11.494699, 9.475899], - [-11.4944, 9.4661], - [-11.4945, 9.463199], - [-11.4952, 9.460499], - [-11.496699, 9.458], - [-11.500199, 9.453999] - ] - ], - "type": "Polygon" - }, - "id": 362, - "properties": { - "cc:admin:id": ["99"], - "cc:oBld:total": 421, - "cc:pop:fifteen-to-twenty-four": 2100.154147313279, - "cc:pop:grid3-total": 25519.548522520363, - "cc:pop:kontur-total": 11950.220765661546, - "cc:pop:men": 5265.286325195799, - "cc:pop:sixty-plus": 691.6720542390011, - "cc:pop:total": 11329.712389361932, - "cc:pop:under-five": 1796.786813936149, - "cc:pop:women": 6064.426064166141, - "cc:pop:women-fiften-to-forty-nine": 3007.7029157915954, - "cc:pop:wp-total": 13161.214913952812, - "cc:pop:wp-total-UN": 15238.115636381917, - "cc:id": "362", - "cc:Name": "Mansadu MCHP", - "cc:site": [-11.33447, 9.40638], - "user:parentName": "Mongo", - "user:code": "OU_226246", - "user:orgUnitId": "GyH8bjdOTsD", - "user:level": "4", - "user:parentId": "OTFepb1k9Db" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.093099, 8.506999], - [-12.089999, 8.502499], - [-12.087499, 8.499599], - [-12.0814, 8.4934], - [-12.0779, 8.4897], - [-12.075299, 8.485899], - [-12.073499, 8.484399], - [-12.0679, 8.4816], - [-12.0629, 8.48], - [-12.061199, 8.478099], - [-12.060599, 8.475599], - [-12.0605, 8.4729], - [-12.0605, 8.4623], - [-12.060699, 8.4585], - [-12.0612, 8.455799], - [-12.063399, 8.4505], - [-12.063799, 8.447999], - [-12.063599, 8.444499], - [-12.0624, 8.439599], - [-12.063799, 8.4336], - [-12.0637, 8.4297], - [-12.062599, 8.4274], - [-12.060299, 8.4258], - [-12.0571, 8.4255], - [-12.052399, 8.427599], - [-12.048099, 8.428099], - [-12.0451, 8.427399], - [-12.039899, 8.4236], - [-12.037599, 8.4228], - [-12.035599, 8.4232], - [-12.0306, 8.425499], - [-12.028193, 8.426916], - [-12.026588, 8.429735], - [-12.025417, 8.431425], - [-12.025416, 8.43375], - [-12.019583, 8.436249], - [-12.012917, 8.433749], - [-12.010416, 8.43125], - [-12.007916, 8.432916], - [-12.002917, 8.43125], - [-11.999582, 8.432916], - [-11.99125, 8.432084], - [-11.990698, 8.434843], - [-11.990437, 8.434762], - [-11.990252, 8.434731], - [-11.988749, 8.44375], - [-11.987916, 8.443749], - [-11.985416, 8.43875], - [-11.983749, 8.437916], - [-11.982916, 8.434584], - [-11.98254, 8.434396], - [-11.978618, 8.436989], - [-11.977916, 8.432084], - [-11.975303, 8.433128], - [-11.975352, 8.433229], - [-11.975327, 8.433378], - [-11.972717, 8.434682], - [-11.971647, 8.434682], - [-11.967739, 8.427917], - [-11.962917, 8.427917], - [-11.962917, 8.432084], - [-11.962915, 8.432085], - [-11.959738, 8.426583], - [-11.954386, 8.426583], - [-11.954582, 8.428749], - [-11.942083, 8.42875], - [-11.93625, 8.43125], - [-11.935416, 8.435417], - [-11.927691, 8.437476], - [-11.926332, 8.433977], - [-11.926184, 8.43308], - [-11.925129, 8.431252], - [-11.921072, 8.431251], - [-11.921526, 8.430899], - [-11.921817, 8.429116], - [-11.921818, 8.428097], - [-11.922223, 8.426751], - [-11.92348, 8.426537], - [-11.922761, 8.425837], - [-11.921621, 8.425892], - [-11.920275, 8.422424], - [-11.920271, 8.422409], - [-11.91989, 8.422537], - [-11.91992, 8.422665], - [-11.921304, 8.426227], - [-11.919437, 8.428914], - [-11.918548, 8.429269], - [-11.917737, 8.429318], - [-11.916392, 8.429], - [-11.914594, 8.428267], - [-11.911567, 8.426685], - [-11.911662, 8.427072], - [-11.909897, 8.426077], - [-11.908562, 8.425503], - [-11.908004, 8.425454], - [-11.90875, 8.432916], - [-11.912916, 8.43375], - [-11.911881, 8.438929], - [-11.911731, 8.439062], - [-11.911791, 8.439376], - [-11.910737, 8.444647], - [-11.910328, 8.444656], - [-11.910318, 8.444653], - [-11.904583, 8.44875], - [-11.904582, 8.455416], - [-11.90375, 8.45625], - [-11.902917, 8.458749], - [-11.904583, 8.459584], - [-11.907082, 8.464584], - [-11.90375, 8.469584], - [-11.903749, 8.471616], - [-11.901656, 8.473667], - [-11.900948, 8.473932], - [-11.900371, 8.473507], - [-11.900121, 8.472989], - [-11.899704, 8.47283], - [-11.898461, 8.473666], - [-11.898181, 8.473519], - [-11.898021, 8.473083], - [-11.897303, 8.472764], - [-11.897291, 8.472288], - [-11.897066, 8.471916], - [-11.896627, 8.471927], - [-11.896239, 8.472331], - [-11.896294, 8.472817], - [-11.896937, 8.474027], - [-11.897152, 8.474876], - [-11.896969, 8.475672], - [-11.896037, 8.475162], - [-11.895562, 8.473965], - [-11.894803, 8.473434], - [-11.893902, 8.473655], - [-11.89375, 8.47375], - [-11.894582, 8.474584], - [-11.89375, 8.487083], - [-11.897082, 8.490417], - [-11.897082, 8.49625], - [-11.892916, 8.498749], - [-11.885417, 8.500417], - [-11.884583, 8.502083], - [-11.888193, 8.507859], - [-11.888597, 8.507614], - [-11.888598, 8.507615], - [-11.890417, 8.511249], - [-11.896249, 8.513749], - [-11.897916, 8.513749], - [-11.900416, 8.51125], - [-11.901249, 8.507918], - [-11.901251, 8.507918], - [-11.903749, 8.510417], - [-11.90375, 8.519583], - [-11.90875, 8.524583], - [-11.917082, 8.523749], - [-11.917917, 8.51875], - [-11.924582, 8.514584], - [-11.930416, 8.514584], - [-11.933749, 8.516249], - [-11.933239, 8.521355], - [-11.935156, 8.524674], - [-11.942591, 8.524675], - [-11.939583, 8.527084], - [-11.938937, 8.530314], - [-11.938984, 8.530396], - [-11.946796, 8.530397], - [-11.950171, 8.53624], - [-11.956249, 8.534583], - [-11.958749, 8.532917], - [-11.95875, 8.529583], - [-11.962082, 8.527916], - [-11.965417, 8.524584], - [-11.973749, 8.524584], - [-11.974582, 8.52625], - [-11.969583, 8.537084], - [-11.971634, 8.54255], - [-11.973547, 8.542101], - [-11.975198, 8.541841], - [-11.977302, 8.541841], - [-11.977916, 8.541633], - [-11.977917, 8.546249], - [-11.981249, 8.549583], - [-11.987916, 8.550417], - [-11.99186, 8.554361], - [-11.9938, 8.551799], - [-11.996599, 8.5492], - [-11.999999, 8.548099], - [-12.002499, 8.5397], - [-12.0056, 8.5343], - [-12.0074, 8.532799], - [-12.012199, 8.5301], - [-12.015999, 8.5283], - [-12.017999, 8.5269], - [-12.0213, 8.523699], - [-12.0249, 8.519099], - [-12.0273, 8.518099], - [-12.0301, 8.5177], - [-12.0342, 8.5177], - [-12.049, 8.517999], - [-12.052099, 8.5179], - [-12.055099, 8.5175], - [-12.0588, 8.515999], - [-12.063499, 8.5123], - [-12.0657, 8.511199], - [-12.069, 8.510499], - [-12.081199, 8.5104], - [-12.086499, 8.5098], - [-12.093099, 8.506999] - ] - ], - "type": "Polygon" - }, - "id": 363, - "properties": { - "cc:admin:id": ["36"], - "cc:oBld:total": 114, - "cc:pop:fifteen-to-twenty-four": 2346.5960395922434, - "cc:pop:grid3-total": 18299.390498796976, - "cc:pop:kontur-total": 14112.230460787538, - "cc:pop:men": 5878.659604482672, - "cc:pop:sixty-plus": 811.4821205632722, - "cc:pop:total": 12767.698501561254, - "cc:pop:under-five": 2015.2392721537994, - "cc:pop:women": 6889.038897078576, - "cc:pop:women-fiften-to-forty-nine": 3346.217791826306, - "cc:pop:wp-total": 15577.472376460348, - "cc:pop:wp-total-UN": 18070.60356498585, - "cc:id": "363", - "cc:Name": "Mansumana CHP", - "cc:site": [-11.9882, 8.4737], - "user:parentName": "Gbonkonlenken", - "user:code": "OU_268210", - "user:orgUnitId": "RVAkLOVWSWc", - "user:level": "4", - "user:parentId": "P69SId31eDp" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.960575, 8.809231], - [-11.959973, 8.809146], - [-11.958489, 8.808558], - [-11.957351, 8.808399], - [-11.957083, 8.808467], - [-11.957082, 8.807917], - [-11.954583, 8.805417], - [-11.954582, 8.79875], - [-11.945417, 8.798749], - [-11.945416, 8.797083], - [-11.943749, 8.79375], - [-11.941249, 8.79125], - [-11.937916, 8.789582], - [-11.936017, 8.78515], - [-11.937545, 8.783322], - [-11.939958, 8.783015], - [-11.940607, 8.782559], - [-11.940612, 8.782549], - [-11.938749, 8.782082], - [-11.936249, 8.779583], - [-11.927083, 8.779582], - [-11.923891, 8.77703], - [-11.923891, 8.777028], - [-11.924202, 8.776819], - [-11.924769, 8.775974], - [-11.927115, 8.773808], - [-11.928749, 8.772433], - [-11.92875, 8.772082], - [-11.929582, 8.767083], - [-11.924583, 8.767916], - [-11.92375, 8.767083], - [-11.925416, 8.762083], - [-11.91924, 8.759767], - [-11.919481, 8.759501], - [-11.918749, 8.752917], - [-11.915417, 8.747917], - [-11.915416, 8.747896], - [-11.91537, 8.74789], - [-11.912138, 8.749522], - [-11.91176, 8.750766], - [-11.911769, 8.752657], - [-11.911382, 8.753196], - [-11.910966, 8.753176], - [-11.910325, 8.755358], - [-11.910021, 8.75564], - [-11.909589, 8.755818], - [-11.908764, 8.755835], - [-11.907672, 8.755095], - [-11.90668, 8.753873], - [-11.905569, 8.753727], - [-11.904199, 8.7554], - [-11.8988, 8.764899], - [-11.897699, 8.7685], - [-11.8963, 8.776299], - [-11.8952, 8.779699], - [-11.893699, 8.7829], - [-11.889, 8.789999], - [-11.887799, 8.7932], - [-11.8872, 8.7967], - [-11.887899, 8.801199], - [-11.8892, 8.8043], - [-11.892699, 8.810699], - [-11.8937, 8.8146], - [-11.893999, 8.819899], - [-11.8936, 8.823699], - [-11.891499, 8.828], - [-11.890807, 8.845101], - [-11.897764, 8.845101], - [-11.901671, 8.838337], - [-11.908644, 8.838336], - [-11.90875, 8.837916], - [-11.91125, 8.835417], - [-11.912916, 8.835417], - [-11.91375, 8.837082], - [-11.917082, 8.837917], - [-11.921249, 8.841249], - [-11.922082, 8.841249], - [-11.922769, 8.835077], - [-11.923064, 8.835326], - [-11.923398, 8.835756], - [-11.928749, 8.83375], - [-11.929583, 8.841249], - [-11.932082, 8.843749], - [-11.934583, 8.840416], - [-11.937082, 8.832083], - [-11.935638, 8.832082], - [-11.936539, 8.830521], - [-11.942325, 8.83052], - [-11.942917, 8.828749], - [-11.948749, 8.827916], - [-11.951249, 8.825416], - [-11.95125, 8.82375], - [-11.953749, 8.823749], - [-11.955416, 8.812917], - [-11.960575, 8.809231] - ] - ], - "type": "Polygon" - }, - "id": 364, - "properties": { - "cc:admin:id": ["106"], - "cc:oBld:total": 117, - "cc:pop:fifteen-to-twenty-four": 589.0112013700708, - "cc:pop:grid3-total": 3515.822129734147, - "cc:pop:kontur-total": 3173.153264110274, - "cc:pop:men": 1451.285063450132, - "cc:pop:sixty-plus": 184.3785409931301, - "cc:pop:total": 3164.442488848442, - "cc:pop:under-five": 503.5258581461282, - "cc:pop:women": 1713.1574253983097, - "cc:pop:women-fiften-to-forty-nine": 851.1224068337737, - "cc:pop:wp-total": 2841.495251108387, - "cc:pop:wp-total-UN": 3292.605975716285, - "cc:id": "364", - "cc:Name": "Mapaki CHC", - "cc:site": [-11.9078, 8.7882], - "user:parentName": "Paki Masabong", - "user:code": "OU_193301", - "user:orgUnitId": "mshIal30ffW", - "user:level": "4", - "user:parentId": "L8iA6eLwKNb" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.105292, 8.751664], - [-13.101385, 8.744898], - [-13.096172, 8.744897], - [-13.09625, 8.744582], - [-13.096249, 8.74375], - [-13.095416, 8.742917], - [-13.085417, 8.739583], - [-13.082917, 8.741249], - [-13.081686, 8.738175], - [-13.080306, 8.738538], - [-13.07961, 8.738736], - [-13.079201, 8.737871], - [-13.078967, 8.737747], - [-13.079155, 8.737295], - [-13.079041, 8.736639], - [-13.080038, 8.735492], - [-13.080413, 8.734741], - [-13.080191, 8.73389], - [-13.077946, 8.732453], - [-13.077203, 8.732481], - [-13.075205, 8.73375], - [-13.072113, 8.728393], - [-13.07375, 8.727082], - [-13.074582, 8.715417], - [-13.073749, 8.714583], - [-13.062917, 8.717916], - [-13.062083, 8.714583], - [-13.062916, 8.712083], - [-13.059957, 8.712082], - [-13.059917, 8.711932], - [-13.059469, 8.71061], - [-13.057852, 8.710852], - [-13.058494, 8.709625], - [-13.055821, 8.709918], - [-13.04993, 8.71049], - [-13.049537, 8.707742], - [-13.049687, 8.706405], - [-13.050026, 8.705027], - [-13.049583, 8.704583], - [-13.050213, 8.704267], - [-13.050455, 8.703288], - [-13.051236, 8.703756], - [-13.051249, 8.703749], - [-13.051451, 8.700721], - [-13.051453, 8.700721], - [-13.051482, 8.70075], - [-13.051904, 8.700121], - [-13.05175, 8.700003], - [-13.051826, 8.699609], - [-13.051759, 8.699043], - [-13.051308, 8.698641], - [-13.05075, 8.698481], - [-13.050884, 8.698243], - [-13.050514, 8.698096], - [-13.050316, 8.697437], - [-13.050729, 8.697042], - [-13.050456, 8.697117], - [-13.049917, 8.696839], - [-13.049086, 8.695898], - [-13.048995, 8.69555], - [-13.049027, 8.69499], - [-13.049463, 8.693845], - [-13.050239, 8.693163], - [-13.051125, 8.692758], - [-13.050528, 8.69128], - [-13.050534, 8.6901], - [-13.05101, 8.689735], - [-13.050639, 8.689767], - [-13.050432, 8.689515], - [-13.050439, 8.689804], - [-13.05035, 8.690054], - [-13.050232, 8.690242], - [-13.050143, 8.690321], - [-13.049911, 8.690356], - [-13.049691, 8.690354], - [-13.049583, 8.690305], - [-13.04949, 8.690179], - [-13.049455, 8.690056], - [-13.04944, 8.689712], - [-13.049374, 8.689391], - [-13.049289, 8.689174], - [-13.04919, 8.689136], - [-13.049126, 8.689141], - [-13.049063, 8.689205], - [-13.049001, 8.689325], - [-13.048933, 8.689631], - [-13.04888, 8.69003], - [-13.048886, 8.690484], - [-13.048883, 8.690925], - [-13.048911, 8.691096], - [-13.048964, 8.691206], - [-13.049172, 8.691361], - [-13.049344, 8.691561], - [-13.049396, 8.691679], - [-13.049402, 8.69189], - [-13.049327, 8.692031], - [-13.049204, 8.692229], - [-13.049088, 8.692361], - [-13.048842, 8.692528], - [-13.048595, 8.692801], - [-13.048465, 8.69291], - [-13.048178, 8.692981], - [-13.047948, 8.693108], - [-13.047776, 8.69322], - [-13.047637, 8.693285], - [-13.047564, 8.693336], - [-13.047531, 8.693411], - [-13.047556, 8.693483], - [-13.047682, 8.693666], - [-13.0478, 8.693958], - [-13.047793, 8.694059], - [-13.047793, 8.694179], - [-13.047849, 8.694307], - [-13.048079, 8.694658], - [-13.048197, 8.694913], - [-13.04832, 8.69511], - [-13.048342, 8.695246], - [-13.048292, 8.695375], - [-13.048173, 8.695511], - [-13.048058, 8.695607], - [-13.047973, 8.695775], - [-13.047961, 8.695891], - [-13.047986, 8.695972], - [-13.048032, 8.696036], - [-13.048122, 8.696066], - [-13.048188, 8.696091], - [-13.048344, 8.696041], - [-13.048499, 8.695986], - [-13.048627, 8.695927], - [-13.04869, 8.695941], - [-13.048815, 8.695985], - [-13.048833, 8.69602], - [-13.048835, 8.696072], - [-13.048788, 8.696192], - [-13.048767, 8.696308], - [-13.048794, 8.696347], - [-13.048862, 8.696351], - [-13.048949, 8.69634], - [-13.048987, 8.696286], - [-13.049029, 8.696252], - [-13.049085, 8.69626], - [-13.049097, 8.696391], - [-13.049188, 8.696544], - [-13.049204, 8.696596], - [-13.049267, 8.696648], - [-13.049351, 8.696671], - [-13.049491, 8.696696], - [-13.04956, 8.696764], - [-13.049588, 8.696828], - [-13.049606, 8.696925], - [-13.049638, 8.697236], - [-13.049625, 8.697342], - [-13.049566, 8.697413], - [-13.049544, 8.69752], - [-13.049556, 8.697587], - [-13.049734, 8.697735], - [-13.050039, 8.697882], - [-13.050173, 8.697989], - [-13.050246, 8.698123], - [-13.050227, 8.698211], - [-13.050185, 8.698281], - [-13.050122, 8.698355], - [-13.050106, 8.698412], - [-13.050124, 8.698471], - [-13.050232, 8.698571], - [-13.050316, 8.698615], - [-13.050418, 8.698746], - [-13.050455, 8.698805], - [-13.050539, 8.698829], - [-13.050641, 8.698827], - [-13.050725, 8.698841], - [-13.050771, 8.698805], - [-13.050773, 8.698806], - [-13.050748, 8.698904], - [-13.050715, 8.699082], - [-13.050679, 8.6992], - [-13.050674, 8.699333], - [-13.050717, 8.69941], - [-13.050744, 8.699542], - [-13.050742, 8.699663], - [-13.050725, 8.699788], - [-13.050441, 8.699784], - [-13.050367, 8.699749], - [-13.050382, 8.699673], - [-13.050439, 8.699518], - [-13.050432, 8.699346], - [-13.050439, 8.699306], - [-13.050519, 8.699216], - [-13.050535, 8.699156], - [-13.050549, 8.699082], - [-13.050482, 8.699006], - [-13.050432, 8.698969], - [-13.050419, 8.698859], - [-13.050305, 8.69871], - [-13.050109, 8.698596], - [-13.050038, 8.698539], - [-13.050027, 8.698485], - [-13.050065, 8.698332], - [-13.050109, 8.698276], - [-13.050167, 8.69821], - [-13.050183, 8.698164], - [-13.050141, 8.698064], - [-13.050012, 8.697924], - [-13.049907, 8.697862], - [-13.049684, 8.697749], - [-13.049608, 8.697742], - [-13.049506, 8.697709], - [-13.049485, 8.697677], - [-13.049485, 8.697652], - [-13.049516, 8.697574], - [-13.049521, 8.697402], - [-13.049554, 8.697361], - [-13.049591, 8.697293], - [-13.049587, 8.697119], - [-13.049556, 8.696983], - [-13.049541, 8.696881], - [-13.049505, 8.696777], - [-13.049419, 8.696738], - [-13.049296, 8.696705], - [-13.04908, 8.696669], - [-13.048987, 8.696649], - [-13.048797, 8.696615], - [-13.048732, 8.696579], - [-13.048651, 8.696474], - [-13.04865, 8.696434], - [-13.048675, 8.696277], - [-13.048719, 8.696208], - [-13.048759, 8.69614], - [-13.048764, 8.696075], - [-13.048699, 8.696011], - [-13.048628, 8.695982], - [-13.048516, 8.696031], - [-13.048381, 8.696109], - [-13.048285, 8.696178], - [-13.048182, 8.696221], - [-13.048118, 8.696225], - [-13.048038, 8.696151], - [-13.047944, 8.696048], - [-13.047915, 8.695982], - [-13.047909, 8.69591], - [-13.047924, 8.695758], - [-13.047983, 8.695629], - [-13.048089, 8.695475], - [-13.048147, 8.695407], - [-13.048224, 8.695248], - [-13.048209, 8.695176], - [-13.048155, 8.695029], - [-13.048066, 8.694766], - [-13.047821, 8.694419], - [-13.047712, 8.694269], - [-13.047676, 8.694155], - [-13.047692, 8.694096], - [-13.047719, 8.693963], - [-13.047689, 8.693907], - [-13.047573, 8.693822], - [-13.047501, 8.693797], - [-13.047461, 8.693713], - [-13.047393, 8.693297], - [-13.047632, 8.693106], - [-13.047686, 8.693087], - [-13.047731, 8.693042], - [-13.047802, 8.692948], - [-13.047866, 8.692886], - [-13.04807, 8.692715], - [-13.048158, 8.692635], - [-13.048273, 8.692548], - [-13.048429, 8.692475], - [-13.048522, 8.692442], - [-13.048661, 8.692374], - [-13.048872, 8.692201], - [-13.048983, 8.692114], - [-13.049075, 8.692028], - [-13.049106, 8.69194], - [-13.049111, 8.691826], - [-13.049023, 8.691651], - [-13.04886, 8.691403], - [-13.04878, 8.691257], - [-13.048677, 8.691033], - [-13.048445, 8.69125], - [-13.043113, 8.69125], - [-13.043065, 8.691454], - [-13.041508, 8.692884], - [-13.041442, 8.694148], - [-13.040767, 8.69482], - [-13.040331, 8.695614], - [-13.040305, 8.696643], - [-13.040758, 8.697451], - [-13.040453, 8.698021], - [-13.041126, 8.699034], - [-13.041342, 8.699592], - [-13.041281, 8.699886], - [-13.040834, 8.699966], - [-13.03949, 8.699429], - [-13.038559, 8.699366], - [-13.037848, 8.69969], - [-13.036916, 8.699449], - [-13.037021, 8.700054], - [-13.036743, 8.701254], - [-13.036979, 8.704199], - [-13.035978, 8.70465], - [-13.035677, 8.704938], - [-13.036962, 8.705814], - [-13.037984, 8.706522], - [-13.037365, 8.707735], - [-13.030568, 8.702291], - [-13.028334, 8.701248], - [-13.02625, 8.705416], - [-13.025416, 8.709582], - [-13.019408, 8.708916], - [-13.017746, 8.711794], - [-13.01625, 8.712917], - [-13.014583, 8.715416], - [-13.013995, 8.719533], - [-13.014012, 8.719522], - [-13.01584, 8.720124], - [-13.01571, 8.721142], - [-13.01603, 8.72186], - [-13.0178, 8.723124], - [-13.017727, 8.723352], - [-13.017249, 8.723353], - [-13.016552, 8.723023], - [-13.015797, 8.722894], - [-13.015231, 8.723066], - [-13.014418, 8.723726], - [-13.013352, 8.726022], - [-13.012917, 8.731249], - [-13.012801, 8.731481], - [-13.012783, 8.731479], - [-13.012274, 8.735551], - [-13.011122, 8.734786], - [-13.010131, 8.734324], - [-13.007466, 8.73433], - [-13.006361, 8.734886], - [-13.005125, 8.735984], - [-13.004771, 8.736761], - [-13.004945, 8.737932], - [-13.005401, 8.738136], - [-13.006324, 8.739665], - [-13.007398, 8.740184], - [-13.007659, 8.740504], - [-13.007522, 8.740849], - [-13.006587, 8.741344], - [-13.006111, 8.742121], - [-13.00575, 8.742268], - [-13.0054, 8.742206], - [-13.005038, 8.741997], - [-13.004701, 8.741208], - [-13.00399, 8.740985], - [-13.003092, 8.739838], - [-13.00258, 8.738456], - [-13.002617, 8.737803], - [-13.002442, 8.737754], - [-13.001151, 8.738651], - [-12.998749, 8.73625], - [-12.99625, 8.735417], - [-12.990922, 8.746071], - [-12.99092, 8.746071], - [-12.990839, 8.746025], - [-12.990417, 8.747082], - [-12.992916, 8.747082], - [-12.993185, 8.746548], - [-12.994184, 8.747823], - [-12.995382, 8.748782], - [-12.995382, 8.748784], - [-12.992916, 8.75125], - [-12.98375, 8.752917], - [-12.984582, 8.757082], - [-12.977083, 8.757083], - [-12.972008, 8.76089], - [-12.971832, 8.792082], - [-12.977083, 8.792083], - [-12.981249, 8.800416], - [-12.98125, 8.802082], - [-12.98375, 8.80375], - [-12.986686, 8.804924], - [-12.986687, 8.805007], - [-12.98895, 8.805761], - [-12.989158, 8.805484], - [-12.98969, 8.80545], - [-12.990272, 8.806066], - [-12.990895, 8.805992], - [-12.992177, 8.80511], - [-12.992489, 8.804482], - [-12.992414, 8.80394], - [-12.992166, 8.803631], - [-12.99123, 8.803673], - [-12.990972, 8.803482], - [-12.991614, 8.802753], - [-12.992607, 8.802649], - [-12.993438, 8.803499], - [-12.995454, 8.802475], - [-12.996757, 8.803045], - [-12.997129, 8.803866], - [-12.999455, 8.805961], - [-12.999542, 8.806547], - [-12.999856, 8.808905], - [-13.001297, 8.810194], - [-13.001586, 8.810838], - [-13.001667, 8.811652], - [-13.001054, 8.812932], - [-13.00176, 8.814629], - [-13.007916, 8.81375], - [-13.007916, 8.822082], - [-13.006379, 8.824133], - [-13.006454, 8.824172], - [-13.006249, 8.824582], - [-13.002917, 8.827082], - [-12.997917, 8.827083], - [-12.997082, 8.827916], - [-12.996249, 8.827917], - [-12.99375, 8.82875], - [-12.99375, 8.832082], - [-12.996789, 8.837402], - [-12.996787, 8.837403], - [-12.99554, 8.836613], - [-12.995242, 8.836598], - [-12.994212, 8.838387], - [-12.994204, 8.838997], - [-12.993175, 8.838803], - [-12.993761, 8.839682], - [-12.994754, 8.8408], - [-12.995373, 8.841868], - [-12.995223, 8.842484], - [-12.995229, 8.844077], - [-13.013499, 8.8423], - [-13.024199, 8.8385], - [-13.0303, 8.836699], - [-13.038699, 8.835], - [-13.0462, 8.833099], - [-13.0596, 8.831699], - [-13.0686, 8.829299], - [-13.0732, 8.828899], - [-13.089284, 8.828687], - [-13.088749, 8.827083], - [-13.087916, 8.827082], - [-13.087082, 8.824583], - [-13.085646, 8.825302], - [-13.085644, 8.825301], - [-13.083907, 8.818118], - [-13.087024, 8.816073], - [-13.087793, 8.817879], - [-13.089868, 8.817245], - [-13.090302, 8.814697], - [-13.090416, 8.814583], - [-13.090336, 8.814502], - [-13.09055, 8.813242], - [-13.090941, 8.809909], - [-13.089646, 8.81016], - [-13.089374, 8.812474], - [-13.088738, 8.810413], - [-13.084379, 8.810612], - [-13.081654, 8.810623], - [-13.081231, 8.810436], - [-13.082082, 8.809582], - [-13.082083, 8.805645], - [-13.084669, 8.805962], - [-13.08375, 8.804582], - [-13.08375, 8.79625], - [-13.084041, 8.795083], - [-13.083879, 8.795017], - [-13.083691, 8.794111], - [-13.082807, 8.793522], - [-13.082973, 8.792486], - [-13.084297, 8.792355], - [-13.084903, 8.793301], - [-13.085416, 8.79125], - [-13.084582, 8.790416], - [-13.082083, 8.785416], - [-13.087082, 8.777917], - [-13.088368, 8.777917], - [-13.088399, 8.777992], - [-13.089179, 8.778328], - [-13.090416, 8.777916], - [-13.092916, 8.77125], - [-13.096249, 8.772082], - [-13.099949, 8.766163], - [-13.100101, 8.766196], - [-13.100234, 8.766269], - [-13.102916, 8.762917], - [-13.103749, 8.75625], - [-13.102693, 8.756168], - [-13.102692, 8.756167], - [-13.105292, 8.751664] - ] - ], - "type": "Polygon" - }, - "id": 365, - "properties": { - "cc:admin:id": ["74"], - "cc:oBld:total": 86, - "cc:pop:fifteen-to-twenty-four": 2227.689401752167, - "cc:pop:grid3-total": 3850.474760631991, - "cc:pop:kontur-total": 14028.956985300265, - "cc:pop:men": 6096.765627838687, - "cc:pop:sixty-plus": 601.8993275452746, - "cc:pop:total": 12831.195541078481, - "cc:pop:under-five": 1905.4619492046822, - "cc:pop:women": 6734.429913239794, - "cc:pop:women-fiften-to-forty-nine": 3353.2494376371787, - "cc:pop:wp-total": 9120.82295996668, - "cc:pop:wp-total-UN": 10579.289612721028, - "cc:id": "365", - "cc:Name": "Mapillah MCHP", - "cc:site": [-13.0371, 8.7502], - "user:parentName": "Lokomasama", - "user:code": "OU_254987", - "user:orgUnitId": "SIxGTeya5lN", - "user:level": "4", - "user:parentId": "fRLX08WHWpL" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.620133, 8.770129], - [-12.618515, 8.768351], - [-12.61793, 8.766397], - [-12.616762, 8.765551], - [-12.616066, 8.764379], - [-12.619582, 8.758749], - [-12.618989, 8.756971], - [-12.61875, 8.756919], - [-12.618749, 8.754583], - [-12.612917, 8.754583], - [-12.612304, 8.753971], - [-12.612419, 8.752165], - [-12.613162, 8.750668], - [-12.614248, 8.749053], - [-12.615006, 8.74796], - [-12.615442, 8.747667], - [-12.616174, 8.745704], - [-12.616001, 8.744879], - [-12.615706, 8.744518], - [-12.614939, 8.742507], - [-12.614357, 8.741621], - [-12.613958, 8.739329], - [-12.613705, 8.738761], - [-12.613758, 8.738331], - [-12.612594, 8.737667], - [-12.612036, 8.736533], - [-12.61147, 8.736026], - [-12.609631, 8.735181], - [-12.609134, 8.734255], - [-12.608426, 8.733597], - [-12.604147, 8.730781], - [-12.605437, 8.724164], - [-12.604421, 8.724114], - [-12.603142, 8.723737], - [-12.602021, 8.72314], - [-12.601576, 8.722701], - [-12.600651, 8.721589], - [-12.599249, 8.718319], - [-12.598185, 8.717113], - [-12.597598, 8.716716], - [-12.596899, 8.715732], - [-12.596061, 8.715354], - [-12.595443, 8.71588], - [-12.593907, 8.715891], - [-12.593905, 8.715888], - [-12.593899, 8.7159], - [-12.590499, 8.7201], - [-12.5869, 8.723599], - [-12.584299, 8.7253], - [-12.582199, 8.726], - [-12.5779, 8.726999], - [-12.5731, 8.729099], - [-12.571, 8.729599], - [-12.567399, 8.7299], - [-12.5559, 8.729999], - [-12.5521, 8.731099], - [-12.5484, 8.735599], - [-12.5459, 8.738299], - [-12.542799, 8.740299], - [-12.540099, 8.741], - [-12.5372, 8.741299], - [-12.5282, 8.7411], - [-12.524899, 8.7438], - [-12.520299, 8.7458], - [-12.5149, 8.7487], - [-12.517799, 8.751399], - [-12.520499, 8.753099], - [-12.522799, 8.755199], - [-12.5256, 8.758699], - [-12.531699, 8.762399], - [-12.5343, 8.7632], - [-12.5445, 8.7638], - [-12.5483, 8.7651], - [-12.5547, 8.769299], - [-12.5623, 8.764399], - [-12.566, 8.763599], - [-12.575199, 8.7634], - [-12.578899, 8.7631], - [-12.5809, 8.762499], - [-12.5857, 8.7603], - [-12.5902, 8.7597], - [-12.593, 8.7598], - [-12.5958, 8.7606], - [-12.603099, 8.764099], - [-12.6074, 8.7665], - [-12.6158, 8.7704], - [-12.616817, 8.770654], - [-12.617023, 8.770354], - [-12.61756, 8.770325], - [-12.617945, 8.769945], - [-12.619081, 8.769884], - [-12.620133, 8.770129] - ] - ], - "type": "Polygon" - }, - "id": 367, - "properties": { - "cc:admin:id": ["80"], - "cc:oBld:total": 9, - "cc:pop:fifteen-to-twenty-four": 425.6409673494305, - "cc:pop:grid3-total": 2276.9003709044127, - "cc:pop:kontur-total": 2198.4815727474634, - "cc:pop:men": 1056.2916113687131, - "cc:pop:sixty-plus": 139.90016911292102, - "cc:pop:total": 2280.0534327673313, - "cc:pop:under-five": 366.7067373807899, - "cc:pop:women": 1223.7618213986186, - "cc:pop:women-fiften-to-forty-nine": 596.4775982710261, - "cc:pop:wp-total": 3029.831650316127, - "cc:pop:wp-total-UN": 3516.7458913850633, - "cc:id": "367", - "cc:Name": "Maronko MCHP", - "cc:site": [-12.5689, 8.7344], - "user:parentName": "Maforki", - "user:code": "OU_254958", - "user:orgUnitId": "UoLtRvXxNaB", - "user:level": "4", - "user:parentId": "JdqfYTIFZXN" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.897083, 8.761249], - [-11.897082, 8.754583], - [-11.89125, 8.750209], - [-11.89125, 8.750207], - [-11.891382, 8.750037], - [-11.891431, 8.749947], - [-11.891249, 8.749583], - [-11.885417, 8.746249], - [-11.88625, 8.744582], - [-11.888749, 8.73375], - [-11.887916, 8.732917], - [-11.882083, 8.733749], - [-11.87875, 8.733749], - [-11.878233, 8.7322], - [-11.887184, 8.728958], - [-11.887487, 8.727276], - [-11.887525, 8.726111], - [-11.87625, 8.722083], - [-11.874583, 8.717917], - [-11.87625, 8.714583], - [-11.878749, 8.714582], - [-11.879583, 8.712916], - [-11.884582, 8.710416], - [-11.88375, 8.707917], - [-11.879961, 8.704129], - [-11.877791, 8.703826], - [-11.875994, 8.703032], - [-11.875589, 8.702677], - [-11.873943, 8.702336], - [-11.872886, 8.702722], - [-11.872471, 8.702604], - [-11.87153, 8.702821], - [-11.870802, 8.702651], - [-11.870956, 8.702016], - [-11.871571, 8.701591], - [-11.875817, 8.698719], - [-11.875416, 8.697917], - [-11.871374, 8.697242], - [-11.871407, 8.696707], - [-11.87182, 8.69545], - [-11.872352, 8.69457], - [-11.869582, 8.690417], - [-11.86375, 8.68625], - [-11.863749, 8.684583], - [-11.862916, 8.68375], - [-11.862526, 8.68375], - [-11.861499, 8.6859], - [-11.8608, 8.689499], - [-11.8608, 8.700099], - [-11.8601, 8.703799], - [-11.856499, 8.7112], - [-11.8539, 8.714099], - [-11.8508, 8.7163], - [-11.8479, 8.720799], - [-11.8467, 8.723499], - [-11.846299, 8.7258], - [-11.8461, 8.734499], - [-11.845599, 8.7369], - [-11.8446, 8.738899], - [-11.843499, 8.7402], - [-11.840099, 8.7434], - [-11.8362, 8.7465], - [-11.835299, 8.7491], - [-11.834499, 8.755], - [-11.832499, 8.7603], - [-11.8309, 8.766699], - [-11.829999, 8.7686], - [-11.828299, 8.7708], - [-11.825099, 8.7739], - [-11.822899, 8.7756], - [-11.8196, 8.7773], - [-11.8225, 8.7809], - [-11.8274, 8.79], - [-11.828, 8.7929], - [-11.828199, 8.795899], - [-11.8282, 8.812299], - [-11.828399, 8.816399], - [-11.8294, 8.8197], - [-11.8306, 8.8216], - [-11.832499, 8.823699], - [-11.8354, 8.8259], - [-11.843799, 8.830099], - [-11.850599, 8.833299], - [-11.8528, 8.834], - [-11.856299, 8.834399], - [-11.8728, 8.834499], - [-11.8758, 8.834399], - [-11.879299, 8.834], - [-11.8815, 8.833299], - [-11.8862, 8.830699], - [-11.891499, 8.827999], - [-11.8936, 8.823699], - [-11.893999, 8.819899], - [-11.8937, 8.8146], - [-11.892699, 8.810699], - [-11.8892, 8.8043], - [-11.8879, 8.8012], - [-11.8872, 8.7967], - [-11.887799, 8.7932], - [-11.888999, 8.79], - [-11.89366, 8.782959], - [-11.889696, 8.779561], - [-11.889693, 8.779596], - [-11.889249, 8.780962], - [-11.888716, 8.780807], - [-11.888751, 8.780553], - [-11.888557, 8.780295], - [-11.88785, 8.779983], - [-11.886837, 8.780259], - [-11.885268, 8.779801], - [-11.885208, 8.779755], - [-11.884759, 8.779574], - [-11.884607, 8.779609], - [-11.883627, 8.779322], - [-11.883951, 8.779172], - [-11.884339, 8.778709], - [-11.885524, 8.77911], - [-11.886715, 8.780134], - [-11.887797, 8.779752], - [-11.888144, 8.779792], - [-11.888567, 8.780085], - [-11.888724, 8.779991], - [-11.88874, 8.778071], - [-11.888459, 8.777082], - [-11.888306, 8.776975], - [-11.887618, 8.777062], - [-11.886867, 8.776408], - [-11.886599, 8.77564], - [-11.886751, 8.775123], - [-11.886516, 8.774587], - [-11.886732, 8.773012], - [-11.886669, 8.771266], - [-11.886942, 8.770268], - [-11.887895, 8.768629], - [-11.887963, 8.768067], - [-11.88881, 8.767658], - [-11.889006, 8.767787], - [-11.889626, 8.768012], - [-11.890062, 8.76784], - [-11.891414, 8.766838], - [-11.892658, 8.765073], - [-11.893323, 8.764484], - [-11.89478, 8.763811], - [-11.895064, 8.763772], - [-11.897083, 8.761249] - ] - ], - "type": "Polygon" - }, - "id": 368, - "properties": { - "cc:admin:id": ["54"], - "cc:oBld:total": 791, - "cc:pop:fifteen-to-twenty-four": 1791.0272455221734, - "cc:pop:grid3-total": 5906.254411459395, - "cc:pop:kontur-total": 8568.164324569785, - "cc:pop:men": 4536.224044691587, - "cc:pop:sixty-plus": 611.5133506665294, - "cc:pop:total": 9558.500475039233, - "cc:pop:under-five": 1548.2652420394975, - "cc:pop:women": 5022.276430347648, - "cc:pop:women-fiften-to-forty-nine": 2428.3583187253553, - "cc:pop:wp-total": 8711.98426570418, - "cc:pop:wp-total-UN": 10094.67272931997, - "cc:id": "368", - "cc:Name": "Masanga Leprosy Hospital", - "cc:site": [-11.8371, 8.7505], - "user:parentName": "Kholifa Rowalla", - "user:code": "OU_268159", - "user:orgUnitId": "wB4R3E1X6pC", - "user:level": "4", - "user:parentId": "PQZJPIpTepd" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.367699, 9.369299], - [-12.366799, 9.3654], - [-12.363699, 9.3616], - [-12.361399, 9.3625], - [-12.356199, 9.3637], - [-12.3501, 9.366199], - [-12.3459, 9.366999], - [-12.3434, 9.367899], - [-12.3376, 9.3713], - [-12.336099, 9.3733], - [-12.333799, 9.3775], - [-12.332999, 9.381], - [-12.3327, 9.388799], - [-12.332, 9.392499], - [-12.330199, 9.397], - [-12.328599, 9.4037], - [-12.324799, 9.4114], - [-12.321599, 9.414599], - [-12.314999, 9.4179], - [-12.312799, 9.4186], - [-12.308399, 9.419], - [-12.2963, 9.419], - [-12.2914, 9.4187], - [-12.288599, 9.418099], - [-12.283999, 9.416099], - [-12.280399, 9.415399], - [-12.2745, 9.4151], - [-12.2707, 9.4146], - [-12.2653, 9.4123], - [-12.261899, 9.4116], - [-12.2583, 9.4116], - [-12.2548, 9.412299], - [-12.248999, 9.4146], - [-12.243899, 9.4152], - [-12.233199, 9.4152], - [-12.2303, 9.415499], - [-12.227699, 9.4163], - [-12.221999, 9.4198], - [-12.219099, 9.4239], - [-12.2151, 9.428899], - [-12.2122, 9.434299], - [-12.2078, 9.440099], - [-12.206751, 9.442085], - [-12.207411, 9.442828], - [-12.2081, 9.442429], - [-12.214582, 9.44125], - [-12.215416, 9.442082], - [-12.212917, 9.454582], - [-12.218352, 9.455263], - [-12.21836, 9.455416], - [-12.21875, 9.455417], - [-12.219583, 9.457082], - [-12.231249, 9.454583], - [-12.232083, 9.45375], - [-12.238002, 9.455065], - [-12.238086, 9.454834], - [-12.243749, 9.456249], - [-12.24375, 9.461249], - [-12.245417, 9.462916], - [-12.247917, 9.462917], - [-12.250417, 9.465416], - [-12.258749, 9.462917], - [-12.259508, 9.468219], - [-12.260416, 9.468012], - [-12.260417, 9.468749], - [-12.262082, 9.469583], - [-12.264582, 9.472082], - [-12.265017, 9.473822], - [-12.26456, 9.474354], - [-12.26207, 9.475676], - [-12.261716, 9.476072], - [-12.261749, 9.477475], - [-12.26158, 9.478334], - [-12.263343, 9.47771], - [-12.264194, 9.47763], - [-12.265057, 9.477623], - [-12.266214, 9.477261], - [-12.26731, 9.477186], - [-12.268522, 9.476402], - [-12.26913, 9.476315], - [-12.269042, 9.476068], - [-12.268774, 9.475977], - [-12.268532, 9.474745], - [-12.268056, 9.474199], - [-12.267874, 9.473586], - [-12.26785, 9.47356], - [-12.269582, 9.47125], - [-12.275416, 9.471249], - [-12.275416, 9.465417], - [-12.274583, 9.464582], - [-12.275417, 9.462083], - [-12.27625, 9.462082], - [-12.28125, 9.46125], - [-12.284938, 9.46125], - [-12.28487, 9.461622], - [-12.286249, 9.462082], - [-12.289582, 9.460416], - [-12.291249, 9.45875], - [-12.292083, 9.455416], - [-12.294582, 9.452916], - [-12.293283, 9.449014], - [-12.294923, 9.446221], - [-12.295146, 9.445696], - [-12.297916, 9.446249], - [-12.299583, 9.447916], - [-12.303749, 9.447916], - [-12.307916, 9.444583], - [-12.30795, 9.444548], - [-12.307928, 9.444389], - [-12.307877, 9.444313], - [-12.307877, 9.444311], - [-12.311249, 9.443749], - [-12.31125, 9.442916], - [-12.314582, 9.440416], - [-12.315417, 9.43625], - [-12.320008, 9.436905], - [-12.321343, 9.434319], - [-12.321723, 9.431899], - [-12.321803, 9.430786], - [-12.321736, 9.430225], - [-12.322694, 9.430159], - [-12.323739, 9.429659], - [-12.325747, 9.429256], - [-12.327446, 9.427421], - [-12.328531, 9.426796], - [-12.330438, 9.426775], - [-12.332083, 9.424582], - [-12.338749, 9.422082], - [-12.33815, 9.417892], - [-12.337783, 9.417794], - [-12.336797, 9.416979], - [-12.336427, 9.416329], - [-12.33594, 9.415946], - [-12.335431, 9.415811], - [-12.337917, 9.412083], - [-12.344582, 9.410417], - [-12.351617, 9.409713], - [-12.351559, 9.409584], - [-12.35156, 9.409583], - [-12.352082, 9.409582], - [-12.352083, 9.402917], - [-12.354582, 9.401249], - [-12.354583, 9.392087], - [-12.355085, 9.391701], - [-12.355473, 9.391304], - [-12.356716, 9.39087], - [-12.358438, 9.390728], - [-12.358793, 9.390495], - [-12.359936, 9.390336], - [-12.359356, 9.389885], - [-12.359104, 9.389231], - [-12.359105, 9.38923], - [-12.36067, 9.389645], - [-12.36087, 9.389735], - [-12.360417, 9.387916], - [-12.363749, 9.387082], - [-12.36527, 9.385561], - [-12.3654, 9.383799], - [-12.367599, 9.3745], - [-12.367699, 9.369299] - ] - ], - "type": "Polygon" - }, - "id": 369, - "properties": { - "cc:admin:id": ["121"], - "cc:oBld:total": 403, - "cc:pop:fifteen-to-twenty-four": 1740.9154079426369, - "cc:pop:grid3-total": 8226.103948703836, - "cc:pop:kontur-total": 9862.707757569327, - "cc:pop:men": 5131.297443224982, - "cc:pop:sixty-plus": 596.792745426593, - "cc:pop:total": 9519.676308811173, - "cc:pop:under-five": 1546.0047132058496, - "cc:pop:women": 4388.378865586195, - "cc:pop:women-fiften-to-forty-nine": 2158.053759826685, - "cc:pop:wp-total": 9782.281524123895, - "cc:pop:wp-total-UN": 11338.390808981703, - "cc:id": "369", - "cc:Name": "Masankorie CHP", - "cc:site": [-12.2807, 9.4457], - "user:parentName": "Sella Limba", - "user:code": "OU_193288", - "user:orgUnitId": "eyfrdOUUkXO", - "user:level": "4", - "user:parentId": "j43EZb15rjI" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.047085, 9.015848], - [-12.046599, 9.0145], - [-12.0443, 9.0126], - [-12.0401, 9.0101], - [-12.036799, 9.008699], - [-12.032599, 9.006299], - [-12.026599, 9.003699], - [-12.024499, 9.0035], - [-12.018, 9.006199], - [-12.0138, 9.008699], - [-12.0106, 9.010199], - [-12.009953, 9.0106], - [-12.012917, 9.018749], - [-12.015415, 9.019583], - [-12.01375, 9.020417], - [-12.013749, 9.025416], - [-12.01125, 9.02875], - [-12.01125, 9.036249], - [-12.019316, 9.037716], - [-12.019582, 9.037462], - [-12.019583, 9.046249], - [-12.026579, 9.043451], - [-12.02658, 9.043453], - [-12.026384, 9.043843], - [-12.025754, 9.046752], - [-12.025728, 9.047416], - [-12.026065, 9.048315], - [-12.026067, 9.049535], - [-12.026158, 9.049931], - [-12.026622, 9.050081], - [-12.027212, 9.049867], - [-12.027798, 9.050034], - [-12.029476, 9.049859], - [-12.029557, 9.049831], - [-12.030314, 9.049597], - [-12.030438, 9.049604], - [-12.03136, 9.049682], - [-12.031982, 9.049563], - [-12.03266, 9.049581], - [-12.029583, 9.059582], - [-12.037082, 9.052916], - [-12.037083, 9.05092], - [-12.038035, 9.05168], - [-12.038629, 9.052631], - [-12.039799, 9.05], - [-12.0404, 9.047399], - [-12.040899, 9.0421], - [-12.0414, 9.039999], - [-12.0424, 9.037999], - [-12.045799, 9.0337], - [-12.046999, 9.0318], - [-12.047699, 9.0296], - [-12.048, 9.026799], - [-12.048099, 9.022799], - [-12.0475, 9.017], - [-12.047085, 9.015848] - ] - ], - "type": "Polygon" - }, - "id": 370, - "properties": { - "cc:admin:id": ["7"], - "cc:oBld:total": 16, - "cc:pop:fifteen-to-twenty-four": 175.66367201394584, - "cc:pop:grid3-total": 812.2610744479591, - "cc:pop:kontur-total": 890.1689984303327, - "cc:pop:men": 444.17821047250146, - "cc:pop:sixty-plus": 56.71625836793939, - "cc:pop:total": 965.1366015813526, - "cc:pop:under-five": 151.62526846588952, - "cc:pop:women": 520.9583911088512, - "cc:pop:women-fiften-to-forty-nine": 258.8592494069895, - "cc:pop:wp-total": 777.6877180510608, - "cc:pop:wp-total-UN": 902.5929973096971, - "cc:id": "370", - "cc:Name": "Maselleh MCHP", - "cc:site": [-12.0432, 9.0166], - "user:parentName": "Safroko Limba", - "user:code": "OU_193269", - "user:orgUnitId": "CY8cV5khn7e", - "user:level": "4", - "user:parentId": "XG8HGAbrbbL" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.787916, 8.531249], - [-12.785416, 8.52375], - [-12.777917, 8.523749], - [-12.777917, 8.514584], - [-12.777083, 8.514583], - [-12.777083, 8.512084], - [-12.780417, 8.508749], - [-12.786249, 8.499584], - [-12.781249, 8.495417], - [-12.777083, 8.494584], - [-12.775417, 8.494583], - [-12.775417, 8.492916], - [-12.77625, 8.488749], - [-12.776851, 8.488149], - [-12.778388, 8.48852], - [-12.780941, 8.48864], - [-12.780738, 8.487713], - [-12.775921, 8.487057], - [-12.774168, 8.486165], - [-12.772255, 8.485168], - [-12.771858, 8.485051], - [-12.775417, 8.482916], - [-12.779582, 8.477084], - [-12.779582, 8.47625], - [-12.777916, 8.476249], - [-12.767917, 8.47125], - [-12.773749, 8.46625], - [-12.774798, 8.466249], - [-12.772635, 8.462505], - [-12.766874, 8.462504], - [-12.767083, 8.46125], - [-12.769582, 8.457917], - [-12.770416, 8.45625], - [-12.766249, 8.452917], - [-12.75625, 8.449584], - [-12.75625, 8.455416], - [-12.758749, 8.459584], - [-12.757917, 8.467916], - [-12.758749, 8.47125], - [-12.751249, 8.472916], - [-12.74625, 8.47125], - [-12.746249, 8.470417], - [-12.74375, 8.469584], - [-12.74125, 8.472084], - [-12.740416, 8.473749], - [-12.735417, 8.474584], - [-12.732519, 8.4769], - [-12.732617, 8.477537], - [-12.732366, 8.480788], - [-12.731249, 8.480417], - [-12.71875, 8.483749], - [-12.714582, 8.47875], - [-12.712916, 8.478749], - [-12.712082, 8.47625], - [-12.705417, 8.47625], - [-12.702541, 8.479125], - [-12.701825, 8.478905], - [-12.700937, 8.478856], - [-12.700417, 8.480416], - [-12.703749, 8.482084], - [-12.705415, 8.487082], - [-12.697917, 8.482917], - [-12.695417, 8.484584], - [-12.697917, 8.497084], - [-12.697916, 8.503591], - [-12.6978, 8.5036], - [-12.695358, 8.504167], - [-12.694118, 8.50417], - [-12.693616, 8.504245], - [-12.693086, 8.509558], - [-12.695488, 8.513719], - [-12.7033, 8.51372], - [-12.704367, 8.515566], - [-12.704446, 8.515554], - [-12.704383, 8.515418], - [-12.704384, 8.515417], - [-12.706249, 8.515416], - [-12.70625, 8.513749], - [-12.710417, 8.510417], - [-12.715961, 8.510417], - [-12.715898, 8.511103], - [-12.722082, 8.510417], - [-12.724583, 8.521249], - [-12.740416, 8.522083], - [-12.740417, 8.523749], - [-12.741249, 8.52375], - [-12.742917, 8.520416], - [-12.74625, 8.519584], - [-12.750416, 8.519584], - [-12.753221, 8.527296], - [-12.753445, 8.527222], - [-12.754421, 8.526692], - [-12.756494, 8.525072], - [-12.757988, 8.523459], - [-12.758099, 8.523255], - [-12.759582, 8.52375], - [-12.759583, 8.526249], - [-12.763749, 8.527083], - [-12.764583, 8.527083], - [-12.76811, 8.525908], - [-12.768125, 8.525555], - [-12.769583, 8.524584], - [-12.776248, 8.525416], - [-12.776249, 8.525418], - [-12.772917, 8.532916], - [-12.77375, 8.534583], - [-12.77625, 8.537083], - [-12.783749, 8.537083], - [-12.787916, 8.531249] - ] - ], - "type": "Polygon" - }, - "id": 371, - "properties": { - "cc:admin:id": ["62"], - "cc:oBld:total": 1423, - "cc:pop:fifteen-to-twenty-four": 2778.85518343186, - "cc:pop:grid3-total": 21107.617711792558, - "cc:pop:kontur-total": 14948.428205118767, - "cc:pop:men": 7010.982949513156, - "cc:pop:sixty-plus": 940.893038686543, - "cc:pop:total": 15059.915651765068, - "cc:pop:under-five": 2459.043453985561, - "cc:pop:women": 8048.932702251907, - "cc:pop:women-fiften-to-forty-nine": 3973.213823386342, - "cc:pop:wp-total": 11397.71044721477, - "cc:pop:wp-total-UN": 13220.870120257083, - "cc:id": "371", - "cc:Name": "Masiaka CHC", - "cc:site": [-12.7499, 8.4919], - "user:parentName": "Koya", - "user:code": "OU_254964", - "user:orgUnitId": "EURoFVjowXs", - "user:level": "4", - "user:parentId": "pRHGAROvuyI" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.145099, 9.102299], - [-11.144699, 9.1001], - [-11.1382, 9.0949], - [-11.1341, 9.0912], - [-11.131099, 9.088999], - [-11.125199, 9.085699], - [-11.120499, 9.081999], - [-11.1122, 9.0778], - [-11.109799, 9.076999], - [-11.104699, 9.075899], - [-11.1003, 9.0737], - [-11.096299, 9.071899], - [-11.093499, 9.069699], - [-11.087, 9.0633], - [-11.081799, 9.0576], - [-11.077499, 9.059], - [-11.071299, 9.0599], - [-11.065099, 9.059999], - [-11.0621, 9.0598], - [-11.0592, 9.0592], - [-11.055199, 9.057399], - [-11.0464, 9.0516], - [-11.035399, 9.0432], - [-11.030199, 9.041499], - [-11.025999, 9.0412], - [-11.020399, 9.0415], - [-11.016399, 9.0423], - [-11.010399, 9.0442], - [-11.005999, 9.0449], - [-10.998399, 9.0452], - [-10.9877, 9.0452], - [-10.9832, 9.0449], - [-10.9788, 9.0442], - [-10.9693, 9.040699], - [-10.965599, 9.037699], - [-10.9601, 9.0304], - [-10.952099, 9.016399], - [-10.9375, 9.0003], - [-10.9332, 8.994], - [-10.9304, 8.9908], - [-10.9262, 8.9871], - [-10.919799, 8.982899], - [-10.911, 8.976], - [-10.904499, 8.971899], - [-10.9, 8.968], - [-10.8959, 8.9637], - [-10.8941, 8.9613], - [-10.8927, 8.9588], - [-10.8907, 8.9523], - [-10.8883, 8.947], - [-10.885099, 8.9434], - [-10.881799, 8.941599], - [-10.872999, 8.939299], - [-10.868199, 8.936299], - [-10.8604, 8.9294], - [-10.856899, 8.926899], - [-10.849499, 8.922799], - [-10.8343, 8.9156], - [-10.825499, 8.9118], - [-10.8118, 8.917399], - [-10.803, 8.919299], - [-10.795399, 8.9215], - [-10.790699, 8.922], - [-10.7746, 8.922799], - [-10.771599, 8.9234], - [-10.766899, 8.9248], - [-10.762399, 8.9256], - [-10.738699, 8.9263], - [-10.734099, 8.9271], - [-10.726699, 8.9291], - [-10.7118, 8.930299], - [-10.7024, 8.9319], - [-10.7063, 8.9379], - [-10.708399, 8.944199], - [-10.7102, 8.9487], - [-10.712, 8.9518], - [-10.715599, 8.956899], - [-10.717199, 8.960099], - [-10.718799, 8.964899], - [-10.719299, 8.969199], - [-10.719, 8.974899], - [-10.717799, 8.9788], - [-10.712399, 8.9883], - [-10.709799, 8.9915], - [-10.7069, 8.994499], - [-10.7037, 8.997199], - [-10.700299, 8.9993], - [-10.693699, 9.0016], - [-10.6817, 9.006799], - [-10.6765, 9.008599], - [-10.6739, 9.009799], - [-10.670499, 9.0124], - [-10.660599, 9.0211], - [-10.6518, 9.026899], - [-10.648, 9.028899], - [-10.643699, 9.0299], - [-10.6348, 9.030699], - [-10.6292, 9.032399], - [-10.6211, 9.037299], - [-10.614399, 9.0403], - [-10.608499, 9.0413], - [-10.5962, 9.042099], - [-10.5877, 9.043199], - [-10.585, 9.0434], - [-10.594, 9.054899], - [-10.612999, 9.066699], - [-10.621999, 9.069499], - [-10.6227, 9.0677], - [-10.6331, 9.0695], - [-10.6603, 9.081499], - [-10.6751, 9.081399], - [-10.7082, 9.0755], - [-10.7299, 9.0792], - [-10.733399, 9.0843], - [-10.730099, 9.0914], - [-10.7262, 9.116599], - [-10.726099, 9.131099], - [-10.714499, 9.1439], - [-10.7143, 9.163499], - [-10.7206, 9.177299], - [-10.7262, 9.176299], - [-10.7318, 9.1742], - [-10.735299, 9.174], - [-10.7379, 9.1744], - [-10.742399, 9.176399], - [-10.745199, 9.177099], - [-10.7503, 9.177399], - [-10.7565, 9.177299], - [-10.7594, 9.176799], - [-10.7649, 9.174399], - [-10.7707, 9.172799], - [-10.7758, 9.170499], - [-10.7786, 9.1699], - [-10.781699, 9.1709], - [-10.783399, 9.1746], - [-10.783499, 9.1797], - [-10.782799, 9.1835], - [-10.780599, 9.1889], - [-10.779899, 9.1916], - [-10.779399, 9.1965], - [-10.778699, 9.1992], - [-10.7766, 9.204699], - [-10.7762, 9.207599], - [-10.7761, 9.2127], - [-10.776299, 9.240799], - [-10.776599, 9.244799], - [-10.777299, 9.247699], - [-10.7796, 9.2521], - [-10.783099, 9.260099], - [-10.784299, 9.267099], - [-10.7854, 9.269099], - [-10.7879, 9.270199], - [-10.790699, 9.2699], - [-10.7956, 9.2677], - [-10.7981, 9.2676], - [-10.8004, 9.2682], - [-10.8109, 9.2732], - [-10.8134, 9.2738], - [-10.8188, 9.2744], - [-10.8213, 9.2751], - [-10.8268, 9.2772], - [-10.8306, 9.2777], - [-10.837399, 9.277999], - [-10.840199, 9.278599], - [-10.848499, 9.282799], - [-10.854299, 9.287199], - [-10.8564, 9.288299], - [-10.8597, 9.2889], - [-10.8656, 9.2891], - [-10.869699, 9.289799], - [-10.876, 9.2922], - [-10.880899, 9.292599], - [-10.884799, 9.292], - [-10.8905, 9.2896], - [-10.895399, 9.2891], - [-10.8994, 9.2896], - [-10.9044, 9.291599], - [-10.908099, 9.291599], - [-10.919499, 9.2862], - [-10.923099, 9.286299], - [-10.930299, 9.289499], - [-10.934599, 9.291999], - [-10.9378, 9.2934], - [-10.941399, 9.295299], - [-10.9435, 9.296], - [-10.947, 9.2964], - [-10.951, 9.2965], - [-10.959999, 9.2965], - [-10.964899, 9.2962], - [-10.9678, 9.295499], - [-10.9721, 9.293499], - [-10.9755, 9.2929], - [-10.979, 9.2935], - [-10.986599, 9.296999], - [-10.990999, 9.299199], - [-10.994399, 9.300099], - [-10.994499, 9.2965], - [-10.995099, 9.293], - [-10.997299, 9.2878], - [-10.998199, 9.2835], - [-10.999099, 9.2811], - [-11.0007, 9.278899], - [-11.005599, 9.2735], - [-11.007799, 9.2707], - [-11.009699, 9.2669], - [-11.0115, 9.264199], - [-11.013899, 9.2618], - [-11.016599, 9.2598], - [-11.020499, 9.2581], - [-11.0241, 9.256099], - [-11.027299, 9.2548], - [-11.0293, 9.253399], - [-11.0337, 9.249399], - [-11.060699, 9.2222], - [-11.064299, 9.2193], - [-11.072399, 9.2151], - [-11.0756, 9.213799], - [-11.083599, 9.2097], - [-11.086099, 9.207099], - [-11.088099, 9.2029], - [-11.090099, 9.1993], - [-11.0914, 9.196099], - [-11.093699, 9.1918], - [-11.095, 9.188699], - [-11.0969, 9.185099], - [-11.0977, 9.182699], - [-11.0986, 9.178399], - [-11.1008, 9.173099], - [-11.1014, 9.170599], - [-11.1018, 9.165199], - [-11.1024, 9.162699], - [-11.1046, 9.157399], - [-11.1057, 9.152299], - [-11.1066, 9.149999], - [-11.1082, 9.147099], - [-11.1094, 9.143899], - [-11.111799, 9.1397], - [-11.113599, 9.1358], - [-11.1152, 9.133599], - [-11.120199, 9.1283], - [-11.122399, 9.1255], - [-11.1243, 9.121699], - [-11.1272, 9.117799], - [-11.131899, 9.1129], - [-11.135899, 9.1092], - [-11.1384, 9.107499], - [-11.1419, 9.105999], - [-11.144299, 9.103999], - [-11.145099, 9.102299] - ] - ], - "type": "Polygon" - }, - "id": 372, - "properties": { - "cc:admin:id": ["96"], - "cc:oBld:total": 4959, - "cc:pop:fifteen-to-twenty-four": 9691.614029655193, - "cc:pop:grid3-total": 42497.50929749201, - "cc:pop:kontur-total": 57430.39508125605, - "cc:pop:men": 24329.991583597235, - "cc:pop:sixty-plus": 3488.605676142014, - "cc:pop:total": 52829.499752405194, - "cc:pop:under-five": 8309.50870856584, - "cc:pop:women": 28499.50816880798, - "cc:pop:women-fiften-to-forty-nine": 13769.508473858228, - "cc:pop:wp-total": 45551.623676567, - "cc:pop:wp-total-UN": 52874.931450931246, - "cc:id": "372", - "cc:Name": "Masofinia MCHP", - "cc:site": [-11.0375, 9.0803], - "user:parentName": "Neya", - "user:code": "OU_226278", - "user:orgUnitId": "eKoXODABUJe", - "user:level": "4", - "user:parentId": "GFk45MOxzJJ" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.07084, 8.550349], - [-12.066934, 8.543583], - [-12.070651, 8.537143], - [-12.062916, 8.537916], - [-12.062173, 8.526015], - [-12.062272, 8.525928], - [-12.06407, 8.522982], - [-12.062916, 8.52125], - [-12.06125, 8.521249], - [-12.061015, 8.52078], - [-12.061425, 8.520459], - [-12.061922, 8.519789], - [-12.062145, 8.519083], - [-12.062098, 8.513403], - [-12.0588, 8.515999], - [-12.055099, 8.5175], - [-12.052099, 8.5179], - [-12.049, 8.517999], - [-12.0342, 8.5177], - [-12.0301, 8.5177], - [-12.0273, 8.518099], - [-12.0249, 8.5191], - [-12.0213, 8.523699], - [-12.017999, 8.5269], - [-12.015999, 8.5283], - [-12.012199, 8.5301], - [-12.0074, 8.532799], - [-12.0056, 8.5343], - [-12.002499, 8.5397], - [-12, 8.548099], - [-12.0023, 8.5549], - [-12.0066, 8.5629], - [-12.0092, 8.5653], - [-12.0138, 8.5678], - [-12.017, 8.5703], - [-12.021099, 8.573999], - [-12.023899, 8.576299], - [-12.028199, 8.578399], - [-12.0311, 8.5805], - [-12.035499, 8.584599], - [-12.038299, 8.588199], - [-12.040299, 8.591999], - [-12.0423, 8.5949], - [-12.0467, 8.5995], - [-12.051299, 8.603999], - [-12.054199, 8.605999], - [-12.055909, 8.606683], - [-12.057082, 8.60375], - [-12.049583, 8.597917], - [-12.04899, 8.594357], - [-12.053386, 8.593816], - [-12.055115, 8.593307], - [-12.056464, 8.592668], - [-12.05375, 8.587917], - [-12.05625, 8.585416], - [-12.060416, 8.575417], - [-12.057849, 8.57285], - [-12.059121, 8.570646], - [-12.066933, 8.570645], - [-12.07084, 8.56388], - [-12.066934, 8.557114], - [-12.07084, 8.550349] - ] - ], - "type": "Polygon" - }, - "id": 373, - "properties": { - "cc:admin:id": ["53"], - "cc:oBld:total": 10, - "cc:pop:fifteen-to-twenty-four": 634.7514771249729, - "cc:pop:grid3-total": 2237.5309974059687, - "cc:pop:kontur-total": 2669.101148161607, - "cc:pop:men": 1581.9267254225742, - "cc:pop:sixty-plus": 219.91727861578264, - "cc:pop:total": 3435.6974716455666, - "cc:pop:under-five": 546.8051073356078, - "cc:pop:women": 1853.7707462229926, - "cc:pop:women-fiften-to-forty-nine": 901.6568491104929, - "cc:pop:wp-total": 2644.977795964031, - "cc:pop:wp-total-UN": 3067.6882394647178, - "cc:id": "373", - "cc:Name": "Masoko MCHP", - "cc:site": [-12.0327, 8.5431], - "user:parentName": "Kholifa Rowalla", - "user:code": "OU_268158", - "user:orgUnitId": "D6B4jrCpCwu", - "user:level": "4", - "user:parentId": "PQZJPIpTepd" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.927916, 8.947083], - [-11.922916, 8.94375], - [-11.918749, 8.942916], - [-11.914583, 8.938749], - [-11.91375, 8.93625], - [-11.914582, 8.93375], - [-11.912082, 8.932916], - [-11.90875, 8.928749], - [-11.908749, 8.922083], - [-11.89875, 8.922916], - [-11.89625, 8.92125], - [-11.899582, 8.910417], - [-11.89625, 8.90375], - [-11.895876, 8.90263], - [-11.8888, 8.906599], - [-11.8859, 8.9092], - [-11.882999, 8.9149], - [-11.8785, 8.925099], - [-11.8771, 8.929599], - [-11.8766, 8.9336], - [-11.8776, 8.9401], - [-11.883199, 8.949499], - [-11.887699, 8.955299], - [-11.889499, 8.959499], - [-11.889499, 8.964], - [-11.886699, 8.9682], - [-11.8827, 8.971799], - [-11.8776, 8.975099], - [-11.8739, 8.978299], - [-11.868999, 8.9854], - [-11.8652, 8.989399], - [-11.8623, 8.991199], - [-11.859099, 8.9922], - [-11.8551, 8.992299], - [-11.851299, 8.991499], - [-11.846999, 8.9899], - [-11.8426, 8.9897], - [-11.8388, 8.9919], - [-11.8365, 8.9968], - [-11.8353, 9.007199], - [-11.834, 9.011599], - [-11.832, 9.014599], - [-11.829099, 9.016699], - [-11.823499, 9.018299], - [-11.821195, 9.018164], - [-11.820643, 9.019041], - [-11.820681, 9.021586], - [-11.821609, 9.023187], - [-11.823154, 9.024461], - [-11.823552, 9.025743], - [-11.823722, 9.027334], - [-11.823675, 9.028569], - [-11.823363, 9.029243], - [-11.822927, 9.029636], - [-11.822457, 9.02956], - [-11.820876, 9.032296], - [-11.823018, 9.036006], - [-11.823693, 9.036027], - [-11.823888, 9.037158], - [-11.825415, 9.037738], - [-11.825811, 9.037901], - [-11.825819, 9.037891], - [-11.826178, 9.038027], - [-11.826887, 9.038093], - [-11.832332, 9.042088], - [-11.832326, 9.042404], - [-11.832474, 9.044503], - [-11.83308, 9.045613], - [-11.833444, 9.047496], - [-11.833809, 9.048222], - [-11.834635, 9.048878], - [-11.835584, 9.050776], - [-11.833944, 9.053258], - [-11.835417, 9.05375], - [-11.836249, 9.057916], - [-11.837083, 9.060416], - [-11.840417, 9.062916], - [-11.844582, 9.062917], - [-11.84375, 9.067082], - [-11.842917, 9.070416], - [-11.84875, 9.074583], - [-11.8492, 9.07729], - [-11.848609, 9.079036], - [-11.847059, 9.080642], - [-11.846607, 9.081226], - [-11.846418, 9.081931], - [-11.846515, 9.082346], - [-11.846547, 9.083107], - [-11.846201, 9.08362], - [-11.845676, 9.0847], - [-11.845064, 9.085469], - [-11.84464, 9.08664], - [-11.84463, 9.087184], - [-11.84502, 9.088058], - [-11.844962, 9.088514], - [-11.845181, 9.089082], - [-11.84578, 9.08884], - [-11.847328, 9.086689], - [-11.847368, 9.086149], - [-11.847784, 9.085543], - [-11.8479, 9.084944], - [-11.848576, 9.084531], - [-11.849062, 9.083968], - [-11.849498, 9.083787], - [-11.849544, 9.08371], - [-11.849583, 9.08375], - [-11.85125, 9.084583], - [-11.85375, 9.085417], - [-11.856249, 9.088749], - [-11.856417, 9.088917], - [-11.8587, 9.086399], - [-11.8605, 9.083699], - [-11.8626, 9.079499], - [-11.8661, 9.075099], - [-11.869199, 9.0721], - [-11.871899, 9.0701], - [-11.875799, 9.0683], - [-11.876826, 9.067726], - [-11.875946, 9.066313], - [-11.875822, 9.065488], - [-11.875822, 9.065391], - [-11.875843, 9.064763], - [-11.876221, 9.063915], - [-11.876584, 9.062938], - [-11.876448, 9.061221], - [-11.87538, 9.060267], - [-11.874942, 9.060263], - [-11.874131, 9.059555], - [-11.873335, 9.057905], - [-11.873235, 9.057111], - [-11.873284, 9.056416], - [-11.873708, 9.055347], - [-11.873937, 9.053889], - [-11.873704, 9.0533], - [-11.873829, 9.051485], - [-11.873518, 9.050888], - [-11.873483, 9.050275], - [-11.87455, 9.048813], - [-11.874968, 9.048156], - [-11.875946, 9.047451], - [-11.87702, 9.04618], - [-11.877256, 9.045146], - [-11.877355, 9.043565], - [-11.878624, 9.041635], - [-11.878835, 9.040684], - [-11.881903, 9.037886], - [-11.882824, 9.037312], - [-11.884066, 9.035659], - [-11.883719, 9.035226], - [-11.883276, 9.034593], - [-11.882268, 9.034347], - [-11.8815, 9.03313], - [-11.881126, 9.032927], - [-11.880731, 9.032083], - [-11.884582, 9.032082], - [-11.884583, 9.022917], - [-11.885416, 9.020417], - [-11.882082, 9.017082], - [-11.879583, 9.012917], - [-11.887011, 9.011678], - [-11.886888, 9.010775], - [-11.887243, 9.009684], - [-11.887982, 9.009123], - [-11.888684, 9.00904], - [-11.889094, 9.008803], - [-11.889388, 9.008685], - [-11.889527, 9.008822], - [-11.889681, 9.00898], - [-11.889859, 9.008717], - [-11.890173, 9.008886], - [-11.890417, 9.007917], - [-11.894582, 9.007916], - [-11.894582, 9.004582], - [-11.892917, 8.99875], - [-11.900416, 9.000416], - [-11.902916, 8.997083], - [-11.897917, 8.990417], - [-11.897916, 8.989365], - [-11.896233, 8.988106], - [-11.895915, 8.988], - [-11.897083, 8.986249], - [-11.900416, 8.985416], - [-11.900416, 8.98111], - [-11.900278, 8.981115], - [-11.899559, 8.980753], - [-11.900416, 8.980491], - [-11.900417, 8.977083], - [-11.903139, 8.970275], - [-11.908182, 8.969216], - [-11.911287, 8.967121], - [-11.912917, 8.968749], - [-11.921249, 8.968749], - [-11.92125, 8.964583], - [-11.926249, 8.960416], - [-11.927916, 8.957083], - [-11.92625, 8.954582], - [-11.927916, 8.947083] - ] - ], - "type": "Polygon" - }, - "id": 374, - "properties": { - "cc:admin:id": ["113"], - "cc:oBld:total": 172, - "cc:pop:fifteen-to-twenty-four": 899.3371699072025, - "cc:pop:grid3-total": 6418.787205408733, - "cc:pop:kontur-total": 5078.161905751716, - "cc:pop:men": 2158.484316485318, - "cc:pop:sixty-plus": 310.63753605057946, - "cc:pop:total": 4694.388163714603, - "cc:pop:under-five": 786.9859477589823, - "cc:pop:women": 2535.903847229286, - "cc:pop:women-fiften-to-forty-nine": 1206.2410018677765, - "cc:pop:wp-total": 6363.422569032187, - "cc:pop:wp-total-UN": 7372.58110982385, - "cc:id": "374", - "cc:Name": "Masongbo Limba MCHP", - "cc:site": [-11.8873, 8.9817], - "user:parentName": "Safroko Limba", - "user:code": "OU_193272", - "user:orgUnitId": "PhR1PdMTzhW", - "user:level": "4", - "user:parentId": "XG8HGAbrbbL" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.988683, 8.302348], - [-12.986205, 8.300798], - [-12.984747, 8.299902], - [-12.983375, 8.29954], - [-12.983103, 8.300129], - [-12.982628, 8.300612], - [-12.981926, 8.301093], - [-12.98125, 8.300416], - [-12.982082, 8.292917], - [-12.982545, 8.292299], - [-12.982256, 8.291911], - [-12.9829, 8.291265], - [-12.982797, 8.29072], - [-12.982215, 8.290289], - [-12.981148, 8.288651], - [-12.982059, 8.287109], - [-12.981547, 8.286205], - [-12.980771, 8.286071], - [-12.979362, 8.283747], - [-12.978984, 8.281683], - [-12.978992, 8.280138], - [-12.980977, 8.279285], - [-12.981161, 8.278662], - [-12.980726, 8.278227], - [-12.976928, 8.279096], - [-12.976935, 8.277551], - [-12.975902, 8.277545], - [-12.975907, 8.276258], - [-12.975134, 8.275996], - [-12.975136, 8.275223], - [-12.974106, 8.274702], - [-12.973472, 8.272123], - [-12.97257, 8.271603], - [-12.972571, 8.271088], - [-12.972575, 8.271082], - [-12.967917, 8.270416], - [-12.967916, 8.26628], - [-12.965827, 8.26611], - [-12.964695, 8.265432], - [-12.964024, 8.263893], - [-12.963132, 8.261229], - [-12.963181, 8.260806], - [-12.960947, 8.26253], - [-12.942977, 8.256933], - [-12.911178, 8.269822], - [-12.89796, 8.279325], - [-12.896172, 8.296118], - [-12.903793, 8.303551], - [-12.911489, 8.339463], - [-12.917917, 8.33875], - [-12.922917, 8.345416], - [-12.927782, 8.346806], - [-12.927493, 8.339946], - [-12.927881, 8.339328], - [-12.928575, 8.339054], - [-12.929236, 8.338378], - [-12.930831, 8.337359], - [-12.930832, 8.337359], - [-12.932917, 8.342916], - [-12.934582, 8.34375], - [-12.934583, 8.346249], - [-12.937083, 8.347083], - [-12.939583, 8.34625], - [-12.944582, 8.347083], - [-12.944583, 8.340417], - [-12.944876, 8.339829], - [-12.946781, 8.342244], - [-12.948582, 8.343583], - [-12.949583, 8.342084], - [-12.951249, 8.342916], - [-12.956249, 8.338749], - [-12.957083, 8.33375], - [-12.964582, 8.335416], - [-12.965657, 8.330581], - [-12.965624, 8.330545], - [-12.96561, 8.330199], - [-12.965679, 8.33007], - [-12.965773, 8.330063], - [-12.96625, 8.327917], - [-12.968921, 8.328584], - [-12.970209, 8.328124], - [-12.970417, 8.327917], - [-12.97285, 8.329133], - [-12.973105, 8.328424], - [-12.972978, 8.328059], - [-12.973828, 8.326054], - [-12.974011, 8.325057], - [-12.97532, 8.324951], - [-12.976082, 8.325349], - [-12.97666, 8.325367], - [-12.976913, 8.325687], - [-12.978369, 8.323192], - [-12.978786, 8.322094], - [-12.978929, 8.320312], - [-12.980705, 8.320311], - [-12.981249, 8.315417], - [-12.98125, 8.31375], - [-12.983749, 8.308749], - [-12.98375, 8.303673], - [-12.984793, 8.303899], - [-12.986027, 8.303748], - [-12.988683, 8.302348] - ] - ], - "type": "Polygon" - }, - "id": 375, - "properties": { - "cc:admin:id": ["112"], - "cc:oBld:total": 60, - "cc:pop:fifteen-to-twenty-four": 949.4076033702129, - "cc:pop:grid3-total": 1342.9458111104386, - "cc:pop:kontur-total": 4120.494286340015, - "cc:pop:men": 1976.7226899919624, - "cc:pop:sixty-plus": 294.711989023287, - "cc:pop:total": 4137.2073273359365, - "cc:pop:under-five": 441.95439278414216, - "cc:pop:women": 2160.4846373439736, - "cc:pop:women-fiften-to-forty-nine": 1150.59171007193, - "cc:pop:wp-total": 3274.8507447623747, - "cc:pop:wp-total-UN": 3777.2940689233546, - "cc:id": "375", - "cc:Name": "Masorie CHP", - "cc:site": [-12.942, 8.3144], - "user:parentName": "Rural Western Area", - "user:code": "OU_278381", - "user:orgUnitId": "xWjiTeok0Sr", - "user:level": "4", - "user:parentId": "qtr8GGlm4gg" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.150733, 8.638278], - [-12.150499, 8.638], - [-12.136, 8.638699], - [-12.133099, 8.6391], - [-12.1297, 8.6401], - [-12.127199, 8.6418], - [-12.121, 8.648999], - [-12.1151, 8.655799], - [-12.112, 8.658799], - [-12.1088, 8.661499], - [-12.105199, 8.6635], - [-12.0951, 8.6662], - [-12.090499, 8.6691], - [-12.087699, 8.672], - [-12.0852, 8.6766], - [-12.0851, 8.681], - [-12.086399, 8.688199], - [-12.0853, 8.691799], - [-12.0825, 8.693899], - [-12.078599, 8.694099], - [-12.0752, 8.6919], - [-12.071199, 8.684499], - [-12.067899, 8.6812], - [-12.065099, 8.680199], - [-12.060699, 8.6797], - [-12.054699, 8.6799], - [-12.0503, 8.680799], - [-12.0457, 8.682399], - [-12.0428, 8.683099], - [-12.040262, 8.683326], - [-12.040181, 8.683749], - [-12.03875, 8.68375], - [-12.03875, 8.687916], - [-12.042083, 8.696249], - [-12.048749, 8.695417], - [-12.049582, 8.695417], - [-12.051249, 8.698749], - [-12.052916, 8.704583], - [-12.051599, 8.710511], - [-12.051597, 8.710511], - [-12.051362, 8.710308], - [-12.050832, 8.71086], - [-12.050489, 8.71089], - [-12.049537, 8.709773], - [-12.049008, 8.709517], - [-12.048794, 8.709587], - [-12.051741, 8.71469], - [-12.052917, 8.71375], - [-12.059913, 8.71375], - [-12.059904, 8.713851], - [-12.060509, 8.714995], - [-12.060488, 8.7156], - [-12.060618, 8.715818], - [-12.06073, 8.715486], - [-12.061388, 8.715203], - [-12.062011, 8.71519], - [-12.062829, 8.714726], - [-12.063134, 8.71477], - [-12.063054, 8.715324], - [-12.06328, 8.716813], - [-12.062871, 8.717719], - [-12.067092, 8.71772], - [-12.070721, 8.724005], - [-12.072083, 8.722917], - [-12.077082, 8.722917], - [-12.082083, 8.728749], - [-12.08375, 8.72875], - [-12.085416, 8.732083], - [-12.080417, 8.734582], - [-12.080255, 8.734906], - [-12.082466, 8.735926], - [-12.085416, 8.736659], - [-12.085416, 8.737916], - [-12.077083, 8.74625], - [-12.077917, 8.747916], - [-12.087916, 8.749583], - [-12.087917, 8.754582], - [-12.088877, 8.756506], - [-12.089209, 8.755043], - [-12.091751, 8.754147], - [-12.092082, 8.753978], - [-12.092083, 8.755417], - [-12.100417, 8.763749], - [-12.102916, 8.762082], - [-12.102917, 8.758749], - [-12.112918, 8.752498], - [-12.114205, 8.752398], - [-12.114477, 8.752245], - [-12.109583, 8.748749], - [-12.112916, 8.740417], - [-12.115416, 8.73875], - [-12.116249, 8.738749], - [-12.117082, 8.737083], - [-12.115417, 8.737082], - [-12.114582, 8.735417], - [-12.107917, 8.732082], - [-12.105537, 8.728751], - [-12.110967, 8.72875], - [-12.111829, 8.727254], - [-12.111622, 8.726703], - [-12.111665, 8.726407], - [-12.11278, 8.724317], - [-12.112871, 8.723861], - [-12.1119, 8.722742], - [-12.110833, 8.721884], - [-12.110152, 8.721635], - [-12.110064, 8.721568], - [-12.110064, 8.721566], - [-12.120416, 8.720416], - [-12.120416, 8.717917], - [-12.118422, 8.711932], - [-12.118509, 8.711937], - [-12.119861, 8.711484], - [-12.121335, 8.710339], - [-12.123182, 8.70937], - [-12.122938, 8.706077], - [-12.121679, 8.687063], - [-12.121652, 8.686712], - [-12.121645, 8.686707], - [-12.121626, 8.686416], - [-12.121628, 8.686414], - [-12.121606, 8.686133], - [-12.121521, 8.685771], - [-12.121443, 8.685584], - [-12.121635, 8.685552], - [-12.121782, 8.685306], - [-12.121894, 8.684748], - [-12.12235, 8.683285], - [-12.123192, 8.683428], - [-12.123827, 8.681931], - [-12.123891, 8.680312], - [-12.123679, 8.678679], - [-12.123157, 8.678452], - [-12.121932, 8.676537], - [-12.121499, 8.67625], - [-12.127916, 8.676249], - [-12.13125, 8.672082], - [-12.131249, 8.66674], - [-12.127994, 8.66619], - [-12.128107, 8.665881], - [-12.128578, 8.664196], - [-12.127158, 8.664499], - [-12.126191, 8.663752], - [-12.125185, 8.662714], - [-12.124862, 8.661933], - [-12.125483, 8.661232], - [-12.126189, 8.660432], - [-12.128001, 8.658256], - [-12.125248, 8.659286], - [-12.125246, 8.659285], - [-12.125225, 8.659212], - [-12.131249, 8.647917], - [-12.129582, 8.64625], - [-12.125387, 8.646249], - [-12.125564, 8.645242], - [-12.126195, 8.643527], - [-12.127157, 8.642615], - [-12.127621, 8.642303], - [-12.128805, 8.641937], - [-12.131894, 8.641896], - [-12.137961, 8.640547], - [-12.142448, 8.640381], - [-12.144257, 8.640115], - [-12.148583, 8.638632], - [-12.150733, 8.638278] - ] - ], - "type": "Polygon" - }, - "id": 376, - "properties": { - "cc:admin:id": ["8"], - "cc:oBld:total": 33, - "cc:pop:fifteen-to-twenty-four": 427.8632850166972, - "cc:pop:grid3-total": 2934.1620889285628, - "cc:pop:kontur-total": 2318.6100233687935, - "cc:pop:men": 1135.3226209754512, - "cc:pop:sixty-plus": 140.92082788631126, - "cc:pop:total": 2384.121555158282, - "cc:pop:under-five": 383.7605028584453, - "cc:pop:women": 1248.7989341828302, - "cc:pop:women-fiften-to-forty-nine": 591.8184006774726, - "cc:pop:wp-total": 1669.3310386182457, - "cc:pop:wp-total-UN": 1931.8062715143667, - "cc:id": "376", - "cc:Name": "Masory MCHP", - "cc:site": [-12.0972, 8.7112], - "user:parentName": "Bombali Sebora", - "user:code": "OU_193201", - "user:orgUnitId": "dqHvtpUqLwB", - "user:level": "4", - "user:parentId": "KKkLOTpMXGV" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.269369, 8.682298], - [-11.268758, 8.680422], - [-11.268742, 8.680061], - [-11.269203, 8.679366], - [-11.26915, 8.677169], - [-11.268684, 8.67628], - [-11.268874, 8.673431], - [-11.268187, 8.672107], - [-11.26783, 8.671751], - [-11.267831, 8.67175], - [-11.268181, 8.671756], - [-11.268148, 8.670831], - [-11.268545, 8.668169], - [-11.268422, 8.665001], - [-11.268199, 8.664754], - [-11.2682, 8.664381], - [-11.26782, 8.663986], - [-11.26704, 8.66423], - [-11.266329, 8.664749], - [-11.267092, 8.665577], - [-11.266981, 8.665829], - [-11.266822, 8.665668], - [-11.260417, 8.66625], - [-11.25375, 8.669582], - [-11.254582, 8.65875], - [-11.253141, 8.657789], - [-11.252695, 8.658019], - [-11.251719, 8.658057], - [-11.25063, 8.658496], - [-11.249812, 8.659556], - [-11.249215, 8.660711], - [-11.248655, 8.661307], - [-11.246301, 8.662119], - [-11.244859, 8.663294], - [-11.243613, 8.663656], - [-11.243105, 8.664079], - [-11.240968, 8.666778], - [-11.239262, 8.668073], - [-11.237839, 8.669746], - [-11.237307, 8.67064], - [-11.237083, 8.670416], - [-11.237082, 8.667084], - [-11.232917, 8.659584], - [-11.232916, 8.657084], - [-11.22625, 8.657084], - [-11.227082, 8.659584], - [-11.227082, 8.667083], - [-11.224366, 8.667627], - [-11.224387, 8.667704], - [-11.224342, 8.668096], - [-11.220416, 8.668749], - [-11.215416, 8.66375], - [-11.21125, 8.66375], - [-11.212082, 8.672082], - [-11.210636, 8.673049], - [-11.2138, 8.676699], - [-11.218499, 8.679299], - [-11.219799, 8.6817], - [-11.219899, 8.6854], - [-11.2191, 8.688899], - [-11.2175, 8.6922], - [-11.2174, 8.6947], - [-11.2188, 8.6965], - [-11.2216, 8.696999], - [-11.229899, 8.6969], - [-11.233499, 8.697999], - [-11.2349, 8.7001], - [-11.236, 8.703499], - [-11.237999, 8.706299], - [-11.2411, 8.707799], - [-11.245, 8.7083], - [-11.2508, 8.708099], - [-11.254099, 8.707099], - [-11.2567, 8.705199], - [-11.258699, 8.7033], - [-11.260299, 8.7011], - [-11.2621, 8.697099], - [-11.266299, 8.689], - [-11.26909, 8.685349], - [-11.268762, 8.683766], - [-11.268931, 8.683048], - [-11.269369, 8.682298] - ] - ], - "type": "Polygon" - }, - "id": 377, - "properties": { - "cc:admin:id": ["101"], - "cc:oBld:total": 308, - "cc:pop:fifteen-to-twenty-four": 458.75604898251987, - "cc:pop:grid3-total": 4752.218948358866, - "cc:pop:kontur-total": 2376.853034732805, - "cc:pop:men": 1333.5199097175016, - "cc:pop:sixty-plus": 133.77135091891193, - "cc:pop:total": 2437.4138085787527, - "cc:pop:under-five": 370.5753561555466, - "cc:pop:women": 1103.893898861251, - "cc:pop:women-fiften-to-forty-nine": 573.1276984200715, - "cc:pop:wp-total": 2280.3977772154567, - "cc:pop:wp-total-UN": 2641.0996736399165, - "cc:id": "377", - "cc:Name": "Massabendu CHP", - "cc:site": [-11.2511, 8.6949], - "user:parentName": "Nimiyama", - "user:code": "OU_233335", - "user:orgUnitId": "Z0q0Y3GRugt", - "user:level": "4", - "user:parentId": "qgQ49DH9a0v" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.988698, 8.067584], - [-10.9884, 8.0634], - [-10.9878, 8.0609], - [-10.9819, 8.0491], - [-10.981, 8.0458], - [-10.980699, 8.041799], - [-10.980299, 8.0246], - [-10.9767, 8.027899], - [-10.974199, 8.0308], - [-10.97, 8.037999], - [-10.9665, 8.045499], - [-10.964799, 8.0513], - [-10.963899, 8.0649], - [-10.962599, 8.069299], - [-10.960174, 8.071899], - [-10.960352, 8.072532], - [-10.960198, 8.073229], - [-10.960426, 8.074166], - [-10.960679, 8.074207], - [-10.961121, 8.075258], - [-10.960653, 8.075406], - [-10.960612, 8.075596], - [-10.960175, 8.075612], - [-10.959588, 8.075889], - [-10.959256, 8.075796], - [-10.958712, 8.076135], - [-10.958166, 8.076691], - [-10.957255, 8.078742], - [-10.9574, 8.079568], - [-10.957649, 8.079663], - [-10.958058, 8.080258], - [-10.959089, 8.080997], - [-10.959266, 8.080992], - [-10.957833, 8.079568], - [-10.957481, 8.07874], - [-10.958074, 8.077326], - [-10.958743, 8.076384], - [-10.959273, 8.076049], - [-10.960835, 8.075725], - [-10.961384, 8.075307], - [-10.961278, 8.074663], - [-10.960825, 8.074203], - [-10.960732, 8.07375], - [-10.971249, 8.073749], - [-10.97125, 8.07125], - [-10.972916, 8.070417], - [-10.977917, 8.072916], - [-10.983749, 8.072916], - [-10.987811, 8.070885], - [-10.988005, 8.069249], - [-10.988679, 8.068219], - [-10.988699, 8.0676], - [-10.988698, 8.067584] - ] - ], - "type": "Polygon" - }, - "id": 378, - "properties": { - "cc:admin:id": ["86"], - "cc:oBld:total": 119, - "cc:pop:fifteen-to-twenty-four": 275.06728697684144, - "cc:pop:grid3-total": 668.0449034748857, - "cc:pop:kontur-total": 1512.8523008883233, - "cc:pop:men": 704.3526472509245, - "cc:pop:sixty-plus": 86.41038496320866, - "cc:pop:total": 1408.7052945018486, - "cc:pop:under-five": 223.2812305612976, - "cc:pop:women": 704.3526472509245, - "cc:pop:women-fiften-to-forty-nine": 344.89406905762286, - "cc:pop:wp-total": 1047.9967856281614, - "cc:pop:wp-total-UN": 1214.5479706434785, - "cc:id": "378", - "cc:Name": "Massahun MCHP", - "cc:site": [-10.968, 8.0509], - "user:parentName": "Nongowa", - "user:code": "OU_222712", - "user:orgUnitId": "GA7eQkgK5mX", - "user:level": "4", - "user:parentId": "KIUCimTXf8Q" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.749268, 7.28212], - [-11.748926, 7.281817], - [-11.747027, 7.281451], - [-11.744967, 7.280422], - [-11.743245, 7.279933], - [-11.739446, 7.27935], - [-11.737917, 7.278963], - [-11.737916, 7.278306], - [-11.737038, 7.278044], - [-11.736658, 7.277794], - [-11.73495, 7.275782], - [-11.731762, 7.273696], - [-11.727696, 7.267084], - [-11.726373, 7.265974], - [-11.726931, 7.260946], - [-11.726587, 7.260733], - [-11.726759, 7.260049], - [-11.727273, 7.260375], - [-11.727979, 7.261176], - [-11.728322, 7.261755], - [-11.728782, 7.263569], - [-11.729412, 7.264418], - [-11.730109, 7.265035], - [-11.731417, 7.265785], - [-11.732294, 7.266771], - [-11.733074, 7.267115], - [-11.733571, 7.26708], - [-11.734983, 7.266078], - [-11.734938, 7.264187], - [-11.735175, 7.262502], - [-11.735992, 7.260348], - [-11.738194, 7.257875], - [-11.73943, 7.256142], - [-11.737399, 7.2556], - [-11.732899, 7.2556], - [-11.729499, 7.2564], - [-11.725199, 7.2584], - [-11.7227, 7.258599], - [-11.7202, 7.2577], - [-11.718099, 7.255999], - [-11.7113, 7.2492], - [-11.7073, 7.2459], - [-11.702299, 7.243199], - [-11.6949, 7.2377], - [-11.691699, 7.236299], - [-11.687999, 7.234399], - [-11.685599, 7.233599], - [-11.681299, 7.232699], - [-11.676, 7.2303], - [-11.671799, 7.228899], - [-11.6689, 7.2275], - [-11.669199, 7.264999], - [-11.6695, 7.2711], - [-11.6702, 7.2739], - [-11.6722, 7.2784], - [-11.6738, 7.2842], - [-11.6761, 7.2896], - [-11.6769, 7.2932], - [-11.677299, 7.299999], - [-11.677999, 7.303599], - [-11.68, 7.3082], - [-11.680699, 7.310899], - [-11.681299, 7.315699], - [-11.681999, 7.318499], - [-11.6843, 7.3239], - [-11.6849, 7.3276], - [-11.685199, 7.331499], - [-11.685099, 7.3368], - [-11.683999, 7.340999], - [-11.681699, 7.3439], - [-11.678299, 7.3467], - [-11.6746, 7.352699], - [-11.673299, 7.3558], - [-11.671, 7.360199], - [-11.669599, 7.3633], - [-11.668099, 7.3657], - [-11.6662, 7.367899], - [-11.662, 7.371899], - [-11.659699, 7.3736], - [-11.6514, 7.377699], - [-11.648, 7.3785], - [-11.6456, 7.379899], - [-11.6444, 7.381999], - [-11.643896, 7.383603], - [-11.644583, 7.382916], - [-11.64625, 7.379584], - [-11.654582, 7.38125], - [-11.656533, 7.385151], - [-11.656828, 7.384906], - [-11.657083, 7.385416], - [-11.661249, 7.384584], - [-11.662083, 7.38625], - [-11.668749, 7.387916], - [-11.672916, 7.387916], - [-11.673749, 7.38375], - [-11.67375, 7.382917], - [-11.680416, 7.382083], - [-11.683749, 7.377916], - [-11.683749, 7.36875], - [-11.682084, 7.36625], - [-11.688749, 7.36625], - [-11.688749, 7.367917], - [-11.685417, 7.37125], - [-11.685417, 7.378749], - [-11.696619, 7.380243], - [-11.696619, 7.380245], - [-11.6965, 7.380276], - [-11.696341, 7.380541], - [-11.69587, 7.381743], - [-11.695832, 7.382717], - [-11.696544, 7.384558], - [-11.696611, 7.386712], - [-11.697308, 7.387338], - [-11.698498, 7.387822], - [-11.698751, 7.388165], - [-11.698921, 7.38864], - [-11.698873, 7.389907], - [-11.699168, 7.390609], - [-11.698757, 7.390997], - [-11.698707, 7.391655], - [-11.698032, 7.392657], - [-11.697166, 7.39294], - [-11.696588, 7.393499], - [-11.696227, 7.39363], - [-11.695536, 7.393374], - [-11.695046, 7.392913], - [-11.69452, 7.392798], - [-11.694065, 7.3938], - [-11.694279, 7.394637], - [-11.694613, 7.395084], - [-11.694707, 7.396629], - [-11.696178, 7.399013], - [-11.696444, 7.399167], - [-11.698737, 7.399841], - [-11.699089, 7.39933], - [-11.699537, 7.399588], - [-11.700013, 7.399363], - [-11.700202, 7.39938], - [-11.699946, 7.399327], - [-11.699339, 7.399025], - [-11.69828, 7.397842], - [-11.697881, 7.398401], - [-11.69733, 7.398782], - [-11.696533, 7.398617], - [-11.696304, 7.398642], - [-11.695288, 7.39701], - [-11.694969, 7.396079], - [-11.694947, 7.395495], - [-11.695163, 7.395033], - [-11.694667, 7.394624], - [-11.694435, 7.394148], - [-11.694365, 7.393886], - [-11.694581, 7.39344], - [-11.694954, 7.393255], - [-11.695987, 7.394017], - [-11.696755, 7.394054], - [-11.697616, 7.393524], - [-11.698106, 7.393], - [-11.699443, 7.390928], - [-11.69985, 7.389926], - [-11.699695, 7.389482], - [-11.699525, 7.387916], - [-11.697726, 7.386342], - [-11.697753, 7.385885], - [-11.698411, 7.384988], - [-11.697385, 7.384062], - [-11.697516, 7.383643], - [-11.696857, 7.38273], - [-11.696681, 7.381767], - [-11.699325, 7.378316], - [-11.699649, 7.377542], - [-11.699721, 7.376487], - [-11.699326, 7.376123], - [-11.69892, 7.373271], - [-11.699722, 7.372627], - [-11.701588, 7.370358], - [-11.702344, 7.369967], - [-11.702728, 7.369994], - [-11.704343, 7.371947], - [-11.70543, 7.372649], - [-11.706213, 7.372622], - [-11.707185, 7.371529], - [-11.707236, 7.371502], - [-11.707063, 7.370526], - [-11.706574, 7.369699], - [-11.706019, 7.369363], - [-11.705581, 7.368143], - [-11.705585, 7.367055], - [-11.705801, 7.366688], - [-11.705449, 7.365809], - [-11.70545, 7.365808], - [-11.705662, 7.365815], - [-11.705946, 7.36423], - [-11.705517, 7.361813], - [-11.705868, 7.361445], - [-11.705785, 7.361277], - [-11.70522, 7.361183], - [-11.704658, 7.360569], - [-11.704491, 7.359559], - [-11.704763, 7.358799], - [-11.704781, 7.358771], - [-11.70553, 7.357913], - [-11.706823, 7.357931], - [-11.707568, 7.357639], - [-11.708072, 7.356888], - [-11.707976, 7.356392], - [-11.708228, 7.355923], - [-11.709237, 7.355364], - [-11.710661, 7.353849], - [-11.711256, 7.353749], - [-11.712349, 7.35435], - [-11.712916, 7.352084], - [-11.713749, 7.351249], - [-11.712917, 7.345417], - [-11.715729, 7.345416], - [-11.717632, 7.342216], - [-11.718323, 7.340477], - [-11.719068, 7.337466], - [-11.720419, 7.33471], - [-11.721047, 7.332993], - [-11.720373, 7.329206], - [-11.718929, 7.326157], - [-11.718704, 7.32491], - [-11.718805, 7.323324], - [-11.719184, 7.322515], - [-11.719077, 7.31976], - [-11.71927, 7.31929], - [-11.719775, 7.319175], - [-11.720808, 7.319375], - [-11.72156, 7.319583], - [-11.722376, 7.320105], - [-11.724765, 7.320583], - [-11.726007, 7.319752], - [-11.726566, 7.319098], - [-11.728375, 7.316587], - [-11.728515, 7.315856], - [-11.729284, 7.314193], - [-11.730895, 7.311266], - [-11.732912, 7.308237], - [-11.733966, 7.305897], - [-11.735239, 7.305281], - [-11.735791, 7.305174], - [-11.738952, 7.303503], - [-11.739637, 7.302807], - [-11.73976, 7.302325], - [-11.739537, 7.301634], - [-11.739809, 7.29949], - [-11.741339, 7.295733], - [-11.742308, 7.293869], - [-11.743031, 7.291508], - [-11.743912, 7.289784], - [-11.744506, 7.287146], - [-11.747267, 7.284625], - [-11.748474, 7.283834], - [-11.748377, 7.283664], - [-11.749268, 7.28212] - ] - ], - "type": "Polygon" - }, - "id": 379, - "properties": { - "cc:admin:id": ["66"], - "cc:oBld:total": 55, - "cc:pop:fifteen-to-twenty-four": 2023.6255348725915, - "cc:pop:grid3-total": 11069.260624395669, - "cc:pop:kontur-total": 11466.356967525317, - "cc:pop:men": 5552.30670067452, - "cc:pop:sixty-plus": 857.8364856471, - "cc:pop:total": 11425.384199763124, - "cc:pop:under-five": 1911.7530385288214, - "cc:pop:women": 5873.077499088601, - "cc:pop:women-fiften-to-forty-nine": 2826.52517172472, - "cc:pop:wp-total": 9285.003942806608, - "cc:pop:wp-total-UN": 10757.87553730853, - "cc:id": "379", - "cc:Name": "Massam MCHP", - "cc:site": [-11.686, 7.3549], - "user:parentName": "Kpaka", - "user:code": "OU_260441", - "user:orgUnitId": "vpNGJvZ0ljF", - "user:level": "4", - "user:parentId": "zSNUViKdkk3" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.798999, 9.2037], - [-12.797799, 9.200499], - [-12.795599, 9.1995], - [-12.790199, 9.198799], - [-12.786999, 9.197399], - [-12.7847, 9.194999], - [-12.781199, 9.1874], - [-12.7732, 9.1815], - [-12.769299, 9.179799], - [-12.7648, 9.1776], - [-12.758899, 9.176099], - [-12.752699, 9.173599], - [-12.749899, 9.173099], - [-12.746899, 9.1729], - [-12.743, 9.173099], - [-12.7393, 9.173799], - [-12.734, 9.176199], - [-12.7282, 9.177699], - [-12.7237, 9.179699], - [-12.720899, 9.1803], - [-12.715999, 9.1806], - [-12.7019, 9.1806], - [-12.6986, 9.179999], - [-12.6961, 9.1784], - [-12.694499, 9.176499], - [-12.690899, 9.168999], - [-12.690199, 9.165199], - [-12.69, 9.1521], - [-12.689699, 9.149199], - [-12.688799, 9.146599], - [-12.6855, 9.1398], - [-12.6829, 9.1347], - [-12.681399, 9.128799], - [-12.6772, 9.1205], - [-12.672399, 9.114299], - [-12.6694, 9.1073], - [-12.666999, 9.1022], - [-12.663999, 9.1013], - [-12.6611, 9.1016], - [-12.6591, 9.1029], - [-12.6577, 9.1069], - [-12.6579, 9.1122], - [-12.660599, 9.120699], - [-12.660899, 9.1249], - [-12.6596, 9.130799], - [-12.6579, 9.135099], - [-12.656299, 9.138], - [-12.652, 9.1434], - [-12.651, 9.146499], - [-12.6507, 9.1508], - [-12.6509, 9.1553], - [-12.6513, 9.1582], - [-12.653299, 9.166399], - [-12.653599, 9.1699], - [-12.652699, 9.1744], - [-12.651199, 9.1778], - [-12.648599, 9.1813], - [-12.6423, 9.187799], - [-12.6368, 9.192899], - [-12.6332, 9.195499], - [-12.630599, 9.1967], - [-12.6208, 9.200099], - [-12.6155, 9.201599], - [-12.611999, 9.203], - [-12.605599, 9.2065], - [-12.5971, 9.213299], - [-12.5933, 9.215099], - [-12.589, 9.215699], - [-12.584699, 9.215599], - [-12.580599, 9.214799], - [-12.5747, 9.2129], - [-12.570799, 9.2125], - [-12.5668, 9.2128], - [-12.561799, 9.2152], - [-12.5569, 9.219299], - [-12.5552, 9.2215], - [-12.554099, 9.2257], - [-12.553699, 9.2366], - [-12.552199, 9.2437], - [-12.550399, 9.2479], - [-12.548199, 9.250499], - [-12.545299, 9.251999], - [-12.5418, 9.252499], - [-12.5374, 9.2509], - [-12.5343, 9.247099], - [-12.532499, 9.241499], - [-12.531699, 9.2322], - [-12.530199, 9.2289], - [-12.525899, 9.2272], - [-12.5221, 9.2283], - [-12.5202, 9.2322], - [-12.519399, 9.2415], - [-12.5164, 9.256699], - [-12.5136, 9.268599], - [-12.512299, 9.271699], - [-12.509699, 9.274199], - [-12.506499, 9.275299], - [-12.5024, 9.2746], - [-12.4978, 9.270599], - [-12.495899, 9.266199], - [-12.494, 9.2573], - [-12.493, 9.2542], - [-12.491399, 9.2514], - [-12.489199, 9.2499], - [-12.4855, 9.2501], - [-12.4831, 9.2522], - [-12.4795, 9.258799], - [-12.4776, 9.264099], - [-12.473699, 9.266799], - [-12.4686, 9.266599], - [-12.464599, 9.2643], - [-12.4563, 9.2639], - [-12.4516, 9.263], - [-12.448799, 9.261899], - [-12.442899, 9.258], - [-12.4395, 9.2572], - [-12.435599, 9.2591], - [-12.434099, 9.2618], - [-12.4297, 9.273899], - [-12.4284, 9.278399], - [-12.4278, 9.282299], - [-12.4273, 9.291999], - [-12.426599, 9.295899], - [-12.424699, 9.299299], - [-12.4187, 9.304999], - [-12.411099, 9.296599], - [-12.400599, 9.285899], - [-12.3953, 9.2806], - [-12.3919, 9.2778], - [-12.388, 9.2758], - [-12.3838, 9.275], - [-12.3799, 9.2752], - [-12.3768, 9.2765], - [-12.3753, 9.2787], - [-12.375, 9.281799], - [-12.376499, 9.286199], - [-12.3784, 9.288899], - [-12.3853, 9.2941], - [-12.393199, 9.300899], - [-12.3967, 9.3037], - [-12.406399, 9.309299], - [-12.413099, 9.3127], - [-12.4104, 9.317399], - [-12.4083, 9.322099], - [-12.4063, 9.325099], - [-12.400899, 9.3305], - [-12.397499, 9.3363], - [-12.393399, 9.346], - [-12.391, 9.349299], - [-12.3889, 9.351199], - [-12.385699, 9.352699], - [-12.3809, 9.353099], - [-12.3726, 9.3508], - [-12.3662, 9.35], - [-12.364999, 9.3552], - [-12.3637, 9.361599], - [-12.366799, 9.3654], - [-12.367699, 9.3693], - [-12.367599, 9.3745], - [-12.365399, 9.3838], - [-12.3651, 9.3879], - [-12.3657, 9.3918], - [-12.3676, 9.395799], - [-12.370199, 9.398299], - [-12.375399, 9.400899], - [-12.3808, 9.4019], - [-12.390899, 9.401999], - [-12.395099, 9.4024], - [-12.398199, 9.4037], - [-12.400799, 9.4062], - [-12.402399, 9.4108], - [-12.402799, 9.424099], - [-12.403999, 9.431299], - [-12.407799, 9.438999], - [-12.4096, 9.4449], - [-12.4104, 9.4519], - [-12.4105, 9.463599], - [-12.411899, 9.466999], - [-12.413399, 9.469499], - [-12.4162, 9.471199], - [-12.4204, 9.470999], - [-12.428799, 9.4684], - [-12.433399, 9.4666], - [-12.4378, 9.465799], - [-12.4423, 9.465399], - [-12.450099, 9.4653], - [-12.469299, 9.465799], - [-12.472999, 9.4643], - [-12.475399, 9.4638], - [-12.4783, 9.463599], - [-12.486999, 9.4634], - [-12.4907, 9.462799], - [-12.495999, 9.4606], - [-12.5003, 9.459599], - [-12.5023, 9.458799], - [-12.504199, 9.4576], - [-12.506299, 9.4557], - [-12.507999, 9.4537], - [-12.5107, 9.4498], - [-12.5152, 9.446799], - [-12.5174, 9.445699], - [-12.522499, 9.4446], - [-12.524899, 9.4438], - [-12.531699, 9.4405], - [-12.5335, 9.438999], - [-12.535, 9.437099], - [-12.5365, 9.434199], - [-12.5396, 9.4309], - [-12.5464, 9.427399], - [-12.5488, 9.426499], - [-12.5539, 9.425299], - [-12.558099, 9.4234], - [-12.560899, 9.4229], - [-12.564399, 9.4232], - [-12.569799, 9.425499], - [-12.5743, 9.426099], - [-12.5769, 9.425499], - [-12.580899, 9.4233], - [-12.584, 9.421899], - [-12.5875, 9.419999], - [-12.5907, 9.419099], - [-12.595699, 9.4188], - [-12.598899, 9.418099], - [-12.6024, 9.415799], - [-12.6042, 9.413899], - [-12.605999, 9.4109], - [-12.6072, 9.405099], - [-12.609599, 9.3999], - [-12.6108, 9.396699], - [-12.613199, 9.3925], - [-12.615299, 9.3883], - [-12.620099, 9.382], - [-12.621999, 9.3781], - [-12.6239, 9.375299], - [-12.6263, 9.372699], - [-12.630799, 9.3682], - [-12.637299, 9.3619], - [-12.64, 9.360099], - [-12.6443, 9.357799], - [-12.6481, 9.354699], - [-12.654499, 9.3483], - [-12.655784, 9.347279], - [-12.6579, 9.345599], - [-12.661899, 9.3436], - [-12.6647, 9.341599], - [-12.670599, 9.336], - [-12.673099, 9.3334], - [-12.675499, 9.3303], - [-12.6776, 9.325999], - [-12.679899, 9.3217], - [-12.6813, 9.318599], - [-12.6832, 9.315899], - [-12.6866, 9.311599], - [-12.6905, 9.303799], - [-12.6912, 9.301599], - [-12.6923, 9.2965], - [-12.693699, 9.2941], - [-12.6954, 9.291999], - [-12.705599, 9.2818], - [-12.7082, 9.279499], - [-12.7104, 9.277999], - [-12.7136, 9.276599], - [-12.717799, 9.2742], - [-12.720999, 9.2729], - [-12.725299, 9.2706], - [-12.7285, 9.269199], - [-12.7319, 9.266699], - [-12.741099, 9.2576], - [-12.743899, 9.2556], - [-12.747, 9.254199], - [-12.751299, 9.2518], - [-12.7545, 9.250599], - [-12.758899, 9.2484], - [-12.764799, 9.2471], - [-12.7678, 9.245499], - [-12.770299, 9.2432], - [-12.772299, 9.2405], - [-12.774499, 9.2359], - [-12.7776, 9.231999], - [-12.7812, 9.228499], - [-12.784, 9.226399], - [-12.7879, 9.224499], - [-12.7909, 9.222299], - [-12.7936, 9.219599], - [-12.7948, 9.217399], - [-12.796399, 9.2107], - [-12.798499, 9.2062], - [-12.798999, 9.2037] - ] - ], - "type": "Polygon" - }, - "id": 380, - "properties": { - "cc:admin:id": ["137"], - "cc:oBld:total": 2481, - "cc:pop:fifteen-to-twenty-four": 11608.871138244729, - "cc:pop:grid3-total": 48760.438529064035, - "cc:pop:kontur-total": 63322.79768354242, - "cc:pop:men": 29224.04630902568, - "cc:pop:sixty-plus": 4060.128021635624, - "cc:pop:total": 61437.29470657933, - "cc:pop:under-five": 10008.089322402067, - "cc:pop:women": 32213.248397553598, - "cc:pop:women-fiften-to-forty-nine": 16026.983629296408, - "cc:pop:wp-total": 53187.607837890704, - "cc:pop:wp-total-UN": 61685.44252485015, - "cc:id": "380", - "cc:Name": "Masselleh MCHP", - "cc:site": [-12.7107, 9.2148], - "user:parentName": "Tonko Limba", - "user:code": "OU_211275", - "user:orgUnitId": "cag6vQQ9SQk", - "user:level": "4", - "user:parentId": "y5X4mP5XylL" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.530417, 8.667916], - [-11.530416, 8.666249], - [-11.525417, 8.65875], - [-11.524583, 8.658749], - [-11.524583, 8.64875], - [-11.525416, 8.64375], - [-11.519583, 8.644583], - [-11.515416, 8.640417], - [-11.509583, 8.642083], - [-11.509214, 8.641347], - [-11.5088, 8.641612], - [-11.507083, 8.63875], - [-11.510416, 8.633749], - [-11.510416, 8.632084], - [-11.507917, 8.630416], - [-11.507916, 8.62625], - [-11.505416, 8.625416], - [-11.501249, 8.617917], - [-11.499583, 8.617083], - [-11.500417, 8.615417], - [-11.502916, 8.614583], - [-11.502917, 8.612916], - [-11.509582, 8.608749], - [-11.510416, 8.60375], - [-11.508749, 8.602917], - [-11.499583, 8.602916], - [-11.499583, 8.597576], - [-11.499648, 8.597563], - [-11.50069, 8.596912], - [-11.502671, 8.596248], - [-11.502889, 8.596318], - [-11.503584, 8.595961], - [-11.505416, 8.595694], - [-11.505416, 8.59125], - [-11.499856, 8.591944], - [-11.499833, 8.592084], - [-11.496249, 8.592083], - [-11.494583, 8.590416], - [-11.493749, 8.582917], - [-11.485417, 8.57375], - [-11.487916, 8.56875], - [-11.483749, 8.569583], - [-11.482916, 8.567083], - [-11.482083, 8.555417], - [-11.493749, 8.555416], - [-11.49375, 8.552099], - [-11.493097, 8.55243], - [-11.492673, 8.552496], - [-11.492654, 8.552497], - [-11.48875, 8.54625], - [-11.487916, 8.54125], - [-11.484583, 8.54125], - [-11.479583, 8.547916], - [-11.479582, 8.549584], - [-11.47375, 8.554584], - [-11.474206, 8.555954], - [-11.474154, 8.555995], - [-11.472719, 8.556832], - [-11.472167, 8.557681], - [-11.470588, 8.559117], - [-11.471249, 8.563749], - [-11.470416, 8.565417], - [-11.46125, 8.569583], - [-11.458749, 8.565417], - [-11.44872, 8.565417], - [-11.449075, 8.567186], - [-11.450532, 8.569475], - [-11.451131, 8.570744], - [-11.451194, 8.573387], - [-11.451724, 8.574823], - [-11.449515, 8.575149], - [-11.448866, 8.57507], - [-11.4484, 8.574729], - [-11.446609, 8.574218], - [-11.444583, 8.574742], - [-11.444583, 8.579583], - [-11.455416, 8.58375], - [-11.455416, 8.594582], - [-11.455415, 8.594583], - [-11.453749, 8.59375], - [-11.450218, 8.595515], - [-11.449036, 8.595515], - [-11.445129, 8.588751], - [-11.43875, 8.588751], - [-11.43875, 8.592916], - [-11.443749, 8.597917], - [-11.442082, 8.602917], - [-11.432083, 8.612083], - [-11.428749, 8.612084], - [-11.42375, 8.612917], - [-11.423749, 8.620417], - [-11.42092, 8.625368], - [-11.421041, 8.625415], - [-11.419582, 8.631249], - [-11.417917, 8.633749], - [-11.40875, 8.632917], - [-11.40784, 8.632007], - [-11.407827, 8.63202], - [-11.40782, 8.632543], - [-11.408577, 8.633325], - [-11.40979, 8.635246], - [-11.40993, 8.635584], - [-11.414583, 8.63625], - [-11.417916, 8.641249], - [-11.407083, 8.64625], - [-11.407083, 8.650416], - [-11.408749, 8.651249], - [-11.40875, 8.652916], - [-11.410415, 8.65375], - [-11.402083, 8.659584], - [-11.402916, 8.665416], - [-11.402083, 8.670416], - [-11.40125, 8.670417], - [-11.399052, 8.678474], - [-11.398718, 8.678413], - [-11.398351, 8.677732], - [-11.397933, 8.677575], - [-11.397362, 8.677938], - [-11.397409, 8.678112], - [-11.397198, 8.678387], - [-11.396617, 8.678436], - [-11.396471, 8.678177], - [-11.39625, 8.678256], - [-11.39625, 8.685416], - [-11.399581, 8.689582], - [-11.38875, 8.68875], - [-11.387355, 8.68968], - [-11.389099, 8.695399], - [-11.3916, 8.7008], - [-11.393499, 8.706499], - [-11.3942, 8.7105], - [-11.394899, 8.718899], - [-11.396099, 8.724099], - [-11.399599, 8.7314], - [-11.399999, 8.7356], - [-11.3991, 8.741199], - [-11.3989, 8.7451], - [-11.399199, 8.749099], - [-11.400199, 8.752699], - [-11.4023, 8.7571], - [-11.408499, 8.764599], - [-11.410899, 8.767999], - [-11.4129, 8.7722], - [-11.416999, 8.781999], - [-11.421899, 8.789199], - [-11.42409, 8.792703], - [-11.432082, 8.791249], - [-11.424583, 8.783749], - [-11.425605, 8.781705], - [-11.425728, 8.78168], - [-11.426871, 8.781895], - [-11.428667, 8.781956], - [-11.429518, 8.781778], - [-11.431799, 8.780489], - [-11.432425, 8.780306], - [-11.433441, 8.778876], - [-11.433522, 8.778304], - [-11.434172, 8.777751], - [-11.434833, 8.776672], - [-11.434825, 8.775153], - [-11.434012, 8.775064], - [-11.433427, 8.774811], - [-11.432963, 8.774172], - [-11.432671, 8.77286], - [-11.432043, 8.771752], - [-11.431732, 8.771477], - [-11.431732, 8.771476], - [-11.441249, 8.767082], - [-11.439582, 8.76125], - [-11.437501, 8.759167], - [-11.444067, 8.759166], - [-11.447395, 8.753405], - [-11.45254, 8.753009], - [-11.453174, 8.750103], - [-11.453175, 8.748628], - [-11.458749, 8.743749], - [-11.45875, 8.742083], - [-11.460465, 8.742083], - [-11.460667, 8.742894], - [-11.461266, 8.743571], - [-11.461879, 8.744582], - [-11.464583, 8.744582], - [-11.467916, 8.743749], - [-11.467083, 8.740417], - [-11.46625, 8.738749], - [-11.467916, 8.73375], - [-11.465417, 8.72875], - [-11.465417, 8.727917], - [-11.472917, 8.729583], - [-11.47375, 8.729582], - [-11.476249, 8.728749], - [-11.477916, 8.722917], - [-11.478423, 8.722409], - [-11.478605, 8.720417], - [-11.483749, 8.720416], - [-11.48375, 8.71625], - [-11.486249, 8.70875], - [-11.491249, 8.708749], - [-11.495416, 8.706249], - [-11.496249, 8.702917], - [-11.497083, 8.700417], - [-11.501249, 8.699582], - [-11.502083, 8.697917], - [-11.504582, 8.697082], - [-11.506249, 8.69375], - [-11.507916, 8.692916], - [-11.509246, 8.691586], - [-11.509248, 8.691586], - [-11.509262, 8.691794], - [-11.509708, 8.692406], - [-11.50979, 8.692916], - [-11.510416, 8.692916], - [-11.510417, 8.691249], - [-11.515416, 8.685416], - [-11.515417, 8.682917], - [-11.524582, 8.682083], - [-11.526249, 8.681249], - [-11.524583, 8.67125], - [-11.530417, 8.667916] - ] - ], - "type": "Polygon" - }, - "id": 381, - "properties": { - "cc:admin:id": ["68"], - "cc:oBld:total": 386, - "cc:pop:fifteen-to-twenty-four": 6113.888841841939, - "cc:pop:grid3-total": 34833.77281683168, - "cc:pop:kontur-total": 33120.68674034925, - "cc:pop:men": 15573.583193289529, - "cc:pop:sixty-plus": 2096.1313396413675, - "cc:pop:total": 33054.23017023331, - "cc:pop:under-five": 5304.683367814812, - "cc:pop:women": 17480.646976943775, - "cc:pop:women-fiften-to-forty-nine": 8509.460743549065, - "cc:pop:wp-total": 22148.988296201125, - "cc:pop:wp-total-UN": 25682.752147812236, - "cc:id": "381", - "cc:Name": "Massingbi CHC", - "cc:site": [-11.4735, 8.6419], - "user:parentName": "Kunike", - "user:code": "OU_268176", - "user:orgUnitId": "OY7mYDATra3", - "user:level": "4", - "user:parentId": "l0ccv2yzfF3" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.046479, 8.894807], - [-12.046263, 8.894654], - [-12.046136, 8.894573], - [-12.046099, 8.894646], - [-12.045913, 8.895048], - [-12.045811, 8.895459], - [-12.04594, 8.895791], - [-12.046298, 8.895853], - [-12.04635, 8.896074], - [-12.04575, 8.896594], - [-12.045214, 8.898043], - [-12.045286, 8.89821], - [-12.045032, 8.899206], - [-12.044537, 8.899549], - [-12.044813, 8.899791], - [-12.044712, 8.900267], - [-12.04471, 8.900267], - [-12.044511, 8.899946], - [-12.044369, 8.900179], - [-12.043982, 8.900052], - [-12.043982, 8.90005], - [-12.044295, 8.899815], - [-12.044357, 8.899455], - [-12.044562, 8.899368], - [-12.045192, 8.898236], - [-12.045228, 8.897424], - [-12.045476, 8.89714], - [-12.045264, 8.897003], - [-12.045482, 8.896876], - [-12.045586, 8.896164], - [-12.04535, 8.895494], - [-12.044841, 8.895545], - [-12.044805, 8.895335], - [-12.044943, 8.894857], - [-12.044798, 8.89434], - [-12.044766, 8.894307], - [-12.043337, 8.893179], - [-12.043556, 8.892722], - [-12.042981, 8.892465], - [-12.041714, 8.89189], - [-12.042831, 8.890837], - [-12.043201, 8.890158], - [-12.042193, 8.889777], - [-12.041328, 8.890417], - [-12.04071, 8.890088], - [-12.04038, 8.889575], - [-12.04041, 8.888431], - [-12.039984, 8.888312], - [-12.039719, 8.887781], - [-12.039409, 8.88776], - [-12.037337, 8.888881], - [-12.036955, 8.888387], - [-12.036606, 8.887932], - [-12.036026, 8.888303], - [-12.035339, 8.888663], - [-12.03466, 8.888894], - [-12.033929, 8.889138], - [-12.033354, 8.889262], - [-12.033071, 8.889283], - [-12.032396, 8.889236], - [-12.03147, 8.888819], - [-12.031256, 8.888661], - [-12.031089, 8.88853], - [-12.030791, 8.888163], - [-12.030377, 8.888608], - [-12.028778, 8.88736], - [-12.027001, 8.887401], - [-12.026423, 8.887793], - [-12.026424, 8.887798], - [-12.026411, 8.887806], - [-12.026338, 8.887871], - [-12.026288, 8.887808], - [-12.025847, 8.887707], - [-12.025832, 8.887701], - [-12.025815, 8.887658], - [-12.0258, 8.887634], - [-12.025802, 8.887624], - [-12.025561, 8.886997], - [-12.024493, 8.886015], - [-12.023681, 8.886108], - [-12.022741, 8.885869], - [-12.022125, 8.886063], - [-12.020674, 8.886018], - [-12.019429, 8.885596], - [-12.019386, 8.885404], - [-12.0181, 8.885407], - [-12.017408, 8.885013], - [-12.017218, 8.884702], - [-12.01704, 8.88525], - [-12.017019, 8.88617], - [-12.016002, 8.886451], - [-12.014778, 8.887097], - [-12.013764, 8.887351], - [-12.012531, 8.888421], - [-12.011836, 8.890458], - [-12.011348, 8.891088], - [-12.01, 8.894399], - [-12.0094, 8.897099], - [-12.00929, 8.898173], - [-12.012083, 8.902082], - [-12.016198, 8.90126], - [-12.016198, 8.901261], - [-12.015907, 8.901889], - [-12.016247, 8.902906], - [-12.022895, 8.902907], - [-12.024077, 8.904952], - [-12.024256, 8.904955], - [-12.024571, 8.904138], - [-12.024926, 8.904183], - [-12.025331, 8.904472], - [-12.025609, 8.905038], - [-12.026043, 8.905156], - [-12.026254, 8.904968], - [-12.026564, 8.9047], - [-12.02688, 8.904309], - [-12.027272, 8.904057], - [-12.027325, 8.903744], - [-12.027842, 8.903491], - [-12.027941, 8.903526], - [-12.028391, 8.903869], - [-12.029108, 8.904802], - [-12.029526, 8.905164], - [-12.030736, 8.904353], - [-12.03085, 8.904284], - [-12.031524, 8.903766], - [-12.032201, 8.90331], - [-12.033767, 8.90454], - [-12.035151, 8.902702], - [-12.036044, 8.903202], - [-12.036084, 8.903229], - [-12.036338, 8.903369], - [-12.036637, 8.903982], - [-12.037049, 8.903873], - [-12.037871, 8.904132], - [-12.038552, 8.9041], - [-12.038785, 8.903622], - [-12.040047, 8.902564], - [-12.041583, 8.901027], - [-12.04239, 8.899657], - [-12.04282, 8.900295], - [-12.04299, 8.900485], - [-12.043367, 8.900934], - [-12.044055, 8.902058], - [-12.044204, 8.902574], - [-12.044347, 8.903113], - [-12.044494, 8.903621], - [-12.044681, 8.90337], - [-12.044869, 8.903027], - [-12.044971, 8.902637], - [-12.044847, 8.902213], - [-12.045289, 8.901313], - [-12.045487, 8.900444], - [-12.046117, 8.900403], - [-12.046478, 8.900029], - [-12.0464, 8.898599], - [-12.046479, 8.894807] - ] - ], - "type": "Polygon" - }, - "id": 382, - "properties": { - "cc:admin:id": ["83"], - "cc:oBld:total": 3490, - "cc:pop:fifteen-to-twenty-four": 3112.010923968095, - "cc:pop:grid3-total": 36279.5306884395, - "cc:pop:kontur-total": 15895.93410286195, - "cc:pop:men": 8078.765414935565, - "cc:pop:sixty-plus": 1070.3907104672803, - "cc:pop:total": 16887.81444736781, - "cc:pop:under-five": 2716.3066944499774, - "cc:pop:women": 8809.04903243225, - "cc:pop:women-fiften-to-forty-nine": 4274.311536059192, - "cc:pop:wp-total": 22233.18023789105, - "cc:pop:wp-total-UN": 25768.103279700117, - "cc:id": "382", - "cc:Name": "Masuba MCHP", - "cc:site": [-12.0366, 8.8914], - "user:parentName": "Bombali Sebora", - "user:code": "OU_193202", - "user:orgUnitId": "XzmWizbR343", - "user:level": "4", - "user:parentId": "KKkLOTpMXGV" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.8438, 8.505279], - [-12.843698, 8.505331], - [-12.843418, 8.505334], - [-12.8429, 8.505001], - [-12.841695, 8.503772], - [-12.840794, 8.503256], - [-12.839882, 8.502834], - [-12.838905, 8.502796], - [-12.835691, 8.500911], - [-12.834503, 8.499664], - [-12.839582, 8.494584], - [-12.83375, 8.494583], - [-12.833749, 8.489584], - [-12.82875, 8.48125], - [-12.830416, 8.477084], - [-12.827916, 8.474584], - [-12.824583, 8.475416], - [-12.823514, 8.473277], - [-12.823733, 8.472963], - [-12.823271, 8.473147], - [-12.822916, 8.472084], - [-12.817084, 8.471249], - [-12.820416, 8.467083], - [-12.820416, 8.462084], - [-12.81375, 8.462083], - [-12.813749, 8.45875], - [-12.812083, 8.457084], - [-12.808749, 8.462083], - [-12.802917, 8.462916], - [-12.802082, 8.455417], - [-12.79375, 8.453749], - [-12.789582, 8.45125], - [-12.784583, 8.45375], - [-12.785416, 8.463749], - [-12.782956, 8.465718], - [-12.782893, 8.466249], - [-12.77375, 8.46625], - [-12.767917, 8.471249], - [-12.777916, 8.476249], - [-12.779582, 8.47625], - [-12.779582, 8.477084], - [-12.775417, 8.482916], - [-12.771857, 8.485051], - [-12.772255, 8.485168], - [-12.774126, 8.486144], - [-12.775921, 8.487057], - [-12.780738, 8.487713], - [-12.780941, 8.488639], - [-12.78094, 8.48864], - [-12.778388, 8.48852], - [-12.776851, 8.488149], - [-12.77625, 8.48875], - [-12.775417, 8.492916], - [-12.775417, 8.494583], - [-12.777083, 8.494584], - [-12.781249, 8.495416], - [-12.786249, 8.499584], - [-12.780417, 8.508749], - [-12.777083, 8.512084], - [-12.777083, 8.514583], - [-12.777917, 8.514584], - [-12.777917, 8.523749], - [-12.785417, 8.52375], - [-12.787917, 8.531249], - [-12.792082, 8.534583], - [-12.789583, 8.539584], - [-12.792917, 8.547916], - [-12.802916, 8.542916], - [-12.802083, 8.53625], - [-12.804582, 8.533749], - [-12.804583, 8.524583], - [-12.813749, 8.520417], - [-12.817916, 8.522916], - [-12.825617, 8.514445], - [-12.826954, 8.515659], - [-12.828906, 8.516765], - [-12.829565, 8.516828], - [-12.831249, 8.514583], - [-12.83125, 8.512916], - [-12.833749, 8.51125], - [-12.841811, 8.51311], - [-12.840546, 8.510917], - [-12.8438, 8.505279] - ] - ], - "type": "Polygon" - }, - "id": 383, - "properties": { - "cc:admin:id": ["62"], - "cc:oBld:total": 49, - "cc:pop:fifteen-to-twenty-four": 671.9107184932498, - "cc:pop:grid3-total": 2997.6171967875134, - "cc:pop:kontur-total": 3676.511992264813, - "cc:pop:men": 1728.9575941979576, - "cc:pop:sixty-plus": 236.4083436472346, - "cc:pop:total": 3692.2961064164424, - "cc:pop:under-five": 613.3826844027403, - "cc:pop:women": 1963.3385122184848, - "cc:pop:women-fiften-to-forty-nine": 978.4924522312431, - "cc:pop:wp-total": 4101.798206408071, - "cc:pop:wp-total-UN": 4754.808563000292, - "cc:id": "383", - "cc:Name": "Masumana MCHP", - "cc:site": [-12.801, 8.4898], - "user:parentName": "Koya", - "user:code": "OU_254965", - "user:orgUnitId": "UlgEReuUPM4", - "user:level": "4", - "user:parentId": "pRHGAROvuyI" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.470899, 9.1184], - [-12.464199, 9.117799], - [-12.456599, 9.117399], - [-12.452999, 9.116199], - [-12.4505, 9.1129], - [-12.4506, 9.109899], - [-12.452399, 9.1071], - [-12.458899, 9.1009], - [-12.460099, 9.0985], - [-12.459899, 9.0962], - [-12.458299, 9.095], - [-12.4559, 9.0948], - [-12.4533, 9.095499], - [-12.4454, 9.099699], - [-12.443299, 9.1014], - [-12.4368, 9.107799], - [-12.434599, 9.109199], - [-12.431, 9.109899], - [-12.4284, 9.109699], - [-12.4264, 9.108799], - [-12.4249, 9.1073], - [-12.423799, 9.104999], - [-12.4235, 9.102299], - [-12.4242, 9.098999], - [-12.426099, 9.094699], - [-12.426399, 9.0922], - [-12.4256, 9.0899], - [-12.4234, 9.0858], - [-12.4218, 9.0841], - [-12.416599, 9.0811], - [-12.4139, 9.0805], - [-12.411399, 9.0811], - [-12.4056, 9.0848], - [-12.402999, 9.088499], - [-12.400399, 9.0904], - [-12.397899, 9.0912], - [-12.3938, 9.091499], - [-12.3891, 9.0911], - [-12.3863, 9.089599], - [-12.383999, 9.086299], - [-12.381099, 9.082899], - [-12.3772, 9.0791], - [-12.3742, 9.077], - [-12.367299, 9.073699], - [-12.364899, 9.072899], - [-12.359699, 9.071899], - [-12.356399, 9.0708], - [-12.3533, 9.071699], - [-12.3506, 9.072799], - [-12.349, 9.074499], - [-12.3477, 9.079299], - [-12.346299, 9.0816], - [-12.3436, 9.083299], - [-12.341, 9.083099], - [-12.3384, 9.081199], - [-12.336999, 9.079099], - [-12.334399, 9.073099], - [-12.332699, 9.065899], - [-12.331099, 9.0636], - [-12.328699, 9.062099], - [-12.3266, 9.062], - [-12.3234, 9.0636], - [-12.3148, 9.072199], - [-12.3112, 9.075199], - [-12.3034, 9.079199], - [-12.302161, 9.079475], - [-12.305123, 9.08016], - [-12.305893, 9.080617], - [-12.305298, 9.080858], - [-12.303466, 9.08224], - [-12.301486, 9.0833], - [-12.300585, 9.084763], - [-12.300048, 9.085249], - [-12.296241, 9.08633], - [-12.293988, 9.086523], - [-12.291609, 9.087329], - [-12.290417, 9.087429], - [-12.289422, 9.08738], - [-12.288749, 9.092082], - [-12.28375, 9.095417], - [-12.284583, 9.097916], - [-12.290417, 9.097917], - [-12.292083, 9.10125], - [-12.293749, 9.108749], - [-12.294583, 9.112082], - [-12.301704, 9.113508], - [-12.302175, 9.114971], - [-12.302044, 9.116132], - [-12.301657, 9.116656], - [-12.302916, 9.117917], - [-12.299583, 9.128749], - [-12.302083, 9.130417], - [-12.308749, 9.132916], - [-12.312082, 9.137083], - [-12.312083, 9.137917], - [-12.312916, 9.140417], - [-12.30625, 9.14125], - [-12.303062, 9.143163], - [-12.303072, 9.143231], - [-12.303403, 9.143962], - [-12.304162, 9.144533], - [-12.304785, 9.14696], - [-12.305337, 9.147775], - [-12.305685, 9.149089], - [-12.306225, 9.150094], - [-12.306551, 9.150113], - [-12.304583, 9.152082], - [-12.310416, 9.15625], - [-12.316249, 9.166249], - [-12.313749, 9.168749], - [-12.307896, 9.16875], - [-12.310837, 9.173844], - [-12.310109, 9.175108], - [-12.31125, 9.17625], - [-12.316249, 9.177917], - [-12.31625, 9.182083], - [-12.317601, 9.187487], - [-12.317898, 9.187425], - [-12.31867, 9.187424], - [-12.321123, 9.187363], - [-12.321898, 9.187108], - [-12.323415, 9.185852], - [-12.323601, 9.185656], - [-12.324268, 9.186356], - [-12.324493, 9.187028], - [-12.325389, 9.187998], - [-12.325995, 9.188872], - [-12.326154, 9.189405], - [-12.326153, 9.189407], - [-12.324781, 9.189721], - [-12.324768, 9.189786], - [-12.332082, 9.191249], - [-12.332916, 9.19125], - [-12.329583, 9.19875], - [-12.330417, 9.202082], - [-12.337083, 9.205416], - [-12.337996, 9.205416], - [-12.338417, 9.204708], - [-12.338552, 9.204583], - [-12.340417, 9.204583], - [-12.342917, 9.20625], - [-12.350416, 9.209582], - [-12.349771, 9.214099], - [-12.3513, 9.214099], - [-12.354199, 9.2139], - [-12.356799, 9.2133], - [-12.361199, 9.2111], - [-12.3644, 9.209699], - [-12.368699, 9.2075], - [-12.371499, 9.2068], - [-12.3744, 9.2066], - [-12.397399, 9.206699], - [-12.401199, 9.205299], - [-12.404599, 9.199999], - [-12.4055, 9.196299], - [-12.4059, 9.190999], - [-12.4067, 9.188], - [-12.4085, 9.185199], - [-12.414299, 9.1788], - [-12.4181, 9.174199], - [-12.4221, 9.173099], - [-12.428399, 9.172999], - [-12.430099, 9.1653], - [-12.431799, 9.1596], - [-12.435399, 9.1521], - [-12.4375, 9.148799], - [-12.441199, 9.1447], - [-12.445299, 9.141], - [-12.4485, 9.138599], - [-12.4527, 9.136099], - [-12.457, 9.132499], - [-12.4631, 9.126499], - [-12.470899, 9.1184] - ] - ], - "type": "Polygon" - }, - "id": 384, - "properties": { - "cc:admin:id": ["118"], - "cc:oBld:total": 214, - "cc:pop:fifteen-to-twenty-four": 1528.9025075585619, - "cc:pop:grid3-total": 7052.802690360744, - "cc:pop:kontur-total": 8417.404844222954, - "cc:pop:men": 3829.8904679836783, - "cc:pop:sixty-plus": 536.6322020579679, - "cc:pop:total": 8103.553327327672, - "cc:pop:under-five": 1270.011904694533, - "cc:pop:women": 4273.662859343996, - "cc:pop:women-fiften-to-forty-nine": 2079.9839086177376, - "cc:pop:wp-total": 6952.054702665991, - "cc:pop:wp-total-UN": 8073.637297764002, - "cc:id": "384", - "cc:Name": "Mateboi CHC", - "cc:site": [-12.3627, 9.1038], - "user:parentName": "Sanda Tendaren", - "user:code": "OU_193197", - "user:orgUnitId": "EXbPGmEUdnc", - "user:level": "4", - "user:parentId": "UhHipWG7J8b" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.855569, 8.712237], - [-11.852916, 8.709583], - [-11.850417, 8.709583], - [-11.84943, 8.710569], - [-11.84923, 8.710465], - [-11.846249, 8.717917], - [-11.842916, 8.717916], - [-11.832917, 8.71375], - [-11.83324, 8.71267], - [-11.835416, 8.705417], - [-11.837082, 8.703749], - [-11.837082, 8.699583], - [-11.83575, 8.699139], - [-11.832358, 8.699139], - [-11.831146, 8.70081], - [-11.825418, 8.702082], - [-11.825417, 8.702081], - [-11.825416, 8.700417], - [-11.819582, 8.699582], - [-11.817083, 8.697916], - [-11.823025, 8.691231], - [-11.820765, 8.691359], - [-11.818108, 8.691218], - [-11.816964, 8.690794], - [-11.815512, 8.689923], - [-11.815154, 8.689538], - [-11.814433, 8.68992], - [-11.813648, 8.691364], - [-11.813106, 8.692101], - [-11.811821, 8.693085], - [-11.811187, 8.693763], - [-11.810416, 8.68375], - [-11.806249, 8.690416], - [-11.798749, 8.689583], - [-11.794583, 8.690417], - [-11.793749, 8.692083], - [-11.784583, 8.692917], - [-11.784443, 8.694167], - [-11.780285, 8.694166], - [-11.776379, 8.687401], - [-11.772083, 8.687401], - [-11.772083, 8.694582], - [-11.772321, 8.695417], - [-11.769451, 8.695418], - [-11.765545, 8.702183], - [-11.760517, 8.702183], - [-11.758749, 8.700417], - [-11.757083, 8.701249], - [-11.757082, 8.705416], - [-11.752916, 8.70625], - [-11.747549, 8.708933], - [-11.747601, 8.709133], - [-11.74625, 8.709583], - [-11.746249, 8.710417], - [-11.744583, 8.71125], - [-11.743749, 8.715417], - [-11.735417, 8.717916], - [-11.732917, 8.715416], - [-11.732916, 8.712846], - [-11.730046, 8.712846], - [-11.72614, 8.719611], - [-11.718327, 8.719612], - [-11.714421, 8.726376], - [-11.706608, 8.726377], - [-11.702702, 8.733142], - [-11.70259, 8.733143], - [-11.7032, 8.7342], - [-11.7045, 8.7374], - [-11.708399, 8.744699], - [-11.710499, 8.747199], - [-11.7126, 8.7486], - [-11.715, 8.7496], - [-11.719299, 8.751899], - [-11.7233, 8.7535], - [-11.7289, 8.7572], - [-11.730099, 8.7595], - [-11.731, 8.7663], - [-11.7323, 8.7693], - [-11.7356, 8.773799], - [-11.741399, 8.775799], - [-11.745899, 8.777899], - [-11.7498, 8.7795], - [-11.754499, 8.7823], - [-11.756099, 8.784099], - [-11.7568, 8.7866], - [-11.757099, 8.794099], - [-11.757499, 8.796499], - [-11.7587, 8.7991], - [-11.7616, 8.803399], - [-11.7648, 8.804699], - [-11.769099, 8.804699], - [-11.772099, 8.8037], - [-11.774099, 8.8025], - [-11.7783, 8.798999], - [-11.7824, 8.797499], - [-11.787799, 8.7968], - [-11.790299, 8.7963], - [-11.7948, 8.794399], - [-11.7974, 8.793799], - [-11.803599, 8.7931], - [-11.806099, 8.7924], - [-11.812799, 8.7892], - [-11.8147, 8.787699], - [-11.8164, 8.785299], - [-11.8196, 8.7773], - [-11.822899, 8.7756], - [-11.825099, 8.7739], - [-11.828299, 8.7708], - [-11.83, 8.768599], - [-11.8309, 8.766699], - [-11.832499, 8.7603], - [-11.834499, 8.755], - [-11.835299, 8.7491], - [-11.836199, 8.7465], - [-11.8401, 8.743399], - [-11.843499, 8.7402], - [-11.8446, 8.738899], - [-11.8456, 8.736899], - [-11.846099, 8.7345], - [-11.846299, 8.7258], - [-11.8467, 8.723499], - [-11.8479, 8.720799], - [-11.850799, 8.7163], - [-11.853899, 8.7141], - [-11.855569, 8.712237] - ] - ], - "type": "Polygon" - }, - "id": 385, - "properties": { - "cc:admin:id": ["132"], - "cc:oBld:total": 61, - "cc:pop:fifteen-to-twenty-four": 916.6828681264158, - "cc:pop:grid3-total": 8222.695357722918, - "cc:pop:kontur-total": 5368.125988847084, - "cc:pop:men": 2274.6956667238437, - "cc:pop:sixty-plus": 317.6118205965985, - "cc:pop:total": 4930.319400380442, - "cc:pop:under-five": 787.6072162883133, - "cc:pop:women": 2655.6237336565982, - "cc:pop:women-fiften-to-forty-nine": 1294.6131189247137, - "cc:pop:wp-total": 4795.306956862929, - "cc:pop:wp-total-UN": 5544.418793572716, - "cc:id": "385", - "cc:Name": "Mathonkara MCHP", - "cc:site": [-11.8134, 8.7537], - "user:parentName": "Tane", - "user:code": "OU_268218", - "user:orgUnitId": "rLaGvUnv2BF", - "user:level": "4", - "user:parentId": "xhyjU2SVewz" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.941999, 8.6211], - [-11.9353, 8.6158], - [-11.929999, 8.613099], - [-11.924299, 8.608699], - [-11.920099, 8.606599], - [-11.9158, 8.6041], - [-11.912599, 8.602799], - [-11.9081, 8.6006], - [-11.903, 8.5995], - [-11.900499, 8.598699], - [-11.8926, 8.5947], - [-11.886599, 8.590099], - [-11.882399, 8.587999], - [-11.8781, 8.5856], - [-11.874899, 8.584299], - [-11.870499, 8.581899], - [-11.8659, 8.5796], - [-11.860599, 8.575399], - [-11.859501, 8.57483], - [-11.858768, 8.576099], - [-11.860417, 8.57625], - [-11.862916, 8.578749], - [-11.86375, 8.582916], - [-11.867916, 8.585417], - [-11.870417, 8.589583], - [-11.87375, 8.592084], - [-11.874582, 8.594584], - [-11.872083, 8.599584], - [-11.873749, 8.604583], - [-11.87125, 8.608749], - [-11.874582, 8.61125], - [-11.87125, 8.61375], - [-11.872083, 8.617083], - [-11.878749, 8.619584], - [-11.877082, 8.623749], - [-11.873769, 8.625076], - [-11.873819, 8.625133], - [-11.876983, 8.629902], - [-11.87783, 8.631715], - [-11.876275, 8.632326], - [-11.873895, 8.632954], - [-11.874582, 8.637083], - [-11.877083, 8.635417], - [-11.88125, 8.635417], - [-11.883749, 8.640417], - [-11.88125, 8.647916], - [-11.882917, 8.649583], - [-11.885417, 8.650417], - [-11.886886, 8.658495], - [-11.889099, 8.6571], - [-11.890999, 8.6563], - [-11.893399, 8.6558], - [-11.902199, 8.6557], - [-11.905999, 8.6555], - [-11.909199, 8.654699], - [-11.9131, 8.651599], - [-11.9154, 8.648799], - [-11.9177, 8.645399], - [-11.9235, 8.641999], - [-11.9259, 8.641099], - [-11.930199, 8.6403], - [-11.9326, 8.639099], - [-11.9354, 8.636799], - [-11.937999, 8.632999], - [-11.9394, 8.627099], - [-11.941999, 8.6211] - ] - ], - "type": "Polygon" - }, - "id": 386, - "properties": { - "cc:admin:id": ["132"], - "cc:oBld:total": 392, - "cc:pop:fifteen-to-twenty-four": 441.4882862617629, - "cc:pop:grid3-total": 2563.2458021657467, - "cc:pop:kontur-total": 2927.850577003015, - "cc:pop:men": 1079.9184156848653, - "cc:pop:sixty-plus": 157.267880156615, - "cc:pop:total": 2345.589328833026, - "cc:pop:under-five": 367.75624750406473, - "cc:pop:women": 1265.6709131481612, - "cc:pop:women-fiften-to-forty-nine": 611.1540011748388, - "cc:pop:wp-total": 1860.0833873799015, - "cc:pop:wp-total-UN": 2158.3245178478255, - "cc:id": "386", - "cc:Name": "Mathufulie MCHP", - "cc:site": [-11.9027, 8.6354], - "user:parentName": "Tane", - "user:code": "OU_268223", - "user:orgUnitId": "OTn9VMNEkdo", - "user:level": "4", - "user:parentId": "xhyjU2SVewz" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.886885, 8.658495], - [-11.885416, 8.650417], - [-11.882917, 8.649583], - [-11.88125, 8.647916], - [-11.883749, 8.640417], - [-11.88125, 8.635417], - [-11.877083, 8.635417], - [-11.874584, 8.637083], - [-11.874582, 8.637082], - [-11.873895, 8.632953], - [-11.876275, 8.632326], - [-11.87783, 8.631715], - [-11.876983, 8.629902], - [-11.873819, 8.625133], - [-11.87377, 8.625075], - [-11.877082, 8.623749], - [-11.878749, 8.619584], - [-11.872083, 8.617083], - [-11.87125, 8.61375], - [-11.874582, 8.61125], - [-11.87125, 8.608749], - [-11.873749, 8.604583], - [-11.872083, 8.599584], - [-11.874582, 8.594583], - [-11.873749, 8.592084], - [-11.870417, 8.589583], - [-11.867916, 8.585417], - [-11.86375, 8.582916], - [-11.862916, 8.57875], - [-11.860416, 8.57625], - [-11.858768, 8.576099], - [-11.8595, 8.57483], - [-11.855199, 8.572599], - [-11.852399, 8.570399], - [-11.8477, 8.566], - [-11.8448, 8.5638], - [-11.839499, 8.560999], - [-11.833799, 8.556499], - [-11.8296, 8.5545], - [-11.826592, 8.552821], - [-11.825416, 8.554584], - [-11.824583, 8.558749], - [-11.824583, 8.560416], - [-11.83125, 8.567083], - [-11.838749, 8.567917], - [-11.83375, 8.578749], - [-11.833749, 8.579584], - [-11.832917, 8.582083], - [-11.834582, 8.586249], - [-11.834582, 8.587083], - [-11.829583, 8.589584], - [-11.82625, 8.594583], - [-11.833749, 8.59875], - [-11.832917, 8.609583], - [-11.835416, 8.612917], - [-11.83375, 8.615416], - [-11.832917, 8.61625], - [-11.83125, 8.622916], - [-11.832083, 8.625416], - [-11.832916, 8.62625], - [-11.83375, 8.631249], - [-11.836028, 8.632958], - [-11.836152, 8.632819], - [-11.83625, 8.632917], - [-11.838749, 8.63375], - [-11.837083, 8.641249], - [-11.838749, 8.642917], - [-11.83823, 8.645514], - [-11.837917, 8.645525], - [-11.837916, 8.646249], - [-11.837082, 8.647084], - [-11.834583, 8.651249], - [-11.836249, 8.653749], - [-11.836249, 8.656617], - [-11.835069, 8.656455], - [-11.826139, 8.657305], - [-11.822631, 8.657679], - [-11.822083, 8.660416], - [-11.823749, 8.662084], - [-11.82125, 8.665417], - [-11.81875, 8.673749], - [-11.820417, 8.675416], - [-11.829582, 8.674583], - [-11.831249, 8.674583], - [-11.831249, 8.677082], - [-11.827082, 8.677917], - [-11.82375, 8.682917], - [-11.825135, 8.69123], - [-11.824736, 8.691134], - [-11.823026, 8.691231], - [-11.817083, 8.697916], - [-11.819583, 8.699582], - [-11.825416, 8.700417], - [-11.825417, 8.702082], - [-11.831146, 8.700809], - [-11.832359, 8.699139], - [-11.83575, 8.699139], - [-11.837082, 8.699582], - [-11.837082, 8.703749], - [-11.835417, 8.705417], - [-11.832917, 8.713749], - [-11.842916, 8.717916], - [-11.846249, 8.717916], - [-11.84923, 8.710465], - [-11.849429, 8.710569], - [-11.850417, 8.709583], - [-11.852916, 8.709583], - [-11.855569, 8.712236], - [-11.8565, 8.711199], - [-11.860099, 8.7038], - [-11.8608, 8.700099], - [-11.8608, 8.6895], - [-11.861499, 8.6859], - [-11.8657, 8.677099], - [-11.873099, 8.668], - [-11.8787, 8.665899], - [-11.8812, 8.664099], - [-11.8845, 8.66], - [-11.886885, 8.658495] - ] - ], - "type": "Polygon" - }, - "id": 387, - "properties": { - "cc:admin:id": ["132"], - "cc:oBld:total": 1349, - "cc:pop:fifteen-to-twenty-four": 2629.946755649177, - "cc:pop:grid3-total": 10771.851966023405, - "cc:pop:kontur-total": 13383.14524257341, - "cc:pop:men": 6469.535878744691, - "cc:pop:sixty-plus": 915.4045716097028, - "cc:pop:total": 14027.81743141095, - "cc:pop:under-five": 2218.0618536126813, - "cc:pop:women": 7558.281552666258, - "cc:pop:women-fiften-to-forty-nine": 3655.897691356754, - "cc:pop:wp-total": 9651.91763867125, - "cc:pop:wp-total-UN": 11180.655047205835, - "cc:id": "387", - "cc:Name": "Matotoka CHC", - "cc:site": [-11.8591, 8.6573], - "user:parentName": "Tane", - "user:code": "OU_268221", - "user:orgUnitId": "KcCbIDzRcui", - "user:level": "4", - "user:parentId": "xhyjU2SVewz" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.269299, 7.733899], - [-12.2674, 7.7283], - [-12.2654, 7.7245], - [-12.262499, 7.721299], - [-12.2585, 7.7173], - [-12.2549, 7.7145], - [-12.2522, 7.7131], - [-12.2422, 7.710499], - [-12.237199, 7.707299], - [-12.2328, 7.7031], - [-12.2292, 7.6985], - [-12.226699, 7.692099], - [-12.2246, 7.6855], - [-12.224799, 7.685399], - [-12.2211, 7.6809], - [-12.218, 7.6778], - [-12.2158, 7.676], - [-12.209399, 7.671699], - [-12.1983, 7.6619], - [-12.194899, 7.659699], - [-12.1883, 7.6567], - [-12.1854, 7.656], - [-12.181099, 7.6556], - [-12.1738, 7.656099], - [-12.170299, 7.6569], - [-12.1596, 7.661299], - [-12.1563, 7.661699], - [-12.155948, 7.661625], - [-12.155509, 7.663379], - [-12.155507, 7.66338], - [-12.155147, 7.663162], - [-12.154861, 7.664301], - [-12.152756, 7.663503], - [-12.151107, 7.663468], - [-12.149908, 7.663906], - [-12.146015, 7.664792], - [-12.142145, 7.664493], - [-12.141024, 7.664511], - [-12.14082, 7.663703], - [-12.139704, 7.663721], - [-12.137623, 7.665184], - [-12.137228, 7.665852], - [-12.137088, 7.667073], - [-12.137274, 7.668041], - [-12.139343, 7.671302], - [-12.14018, 7.67303], - [-12.14075, 7.67508], - [-12.14097, 7.676566], - [-12.140958, 7.679354], - [-12.140726, 7.681726], - [-12.139983, 7.684203], - [-12.139808, 7.685574], - [-12.140366, 7.687221], - [-12.141505, 7.688627], - [-12.144132, 7.690217], - [-12.147084, 7.691623], - [-12.148852, 7.694018], - [-12.150665, 7.694687], - [-12.15299, 7.69501], - [-12.157174, 7.695078], - [-12.163706, 7.69395], - [-12.165237, 7.693975], - [-12.1666, 7.694659], - [-12.167636, 7.695897], - [-12.169412, 7.699498], - [-12.170743, 7.701321], - [-12.171747, 7.702152], - [-12.172795, 7.702302], - [-12.176808, 7.701438], - [-12.178478, 7.70124], - [-12.179182, 7.701422], - [-12.179519, 7.701862], - [-12.179749, 7.704352], - [-12.179611, 7.705127], - [-12.178861, 7.705991], - [-12.176976, 7.707054], - [-12.176134, 7.707114], - [-12.172136, 7.705263], - [-12.17088, 7.705233], - [-12.168253, 7.705892], - [-12.166024, 7.707032], - [-12.163587, 7.709544], - [-12.16339, 7.709933], - [-12.164067, 7.711627], - [-12.162913, 7.713339], - [-12.161137, 7.715488], - [-12.161425, 7.7177], - [-12.162566, 7.720774], - [-12.16325, 7.721767], - [-12.16371, 7.722057], - [-12.164375, 7.722153], - [-12.165857, 7.721646], - [-12.166248, 7.721249], - [-12.166488, 7.720515], - [-12.16662, 7.719845], - [-12.166571, 7.719584], - [-12.167779, 7.719583], - [-12.167441, 7.718304], - [-12.166322, 7.716308], - [-12.166077, 7.715358], - [-12.166077, 7.714349], - [-12.166407, 7.71416], - [-12.167103, 7.714099], - [-12.167769, 7.71438], - [-12.168749, 7.71532], - [-12.168796, 7.71537], - [-12.169704, 7.714462], - [-12.169705, 7.714462], - [-12.172441, 7.718705], - [-12.17323, 7.720785], - [-12.173299, 7.721445], - [-12.173115, 7.722266], - [-12.172051, 7.724285], - [-12.171193, 7.725477], - [-12.169462, 7.727382], - [-12.168029, 7.72937], - [-12.166384, 7.732147], - [-12.165747, 7.733871], - [-12.164415, 7.739426], - [-12.164247, 7.740822], - [-12.164713, 7.743084], - [-12.165733, 7.745225], - [-12.165896, 7.74637], - [-12.165802, 7.748298], - [-12.165931, 7.750097], - [-12.166283, 7.75157], - [-12.166229, 7.752916], - [-12.164966, 7.752917], - [-12.164972, 7.754345], - [-12.164299, 7.76097], - [-12.164896, 7.763414], - [-12.165241, 7.764281], - [-12.165923, 7.765214], - [-12.166416, 7.765569], - [-12.166906, 7.765523], - [-12.168668, 7.764864], - [-12.169867, 7.763551], - [-12.17351, 7.763551], - [-12.173512, 7.763572], - [-12.17339, 7.764667], - [-12.172864, 7.765632], - [-12.17218, 7.766359], - [-12.172405, 7.767701], - [-12.173574, 7.766923], - [-12.173697, 7.767656], - [-12.174149, 7.768309], - [-12.177717, 7.771534], - [-12.179733, 7.773037], - [-12.181892, 7.773704], - [-12.181958, 7.773694], - [-12.183088, 7.771738], - [-12.184736, 7.771737], - [-12.184949, 7.77139], - [-12.185109, 7.769197], - [-12.184581, 7.767428], - [-12.184994, 7.766397], - [-12.186098, 7.76579], - [-12.187326, 7.765558], - [-12.187617, 7.766719], - [-12.190769, 7.76598], - [-12.191742, 7.766054], - [-12.196967, 7.767575], - [-12.201802, 7.768704], - [-12.204921, 7.769158], - [-12.209266, 7.769509], - [-12.214578, 7.769146], - [-12.215038, 7.769286], - [-12.215368, 7.769646], - [-12.2177, 7.768699], - [-12.222799, 7.7662], - [-12.2288, 7.764799], - [-12.233199, 7.7626], - [-12.2364, 7.761299], - [-12.240599, 7.7589], - [-12.243699, 7.7575], - [-12.246999, 7.7551], - [-12.260599, 7.7416], - [-12.269299, 7.733899] - ] - ], - "type": "Polygon" - }, - "id": 388, - "properties": { - "cc:admin:id": ["76"], - "cc:oBld:total": 139, - "cc:pop:fifteen-to-twenty-four": 938.0241257620153, - "cc:pop:grid3-total": 4576.520610325272, - "cc:pop:kontur-total": 4915.610437653004, - "cc:pop:men": 2557.0446756764086, - "cc:pop:sixty-plus": 382.23346310157666, - "cc:pop:total": 5132.730214275541, - "cc:pop:under-five": 892.2831636651277, - "cc:pop:women": 2575.685538599132, - "cc:pop:women-fiften-to-forty-nine": 1222.255486162208, - "cc:pop:wp-total": 4492.642202425537, - "cc:pop:wp-total-UN": 5202.016122629563, - "cc:id": "388", - "cc:Name": "Mattru Jong MCHP", - "cc:site": [-12.16964, 7.68708], - "user:parentName": "Jong", - "user:code": "OU_197389", - "user:orgUnitId": "PnMPARoMhWW", - "user:level": "4", - "user:parentId": "VCtF1DbspR5" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.826455, 7.913333], - [-11.824833, 7.91287], - [-11.823974, 7.912989], - [-11.822725, 7.912576], - [-11.823026, 7.91228], - [-11.823494, 7.912156], - [-11.823715, 7.911066], - [-11.823279, 7.909793], - [-11.820417, 7.912083], - [-11.817083, 7.912084], - [-11.813749, 7.915416], - [-11.804583, 7.915416], - [-11.802083, 7.91375], - [-11.802082, 7.917916], - [-11.795292, 7.917917], - [-11.791385, 7.911151], - [-11.787182, 7.911151], - [-11.784582, 7.913749], - [-11.78125, 7.91375], - [-11.778749, 7.912084], - [-11.776977, 7.912084], - [-11.776708, 7.912433], - [-11.769583, 7.909584], - [-11.76875, 7.909584], - [-11.757916, 7.914583], - [-11.749583, 7.91125], - [-11.749502, 7.91021], - [-11.743889, 7.910209], - [-11.74299, 7.90886], - [-11.746877, 7.907227], - [-11.746143, 7.906063], - [-11.745525, 7.90628], - [-11.745066, 7.906116], - [-11.744337, 7.906313], - [-11.742186, 7.905626], - [-11.741491, 7.90556], - [-11.74125, 7.905633], - [-11.741249, 7.90375], - [-11.737916, 7.899584], - [-11.728846, 7.898827], - [-11.728846, 7.898826], - [-11.729453, 7.898312], - [-11.729645, 7.898199], - [-11.729833, 7.89769], - [-11.730684, 7.897075], - [-11.731147, 7.897294], - [-11.731536, 7.897096], - [-11.728749, 7.892917], - [-11.725121, 7.892312], - [-11.72511, 7.892355], - [-11.72507, 7.892998], - [-11.725281, 7.893806], - [-11.72514, 7.895585], - [-11.724522, 7.896359], - [-11.724406, 7.898019], - [-11.724527, 7.89856], - [-11.724369, 7.899067], - [-11.724237, 7.899505], - [-11.723688, 7.899848], - [-11.721991, 7.901632], - [-11.721336, 7.902607], - [-11.721326, 7.902614], - [-11.720417, 7.901249], - [-11.723749, 7.894584], - [-11.721249, 7.892084], - [-11.717318, 7.891428], - [-11.717223, 7.891964], - [-11.716877, 7.892925], - [-11.716014, 7.893952], - [-11.714577, 7.894549], - [-11.714814, 7.89311], - [-11.714445, 7.891524], - [-11.711006, 7.886951], - [-11.710089, 7.885527], - [-11.709192, 7.883045], - [-11.709617, 7.886103], - [-11.710589, 7.888414], - [-11.709583, 7.88875], - [-11.708749, 7.889583], - [-11.69875, 7.889583], - [-11.698749, 7.88625], - [-11.698385, 7.886068], - [-11.698499, 7.895699], - [-11.699, 7.9019], - [-11.6997, 7.904], - [-11.701599, 7.907599], - [-11.702999, 7.910799], - [-11.7051, 7.9143], - [-11.706899, 7.918099], - [-11.7094, 7.920799], - [-11.717099, 7.924899], - [-11.7211, 7.9266], - [-11.725399, 7.928899], - [-11.7286, 7.9303], - [-11.732999, 7.932599], - [-11.7362, 7.9339], - [-11.739799, 7.935899], - [-11.7437, 7.9378], - [-11.7468, 7.9399], - [-11.749699, 7.942599], - [-11.7529, 7.9462], - [-11.7568, 7.950899], - [-11.7594, 7.9518], - [-11.763699, 7.952299], - [-11.766899, 7.953199], - [-11.770599, 7.954999], - [-11.7739, 7.9563], - [-11.779099, 7.958799], - [-11.7842, 7.96], - [-11.792699, 7.963699], - [-11.7963, 7.9657], - [-11.8002, 7.9675], - [-11.8045, 7.9699], - [-11.8077, 7.9712], - [-11.8127, 7.9737], - [-11.816999, 7.975399], - [-11.8171, 7.971499], - [-11.818699, 7.9656], - [-11.8191, 7.961999], - [-11.819099, 7.956299], - [-11.8188, 7.934799], - [-11.8196, 7.9299], - [-11.821799, 7.9255], - [-11.8231, 7.922399], - [-11.825599, 7.9173], - [-11.826455, 7.913333] - ] - ], - "type": "Polygon" - }, - "id": 389, - "properties": { - "cc:admin:id": ["134"], - "cc:oBld:total": 5129, - "cc:pop:fifteen-to-twenty-four": 8937.832980406445, - "cc:pop:grid3-total": 21370.040289445882, - "cc:pop:kontur-total": 51901.23063702677, - "cc:pop:men": 25580.819892692547, - "cc:pop:sixty-plus": 3348.163500221735, - "cc:pop:total": 50719.420086254126, - "cc:pop:under-five": 8341.216402023429, - "cc:pop:women": 25138.600193561575, - "cc:pop:women-fiften-to-forty-nine": 12098.92630438272, - "cc:pop:wp-total": 41564.62891977796, - "cc:pop:wp-total-UN": 48199.15453588626, - "cc:id": "389", - "cc:Name": "Mattru on the Rail MCHP", - "cc:site": [-11.7885, 7.9431], - "user:parentName": "Tikonko", - "user:code": "OU_1114", - "user:orgUnitId": "Qu0QOykPdcD", - "user:level": "4", - "user:parentId": "sxRd2XOzFbz" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.768619, 8.441982], - [-12.768196, 8.44125], - [-12.761251, 8.441249], - [-12.763749, 8.43625], - [-12.75375, 8.430417], - [-12.749584, 8.42875], - [-12.755416, 8.424583], - [-12.756249, 8.41875], - [-12.757082, 8.417916], - [-12.754582, 8.414584], - [-12.74625, 8.41875], - [-12.747082, 8.423749], - [-12.745416, 8.428749], - [-12.737916, 8.428749], - [-12.735417, 8.426249], - [-12.735416, 8.42125], - [-12.732916, 8.41875], - [-12.727916, 8.423749], - [-12.715417, 8.42375], - [-12.715416, 8.427916], - [-12.709826, 8.430402], - [-12.710266, 8.432047], - [-12.70985, 8.433453], - [-12.709784, 8.434129], - [-12.709917, 8.4347], - [-12.709653, 8.435238], - [-12.708828, 8.435335], - [-12.708582, 8.435708], - [-12.707083, 8.434584], - [-12.705416, 8.447083], - [-12.700417, 8.452084], - [-12.701249, 8.45375], - [-12.700417, 8.456249], - [-12.702083, 8.457084], - [-12.705158, 8.462721], - [-12.704983, 8.462902], - [-12.705363, 8.463097], - [-12.707083, 8.466249], - [-12.713749, 8.467084], - [-12.712083, 8.47625], - [-12.712917, 8.478749], - [-12.714583, 8.47875], - [-12.71875, 8.483749], - [-12.731249, 8.480417], - [-12.732366, 8.480788], - [-12.732617, 8.477537], - [-12.732519, 8.4769], - [-12.735417, 8.474583], - [-12.740416, 8.473749], - [-12.74125, 8.472084], - [-12.74375, 8.469584], - [-12.746249, 8.470416], - [-12.74625, 8.47125], - [-12.75125, 8.472916], - [-12.758749, 8.471249], - [-12.757917, 8.467916], - [-12.758749, 8.459584], - [-12.75625, 8.455416], - [-12.75625, 8.449585], - [-12.756392, 8.449631], - [-12.766249, 8.452916], - [-12.767865, 8.454209], - [-12.764713, 8.448748], - [-12.768619, 8.441982] - ] - ], - "type": "Polygon" - }, - "id": 390, - "properties": { - "cc:admin:id": ["62"], - "cc:oBld:total": 25, - "cc:pop:fifteen-to-twenty-four": 306.6659406881854, - "cc:pop:grid3-total": 2267.8920333918427, - "cc:pop:kontur-total": 1680.171696470848, - "cc:pop:men": 793.1844203562953, - "cc:pop:sixty-plus": 100.69594088503139, - "cc:pop:total": 1701.7921911801022, - "cc:pop:under-five": 281.6415674531837, - "cc:pop:women": 908.6077708238072, - "cc:pop:women-fiften-to-forty-nine": 459.52468232832166, - "cc:pop:wp-total": 1677.1797518799312, - "cc:pop:wp-total-UN": 1938.8768757476005, - "cc:id": "390", - "cc:Name": "Mawoma MCHP", - "cc:site": [-12.734, 8.4622], - "user:parentName": "Koya", - "user:code": "OU_254973", - "user:orgUnitId": "Srnpwq8jKbp", - "user:level": "4", - "user:parentId": "pRHGAROvuyI" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.122142, 8.289524], - [-12.1136, 8.2877], - [-12.105899, 8.284199], - [-12.101099, 8.280599], - [-12.0911, 8.2711], - [-12.087399, 8.268499], - [-12.083299, 8.266999], - [-12.073399, 8.265699], - [-12.0643, 8.2617], - [-12.060899, 8.259299], - [-12.0522, 8.2513], - [-12.048499, 8.248899], - [-12.045599, 8.247999], - [-12.0411, 8.2474], - [-12.0366, 8.2474], - [-12.0337, 8.247799], - [-12.0299, 8.2496], - [-12.0272, 8.252899], - [-12.0265, 8.2561], - [-12.026799, 8.261299], - [-12.029599, 8.271999], - [-12.030699, 8.284099], - [-12.032, 8.2896], - [-12.034799, 8.294699], - [-12.0371, 8.297399], - [-12.0403, 8.2993], - [-12.0465, 8.3017], - [-12.0499, 8.3041], - [-12.052699, 8.307199], - [-12.054499, 8.311], - [-12.054399, 8.315199], - [-12.052899, 8.319], - [-12.048999, 8.3247], - [-12.0442, 8.332999], - [-12.039899, 8.342799], - [-12.0363, 8.346999], - [-12.032199, 8.3507], - [-12.026799, 8.3539], - [-12.021, 8.357999], - [-12.0093, 8.364099], - [-12.0036, 8.367699], - [-11.9982, 8.373099], - [-11.993699, 8.3772], - [-11.9914, 8.380699], - [-11.9904, 8.3834], - [-11.9916, 8.3869], - [-11.997899, 8.393799], - [-11.999899, 8.396399], - [-12.0017, 8.397999], - [-12.005, 8.3987], - [-12.0088, 8.398799], - [-12.016599, 8.3985], - [-12.019399, 8.398599], - [-12.022499, 8.3994], - [-12.024199, 8.4007], - [-12.025499, 8.4032], - [-12.025299, 8.406799], - [-12.0233, 8.411099], - [-12.0216, 8.416899], - [-12.019599, 8.4212], - [-12.0195, 8.424099], - [-12.021, 8.426499], - [-12.0239, 8.427999], - [-12.027199, 8.4275], - [-12.0306, 8.425499], - [-12.035599, 8.4232], - [-12.037599, 8.4228], - [-12.039899, 8.4236], - [-12.0451, 8.427399], - [-12.0481, 8.428099], - [-12.052399, 8.427599], - [-12.057099, 8.4255], - [-12.057228, 8.425511], - [-12.058654, 8.424531], - [-12.061581, 8.423557], - [-12.062787, 8.423462], - [-12.064499, 8.424142], - [-12.064892, 8.424486], - [-12.065416, 8.422917], - [-12.06375, 8.419584], - [-12.062916, 8.41875], - [-12.06125, 8.417916], - [-12.060417, 8.417084], - [-12.060417, 8.41625], - [-12.067916, 8.407917], - [-12.074061, 8.412013], - [-12.074104, 8.412588], - [-12.074069, 8.413605], - [-12.079582, 8.412916], - [-12.082082, 8.410416], - [-12.082082, 8.407084], - [-12.077917, 8.402083], - [-12.077917, 8.39625], - [-12.078749, 8.39375], - [-12.081249, 8.39375], - [-12.08375, 8.395416], - [-12.087082, 8.395417], - [-12.091249, 8.397083], - [-12.093749, 8.394583], - [-12.09375, 8.392298], - [-12.094873, 8.392593], - [-12.096948, 8.39337], - [-12.09625, 8.387084], - [-12.097082, 8.385417], - [-12.100416, 8.385416], - [-12.104582, 8.381249], - [-12.10375, 8.377917], - [-12.105416, 8.376249], - [-12.105416, 8.37125], - [-12.102917, 8.365417], - [-12.111249, 8.365416], - [-12.112082, 8.36125], - [-12.114582, 8.358749], - [-12.114582, 8.35625], - [-12.11375, 8.355416], - [-12.112917, 8.35375], - [-12.113749, 8.352917], - [-12.110417, 8.349584], - [-12.109582, 8.34625], - [-12.107916, 8.346249], - [-12.107083, 8.34375], - [-12.112916, 8.340417], - [-12.113676, 8.339656], - [-12.111801, 8.339064], - [-12.110409, 8.338938], - [-12.107965, 8.337938], - [-12.105218, 8.336448], - [-12.106249, 8.335416], - [-12.107083, 8.33125], - [-12.110416, 8.330416], - [-12.111249, 8.329583], - [-12.111249, 8.327917], - [-12.109582, 8.327916], - [-12.107083, 8.325417], - [-12.111371, 8.321128], - [-12.110881, 8.320746], - [-12.110693, 8.320443], - [-12.110675, 8.320395], - [-12.109479, 8.318666], - [-12.108595, 8.317734], - [-12.10831, 8.316838], - [-12.107917, 8.316707], - [-12.107917, 8.312917], - [-12.113749, 8.309583], - [-12.11125, 8.305417], - [-12.111249, 8.302084], - [-12.108751, 8.299584], - [-12.114582, 8.299583], - [-12.114583, 8.297083], - [-12.122142, 8.289524] - ], - [ - [-12.068472, 8.31114], - [-12.072377, 8.317905], - [-12.068472, 8.32467], - [-12.064682, 8.324671], - [-12.064026, 8.325526], - [-12.061227, 8.328179], - [-12.060365, 8.327604], - [-12.063805, 8.324113], - [-12.065493, 8.322021], - [-12.066546, 8.320283], - [-12.067059, 8.319078], - [-12.067199, 8.318509], - [-12.06625, 8.317084], - [-12.066705, 8.315714], - [-12.063392, 8.313611], - [-12.061804, 8.312062], - [-12.060494, 8.310301], - [-12.058359, 8.306446], - [-12.059293, 8.305979], - [-12.061199, 8.309493], - [-12.062094, 8.310766], - [-12.062436, 8.311139], - [-12.068472, 8.31114] - ] - ], - "type": "Polygon" - }, - "id": 391, - "properties": { - "cc:admin:id": ["149"], - "cc:oBld:total": 3, - "cc:pop:fifteen-to-twenty-four": 1072.5379959713084, - "cc:pop:grid3-total": 8544.136035115207, - "cc:pop:kontur-total": 6240.05566932031, - "cc:pop:men": 2656.963537807892, - "cc:pop:sixty-plus": 372.3845767103416, - "cc:pop:total": 5717.25937515708, - "cc:pop:under-five": 923.1308284220945, - "cc:pop:women": 3060.29583734919, - "cc:pop:women-fiften-to-forty-nine": 1512.845607361821, - "cc:pop:wp-total": 9820.84899590248, - "cc:pop:wp-total-UN": 11399.366388879604, - "cc:id": "391", - "cc:Name": "Mayogbor MCHP", - "cc:site": [-12.0345, 8.3737], - "user:parentName": "Yoni", - "user:code": "OU_268227", - "user:orgUnitId": "XiORvSsxn6s", - "user:level": "4", - "user:parentId": "NNE0YMCDZkO" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.045094, 8.597822], - [-12.042299, 8.594899], - [-12.040299, 8.591999], - [-12.038299, 8.588199], - [-12.0355, 8.5846], - [-12.0311, 8.5805], - [-12.028199, 8.578399], - [-12.023899, 8.576299], - [-12.021099, 8.573999], - [-12.017, 8.5703], - [-12.0138, 8.5678], - [-12.0092, 8.5653], - [-12.0066, 8.562899], - [-12.0023, 8.5549], - [-11.999999, 8.5481], - [-11.9966, 8.549199], - [-11.993799, 8.5518], - [-11.990999, 8.5555], - [-11.987899, 8.5622], - [-11.987199, 8.5646], - [-11.986399, 8.568799], - [-11.984699, 8.5716], - [-11.982299, 8.573299], - [-11.9788, 8.573799], - [-11.9691, 8.5736], - [-11.966399, 8.5738], - [-11.9643, 8.5744], - [-11.962, 8.5767], - [-11.9611, 8.579], - [-11.961699, 8.581899], - [-11.9638, 8.5852], - [-11.966599, 8.591399], - [-11.966599, 8.593799], - [-11.9642, 8.599599], - [-11.9622, 8.602299], - [-11.959, 8.605199], - [-11.957, 8.606599], - [-11.953799, 8.608], - [-11.949899, 8.6109], - [-11.947, 8.613799], - [-11.9446, 8.616599], - [-11.942, 8.621099], - [-11.941496, 8.622262], - [-11.945416, 8.622917], - [-11.943905, 8.633495], - [-11.943895, 8.633499], - [-11.944583, 8.636249], - [-11.949583, 8.63625], - [-11.950416, 8.637917], - [-11.949811, 8.640337], - [-11.950238, 8.64054], - [-11.950915, 8.64114], - [-11.951959, 8.641475], - [-11.951596, 8.642596], - [-11.950905, 8.643404], - [-11.95375, 8.646249], - [-11.957082, 8.645417], - [-11.957917, 8.650417], - [-11.962115, 8.652516], - [-11.963426, 8.649796], - [-11.964094, 8.648373], - [-11.964551, 8.647767], - [-11.965156, 8.647397], - [-11.967083, 8.651249], - [-11.970416, 8.653749], - [-11.972083, 8.652084], - [-11.975892, 8.652718], - [-11.976108, 8.654109], - [-11.975981, 8.65561], - [-11.976462, 8.656435], - [-11.976463, 8.656853], - [-11.977067, 8.658489], - [-11.977082, 8.658371], - [-11.977869, 8.656089], - [-11.978793, 8.654093], - [-11.982321, 8.65587], - [-11.984557, 8.656812], - [-11.985463, 8.657257], - [-11.985703, 8.657732], - [-11.985347, 8.65943], - [-11.985472, 8.661837], - [-11.986048, 8.663652], - [-11.986019, 8.665818], - [-11.986933, 8.669582], - [-11.998749, 8.669582], - [-12.003749, 8.667917], - [-12.008461, 8.667243], - [-12.005294, 8.659706], - [-12.010306, 8.654692], - [-12.00723, 8.647328], - [-12.013618, 8.644679], - [-12.010392, 8.637006], - [-12.016347, 8.637005], - [-12.016414, 8.636312], - [-12.016437, 8.635909], - [-12.016454, 8.635905], - [-12.016569, 8.634705], - [-12.017107, 8.634009], - [-12.017952, 8.633485], - [-12.024351, 8.629218], - [-12.028802, 8.62297], - [-12.027082, 8.62125], - [-12.022085, 8.620417], - [-12.022084, 8.620415], - [-12.026249, 8.617083], - [-12.027917, 8.612084], - [-12.030417, 8.614583], - [-12.035354, 8.614583], - [-12.038608, 8.606695], - [-12.041844, 8.6033], - [-12.045094, 8.597822] - ] - ], - "type": "Polygon" - }, - "id": 392, - "properties": { - "cc:admin:id": ["54"], - "cc:oBld:total": 855, - "cc:pop:fifteen-to-twenty-four": 1283.2483544004372, - "cc:pop:grid3-total": 4912.741146889429, - "cc:pop:kontur-total": 7657.19408877112, - "cc:pop:men": 3269.3907315748525, - "cc:pop:sixty-plus": 450.8215538930236, - "cc:pop:total": 6850.854786648586, - "cc:pop:under-five": 1129.5983037753158, - "cc:pop:women": 3581.4640550737327, - "cc:pop:women-fiften-to-forty-nine": 1709.9688424525643, - "cc:pop:wp-total": 6405.246734015389, - "cc:pop:wp-total-UN": 7423.486999899389, - "cc:id": "392", - "cc:Name": "Mayossoh MCHP", - "cc:site": [-11.983, 8.592], - "user:parentName": "Kholifa Rowalla", - "user:code": "OU_268160", - "user:orgUnitId": "vQYIk5G9NxP", - "user:level": "4", - "user:parentId": "PQZJPIpTepd" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - [-12.500999, 7.468499], - [-12.500999, 7.4671], - [-12.499899, 7.4657], - [-12.4985, 7.4662], - [-12.4976, 7.4676], - [-12.4979, 7.468999], - [-12.500099, 7.468999], - [-12.500999, 7.468499] - ] - ], - [ - [ - [-12.655416, 7.49875], - [-12.654582, 7.497917], - [-12.652916, 7.497916], - [-12.64875, 7.497083], - [-12.64875, 7.487917], - [-12.649322, 7.485623], - [-12.648499, 7.4851], - [-12.647399, 7.485099], - [-12.646299, 7.484299], - [-12.6418, 7.4826], - [-12.6379, 7.4818], - [-12.637099, 7.4807], - [-12.6343, 7.4793], - [-12.632899, 7.479299], - [-12.629599, 7.477399], - [-12.626, 7.4757], - [-12.6226, 7.4749], - [-12.622099, 7.4743], - [-12.6176, 7.4726], - [-12.617399, 7.472099], - [-12.614, 7.4704], - [-12.6118, 7.469899], - [-12.610699, 7.469], - [-12.6079, 7.468199], - [-12.606799, 7.467399], - [-12.6032, 7.465699], - [-12.601799, 7.4643], - [-12.599299, 7.463499], - [-12.5954, 7.4612], - [-12.5913, 7.459899], - [-12.589, 7.458199], - [-12.588199, 7.4571], - [-12.5871, 7.456799], - [-12.584899, 7.4549], - [-12.583699, 7.454599], - [-12.580999, 7.451], - [-12.580399, 7.450999], - [-12.578499, 7.4482], - [-12.5774, 7.4474], - [-12.577099, 7.4463], - [-12.576, 7.445399], - [-12.574899, 7.4429], - [-12.5737, 7.441799], - [-12.573499, 7.4407], - [-12.5715, 7.4387], - [-12.571499, 7.4376], - [-12.570399, 7.4368], - [-12.568799, 7.437099], - [-12.5671, 7.4363], - [-12.567099, 7.4332], - [-12.566299, 7.432899], - [-12.564, 7.4307], - [-12.563499, 7.4285], - [-12.5629, 7.427899], - [-12.5629, 7.4221], - [-12.563199, 7.421], - [-12.5624, 7.420399], - [-12.5624, 7.4185], - [-12.563199, 7.416499], - [-12.5632, 7.413999], - [-12.564299, 7.4124], - [-12.565999, 7.411799], - [-12.566799, 7.4104], - [-12.566799, 7.4076], - [-12.5663, 7.407099], - [-12.565999, 7.4043], - [-12.564599, 7.402899], - [-12.564, 7.4004], - [-12.564, 7.3968], - [-12.564299, 7.3954], - [-12.562599, 7.392599], - [-12.559599, 7.3893], - [-12.5568, 7.3893], - [-12.556499, 7.3899], - [-12.549, 7.3899], - [-12.548999, 7.3901], - [-12.5451, 7.3901], - [-12.545099, 7.3904], - [-12.5401, 7.3904], - [-12.536499, 7.392099], - [-12.5335, 7.392399], - [-12.531, 7.393199], - [-12.5288, 7.3935], - [-12.529, 7.395999], - [-12.530099, 7.397399], - [-12.5301, 7.398999], - [-12.5307, 7.3996], - [-12.530999, 7.402899], - [-12.5301, 7.4035], - [-12.5299, 7.405399], - [-12.530999, 7.4065], - [-12.5313, 7.4088], - [-12.5321, 7.410399], - [-12.5332, 7.4112], - [-12.533799, 7.413199], - [-12.5338, 7.414899], - [-12.5349, 7.416], - [-12.5354, 7.4182], - [-12.535699, 7.420999], - [-12.5357, 7.425099], - [-12.535999, 7.426499], - [-12.5349, 7.4274], - [-12.534899, 7.429899], - [-12.5343, 7.4304], - [-12.534299, 7.433199], - [-12.5338, 7.4346], - [-12.533799, 7.441799], - [-12.5332, 7.4435], - [-12.533199, 7.445399], - [-12.5324, 7.4471], - [-12.532399, 7.451299], - [-12.531499, 7.4526], - [-12.5313, 7.4549], - [-12.531299, 7.458499], - [-12.5304, 7.4612], - [-12.530699, 7.464299], - [-12.5299, 7.4651], - [-12.530099, 7.467599], - [-12.5285, 7.471299], - [-12.526299, 7.474299], - [-12.5232, 7.476499], - [-12.522899, 7.4771], - [-12.5196, 7.479899], - [-12.5179, 7.481799], - [-12.5157, 7.4826], - [-12.515399, 7.4838], - [-12.5124, 7.485099], - [-12.510099, 7.486799], - [-12.5079, 7.4874], - [-12.5071, 7.488799], - [-12.5063, 7.4888], - [-12.5035, 7.491799], - [-12.5012, 7.4937], - [-12.5004, 7.4951], - [-12.500615, 7.49675], - [-12.500652, 7.496826], - [-12.501154, 7.497318], - [-12.50185, 7.497764], - [-12.502381, 7.498121], - [-12.502794, 7.498829], - [-12.502875, 7.499441], - [-12.502779, 7.500051], - [-12.502624, 7.500594], - [-12.502259, 7.501264], - [-12.501363, 7.502099], - [-12.500519, 7.502985], - [-12.499909, 7.50394], - [-12.499952, 7.504513], - [-12.500231, 7.505099], - [-12.501079, 7.506215], - [-12.501798, 7.506364], - [-12.502581, 7.506311], - [-12.504822, 7.506213], - [-12.506082, 7.506816], - [-12.506398, 7.507813], - [-12.506424, 7.508679], - [-12.506502, 7.510253], - [-12.506659, 7.511145], - [-12.506739, 7.511249], - [-12.507389, 7.511249], - [-12.506576, 7.509839], - [-12.510482, 7.503074], - [-12.512848, 7.503074], - [-12.51375, 7.50375], - [-12.518685, 7.50375], - [-12.522201, 7.509839], - [-12.530014, 7.50984], - [-12.530982, 7.511518], - [-12.530417, 7.512084], - [-12.534762, 7.520775], - [-12.535967, 7.520348], - [-12.536235, 7.520657], - [-12.53623, 7.521686], - [-12.536082, 7.521743], - [-12.536099, 7.521943], - [-12.536874, 7.521819], - [-12.537903, 7.522212], - [-12.538285, 7.523244], - [-12.538281, 7.524017], - [-12.538918, 7.525565], - [-12.539433, 7.525697], - [-12.542951, 7.530422], - [-12.544041, 7.529732], - [-12.540597, 7.525318], - [-12.540728, 7.524803], - [-12.540108, 7.52455], - [-12.540232, 7.523558], - [-12.540734, 7.523643], - [-12.541252, 7.52326], - [-12.541372, 7.522359], - [-12.543366, 7.522359], - [-12.545787, 7.526554], - [-12.545318, 7.527337], - [-12.545179, 7.528145], - [-12.545458, 7.528451], - [-12.547993, 7.528452], - [-12.549164, 7.528786], - [-12.549441, 7.529426], - [-12.549107, 7.529734], - [-12.548745, 7.530207], - [-12.54855, 7.530792], - [-12.548495, 7.531822], - [-12.548745, 7.53263], - [-12.54908, 7.533215], - [-12.54986, 7.533606], - [-12.55167, 7.533579], - [-12.553258, 7.533773], - [-12.553845, 7.534776], - [-12.554299, 7.534632], - [-12.554299, 7.5343], - [-12.553199, 7.5335], - [-12.5507, 7.533199], - [-12.5507, 7.5324], - [-12.5521, 7.5321], - [-12.555099, 7.5324], - [-12.5551, 7.535999], - [-12.556299, 7.5376], - [-12.5565, 7.5393], - [-12.556499, 7.542399], - [-12.555399, 7.543699], - [-12.554, 7.5443], - [-12.5535, 7.547099], - [-12.5535, 7.549599], - [-12.5546, 7.5499], - [-12.5557, 7.550999], - [-12.558799, 7.551299], - [-12.560099, 7.5504], - [-12.561299, 7.550399], - [-12.562399, 7.549], - [-12.563799, 7.548499], - [-12.564, 7.547599], - [-12.565699, 7.5468], - [-12.567599, 7.5468], - [-12.569299, 7.5476], - [-12.5701, 7.5524], - [-12.5701, 7.557599], - [-12.5707, 7.558499], - [-12.572399, 7.559], - [-12.574599, 7.5607], - [-12.5743, 7.562399], - [-12.5746, 7.564], - [-12.5746, 7.568199], - [-12.5763, 7.570699], - [-12.579599, 7.573199], - [-12.582399, 7.575999], - [-12.583699, 7.578799], - [-12.583499, 7.581299], - [-12.5824, 7.584], - [-12.5826, 7.585699], - [-12.588499, 7.5857], - [-12.5901, 7.5865], - [-12.593199, 7.5874], - [-12.5949, 7.589], - [-12.595399, 7.590999], - [-12.5954, 7.592599], - [-12.5949, 7.5932], - [-12.594899, 7.595099], - [-12.594299, 7.5965], - [-12.5915, 7.5987], - [-12.5904, 7.6007], - [-12.590399, 7.602399], - [-12.5899, 7.6029], - [-12.589599, 7.605399], - [-12.589, 7.606], - [-12.589, 7.6088], - [-12.5899, 7.609299], - [-12.593199, 7.609299], - [-12.5951, 7.6079], - [-12.596499, 7.607599], - [-12.597099, 7.6068], - [-12.597099, 7.604], - [-12.5965, 7.603499], - [-12.596499, 7.6013], - [-12.596, 7.600099], - [-12.596199, 7.5976], - [-12.5974, 7.5949], - [-12.5987, 7.5938], - [-12.602099, 7.5938], - [-12.604, 7.594599], - [-12.6054, 7.5946], - [-12.606799, 7.596], - [-12.6065, 7.599299], - [-12.6071, 7.5999], - [-12.6076, 7.602099], - [-12.608999, 7.603199], - [-12.609, 7.604299], - [-12.611299, 7.606499], - [-12.6115, 7.608499], - [-12.614599, 7.608199], - [-12.6143, 7.6035], - [-12.6154, 7.600699], - [-12.615999, 7.5968], - [-12.617099, 7.595999], - [-12.6171, 7.5899], - [-12.617599, 7.5888], - [-12.6204, 7.5871], - [-12.623999, 7.5871], - [-12.625099, 7.587399], - [-12.626499, 7.5904], - [-12.6268, 7.592899], - [-12.628499, 7.592899], - [-12.629299, 7.5904], - [-12.629899, 7.590099], - [-12.630999, 7.587601], - [-12.631001, 7.587601], - [-12.631488, 7.588149], - [-12.63162, 7.587898], - [-12.632546, 7.587172], - [-12.633345, 7.5866], - [-12.633831, 7.58585], - [-12.633632, 7.584258], - [-12.632584, 7.581431], - [-12.63203, 7.580866], - [-12.631601, 7.580474], - [-12.630925, 7.58017], - [-12.630246, 7.579921], - [-12.629729, 7.580027], - [-12.629177, 7.57992], - [-12.629266, 7.579403], - [-12.629694, 7.5791], - [-12.630176, 7.578743], - [-12.630443, 7.578101], - [-12.630638, 7.577371], - [-12.630425, 7.57721], - [-12.630301, 7.577691], - [-12.630158, 7.578101], - [-12.629907, 7.578618], - [-12.629515, 7.578994], - [-12.62891, 7.579118], - [-12.62866, 7.579617], - [-12.628428, 7.579955], - [-12.628054, 7.580206], - [-12.627572, 7.580883], - [-12.627162, 7.581596], - [-12.626788, 7.582238], - [-12.626485, 7.582666], - [-12.625824, 7.583023], - [-12.625417, 7.583035], - [-12.625417, 7.579583], - [-12.627745, 7.576671], - [-12.62717, 7.576668], - [-12.626393, 7.57705], - [-12.625371, 7.575242], - [-12.625631, 7.574986], - [-12.626404, 7.574989], - [-12.626412, 7.573702], - [-12.62744, 7.574351], - [-12.627508, 7.573865], - [-12.625417, 7.571249], - [-12.625417, 7.56375], - [-12.63211, 7.560402], - [-12.632165, 7.560082], - [-12.631131, 7.560332], - [-12.630492, 7.5593], - [-12.630495, 7.558784], - [-12.631399, 7.558531], - [-12.631402, 7.558016], - [-12.632177, 7.557892], - [-12.63282, 7.558281], - [-12.633075, 7.559055], - [-12.633589, 7.559574], - [-12.633714, 7.560089], - [-12.635002, 7.560482], - [-12.635779, 7.56023], - [-12.636294, 7.560231], - [-12.636552, 7.56049], - [-12.637841, 7.560627], - [-12.637844, 7.560112], - [-12.638618, 7.560115], - [-12.638754, 7.559086], - [-12.638949, 7.558958], - [-12.639362, 7.558959], - [-12.639679, 7.558538], - [-12.640407, 7.558265], - [-12.640611, 7.557335], - [-12.641263, 7.555022], - [-12.637691, 7.549662], - [-12.63782, 7.549591], - [-12.639179, 7.548635], - [-12.642293, 7.546424], - [-12.643603, 7.546172], - [-12.645793, 7.546171], - [-12.645416, 7.545417], - [-12.639583, 7.545416], - [-12.642082, 7.539584], - [-12.645416, 7.540416], - [-12.647916, 7.537917], - [-12.651249, 7.537083], - [-12.651249, 7.534584], - [-12.650417, 7.532083], - [-12.650416, 7.530417], - [-12.649582, 7.530416], - [-12.647917, 7.527083], - [-12.647917, 7.517084], - [-12.648749, 7.516249], - [-12.64875, 7.515417], - [-12.652082, 7.516249], - [-12.652316, 7.516249], - [-12.652577, 7.516092], - [-12.653002, 7.516249], - [-12.653749, 7.516249], - [-12.65375, 7.50375], - [-12.655416, 7.49875] - ] - ], - [ - [ - [-12.517099, 7.468699], - [-12.516299, 7.466], - [-12.5154, 7.4651], - [-12.5129, 7.4651], - [-12.511, 7.466], - [-12.510399, 7.467399], - [-12.5088, 7.4687], - [-12.5088, 7.470099], - [-12.5101, 7.470699], - [-12.5118, 7.4704], - [-12.515099, 7.470399], - [-12.516299, 7.469], - [-12.517099, 7.468699] - ] - ], - [ - [ - [-12.557399, 7.384299], - [-12.556799, 7.3832], - [-12.5551, 7.3843], - [-12.5551, 7.385099], - [-12.557399, 7.384299] - ] - ] - ], - "type": "MultiPolygon" - }, - "id": 393, - "properties": { - "cc:admin:id": ["18"], - "cc:oBld:total": 402, - "cc:pop:fifteen-to-twenty-four": 1468.0859564124976, - "cc:pop:grid3-total": 6683.648321662169, - "cc:pop:kontur-total": 6762.6522220056895, - "cc:pop:men": 3914.748157923872, - "cc:pop:sixty-plus": 642.8980394991024, - "cc:pop:total": 8285.870128248265, - "cc:pop:under-five": 1369.6827850603343, - "cc:pop:women": 4371.121970324397, - "cc:pop:women-fiften-to-forty-nine": 2145.65379555006, - "cc:pop:wp-total": 7347.390182985575, - "cc:pop:wp-total-UN": 8518.745576773255, - "cc:id": "393", - "cc:Name": "Mbokie CHP", - "cc:site": [-12.56, 7.5], - "user:parentName": "Sittia", - "user:code": "OU_197401", - "user:orgUnitId": "nImgPWDVQIa", - "user:level": "4", - "user:parentId": "g8DdBm7EmUt" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.570462, 7.956986], - [-11.569882, 7.957096], - [-11.569222, 7.956655], - [-11.568189, 7.953036], - [-11.568458, 7.952875], - [-11.567917, 7.95125], - [-11.565417, 7.947084], - [-11.56578, 7.945989], - [-11.566194, 7.945896], - [-11.566208, 7.945894], - [-11.567082, 7.944584], - [-11.564583, 7.94125], - [-11.561451, 7.938745], - [-11.562163, 7.937856], - [-11.561712, 7.937636], - [-11.561069, 7.937869], - [-11.560639, 7.937823], - [-11.560051, 7.938123], - [-11.55873, 7.937172], - [-11.558101, 7.936366], - [-11.557202, 7.93591], - [-11.556906, 7.93581], - [-11.556285, 7.936236], - [-11.555567, 7.936304], - [-11.554636, 7.935805], - [-11.553992, 7.937207], - [-11.552793, 7.937718], - [-11.552758, 7.937758], - [-11.551249, 7.936249], - [-11.550665, 7.933325], - [-11.550914, 7.933244], - [-11.551444, 7.933616], - [-11.552082, 7.933695], - [-11.552082, 7.932917], - [-11.548749, 7.930417], - [-11.539583, 7.930416], - [-11.539582, 7.925969], - [-11.536265, 7.927033], - [-11.535798, 7.927409], - [-11.535073, 7.927586], - [-11.535182, 7.925487], - [-11.534329, 7.926326], - [-11.532488, 7.929266], - [-11.531617, 7.930087], - [-11.52875, 7.922917], - [-11.532916, 7.920416], - [-11.533749, 7.912917], - [-11.532917, 7.910417], - [-11.530417, 7.909584], - [-11.522917, 7.912083], - [-11.519583, 7.916247], - [-11.519583, 7.90625], - [-11.521249, 7.904583], - [-11.52125, 7.90375], - [-11.519584, 7.903194], - [-11.520594, 7.901605], - [-11.520416, 7.90125], - [-11.517917, 7.901249], - [-11.517916, 7.897917], - [-11.51125, 7.898749], - [-11.511249, 7.897917], - [-11.508057, 7.901905], - [-11.507333, 7.901424], - [-11.506151, 7.901074], - [-11.505716, 7.900769], - [-11.504899, 7.899529], - [-11.503768, 7.898556], - [-11.502969, 7.897459], - [-11.501946, 7.896568], - [-11.497818, 7.89179], - [-11.496226, 7.88921], - [-11.495276, 7.887096], - [-11.494358, 7.886165], - [-11.49375, 7.885888], - [-11.492929, 7.885159], - [-11.491986, 7.884764], - [-11.490989, 7.884784], - [-11.490615, 7.884645], - [-11.488547, 7.885012], - [-11.486168, 7.885205], - [-11.485954, 7.885087], - [-11.48584, 7.885288], - [-11.484216, 7.885878], - [-11.48375, 7.886348], - [-11.483749, 7.888627], - [-11.483541, 7.88863], - [-11.482715, 7.889291], - [-11.482089, 7.889621], - [-11.481428, 7.889738], - [-11.481261, 7.890155], - [-11.480757, 7.890563], - [-11.480932, 7.890846], - [-11.481098, 7.890824], - [-11.481013, 7.891061], - [-11.480711, 7.891498], - [-11.480571, 7.89182], - [-11.480137, 7.892173], - [-11.48111, 7.89242], - [-11.481501, 7.892696], - [-11.48174, 7.892286], - [-11.481917, 7.892205], - [-11.487082, 7.899583], - [-11.487916, 7.899584], - [-11.487917, 7.903609], - [-11.487915, 7.90361], - [-11.487453, 7.903538], - [-11.487524, 7.904224], - [-11.487837, 7.904871], - [-11.488306, 7.905345], - [-11.489099, 7.909353], - [-11.489168, 7.909361], - [-11.490221, 7.908796], - [-11.491361, 7.908624], - [-11.492916, 7.909202], - [-11.492917, 7.910416], - [-11.497916, 7.915417], - [-11.498749, 7.917916], - [-11.496249, 7.920417], - [-11.492083, 7.926249], - [-11.492083, 7.927916], - [-11.502082, 7.92875], - [-11.502917, 7.932916], - [-11.507083, 7.937083], - [-11.507917, 7.937084], - [-11.509351, 7.938039], - [-11.507432, 7.939814], - [-11.506493, 7.940324], - [-11.505344, 7.940664], - [-11.50564, 7.941028], - [-11.509687, 7.941762], - [-11.509809, 7.941822], - [-11.510358, 7.942904], - [-11.510838, 7.944393], - [-11.511262, 7.946485], - [-11.511257, 7.947843], - [-11.511318, 7.947841], - [-11.51145, 7.947989], - [-11.512311, 7.947874], - [-11.512933, 7.947979], - [-11.514406, 7.948797], - [-11.512917, 7.956249], - [-11.515416, 7.960417], - [-11.513938, 7.965838], - [-11.521363, 7.965839], - [-11.524146, 7.970656], - [-11.525416, 7.96875], - [-11.525748, 7.96875], - [-11.528621, 7.973726], - [-11.532927, 7.973727], - [-11.532916, 7.97375], - [-11.53125, 7.974584], - [-11.528374, 7.982492], - [-11.5304, 7.981999], - [-11.538299, 7.9817], - [-11.541999, 7.9808], - [-11.549299, 7.9775], - [-11.553599, 7.9751], - [-11.557499, 7.9732], - [-11.561, 7.970299], - [-11.5633, 7.967399], - [-11.5653, 7.963099], - [-11.5672, 7.960499], - [-11.570462, 7.956986] - ] - ], - "type": "Polygon" - }, - "id": 394, - "properties": { - "cc:admin:id": ["2"], - "cc:oBld:total": 163, - "cc:pop:fifteen-to-twenty-four": 1359.5979862115912, - "cc:pop:grid3-total": 3885.133606183255, - "cc:pop:kontur-total": 6878.751106563167, - "cc:pop:men": 3931.7607315994114, - "cc:pop:sixty-plus": 537.4126426718628, - "cc:pop:total": 7615.362496317589, - "cc:pop:under-five": 1249.5458161579277, - "cc:pop:women": 3683.6017647181784, - "cc:pop:women-fiften-to-forty-nine": 1757.0113154415626, - "cc:pop:wp-total": 6735.496441683759, - "cc:pop:wp-total-UN": 7808.255344505183, - "cc:id": "394", - "cc:Name": "Mbundorbu MCHP", - "cc:site": [-11.511, 7.9235], - "user:parentName": "Baoma", - "user:code": "OU_581", - "user:orgUnitId": "EuoA3Crpqts", - "user:level": "4", - "user:parentId": "vWbkYPRmKyS" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.4226, 9.522224], - [-11.422077, 9.521319], - [-11.421249, 9.521249], - [-11.417917, 9.517083], - [-11.417916, 9.509583], - [-11.414583, 9.509582], - [-11.414583, 9.499583], - [-11.417008, 9.497158], - [-11.413499, 9.496799], - [-11.4082, 9.4946], - [-11.4057, 9.494], - [-11.4003, 9.4933], - [-11.3978, 9.4927], - [-11.393099, 9.490799], - [-11.3895, 9.4901], - [-11.3827, 9.4898], - [-11.3789, 9.4891], - [-11.3736, 9.4869], - [-11.3677, 9.4853], - [-11.362299, 9.483099], - [-11.3585, 9.4825], - [-11.3555, 9.4824], - [-11.339599, 9.482699], - [-11.3369, 9.482399], - [-11.3344, 9.4812], - [-11.3305, 9.475599], - [-11.329599, 9.472199], - [-11.3295, 9.467699], - [-11.3301, 9.4646], - [-11.331299, 9.4625], - [-11.3332, 9.460299], - [-11.338199, 9.455299], - [-11.339899, 9.451999], - [-11.339099, 9.4495], - [-11.3324, 9.4457], - [-11.321899, 9.4433], - [-11.3147, 9.445799], - [-11.3104, 9.448199], - [-11.307199, 9.4496], - [-11.303, 9.451999], - [-11.299, 9.453999], - [-11.2941, 9.457899], - [-11.2921, 9.459099], - [-11.289099, 9.4599], - [-11.283799, 9.4605], - [-11.281299, 9.4612], - [-11.2768, 9.463199], - [-11.273399, 9.4639], - [-11.2699, 9.463899], - [-11.266699, 9.462599], - [-11.263099, 9.456999], - [-11.262199, 9.453599], - [-11.261321, 9.447015], - [-11.261167, 9.447459], - [-11.258749, 9.44625], - [-11.25372, 9.44625], - [-11.253696, 9.446601], - [-11.253874, 9.448039], - [-11.254512, 9.449638], - [-11.254548, 9.450204], - [-11.254352, 9.450675], - [-11.254485, 9.451236], - [-11.254468, 9.451765], - [-11.254829, 9.452554], - [-11.254807, 9.453109], - [-11.254469, 9.453181], - [-11.254096, 9.453241], - [-11.25353, 9.45318], - [-11.25352, 9.453554], - [-11.253167, 9.454021], - [-11.25288, 9.454912], - [-11.252096, 9.455596], - [-11.250884, 9.455986], - [-11.252082, 9.459582], - [-11.242083, 9.462917], - [-11.24375, 9.469582], - [-11.245191, 9.470737], - [-11.237674, 9.470738], - [-11.233768, 9.477503], - [-11.237673, 9.484269], - [-11.233768, 9.491034], - [-11.225955, 9.491035], - [-11.222048, 9.4978], - [-11.214236, 9.497801], - [-11.21033, 9.504566], - [-11.202518, 9.504567], - [-11.19861, 9.511332], - [-11.190799, 9.511333], - [-11.186892, 9.518098], - [-11.17908, 9.518099], - [-11.175174, 9.524864], - [-11.179079, 9.53163], - [-11.175174, 9.538395], - [-11.167361, 9.538396], - [-11.163973, 9.544265], - [-11.164425, 9.544351], - [-11.165214, 9.544072], - [-11.165614, 9.544465], - [-11.166039, 9.544605], - [-11.166803, 9.544195], - [-11.167014, 9.544308], - [-11.167051, 9.544753], - [-11.167218, 9.544885], - [-11.167493, 9.544596], - [-11.167494, 9.544156], - [-11.167495, 9.544155], - [-11.16839, 9.54684], - [-11.167796, 9.546881], - [-11.166273, 9.548366], - [-11.164841, 9.54926], - [-11.16264, 9.550144], - [-11.160581, 9.550712], - [-11.159518, 9.550788], - [-11.158341, 9.550848], - [-11.156002, 9.554896], - [-11.148191, 9.554897], - [-11.147665, 9.555807], - [-11.147917, 9.559582], - [-11.151313, 9.562301], - [-11.150886, 9.562574], - [-11.149808, 9.56295], - [-11.149079, 9.564299], - [-11.148901, 9.565753], - [-11.148398, 9.566304], - [-11.148027, 9.567604], - [-11.147526, 9.568293], - [-11.150695, 9.573784], - [-11.14679, 9.580549], - [-11.142666, 9.580549], - [-11.140416, 9.57875], - [-11.13081, 9.57875], - [-11.1313, 9.5798], - [-11.132099, 9.583499], - [-11.132499, 9.590599], - [-11.1325, 9.611099], - [-11.132899, 9.617099], - [-11.1336, 9.62], - [-11.1356, 9.6245], - [-11.1364, 9.6282], - [-11.1367, 9.6351], - [-11.136799, 9.658499], - [-11.137199, 9.665599], - [-11.1379, 9.6684], - [-11.139999, 9.672699], - [-11.140399, 9.6753], - [-11.140199, 9.678699], - [-11.1391, 9.681199], - [-11.1353, 9.686099], - [-11.1342, 9.6882], - [-11.133599, 9.6916], - [-11.1334, 9.700299], - [-11.140599, 9.6959], - [-11.1443, 9.693999], - [-11.1468, 9.691999], - [-11.1498, 9.688499], - [-11.155499, 9.6864], - [-11.16, 9.684499], - [-11.1637, 9.683799], - [-11.169499, 9.6835], - [-11.173299, 9.683], - [-11.179599, 9.6805], - [-11.1825, 9.679999], - [-11.1855, 9.6798], - [-11.206899, 9.679899], - [-11.210699, 9.6793], - [-11.2162, 9.677099], - [-11.222, 9.675599], - [-11.227299, 9.6732], - [-11.2301, 9.672699], - [-11.2373, 9.6723], - [-11.266299, 9.672499], - [-11.272399, 9.6722], - [-11.2753, 9.671499], - [-11.2806, 9.669399], - [-11.2855, 9.6687], - [-11.294699, 9.6687], - [-11.2987, 9.668399], - [-11.3015, 9.667799], - [-11.306, 9.665899], - [-11.3087, 9.665299], - [-11.315499, 9.664399], - [-11.3248, 9.660099], - [-11.3271, 9.658399], - [-11.331199, 9.6543], - [-11.333899, 9.651], - [-11.337999, 9.643], - [-11.340451, 9.637345], - [-11.341187, 9.625594], - [-11.341933, 9.625383], - [-11.342386, 9.625501], - [-11.342696, 9.625692], - [-11.345123, 9.621492], - [-11.352935, 9.621491], - [-11.356841, 9.614726], - [-11.352936, 9.60796], - [-11.354678, 9.604941], - [-11.35625, 9.606249], - [-11.366249, 9.606249], - [-11.371249, 9.601249], - [-11.370417, 9.590417], - [-11.381249, 9.591249], - [-11.38125, 9.590416], - [-11.382917, 9.589582], - [-11.387917, 9.579583], - [-11.390416, 9.577083], - [-11.393749, 9.577916], - [-11.39875, 9.574583], - [-11.402082, 9.573749], - [-11.392083, 9.561249], - [-11.397917, 9.55625], - [-11.402916, 9.557082], - [-11.40375, 9.552916], - [-11.408133, 9.548532], - [-11.407732, 9.548258], - [-11.407732, 9.548256], - [-11.40875, 9.547916], - [-11.415416, 9.541249], - [-11.415416, 9.539583], - [-11.412916, 9.537083], - [-11.407917, 9.536249], - [-11.40714, 9.535472], - [-11.410882, 9.528991], - [-11.418694, 9.52899], - [-11.4226, 9.522224] - ] - ], - "type": "Polygon" - }, - "id": 395, - "properties": { - "cc:admin:id": ["122"], - "cc:oBld:total": 311, - "cc:pop:fifteen-to-twenty-four": 2253.9483360010327, - "cc:pop:grid3-total": 6328.540222038933, - "cc:pop:kontur-total": 14447.808626627344, - "cc:pop:men": 5662.444783834117, - "cc:pop:sixty-plus": 786.861797756811, - "cc:pop:total": 12095.382702023206, - "cc:pop:under-five": 1961.8116965107417, - "cc:pop:women": 6432.937918189092, - "cc:pop:women-fiften-to-forty-nine": 3118.0605722414552, - "cc:pop:wp-total": 9253.15060225184, - "cc:pop:wp-total-UN": 10723.620241716317, - "cc:id": "395", - "cc:Name": "MCH Static", - "cc:site": [-11.30152, 9.5283], - "user:parentName": "Wara Wara Yagala", - "user:code": "OU_226259", - "user:orgUnitId": "kpDoH80fwdX", - "user:level": "4", - "user:parentId": "EZPwuUTeIIG" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.056314, 7.750209], - [-11.056399, 7.748999], - [-11.056074, 7.736579], - [-11.053749, 7.735417], - [-11.044582, 7.737084], - [-11.042926, 7.737083], - [-11.042744, 7.73625], - [-11.039582, 7.736249], - [-11.035417, 7.732083], - [-11.035797, 7.726739], - [-11.032905, 7.72173], - [-11.025093, 7.721729], - [-11.022623, 7.717451], - [-11.022917, 7.717083], - [-11.022916, 7.707917], - [-11.020417, 7.705417], - [-11.019901, 7.70336], - [-11.018742, 7.704208], - [-11.017578, 7.704354], - [-11.016295, 7.703812], - [-11.014585, 7.704279], - [-11.013139, 7.705063], - [-11.011849, 7.70436], - [-11.011412, 7.70329], - [-11.011883, 7.699735], - [-11.012568, 7.697129], - [-11.011249, 7.69625], - [-11.00375, 7.696249], - [-11.003749, 7.694584], - [-10.99875, 7.692083], - [-10.990416, 7.682084], - [-10.987917, 7.682917], - [-10.984582, 7.687083], - [-10.982916, 7.687916], - [-10.982083, 7.687917], - [-10.981249, 7.687083], - [-10.974583, 7.683749], - [-10.972082, 7.680417], - [-10.965417, 7.680417], - [-10.968749, 7.695416], - [-10.967916, 7.699583], - [-10.964582, 7.703749], - [-10.954582, 7.704583], - [-10.94875, 7.692084], - [-10.949024, 7.690707], - [-10.948625, 7.690706], - [-10.94472, 7.683942], - [-10.948625, 7.677176], - [-10.944719, 7.67041], - [-10.936908, 7.670409], - [-10.933, 7.663644], - [-10.925188, 7.663643], - [-10.921282, 7.656878], - [-10.913469, 7.656877], - [-10.909564, 7.650112], - [-10.913469, 7.643346], - [-10.909563, 7.636581], - [-10.90418, 7.636581], - [-10.904299, 7.6387], - [-10.903499, 7.6439], - [-10.8984, 7.655199], - [-10.895299, 7.658399], - [-10.891299, 7.6606], - [-10.8894, 7.6635], - [-10.8889, 7.667], - [-10.8894, 7.6707], - [-10.894, 7.680799], - [-10.898299, 7.684799], - [-10.901999, 7.688999], - [-10.9059, 7.695099], - [-10.909699, 7.6983], - [-10.910899, 7.7006], - [-10.910899, 7.703199], - [-10.908999, 7.706799], - [-10.906199, 7.7096], - [-10.9004, 7.7138], - [-10.8958, 7.720099], - [-10.8946, 7.7233], - [-10.8949, 7.727799], - [-10.903199, 7.742299], - [-10.907199, 7.754599], - [-10.9091, 7.759099], - [-10.9142, 7.7599], - [-10.9236, 7.7609], - [-10.933299, 7.762599], - [-10.941999, 7.7607], - [-10.949899, 7.76], - [-10.958899, 7.7605], - [-10.962099, 7.761899], - [-10.964399, 7.7657], - [-10.965799, 7.774599], - [-10.9671, 7.7794], - [-10.9685, 7.7827], - [-10.9728, 7.789899], - [-10.9765, 7.7931], - [-10.9806, 7.7955], - [-10.988, 7.8006], - [-10.994299, 7.803999], - [-11.0035, 7.797099], - [-11.011399, 7.7932], - [-11.0138, 7.792399], - [-11.0172, 7.791699], - [-11.021199, 7.7898], - [-11.0255, 7.786399], - [-11.0309, 7.783399], - [-11.035099, 7.7798], - [-11.037099, 7.7769], - [-11.038999, 7.773], - [-11.040499, 7.7709], - [-11.047399, 7.7634], - [-11.05, 7.7597], - [-11.053, 7.757499], - [-11.055399, 7.7546], - [-11.056199, 7.7518], - [-11.056314, 7.750209] - ] - ], - "type": "Polygon" - }, - "id": 397, - "properties": { - "cc:admin:id": ["28"], - "cc:oBld:total": 1564, - "cc:pop:fifteen-to-twenty-four": 1967.0072530399796, - "cc:pop:grid3-total": 6609.758577745678, - "cc:pop:kontur-total": 9518.601928542159, - "cc:pop:men": 4918.002926684879, - "cc:pop:sixty-plus": 605.1218822319429, - "cc:pop:total": 10150.470683265852, - "cc:pop:under-five": 1599.6102292407356, - "cc:pop:women": 5232.467756580977, - "cc:pop:women-fiften-to-forty-nine": 2635.0764614940135, - "cc:pop:wp-total": 9798.757349229605, - "cc:pop:wp-total-UN": 11367.35056330804, - "cc:id": "397", - "cc:Name": "Mendekelema CHP", - "cc:site": [-10.9767, 7.7661], - "user:parentName": "Gaura", - "user:code": "OU_222746", - "user:orgUnitId": "sYjp3h6amhA", - "user:level": "4", - "user:parentId": "eROJsBwxQHt" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.539899, 8.176399], - [-11.5387, 8.171699], - [-11.539499, 8.1677], - [-11.539399, 8.1651], - [-11.537399, 8.160199], - [-11.5367, 8.1576], - [-11.536456, 8.155417], - [-11.536249, 8.155416], - [-11.532916, 8.147916], - [-11.53125, 8.137084], - [-11.531249, 8.136249], - [-11.523749, 8.129584], - [-11.512917, 8.129583], - [-11.513749, 8.12625], - [-11.507917, 8.12375], - [-11.507082, 8.122084], - [-11.505769, 8.122083], - [-11.506033, 8.121626], - [-11.506129, 8.120904], - [-11.507023, 8.119993], - [-11.507875, 8.119469], - [-11.508745, 8.118394], - [-11.508979, 8.117721], - [-11.508759, 8.116095], - [-11.507924, 8.114608], - [-11.507927, 8.114584], - [-11.504583, 8.114583], - [-11.497917, 8.112084], - [-11.496249, 8.112916], - [-11.490416, 8.10375], - [-11.488749, 8.102917], - [-11.48125, 8.102916], - [-11.480416, 8.099584], - [-11.47875, 8.098749], - [-11.479582, 8.08875], - [-11.477082, 8.08625], - [-11.46375, 8.08375], - [-11.462916, 8.085416], - [-11.45875, 8.088749], - [-11.453268, 8.089435], - [-11.453499, 8.096399], - [-11.453499, 8.1033], - [-11.4529, 8.107199], - [-11.4507, 8.112599], - [-11.45, 8.1163], - [-11.450199, 8.120199], - [-11.450899, 8.122899], - [-11.453199, 8.1282], - [-11.453399, 8.132499], - [-11.452399, 8.1357], - [-11.4482, 8.1423], - [-11.4495, 8.145], - [-11.451499, 8.149799], - [-11.4538, 8.1527], - [-11.4566, 8.1552], - [-11.4617, 8.1582], - [-11.4641, 8.1602], - [-11.4663, 8.162799], - [-11.4703, 8.1642], - [-11.4747, 8.164399], - [-11.488099, 8.1643], - [-11.4922, 8.164099], - [-11.4949, 8.163399], - [-11.502499, 8.1597], - [-11.5068, 8.1574], - [-11.510199, 8.1568], - [-11.513599, 8.1575], - [-11.515599, 8.158999], - [-11.516699, 8.160399], - [-11.5178, 8.1631], - [-11.5181, 8.1666], - [-11.5181, 8.178699], - [-11.5182, 8.187999], - [-11.521, 8.186999], - [-11.5253, 8.185799], - [-11.5298, 8.183799], - [-11.536299, 8.182199], - [-11.538999, 8.179899], - [-11.539899, 8.176399] - ] - ], - "type": "Polygon" - }, - "id": 398, - "properties": { - "cc:admin:id": ["3"], - "cc:oBld:total": 122, - "cc:pop:fifteen-to-twenty-four": 627.2400203044792, - "cc:pop:grid3-total": 2025.5589904293467, - "cc:pop:kontur-total": 3466.191627263664, - "cc:pop:men": 1642.380871201434, - "cc:pop:sixty-plus": 248.9750089832172, - "cc:pop:total": 3521.435353057578, - "cc:pop:under-five": 587.3450180894217, - "cc:pop:women": 1879.0544818561434, - "cc:pop:women-fiften-to-forty-nine": 891.2061807270686, - "cc:pop:wp-total": 2350.0363292400216, - "cc:pop:wp-total-UN": 2733.0754777372345, - "cc:id": "398", - "cc:Name": "Mendewa MCHP", - "cc:site": [-11.4844, 8.1597], - "user:parentName": "Bargbe", - "user:code": "OU_598", - "user:orgUnitId": "YWXXO0XMkQe", - "user:level": "4", - "user:parentId": "dGheVylzol6" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.909583, 8.938749], - [-12.909582, 8.9384], - [-12.906499, 8.938399], - [-12.902499, 8.937899], - [-12.8971, 8.9357], - [-12.8919, 8.9344], - [-12.8893, 8.9332], - [-12.886099, 8.931099], - [-12.8794, 8.9241], - [-12.873399, 8.9354], - [-12.870799, 8.9386], - [-12.8634, 8.946699], - [-12.8611, 8.949999], - [-12.857299, 8.9574], - [-12.853199, 8.967], - [-12.8477, 8.976399], - [-12.8434, 8.982399], - [-12.8402, 8.987599], - [-12.8324, 8.997199], - [-12.8293, 9.002399], - [-12.8249, 9.008499], - [-12.820999, 9.0147], - [-12.818399, 9.0177], - [-12.8089, 9.027599], - [-12.805799, 9.0319], - [-12.803499, 9.0373], - [-12.798, 9.053999], - [-12.796299, 9.061], - [-12.7959, 9.0662], - [-12.796399, 9.072799], - [-12.798269, 9.079484], - [-12.807082, 9.078749], - [-12.808306, 9.077527], - [-12.810447, 9.081233], - [-12.817082, 9.081233], - [-12.817083, 9.072083], - [-12.822082, 9.071249], - [-12.825949, 9.06893], - [-12.82629, 9.070316], - [-12.826303, 9.070416], - [-12.827916, 9.070417], - [-12.829583, 9.072082], - [-12.832082, 9.072082], - [-12.835417, 9.067916], - [-12.840416, 9.067083], - [-12.843671, 9.067082], - [-12.843607, 9.066666], - [-12.842358, 9.06267], - [-12.842032, 9.061622], - [-12.842032, 9.060575], - [-12.842656, 9.059261], - [-12.843391, 9.058179], - [-12.85394, 9.060287], - [-12.854731, 9.059377], - [-12.855417, 9.054583], - [-12.858749, 9.053749], - [-12.859583, 9.051249], - [-12.866249, 9.046249], - [-12.865688, 9.043441], - [-12.865689, 9.043439], - [-12.865859, 9.043413], - [-12.865416, 9.042083], - [-12.862917, 9.042082], - [-12.862917, 9.03292], - [-12.864732, 9.036539], - [-12.866928, 9.038538], - [-12.868632, 9.039416], - [-12.869226, 9.039295], - [-12.871109, 9.039702], - [-12.871323, 9.039905], - [-12.871402, 9.040392], - [-12.871186, 9.040955], - [-12.871428, 9.041191], - [-12.872477, 9.040171], - [-12.874516, 9.039274], - [-12.880463, 9.038696], - [-12.881232, 9.038544], - [-12.883369, 9.037641], - [-12.880782, 9.033245], - [-12.879909, 9.033451], - [-12.87842, 9.03015], - [-12.881249, 9.029582], - [-12.882694, 9.02308], - [-12.882651, 9.023071], - [-12.88265, 9.023069], - [-12.884582, 9.017916], - [-12.884583, 9.016249], - [-12.885417, 9.009583], - [-12.887083, 9.008749], - [-12.891249, 9.004583], - [-12.895416, 8.999582], - [-12.89375, 8.996249], - [-12.89375, 8.995416], - [-12.894582, 8.99125], - [-12.892083, 8.98625], - [-12.897916, 8.985416], - [-12.898396, 8.983498], - [-12.898398, 8.983497], - [-12.898445, 8.983525], - [-12.899582, 8.98125], - [-12.897083, 8.97875], - [-12.897916, 8.977082], - [-12.892917, 8.967917], - [-12.892083, 8.967082], - [-12.896285, 8.96218], - [-12.897198, 8.962642], - [-12.901249, 8.957916], - [-12.900064, 8.953568], - [-12.900065, 8.953568], - [-12.900442, 8.953987], - [-12.90077, 8.954077], - [-12.904797, 8.952968], - [-12.906143, 8.95184], - [-12.907028, 8.950575], - [-12.907312, 8.950523], - [-12.907879, 8.949194], - [-12.908041, 8.947715], - [-12.908602, 8.94509], - [-12.904583, 8.943749], - [-12.909583, 8.938749] - ] - ], - "type": "Polygon" - }, - "id": 399, - "properties": { - "cc:admin:id": ["82"], - "cc:oBld:total": 533, - "cc:pop:fifteen-to-twenty-four": 1836.912649630395, - "cc:pop:grid3-total": 6161.14971183096, - "cc:pop:kontur-total": 9857.283996816985, - "cc:pop:men": 4605.950224252585, - "cc:pop:sixty-plus": 667.0972708712574, - "cc:pop:total": 9750.726146619572, - "cc:pop:under-five": 1529.0187924155684, - "cc:pop:women": 5144.7759223669855, - "cc:pop:women-fiften-to-forty-nine": 2442.778905420709, - "cc:pop:wp-total": 10849.444962392046, - "cc:pop:wp-total-UN": 12582.73673387518, - "cc:id": "399", - "cc:Name": "Menicurve MCHP", - "cc:site": [-12.8594, 9.0139], - "user:parentName": "Magbema", - "user:code": "OU_211230", - "user:orgUnitId": "VjVYaKZ9t4K", - "user:level": "4", - "user:parentId": "QywkxFudXrC" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.886249, 8.454583], - [-12.885416, 8.452917], - [-12.882916, 8.452083], - [-12.882339, 8.448041], - [-12.883323, 8.447784], - [-12.884257, 8.448155], - [-12.884237, 8.447092], - [-12.883033, 8.446112], - [-12.880386, 8.446521], - [-12.878755, 8.446441], - [-12.876744, 8.44567], - [-12.875115, 8.445413], - [-12.874835, 8.445223], - [-12.87512, 8.444511], - [-12.876634, 8.440754], - [-12.876331, 8.440373], - [-12.878125, 8.436998], - [-12.878422, 8.436433], - [-12.877856, 8.436068], - [-12.875116, 8.433374], - [-12.874423, 8.432172], - [-12.873868, 8.431486], - [-12.872197, 8.42962], - [-12.870958, 8.428721], - [-12.869886, 8.428318], - [-12.86938, 8.427938], - [-12.869332, 8.427801], - [-12.869531, 8.42757], - [-12.868955, 8.426692], - [-12.868342, 8.42584], - [-12.866867, 8.42505], - [-12.864728, 8.424505], - [-12.862814, 8.424361], - [-12.860779, 8.423513], - [-12.860469, 8.422785], - [-12.860018, 8.420259], - [-12.859793, 8.419794], - [-12.860431, 8.418714], - [-12.86206, 8.418101], - [-12.857712, 8.4181], - [-12.853807, 8.411335], - [-12.857712, 8.404569], - [-12.857453, 8.40412], - [-12.853749, 8.407083], - [-12.845417, 8.407084], - [-12.834582, 8.402916], - [-12.83375, 8.397083], - [-12.836634, 8.39492], - [-12.8367, 8.394805], - [-12.836787, 8.394804], - [-12.837082, 8.394583], - [-12.837083, 8.392916], - [-12.842916, 8.385417], - [-12.847916, 8.384583], - [-12.849582, 8.382916], - [-12.844583, 8.372917], - [-12.841788, 8.365929], - [-12.841831, 8.366237], - [-12.841288, 8.370871], - [-12.839855, 8.372667], - [-12.83864, 8.374631], - [-12.837587, 8.374603], - [-12.837396, 8.373646], - [-12.837577, 8.373581], - [-12.839179, 8.372995], - [-12.840325, 8.372002], - [-12.841013, 8.370729], - [-12.841191, 8.36905], - [-12.841064, 8.366275], - [-12.840554, 8.364568], - [-12.839943, 8.363245], - [-12.839078, 8.361946], - [-12.837831, 8.360164], - [-12.837806, 8.359299], - [-12.838009, 8.358434], - [-12.83839, 8.357874], - [-12.839359, 8.357313], - [-12.840428, 8.357084], - [-12.841522, 8.357033], - [-12.842414, 8.356346], - [-12.843609, 8.355277], - [-12.845112, 8.353622], - [-12.84608, 8.352934], - [-12.846995, 8.352452], - [-12.847912, 8.352121], - [-12.849108, 8.35207], - [-12.850508, 8.352552], - [-12.851705, 8.352781], - [-12.852723, 8.353036], - [-12.853284, 8.352883], - [-12.854098, 8.352425], - [-12.854608, 8.351407], - [-12.855345, 8.350288], - [-12.855829, 8.349626], - [-12.856033, 8.349167], - [-12.856185, 8.348403], - [-12.856008, 8.347436], - [-12.855294, 8.346315], - [-12.854403, 8.345271], - [-12.85361, 8.344434], - [-12.852902, 8.34371], - [-12.851391, 8.342683], - [-12.850258, 8.342197], - [-12.848699, 8.343], - [-12.841099, 8.3459], - [-12.836399, 8.349], - [-12.827091, 8.356393], - [-12.827584, 8.357193], - [-12.828512, 8.356836], - [-12.830091, 8.357378], - [-12.832289, 8.35744], - [-12.836128, 8.358058], - [-12.836699, 8.358738], - [-12.836816, 8.361056], - [-12.838357, 8.362869], - [-12.839404, 8.366185], - [-12.839489, 8.3688], - [-12.839091, 8.370601], - [-12.83875, 8.370685], - [-12.838749, 8.37245], - [-12.838337, 8.372696], - [-12.837001, 8.373045], - [-12.835855, 8.373396], - [-12.83436, 8.373333], - [-12.832959, 8.372919], - [-12.831559, 8.372919], - [-12.829777, 8.372951], - [-12.828313, 8.373174], - [-12.826594, 8.373619], - [-12.825291, 8.373778], - [-12.824368, 8.374479], - [-12.824113, 8.375783], - [-12.824304, 8.37696], - [-12.826149, 8.379378], - [-12.826626, 8.380652], - [-12.826054, 8.38568], - [-12.826085, 8.387461], - [-12.826436, 8.38918], - [-12.826849, 8.390611], - [-12.827358, 8.391566], - [-12.828378, 8.392554], - [-12.829522, 8.394048], - [-12.829872, 8.39529], - [-12.829363, 8.395926], - [-12.828378, 8.395926], - [-12.822709, 8.394164], - [-12.822508, 8.395249], - [-12.822473, 8.395241], - [-12.820189, 8.394635], - [-12.819323, 8.395017], - [-12.817745, 8.396391], - [-12.816498, 8.397181], - [-12.816604, 8.397536], - [-12.818991, 8.399649], - [-12.819348, 8.400669], - [-12.818457, 8.401381], - [-12.817134, 8.401253], - [-12.816446, 8.400771], - [-12.814817, 8.400821], - [-12.812348, 8.404868], - [-12.811741, 8.406407], - [-12.81162, 8.407849], - [-12.812109, 8.409154], - [-12.81212, 8.40919], - [-12.812208, 8.410792], - [-12.811839, 8.412888], - [-12.812026, 8.413521], - [-12.812492, 8.414484], - [-12.814583, 8.412917], - [-12.817916, 8.414584], - [-12.82088, 8.421252], - [-12.820956, 8.421226], - [-12.822082, 8.422917], - [-12.82375, 8.429583], - [-12.825417, 8.430417], - [-12.825416, 8.433749], - [-12.82375, 8.434584], - [-12.823749, 8.43625], - [-12.82125, 8.43875], - [-12.822082, 8.447916], - [-12.81625, 8.44625], - [-12.815417, 8.44875], - [-12.816249, 8.452916], - [-12.816249, 8.454583], - [-12.812083, 8.455417], - [-12.812083, 8.457083], - [-12.813749, 8.45875], - [-12.81375, 8.462083], - [-12.820416, 8.462084], - [-12.820416, 8.467084], - [-12.817083, 8.471249], - [-12.822916, 8.472083], - [-12.823271, 8.473147], - [-12.82373, 8.472964], - [-12.823732, 8.472964], - [-12.823514, 8.473277], - [-12.824583, 8.475416], - [-12.827917, 8.474584], - [-12.830416, 8.477083], - [-12.82875, 8.481249], - [-12.833749, 8.489583], - [-12.835416, 8.48375], - [-12.837916, 8.481249], - [-12.837083, 8.477916], - [-12.840416, 8.474584], - [-12.842082, 8.474584], - [-12.849582, 8.479583], - [-12.850417, 8.478749], - [-12.850416, 8.470417], - [-12.847083, 8.470416], - [-12.84625, 8.46875], - [-12.851249, 8.468749], - [-12.852916, 8.46625], - [-12.853368, 8.466249], - [-12.85325, 8.466016], - [-12.856249, 8.465416], - [-12.857083, 8.462917], - [-12.860416, 8.462083], - [-12.86125, 8.45875], - [-12.867082, 8.45875], - [-12.869583, 8.462916], - [-12.876878, 8.462916], - [-12.877604, 8.459104], - [-12.877506, 8.458736], - [-12.877916, 8.457917], - [-12.880744, 8.45735], - [-12.880614, 8.45723], - [-12.880614, 8.457229], - [-12.884582, 8.454584], - [-12.886249, 8.454583] - ] - ], - "type": "Polygon" - }, - "id": 400, - "properties": { - "cc:admin:id": ["62"], - "cc:oBld:total": 513, - "cc:pop:fifteen-to-twenty-four": 2326.9009372218934, - "cc:pop:grid3-total": 13069.832925840352, - "cc:pop:kontur-total": 13640.29117421964, - "cc:pop:men": 5927.309499516221, - "cc:pop:sixty-plus": 791.3642073308181, - "cc:pop:total": 12711.66268446219, - "cc:pop:under-five": 2092.460764182734, - "cc:pop:women": 6784.353184945969, - "cc:pop:women-fiften-to-forty-nine": 3363.185686319205, - "cc:pop:wp-total": 10000.855587309445, - "cc:pop:wp-total-UN": 11574.004852810018, - "cc:id": "400", - "cc:Name": "Mile 38 CHP", - "cc:site": [-12.8543, 8.4529], - "user:parentName": "Koya", - "user:code": "OU_254975", - "user:orgUnitId": "WoqN1oUBX2R", - "user:level": "4", - "user:parentId": "pRHGAROvuyI" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.805199, 7.900599], - [-10.799799, 7.897299], - [-10.7919, 7.8935], - [-10.7898, 7.8928], - [-10.787099, 7.8926], - [-10.7822, 7.893], - [-10.7756, 7.895699], - [-10.770599, 7.897], - [-10.765299, 7.8993], - [-10.761799, 7.8999], - [-10.7508, 7.900199], - [-10.747299, 7.9009], - [-10.7397, 7.904399], - [-10.7355, 7.906799], - [-10.732299, 7.9081], - [-10.728, 7.910499], - [-10.7249, 7.911999], - [-10.7176, 7.917399], - [-10.712599, 7.9202], - [-10.708799, 7.9233], - [-10.7043, 7.927399], - [-10.7032, 7.928399], - [-10.697899, 7.9313], - [-10.695499, 7.9339], - [-10.6922, 7.940599], - [-10.691399, 7.9446], - [-10.691099, 7.9519], - [-10.6904, 7.955499], - [-10.6885, 7.959999], - [-10.687899, 7.9629], - [-10.6877, 7.9689], - [-10.687903, 7.988467], - [-10.68875, 7.988749], - [-10.695417, 7.982084], - [-10.696249, 7.98375], - [-10.696249, 7.987083], - [-10.694582, 7.98875], - [-10.69375, 7.99125], - [-10.69375, 7.992916], - [-10.697917, 7.992917], - [-10.699583, 7.997083], - [-10.700417, 7.997084], - [-10.702083, 7.999583], - [-10.706249, 8.00125], - [-10.70689, 8.004451], - [-10.70887, 8.003714], - [-10.709553, 8.003402], - [-10.710875, 8.002276], - [-10.710968, 8.002084], - [-10.717082, 8.002084], - [-10.719581, 8.003749], - [-10.719581, 8.00375], - [-10.714583, 8.00625], - [-10.71375, 8.008749], - [-10.725416, 8.009583], - [-10.72625, 8.012916], - [-10.732916, 8.01125], - [-10.737916, 8.012916], - [-10.737916, 8.018749], - [-10.73625, 8.022916], - [-10.737083, 8.023749], - [-10.73767, 8.024043], - [-10.737773, 8.023959], - [-10.738583, 8.022966], - [-10.739175, 8.021528], - [-10.739262, 8.021007], - [-10.742083, 8.018749], - [-10.747083, 8.017084], - [-10.752916, 8.018749], - [-10.758749, 8.01625], - [-10.759582, 8.016249], - [-10.759583, 8.015416], - [-10.762082, 8.014583], - [-10.762353, 8.014042], - [-10.76083, 8.011297], - [-10.760831, 8.011296], - [-10.767917, 8.012083], - [-10.773749, 8.010417], - [-10.778749, 8.007917], - [-10.781577, 8.010743], - [-10.784294, 8.010743], - [-10.7837, 8.009499], - [-10.7835, 8.0073], - [-10.7849, 8.002599], - [-10.7853, 7.998399], - [-10.7855, 7.990699], - [-10.7861, 7.986599], - [-10.788499, 7.980799], - [-10.788899, 7.976], - [-10.7881, 7.9712], - [-10.7857, 7.9658], - [-10.785099, 7.962099], - [-10.784999, 7.957199], - [-10.7847, 7.9284], - [-10.7848, 7.925499], - [-10.7854, 7.922699], - [-10.787599, 7.9183], - [-10.7889, 7.915099], - [-10.7926, 7.907899], - [-10.7953, 7.904899], - [-10.802099, 7.9018], - [-10.805199, 7.900599] - ] - ], - "type": "Polygon" - }, - "id": 401, - "properties": { - "cc:admin:id": ["90"], - "cc:oBld:total": 2684, - "cc:pop:fifteen-to-twenty-four": 4677.190602455763, - "cc:pop:grid3-total": 21447.51064279746, - "cc:pop:kontur-total": 25382.445215673324, - "cc:pop:men": 11469.849957366963, - "cc:pop:sixty-plus": 1462.346209157311, - "cc:pop:total": 23903.03039397338, - "cc:pop:under-five": 3817.898814891212, - "cc:pop:women": 12433.180436606408, - "cc:pop:women-fiften-to-forty-nine": 6325.217353558545, - "cc:pop:wp-total": 21309.937476137773, - "cc:pop:wp-total-UN": 24710.100589138798, - "cc:id": "401", - "cc:Name": "Mobai CHC", - "cc:site": [-10.7542, 7.9935], - "user:parentName": "Mandu", - "user:code": "OU_204912", - "user:orgUnitId": "MXdbul7bBqV", - "user:level": "4", - "user:parentId": "yu4N82FFeLm" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.243199, 8.662599], - [-13.242599, 8.6607], - [-13.241799, 8.660399], - [-13.2407, 8.658799], - [-13.240399, 8.6568], - [-13.239899, 8.656799], - [-13.2385, 8.6537], - [-13.238499, 8.6526], - [-13.2368, 8.6501], - [-13.236799, 8.649], - [-13.2354, 8.6476], - [-13.235099, 8.6462], - [-13.2332, 8.644], - [-13.2313, 8.643199], - [-13.230999, 8.6418], - [-13.2299, 8.640699], - [-13.229899, 8.6393], - [-13.229, 8.6379], - [-13.227599, 8.6371], - [-13.226499, 8.637099], - [-13.2238, 8.634299], - [-13.223199, 8.6326], - [-13.2221, 8.632099], - [-13.221799, 8.6307], - [-13.2204, 8.629899], - [-13.220026, 8.629386], - [-13.219885, 8.629628], - [-13.218346, 8.629629], - [-13.219713, 8.63088], - [-13.220104, 8.632464], - [-13.220063, 8.633408], - [-13.220104, 8.634173], - [-13.218855, 8.634157], - [-13.218259, 8.634267], - [-13.218256, 8.634269], - [-13.218211, 8.634214], - [-13.218121, 8.634314], - [-13.216737, 8.634607], - [-13.216705, 8.6346], - [-13.216635, 8.634962], - [-13.21655, 8.635169], - [-13.215534, 8.634798], - [-13.215838, 8.635822], - [-13.21615, 8.636711], - [-13.216103, 8.63707], - [-13.215061, 8.636542], - [-13.214143, 8.636091], - [-13.214019, 8.636625], - [-13.212586, 8.636852], - [-13.212521, 8.637294], - [-13.212599, 8.637516], - [-13.212725, 8.63822], - [-13.212002, 8.638292], - [-13.212016, 8.638546], - [-13.212099, 8.639176], - [-13.211905, 8.639239], - [-13.211917, 8.639333], - [-13.211627, 8.639511], - [-13.21122, 8.639926], - [-13.211569, 8.640353], - [-13.212001, 8.641229], - [-13.212245, 8.641144], - [-13.212875, 8.641163], - [-13.212868, 8.641656], - [-13.212418, 8.642507], - [-13.212094, 8.643187], - [-13.211863, 8.643869], - [-13.211676, 8.644264], - [-13.210909, 8.644011], - [-13.210771, 8.644695], - [-13.210537, 8.644963], - [-13.210464, 8.645044], - [-13.210471, 8.645056], - [-13.210681, 8.645517], - [-13.210684, 8.645536], - [-13.210837, 8.645607], - [-13.210933, 8.645622], - [-13.211333, 8.64515], - [-13.211334, 8.64515], - [-13.211284, 8.647404], - [-13.211561, 8.649281], - [-13.211727, 8.649319], - [-13.211691, 8.649393], - [-13.211538, 8.649854], - [-13.211096, 8.650339], - [-13.204583, 8.647084], - [-13.205294, 8.652779], - [-13.205293, 8.65278], - [-13.202232, 8.65157], - [-13.198504, 8.649687], - [-13.193328, 8.647799], - [-13.192223, 8.650945], - [-13.190006, 8.655607], - [-13.191943, 8.655166], - [-13.192597, 8.655432], - [-13.190416, 8.661249], - [-13.189582, 8.662083], - [-13.187192, 8.661486], - [-13.184941, 8.666176], - [-13.184137, 8.66586], - [-13.18398, 8.665985], - [-13.183031, 8.665299], - [-13.182318, 8.665174], - [-13.182307, 8.664806], - [-13.182061, 8.664618], - [-13.181404, 8.666122], - [-13.18064, 8.669017], - [-13.178923, 8.67161], - [-13.178224, 8.672915], - [-13.177266, 8.673883], - [-13.175863, 8.674633], - [-13.173936, 8.675068], - [-13.172539, 8.675374], - [-13.172045, 8.675446], - [-13.171611, 8.675502], - [-13.17125, 8.67553], - [-13.171249, 8.680979], - [-13.164635, 8.684948], - [-13.165416, 8.677917], - [-13.163137, 8.677347], - [-13.163333, 8.676955], - [-13.161099, 8.674624], - [-13.160162, 8.674159], - [-13.159168, 8.673418], - [-13.156476, 8.671125], - [-13.156399, 8.6724], - [-13.153999, 8.6787], - [-13.152699, 8.687499], - [-13.1507, 8.691499], - [-13.147299, 8.6953], - [-13.143199, 8.6991], - [-13.139799, 8.7018], - [-13.134, 8.7052], - [-13.1312, 8.7094], - [-13.1309, 8.714699], - [-13.131899, 8.719299], - [-13.135599, 8.726299], - [-13.1377, 8.728199], - [-13.140799, 8.729599], - [-13.1491, 8.7308], - [-13.1527, 8.7327], - [-13.156299, 8.735699], - [-13.157691, 8.736698], - [-13.157917, 8.736249], - [-13.160417, 8.73375], - [-13.166446, 8.731739], - [-13.166478, 8.731203], - [-13.166365, 8.730605], - [-13.16547, 8.728097], - [-13.168989, 8.729265], - [-13.170061, 8.729302], - [-13.172449, 8.729782], - [-13.174582, 8.72125], - [-13.17375, 8.720416], - [-13.17375, 8.711249], - [-13.180417, 8.70875], - [-13.193749, 8.711249], - [-13.192083, 8.700417], - [-13.193596, 8.696632], - [-13.193281, 8.696228], - [-13.197917, 8.692917], - [-13.198749, 8.692917], - [-13.199583, 8.693749], - [-13.201249, 8.69375], - [-13.202097, 8.694596], - [-13.205127, 8.694596], - [-13.207091, 8.691196], - [-13.206132, 8.689861], - [-13.205427, 8.688412], - [-13.204986, 8.6874], - [-13.212916, 8.685416], - [-13.21375, 8.684583], - [-13.214866, 8.684024], - [-13.215011, 8.68322], - [-13.215987, 8.680824], - [-13.216941, 8.680035], - [-13.216943, 8.680035], - [-13.216959, 8.680245], - [-13.22125, 8.682082], - [-13.225416, 8.682082], - [-13.230416, 8.672916], - [-13.230416, 8.67125], - [-13.22875, 8.66875], - [-13.230416, 8.66625], - [-13.235416, 8.665417], - [-13.23625, 8.666249], - [-13.242599, 8.665544], - [-13.2426, 8.6635], - [-13.243199, 8.662599] - ] - ], - "type": "Polygon" - }, - "id": 402, - "properties": { - "cc:admin:id": ["44"], - "cc:oBld:total": 2115, - "cc:pop:fifteen-to-twenty-four": 2641.333321003215, - "cc:pop:grid3-total": 12418.370333847854, - "cc:pop:kontur-total": 14532.864232729631, - "cc:pop:men": 7043.873000569453, - "cc:pop:sixty-plus": 875.7433880495429, - "cc:pop:total": 14673.185122701154, - "cc:pop:under-five": 2394.2773511166456, - "cc:pop:women": 7629.3121221316915, - "cc:pop:women-fiften-to-forty-nine": 3675.809728455046, - "cc:pop:wp-total": 12337.779103161787, - "cc:pop:wp-total-UN": 14305.37273629185, - "cc:id": "402", - "cc:Name": "Modia MCHP", - "cc:site": [-13.2239, 8.6414], - "user:parentName": "Magbema", - "user:code": "OU_211233", - "user:orgUnitId": "ua3kNk4uraZ", - "user:level": "4", - "user:parentId": "QywkxFudXrC" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.935916, 8.115068], - [-11.934779, 8.115016], - [-11.934583, 8.114855], - [-11.934582, 8.107084], - [-11.93125, 8.102084], - [-11.931249, 8.11458], - [-11.926249, 8.104584], - [-11.920417, 8.110416], - [-11.91875, 8.110416], - [-11.917916, 8.108749], - [-11.914583, 8.102917], - [-11.914582, 8.102012], - [-11.913362, 8.102805], - [-11.905417, 8.102083], - [-11.904582, 8.095417], - [-11.902916, 8.092917], - [-11.902082, 8.092916], - [-11.897917, 8.08625], - [-11.897802, 8.08625], - [-11.8968, 8.091999], - [-11.8957, 8.095899], - [-11.892899, 8.1013], - [-11.889, 8.109799], - [-11.884899, 8.1151], - [-11.877, 8.1229], - [-11.8737, 8.131599], - [-11.8712, 8.136599], - [-11.877799, 8.137599], - [-11.8817, 8.138], - [-11.887399, 8.138199], - [-11.892099, 8.138], - [-11.8956, 8.137299], - [-11.9009, 8.134999], - [-11.905999, 8.1339], - [-11.911199, 8.1313], - [-11.9144, 8.129999], - [-11.918699, 8.1276], - [-11.921799, 8.1263], - [-11.926099, 8.1239], - [-11.9292, 8.122499], - [-11.9314, 8.120999], - [-11.934582, 8.118029], - [-11.934583, 8.116131], - [-11.934608, 8.11614], - [-11.935561, 8.115845], - [-11.935916, 8.115068] - ] - ], - "type": "Polygon" - }, - "id": 403, - "properties": { - "cc:admin:id": ["61"], - "cc:oBld:total": 0, - "cc:pop:fifteen-to-twenty-four": 146.64909550413472, - "cc:pop:grid3-total": 256.0762972672625, - "cc:pop:kontur-total": 452, - "cc:pop:men": 373.817635169958, - "cc:pop:sixty-plus": 61.496738463543906, - "cc:pop:total": 799.8488611829524, - "cc:pop:under-five": 136.79471946959612, - "cc:pop:women": 426.03122601299447, - "cc:pop:women-fiften-to-forty-nine": 208.14583396767858, - "cc:pop:wp-total": 733.298730901167, - "cc:pop:wp-total-UN": 846.0310577038981, - "cc:id": "403", - "cc:Name": "Mofombo MCHP", - "cc:site": [-11.897, 8.1361], - "user:parentName": "Kowa", - "user:code": "OU_247035", - "user:orgUnitId": "kqyeoWyfDmQ", - "user:level": "4", - "user:parentId": "xIKjidMrico" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.978755, 8.22586], - [-11.973479, 8.225859], - [-11.969573, 8.219094], - [-11.96887, 8.219094], - [-11.968749, 8.220417], - [-11.964582, 8.22375], - [-11.958749, 8.223749], - [-11.952083, 8.222917], - [-11.94875, 8.22125], - [-11.94875, 8.209584], - [-11.947916, 8.20625], - [-11.942083, 8.209583], - [-11.939583, 8.209584], - [-11.938795, 8.211156], - [-11.935963, 8.206252], - [-11.939869, 8.199486], - [-11.93867, 8.19741], - [-11.932083, 8.197917], - [-11.931349, 8.198796], - [-11.926605, 8.198796], - [-11.922698, 8.192031], - [-11.921792, 8.192031], - [-11.920671, 8.193431], - [-11.916956, 8.193431], - [-11.913051, 8.186666], - [-11.916081, 8.181418], - [-11.914582, 8.182083], - [-11.910417, 8.182083], - [-11.910417, 8.179583], - [-11.912916, 8.17125], - [-11.910416, 8.170416], - [-11.907082, 8.165417], - [-11.90526, 8.16496], - [-11.905434, 8.164453], - [-11.905717, 8.161349], - [-11.905753, 8.16125], - [-11.904815, 8.16125], - [-11.904734, 8.161389], - [-11.896922, 8.161388], - [-11.89375, 8.155894], - [-11.893749, 8.164583], - [-11.890417, 8.168749], - [-11.877083, 8.168749], - [-11.872917, 8.165416], - [-11.872083, 8.159584], - [-11.876249, 8.153749], - [-11.876249, 8.152084], - [-11.870416, 8.14875], - [-11.863218, 8.14875], - [-11.862299, 8.1497], - [-11.857699, 8.1531], - [-11.854999, 8.1542], - [-11.852199, 8.1547], - [-11.849299, 8.154799], - [-11.8436, 8.1542], - [-11.8376, 8.1524], - [-11.8332, 8.1516], - [-11.8161, 8.151], - [-11.8115, 8.1505], - [-11.807499, 8.149199], - [-11.799799, 8.145199], - [-11.795499, 8.144199], - [-11.7893, 8.1437], - [-11.7894, 8.151099], - [-11.7965, 8.1587], - [-11.8005, 8.1648], - [-11.805699, 8.171899], - [-11.810499, 8.180199], - [-11.812, 8.1854], - [-11.812499, 8.196799], - [-11.811999, 8.2053], - [-11.810499, 8.2113], - [-11.805899, 8.226], - [-11.802299, 8.2408], - [-11.801799, 8.2437], - [-11.801598, 8.247747], - [-11.80625, 8.247084], - [-11.812357, 8.249373], - [-11.813623, 8.247183], - [-11.816501, 8.247183], - [-11.816502, 8.247184], - [-11.814842, 8.249259], - [-11.814891, 8.249344], - [-11.822703, 8.249344], - [-11.826609, 8.242579], - [-11.828175, 8.242578], - [-11.828176, 8.24258], - [-11.827917, 8.24375], - [-11.846249, 8.247916], - [-11.848749, 8.24125], - [-11.849582, 8.239584], - [-11.853749, 8.238749], - [-11.854583, 8.235416], - [-11.857082, 8.232917], - [-11.862916, 8.232083], - [-11.862917, 8.230425], - [-11.863015, 8.230709], - [-11.863934, 8.231777], - [-11.864691, 8.23223], - [-11.864907, 8.231693], - [-11.86502, 8.231404], - [-11.865031, 8.230862], - [-11.864849, 8.230351], - [-11.864126, 8.229448], - [-11.867083, 8.227084], - [-11.873749, 8.227084], - [-11.87375, 8.238749], - [-11.876249, 8.241249], - [-11.879543, 8.236859], - [-11.879544, 8.236859], - [-11.879162, 8.238107], - [-11.877811, 8.241567], - [-11.877619, 8.243423], - [-11.878326, 8.247916], - [-11.882082, 8.247916], - [-11.885417, 8.245417], - [-11.891249, 8.24625], - [-11.892917, 8.247084], - [-11.896994, 8.253199], - [-11.899403, 8.252995], - [-11.904582, 8.240417], - [-11.910416, 8.24125], - [-11.914583, 8.244584], - [-11.915417, 8.253749], - [-11.918749, 8.252083], - [-11.92125, 8.249584], - [-11.931249, 8.250416], - [-11.930417, 8.257916], - [-11.932917, 8.262083], - [-11.940416, 8.264583], - [-11.944582, 8.262084], - [-11.947916, 8.262084], - [-11.952082, 8.265416], - [-11.952388, 8.268157], - [-11.959043, 8.268157], - [-11.960617, 8.26543], - [-11.96153, 8.265461], - [-11.963343, 8.264639], - [-11.964121, 8.264022], - [-11.964435, 8.263466], - [-11.967179, 8.26566], - [-11.9679, 8.264399], - [-11.9692, 8.261199], - [-11.971599, 8.2561], - [-11.9728, 8.250999], - [-11.9749, 8.245699], - [-11.9756, 8.241999], - [-11.975899, 8.2362], - [-11.976399, 8.2324], - [-11.978499, 8.2271], - [-11.978755, 8.22586] - ] - ], - "type": "Polygon" - }, - "id": 404, - "properties": { - "cc:admin:id": ["48"], - "cc:oBld:total": 62, - "cc:pop:fifteen-to-twenty-four": 488.33412264511276, - "cc:pop:grid3-total": 2586.3043816117333, - "cc:pop:kontur-total": 3536.5766306960586, - "cc:pop:men": 1344.1775200193022, - "cc:pop:sixty-plus": 126.46383984144992, - "cc:pop:total": 2998.140398067478, - "cc:pop:under-five": 459.36833783989454, - "cc:pop:women": 1653.9628780481753, - "cc:pop:women-fiften-to-forty-nine": 789.2728358383393, - "cc:pop:wp-total": 1676.5808990779062, - "cc:pop:wp-total-UN": 1938.3319329975177, - "cc:id": "404", - "cc:Name": "Mogbuama MCHP", - "cc:site": [-11.8951, 8.2071], - "user:parentName": "Kamaje", - "user:code": "OU_247009", - "user:orgUnitId": "wGsBlwh6Zzt", - "user:level": "4", - "user:parentId": "LsYpCyYxSLY" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.63125, 7.745416], - [-12.631249, 7.737656], - [-12.631004, 7.737668], - [-12.630362, 7.737903], - [-12.629698, 7.738846], - [-12.629741, 7.739531], - [-12.630254, 7.741221], - [-12.630125, 7.741778], - [-12.629761, 7.742229], - [-12.62852, 7.74257], - [-12.627792, 7.742336], - [-12.627621, 7.741907], - [-12.627684, 7.740366], - [-12.627492, 7.739702], - [-12.626978, 7.739316], - [-12.625094, 7.738846], - [-12.624623, 7.738374], - [-12.624087, 7.73634], - [-12.623745, 7.735804], - [-12.622888, 7.735012], - [-12.622525, 7.734863], - [-12.622132, 7.735071], - [-12.620459, 7.735781], - [-12.617909, 7.735823], - [-12.616396, 7.73521], - [-12.613987, 7.734085], - [-12.612141, 7.733578], - [-12.610568, 7.73334], - [-12.610299, 7.735699], - [-12.608399, 7.7401], - [-12.6066, 7.744899], - [-12.602299, 7.746999], - [-12.597, 7.747299], - [-12.5928, 7.7469], - [-12.588999, 7.746199], - [-12.581999, 7.743599], - [-12.5755, 7.7431], - [-12.569499, 7.7431], - [-12.5657, 7.7435], - [-12.5627, 7.745299], - [-12.5592, 7.7511], - [-12.5569, 7.761899], - [-12.5583, 7.7678], - [-12.5588, 7.7729], - [-12.559099, 7.782899], - [-12.559699, 7.787199], - [-12.563499, 7.795299], - [-12.565799, 7.799499], - [-12.567699, 7.806199], - [-12.5699, 7.8105], - [-12.573699, 7.819099], - [-12.575, 7.8241], - [-12.5774, 7.8293], - [-12.5782, 7.8329], - [-12.5783, 7.8358], - [-12.578399, 7.853199], - [-12.578502, 7.855292], - [-12.580416, 7.856249], - [-12.584582, 7.856249], - [-12.58625, 7.852084], - [-12.591249, 7.851249], - [-12.590417, 7.844584], - [-12.590862, 7.842799], - [-12.589508, 7.842289], - [-12.586559, 7.840687], - [-12.584583, 7.835416], - [-12.589047, 7.832229], - [-12.590076, 7.832639], - [-12.59069, 7.832787], - [-12.592083, 7.827917], - [-12.597916, 7.832916], - [-12.599428, 7.83342], - [-12.599929, 7.83285], - [-12.601999, 7.831853], - [-12.60354, 7.830645], - [-12.604395, 7.828728], - [-12.605231, 7.827314], - [-12.606039, 7.826324], - [-12.606944, 7.824793], - [-12.605982, 7.823347], - [-12.613037, 7.823346], - [-12.616485, 7.817376], - [-12.614582, 7.817084], - [-12.605417, 7.818749], - [-12.607916, 7.81125], - [-12.616249, 7.812083], - [-12.621249, 7.807083], - [-12.618749, 7.80375], - [-12.617219, 7.802984], - [-12.617783, 7.801875], - [-12.618088, 7.800502], - [-12.617417, 7.798012], - [-12.618965, 7.798147], - [-12.620474, 7.797898], - [-12.620841, 7.798442], - [-12.622139, 7.798442], - [-12.62304, 7.796882], - [-12.622977, 7.796753], - [-12.623119, 7.794179], - [-12.623485, 7.793462], - [-12.624629, 7.792546], - [-12.625505, 7.792612], - [-12.625974, 7.7918], - [-12.625982, 7.790331], - [-12.624696, 7.78955], - [-12.624959, 7.788522], - [-12.622767, 7.788251], - [-12.622517, 7.786706], - [-12.622936, 7.78629], - [-12.62214, 7.78491], - [-12.626046, 7.778145], - [-12.62214, 7.771379], - [-12.622374, 7.770973], - [-12.621577, 7.770214], - [-12.621586, 7.768412], - [-12.621332, 7.767895], - [-12.621978, 7.76764], - [-12.6225, 7.766741], - [-12.624053, 7.765978], - [-12.625476, 7.765599], - [-12.625093, 7.764824], - [-12.623292, 7.763526], - [-12.620463, 7.761837], - [-12.622015, 7.760943], - [-12.62215, 7.760172], - [-12.622796, 7.759917], - [-12.621898, 7.75914], - [-12.620218, 7.759258], - [-12.619702, 7.759128], - [-12.619949, 7.760932], - [-12.618917, 7.760927], - [-12.61717, 7.758842], - [-12.616944, 7.74443], - [-12.61875, 7.744569], - [-12.619523, 7.745087], - [-12.620039, 7.744962], - [-12.620304, 7.743934], - [-12.621075, 7.744581], - [-12.622279, 7.744548], - [-12.622751, 7.744978], - [-12.622361, 7.74549], - [-12.623649, 7.746013], - [-12.623381, 7.747814], - [-12.624417, 7.747305], - [-12.625398, 7.750212], - [-12.627916, 7.749583], - [-12.63125, 7.745416] - ] - ], - "type": "Polygon" - }, - "id": 405, - "properties": { - "cc:admin:id": ["135"], - "cc:oBld:total": 0, - "cc:pop:fifteen-to-twenty-four": 189.9171795723813, - "cc:pop:grid3-total": 1043.7983735907244, - "cc:pop:kontur-total": 933.6538671717977, - "cc:pop:men": 459.7525499850826, - "cc:pop:sixty-plus": 69.97146048131972, - "cc:pop:total": 953.6338164354773, - "cc:pop:under-five": 158.93873872025202, - "cc:pop:women": 493.8812664503949, - "cc:pop:women-fiften-to-forty-nine": 229.91019920157174, - "cc:pop:wp-total": 1377.8043619499956, - "cc:pop:wp-total-UN": 1607.413752751065, - "cc:id": "405", - "cc:Name": "Mogbwemo CHP", - "cc:site": [-12.57751, 7.77689], - "user:parentName": "Imperi", - "user:code": "OU_197415", - "user:orgUnitId": "jIkxZKctVhB", - "user:level": "4", - "user:parentId": "XEyIRFd9pct" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.905699, 8.0393], - [-12.9051, 8.038499], - [-12.905099, 8.036], - [-12.9043, 8.0349], - [-12.904299, 8.0337], - [-12.901, 8.031199], - [-12.9007, 8.0276], - [-12.901499, 8.025999], - [-12.9013, 8.0246], - [-12.8996, 8.024599], - [-12.8996, 8.023799], - [-12.900699, 8.022899], - [-12.8999, 8.021299], - [-12.899899, 8.0199], - [-12.899, 8.0176], - [-12.8985, 8.017399], - [-12.898499, 8.0157], - [-12.8976, 8.015099], - [-12.897599, 8.013199], - [-12.897099, 8.010699], - [-12.895999, 8.0076], - [-12.8951, 8.007099], - [-12.8954, 8.005699], - [-12.8954, 8.0026], - [-12.8957, 8.002599], - [-12.895699, 7.9976], - [-12.892601, 7.997399], - [-12.893699, 7.996299], - [-12.894599, 7.993999], - [-12.894899, 7.9896], - [-12.894599, 7.988499], - [-12.8926, 7.9846], - [-12.8915, 7.983999], - [-12.8915, 7.980101], - [-12.891799, 7.980099], - [-12.891799, 7.9771], - [-12.891, 7.975099], - [-12.890999, 7.973199], - [-12.890399, 7.9718], - [-12.8896, 7.971499], - [-12.8896, 7.970099], - [-12.891299, 7.968799], - [-12.890699, 7.965399], - [-12.8896, 7.9632], - [-12.888499, 7.962399], - [-12.8879, 7.960999], - [-12.8879, 7.956499], - [-12.888754, 7.95175], - [-12.884795, 7.951456], - [-12.875848, 7.949056], - [-12.875219, 7.948807], - [-12.874021, 7.954193], - [-12.868174, 7.95202], - [-12.861513, 7.949325], - [-12.860002, 7.948327], - [-12.860417, 7.947083], - [-12.8638, 7.944376], - [-12.859162, 7.944375], - [-12.857102, 7.94081], - [-12.855224, 7.94023], - [-12.851881, 7.93761], - [-12.847443, 7.937609], - [-12.84518, 7.933692], - [-12.840287, 7.930844], - [-12.839164, 7.930844], - [-12.838749, 7.932916], - [-12.837102, 7.934014], - [-12.836199, 7.933054], - [-12.834575, 7.93162], - [-12.833005, 7.93143], - [-12.829703, 7.931375], - [-12.827564, 7.930536], - [-12.825562, 7.929372], - [-12.824316, 7.927477], - [-12.822421, 7.925528], - [-12.820066, 7.924256], - [-12.816873, 7.922768], - [-12.814436, 7.921713], - [-12.811323, 7.919791], - [-12.810159, 7.920061], - [-12.808913, 7.922498], - [-12.807993, 7.923715], - [-12.807362, 7.924165], - [-12.810204, 7.929087], - [-12.813312, 7.929088], - [-12.812917, 7.929584], - [-12.81363, 7.937441], - [-12.813629, 7.937442], - [-12.813508, 7.93741], - [-12.811421, 7.941262], - [-12.813215, 7.944106], - [-12.814115, 7.944884], - [-12.814357, 7.947976], - [-12.815121, 7.950041], - [-12.814583, 7.950345], - [-12.814583, 7.95125], - [-12.815416, 7.954583], - [-12.812082, 7.961249], - [-12.808749, 7.961249], - [-12.804583, 7.95875], - [-12.805416, 7.968749], - [-12.801674, 7.971244], - [-12.801673, 7.971243], - [-12.801446, 7.970321], - [-12.8008, 7.970575], - [-12.80135, 7.97146], - [-12.800417, 7.972084], - [-12.80125, 7.975417], - [-12.802082, 7.990416], - [-12.799583, 7.990417], - [-12.798749, 7.992916], - [-12.797916, 7.99375], - [-12.79625, 7.999583], - [-12.796249, 8.002083], - [-12.79375, 8.002084], - [-12.792665, 8.00371], - [-12.79136, 8.003247], - [-12.791723, 8.005786], - [-12.79224, 8.006816], - [-12.792847, 8.007419], - [-12.793265, 8.010463], - [-12.792565, 8.015747], - [-12.793989, 8.018819], - [-12.794339, 8.020296], - [-12.794866, 8.021361], - [-12.797006, 8.024028], - [-12.797744, 8.025601], - [-12.7979, 8.0257], - [-12.805999, 8.029099], - [-12.8105, 8.0299], - [-12.8135, 8.030099], - [-12.836499, 8.0299], - [-12.8394, 8.0301], - [-12.842299, 8.030699], - [-12.849899, 8.034499], - [-12.853099, 8.036599], - [-12.857899, 8.041299], - [-12.861999, 8.043899], - [-12.8647, 8.0446], - [-12.868499, 8.045099], - [-12.8724, 8.044899], - [-12.8762, 8.043799], - [-12.880599, 8.0421], - [-12.884599, 8.0413], - [-12.889599, 8.041], - [-12.8959, 8.041], - [-12.905398, 8.0415], - [-12.9045, 8.043499], - [-12.905399, 8.042599], - [-12.905699, 8.0393] - ] - ], - "type": "Polygon" - }, - "id": 406, - "properties": { - "cc:admin:id": ["51"], - "cc:oBld:total": 22, - "cc:pop:fifteen-to-twenty-four": 1975.7365487945563, - "cc:pop:grid3-total": 4499.990199845788, - "cc:pop:kontur-total": 10897.92638829226, - "cc:pop:men": 5148.321030011066, - "cc:pop:sixty-plus": 713.1553380815842, - "cc:pop:total": 10816.569485969982, - "cc:pop:under-five": 1807.9252486691023, - "cc:pop:women": 5668.24845595891, - "cc:pop:women-fiften-to-forty-nine": 2586.632333813424, - "cc:pop:wp-total": 9176.057335212157, - "cc:pop:wp-total-UN": 10640.371886707959, - "cc:id": "406", - "cc:Name": "Mokainsumana CHP", - "cc:site": [-12.8198, 7.994], - "user:parentName": "Kargboro", - "user:code": "OU_247074", - "user:orgUnitId": "bLYNonGzr0Y", - "user:level": "4", - "user:parentId": "Z9QaI6sxTwW" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.773417, 8.023893], - [-12.770361, 8.0186], - [-12.7616, 8.018599], - [-12.759599, 8.018499], - [-12.7557, 8.0175], - [-12.752199, 8.015899], - [-12.745499, 8.014099], - [-12.7401, 8.0119], - [-12.7361, 8.0113], - [-12.7143, 8.0112], - [-12.7071, 8.011599], - [-12.704299, 8.0122], - [-12.698899, 8.0145], - [-12.695, 8.014999], - [-12.6921, 8.0149], - [-12.688499, 8.013899], - [-12.684899, 8.011999], - [-12.6772, 8.0084], - [-12.6745, 8.0077], - [-12.668399, 8.0074], - [-12.6436, 8.007599], - [-12.6406, 8.0075], - [-12.6368, 8.0067], - [-12.635188, 8.005912], - [-12.62375, 8.01125], - [-12.624583, 8.022084], - [-12.62875, 8.025416], - [-12.632082, 8.025417], - [-12.632083, 8.027916], - [-12.638749, 8.027917], - [-12.643091, 8.029778], - [-12.642484, 8.032411], - [-12.640945, 8.035594], - [-12.639817, 8.03737], - [-12.639477, 8.03921], - [-12.639933, 8.040653], - [-12.642917, 8.04125], - [-12.646861, 8.04125], - [-12.644702, 8.04499], - [-12.648608, 8.051755], - [-12.651314, 8.051756], - [-12.65125, 8.052084], - [-12.657082, 8.057917], - [-12.657082, 8.059584], - [-12.654475, 8.062192], - [-12.65509, 8.063029], - [-12.656691, 8.064179], - [-12.659723, 8.064729], - [-12.660639, 8.064702], - [-12.661765, 8.065033], - [-12.662702, 8.064816], - [-12.66125, 8.072083], - [-12.667083, 8.076249], - [-12.674582, 8.07625], - [-12.674583, 8.084583], - [-12.67375, 8.091249], - [-12.677083, 8.094583], - [-12.682916, 8.095416], - [-12.686249, 8.09625], - [-12.683355, 8.10421], - [-12.686571, 8.109312], - [-12.686934, 8.113692], - [-12.68771, 8.113439], - [-12.68925, 8.110417], - [-12.689583, 8.110417], - [-12.691236, 8.11207], - [-12.690165, 8.113711], - [-12.688217, 8.115374], - [-12.688731, 8.115892], - [-12.689352, 8.120146], - [-12.688829, 8.121432], - [-12.689463, 8.123495], - [-12.690884, 8.123503], - [-12.693091, 8.121971], - [-12.694064, 8.122192], - [-12.694582, 8.12375], - [-12.693344, 8.128086], - [-12.693404, 8.128117], - [-12.693199, 8.128735], - [-12.69399, 8.129161], - [-12.695807, 8.130391], - [-12.697595, 8.131888], - [-12.700212, 8.133653], - [-12.701791, 8.134256], - [-12.703391, 8.134381], - [-12.70549, 8.134174], - [-12.708045, 8.134195], - [-12.710643, 8.135088], - [-12.712195, 8.13572], - [-12.714282, 8.136605], - [-12.715603, 8.136789], - [-12.717361, 8.136632], - [-12.718763, 8.136084], - [-12.719365, 8.135749], - [-12.719865, 8.13471], - [-12.720709, 8.133504], - [-12.720235, 8.132555], - [-12.720429, 8.132225], - [-12.722235, 8.129954], - [-12.724372, 8.127601], - [-12.726424, 8.125835], - [-12.728087, 8.124224], - [-12.729437, 8.122094], - [-12.730293, 8.119732], - [-12.730634, 8.11875], - [-12.732014, 8.118749], - [-12.732057, 8.118634], - [-12.732539, 8.116341], - [-12.73234, 8.113699], - [-12.732407, 8.111189], - [-12.733071, 8.109244], - [-12.734717, 8.107415], - [-12.737459, 8.105737], - [-12.73827, 8.105292], - [-12.737601, 8.103951], - [-12.739951, 8.102819], - [-12.737916, 8.09875], - [-12.735644, 8.099317], - [-12.734975, 8.097733], - [-12.73473, 8.095157], - [-12.73409, 8.094122], - [-12.733712, 8.092318], - [-12.732813, 8.091153], - [-12.732298, 8.091021], - [-12.732045, 8.08986], - [-12.731531, 8.089343], - [-12.730756, 8.089209], - [-12.730505, 8.088049], - [-12.730417, 8.087973], - [-12.730417, 8.084583], - [-12.735081, 8.080436], - [-12.735082, 8.080437], - [-12.735005, 8.08069], - [-12.735417, 8.080416], - [-12.73625, 8.079584], - [-12.74375, 8.087083], - [-12.748749, 8.084583], - [-12.73875, 8.074584], - [-12.737916, 8.064584], - [-12.734583, 8.062916], - [-12.737917, 8.059584], - [-12.743749, 8.059583], - [-12.747916, 8.056249], - [-12.747917, 8.054584], - [-12.74875, 8.054584], - [-12.749583, 8.056249], - [-12.75932, 8.055225], - [-12.759875, 8.054266], - [-12.765733, 8.054265], - [-12.767082, 8.052917], - [-12.767082, 8.04375], - [-12.76375, 8.038749], - [-12.765417, 8.032083], - [-12.766842, 8.030659], - [-12.769511, 8.030658], - [-12.773417, 8.023893] - ] - ], - "type": "Polygon" - }, - "id": 407, - "properties": { - "cc:admin:id": ["12"], - "cc:oBld:total": 34, - "cc:pop:fifteen-to-twenty-four": 1381.8088733227223, - "cc:pop:grid3-total": 4696.329131550472, - "cc:pop:kontur-total": 7593.415819714935, - "cc:pop:men": 3436.1831101829202, - "cc:pop:sixty-plus": 474.48920518000324, - "cc:pop:total": 7366.514795560358, - "cc:pop:under-five": 1269.642502595982, - "cc:pop:women": 3930.331685377436, - "cc:pop:women-fiften-to-forty-nine": 1852.9721497902906, - "cc:pop:wp-total": 6085.931208247618, - "cc:pop:wp-total-UN": 7060.183568852149, - "cc:id": "407", - "cc:Name": "Mokaiyegbeh MCHP", - "cc:site": [-12.7277, 8.0385], - "user:parentName": "Bumpeh", - "user:code": "OU_247026", - "user:orgUnitId": "WxMmxNU6Gla", - "user:level": "4", - "user:parentId": "nOYt1LtFSyU" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.291036, 7.934153], - [-12.290999, 7.933299], - [-12.289699, 7.9293], - [-12.286299, 7.925199], - [-12.282999, 7.922699], - [-12.2726, 7.9181], - [-12.2702, 7.916499], - [-12.2683, 7.912999], - [-12.268903, 7.910585], - [-12.264688, 7.911052], - [-12.262465, 7.909476], - [-12.261555, 7.908594], - [-12.25988, 7.907592], - [-12.258034, 7.906973], - [-12.25875, 7.90125], - [-12.262916, 7.897917], - [-12.269747, 7.897916], - [-12.272017, 7.893984], - [-12.269444, 7.889528], - [-12.266249, 7.892083], - [-12.256249, 7.892083], - [-12.254583, 7.890416], - [-12.254582, 7.881903], - [-12.253655, 7.882092], - [-12.25322, 7.882335], - [-12.252562, 7.882165], - [-12.252499, 7.881683], - [-12.251955, 7.880787], - [-12.253189, 7.880292], - [-12.2538, 7.87987], - [-12.253969, 7.879651], - [-12.247916, 7.872084], - [-12.242917, 7.872084], - [-12.239583, 7.874583], - [-12.238749, 7.870417], - [-12.235416, 7.86625], - [-12.226638, 7.865574], - [-12.229388, 7.860811], - [-12.225826, 7.854643], - [-12.225657, 7.854676], - [-12.22375, 7.854392], - [-12.223749, 7.85625], - [-12.220416, 7.859583], - [-12.213749, 7.852917], - [-12.20875, 7.851249], - [-12.207916, 7.850416], - [-12.203749, 7.847917], - [-12.20125, 7.847916], - [-12.202781, 7.84179], - [-12.202044, 7.840514], - [-12.194232, 7.840513], - [-12.193758, 7.839692], - [-12.194126, 7.83934], - [-12.194091, 7.838529], - [-12.192154, 7.838205], - [-12.19229, 7.837992], - [-12.19242, 7.836822], - [-12.191686, 7.83499], - [-12.191609, 7.833602], - [-12.192034, 7.831967], - [-12.192578, 7.831241], - [-12.193367, 7.830715], - [-12.199957, 7.828491], - [-12.205658, 7.826793], - [-12.206493, 7.825584], - [-12.206505, 7.825551], - [-12.206813, 7.824447], - [-12.206956, 7.82177], - [-12.206816, 7.81939], - [-12.203268, 7.811582], - [-12.202346, 7.809947], - [-12.201274, 7.808641], - [-12.198272, 7.807195], - [-12.197522, 7.80643], - [-12.196728, 7.804858], - [-12.196567, 7.802915], - [-12.196802, 7.800461], - [-12.196728, 7.799644], - [-12.195209, 7.796408], - [-12.194867, 7.794465], - [-12.195012, 7.793903], - [-12.195466, 7.793254], - [-12.197869, 7.790082], - [-12.198639, 7.789298], - [-12.199578, 7.789005], - [-12.201152, 7.788881], - [-12.202062, 7.788969], - [-12.203738, 7.78972], - [-12.206856, 7.789106], - [-12.207773, 7.788694], - [-12.208105, 7.788368], - [-12.207766, 7.786357], - [-12.208142, 7.784409], - [-12.210677, 7.781239], - [-12.212073, 7.777553], - [-12.215376, 7.771119], - [-12.215504, 7.770075], - [-12.215367, 7.769647], - [-12.214499, 7.77], - [-12.2093, 7.772599], - [-12.2042, 7.773699], - [-12.198999, 7.776], - [-12.1922, 7.777599], - [-12.1869, 7.779999], - [-12.181, 7.781399], - [-12.175999, 7.7835], - [-12.171799, 7.7842], - [-12.1635, 7.784399], - [-12.1595, 7.784999], - [-12.154, 7.787099], - [-12.149999, 7.7879], - [-12.1447, 7.788099], - [-12.1404, 7.7878], - [-12.137499, 7.787299], - [-12.133, 7.786], - [-12.135199, 7.803599], - [-12.1344, 7.812999], - [-12.134799, 7.818399], - [-12.136, 7.821899], - [-12.139599, 7.8266], - [-12.140399, 7.8308], - [-12.1389, 7.839899], - [-12.138299, 7.8457], - [-12.1382, 7.856099], - [-12.138699, 7.863399], - [-12.1398, 7.8675], - [-12.1434, 7.874], - [-12.1472, 7.8812], - [-12.1481, 7.8844], - [-12.148299, 7.887799], - [-12.147399, 7.8921], - [-12.1436, 7.899399], - [-12.140099, 7.9036], - [-12.1331, 7.9105], - [-12.1314, 7.915299], - [-12.1312, 7.923799], - [-12.1315, 7.9267], - [-12.1324, 7.930199], - [-12.1353, 7.9343], - [-12.1386, 7.936999], - [-12.143, 7.938799], - [-12.1455, 7.938], - [-12.148299, 7.938099], - [-12.151068, 7.939092], - [-12.151321, 7.938205], - [-12.15118, 7.937335], - [-12.150326, 7.936275], - [-12.14773, 7.935051], - [-12.145772, 7.9345], - [-12.145514, 7.933768], - [-12.145391, 7.932355], - [-12.14637, 7.930819], - [-12.147705, 7.930252], - [-12.14899, 7.929423], - [-12.149612, 7.929242], - [-12.15371, 7.930022], - [-12.154365, 7.929956], - [-12.157426, 7.927903], - [-12.158749, 7.926519], - [-12.15875, 7.927083], - [-12.159477, 7.927809], - [-12.159792, 7.9275], - [-12.161249, 7.927384], - [-12.16125, 7.929518], - [-12.162082, 7.929653], - [-12.162083, 7.930417], - [-12.16375, 7.934584], - [-12.167083, 7.937083], - [-12.172082, 7.937916], - [-12.173749, 7.932917], - [-12.175416, 7.932083], - [-12.177917, 7.927084], - [-12.183744, 7.928378], - [-12.185008, 7.930998], - [-12.192081, 7.929584], - [-12.192082, 7.929585], - [-12.190417, 7.937084], - [-12.190417, 7.947083], - [-12.198749, 7.947084], - [-12.200416, 7.945416], - [-12.19875, 7.934583], - [-12.203576, 7.932515], - [-12.204002, 7.933447], - [-12.20442, 7.93385], - [-12.204351, 7.93484], - [-12.204908, 7.936726], - [-12.204377, 7.938392], - [-12.204295, 7.940805], - [-12.205165, 7.940806], - [-12.207663, 7.945133], - [-12.210416, 7.944584], - [-12.212916, 7.942083], - [-12.21446, 7.93745], - [-12.213449, 7.935135], - [-12.213589, 7.934899], - [-12.21359, 7.9349], - [-12.214583, 7.937083], - [-12.222234, 7.937083], - [-12.220127, 7.933432], - [-12.224033, 7.926667], - [-12.231729, 7.926667], - [-12.231529, 7.929294], - [-12.23399, 7.929294], - [-12.237917, 7.924584], - [-12.245145, 7.924027], - [-12.245617, 7.926761], - [-12.245633, 7.928232], - [-12.245345, 7.93013], - [-12.244504, 7.932498], - [-12.245708, 7.934582], - [-12.25352, 7.934583], - [-12.25375, 7.934981], - [-12.25375, 7.940416], - [-12.253577, 7.940633], - [-12.254844, 7.942825], - [-12.262655, 7.942825], - [-12.266562, 7.93606], - [-12.274374, 7.93606], - [-12.27678, 7.940226], - [-12.276735, 7.940919], - [-12.279905, 7.94092], - [-12.283811, 7.947685], - [-12.28791, 7.947686], - [-12.2881, 7.947499], - [-12.2895, 7.945399], - [-12.290899, 7.9417], - [-12.291199, 7.9379], - [-12.291036, 7.934153] - ] - ], - "type": "Polygon" - }, - "id": 408, - "properties": { - "cc:admin:id": ["140"], - "cc:oBld:total": 5, - "cc:pop:fifteen-to-twenty-four": 1205.189546731726, - "cc:pop:grid3-total": 9977.059718179866, - "cc:pop:kontur-total": 6528.272854865114, - "cc:pop:men": 3034.7032525998534, - "cc:pop:sixty-plus": 430.0540717590508, - "cc:pop:total": 6447.786178832591, - "cc:pop:under-five": 1124.2329076669328, - "cc:pop:women": 3413.0829262327384, - "cc:pop:women-fiften-to-forty-nine": 1627.3469830899337, - "cc:pop:wp-total": 6862.19121680614, - "cc:pop:wp-total-UN": 7958.813084134591, - "cc:id": "408", - "cc:Name": "Mokanji CHC", - "cc:site": [-12.1913, 7.9032], - "user:parentName": "Lower Banta", - "user:code": "OU_247015", - "user:orgUnitId": "cNAp6CJeLxk", - "user:level": "4", - "user:parentId": "W5fN3G6y1VI" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.507264, 8.042456], - [-12.503358, 8.03569], - [-12.49875, 8.035689], - [-12.498749, 8.035417], - [-12.498296, 8.035032], - [-12.499453, 8.033027], - [-12.495548, 8.026261], - [-12.498708, 8.020787], - [-12.495417, 8.017083], - [-12.497082, 8.014584], - [-12.500416, 8.012916], - [-12.500416, 8.012084], - [-12.48875, 8.004583], - [-12.48875, 8.003749], - [-12.492916, 7.999584], - [-12.500416, 7.997916], - [-12.500417, 7.98665], - [-12.500644, 7.986478], - [-12.495416, 7.98125], - [-12.487917, 7.98125], - [-12.484582, 7.982083], - [-12.482082, 7.97875], - [-12.480416, 7.978749], - [-12.476249, 7.97375], - [-12.474582, 7.973749], - [-12.472363, 7.97153], - [-12.472363, 7.971529], - [-12.474545, 7.969981], - [-12.47375, 7.969583], - [-12.473749, 7.96875], - [-12.472916, 7.968749], - [-12.470417, 7.965417], - [-12.469583, 7.959584], - [-12.473829, 7.951798], - [-12.474368, 7.95194], - [-12.474687, 7.952005], - [-12.474715, 7.952009], - [-12.474762, 7.952017], - [-12.475416, 7.94875], - [-12.472916, 7.948749], - [-12.465034, 7.944451], - [-12.464888, 7.947191], - [-12.464626, 7.947758], - [-12.464337, 7.948629], - [-12.464738, 7.948642], - [-12.465357, 7.948387], - [-12.465797, 7.948617], - [-12.466167, 7.948812], - [-12.46569, 7.948933], - [-12.46533, 7.949004], - [-12.465126, 7.949069], - [-12.464957, 7.949107], - [-12.464179, 7.949102], - [-12.462397, 7.953133], - [-12.461822, 7.954371], - [-12.460417, 7.94875], - [-12.460416, 7.947916], - [-12.459582, 7.94375], - [-12.457082, 7.942916], - [-12.455417, 7.940417], - [-12.452916, 7.947083], - [-12.44625, 7.94625], - [-12.444582, 7.948749], - [-12.43625, 7.947084], - [-12.435416, 7.94625], - [-12.432917, 7.94625], - [-12.428751, 7.949582], - [-12.42875, 7.949581], - [-12.428749, 7.947917], - [-12.426249, 7.945417], - [-12.419583, 7.942916], - [-12.417916, 7.937084], - [-12.41625, 7.937084], - [-12.413749, 7.938749], - [-12.409583, 7.938749], - [-12.407916, 7.937084], - [-12.407082, 7.937083], - [-12.40375, 7.935417], - [-12.402916, 7.940416], - [-12.397745, 7.939769], - [-12.399878, 7.935417], - [-12.387083, 7.935417], - [-12.387082, 7.935987], - [-12.383136, 7.935988], - [-12.382916, 7.937084], - [-12.379582, 7.941249], - [-12.36961, 7.941963], - [-12.370066, 7.942754], - [-12.368766, 7.945004], - [-12.367083, 7.944584], - [-12.36125, 7.954583], - [-12.369582, 7.962916], - [-12.367083, 7.966249], - [-12.364583, 7.967084], - [-12.364583, 7.972083], - [-12.365416, 7.974584], - [-12.361249, 7.977916], - [-12.35375, 7.979584], - [-12.356249, 7.984583], - [-12.356249, 7.986249], - [-12.349583, 7.982917], - [-12.349583, 7.987916], - [-12.350416, 7.990416], - [-12.34375, 7.990417], - [-12.344583, 7.992916], - [-12.348748, 7.997082], - [-12.348748, 7.997083], - [-12.334583, 7.997084], - [-12.334583, 8.000603], - [-12.3363, 8.001], - [-12.343799, 8.0046], - [-12.347199, 8.008], - [-12.3487, 8.0109], - [-12.351899, 8.013899], - [-12.353399, 8.014699], - [-12.3588, 8.0161], - [-12.364199, 8.018299], - [-12.368099, 8.018799], - [-12.386, 8.0187], - [-12.389, 8.0188], - [-12.392599, 8.019599], - [-12.400999, 8.023699], - [-12.406099, 8.027599], - [-12.409299, 8.029399], - [-12.415199, 8.030899], - [-12.4201, 8.033], - [-12.4245, 8.033799], - [-12.460499, 8.0338], - [-12.4644, 8.037399], - [-12.4689, 8.0339], - [-12.4728, 8.0355], - [-12.4768, 8.0387], - [-12.481799, 8.043699], - [-12.483999, 8.045699], - [-12.487699, 8.047999], - [-12.492999, 8.048699], - [-12.503722, 8.048591], - [-12.507264, 8.042456] - ] - ], - "type": "Polygon" - }, - "id": 409, - "properties": { - "cc:admin:id": ["1"], - "cc:oBld:total": 73, - "cc:pop:fifteen-to-twenty-four": 853.0670419294031, - "cc:pop:grid3-total": 4762.986370455327, - "cc:pop:kontur-total": 4964.9510693303955, - "cc:pop:men": 2127.701696915423, - "cc:pop:sixty-plus": 284.28364740873604, - "cc:pop:total": 4595.140124222604, - "cc:pop:under-five": 813.8022022963157, - "cc:pop:women": 2467.438427307181, - "cc:pop:women-fiften-to-forty-nine": 1142.848392675649, - "cc:pop:wp-total": 3942.3430177450377, - "cc:pop:wp-total-UN": 4565.105979507235, - "cc:id": "409", - "cc:Name": "Mokassie MCHP", - "cc:site": [-12.4112, 8.0022], - "user:parentName": "Bagruwa", - "user:code": "OU_247052", - "user:orgUnitId": "kd2Aqw5S07V", - "user:level": "4", - "user:parentId": "jPidqyo7cpF" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.438999, 8.2729], - [-12.4362, 8.2706], - [-12.4339, 8.2679], - [-12.431999, 8.264099], - [-12.427199, 8.257], - [-12.423099, 8.256499], - [-12.4181, 8.2553], - [-12.412099, 8.2568], - [-12.4082, 8.256999], - [-12.4048, 8.2567], - [-12.402599, 8.255999], - [-12.398899, 8.254299], - [-12.393, 8.2528], - [-12.3875, 8.2506], - [-12.3863, 8.250367], - [-12.384583, 8.252084], - [-12.384582, 8.25375], - [-12.377916, 8.259583], - [-12.370417, 8.259584], - [-12.363749, 8.262916], - [-12.355417, 8.262917], - [-12.352916, 8.27125], - [-12.34375, 8.272083], - [-12.339088, 8.261985], - [-12.338682, 8.261985], - [-12.334776, 8.26875], - [-12.330229, 8.268749], - [-12.330222, 8.268456], - [-12.325417, 8.267083], - [-12.319582, 8.262917], - [-12.315417, 8.264584], - [-12.315416, 8.267083], - [-12.307917, 8.267084], - [-12.30625, 8.269583], - [-12.30375, 8.270417], - [-12.302916, 8.274583], - [-12.29875, 8.274583], - [-12.294583, 8.272917], - [-12.290417, 8.279583], - [-12.287917, 8.280416], - [-12.284582, 8.277084], - [-12.27625, 8.277916], - [-12.276249, 8.270417], - [-12.270417, 8.270417], - [-12.265766, 8.272741], - [-12.265485, 8.273155], - [-12.267082, 8.27875], - [-12.266249, 8.280417], - [-12.26125, 8.285417], - [-12.261249, 8.287084], - [-12.257083, 8.29125], - [-12.257082, 8.294583], - [-12.252083, 8.292084], - [-12.24875, 8.294583], - [-12.247248, 8.29158], - [-12.245652, 8.298644], - [-12.244678, 8.303202], - [-12.244224, 8.304604], - [-12.230417, 8.305417], - [-12.232082, 8.315416], - [-12.224583, 8.315417], - [-12.225869, 8.319919], - [-12.225173, 8.320314], - [-12.224583, 8.322083], - [-12.22625, 8.324583], - [-12.227916, 8.325417], - [-12.22625, 8.330417], - [-12.227082, 8.33375], - [-12.2257, 8.337899], - [-12.2321, 8.3413], - [-12.2414, 8.3475], - [-12.246699, 8.350199], - [-12.250399, 8.351599], - [-12.2547, 8.3522], - [-12.260599, 8.352499], - [-12.264999, 8.3523], - [-12.2679, 8.351799], - [-12.271799, 8.3502], - [-12.276199, 8.3467], - [-12.278799, 8.3436], - [-12.282099, 8.3384], - [-12.283999, 8.3362], - [-12.2863, 8.334299], - [-12.290299, 8.3321], - [-12.293699, 8.3306], - [-12.2966, 8.329899], - [-12.2997, 8.3296], - [-12.307299, 8.329799], - [-12.3115, 8.3307], - [-12.319399, 8.334099], - [-12.338699, 8.343999], - [-12.346399, 8.347399], - [-12.3506, 8.3483], - [-12.356399, 8.3483], - [-12.360499, 8.3475], - [-12.367099, 8.3445], - [-12.3718, 8.341199], - [-12.3773, 8.335899], - [-12.386999, 8.3259], - [-12.3899, 8.322399], - [-12.3943, 8.316599], - [-12.404399, 8.3079], - [-12.4087, 8.3051], - [-12.412099, 8.3044], - [-12.4158, 8.3054], - [-12.418299, 8.3077], - [-12.421299, 8.314099], - [-12.424, 8.317199], - [-12.426999, 8.318199], - [-12.430399, 8.316399], - [-12.4319, 8.312999], - [-12.432199, 8.3012], - [-12.4325, 8.298199], - [-12.4345, 8.290799], - [-12.4364, 8.281299], - [-12.438999, 8.2729] - ] - ], - "type": "Polygon" - }, - "id": 410, - "properties": { - "cc:admin:id": ["23"], - "cc:oBld:total": 52, - "cc:pop:fifteen-to-twenty-four": 1074.8783607758762, - "cc:pop:grid3-total": 4074.6237584895684, - "cc:pop:kontur-total": 6113.188968764823, - "cc:pop:men": 2875.0895323276964, - "cc:pop:sixty-plus": 462.34306107085024, - "cc:pop:total": 6077.211727869349, - "cc:pop:under-five": 986.9738879406583, - "cc:pop:women": 3202.1221955416513, - "cc:pop:women-fiften-to-forty-nine": 1564.1966140819634, - "cc:pop:wp-total": 5854.5583157541605, - "cc:pop:wp-total-UN": 6790.8897103371655, - "cc:id": "410", - "cc:Name": "Mokellay MCHP", - "cc:site": [-12.2935, 8.297], - "user:parentName": "Fakunya", - "user:code": "OU_247094", - "user:orgUnitId": "RxmgoSlw9YF", - "user:level": "4", - "user:parentId": "vULnao2hV5v" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.751645, 7.832939], - [-12.751612, 7.832762], - [-12.747599, 7.832899], - [-12.741899, 7.832199], - [-12.738799, 7.831099], - [-12.731899, 7.8266], - [-12.7271, 7.8255], - [-12.7129, 7.8249], - [-12.7097, 7.8241], - [-12.7051, 7.8225], - [-12.701, 7.8214], - [-12.697699, 7.8214], - [-12.693599, 7.8225], - [-12.6864, 7.8264], - [-12.683799, 7.8293], - [-12.6787, 7.839399], - [-12.676799, 7.8416], - [-12.674699, 7.8435], - [-12.6642, 7.848799], - [-12.661699, 7.8507], - [-12.658399, 7.8545], - [-12.6546, 7.861799], - [-12.652899, 7.8659], - [-12.6486, 7.874099], - [-12.6468, 7.876499], - [-12.642099, 7.880099], - [-12.6364, 7.8817], - [-12.6323, 7.8848], - [-12.628199, 7.8925], - [-12.625, 7.900099], - [-12.622599, 7.9071], - [-12.618999, 7.910199], - [-12.6125, 7.912399], - [-12.6082, 7.9145], - [-12.607399, 7.919099], - [-12.604, 7.923899], - [-12.6024, 7.927099], - [-12.601099, 7.9321], - [-12.5974, 7.940299], - [-12.5952, 7.9447], - [-12.5945, 7.9489], - [-12.5945, 7.957899], - [-12.595299, 7.962199], - [-12.5992, 7.970201], - [-12.6017, 7.9745], - [-12.605299, 7.981799], - [-12.606, 7.9854], - [-12.6067, 7.995799], - [-12.613399, 7.997199], - [-12.617999, 7.999199], - [-12.621333, 8.000081], - [-12.622961, 7.99925], - [-12.623763, 7.999303], - [-12.624755, 7.999088], - [-12.624878, 7.999078], - [-12.625918, 8.000197], - [-12.626343, 8.000219], - [-12.627849, 7.999705], - [-12.629521, 7.999557], - [-12.631354, 7.998941], - [-12.63205, 7.998067], - [-12.632082, 7.998057], - [-12.632083, 7.996249], - [-12.638749, 7.994583], - [-12.640416, 7.992084], - [-12.642698, 7.992083], - [-12.642807, 7.991548], - [-12.643483, 7.985432], - [-12.644853, 7.982271], - [-12.646509, 7.981718], - [-12.646399, 7.981593], - [-12.646399, 7.981592], - [-12.655416, 7.977084], - [-12.657916, 7.979584], - [-12.657917, 7.982916], - [-12.661249, 7.982916], - [-12.66125, 7.97625], - [-12.663749, 7.973749], - [-12.66375, 7.970417], - [-12.66455, 7.969215], - [-12.663323, 7.969192], - [-12.662916, 7.968743], - [-12.662917, 7.962917], - [-12.674582, 7.957084], - [-12.677916, 7.957083], - [-12.677451, 7.94917], - [-12.682644, 7.94917], - [-12.68655, 7.955935], - [-12.688167, 7.955935], - [-12.691249, 7.952083], - [-12.692081, 7.947095], - [-12.692083, 7.947096], - [-12.692083, 7.949583], - [-12.695417, 7.953749], - [-12.700416, 7.955416], - [-12.702683, 7.953149], - [-12.702606, 7.953077], - [-12.707916, 7.946249], - [-12.707083, 7.942084], - [-12.709582, 7.93875], - [-12.711249, 7.938749], - [-12.71125, 7.937083], - [-12.714582, 7.93375], - [-12.717916, 7.934583], - [-12.718749, 7.929584], - [-12.71913, 7.929201], - [-12.719112, 7.929174], - [-12.71924, 7.927084], - [-12.72125, 7.927083], - [-12.724684, 7.924411], - [-12.724739, 7.922961], - [-12.726364, 7.923104], - [-12.728749, 7.921249], - [-12.72875, 7.920416], - [-12.731561, 7.919361], - [-12.72989, 7.918346], - [-12.729335, 7.918175], - [-12.728437, 7.918385], - [-12.725891, 7.915415], - [-12.72902, 7.909993], - [-12.725115, 7.903229], - [-12.726863, 7.900198], - [-12.726249, 7.899584], - [-12.725417, 7.899583], - [-12.725416, 7.898849], - [-12.721988, 7.898848], - [-12.718083, 7.892084], - [-12.721096, 7.886862], - [-12.71375, 7.886249], - [-12.717416, 7.876716], - [-12.717479, 7.876728], - [-12.719582, 7.870417], - [-12.720416, 7.869583], - [-12.720417, 7.86875], - [-12.723749, 7.867083], - [-12.724583, 7.862084], - [-12.725416, 7.861249], - [-12.725417, 7.852084], - [-12.732917, 7.84375], - [-12.73455, 7.843749], - [-12.734999, 7.842973], - [-12.742811, 7.842972], - [-12.746268, 7.836986], - [-12.746872, 7.836329], - [-12.74688, 7.835042], - [-12.749521, 7.83428], - [-12.749845, 7.83385], - [-12.750991, 7.833567], - [-12.751645, 7.832939] - ] - ], - "type": "Polygon" - }, - "id": 411, - "properties": { - "cc:admin:id": ["51"], - "cc:oBld:total": 54, - "cc:pop:fifteen-to-twenty-four": 1038.4545600639667, - "cc:pop:grid3-total": 3172.1198660650193, - "cc:pop:kontur-total": 5412.051133500226, - "cc:pop:men": 2561.8717666143616, - "cc:pop:sixty-plus": 316.898597579879, - "cc:pop:total": 5492.700926405039, - "cc:pop:under-five": 964.9083739962441, - "cc:pop:women": 2930.829159790682, - "cc:pop:women-fiften-to-forty-nine": 1256.1287567383567, - "cc:pop:wp-total": 3976.254548298547, - "cc:pop:wp-total-UN": 4614.692621414966, - "cc:id": "411", - "cc:Name": "Mokobo MCHP", - "cc:site": [-12.6452, 7.9544], - "user:parentName": "Kargboro", - "user:code": "OU_247075", - "user:orgUnitId": "SC0nM3cbGHy", - "user:level": "4", - "user:parentId": "Z9QaI6sxTwW" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.821265, 7.921234], - [-12.821073, 7.921125], - [-12.817953, 7.920121], - [-12.814858, 7.918752], - [-12.812769, 7.917723], - [-12.810695, 7.917736], - [-12.809003, 7.918529], - [-12.807417, 7.92022], - [-12.806517, 7.921543], - [-12.805354, 7.923446], - [-12.803134, 7.924451], - [-12.798217, 7.925825], - [-12.789864, 7.928309], - [-12.786269, 7.93016], - [-12.78508, 7.931249], - [-12.77625, 7.931249], - [-12.77375, 7.929584], - [-12.773749, 7.927917], - [-12.769583, 7.931249], - [-12.765924, 7.931249], - [-12.763471, 7.927004], - [-12.760454, 7.927003], - [-12.759682, 7.925271], - [-12.758158, 7.923719], - [-12.758083, 7.92218], - [-12.756593, 7.921022], - [-12.756464, 7.921011], - [-12.757916, 7.91375], - [-12.756744, 7.91375], - [-12.756807, 7.914911], - [-12.756265, 7.915208], - [-12.755809, 7.914349], - [-12.755046, 7.91375], - [-12.747917, 7.91375], - [-12.747696, 7.914188], - [-12.744781, 7.912828], - [-12.744662, 7.910637], - [-12.740714, 7.910633], - [-12.73856, 7.911777], - [-12.735108, 7.911958], - [-12.734582, 7.914582], - [-12.730649, 7.909994], - [-12.729021, 7.909994], - [-12.725891, 7.915414], - [-12.728438, 7.918385], - [-12.729335, 7.918175], - [-12.72989, 7.918346], - [-12.731561, 7.919361], - [-12.73156, 7.919363], - [-12.72875, 7.920417], - [-12.72875, 7.921249], - [-12.736249, 7.922917], - [-12.739582, 7.927916], - [-12.739582, 7.928249], - [-12.738633, 7.928159], - [-12.739583, 7.929584], - [-12.739582, 7.939583], - [-12.73625, 7.943749], - [-12.735257, 7.944081], - [-12.735371, 7.944949], - [-12.735027, 7.948324], - [-12.734536, 7.950985], - [-12.736561, 7.951166], - [-12.73716, 7.949409], - [-12.737916, 7.950417], - [-12.732917, 7.965416], - [-12.729583, 7.96625], - [-12.727917, 7.967917], - [-12.727082, 7.979583], - [-12.719583, 7.98125], - [-12.71625, 7.985417], - [-12.715417, 7.989583], - [-12.717082, 7.997084], - [-12.71625, 7.999584], - [-12.716249, 8.009583], - [-12.714632, 8.011201], - [-12.7361, 8.0113], - [-12.7401, 8.0119], - [-12.745499, 8.014099], - [-12.752199, 8.015899], - [-12.7557, 8.0175], - [-12.759599, 8.018499], - [-12.7616, 8.018599], - [-12.779099, 8.018599], - [-12.7831, 8.0189], - [-12.786799, 8.019899], - [-12.790399, 8.021899], - [-12.793599, 8.022999], - [-12.797743, 8.025601], - [-12.797006, 8.024028], - [-12.794866, 8.021361], - [-12.794339, 8.020296], - [-12.793989, 8.018819], - [-12.792565, 8.015748], - [-12.793265, 8.010463], - [-12.792847, 8.007419], - [-12.79224, 8.006816], - [-12.791723, 8.005786], - [-12.79136, 8.003248], - [-12.791361, 8.003247], - [-12.792664, 8.00371], - [-12.79375, 8.002084], - [-12.796249, 8.002083], - [-12.79625, 7.999583], - [-12.797916, 7.99375], - [-12.798749, 7.992916], - [-12.799582, 7.990417], - [-12.802082, 7.990416], - [-12.80125, 7.975417], - [-12.800417, 7.972084], - [-12.80135, 7.971459], - [-12.8008, 7.970574], - [-12.801446, 7.970321], - [-12.801674, 7.971244], - [-12.805416, 7.968749], - [-12.804583, 7.958751], - [-12.804584, 7.958751], - [-12.80875, 7.961249], - [-12.812082, 7.961249], - [-12.815416, 7.954583], - [-12.814583, 7.95125], - [-12.814583, 7.950345], - [-12.815121, 7.950041], - [-12.814357, 7.947976], - [-12.814115, 7.944884], - [-12.813215, 7.944106], - [-12.811421, 7.941263], - [-12.813508, 7.93741], - [-12.81363, 7.937442], - [-12.812917, 7.929584], - [-12.813312, 7.929088], - [-12.810203, 7.929087], - [-12.807362, 7.924165], - [-12.807993, 7.923715], - [-12.808913, 7.922498], - [-12.810158, 7.920061], - [-12.811323, 7.919791], - [-12.814436, 7.921713], - [-12.816873, 7.922768], - [-12.820066, 7.924256], - [-12.820416, 7.924445], - [-12.820417, 7.922084], - [-12.821265, 7.921234] - ] - ], - "type": "Polygon" - }, - "id": 412, - "properties": { - "cc:admin:id": ["51"], - "cc:oBld:total": 12, - "cc:pop:fifteen-to-twenty-four": 892.8450707495813, - "cc:pop:grid3-total": 2069.5279699242997, - "cc:pop:kontur-total": 4809.19979855616, - "cc:pop:men": 2247.993020295065, - "cc:pop:sixty-plus": 279.67496794428, - "cc:pop:total": 4783.969584487105, - "cc:pop:under-five": 807.9939091989797, - "cc:pop:women": 2535.9765641920394, - "cc:pop:women-fiften-to-forty-nine": 1127.5913738227696, - "cc:pop:wp-total": 3915.423458123729, - "cc:pop:wp-total-UN": 4545.4879042301, - "cc:id": "412", - "cc:Name": "Mokongbetty MCHP", - "cc:site": [-12.7681, 8.0006], - "user:parentName": "Kargboro", - "user:code": "OU_247078", - "user:orgUnitId": "BedE3DKQDFf", - "user:level": "4", - "user:parentId": "Z9QaI6sxTwW" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.993999, 8.237], - [-12.9907, 8.2368], - [-12.9901, 8.237099], - [-12.989299, 8.2357], - [-12.9879, 8.2346], - [-12.9876, 8.231], - [-12.9871, 8.229899], - [-12.987099, 8.2274], - [-12.986, 8.225399], - [-12.986, 8.2232], - [-12.986799, 8.2215], - [-12.9863, 8.221199], - [-12.9865, 8.219599], - [-12.987599, 8.2174], - [-12.989899, 8.217399], - [-12.990999, 8.215999], - [-12.992099, 8.2129], - [-12.992899, 8.211799], - [-12.992899, 8.2088], - [-12.991, 8.2065], - [-12.989599, 8.204], - [-12.9846, 8.1993], - [-12.984299, 8.1982], - [-12.9835, 8.197899], - [-12.983499, 8.1968], - [-12.9807, 8.195099], - [-12.978199, 8.1921], - [-12.976199, 8.191299], - [-12.975399, 8.1899], - [-12.974299, 8.188999], - [-12.9693, 8.1838], - [-12.9685, 8.183499], - [-12.967899, 8.182099], - [-12.9649, 8.179599], - [-12.964, 8.1782], - [-12.963999, 8.1771], - [-12.9632, 8.1763], - [-12.961299, 8.175999], - [-12.959599, 8.1729], - [-12.9587, 8.172599], - [-12.958499, 8.1715], - [-12.956799, 8.170399], - [-12.956, 8.169], - [-12.955999, 8.1679], - [-12.954, 8.166499], - [-12.953499, 8.1635], - [-12.952599, 8.163199], - [-12.950999, 8.1615], - [-12.948499, 8.160699], - [-12.9446, 8.1565], - [-12.943499, 8.156299], - [-12.942399, 8.155099], - [-12.940099, 8.151], - [-12.939299, 8.150699], - [-12.9379, 8.1476], - [-12.937399, 8.147599], - [-12.936299, 8.1451], - [-12.935699, 8.145099], - [-12.935099, 8.1429], - [-12.934, 8.1424], - [-12.933999, 8.1412], - [-12.9329, 8.140699], - [-12.9324, 8.1396], - [-12.9321, 8.1374], - [-12.932899, 8.1357], - [-12.9315, 8.135399], - [-12.930999, 8.1346], - [-12.929, 8.1332], - [-12.928999, 8.132599], - [-12.9268, 8.1293], - [-12.926799, 8.127599], - [-12.926299, 8.1251], - [-12.9251, 8.124599], - [-12.925399, 8.1229], - [-12.9238, 8.121799], - [-12.923199, 8.119], - [-12.9221, 8.117599], - [-12.921499, 8.1157], - [-12.9207, 8.114899], - [-12.921, 8.1118], - [-12.921799, 8.1107], - [-12.920099, 8.1085], - [-12.918999, 8.108199], - [-12.918199, 8.1068], - [-12.915999, 8.106199], - [-12.914599, 8.104599], - [-12.911, 8.100999], - [-12.911, 8.0979], - [-12.913499, 8.095399], - [-12.913199, 8.0935], - [-12.9124, 8.092899], - [-12.912099, 8.0915], - [-12.9104, 8.0913], - [-12.909599, 8.092399], - [-12.9071, 8.0921], - [-12.906799, 8.0926], - [-12.9026, 8.093999], - [-12.902099, 8.0926], - [-12.901, 8.091499], - [-12.899599, 8.0887], - [-12.8987, 8.0882], - [-12.899599, 8.0868], - [-12.8979, 8.0857], - [-12.897899, 8.0829], - [-12.896199, 8.081], - [-12.890199, 8.087499], - [-12.8809, 8.0913], - [-12.879899, 8.0942], - [-12.878, 8.097499], - [-12.875099, 8.099999], - [-12.872899, 8.1007], - [-12.8697, 8.100799], - [-12.8641, 8.0987], - [-12.862599, 8.1038], - [-12.8611, 8.111599], - [-12.8606, 8.117799], - [-12.8598, 8.121599], - [-12.858599, 8.124499], - [-12.855999, 8.127599], - [-12.852799, 8.129599], - [-12.844299, 8.1317], - [-12.840999, 8.1331], - [-12.836999, 8.1352], - [-12.8347, 8.137299], - [-12.832999, 8.1395], - [-12.8305, 8.144299], - [-12.829571, 8.147133], - [-12.830485, 8.146685], - [-12.831525, 8.145274], - [-12.83194, 8.144393], - [-12.836008, 8.143884], - [-12.835921, 8.145168], - [-12.834368, 8.145676], - [-12.833717, 8.146703], - [-12.834357, 8.147736], - [-12.836035, 8.148003], - [-12.836936, 8.148908], - [-12.838485, 8.149174], - [-12.839782, 8.148152], - [-12.839784, 8.148153], - [-12.840294, 8.149314], - [-12.838478, 8.150463], - [-12.836406, 8.151354], - [-12.836283, 8.15294], - [-12.835488, 8.153926], - [-12.83587, 8.154828], - [-12.836898, 8.155864], - [-12.83714, 8.156767], - [-12.836501, 8.157192], - [-12.835859, 8.156762], - [-12.835403, 8.156683], - [-12.83375, 8.158749], - [-12.837083, 8.161249], - [-12.839582, 8.162084], - [-12.839583, 8.167083], - [-12.842916, 8.16875], - [-12.842917, 8.172916], - [-12.84375, 8.172917], - [-12.844583, 8.176249], - [-12.846249, 8.177084], - [-12.847083, 8.179583], - [-12.851249, 8.17875], - [-12.852917, 8.182083], - [-12.857916, 8.182084], - [-12.85625, 8.187083], - [-12.857916, 8.190417], - [-12.85375, 8.194584], - [-12.85375, 8.196249], - [-12.855417, 8.198749], - [-12.862917, 8.202083], - [-12.86875, 8.200417], - [-12.876249, 8.202084], - [-12.8781, 8.204551], - [-12.878194, 8.205572], - [-12.878118, 8.209928], - [-12.879583, 8.210417], - [-12.88375, 8.215416], - [-12.885416, 8.215417], - [-12.88625, 8.220416], - [-12.893749, 8.224584], - [-12.895416, 8.231249], - [-12.891857, 8.235995], - [-12.892888, 8.236176], - [-12.89356, 8.236458], - [-12.895012, 8.237355], - [-12.896017, 8.238435], - [-12.89679, 8.239016], - [-12.898613, 8.2397], - [-12.899033, 8.240426], - [-12.902082, 8.240427], - [-12.902083, 8.250416], - [-12.904789, 8.250417], - [-12.905172, 8.251289], - [-12.905166, 8.252594], - [-12.907338, 8.252595], - [-12.911243, 8.259359], - [-12.907338, 8.266126], - [-12.909983, 8.270707], - [-12.9112, 8.269799], - [-12.9151, 8.267499], - [-12.9196, 8.266099], - [-12.9319, 8.263399], - [-12.9357, 8.261799], - [-12.943, 8.2569], - [-12.948299, 8.2576], - [-12.9528, 8.261199], - [-12.957399, 8.262699], - [-12.961, 8.262499], - [-12.9651, 8.260699], - [-12.9703, 8.257899], - [-12.9746, 8.254399], - [-12.9782, 8.250199], - [-12.9816, 8.244999], - [-12.985699, 8.2411], - [-12.990899, 8.2382], - [-12.993999, 8.237] - ] - ], - "type": "Polygon" - }, - "id": 413, - "properties": { - "cc:admin:id": ["111"], - "cc:oBld:total": 237, - "cc:pop:fifteen-to-twenty-four": 1587.0274169889453, - "cc:pop:grid3-total": 9904.322603989613, - "cc:pop:kontur-total": 8921.981474152371, - "cc:pop:men": 4377.311173994344, - "cc:pop:sixty-plus": 580.5631962029934, - "cc:pop:total": 9250.830136259272, - "cc:pop:under-five": 1584.0396076287898, - "cc:pop:women": 4873.518962264929, - "cc:pop:women-fiften-to-forty-nine": 2212.5542712481442, - "cc:pop:wp-total": 7867.407125579509, - "cc:pop:wp-total-UN": 9116.099854410171, - "cc:id": "413", - "cc:Name": "Mokorbu MCHP", - "cc:site": [-12.9307, 8.1926], - "user:parentName": "Ribbi", - "user:code": "OU_247040", - "user:orgUnitId": "cHqboEGRUiY", - "user:level": "4", - "user:parentId": "gy8rmvYT4cj" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.350728, 8.193114], - [-12.3499, 8.1898], - [-12.3498, 8.1868], - [-12.3497, 8.1608], - [-12.3496, 8.1569], - [-12.3489, 8.1536], - [-12.347799, 8.151499], - [-12.3453, 8.1486], - [-12.3424, 8.1464], - [-12.338599, 8.144499], - [-12.3344, 8.1427], - [-12.330299, 8.141799], - [-12.3197, 8.1417], - [-12.315999, 8.140899], - [-12.312099, 8.138299], - [-12.309499, 8.135099], - [-12.306299, 8.129299], - [-12.3039, 8.1265], - [-12.3018, 8.1247], - [-12.2997, 8.1237], - [-12.297499, 8.123199], - [-12.2904, 8.1223], - [-12.284399, 8.1199], - [-12.2811, 8.1198], - [-12.2787, 8.1209], - [-12.2769, 8.123399], - [-12.275199, 8.125099], - [-12.2722, 8.126499], - [-12.268699, 8.126899], - [-12.265099, 8.126699], - [-12.261799, 8.125499], - [-12.2566, 8.1228], - [-12.2546, 8.1214], - [-12.252899, 8.119599], - [-12.250499, 8.1154], - [-12.247699, 8.113], - [-12.244899, 8.112099], - [-12.2396, 8.1115], - [-12.2371, 8.111], - [-12.232499, 8.108999], - [-12.2271, 8.1078], - [-12.222099, 8.1109], - [-12.2146, 8.114499], - [-12.211299, 8.1154], - [-12.2041, 8.1163], - [-12.2009, 8.117899], - [-12.196, 8.121799], - [-12.1926, 8.1242], - [-12.1891, 8.1301], - [-12.1884, 8.1338], - [-12.188999, 8.137699], - [-12.1911, 8.1421], - [-12.1917, 8.1447], - [-12.192299, 8.151899], - [-12.192899, 8.155399], - [-12.194699, 8.159799], - [-12.195199, 8.1622], - [-12.194799, 8.1646], - [-12.1929, 8.168999], - [-12.1917, 8.173999], - [-12.1897, 8.1792], - [-12.1897, 8.182099], - [-12.191766, 8.187511], - [-12.198749, 8.185417], - [-12.199582, 8.185417], - [-12.201249, 8.192916], - [-12.199583, 8.196249], - [-12.204583, 8.196249], - [-12.21375, 8.195417], - [-12.217917, 8.19875], - [-12.219583, 8.209583], - [-12.224582, 8.212083], - [-12.225417, 8.213749], - [-12.232916, 8.217083], - [-12.238749, 8.217083], - [-12.24125, 8.214584], - [-12.243749, 8.21375], - [-12.24625, 8.220416], - [-12.247917, 8.220417], - [-12.250417, 8.222916], - [-12.256935, 8.221467], - [-12.256562, 8.219729], - [-12.259582, 8.217916], - [-12.263749, 8.212917], - [-12.272916, 8.217083], - [-12.273749, 8.217083], - [-12.27375, 8.208089], - [-12.277647, 8.207592], - [-12.278536, 8.207176], - [-12.278872, 8.207032], - [-12.279839, 8.206625], - [-12.285519, 8.206323], - [-12.28816, 8.20633], - [-12.289792, 8.207093], - [-12.293749, 8.209397], - [-12.29375, 8.20625], - [-12.300416, 8.205416], - [-12.30125, 8.20375], - [-12.304583, 8.205417], - [-12.322082, 8.205416], - [-12.326249, 8.202083], - [-12.326249, 8.200416], - [-12.322407, 8.192731], - [-12.323709, 8.192417], - [-12.324748, 8.191666], - [-12.32763, 8.191666], - [-12.331536, 8.198431], - [-12.336336, 8.198432], - [-12.336336, 8.198433], - [-12.335417, 8.199583], - [-12.335043, 8.199617], - [-12.335195, 8.19988], - [-12.337539, 8.199879], - [-12.337917, 8.198749], - [-12.342082, 8.195417], - [-12.345584, 8.195416], - [-12.346914, 8.193115], - [-12.350728, 8.193114] - ] - ], - "type": "Polygon" - }, - "id": 414, - "properties": { - "cc:admin:id": ["23"], - "cc:oBld:total": 12, - "cc:pop:fifteen-to-twenty-four": 781.3752713516125, - "cc:pop:grid3-total": 5592.066801316591, - "cc:pop:kontur-total": 4213.810155921514, - "cc:pop:men": 2081.8298641819742, - "cc:pop:sixty-plus": 345.870054183136, - "cc:pop:total": 4389.952667937957, - "cc:pop:under-five": 702.70583828131, - "cc:pop:women": 2308.1228037559813, - "cc:pop:women-fiften-to-forty-nine": 1138.2142791857716, - "cc:pop:wp-total": 4924.962825710028, - "cc:pop:wp-total-UN": 5709.022626748603, - "cc:id": "414", - "cc:Name": "Mokorewa MCHP", - "cc:site": [-12.2484, 8.1689], - "user:parentName": "Fakunya", - "user:code": "OU_247090", - "user:orgUnitId": "sAO5hEWo4z5", - "user:level": "4", - "user:parentId": "vULnao2hV5v" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - [-12.803799, 7.7891], - [-12.7993, 7.7876], - [-12.796499, 7.786299], - [-12.794, 7.7857], - [-12.793499, 7.785099], - [-12.7907, 7.784299], - [-12.7901, 7.7771], - [-12.7907, 7.776299], - [-12.7907, 7.7707], - [-12.7904, 7.770699], - [-12.790399, 7.7674], - [-12.788999, 7.7632], - [-12.7874, 7.7618], - [-12.786799, 7.760099], - [-12.785399, 7.7579], - [-12.783199, 7.7565], - [-12.7785, 7.756499], - [-12.7779, 7.7543], - [-12.7768, 7.7524], - [-12.774599, 7.7501], - [-12.7712, 7.7485], - [-12.770099, 7.748499], - [-12.7682, 7.747399], - [-12.766799, 7.7457], - [-12.763199, 7.744], - [-12.7596, 7.7443], - [-12.758799, 7.746499], - [-12.7568, 7.747599], - [-12.7549, 7.747099], - [-12.7546, 7.745399], - [-12.754599, 7.7424], - [-12.753199, 7.741799], - [-12.750399, 7.739899], - [-12.748499, 7.7362], - [-12.7443, 7.7324], - [-12.743999, 7.731], - [-12.7432, 7.730699], - [-12.742899, 7.7293], - [-12.742099, 7.728799], - [-12.739899, 7.7249], - [-12.738999, 7.724599], - [-12.737599, 7.7229], - [-12.7354, 7.7218], - [-12.735399, 7.7213], - [-12.7329, 7.720399], - [-12.730399, 7.7179], - [-12.7288, 7.717399], - [-12.727399, 7.7163], - [-12.725699, 7.717399], - [-12.724299, 7.7165], - [-12.7224, 7.716], - [-12.721499, 7.7149], - [-12.720699, 7.714899], - [-12.719599, 7.713199], - [-12.7165, 7.7104], - [-12.715999, 7.709], - [-12.715099, 7.708499], - [-12.714599, 7.7063], - [-12.713999, 7.705999], - [-12.713199, 7.704], - [-12.710699, 7.7015], - [-12.7085, 7.7013], - [-12.707599, 7.701799], - [-12.7046, 7.7018], - [-12.702899, 7.702599], - [-12.7018, 7.7026], - [-12.700999, 7.703499], - [-12.699599, 7.7035], - [-12.696, 7.704899], - [-12.694, 7.705999], - [-12.6929, 7.706], - [-12.6915, 7.706799], - [-12.6846, 7.7068], - [-12.683199, 7.7079], - [-12.6812, 7.708499], - [-12.6796, 7.708499], - [-12.679299, 7.7079], - [-12.677399, 7.707599], - [-12.676299, 7.7065], - [-12.6743, 7.706499], - [-12.671499, 7.705099], - [-12.667099, 7.703999], - [-12.6629, 7.7015], - [-12.662099, 7.7001], - [-12.659, 7.6999], - [-12.658199, 7.700699], - [-12.6568, 7.700699], - [-12.655699, 7.6985], - [-12.652099, 7.696799], - [-12.649299, 7.6963], - [-12.6454, 7.6963], - [-12.6432, 7.696], - [-12.6424, 7.696299], - [-12.641799, 7.6951], - [-12.638799, 7.694], - [-12.6354, 7.694], - [-12.633199, 7.6935], - [-12.6299, 7.6935], - [-12.629899, 7.6938], - [-12.625399, 7.693799], - [-12.6218, 7.6926], - [-12.621799, 7.6913], - [-12.6199, 7.6896], - [-12.619899, 7.688999], - [-12.617399, 7.6885], - [-12.614, 7.688499], - [-12.613999, 7.6882], - [-12.6107, 7.688199], - [-12.610699, 7.6879], - [-12.6076, 7.6876], - [-12.606799, 7.6871], - [-12.6026, 7.6868], - [-12.600999, 7.6863], - [-12.5962, 7.6863], - [-12.5937, 7.686499], - [-12.591299, 7.6849], - [-12.589, 7.6846], - [-12.5865, 7.6849], - [-12.5843, 7.686799], - [-12.5829, 7.6865], - [-12.5857, 7.6879], - [-12.590899, 7.691299], - [-12.595399, 7.694499], - [-12.597199, 7.697799], - [-12.599199, 7.699799], - [-12.5997, 7.7041], - [-12.603299, 7.711899], - [-12.606399, 7.717299], - [-12.6078, 7.7207], - [-12.610299, 7.7257], - [-12.610799, 7.731299], - [-12.610568, 7.733339], - [-12.612141, 7.733578], - [-12.613987, 7.734085], - [-12.616396, 7.73521], - [-12.617909, 7.735823], - [-12.620459, 7.735781], - [-12.622132, 7.735071], - [-12.622524, 7.734863], - [-12.622888, 7.735012], - [-12.623745, 7.735804], - [-12.624087, 7.73634], - [-12.624623, 7.738374], - [-12.625094, 7.738845], - [-12.626978, 7.739316], - [-12.627492, 7.739701], - [-12.627684, 7.740366], - [-12.627621, 7.741907], - [-12.627792, 7.742335], - [-12.628521, 7.74257], - [-12.629761, 7.742228], - [-12.630125, 7.741778], - [-12.630254, 7.741222], - [-12.629741, 7.739531], - [-12.629698, 7.738846], - [-12.630361, 7.737903], - [-12.631004, 7.737668], - [-12.631249, 7.737655], - [-12.63125, 7.739634], - [-12.631993, 7.739634], - [-12.632211, 7.739259], - [-12.632213, 7.739259], - [-12.632395, 7.742827], - [-12.632609, 7.743256], - [-12.633166, 7.743363], - [-12.63391, 7.742955], - [-12.634164, 7.743393], - [-12.634002, 7.743449], - [-12.633659, 7.743942], - [-12.63261, 7.746617], - [-12.632739, 7.747581], - [-12.633552, 7.747988], - [-12.634708, 7.747239], - [-12.635608, 7.746961], - [-12.635778, 7.747261], - [-12.635158, 7.748673], - [-12.636892, 7.751521], - [-12.636871, 7.752507], - [-12.637278, 7.754754], - [-12.638069, 7.754754], - [-12.640146, 7.752293], - [-12.639676, 7.751843], - [-12.638733, 7.751414], - [-12.63837, 7.750943], - [-12.638542, 7.750344], - [-12.638991, 7.75013], - [-12.639741, 7.750279], - [-12.64141, 7.750108], - [-12.642245, 7.749723], - [-12.644022, 7.74833], - [-12.64413, 7.747346], - [-12.644643, 7.747368], - [-12.645179, 7.747774], - [-12.646463, 7.748096], - [-12.64657, 7.748951], - [-12.646357, 7.749402], - [-12.64642, 7.749636], - [-12.647299, 7.750558], - [-12.647898, 7.750878], - [-12.648455, 7.750579], - [-12.648669, 7.750087], - [-12.648305, 7.7503], - [-12.647642, 7.750173], - [-12.646743, 7.749359], - [-12.647127, 7.748501], - [-12.647063, 7.74786], - [-12.646592, 7.747625], - [-12.645629, 7.747474], - [-12.6452, 7.747153], - [-12.644408, 7.747004], - [-12.643809, 7.747239], - [-12.643722, 7.747966], - [-12.643423, 7.748544], - [-12.642438, 7.749252], - [-12.641153, 7.749915], - [-12.639312, 7.749958], - [-12.63882, 7.74983], - [-12.638285, 7.750173], - [-12.637942, 7.750729], - [-12.63822, 7.751456], - [-12.639611, 7.752678], - [-12.638584, 7.753812], - [-12.637835, 7.754369], - [-12.637343, 7.754241], - [-12.637127, 7.751158], - [-12.635479, 7.748698], - [-12.635616, 7.748233], - [-12.636246, 7.747464], - [-12.6363, 7.746945], - [-12.636108, 7.746753], - [-12.635741, 7.746677], - [-12.635901, 7.746401], - [-12.643712, 7.746401], - [-12.644249, 7.745472], - [-12.646508, 7.745367], - [-12.646628, 7.746912], - [-12.64673, 7.747083], - [-12.648365, 7.747083], - [-12.648437, 7.746666], - [-12.647414, 7.745243], - [-12.648188, 7.745118], - [-12.649224, 7.74448], - [-12.649997, 7.74487], - [-12.650779, 7.743715], - [-12.653277, 7.742917], - [-12.653278, 7.742918], - [-12.65336, 7.74373], - [-12.651028, 7.745392], - [-12.651537, 7.746682], - [-12.655413, 7.74606], - [-12.656984, 7.742334], - [-12.658277, 7.741826], - [-12.658278, 7.741827], - [-12.657745, 7.744913], - [-12.658317, 7.744633], - [-12.659338, 7.7464], - [-12.664315, 7.746401], - [-12.664322, 7.746496], - [-12.666256, 7.746764], - [-12.66638, 7.747795], - [-12.664566, 7.749073], - [-12.666364, 7.750886], - [-12.669065, 7.752703], - [-12.670487, 7.75218], - [-12.671056, 7.753166], - [-12.671044, 7.753186], - [-12.670871, 7.753229], - [-12.670903, 7.753432], - [-12.667448, 7.759416], - [-12.668509, 7.760042], - [-12.671778, 7.761367], - [-12.668879, 7.766391], - [-12.671399, 7.770758], - [-12.677083, 7.767917], - [-12.679582, 7.767917], - [-12.681249, 7.769584], - [-12.682082, 7.775417], - [-12.679872, 7.787211], - [-12.678524, 7.788146], - [-12.68125, 7.792916], - [-12.687082, 7.792083], - [-12.689583, 7.790417], - [-12.698749, 7.790417], - [-12.698061, 7.798682], - [-12.69817, 7.798629], - [-12.698171, 7.79863], - [-12.697917, 7.800416], - [-12.694659, 7.803022], - [-12.695388, 7.803464], - [-12.695608, 7.803557], - [-12.69625, 7.802917], - [-12.701249, 7.802917], - [-12.70125, 7.807883], - [-12.702202, 7.809299], - [-12.702581, 7.810974], - [-12.70451, 7.812402], - [-12.704372, 7.813818], - [-12.703338, 7.814069], - [-12.70125, 7.813964], - [-12.701249, 7.814352], - [-12.701026, 7.814314], - [-12.70017, 7.814265], - [-12.699312, 7.814718], - [-12.698732, 7.815222], - [-12.697801, 7.816003], - [-12.697195, 7.816584], - [-12.69591, 7.816835], - [-12.694978, 7.816986], - [-12.694271, 7.817189], - [-12.694023, 7.817524], - [-12.696182, 7.817525], - [-12.696181, 7.817526], - [-12.695046, 7.817819], - [-12.694375, 7.818214], - [-12.693628, 7.818923], - [-12.69347, 7.819788], - [-12.693706, 7.820301], - [-12.69469, 7.821088], - [-12.695872, 7.821797], - [-12.695939, 7.821871], - [-12.6977, 7.8214], - [-12.700999, 7.8214], - [-12.7051, 7.8225], - [-12.7097, 7.8241], - [-12.712899, 7.824899], - [-12.7271, 7.8255], - [-12.731899, 7.8266], - [-12.738799, 7.831099], - [-12.7419, 7.8322], - [-12.747599, 7.832899], - [-12.753399, 7.8327], - [-12.764399, 7.831099], - [-12.769099, 7.8285], - [-12.772199, 7.8259], - [-12.7751, 7.822799], - [-12.7787, 7.818299], - [-12.786, 7.811199], - [-12.793099, 7.8031], - [-12.7967, 7.797699], - [-12.803799, 7.7891] - ] - ], - [ - [ - [-12.638499, 7.6585], - [-12.6354, 7.6576], - [-12.6343, 7.659], - [-12.6351, 7.661299], - [-12.6365, 7.660999], - [-12.638499, 7.659299], - [-12.638499, 7.6585] - ] - ], - [ - [ - [-12.650999, 7.6574], - [-12.6482, 7.6574], - [-12.647099, 7.6579], - [-12.6429, 7.6588], - [-12.639899, 7.660999], - [-12.6368, 7.6615], - [-12.6368, 7.662399], - [-12.645399, 7.662399], - [-12.647399, 7.661], - [-12.648799, 7.6593], - [-12.649299, 7.659299], - [-12.650999, 7.6574] - ] - ], - [ - [ - [-12.695999, 7.6746], - [-12.6926, 7.674299], - [-12.691299, 7.6726], - [-12.6874, 7.6724], - [-12.685399, 7.6732], - [-12.681199, 7.6743], - [-12.6768, 7.676499], - [-12.674899, 7.678499], - [-12.6738, 7.679], - [-12.6738, 7.680099], - [-12.677899, 7.680399], - [-12.6779, 7.6807], - [-12.683999, 7.6807], - [-12.6865, 7.6812], - [-12.691299, 7.681699], - [-12.693799, 7.681799], - [-12.694899, 7.6787], - [-12.695099, 7.6771], - [-12.695699, 7.677099], - [-12.695999, 7.6746] - ] - ] - ], - "type": "MultiPolygon" - }, - "id": 415, - "properties": { - "cc:admin:id": ["135"], - "cc:oBld:total": 0, - "cc:pop:fifteen-to-twenty-four": 950.5393494123598, - "cc:pop:grid3-total": 4777.0920959341065, - "cc:pop:kontur-total": 5525.454013637867, - "cc:pop:men": 2213.7055505109997, - "cc:pop:sixty-plus": 305.81588260120486, - "cc:pop:total": 4565.5383015294565, - "cc:pop:under-five": 797.4043110486972, - "cc:pop:women": 2351.8327510184567, - "cc:pop:women-fiften-to-forty-nine": 1112.220193649902, - "cc:pop:wp-total": 3286.5547976118783, - "cc:pop:wp-total-UN": 3808.1986094368117, - "cc:id": "415", - "cc:Name": "Mokpanabom MCHP", - "cc:site": [-12.7241, 7.7678], - "user:parentName": "Timidale", - "user:code": "OU_247048", - "user:orgUnitId": "qcYG2Id7GS8", - "user:level": "4", - "user:parentId": "AovmOHadayb" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.99476, 7.745796], - [-11.994541, 7.745417], - [-11.992916, 7.745416], - [-11.988749, 7.742083], - [-11.987916, 7.732916], - [-11.987083, 7.722917], - [-11.990417, 7.71875], - [-11.994319, 7.717969], - [-11.990855, 7.711968], - [-11.991813, 7.710307], - [-11.991054, 7.71023], - [-11.989295, 7.707183], - [-11.984583, 7.707182], - [-11.984582, 7.690417], - [-11.976326, 7.689729], - [-11.9743, 7.693236], - [-11.968995, 7.693236], - [-11.968995, 7.693235], - [-11.970871, 7.690888], - [-11.970599, 7.690417], - [-11.96375, 7.690416], - [-11.962775, 7.689442], - [-11.962883, 7.689291], - [-11.964771, 7.687798], - [-11.966098, 7.686514], - [-11.966678, 7.685796], - [-11.967378, 7.684454], - [-11.967651, 7.683679], - [-11.967864, 7.681754], - [-11.966579, 7.681855], - [-11.965732, 7.681267], - [-11.964559, 7.680859], - [-11.963219, 7.681105], - [-11.962751, 7.681007], - [-11.961685, 7.680374], - [-11.961525, 7.679819], - [-11.960455, 7.679164], - [-11.959772, 7.678993], - [-11.958178, 7.678122], - [-11.958178, 7.678121], - [-11.958426, 7.677896], - [-11.95764, 7.676535], - [-11.957172, 7.676635], - [-11.955579, 7.676476], - [-11.953917, 7.675852], - [-11.952416, 7.675068], - [-11.952134, 7.675567], - [-11.95204, 7.675592], - [-11.950417, 7.674376], - [-11.949848, 7.675204], - [-11.9473, 7.677828], - [-11.94721, 7.677929], - [-11.9472, 7.6782], - [-11.947299, 7.6865], - [-11.947, 7.689199], - [-11.946299, 7.6917], - [-11.9439, 7.696499], - [-11.942, 7.699899], - [-11.937699, 7.7053], - [-11.9357, 7.709599], - [-11.933699, 7.7131], - [-11.9319, 7.716999], - [-11.9299, 7.719899], - [-11.924899, 7.7252], - [-11.922699, 7.7281], - [-11.920299, 7.7326], - [-11.9182, 7.735399], - [-11.9145, 7.739399], - [-11.912, 7.742599], - [-11.908899, 7.7484], - [-11.9054, 7.751999], - [-11.901899, 7.754099], - [-11.8959, 7.755199], - [-11.8913, 7.7567], - [-11.886899, 7.766199], - [-11.8844, 7.768399], - [-11.883686, 7.768686], - [-11.885416, 7.770417], - [-11.887083, 7.774583], - [-11.893749, 7.777084], - [-11.896249, 7.779583], - [-11.896276, 7.779584], - [-11.89625, 7.77963], - [-11.89625, 7.781737], - [-11.899547, 7.787449], - [-11.898801, 7.788743], - [-11.905416, 7.787916], - [-11.905417, 7.782916], - [-11.90875, 7.77875], - [-11.910417, 7.777917], - [-11.919582, 7.778749], - [-11.922083, 7.77875], - [-11.924583, 7.780625], - [-11.924583, 7.780626], - [-11.924491, 7.780695], - [-11.927083, 7.784583], - [-11.936249, 7.783749], - [-11.938749, 7.780416], - [-11.937917, 7.769584], - [-11.940416, 7.76625], - [-11.955416, 7.76625], - [-11.957916, 7.769584], - [-11.958631, 7.77387], - [-11.963858, 7.77387], - [-11.967764, 7.767104], - [-11.966856, 7.765528], - [-11.971031, 7.766299], - [-11.972082, 7.766029], - [-11.972083, 7.76125], - [-11.977082, 7.75625], - [-11.980912, 7.756249], - [-11.983042, 7.752563], - [-11.990854, 7.752562], - [-11.99476, 7.745796] - ] - ], - "type": "Polygon" - }, - "id": 416, - "properties": { - "cc:admin:id": ["11"], - "cc:oBld:total": 4, - "cc:pop:fifteen-to-twenty-four": 778.1368645373294, - "cc:pop:grid3-total": 5249.981030721525, - "cc:pop:kontur-total": 4398.542353616622, - "cc:pop:men": 2010.2037227177943, - "cc:pop:sixty-plus": 325.8678541758856, - "cc:pop:total": 4214.393934802015, - "cc:pop:under-five": 650.4834466630797, - "cc:pop:women": 2204.1902120842196, - "cc:pop:women-fiften-to-forty-nine": 1019.4003991710075, - "cc:pop:wp-total": 3538.5810532659434, - "cc:pop:wp-total-UN": 4100.643125762625, - "cc:id": "416", - "cc:Name": "Mokpende MCHP", - "cc:site": [-11.9505, 7.712], - "user:parentName": "Bumpe Ngao", - "user:code": "OU_644", - "user:orgUnitId": "am6EFqHGKeU", - "user:level": "4", - "user:parentId": "BGGmAwx33dj" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.994499, 7.600399], - [-11.9903, 7.5911], - [-11.986799, 7.584499], - [-11.984599, 7.574199], - [-11.9811, 7.5607], - [-11.977299, 7.549599], - [-11.975199, 7.545899], - [-11.971599, 7.541699], - [-11.969399, 7.539899], - [-11.9658, 7.5379], - [-11.9629, 7.5371], - [-11.962083, 7.537021], - [-11.962082, 7.541249], - [-11.960417, 7.544583], - [-11.95625, 7.54375], - [-11.952083, 7.546249], - [-11.95125, 7.54625], - [-11.952916, 7.552083], - [-11.950417, 7.552084], - [-11.947083, 7.556249], - [-11.944582, 7.55375], - [-11.939583, 7.552917], - [-11.938753, 7.553331], - [-11.938699, 7.55327], - [-11.935417, 7.554583], - [-11.934582, 7.55375], - [-11.930417, 7.554583], - [-11.929582, 7.557084], - [-11.924583, 7.559584], - [-11.922916, 7.56375], - [-11.918749, 7.564583], - [-11.91125, 7.560417], - [-11.909583, 7.560417], - [-11.909582, 7.562084], - [-11.907083, 7.564583], - [-11.90375, 7.565417], - [-11.902916, 7.567916], - [-11.898749, 7.567917], - [-11.88875, 7.56875], - [-11.88875, 7.576249], - [-11.891249, 7.578749], - [-11.891249, 7.579583], - [-11.88875, 7.57875], - [-11.882082, 7.586249], - [-11.877917, 7.586249], - [-11.876249, 7.58375], - [-11.872083, 7.585417], - [-11.874582, 7.590416], - [-11.872083, 7.594583], - [-11.869582, 7.592084], - [-11.867916, 7.59125], - [-11.864582, 7.592916], - [-11.86125, 7.592084], - [-11.858749, 7.599583], - [-11.85375, 7.599584], - [-11.853749, 7.600417], - [-11.851249, 7.601249], - [-11.844582, 7.60125], - [-11.842083, 7.602084], - [-11.841249, 7.606249], - [-11.836249, 7.60625], - [-11.830417, 7.607916], - [-11.829654, 7.608678], - [-11.830296, 7.609229], - [-11.830418, 7.609341], - [-11.834582, 7.614186], - [-11.836119, 7.616362], - [-11.837454, 7.617107], - [-11.838163, 7.617277], - [-11.841249, 7.616833], - [-11.841249, 7.617917], - [-11.840563, 7.624102], - [-11.867199, 7.624299], - [-11.8713, 7.6251], - [-11.8771, 7.6274], - [-11.881399, 7.627999], - [-11.8862, 7.628099], - [-11.893499, 7.6279], - [-11.8979, 7.626999], - [-11.901999, 7.6249], - [-11.905199, 7.6236], - [-11.909399, 7.6212], - [-11.9126, 7.619799], - [-11.9169, 7.617399], - [-11.92, 7.616099], - [-11.924299, 7.6137], - [-11.9275, 7.612299], - [-11.931799, 7.61], - [-11.934999, 7.6086], - [-11.939199, 7.6062], - [-11.9424, 7.604899], - [-11.946699, 7.6025], - [-11.9499, 7.601099], - [-11.954099, 7.5987], - [-11.961299, 7.5961], - [-11.968599, 7.598699], - [-11.9721, 7.6007], - [-11.9755, 7.6017], - [-11.981, 7.601999], - [-11.986599, 7.6017], - [-11.994499, 7.600399] - ] - ], - "type": "Polygon" - }, - "id": 417, - "properties": { - "cc:admin:id": ["4"], - "cc:oBld:total": 7, - "cc:pop:fifteen-to-twenty-four": 2606.4951507173487, - "cc:pop:grid3-total": 5142.945725617078, - "cc:pop:kontur-total": 14771.854603591677, - "cc:pop:men": 7042.130839591438, - "cc:pop:sixty-plus": 1012.4178310071422, - "cc:pop:total": 14544.650442234928, - "cc:pop:under-five": 2446.9273005591735, - "cc:pop:women": 7502.519602643493, - "cc:pop:women-fiften-to-forty-nine": 3552.0942945182223, - "cc:pop:wp-total": 11589.088675114413, - "cc:pop:wp-total-UN": 13437.14600089609, - "cc:id": "417", - "cc:Name": "Momajo MCHP", - "cc:site": [-11.9379, 7.5753], - "user:parentName": "Bargbo", - "user:code": "OU_625", - "user:orgUnitId": "fA43H8Ds0Ja", - "user:level": "4", - "user:parentId": "zFDYIgyGmXG" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.833899, 8.299599], - [-11.832499, 8.296699], - [-11.829799, 8.293599], - [-11.8118, 8.2766], - [-11.806699, 8.271399], - [-11.804199, 8.268299], - [-11.8025, 8.2647], - [-11.802408, 8.2642], - [-11.797917, 8.262917], - [-11.795416, 8.273749], - [-11.78625, 8.269584], - [-11.787082, 8.267084], - [-11.77625, 8.268749], - [-11.774582, 8.26625], - [-11.76625, 8.264584], - [-11.763749, 8.269583], - [-11.755416, 8.269583], - [-11.75125, 8.26625], - [-11.750416, 8.26375], - [-11.74875, 8.262917], - [-11.743749, 8.267916], - [-11.734583, 8.267916], - [-11.730416, 8.26375], - [-11.726249, 8.263749], - [-11.716249, 8.252917], - [-11.712917, 8.252916], - [-11.712082, 8.24875], - [-11.709582, 8.24625], - [-11.707917, 8.246249], - [-11.707082, 8.245416], - [-11.706727, 8.244228], - [-11.706888, 8.243946], - [-11.706374, 8.243055], - [-11.704582, 8.237084], - [-11.697083, 8.241249], - [-11.69405, 8.24125], - [-11.694221, 8.241487], - [-11.694221, 8.241489], - [-11.69125, 8.242084], - [-11.690417, 8.246249], - [-11.68875, 8.247917], - [-11.688749, 8.250417], - [-11.682917, 8.252916], - [-11.68125, 8.252917], - [-11.680417, 8.258749], - [-11.68125, 8.25875], - [-11.682082, 8.265416], - [-11.679582, 8.265416], - [-11.676249, 8.262917], - [-11.67125, 8.265416], - [-11.680416, 8.269584], - [-11.678749, 8.27125], - [-11.669583, 8.272917], - [-11.669583, 8.274583], - [-11.672083, 8.27625], - [-11.673749, 8.28125], - [-11.671249, 8.283749], - [-11.667083, 8.282084], - [-11.662083, 8.287084], - [-11.662083, 8.287916], - [-11.669583, 8.28875], - [-11.670416, 8.292083], - [-11.670416, 8.294583], - [-11.667917, 8.297917], - [-11.672082, 8.304583], - [-11.671249, 8.308749], - [-11.65875, 8.312917], - [-11.657916, 8.315416], - [-11.652082, 8.315417], - [-11.64375, 8.31625], - [-11.640417, 8.320417], - [-11.640417, 8.325416], - [-11.642083, 8.32875], - [-11.644582, 8.335416], - [-11.646249, 8.337084], - [-11.646088, 8.339189], - [-11.648309, 8.33919], - [-11.647917, 8.339584], - [-11.647917, 8.347916], - [-11.653749, 8.347084], - [-11.658524, 8.345038], - [-11.656383, 8.348749], - [-11.659765, 8.354607], - [-11.667916, 8.35375], - [-11.667958, 8.353339], - [-11.675546, 8.353338], - [-11.678056, 8.348993], - [-11.68375, 8.350417], - [-11.687082, 8.350416], - [-11.68875, 8.349584], - [-11.698749, 8.349584], - [-11.699583, 8.352916], - [-11.70125, 8.352917], - [-11.706249, 8.356249], - [-11.70375, 8.362083], - [-11.707917, 8.366249], - [-11.70875, 8.366249], - [-11.717082, 8.36375], - [-11.722083, 8.368749], - [-11.725416, 8.369583], - [-11.727082, 8.370416], - [-11.724583, 8.381249], - [-11.729583, 8.38125], - [-11.730416, 8.38375], - [-11.727083, 8.389583], - [-11.733749, 8.395416], - [-11.73375, 8.397083], - [-11.734583, 8.397084], - [-11.73625, 8.409583], - [-11.739582, 8.409584], - [-11.740417, 8.411249], - [-11.746249, 8.413749], - [-11.749583, 8.409584], - [-11.752916, 8.411249], - [-11.754583, 8.413749], - [-11.757091, 8.415631], - [-11.7574, 8.415199], - [-11.759299, 8.4108], - [-11.762499, 8.4008], - [-11.764799, 8.3953], - [-11.7671, 8.391999], - [-11.770099, 8.389], - [-11.7749, 8.3864], - [-11.783899, 8.3846], - [-11.7885, 8.382899], - [-11.795199, 8.3811], - [-11.8028, 8.377699], - [-11.8113, 8.373099], - [-11.816599, 8.3686], - [-11.8211, 8.363399], - [-11.823, 8.360099], - [-11.826199, 8.351], - [-11.8204, 8.3437], - [-11.817899, 8.339699], - [-11.816, 8.3353], - [-11.8147, 8.3309], - [-11.8144, 8.327499], - [-11.8159, 8.3219], - [-11.8178, 8.318899], - [-11.8206, 8.316399], - [-11.8268, 8.312599], - [-11.831799, 8.307899], - [-11.833799, 8.303499], - [-11.833899, 8.299599] - ] - ], - "type": "Polygon" - }, - "id": 418, - "properties": { - "cc:admin:id": ["141"], - "cc:oBld:total": 0, - "cc:pop:fifteen-to-twenty-four": 1926.9302815437825, - "cc:pop:grid3-total": 7880.920438347356, - "cc:pop:kontur-total": 10514.62031098852, - "cc:pop:men": 5206.303993919756, - "cc:pop:sixty-plus": 815.5086752818731, - "cc:pop:total": 10633.604165806499, - "cc:pop:under-five": 1742.201307692304, - "cc:pop:women": 5427.300171886743, - "cc:pop:women-fiften-to-forty-nine": 2627.2927154521017, - "cc:pop:wp-total": 8754.420190942601, - "cc:pop:wp-total-UN": 10149.045051658279, - "cc:id": "418", - "cc:Name": "Mongere CHC", - "cc:site": [-11.7347, 8.3228], - "user:parentName": "Valunia", - "user:code": "OU_1122", - "user:orgUnitId": "PC3Ag91n82e", - "user:level": "4", - "user:parentId": "npWGUj37qDe" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.319595, 7.798232], - [-12.317562, 7.795599], - [-12.316889, 7.794421], - [-12.316168, 7.79125], - [-12.315417, 7.791249], - [-12.315218, 7.790972], - [-12.315249, 7.790947], - [-12.315627, 7.790255], - [-12.315633, 7.789699], - [-12.315027, 7.789899], - [-12.314687, 7.789721], - [-12.314392, 7.788573], - [-12.314183, 7.788346], - [-12.313824, 7.788398], - [-12.31389, 7.789057], - [-12.314035, 7.789314], - [-12.314034, 7.789315], - [-12.311878, 7.786297], - [-12.310873, 7.786409], - [-12.310763, 7.786443], - [-12.308508, 7.787318], - [-12.306403, 7.788096], - [-12.303817, 7.789058], - [-12.303216, 7.787376], - [-12.302795, 7.786947], - [-12.302322, 7.786879], - [-12.301089, 7.787465], - [-12.300378, 7.787285], - [-12.298137, 7.78725], - [-12.297336, 7.787315], - [-12.297256, 7.786782], - [-12.297198, 7.785562], - [-12.296379, 7.785632], - [-12.296426, 7.786398], - [-12.296447, 7.78665], - [-12.296424, 7.786732], - [-12.296417, 7.787342], - [-12.296456, 7.787636], - [-12.296683, 7.788705], - [-12.296722, 7.788934], - [-12.296784, 7.789701], - [-12.29679, 7.789825], - [-12.296813, 7.79039], - [-12.296809, 7.790854], - [-12.295588, 7.790658], - [-12.29455, 7.790983], - [-12.294285, 7.790542], - [-12.293727, 7.790079], - [-12.293031, 7.789968], - [-12.292746, 7.7906], - [-12.293025, 7.791302], - [-12.293455, 7.79201], - [-12.292463, 7.793143], - [-12.291735, 7.793741], - [-12.298099, 7.795099], - [-12.3028, 7.7965], - [-12.316499, 7.797599], - [-12.319595, 7.798232] - ] - ], - "type": "Polygon" - }, - "id": 419, - "properties": { - "cc:admin:id": ["39"], - "cc:oBld:total": 2, - "cc:pop:fifteen-to-twenty-four": 444.49946090302984, - "cc:pop:grid3-total": 5691.277599930893, - "cc:pop:kontur-total": 2223.1412104147544, - "cc:pop:men": 1231.5261203136688, - "cc:pop:sixty-plus": 176.21574071382068, - "cc:pop:total": 2484.371843404118, - "cc:pop:under-five": 423.64963017985883, - "cc:pop:women": 1252.8457230904498, - "cc:pop:women-fiften-to-forty-nine": 599.9750167373165, - "cc:pop:wp-total": 1735.8794131030036, - "cc:pop:wp-total-UN": 2018.0913732695167, - "cc:id": "419", - "cc:Name": "Moriba Town CHC", - "cc:site": [-12.2977, 7.7936], - "user:parentName": "Imperi", - "user:code": "OU_197417", - "user:orgUnitId": "xMn4Wki9doK", - "user:level": "4", - "user:parentId": "XEyIRFd9pct" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.508755, 7.887004], - [-12.508636, 7.885803], - [-12.507895, 7.883842], - [-12.506851, 7.881773], - [-12.506262, 7.878396], - [-12.505325, 7.87611], - [-12.504366, 7.875195], - [-12.502494, 7.875151], - [-12.501472, 7.875438], - [-12.501019, 7.874657], - [-12.497996, 7.874657], - [-12.496376, 7.874879], - [-12.493722, 7.874912], - [-12.49314, 7.874774], - [-12.492298, 7.876231], - [-12.485796, 7.873739], - [-12.48515, 7.87316], - [-12.484333, 7.871765], - [-12.483992, 7.87071], - [-12.48389, 7.867892], - [-12.483891, 7.867891], - [-12.485628, 7.86789], - [-12.485722, 7.861911], - [-12.485552, 7.860175], - [-12.485076, 7.859595], - [-12.484293, 7.858438], - [-12.483239, 7.856431], - [-12.482399, 7.854359], - [-12.481488, 7.854358], - [-12.479187, 7.850372], - [-12.478696, 7.849001], - [-12.477803, 7.845994], - [-12.476939, 7.84485], - [-12.474844, 7.843812], - [-12.473072, 7.841544], - [-12.470978, 7.839103], - [-12.470308, 7.837376], - [-12.470438, 7.83474], - [-12.471345, 7.833141], - [-12.473915, 7.831349], - [-12.476119, 7.830203], - [-12.480289, 7.828971], - [-12.484565, 7.827784], - [-12.486769, 7.826941], - [-12.487892, 7.826077], - [-12.488259, 7.825105], - [-12.487784, 7.823788], - [-12.486207, 7.822361], - [-12.480763, 7.819876], - [-12.474411, 7.817673], - [-12.470545, 7.815923], - [-12.464475, 7.81264], - [-12.461235, 7.811085], - [-12.458814, 7.810155], - [-12.455806, 7.809934], - [-12.452273, 7.803818], - [-12.449212, 7.803817], - [-12.448866, 7.803122], - [-12.448537, 7.800288], - [-12.448932, 7.797519], - [-12.449092, 7.797146], - [-12.448599, 7.7978], - [-12.4472, 7.8016], - [-12.4476, 7.805599], - [-12.449599, 7.809599], - [-12.450099, 7.811999], - [-12.449599, 7.8144], - [-12.4474, 7.816699], - [-12.443999, 7.8178], - [-12.437399, 7.8186], - [-12.4298, 7.821099], - [-12.4278, 7.821299], - [-12.422305, 7.8215], - [-12.4145, 7.8213], - [-12.411299, 7.820899], - [-12.4053, 7.8198], - [-12.4009, 7.822299], - [-12.398399, 7.8249], - [-12.395899, 7.8283], - [-12.393999, 7.8322], - [-12.3915, 7.836499], - [-12.390199, 7.8399], - [-12.3883, 7.843499], - [-12.387399, 7.8466], - [-12.3872, 7.8513], - [-12.3872, 7.856799], - [-12.3878, 7.860899], - [-12.3904, 7.8647], - [-12.3954, 7.8675], - [-12.3991, 7.8693], - [-12.4031, 7.8709], - [-12.408799, 7.874499], - [-12.410199, 7.8777], - [-12.4102, 7.881999], - [-12.409199, 7.8855], - [-12.405299, 7.893099], - [-12.4005, 7.897999], - [-12.399299, 7.8988], - [-12.3958, 7.900399], - [-12.3915, 7.902799], - [-12.388399, 7.9042], - [-12.3844, 7.906299], - [-12.380999, 7.906899], - [-12.3771, 7.906399], - [-12.3688, 7.9022], - [-12.3637, 7.8982], - [-12.3613, 7.8969], - [-12.358699, 7.896199], - [-12.3537, 7.895699], - [-12.3521, 7.8949], - [-12.351937, 7.894671], - [-12.35125, 7.902916], - [-12.354581, 7.907082], - [-12.35458, 7.907083], - [-12.350417, 7.90625], - [-12.349571, 7.909067], - [-12.352213, 7.909068], - [-12.35612, 7.915833], - [-12.360417, 7.915835], - [-12.360416, 7.92125], - [-12.357083, 7.925416], - [-12.356639, 7.925417], - [-12.354442, 7.929222], - [-12.358347, 7.935988], - [-12.354829, 7.942083], - [-12.35375, 7.942084], - [-12.352235, 7.950413], - [-12.357627, 7.950414], - [-12.360307, 7.955054], - [-12.36125, 7.954583], - [-12.367082, 7.944584], - [-12.368766, 7.945003], - [-12.370066, 7.942753], - [-12.36961, 7.941964], - [-12.369611, 7.941963], - [-12.379582, 7.941249], - [-12.382916, 7.937084], - [-12.383136, 7.935988], - [-12.387082, 7.935987], - [-12.387084, 7.935417], - [-12.399878, 7.935417], - [-12.399878, 7.935418], - [-12.397744, 7.939769], - [-12.402916, 7.940416], - [-12.40375, 7.935417], - [-12.407082, 7.937083], - [-12.407917, 7.937084], - [-12.409583, 7.938749], - [-12.413749, 7.938749], - [-12.416249, 7.937084], - [-12.417916, 7.937084], - [-12.419583, 7.942916], - [-12.426249, 7.945417], - [-12.428749, 7.947916], - [-12.42875, 7.949583], - [-12.432917, 7.94625], - [-12.435416, 7.94625], - [-12.43625, 7.947084], - [-12.444582, 7.948749], - [-12.44625, 7.94625], - [-12.452916, 7.947083], - [-12.455416, 7.940418], - [-12.455417, 7.940418], - [-12.457083, 7.942916], - [-12.459583, 7.94375], - [-12.460416, 7.947916], - [-12.460417, 7.94875], - [-12.461823, 7.954373], - [-12.462397, 7.953133], - [-12.464178, 7.949102], - [-12.464957, 7.949107], - [-12.465126, 7.949069], - [-12.46533, 7.949004], - [-12.46569, 7.948933], - [-12.466168, 7.948812], - [-12.465357, 7.948387], - [-12.464738, 7.948642], - [-12.464337, 7.948629], - [-12.464626, 7.947758], - [-12.464888, 7.947191], - [-12.465033, 7.944451], - [-12.472917, 7.948749], - [-12.475416, 7.948749], - [-12.475417, 7.939857], - [-12.476374, 7.939035], - [-12.480275, 7.937901], - [-12.482916, 7.93816], - [-12.482917, 7.92625], - [-12.490416, 7.925416], - [-12.489583, 7.922084], - [-12.489583, 7.920417], - [-12.489698, 7.920071], - [-12.489762, 7.920123], - [-12.489145, 7.918267], - [-12.490924, 7.917172], - [-12.492741, 7.915639], - [-12.494034, 7.915388], - [-12.495073, 7.914494], - [-12.495077, 7.913979], - [-12.495593, 7.913982], - [-12.496252, 7.911925], - [-12.496262, 7.910122], - [-12.496017, 7.908061], - [-12.495763, 7.907287], - [-12.49566, 7.907182], - [-12.496249, 7.907083], - [-12.49625, 7.902917], - [-12.497916, 7.900416], - [-12.497917, 7.897467], - [-12.49854, 7.896486], - [-12.49983, 7.896621], - [-12.500089, 7.896494], - [-12.499964, 7.895979], - [-12.499708, 7.895719], - [-12.49984, 7.895206], - [-12.501392, 7.894699], - [-12.501656, 7.893671], - [-12.502173, 7.893673], - [-12.50231, 7.892644], - [-12.502833, 7.891359], - [-12.50256, 7.890456], - [-12.507241, 7.889857], - [-12.502561, 7.890448], - [-12.50256, 7.890446], - [-12.508755, 7.887004] - ] - ], - "type": "Polygon" - }, - "id": 420, - "properties": { - "cc:admin:id": ["1"], - "cc:oBld:total": 0, - "cc:pop:fifteen-to-twenty-four": 1195.6247291285677, - "cc:pop:grid3-total": 6503.705692729369, - "cc:pop:kontur-total": 6022.712684351944, - "cc:pop:men": 2908.9347090236515, - "cc:pop:sixty-plus": 370.64883477968425, - "cc:pop:total": 6305.390674397342, - "cc:pop:under-five": 1128.0745649638345, - "cc:pop:women": 3396.455965373688, - "cc:pop:women-fiften-to-forty-nine": 1561.427953562368, - "cc:pop:wp-total": 5199.287404211981, - "cc:pop:wp-total-UN": 6012.556137404347, - "cc:id": "420", - "cc:Name": "Mosenegor MCHP", - "cc:site": [-12.4188, 7.8704], - "user:parentName": "Bagruwa", - "user:code": "OU_247051", - "user:orgUnitId": "HHz1kAG1LKn", - "user:level": "4", - "user:parentId": "jPidqyo7cpF" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.327916, 7.852084], - [-12.323749, 7.84375], - [-12.319583, 7.844583], - [-12.319582, 7.842917], - [-12.317903, 7.841572], - [-12.318893, 7.839858], - [-12.322567, 7.839857], - [-12.322082, 7.837917], - [-12.321249, 7.837916], - [-12.31625, 7.835416], - [-12.318749, 7.827083], - [-12.317917, 7.822917], - [-12.315417, 7.822083], - [-12.315417, 7.820417], - [-12.316249, 7.818749], - [-12.316249, 7.816722], - [-12.31252, 7.817296], - [-12.312498, 7.817195], - [-12.313205, 7.816411], - [-12.318539, 7.810555], - [-12.317082, 7.809583], - [-12.31375, 7.80375], - [-12.316046, 7.802371], - [-12.313998, 7.800631], - [-12.313493, 7.800538], - [-12.312954, 7.797315], - [-12.302799, 7.796499], - [-12.298099, 7.795099], - [-12.2906, 7.7935], - [-12.287299, 7.791899], - [-12.284499, 7.787699], - [-12.283499, 7.783599], - [-12.282699, 7.773999], - [-12.280599, 7.765799], - [-12.2802, 7.7618], - [-12.280499, 7.7579], - [-12.282699, 7.747399], - [-12.2817, 7.7423], - [-12.278699, 7.7386], - [-12.2695, 7.7337], - [-12.269299, 7.7339], - [-12.260599, 7.7416], - [-12.247, 7.755099], - [-12.2437, 7.757499], - [-12.240599, 7.7589], - [-12.2364, 7.761299], - [-12.233199, 7.7626], - [-12.2288, 7.764799], - [-12.222799, 7.7662], - [-12.2177, 7.768699], - [-12.215368, 7.769647], - [-12.215504, 7.770075], - [-12.215376, 7.771119], - [-12.212073, 7.777553], - [-12.210677, 7.781239], - [-12.208142, 7.784409], - [-12.207766, 7.786357], - [-12.208105, 7.788369], - [-12.207773, 7.788694], - [-12.206856, 7.789106], - [-12.203738, 7.78972], - [-12.202062, 7.788969], - [-12.201152, 7.788881], - [-12.199578, 7.789005], - [-12.198639, 7.789299], - [-12.197869, 7.790082], - [-12.195466, 7.793254], - [-12.195013, 7.793903], - [-12.194867, 7.794465], - [-12.195209, 7.796408], - [-12.196728, 7.799644], - [-12.196802, 7.800461], - [-12.196567, 7.802915], - [-12.196728, 7.804858], - [-12.197522, 7.80643], - [-12.198272, 7.807195], - [-12.201274, 7.808641], - [-12.202346, 7.809947], - [-12.203268, 7.811582], - [-12.206816, 7.81939], - [-12.206956, 7.82177], - [-12.206813, 7.824447], - [-12.206505, 7.825551], - [-12.206493, 7.825584], - [-12.205658, 7.826794], - [-12.199957, 7.828491], - [-12.193367, 7.830715], - [-12.192578, 7.831241], - [-12.192034, 7.831967], - [-12.191609, 7.833602], - [-12.191686, 7.83499], - [-12.19242, 7.836822], - [-12.19229, 7.837992], - [-12.192153, 7.838205], - [-12.194092, 7.838529], - [-12.194126, 7.83934], - [-12.193758, 7.839692], - [-12.194232, 7.840513], - [-12.202045, 7.840514], - [-12.202781, 7.84179], - [-12.20125, 7.847916], - [-12.20375, 7.847917], - [-12.207916, 7.850416], - [-12.20875, 7.851249], - [-12.213749, 7.852917], - [-12.220416, 7.859583], - [-12.223749, 7.856249], - [-12.22375, 7.854392], - [-12.225657, 7.854676], - [-12.225826, 7.854643], - [-12.229388, 7.86081], - [-12.226638, 7.865574], - [-12.235417, 7.86625], - [-12.238749, 7.870417], - [-12.239583, 7.874583], - [-12.242917, 7.872084], - [-12.247917, 7.872084], - [-12.253969, 7.87965], - [-12.2538, 7.87987], - [-12.253189, 7.880292], - [-12.251955, 7.880787], - [-12.252499, 7.881683], - [-12.252562, 7.882164], - [-12.25322, 7.882335], - [-12.253655, 7.882092], - [-12.254582, 7.881903], - [-12.254583, 7.890416], - [-12.25625, 7.892083], - [-12.266249, 7.892083], - [-12.26873, 7.890098], - [-12.269445, 7.889528], - [-12.272017, 7.893983], - [-12.269747, 7.897916], - [-12.262917, 7.897917], - [-12.258749, 7.90125], - [-12.258034, 7.906973], - [-12.259881, 7.907593], - [-12.261555, 7.908594], - [-12.262465, 7.909476], - [-12.264689, 7.911052], - [-12.268903, 7.910584], - [-12.2695, 7.908199], - [-12.2729, 7.905499], - [-12.2766, 7.902199], - [-12.280599, 7.8979], - [-12.2841, 7.8933], - [-12.2913, 7.8892], - [-12.299799, 7.888], - [-12.3077, 7.885199], - [-12.311899, 7.8849], - [-12.316499, 7.886], - [-12.321548, 7.889645], - [-12.320417, 7.886249], - [-12.322082, 7.880417], - [-12.322916, 7.877917], - [-12.326249, 7.876249], - [-12.325416, 7.874584], - [-12.32375, 7.872916], - [-12.32375, 7.864584], - [-12.322917, 7.863749], - [-12.324583, 7.862083], - [-12.327916, 7.852084] - ] - ], - "type": "Polygon" - }, - "id": 421, - "properties": { - "cc:admin:id": ["140"], - "cc:oBld:total": 9, - "cc:pop:fifteen-to-twenty-four": 2174.3494377845277, - "cc:pop:grid3-total": 11044.214912989723, - "cc:pop:kontur-total": 11585.064970029076, - "cc:pop:men": 5622.691712491445, - "cc:pop:sixty-plus": 828.9076803378787, - "cc:pop:total": 11876.350436354955, - "cc:pop:under-five": 2026.0823392285674, - "cc:pop:women": 6253.658723863516, - "cc:pop:women-fiften-to-forty-nine": 2991.1763494818733, - "cc:pop:wp-total": 10075.936221948548, - "cc:pop:wp-total-UN": 11682.912811622089, - "cc:id": "421", - "cc:Name": "Mosenessie Junction MCHP", - "cc:site": [-12.2689, 7.8374], - "user:parentName": "Lower Banta", - "user:code": "OU_247014", - "user:orgUnitId": "XmfqaErvQ2T", - "user:level": "4", - "user:parentId": "W5fN3G6y1VI" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.036249, 8.63625], - [-11.029583, 8.629583], - [-11.029583, 8.624584], - [-11.030417, 8.624583], - [-11.032082, 8.615417], - [-11.030417, 8.614584], - [-11.030416, 8.6132], - [-11.030317, 8.613193], - [-11.030163, 8.613308], - [-11.030161, 8.613308], - [-11.029987, 8.612433], - [-11.029945, 8.612838], - [-11.029634, 8.613101], - [-11.029345, 8.612467], - [-11.028363, 8.611729], - [-11.028192, 8.611272], - [-11.027554, 8.610652], - [-11.028139, 8.609254], - [-11.027931, 8.608599], - [-11.028084, 8.607173], - [-11.028488, 8.60698], - [-11.028604, 8.606976], - [-11.028642, 8.606783], - [-11.026559, 8.607105], - [-11.024471, 8.607895], - [-11.023709, 8.608254], - [-11.023391, 8.607934], - [-11.02316, 8.606954], - [-11.023213, 8.606514], - [-11.023663, 8.60317], - [-11.024158, 8.602696], - [-11.024712, 8.602478], - [-11.020417, 8.60125], - [-11.020226, 8.601438], - [-11.020112, 8.601284], - [-11.019019, 8.600374], - [-11.018115, 8.599722], - [-11.016001, 8.599497], - [-11.015439, 8.599215], - [-11.014929, 8.599227], - [-11.014583, 8.598982], - [-11.014037, 8.598811], - [-11.012555, 8.597237], - [-11.011939, 8.597325], - [-11.010595, 8.596801], - [-11.010066, 8.596116], - [-11.009936, 8.595677], - [-11.009736, 8.596201], - [-11.009282, 8.595999], - [-11.0094, 8.601699], - [-11.0122, 8.607], - [-11.015999, 8.614799], - [-11.016599, 8.618299], - [-11.0161, 8.622099], - [-11.0142, 8.626399], - [-11.0137, 8.629], - [-11.014, 8.632499], - [-11.016199, 8.637699], - [-11.016999, 8.641099], - [-11.0164, 8.644899], - [-11.020599, 8.647299], - [-11.0245, 8.6491], - [-11.028799, 8.651499], - [-11.032099, 8.652899], - [-11.033728, 8.65377], - [-11.03375, 8.653749], - [-11.034366, 8.649434], - [-11.033992, 8.64945], - [-11.033991, 8.649449], - [-11.035416, 8.64375], - [-11.034583, 8.642916], - [-11.036249, 8.63625] - ] - ], - "type": "Polygon" - }, - "id": 422, - "properties": { - "cc:admin:id": ["100"], - "cc:oBld:total": 587, - "cc:pop:fifteen-to-twenty-four": 558.7583998834218, - "cc:pop:grid3-total": 3317.032265509479, - "cc:pop:kontur-total": 3377.8855137059077, - "cc:pop:men": 1654.8837083628969, - "cc:pop:sixty-plus": 177.3606671337483, - "cc:pop:total": 3008.5260921849595, - "cc:pop:under-five": 477.5691792680622, - "cc:pop:women": 1353.6423838220624, - "cc:pop:women-fiften-to-forty-nine": 674.3813700077195, - "cc:pop:wp-total": 2062.3153072545183, - "cc:pop:wp-total-UN": 2391.352625587104, - "cc:id": "422", - "cc:Name": "Motema CHP", - "cc:site": [-11.0224, 8.6117], - "user:parentName": "Nimikoro", - "user:code": "OU_233399", - "user:orgUnitId": "g3O1pGAfgK1", - "user:level": "4", - "user:parentId": "DmaLM8WYmWv" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.863924, 8.329136], - [-12.858163, 8.327407], - [-12.858057, 8.327916], - [-12.857916, 8.327916], - [-12.855417, 8.325417], - [-12.855416, 8.32375], - [-12.852917, 8.322084], - [-12.851249, 8.31875], - [-12.850416, 8.318749], - [-12.849583, 8.307917], - [-12.852917, 8.30375], - [-12.857082, 8.302916], - [-12.857082, 8.299584], - [-12.852916, 8.302916], - [-12.842083, 8.302084], - [-12.842679, 8.310444], - [-12.840871, 8.309363], - [-12.839767, 8.309018], - [-12.838644, 8.308439], - [-12.8363, 8.307974], - [-12.835679, 8.307989], - [-12.835678, 8.307988], - [-12.837524, 8.306305], - [-12.839488, 8.303976], - [-12.839852, 8.303637], - [-12.840469, 8.303385], - [-12.841655, 8.301656], - [-12.839583, 8.299584], - [-12.837916, 8.29875], - [-12.825416, 8.298749], - [-12.820417, 8.29125], - [-12.8208, 8.288172], - [-12.820177, 8.287092], - [-12.812365, 8.287091], - [-12.808458, 8.280326], - [-12.804833, 8.280325], - [-12.804702, 8.278621], - [-12.806689, 8.277177], - [-12.805416, 8.272084], - [-12.802082, 8.269583], - [-12.800417, 8.264584], - [-12.801547, 8.260623], - [-12.801428, 8.260417], - [-12.793616, 8.260416], - [-12.789709, 8.253651], - [-12.782183, 8.253651], - [-12.781249, 8.254583], - [-12.780513, 8.254829], - [-12.77977, 8.25354], - [-12.782016, 8.24965], - [-12.781249, 8.250417], - [-12.772082, 8.250416], - [-12.770524, 8.246361], - [-12.775973, 8.24636], - [-12.779879, 8.239595], - [-12.779157, 8.238344], - [-12.777742, 8.2394], - [-12.777273, 8.238593], - [-12.776499, 8.237898], - [-12.773587, 8.234188], - [-12.772917, 8.232829], - [-12.772916, 8.23125], - [-12.771478, 8.229573], - [-12.765292, 8.229573], - [-12.761385, 8.236338], - [-12.754364, 8.236338], - [-12.75375, 8.235416], - [-12.754583, 8.222917], - [-12.757546, 8.220546], - [-12.755621, 8.220546], - [-12.752303, 8.226293], - [-12.752916, 8.22875], - [-12.743542, 8.230192], - [-12.743712, 8.230353], - [-12.743945, 8.230781], - [-12.74315, 8.232672], - [-12.742782, 8.232741], - [-12.741357, 8.233366], - [-12.731546, 8.234305], - [-12.731199, 8.2349], - [-12.7292, 8.237199], - [-12.7263, 8.2396], - [-12.725399, 8.2415], - [-12.724399, 8.2455], - [-12.721799, 8.2511], - [-12.719999, 8.254299], - [-12.717399, 8.256299], - [-12.714799, 8.2569], - [-12.7067, 8.257199], - [-12.7032, 8.257899], - [-12.6988, 8.260099], - [-12.695699, 8.2614], - [-12.691299, 8.2636], - [-12.688699, 8.2642], - [-12.6834, 8.264699], - [-12.6808, 8.265399], - [-12.676299, 8.2673], - [-12.669599, 8.269], - [-12.665099, 8.2711], - [-12.662599, 8.2716], - [-12.6572, 8.272099], - [-12.6551, 8.272699], - [-12.653099, 8.2737], - [-12.648799, 8.2771], - [-12.6456, 8.278799], - [-12.639799, 8.2803], - [-12.633999, 8.282699], - [-12.628199, 8.2832], - [-12.6226, 8.2832], - [-12.6185, 8.282699], - [-12.6128, 8.2801], - [-12.6096, 8.2788], - [-12.6053, 8.2764], - [-12.6021, 8.274999], - [-12.5952, 8.269], - [-12.593699, 8.2737], - [-12.59, 8.279199], - [-12.5873, 8.281799], - [-12.582699, 8.2845], - [-12.577399, 8.2881], - [-12.5702, 8.2924], - [-12.57, 8.299799], - [-12.5696, 8.304099], - [-12.567099, 8.314], - [-12.567, 8.3193], - [-12.5685, 8.3254], - [-12.5703, 8.3288], - [-12.574099, 8.333399], - [-12.5786, 8.3375], - [-12.5833, 8.3406], - [-12.589899, 8.343699], - [-12.5964, 8.3459], - [-12.605, 8.3508], - [-12.616299, 8.354499], - [-12.626099, 8.355999], - [-12.629999, 8.3572], - [-12.6329, 8.3593], - [-12.636399, 8.363499], - [-12.639, 8.3659], - [-12.646399, 8.370999], - [-12.6502, 8.3731], - [-12.6543, 8.3741], - [-12.658499, 8.374399], - [-12.6644, 8.374199], - [-12.671899, 8.373499], - [-12.6749, 8.371499], - [-12.6846, 8.366899], - [-12.689999, 8.3645], - [-12.6938, 8.3636], - [-12.697899, 8.3636], - [-12.701699, 8.364399], - [-12.713099, 8.369699], - [-12.716699, 8.369999], - [-12.720299, 8.367199], - [-12.721199, 8.3593], - [-12.7221, 8.356199], - [-12.725099, 8.3533], - [-12.729, 8.3525], - [-12.731799, 8.353], - [-12.7343, 8.3544], - [-12.7377, 8.3572], - [-12.745399, 8.364899], - [-12.7488, 8.3679], - [-12.7522, 8.3703], - [-12.759699, 8.374199], - [-12.7665, 8.3769], - [-12.777699, 8.378599], - [-12.7817, 8.3795], - [-12.7918, 8.3829], - [-12.8037, 8.3883], - [-12.8092, 8.388499], - [-12.814099, 8.385899], - [-12.816699, 8.381999], - [-12.817099, 8.378], - [-12.8153, 8.3725], - [-12.8147, 8.367199], - [-12.8152, 8.3634], - [-12.817399, 8.3606], - [-12.8262, 8.357099], - [-12.836399, 8.349], - [-12.841099, 8.3459], - [-12.848699, 8.343], - [-12.8551, 8.339699], - [-12.8584, 8.337099], - [-12.8603, 8.334799], - [-12.863924, 8.329136] - ] - ], - "type": "Polygon" - }, - "id": 423, - "properties": { - "cc:admin:id": ["111"], - "cc:oBld:total": 464, - "cc:pop:fifteen-to-twenty-four": 2316.6885369362717, - "cc:pop:grid3-total": 16377.735523345918, - "cc:pop:kontur-total": 14077.310560926118, - "cc:pop:men": 6353.623137043917, - "cc:pop:sixty-plus": 869.5764852349838, - "cc:pop:total": 13466.3253042056, - "cc:pop:under-five": 2298.3886853444933, - "cc:pop:women": 7112.702167161673, - "cc:pop:women-fiften-to-forty-nine": 3250.0235424057873, - "cc:pop:wp-total": 11633.67160296068, - "cc:pop:wp-total-UN": 13479.340672953116, - "cc:id": "423", - "cc:Name": "Motoni MCHP", - "cc:site": [-12.7935, 8.3054], - "user:parentName": "Ribbi", - "user:code": "OU_247043", - "user:orgUnitId": "fvytjjnlQlK", - "user:level": "4", - "user:parentId": "gy8rmvYT4cj" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.911243, 8.25936], - [-12.907337, 8.252595], - [-12.905166, 8.252594], - [-12.905172, 8.251289], - [-12.904788, 8.250417], - [-12.902083, 8.250416], - [-12.902082, 8.240427], - [-12.899033, 8.240426], - [-12.898613, 8.239701], - [-12.89679, 8.239016], - [-12.896017, 8.238435], - [-12.895012, 8.237355], - [-12.89356, 8.236458], - [-12.892888, 8.236176], - [-12.891858, 8.235995], - [-12.895416, 8.231249], - [-12.893749, 8.224584], - [-12.88625, 8.220417], - [-12.885416, 8.215417], - [-12.883749, 8.215416], - [-12.879582, 8.210417], - [-12.878118, 8.209928], - [-12.878194, 8.205572], - [-12.878099, 8.204551], - [-12.876249, 8.202084], - [-12.86875, 8.200417], - [-12.862916, 8.202083], - [-12.855417, 8.19875], - [-12.85375, 8.19625], - [-12.85375, 8.194583], - [-12.857916, 8.190416], - [-12.85625, 8.187083], - [-12.857916, 8.182084], - [-12.852917, 8.182083], - [-12.851249, 8.17875], - [-12.847082, 8.179583], - [-12.846249, 8.177084], - [-12.844582, 8.176249], - [-12.843749, 8.172917], - [-12.842917, 8.172916], - [-12.842916, 8.16875], - [-12.839583, 8.167083], - [-12.839582, 8.162084], - [-12.837083, 8.161249], - [-12.83375, 8.15875], - [-12.835402, 8.156683], - [-12.835859, 8.156762], - [-12.836502, 8.157192], - [-12.83714, 8.156766], - [-12.836898, 8.155865], - [-12.83587, 8.154828], - [-12.835488, 8.153926], - [-12.836283, 8.15294], - [-12.836406, 8.151354], - [-12.838478, 8.150463], - [-12.840294, 8.149313], - [-12.839783, 8.148152], - [-12.838485, 8.149174], - [-12.836936, 8.148908], - [-12.836035, 8.148003], - [-12.834356, 8.147736], - [-12.833717, 8.146702], - [-12.834368, 8.145676], - [-12.835921, 8.145168], - [-12.836009, 8.143884], - [-12.83194, 8.144393], - [-12.831525, 8.145274], - [-12.830485, 8.146685], - [-12.829571, 8.147134], - [-12.828599, 8.150099], - [-12.8268, 8.151899], - [-12.8186, 8.1534], - [-12.8158, 8.1554], - [-12.8148, 8.1584], - [-12.8152, 8.1608], - [-12.8173, 8.1651], - [-12.817999, 8.1699], - [-12.817299, 8.174799], - [-12.815999, 8.1772], - [-12.814099, 8.1793], - [-12.808199, 8.1853], - [-12.805399, 8.187499], - [-12.8028, 8.188299], - [-12.798299, 8.186799], - [-12.794799, 8.186299], - [-12.7902, 8.1861], - [-12.7856, 8.186799], - [-12.783199, 8.1879], - [-12.7744, 8.194799], - [-12.771599, 8.1987], - [-12.7668, 8.203399], - [-12.7613, 8.206399], - [-12.7574, 8.209699], - [-12.7492, 8.217999], - [-12.7464, 8.220599], - [-12.7441, 8.222299], - [-12.7402, 8.224199], - [-12.737999, 8.2258], - [-12.734399, 8.2294], - [-12.731546, 8.234304], - [-12.741357, 8.233366], - [-12.742782, 8.232741], - [-12.743149, 8.232672], - [-12.743945, 8.230781], - [-12.743712, 8.230353], - [-12.743543, 8.230193], - [-12.743544, 8.230191], - [-12.752916, 8.228749], - [-12.752302, 8.226294], - [-12.755621, 8.220546], - [-12.757545, 8.220546], - [-12.754583, 8.222917], - [-12.75375, 8.235416], - [-12.754365, 8.236338], - [-12.761385, 8.236338], - [-12.765291, 8.229573], - [-12.771479, 8.229573], - [-12.772916, 8.23125], - [-12.772917, 8.232829], - [-12.773587, 8.234188], - [-12.776499, 8.237898], - [-12.777273, 8.238593], - [-12.777743, 8.2394], - [-12.779157, 8.238344], - [-12.779879, 8.239594], - [-12.778661, 8.241707], - [-12.775974, 8.24636], - [-12.770523, 8.246361], - [-12.772083, 8.250416], - [-12.781249, 8.250417], - [-12.782012, 8.249655], - [-12.782013, 8.249656], - [-12.77977, 8.253541], - [-12.780513, 8.254828], - [-12.781249, 8.254583], - [-12.782182, 8.253651], - [-12.789709, 8.253651], - [-12.793616, 8.260416], - [-12.801429, 8.260417], - [-12.801547, 8.260623], - [-12.800417, 8.264584], - [-12.802083, 8.269583], - [-12.805417, 8.272084], - [-12.806689, 8.277177], - [-12.804702, 8.278622], - [-12.804833, 8.280325], - [-12.808459, 8.280326], - [-12.812365, 8.287091], - [-12.820178, 8.287092], - [-12.8208, 8.288172], - [-12.820417, 8.291249], - [-12.825417, 8.298749], - [-12.837916, 8.29875], - [-12.839583, 8.299584], - [-12.841655, 8.301656], - [-12.84047, 8.303385], - [-12.839852, 8.303637], - [-12.839488, 8.303976], - [-12.837524, 8.306305], - [-12.835677, 8.307989], - [-12.8363, 8.307974], - [-12.838644, 8.308439], - [-12.839767, 8.309018], - [-12.840871, 8.309363], - [-12.842679, 8.310444], - [-12.842083, 8.302084], - [-12.852916, 8.302916], - [-12.857082, 8.299585], - [-12.857082, 8.302916], - [-12.852917, 8.30375], - [-12.849583, 8.307917], - [-12.850417, 8.318749], - [-12.85125, 8.31875], - [-12.852917, 8.322083], - [-12.855416, 8.323749], - [-12.855417, 8.325416], - [-12.857917, 8.327916], - [-12.858056, 8.327916], - [-12.858162, 8.327407], - [-12.858163, 8.327407], - [-12.863924, 8.329135], - [-12.8667, 8.324799], - [-12.8689, 8.319199], - [-12.871, 8.311499], - [-12.872699, 8.3084], - [-12.8746, 8.306], - [-12.877, 8.304399], - [-12.8867, 8.302299], - [-12.8917, 8.299799], - [-12.896199, 8.296099], - [-12.8959, 8.2885], - [-12.896199, 8.2841], - [-12.897999, 8.2793], - [-12.904099, 8.2751], - [-12.909982, 8.270707], - [-12.907338, 8.266125], - [-12.911243, 8.25936] - ] - ], - "type": "Polygon" - }, - "id": 424, - "properties": { - "cc:admin:id": ["111"], - "cc:oBld:total": 444, - "cc:pop:fifteen-to-twenty-four": 1274.5976674256578, - "cc:pop:grid3-total": 7534.0458666600325, - "cc:pop:kontur-total": 7521.1848455736545, - "cc:pop:men": 3507.447083429983, - "cc:pop:sixty-plus": 467.68006741978206, - "cc:pop:total": 7432.480071014042, - "cc:pop:under-five": 1270.5976674256574, - "cc:pop:women": 3925.032987584056, - "cc:pop:women-fiften-to-forty-nine": 1781.2630780731936, - "cc:pop:wp-total": 6382.634265714052, - "cc:pop:wp-total-UN": 7405.619102068446, - "cc:id": "424", - "cc:Name": "Motonkoh MCHP", - "cc:site": [-12.8429, 8.2624], - "user:parentName": "Ribbi", - "user:code": "OU_247041", - "user:orgUnitId": "BpWJ3cRsO6g", - "user:level": "4", - "user:parentId": "gy8rmvYT4cj" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.880448, 8.092608], - [-12.878123, 8.092729], - [-12.877083, 8.093142], - [-12.877082, 8.092084], - [-12.875453, 8.089911], - [-12.874184, 8.090195], - [-12.871264, 8.091181], - [-12.86728, 8.092225], - [-12.866061, 8.092167], - [-12.865035, 8.091374], - [-12.861708, 8.086809], - [-12.857298, 8.082612], - [-12.85343, 8.080271], - [-12.848556, 8.078261], - [-12.842618, 8.076152], - [-12.839435, 8.075498], - [-12.837752, 8.075542], - [-12.835819, 8.075928], - [-12.833739, 8.078999], - [-12.832071, 8.083133], - [-12.83033, 8.086687], - [-12.827478, 8.089032], - [-12.824914, 8.090025], - [-12.819595, 8.090483], - [-12.815824, 8.090604], - [-12.81326, 8.090386], - [-12.813018, 8.090241], - [-12.811591, 8.088283], - [-12.809077, 8.085188], - [-12.806007, 8.082553], - [-12.803346, 8.080885], - [-12.799454, 8.08074], - [-12.797035, 8.081188], - [-12.794559, 8.081873], - [-12.791676, 8.082466], - [-12.788457, 8.082455], - [-12.78587, 8.081811], - [-12.783455, 8.081253], - [-12.780001, 8.080276], - [-12.77755, 8.080487], - [-12.775199, 8.081192], - [-12.773588, 8.082802], - [-12.771497, 8.085188], - [-12.770104, 8.086386], - [-12.768242, 8.087765], - [-12.76539, 8.089093], - [-12.762658, 8.09006], - [-12.759587, 8.090641], - [-12.756806, 8.091367], - [-12.754364, 8.09231], - [-12.751439, 8.093977], - [-12.748634, 8.095864], - [-12.747063, 8.097628], - [-12.745246, 8.099445], - [-12.744356, 8.100463], - [-12.741382, 8.102132], - [-12.737601, 8.103952], - [-12.73827, 8.105293], - [-12.737459, 8.105737], - [-12.734717, 8.107415], - [-12.73307, 8.109244], - [-12.732407, 8.111189], - [-12.73234, 8.113699], - [-12.732539, 8.116341], - [-12.732057, 8.118634], - [-12.732015, 8.118749], - [-12.730635, 8.11875], - [-12.730293, 8.119732], - [-12.729437, 8.122094], - [-12.728087, 8.124224], - [-12.726424, 8.125835], - [-12.724372, 8.127601], - [-12.722234, 8.129955], - [-12.720429, 8.132225], - [-12.720236, 8.132556], - [-12.72071, 8.133504], - [-12.721278, 8.132694], - [-12.722961, 8.130845], - [-12.724802, 8.128799], - [-12.724804, 8.128799], - [-12.725144, 8.130161], - [-12.724578, 8.130649], - [-12.723789, 8.131691], - [-12.723661, 8.132961], - [-12.724041, 8.134252], - [-12.724558, 8.134256], - [-12.725086, 8.134985], - [-12.727138, 8.135043], - [-12.727395, 8.135429], - [-12.728234, 8.135539], - [-12.728304, 8.135747], - [-12.728167, 8.13595], - [-12.72584, 8.136194], - [-12.725451, 8.136579], - [-12.725446, 8.137351], - [-12.726345, 8.138386], - [-12.727118, 8.138648], - [-12.727116, 8.139163], - [-12.729182, 8.139432], - [-12.729185, 8.138918], - [-12.730218, 8.138923], - [-12.730295, 8.138629], - [-12.73125, 8.139583], - [-12.73167, 8.139584], - [-12.731759, 8.140735], - [-12.730208, 8.140985], - [-12.730271, 8.141176], - [-12.730417, 8.141249], - [-12.734583, 8.140417], - [-12.73703, 8.147265], - [-12.737412, 8.147077], - [-12.738962, 8.146958], - [-12.738702, 8.147342], - [-12.738185, 8.14734], - [-12.737163, 8.14764], - [-12.737651, 8.149006], - [-12.737918, 8.149142], - [-12.738301, 8.150045], - [-12.739457, 8.150953], - [-12.739975, 8.150828], - [-12.740216, 8.151808], - [-12.740524, 8.15175], - [-12.74075, 8.15109], - [-12.741265, 8.151351], - [-12.741262, 8.151866], - [-12.740656, 8.152289], - [-12.740483, 8.152633], - [-12.741347, 8.152469], - [-12.741257, 8.152895], - [-12.74074, 8.152893], - [-12.740736, 8.153407], - [-12.740222, 8.153148], - [-12.739956, 8.154176], - [-12.739699, 8.154174], - [-12.739701, 8.15366], - [-12.739443, 8.153659], - [-12.739694, 8.154947], - [-12.740469, 8.154953], - [-12.740333, 8.156496], - [-12.74007, 8.157268], - [-12.740581, 8.158044], - [-12.7407, 8.159031], - [-12.740637, 8.159171], - [-12.743749, 8.160417], - [-12.744583, 8.163749], - [-12.745417, 8.164584], - [-12.751249, 8.169583], - [-12.750417, 8.173749], - [-12.755416, 8.17375], - [-12.757917, 8.174584], - [-12.760533, 8.177855], - [-12.760411, 8.177939], - [-12.757759, 8.180992], - [-12.761185, 8.183457], - [-12.763094, 8.185585], - [-12.763618, 8.186679], - [-12.765069, 8.188746], - [-12.768033, 8.190661], - [-12.769536, 8.191243], - [-12.770416, 8.191971], - [-12.771208, 8.193808], - [-12.771719, 8.19446], - [-12.772989, 8.195582], - [-12.773607, 8.195903], - [-12.7744, 8.194799], - [-12.783199, 8.1879], - [-12.785599, 8.1868], - [-12.790199, 8.1861], - [-12.794799, 8.186299], - [-12.7983, 8.1868], - [-12.8028, 8.188299], - [-12.805399, 8.187499], - [-12.8082, 8.185299], - [-12.814099, 8.1793], - [-12.815999, 8.1772], - [-12.817299, 8.174799], - [-12.817999, 8.1699], - [-12.8173, 8.1651], - [-12.8152, 8.1608], - [-12.8148, 8.1584], - [-12.8158, 8.155399], - [-12.8186, 8.1534], - [-12.8268, 8.151899], - [-12.828599, 8.150099], - [-12.830499, 8.1443], - [-12.832999, 8.1395], - [-12.8347, 8.137299], - [-12.837, 8.135199], - [-12.840999, 8.1331], - [-12.844299, 8.1317], - [-12.852799, 8.129599], - [-12.855999, 8.127599], - [-12.858599, 8.124499], - [-12.8598, 8.121599], - [-12.8606, 8.117799], - [-12.8611, 8.111599], - [-12.862599, 8.1038], - [-12.864099, 8.0987], - [-12.8697, 8.100799], - [-12.872899, 8.1007], - [-12.875099, 8.1], - [-12.877999, 8.097499], - [-12.879899, 8.0942], - [-12.880448, 8.092608] - ] - ], - "type": "Polygon" - }, - "id": 425, - "properties": { - "cc:admin:id": ["12"], - "cc:oBld:total": 227, - "cc:pop:fifteen-to-twenty-four": 1033.8289699682864, - "cc:pop:grid3-total": 5603.44417103059, - "cc:pop:kontur-total": 5392.077753511764, - "cc:pop:men": 2579.0143247558944, - "cc:pop:sixty-plus": 350.022499392338, - "cc:pop:total": 5525.869100881216, - "cc:pop:under-five": 948.710657428134, - "cc:pop:women": 2946.854776125322, - "cc:pop:women-fiften-to-forty-nine": 1387.8293211865723, - "cc:pop:wp-total": 4585.174852818969, - "cc:pop:wp-total-UN": 5325.050246957593, - "cc:id": "425", - "cc:Name": "Motorbong MCHP", - "cc:site": [-12.8337, 8.121], - "user:parentName": "Bumpeh", - "user:code": "OU_247030", - "user:orgUnitId": "Gtnbmf4LkOz", - "user:level": "4", - "user:parentId": "nOYt1LtFSyU" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.088749, 7.609584], - [-12.080952, 7.611], - [-12.079913, 7.608711], - [-12.080322, 7.606887], - [-12.081397, 7.603276], - [-12.082046, 7.602389], - [-12.080899, 7.601399], - [-12.0749, 7.5952], - [-12.0728, 7.5933], - [-12.070199, 7.5917], - [-12.066699, 7.5914], - [-12.063799, 7.5932], - [-12.0571, 7.599699], - [-12.0545, 7.601199], - [-12.051, 7.600899], - [-12.048299, 7.599199], - [-12.0458, 7.5965], - [-12.0441, 7.5933], - [-12.042899, 7.588199], - [-12.0404, 7.5821], - [-12.0388, 7.5762], - [-12.0368, 7.5721], - [-12.0362, 7.57], - [-12.0359, 7.567299], - [-12.036065, 7.564399], - [-12.033749, 7.562083], - [-12.02875, 7.56125], - [-12.025944, 7.572472], - [-12.026145, 7.573451], - [-12.026472, 7.574079], - [-12.027487, 7.575004], - [-12.026249, 7.575416], - [-12.022937, 7.575116], - [-12.019964, 7.580265], - [-12.012151, 7.580265], - [-12.008859, 7.574564], - [-12.00875, 7.574582], - [-12.008749, 7.582083], - [-12.005417, 7.586249], - [-11.997191, 7.586997], - [-11.9971, 7.586658], - [-11.995607, 7.587405], - [-11.995925, 7.588454], - [-11.995906, 7.590132], - [-11.995854, 7.590416], - [-11.992083, 7.590417], - [-11.990476, 7.591489], - [-11.994499, 7.6004], - [-11.993499, 7.6107], - [-11.9933, 7.630099], - [-11.999199, 7.6298], - [-12.003699, 7.629899], - [-12.008, 7.6308], - [-12.017, 7.635], - [-12.025699, 7.641999], - [-12.032699, 7.646899], - [-12.034196, 7.648575], - [-12.0369, 7.648576], - [-12.036904, 7.648571], - [-12.037083, 7.64875], - [-12.042082, 7.648749], - [-12.049582, 7.639583], - [-12.050253, 7.637906], - [-12.049906, 7.637697], - [-12.051238, 7.635391], - [-12.051239, 7.635391], - [-12.05125, 7.635416], - [-12.059582, 7.634584], - [-12.06625, 7.647083], - [-12.072916, 7.647083], - [-12.073355, 7.646643], - [-12.071554, 7.643521], - [-12.075459, 7.636756], - [-12.080213, 7.636755], - [-12.080416, 7.636249], - [-12.079583, 7.627917], - [-12.079582, 7.62375], - [-12.076859, 7.61762], - [-12.080977, 7.617145], - [-12.083188, 7.617662], - [-12.085609, 7.61759], - [-12.08625, 7.61375], - [-12.088749, 7.609584] - ] - ], - "type": "Polygon" - }, - "id": 426, - "properties": { - "cc:admin:id": ["65"], - "cc:oBld:total": 5, - "cc:pop:fifteen-to-twenty-four": 721.9298318923321, - "cc:pop:grid3-total": 5457.525350770474, - "cc:pop:kontur-total": 3763.7452592962436, - "cc:pop:men": 1870.8569838282424, - "cc:pop:sixty-plus": 259.5839371954044, - "cc:pop:total": 3883.3719691332503, - "cc:pop:under-five": 662.5834243413694, - "cc:pop:women": 2012.5149853050095, - "cc:pop:women-fiften-to-forty-nine": 956.7802881667835, - "cc:pop:wp-total": 2872.4396321681234, - "cc:pop:wp-total-UN": 3331.8275751201445, - "cc:id": "426", - "cc:Name": "Motuo CHC", - "cc:site": [-12.0474, 7.614], - "user:parentName": "Kpanda Kemoh", - "user:code": "OU_197427", - "user:orgUnitId": "rCKWdLr4B8K", - "user:level": "4", - "user:parentId": "aWQTfvgPA5v" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.905399, 8.0415], - [-12.895899, 8.041], - [-12.8896, 8.041], - [-12.8846, 8.041299], - [-12.880599, 8.0421], - [-12.8762, 8.043799], - [-12.8724, 8.044899], - [-12.8685, 8.045099], - [-12.8647, 8.0446], - [-12.861999, 8.043899], - [-12.857899, 8.041299], - [-12.853099, 8.036599], - [-12.849899, 8.034499], - [-12.842299, 8.030699], - [-12.8394, 8.0301], - [-12.836499, 8.0299], - [-12.8135, 8.030099], - [-12.810499, 8.029899], - [-12.805999, 8.029099], - [-12.7979, 8.0257], - [-12.7936, 8.023], - [-12.790399, 8.021899], - [-12.786799, 8.019899], - [-12.783099, 8.018899], - [-12.779099, 8.018599], - [-12.770362, 8.0186], - [-12.773417, 8.023893], - [-12.769512, 8.030658], - [-12.766841, 8.030659], - [-12.765417, 8.032084], - [-12.76375, 8.038749], - [-12.767082, 8.04375], - [-12.767082, 8.052917], - [-12.765734, 8.054266], - [-12.759875, 8.054266], - [-12.75932, 8.055225], - [-12.749583, 8.056249], - [-12.748749, 8.054584], - [-12.747917, 8.054584], - [-12.747916, 8.05625], - [-12.74375, 8.059583], - [-12.737916, 8.059584], - [-12.734583, 8.062916], - [-12.737917, 8.064584], - [-12.73875, 8.074583], - [-12.748052, 8.083885], - [-12.748749, 8.084584], - [-12.743749, 8.087083], - [-12.73625, 8.079584], - [-12.735417, 8.080416], - [-12.735005, 8.08069], - [-12.735082, 8.080435], - [-12.730417, 8.084584], - [-12.730417, 8.087973], - [-12.730505, 8.088049], - [-12.730757, 8.089209], - [-12.731531, 8.089343], - [-12.732045, 8.08986], - [-12.732298, 8.091021], - [-12.732814, 8.091153], - [-12.733712, 8.092318], - [-12.73409, 8.094122], - [-12.73473, 8.095157], - [-12.734975, 8.097733], - [-12.735645, 8.099317], - [-12.737917, 8.09875], - [-12.739952, 8.102819], - [-12.741383, 8.102131], - [-12.744356, 8.100463], - [-12.745246, 8.099445], - [-12.747063, 8.097628], - [-12.748634, 8.095864], - [-12.751439, 8.093977], - [-12.754364, 8.09231], - [-12.756806, 8.091367], - [-12.759587, 8.090641], - [-12.762658, 8.09006], - [-12.76539, 8.089093], - [-12.768242, 8.087765], - [-12.770104, 8.086386], - [-12.771497, 8.085188], - [-12.773588, 8.082802], - [-12.775198, 8.081192], - [-12.77755, 8.080487], - [-12.780001, 8.080276], - [-12.783455, 8.081253], - [-12.78587, 8.081811], - [-12.788457, 8.082455], - [-12.791676, 8.082466], - [-12.794559, 8.081873], - [-12.797035, 8.081188], - [-12.799454, 8.08074], - [-12.803346, 8.080885], - [-12.806007, 8.082553], - [-12.809077, 8.085188], - [-12.811591, 8.088283], - [-12.813018, 8.090241], - [-12.81326, 8.090386], - [-12.815824, 8.090604], - [-12.819595, 8.090483], - [-12.824914, 8.090025], - [-12.827478, 8.089032], - [-12.83033, 8.086687], - [-12.832071, 8.083133], - [-12.833739, 8.078999], - [-12.835818, 8.075928], - [-12.837752, 8.075542], - [-12.839434, 8.075498], - [-12.842618, 8.076152], - [-12.848556, 8.078261], - [-12.85343, 8.080271], - [-12.857298, 8.082612], - [-12.861708, 8.086809], - [-12.865035, 8.091374], - [-12.866062, 8.092167], - [-12.86728, 8.092225], - [-12.871264, 8.091181], - [-12.874184, 8.090195], - [-12.875453, 8.08991], - [-12.877082, 8.092083], - [-12.877083, 8.093142], - [-12.878123, 8.092729], - [-12.880448, 8.092607], - [-12.8809, 8.091299], - [-12.890199, 8.087499], - [-12.896199, 8.080999], - [-12.896, 8.080399], - [-12.896, 8.0771], - [-12.896799, 8.075999], - [-12.897099, 8.0746], - [-12.898499, 8.073499], - [-12.8993, 8.071299], - [-12.901499, 8.069599], - [-12.9015, 8.064], - [-12.901799, 8.0632], - [-12.9001, 8.062399], - [-12.900099, 8.0593], - [-12.8996, 8.058999], - [-12.8999, 8.056499], - [-12.8999, 8.0524], - [-12.900999, 8.051499], - [-12.901, 8.048199], - [-12.902099, 8.0463], - [-12.902899, 8.045999], - [-12.9032, 8.0443], - [-12.904499, 8.043499], - [-12.905399, 8.0415] - ] - ], - "type": "Polygon" - }, - "id": 427, - "properties": { - "cc:admin:id": ["12"], - "cc:oBld:total": 12, - "cc:pop:fifteen-to-twenty-four": 1180.0848373162776, - "cc:pop:grid3-total": 6351.312786181341, - "cc:pop:kontur-total": 6316.2498927042725, - "cc:pop:men": 2960.570550904342, - "cc:pop:sixty-plus": 417.1479898605272, - "cc:pop:total": 6334.464947600011, - "cc:pop:under-five": 1078.287669447539, - "cc:pop:women": 3373.8943966956685, - "cc:pop:women-fiften-to-forty-nine": 1604.276410978698, - "cc:pop:wp-total": 5623.990138840804, - "cc:pop:wp-total-UN": 6538.9852630585665, - "cc:id": "427", - "cc:Name": "Moyeamoh CHP", - "cc:site": [-12.7739, 8.0743], - "user:parentName": "Bumpeh", - "user:code": "OU_247028", - "user:orgUnitId": "WhCQNekdIwM", - "user:level": "4", - "user:parentId": "nOYt1LtFSyU" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.217772, 8.459394], - [-13.217614, 8.458768], - [-13.216946, 8.457431], - [-13.216836, 8.457127], - [-13.216174, 8.455539], - [-13.21603, 8.455259], - [-13.21672, 8.454962], - [-13.216429, 8.454289], - [-13.215645, 8.454502], - [-13.215617, 8.45444], - [-13.215348, 8.45355], - [-13.215323, 8.453508], - [-13.215055, 8.453441], - [-13.215292, 8.450677], - [-13.215276, 8.450623], - [-13.215394, 8.450035], - [-13.214936, 8.450189], - [-13.214348, 8.450479], - [-13.214162, 8.450033], - [-13.213535, 8.450347], - [-13.213492, 8.450373], - [-13.21372, 8.450745], - [-13.213927, 8.451164], - [-13.21413, 8.451633], - [-13.214319, 8.452043], - [-13.214005, 8.452208], - [-13.214022, 8.452679], - [-13.214727, 8.453323], - [-13.213442, 8.453465], - [-13.213829, 8.454082], - [-13.214551, 8.454436], - [-13.214921, 8.455044], - [-13.215164, 8.45592], - [-13.21507, 8.45625], - [-13.214782, 8.456392], - [-13.214944, 8.457081], - [-13.214873, 8.457563], - [-13.214353, 8.457912], - [-13.214303, 8.458439], - [-13.21391, 8.458538], - [-13.213416, 8.46011], - [-13.212796, 8.460892], - [-13.212206, 8.461219], - [-13.212017, 8.461525], - [-13.212201, 8.461964], - [-13.211846, 8.462347], - [-13.20632, 8.462348], - [-13.202413, 8.469113], - [-13.204659, 8.473005], - [-13.20462, 8.473043], - [-13.204585, 8.473483], - [-13.204222, 8.474193], - [-13.204938, 8.474545], - [-13.205096, 8.474363], - [-13.205326, 8.474158], - [-13.206319, 8.47588], - [-13.20542, 8.477437], - [-13.204651, 8.477634], - [-13.203398, 8.477726], - [-13.20298, 8.477634], - [-13.202561, 8.477536], - [-13.201905, 8.477631], - [-13.201387, 8.477645], - [-13.200833, 8.477413], - [-13.200266, 8.476821], - [-13.200136, 8.476658], - [-13.19893, 8.476778], - [-13.200367, 8.477661], - [-13.201129, 8.477838], - [-13.201111, 8.477988], - [-13.20109, 8.478223], - [-13.201052, 8.47844], - [-13.200965, 8.478833], - [-13.199699, 8.478513], - [-13.198134, 8.477824], - [-13.198079, 8.477902], - [-13.197994, 8.478226], - [-13.198361, 8.479079], - [-13.198344, 8.479284], - [-13.19856, 8.47921], - [-13.199462, 8.479163], - [-13.19901, 8.480643], - [-13.200423, 8.480659], - [-13.200929, 8.48024], - [-13.201145, 8.479484], - [-13.20251, 8.479704], - [-13.203724, 8.480458], - [-13.204709, 8.480696], - [-13.204895, 8.48112], - [-13.205186, 8.480808], - [-13.205324, 8.480726], - [-13.205866, 8.480531], - [-13.205968, 8.480419], - [-13.206127, 8.480109], - [-13.206185, 8.480027], - [-13.206216, 8.479891], - [-13.206225, 8.479777], - [-13.206151, 8.479757], - [-13.206148, 8.479529], - [-13.206167, 8.479371], - [-13.206219, 8.478833], - [-13.20675, 8.477975], - [-13.206848, 8.477449], - [-13.206777, 8.477385], - [-13.206781, 8.47736], - [-13.206838, 8.477315], - [-13.206789, 8.477093], - [-13.207193, 8.477076], - [-13.207342, 8.476961], - [-13.207875, 8.476602], - [-13.208264, 8.476332], - [-13.207208, 8.47451], - [-13.207277, 8.472903], - [-13.206851, 8.472525], - [-13.207015, 8.472239], - [-13.207134, 8.471157], - [-13.206974, 8.47095], - [-13.206961, 8.47093], - [-13.207015, 8.470893], - [-13.207344, 8.470849], - [-13.208077, 8.471852], - [-13.208251, 8.471407], - [-13.208155, 8.470071], - [-13.208373, 8.468548], - [-13.208811, 8.468205], - [-13.209128, 8.467784], - [-13.209415, 8.467723], - [-13.210114, 8.46856], - [-13.210457, 8.469237], - [-13.210812, 8.469398], - [-13.210873, 8.469419], - [-13.211209, 8.468622], - [-13.211155, 8.465849], - [-13.211661, 8.464607], - [-13.211993, 8.464118], - [-13.211994, 8.464118], - [-13.212151, 8.464272], - [-13.212415, 8.464533], - [-13.213006, 8.463802], - [-13.213014, 8.463737], - [-13.213577, 8.462042], - [-13.214706, 8.462513], - [-13.214802, 8.46234], - [-13.214924, 8.462002], - [-13.215063, 8.461554], - [-13.215258, 8.460868], - [-13.215358, 8.460405], - [-13.215697, 8.459404], - [-13.21728, 8.459686], - [-13.217772, 8.459394] - ] - ], - "type": "Polygon" - }, - "id": 428, - "properties": { - "cc:admin:id": ["26"], - "cc:oBld:total": 1815, - "cc:pop:fifteen-to-twenty-four": 4891.372580138035, - "cc:pop:grid3-total": 19423.885563315554, - "cc:pop:kontur-total": 23900, - "cc:pop:men": 10525.03926261622, - "cc:pop:sixty-plus": 1658.50026968249, - "cc:pop:total": 21371.475874353735, - "cc:pop:under-five": 2471.354078290041, - "cc:pop:women": 10846.436611737518, - "cc:pop:women-fiften-to-forty-nine": 5797.260849432636, - "cc:pop:wp-total": 16089.971787039372, - "cc:pop:wp-total-UN": 18656.000935308162, - "cc:id": "428", - "cc:Name": "Moyiba CHC", - "cc:site": [-13.2064, 8.473], - "user:parentName": "Freetown", - "user:code": "OU_278331", - "user:orgUnitId": "zEsMdeJOty4", - "user:level": "4", - "user:parentId": "C9uduqDZr9d" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.397681, 8.147171], - [-12.397426, 8.146901], - [-12.397164, 8.147057], - [-12.396552, 8.148171], - [-12.396108, 8.149405], - [-12.395446, 8.149993], - [-12.394513, 8.15041], - [-12.39315, 8.151624], - [-12.393124, 8.152672], - [-12.392804, 8.153027], - [-12.39277, 8.15343], - [-12.39252, 8.153793], - [-12.391123, 8.155096], - [-12.389582, 8.154583], - [-12.38625, 8.150417], - [-12.386249, 8.14608], - [-12.382102, 8.146079], - [-12.378196, 8.139315], - [-12.370384, 8.139314], - [-12.366477, 8.132549], - [-12.359165, 8.132548], - [-12.359164, 8.132547], - [-12.359232, 8.132313], - [-12.356743, 8.136624], - [-12.348931, 8.136624], - [-12.345832, 8.131257], - [-12.345416, 8.132917], - [-12.34424, 8.133857], - [-12.34266, 8.133858], - [-12.342597, 8.133688], - [-12.340651, 8.132604], - [-12.339813, 8.131591], - [-12.339196, 8.131264], - [-12.337764, 8.13063], - [-12.336971, 8.13083], - [-12.336606, 8.130725], - [-12.336273, 8.128436], - [-12.336551, 8.1273], - [-12.336509, 8.127093], - [-12.332229, 8.127093], - [-12.331249, 8.135416], - [-12.327917, 8.135417], - [-12.327917, 8.141777], - [-12.3303, 8.1418], - [-12.334399, 8.142699], - [-12.338599, 8.144499], - [-12.342399, 8.146399], - [-12.3453, 8.1486], - [-12.347799, 8.151499], - [-12.348899, 8.153599], - [-12.3496, 8.1569], - [-12.3497, 8.1608], - [-12.349799, 8.186799], - [-12.34988, 8.189206], - [-12.356249, 8.187084], - [-12.357083, 8.187083], - [-12.362916, 8.184584], - [-12.365021, 8.185635], - [-12.365824, 8.184518], - [-12.36667, 8.18386], - [-12.367243, 8.183748], - [-12.367601, 8.183437], - [-12.367917, 8.18252], - [-12.368235, 8.182545], - [-12.368558, 8.181664], - [-12.368879, 8.181259], - [-12.3698, 8.181382], - [-12.370334, 8.1815], - [-12.37061, 8.181405], - [-12.371046, 8.181073], - [-12.372256, 8.179104], - [-12.372756, 8.17831], - [-12.372946, 8.177687], - [-12.372926, 8.177666], - [-12.376247, 8.173003], - [-12.376761, 8.17288], - [-12.376921, 8.173214], - [-12.377228, 8.172895], - [-12.378686, 8.173688], - [-12.379259, 8.173782], - [-12.381091, 8.173644], - [-12.383091, 8.173248], - [-12.383671, 8.173584], - [-12.384866, 8.1738], - [-12.385302, 8.17405], - [-12.385694, 8.173989], - [-12.386151, 8.173675], - [-12.386435, 8.172905], - [-12.386298, 8.172423], - [-12.385257, 8.172009], - [-12.3847, 8.171302], - [-12.384031, 8.169276], - [-12.383095, 8.167803], - [-12.382911, 8.166734], - [-12.383091, 8.166545], - [-12.38405, 8.166877], - [-12.384474, 8.166771], - [-12.386782, 8.165265], - [-12.387405, 8.163184], - [-12.387667, 8.162926], - [-12.387941, 8.162934], - [-12.388314, 8.162692], - [-12.389413, 8.161402], - [-12.390962, 8.1602], - [-12.392376, 8.158535], - [-12.393022, 8.158232], - [-12.393546, 8.157682], - [-12.394425, 8.156477], - [-12.394858, 8.155504], - [-12.395309, 8.155084], - [-12.395308, 8.154529], - [-12.395009, 8.153882], - [-12.394785, 8.153737], - [-12.394464, 8.15384], - [-12.393687, 8.152988], - [-12.393698, 8.152008], - [-12.39386, 8.151589], - [-12.394694, 8.150707], - [-12.39543, 8.150612], - [-12.395752, 8.150102], - [-12.396346, 8.14969], - [-12.396558, 8.14892], - [-12.397627, 8.147243], - [-12.397681, 8.147171] - ] - ], - "type": "Polygon" - }, - "id": 429, - "properties": { - "cc:admin:id": ["45"], - "cc:oBld:total": 271, - "cc:pop:fifteen-to-twenty-four": 176.7874176103576, - "cc:pop:grid3-total": 943.7141441883449, - "cc:pop:kontur-total": 994.5462978791564, - "cc:pop:men": 441.7298698687865, - "cc:pop:sixty-plus": 51, - "cc:pop:total": 908.1496704414304, - "cc:pop:under-five": 168.78741761035758, - "cc:pop:women": 466.4198005726439, - "cc:pop:women-fiften-to-forty-nine": 224.78741761035758, - "cc:pop:wp-total": 620.8672732285709, - "cc:pop:wp-total-UN": 721.6734243270994, - "cc:id": "429", - "cc:Name": "Moyollo MCHP", - "cc:site": [-12.3533, 8.159], - "user:parentName": "Fakunya", - "user:code": "OU_247093", - "user:orgUnitId": "UgUcwzbEv2C", - "user:level": "4", - "user:parentId": "vULnao2hV5v" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.122899, 7.6535], - [-12.118199, 7.651999], - [-12.112, 7.6495], - [-12.108, 7.6465], - [-12.104699, 7.642599], - [-12.103299, 7.639399], - [-12.100999, 7.634999], - [-12.100399, 7.632399], - [-12.1003, 7.6284], - [-12.100999, 7.6245], - [-12.1064, 7.613399], - [-12.1075, 7.610099], - [-12.108299, 7.6036], - [-12.105399, 7.6048], - [-12.1004, 7.606399], - [-12.0969, 7.608099], - [-12.094499, 7.608599], - [-12.092, 7.608199], - [-12.0873, 7.6059], - [-12.0838, 7.6039], - [-12.082047, 7.602389], - [-12.081397, 7.603276], - [-12.080322, 7.606887], - [-12.079913, 7.608711], - [-12.080953, 7.611], - [-12.088747, 7.609584], - [-12.088749, 7.609585], - [-12.08625, 7.61375], - [-12.085609, 7.61759], - [-12.083188, 7.617662], - [-12.080977, 7.617145], - [-12.076859, 7.617621], - [-12.079582, 7.62375], - [-12.079583, 7.627917], - [-12.080417, 7.636249], - [-12.083066, 7.63625], - [-12.080959, 7.639901], - [-12.084864, 7.646667], - [-12.080959, 7.653432], - [-12.075202, 7.653433], - [-12.079583, 7.657083], - [-12.081953, 7.657084], - [-12.081123, 7.658523], - [-12.08503, 7.665288], - [-12.090543, 7.665289], - [-12.08875, 7.667084], - [-12.08875, 7.680378], - [-12.093288, 7.680379], - [-12.095822, 7.684768], - [-12.0992, 7.680599], - [-12.105999, 7.6682], - [-12.109199, 7.6643], - [-12.112, 7.661699], - [-12.117699, 7.6579], - [-12.122899, 7.6535] - ] - ], - "type": "Polygon" - }, - "id": 430, - "properties": { - "cc:admin:id": ["65"], - "cc:oBld:total": 2, - "cc:pop:fifteen-to-twenty-four": 277.71538929518164, - "cc:pop:grid3-total": 1261.2372110805943, - "cc:pop:kontur-total": 1606.5714562457629, - "cc:pop:men": 713.4726728040092, - "cc:pop:sixty-plus": 99.9338151934078, - "cc:pop:total": 1480.084130744423, - "cc:pop:under-five": 251.12429810343278, - "cc:pop:women": 766.6114579404135, - "cc:pop:women-fiften-to-forty-nine": 366.89244498358676, - "cc:pop:wp-total": 1129.6835562264146, - "cc:pop:wp-total-UN": 1308.6834663105342, - "cc:id": "430", - "cc:Name": "Moyowa MCHP", - "cc:site": [-12.1005, 7.6449], - "user:parentName": "Jong", - "user:code": "OU_197387", - "user:orgUnitId": "sY1WN6LjmAx", - "user:level": "4", - "user:parentId": "VCtF1DbspR5" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.230417, 8.731249], - [-13.230416, 8.730416], - [-13.226127, 8.725413], - [-13.226448, 8.724936], - [-13.227585, 8.723766], - [-13.230187, 8.722745], - [-13.230163, 8.722667], - [-13.22893, 8.72212], - [-13.226012, 8.721481], - [-13.224895, 8.720818], - [-13.224407, 8.720351], - [-13.224113, 8.720227], - [-13.225724, 8.71951], - [-13.226385, 8.719079], - [-13.228386, 8.717917], - [-13.227916, 8.717916], - [-13.224582, 8.714583], - [-13.223749, 8.714582], - [-13.21875, 8.712082], - [-13.220026, 8.708891], - [-13.218349, 8.708884], - [-13.218257, 8.708937], - [-13.217917, 8.707916], - [-13.217917, 8.707083], - [-13.222916, 8.702083], - [-13.222916, 8.701696], - [-13.219099, 8.7032], - [-13.2126, 8.704099], - [-13.2091, 8.704999], - [-13.206199, 8.7072], - [-13.203599, 8.7105], - [-13.201399, 8.7144], - [-13.198299, 8.717899], - [-13.194999, 8.7194], - [-13.1861, 8.7244], - [-13.1839, 8.7288], - [-13.183199, 8.735699], - [-13.180799, 8.7404], - [-13.176899, 8.743899], - [-13.1698, 8.746799], - [-13.1659, 8.7454], - [-13.165495, 8.745038], - [-13.164748, 8.746027], - [-13.163088, 8.746169], - [-13.161257, 8.74602], - [-13.160464, 8.74616], - [-13.159809, 8.746163], - [-13.161249, 8.756249], - [-13.157917, 8.757083], - [-13.154582, 8.760416], - [-13.150417, 8.760417], - [-13.150417, 8.762082], - [-13.150635, 8.763613], - [-13.155867, 8.763614], - [-13.159772, 8.770379], - [-13.160416, 8.77038], - [-13.160416, 8.77443], - [-13.159244, 8.774785], - [-13.157917, 8.775352], - [-13.157917, 8.775416], - [-13.161249, 8.782917], - [-13.160417, 8.786249], - [-13.15875, 8.787083], - [-13.158443, 8.788309], - [-13.158654, 8.788346], - [-13.158653, 8.78886], - [-13.159081, 8.788951], - [-13.159167, 8.789636], - [-13.16072, 8.789515], - [-13.162012, 8.790165], - [-13.162016, 8.789651], - [-13.162532, 8.78978], - [-13.162766, 8.789774], - [-13.163749, 8.791249], - [-13.164219, 8.792659], - [-13.164218, 8.792659], - [-13.164072, 8.792622], - [-13.163815, 8.792364], - [-13.163037, 8.79236], - [-13.162652, 8.791973], - [-13.162783, 8.791458], - [-13.161486, 8.791967], - [-13.16135, 8.793511], - [-13.161089, 8.793769], - [-13.161087, 8.794283], - [-13.161215, 8.794541], - [-13.16225, 8.794547], - [-13.161724, 8.796347], - [-13.161982, 8.796349], - [-13.162243, 8.796094], - [-13.162498, 8.796866], - [-13.163017, 8.796611], - [-13.16302, 8.796097], - [-13.163278, 8.796098], - [-13.163277, 8.796613], - [-13.163383, 8.796614], - [-13.163384, 8.796615], - [-13.162916, 8.797082], - [-13.162083, 8.797083], - [-13.159583, 8.802082], - [-13.159582, 8.80375], - [-13.159071, 8.805799], - [-13.1626, 8.8061], - [-13.167099, 8.807299], - [-13.177, 8.8119], - [-13.177199, 8.8155], - [-13.171, 8.821699], - [-13.1689, 8.825], - [-13.1681, 8.8289], - [-13.168899, 8.833099], - [-13.169082, 8.833727], - [-13.169136, 8.83375], - [-13.170416, 8.833749], - [-13.17114, 8.830132], - [-13.171335, 8.830084], - [-13.171533, 8.829942], - [-13.171689, 8.829825], - [-13.171787, 8.829763], - [-13.172715, 8.830071], - [-13.172978, 8.830488], - [-13.173037, 8.83061], - [-13.173267, 8.831139], - [-13.173459, 8.83134], - [-13.173723, 8.831388], - [-13.174141, 8.831319], - [-13.174286, 8.831144], - [-13.174523, 8.830662], - [-13.174603, 8.83061], - [-13.174763, 8.830635], - [-13.17487, 8.830636], - [-13.175074, 8.830598], - [-13.175386, 8.830407], - [-13.175637, 8.83019], - [-13.175718, 8.830021], - [-13.175756, 8.829904], - [-13.175901, 8.829613], - [-13.17603, 8.829501], - [-13.176437, 8.829189], - [-13.175791, 8.829251], - [-13.17579, 8.829249], - [-13.179582, 8.827083], - [-13.180417, 8.827917], - [-13.185416, 8.828749], - [-13.187082, 8.828749], - [-13.188749, 8.822083], - [-13.18875, 8.82125], - [-13.189411, 8.821439], - [-13.189571, 8.822506], - [-13.192685, 8.821105], - [-13.19562, 8.820511], - [-13.19625, 8.822082], - [-13.199707, 8.823235], - [-13.199954, 8.818176], - [-13.201769, 8.81754], - [-13.202811, 8.816387], - [-13.203588, 8.816518], - [-13.204369, 8.815749], - [-13.205406, 8.815497], - [-13.206249, 8.8155], - [-13.20625, 8.814582], - [-13.213425, 8.810995], - [-13.213591, 8.810512], - [-13.214203, 8.809734], - [-13.21204, 8.805837], - [-13.21245, 8.805353], - [-13.213113, 8.805262], - [-13.213553, 8.803062], - [-13.213665, 8.803086], - [-13.214582, 8.80125], - [-13.20875, 8.794582], - [-13.209583, 8.792916], - [-13.213749, 8.791249], - [-13.214372, 8.788136], - [-13.214303, 8.788107], - [-13.216249, 8.782917], - [-13.212917, 8.782916], - [-13.212917, 8.777473], - [-13.213481, 8.777293], - [-13.214599, 8.776516], - [-13.217242, 8.776591], - [-13.218272, 8.776485], - [-13.217917, 8.775416], - [-13.222916, 8.773749], - [-13.229582, 8.767916], - [-13.226249, 8.762917], - [-13.220417, 8.761249], - [-13.222916, 8.757082], - [-13.220417, 8.752082], - [-13.219582, 8.744583], - [-13.217083, 8.742917], - [-13.217083, 8.740417], - [-13.222082, 8.737083], - [-13.227916, 8.737083], - [-13.229582, 8.736249], - [-13.229583, 8.732766], - [-13.229907, 8.732774], - [-13.230417, 8.731249] - ] - ], - "type": "Polygon" - }, - "id": 431, - "properties": { - "cc:admin:id": ["74"], - "cc:oBld:total": 153, - "cc:pop:fifteen-to-twenty-four": 1537.9129904598356, - "cc:pop:grid3-total": 4201.168108210551, - "cc:pop:kontur-total": 9017.626190355108, - "cc:pop:men": 4001.4810250880655, - "cc:pop:sixty-plus": 462.9883915344908, - "cc:pop:total": 8496.97995315898, - "cc:pop:under-five": 1318.5714833501654, - "cc:pop:women": 4495.498928070919, - "cc:pop:women-fiften-to-forty-nine": 2235.8294878894903, - "cc:pop:wp-total": 8067.825812434049, - "cc:pop:wp-total-UN": 9353.482329460907, - "cc:id": "431", - "cc:Name": "Musaia CHP", - "cc:site": [-13.18594, 8.79137], - "user:parentName": "Lokomasama", - "user:code": "OU_254986", - "user:orgUnitId": "sTOXJA2KcY2", - "user:level": "4", - "user:parentId": "fRLX08WHWpL" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.681991, 8.086036], - [-11.681999, 8.085699], - [-11.6819, 8.0779], - [-11.6812, 8.0728], - [-11.6785, 8.0662], - [-11.677899, 8.0637], - [-11.6728, 8.0637], - [-11.6679, 8.064299], - [-11.662399, 8.0665], - [-11.658699, 8.0672], - [-11.6535, 8.067499], - [-11.6189, 8.0675], - [-11.6137, 8.0673], - [-11.610799, 8.066599], - [-11.602, 8.0623], - [-11.5959, 8.0572], - [-11.5917, 8.0541], - [-11.591916, 8.076783], - [-11.594583, 8.07625], - [-11.597082, 8.079583], - [-11.597083, 8.081249], - [-11.600417, 8.08125], - [-11.602917, 8.087916], - [-11.603749, 8.087917], - [-11.60375, 8.088749], - [-11.604582, 8.08875], - [-11.604583, 8.095416], - [-11.606249, 8.09625], - [-11.607082, 8.098749], - [-11.607083, 8.099583], - [-11.607917, 8.099584], - [-11.608749, 8.104583], - [-11.607916, 8.106249], - [-11.602917, 8.10625], - [-11.602916, 8.113749], - [-11.599583, 8.117917], - [-11.600416, 8.121249], - [-11.600417, 8.122083], - [-11.599582, 8.122084], - [-11.59875, 8.126249], - [-11.59875, 8.128651], - [-11.603184, 8.128251], - [-11.60453, 8.127864], - [-11.60625, 8.129583], - [-11.612082, 8.131249], - [-11.615416, 8.129584], - [-11.61625, 8.132083], - [-11.624582, 8.132916], - [-11.622083, 8.13875], - [-11.622917, 8.144583], - [-11.63125, 8.142917], - [-11.632916, 8.149583], - [-11.627917, 8.157083], - [-11.640417, 8.157917], - [-11.641249, 8.167083], - [-11.642082, 8.167917], - [-11.642082, 8.170416], - [-11.639583, 8.172917], - [-11.639582, 8.17375], - [-11.637917, 8.176249], - [-11.642916, 8.18125], - [-11.642916, 8.184583], - [-11.642083, 8.185417], - [-11.642083, 8.193749], - [-11.642412, 8.194734], - [-11.6434, 8.194499], - [-11.6465, 8.1943], - [-11.649, 8.1949], - [-11.6538, 8.197199], - [-11.658099, 8.197699], - [-11.660999, 8.196699], - [-11.6635, 8.193799], - [-11.6643, 8.191099], - [-11.664599, 8.1858], - [-11.665299, 8.1825], - [-11.668999, 8.1749], - [-11.6707, 8.172599], - [-11.677399, 8.1655], - [-11.680999, 8.160699], - [-11.6785, 8.1569], - [-11.676, 8.1541], - [-11.6726, 8.1511], - [-11.669299, 8.148699], - [-11.667999, 8.146899], - [-11.6657, 8.1412], - [-11.6622, 8.1365], - [-11.6607, 8.133399], - [-11.661, 8.1301], - [-11.6625, 8.126599], - [-11.6639, 8.120699], - [-11.667799, 8.1124], - [-11.669299, 8.1102], - [-11.674899, 8.1042], - [-11.6776, 8.100699], - [-11.679, 8.097499], - [-11.6812, 8.093099], - [-11.681899, 8.0895], - [-11.681991, 8.086036] - ] - ], - "type": "Polygon" - }, - "id": 432, - "properties": { - "cc:admin:id": ["98"], - "cc:oBld:total": 56, - "cc:pop:fifteen-to-twenty-four": 1631.5271801371428, - "cc:pop:grid3-total": 6181.752039706859, - "cc:pop:kontur-total": 8217.244410615658, - "cc:pop:men": 4273.8115229827135, - "cc:pop:sixty-plus": 649.3319350495361, - "cc:pop:total": 9105.460284050178, - "cc:pop:under-five": 1526.5814414328925, - "cc:pop:women": 4831.648761067465, - "cc:pop:women-fiften-to-forty-nine": 2289.4513785792433, - "cc:pop:wp-total": 7752.175366995634, - "cc:pop:wp-total-UN": 9002.75494456605, - "cc:id": "432", - "cc:Name": "Nengbema CHC", - "cc:site": [-11.6528, 8.1271], - "user:parentName": "Niawa Lenga", - "user:code": "OU_1082", - "user:orgUnitId": "rm60vuHyQXj", - "user:level": "4", - "user:parentId": "I4jWcnFmgEC" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.794793, 8.736119], - [-12.793834, 8.73681], - [-12.792535, 8.736775], - [-12.791595, 8.736077], - [-12.791251, 8.736408], - [-12.79125, 8.736407], - [-12.791249, 8.735416], - [-12.789934, 8.732126], - [-12.791006, 8.731827], - [-12.791963, 8.73131], - [-12.792126, 8.730975], - [-12.790265, 8.731746], - [-12.789731, 8.731622], - [-12.789582, 8.73125], - [-12.785417, 8.731249], - [-12.784582, 8.730417], - [-12.78375, 8.730416], - [-12.783749, 8.729583], - [-12.781014, 8.72832], - [-12.781051, 8.728285], - [-12.781986, 8.727733], - [-12.782452, 8.727695], - [-12.783581, 8.728105], - [-12.782621, 8.727092], - [-12.781856, 8.726874], - [-12.780545, 8.72772], - [-12.780347, 8.728012], - [-12.774248, 8.725197], - [-12.774229, 8.724576], - [-12.773883, 8.723023], - [-12.773815, 8.72153], - [-12.773792, 8.721339], - [-12.775371, 8.721615], - [-12.775555, 8.720803], - [-12.77268, 8.718156], - [-12.772742, 8.715985], - [-12.773197, 8.711927], - [-12.774152, 8.709316], - [-12.774273, 8.707659], - [-12.774103, 8.70703], - [-12.773008, 8.705606], - [-12.772352, 8.705165], - [-12.771869, 8.704405], - [-12.77115, 8.703241], - [-12.771135, 8.703249], - [-12.770868, 8.702832], - [-12.770531, 8.703059], - [-12.769782, 8.703169], - [-12.769346, 8.702849], - [-12.769069, 8.702044], - [-12.769014, 8.701112], - [-12.76917, 8.700645], - [-12.769625, 8.700371], - [-12.770115, 8.700882], - [-12.770668, 8.701144], - [-12.770671, 8.699979], - [-12.770585, 8.699786], - [-12.769912, 8.700095], - [-12.769292, 8.699995], - [-12.768865, 8.699208], - [-12.768115, 8.698313], - [-12.767856, 8.698166], - [-12.767412, 8.698376], - [-12.766949, 8.697369], - [-12.766514, 8.697041], - [-12.765996, 8.696967], - [-12.765693, 8.69665], - [-12.765616, 8.696603], - [-12.764193, 8.695696], - [-12.764127, 8.695367], - [-12.763813, 8.695166], - [-12.762527, 8.695549], - [-12.761824, 8.695102], - [-12.761314, 8.695741], - [-12.76125, 8.695745], - [-12.761249, 8.694576], - [-12.75903, 8.693662], - [-12.758426, 8.693311], - [-12.759776, 8.689932], - [-12.75949, 8.689871], - [-12.758768, 8.68839], - [-12.758028, 8.688169], - [-12.757492, 8.687512], - [-12.757214, 8.68667], - [-12.756891, 8.686331], - [-12.755789, 8.686039], - [-12.754919, 8.686019], - [-12.753473, 8.685335], - [-12.752233, 8.685634], - [-12.751793, 8.686028], - [-12.751791, 8.686028], - [-12.752001, 8.685177], - [-12.752403, 8.685146], - [-12.752328, 8.684614], - [-12.75266, 8.684174], - [-12.753075, 8.684249], - [-12.75319, 8.684725], - [-12.75355, 8.685081], - [-12.754903, 8.68511], - [-12.755831, 8.685633], - [-12.756418, 8.685137], - [-12.756522, 8.684791], - [-12.756411, 8.684337], - [-12.756412, 8.684336], - [-12.756997, 8.685053], - [-12.75747, 8.684988], - [-12.757602, 8.685277], - [-12.757385, 8.68555], - [-12.757385, 8.685933], - [-12.758009, 8.687131], - [-12.758076, 8.687552], - [-12.758577, 8.687403], - [-12.758785, 8.687562], - [-12.760077, 8.68918], - [-12.761249, 8.68625], - [-12.758574, 8.680901], - [-12.757964, 8.681199], - [-12.755737, 8.6816], - [-12.755046, 8.681901], - [-12.754076, 8.682694], - [-12.754307, 8.680381], - [-12.754243, 8.679417], - [-12.75428, 8.678095], - [-12.75409, 8.677404], - [-12.753878, 8.676936], - [-12.754068, 8.67625], - [-12.747083, 8.676249], - [-12.747083, 8.672083], - [-12.750416, 8.664583], - [-12.74875, 8.660417], - [-12.742917, 8.662083], - [-12.742916, 8.651454], - [-12.740767, 8.652115], - [-12.738467, 8.651671], - [-12.735831, 8.651144], - [-12.734727, 8.650686], - [-12.733339, 8.649181], - [-12.732896, 8.648901], - [-12.733912, 8.646325], - [-12.734336, 8.645778], - [-12.738759, 8.641884], - [-12.739039, 8.641598], - [-12.73877, 8.641504], - [-12.737192, 8.640841], - [-12.736834, 8.640523], - [-12.73577, 8.640166], - [-12.73375, 8.639833], - [-12.73375, 8.63625], - [-12.734582, 8.634584], - [-12.732082, 8.63125], - [-12.727917, 8.629584], - [-12.729582, 8.637083], - [-12.729276, 8.637697], - [-12.731164, 8.638665], - [-12.730647, 8.639381], - [-12.72976, 8.640139], - [-12.7296, 8.64051], - [-12.729645, 8.64144], - [-12.728422, 8.64274], - [-12.727545, 8.643414], - [-12.727432, 8.643998], - [-12.725588, 8.644405], - [-12.725289, 8.644976], - [-12.724039, 8.645229], - [-12.723943, 8.646054], - [-12.723577, 8.647503], - [-12.72271, 8.650025], - [-12.722774, 8.650891], - [-12.722265, 8.651692], - [-12.721637, 8.65199], - [-12.720822, 8.653314], - [-12.720697, 8.653587], - [-12.723915, 8.659282], - [-12.726623, 8.66404], - [-12.726457, 8.663994], - [-12.722371, 8.666207], - [-12.72112, 8.667065], - [-12.722739, 8.669871], - [-12.721754, 8.671578], - [-12.72125, 8.672083], - [-12.720417, 8.675416], - [-12.71875, 8.677083], - [-12.718749, 8.682479], - [-12.716532, 8.681676], - [-12.712347, 8.678689], - [-12.71219, 8.678643], - [-12.707916, 8.682916], - [-12.704583, 8.684583], - [-12.704583, 8.689582], - [-12.712082, 8.695417], - [-12.711618, 8.697273], - [-12.71102, 8.69624], - [-12.710085, 8.69465], - [-12.707727, 8.69597], - [-12.710404, 8.7007], - [-12.71108, 8.701908], - [-12.700586, 8.707849], - [-12.701655, 8.709747], - [-12.702785, 8.711743], - [-12.703874, 8.713684], - [-12.705819, 8.717162], - [-12.705357, 8.717129], - [-12.704939, 8.717558], - [-12.703605, 8.717184], - [-12.701653, 8.714189], - [-12.699561, 8.714469], - [-12.697751, 8.714469], - [-12.696587, 8.713534], - [-12.696624, 8.713253], - [-12.696275, 8.712945], - [-12.695868, 8.712859], - [-12.695745, 8.712355], - [-12.695924, 8.712035], - [-12.694276, 8.711007], - [-12.692912, 8.710903], - [-12.6923, 8.709803], - [-12.692111, 8.709016], - [-12.692678, 8.708804], - [-12.693246, 8.708182], - [-12.693398, 8.707842], - [-12.693206, 8.707571], - [-12.692485, 8.708443], - [-12.691481, 8.708473], - [-12.691176, 8.708413], - [-12.690161, 8.707311], - [-12.68934, 8.706929], - [-12.689483, 8.707691], - [-12.690345, 8.707822], - [-12.691176, 8.709075], - [-12.691208, 8.709566], - [-12.692028, 8.7105], - [-12.691877, 8.710991], - [-12.691461, 8.711303], - [-12.691319, 8.711683], - [-12.691612, 8.712365], - [-12.691389, 8.712846], - [-12.689493, 8.714632], - [-12.689796, 8.714652], - [-12.69071, 8.71395], - [-12.691694, 8.713098], - [-12.692253, 8.712346], - [-12.693673, 8.711594], - [-12.694526, 8.711945], - [-12.695297, 8.713819], - [-12.696149, 8.714481], - [-12.696728, 8.714532], - [-12.697062, 8.715073], - [-12.69762, 8.715143], - [-12.698524, 8.714894], - [-12.699996, 8.714953], - [-12.701191, 8.714601], - [-12.701696, 8.71511], - [-12.702557, 8.716484], - [-12.702618, 8.717095], - [-12.702315, 8.718019], - [-12.702365, 8.718499], - [-12.701918, 8.719101], - [-12.701412, 8.719022], - [-12.70059, 8.719382], - [-12.700325, 8.719112], - [-12.699879, 8.719112], - [-12.699736, 8.719412], - [-12.699188, 8.719323], - [-12.698276, 8.719694], - [-12.697372, 8.720587], - [-12.697297, 8.720623], - [-12.695283, 8.721294], - [-12.694464, 8.721137], - [-12.693874, 8.720797], - [-12.693208, 8.720747], - [-12.691065, 8.721429], - [-12.688123, 8.721649], - [-12.687392, 8.720847], - [-12.687635, 8.718521], - [-12.687352, 8.718761], - [-12.687229, 8.72001], - [-12.686827, 8.72089], - [-12.686439, 8.721343], - [-12.685465, 8.72177], - [-12.684145, 8.722904], - [-12.684432, 8.723046], - [-12.685762, 8.72257], - [-12.684491, 8.723841], - [-12.685361, 8.724098], - [-12.685269, 8.724686], - [-12.686942, 8.725773], - [-12.686941, 8.725774], - [-12.685417, 8.725332], - [-12.685417, 8.727083], - [-12.686249, 8.730416], - [-12.68125, 8.732083], - [-12.681249, 8.734582], - [-12.679201, 8.739364], - [-12.679219, 8.739368], - [-12.67922, 8.739369], - [-12.677917, 8.744582], - [-12.681376, 8.74516], - [-12.681338, 8.745241], - [-12.680804, 8.747731], - [-12.680905, 8.748326], - [-12.680706, 8.750738], - [-12.68039, 8.75112], - [-12.67938, 8.751842], - [-12.67826, 8.75324], - [-12.677954, 8.754417], - [-12.676242, 8.757074], - [-12.679582, 8.760417], - [-12.677487, 8.766005], - [-12.678004, 8.766487], - [-12.67712, 8.766339], - [-12.675403, 8.768011], - [-12.674406, 8.768699], - [-12.672666, 8.768814], - [-12.67146, 8.768356], - [-12.670556, 8.767783], - [-12.670508, 8.76682], - [-12.670243, 8.766721], - [-12.669929, 8.767698], - [-12.670124, 8.76923], - [-12.670384, 8.769765], - [-12.670466, 8.771243], - [-12.66875, 8.773918], - [-12.66875, 8.774582], - [-12.670416, 8.775416], - [-12.670844, 8.776485], - [-12.671499, 8.777027], - [-12.672291, 8.777921], - [-12.67315, 8.778512], - [-12.673496, 8.779084], - [-12.676089, 8.781121], - [-12.677106, 8.78162], - [-12.678456, 8.783276], - [-12.683712, 8.78678], - [-12.683751, 8.787083], - [-12.685416, 8.787916], - [-12.689582, 8.787082], - [-12.69125, 8.78125], - [-12.701249, 8.785416], - [-12.700417, 8.790416], - [-12.700417, 8.791736], - [-12.702633, 8.79101], - [-12.703703, 8.790893], - [-12.705612, 8.791163], - [-12.706772, 8.791502], - [-12.708418, 8.791108], - [-12.708886, 8.790781], - [-12.710989, 8.790018], - [-12.712673, 8.789031], - [-12.713829, 8.78867], - [-12.716155, 8.788258], - [-12.717839, 8.786939], - [-12.719348, 8.786362], - [-12.720269, 8.78583], - [-12.722233, 8.785176], - [-12.723327, 8.783939], - [-12.723616, 8.783349], - [-12.724002, 8.782925], - [-12.724876, 8.782487], - [-12.726359, 8.782119], - [-12.719606, 8.779869], - [-12.719487, 8.779695], - [-12.719314, 8.779154], - [-12.719085, 8.777707], - [-12.719239, 8.777313], - [-12.721682, 8.77761], - [-12.722566, 8.777253], - [-12.723373, 8.775869], - [-12.72331, 8.775526], - [-12.722823, 8.774918], - [-12.722814, 8.774431], - [-12.723069, 8.774015], - [-12.723647, 8.773626], - [-12.72429, 8.773547], - [-12.724631, 8.773728], - [-12.725096, 8.775583], - [-12.725518, 8.776087], - [-12.726195, 8.776026], - [-12.727236, 8.774697], - [-12.727335, 8.773912], - [-12.726399, 8.771789], - [-12.725915, 8.769926], - [-12.726593, 8.769087], - [-12.728363, 8.768681], - [-12.730675, 8.76867], - [-12.733321, 8.768309], - [-12.736262, 8.766943], - [-12.737577, 8.765057], - [-12.738989, 8.764086], - [-12.739598, 8.763911], - [-12.742393, 8.763945], - [-12.743758, 8.76414], - [-12.745256, 8.764944], - [-12.745905, 8.764978], - [-12.749091, 8.764457], - [-12.750765, 8.764352], - [-12.752983, 8.76557], - [-12.753476, 8.765575], - [-12.755454, 8.76522], - [-12.756246, 8.764175], - [-12.757301, 8.763364], - [-12.758768, 8.762621], - [-12.760639, 8.761348], - [-12.761564, 8.760946], - [-12.762365, 8.760922], - [-12.762659, 8.761242], - [-12.762822, 8.762502], - [-12.763188, 8.762429], - [-12.763485, 8.762816], - [-12.765237, 8.763581], - [-12.766898, 8.764843], - [-12.767245, 8.765761], - [-12.767383, 8.766864], - [-12.767756, 8.767248], - [-12.769228, 8.765908], - [-12.770246, 8.765902], - [-12.770523, 8.764499], - [-12.770982, 8.763704], - [-12.771788, 8.763044], - [-12.772347, 8.76282], - [-12.772327, 8.762436], - [-12.771871, 8.752972], - [-12.771587, 8.751729], - [-12.771125, 8.750807], - [-12.77033, 8.749875], - [-12.769733, 8.749423], - [-12.767756, 8.748616], - [-12.767756, 8.748615], - [-12.768139, 8.748609], - [-12.77055, 8.749288], - [-12.771479, 8.749545], - [-12.775428, 8.750936], - [-12.7761, 8.751037], - [-12.777032, 8.752692], - [-12.776985, 8.752738], - [-12.777155, 8.753473], - [-12.778378, 8.752733], - [-12.778614, 8.752554], - [-12.779317, 8.751977], - [-12.779718, 8.751593], - [-12.779488, 8.751139], - [-12.779426, 8.751023], - [-12.779427, 8.751021], - [-12.779986, 8.750937], - [-12.780896, 8.750892], - [-12.782334, 8.751504], - [-12.782159, 8.751266], - [-12.782621, 8.75115], - [-12.782949, 8.750706], - [-12.782001, 8.750225], - [-12.781383, 8.749958], - [-12.781243, 8.749914], - [-12.780742, 8.749435], - [-12.780199, 8.748339], - [-12.779788, 8.746958], - [-12.779808, 8.74695], - [-12.780244, 8.746855], - [-12.780565, 8.746936], - [-12.780758, 8.747213], - [-12.781144, 8.747237], - [-12.782653, 8.746677], - [-12.782921, 8.746392], - [-12.783516, 8.746512], - [-12.784379, 8.74702], - [-12.784518, 8.747923], - [-12.785637, 8.747419], - [-12.786463, 8.747556], - [-12.786463, 8.747558], - [-12.786165, 8.747939], - [-12.786402, 8.748736], - [-12.786695, 8.748793], - [-12.78786, 8.747773], - [-12.787727, 8.746881], - [-12.787489, 8.746943], - [-12.787425, 8.746754], - [-12.787497, 8.74651], - [-12.787832, 8.745407], - [-12.788269, 8.744901], - [-12.788517, 8.744192], - [-12.788868, 8.744216], - [-12.788933, 8.744814], - [-12.789316, 8.745106], - [-12.790056, 8.744751], - [-12.790631, 8.743892], - [-12.790607, 8.743716], - [-12.790439, 8.74342], - [-12.789714, 8.743805], - [-12.789284, 8.743797], - [-12.789179, 8.742529], - [-12.788995, 8.742418], - [-12.788725, 8.742433], - [-12.788558, 8.742347], - [-12.788398, 8.742111], - [-12.788813, 8.740786], - [-12.78898, 8.740588], - [-12.789244, 8.740375], - [-12.789491, 8.740241], - [-12.789985, 8.740023], - [-12.791988, 8.739702], - [-12.79202, 8.73949], - [-12.790416, 8.739341], - [-12.790287, 8.739138], - [-12.792171, 8.737138], - [-12.79285, 8.73751], - [-12.793474, 8.737435], - [-12.794793, 8.736119] - ] - ], - "type": "Polygon" - }, - "id": 433, - "properties": { - "cc:admin:id": ["80"], - "cc:oBld:total": 662, - "cc:pop:fifteen-to-twenty-four": 1576.5044627480445, - "cc:pop:grid3-total": 5249.073091261847, - "cc:pop:kontur-total": 8909.396374166165, - "cc:pop:men": 3986.5140217463477, - "cc:pop:sixty-plus": 445.3442292543429, - "cc:pop:total": 8677.654046406558, - "cc:pop:under-five": 1342.754951743122, - "cc:pop:women": 4691.140024660209, - "cc:pop:women-fiften-to-forty-nine": 2297.8837320657703, - "cc:pop:wp-total": 7371.91163274846, - "cc:pop:wp-total-UN": 8549.842376363144, - "cc:id": "433", - "cc:Name": "New Maforkie CHP", - "cc:site": [-12.762, 8.747], - "user:parentName": "Maforki", - "user:code": "OU_254948", - "user:orgUnitId": "lzz1UhTzO4E", - "user:level": "4", - "user:parentId": "JdqfYTIFZXN" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.039297, 8.370102], - [-13.03906, 8.36964], - [-13.038432, 8.369556], - [-13.037403, 8.368858], - [-13.036811, 8.368432], - [-13.035922, 8.367519], - [-13.034962, 8.367176], - [-13.034051, 8.367389], - [-13.033245, 8.367566], - [-13.032464, 8.367472], - [-13.032346, 8.367069], - [-13.032382, 8.366442], - [-13.032678, 8.365742], - [-13.033282, 8.365282], - [-13.03379, 8.365115], - [-13.034264, 8.364654], - [-13.034738, 8.364216], - [-13.035117, 8.364204], - [-13.035744, 8.364641], - [-13.036183, 8.364913], - [-13.036977, 8.364878], - [-13.037295, 8.364499], - [-13.037533, 8.36393], - [-13.037591, 8.363458], - [-13.03745, 8.36303], - [-13.037439, 8.362403], - [-13.03751, 8.361966], - [-13.037816, 8.361645], - [-13.037935, 8.361172], - [-13.037591, 8.360876], - [-13.036775, 8.360829], - [-13.036632, 8.361066], - [-13.036242, 8.361953], - [-13.036087, 8.362345], - [-13.035697, 8.362628], - [-13.035165, 8.362557], - [-13.034702, 8.362119], - [-13.033979, 8.361526], - [-13.033593, 8.360965], - [-13.032917, 8.3603], - [-13.032316, 8.359345], - [-13.032188, 8.358352], - [-13.032289, 8.356846], - [-13.032348, 8.355357], - [-13.03235, 8.355357], - [-13.032781, 8.359505], - [-13.033749, 8.357083], - [-13.033749, 8.350417], - [-13.029834, 8.346501], - [-13.030141, 8.345448], - [-13.030126, 8.345436], - [-13.030228, 8.345148], - [-13.030204, 8.344956], - [-13.029814, 8.344115], - [-13.029802, 8.343339], - [-13.030137, 8.343054], - [-13.030254, 8.342206], - [-13.030969, 8.342165], - [-13.030975, 8.341707], - [-13.030933, 8.341242], - [-13.030924, 8.340801], - [-13.030616, 8.340759], - [-13.030524, 8.340525], - [-13.030557, 8.340183], - [-13.031522, 8.338358], - [-13.03155, 8.337898], - [-13.031553, 8.337717], - [-13.03153, 8.336728], - [-13.029647, 8.336863], - [-13.029634, 8.336744], - [-13.029641, 8.336403], - [-13.029674, 8.335832], - [-13.029648, 8.335475], - [-13.032348, 8.33557], - [-13.032918, 8.33558], - [-13.034524, 8.33554], - [-13.035615, 8.33539], - [-13.034512, 8.335486], - [-13.029654, 8.335339], - [-13.029642, 8.335129], - [-13.029629, 8.334767], - [-13.029769, 8.334771], - [-13.029712, 8.334015], - [-13.029476, 8.333115], - [-13.029242, 8.332094], - [-13.030749, 8.331609], - [-13.031892, 8.331223], - [-13.032075, 8.330549], - [-13.031742, 8.329793], - [-13.0317, 8.329676], - [-13.032511, 8.328858], - [-13.032163, 8.328327], - [-13.032002, 8.328044], - [-13.031194, 8.327106], - [-13.030674, 8.327475], - [-13.030257, 8.327517], - [-13.030024, 8.327247], - [-13.028286, 8.325495], - [-13.028099, 8.325054], - [-13.028481, 8.324417], - [-13.028932, 8.323554], - [-13.029869, 8.322686], - [-13.028367, 8.322621], - [-13.028337, 8.321572], - [-13.028429, 8.321288], - [-13.028479, 8.321223], - [-13.027939, 8.320628], - [-13.02737, 8.320438], - [-13.027588, 8.320842], - [-13.027398, 8.321222], - [-13.02786, 8.322636], - [-13.02754, 8.322751], - [-13.026109, 8.323478], - [-13.025549, 8.322695], - [-13.025524, 8.322664], - [-13.024935, 8.322866], - [-13.024297, 8.323118], - [-13.02411, 8.323249], - [-13.023797, 8.323288], - [-13.02292, 8.323195], - [-13.022133, 8.323338], - [-13.021547, 8.323352], - [-13.020891, 8.323879], - [-13.020015, 8.324182], - [-13.018749, 8.322917], - [-13.014583, 8.322916], - [-13.013749, 8.31875], - [-13.012082, 8.317084], - [-13.010417, 8.317917], - [-13.00972, 8.320002], - [-13.008506, 8.319428], - [-13.007258, 8.318658], - [-13.004762, 8.316871], - [-13.003344, 8.315835], - [-13.001471, 8.31529], - [-13.000542, 8.315566], - [-13.000043, 8.3154], - [-12.998749, 8.315563], - [-12.997906, 8.31534], - [-12.996844, 8.315448], - [-12.996351, 8.315229], - [-12.995995, 8.314768], - [-12.995417, 8.314711], - [-12.995416, 8.314583], - [-12.992917, 8.312084], - [-12.992082, 8.30875], - [-12.990416, 8.307084], - [-12.987917, 8.307084], - [-12.98375, 8.30875], - [-12.98125, 8.31375], - [-12.981249, 8.315417], - [-12.980706, 8.320311], - [-12.978929, 8.320312], - [-12.978786, 8.322094], - [-12.978369, 8.323192], - [-12.976902, 8.325707], - [-12.976983, 8.325776], - [-12.977517, 8.326093], - [-12.979824, 8.323534], - [-12.980295, 8.323437], - [-12.980845, 8.323788], - [-12.982672, 8.326447], - [-12.982947, 8.327813], - [-12.984521, 8.327866], - [-12.984854, 8.328536], - [-12.985433, 8.32885], - [-12.98581, 8.330691], - [-12.9863, 8.331496], - [-12.988243, 8.331653], - [-12.989849, 8.332457], - [-12.9914, 8.332101], - [-12.991657, 8.33213], - [-12.991666, 8.332221], - [-12.992083, 8.332084], - [-12.992916, 8.334583], - [-12.989583, 8.33625], - [-12.989583, 8.338749], - [-12.989833, 8.339248], - [-12.990462, 8.338962], - [-12.990733, 8.338825], - [-12.991248, 8.338573], - [-12.992793, 8.33786], - [-12.99315, 8.33768], - [-12.993236, 8.339285], - [-12.992161, 8.33988], - [-12.988943, 8.341725], - [-12.989, 8.341842], - [-12.989883, 8.34334], - [-12.990927, 8.34562], - [-12.990903, 8.346921], - [-12.992916, 8.346249], - [-12.994583, 8.34375], - [-12.997916, 8.344583], - [-12.999858, 8.343128], - [-12.999826, 8.344414], - [-12.999694, 8.346194], - [-13.000084, 8.346694], - [-12.99875, 8.34625], - [-12.99625, 8.350416], - [-13.000416, 8.350417], - [-13.001499, 8.350777], - [-13.001467, 8.350909], - [-13.002089, 8.350599], - [-13.002092, 8.350908], - [-13.001931, 8.35127], - [-13.001564, 8.35293], - [-13.002346, 8.353887], - [-13.003991, 8.355316], - [-13.004187, 8.355278], - [-13.004562, 8.354776], - [-13.004646, 8.354867], - [-13.004918, 8.355189], - [-13.00682, 8.355654], - [-13.007263, 8.355928], - [-13.006926, 8.356181], - [-13.006723, 8.357346], - [-13.006617, 8.357742], - [-13.006216, 8.357733], - [-13.005054, 8.358173], - [-13.004583, 8.359584], - [-13.005416, 8.363749], - [-13.007082, 8.364584], - [-13.007916, 8.367083], - [-13.008371, 8.367537], - [-13.010913, 8.367817], - [-13.009928, 8.368964], - [-13.010529, 8.370534], - [-13.012931, 8.369855], - [-13.013268, 8.371897], - [-13.014952, 8.370539], - [-13.035171, 8.373355], - [-13.035214, 8.372867], - [-13.03554, 8.372159], - [-13.035794, 8.371706], - [-13.03667, 8.370503], - [-13.037923, 8.370623], - [-13.03867, 8.371001], - [-13.039107, 8.37106], - [-13.039261, 8.370835], - [-13.039297, 8.370102] - ] - ], - "type": "Polygon" - }, - "id": 434, - "properties": { - "cc:admin:id": ["112"], - "cc:oBld:total": 3158, - "cc:pop:fifteen-to-twenty-four": 4326.891690238057, - "cc:pop:grid3-total": 11462.08440422695, - "cc:pop:kontur-total": 17121.26006333641, - "cc:pop:men": 8672.86882989575, - "cc:pop:sixty-plus": 1420.4765131972474, - "cc:pop:total": 18244.34459283029, - "cc:pop:under-five": 1946.46559162951, - "cc:pop:women": 9571.475762934542, - "cc:pop:women-fiften-to-forty-nine": 5138.244438636365, - "cc:pop:wp-total": 14082.629293982847, - "cc:pop:wp-total-UN": 16348.573156269562, - "cc:id": "434", - "cc:Name": "Newton CHC", - "cc:site": [-13.0212, 8.3336], - "user:parentName": "Rural Western Area", - "user:code": "OU_278382", - "user:orgUnitId": "m3VnSQbE8CD", - "user:level": "4", - "user:parentId": "qtr8GGlm4gg" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.065417, 8.598749], - [-11.065416, 8.597027], - [-11.064899, 8.597435], - [-11.06354, 8.597389], - [-11.064284, 8.5962], - [-11.063532, 8.595926], - [-11.063073, 8.595564], - [-11.063355, 8.595044], - [-11.063231, 8.594766], - [-11.062009, 8.595355], - [-11.061607, 8.596262], - [-11.061526, 8.596325], - [-11.061435, 8.596165], - [-11.061035, 8.595917], - [-11.057516, 8.594004], - [-11.057465, 8.593978], - [-11.057461, 8.593924], - [-11.058646, 8.593198], - [-11.058908, 8.592497], - [-11.058307, 8.592159], - [-11.057145, 8.592083], - [-11.056773, 8.592061], - [-11.055211, 8.59226], - [-11.054861, 8.592038], - [-11.05474, 8.591527], - [-11.054741, 8.591525], - [-11.054735, 8.591506], - [-11.054646, 8.591134], - [-11.054435, 8.590823], - [-11.052765, 8.590088], - [-11.049596, 8.591654], - [-11.048122, 8.590699], - [-11.047409, 8.589911], - [-11.047136, 8.589856], - [-11.046745, 8.590004], - [-11.045921, 8.590775], - [-11.04548, 8.591413], - [-11.045134, 8.592458], - [-11.044939, 8.592551], - [-11.044403, 8.592457], - [-11.043534, 8.592859], - [-11.043474, 8.592924], - [-11.042917, 8.589584], - [-11.042916, 8.587917], - [-11.037083, 8.587916], - [-11.036514, 8.586212], - [-11.036325, 8.586255], - [-11.03562, 8.586692], - [-11.03496, 8.587695], - [-11.034031, 8.58991], - [-11.033376, 8.591178], - [-11.027919, 8.587084], - [-11.033749, 8.587083], - [-11.039582, 8.583749], - [-11.034583, 8.57875], - [-11.02875, 8.580416], - [-11.026249, 8.57375], - [-11.024583, 8.573749], - [-11.023749, 8.572917], - [-11.02125, 8.572084], - [-11.020416, 8.570417], - [-11.017082, 8.572083], - [-11.012212, 8.571388], - [-11.011999, 8.5727], - [-11.0099, 8.577999], - [-11.0093, 8.580999], - [-11.0091, 8.587199], - [-11.009282, 8.595998], - [-11.009736, 8.596201], - [-11.0099, 8.595769], - [-11.009935, 8.595679], - [-11.009937, 8.595679], - [-11.010066, 8.596116], - [-11.010595, 8.5968], - [-11.01194, 8.597325], - [-11.012556, 8.597237], - [-11.014038, 8.598811], - [-11.014583, 8.598982], - [-11.01493, 8.599227], - [-11.015439, 8.599215], - [-11.016001, 8.599497], - [-11.018115, 8.599722], - [-11.019019, 8.600374], - [-11.020112, 8.601284], - [-11.020227, 8.601438], - [-11.020417, 8.60125], - [-11.02471, 8.602477], - [-11.024709, 8.602478], - [-11.024158, 8.602696], - [-11.023663, 8.60317], - [-11.023213, 8.606514], - [-11.02316, 8.606954], - [-11.023392, 8.607934], - [-11.02371, 8.608254], - [-11.024471, 8.607895], - [-11.026559, 8.607105], - [-11.028642, 8.606783], - [-11.028604, 8.606976], - [-11.028488, 8.60698], - [-11.028085, 8.607173], - [-11.027931, 8.608599], - [-11.028139, 8.609255], - [-11.027554, 8.610651], - [-11.028192, 8.611272], - [-11.028363, 8.611728], - [-11.029345, 8.612466], - [-11.029635, 8.613101], - [-11.029945, 8.612838], - [-11.029986, 8.612438], - [-11.029987, 8.612438], - [-11.030162, 8.613308], - [-11.030316, 8.613193], - [-11.030416, 8.6132], - [-11.030417, 8.614583], - [-11.032082, 8.615417], - [-11.030417, 8.624583], - [-11.029583, 8.624584], - [-11.029583, 8.629583], - [-11.036249, 8.636249], - [-11.034583, 8.642916], - [-11.035417, 8.643749], - [-11.038749, 8.64375], - [-11.040416, 8.644583], - [-11.042082, 8.637084], - [-11.040417, 8.635417], - [-11.040416, 8.634584], - [-11.03875, 8.633749], - [-11.040416, 8.630417], - [-11.039477, 8.629477], - [-11.04005, 8.628481], - [-11.036145, 8.621715], - [-11.039397, 8.616081], - [-11.040777, 8.616674], - [-11.041334, 8.616786], - [-11.042032, 8.616595], - [-11.041804, 8.616357], - [-11.03939, 8.615143], - [-11.039848, 8.614372], - [-11.039285, 8.613169], - [-11.039201, 8.613143], - [-11.038703, 8.612373], - [-11.038492, 8.612183], - [-11.038668, 8.611773], - [-11.039123, 8.610635], - [-11.039305, 8.610225], - [-11.039678, 8.609782], - [-11.04045, 8.609599], - [-11.040756, 8.609514], - [-11.040829, 8.609323], - [-11.041777, 8.608675], - [-11.042197, 8.608278], - [-11.040969, 8.606838], - [-11.041221, 8.606224], - [-11.041273, 8.605998], - [-11.041568, 8.604962], - [-11.041682, 8.604782], - [-11.041988, 8.604348], - [-11.04308, 8.603396], - [-11.04438, 8.601202], - [-11.045447, 8.599529], - [-11.046662, 8.599067], - [-11.047598, 8.600575], - [-11.047917, 8.600417], - [-11.049583, 8.601249], - [-11.054582, 8.600417], - [-11.055667, 8.602041], - [-11.055884, 8.60198], - [-11.056621, 8.601551], - [-11.058749, 8.602083], - [-11.065417, 8.598749] - ] - ], - "type": "Polygon" - }, - "id": 435, - "properties": { - "cc:admin:id": ["100"], - "cc:oBld:total": 435, - "cc:pop:fifteen-to-twenty-four": 946.604091030608, - "cc:pop:grid3-total": 6285.714778493051, - "cc:pop:kontur-total": 4499.279743900395, - "cc:pop:men": 2809.9512318130837, - "cc:pop:sixty-plus": 295.23793426011457, - "cc:pop:total": 5089.645044890086, - "cc:pop:under-five": 818.2690281087678, - "cc:pop:women": 2279.693813077002, - "cc:pop:women-fiften-to-forty-nine": 1143.0205871714438, - "cc:pop:wp-total": 4110.351303972021, - "cc:pop:wp-total-UN": 4757.74683560631, - "cc:id": "435", - "cc:Name": "Ngaiya MCHP", - "cc:site": [-11.0394, 8.6095], - "user:parentName": "Nimikoro", - "user:code": "OU_233404", - "user:orgUnitId": "YnuwSqXPx9H", - "user:level": "4", - "user:parentId": "DmaLM8WYmWv" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.591989, 8.084583], - [-11.5917, 8.0541], - [-11.591, 8.0501], - [-11.589599, 8.047499], - [-11.587399, 8.045699], - [-11.584047, 8.044112], - [-11.584302, 8.044705], - [-11.58608, 8.046823], - [-11.58125, 8.049584], - [-11.583749, 8.056249], - [-11.57875, 8.05875], - [-11.577916, 8.060417], - [-11.574583, 8.061249], - [-11.573749, 8.060417], - [-11.572082, 8.060416], - [-11.567083, 8.059584], - [-11.565416, 8.060416], - [-11.562083, 8.060416], - [-11.559582, 8.057084], - [-11.55125, 8.057084], - [-11.547083, 8.05875], - [-11.547617, 8.060622], - [-11.544313, 8.060623], - [-11.543749, 8.066249], - [-11.53875, 8.069583], - [-11.533749, 8.067084], - [-11.52625, 8.067083], - [-11.525416, 8.06625], - [-11.522083, 8.065417], - [-11.517082, 8.068749], - [-11.512917, 8.067917], - [-11.50963, 8.06923], - [-11.508436, 8.067771], - [-11.505417, 8.069584], - [-11.505416, 8.077917], - [-11.503749, 8.079583], - [-11.497917, 8.080417], - [-11.495417, 8.082084], - [-11.495416, 8.086249], - [-11.487917, 8.08625], - [-11.489582, 8.090417], - [-11.489582, 8.092084], - [-11.487083, 8.09375], - [-11.485416, 8.097084], - [-11.480417, 8.099584], - [-11.48125, 8.102916], - [-11.488749, 8.102917], - [-11.490416, 8.103749], - [-11.49625, 8.112916], - [-11.497917, 8.112084], - [-11.504583, 8.114583], - [-11.507927, 8.114584], - [-11.507924, 8.114608], - [-11.508759, 8.116095], - [-11.508979, 8.117721], - [-11.508745, 8.118394], - [-11.507875, 8.119469], - [-11.507023, 8.119993], - [-11.506129, 8.120905], - [-11.506033, 8.121626], - [-11.505769, 8.122083], - [-11.507082, 8.122084], - [-11.507917, 8.123749], - [-11.513749, 8.126249], - [-11.512917, 8.129583], - [-11.523749, 8.129584], - [-11.531249, 8.136249], - [-11.53125, 8.137084], - [-11.532916, 8.147916], - [-11.536249, 8.155416], - [-11.536456, 8.155416], - [-11.5364, 8.154899], - [-11.5366, 8.151299], - [-11.5377, 8.148099], - [-11.5402, 8.144099], - [-11.5418, 8.142699], - [-11.547999, 8.140599], - [-11.550899, 8.1384], - [-11.5534, 8.135699], - [-11.5564, 8.1316], - [-11.56, 8.129099], - [-11.5632, 8.125899], - [-11.565399, 8.123], - [-11.567199, 8.1191], - [-11.5689, 8.116899], - [-11.572299, 8.1138], - [-11.577699, 8.1109], - [-11.582199, 8.1073], - [-11.584899, 8.1045], - [-11.587299, 8.1015], - [-11.589099, 8.0975], - [-11.591, 8.093999], - [-11.5918, 8.090499], - [-11.591999, 8.0856], - [-11.591989, 8.084583] - ] - ], - "type": "Polygon" - }, - "id": 436, - "properties": { - "cc:admin:id": ["3"], - "cc:oBld:total": 29, - "cc:pop:fifteen-to-twenty-four": 1242.0687580128754, - "cc:pop:grid3-total": 6762.185408988462, - "cc:pop:kontur-total": 7229.460917082887, - "cc:pop:men": 3258.3194011077076, - "cc:pop:sixty-plus": 491.001835704578, - "cc:pop:total": 6982.3913491310195, - "cc:pop:under-five": 1165.0898416459222, - "cc:pop:women": 3724.071948023309, - "cc:pop:women-fiften-to-forty-nine": 1777.0264804916524, - "cc:pop:wp-total": 6572.389030484032, - "cc:pop:wp-total-UN": 7618.653260537516, - "cc:id": "436", - "cc:Name": "Ngalu CHC", - "cc:site": [-11.5574, 8.1074], - "user:parentName": "Bargbe", - "user:code": "OU_595", - "user:orgUnitId": "CvBAqD6RzLZ", - "user:level": "4", - "user:parentId": "dGheVylzol6" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.222171, 7.533798], - [-11.218265, 7.527033], - [-11.210453, 7.527033], - [-11.206547, 7.533798], - [-11.204879, 7.533798], - [-11.206249, 7.532083], - [-11.206249, 7.522917], - [-11.201249, 7.517917], - [-11.197377, 7.517916], - [-11.194828, 7.513501], - [-11.198733, 7.506735], - [-11.198622, 7.506542], - [-11.196546, 7.506353], - [-11.196237, 7.506735], - [-11.194712, 7.507864], - [-11.194006, 7.508793], - [-11.193333, 7.510707], - [-11.190123, 7.516996], - [-11.188182, 7.516847], - [-11.186769, 7.516017], - [-11.186102, 7.515387], - [-11.185753, 7.514699], - [-11.185473, 7.513488], - [-11.186283, 7.512084], - [-11.183749, 7.512084], - [-11.17375, 7.512916], - [-11.171249, 7.50125], - [-11.15875, 7.497084], - [-11.154583, 7.50125], - [-11.155417, 7.512916], - [-11.158545, 7.515421], - [-11.153107, 7.515421], - [-11.151604, 7.512821], - [-11.15125, 7.517083], - [-11.152917, 7.517084], - [-11.154998, 7.527493], - [-11.1532, 7.527494], - [-11.149298, 7.534252], - [-11.142916, 7.53125], - [-11.141638, 7.531676], - [-11.143242, 7.533801], - [-11.142239, 7.535539], - [-11.137651, 7.53554], - [-11.137083, 7.53625], - [-11.137082, 7.541389], - [-11.13217, 7.54139], - [-11.128264, 7.548155], - [-11.129756, 7.55074], - [-11.12875, 7.552084], - [-11.128749, 7.555416], - [-11.12375, 7.555417], - [-11.121998, 7.556584], - [-11.120176, 7.554859], - [-11.117641, 7.554859], - [-11.115416, 7.557083], - [-11.112165, 7.556788], - [-11.109373, 7.561624], - [-11.111487, 7.565286], - [-11.112916, 7.565417], - [-11.110416, 7.580416], - [-11.104583, 7.582084], - [-11.103749, 7.584584], - [-11.097083, 7.58625], - [-11.095416, 7.588749], - [-11.090417, 7.587084], - [-11.091249, 7.592083], - [-11.087083, 7.59375], - [-11.084583, 7.598749], - [-11.085416, 7.601249], - [-11.084583, 7.602917], - [-11.084582, 7.608749], - [-11.082075, 7.611258], - [-11.086699, 7.614899], - [-11.089299, 7.616399], - [-11.0915, 7.6169], - [-11.0942, 7.6171], - [-11.098899, 7.6171], - [-11.103499, 7.6169], - [-11.106099, 7.6165], - [-11.112199, 7.614], - [-11.118399, 7.6123], - [-11.1216, 7.610099], - [-11.124499, 7.6066], - [-11.1265, 7.602299], - [-11.1278, 7.600199], - [-11.129999, 7.5976], - [-11.1319, 7.596099], - [-11.134299, 7.595], - [-11.136916, 7.59536], - [-11.14125, 7.589584], - [-11.146607, 7.591592], - [-11.146607, 7.591594], - [-11.146477, 7.591703], - [-11.15125, 7.593749], - [-11.155416, 7.59375], - [-11.154583, 7.607916], - [-11.154841, 7.608432], - [-11.160979, 7.608433], - [-11.162832, 7.61164], - [-11.167916, 7.611249], - [-11.171249, 7.607083], - [-11.17125, 7.599584], - [-11.178577, 7.59885], - [-11.177997, 7.597416], - [-11.176714, 7.596283], - [-11.17625, 7.595258], - [-11.17625, 7.587916], - [-11.17688, 7.587287], - [-11.178175, 7.589529], - [-11.185986, 7.589529], - [-11.187346, 7.587174], - [-11.187302, 7.586596], - [-11.190244, 7.581499], - [-11.186339, 7.574734], - [-11.187568, 7.572604], - [-11.18757, 7.572605], - [-11.187454, 7.572977], - [-11.187708, 7.574994], - [-11.188199, 7.57642], - [-11.189425, 7.578536], - [-11.194724, 7.578536], - [-11.198553, 7.571905], - [-11.198508, 7.5719], - [-11.197157, 7.571663], - [-11.194828, 7.567627], - [-11.198733, 7.560862], - [-11.206546, 7.560861], - [-11.210452, 7.554096], - [-11.206547, 7.54733], - [-11.210452, 7.540564], - [-11.218265, 7.540563], - [-11.222171, 7.533798] - ] - ], - "type": "Polygon" - }, - "id": 437, - "properties": { - "cc:admin:id": ["138"], - "cc:oBld:total": 1796, - "cc:pop:fifteen-to-twenty-four": 2048.8088278091423, - "cc:pop:grid3-total": 7925.347009414623, - "cc:pop:kontur-total": 11138.04698160422, - "cc:pop:men": 4986.770712313275, - "cc:pop:sixty-plus": 684.0228349142659, - "cc:pop:total": 10414.869598051351, - "cc:pop:under-five": 1554.907021306783, - "cc:pop:women": 5428.098885738078, - "cc:pop:women-fiften-to-forty-nine": 2662.4023433998545, - "cc:pop:wp-total": 7564.163423035158, - "cc:pop:wp-total-UN": 8775.604560177242, - "cc:id": "437", - "cc:Name": "Ngegbwema CHC", - "cc:site": [-11.1552, 7.5797], - "user:parentName": "Tunkia", - "user:code": "OU_222641", - "user:orgUnitId": "P4upLKrpkHP", - "user:level": "4", - "user:parentId": "l7pFejMtUoF" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.453356, 8.104232], - [-11.4535, 8.103299], - [-11.4535, 8.0964], - [-11.4532, 8.0874], - [-11.452699, 8.083599], - [-11.4514, 8.078599], - [-11.4527, 8.072699], - [-11.453199, 8.067699], - [-11.453099, 8.062499], - [-11.4528, 8.0595], - [-11.4521, 8.0567], - [-11.4501, 8.0522], - [-11.449399, 8.049399], - [-11.449199, 8.045399], - [-11.448999, 8.034399], - [-11.447999, 8.030699], - [-11.446099, 8.028099], - [-11.4428, 8.025299], - [-11.441699, 8.0235], - [-11.438899, 8.022199], - [-11.4339, 8.0207], - [-11.4258, 8.022799], - [-11.4236, 8.024], - [-11.42, 8.0298], - [-11.419199, 8.0331], - [-11.4189, 8.038399], - [-11.4184, 8.040599], - [-11.416899, 8.0434], - [-11.414399, 8.0461], - [-11.411499, 8.0482], - [-11.407499, 8.0501], - [-11.404799, 8.0523], - [-11.3994, 8.057199], - [-11.3972, 8.058899], - [-11.393399, 8.0607], - [-11.3891, 8.063099], - [-11.385899, 8.0644], - [-11.3815, 8.066599], - [-11.3765, 8.067799], - [-11.373999, 8.0686], - [-11.3665, 8.072399], - [-11.3615, 8.076399], - [-11.3592, 8.077899], - [-11.355299, 8.0796], - [-11.351599, 8.0819], - [-11.3508, 8.086799], - [-11.3504, 8.091], - [-11.350499, 8.096799], - [-11.3509, 8.1012], - [-11.3525, 8.1071], - [-11.357399, 8.121799], - [-11.3589, 8.1286], - [-11.362299, 8.140699], - [-11.3638, 8.1444], - [-11.3657, 8.1475], - [-11.369499, 8.152399], - [-11.3736, 8.156399], - [-11.3779, 8.1574], - [-11.3833, 8.1597], - [-11.3859, 8.1603], - [-11.391299, 8.160899], - [-11.393799, 8.161599], - [-11.3982, 8.163599], - [-11.402599, 8.164099], - [-11.405599, 8.163399], - [-11.409599, 8.1603], - [-11.416599, 8.1532], - [-11.420599, 8.1501], - [-11.4273, 8.146799], - [-11.4298, 8.145899], - [-11.434, 8.144999], - [-11.4369, 8.143399], - [-11.439999, 8.1409], - [-11.441999, 8.14], - [-11.444199, 8.1401], - [-11.448199, 8.142299], - [-11.452399, 8.1357], - [-11.453399, 8.132499], - [-11.453199, 8.1282], - [-11.450899, 8.122899], - [-11.450199, 8.120199], - [-11.45, 8.1163], - [-11.4507, 8.112599], - [-11.452899, 8.1072], - [-11.453356, 8.104232] - ] - ], - "type": "Polygon" - }, - "id": 438, - "properties": { - "cc:admin:id": ["0"], - "cc:oBld:total": 433, - "cc:pop:fifteen-to-twenty-four": 2488.3614854320635, - "cc:pop:grid3-total": 4782.629937512357, - "cc:pop:kontur-total": 14194.861983609617, - "cc:pop:men": 6693.724503427629, - "cc:pop:sixty-plus": 1016.9038059908537, - "cc:pop:total": 13914.510348316915, - "cc:pop:under-five": 2329.62038453871, - "cc:pop:women": 7220.7858448892885, - "cc:pop:women-fiften-to-forty-nine": 3462.3313247053707, - "cc:pop:wp-total": 12091.520245034686, - "cc:pop:wp-total-UN": 14018.138484854904, - "cc:id": "438", - "cc:Name": "Ngelehun CHC", - "cc:site": [-11.4197, 8.1039], - "user:parentName": "Badjia", - "user:code": "OU_559", - "user:orgUnitId": "DiszpKrYNg8", - "user:level": "4", - "user:parentId": "YuQRtpLP10I" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.208799, 8.019499], - [-11.207799, 8.014999], - [-11.2059, 8.0114], - [-11.204599, 8.008199], - [-11.2019, 8.0031], - [-11.2006, 7.998], - [-11.199192, 7.994758], - [-11.196051, 7.995206], - [-11.192576, 7.989189], - [-11.184763, 7.989188], - [-11.180858, 7.982423], - [-11.184763, 7.975657], - [-11.180857, 7.968892], - [-11.173045, 7.968892], - [-11.169138, 7.975657], - [-11.161326, 7.975656], - [-11.157419, 7.968892], - [-11.149608, 7.968892], - [-11.148092, 7.971513], - [-11.147917, 7.969583], - [-11.148749, 7.959584], - [-11.147917, 7.958749], - [-11.147916, 7.957917], - [-11.138044, 7.954879], - [-11.138251, 7.954157], - [-11.138427, 7.952577], - [-11.138357, 7.951495], - [-11.135416, 7.952083], - [-11.13375, 7.947084], - [-11.132916, 7.945417], - [-11.124583, 7.945417], - [-11.122917, 7.947917], - [-11.122916, 7.953749], - [-11.119583, 7.95375], - [-11.117083, 7.955416], - [-11.117082, 7.947917], - [-11.115416, 7.945417], - [-11.110417, 7.944584], - [-11.108749, 7.945416], - [-11.10125, 7.94375], - [-11.09875, 7.945416], - [-11.097082, 7.942917], - [-11.092917, 7.94125], - [-11.089583, 7.942917], - [-11.089582, 7.944583], - [-11.08625, 7.944583], - [-11.084582, 7.94375], - [-11.07875, 7.94375], - [-11.078749, 7.945416], - [-11.077083, 7.945417], - [-11.075417, 7.947917], - [-11.076249, 7.954583], - [-11.072082, 7.953749], - [-11.067082, 7.949584], - [-11.062917, 7.949584], - [-11.062916, 7.951249], - [-11.06125, 7.955417], - [-11.061249, 7.957084], - [-11.055417, 7.960416], - [-11.05375, 7.961249], - [-11.05125, 7.96125], - [-11.051249, 7.965416], - [-11.049582, 7.970417], - [-11.04625, 7.972083], - [-11.04375, 7.970417], - [-11.040417, 7.964584], - [-11.040416, 7.963894], - [-11.040053, 7.964129], - [-11.038846, 7.964569], - [-11.037726, 7.965314], - [-11.036625, 7.965585], - [-11.038749, 7.971249], - [-11.032083, 7.971249], - [-11.029583, 7.970417], - [-11.029022, 7.969857], - [-11.022912, 7.971781], - [-11.019788, 7.972936], - [-11.015599, 7.976489], - [-11.012628, 7.980341], - [-11.015799, 7.984499], - [-11.016999, 7.986899], - [-11.0188, 7.992899], - [-11.0211, 7.9957], - [-11.0241, 7.9979], - [-11.027999, 8.003799], - [-11.03, 8.008], - [-11.031899, 8.010599], - [-11.0345, 8.0133], - [-11.043899, 8.022599], - [-11.0461, 8.0244], - [-11.0484, 8.0258], - [-11.054299, 8.027299], - [-11.0597, 8.0295], - [-11.0656, 8.0309], - [-11.074099, 8.034599], - [-11.076404, 8.035885], - [-11.078749, 8.035416], - [-11.080417, 8.032916], - [-11.084582, 8.032084], - [-11.08875, 8.036249], - [-11.092916, 8.03625], - [-11.097083, 8.032084], - [-11.100416, 8.032083], - [-11.103886, 8.030927], - [-11.10411, 8.031147], - [-11.104562, 8.031266], - [-11.104717, 8.030417], - [-11.106249, 8.030417], - [-11.10625, 8.032083], - [-11.117082, 8.032084], - [-11.117083, 8.038749], - [-11.117464, 8.043315], - [-11.122264, 8.043316], - [-11.12617, 8.050081], - [-11.133982, 8.050081], - [-11.137889, 8.043316], - [-11.145702, 8.043316], - [-11.149608, 8.050082], - [-11.150439, 8.050081], - [-11.1505, 8.049999], - [-11.1557, 8.046599], - [-11.1576, 8.045799], - [-11.160899, 8.0452], - [-11.1638, 8.0451], - [-11.184599, 8.045299], - [-11.1875, 8.045099], - [-11.190299, 8.0444], - [-11.192699, 8.043], - [-11.1948, 8.041199], - [-11.200099, 8.0358], - [-11.203999, 8.0312], - [-11.2061, 8.026799], - [-11.208799, 8.019499] - ] - ], - "type": "Polygon" - }, - "id": 439, - "properties": { - "cc:admin:id": ["105"], - "cc:oBld:total": 1240, - "cc:pop:fifteen-to-twenty-four": 1365.1876997558827, - "cc:pop:grid3-total": 11317.711471905523, - "cc:pop:kontur-total": 7572.673850879168, - "cc:pop:men": 3524.0488084918925, - "cc:pop:sixty-plus": 428.9261171960202, - "cc:pop:total": 7015.827128870311, - "cc:pop:under-five": 1110.9581140889686, - "cc:pop:women": 3491.778320378419, - "cc:pop:women-fiften-to-forty-nine": 1755.022790264831, - "cc:pop:wp-total": 10709.279982108563, - "cc:pop:wp-total-UN": 12424.133967882957, - "cc:id": "439", - "cc:Name": "Ngelehun MCHP", - "cc:site": [-11.113, 8.0125], - "user:parentName": "Nongowa", - "user:code": "OU_222700", - "user:orgUnitId": "FwKJ7gYEv8U", - "user:level": "4", - "user:parentId": "KIUCimTXf8Q" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.739583, 7.928249], - [-12.739582, 7.927916], - [-12.736249, 7.922917], - [-12.72875, 7.92125], - [-12.726364, 7.923105], - [-12.724739, 7.922961], - [-12.724684, 7.924412], - [-12.72125, 7.927083], - [-12.71924, 7.927084], - [-12.719112, 7.929174], - [-12.71913, 7.929201], - [-12.718749, 7.929584], - [-12.717916, 7.934583], - [-12.714583, 7.93375], - [-12.71125, 7.937084], - [-12.711249, 7.938749], - [-12.709583, 7.93875], - [-12.707083, 7.942083], - [-12.707916, 7.94625], - [-12.702606, 7.953077], - [-12.702683, 7.953148], - [-12.702683, 7.953149], - [-12.700417, 7.955416], - [-12.695416, 7.953749], - [-12.692083, 7.949584], - [-12.692082, 7.947084], - [-12.69125, 7.952083], - [-12.688167, 7.955935], - [-12.686549, 7.955935], - [-12.682643, 7.94917], - [-12.677451, 7.94917], - [-12.677916, 7.957083], - [-12.674582, 7.957084], - [-12.662917, 7.962917], - [-12.662917, 7.968742], - [-12.663323, 7.969192], - [-12.66455, 7.969215], - [-12.66375, 7.970417], - [-12.663749, 7.973749], - [-12.66125, 7.97625], - [-12.661249, 7.982916], - [-12.657917, 7.982916], - [-12.657916, 7.979584], - [-12.655416, 7.977084], - [-12.646398, 7.981593], - [-12.646508, 7.981718], - [-12.646508, 7.981719], - [-12.644854, 7.982271], - [-12.643483, 7.985432], - [-12.642807, 7.991548], - [-12.642698, 7.992083], - [-12.640417, 7.992084], - [-12.638749, 7.994584], - [-12.632083, 7.99625], - [-12.632082, 7.998056], - [-12.63205, 7.998067], - [-12.631354, 7.998942], - [-12.629521, 7.999557], - [-12.627849, 7.999705], - [-12.626342, 8.000219], - [-12.625917, 8.000196], - [-12.624878, 7.999078], - [-12.624755, 7.999088], - [-12.623763, 7.999303], - [-12.622962, 7.99925], - [-12.621334, 8.000081], - [-12.6248, 8.001], - [-12.629099, 8.003199], - [-12.6323, 8.0045], - [-12.636799, 8.006699], - [-12.640599, 8.007499], - [-12.6436, 8.007599], - [-12.668399, 8.0074], - [-12.6745, 8.0077], - [-12.6772, 8.0084], - [-12.684899, 8.011999], - [-12.688499, 8.013899], - [-12.6921, 8.0149], - [-12.695, 8.014999], - [-12.698899, 8.0145], - [-12.704299, 8.0122], - [-12.707099, 8.0116], - [-12.714299, 8.0112], - [-12.714631, 8.011201], - [-12.716249, 8.009583], - [-12.71625, 7.999584], - [-12.717082, 7.997083], - [-12.715417, 7.989583], - [-12.716249, 7.985417], - [-12.719583, 7.981249], - [-12.727082, 7.979583], - [-12.727917, 7.967917], - [-12.729583, 7.966249], - [-12.732917, 7.965416], - [-12.737916, 7.950417], - [-12.73716, 7.949408], - [-12.736561, 7.951166], - [-12.734536, 7.950985], - [-12.735027, 7.948324], - [-12.735371, 7.944949], - [-12.735257, 7.944081], - [-12.73625, 7.943749], - [-12.739582, 7.939583], - [-12.739583, 7.929584], - [-12.738633, 7.928159], - [-12.738634, 7.928158], - [-12.739583, 7.928249] - ] - ], - "type": "Polygon" - }, - "id": 440, - "properties": { - "cc:admin:id": ["51"], - "cc:oBld:total": 9, - "cc:pop:fifteen-to-twenty-four": 563.7575837133527, - "cc:pop:grid3-total": 1256.491944847112, - "cc:pop:kontur-total": 3157.9478265024954, - "cc:pop:men": 1412.5440017985027, - "cc:pop:sixty-plus": 181.14586342664404, - "cc:pop:total": 3018.5607843357056, - "cc:pop:under-five": 515.8569258164093, - "cc:pop:women": 1606.0167825372034, - "cc:pop:women-fiften-to-forty-nine": 709.567408469537, - "cc:pop:wp-total": 2055.81566995375, - "cc:pop:wp-total-UN": 2392.719338401694, - "cc:id": "440", - "cc:Name": "Ngiehun MCHP", - "cc:site": [-12.6751, 7.9867], - "user:parentName": "Kargboro", - "user:code": "OU_247070", - "user:orgUnitId": "hBPtNXkQ3mP", - "user:level": "4", - "user:parentId": "Z9QaI6sxTwW" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.226267, 7.533799], - [-11.222172, 7.533799], - [-11.218265, 7.540563], - [-11.210452, 7.540564], - [-11.206547, 7.54733], - [-11.210452, 7.554096], - [-11.206546, 7.560861], - [-11.198733, 7.560862], - [-11.194828, 7.567627], - [-11.197158, 7.571663], - [-11.198508, 7.5719], - [-11.198553, 7.571905], - [-11.194725, 7.578536], - [-11.189425, 7.578536], - [-11.188199, 7.57642], - [-11.187708, 7.574994], - [-11.187454, 7.572977], - [-11.187573, 7.572596], - [-11.186339, 7.574733], - [-11.190244, 7.5815], - [-11.187302, 7.586596], - [-11.187346, 7.587175], - [-11.185987, 7.589529], - [-11.178175, 7.589529], - [-11.176879, 7.587287], - [-11.17625, 7.587917], - [-11.17625, 7.595258], - [-11.176714, 7.596283], - [-11.177997, 7.597416], - [-11.178577, 7.59885], - [-11.17125, 7.599584], - [-11.17125, 7.601893], - [-11.176652, 7.601894], - [-11.180373, 7.608339], - [-11.177917, 7.60875], - [-11.174583, 7.612917], - [-11.174583, 7.622083], - [-11.177916, 7.626249], - [-11.178176, 7.626315], - [-11.176652, 7.628956], - [-11.178409, 7.631999], - [-11.1821, 7.631999], - [-11.1868, 7.631699], - [-11.1903, 7.630799], - [-11.193899, 7.6289], - [-11.1971, 7.627499], - [-11.201399, 7.6251], - [-11.2052, 7.623199], - [-11.210999, 7.619599], - [-11.214999, 7.613299], - [-11.2158, 7.609399], - [-11.215999, 7.603], - [-11.216399, 7.5996], - [-11.2186, 7.593799], - [-11.2193, 7.589899], - [-11.219499, 7.5835], - [-11.220199, 7.5801], - [-11.2224, 7.574799], - [-11.222899, 7.570599], - [-11.2228, 7.5576], - [-11.222999, 7.5529], - [-11.2236, 7.550199], - [-11.225899, 7.544599], - [-11.226399, 7.5385], - [-11.226267, 7.533799] - ] - ], - "type": "Polygon" - }, - "id": 441, - "properties": { - "cc:admin:id": ["138"], - "cc:oBld:total": 419, - "cc:pop:fifteen-to-twenty-four": 331.42659632108035, - "cc:pop:grid3-total": 2133.457595080457, - "cc:pop:kontur-total": 1764.0018124128958, - "cc:pop:men": 804.8219239887583, - "cc:pop:sixty-plus": 104.49971053736662, - "cc:pop:total": 1684.8155741541966, - "cc:pop:under-five": 254.9633464130387, - "cc:pop:women": 879.9936501654386, - "cc:pop:women-fiften-to-forty-nine": 433.6948748806835, - "cc:pop:wp-total": 1432.3096822583316, - "cc:pop:wp-total-UN": 1655.5755129006423, - "cc:id": "441", - "cc:Name": "Ngiewahun CHP", - "cc:site": [-11.2013, 7.6059], - "user:parentName": "Tunkia", - "user:code": "OU_222636", - "user:orgUnitId": "KuGO75X47Gk", - "user:level": "4", - "user:parentId": "l7pFejMtUoF" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.917603, 7.736044], - [-11.917116, 7.735954], - [-11.916808, 7.7361], - [-11.909471, 7.735536], - [-11.907519, 7.737613], - [-11.906329, 7.739397], - [-11.902753, 7.743629], - [-11.901539, 7.746471], - [-11.896555, 7.744255], - [-11.898303, 7.741412], - [-11.897995, 7.740476], - [-11.897687, 7.739236], - [-11.897834, 7.738774], - [-11.899162, 7.738175], - [-11.899503, 7.737559], - [-11.89984, 7.737282], - [-11.898938, 7.73654], - [-11.898, 7.73614], - [-11.897415, 7.736061], - [-11.89413, 7.736307], - [-11.892067, 7.735906], - [-11.891891, 7.735802], - [-11.892083, 7.735417], - [-11.903749, 7.736249], - [-11.907082, 7.73375], - [-11.905417, 7.729583], - [-11.907082, 7.72375], - [-11.911249, 7.720416], - [-11.910416, 7.712917], - [-11.90125, 7.713749], - [-11.897916, 7.70625], - [-11.892083, 7.707916], - [-11.892082, 7.707915], - [-11.89125, 7.704583], - [-11.89125, 7.697916], - [-11.89375, 7.69625], - [-11.902082, 7.697083], - [-11.902082, 7.693749], - [-11.900655, 7.687323], - [-11.900166, 7.687375], - [-11.898749, 7.679584], - [-11.886709, 7.67878], - [-11.885728, 7.677084], - [-11.885416, 7.677083], - [-11.881149, 7.672817], - [-11.875453, 7.672817], - [-11.871547, 7.679582], - [-11.873111, 7.682292], - [-11.873111, 7.682293], - [-11.867233, 7.682827], - [-11.867015, 7.682167], - [-11.863749, 7.686249], - [-11.859582, 7.688749], - [-11.852917, 7.688749], - [-11.849406, 7.685942], - [-11.848587, 7.687259], - [-11.848336, 7.688622], - [-11.847461, 7.689947], - [-11.84704, 7.691498], - [-11.845416, 7.690417], - [-11.83875, 7.690417], - [-11.83375, 7.700416], - [-11.832917, 7.701249], - [-11.842418, 7.706001], - [-11.843068, 7.707201], - [-11.844242, 7.708371], - [-11.845281, 7.710653], - [-11.845414, 7.711251], - [-11.842917, 7.712917], - [-11.844582, 7.722083], - [-11.84125, 7.727917], - [-11.84125, 7.730416], - [-11.849582, 7.730417], - [-11.857082, 7.737083], - [-11.854583, 7.742084], - [-11.854583, 7.752916], - [-11.85625, 7.75375], - [-11.858749, 7.758749], - [-11.85861, 7.759028], - [-11.861285, 7.758853], - [-11.8637, 7.756899], - [-11.866799, 7.7552], - [-11.872599, 7.7535], - [-11.876299, 7.7518], - [-11.8783, 7.751199], - [-11.881399, 7.751], - [-11.884099, 7.7516], - [-11.8864, 7.7529], - [-11.8913, 7.756699], - [-11.8959, 7.755199], - [-11.901899, 7.754099], - [-11.9054, 7.751999], - [-11.908899, 7.7484], - [-11.912, 7.742599], - [-11.9145, 7.739399], - [-11.917603, 7.736044] - ] - ], - "type": "Polygon" - }, - "id": 442, - "properties": { - "cc:admin:id": ["78"], - "cc:oBld:total": 14, - "cc:pop:fifteen-to-twenty-four": 796.2001020627531, - "cc:pop:grid3-total": 2968.2713535475696, - "cc:pop:kontur-total": 5124.478066177796, - "cc:pop:men": 2282.1337962815, - "cc:pop:sixty-plus": 300.78360806501036, - "cc:pop:total": 4393.603398842878, - "cc:pop:under-five": 710.7168367596275, - "cc:pop:women": 2111.469602561378, - "cc:pop:women-fiften-to-forty-nine": 1002.501546327309, - "cc:pop:wp-total": 4271.134990608548, - "cc:pop:wp-total-UN": 4953.935407061006, - "cc:id": "442", - "cc:Name": "Ngieyehun MCHP", - "cc:site": [-11.8714, 7.6946], - "user:parentName": "Lugbu", - "user:code": "OU_1065", - "user:orgUnitId": "al4GkB6X2X3", - "user:level": "4", - "user:parentId": "kU8vhUkAGaT" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.84125, 7.617916], - [-11.841249, 7.616832], - [-11.838163, 7.617277], - [-11.837454, 7.617107], - [-11.836119, 7.616361], - [-11.834582, 7.614186], - [-11.830418, 7.609341], - [-11.830296, 7.609229], - [-11.829654, 7.608679], - [-11.830417, 7.607916], - [-11.836249, 7.606249], - [-11.836249, 7.598743], - [-11.835455, 7.59919], - [-11.833997, 7.600687], - [-11.832629, 7.601588], - [-11.828335, 7.602606], - [-11.825416, 7.600417], - [-11.817083, 7.599584], - [-11.812082, 7.589584], - [-11.80875, 7.591249], - [-11.805417, 7.592084], - [-11.803042, 7.595645], - [-11.802014, 7.595413], - [-11.80041, 7.594867], - [-11.79873, 7.594096], - [-11.798156, 7.593649], - [-11.797447, 7.592755], - [-11.795956, 7.590781], - [-11.79557, 7.590233], - [-11.794807, 7.588776], - [-11.79394, 7.586514], - [-11.793788, 7.586313], - [-11.79364, 7.586147], - [-11.792935, 7.585515], - [-11.7922, 7.584555], - [-11.792077, 7.584344], - [-11.791805, 7.584512], - [-11.790476, 7.584543], - [-11.789779, 7.584603], - [-11.789339, 7.5848], - [-11.789064, 7.585128], - [-11.788625, 7.585097], - [-11.788613, 7.584497], - [-11.788152, 7.583837], - [-11.787633, 7.583699], - [-11.78678, 7.583996], - [-11.786457, 7.583619], - [-11.785422, 7.583294], - [-11.785362, 7.583219], - [-11.786195, 7.581759], - [-11.785605, 7.580493], - [-11.786952, 7.580435], - [-11.787191, 7.580017], - [-11.781599, 7.578099], - [-11.777699, 7.5777], - [-11.773299, 7.5785], - [-11.7708, 7.5802], - [-11.769199, 7.5829], - [-11.769, 7.587399], - [-11.770899, 7.592999], - [-11.7718, 7.5971], - [-11.771799, 7.602699], - [-11.7701, 7.607699], - [-11.767799, 7.6104], - [-11.7627, 7.613799], - [-11.7594, 7.616799], - [-11.7565, 7.620199], - [-11.7551, 7.6228], - [-11.7546, 7.626899], - [-11.756299, 7.633899], - [-11.756799, 7.639299], - [-11.754899, 7.646399], - [-11.752599, 7.6497], - [-11.748499, 7.6536], - [-11.745099, 7.6556], - [-11.737, 7.6593], - [-11.737399, 7.668899], - [-11.738099, 7.672299], - [-11.742299, 7.680599], - [-11.7452, 7.6841], - [-11.753099, 7.692099], - [-11.7555, 7.688499], - [-11.7594, 7.6851], - [-11.7627, 7.683999], - [-11.768499, 7.6835], - [-11.771599, 7.6827], - [-11.775199, 7.6808], - [-11.7784, 7.679499], - [-11.782699, 7.6771], - [-11.786899, 7.675], - [-11.792, 7.670599], - [-11.805899, 7.6565], - [-11.809999, 7.6519], - [-11.8133, 7.646099], - [-11.8156, 7.643099], - [-11.8195, 7.638799], - [-11.821799, 7.6358], - [-11.8245, 7.631099], - [-11.827099, 7.6286], - [-11.832999, 7.6256], - [-11.834899, 7.6248], - [-11.8373, 7.624299], - [-11.840199, 7.6241], - [-11.840562, 7.624102], - [-11.84125, 7.617916] - ] - ], - "type": "Polygon" - }, - "id": 443, - "properties": { - "cc:admin:id": ["4"], - "cc:oBld:total": 573, - "cc:pop:fifteen-to-twenty-four": 2573.886613496613, - "cc:pop:grid3-total": 9518.818960887886, - "cc:pop:kontur-total": 15366.537526744205, - "cc:pop:men": 6965.481594629107, - "cc:pop:sixty-plus": 1013.9170974131214, - "cc:pop:total": 14343.624475539984, - "cc:pop:under-five": 2395.2874462690725, - "cc:pop:women": 7378.142880910875, - "cc:pop:women-fiften-to-forty-nine": 3516.0757314660677, - "cc:pop:wp-total": 12866.973185575605, - "cc:pop:wp-total-UN": 14930.564234701942, - "cc:id": "443", - "cc:Name": "Niagorehun CHP", - "cc:site": [-11.7684, 7.6817], - "user:parentName": "Bargbo", - "user:code": "OU_617", - "user:orgUnitId": "p9ZtyC3LQ9f", - "user:level": "4", - "user:parentId": "zFDYIgyGmXG" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.701249, 8.943485], - [-11.701249, 8.942367], - [-11.695212, 8.942599], - [-11.6924, 8.942999], - [-11.689999, 8.944], - [-11.6837, 8.9483], - [-11.6819, 8.951099], - [-11.6802, 8.953199], - [-11.6736, 8.9589], - [-11.672799, 8.9614], - [-11.671899, 8.9677], - [-11.6684, 8.975699], - [-11.665899, 8.979], - [-11.6621, 8.982399], - [-11.653299, 8.986499], - [-11.6458, 8.987299], - [-11.642999, 8.988], - [-11.6376, 8.990799], - [-11.635899, 8.9924], - [-11.6326, 8.998399], - [-11.631899, 9.0014], - [-11.6318, 9.0043], - [-11.631899, 9.019199], - [-11.632099, 9.024099], - [-11.6329, 9.0278], - [-11.637199, 9.035999], - [-11.639771, 9.039072], - [-11.642082, 9.037916], - [-11.639583, 9.035417], - [-11.639582, 9.03375], - [-11.63625, 9.030416], - [-11.63625, 9.02125], - [-11.639582, 9.017083], - [-11.640416, 9.017082], - [-11.64125, 9.01625], - [-11.642082, 9.016249], - [-11.645416, 9.012082], - [-11.645417, 9.005417], - [-11.650643, 9.004762], - [-11.650644, 9.004752], - [-11.652163, 9.001652], - [-11.652431, 9.001398], - [-11.652365, 9.001025], - [-11.652499, 9.00087], - [-11.653206, 9.001111], - [-11.653655, 9.000988], - [-11.653968, 9.001221], - [-11.654172, 9.001579], - [-11.654144, 9.001973], - [-11.654365, 9.002103], - [-11.654878, 9.002027], - [-11.655029, 9.001575], - [-11.653908, 9.000523], - [-11.652879, 9.000653], - [-11.652878, 9.000651], - [-11.656249, 8.994583], - [-11.660377, 8.994582], - [-11.660308, 8.994161], - [-11.660935, 8.991994], - [-11.66043, 8.991087], - [-11.660568, 8.990847], - [-11.66838, 8.990846], - [-11.672287, 8.984081], - [-11.677916, 8.98408], - [-11.677917, 8.979582], - [-11.681249, 8.975417], - [-11.688128, 8.974924], - [-11.689288, 8.97329], - [-11.689746, 8.972083], - [-11.687916, 8.972082], - [-11.68375, 8.968749], - [-11.682917, 8.967082], - [-11.683749, 8.95625], - [-11.685416, 8.95125], - [-11.689583, 8.947917], - [-11.693001, 8.948201], - [-11.695725, 8.943486], - [-11.701249, 8.943485] - ] - ], - "type": "Polygon" - }, - "id": 445, - "properties": { - "cc:admin:id": ["47"], - "cc:oBld:total": 3, - "cc:pop:fifteen-to-twenty-four": 12.462882595299021, - "cc:pop:grid3-total": 64.69026455541376, - "cc:pop:kontur-total": 94.0210391899269, - "cc:pop:men": 31.687904528502983, - "cc:pop:sixty-plus": 4.620306685779276, - "cc:pop:total": 68.02601738770056, - "cc:pop:under-five": 10.638650833597358, - "cc:pop:women": 36.33811285919758, - "cc:pop:women-fiften-to-forty-nine": 18.055032443454248, - "cc:pop:wp-total": 154.67063917580185, - "cc:pop:wp-total-UN": 176.79179798431014, - "cc:id": "445", - "cc:Name": "Ninkikoro MCHP", - "cc:site": [-11.6387, 8.9903], - "user:parentName": "Sambaia Bendugu", - "user:code": "OU_268172", - "user:orgUnitId": "YXdC9hjYPqQ", - "user:level": "4", - "user:parentId": "r1RUyfVBkLp" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.386299, 8.250367], - [-12.383899, 8.249899], - [-12.3782, 8.2497], - [-12.375599, 8.249199], - [-12.3735, 8.247999], - [-12.3701, 8.2428], - [-12.3662, 8.2345], - [-12.3654, 8.2306], - [-12.3652, 8.2166], - [-12.364599, 8.2137], - [-12.362799, 8.210399], - [-12.3568, 8.204], - [-12.3545, 8.201], - [-12.3509, 8.1938], - [-12.350728, 8.193115], - [-12.346914, 8.193115], - [-12.345584, 8.195416], - [-12.342083, 8.195417], - [-12.337917, 8.19875], - [-12.337539, 8.199879], - [-12.335195, 8.19988], - [-12.335044, 8.199618], - [-12.335416, 8.199583], - [-12.336337, 8.198432], - [-12.331535, 8.198431], - [-12.327629, 8.191666], - [-12.324748, 8.191666], - [-12.323709, 8.192417], - [-12.322407, 8.192731], - [-12.326249, 8.200416], - [-12.326249, 8.202083], - [-12.322083, 8.205416], - [-12.304583, 8.205417], - [-12.30125, 8.20375], - [-12.300416, 8.205417], - [-12.29375, 8.20625], - [-12.293749, 8.209397], - [-12.289792, 8.207093], - [-12.28816, 8.20633], - [-12.285519, 8.206323], - [-12.279839, 8.206625], - [-12.278871, 8.207033], - [-12.278536, 8.207176], - [-12.277647, 8.207592], - [-12.27375, 8.20809], - [-12.273749, 8.217083], - [-12.272916, 8.217083], - [-12.26375, 8.212917], - [-12.259582, 8.217916], - [-12.256562, 8.21973], - [-12.256935, 8.221468], - [-12.250417, 8.222916], - [-12.247916, 8.220417], - [-12.246249, 8.220416], - [-12.243749, 8.21375], - [-12.24125, 8.214584], - [-12.238749, 8.217083], - [-12.232917, 8.217084], - [-12.234582, 8.219584], - [-12.234583, 8.226249], - [-12.23625, 8.22625], - [-12.239582, 8.228749], - [-12.240416, 8.231249], - [-12.241249, 8.245416], - [-12.23875, 8.247084], - [-12.238749, 8.247917], - [-12.23625, 8.25125], - [-12.23875, 8.26125], - [-12.23875, 8.273749], - [-12.239308, 8.277103], - [-12.239307, 8.277104], - [-12.238939, 8.27689], - [-12.236584, 8.275692], - [-12.233138, 8.281661], - [-12.234825, 8.284583], - [-12.236249, 8.284584], - [-12.237917, 8.286249], - [-12.23875, 8.28625], - [-12.241249, 8.295416], - [-12.234583, 8.297084], - [-12.230417, 8.305416], - [-12.244224, 8.304604], - [-12.244678, 8.303202], - [-12.245652, 8.298644], - [-12.247248, 8.291582], - [-12.24875, 8.294583], - [-12.252083, 8.292084], - [-12.257082, 8.294583], - [-12.257083, 8.291249], - [-12.261249, 8.287083], - [-12.26125, 8.285416], - [-12.266249, 8.280417], - [-12.267082, 8.27875], - [-12.265485, 8.273155], - [-12.265766, 8.272741], - [-12.270417, 8.270417], - [-12.276249, 8.270417], - [-12.27625, 8.277916], - [-12.284582, 8.277084], - [-12.287917, 8.280416], - [-12.290416, 8.279583], - [-12.294583, 8.272917], - [-12.29875, 8.274583], - [-12.302916, 8.274583], - [-12.30375, 8.270417], - [-12.306249, 8.269583], - [-12.307916, 8.267084], - [-12.315416, 8.267083], - [-12.315417, 8.264583], - [-12.319582, 8.262917], - [-12.325417, 8.267083], - [-12.330222, 8.268456], - [-12.330229, 8.268749], - [-12.334776, 8.26875], - [-12.338682, 8.261985], - [-12.339088, 8.261985], - [-12.34375, 8.272083], - [-12.352916, 8.27125], - [-12.355417, 8.262917], - [-12.363749, 8.262916], - [-12.370417, 8.259584], - [-12.377916, 8.259583], - [-12.384582, 8.253749], - [-12.384583, 8.252084], - [-12.386299, 8.250367] - ] - ], - "type": "Polygon" - }, - "id": 446, - "properties": { - "cc:admin:id": ["23"], - "cc:oBld:total": 255, - "cc:pop:fifteen-to-twenty-four": 1386.3172714595455, - "cc:pop:grid3-total": 9319.099126767764, - "cc:pop:kontur-total": 7748.269642595077, - "cc:pop:men": 3678.2395545236504, - "cc:pop:sixty-plus": 585.873610348335, - "cc:pop:total": 7758.696971915836, - "cc:pop:under-five": 1259.3909233411239, - "cc:pop:women": 4080.457417392185, - "cc:pop:women-fiften-to-forty-nine": 1990.1891635335269, - "cc:pop:wp-total": 6434.852619905478, - "cc:pop:wp-total-UN": 7452.969231696593, - "cc:id": "446", - "cc:Name": "Njagbahun (Fakunya) MCHP", - "cc:site": [-12.2836, 8.2615], - "user:parentName": "Fakunya", - "user:code": "OU_247088", - "user:orgUnitId": "QoROdPmIdY1", - "user:level": "4", - "user:parentId": "vULnao2hV5v" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.088668, 8.242917], - [-11.084583, 8.242917], - [-11.082916, 8.243749], - [-11.073749, 8.239584], - [-11.07125, 8.239584], - [-11.070812, 8.239801], - [-11.070735, 8.239031], - [-11.070564, 8.238545], - [-11.07055, 8.238211], - [-11.07048, 8.238118], - [-11.069542, 8.237316], - [-11.069417, 8.237084], - [-11.067083, 8.237084], - [-11.06375, 8.240416], - [-11.062083, 8.240417], - [-11.05931, 8.243883], - [-11.059309, 8.243882], - [-11.059239, 8.243237], - [-11.058453, 8.241404], - [-11.058036, 8.240853], - [-11.057246, 8.240353], - [-11.056807, 8.240253], - [-11.056553, 8.240209], - [-11.055296, 8.240224], - [-11.054778, 8.240118], - [-11.054212, 8.239677], - [-11.052917, 8.242916], - [-11.051249, 8.242084], - [-11.04625, 8.24375], - [-11.044583, 8.247084], - [-11.046249, 8.252917], - [-11.04375, 8.254584], - [-11.043749, 8.255417], - [-11.03692, 8.255905], - [-11.037785, 8.257405], - [-11.03388, 8.26417], - [-11.02625, 8.264171], - [-11.02625, 8.272083], - [-11.027083, 8.272084], - [-11.03125, 8.272917], - [-11.038749, 8.272916], - [-11.042082, 8.269583], - [-11.045417, 8.259584], - [-11.050417, 8.257084], - [-11.055481, 8.259253], - [-11.055482, 8.259255], - [-11.055461, 8.259298], - [-11.061249, 8.262916], - [-11.062083, 8.262084], - [-11.070587, 8.262084], - [-11.071055, 8.264162], - [-11.075417, 8.262917], - [-11.081249, 8.264583], - [-11.083749, 8.262083], - [-11.08375, 8.24875], - [-11.087082, 8.244584], - [-11.08821, 8.244207], - [-11.088668, 8.242917] - ] - ], - "type": "Polygon" - }, - "id": 447, - "properties": { - "cc:admin:id": ["75"], - "cc:oBld:total": 96, - "cc:pop:fifteen-to-twenty-four": 377.01084615303853, - "cc:pop:grid3-total": 1135.8265920200913, - "cc:pop:kontur-total": 2250.1484700036212, - "cc:pop:men": 1096.0939243168084, - "cc:pop:sixty-plus": 115.03454299716715, - "cc:pop:total": 1957.2897132587973, - "cc:pop:under-five": 302.13773654449756, - "cc:pop:women": 861.1957889419889, - "cc:pop:women-fiften-to-forty-nine": 429.44350082960693, - "cc:pop:wp-total": 1709.1926888192022, - "cc:pop:wp-total-UN": 1983.3180197393197, - "cc:id": "447", - "cc:Name": "Njagbahun MCHP", - "cc:site": [-11.0612, 8.2517], - "user:parentName": "Lower Bambara", - "user:code": "OU_222660", - "user:orgUnitId": "VjygCFzqcYu", - "user:level": "4", - "user:parentId": "hdEuw2ugkVF" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.18906, 8.587238], - [-11.1889, 8.5759], - [-11.188499, 8.569799], - [-11.187899, 8.566799], - [-11.185899, 8.562399], - [-11.185099, 8.558499], - [-11.184799, 8.552299], - [-11.184698, 8.539584], - [-11.174583, 8.539583], - [-11.172791, 8.537793], - [-11.170961, 8.537793], - [-11.167054, 8.544557], - [-11.159243, 8.544558], - [-11.155335, 8.551323], - [-11.147524, 8.551324], - [-11.143618, 8.55809], - [-11.147249, 8.56438], - [-11.147249, 8.564381], - [-11.145416, 8.562917], - [-11.140333, 8.562917], - [-11.138466, 8.566147], - [-11.135056, 8.566147], - [-11.134975, 8.565976], - [-11.134364, 8.565483], - [-11.134273, 8.564916], - [-11.134358, 8.56443], - [-11.132083, 8.56625], - [-11.13125, 8.577916], - [-11.132607, 8.579614], - [-11.135804, 8.585153], - [-11.131899, 8.591918], - [-11.127217, 8.591918], - [-11.127082, 8.59125], - [-11.124582, 8.589583], - [-11.123749, 8.585417], - [-11.119582, 8.582084], - [-11.109583, 8.582917], - [-11.104583, 8.592084], - [-11.106249, 8.597083], - [-11.102083, 8.597917], - [-11.100416, 8.605416], - [-11.097917, 8.608749], - [-11.094716, 8.60875], - [-11.094671, 8.608807], - [-11.094019, 8.609178], - [-11.093508, 8.60917], - [-11.093476, 8.609343], - [-11.093395, 8.609341], - [-11.092731, 8.610351], - [-11.093026, 8.610894], - [-11.093112, 8.610882], - [-11.093877, 8.611189], - [-11.094946, 8.61128], - [-11.095509, 8.611701], - [-11.096334, 8.611914], - [-11.095416, 8.61375], - [-11.092917, 8.619583], - [-11.092917, 8.620416], - [-11.096249, 8.62125], - [-11.09625, 8.622916], - [-11.101249, 8.627916], - [-11.101249, 8.628749], - [-11.097082, 8.632916], - [-11.090417, 8.63125], - [-11.089583, 8.637917], - [-11.089583, 8.638749], - [-11.090417, 8.640416], - [-11.091249, 8.640417], - [-11.09125, 8.647083], - [-11.092917, 8.647084], - [-11.094582, 8.652083], - [-11.092917, 8.656249], - [-11.094583, 8.657917], - [-11.096249, 8.663749], - [-11.094328, 8.668234], - [-11.095013, 8.669319], - [-11.096203, 8.67003], - [-11.097316, 8.67006], - [-11.100174, 8.669781], - [-11.101516, 8.671177], - [-11.102962, 8.672064], - [-11.10673, 8.672189], - [-11.104583, 8.677916], - [-11.107082, 8.680417], - [-11.107083, 8.685416], - [-11.118749, 8.691249], - [-11.119583, 8.687917], - [-11.122083, 8.687083], - [-11.122424, 8.687561], - [-11.122328, 8.687729], - [-11.126234, 8.694494], - [-11.134046, 8.694495], - [-11.137953, 8.701259], - [-11.145765, 8.701259], - [-11.146397, 8.700167], - [-11.147021, 8.700515], - [-11.147364, 8.701723], - [-11.146525, 8.703848], - [-11.1481, 8.700699], - [-11.1487, 8.698499], - [-11.148999, 8.6957], - [-11.148999, 8.691899], - [-11.1487, 8.681299], - [-11.148899, 8.6775], - [-11.1496, 8.674399], - [-11.153499, 8.6666], - [-11.157999, 8.6608], - [-11.1609, 8.655599], - [-11.1631, 8.653099], - [-11.167999, 8.648999], - [-11.171599, 8.6414], - [-11.173699, 8.639], - [-11.178499, 8.6361], - [-11.180999, 8.6334], - [-11.184799, 8.6257], - [-11.1854, 8.622999], - [-11.185699, 8.6162], - [-11.186299, 8.6121], - [-11.188499, 8.6062], - [-11.189099, 8.6022], - [-11.189199, 8.596999], - [-11.18906, 8.587238] - ] - ], - "type": "Polygon" - }, - "id": 448, - "properties": { - "cc:admin:id": ["100"], - "cc:oBld:total": 1404, - "cc:pop:fifteen-to-twenty-four": 1450.9292939544316, - "cc:pop:grid3-total": 15411.523939854038, - "cc:pop:kontur-total": 7802.861424579451, - "cc:pop:men": 4295.978654199577, - "cc:pop:sixty-plus": 465.9113297423579, - "cc:pop:total": 7794.521684342386, - "cc:pop:under-five": 1247.8560278181994, - "cc:pop:women": 3498.5430301428064, - "cc:pop:women-fiften-to-forty-nine": 1727.8999225952907, - "cc:pop:wp-total": 8039.942689306178, - "cc:pop:wp-total-UN": 9305.669906779684, - "cc:id": "448", - "cc:Name": "Njagbwema CHP", - "cc:site": [-11.1434, 8.6408], - "user:parentName": "Nimikoro", - "user:code": "OU_233403", - "user:orgUnitId": "MUnd4KWox8m", - "user:level": "4", - "user:parentId": "DmaLM8WYmWv" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.890242, 8.655482], - [-10.890125, 8.655123], - [-10.889543, 8.65496], - [-10.889467, 8.654616], - [-10.889702, 8.653342], - [-10.889929, 8.653234], - [-10.89014, 8.653149], - [-10.890135, 8.653135], - [-10.889768, 8.652793], - [-10.889128, 8.653183], - [-10.8887, 8.653264], - [-10.888245, 8.653095], - [-10.88788, 8.65256], - [-10.888089, 8.652353], - [-10.887859, 8.652157], - [-10.888008, 8.651991], - [-10.887779, 8.651705], - [-10.887922, 8.651425], - [-10.887563, 8.651397], - [-10.88715, 8.65108], - [-10.8864, 8.650994], - [-10.88642, 8.650734], - [-10.885799, 8.650614], - [-10.885058, 8.651965], - [-10.884386, 8.651958], - [-10.883594, 8.652442], - [-10.883262, 8.652199], - [-10.883014, 8.652687], - [-10.883385, 8.652898], - [-10.883469, 8.653359], - [-10.88327, 8.653699], - [-10.882891, 8.653578], - [-10.882574, 8.65394], - [-10.882384, 8.653662], - [-10.882303, 8.653661], - [-10.882916, 8.64875], - [-10.882083, 8.64625], - [-10.882082, 8.645425], - [-10.881906, 8.645266], - [-10.882916, 8.643749], - [-10.882916, 8.63875], - [-10.874582, 8.637916], - [-10.872916, 8.636249], - [-10.870417, 8.634584], - [-10.869582, 8.632084], - [-10.867083, 8.630417], - [-10.867082, 8.628749], - [-10.862916, 8.625417], - [-10.860487, 8.624809], - [-10.861351, 8.621844], - [-10.862788, 8.620169], - [-10.863252, 8.618367], - [-10.864032, 8.617165], - [-10.864068, 8.617084], - [-10.861249, 8.617083], - [-10.852917, 8.61375], - [-10.852916, 8.60875], - [-10.848749, 8.610416], - [-10.842917, 8.604584], - [-10.842862, 8.604583], - [-10.843013, 8.604451], - [-10.844113, 8.602343], - [-10.842916, 8.59875], - [-10.837916, 8.592917], - [-10.83625, 8.592916], - [-10.836249, 8.58875], - [-10.832083, 8.583749], - [-10.830417, 8.577084], - [-10.836249, 8.569583], - [-10.83625, 8.564604], - [-10.836456, 8.564246], - [-10.83625, 8.563887], - [-10.836249, 8.562917], - [-10.835416, 8.56125], - [-10.830416, 8.559584], - [-10.826051, 8.559583], - [-10.826003, 8.559224], - [-10.824582, 8.55875], - [-10.818749, 8.558749], - [-10.817083, 8.556249], - [-10.817082, 8.548561], - [-10.8095, 8.556199], - [-10.806199, 8.5584], - [-10.802399, 8.5592], - [-10.792099, 8.559299], - [-10.787699, 8.559099], - [-10.785099, 8.558699], - [-10.7774, 8.5571], - [-10.773899, 8.5624], - [-10.773199, 8.565], - [-10.772599, 8.5708], - [-10.771899, 8.5736], - [-10.7701, 8.578099], - [-10.7696, 8.581499], - [-10.770199, 8.584899], - [-10.772199, 8.589399], - [-10.773, 8.5931], - [-10.7733, 8.599], - [-10.7735, 8.619099], - [-10.773399, 8.6221], - [-10.7727, 8.625799], - [-10.7706, 8.630199], - [-10.769299, 8.6334], - [-10.7669, 8.637599], - [-10.7649, 8.641599], - [-10.7602, 8.647699], - [-10.759227, 8.649623], - [-10.760417, 8.650417], - [-10.763749, 8.652083], - [-10.764583, 8.653749], - [-10.76625, 8.65375], - [-10.76875, 8.657083], - [-10.771434, 8.658157], - [-10.771638, 8.658048], - [-10.771928, 8.656702], - [-10.772964, 8.655311], - [-10.773628, 8.653631], - [-10.774486, 8.652087], - [-10.774615, 8.651324], - [-10.77445, 8.650549], - [-10.774846, 8.649648], - [-10.77563, 8.648534], - [-10.777238, 8.647239], - [-10.780416, 8.650417], - [-10.780417, 8.657083], - [-10.787916, 8.655417], - [-10.790417, 8.659583], - [-10.796249, 8.659584], - [-10.800416, 8.655417], - [-10.803749, 8.655417], - [-10.80625, 8.659583], - [-10.812965, 8.660255], - [-10.81265, 8.661411], - [-10.812666, 8.662851], - [-10.813161, 8.665213], - [-10.812982, 8.667383], - [-10.814582, 8.667916], - [-10.822916, 8.662917], - [-10.824583, 8.664583], - [-10.826632, 8.664071], - [-10.826916, 8.664524], - [-10.827432, 8.665281], - [-10.827788, 8.665353], - [-10.828829, 8.666139], - [-10.829082, 8.666721], - [-10.829987, 8.66566], - [-10.831188, 8.665643], - [-10.832116, 8.665977], - [-10.833417, 8.667188], - [-10.833575, 8.667924], - [-10.833526, 8.668968], - [-10.83316, 8.669948], - [-10.833078, 8.670689], - [-10.832653, 8.671207], - [-10.83219, 8.671467], - [-10.832083, 8.671545], - [-10.832083, 8.675416], - [-10.833749, 8.677082], - [-10.835417, 8.674583], - [-10.842082, 8.674582], - [-10.838751, 8.667084], - [-10.850416, 8.668749], - [-10.850417, 8.677916], - [-10.853156, 8.679012], - [-10.853907, 8.678501], - [-10.856267, 8.676992], - [-10.856804, 8.676467], - [-10.856966, 8.676026], - [-10.856967, 8.676025], - [-10.85744, 8.677177], - [-10.857417, 8.678], - [-10.857149, 8.678865], - [-10.857234, 8.679056], - [-10.858114, 8.680455], - [-10.860599, 8.6778], - [-10.862699, 8.675], - [-10.865199, 8.6701], - [-10.8676, 8.667099], - [-10.8707, 8.664699], - [-10.8734, 8.663599], - [-10.876799, 8.663], - [-10.879199, 8.6623], - [-10.8829, 8.660399], - [-10.886699, 8.6587], - [-10.889399, 8.6565], - [-10.890242, 8.655482] - ] - ], - "type": "Polygon" - }, - "id": 449, - "properties": { - "cc:admin:id": ["24"], - "cc:oBld:total": 828, - "cc:pop:fifteen-to-twenty-four": 952.6003853036747, - "cc:pop:grid3-total": 8889.275851620989, - "cc:pop:kontur-total": 4783.322943911579, - "cc:pop:men": 2336.8755780334695, - "cc:pop:sixty-plus": 230.35384534721084, - "cc:pop:total": 4731.81692260354, - "cc:pop:under-five": 760.0637586667893, - "cc:pop:women": 2394.9413445700716, - "cc:pop:women-fiften-to-forty-nine": 1182.954230650885, - "cc:pop:wp-total": 3746.1116209689853, - "cc:pop:wp-total-UN": 4339.310954449472, - "cc:id": "449", - "cc:Name": "Njagbwema Fiama CHC", - "cc:site": [-10.8235, 8.6276], - "user:parentName": "Fiama", - "user:code": "OU_233362", - "user:orgUnitId": "sLKHXoBIqSs", - "user:level": "4", - "user:parentId": "CF243RPvNY7" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.144299, 8.3261], - [-11.142699, 8.325099], - [-11.140699, 8.324499], - [-11.136999, 8.3243], - [-11.133099, 8.3245], - [-11.1303, 8.325399], - [-11.128, 8.326799], - [-11.1245, 8.329699], - [-11.122599, 8.330899], - [-11.1196, 8.331699], - [-11.117, 8.3317], - [-11.114399, 8.330999], - [-11.110892, 8.329246], - [-11.1078, 8.3277], - [-11.1058, 8.3261], - [-11.1033, 8.3223], - [-11.101582, 8.318738], - [-11.100641, 8.318993], - [-11.099855, 8.319001], - [-11.09375, 8.323749], - [-11.094583, 8.329583], - [-11.103749, 8.332084], - [-11.104582, 8.342916], - [-11.101249, 8.347083], - [-11.099583, 8.347916], - [-11.089614, 8.347205], - [-11.0908, 8.35], - [-11.094599, 8.363999], - [-11.0963, 8.367299], - [-11.0997, 8.369499], - [-11.103599, 8.368999], - [-11.110299, 8.3648], - [-11.116599, 8.3616], - [-11.1205, 8.360499], - [-11.128999, 8.3595], - [-11.131799, 8.3589], - [-11.137099, 8.3565], - [-11.139999, 8.354599], - [-11.142599, 8.350399], - [-11.143499, 8.3447], - [-11.143699, 8.3343], - [-11.144299, 8.3261] - ] - ], - "type": "Polygon" - }, - "id": 450, - "properties": { - "cc:admin:id": ["75"], - "cc:oBld:total": 74, - "cc:pop:fifteen-to-twenty-four": 162.9999979423594, - "cc:pop:grid3-total": 316.9999989711797, - "cc:pop:kontur-total": 844.9997641244225, - "cc:pop:men": 472.000257020123, - "cc:pop:sixty-plus": 49.99999939985483, - "cc:pop:total": 842.9999893688571, - "cc:pop:under-five": 128.99999837103456, - "cc:pop:women": 370.9997323487341, - "cc:pop:women-fiften-to-forty-nine": 183.99999768515437, - "cc:pop:wp-total": 827.9999943414883, - "cc:pop:wp-total-UN": 958.9999933984031, - "cc:id": "450", - "cc:Name": "Njagbwema MCHP", - "cc:site": [-11.1371, 8.355], - "user:parentName": "Gorama Kono", - "user:code": "OU_233358", - "user:orgUnitId": "aV9VVijeVB2", - "user:level": "4", - "user:parentId": "GWTIxJO9pRo" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.582156, 8.263242], - [-11.582399, 8.261899], - [-11.582, 8.2585], - [-11.5794, 8.2524], - [-11.578699, 8.2499], - [-11.575299, 8.251], - [-11.5725, 8.253299], - [-11.570599, 8.255999], - [-11.568999, 8.256999], - [-11.5653, 8.257499], - [-11.561399, 8.256499], - [-11.5582, 8.2525], - [-11.5521, 8.2457], - [-11.5499, 8.2429], - [-11.547899, 8.239099], - [-11.5451, 8.2354], - [-11.5415, 8.2324], - [-11.5376, 8.2306], - [-11.5355, 8.2292], - [-11.5313, 8.225], - [-11.528099, 8.219299], - [-11.525599, 8.216199], - [-11.521099, 8.211499], - [-11.5189, 8.2087], - [-11.5166, 8.2036], - [-11.5162, 8.2013], - [-11.517599, 8.1966], - [-11.518, 8.193099], - [-11.518199, 8.187999], - [-11.5181, 8.178699], - [-11.5181, 8.1666], - [-11.5178, 8.1631], - [-11.516699, 8.160399], - [-11.515599, 8.158999], - [-11.513599, 8.1575], - [-11.510199, 8.1568], - [-11.5068, 8.1574], - [-11.502499, 8.1597], - [-11.4949, 8.163399], - [-11.4922, 8.164099], - [-11.488099, 8.1643], - [-11.4747, 8.164399], - [-11.470299, 8.164199], - [-11.466299, 8.162799], - [-11.4641, 8.1602], - [-11.4617, 8.1582], - [-11.4566, 8.1552], - [-11.4538, 8.1527], - [-11.451499, 8.149799], - [-11.4495, 8.145], - [-11.448199, 8.1423], - [-11.444199, 8.1401], - [-11.442, 8.14], - [-11.439999, 8.1409], - [-11.4369, 8.143399], - [-11.434, 8.144999], - [-11.4298, 8.145899], - [-11.4273, 8.146799], - [-11.420599, 8.1501], - [-11.416599, 8.1532], - [-11.409599, 8.1603], - [-11.405599, 8.1634], - [-11.402599, 8.164099], - [-11.3982, 8.163599], - [-11.393799, 8.161599], - [-11.391299, 8.160899], - [-11.3859, 8.1603], - [-11.3833, 8.1597], - [-11.3779, 8.1574], - [-11.3736, 8.1564], - [-11.3705, 8.162599], - [-11.3682, 8.169299], - [-11.367, 8.174899], - [-11.3669, 8.179699], - [-11.3665, 8.183499], - [-11.375999, 8.190099], - [-11.383199, 8.194699], - [-11.391599, 8.201999], - [-11.3948, 8.2045], - [-11.3982, 8.2063], - [-11.4048, 8.2085], - [-11.410899, 8.2118], - [-11.414099, 8.2153], - [-11.418299, 8.227199], - [-11.421799, 8.234799], - [-11.425799, 8.242199], - [-11.4281, 8.2452], - [-11.431799, 8.248799], - [-11.4348, 8.251], - [-11.446599, 8.256699], - [-11.454099, 8.260799], - [-11.4574, 8.2635], - [-11.460399, 8.266599], - [-11.4655, 8.2739], - [-11.473499, 8.283399], - [-11.4755, 8.2871], - [-11.478099, 8.295799], - [-11.479499, 8.301799], - [-11.480599, 8.317099], - [-11.4817, 8.3208], - [-11.4838, 8.3251], - [-11.486999, 8.329299], - [-11.4946, 8.336699], - [-11.511399, 8.337499], - [-11.515999, 8.338099], - [-11.527799, 8.341899], - [-11.536099, 8.345099], - [-11.536399, 8.3413], - [-11.536899, 8.3385], - [-11.538999, 8.3321], - [-11.541399, 8.3278], - [-11.5427, 8.324599], - [-11.545099, 8.3203], - [-11.546399, 8.3172], - [-11.5483, 8.313599], - [-11.550099, 8.3097], - [-11.552199, 8.3068], - [-11.554199, 8.3048], - [-11.5571, 8.302699], - [-11.561, 8.300799], - [-11.563899, 8.2986], - [-11.566499, 8.2954], - [-11.569699, 8.2897], - [-11.573199, 8.2854], - [-11.5746, 8.283099], - [-11.578199, 8.2756], - [-11.579899, 8.2689], - [-11.581999, 8.2641], - [-11.582156, 8.263242] - ] - ], - "type": "Polygon" - }, - "id": 451, - "properties": { - "cc:admin:id": ["58"], - "cc:oBld:total": 1185, - "cc:pop:fifteen-to-twenty-four": 5106.016924123656, - "cc:pop:grid3-total": 16156.857670073534, - "cc:pop:kontur-total": 27837.519726541133, - "cc:pop:men": 13780.690776398324, - "cc:pop:sixty-plus": 1971.1063322830728, - "cc:pop:total": 28589.16639571421, - "cc:pop:under-five": 4707.712560525509, - "cc:pop:women": 14808.475619315876, - "cc:pop:women-fiften-to-forty-nine": 7029.5599802668, - "cc:pop:wp-total": 24654.63591823763, - "cc:pop:wp-total-UN": 28604.621388309482, - "cc:id": "451", - "cc:Name": "Njala CHC", - "cc:site": [-11.4596, 8.2006], - "user:parentName": "Komboya", - "user:code": "OU_1038", - "user:orgUnitId": "QsAwd531Cpd", - "user:level": "4", - "user:parentId": "JdhagCUEMbj" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.106249, 8.597083], - [-11.104582, 8.592084], - [-11.102916, 8.592917], - [-11.09875, 8.594583], - [-11.095417, 8.59375], - [-11.095416, 8.592917], - [-11.093749, 8.592916], - [-11.09125, 8.590417], - [-11.089582, 8.584584], - [-11.087769, 8.58413], - [-11.087804, 8.58375], - [-11.085416, 8.583749], - [-11.085032, 8.582597], - [-11.085295, 8.5827], - [-11.085799, 8.582678], - [-11.085046, 8.581861], - [-11.084744, 8.581731], - [-11.084583, 8.58125], - [-11.085978, 8.580319], - [-11.08566, 8.579951], - [-11.084852, 8.579393], - [-11.08436, 8.578715], - [-11.083992, 8.577874], - [-11.084021, 8.577531], - [-11.083438, 8.577088], - [-11.083347, 8.576645], - [-11.083126, 8.576421], - [-11.083226, 8.575889], - [-11.082786, 8.575283], - [-11.083505, 8.574878], - [-11.082917, 8.574583], - [-11.082916, 8.572917], - [-11.079582, 8.569584], - [-11.077083, 8.570416], - [-11.076249, 8.567917], - [-11.072917, 8.565416], - [-11.072917, 8.563749], - [-11.075416, 8.562083], - [-11.075416, 8.559584], - [-11.074979, 8.558711], - [-11.074638, 8.559007], - [-11.074172, 8.559116], - [-11.072928, 8.559017], - [-11.072856, 8.559075], - [-11.072082, 8.557917], - [-11.069582, 8.557916], - [-11.067082, 8.555417], - [-11.064582, 8.555416], - [-11.06375, 8.552916], - [-11.06375, 8.55125], - [-11.065531, 8.549468], - [-11.062295, 8.549267], - [-11.06158, 8.549259], - [-11.061599, 8.549376], - [-11.062428, 8.552213], - [-11.062851, 8.552916], - [-11.05875, 8.552916], - [-11.058749, 8.549583], - [-11.05625, 8.54125], - [-11.056249, 8.540417], - [-11.052083, 8.53125], - [-11.049583, 8.530416], - [-11.048749, 8.52625], - [-11.04375, 8.522917], - [-11.044583, 8.522083], - [-11.046249, 8.517084], - [-11.046249, 8.515417], - [-11.040416, 8.512916], - [-11.039583, 8.510416], - [-11.039583, 8.505417], - [-11.041249, 8.502084], - [-11.037083, 8.49875], - [-11.034583, 8.49625], - [-11.034582, 8.49125], - [-11.025417, 8.495416], - [-11.022917, 8.495416], - [-11.022083, 8.485417], - [-11.02324, 8.483968], - [-11.020545, 8.4793], - [-11.012733, 8.479299], - [-11.008826, 8.472534], - [-11.007034, 8.472534], - [-11.0083, 8.4738], - [-11.010499, 8.476799], - [-11.013, 8.4812], - [-11.018199, 8.4879], - [-11.019199, 8.491299], - [-11.019399, 8.493999], - [-11.0192, 8.496699], - [-11.0186, 8.499199], - [-11.017, 8.502699], - [-11.0166, 8.5051], - [-11.017, 8.5075], - [-11.0189, 8.5119], - [-11.019499, 8.515299], - [-11.019499, 8.5181], - [-11.019099, 8.5208], - [-11.016699, 8.5264], - [-11.0162, 8.529899], - [-11.016, 8.5341], - [-11.016199, 8.547899], - [-11.0161, 8.550999], - [-11.015599, 8.5541], - [-11.0136, 8.559499], - [-11.0128, 8.563399], - [-11.0125, 8.569599], - [-11.012212, 8.571387], - [-11.017082, 8.572083], - [-11.020416, 8.570417], - [-11.02125, 8.572083], - [-11.023749, 8.572917], - [-11.024583, 8.573749], - [-11.02625, 8.57375], - [-11.02875, 8.580416], - [-11.034583, 8.57875], - [-11.039582, 8.58375], - [-11.03375, 8.587083], - [-11.027917, 8.587084], - [-11.033376, 8.591178], - [-11.034031, 8.58991], - [-11.03496, 8.587695], - [-11.03562, 8.586692], - [-11.036325, 8.586255], - [-11.036514, 8.586211], - [-11.037083, 8.587916], - [-11.042916, 8.587917], - [-11.042917, 8.589584], - [-11.043474, 8.592925], - [-11.043534, 8.592859], - [-11.044402, 8.592457], - [-11.044939, 8.592551], - [-11.045134, 8.592457], - [-11.04548, 8.591413], - [-11.045921, 8.590775], - [-11.046745, 8.590004], - [-11.047137, 8.589856], - [-11.04741, 8.589911], - [-11.048122, 8.590699], - [-11.049596, 8.591654], - [-11.052765, 8.590088], - [-11.054436, 8.590823], - [-11.054646, 8.591134], - [-11.054735, 8.591506], - [-11.054741, 8.591525], - [-11.05474, 8.591527], - [-11.054862, 8.592038], - [-11.055212, 8.59226], - [-11.056773, 8.592061], - [-11.058308, 8.592159], - [-11.058908, 8.592497], - [-11.058647, 8.593198], - [-11.057461, 8.593924], - [-11.057465, 8.593978], - [-11.057516, 8.594004], - [-11.061035, 8.595917], - [-11.061435, 8.596164], - [-11.061527, 8.596325], - [-11.061607, 8.596262], - [-11.062009, 8.595355], - [-11.063232, 8.594766], - [-11.063355, 8.595045], - [-11.063073, 8.595563], - [-11.063532, 8.595926], - [-11.064284, 8.5962], - [-11.06354, 8.597389], - [-11.064899, 8.597435], - [-11.065416, 8.597027], - [-11.065417, 8.598749], - [-11.06625, 8.599583], - [-11.069287, 8.598367], - [-11.069054, 8.598105], - [-11.069019, 8.597819], - [-11.069099, 8.597636], - [-11.069121, 8.597599], - [-11.0693, 8.597253], - [-11.069346, 8.597204], - [-11.069489, 8.59709], - [-11.069927, 8.596829], - [-11.070055, 8.596513], - [-11.07108, 8.596311], - [-11.071646, 8.596491], - [-11.071962, 8.596434], - [-11.07243, 8.597101], - [-11.073766, 8.597971], - [-11.074263, 8.5981], - [-11.073941, 8.599252], - [-11.075116, 8.5986], - [-11.075951, 8.5984], - [-11.076426, 8.598675], - [-11.077222, 8.598846], - [-11.077616, 8.598813], - [-11.078367, 8.598265], - [-11.078967, 8.598219], - [-11.079384, 8.598597], - [-11.080022, 8.598264], - [-11.079806, 8.598983], - [-11.080078, 8.599868], - [-11.080219, 8.601176], - [-11.081314, 8.603151], - [-11.082917, 8.602084], - [-11.086249, 8.602916], - [-11.087234, 8.60144], - [-11.087513, 8.602455], - [-11.087962, 8.604294], - [-11.088719, 8.60424], - [-11.089804, 8.603863], - [-11.090373, 8.604316], - [-11.090373, 8.604318], - [-11.089802, 8.604585], - [-11.089802, 8.605134], - [-11.090223, 8.605417], - [-11.090188, 8.60674], - [-11.090657, 8.607144], - [-11.091962, 8.607471], - [-11.092843, 8.60798], - [-11.09303, 8.609141], - [-11.093396, 8.60934], - [-11.093475, 8.609343], - [-11.093508, 8.60917], - [-11.094018, 8.609178], - [-11.094671, 8.608807], - [-11.094716, 8.60875], - [-11.097916, 8.608749], - [-11.100416, 8.605416], - [-11.102083, 8.597917], - [-11.106249, 8.597083] - ] - ], - "type": "Polygon" - }, - "id": 452, - "properties": { - "cc:admin:id": ["100"], - "cc:oBld:total": 911, - "cc:pop:fifteen-to-twenty-four": 879.5069770303846, - "cc:pop:grid3-total": 4558.07445591467, - "cc:pop:kontur-total": 4496.497575689362, - "cc:pop:men": 2616.6977102836527, - "cc:pop:sixty-plus": 265.78576105883695, - "cc:pop:total": 4709.648866022719, - "cc:pop:under-five": 775.2483983827208, - "cc:pop:women": 2092.951155739064, - "cc:pop:women-fiften-to-forty-nine": 1039.6808326776925, - "cc:pop:wp-total": 4226.057426268574, - "cc:pop:wp-total-UN": 4895.578898383434, - "cc:id": "452", - "cc:Name": "Njala CHP", - "cc:site": [-11.054, 8.5732], - "user:parentName": "Nimikoro", - "user:code": "OU_233401", - "user:orgUnitId": "vPz4Irz7sxR", - "user:level": "4", - "user:parentId": "DmaLM8WYmWv" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.106137, 8.147007], - [-12.105896, 8.146756], - [-12.103128, 8.145803], - [-12.09852, 8.143791], - [-12.095524, 8.142219], - [-12.093875, 8.141075], - [-12.093213, 8.14042], - [-12.092563, 8.139525], - [-12.092424, 8.13875], - [-12.093674, 8.138749], - [-12.093707, 8.138641], - [-12.094228, 8.138289], - [-12.094367, 8.137799], - [-12.093899, 8.136249], - [-12.094148, 8.13375], - [-12.093018, 8.133749], - [-12.093017, 8.133748], - [-12.093045, 8.133021], - [-12.093526, 8.128137], - [-12.093609, 8.120954], - [-12.093779, 8.119583], - [-12.094284, 8.118606], - [-12.095752, 8.117678], - [-12.096535, 8.117582], - [-12.097809, 8.117701], - [-12.099337, 8.118106], - [-12.099831, 8.117976], - [-12.10118, 8.117212], - [-12.103501, 8.115438], - [-12.104669, 8.11415], - [-12.10544, 8.11222], - [-12.105715, 8.11116], - [-12.105607, 8.110339], - [-12.105162, 8.109541], - [-12.10444, 8.109052], - [-12.10243, 8.108468], - [-12.098412, 8.10661], - [-12.097485, 8.106467], - [-12.097003, 8.106693], - [-12.094681, 8.109802], - [-12.094584, 8.109911], - [-12.094583, 8.10991], - [-12.094582, 8.108717], - [-12.090589, 8.112531], - [-12.086016, 8.115974], - [-12.084145, 8.11682], - [-12.080718, 8.116391], - [-12.080554, 8.115927], - [-12.080686, 8.115449], - [-12.08148, 8.11496], - [-12.082406, 8.114103], - [-12.084379, 8.110588], - [-12.084573, 8.109099], - [-12.084632, 8.106134], - [-12.084909, 8.104561], - [-12.085535, 8.103143], - [-12.086189, 8.102084], - [-12.085148, 8.102084], - [-12.085147, 8.102082], - [-12.087514, 8.097795], - [-12.088277, 8.096678], - [-12.0905, 8.094295], - [-12.091049, 8.092965], - [-12.096404, 8.085949], - [-12.0935, 8.0858], - [-12.0906, 8.085899], - [-12.0869, 8.086699], - [-12.0825, 8.088699], - [-12.079599, 8.0894], - [-12.073699, 8.089699], - [-12.0566, 8.0896], - [-12.053199, 8.0921], - [-12.050799, 8.093], - [-12.046499, 8.094], - [-12.0414, 8.096399], - [-12.038199, 8.0977], - [-12.033, 8.100299], - [-12.027899, 8.1014], - [-12.0227, 8.103799], - [-12.018499, 8.1059], - [-12.013999, 8.1097], - [-12.0029, 8.120899], - [-12.0003, 8.123599], - [-11.998099, 8.1265], - [-11.996299, 8.1303], - [-11.994, 8.134599], - [-11.992699, 8.1377], - [-11.9902, 8.142999], - [-11.9888, 8.148899], - [-11.986899, 8.1534], - [-11.9863, 8.157099], - [-11.986246, 8.159583], - [-11.98625, 8.159584], - [-11.989583, 8.162083], - [-11.992916, 8.162916], - [-11.994582, 8.158749], - [-11.99375, 8.155417], - [-12.007082, 8.157083], - [-12.00875, 8.155417], - [-12.012082, 8.155416], - [-12.01125, 8.153751], - [-12.011251, 8.153749], - [-12.027916, 8.150416], - [-12.026353, 8.146246], - [-12.030545, 8.146246], - [-12.034452, 8.153011], - [-12.038841, 8.153012], - [-12.03875, 8.153749], - [-12.039583, 8.154583], - [-12.043749, 8.15625], - [-12.04625, 8.158749], - [-12.052943, 8.158749], - [-12.053091, 8.157494], - [-12.053242, 8.155085], - [-12.057916, 8.15375], - [-12.062082, 8.15125], - [-12.065417, 8.154583], - [-12.067083, 8.154583], - [-12.074056, 8.152491], - [-12.075449, 8.154582], - [-12.078955, 8.160427], - [-12.079721, 8.162112], - [-12.080436, 8.164319], - [-12.081009, 8.166726], - [-12.081961, 8.166488], - [-12.081592, 8.164553], - [-12.080589, 8.161859], - [-12.077032, 8.155121], - [-12.073339, 8.149578], - [-12.072777, 8.14828], - [-12.072641, 8.146478], - [-12.072811, 8.145467], - [-12.074524, 8.140694], - [-12.075138, 8.139479], - [-12.075558, 8.139074], - [-12.076256, 8.139002], - [-12.078038, 8.139514], - [-12.081046, 8.140717], - [-12.082431, 8.141587], - [-12.083236, 8.142207], - [-12.085199, 8.145244], - [-12.087714, 8.148139], - [-12.09124, 8.151117], - [-12.093802, 8.152522], - [-12.095593, 8.153216], - [-12.095974, 8.152079], - [-12.098532, 8.153214], - [-12.100324, 8.153534], - [-12.101637, 8.153284], - [-12.102179, 8.152963], - [-12.105595, 8.148747], - [-12.106137, 8.147531], - [-12.106137, 8.147007] - ] - ], - "type": "Polygon" - }, - "id": 453, - "properties": { - "cc:admin:id": ["60"], - "cc:oBld:total": 636, - "cc:pop:fifteen-to-twenty-four": 2442.524463563318, - "cc:pop:grid3-total": 9312.635098338782, - "cc:pop:kontur-total": 14035.863932594977, - "cc:pop:men": 6522.589668133209, - "cc:pop:sixty-plus": 959.7502362942521, - "cc:pop:total": 13737.460476259706, - "cc:pop:under-five": 2247.800863962433, - "cc:pop:women": 7214.870808126498, - "cc:pop:women-fiften-to-forty-nine": 3456.9905013585176, - "cc:pop:wp-total": 9868.085699403804, - "cc:pop:wp-total-UN": 11433.2770646883, - "cc:id": "453", - "cc:Name": "Njala University Hospital", - "cc:site": [-12.0716, 8.1111], - "user:parentName": "Kori", - "user:code": "OU_246995", - "user:orgUnitId": "Bpvug2zxHEZ", - "user:level": "4", - "user:parentId": "nV3OkyzF4US" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.499036, 7.396222], - [-11.498899, 7.395899], - [-11.498399, 7.393099], - [-11.4982, 7.3873], - [-11.498, 7.3566], - [-11.4978, 7.3537], - [-11.497199, 7.349999], - [-11.494599, 7.343799], - [-11.494099, 7.339999], - [-11.493299, 7.331899], - [-11.4907, 7.3252], - [-11.489399, 7.320199], - [-11.4855, 7.3118], - [-11.4831, 7.3075], - [-11.481699, 7.304299], - [-11.4792, 7.3001], - [-11.477899, 7.296899], - [-11.475526, 7.292395], - [-11.472917, 7.292916], - [-11.472083, 7.292917], - [-11.470199, 7.291975], - [-11.470591, 7.293346], - [-11.470432, 7.293731], - [-11.470668, 7.294778], - [-11.470904, 7.295162], - [-11.471116, 7.295178], - [-11.471377, 7.296088], - [-11.471861, 7.296173], - [-11.472605, 7.296836], - [-11.472924, 7.297575], - [-11.472878, 7.298192], - [-11.472357, 7.299513], - [-11.473207, 7.302485], - [-11.470245, 7.305416], - [-11.466486, 7.305417], - [-11.466028, 7.306442], - [-11.463339, 7.308793], - [-11.463801, 7.311379], - [-11.4629, 7.313453], - [-11.462357, 7.317523], - [-11.461957, 7.31776], - [-11.461601, 7.318591], - [-11.460227, 7.319392], - [-11.459582, 7.31875], - [-11.457357, 7.318305], - [-11.455847, 7.318869], - [-11.454509, 7.321084], - [-11.452913, 7.322427], - [-11.450831, 7.324778], - [-11.449797, 7.327356], - [-11.445573, 7.330159], - [-11.44264, 7.330084], - [-11.440511, 7.329631], - [-11.43691, 7.329557], - [-11.434766, 7.330099], - [-11.433642, 7.329752], - [-11.43346, 7.329345], - [-11.433839, 7.328833], - [-11.433262, 7.328728], - [-11.432669, 7.329224], - [-11.431484, 7.328909], - [-11.43086, 7.32945], - [-11.429994, 7.328939], - [-11.429182, 7.329149], - [-11.42855, 7.329805], - [-11.427722, 7.330092], - [-11.426818, 7.330982], - [-11.426089, 7.333567], - [-11.426262, 7.335715], - [-11.42507, 7.34016], - [-11.425092, 7.341006], - [-11.424508, 7.343484], - [-11.424075, 7.343674], - [-11.423353, 7.344436], - [-11.422813, 7.345329], - [-11.422396, 7.345613], - [-11.421852, 7.346355], - [-11.421718, 7.346925], - [-11.421765, 7.349813], - [-11.421024, 7.350244], - [-11.420407, 7.350299], - [-11.420005, 7.350548], - [-11.419363, 7.352325], - [-11.419643, 7.352725], - [-11.420049, 7.352699], - [-11.42005, 7.3527], - [-11.419777, 7.353226], - [-11.419428, 7.353264], - [-11.418933, 7.354574], - [-11.418503, 7.354707], - [-11.4185, 7.354715], - [-11.418499, 7.354715], - [-11.417394, 7.353832], - [-11.417236, 7.354364], - [-11.41729, 7.355532], - [-11.417602, 7.356694], - [-11.418122, 7.357801], - [-11.417897, 7.358302], - [-11.418932, 7.358659], - [-11.418933, 7.358661], - [-11.418477, 7.359585], - [-11.418062, 7.359897], - [-11.417789, 7.360721], - [-11.4169, 7.360568], - [-11.416799, 7.361395], - [-11.414348, 7.363471], - [-11.413626, 7.36428], - [-11.412736, 7.366144], - [-11.412402, 7.366395], - [-11.412723, 7.367444], - [-11.412493, 7.368619], - [-11.41264, 7.369682], - [-11.412142, 7.370847], - [-11.412182, 7.371148], - [-11.411755, 7.371243], - [-11.411201, 7.372216], - [-11.410324, 7.373303], - [-11.410258, 7.37383], - [-11.410633, 7.373867], - [-11.411168, 7.373147], - [-11.411322, 7.372616], - [-11.412545, 7.371105], - [-11.412549, 7.372693], - [-11.412377, 7.373397], - [-11.412122, 7.373414], - [-11.411873, 7.373854], - [-11.410785, 7.374567], - [-11.40991, 7.374367], - [-11.407719, 7.376333], - [-11.407527, 7.376334], - [-11.40703, 7.377132], - [-11.406937, 7.37771], - [-11.406897, 7.379794], - [-11.410207, 7.380267], - [-11.411012, 7.378945], - [-11.411178, 7.378116], - [-11.416249, 7.37875], - [-11.419582, 7.383749], - [-11.419583, 7.384583], - [-11.422083, 7.385417], - [-11.427916, 7.391249], - [-11.424583, 7.397916], - [-11.428749, 7.400416], - [-11.42875, 7.402083], - [-11.433729, 7.406351], - [-11.433699, 7.406423], - [-11.43875, 7.412916], - [-11.442083, 7.412917], - [-11.447083, 7.422916], - [-11.451249, 7.41875], - [-11.452649, 7.418284], - [-11.45265, 7.418284], - [-11.452965, 7.419515], - [-11.462916, 7.418749], - [-11.462917, 7.412917], - [-11.469582, 7.412917], - [-11.470933, 7.414266], - [-11.477629, 7.414266], - [-11.479706, 7.41786], - [-11.488749, 7.41375], - [-11.489582, 7.412916], - [-11.48875, 7.402917], - [-11.491257, 7.402602], - [-11.495416, 7.402083], - [-11.497916, 7.399583], - [-11.499036, 7.396222] - ] - ], - "type": "Polygon" - }, - "id": 454, - "properties": { - "cc:admin:id": ["5"], - "cc:oBld:total": 141, - "cc:pop:fifteen-to-twenty-four": 2168.90704069366, - "cc:pop:grid3-total": 4972.159576098363, - "cc:pop:kontur-total": 12150.190150445525, - "cc:pop:men": 5816.604032422398, - "cc:pop:sixty-plus": 895.5949157242369, - "cc:pop:total": 11958.71917912526, - "cc:pop:under-five": 2026.6041221926007, - "cc:pop:women": 6142.115146702862, - "cc:pop:women-fiften-to-forty-nine": 2911.645527378347, - "cc:pop:wp-total": 10154.89121449366, - "cc:pop:wp-total-UN": 11771.158775217402, - "cc:id": "454", - "cc:Name": "Njaluahun CHP", - "cc:site": [-11.4446, 7.3924], - "user:parentName": "Barri", - "user:code": "OU_260433", - "user:orgUnitId": "kvzdkXBxHoN", - "user:level": "4", - "user:parentId": "RzKeCma9qb1" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.029499, 8.075399], - [-12.0226, 8.0705], - [-12.0199, 8.0682], - [-12.014, 8.0624], - [-12.0124, 8.0603], - [-12.010499, 8.056399], - [-12.0081, 8.0521], - [-12.006799, 8.048899], - [-12.0044, 8.0447], - [-12.002899, 8.041499], - [-12.001299, 8.039299], - [-11.9951, 8.0327], - [-11.9929, 8.0298], - [-11.991099, 8.025899], - [-11.987599, 8.019299], - [-11.986199, 8.017099], - [-11.983, 8.0132], - [-11.9817, 8.0111], - [-11.9806, 8.0071], - [-11.9795, 8.0051], - [-11.9752, 8.0018], - [-11.971299, 7.9984], - [-11.965699, 7.9993], - [-11.959699, 8.0011], - [-11.9558, 8.001599], - [-11.950499, 8.001299], - [-11.943299, 7.999699], - [-11.9393, 7.9996], - [-11.9336, 8.000699], - [-11.9304, 8.000599], - [-11.927199, 7.999399], - [-11.9234, 7.9974], - [-11.917599, 7.992499], - [-11.9071, 7.9882], - [-11.900499, 7.985899], - [-11.8904, 7.9809], - [-11.8823, 7.9793], - [-11.8786, 7.9781], - [-11.8736, 7.9744], - [-11.868599, 7.9726], - [-11.8627, 7.9723], - [-11.858199, 7.9727], - [-11.854199, 7.9738], - [-11.8431, 7.978599], - [-11.836099, 7.9797], - [-11.8287, 7.979799], - [-11.823499, 7.977099], - [-11.817, 7.9754], - [-11.819899, 7.983899], - [-11.8213, 7.987299], - [-11.825699, 7.991999], - [-11.827799, 7.9951], - [-11.829299, 8.000099], - [-11.8294, 8.0037], - [-11.841799, 8.014799], - [-11.846099, 8.018199], - [-11.8497, 8.0201], - [-11.8561, 8.0223], - [-11.8625, 8.0255], - [-11.8659, 8.0278], - [-11.8735, 8.034], - [-11.8913, 8.0454], - [-11.896599, 8.049999], - [-11.900399, 8.054099], - [-11.902399, 8.057499], - [-11.9036, 8.0608], - [-11.904199, 8.0648], - [-11.9039, 8.068899], - [-11.901999, 8.0745], - [-11.8987, 8.081099], - [-11.897802, 8.086249], - [-11.897917, 8.08625], - [-11.902082, 8.092916], - [-11.902917, 8.092917], - [-11.904582, 8.095417], - [-11.905417, 8.102083], - [-11.913363, 8.102805], - [-11.914582, 8.102012], - [-11.914583, 8.102917], - [-11.917916, 8.108749], - [-11.91875, 8.110416], - [-11.920416, 8.110416], - [-11.92625, 8.104584], - [-11.931249, 8.114583], - [-11.93125, 8.102087], - [-11.931251, 8.102086], - [-11.934582, 8.107084], - [-11.934583, 8.114855], - [-11.934779, 8.115016], - [-11.935916, 8.115068], - [-11.935561, 8.115845], - [-11.934608, 8.11614], - [-11.934583, 8.11613], - [-11.934583, 8.118028], - [-11.937399, 8.1154], - [-11.9395, 8.113699], - [-11.9418, 8.112299], - [-11.944899, 8.1109], - [-11.948399, 8.1089], - [-11.9515, 8.107499], - [-11.9538, 8.105999], - [-11.9581, 8.102599], - [-11.9635, 8.099599], - [-11.969999, 8.0946], - [-11.9746, 8.092099], - [-11.9804, 8.087699], - [-11.989299, 8.0828], - [-11.9925, 8.081499], - [-11.9968, 8.079099], - [-12.003899, 8.0757], - [-12.006, 8.074999], - [-12.0097, 8.0747], - [-12.0154, 8.0747], - [-12.029499, 8.075399] - ] - ], - "type": "Polygon" - }, - "id": 455, - "properties": { - "cc:admin:id": ["61"], - "cc:oBld:total": 74, - "cc:pop:fifteen-to-twenty-four": 1411.6740045343058, - "cc:pop:grid3-total": 7973.234247563648, - "cc:pop:kontur-total": 7215.395994246224, - "cc:pop:men": 3558.966029031775, - "cc:pop:sixty-plus": 561.7417109538814, - "cc:pop:total": 7617.110469501815, - "cc:pop:under-five": 1290.5252027698195, - "cc:pop:women": 4058.144440470038, - "cc:pop:women-fiften-to-forty-nine": 2010.3104006726937, - "cc:pop:wp-total": 6545.707931304519, - "cc:pop:wp-total-UN": 7602.490657940399, - "cc:id": "455", - "cc:Name": "Njama CHC", - "cc:site": [-11.941, 8.0822], - "user:parentName": "Kowa", - "user:code": "OU_247034", - "user:orgUnitId": "hzf90qz08AW", - "user:level": "4", - "user:parentId": "xIKjidMrico" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.69174, 8.592682], - [-12.6861, 8.5867], - [-12.6845, 8.5844], - [-12.6831, 8.5813], - [-12.680599, 8.576999], - [-12.6774, 8.570399], - [-12.677, 8.566899], - [-12.680499, 8.5589], - [-12.682799, 8.5546], - [-12.6835, 8.551099], - [-12.683699, 8.547499], - [-12.6835, 8.5438], - [-12.6827, 8.5404], - [-12.680199, 8.5375], - [-12.675099, 8.534699], - [-12.671899, 8.532199], - [-12.666099, 8.527099], - [-12.6566, 8.5222], - [-12.652999, 8.521499], - [-12.6442, 8.5214], - [-12.6394, 8.520899], - [-12.633999, 8.518599], - [-12.628099, 8.517199], - [-12.6197, 8.5133], - [-12.619526, 8.513203], - [-12.620477, 8.514534], - [-12.620332, 8.515505], - [-12.620402, 8.516361], - [-12.619849, 8.517765], - [-12.619694, 8.518734], - [-12.619623, 8.5188], - [-12.619314, 8.520371], - [-12.618651, 8.520861], - [-12.61825, 8.52124], - [-12.618083, 8.521708], - [-12.612917, 8.520417], - [-12.61125, 8.521249], - [-12.609582, 8.51375], - [-12.606249, 8.510417], - [-12.60263, 8.509813], - [-12.601892, 8.513026], - [-12.603095, 8.512989], - [-12.604491, 8.513395], - [-12.606117, 8.514204], - [-12.606594, 8.514752], - [-12.606971, 8.515518], - [-12.606728, 8.516025], - [-12.606275, 8.516394], - [-12.606114, 8.517277], - [-12.605487, 8.517412], - [-12.604422, 8.517276], - [-12.603168, 8.517703], - [-12.602743, 8.518242], - [-12.601891, 8.518374], - [-12.601221, 8.51981], - [-12.600763, 8.519943], - [-12.600289, 8.519789], - [-12.600365, 8.519482], - [-12.599639, 8.519502], - [-12.598673, 8.519095], - [-12.598379, 8.518613], - [-12.597905, 8.518281], - [-12.597712, 8.518314], - [-12.597317, 8.520675], - [-12.596241, 8.520651], - [-12.595651, 8.520278], - [-12.594933, 8.520154], - [-12.594572, 8.5203], - [-12.593444, 8.520122], - [-12.591857, 8.52056], - [-12.591586, 8.520605], - [-12.586861, 8.522856], - [-12.585869, 8.524315], - [-12.585383, 8.52552], - [-12.584917, 8.525726], - [-12.584902, 8.525721], - [-12.584531, 8.525875], - [-12.583089, 8.525923], - [-12.582309, 8.526579], - [-12.582402, 8.526889], - [-12.582734, 8.52788], - [-12.583426, 8.528792], - [-12.584228, 8.529405], - [-12.584449, 8.52976], - [-12.584818, 8.529894], - [-12.584818, 8.529895], - [-12.580417, 8.53125], - [-12.579582, 8.532917], - [-12.575594, 8.534246], - [-12.575408, 8.53378], - [-12.575036, 8.533338], - [-12.574285, 8.53246], - [-12.572916, 8.532916], - [-12.569583, 8.532084], - [-12.56875, 8.532083], - [-12.568749, 8.531833], - [-12.568582, 8.531914], - [-12.567736, 8.531973], - [-12.56738, 8.53216], - [-12.567154, 8.532599], - [-12.566065, 8.532945], - [-12.566023, 8.532901], - [-12.565593, 8.532805], - [-12.565129, 8.532948], - [-12.565503, 8.533588], - [-12.565924, 8.535832], - [-12.566615, 8.53753], - [-12.567026, 8.538413], - [-12.567142, 8.540292], - [-12.557917, 8.539583], - [-12.55664, 8.535117], - [-12.556518, 8.535204], - [-12.554588, 8.535487], - [-12.553602, 8.535816], - [-12.549178, 8.538765], - [-12.54837, 8.537495], - [-12.548184, 8.538079], - [-12.548076, 8.538454], - [-12.54792, 8.538899], - [-12.547746, 8.539269], - [-12.547397, 8.539418], - [-12.546734, 8.539352], - [-12.546514, 8.539516], - [-12.546234, 8.539542], - [-12.544878, 8.538899], - [-12.54051, 8.538666], - [-12.540307, 8.538519], - [-12.532157, 8.5404], - [-12.53222, 8.540684], - [-12.532045, 8.541779], - [-12.53091, 8.543248], - [-12.530862, 8.543989], - [-12.531085, 8.544675], - [-12.532074, 8.546125], - [-12.532943, 8.546631], - [-12.534708, 8.547163], - [-12.534796, 8.547305], - [-12.534795, 8.547307], - [-12.525417, 8.548749], - [-12.522083, 8.550416], - [-12.52125, 8.550417], - [-12.515416, 8.558749], - [-12.514583, 8.558749], - [-12.514582, 8.557917], - [-12.513749, 8.557916], - [-12.509582, 8.557084], - [-12.507082, 8.557917], - [-12.505741, 8.55993], - [-12.505839, 8.560526], - [-12.505729, 8.56114], - [-12.505929, 8.56158], - [-12.495417, 8.564584], - [-12.49594, 8.566682], - [-12.495805, 8.566608], - [-12.495182, 8.566729], - [-12.494361, 8.566633], - [-12.493889, 8.566316], - [-12.492832, 8.565052], - [-12.491729, 8.567099], - [-12.49102, 8.568066], - [-12.490547, 8.568695], - [-12.488075, 8.570837], - [-12.487468, 8.571484], - [-12.482083, 8.572084], - [-12.47625, 8.577916], - [-12.475417, 8.577917], - [-12.473749, 8.582916], - [-12.464583, 8.582917], - [-12.460286, 8.584349], - [-12.4634, 8.586], - [-12.465599, 8.588599], - [-12.4665, 8.5905], - [-12.467699, 8.595499], - [-12.469599, 8.600099], - [-12.470399, 8.603699], - [-12.470699, 8.609499], - [-12.471199, 8.613299], - [-12.4736, 8.6192], - [-12.4744, 8.6233], - [-12.4747, 8.6291], - [-12.475499, 8.632799], - [-12.477699, 8.638199], - [-12.478299, 8.641899], - [-12.478344, 8.642753], - [-12.47881, 8.642998], - [-12.479901, 8.644376], - [-12.480431, 8.644064], - [-12.482196, 8.643987], - [-12.482447, 8.643708], - [-12.482696, 8.6427], - [-12.483807, 8.641589], - [-12.484564, 8.64115], - [-12.486289, 8.640522], - [-12.486388, 8.640369], - [-12.486247, 8.639004], - [-12.486831, 8.639109], - [-12.487081, 8.638983], - [-12.487082, 8.638983], - [-12.487082, 8.639128], - [-12.486924, 8.639206], - [-12.486437, 8.639203], - [-12.486361, 8.639628], - [-12.486533, 8.640249], - [-12.486739, 8.640372], - [-12.48765, 8.64034], - [-12.487697, 8.640402], - [-12.48737, 8.640491], - [-12.486482, 8.64111], - [-12.486156, 8.640801], - [-12.484359, 8.641619], - [-12.483525, 8.642572], - [-12.482904, 8.64293], - [-12.482709, 8.643971], - [-12.482806, 8.644222], - [-12.483391, 8.644372], - [-12.483642, 8.644701], - [-12.486112, 8.644896], - [-12.486957, 8.643956], - [-12.488917, 8.642317], - [-12.489502, 8.641546], - [-12.490547, 8.64129], - [-12.490669, 8.640934], - [-12.490565, 8.640387], - [-12.491002, 8.640226], - [-12.491674, 8.639514], - [-12.492524, 8.639309], - [-12.494882, 8.640734], - [-12.495467, 8.640986], - [-12.495546, 8.640997], - [-12.495488, 8.640901], - [-12.495392, 8.640901], - [-12.495391, 8.6409], - [-12.495564, 8.640209], - [-12.495849, 8.6402], - [-12.497402, 8.63886], - [-12.497404, 8.638726], - [-12.49956, 8.636333], - [-12.499562, 8.636334], - [-12.499249, 8.637585], - [-12.502692, 8.634056], - [-12.503637, 8.633634], - [-12.505095, 8.633486], - [-12.505992, 8.633771], - [-12.507341, 8.633785], - [-12.508549, 8.634588], - [-12.510081, 8.634956], - [-12.510081, 8.634958], - [-12.508985, 8.635674], - [-12.508271, 8.636951], - [-12.508274, 8.637083], - [-12.508821, 8.637083], - [-12.508845, 8.636922], - [-12.509352, 8.636692], - [-12.510463, 8.63544], - [-12.51267, 8.635082], - [-12.513647, 8.634627], - [-12.513945, 8.634089], - [-12.514079, 8.632857], - [-12.513897, 8.632038], - [-12.513729, 8.631569], - [-12.51298, 8.630745], - [-12.512517, 8.629963], - [-12.512156, 8.627984], - [-12.512589, 8.627279], - [-12.514759, 8.627189], - [-12.517279, 8.62924], - [-12.518406, 8.628863], - [-12.516592, 8.62772], - [-12.516521, 8.627527], - [-12.516248, 8.627619], - [-12.516165, 8.627831], - [-12.515977, 8.62753], - [-12.515685, 8.627536], - [-12.515516, 8.6269], - [-12.51483, 8.626732], - [-12.514229, 8.626911], - [-12.513647, 8.626239], - [-12.513834, 8.626066], - [-12.515672, 8.625934], - [-12.515442, 8.625743], - [-12.515442, 8.625742], - [-12.516298, 8.625755], - [-12.516836, 8.626269], - [-12.517833, 8.62671], - [-12.519231, 8.627901], - [-12.519996, 8.628152], - [-12.520024, 8.62831], - [-12.520019, 8.628326], - [-12.521249, 8.627916], - [-12.522246, 8.626422], - [-12.523884, 8.626255], - [-12.524813, 8.626583], - [-12.525715, 8.626635], - [-12.526714, 8.626245], - [-12.52731, 8.625752], - [-12.52788, 8.624746], - [-12.527705, 8.623559], - [-12.527035, 8.62191], - [-12.526179, 8.621321], - [-12.52569, 8.62025], - [-12.526242, 8.61792], - [-12.526987, 8.616654], - [-12.529055, 8.614935], - [-12.531124, 8.613957], - [-12.533004, 8.613571], - [-12.533005, 8.613573], - [-12.532916, 8.61375], - [-12.531993, 8.614672], - [-12.533942, 8.614706], - [-12.534611, 8.614935], - [-12.535044, 8.61526], - [-12.536135, 8.616533], - [-12.536778, 8.617612], - [-12.539582, 8.620416], - [-12.539928, 8.620417], - [-12.540519, 8.620822], - [-12.541309, 8.622083], - [-12.542916, 8.622084], - [-12.542938, 8.622062], - [-12.544934, 8.623934], - [-12.545388, 8.625512], - [-12.54553, 8.627486], - [-12.544943, 8.628342], - [-12.544747, 8.629611], - [-12.544906, 8.632811], - [-12.544675, 8.635464], - [-12.544889, 8.63587], - [-12.545959, 8.63609], - [-12.547608, 8.636073], - [-12.549846, 8.635351], - [-12.551184, 8.635297], - [-12.554385, 8.634116], - [-12.555597, 8.634723], - [-12.557765, 8.634884], - [-12.558906, 8.636418], - [-12.558986, 8.63774], - [-12.55871, 8.639344], - [-12.558826, 8.640102], - [-12.559174, 8.641698], - [-12.560217, 8.643655], - [-12.560448, 8.64451], - [-12.560289, 8.645426], - [-12.560574, 8.646344], - [-12.560894, 8.648776], - [-12.561475, 8.649535], - [-12.562117, 8.65002], - [-12.56365, 8.650962], - [-12.567109, 8.651316], - [-12.56925, 8.652461], - [-12.570917, 8.652259], - [-12.572103, 8.652461], - [-12.572566, 8.652285], - [-12.573699, 8.651359], - [-12.574314, 8.649976], - [-12.574653, 8.649843], - [-12.575305, 8.649102], - [-12.576928, 8.648574], - [-12.578657, 8.64876], - [-12.580031, 8.649394], - [-12.582625, 8.651112], - [-12.586249, 8.654823], - [-12.58625, 8.65659], - [-12.586514, 8.656834], - [-12.589279, 8.658553], - [-12.590634, 8.658896], - [-12.592154, 8.658313], - [-12.593837, 8.658138], - [-12.594859, 8.657707], - [-12.595967, 8.65657], - [-12.596226, 8.656561], - [-12.596493, 8.657319], - [-12.596788, 8.65753], - [-12.59717, 8.65753], - [-12.598181, 8.656892], - [-12.598209, 8.656698], - [-12.598008, 8.656896], - [-12.597429, 8.657027], - [-12.597027, 8.656939], - [-12.59652, 8.656393], - [-12.596663, 8.656234], - [-12.598151, 8.655874], - [-12.598345, 8.655745], - [-12.59856, 8.654246], - [-12.598581, 8.654233], - [-12.599827, 8.653096], - [-12.602034, 8.653463], - [-12.602162, 8.653433], - [-12.603935, 8.653439], - [-12.605156, 8.651405], - [-12.605609, 8.651056], - [-12.606606, 8.650564], - [-12.610056, 8.649346], - [-12.611462, 8.647873], - [-12.613573, 8.644109], - [-12.61368, 8.641826], - [-12.613921, 8.641306], - [-12.614412, 8.640944], - [-12.615295, 8.64082], - [-12.616632, 8.640309], - [-12.618072, 8.639364], - [-12.618527, 8.638889], - [-12.618854, 8.638378], - [-12.618855, 8.637768], - [-12.618225, 8.63409], - [-12.617042, 8.631634], - [-12.615794, 8.629521], - [-12.615624, 8.62886], - [-12.615706, 8.626307], - [-12.616443, 8.624857], - [-12.616582, 8.62478], - [-12.616771, 8.625107], - [-12.618608, 8.625914], - [-12.618846, 8.625534], - [-12.62003, 8.624658], - [-12.620099, 8.624409], - [-12.619879, 8.624566], - [-12.619877, 8.624565], - [-12.620084, 8.623893], - [-12.620299, 8.6241], - [-12.620578, 8.623934], - [-12.620627, 8.623704], - [-12.621729, 8.623305], - [-12.621743, 8.623098], - [-12.62203, 8.623373], - [-12.622461, 8.623408], - [-12.623276, 8.6232], - [-12.625577, 8.623335], - [-12.630872, 8.622716], - [-12.632919, 8.62287], - [-12.633056, 8.622619], - [-12.633585, 8.622474], - [-12.635022, 8.62083], - [-12.636162, 8.620068], - [-12.638171, 8.619734], - [-12.638746, 8.61888], - [-12.640218, 8.617643], - [-12.641646, 8.617312], - [-12.644924, 8.617676], - [-12.64526, 8.617643], - [-12.645395, 8.617416], - [-12.646745, 8.617082], - [-12.647602, 8.616272], - [-12.647954, 8.615549], - [-12.648263, 8.614086], - [-12.648704, 8.613303], - [-12.648753, 8.612843], - [-12.649308, 8.612418], - [-12.649485, 8.611975], - [-12.649449, 8.610634], - [-12.647879, 8.608277], - [-12.647777, 8.608777], - [-12.648322, 8.61002], - [-12.648371, 8.610534], - [-12.648326, 8.610807], - [-12.647599, 8.611741], - [-12.647754, 8.613206], - [-12.647398, 8.613214], - [-12.646894, 8.612054], - [-12.645974, 8.610662], - [-12.645961, 8.609825], - [-12.645199, 8.608203], - [-12.645185, 8.607697], - [-12.64488, 8.60711], - [-12.644817, 8.606209], - [-12.644563, 8.605692], - [-12.644542, 8.604984], - [-12.64383, 8.601985], - [-12.644179, 8.601396], - [-12.644716, 8.6017], - [-12.645233, 8.601703], - [-12.645624, 8.601319], - [-12.646034, 8.600417], - [-12.644294, 8.600416], - [-12.644361, 8.600011], - [-12.645196, 8.599708], - [-12.645507, 8.599258], - [-12.645642, 8.598487], - [-12.646034, 8.597717], - [-12.646812, 8.597463], - [-12.646945, 8.596949], - [-12.646821, 8.596176], - [-12.647338, 8.596049], - [-12.648118, 8.59541], - [-12.648858, 8.593054], - [-12.649433, 8.592328], - [-12.649582, 8.592313], - [-12.649583, 8.592916], - [-12.649717, 8.593052], - [-12.649037, 8.593614], - [-12.648771, 8.595119], - [-12.648337, 8.595913], - [-12.649572, 8.594173], - [-12.649876, 8.593311], - [-12.64993, 8.593265], - [-12.650376, 8.59371], - [-12.650721, 8.593236], - [-12.651942, 8.59281], - [-12.655383, 8.592493], - [-12.657153, 8.59255], - [-12.657659, 8.592974], - [-12.658103, 8.593773], - [-12.658993, 8.594832], - [-12.660027, 8.594969], - [-12.662287, 8.59578], - [-12.662842, 8.595826], - [-12.6652, 8.595386], - [-12.666249, 8.595348], - [-12.66625, 8.594402], - [-12.668321, 8.594296], - [-12.673086, 8.59448], - [-12.676859, 8.594087], - [-12.67944, 8.594441], - [-12.681516, 8.59368], - [-12.683847, 8.593437], - [-12.685662, 8.592676], - [-12.686438, 8.59268], - [-12.688246, 8.591962], - [-12.689564, 8.59183], - [-12.690258, 8.591864], - [-12.691139, 8.592486], - [-12.69174, 8.592682] - ] - ], - "type": "Polygon" - }, - "id": 457, - "properties": { - "cc:admin:id": ["93"], - "cc:oBld:total": 509, - "cc:pop:fifteen-to-twenty-four": 1560.2905216755726, - "cc:pop:grid3-total": 12374.514939360639, - "cc:pop:kontur-total": 8256.146965308464, - "cc:pop:men": 3697.0040258165272, - "cc:pop:sixty-plus": 482.57021366255583, - "cc:pop:total": 7737.060783920854, - "cc:pop:under-five": 1320.3133581442744, - "cc:pop:women": 4040.0567581043288, - "cc:pop:women-fiften-to-forty-nine": 1968.5403841284701, - "cc:pop:wp-total": 6902.008134541418, - "cc:pop:wp-total-UN": 8003.850840395791, - "cc:id": "457", - "cc:Name": "Nonkoba CHP", - "cc:site": [-12.5806, 8.5937], - "user:parentName": "Masimera", - "user:code": "OU_255040", - "user:orgUnitId": "fdsRQbuuAuh", - "user:level": "4", - "user:parentId": "EfWCa0Cc8WW" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.829998, 7.567001], - [-11.827384, 7.567032], - [-11.828154, 7.566134], - [-11.82853, 7.564874], - [-11.82902, 7.564854], - [-11.827916, 7.56375], - [-11.820636, 7.563749], - [-11.818724, 7.56046], - [-11.816745, 7.561619], - [-11.816558, 7.561354], - [-11.816503, 7.562805], - [-11.815532, 7.563173], - [-11.815167, 7.563407], - [-11.814869, 7.563749], - [-11.81107, 7.563749], - [-11.811069, 7.560444], - [-11.811054, 7.558642], - [-11.811874, 7.557982], - [-11.811091, 7.557944], - [-11.809686, 7.557227], - [-11.809273, 7.557727], - [-11.809289, 7.55879], - [-11.809454, 7.559215], - [-11.809111, 7.559881], - [-11.808725, 7.559997], - [-11.808302, 7.559789], - [-11.807932, 7.559423], - [-11.807749, 7.558976], - [-11.80777, 7.558206], - [-11.807562, 7.557583], - [-11.807582, 7.557407], - [-11.807405, 7.557094], - [-11.806789, 7.55694], - [-11.805834, 7.557524], - [-11.805421, 7.557923], - [-11.805249, 7.558566], - [-11.804327, 7.559609], - [-11.803602, 7.55996], - [-11.80329, 7.559646], - [-11.80319, 7.559157], - [-11.80343, 7.558769], - [-11.803753, 7.558625], - [-11.804723, 7.557599], - [-11.804889, 7.556722], - [-11.804857, 7.556339], - [-11.804439, 7.556152], - [-11.80431, 7.55587], - [-11.804187, 7.55518], - [-11.804353, 7.554796], - [-11.804395, 7.5541], - [-11.804299, 7.554053], - [-11.803393, 7.554812], - [-11.802338, 7.556129], - [-11.802337, 7.55613], - [-11.802267, 7.554398], - [-11.802776, 7.553292], - [-11.802369, 7.552759], - [-11.802652, 7.552441], - [-11.801113, 7.550979], - [-11.799667, 7.551865], - [-11.797003, 7.55253], - [-11.79541, 7.553178], - [-11.794738, 7.552961], - [-11.791337, 7.552571], - [-11.790629, 7.552462], - [-11.789046, 7.551798], - [-11.788964, 7.551717], - [-11.788201, 7.544512], - [-11.787916, 7.544584], - [-11.786249, 7.545416], - [-11.782083, 7.545417], - [-11.782082, 7.546249], - [-11.77625, 7.54625], - [-11.772083, 7.549583], - [-11.767916, 7.547917], - [-11.76125, 7.549583], - [-11.760416, 7.547084], - [-11.757082, 7.54625], - [-11.752916, 7.547083], - [-11.747917, 7.545417], - [-11.747916, 7.543749], - [-11.746249, 7.542917], - [-11.744583, 7.542917], - [-11.737917, 7.548749], - [-11.736249, 7.54125], - [-11.735016, 7.540839], - [-11.735058, 7.54095], - [-11.735057, 7.540951], - [-11.729583, 7.539584], - [-11.72765, 7.539584], - [-11.7282, 7.5421], - [-11.728699, 7.550699], - [-11.7286, 7.560599], - [-11.7281, 7.564899], - [-11.7272, 7.568099], - [-11.731, 7.5715], - [-11.738399, 7.5755], - [-11.740799, 7.5789], - [-11.741399, 7.5809], - [-11.740799, 7.584899], - [-11.7387, 7.588599], - [-11.735799, 7.5918], - [-11.726099, 7.6013], - [-11.722699, 7.6059], - [-11.720599, 7.6116], - [-11.720099, 7.6144], - [-11.7197, 7.627499], - [-11.7193, 7.631699], - [-11.7175, 7.637699], - [-11.7169, 7.640999], - [-11.721799, 7.654599], - [-11.7232, 7.659799], - [-11.737, 7.659299], - [-11.745099, 7.6556], - [-11.748499, 7.6536], - [-11.752599, 7.6497], - [-11.754899, 7.6464], - [-11.756799, 7.639299], - [-11.756299, 7.633899], - [-11.7546, 7.626899], - [-11.7551, 7.6228], - [-11.7565, 7.620199], - [-11.7594, 7.616799], - [-11.7627, 7.613799], - [-11.767799, 7.6104], - [-11.770099, 7.6077], - [-11.771799, 7.602699], - [-11.771799, 7.597099], - [-11.770899, 7.592999], - [-11.769, 7.587399], - [-11.7692, 7.5829], - [-11.7708, 7.5802], - [-11.7733, 7.5785], - [-11.7777, 7.5777], - [-11.7816, 7.5781], - [-11.788599, 7.580499], - [-11.7926, 7.5812], - [-11.7981, 7.581399], - [-11.805199, 7.5804], - [-11.8119, 7.577599], - [-11.8216, 7.572999], - [-11.827499, 7.5696], - [-11.829998, 7.567001] - ] - ], - "type": "Polygon" - }, - "id": 458, - "properties": { - "cc:admin:id": ["88"], - "cc:oBld:total": 261, - "cc:pop:fifteen-to-twenty-four": 774.704440286819, - "cc:pop:grid3-total": 6584.3888963517265, - "cc:pop:kontur-total": 5763.802690059365, - "cc:pop:men": 2213.0987368908736, - "cc:pop:sixty-plus": 322.86863168356615, - "cc:pop:total": 4415.193666650239, - "cc:pop:under-five": 731.7060738759052, - "cc:pop:women": 2202.094929759366, - "cc:pop:women-fiften-to-forty-nine": 1031.5750144130745, - "cc:pop:wp-total": 4442.852119897084, - "cc:pop:wp-total-UN": 5147.128936069404, - "cc:id": "458", - "cc:Name": "Nyandehun MCHP", - "cc:site": [-11.76, 7.5891], - "user:parentName": "Malen", - "user:code": "OU_260394", - "user:orgUnitId": "mVvEwzoFutG", - "user:level": "4", - "user:parentId": "DfUfwjM9am5" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.143182, 8.158616], - [-11.1431, 8.1516], - [-11.1425, 8.1474], - [-11.140099, 8.141699], - [-11.138199, 8.134899], - [-11.1359, 8.1296], - [-11.1354, 8.1266], - [-11.135199, 8.120299], - [-11.135, 8.0908], - [-11.134824, 8.088095], - [-11.129582, 8.088749], - [-11.119583, 8.08125], - [-11.119583, 8.074584], - [-11.122716, 8.070666], - [-11.120146, 8.066216], - [-11.112335, 8.066216], - [-11.108429, 8.072981], - [-11.104275, 8.072982], - [-11.103117, 8.074493], - [-11.102083, 8.076249], - [-11.10204, 8.07625], - [-11.102024, 8.076276], - [-11.101958, 8.076413], - [-11.094583, 8.077084], - [-11.092083, 8.089582], - [-11.088749, 8.0875], - [-11.085708, 8.0875], - [-11.081802, 8.094266], - [-11.08355, 8.097297], - [-11.081268, 8.101249], - [-11.074583, 8.10125], - [-11.072083, 8.10375], - [-11.069227, 8.109462], - [-11.069097, 8.109375], - [-11.068749, 8.110416], - [-11.067917, 8.111249], - [-11.060416, 8.10375], - [-11.05875, 8.103749], - [-11.058299, 8.10285], - [-11.058177, 8.10289], - [-11.057082, 8.10125], - [-11.055417, 8.101249], - [-11.055416, 8.099584], - [-11.052916, 8.097084], - [-11.050417, 8.097084], - [-11.049583, 8.09875], - [-11.050416, 8.103749], - [-11.047917, 8.112916], - [-11.05141, 8.116411], - [-11.050322, 8.117646], - [-11.049884, 8.118446], - [-11.05125, 8.11875], - [-11.054582, 8.122916], - [-11.054583, 8.127976], - [-11.055219, 8.129079], - [-11.063033, 8.12908], - [-11.065416, 8.133208], - [-11.065417, 8.1368], - [-11.070532, 8.136801], - [-11.074439, 8.143566], - [-11.077636, 8.143567], - [-11.07625, 8.145417], - [-11.07875, 8.150416], - [-11.087082, 8.147917], - [-11.087083, 8.157083], - [-11.087917, 8.157084], - [-11.092982, 8.157717], - [-11.093023, 8.157818], - [-11.093483, 8.160369], - [-11.094829, 8.163215], - [-11.095381, 8.16379], - [-11.097997, 8.165627], - [-11.098759, 8.166774], - [-11.098773, 8.166828], - [-11.09375, 8.170417], - [-11.095416, 8.176249], - [-11.095417, 8.177083], - [-11.096249, 8.177084], - [-11.095417, 8.180416], - [-11.095417, 8.183749], - [-11.105416, 8.182084], - [-11.107916, 8.180417], - [-11.110416, 8.182917], - [-11.109582, 8.192916], - [-11.102083, 8.192917], - [-11.097083, 8.195417], - [-11.098749, 8.199584], - [-11.09875, 8.20239], - [-11.099674, 8.199969], - [-11.102201, 8.196636], - [-11.102986, 8.196439], - [-11.103885, 8.196341], - [-11.104954, 8.197098], - [-11.105568, 8.197344], - [-11.108218, 8.197717], - [-11.10852, 8.197856], - [-11.107916, 8.202084], - [-11.102917, 8.20875], - [-11.10375, 8.214583], - [-11.10625, 8.217083], - [-11.107911, 8.217084], - [-11.105417, 8.217917], - [-11.10625, 8.232083], - [-11.111249, 8.232917], - [-11.11375, 8.244583], - [-11.116101, 8.244583], - [-11.1172, 8.242299], - [-11.1185, 8.239099], - [-11.1203, 8.235599], - [-11.1212, 8.231999], - [-11.121499, 8.2243], - [-11.122099, 8.2206], - [-11.1241, 8.216099], - [-11.1255, 8.210299], - [-11.1273, 8.207099], - [-11.133699, 8.1999], - [-11.1354, 8.196699], - [-11.136899, 8.1908], - [-11.139099, 8.1855], - [-11.140499, 8.1797], - [-11.142499, 8.1752], - [-11.143099, 8.1724], - [-11.143299, 8.168499], - [-11.143182, 8.158616] - ] - ], - "type": "Polygon" - }, - "id": 460, - "properties": { - "cc:admin:id": ["75"], - "cc:oBld:total": 1674, - "cc:pop:fifteen-to-twenty-four": 3723.8589495634988, - "cc:pop:grid3-total": 12167.656707665883, - "cc:pop:kontur-total": 17709.508934438538, - "cc:pop:men": 10810.881709140729, - "cc:pop:sixty-plus": 1143.7417972438698, - "cc:pop:total": 19310.910080592326, - "cc:pop:under-five": 2981.7131620068367, - "cc:pop:women": 8500.028371451599, - "cc:pop:women-fiften-to-forty-nine": 4223.182131339487, - "cc:pop:wp-total": 15488.124921017323, - "cc:pop:wp-total-UN": 17960.013285410798, - "cc:id": "460", - "cc:Name": "Panguma Mission Hosp.", - "cc:site": [-11.1368, 8.1846], - "user:parentName": "Lower Bambara", - "user:code": "OU_222664", - "user:orgUnitId": "PEZNsGbZaVJ", - "user:level": "4", - "user:parentId": "hdEuw2ugkVF" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.06625, 8.908749], - [-12.066249, 8.907916], - [-12.065793, 8.906091], - [-12.0614, 8.908199], - [-12.058799, 8.9089], - [-12.056099, 8.909099], - [-12.0525, 8.9088], - [-12.0504, 8.908099], - [-12.0487, 8.906799], - [-12.0473, 8.904699], - [-12.0466, 8.9022], - [-12.046478, 8.90003], - [-12.046117, 8.900403], - [-12.045488, 8.900444], - [-12.045289, 8.901313], - [-12.044847, 8.902214], - [-12.044971, 8.902636], - [-12.044869, 8.903027], - [-12.044681, 8.90337], - [-12.044494, 8.90362], - [-12.044493, 8.90362], - [-12.044348, 8.903114], - [-12.044205, 8.902575], - [-12.044055, 8.902058], - [-12.043367, 8.900934], - [-12.04299, 8.900485], - [-12.04282, 8.900295], - [-12.04239, 8.899657], - [-12.041583, 8.901027], - [-12.040047, 8.902564], - [-12.038785, 8.903622], - [-12.038552, 8.9041], - [-12.037871, 8.904132], - [-12.037048, 8.903873], - [-12.036637, 8.903982], - [-12.036338, 8.90337], - [-12.036084, 8.903229], - [-12.036044, 8.903202], - [-12.035151, 8.902702], - [-12.033768, 8.90454], - [-12.032201, 8.90331], - [-12.031524, 8.903766], - [-12.03085, 8.904284], - [-12.030736, 8.904353], - [-12.029525, 8.905164], - [-12.029108, 8.904802], - [-12.028391, 8.903869], - [-12.027941, 8.903526], - [-12.027842, 8.903491], - [-12.027325, 8.903744], - [-12.027272, 8.904058], - [-12.02688, 8.904309], - [-12.026564, 8.9047], - [-12.026254, 8.904968], - [-12.026043, 8.905156], - [-12.025609, 8.905038], - [-12.02533, 8.904472], - [-12.024926, 8.904183], - [-12.024571, 8.904138], - [-12.024257, 8.904955], - [-12.024076, 8.904952], - [-12.022895, 8.902907], - [-12.016246, 8.902906], - [-12.015907, 8.901889], - [-12.016199, 8.90126], - [-12.012083, 8.902082], - [-12.00929, 8.898174], - [-12.0089, 8.901999], - [-12.0082, 8.904699], - [-12.006099, 8.9101], - [-12.005599, 8.9148], - [-12.0054, 8.923499], - [-12.0048, 8.927099], - [-12.002899, 8.9316], - [-12.001299, 8.9383], - [-11.999, 8.9452], - [-12.000699, 8.947999], - [-12.0024, 8.95], - [-12.015699, 8.963199], - [-12.020599, 8.967299], - [-12.0246, 8.9691], - [-12.0289, 8.9715], - [-12.0321, 8.9728], - [-12.036499, 8.975199], - [-12.0397, 8.9765], - [-12.0432, 8.9786], - [-12.0472, 8.9803], - [-12.051499, 8.982499], - [-12.055581, 8.983764], - [-12.056086, 8.978714], - [-12.056307, 8.978723], - [-12.057154, 8.978858], - [-12.060416, 8.976249], - [-12.057082, 8.97125], - [-12.05375, 8.968749], - [-12.059582, 8.962082], - [-12.057916, 8.959583], - [-12.054582, 8.957916], - [-12.05375, 8.95375], - [-12.056249, 8.950417], - [-12.054583, 8.948749], - [-12.054583, 8.947083], - [-12.05625, 8.94375], - [-12.062082, 8.949582], - [-12.060417, 8.942083], - [-12.061502, 8.940454], - [-12.060998, 8.940088], - [-12.061249, 8.939583], - [-12.063749, 8.938749], - [-12.064583, 8.937082], - [-12.064582, 8.929582], - [-12.06375, 8.922083], - [-12.064582, 8.921249], - [-12.062083, 8.914582], - [-12.062917, 8.910417], - [-12.06625, 8.908749] - ] - ], - "type": "Polygon" - }, - "id": 461, - "properties": { - "cc:admin:id": ["83"], - "cc:oBld:total": 2014, - "cc:pop:fifteen-to-twenty-four": 3442.8387006225817, - "cc:pop:grid3-total": 15039.778346644665, - "cc:pop:kontur-total": 19004.295738469034, - "cc:pop:men": 8882.15118064986, - "cc:pop:sixty-plus": 1174.592988581614, - "cc:pop:total": 18864.450715091527, - "cc:pop:under-five": 3035.23800698558, - "cc:pop:women": 9982.299534441656, - "cc:pop:women-fiften-to-forty-nine": 4828.210558149765, - "cc:pop:wp-total": 15794.527905399962, - "cc:pop:wp-total-UN": 18317.354274609526, - "cc:id": "461", - "cc:Name": "Panlap MCHP", - "cc:site": [-12.031, 8.9164], - "user:parentName": "Makari Gbanti", - "user:code": "OU_193258", - "user:orgUnitId": "zLiMZ1WrxdG", - "user:level": "4", - "user:parentId": "lY93YpCxJqf" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.756781, 7.950878], - [-11.7529, 7.9462], - [-11.7497, 7.9426], - [-11.746799, 7.939899], - [-11.7437, 7.9378], - [-11.740761, 7.936368], - [-11.740733, 7.936443], - [-11.741119, 7.936642], - [-11.740977, 7.937052], - [-11.740625, 7.936912], - [-11.739723, 7.936503], - [-11.739559, 7.936878], - [-11.740552, 7.937437], - [-11.740749, 7.937636], - [-11.740706, 7.937774], - [-11.740631, 7.937966], - [-11.740507, 7.938328], - [-11.7392, 7.937757], - [-11.739057, 7.938058], - [-11.739021, 7.938137], - [-11.739007, 7.938172], - [-11.73808, 7.937753], - [-11.737718, 7.93758], - [-11.737434, 7.937544], - [-11.737189, 7.93819], - [-11.737064, 7.938681], - [-11.736939, 7.939185], - [-11.73931, 7.939822], - [-11.739381, 7.940339], - [-11.739164, 7.94117], - [-11.739386, 7.941327], - [-11.739286, 7.941731], - [-11.739581, 7.941812], - [-11.740384, 7.942021], - [-11.740209, 7.942497], - [-11.740024, 7.942991], - [-11.73989, 7.943501], - [-11.739765, 7.944015], - [-11.7396, 7.944468], - [-11.739384, 7.944744], - [-11.739309, 7.944928], - [-11.739147, 7.945411], - [-11.738731, 7.946618], - [-11.741346, 7.947756], - [-11.741853, 7.947966], - [-11.743281, 7.948547], - [-11.743795, 7.948788], - [-11.743915, 7.948836], - [-11.744265, 7.948996], - [-11.744814, 7.949226], - [-11.745081, 7.949346], - [-11.743854, 7.951859], - [-11.743577, 7.952393], - [-11.745645, 7.95318], - [-11.745635, 7.953254], - [-11.745222, 7.954323], - [-11.744493, 7.955957], - [-11.744138, 7.956095], - [-11.743798, 7.955992], - [-11.743623, 7.956586], - [-11.743254, 7.95655], - [-11.743311, 7.957357], - [-11.745497, 7.957476], - [-11.74536, 7.957098], - [-11.745382, 7.957025], - [-11.745651, 7.956908], - [-11.745827, 7.956496], - [-11.745931, 7.956016], - [-11.74682, 7.956056], - [-11.74694, 7.956627], - [-11.746768, 7.957182], - [-11.746967, 7.95752], - [-11.747018, 7.957638], - [-11.747336, 7.957692], - [-11.747407, 7.957169], - [-11.747455, 7.95665], - [-11.748648, 7.95675], - [-11.748668, 7.956505], - [-11.748753, 7.95645], - [-11.749055, 7.956908], - [-11.749408, 7.957357], - [-11.750504, 7.956545], - [-11.750868, 7.957057], - [-11.752838, 7.955484], - [-11.752884, 7.955421], - [-11.753047, 7.955047], - [-11.75326, 7.95454], - [-11.753488, 7.954162], - [-11.753585, 7.954103], - [-11.753668, 7.954017], - [-11.753557, 7.953864], - [-11.753476, 7.953758], - [-11.754348, 7.952437], - [-11.754753, 7.952248], - [-11.755421, 7.951871], - [-11.756499, 7.951194], - [-11.756781, 7.950878] - ] - ], - "type": "Polygon" - }, - "id": 462, - "properties": { - "cc:admin:id": ["46"], - "cc:oBld:total": 2024, - "cc:pop:fifteen-to-twenty-four": 5056.620100995391, - "cc:pop:grid3-total": 13749.924997588507, - "cc:pop:kontur-total": 38424.3993309766, - "cc:pop:men": 13660.72206652848, - "cc:pop:sixty-plus": 2019.8124003886805, - "cc:pop:total": 28203.145879545595, - "cc:pop:under-five": 4675.993380969809, - "cc:pop:women": 14542.42381301711, - "cc:pop:women-fiften-to-forty-nine": 6930.639675846667, - "cc:pop:wp-total": 22106.94817684858, - "cc:pop:wp-total-UN": 25626.280840906074, - "cc:id": "462", - "cc:Name": "Paramedical CHC", - "cc:site": [-11.7486, 7.9498], - "user:parentName": "Kakua", - "user:code": "OU_834", - "user:orgUnitId": "tSBcgrTDdB8", - "user:level": "4", - "user:parentId": "U6Kr7Gtpidn" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.236182, 8.491054], - [-13.235996, 8.49087], - [-13.235388, 8.491435], - [-13.235052, 8.491071], - [-13.23483, 8.49122], - [-13.234658, 8.491017], - [-13.234558, 8.491087], - [-13.234037, 8.491468], - [-13.233503, 8.491814], - [-13.233022, 8.491114], - [-13.232162, 8.489832], - [-13.232682, 8.489482], - [-13.231768, 8.488253], - [-13.230878, 8.487078], - [-13.230646, 8.486968], - [-13.230502, 8.486445], - [-13.230337, 8.485829], - [-13.228664, 8.486341], - [-13.227703, 8.486632], - [-13.227441, 8.48663], - [-13.227337, 8.487295], - [-13.22705, 8.488135], - [-13.22732, 8.488269], - [-13.227373, 8.488516], - [-13.226574, 8.48979], - [-13.226729, 8.490148], - [-13.226813, 8.490385], - [-13.227023, 8.490703], - [-13.226779, 8.490829], - [-13.22652, 8.490557], - [-13.225864, 8.490481], - [-13.225932, 8.490046], - [-13.226348, 8.488852], - [-13.226576, 8.488186], - [-13.226297, 8.487987], - [-13.226204, 8.488002], - [-13.226136, 8.487917], - [-13.226141, 8.487874], - [-13.226126, 8.487804], - [-13.226313, 8.487574], - [-13.226425, 8.487275], - [-13.22679, 8.486255], - [-13.226795, 8.48603], - [-13.226813, 8.4858], - [-13.226856, 8.485489], - [-13.225888, 8.485022], - [-13.226104, 8.484395], - [-13.22615, 8.484276], - [-13.226265, 8.483955], - [-13.225451, 8.48355], - [-13.225266, 8.483947], - [-13.225092, 8.484394], - [-13.224856, 8.48478], - [-13.224737, 8.484956], - [-13.224499, 8.485319], - [-13.224308, 8.485671], - [-13.224218, 8.485648], - [-13.224145, 8.485878], - [-13.224019, 8.486309], - [-13.223443, 8.486275], - [-13.223352, 8.486514], - [-13.222106, 8.486012], - [-13.221987, 8.485968], - [-13.221665, 8.485861], - [-13.221116, 8.485638], - [-13.219966, 8.48513], - [-13.219767, 8.485699], - [-13.219723, 8.485684], - [-13.219516, 8.486219], - [-13.219474, 8.486334], - [-13.219349, 8.486733], - [-13.219139, 8.487371], - [-13.218317, 8.487065], - [-13.218053, 8.488015], - [-13.217508, 8.487872], - [-13.217079, 8.487751], - [-13.216955, 8.488086], - [-13.216769, 8.488564], - [-13.216553, 8.489137], - [-13.216356, 8.489693], - [-13.21634, 8.489753], - [-13.215717, 8.49148], - [-13.215466, 8.492364], - [-13.215703, 8.492639], - [-13.216284, 8.492806], - [-13.216372, 8.493219], - [-13.216387, 8.493482], - [-13.216866, 8.493475], - [-13.2201, 8.491], - [-13.233199, 8.493499], - [-13.236182, 8.491054] - ] - ], - "type": "Polygon" - }, - "id": 463, - "properties": { - "cc:admin:id": ["26"], - "cc:oBld:total": 3200, - "cc:pop:fifteen-to-twenty-four": 4780.3699907024, - "cc:pop:grid3-total": 50886.817157764344, - "cc:pop:kontur-total": 2926, - "cc:pop:men": 10411.134709966498, - "cc:pop:sixty-plus": 1622.4072192741876, - "cc:pop:total": 20809.621699025607, - "cc:pop:under-five": 2400.8117629071735, - "cc:pop:women": 10398.48698905911, - "cc:pop:women-fiften-to-forty-nine": 5573.272152424925, - "cc:pop:wp-total": 21354.08239001436, - "cc:pop:wp-total-UN": 24764.478052509996, - "cc:id": "463", - "cc:Name": "PCM Hospital", - "cc:site": [-13.2191, 8.49], - "user:parentName": "Freetown", - "user:code": "OU_278328", - "user:orgUnitId": "LqH7ZGU9KAx", - "user:level": "4", - "user:parentId": "C9uduqDZr9d" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.72864, 7.549691], - [-11.7282, 7.5421], - [-11.7275, 7.5389], - [-11.725599, 7.534499], - [-11.724099, 7.5277], - [-11.722299, 7.5247], - [-11.7173, 7.5229], - [-11.712799, 7.520899], - [-11.709999, 7.520199], - [-11.7052, 7.5197], - [-11.7024, 7.5191], - [-11.696899, 7.516899], - [-11.693099, 7.516399], - [-11.6873, 7.5161], - [-11.6836, 7.5154], - [-11.6789, 7.5135], - [-11.6762, 7.5128], - [-11.6714, 7.5123], - [-11.6685, 7.5117], - [-11.6639, 7.5098], - [-11.6612, 7.5091], - [-11.6563, 7.5085], - [-11.6536, 7.5079], - [-11.648899, 7.505999], - [-11.645299, 7.505299], - [-11.638499, 7.504899], - [-11.634799, 7.504199], - [-11.630099, 7.502299], - [-11.6274, 7.5017], - [-11.6225, 7.5011], - [-11.6197, 7.5005], - [-11.6152, 7.4985], - [-11.6118, 7.4977], - [-11.608499, 7.5003], - [-11.604699, 7.5021], - [-11.6004, 7.504499], - [-11.597199, 7.5058], - [-11.5929, 7.508199], - [-11.589699, 7.5095], - [-11.586199, 7.5115], - [-11.5823, 7.513299], - [-11.580374, 7.514628], - [-11.587082, 7.522083], - [-11.587917, 7.527084], - [-11.59125, 7.529583], - [-11.597916, 7.529584], - [-11.597083, 7.540416], - [-11.604582, 7.544584], - [-11.602451, 7.550981], - [-11.602984, 7.550809], - [-11.608178, 7.550835], - [-11.610799, 7.5496], - [-11.6144, 7.546499], - [-11.6178, 7.542299], - [-11.625799, 7.5363], - [-11.6295, 7.534099], - [-11.6323, 7.533299], - [-11.6366, 7.532799], - [-11.640999, 7.5327], - [-11.645399, 7.532899], - [-11.649699, 7.533699], - [-11.6537, 7.5354], - [-11.662599, 7.541199], - [-11.665999, 7.543799], - [-11.6699, 7.5479], - [-11.680699, 7.564299], - [-11.683099, 7.567199], - [-11.686, 7.5695], - [-11.6936, 7.5731], - [-11.6978, 7.5739], - [-11.702099, 7.573999], - [-11.704999, 7.5737], - [-11.7078, 7.573099], - [-11.7136, 7.571099], - [-11.721199, 7.5697], - [-11.727199, 7.568099], - [-11.7281, 7.564899], - [-11.728599, 7.5606], - [-11.728699, 7.5507], - [-11.72864, 7.549691] - ] - ], - "type": "Polygon" - }, - "id": 464, - "properties": { - "cc:admin:id": ["128"], - "cc:oBld:total": 3, - "cc:pop:fifteen-to-twenty-four": 2856.9966442226305, - "cc:pop:grid3-total": 4667.769631970212, - "cc:pop:kontur-total": 16145.897481414591, - "cc:pop:men": 7675.899786350719, - "cc:pop:sixty-plus": 1118.0231439560516, - "cc:pop:total": 15832.08733369578, - "cc:pop:under-five": 2618.8083056412747, - "cc:pop:women": 8156.187547345063, - "cc:pop:women-fiften-to-forty-nine": 3899.062504886084, - "cc:pop:wp-total": 15771.418659725221, - "cc:pop:wp-total-UN": 18285.95193301526, - "cc:id": "464", - "cc:Name": "Pehala MCHP", - "cc:site": [-11.6188, 7.5234], - "user:parentName": "Kpanga Kabonde", - "user:code": "OU_260402", - "user:orgUnitId": "CqARw68kXbB", - "user:level": "4", - "user:parentId": "QwMiPiME3bA" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.567518, 7.589274], - [-11.5677, 7.587999], - [-11.567799, 7.584299], - [-11.5672, 7.5808], - [-11.5661, 7.5783], - [-11.5614, 7.5726], - [-11.558899, 7.567999], - [-11.5543, 7.5623], - [-11.5531, 7.560299], - [-11.552499, 7.557199], - [-11.5523, 7.5489], - [-11.552353, 7.547921], - [-11.549582, 7.549583], - [-11.547082, 7.548749], - [-11.545417, 7.546249], - [-11.545416, 7.540417], - [-11.54031, 7.546251], - [-11.538691, 7.545235], - [-11.533619, 7.541823], - [-11.529582, 7.53375], - [-11.526572, 7.535556], - [-11.525682, 7.534135], - [-11.518482, 7.534134], - [-11.514575, 7.52737], - [-11.507241, 7.527369], - [-11.507814, 7.519337], - [-11.507024, 7.519119], - [-11.505417, 7.51926], - [-11.505416, 7.50875], - [-11.502724, 7.505386], - [-11.502206, 7.505997], - [-11.50075, 7.507121], - [-11.499926, 7.508532], - [-11.498702, 7.510042], - [-11.497725, 7.51092], - [-11.496903, 7.51206], - [-11.495099, 7.516], - [-11.4929, 7.5204], - [-11.4923, 7.524699], - [-11.4927, 7.5274], - [-11.493499, 7.530299], - [-11.4951, 7.534], - [-11.4971, 7.5387], - [-11.4978, 7.5431], - [-11.498199, 7.549099], - [-11.498299, 7.5615], - [-11.4981, 7.576799], - [-11.497499, 7.5811], - [-11.4957, 7.589199], - [-11.4956, 7.594799], - [-11.4982, 7.6071], - [-11.499299, 7.620699], - [-11.5009, 7.6267], - [-11.502599, 7.631199], - [-11.504399, 7.634499], - [-11.514, 7.6467], - [-11.5168, 7.6487], - [-11.521999, 7.651599], - [-11.5359, 7.657599], - [-11.5412, 7.656399], - [-11.546099, 7.6536], - [-11.549099, 7.6505], - [-11.5507, 7.647299], - [-11.551399, 7.643599], - [-11.551199, 7.639099], - [-11.5483, 7.628], - [-11.547699, 7.623199], - [-11.547199, 7.616599], - [-11.5471, 7.6069], - [-11.5475, 7.603899], - [-11.5485, 7.601], - [-11.550999, 7.5982], - [-11.553999, 7.5968], - [-11.5589, 7.5963], - [-11.566099, 7.596799], - [-11.567199, 7.5915], - [-11.567518, 7.589274] - ] - ], - "type": "Polygon" - }, - "id": 465, - "properties": { - "cc:admin:id": ["109"], - "cc:oBld:total": 256, - "cc:pop:fifteen-to-twenty-four": 2008.5170368802842, - "cc:pop:grid3-total": 6690.436305828985, - "cc:pop:kontur-total": 11212.076249695063, - "cc:pop:men": 5317.4661922172045, - "cc:pop:sixty-plus": 794.2787161800443, - "cc:pop:total": 11256.329993902928, - "cc:pop:under-five": 1880.916841467195, - "cc:pop:women": 5938.863801685719, - "cc:pop:women-fiften-to-forty-nine": 2832.4423862586627, - "cc:pop:wp-total": 9109.556226532623, - "cc:pop:wp-total-UN": 10555.52975657169, - "cc:id": "465", - "cc:Name": "Pejewa MCHP", - "cc:site": [-11.5063, 7.5872], - "user:parentName": "Pejeh", - "user:code": "OU_260390", - "user:orgUnitId": "BTXwf2gl7av", - "user:level": "4", - "user:parentId": "N233eZJZ1bh" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.497083, 7.856249], - [-11.497082, 7.847084], - [-11.492082, 7.842084], - [-11.48375, 7.842084], - [-11.47875, 7.846249], - [-11.475003, 7.84625], - [-11.475099, 7.8514], - [-11.4743, 7.855399], - [-11.472699, 7.8591], - [-11.467, 7.866799], - [-11.4608, 7.878299], - [-11.4566, 7.884399], - [-11.454099, 7.8883], - [-11.451799, 7.8911], - [-11.449, 7.893499], - [-11.444094, 7.896802], - [-11.444397, 7.896937], - [-11.445036, 7.898562], - [-11.446039, 7.899953], - [-11.447313, 7.90103], - [-11.447159, 7.903485], - [-11.447121, 7.903573], - [-11.448316, 7.906758], - [-11.448781, 7.906699], - [-11.450752, 7.907107], - [-11.45253, 7.906736], - [-11.452915, 7.906436], - [-11.452916, 7.906436], - [-11.452917, 7.912083], - [-11.453749, 7.912917], - [-11.45375, 7.915261], - [-11.453848, 7.915178], - [-11.455737, 7.914591], - [-11.4572, 7.914317], - [-11.457349, 7.914248], - [-11.457662, 7.915807], - [-11.46142, 7.914035], - [-11.464677, 7.913019], - [-11.465725, 7.912545], - [-11.466161, 7.912608], - [-11.467829, 7.912239], - [-11.468391, 7.911837], - [-11.469476, 7.910496], - [-11.469716, 7.909971], - [-11.469988, 7.907963], - [-11.470768, 7.906762], - [-11.471007, 7.906118], - [-11.470982, 7.905536], - [-11.472567, 7.903147], - [-11.4743, 7.900014], - [-11.474525, 7.89852], - [-11.474094, 7.897122], - [-11.474316, 7.896534], - [-11.47301, 7.895879], - [-11.473249, 7.895421], - [-11.473688, 7.893754], - [-11.474859, 7.892623], - [-11.475534, 7.89246], - [-11.476492, 7.890829], - [-11.47786, 7.890013], - [-11.479072, 7.888789], - [-11.48013, 7.888306], - [-11.480813, 7.887552], - [-11.482122, 7.887059], - [-11.482729, 7.886553], - [-11.483667, 7.88643], - [-11.484216, 7.885878], - [-11.48584, 7.885288], - [-11.485954, 7.885087], - [-11.486168, 7.885205], - [-11.488547, 7.885012], - [-11.489082, 7.884916], - [-11.488749, 7.884583], - [-11.479595, 7.881532], - [-11.479668, 7.881186], - [-11.478368, 7.881759], - [-11.477084, 7.883117], - [-11.477083, 7.883117], - [-11.477083, 7.87125], - [-11.480626, 7.868414], - [-11.479303, 7.866123], - [-11.48118, 7.862871], - [-11.48125, 7.862916], - [-11.492916, 7.862083], - [-11.497083, 7.856249] - ] - ], - "type": "Polygon" - }, - "id": 466, - "properties": { - "cc:admin:id": ["2"], - "cc:oBld:total": 171, - "cc:pop:fifteen-to-twenty-four": 294.3644878680363, - "cc:pop:grid3-total": 254.06814855836606, - "cc:pop:kontur-total": 1357.406052437179, - "cc:pop:men": 857.9373601697285, - "cc:pop:sixty-plus": 116.10551689791335, - "cc:pop:total": 1659.2080551922384, - "cc:pop:under-five": 269.306895832326, - "cc:pop:women": 801.2706950225099, - "cc:pop:women-fiften-to-forty-nine": 381.62151137130184, - "cc:pop:wp-total": 1535.4560249364986, - "cc:pop:wp-total-UN": 1776.1051616132902, - "cc:id": "466", - "cc:Name": "Pelewahun MCHP", - "cc:site": [-11.4587, 7.8851], - "user:parentName": "Lower Bambara", - "user:code": "OU_222669", - "user:orgUnitId": "MQHszd6K6V5", - "user:level": "4", - "user:parentId": "hdEuw2ugkVF" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.778899, 8.0742], - [-10.766, 8.075099], - [-10.763099, 8.074899], - [-10.760399, 8.074299], - [-10.7559, 8.0721], - [-10.752699, 8.070799], - [-10.749099, 8.068799], - [-10.745, 8.0668], - [-10.742899, 8.064899], - [-10.741699, 8.062699], - [-10.740099, 8.056899], - [-10.738799, 8.054499], - [-10.734899, 8.049399], - [-10.731799, 8.044099], - [-10.729499, 8.041299], - [-10.7259, 8.0378], - [-10.7226, 8.0352], - [-10.7134, 8.031], - [-10.708299, 8.029799], - [-10.702999, 8.027599], - [-10.7004, 8.027], - [-10.697099, 8.026799], - [-10.693299, 8.026099], - [-10.690999, 8.024999], - [-10.686999, 8.022699], - [-10.680399, 8.0204], - [-10.6772, 8.0204], - [-10.673, 8.021899], - [-10.670099, 8.022299], - [-10.667199, 8.022199], - [-10.661899, 8.0205], - [-10.658499, 8.0206], - [-10.653099, 8.0222], - [-10.6443, 8.023099], - [-10.6401, 8.023999], - [-10.6286, 8.029199], - [-10.6265, 8.029499], - [-10.625099, 8.029299], - [-10.619399, 8.027699], - [-10.610999, 8.026799], - [-10.6077, 8.0257], - [-10.606499, 8.0242], - [-10.6001, 8.026299], - [-10.598799, 8.027], - [-10.5973, 8.0277], - [-10.598699, 8.0347], - [-10.598299, 8.0386], - [-10.597699, 8.0412], - [-10.5954, 8.047099], - [-10.5949, 8.051399], - [-10.594999, 8.063399], - [-10.595399, 8.068299], - [-10.596, 8.0711], - [-10.5984, 8.0769], - [-10.5991, 8.0831], - [-10.5991, 8.0951], - [-10.599399, 8.098099], - [-10.599999, 8.100899], - [-10.604199, 8.109499], - [-10.608199, 8.114999], - [-10.613999, 8.116999], - [-10.619299, 8.119299], - [-10.625299, 8.120699], - [-10.6306, 8.1229], - [-10.6369, 8.1245], - [-10.645, 8.1284], - [-10.6488, 8.1315], - [-10.657499, 8.139799], - [-10.659899, 8.141499], - [-10.6631, 8.1429], - [-10.666699, 8.144799], - [-10.6735, 8.1465], - [-10.682, 8.1503], - [-10.684, 8.1516], - [-10.687999, 8.154899], - [-10.689999, 8.156299], - [-10.694, 8.1581], - [-10.6967, 8.1601], - [-10.700799, 8.164099], - [-10.7037, 8.1677], - [-10.706, 8.1723], - [-10.710299, 8.177599], - [-10.7131, 8.181399], - [-10.717199, 8.1779], - [-10.719299, 8.1753], - [-10.720999, 8.1715], - [-10.723, 8.167899], - [-10.7242, 8.164699], - [-10.726499, 8.1604], - [-10.728299, 8.1566], - [-10.730399, 8.1539], - [-10.7332, 8.151399], - [-10.7388, 8.148299], - [-10.7454, 8.143399], - [-10.75, 8.140999], - [-10.7529, 8.138799], - [-10.7554, 8.135999], - [-10.7564, 8.133999], - [-10.7569, 8.131699], - [-10.757099, 8.128999], - [-10.7568, 8.124], - [-10.7559, 8.1201], - [-10.7541, 8.1165], - [-10.7534, 8.1138], - [-10.7538, 8.11], - [-10.7559, 8.107199], - [-10.7614, 8.097199], - [-10.7638, 8.094999], - [-10.7662, 8.093999], - [-10.770199, 8.0931], - [-10.7722, 8.091999], - [-10.7739, 8.089099], - [-10.7755, 8.083699], - [-10.7767, 8.081399], - [-10.778799, 8.078799], - [-10.778899, 8.0742] - ] - ], - "type": "Polygon" - }, - "id": 467, - "properties": { - "cc:admin:id": ["139"], - "cc:oBld:total": 5257, - "cc:pop:fifteen-to-twenty-four": 9047.903156129922, - "cc:pop:grid3-total": 29394.246118258165, - "cc:pop:kontur-total": 48666.24482538305, - "cc:pop:men": 22359.147000544745, - "cc:pop:sixty-plus": 2821.8281145066667, - "cc:pop:total": 46489.50304834467, - "cc:pop:under-five": 7397.426433589453, - "cc:pop:women": 24130.35604779991, - "cc:pop:women-fiften-to-forty-nine": 12231.323418553231, - "cc:pop:wp-total": 40220.190515309, - "cc:pop:wp-total-UN": 46641.01235098604, - "cc:id": "467", - "cc:Name": "Pendembu CHC", - "cc:site": [-10.6953, 8.0961], - "user:parentName": "Upper Bambara", - "user:code": "OU_204916", - "user:orgUnitId": "pJv8NJlJNhU", - "user:level": "4", - "user:parentId": "LfTkc0S4b5k" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - [-13.095699, 8.603799], - [-13.095699, 8.5987], - [-13.094, 8.5971], - [-13.093999, 8.5957], - [-13.092899, 8.595099], - [-13.091, 8.5926], - [-13.090999, 8.5915], - [-13.0901, 8.590699], - [-13.089899, 8.5876], - [-13.0896, 8.587599], - [-13.089599, 8.5846], - [-13.088799, 8.584], - [-13.086499, 8.584599], - [-13.083999, 8.5835], - [-13.0812, 8.583499], - [-13.078699, 8.5826], - [-13.076299, 8.5829], - [-13.071, 8.582899], - [-13.069599, 8.5818], - [-13.0671, 8.580999], - [-13.0665, 8.580399], - [-13.0665, 8.5776], - [-13.065999, 8.5754], - [-13.063999, 8.5743], - [-13.062399, 8.574299], - [-13.0607, 8.573799], - [-13.0607, 8.5721], - [-13.062399, 8.5707], - [-13.061299, 8.5699], - [-13.0601, 8.5701], - [-13.060099, 8.5726], - [-13.0585, 8.574599], - [-13.0562, 8.5743], - [-13.056499, 8.575999], - [-13.0551, 8.5768], - [-13.0543, 8.579299], - [-13.0529, 8.5804], - [-13.052899, 8.5821], - [-13.0518, 8.583999], - [-13.051, 8.5843], - [-13.0496, 8.587099], - [-13.0488, 8.5871], - [-13.047599, 8.588499], - [-13.0465, 8.5885], - [-13.045699, 8.589299], - [-13.0432, 8.5904], - [-13.042399, 8.5915], - [-13.0404, 8.592099], - [-13.0388, 8.5921], - [-13.038199, 8.592599], - [-13.036, 8.5929], - [-13.035999, 8.5935], - [-13.0326, 8.5943], - [-13.029, 8.597599], - [-13.028799, 8.5987], - [-13.0265, 8.600699], - [-13.0257, 8.6007], - [-13.0246, 8.601799], - [-13.0232, 8.6021], - [-13.0229, 8.602899], - [-13.02271, 8.60301], - [-13.022575, 8.603224], - [-13.022264, 8.60394], - [-13.022086, 8.604678], - [-13.021771, 8.605717], - [-13.021542, 8.606388], - [-13.021168, 8.606859], - [-13.020649, 8.607384], - [-13.019548, 8.608478], - [-13.0194, 8.608832], - [-13.019452, 8.609267], - [-13.019603, 8.609731], - [-13.019847, 8.610119], - [-13.021542, 8.612256], - [-13.022444, 8.613441], - [-13.023299, 8.614725], - [-13.023889, 8.615465], - [-13.02302, 8.613647], - [-13.023614, 8.613053], - [-13.024361, 8.613692], - [-13.025117, 8.613748], - [-13.026887, 8.614758], - [-13.028212, 8.614814], - [-13.029406, 8.615441], - [-13.030104, 8.616117], - [-13.030762, 8.616234], - [-13.031286, 8.616586], - [-13.031804, 8.615965], - [-13.031571, 8.615253], - [-13.031706, 8.614845], - [-13.03242, 8.614887], - [-13.033043, 8.615502], - [-13.033455, 8.615593], - [-13.033592, 8.615496], - [-13.033783, 8.614186], - [-13.03435, 8.613961], - [-13.035273, 8.613906], - [-13.035878, 8.614107], - [-13.036, 8.614303], - [-13.03565, 8.615357], - [-13.035668, 8.615826], - [-13.035841, 8.616062], - [-13.037042, 8.616136], - [-13.037464, 8.616298], - [-13.038545, 8.621165], - [-13.038544, 8.621166], - [-13.038238, 8.621189], - [-13.038528, 8.622638], - [-13.038666, 8.622624], - [-13.039113, 8.621937], - [-13.039915, 8.622179], - [-13.039803, 8.622278], - [-13.039829, 8.622487], - [-13.039809, 8.622593], - [-13.039623, 8.622691], - [-13.03941, 8.622691], - [-13.039204, 8.62256], - [-13.038965, 8.622403], - [-13.038806, 8.622553], - [-13.039019, 8.62262], - [-13.039284, 8.622732], - [-13.039477, 8.622908], - [-13.039584, 8.623079], - [-13.039669, 8.623027], - [-13.03969, 8.622908], - [-13.039942, 8.622816], - [-13.040062, 8.622724], - [-13.040076, 8.622619], - [-13.040109, 8.622502], - [-13.040249, 8.622587], - [-13.040442, 8.622744], - [-13.040541, 8.622745], - [-13.040454, 8.622949], - [-13.040335, 8.623283], - [-13.040248, 8.623278], - [-13.040069, 8.623284], - [-13.039976, 8.623408], - [-13.040042, 8.623481], - [-13.040088, 8.623652], - [-13.040029, 8.623941], - [-13.040029, 8.62402], - [-13.040155, 8.624046], - [-13.040222, 8.623869], - [-13.040324, 8.623846], - [-13.040382, 8.624119], - [-13.040501, 8.624411], - [-13.040608, 8.624685], - [-13.040654, 8.624935], - [-13.040572, 8.625269], - [-13.040468, 8.625562], - [-13.040063, 8.626035], - [-13.03968, 8.626469], - [-13.039285, 8.626818], - [-13.038981, 8.626979], - [-13.038799, 8.626999], - [-13.038609, 8.626867], - [-13.038423, 8.626617], - [-13.03833, 8.626183], - [-13.03833, 8.625638], - [-13.038386, 8.625454], - [-13.038649, 8.625296], - [-13.038795, 8.625279], - [-13.038905, 8.625147], - [-13.038888, 8.624948], - [-13.038791, 8.624826], - [-13.038623, 8.6248], - [-13.038463, 8.624957], - [-13.038383, 8.625013], - [-13.03835, 8.624948], - [-13.038377, 8.624553], - [-13.038472, 8.62457], - [-13.038539, 8.624635], - [-13.038618, 8.624523], - [-13.038582, 8.624365], - [-13.038523, 8.624204], - [-13.038522, 8.624039], - [-13.038479, 8.623985], - [-13.038396, 8.624057], - [-13.038276, 8.624128], - [-13.038209, 8.62397], - [-13.038104, 8.623626], - [-13.037973, 8.62336], - [-13.037897, 8.623266], - [-13.037803, 8.623177], - [-13.037587, 8.623081], - [-13.037333, 8.62309], - [-13.037027, 8.623192], - [-13.036609, 8.623183], - [-13.036224, 8.623118], - [-13.036101, 8.622988], - [-13.036079, 8.622847], - [-13.036072, 8.622963], - [-13.036097, 8.623035], - [-13.036131, 8.623103], - [-13.036125, 8.62316], - [-13.036069, 8.623206], - [-13.035903, 8.623262], - [-13.036138, 8.623221], - [-13.03636, 8.623234], - [-13.036747, 8.623314], - [-13.037042, 8.623341], - [-13.037284, 8.62327], - [-13.03739, 8.623268], - [-13.037582, 8.623319], - [-13.037688, 8.623393], - [-13.037731, 8.623594], - [-13.037891, 8.624035], - [-13.038057, 8.624649], - [-13.038032, 8.624847], - [-13.037963, 8.624873], - [-13.037873, 8.62481], - [-13.037608, 8.624671], - [-13.037364, 8.62462], - [-13.037205, 8.624667], - [-13.0369, 8.624838], - [-13.036802, 8.624868], - [-13.036712, 8.62485], - [-13.036663, 8.624797], - [-13.036618, 8.624867], - [-13.036578, 8.62504], - [-13.036462, 8.625145], - [-13.036001, 8.62529], - [-13.035774, 8.625352], - [-13.035591, 8.625391], - [-13.035492, 8.62531], - [-13.035394, 8.625097], - [-13.03521, 8.624995], - [-13.035361, 8.62514], - [-13.035385, 8.625317], - [-13.03544, 8.625445], - [-13.035543, 8.625462], - [-13.035693, 8.625475], - [-13.035976, 8.625384], - [-13.036179, 8.625342], - [-13.036401, 8.625321], - [-13.036549, 8.625248], - [-13.036735, 8.62509], - [-13.036935, 8.624983], - [-13.037147, 8.624905], - [-13.037367, 8.624857], - [-13.03761, 8.624818], - [-13.037795, 8.624904], - [-13.03791, 8.625019], - [-13.037945, 8.625318], - [-13.037945, 8.625646], - [-13.037902, 8.626077], - [-13.037862, 8.626248], - [-13.037814, 8.626277], - [-13.037503, 8.626229], - [-13.037349, 8.62631], - [-13.03722, 8.626432], - [-13.037157, 8.62653], - [-13.037157, 8.626636], - [-13.037242, 8.626754], - [-13.03732, 8.626816], - [-13.037535, 8.626823], - [-13.037671, 8.62682], - [-13.037838, 8.626745], - [-13.037967, 8.626761], - [-13.03808, 8.626803], - [-13.038171, 8.627037], - [-13.038247, 8.627074], - [-13.03836, 8.627133], - [-13.038459, 8.627224], - [-13.038482, 8.627307], - [-13.038424, 8.6275], - [-13.038359, 8.627632], - [-13.03831, 8.627612], - [-13.038233, 8.627554], - [-13.038111, 8.627584], - [-13.037971, 8.627698], - [-13.037915, 8.627708], - [-13.037837, 8.627629], - [-13.037681, 8.627543], - [-13.037581, 8.627505], - [-13.037443, 8.627495], - [-13.037446, 8.627599], - [-13.037575, 8.627681], - [-13.037654, 8.627767], - [-13.037535, 8.627787], - [-13.037433, 8.627817], - [-13.037383, 8.627885], - [-13.037463, 8.627951], - [-13.037581, 8.62797], - [-13.037895, 8.627856], - [-13.03819, 8.628089], - [-13.038533, 8.627642], - [-13.039134, 8.627386], - [-13.039995, 8.627226], - [-13.040353, 8.627251], - [-13.040491, 8.627291], - [-13.04066, 8.62733], - [-13.040759, 8.627307], - [-13.040813, 8.627189], - [-13.040908, 8.627183], - [-13.041015, 8.627402], - [-13.041146, 8.627587], - [-13.041264, 8.627853], - [-13.041251, 8.627586], - [-13.041051, 8.627131], - [-13.041065, 8.627044], - [-13.041172, 8.626858], - [-13.04121, 8.626765], - [-13.041228, 8.626639], - [-13.041158, 8.626517], - [-13.041046, 8.626379], - [-13.040966, 8.626313], - [-13.040834, 8.626012], - [-13.040819, 8.625881], - [-13.04074, 8.625736], - [-13.040791, 8.625579], - [-13.040905, 8.625542], - [-13.041036, 8.625708], - [-13.041131, 8.625778], - [-13.041252, 8.625713], - [-13.041356, 8.625574], - [-13.041459, 8.625415], - [-13.04146, 8.625058], - [-13.041647, 8.624978], - [-13.041709, 8.624876], - [-13.041808, 8.624677], - [-13.04192, 8.6247], - [-13.041958, 8.624918], - [-13.04201, 8.624992], - [-13.042117, 8.624964], - [-13.042282, 8.624761], - [-13.042371, 8.624686], - [-13.042639, 8.624671], - [-13.042762, 8.624592], - [-13.042682, 8.624481], - [-13.042512, 8.624384], - [-13.042367, 8.624364], - [-13.04225, 8.62424], - [-13.04224, 8.624031], - [-13.042137, 8.623933], - [-13.042098, 8.623817], - [-13.042, 8.623747], - [-13.041785, 8.623682], - [-13.041784, 8.62368], - [-13.04183, 8.623598], - [-13.041543, 8.623462], - [-13.041493, 8.623369], - [-13.041497, 8.623183], - [-13.041577, 8.623012], - [-13.042034, 8.62304], - [-13.042772, 8.623119], - [-13.043284, 8.62317], - [-13.04357, 8.623248], - [-13.043722, 8.623408], - [-13.044078, 8.624118], - [-13.044107, 8.624425], - [-13.044168, 8.624592], - [-13.044357, 8.625003], - [-13.044713, 8.625843], - [-13.044915, 8.626359], - [-13.044586, 8.626351], - [-13.04429, 8.626397], - [-13.043943, 8.626499], - [-13.043741, 8.626508], - [-13.043472, 8.626415], - [-13.04318, 8.626317], - [-13.042946, 8.626286], - [-13.042738, 8.626337], - [-13.042635, 8.626407], - [-13.042513, 8.62656], - [-13.0424, 8.626932], - [-13.042404, 8.627312], - [-13.042466, 8.627593], - [-13.042465, 8.627797], - [-13.042432, 8.628044], - [-13.042343, 8.628192], - [-13.04223, 8.628364], - [-13.042075, 8.628415], - [-13.041907, 8.628428], - [-13.041737, 8.628383], - [-13.041704, 8.628474], - [-13.041794, 8.628507], - [-13.042056, 8.628498], - [-13.042202, 8.628459], - [-13.042409, 8.628277], - [-13.042505, 8.628057], - [-13.042562, 8.627843], - [-13.042561, 8.627593], - [-13.042539, 8.627173], - [-13.042542, 8.627011], - [-13.042619, 8.626708], - [-13.042698, 8.626558], - [-13.042781, 8.626473], - [-13.042912, 8.626453], - [-13.043087, 8.626472], - [-13.043616, 8.626659], - [-13.043766, 8.626683], - [-13.043941, 8.626685], - [-13.044182, 8.626613], - [-13.044437, 8.626581], - [-13.04475, 8.626594], - [-13.044939, 8.626647], - [-13.045052, 8.626725], - [-13.045112, 8.626856], - [-13.045235, 8.627419], - [-13.045313, 8.627834], - [-13.045539, 8.628404], - [-13.045675, 8.628678], - [-13.045511, 8.628754], - [-13.045286, 8.628878], - [-13.045126, 8.629031], - [-13.044954, 8.629136], - [-13.044812, 8.629179], - [-13.04463, 8.629188], - [-13.044551, 8.629232], - [-13.044388, 8.629389], - [-13.04427, 8.629472], - [-13.044253, 8.629518], - [-13.044237, 8.629581], - [-13.044258, 8.629663], - [-13.04429, 8.629754], - [-13.044214, 8.629824], - [-13.044147, 8.629831], - [-13.043909, 8.629744], - [-13.043768, 8.629752], - [-13.043593, 8.629748], - [-13.043785, 8.629775], - [-13.043892, 8.629779], - [-13.043986, 8.629809], - [-13.044109, 8.629861], - [-13.044225, 8.629875], - [-13.044302, 8.629834], - [-13.044335, 8.62978], - [-13.044335, 8.629709], - [-13.04429, 8.629613], - [-13.044289, 8.629537], - [-13.044316, 8.629477], - [-13.044431, 8.629407], - [-13.044503, 8.629338], - [-13.044591, 8.62927], - [-13.044675, 8.629246], - [-13.044745, 8.629253], - [-13.044848, 8.629257], - [-13.044942, 8.629223], - [-13.045236, 8.629035], - [-13.045459, 8.628898], - [-13.045635, 8.62883], - [-13.045754, 8.628812], - [-13.045879, 8.628814], - [-13.046013, 8.628928], - [-13.046172, 8.629076], - [-13.046362, 8.629266], - [-13.046591, 8.629407], - [-13.046819, 8.629472], - [-13.047279, 8.629613], - [-13.047521, 8.629662], - [-13.047845, 8.62968], - [-13.048197, 8.629622], - [-13.048744, 8.629444], - [-13.049205, 8.629265], - [-13.049575, 8.629173], - [-13.050012, 8.628993], - [-13.05023, 8.628859], - [-13.050308, 8.628729], - [-13.050343, 8.628256], - [-13.050274, 8.628019], - [-13.050103, 8.627732], - [-13.04973, 8.627291], - [-13.049397, 8.626861], - [-13.049198, 8.626534], - [-13.049041, 8.626232], - [-13.049041, 8.62605], - [-13.049126, 8.625831], - [-13.049291, 8.625739], - [-13.049606, 8.625637], - [-13.04992, 8.625566], - [-13.050194, 8.625572], - [-13.050443, 8.625484], - [-13.050858, 8.625306], - [-13.051192, 8.625173], - [-13.051464, 8.625044], - [-13.052204, 8.624505], - [-13.052681, 8.624045], - [-13.052952, 8.623597], - [-13.053291, 8.623291], - [-13.053559, 8.623062], - [-13.053669, 8.623018], - [-13.053776, 8.623013], - [-13.053868, 8.623118], - [-13.053955, 8.623353], - [-13.053973, 8.623734], - [-13.05405, 8.624162], - [-13.054202, 8.62473], - [-13.054382, 8.62515], - [-13.054556, 8.625864], - [-13.054635, 8.627132], - [-13.054639, 8.627755], - [-13.054513, 8.628501], - [-13.054394, 8.629112], - [-13.054091, 8.629132], - [-13.053968, 8.629149], - [-13.053901, 8.629251], - [-13.053792, 8.629494], - [-13.053721, 8.62974], - [-13.053631, 8.62986], - [-13.053505, 8.629964], - [-13.053202, 8.630044], - [-13.052771, 8.630115], - [-13.052521, 8.630171], - [-13.052328, 8.630142], - [-13.052295, 8.630082], - [-13.052275, 8.629988], - [-13.052285, 8.62984], - [-13.052395, 8.629721], - [-13.052514, 8.629573], - [-13.052299, 8.629753], - [-13.052222, 8.629855], - [-13.052199, 8.629957], - [-13.052202, 8.630053], - [-13.052259, 8.63021], - [-13.052412, 8.630233], - [-13.052661, 8.630214], - [-13.053229, 8.630113], - [-13.053585, 8.630001], - [-13.053762, 8.629799], - [-13.053874, 8.62959], - [-13.053931, 8.629441], - [-13.054008, 8.62935], - [-13.054134, 8.629278], - [-13.054208, 8.629311], - [-13.054297, 8.629442], - [-13.054389, 8.629651], - [-13.054463, 8.629987], - [-13.054533, 8.630191], - [-13.054623, 8.630303], - [-13.054862, 8.630605], - [-13.055011, 8.630799], - [-13.055048, 8.630922], - [-13.0551, 8.630834], - [-13.0551, 8.6296], - [-13.057099, 8.628799], - [-13.0579, 8.626799], - [-13.059599, 8.6246], - [-13.060099, 8.624599], - [-13.0607, 8.6221], - [-13.062399, 8.6201], - [-13.065699, 8.619299], - [-13.067099, 8.618199], - [-13.067399, 8.6171], - [-13.0651, 8.6157], - [-13.0643, 8.613999], - [-13.0643, 8.6101], - [-13.064599, 8.609001], - [-13.066299, 8.6107], - [-13.066, 8.614599], - [-13.0665, 8.615399], - [-13.069599, 8.6151], - [-13.0699, 8.614299], - [-13.072399, 8.6129], - [-13.0726, 8.612399], - [-13.076299, 8.6107], - [-13.078499, 8.6093], - [-13.079599, 8.609299], - [-13.0804, 8.6085], - [-13.081499, 8.608499], - [-13.0826, 8.6076], - [-13.085399, 8.6068], - [-13.088799, 8.6065], - [-13.088801, 8.6063], - [-13.092399, 8.606299], - [-13.093999, 8.6051], - [-13.094899, 8.605099], - [-13.095699, 8.603799] - ] - ], - [ - [ - [-13.041499, 8.570099], - [-13.041299, 8.5674], - [-13.0399, 8.5676], - [-13.0388, 8.5701], - [-13.039, 8.572099], - [-13.039599, 8.572399], - [-13.040699, 8.571799], - [-13.041499, 8.570099] - ] - ], - [ - [ - [-13.088999, 8.5632], - [-13.0879, 8.561499], - [-13.087599, 8.5593], - [-13.0871, 8.558999], - [-13.087099, 8.5574], - [-13.0865, 8.557399], - [-13.086499, 8.5554], - [-13.086, 8.554299], - [-13.086, 8.5513], - [-13.0862, 8.551299], - [-13.0862, 8.5468], - [-13.086799, 8.545399], - [-13.0868, 8.5438], - [-13.087399, 8.542399], - [-13.0868, 8.5401], - [-13.087599, 8.539299], - [-13.087099, 8.5376], - [-13.085699, 8.5371], - [-13.0829, 8.537099], - [-13.080999, 8.5357], - [-13.0801, 8.5357], - [-13.079599, 8.5368], - [-13.0765, 8.537099], - [-13.075699, 8.5365], - [-13.0746, 8.5371], - [-13.0751, 8.539], - [-13.075099, 8.540999], - [-13.0737, 8.5415], - [-13.073499, 8.542899], - [-13.0701, 8.5435], - [-13.067599, 8.5451], - [-13.065099, 8.5454], - [-13.0604, 8.5454], - [-13.060099, 8.5468], - [-13.0587, 8.547599], - [-13.0576, 8.5476], - [-13.0576, 8.549899], - [-13.0604, 8.552599], - [-13.062099, 8.5532], - [-13.062599, 8.5543], - [-13.0626, 8.556799], - [-13.062099, 8.559], - [-13.061, 8.561799], - [-13.0601, 8.5621], - [-13.0604, 8.564599], - [-13.061799, 8.564899], - [-13.0632, 8.5643], - [-13.0657, 8.566299], - [-13.069599, 8.565999], - [-13.0707, 8.5646], - [-13.073999, 8.5646], - [-13.0743, 8.5651], - [-13.077099, 8.5665], - [-13.0782, 8.567899], - [-13.0796, 8.568499], - [-13.080999, 8.568199], - [-13.0812, 8.5674], - [-13.083699, 8.566299], - [-13.0837, 8.5657], - [-13.0879, 8.565699], - [-13.088799, 8.565099], - [-13.088999, 8.5632] - ] - ], - [ - [ - [-13.073699, 8.577899], - [-13.0729, 8.576299], - [-13.072899, 8.5751], - [-13.0693, 8.5718], - [-13.069299, 8.5704], - [-13.067899, 8.5696], - [-13.0663, 8.5704], - [-13.067399, 8.5726], - [-13.0674, 8.574899], - [-13.0679, 8.576499], - [-13.068999, 8.577099], - [-13.069, 8.578199], - [-13.069899, 8.5785], - [-13.0704, 8.579899], - [-13.0713, 8.580099], - [-13.072599, 8.579299], - [-13.073699, 8.577899] - ] - ] - ], - "type": "MultiPolygon" - }, - "id": 469, - "properties": { - "cc:admin:id": ["74"], - "cc:oBld:total": 456, - "cc:pop:fifteen-to-twenty-four": 2846.5054643174108, - "cc:pop:grid3-total": 13728.577397705216, - "cc:pop:kontur-total": 11367.873752079051, - "cc:pop:men": 6772.834830976729, - "cc:pop:sixty-plus": 930.6398262659822, - "cc:pop:total": 14261.821284552698, - "cc:pop:under-five": 2037.265094130434, - "cc:pop:women": 7488.986453575968, - "cc:pop:women-fiften-to-forty-nine": 3802.110482086071, - "cc:pop:wp-total": 11053.830270807373, - "cc:pop:wp-total-UN": 12813.7527392875, - "cc:id": "469", - "cc:Name": "Pepel CHP", - "cc:site": [-13.0547, 8.5893], - "user:parentName": "Lokomasama", - "user:code": "OU_254985", - "user:orgUnitId": "XXlzHWzhf5d", - "user:level": "4", - "user:parentId": "fRLX08WHWpL" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.125401, 7.677902], - [-11.122082, 7.674583], - [-11.120417, 7.669584], - [-11.121249, 7.667917], - [-11.117082, 7.667916], - [-11.109582, 7.660417], - [-11.104584, 7.660416], - [-11.107082, 7.657083], - [-11.107082, 7.64875], - [-11.104582, 7.648749], - [-11.099422, 7.641378], - [-11.097845, 7.642333], - [-11.09393, 7.64459], - [-11.090336, 7.646045], - [-11.086943, 7.64749], - [-11.08625, 7.64125], - [-11.088749, 7.634583], - [-11.08625, 7.627917], - [-11.085416, 7.627916], - [-11.080416, 7.619584], - [-11.073749, 7.619584], - [-11.067917, 7.62125], - [-11.067917, 7.624583], - [-11.06875, 7.625417], - [-11.068749, 7.632083], - [-11.064318, 7.637253], - [-11.064132, 7.637142], - [-11.063433, 7.636534], - [-11.062421, 7.631745], - [-11.061249, 7.632917], - [-11.058749, 7.637916], - [-11.055417, 7.641249], - [-11.05171, 7.64125], - [-11.051978, 7.641716], - [-11.048073, 7.648481], - [-11.042083, 7.648482], - [-11.042082, 7.649584], - [-11.038749, 7.65375], - [-11.03375, 7.654583], - [-11.027917, 7.652917], - [-11.02375, 7.664583], - [-11.027083, 7.669583], - [-11.031249, 7.67125], - [-11.031249, 7.679583], - [-11.02756, 7.68401], - [-11.025417, 7.687723], - [-11.025416, 7.692916], - [-11.02375, 7.694583], - [-11.02125, 7.694583], - [-11.01538, 7.691649], - [-11.015357, 7.691694], - [-11.014453, 7.692543], - [-11.013378, 7.693227], - [-11.012662, 7.694135], - [-11.012903, 7.694793], - [-11.012783, 7.696313], - [-11.011883, 7.699735], - [-11.011412, 7.70329], - [-11.011849, 7.704359], - [-11.013139, 7.705063], - [-11.014585, 7.704279], - [-11.016295, 7.703812], - [-11.017579, 7.704354], - [-11.018742, 7.704208], - [-11.019902, 7.703361], - [-11.020417, 7.705416], - [-11.022916, 7.707917], - [-11.022917, 7.717083], - [-11.022623, 7.71745], - [-11.025093, 7.721729], - [-11.032906, 7.72173], - [-11.035798, 7.726739], - [-11.035417, 7.732083], - [-11.039583, 7.736249], - [-11.042743, 7.73625], - [-11.042926, 7.737083], - [-11.044582, 7.737084], - [-11.053749, 7.735417], - [-11.056074, 7.736578], - [-11.0559, 7.7299], - [-11.056099, 7.7242], - [-11.0569, 7.7211], - [-11.0581, 7.719199], - [-11.061899, 7.715], - [-11.0653, 7.711699], - [-11.0692, 7.708399], - [-11.0749, 7.705099], - [-11.0777, 7.702899], - [-11.082999, 7.6979], - [-11.086, 7.696], - [-11.0909, 7.695199], - [-11.099699, 7.6951], - [-11.1024, 7.694899], - [-11.1048, 7.694099], - [-11.111599, 7.6908], - [-11.1145, 7.688699], - [-11.117199, 7.6862], - [-11.125401, 7.677902] - ] - ], - "type": "Polygon" - }, - "id": 470, - "properties": { - "cc:admin:id": ["28"], - "cc:oBld:total": 1293, - "cc:pop:fifteen-to-twenty-four": 1660.9225625761076, - "cc:pop:grid3-total": 4886.846450796073, - "cc:pop:kontur-total": 8444.098749677189, - "cc:pop:men": 4152.791651933385, - "cc:pop:sixty-plus": 544.8266490041154, - "cc:pop:total": 8547.219271042588, - "cc:pop:under-five": 1385.299713850417, - "cc:pop:women": 4394.427619109199, - "cc:pop:women-fiften-to-forty-nine": 2248.7773857021143, - "cc:pop:wp-total": 5828.8662607161195, - "cc:pop:wp-total-UN": 6758.481517104375, - "cc:id": "470", - "cc:Name": "Perrie MCHP", - "cc:site": [-11.0787, 7.6621], - "user:parentName": "Gaura", - "user:code": "OU_222745", - "user:orgUnitId": "f6xGA6BZBLO", - "user:level": "4", - "user:parentId": "eROJsBwxQHt" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.165494, 8.745038], - [-13.163099, 8.742899], - [-13.160199, 8.7385], - [-13.156299, 8.735699], - [-13.152699, 8.732699], - [-13.149099, 8.7308], - [-13.1408, 8.7296], - [-13.137699, 8.728199], - [-13.1356, 8.726299], - [-13.1319, 8.7193], - [-13.1309, 8.7147], - [-13.1312, 8.7094], - [-13.133999, 8.7052], - [-13.1398, 8.701799], - [-13.1432, 8.699099], - [-13.147299, 8.6953], - [-13.150699, 8.6915], - [-13.152699, 8.687499], - [-13.153999, 8.6787], - [-13.156399, 8.672399], - [-13.156699, 8.6674], - [-13.156199, 8.6641], - [-13.153699, 8.6607], - [-13.152899, 8.6612], - [-13.1501, 8.6626], - [-13.1485, 8.664299], - [-13.147599, 8.667899], - [-13.147099, 8.6685], - [-13.146199, 8.670999], - [-13.1454, 8.6718], - [-13.144599, 8.674299], - [-13.143499, 8.675399], - [-13.1424, 8.674899], - [-13.143999, 8.6732], - [-13.144599, 8.6721], - [-13.1454, 8.6688], - [-13.146799, 8.667099], - [-13.1468, 8.6654], - [-13.147899, 8.664299], - [-13.148799, 8.6626], - [-13.1488, 8.661299], - [-13.1496, 8.6599], - [-13.150999, 8.658799], - [-13.1515, 8.6568], - [-13.152399, 8.6554], - [-13.1538, 8.654599], - [-13.1543, 8.652899], - [-13.154299, 8.6496], - [-13.152099, 8.6451], - [-13.150099, 8.6438], - [-13.1468, 8.643499], - [-13.144599, 8.6426], - [-13.1424, 8.6429], - [-13.141499, 8.6438], - [-13.1376, 8.644299], - [-13.136799, 8.644899], - [-13.1346, 8.6449], - [-13.132599, 8.645699], - [-13.1315, 8.6457], - [-13.131299, 8.648199], - [-13.1304, 8.649], - [-13.130399, 8.654299], - [-13.1296, 8.654599], - [-13.129, 8.6512], - [-13.1285, 8.6499], - [-13.129, 8.649599], - [-13.128999, 8.643999], - [-13.128499, 8.6426], - [-13.1274, 8.642099], - [-13.127099, 8.641], - [-13.126, 8.640099], - [-13.125099, 8.6382], - [-13.1235, 8.6379], - [-13.1207, 8.639899], - [-13.1188, 8.6401], - [-13.117899, 8.640699], - [-13.116499, 8.6404], - [-13.1132, 8.6407], - [-13.111799, 8.641799], - [-13.1093, 8.6426], - [-13.108499, 8.643799], - [-13.1074, 8.644], - [-13.105399, 8.645399], - [-13.1043, 8.6457], - [-13.1043, 8.647399], - [-13.105099, 8.648999], - [-13.1068, 8.6504], - [-13.108999, 8.653699], - [-13.108999, 8.655399], - [-13.1082, 8.6563], - [-13.108199, 8.6582], - [-13.1046, 8.660999], - [-13.104599, 8.660999], - [-13.104, 8.660099], - [-13.105699, 8.659599], - [-13.107399, 8.658199], - [-13.1074, 8.6563], - [-13.108199, 8.655399], - [-13.108199, 8.6537], - [-13.107399, 8.6524], - [-13.106, 8.6518], - [-13.105399, 8.651], - [-13.104, 8.6504], - [-13.103799, 8.6496], - [-13.1021, 8.6493], - [-13.1004, 8.6501], - [-13.100099, 8.651], - [-13.0976, 8.6526], - [-13.0954, 8.656299], - [-13.095399, 8.657599], - [-13.0946, 8.6596], - [-13.0946, 8.662598], - [-13.094598, 8.662599], - [-13.093799, 8.662099], - [-13.0935, 8.6593], - [-13.094299, 8.657899], - [-13.094, 8.655999], - [-13.094, 8.6518], - [-13.094599, 8.651], - [-13.096499, 8.650399], - [-13.0985, 8.6485], - [-13.100399, 8.647899], - [-13.101199, 8.647099], - [-13.1018, 8.6454], - [-13.102899, 8.6443], - [-13.104599, 8.643799], - [-13.1074, 8.6413], - [-13.109, 8.640699], - [-13.111, 8.6393], - [-13.1146, 8.6382], - [-13.118999, 8.638199], - [-13.122099, 8.636499], - [-13.122599, 8.635399], - [-13.122599, 8.6332], - [-13.121299, 8.6313], - [-13.1193, 8.6301], - [-13.118999, 8.628999], - [-13.117599, 8.6282], - [-13.1165, 8.628199], - [-13.115099, 8.6268], - [-13.1135, 8.626499], - [-13.1121, 8.6257], - [-13.111799, 8.6246], - [-13.110699, 8.624299], - [-13.109299, 8.622599], - [-13.107599, 8.6212], - [-13.106799, 8.621199], - [-13.104899, 8.6187], - [-13.103199, 8.618199], - [-13.101199, 8.6154], - [-13.0993, 8.616], - [-13.098499, 8.6168], - [-13.095999, 8.6174], - [-13.0929, 8.617599], - [-13.0904, 8.6165], - [-13.088799, 8.615399], - [-13.084, 8.6151], - [-13.082599, 8.615999], - [-13.081, 8.616], - [-13.079899, 8.6165], - [-13.0771, 8.6165], - [-13.076799, 8.6171], - [-13.074, 8.6182], - [-13.0729, 8.619599], - [-13.0721, 8.6196], - [-13.070399, 8.621199], - [-13.0693, 8.6215], - [-13.0679, 8.622599], - [-13.067599, 8.623499], - [-13.0663, 8.6243], - [-13.066499, 8.625999], - [-13.0643, 8.6262], - [-13.063499, 8.627099], - [-13.062399, 8.6271], - [-13.061, 8.6285], - [-13.060999, 8.629599], - [-13.0601, 8.6304], - [-13.0599, 8.632099], - [-13.0599, 8.643799], - [-13.0596, 8.6438], - [-13.0596, 8.647399], - [-13.0599, 8.6474], - [-13.0599, 8.653999], - [-13.0596, 8.655999], - [-13.0607, 8.659299], - [-13.0613, 8.6596], - [-13.062599, 8.662599], - [-13.0629, 8.665399], - [-13.0635, 8.6657], - [-13.0643, 8.667899], - [-13.0654, 8.669299], - [-13.067099, 8.6693], - [-13.067899, 8.6699], - [-13.0679, 8.673199], - [-13.0682, 8.6732], - [-13.0685, 8.676199], - [-13.070099, 8.6782], - [-13.069599, 8.680099], - [-13.0679, 8.679599], - [-13.067899, 8.678799], - [-13.0663, 8.6751], - [-13.0654, 8.674299], - [-13.064899, 8.6715], - [-13.063499, 8.670099], - [-13.062899, 8.6674], - [-13.0618, 8.666799], - [-13.060999, 8.6646], - [-13.059899, 8.6635], - [-13.0585, 8.6638], - [-13.0576, 8.666], - [-13.0576, 8.670399], - [-13.058199, 8.6713], - [-13.0579, 8.675999], - [-13.057599, 8.677099], - [-13.0565, 8.6776], - [-13.056199, 8.681499], - [-13.0546, 8.6821], - [-13.053199, 8.6832], - [-13.050701, 8.683499], - [-13.050701, 8.683498], - [-13.051363, 8.682474], - [-13.050368, 8.683136], - [-13.050302, 8.683155], - [-13.050247, 8.683149], - [-13.050213, 8.683111], - [-13.050162, 8.683044], - [-13.050104, 8.683013], - [-13.050013, 8.683004], - [-13.049934, 8.683032], - [-13.049888, 8.683025], - [-13.049824, 8.682973], - [-13.049838, 8.682923], - [-13.049865, 8.682874], - [-13.049855, 8.682825], - [-13.049747, 8.682648], - [-13.049667, 8.682456], - [-13.049703, 8.682608], - [-13.049734, 8.682675], - [-13.049805, 8.682803], - [-13.049814, 8.682856], - [-13.049789, 8.682898], - [-13.049772, 8.68295], - [-13.049825, 8.683028], - [-13.049884, 8.683055], - [-13.049977, 8.683056], - [-13.050042, 8.683061], - [-13.050147, 8.68311], - [-13.050202, 8.683166], - [-13.050216, 8.6832], - [-13.050114, 8.683325], - [-13.049873, 8.683521], - [-13.049738, 8.683681], - [-13.049656, 8.683791], - [-13.049632, 8.683877], - [-13.049629, 8.684057], - [-13.049554, 8.684269], - [-13.049473, 8.684549], - [-13.049317, 8.685055], - [-13.049287, 8.68521], - [-13.049303, 8.685411], - [-13.049308, 8.685656], - [-13.049262, 8.68586], - [-13.049143, 8.685948], - [-13.048919, 8.686039], - [-13.048628, 8.686105], - [-13.048472, 8.6861], - [-13.048252, 8.686038], - [-13.048083, 8.685865], - [-13.047982, 8.685732], - [-13.047877, 8.685673], - [-13.047633, 8.685636], - [-13.047409, 8.68566], - [-13.047154, 8.685733], - [-13.046989, 8.685732], - [-13.046775, 8.685644], - [-13.046549, 8.685625], - [-13.04637, 8.685689], - [-13.046254, 8.685788], - [-13.046031, 8.686003], - [-13.045852, 8.686195], - [-13.045762, 8.68625], - [-13.045647, 8.686283], - [-13.045447, 8.686287], - [-13.044678, 8.686243], - [-13.044698, 8.686294], - [-13.044817, 8.686314], - [-13.045059, 8.686373], - [-13.045235, 8.686413], - [-13.045273, 8.686481], - [-13.045285, 8.686569], - [-13.045219, 8.686665], - [-13.044996, 8.686893], - [-13.044836, 8.687076], - [-13.044756, 8.687224], - [-13.044694, 8.687345], - [-13.044671, 8.68757], - [-13.044606, 8.687639], - [-13.044356, 8.687804], - [-13.044147, 8.68797], - [-13.04393, 8.688151], - [-13.043826, 8.688269], - [-13.043778, 8.688365], - [-13.043812, 8.68844], - [-13.04382, 8.688564], - [-13.043775, 8.688669], - [-13.043641, 8.689072], - [-13.043511, 8.689283], - [-13.043465, 8.689334], - [-13.043408, 8.689507], - [-13.043325, 8.689664], - [-13.043226, 8.689613], - [-13.042998, 8.689548], - [-13.042867, 8.689596], - [-13.042693, 8.689695], - [-13.042484, 8.689943], - [-13.042338, 8.69012], - [-13.042316, 8.690175], - [-13.042323, 8.690225], - [-13.04238, 8.690323], - [-13.042411, 8.690371], - [-13.042412, 8.690457], - [-13.042359, 8.690489], - [-13.042298, 8.690487], - [-13.041959, 8.690222], - [-13.041727, 8.690092], - [-13.041526, 8.690079], - [-13.041372, 8.690122], - [-13.041271, 8.69019], - [-13.041205, 8.690286], - [-13.041145, 8.690387], - [-13.041086, 8.690597], - [-13.041046, 8.690819], - [-13.041053, 8.691001], - [-13.04107, 8.691101], - [-13.041067, 8.691174], - [-13.041012, 8.691276], - [-13.040879, 8.691396], - [-13.040659, 8.691538], - [-13.040349, 8.691727], - [-13.040196, 8.69185], - [-13.040095, 8.691941], - [-13.040022, 8.691985], - [-13.039963, 8.69211], - [-13.039952, 8.692254], - [-13.039931, 8.692395], - [-13.039852, 8.692628], - [-13.039767, 8.692737], - [-13.03968, 8.692799], - [-13.039502, 8.692972], - [-13.039486, 8.693093], - [-13.039502, 8.693317], - [-13.039582, 8.69356], - [-13.039624, 8.693755], - [-13.039647, 8.694062], - [-13.039678, 8.694342], - [-13.039758, 8.694571], - [-13.039758, 8.694666], - [-13.039648, 8.694844], - [-13.039482, 8.695008], - [-13.039396, 8.695097], - [-13.039364, 8.695171], - [-13.039362, 8.695321], - [-13.039397, 8.695419], - [-13.039395, 8.695497], - [-13.039334, 8.695593], - [-13.03927, 8.695647], - [-13.039276, 8.695761], - [-13.039316, 8.695798], - [-13.039334, 8.695889], - [-13.039319, 8.696025], - [-13.039304, 8.696093], - [-13.039311, 8.696151], - [-13.039326, 8.69622], - [-13.039352, 8.696289], - [-13.039372, 8.696376], - [-13.039348, 8.696459], - [-13.039261, 8.696541], - [-13.039069, 8.696713], - [-13.038999, 8.696799], - [-13.038988, 8.696847], - [-13.039011, 8.696907], - [-13.039095, 8.69699], - [-13.03918, 8.697018], - [-13.039234, 8.697041], - [-13.039215, 8.697093], - [-13.039177, 8.697125], - [-13.039116, 8.697128], - [-13.039053, 8.697134], - [-13.03905, 8.697176], - [-13.039082, 8.697211], - [-13.039128, 8.697226], - [-13.039215, 8.697211], - [-13.039278, 8.697216], - [-13.03931, 8.69729], - [-13.039257, 8.697405], - [-13.039236, 8.697553], - [-13.039231, 8.697696], - [-13.039172, 8.697748], - [-13.039107, 8.697777], - [-13.038888, 8.697833], - [-13.039013, 8.697837], - [-13.039115, 8.697805], - [-13.039227, 8.697744], - [-13.039279, 8.697724], - [-13.039392, 8.69775], - [-13.039443, 8.697779], - [-13.039613, 8.697779], - [-13.039442, 8.697747], - [-13.03932, 8.697707], - [-13.039282, 8.697685], - [-13.039276, 8.697601], - [-13.0393, 8.697488], - [-13.039323, 8.697366], - [-13.039397, 8.697299], - [-13.039446, 8.697274], - [-13.039586, 8.697266], - [-13.039638, 8.697313], - [-13.039694, 8.697343], - [-13.039758, 8.697334], - [-13.039844, 8.697243], - [-13.039858, 8.697183], - [-13.039823, 8.697117], - [-13.039775, 8.697056], - [-13.039731, 8.69703], - [-13.039646, 8.697005], - [-13.039457, 8.697019], - [-13.039253, 8.696997], - [-13.03912, 8.696967], - [-13.039078, 8.696948], - [-13.039038, 8.696892], - [-13.039042, 8.696819], - [-13.039077, 8.696763], - [-13.039231, 8.696625], - [-13.03931, 8.696588], - [-13.039345, 8.696557], - [-13.039397, 8.69641], - [-13.039417, 8.696314], - [-13.039445, 8.696273], - [-13.039487, 8.696251], - [-13.039524, 8.696256], - [-13.039567, 8.696252], - [-13.039569, 8.696205], - [-13.039504, 8.696051], - [-13.039463, 8.695951], - [-13.039444, 8.695815], - [-13.039404, 8.695717], - [-13.039398, 8.695667], - [-13.039398, 8.695616], - [-13.039423, 8.695488], - [-13.039455, 8.695431], - [-13.039505, 8.69536], - [-13.039586, 8.69524], - [-13.039601, 8.695171], - [-13.039604, 8.695074], - [-13.039637, 8.695029], - [-13.039708, 8.694938], - [-13.039752, 8.694849], - [-13.039784, 8.694766], - [-13.039796, 8.694661], - [-13.039778, 8.694569], - [-13.039739, 8.694418], - [-13.03971, 8.694224], - [-13.039684, 8.693957], - [-13.039647, 8.693629], - [-13.039593, 8.69336], - [-13.039562, 8.693225], - [-13.039576, 8.693098], - [-13.039593, 8.693006], - [-13.039644, 8.692876], - [-13.039905, 8.692644], - [-13.039946, 8.692564], - [-13.039963, 8.692469], - [-13.040006, 8.692269], - [-13.040083, 8.692106], - [-13.040191, 8.691951], - [-13.040325, 8.691843], - [-13.040505, 8.691715], - [-13.040554, 8.691692], - [-13.040587, 8.691723], - [-13.04065, 8.691808], - [-13.040718, 8.691858], - [-13.040926, 8.691954], - [-13.040738, 8.691851], - [-13.040668, 8.691796], - [-13.040643, 8.691758], - [-13.040634, 8.691725], - [-13.04064, 8.691677], - [-13.040719, 8.691635], - [-13.040832, 8.691583], - [-13.040981, 8.691469], - [-13.041104, 8.691316], - [-13.041199, 8.691147], - [-13.041254, 8.69081], - [-13.041269, 8.690501], - [-13.041278, 8.69036], - [-13.041317, 8.690292], - [-13.041383, 8.690224], - [-13.041441, 8.690197], - [-13.04155, 8.690158], - [-13.041682, 8.690177], - [-13.041787, 8.690264], - [-13.041908, 8.690423], - [-13.042086, 8.690634], - [-13.042188, 8.690719], - [-13.042327, 8.690794], - [-13.0424, 8.690797], - [-13.042473, 8.690757], - [-13.042534, 8.690673], - [-13.042642, 8.690505], - [-13.042668, 8.69042], - [-13.042665, 8.690302], - [-13.042634, 8.690069], - [-13.042644, 8.690009], - [-13.042671, 8.689981], - [-13.042734, 8.689989], - [-13.042782, 8.690003], - [-13.042876, 8.689974], - [-13.042939, 8.689934], - [-13.043036, 8.689964], - [-13.043079, 8.689961], - [-13.043128, 8.689895], - [-13.043229, 8.68985], - [-13.043427, 8.689765], - [-13.043574, 8.689675], - [-13.043675, 8.689601], - [-13.043746, 8.689463], - [-13.04381, 8.689267], - [-13.043909, 8.68901], - [-13.044064, 8.688716], - [-13.044183, 8.688523], - [-13.044308, 8.688366], - [-13.044513, 8.688242], - [-13.044606, 8.688238], - [-13.044674, 8.68817], - [-13.04484, 8.687925], - [-13.044944, 8.687793], - [-13.045082, 8.687709], - [-13.045216, 8.687678], - [-13.045355, 8.687548], - [-13.045446, 8.687388], - [-13.045482, 8.68711], - [-13.045487, 8.686957], - [-13.045543, 8.686863], - [-13.045614, 8.686817], - [-13.045737, 8.686752], - [-13.045868, 8.686709], - [-13.046057, 8.686712], - [-13.046325, 8.686662], - [-13.046653, 8.686505], - [-13.046929, 8.68643], - [-13.047193, 8.686406], - [-13.047598, 8.686394], - [-13.047985, 8.686355], - [-13.048366, 8.686346], - [-13.048651, 8.68636], - [-13.048679, 8.686393], - [-13.048654, 8.686445], - [-13.048576, 8.686556], - [-13.048545, 8.686719], - [-13.048533, 8.68688], - [-13.048533, 8.686993], - [-13.048553, 8.687156], - [-13.048586, 8.687281], - [-13.048624, 8.6874], - [-13.048709, 8.687556], - [-13.048801, 8.68766], - [-13.048938, 8.687797], - [-13.049087, 8.687999], - [-13.049436, 8.688455], - [-13.049704, 8.688669], - [-13.049818, 8.688789], - [-13.049873, 8.68887], - [-13.049995, 8.689114], - [-13.050073, 8.689315], - [-13.050118, 8.6896], - [-13.050123, 8.689775], - [-13.050118, 8.689828], - [-13.050073, 8.689852], - [-13.049943, 8.689843], - [-13.049868, 8.689808], - [-13.049815, 8.689764], - [-13.049717, 8.689622], - [-13.049668, 8.689411], - [-13.04963, 8.689313], - [-13.049539, 8.689199], - [-13.049399, 8.689065], - [-13.049297, 8.689021], - [-13.049212, 8.688998], - [-13.04907, 8.689011], - [-13.048975, 8.689056], - [-13.04887, 8.689155], - [-13.0488, 8.689232], - [-13.048703, 8.68937], - [-13.048652, 8.689537], - [-13.048639, 8.689626], - [-13.048637, 8.689748], - [-13.048653, 8.689864], - [-13.048677, 8.691032], - [-13.04878, 8.691257], - [-13.04886, 8.691403], - [-13.049023, 8.691651], - [-13.049111, 8.691826], - [-13.049106, 8.69194], - [-13.049076, 8.692028], - [-13.048983, 8.692114], - [-13.048872, 8.692201], - [-13.048661, 8.692374], - [-13.048522, 8.692442], - [-13.048429, 8.692475], - [-13.048273, 8.692548], - [-13.048158, 8.692635], - [-13.04807, 8.692715], - [-13.047866, 8.692886], - [-13.047802, 8.692948], - [-13.047731, 8.693042], - [-13.047686, 8.693087], - [-13.047632, 8.693106], - [-13.047393, 8.693297], - [-13.047461, 8.693713], - [-13.047501, 8.693797], - [-13.047573, 8.693822], - [-13.047689, 8.693907], - [-13.047719, 8.693963], - [-13.047692, 8.694096], - [-13.047676, 8.694155], - [-13.047712, 8.694269], - [-13.047821, 8.694419], - [-13.048066, 8.694766], - [-13.048155, 8.695029], - [-13.048209, 8.695176], - [-13.048224, 8.695248], - [-13.048147, 8.695407], - [-13.048089, 8.695475], - [-13.047983, 8.695629], - [-13.047924, 8.695759], - [-13.047909, 8.695911], - [-13.047915, 8.695982], - [-13.047943, 8.696047], - [-13.048038, 8.696151], - [-13.048118, 8.696225], - [-13.048182, 8.696221], - [-13.048285, 8.696178], - [-13.048381, 8.696109], - [-13.048516, 8.696031], - [-13.048628, 8.695982], - [-13.048699, 8.696011], - [-13.048764, 8.696074], - [-13.048759, 8.69614], - [-13.048719, 8.696208], - [-13.048675, 8.696277], - [-13.04865, 8.696434], - [-13.048651, 8.696474], - [-13.048732, 8.696579], - [-13.048797, 8.696615], - [-13.048987, 8.696649], - [-13.04908, 8.696669], - [-13.049296, 8.696705], - [-13.049419, 8.696738], - [-13.049506, 8.696777], - [-13.049541, 8.696881], - [-13.049556, 8.696983], - [-13.049587, 8.697119], - [-13.049591, 8.697293], - [-13.049554, 8.697361], - [-13.049521, 8.697402], - [-13.049516, 8.697574], - [-13.049485, 8.697652], - [-13.049485, 8.697676], - [-13.049506, 8.697709], - [-13.049608, 8.697742], - [-13.049684, 8.697749], - [-13.049907, 8.697862], - [-13.050012, 8.697924], - [-13.050141, 8.698064], - [-13.050183, 8.698164], - [-13.050167, 8.69821], - [-13.050109, 8.698276], - [-13.050065, 8.698332], - [-13.050027, 8.698485], - [-13.050039, 8.698539], - [-13.050109, 8.698596], - [-13.050305, 8.69871], - [-13.050419, 8.698858], - [-13.050432, 8.698969], - [-13.050482, 8.699006], - [-13.050549, 8.699082], - [-13.050535, 8.699156], - [-13.050519, 8.699216], - [-13.050439, 8.699306], - [-13.050432, 8.699346], - [-13.050439, 8.699518], - [-13.050382, 8.699673], - [-13.050367, 8.699749], - [-13.050441, 8.699784], - [-13.050725, 8.699788], - [-13.050742, 8.699663], - [-13.050744, 8.699542], - [-13.050717, 8.69941], - [-13.050674, 8.699333], - [-13.050679, 8.6992], - [-13.050715, 8.699082], - [-13.050748, 8.698904], - [-13.050773, 8.698804], - [-13.050725, 8.698841], - [-13.050641, 8.698827], - [-13.050539, 8.698829], - [-13.050454, 8.698805], - [-13.050418, 8.698746], - [-13.050316, 8.698615], - [-13.050232, 8.698571], - [-13.050124, 8.698471], - [-13.050106, 8.698413], - [-13.050122, 8.698355], - [-13.050185, 8.698281], - [-13.050227, 8.698211], - [-13.050246, 8.698123], - [-13.050173, 8.697989], - [-13.050039, 8.697882], - [-13.049734, 8.697735], - [-13.049556, 8.697587], - [-13.049544, 8.69752], - [-13.049566, 8.697413], - [-13.049625, 8.697342], - [-13.049638, 8.697236], - [-13.049606, 8.696925], - [-13.049588, 8.696828], - [-13.04956, 8.696764], - [-13.049491, 8.696696], - [-13.049351, 8.696671], - [-13.049267, 8.696648], - [-13.049204, 8.696597], - [-13.049188, 8.696544], - [-13.049097, 8.696391], - [-13.049085, 8.69626], - [-13.04903, 8.696252], - [-13.048987, 8.696286], - [-13.048949, 8.696341], - [-13.048862, 8.696351], - [-13.048793, 8.696347], - [-13.048767, 8.696308], - [-13.048788, 8.696192], - [-13.048835, 8.696072], - [-13.048833, 8.69602], - [-13.048815, 8.695986], - [-13.04869, 8.695941], - [-13.048628, 8.695927], - [-13.048499, 8.695986], - [-13.048344, 8.696041], - [-13.048188, 8.696091], - [-13.048122, 8.696066], - [-13.048032, 8.696037], - [-13.047986, 8.695972], - [-13.047961, 8.695891], - [-13.047973, 8.695775], - [-13.048058, 8.695607], - [-13.048173, 8.695511], - [-13.048292, 8.695375], - [-13.048342, 8.695245], - [-13.04832, 8.69511], - [-13.048197, 8.694913], - [-13.048079, 8.694658], - [-13.047849, 8.694307], - [-13.047793, 8.694179], - [-13.047793, 8.694059], - [-13.0478, 8.693958], - [-13.047682, 8.693666], - [-13.047556, 8.693483], - [-13.047531, 8.693411], - [-13.047564, 8.693335], - [-13.047637, 8.693285], - [-13.047776, 8.69322], - [-13.047948, 8.693108], - [-13.048178, 8.692981], - [-13.048465, 8.69291], - [-13.048595, 8.692801], - [-13.048842, 8.692528], - [-13.049088, 8.692361], - [-13.049204, 8.692229], - [-13.049327, 8.692031], - [-13.049402, 8.691889], - [-13.049396, 8.691679], - [-13.049344, 8.691561], - [-13.049172, 8.691361], - [-13.048963, 8.691206], - [-13.048911, 8.691096], - [-13.048883, 8.690925], - [-13.048886, 8.690484], - [-13.04888, 8.69003], - [-13.048933, 8.689631], - [-13.049001, 8.689325], - [-13.049063, 8.689205], - [-13.049126, 8.689141], - [-13.04919, 8.689136], - [-13.04929, 8.689174], - [-13.049374, 8.689391], - [-13.04944, 8.689712], - [-13.049455, 8.690056], - [-13.04949, 8.690179], - [-13.049584, 8.690305], - [-13.049691, 8.690354], - [-13.049911, 8.690356], - [-13.050143, 8.690321], - [-13.050232, 8.690242], - [-13.05035, 8.690054], - [-13.050439, 8.689804], - [-13.050432, 8.689517], - [-13.050639, 8.689767], - [-13.051008, 8.689735], - [-13.050534, 8.6901], - [-13.050528, 8.69128], - [-13.051125, 8.692758], - [-13.050239, 8.693163], - [-13.049463, 8.693845], - [-13.049027, 8.69499], - [-13.048995, 8.69555], - [-13.049086, 8.695898], - [-13.049917, 8.696839], - [-13.050457, 8.697117], - [-13.050727, 8.697043], - [-13.050316, 8.697437], - [-13.050514, 8.698096], - [-13.050884, 8.698242], - [-13.05075, 8.69848], - [-13.051308, 8.698641], - [-13.051759, 8.699042], - [-13.051826, 8.699609], - [-13.05175, 8.700003], - [-13.051904, 8.700121], - [-13.051483, 8.70075], - [-13.051452, 8.70072], - [-13.051249, 8.703749], - [-13.051236, 8.703756], - [-13.050455, 8.703288], - [-13.050213, 8.704267], - [-13.049583, 8.704583], - [-13.050026, 8.705027], - [-13.049687, 8.706405], - [-13.049537, 8.707742], - [-13.04993, 8.71049], - [-13.055821, 8.709918], - [-13.058493, 8.709625], - [-13.058494, 8.709626], - [-13.057852, 8.710852], - [-13.059469, 8.71061], - [-13.059917, 8.711932], - [-13.059957, 8.712082], - [-13.062916, 8.712083], - [-13.062083, 8.714583], - [-13.062917, 8.717916], - [-13.07375, 8.714583], - [-13.074582, 8.715417], - [-13.07375, 8.727082], - [-13.072113, 8.728393], - [-13.075206, 8.73375], - [-13.077202, 8.732481], - [-13.077946, 8.732453], - [-13.080191, 8.73389], - [-13.080413, 8.734742], - [-13.080038, 8.735492], - [-13.079041, 8.73664], - [-13.079155, 8.737295], - [-13.078967, 8.737747], - [-13.079202, 8.737871], - [-13.07961, 8.738736], - [-13.080306, 8.738538], - [-13.081687, 8.738175], - [-13.082917, 8.741249], - [-13.085417, 8.739583], - [-13.095416, 8.742916], - [-13.096249, 8.74375], - [-13.09625, 8.744582], - [-13.103749, 8.744583], - [-13.104583, 8.750416], - [-13.10875, 8.753749], - [-13.117916, 8.753749], - [-13.120417, 8.752083], - [-13.122083, 8.75375], - [-13.127916, 8.756249], - [-13.128749, 8.756249], - [-13.12875, 8.755417], - [-13.130416, 8.755416], - [-13.13375, 8.752082], - [-13.139582, 8.750416], - [-13.139583, 8.749583], - [-13.144162, 8.750891], - [-13.144417, 8.750144], - [-13.145363, 8.748245], - [-13.145379, 8.748138], - [-13.150416, 8.74625], - [-13.153749, 8.74875], - [-13.157917, 8.757082], - [-13.161249, 8.756249], - [-13.159809, 8.746163], - [-13.160464, 8.74616], - [-13.161257, 8.74602], - [-13.163088, 8.746169], - [-13.164748, 8.746027], - [-13.165494, 8.745038] - ] - ], - "type": "Polygon" - }, - "id": 471, - "properties": { - "cc:admin:id": ["74"], - "cc:oBld:total": 150, - "cc:pop:fifteen-to-twenty-four": 2846.590947590114, - "cc:pop:grid3-total": 7132.750337353561, - "cc:pop:kontur-total": 15302.30783505159, - "cc:pop:men": 7408.120168895929, - "cc:pop:sixty-plus": 862.2356319510981, - "cc:pop:total": 15740.24995706009, - "cc:pop:under-five": 2426.028956723263, - "cc:pop:women": 8332.129788164159, - "cc:pop:women-fiften-to-forty-nine": 4139.837383814885, - "cc:pop:wp-total": 12440.006818189968, - "cc:pop:wp-total-UN": 14435.392118257176, - "cc:id": "471", - "cc:Name": "Petifu CHC", - "cc:site": [-13.1078, 8.6953], - "user:parentName": "Lokomasama", - "user:code": "OU_254983", - "user:orgUnitId": "ke2gwHKHP3z", - "user:level": "4", - "user:parentId": "fRLX08WHWpL" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.592082, 8.510667], - [-11.587799, 8.502499], - [-11.584899, 8.498599], - [-11.58, 8.4938], - [-11.576399, 8.4978], - [-11.5724, 8.503899], - [-11.5697, 8.507199], - [-11.558399, 8.519], - [-11.5507, 8.526499], - [-11.546, 8.530099], - [-11.539499, 8.5334], - [-11.535399, 8.5345], - [-11.5278, 8.534899], - [-11.5218, 8.5342], - [-11.509099, 8.529999], - [-11.497, 8.5246], - [-11.494199, 8.523999], - [-11.4899, 8.5237], - [-11.486834, 8.523914], - [-11.48625, 8.526249], - [-11.488748, 8.529584], - [-11.48125, 8.53125], - [-11.482083, 8.538749], - [-11.484583, 8.541249], - [-11.487916, 8.54125], - [-11.48875, 8.54625], - [-11.492654, 8.552496], - [-11.492673, 8.552496], - [-11.493097, 8.55243], - [-11.493748, 8.552099], - [-11.49375, 8.5521], - [-11.493749, 8.555416], - [-11.482083, 8.555417], - [-11.482917, 8.567084], - [-11.48375, 8.569583], - [-11.487916, 8.56875], - [-11.485417, 8.573749], - [-11.493749, 8.582916], - [-11.494583, 8.590417], - [-11.49625, 8.592084], - [-11.499833, 8.592084], - [-11.499856, 8.591944], - [-11.505416, 8.59125], - [-11.505416, 8.595694], - [-11.503584, 8.595961], - [-11.50289, 8.596318], - [-11.502671, 8.596248], - [-11.50069, 8.596912], - [-11.499648, 8.597563], - [-11.499583, 8.597576], - [-11.499583, 8.602916], - [-11.508749, 8.602917], - [-11.510416, 8.603749], - [-11.509583, 8.608749], - [-11.502917, 8.612917], - [-11.502916, 8.614583], - [-11.500417, 8.615417], - [-11.499583, 8.617083], - [-11.50125, 8.617917], - [-11.505417, 8.625416], - [-11.507916, 8.62625], - [-11.507917, 8.630416], - [-11.510416, 8.632084], - [-11.510416, 8.63375], - [-11.507083, 8.63875], - [-11.508801, 8.641612], - [-11.509215, 8.641347], - [-11.509583, 8.642083], - [-11.515416, 8.640417], - [-11.519583, 8.644583], - [-11.525416, 8.64375], - [-11.524583, 8.64875], - [-11.524583, 8.658749], - [-11.525417, 8.65875], - [-11.530416, 8.666249], - [-11.530417, 8.667916], - [-11.524583, 8.67125], - [-11.52625, 8.681249], - [-11.531232, 8.683385], - [-11.5322, 8.681399], - [-11.536099, 8.6763], - [-11.537399, 8.674], - [-11.5389, 8.668099], - [-11.541399, 8.663], - [-11.5427, 8.659799], - [-11.5448, 8.655399], - [-11.5455, 8.651899], - [-11.5455, 8.6393], - [-11.545899, 8.6351], - [-11.5465, 8.632999], - [-11.5484, 8.628499], - [-11.5499, 8.622699], - [-11.552199, 8.617299], - [-11.552699, 8.612699], - [-11.5526, 8.6011], - [-11.5535, 8.5958], - [-11.5573, 8.588299], - [-11.5603, 8.584699], - [-11.565699, 8.5794], - [-11.568099, 8.5768], - [-11.569099, 8.5735], - [-11.567999, 8.5709], - [-11.5652, 8.5676], - [-11.563999, 8.565699], - [-11.563399, 8.563499], - [-11.5632, 8.5601], - [-11.564299, 8.5567], - [-11.5665, 8.555299], - [-11.5712, 8.553899], - [-11.5741, 8.551899], - [-11.576999, 8.548299], - [-11.578, 8.544399], - [-11.578099, 8.5385], - [-11.578399, 8.535], - [-11.579299, 8.5324], - [-11.5809, 8.530099], - [-11.588399, 8.5227], - [-11.591, 8.519499], - [-11.5925, 8.516199], - [-11.592699, 8.513699], - [-11.5921, 8.5107], - [-11.592082, 8.510667] - ] - ], - "type": "Polygon" - }, - "id": 472, - "properties": { - "cc:admin:id": ["68"], - "cc:oBld:total": 56, - "cc:pop:fifteen-to-twenty-four": 797.5884425209092, - "cc:pop:grid3-total": 5733.774552926956, - "cc:pop:kontur-total": 4146.22042002228, - "cc:pop:men": 2057.372563351, - "cc:pop:sixty-plus": 276.4002709219813, - "cc:pop:total": 4373.297850970827, - "cc:pop:under-five": 704.512618176379, - "cc:pop:women": 2315.925287619828, - "cc:pop:women-fiften-to-forty-nine": 1132.4504864538364, - "cc:pop:wp-total": 5560.773507661512, - "cc:pop:wp-total-UN": 6442.939089272258, - "cc:id": "472", - "cc:Name": "Petifu Line MCHP", - "cc:site": [-11.5408, 8.6272], - "user:parentName": "Kunike", - "user:code": "OU_268175", - "user:orgUnitId": "byOPfWkK6M6", - "user:level": "4", - "user:parentId": "l0ccv2yzfF3" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.264199, 8.4319], - [-11.259499, 8.4357], - [-11.2538, 8.440799], - [-11.2511, 8.442599], - [-11.249099, 8.4433], - [-11.244099, 8.4446], - [-11.238399, 8.446899], - [-11.2344, 8.446999], - [-11.2319, 8.4463], - [-11.228299, 8.444299], - [-11.2207, 8.4407], - [-11.217899, 8.439999], - [-11.212899, 8.4398], - [-11.1933, 8.439899], - [-11.1861, 8.4398], - [-11.182099, 8.439399], - [-11.1756, 8.438], - [-11.173199, 8.439], - [-11.1672, 8.443499], - [-11.1657, 8.445299], - [-11.1649, 8.4493], - [-11.165099, 8.454699], - [-11.165999, 8.4592], - [-11.165399, 8.4624], - [-11.1652, 8.4663], - [-11.1653, 8.4693], - [-11.165999, 8.473099], - [-11.1683, 8.4774], - [-11.172199, 8.485799], - [-11.1738, 8.4916], - [-11.176099, 8.495999], - [-11.1775, 8.4992], - [-11.1797, 8.5035], - [-11.1804, 8.5063], - [-11.180799, 8.512999], - [-11.181599, 8.517199], - [-11.1839, 8.5231], - [-11.184499, 8.527099], - [-11.184615, 8.528878], - [-11.185326, 8.528397], - [-11.185835, 8.527533], - [-11.186476, 8.52678], - [-11.187082, 8.527084], - [-11.187083, 8.536249], - [-11.195417, 8.53125], - [-11.196532, 8.53125], - [-11.19727, 8.531787], - [-11.19737, 8.533202], - [-11.198033, 8.534889], - [-11.198151, 8.535062], - [-11.199583, 8.532916], - [-11.203749, 8.531249], - [-11.205417, 8.52875], - [-11.213749, 8.530416], - [-11.217916, 8.517917], - [-11.210268, 8.517221], - [-11.213534, 8.511564], - [-11.219142, 8.511564], - [-11.222917, 8.514583], - [-11.229688, 8.514584], - [-11.229871, 8.514268], - [-11.233295, 8.514267], - [-11.237916, 8.510416], - [-11.237917, 8.50875], - [-11.242082, 8.509583], - [-11.243749, 8.497084], - [-11.241249, 8.49125], - [-11.23875, 8.488749], - [-11.240417, 8.487084], - [-11.24375, 8.487083], - [-11.252082, 8.484583], - [-11.252083, 8.48125], - [-11.254582, 8.479583], - [-11.254583, 8.475417], - [-11.256848, 8.47485], - [-11.256952, 8.47467], - [-11.253047, 8.467905], - [-11.256595, 8.461758], - [-11.254583, 8.460416], - [-11.255416, 8.449584], - [-11.261249, 8.445417], - [-11.264199, 8.445416], - [-11.264199, 8.4319] - ] - ], - "type": "Polygon" - }, - "id": 473, - "properties": { - "cc:admin:id": ["101"], - "cc:oBld:total": 215, - "cc:pop:fifteen-to-twenty-four": 292.89079911594536, - "cc:pop:grid3-total": 1250.9918446637273, - "cc:pop:kontur-total": 1554.985619351974, - "cc:pop:men": 846.0751490347942, - "cc:pop:sixty-plus": 82.38995896602279, - "cc:pop:total": 1544.8122668770184, - "cc:pop:under-five": 232.45746083472008, - "cc:pop:women": 698.7371178422239, - "cc:pop:women-fiften-to-forty-nine": 370.5342336111131, - "cc:pop:wp-total": 1067.5652314182653, - "cc:pop:wp-total-UN": 1236.5463491682522, - "cc:id": "473", - "cc:Name": "Peya MCHP", - "cc:site": [-11.2143, 8.4967], - "user:parentName": "Nimiyama", - "user:code": "OU_233334", - "user:orgUnitId": "zQ2pFkzGtIg", - "user:level": "4", - "user:parentId": "qgQ49DH9a0v" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.087699, 8.7336], - [-11.0839, 8.7285], - [-11.082948, 8.726733], - [-11.072917, 8.724583], - [-11.072083, 8.723749], - [-11.072916, 8.722083], - [-11.060417, 8.722082], - [-11.058749, 8.720417], - [-11.055417, 8.719582], - [-11.053749, 8.717083], - [-11.049582, 8.718749], - [-11.042083, 8.71875], - [-11.042082, 8.722916], - [-11.03375, 8.722916], - [-11.032916, 8.72125], - [-11.029583, 8.722916], - [-11.029582, 8.724582], - [-11.028237, 8.725481], - [-11.029551, 8.726742], - [-11.031591, 8.726968], - [-11.0337, 8.728259], - [-11.032082, 8.730416], - [-11.02875, 8.730416], - [-11.02625, 8.727082], - [-11.026249, 8.726249], - [-11.025417, 8.723749], - [-11.025416, 8.71875], - [-11.023301, 8.718749], - [-11.023271, 8.718689], - [-11.023326, 8.717678], - [-11.023209, 8.717299], - [-11.023116, 8.717095], - [-11.02231, 8.716645], - [-11.022164, 8.716011], - [-11.021801, 8.715645], - [-11.021677, 8.714688], - [-11.021816, 8.713879], - [-11.021004, 8.713774], - [-11.020608, 8.712752], - [-11.020607, 8.712042], - [-11.020306, 8.711803], - [-11.020067, 8.711864], - [-11.019515, 8.711247], - [-11.019523, 8.711531], - [-11.019328, 8.711785], - [-11.019531, 8.712008], - [-11.019623, 8.711846], - [-11.020062, 8.712046], - [-11.019995, 8.712283], - [-11.019721, 8.712324], - [-11.020044, 8.712838], - [-11.020413, 8.712796], - [-11.020896, 8.713939], - [-11.021253, 8.713925], - [-11.021583, 8.714226], - [-11.021582, 8.715585], - [-11.021707, 8.715896], - [-11.02195, 8.716039], - [-11.022273, 8.716854], - [-11.022947, 8.717129], - [-11.023135, 8.717463], - [-11.022873, 8.71797], - [-11.022495, 8.717943], - [-11.022694, 8.718724], - [-11.023066, 8.718892], - [-11.023127, 8.719294], - [-11.023319, 8.719476], - [-11.022816, 8.720001], - [-11.022947, 8.720579], - [-11.022834, 8.720979], - [-11.023253, 8.721902], - [-11.023981, 8.722633], - [-11.024487, 8.722914], - [-11.02472, 8.723345], - [-11.024709, 8.723656], - [-11.02446, 8.723768], - [-11.024098, 8.724307], - [-11.024739, 8.724664], - [-11.024552, 8.725602], - [-11.02498, 8.7263], - [-11.025447, 8.726622], - [-11.025636, 8.727047], - [-11.025663, 8.729923], - [-11.026428, 8.730579], - [-11.026504, 8.73103], - [-11.026432, 8.73135], - [-11.026091, 8.731577], - [-11.026096, 8.731851], - [-11.026383, 8.732082], - [-11.024741, 8.732083], - [-11.025099, 8.732768], - [-11.025602, 8.734549], - [-11.023564, 8.734987], - [-11.022584, 8.735429], - [-11.021877, 8.736104], - [-11.018369, 8.738099], - [-11.017156, 8.739568], - [-11.017925, 8.740419], - [-11.018611, 8.742064], - [-11.019242, 8.743101], - [-11.019358, 8.743445], - [-11.015417, 8.745417], - [-11.01375, 8.747916], - [-11.012082, 8.747916], - [-11.007916, 8.747083], - [-11.00375, 8.747083], - [-11.002917, 8.750416], - [-11.004582, 8.754582], - [-11.005416, 8.755417], - [-11.005416, 8.758749], - [-11.004996, 8.76001], - [-11.007, 8.7608], - [-11.011299, 8.763199], - [-11.0145, 8.7646], - [-11.018799, 8.766999], - [-11.021999, 8.768399], - [-11.0256, 8.7704], - [-11.0281, 8.7711], - [-11.032199, 8.771399], - [-11.036999, 8.770699], - [-11.045699, 8.7662], - [-11.048799, 8.7635], - [-11.0509, 8.760599], - [-11.0532, 8.7562], - [-11.0556, 8.754], - [-11.0588, 8.752799], - [-11.0625, 8.7526], - [-11.0703, 8.752699], - [-11.074299, 8.751999], - [-11.076699, 8.7506], - [-11.0787, 8.748699], - [-11.081199, 8.7454], - [-11.0832, 8.741099], - [-11.087699, 8.7336] - ] - ], - "type": "Polygon" - }, - "id": 474, - "properties": { - "cc:admin:id": ["49"], - "cc:oBld:total": 561, - "cc:pop:fifteen-to-twenty-four": 715.4611261302163, - "cc:pop:grid3-total": 6564.450406226982, - "cc:pop:kontur-total": 3573.9682138865824, - "cc:pop:men": 2079.4443824674677, - "cc:pop:sixty-plus": 211.93184140679384, - "cc:pop:total": 3748.475305531509, - "cc:pop:under-five": 573.6359021409104, - "cc:pop:women": 1669.03092306404, - "cc:pop:women-fiften-to-forty-nine": 800.5318096604539, - "cc:pop:wp-total": 3333.89174498721, - "cc:pop:wp-total-UN": 3856.9118403784187, - "cc:id": "474", - "cc:Name": "Peyima CHP", - "cc:site": [-11.048, 8.758], - "user:parentName": "Kamara", - "user:code": "OU_233342", - "user:orgUnitId": "FGV6TAbL0eN", - "user:level": "4", - "user:parentId": "kvkDWg42lHR" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - [-12.960999, 7.917399], - [-12.960999, 7.916], - [-12.959899, 7.9129], - [-12.9585, 7.9118], - [-12.958435, 7.911647], - [-12.957311, 7.9102], - [-12.956872, 7.910311], - [-12.956681, 7.910094], - [-12.9562, 7.910346], - [-12.955736, 7.909459], - [-12.955017, 7.909768], - [-12.95525, 7.91033], - [-12.955356, 7.910843], - [-12.954048, 7.911699], - [-12.955088, 7.912663], - [-12.954583, 7.912917], - [-12.955416, 7.915416], - [-12.95375, 7.91625], - [-12.95375, 7.916799], - [-12.955099, 7.9171], - [-12.9557, 7.917899], - [-12.957399, 7.9174], - [-12.9576, 7.918199], - [-12.959299, 7.918699], - [-12.960999, 7.917399] - ] - ], - [ - [ - [-12.966499, 7.9138], - [-12.9649, 7.914], - [-12.9651, 7.915399], - [-12.966299, 7.915399], - [-12.966499, 7.9138] - ] - ], - [ - [ - [-12.995099, 7.909599], - [-12.994899, 7.9088], - [-12.9921, 7.908799], - [-12.991499, 7.9079], - [-12.9893, 7.9079], - [-12.988799, 7.909], - [-12.9871, 7.909899], - [-12.9846, 7.9093], - [-12.9843, 7.911299], - [-12.9854, 7.911799], - [-12.9879, 7.9118], - [-12.989599, 7.912399], - [-12.9899, 7.913199], - [-12.992399, 7.912399], - [-12.995099, 7.909599] - ] - ], - [ - [ - [-13.002099, 7.9076], - [-13.000999, 7.9068], - [-12.9993, 7.9076], - [-12.9996, 7.909299], - [-13.001799, 7.908799], - [-13.002099, 7.9076] - ] - ] - ], - "type": "MultiPolygon" - }, - "id": 475, - "properties": { - "cc:admin:id": ["51"], - "cc:oBld:total": 7, - "cc:pop:fifteen-to-twenty-four": 197.01737128996479, - "cc:pop:grid3-total": 5837.244944102339, - "cc:pop:kontur-total": 1519.6716339868553, - "cc:pop:men": 525.0989962732842, - "cc:pop:sixty-plus": 72.26805955085915, - "cc:pop:total": 1094.290465353861, - "cc:pop:under-five": 179.80219075824007, - "cc:pop:women": 569.1914690805768, - "cc:pop:women-fiften-to-forty-nine": 269.33568520166693, - "cc:pop:wp-total": 895.8655465609659, - "cc:pop:wp-total-UN": 1036.7823043368473, - "cc:id": "475", - "cc:Name": "Plantain Island MCHP", - "cc:site": [-12.9557, 7.9099], - "user:parentName": "Kargboro", - "user:code": "OU_247071", - "user:orgUnitId": "oV9P0VvL9Jh", - "user:level": "4", - "user:parentId": "Z9QaI6sxTwW" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.506344, 7.471718], - [-11.506199, 7.470099], - [-11.5047, 7.464199], - [-11.506099, 7.4583], - [-11.506399, 7.4545], - [-11.5062, 7.4497], - [-11.505399, 7.445999], - [-11.5032, 7.4407], - [-11.503174, 7.440417], - [-11.494583, 7.440417], - [-11.492083, 7.442084], - [-11.48875, 7.44625], - [-11.488749, 7.453712], - [-11.487046, 7.453713], - [-11.487083, 7.45375], - [-11.487082, 7.457083], - [-11.482917, 7.465416], - [-11.481249, 7.465416], - [-11.476249, 7.460417], - [-11.469583, 7.462084], - [-11.472916, 7.472083], - [-11.470417, 7.474583], - [-11.460417, 7.474583], - [-11.456249, 7.470417], - [-11.45125, 7.470417], - [-11.451249, 7.481249], - [-11.448749, 7.481249], - [-11.445416, 7.477084], - [-11.442382, 7.478905], - [-11.44267, 7.48008], - [-11.442669, 7.480081], - [-11.442083, 7.479887], - [-11.442082, 7.486249], - [-11.430417, 7.48625], - [-11.432083, 7.490417], - [-11.432916, 7.49875], - [-11.429583, 7.504583], - [-11.429846, 7.504815], - [-11.42638, 7.510819], - [-11.42004, 7.51082], - [-11.420417, 7.514583], - [-11.437082, 7.517083], - [-11.437083, 7.517962], - [-11.437886, 7.517781], - [-11.441956, 7.5157], - [-11.442628, 7.51559], - [-11.443972, 7.515638], - [-11.445416, 7.517084], - [-11.445417, 7.523749], - [-11.447083, 7.524584], - [-11.447917, 7.52625], - [-11.448436, 7.528852], - [-11.448316, 7.528915], - [-11.449108, 7.530893], - [-11.4523, 7.529599], - [-11.456499, 7.5291], - [-11.460699, 7.529199], - [-11.4662, 7.5299], - [-11.472099, 7.531899], - [-11.4749, 7.5325], - [-11.495099, 7.533999], - [-11.4935, 7.5303], - [-11.492699, 7.527399], - [-11.4923, 7.524699], - [-11.492899, 7.5204], - [-11.4951, 7.515999], - [-11.498899, 7.5077], - [-11.500299, 7.5018], - [-11.5023, 7.497299], - [-11.5031, 7.493999], - [-11.504, 7.490599], - [-11.506, 7.486199], - [-11.5066, 7.482599], - [-11.506699, 7.4757], - [-11.506344, 7.471718] - ] - ], - "type": "Polygon" - }, - "id": 476, - "properties": { - "cc:admin:id": ["5"], - "cc:oBld:total": 112, - "cc:pop:fifteen-to-twenty-four": 3267.397613277133, - "cc:pop:grid3-total": 12280.910662397751, - "cc:pop:kontur-total": 18387.831524414258, - "cc:pop:men": 8823.18017991077, - "cc:pop:sixty-plus": 1327.430079548435, - "cc:pop:total": 18120.9261668409, - "cc:pop:under-five": 3039.1156065953132, - "cc:pop:women": 9297.745986930138, - "cc:pop:women-fiften-to-forty-nine": 4426.535558603697, - "cc:pop:wp-total": 13681.201402475677, - "cc:pop:wp-total-UN": 15854.491417575171, - "cc:id": "476", - "cc:Name": "Potoru CHC", - "cc:site": [-11.4814, 7.5031], - "user:parentName": "Barri", - "user:code": "OU_260435", - "user:orgUnitId": "k6lOze3vTzP", - "user:level": "4", - "user:parentId": "RzKeCma9qb1" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.221404, 8.484896], - [-13.219985, 8.484181], - [-13.219537, 8.484027], - [-13.218903, 8.483873], - [-13.21879, 8.484246], - [-13.218714, 8.484562], - [-13.218263, 8.484447], - [-13.218335, 8.484248], - [-13.217782, 8.483874], - [-13.217229, 8.483382], - [-13.217759, 8.482201], - [-13.218232, 8.481565], - [-13.217505, 8.480976], - [-13.217041, 8.481344], - [-13.216069, 8.481595], - [-13.215714, 8.481842], - [-13.214929, 8.481452], - [-13.214394, 8.479956], - [-13.213946, 8.480075], - [-13.212185, 8.481068], - [-13.212778, 8.483062], - [-13.212764, 8.48318], - [-13.212738, 8.483196], - [-13.212571, 8.48315], - [-13.212214, 8.483066], - [-13.211909, 8.483762], - [-13.211669, 8.484207], - [-13.211751, 8.484907], - [-13.212366, 8.48503], - [-13.212596, 8.484424], - [-13.214274, 8.485268], - [-13.214262, 8.485305], - [-13.213881, 8.486181], - [-13.214199, 8.486365], - [-13.21452, 8.486578], - [-13.214116, 8.488102], - [-13.21448, 8.488179], - [-13.214869, 8.488263], - [-13.215067, 8.488289], - [-13.215192, 8.487706], - [-13.216297, 8.4879], - [-13.216954, 8.488086], - [-13.217079, 8.487751], - [-13.217508, 8.487872], - [-13.218053, 8.488015], - [-13.218317, 8.487065], - [-13.219139, 8.487371], - [-13.219349, 8.486733], - [-13.219474, 8.486334], - [-13.219516, 8.486219], - [-13.219723, 8.485684], - [-13.219767, 8.485699], - [-13.219965, 8.48513], - [-13.221115, 8.485637], - [-13.221269, 8.485249], - [-13.221404, 8.484896] - ] - ], - "type": "Polygon" - }, - "id": 477, - "properties": { - "cc:admin:id": ["26"], - "cc:oBld:total": 1154, - "cc:pop:fifteen-to-twenty-four": 2492.1289853870685, - "cc:pop:grid3-total": 21442.975148403362, - "cc:pop:kontur-total": 14495.23354943845, - "cc:pop:men": 5430.350077137636, - "cc:pop:sixty-plus": 845.0364167971059, - "cc:pop:total": 10852.911327262904, - "cc:pop:under-five": 1250.6706125918977, - "cc:pop:women": 5422.561250125267, - "cc:pop:women-fiften-to-forty-nine": 2908.0635521177596, - "cc:pop:wp-total": 11109.61063477981, - "cc:pop:wp-total-UN": 12879.607280836019, - "cc:id": "477", - "cc:Name": "Quarry MCHP", - "cc:site": [-13.2141, 8.4803], - "user:parentName": "Freetown", - "user:code": "OU_278365", - "user:orgUnitId": "xXYv82KlBUh", - "user:level": "4", - "user:parentId": "C9uduqDZr9d" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.261761, 8.489056], - [-13.261667, 8.488623], - [-13.261527, 8.488053], - [-13.261432, 8.487674], - [-13.26115, 8.486642], - [-13.261006, 8.486199], - [-13.260969, 8.486075], - [-13.260908, 8.485729], - [-13.260878, 8.485569], - [-13.260877, 8.485463], - [-13.26071, 8.485389], - [-13.259814, 8.484623], - [-13.259769, 8.484672], - [-13.259768, 8.484672], - [-13.259489, 8.484403], - [-13.259246, 8.484153], - [-13.258663, 8.483164], - [-13.257843, 8.483052], - [-13.257504, 8.483052], - [-13.256896, 8.483106], - [-13.256542, 8.483136], - [-13.256503, 8.481769], - [-13.255623, 8.481098], - [-13.255134, 8.48068], - [-13.25462, 8.480246], - [-13.254672, 8.48018], - [-13.25535, 8.479182], - [-13.255507, 8.478925], - [-13.255601, 8.477922], - [-13.255467, 8.477854], - [-13.255327, 8.477416], - [-13.254783, 8.477328], - [-13.25454, 8.477063], - [-13.254208, 8.477057], - [-13.254026, 8.477144], - [-13.253773, 8.477704], - [-13.253338, 8.477853], - [-13.25312, 8.477948], - [-13.253119, 8.477948], - [-13.252915, 8.477446], - [-13.252914, 8.477025], - [-13.252903, 8.476762], - [-13.253092, 8.47649], - [-13.254471, 8.474808], - [-13.253815, 8.474497], - [-13.253569, 8.474386], - [-13.253432, 8.474337], - [-13.252957, 8.474163], - [-13.252653, 8.474072], - [-13.251827, 8.475035], - [-13.25154, 8.475288], - [-13.251519, 8.475268], - [-13.250908, 8.474546], - [-13.25083, 8.474212], - [-13.250491, 8.473989], - [-13.250544, 8.473166], - [-13.250998, 8.47238], - [-13.251258, 8.471531], - [-13.250719, 8.471374], - [-13.250085, 8.471991], - [-13.249592, 8.472535], - [-13.249443, 8.472975], - [-13.249098, 8.473832], - [-13.248598, 8.474305], - [-13.24877, 8.474779], - [-13.249554, 8.475676], - [-13.24972, 8.475873], - [-13.249666, 8.475926], - [-13.249084, 8.476517], - [-13.248437, 8.47716], - [-13.248304, 8.477288], - [-13.248248, 8.477241], - [-13.246922, 8.475849], - [-13.24683, 8.475911], - [-13.246087, 8.476279], - [-13.244727, 8.475677], - [-13.244596, 8.476162], - [-13.244463, 8.476586], - [-13.244321, 8.476899], - [-13.244161, 8.477332], - [-13.243957, 8.477808], - [-13.243519, 8.478023], - [-13.243393, 8.478059], - [-13.242938, 8.47797], - [-13.24222, 8.476927], - [-13.241959, 8.476906], - [-13.241698, 8.477378], - [-13.242146, 8.477573], - [-13.242007, 8.478011], - [-13.240874, 8.477606], - [-13.240675, 8.478123], - [-13.241299, 8.478361], - [-13.24077, 8.478817], - [-13.241758, 8.479174], - [-13.242389, 8.479396], - [-13.242951, 8.47958], - [-13.243404, 8.479122], - [-13.243441, 8.479155], - [-13.243475, 8.47922], - [-13.243516, 8.47948], - [-13.243357, 8.480679], - [-13.24396, 8.480729], - [-13.243791, 8.482155], - [-13.244331, 8.482203], - [-13.244198, 8.483208], - [-13.244, 8.484028], - [-13.244259, 8.484312], - [-13.244255, 8.484318], - [-13.24458, 8.484687], - [-13.244695, 8.484752], - [-13.244975, 8.484718], - [-13.245124, 8.484687], - [-13.246077, 8.484521], - [-13.246035, 8.485669], - [-13.248957, 8.485841], - [-13.249332, 8.48625], - [-13.249442, 8.487041], - [-13.24932, 8.488025], - [-13.24943, 8.488026], - [-13.250036, 8.488035], - [-13.251184, 8.488035], - [-13.251831, 8.488063], - [-13.251866, 8.489656], - [-13.255699, 8.4848], - [-13.26041, 8.489546], - [-13.261761, 8.489056] - ] - ], - "type": "Polygon" - }, - "id": 478, - "properties": { - "cc:admin:id": ["26"], - "cc:oBld:total": 3827, - "cc:pop:fifteen-to-twenty-four": 9082.347986884466, - "cc:pop:grid3-total": 44600.10628821511, - "cc:pop:kontur-total": 52351.64306643681, - "cc:pop:men": 19787.83858657681, - "cc:pop:sixty-plus": 3080.7995563338422, - "cc:pop:total": 39548.66200854059, - "cc:pop:under-five": 4568.344485381313, - "cc:pop:women": 19760.82342196377, - "cc:pop:women-fiften-to-forty-nine": 10596.27506699947, - "cc:pop:wp-total": 39434.82100805834, - "cc:pop:wp-total-UN": 45713.612837047214, - "cc:id": "478", - "cc:Name": "Rina Clinic", - "cc:site": [-13.25, 8.48], - "user:parentName": "Freetown", - "user:code": "OU_278313", - "user:orgUnitId": "u6ZGNI8yUmt", - "user:level": "4", - "user:parentId": "C9uduqDZr9d" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.66697, 8.773012], - [-12.666299, 8.7707], - [-12.6644, 8.7681], - [-12.6605, 8.7647], - [-12.652799, 8.7613], - [-12.6506, 8.7614], - [-12.644799, 8.7641], - [-12.641999, 8.7662], - [-12.636199, 8.7719], - [-12.6336, 8.773699], - [-12.631, 8.774499], - [-12.628799, 8.774499], - [-12.6266, 8.7741], - [-12.6218, 8.7719], - [-12.616818, 8.770655], - [-12.616093, 8.771059], - [-12.615401, 8.771304], - [-12.614615, 8.772265], - [-12.61454, 8.773885], - [-12.613885, 8.774651], - [-12.613716, 8.775126], - [-12.612059, 8.776049], - [-12.61199, 8.776344], - [-12.611658, 8.776569], - [-12.611645, 8.776893], - [-12.611363, 8.777316], - [-12.610837, 8.777524], - [-12.610509, 8.778255], - [-12.609899, 8.778703], - [-12.609581, 8.779669], - [-12.608474, 8.779955], - [-12.608156, 8.780597], - [-12.607178, 8.780413], - [-12.606489, 8.780503], - [-12.606415, 8.781039], - [-12.605358, 8.781609], - [-12.605476, 8.782167], - [-12.605323, 8.782536], - [-12.6046, 8.782831], - [-12.604562, 8.782863], - [-12.604363, 8.782899], - [-12.604175, 8.782643], - [-12.60375, 8.782802], - [-12.603749, 8.788749], - [-12.599997, 8.78875], - [-12.60039, 8.789016], - [-12.600867, 8.789582], - [-12.597917, 8.789583], - [-12.597082, 8.79125], - [-12.591424, 8.793765], - [-12.591351, 8.793832], - [-12.590939, 8.794858], - [-12.590603, 8.795034], - [-12.589855, 8.794935], - [-12.589726, 8.794869], - [-12.592082, 8.799583], - [-12.592083, 8.801249], - [-12.593461, 8.805386], - [-12.59293, 8.805463], - [-12.589708, 8.806415], - [-12.590416, 8.812082], - [-12.585417, 8.814583], - [-12.58795, 8.818383], - [-12.588786, 8.818441], - [-12.586101, 8.82068], - [-12.586127, 8.820813], - [-12.586676, 8.821442], - [-12.587377, 8.821814], - [-12.588005, 8.822566], - [-12.582083, 8.82125], - [-12.578749, 8.824582], - [-12.577083, 8.823749], - [-12.576551, 8.821626], - [-12.575514, 8.822096], - [-12.574318, 8.823143], - [-12.573597, 8.823909], - [-12.572956, 8.824296], - [-12.572523, 8.824341], - [-12.56986, 8.824028], - [-12.56785, 8.824028], - [-12.566788, 8.823857], - [-12.564627, 8.824635], - [-12.563305, 8.825564], - [-12.560691, 8.827184], - [-12.559696, 8.828582], - [-12.558056, 8.830363], - [-12.557542, 8.830855], - [-12.556174, 8.832474], - [-12.555463, 8.83283], - [-12.554115, 8.833881], - [-12.552608, 8.835936], - [-12.551007, 8.83702], - [-12.550371, 8.837651], - [-12.547916, 8.834583], - [-12.542083, 8.834583], - [-12.535417, 8.839582], - [-12.53375, 8.839583], - [-12.53375, 8.840417], - [-12.536677, 8.8492], - [-12.536734, 8.849207], - [-12.53875, 8.854582], - [-12.542082, 8.855416], - [-12.542917, 8.855417], - [-12.544582, 8.860416], - [-12.545228, 8.86074], - [-12.545221, 8.860748], - [-12.543955, 8.861394], - [-12.543471, 8.861954], - [-12.542681, 8.862396], - [-12.540463, 8.86286], - [-12.538271, 8.865123], - [-12.537313, 8.865528], - [-12.535447, 8.867837], - [-12.533777, 8.870721], - [-12.533128, 8.871123], - [-12.533023, 8.871555], - [-12.533165, 8.874171], - [-12.533348, 8.874579], - [-12.533262, 8.875547], - [-12.532672, 8.876731], - [-12.532282, 8.877002], - [-12.531923, 8.877621], - [-12.531902, 8.87769], - [-12.526732, 8.876542], - [-12.5279, 8.8781], - [-12.5318, 8.8843], - [-12.534, 8.8868], - [-12.538499, 8.891499], - [-12.542299, 8.894999], - [-12.544999, 8.896899], - [-12.548899, 8.898899], - [-12.551599, 8.900799], - [-12.556999, 8.905899], - [-12.560399, 8.907999], - [-12.5638, 8.908599], - [-12.567, 8.907999], - [-12.571249, 8.906268], - [-12.57125, 8.898932], - [-12.570707, 8.89871], - [-12.571249, 8.897083], - [-12.569149, 8.89218], - [-12.569668, 8.891087], - [-12.582916, 8.888749], - [-12.582917, 8.882083], - [-12.584582, 8.87875], - [-12.581786, 8.873155], - [-12.583229, 8.87254], - [-12.586518, 8.869615], - [-12.587706, 8.86861], - [-12.589125, 8.865877], - [-12.594121, 8.860752], - [-12.594382, 8.85988], - [-12.595728, 8.857904], - [-12.596455, 8.857147], - [-12.59701, 8.855881], - [-12.594939, 8.853947], - [-12.593891, 8.852734], - [-12.593575, 8.852102], - [-12.593393, 8.850352], - [-12.593084, 8.849338], - [-12.593165, 8.84721], - [-12.593822, 8.846058], - [-12.593939, 8.845673], - [-12.599582, 8.847082], - [-12.601483, 8.847082], - [-12.601484, 8.847076], - [-12.602285, 8.845148], - [-12.603605, 8.842722], - [-12.604512, 8.841608], - [-12.605105, 8.840045], - [-12.605163, 8.839886], - [-12.605189, 8.839706], - [-12.604978, 8.837983], - [-12.604859, 8.836728], - [-12.605004, 8.835491], - [-12.605138, 8.83399], - [-12.60699, 8.83201], - [-12.607178, 8.83156], - [-12.611249, 8.832916], - [-12.612083, 8.834582], - [-12.613857, 8.834139], - [-12.613636, 8.833039], - [-12.613592, 8.830435], - [-12.612705, 8.828805], - [-12.611838, 8.828204], - [-12.612244, 8.827033], - [-12.612097, 8.826769], - [-12.610126, 8.826001], - [-12.609561, 8.825868], - [-12.60956, 8.825867], - [-12.612083, 8.822083], - [-12.617916, 8.822916], - [-12.61875, 8.818749], - [-12.623749, 8.813749], - [-12.626249, 8.80875], - [-12.635811, 8.814633], - [-12.636052, 8.812743], - [-12.638155, 8.80921], - [-12.638744, 8.80744], - [-12.638698, 8.806814], - [-12.638579, 8.806398], - [-12.638078, 8.805759], - [-12.638369, 8.805254], - [-12.638038, 8.804679], - [-12.638098, 8.804363], - [-12.638247, 8.803791], - [-12.638143, 8.803416], - [-12.638152, 8.803346], - [-12.638358, 8.802589], - [-12.637431, 8.801297], - [-12.637811, 8.800445], - [-12.638432, 8.796908], - [-12.639644, 8.79542], - [-12.640487, 8.795065], - [-12.640952, 8.794643], - [-12.642917, 8.797916], - [-12.645416, 8.798749], - [-12.648749, 8.795417], - [-12.650197, 8.79831], - [-12.652201, 8.796669], - [-12.65436, 8.795953], - [-12.654421, 8.794789], - [-12.654827, 8.793702], - [-12.654688, 8.792729], - [-12.654611, 8.791825], - [-12.654758, 8.791429], - [-12.654977, 8.790915], - [-12.661233, 8.789208], - [-12.6622, 8.787499], - [-12.6655, 8.783399], - [-12.666999, 8.7801], - [-12.667399, 8.7774], - [-12.6672, 8.7738], - [-12.66697, 8.773012] - ] - ], - "type": "Polygon" - }, - "id": 479, - "properties": { - "cc:admin:id": ["130"], - "cc:oBld:total": 78, - "cc:pop:fifteen-to-twenty-four": 1853.0111144492803, - "cc:pop:grid3-total": 8113.152635133347, - "cc:pop:kontur-total": 8555.955705053002, - "cc:pop:men": 4600.231253853768, - "cc:pop:sixty-plus": 637.0514260660005, - "cc:pop:total": 9920.304873540907, - "cc:pop:under-five": 1546.6207956471019, - "cc:pop:women": 5320.073619687138, - "cc:pop:women-fiften-to-forty-nine": 2550.951960207023, - "cc:pop:wp-total": 9548.146292083129, - "cc:pop:wp-total-UN": 11074.303900475488, - "cc:id": "479", - "cc:Name": "Robaka MCHP", - "cc:site": [-12.5957, 8.8175], - "user:parentName": "Tainkatopa Makama Safrokoh ", - "user:code": "OU_255062", - "user:orgUnitId": "ym42ZOlfZ1P", - "user:level": "4", - "user:parentId": "PrJQHI6q7w2" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.138504, 8.801396], - [-12.135585, 8.801135], - [-12.134877, 8.801228], - [-12.134478, 8.801542], - [-12.134125, 8.796975], - [-12.132672, 8.797355], - [-12.13257, 8.797468], - [-12.131221, 8.795131], - [-12.13013, 8.79513], - [-12.126469, 8.79147], - [-12.126303, 8.791545], - [-12.124476, 8.790936], - [-12.124476, 8.790934], - [-12.124856, 8.790725], - [-12.125209, 8.790805], - [-12.125962, 8.790501], - [-12.126805, 8.790539], - [-12.127268, 8.790217], - [-12.128228, 8.790195], - [-12.128415, 8.789675], - [-12.12839, 8.788321], - [-12.128533, 8.788003], - [-12.130838, 8.787293], - [-12.131104, 8.786962], - [-12.131179, 8.786527], - [-12.131673, 8.786102], - [-12.128376, 8.780391], - [-12.120563, 8.78039], - [-12.116658, 8.773626], - [-12.118028, 8.77125], - [-12.113749, 8.771249], - [-12.109583, 8.767917], - [-12.108749, 8.765417], - [-12.106249, 8.764582], - [-12.102917, 8.760417], - [-12.102916, 8.762083], - [-12.100416, 8.763749], - [-12.092083, 8.755417], - [-12.092082, 8.753979], - [-12.091751, 8.754147], - [-12.089209, 8.755043], - [-12.088878, 8.756505], - [-12.087916, 8.754583], - [-12.085417, 8.757916], - [-12.084583, 8.757916], - [-12.077082, 8.749583], - [-12.075417, 8.749583], - [-12.072917, 8.752082], - [-12.072082, 8.755417], - [-12.065417, 8.758749], - [-12.064583, 8.760416], - [-12.063916, 8.760417], - [-12.064222, 8.761292], - [-12.063627, 8.762606], - [-12.063686, 8.763264], - [-12.063187, 8.76438], - [-12.063092, 8.76531], - [-12.062566, 8.765814], - [-12.062317, 8.765619], - [-12.062178, 8.7655], - [-12.062394, 8.765238], - [-12.062818, 8.763814], - [-12.062831, 8.763107], - [-12.062876, 8.762752], - [-12.062609, 8.762565], - [-12.061765, 8.762301], - [-12.061159, 8.762475], - [-12.060537, 8.762327], - [-12.05957, 8.761276], - [-12.059679, 8.761226], - [-12.060395, 8.760903], - [-12.059958, 8.760706], - [-12.059953, 8.760301], - [-12.059692, 8.759903], - [-12.059008, 8.759771], - [-12.057643, 8.759875], - [-12.056523, 8.759327], - [-12.054684, 8.759054], - [-12.05489, 8.759446], - [-12.054964, 8.760808], - [-12.054842, 8.762761], - [-12.054521, 8.763459], - [-12.054927, 8.764109], - [-12.054248, 8.76397], - [-12.054243, 8.763953], - [-12.054183, 8.763955], - [-12.053349, 8.763784], - [-12.053326, 8.763823], - [-12.052774, 8.763665], - [-12.05249, 8.764194], - [-12.05185, 8.764246], - [-12.050761, 8.763764], - [-12.048917, 8.763631], - [-12.048307, 8.763357], - [-12.047423, 8.762413], - [-12.046016, 8.763656], - [-12.045035, 8.764679], - [-12.044662, 8.765702], - [-12.044481, 8.766645], - [-12.044261, 8.768124], - [-12.044265, 8.768474], - [-12.04471, 8.770075], - [-12.043755, 8.770423], - [-12.043746, 8.770421], - [-12.042916, 8.77125], - [-12.037803, 8.772528], - [-12.03777, 8.772524], - [-12.037077, 8.772004], - [-12.035802, 8.771761], - [-12.034583, 8.775416], - [-12.035205, 8.775831], - [-12.035341, 8.775865], - [-12.03585, 8.775713], - [-12.037571, 8.775846], - [-12.037084, 8.776255], - [-12.03684, 8.776854], - [-12.036924, 8.777179], - [-12.036538, 8.777609], - [-12.036513, 8.777928], - [-12.037015, 8.779075], - [-12.037353, 8.779114], - [-12.037707, 8.779888], - [-12.037716, 8.780369], - [-12.036784, 8.780444], - [-12.036858, 8.781419], - [-12.037625, 8.782135], - [-12.038424, 8.782576], - [-12.038758, 8.784006], - [-12.039386, 8.784272], - [-12.040576, 8.784467], - [-12.041443, 8.784204], - [-12.04326, 8.780458], - [-12.045016, 8.780797], - [-12.045683, 8.781107], - [-12.04582, 8.781577], - [-12.046053, 8.781887], - [-12.046956, 8.782514], - [-12.047188, 8.782423], - [-12.047744, 8.781367], - [-12.047997, 8.781376], - [-12.047998, 8.781378], - [-12.047425, 8.782726], - [-12.046031, 8.78253], - [-12.045661, 8.78407], - [-12.045104, 8.785053], - [-12.044832, 8.785062], - [-12.049581, 8.78625], - [-12.045417, 8.790416], - [-12.04375, 8.790417], - [-12.042083, 8.792083], - [-12.042083, 8.798749], - [-12.042917, 8.798749], - [-12.047083, 8.794583], - [-12.050416, 8.794583], - [-12.050416, 8.797082], - [-12.047917, 8.799583], - [-12.04875, 8.801249], - [-12.051249, 8.80125], - [-12.054582, 8.802916], - [-12.052083, 8.807082], - [-12.056249, 8.80625], - [-12.056982, 8.806249], - [-12.056893, 8.80588], - [-12.062082, 8.804582], - [-12.062917, 8.802917], - [-12.071249, 8.804582], - [-12.072082, 8.807083], - [-12.07168, 8.808692], - [-12.071678, 8.808692], - [-12.071651, 8.808578], - [-12.071602, 8.808528], - [-12.070417, 8.812082], - [-12.075214, 8.813453], - [-12.075721, 8.8131], - [-12.076676, 8.812211], - [-12.077742, 8.811844], - [-12.077742, 8.811078], - [-12.077888, 8.810724], - [-12.07778, 8.81007], - [-12.078104, 8.810051], - [-12.07831, 8.810529], - [-12.078668, 8.810366], - [-12.078893, 8.810511], - [-12.079157, 8.810424], - [-12.079182, 8.810955], - [-12.079546, 8.811216], - [-12.080036, 8.811319], - [-12.080923, 8.81224], - [-12.082917, 8.809583], - [-12.088634, 8.809582], - [-12.089573, 8.808996], - [-12.089813, 8.808291], - [-12.090373, 8.808245], - [-12.090434, 8.808198], - [-12.093749, 8.808749], - [-12.095417, 8.807917], - [-12.100416, 8.810417], - [-12.102275, 8.812895], - [-12.102236, 8.81251], - [-12.102575, 8.812354], - [-12.102258, 8.812107], - [-12.102268, 8.812083], - [-12.102917, 8.812082], - [-12.107082, 8.809583], - [-12.107917, 8.816249], - [-12.112083, 8.814583], - [-12.114583, 8.820416], - [-12.115821, 8.820003], - [-12.115806, 8.819805], - [-12.11625, 8.819582], - [-12.125076, 8.818847], - [-12.128599, 8.8151], - [-12.130599, 8.8124], - [-12.132499, 8.8085], - [-12.133799, 8.8065], - [-12.138504, 8.801396] - ] - ], - "type": "Polygon" - }, - "id": 480, - "properties": { - "cc:admin:id": ["8"], - "cc:oBld:total": 509, - "cc:pop:fifteen-to-twenty-four": 734.4473881319799, - "cc:pop:grid3-total": 4374.98853407482, - "cc:pop:kontur-total": 4132.325606044109, - "cc:pop:men": 1939.7767371127875, - "cc:pop:sixty-plus": 238.04838471080254, - "cc:pop:total": 4087.1249627146944, - "cc:pop:under-five": 668.1761804351105, - "cc:pop:women": 2147.348225601908, - "cc:pop:women-fiften-to-forty-nine": 1021.2673721943905, - "cc:pop:wp-total": 2265.6957389685613, - "cc:pop:wp-total-UN": 2608.1831728506204, - "cc:id": "480", - "cc:Name": "Robat MCHP", - "cc:site": [-12.0607, 8.7916], - "user:parentName": "Bombali Sebora", - "user:code": "OU_193207", - "user:orgUnitId": "gP6hn503KUX", - "user:level": "4", - "user:parentId": "KKkLOTpMXGV" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.378754, 8.659586], - [-12.378799, 8.659399], - [-12.378699, 8.655099], - [-12.377999, 8.6523], - [-12.376399, 8.649799], - [-12.374299, 8.647799], - [-12.367899, 8.644099], - [-12.361499, 8.639799], - [-12.3473, 8.6358], - [-12.343, 8.6354], - [-12.337299, 8.6359], - [-12.330399, 8.637499], - [-12.3264, 8.6371], - [-12.3235, 8.6353], - [-12.322807, 8.634384], - [-12.31919, 8.640647], - [-12.313205, 8.640648], - [-12.317083, 8.643749], - [-12.322801, 8.64375], - [-12.320674, 8.647435], - [-12.32458, 8.654201], - [-12.323809, 8.655535], - [-12.322917, 8.65625], - [-12.322083, 8.662916], - [-12.32125, 8.665416], - [-12.32125, 8.666249], - [-12.323749, 8.667916], - [-12.324527, 8.669858], - [-12.324945, 8.669305], - [-12.325025, 8.669029], - [-12.324675, 8.668913], - [-12.325076, 8.668263], - [-12.324877, 8.668024], - [-12.325233, 8.667266], - [-12.325528, 8.666994], - [-12.325814, 8.667315], - [-12.325848, 8.667735], - [-12.326145, 8.667875], - [-12.326561, 8.668405], - [-12.326519, 8.668921], - [-12.326487, 8.668937], - [-12.326734, 8.669231], - [-12.326832, 8.669297], - [-12.326692, 8.669532], - [-12.326589, 8.669814], - [-12.3264, 8.67035], - [-12.326146, 8.670562], - [-12.326074, 8.670741], - [-12.325749, 8.670966], - [-12.326521, 8.671504], - [-12.326227, 8.671949], - [-12.326675, 8.671987], - [-12.326728, 8.672282], - [-12.325944, 8.672375], - [-12.325861, 8.672527], - [-12.329583, 8.676249], - [-12.337984, 8.677778], - [-12.337851, 8.678791], - [-12.33861, 8.679261], - [-12.339229, 8.680446], - [-12.339554, 8.681583], - [-12.339583, 8.68163], - [-12.339583, 8.687916], - [-12.342083, 8.68875], - [-12.345029, 8.696114], - [-12.3463, 8.695299], - [-12.351599, 8.6929], - [-12.355399, 8.6918], - [-12.365699, 8.691], - [-12.369899, 8.6903], - [-12.373099, 8.688199], - [-12.375199, 8.684899], - [-12.375899, 8.6821], - [-12.376599, 8.6683], - [-12.378754, 8.659586] - ] - ], - "type": "Polygon" - }, - "id": 481, - "properties": { - "cc:admin:id": ["85"], - "cc:oBld:total": 9, - "cc:pop:fifteen-to-twenty-four": 213.79214290490586, - "cc:pop:grid3-total": 692.4419272751511, - "cc:pop:kontur-total": 1277.7873479642494, - "cc:pop:men": 525.0468685507992, - "cc:pop:sixty-plus": 71.9339065096437, - "cc:pop:total": 1129.8752792105577, - "cc:pop:under-five": 183.8204956258534, - "cc:pop:women": 604.8284106597586, - "cc:pop:women-fiften-to-forty-nine": 298.707084742063, - "cc:pop:wp-total": 908.5676823029328, - "cc:pop:wp-total-UN": 1050.2890722469792, - "cc:id": "481", - "cc:Name": "Robina MCHP", - "cc:site": [-12.3586, 8.6429], - "user:parentName": "Malal Mara", - "user:code": "OU_268187", - "user:orgUnitId": "fHqBRE3LTiQ", - "user:level": "4", - "user:parentId": "EVkm2xYcf6Z" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.262917, 8.355416], - [-12.262916, 8.352395], - [-12.260599, 8.352499], - [-12.254699, 8.352199], - [-12.2504, 8.3516], - [-12.2467, 8.3502], - [-12.241399, 8.347499], - [-12.232099, 8.341299], - [-12.2257, 8.3379], - [-12.219199, 8.334999], - [-12.215099, 8.333999], - [-12.204599, 8.333099], - [-12.200299, 8.332199], - [-12.194499, 8.3299], - [-12.176499, 8.329899], - [-12.1692, 8.3293], - [-12.165099, 8.327999], - [-12.1578, 8.3238], - [-12.1514, 8.3213], - [-12.148999, 8.319699], - [-12.145799, 8.316799], - [-12.144099, 8.314499], - [-12.140699, 8.309299], - [-12.135599, 8.302599], - [-12.1322, 8.2973], - [-12.1294, 8.2941], - [-12.1262, 8.2914], - [-12.1225, 8.2896], - [-12.122142, 8.289524], - [-12.114583, 8.297084], - [-12.114582, 8.299583], - [-12.10875, 8.299584], - [-12.111249, 8.302084], - [-12.11125, 8.305416], - [-12.113749, 8.309583], - [-12.107917, 8.312917], - [-12.107917, 8.316707], - [-12.10831, 8.316838], - [-12.108595, 8.317734], - [-12.109479, 8.318666], - [-12.110675, 8.320395], - [-12.110693, 8.320443], - [-12.110881, 8.320746], - [-12.111371, 8.321128], - [-12.107083, 8.325417], - [-12.109583, 8.327916], - [-12.111249, 8.327917], - [-12.111249, 8.329583], - [-12.110416, 8.330417], - [-12.107083, 8.33125], - [-12.10625, 8.335416], - [-12.105218, 8.336447], - [-12.107965, 8.337938], - [-12.110409, 8.338938], - [-12.111801, 8.339064], - [-12.113675, 8.339656], - [-12.112916, 8.340417], - [-12.107083, 8.34375], - [-12.107917, 8.346249], - [-12.109582, 8.34625], - [-12.110417, 8.349583], - [-12.113749, 8.352916], - [-12.112917, 8.35375], - [-12.11375, 8.355416], - [-12.114582, 8.35625], - [-12.114583, 8.358749], - [-12.112083, 8.36125], - [-12.111249, 8.365416], - [-12.102917, 8.365417], - [-12.105417, 8.371249], - [-12.110416, 8.372084], - [-12.110417, 8.373749], - [-12.112916, 8.374584], - [-12.117081, 8.377916], - [-12.117081, 8.377917], - [-12.112083, 8.379584], - [-12.112083, 8.380416], - [-12.117082, 8.382916], - [-12.117916, 8.384583], - [-12.117082, 8.38625], - [-12.11625, 8.390416], - [-12.120929, 8.392422], - [-12.121426, 8.391354], - [-12.12226, 8.390594], - [-12.123749, 8.392084], - [-12.12375, 8.398749], - [-12.126249, 8.400417], - [-12.12625, 8.407083], - [-12.130416, 8.408749], - [-12.131249, 8.409583], - [-12.132083, 8.414583], - [-12.136249, 8.419584], - [-12.136249, 8.422084], - [-12.132981, 8.42617], - [-12.134467, 8.428742], - [-12.142278, 8.428743], - [-12.146132, 8.435416], - [-12.147916, 8.435417], - [-12.15125, 8.437083], - [-12.154583, 8.43625], - [-12.158749, 8.437083], - [-12.16125, 8.441249], - [-12.16625, 8.43875], - [-12.168749, 8.438749], - [-12.169583, 8.437084], - [-12.177916, 8.437083], - [-12.17988, 8.434465], - [-12.180216, 8.434706], - [-12.180191, 8.435236], - [-12.185416, 8.434583], - [-12.187082, 8.43375], - [-12.187082, 8.431249], - [-12.18644, 8.427392], - [-12.186441, 8.427391], - [-12.191205, 8.428662], - [-12.194132, 8.429961], - [-12.196419, 8.43024], - [-12.196519, 8.429776], - [-12.197944, 8.427104], - [-12.204582, 8.432083], - [-12.204583, 8.424584], - [-12.205417, 8.423749], - [-12.208749, 8.422083], - [-12.207278, 8.41865], - [-12.20728, 8.418649], - [-12.207896, 8.419163], - [-12.208001, 8.419283], - [-12.209582, 8.41375], - [-12.212916, 8.412916], - [-12.215107, 8.406345], - [-12.219207, 8.403966], - [-12.223432, 8.401649], - [-12.222917, 8.399583], - [-12.226249, 8.39625], - [-12.227916, 8.396249], - [-12.225417, 8.392917], - [-12.225416, 8.390417], - [-12.222917, 8.38625], - [-12.225416, 8.382917], - [-12.227916, 8.382083], - [-12.23125, 8.37875], - [-12.237242, 8.37875], - [-12.238619, 8.381133], - [-12.242799, 8.381134], - [-12.243749, 8.382083], - [-12.245416, 8.377084], - [-12.245682, 8.376862], - [-12.245501, 8.376748], - [-12.245179, 8.376795], - [-12.244788, 8.376589], - [-12.244306, 8.375867], - [-12.244519, 8.375515], - [-12.244616, 8.375357], - [-12.244306, 8.374847], - [-12.244889, 8.374417], - [-12.244938, 8.374211], - [-12.244107, 8.373351], - [-12.243623, 8.372364], - [-12.242696, 8.371738], - [-12.243092, 8.370905], - [-12.243382, 8.370486], - [-12.243226, 8.370366], - [-12.242081, 8.368382], - [-12.244845, 8.363594], - [-12.246249, 8.363749], - [-12.247917, 8.355416], - [-12.249583, 8.35375], - [-12.251249, 8.35375], - [-12.262917, 8.355416] - ] - ], - "type": "Polygon" - }, - "id": 482, - "properties": { - "cc:admin:id": ["149"], - "cc:oBld:total": 32, - "cc:pop:fifteen-to-twenty-four": 2234.8107903858263, - "cc:pop:grid3-total": 11619.788041903308, - "cc:pop:kontur-total": 11965.46221307029, - "cc:pop:men": 5560.688254314664, - "cc:pop:sixty-plus": 760.8370629715903, - "cc:pop:total": 11998.596355390664, - "cc:pop:under-five": 1927.5135666635947, - "cc:pop:women": 6437.908101075998, - "cc:pop:women-fiften-to-forty-nine": 3168.2108580040094, - "cc:pop:wp-total": 13010.304929389145, - "cc:pop:wp-total-UN": 15099.185826789195, - "cc:id": "482", - "cc:Name": "Rochem Kamandao CHP", - "cc:site": [-12.1813, 8.3968], - "user:parentName": "Yoni", - "user:code": "OU_268240", - "user:orgUnitId": "PHo0IV7Vk50", - "user:level": "4", - "user:parentId": "NNE0YMCDZkO" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.345028, 8.696114], - [-12.342082, 8.68875], - [-12.339583, 8.687916], - [-12.339582, 8.681631], - [-12.339554, 8.681583], - [-12.339229, 8.680446], - [-12.33861, 8.679261], - [-12.337851, 8.678791], - [-12.337984, 8.677778], - [-12.329582, 8.676249], - [-12.325861, 8.672528], - [-12.325944, 8.672374], - [-12.326728, 8.672282], - [-12.326675, 8.671987], - [-12.326227, 8.671949], - [-12.326521, 8.671505], - [-12.325749, 8.670966], - [-12.326074, 8.67074], - [-12.326146, 8.670561], - [-12.326399, 8.67035], - [-12.326589, 8.669814], - [-12.326692, 8.669532], - [-12.326832, 8.669297], - [-12.326734, 8.669231], - [-12.326487, 8.668937], - [-12.326519, 8.668921], - [-12.326561, 8.668406], - [-12.326145, 8.667875], - [-12.325848, 8.667735], - [-12.325814, 8.667315], - [-12.325528, 8.666994], - [-12.325233, 8.667266], - [-12.324877, 8.668024], - [-12.325076, 8.668263], - [-12.324675, 8.668913], - [-12.325025, 8.669029], - [-12.324945, 8.669305], - [-12.324526, 8.669857], - [-12.323749, 8.667917], - [-12.32125, 8.666249], - [-12.32125, 8.665416], - [-12.322083, 8.662916], - [-12.322916, 8.65625], - [-12.323809, 8.655534], - [-12.32458, 8.6542], - [-12.320674, 8.647435], - [-12.322801, 8.64375], - [-12.317083, 8.643749], - [-12.313207, 8.640648], - [-12.319189, 8.640647], - [-12.322806, 8.634384], - [-12.3207, 8.631599], - [-12.3201, 8.6288], - [-12.320637, 8.624012], - [-12.315417, 8.626249], - [-12.312917, 8.627917], - [-12.311251, 8.632911], - [-12.31125, 8.63291], - [-12.311249, 8.63125], - [-12.308749, 8.62875], - [-12.302917, 8.627917], - [-12.301249, 8.629584], - [-12.29375, 8.632083], - [-12.29125, 8.632083], - [-12.290417, 8.627916], - [-12.29125, 8.626249], - [-12.298749, 8.619583], - [-12.297917, 8.617917], - [-12.29375, 8.61625], - [-12.290748, 8.61565], - [-12.290791, 8.615417], - [-12.287082, 8.615416], - [-12.284582, 8.612084], - [-12.282083, 8.611249], - [-12.282082, 8.606271], - [-12.279334, 8.60659], - [-12.278775, 8.606532], - [-12.277719, 8.605269], - [-12.275922, 8.60473], - [-12.275327, 8.604275], - [-12.273835, 8.600752], - [-12.273278, 8.599587], - [-12.273265, 8.599109], - [-12.265417, 8.60125], - [-12.266068, 8.609081], - [-12.26132, 8.609081], - [-12.257413, 8.602316], - [-12.253808, 8.602316], - [-12.253699, 8.6029], - [-12.2533, 8.607699], - [-12.2524, 8.610599], - [-12.249799, 8.613499], - [-12.247499, 8.6145], - [-12.242499, 8.6157], - [-12.238, 8.617799], - [-12.234299, 8.618499], - [-12.2307, 8.618399], - [-12.228099, 8.616799], - [-12.2271, 8.613999], - [-12.227, 8.6076], - [-12.226399, 8.6044], - [-12.224799, 8.6019], - [-12.222299, 8.6002], - [-12.218999, 8.5996], - [-12.215099, 8.5998], - [-12.2123, 8.600499], - [-12.2078, 8.602599], - [-12.2051, 8.603299], - [-12.2011, 8.603399], - [-12.197399, 8.602599], - [-12.192899, 8.600499], - [-12.1877, 8.5996], - [-12.1852, 8.5998], - [-12.183, 8.6009], - [-12.181599, 8.6027], - [-12.179399, 8.6068], - [-12.177599, 8.613799], - [-12.175499, 8.616599], - [-12.172399, 8.618099], - [-12.1648, 8.619099], - [-12.162199, 8.6201], - [-12.159899, 8.6218], - [-12.155799, 8.6259], - [-12.1529, 8.629799], - [-12.1518, 8.632399], - [-12.1505, 8.637999], - [-12.154599, 8.642899], - [-12.157099, 8.646699], - [-12.160899, 8.655299], - [-12.164799, 8.662699], - [-12.17, 8.6698], - [-12.1764, 8.6802], - [-12.180099, 8.688799], - [-12.1827, 8.6942], - [-12.189499, 8.712199], - [-12.1901, 8.716699], - [-12.202899, 8.717099], - [-12.210399, 8.7167], - [-12.2147, 8.715699], - [-12.2277, 8.7104], - [-12.232199, 8.7108], - [-12.234699, 8.7126], - [-12.2362, 8.7155], - [-12.2374, 8.7204], - [-12.2379, 8.729999], - [-12.239099, 8.732899], - [-12.2422, 8.734799], - [-12.245699, 8.734299], - [-12.248999, 8.731899], - [-12.252599, 8.7245], - [-12.2563, 8.7173], - [-12.259299, 8.7147], - [-12.2627, 8.7144], - [-12.2648, 8.7155], - [-12.266599, 8.718799], - [-12.266799, 8.7232], - [-12.264699, 8.727399], - [-12.2602, 8.7319], - [-12.2566, 8.739399], - [-12.2598, 8.741799], - [-12.264199, 8.741499], - [-12.2678, 8.7394], - [-12.272099, 8.7401], - [-12.275499, 8.741899], - [-12.2775, 8.7452], - [-12.2798, 8.7525], - [-12.282, 8.755899], - [-12.2846, 8.757399], - [-12.288, 8.757899], - [-12.293599, 8.7565], - [-12.296699, 8.7547], - [-12.299, 8.751999], - [-12.302999, 8.7447], - [-12.309799, 8.7298], - [-12.310899, 8.7256], - [-12.310999, 8.722699], - [-12.3094, 8.7159], - [-12.3088, 8.712299], - [-12.3093, 8.7092], - [-12.311299, 8.7068], - [-12.315999, 8.7059], - [-12.319699, 8.7067], - [-12.3231, 8.7089], - [-12.3279, 8.713099], - [-12.332099, 8.7101], - [-12.334699, 8.7077], - [-12.339999, 8.6998], - [-12.3424, 8.697799], - [-12.345028, 8.696114] - ] - ], - "type": "Polygon" - }, - "id": 483, - "properties": { - "cc:admin:id": ["85"], - "cc:oBld:total": 446, - "cc:pop:fifteen-to-twenty-four": 3618.1335411236164, - "cc:pop:grid3-total": 22374.71630935664, - "cc:pop:kontur-total": 18862.78483105288, - "cc:pop:men": 8896.575737408188, - "cc:pop:sixty-plus": 1214.800664494208, - "cc:pop:total": 19197.667687126188, - "cc:pop:under-five": 3092.900070735711, - "cc:pop:women": 10301.091949717991, - "cc:pop:women-fiften-to-forty-nine": 5070.18464558723, - "cc:pop:wp-total": 16530.90360997284, - "cc:pop:wp-total-UN": 19155.367099205298, - "cc:id": "483", - "cc:Name": "Rochen Malal MCHP", - "cc:site": [-12.2855, 8.6612], - "user:parentName": "Malal Mara", - "user:code": "OU_268190", - "user:orgUnitId": "X9zzzyPZViR", - "user:level": "4", - "user:parentId": "EVkm2xYcf6Z" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.83909, 8.370601], - [-12.839489, 8.368799], - [-12.839404, 8.366185], - [-12.838357, 8.362869], - [-12.836816, 8.361057], - [-12.836699, 8.358738], - [-12.836128, 8.358058], - [-12.832289, 8.35744], - [-12.830091, 8.357378], - [-12.828512, 8.356836], - [-12.827584, 8.357193], - [-12.82709, 8.356393], - [-12.826199, 8.3571], - [-12.8174, 8.3606], - [-12.8152, 8.3634], - [-12.8147, 8.3672], - [-12.8153, 8.3725], - [-12.817099, 8.378], - [-12.816699, 8.381999], - [-12.814099, 8.3859], - [-12.8092, 8.388499], - [-12.8037, 8.388299], - [-12.791799, 8.382899], - [-12.781699, 8.379499], - [-12.7777, 8.3786], - [-12.774751, 8.378152], - [-12.776253, 8.379283], - [-12.777335, 8.379378], - [-12.779052, 8.379252], - [-12.780134, 8.379601], - [-12.780484, 8.380937], - [-12.780517, 8.381015], - [-12.772083, 8.387916], - [-12.774551, 8.389816], - [-12.7718, 8.394583], - [-12.775386, 8.400796], - [-12.765417, 8.40125], - [-12.770073, 8.410563], - [-12.769058, 8.410406], - [-12.767192, 8.410829], - [-12.764049, 8.410829], - [-12.760143, 8.417594], - [-12.760826, 8.41878], - [-12.757082, 8.417917], - [-12.756249, 8.41875], - [-12.755416, 8.424583], - [-12.749583, 8.428749], - [-12.75375, 8.430417], - [-12.763749, 8.436249], - [-12.76125, 8.441249], - [-12.768196, 8.44125], - [-12.768619, 8.441982], - [-12.764713, 8.448749], - [-12.767866, 8.454209], - [-12.770416, 8.45625], - [-12.769582, 8.457917], - [-12.767083, 8.46125], - [-12.766874, 8.462504], - [-12.772635, 8.462505], - [-12.774799, 8.466249], - [-12.782893, 8.466249], - [-12.782956, 8.465717], - [-12.785416, 8.463749], - [-12.784583, 8.45375], - [-12.789582, 8.45125], - [-12.79375, 8.453749], - [-12.802082, 8.455417], - [-12.802917, 8.462916], - [-12.808749, 8.462083], - [-12.812082, 8.457083], - [-12.812083, 8.455417], - [-12.816249, 8.454583], - [-12.816249, 8.452916], - [-12.815417, 8.44875], - [-12.816249, 8.44625], - [-12.822082, 8.447916], - [-12.82125, 8.43875], - [-12.823749, 8.436249], - [-12.82375, 8.434583], - [-12.825416, 8.433749], - [-12.825416, 8.430417], - [-12.823749, 8.429583], - [-12.822082, 8.422917], - [-12.820956, 8.421226], - [-12.82088, 8.421252], - [-12.817916, 8.414584], - [-12.814583, 8.412917], - [-12.812493, 8.414484], - [-12.812492, 8.414483], - [-12.812026, 8.413521], - [-12.811839, 8.412888], - [-12.812208, 8.410792], - [-12.81212, 8.40919], - [-12.812109, 8.409154], - [-12.81162, 8.407849], - [-12.81174, 8.406408], - [-12.812348, 8.404868], - [-12.814816, 8.400821], - [-12.816446, 8.400771], - [-12.817134, 8.401253], - [-12.818457, 8.401381], - [-12.819348, 8.400668], - [-12.818991, 8.39965], - [-12.816604, 8.397536], - [-12.816498, 8.397181], - [-12.817745, 8.396391], - [-12.819323, 8.395017], - [-12.820189, 8.394635], - [-12.822473, 8.395241], - [-12.822508, 8.395249], - [-12.822709, 8.394164], - [-12.828378, 8.395926], - [-12.829363, 8.395926], - [-12.829872, 8.395289], - [-12.829522, 8.394048], - [-12.828378, 8.392554], - [-12.827358, 8.391566], - [-12.826849, 8.390611], - [-12.826436, 8.38918], - [-12.826085, 8.387461], - [-12.826054, 8.38568], - [-12.826626, 8.380652], - [-12.826149, 8.379378], - [-12.824303, 8.37696], - [-12.824113, 8.375783], - [-12.824368, 8.374478], - [-12.825291, 8.373778], - [-12.826594, 8.373619], - [-12.828313, 8.373174], - [-12.829777, 8.372951], - [-12.831559, 8.372919], - [-12.832959, 8.372919], - [-12.83436, 8.373333], - [-12.835856, 8.373396], - [-12.837001, 8.373045], - [-12.838337, 8.372696], - [-12.838749, 8.372451], - [-12.83875, 8.370685], - [-12.83909, 8.370601] - ] - ], - "type": "Polygon" - }, - "id": 484, - "properties": { - "cc:admin:id": ["62"], - "cc:oBld:total": 180, - "cc:pop:fifteen-to-twenty-four": 400.6189218034176, - "cc:pop:grid3-total": 1590.786082087077, - "cc:pop:kontur-total": 2594.187863649278, - "cc:pop:men": 1051.0882152971672, - "cc:pop:sixty-plus": 136.98182227641425, - "cc:pop:total": 2247.593094934392, - "cc:pop:under-five": 373.5988491557321, - "cc:pop:women": 1196.5048796372246, - "cc:pop:women-fiften-to-forty-nine": 604.2593165483975, - "cc:pop:wp-total": 1890.5586275037122, - "cc:pop:wp-total-UN": 2192.352973847482, - "cc:id": "484", - "cc:Name": "Rofoindu CHP", - "cc:site": [-12.7852, 8.4431], - "user:parentName": "Koya", - "user:code": "OU_254970", - "user:orgUnitId": "jSPLEMDwXN4", - "user:level": "4", - "user:parentId": "pRHGAROvuyI" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.668099, 8.8603], - [-12.665399, 8.858299], - [-12.659999, 8.855399], - [-12.657099, 8.853099], - [-12.6544, 8.85], - [-12.65, 8.8418], - [-12.648999, 8.836999], - [-12.6489, 8.8333], - [-12.649199, 8.8297], - [-12.649999, 8.8263], - [-12.651999, 8.8227], - [-12.6533, 8.819599], - [-12.655699, 8.8153], - [-12.6571, 8.812099], - [-12.659499, 8.8079], - [-12.6608, 8.804699], - [-12.662499, 8.801199], - [-12.662799, 8.798], - [-12.6609, 8.793099], - [-12.6609, 8.7898], - [-12.661233, 8.789209], - [-12.654978, 8.790915], - [-12.654758, 8.791429], - [-12.654611, 8.791825], - [-12.654688, 8.792729], - [-12.654827, 8.793702], - [-12.654421, 8.794789], - [-12.65436, 8.795953], - [-12.652201, 8.796669], - [-12.650197, 8.79831], - [-12.648749, 8.795417], - [-12.645416, 8.798749], - [-12.642917, 8.797916], - [-12.640951, 8.794643], - [-12.640487, 8.795065], - [-12.639644, 8.79542], - [-12.638432, 8.796909], - [-12.637811, 8.800445], - [-12.637431, 8.801297], - [-12.638358, 8.802588], - [-12.638152, 8.803346], - [-12.638143, 8.803416], - [-12.638247, 8.803791], - [-12.638098, 8.804363], - [-12.638038, 8.804679], - [-12.638369, 8.805255], - [-12.638079, 8.805758], - [-12.638579, 8.806398], - [-12.638698, 8.806814], - [-12.638744, 8.80744], - [-12.638155, 8.80921], - [-12.636052, 8.812743], - [-12.635811, 8.814632], - [-12.62625, 8.80875], - [-12.623749, 8.813749], - [-12.61875, 8.81875], - [-12.617916, 8.822916], - [-12.612083, 8.822083], - [-12.60956, 8.825867], - [-12.610126, 8.826001], - [-12.612097, 8.826769], - [-12.612244, 8.827033], - [-12.611838, 8.828204], - [-12.612705, 8.828805], - [-12.613592, 8.830435], - [-12.613636, 8.833039], - [-12.613857, 8.83414], - [-12.612083, 8.834582], - [-12.611249, 8.832917], - [-12.607178, 8.83156], - [-12.60699, 8.83201], - [-12.605138, 8.83399], - [-12.605004, 8.835491], - [-12.604859, 8.836728], - [-12.604978, 8.837983], - [-12.605189, 8.839706], - [-12.605163, 8.839886], - [-12.605104, 8.840046], - [-12.604512, 8.841608], - [-12.603605, 8.842722], - [-12.602285, 8.845148], - [-12.601484, 8.847076], - [-12.601484, 8.847082], - [-12.599582, 8.847082], - [-12.59394, 8.845673], - [-12.593822, 8.846058], - [-12.593165, 8.84721], - [-12.593084, 8.849338], - [-12.593393, 8.850352], - [-12.593575, 8.852102], - [-12.593891, 8.852734], - [-12.594939, 8.853947], - [-12.59701, 8.855881], - [-12.596455, 8.857147], - [-12.595728, 8.857904], - [-12.594382, 8.85988], - [-12.594121, 8.860752], - [-12.589125, 8.865877], - [-12.587706, 8.86861], - [-12.586518, 8.869615], - [-12.583229, 8.87254], - [-12.581786, 8.873156], - [-12.584582, 8.878749], - [-12.582917, 8.882083], - [-12.582916, 8.888749], - [-12.569668, 8.891087], - [-12.569149, 8.89218], - [-12.571249, 8.897082], - [-12.570707, 8.89871], - [-12.57125, 8.898932], - [-12.57125, 8.906268], - [-12.5724, 8.905799], - [-12.576199, 8.9051], - [-12.582099, 8.9048], - [-12.585699, 8.9041], - [-12.5912, 8.901999], - [-12.595, 8.901399], - [-12.6022, 8.900899], - [-12.606, 8.899699], - [-12.612299, 8.8954], - [-12.6118, 8.8923], - [-12.611, 8.8897], - [-12.6088, 8.885199], - [-12.6082, 8.8804], - [-12.6089, 8.876699], - [-12.6105, 8.875], - [-12.613699, 8.8733], - [-12.615799, 8.8729], - [-12.617899, 8.873399], - [-12.622999, 8.875799], - [-12.6269, 8.877999], - [-12.630399, 8.878599], - [-12.634299, 8.878099], - [-12.6394, 8.8758], - [-12.642899, 8.8756], - [-12.6455, 8.8761], - [-12.6493, 8.877899], - [-12.652199, 8.878099], - [-12.6554, 8.876799], - [-12.658699, 8.8738], - [-12.661199, 8.8711], - [-12.663399, 8.8682], - [-12.666099, 8.8629], - [-12.668099, 8.8603] - ] - ], - "type": "Polygon" - }, - "id": 485, - "properties": { - "cc:admin:id": ["130"], - "cc:oBld:total": 44, - "cc:pop:fifteen-to-twenty-four": 1648.611071301871, - "cc:pop:grid3-total": 6431.76596026022, - "cc:pop:kontur-total": 10121.922299023428, - "cc:pop:men": 4078.802110729135, - "cc:pop:sixty-plus": 564.6802418176788, - "cc:pop:total": 8783.368890552993, - "cc:pop:under-five": 1380.8754621652286, - "cc:pop:women": 4704.566779823855, - "cc:pop:women-fiften-to-forty-nine": 2260.96360404643, - "cc:pop:wp-total": 7355.602555457299, - "cc:pop:wp-total-UN": 8528.660858523086, - "cc:id": "485", - "cc:Name": "Rogbaneh MCHP", - "cc:site": [-12.6227, 8.8463], - "user:parentName": "Tainkatopa Makama Safrokoh ", - "user:code": "OU_255066", - "user:orgUnitId": "pvTYrkG1d6f", - "user:level": "4", - "user:parentId": "PrJQHI6q7w2" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.277916, 9.195416], - [-12.276662, 9.192282], - [-12.276265, 9.192143], - [-12.274792, 9.191963], - [-12.271283, 9.192015], - [-12.270409, 9.191487], - [-12.268583, 9.190775], - [-12.267436, 9.190066], - [-12.267825, 9.191552], - [-12.267824, 9.193789], - [-12.267588, 9.195707], - [-12.262082, 9.197082], - [-12.257083, 9.196249], - [-12.256249, 9.194583], - [-12.255417, 9.194582], - [-12.254583, 9.193749], - [-12.255416, 9.18375], - [-12.252082, 9.180417], - [-12.24875, 9.180417], - [-12.245416, 9.184582], - [-12.241249, 9.184582], - [-12.23625, 9.18375], - [-12.236249, 9.187083], - [-12.232917, 9.190416], - [-12.232083, 9.190417], - [-12.230416, 9.192916], - [-12.22883, 9.193974], - [-12.228362, 9.193693], - [-12.226249, 9.197916], - [-12.223109, 9.200429], - [-12.22283, 9.200456], - [-12.222337, 9.2002], - [-12.221249, 9.202916], - [-12.217917, 9.202916], - [-12.215417, 9.202083], - [-12.215416, 9.205416], - [-12.212917, 9.205417], - [-12.212082, 9.206249], - [-12.210416, 9.205417], - [-12.20875, 9.205417], - [-12.207083, 9.20875], - [-12.207916, 9.210416], - [-12.20625, 9.21125], - [-12.205417, 9.212916], - [-12.208749, 9.214583], - [-12.208336, 9.21541], - [-12.2086, 9.215474], - [-12.207917, 9.219582], - [-12.208749, 9.222082], - [-12.202161, 9.222083], - [-12.202083, 9.222177], - [-12.202083, 9.223749], - [-12.204583, 9.226249], - [-12.208748, 9.227082], - [-12.208749, 9.227083], - [-12.206249, 9.230416], - [-12.203742, 9.23167], - [-12.202373, 9.230312], - [-12.201931, 9.229207], - [-12.201372, 9.230204], - [-12.199663, 9.232493], - [-12.2019, 9.2345], - [-12.211699, 9.244199], - [-12.214699, 9.246499], - [-12.224399, 9.250899], - [-12.22603, 9.251096], - [-12.226028, 9.250854], - [-12.225466, 9.250346], - [-12.22487, 9.250075], - [-12.224703, 9.249583], - [-12.225416, 9.249582], - [-12.227083, 9.247083], - [-12.232082, 9.24375], - [-12.234582, 9.243749], - [-12.236249, 9.240417], - [-12.233995, 9.238161], - [-12.23407, 9.238135], - [-12.23508, 9.237504], - [-12.236001, 9.237226], - [-12.236742, 9.236693], - [-12.237802, 9.235371], - [-12.239348, 9.235182], - [-12.239788, 9.23522], - [-12.240417, 9.232083], - [-12.242083, 9.232916], - [-12.250416, 9.229583], - [-12.255416, 9.230416], - [-12.25625, 9.227082], - [-12.25625, 9.21875], - [-12.257373, 9.216503], - [-12.257912, 9.217023], - [-12.258562, 9.217417], - [-12.260334, 9.218069], - [-12.264198, 9.21886], - [-12.266451, 9.218702], - [-12.268073, 9.218188], - [-12.270664, 9.217812], - [-12.269993, 9.216331], - [-12.268797, 9.215336], - [-12.268574, 9.214008], - [-12.268129, 9.213516], - [-12.267186, 9.21168], - [-12.266942, 9.210742], - [-12.270416, 9.209582], - [-12.270417, 9.197917], - [-12.274582, 9.198749], - [-12.277916, 9.195416] - ] - ], - "type": "Polygon" - }, - "id": 486, - "properties": { - "cc:admin:id": ["118"], - "cc:oBld:total": 578, - "cc:pop:fifteen-to-twenty-four": 939.0186930333977, - "cc:pop:grid3-total": 6019.205664179033, - "cc:pop:kontur-total": 5015.952964099466, - "cc:pop:men": 2390.0482275245695, - "cc:pop:sixty-plus": 329.23783342602314, - "cc:pop:total": 5044.115785176005, - "cc:pop:under-five": 794.5103451982029, - "cc:pop:women": 2654.0675576514354, - "cc:pop:women-fiften-to-forty-nine": 1299.5888763939877, - "cc:pop:wp-total": 4084.142880295781, - "cc:pop:wp-total-UN": 4732.580050181221, - "cc:id": "486", - "cc:Name": "Rogbin MCHP", - "cc:site": [-12.2241, 9.2117], - "user:parentName": "Sanda Tendaren", - "user:code": "OU_193193", - "user:orgUnitId": "yvDKjcRRQsR", - "user:level": "4", - "user:parentId": "UhHipWG7J8b" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.066906, 8.994935], - [-13.066585, 8.994353], - [-13.066344, 8.993834], - [-13.06586, 8.992322], - [-13.06528, 8.991455], - [-13.064674, 8.991195], - [-13.06425, 8.991232], - [-13.063446, 8.991284], - [-13.062749, 8.991205], - [-13.061645, 8.990977], - [-13.060733, 8.99064], - [-13.060181, 8.990195], - [-13.059509, 8.989924], - [-13.058168, 8.989967], - [-13.057108, 8.990265], - [-13.055136, 8.991016], - [-13.054908, 8.991065], - [-13.054507, 8.990267], - [-13.053665, 8.990611], - [-13.052555, 8.990185], - [-13.051159, 8.988048], - [-13.051558, 8.986425], - [-13.052354, 8.9854], - [-13.052733, 8.985336], - [-13.05251, 8.984222], - [-13.052161, 8.984166], - [-13.051268, 8.982431], - [-13.05073, 8.981204], - [-13.049914, 8.980369], - [-13.049014, 8.979886], - [-13.04803, 8.979863], - [-13.047244, 8.980228], - [-13.046552, 8.980864], - [-13.045319, 8.982645], - [-13.04454, 8.983194], - [-13.043904, 8.983418], - [-13.043162, 8.983373], - [-13.042251, 8.983116], - [-13.041133, 8.982653], - [-13.041073, 8.983374], - [-13.041071, 8.983375], - [-13.039255, 8.982818], - [-13.038182, 8.982158], - [-13.037683, 8.982781], - [-13.03757, 8.983381], - [-13.038775, 8.984389], - [-13.039632, 8.98492], - [-13.040367, 8.985688], - [-13.040606, 8.98644], - [-13.040577, 8.987401], - [-13.040667, 8.988469], - [-13.040827, 8.990042], - [-13.040895, 8.991318], - [-13.040918, 8.992844], - [-13.041099, 8.994598], - [-13.040963, 8.995647], - [-13.040347, 8.995828], - [-13.039823, 8.99576], - [-13.037796, 8.995419], - [-13.036861, 8.995579], - [-13.035813, 8.995852], - [-13.034655, 8.99618], - [-13.034655, 8.996178], - [-13.035241, 8.995592], - [-13.036033, 8.995461], - [-13.037084, 8.994506], - [-13.036598, 8.994743], - [-13.035045, 8.994608], - [-13.035048, 8.993834], - [-13.03479, 8.993833], - [-13.034785, 8.994605], - [-13.034357, 8.994434], - [-13.034266, 8.994602], - [-13.033749, 8.9946], - [-13.033751, 8.994342], - [-13.03418, 8.994256], - [-13.034271, 8.993831], - [-13.032455, 8.994335], - [-13.032457, 8.993821], - [-13.031939, 8.993817], - [-13.032202, 8.993047], - [-13.031165, 8.99304], - [-13.030781, 8.992523], - [-13.030653, 8.992008], - [-13.029617, 8.992002], - [-13.029616, 8.992259], - [-13.030392, 8.992264], - [-13.030388, 8.993036], - [-13.029871, 8.993034], - [-13.029997, 8.993549], - [-13.030383, 8.993938], - [-13.030253, 8.994323], - [-13.030639, 8.994454], - [-13.030898, 8.994328], - [-13.030899, 8.994329], - [-13.030635, 8.995356], - [-13.030896, 8.995101], - [-13.031154, 8.995102], - [-13.031153, 8.995359], - [-13.030893, 8.995615], - [-13.031409, 8.995618], - [-13.03141, 8.99562], - [-13.031147, 8.996647], - [-13.030459, 8.996474], - [-13.030367, 8.9969], - [-13.029589, 8.997155], - [-13.029323, 8.998183], - [-13.028028, 8.998434], - [-13.028029, 8.998177], - [-13.028288, 8.997921], - [-13.026731, 8.998298], - [-13.025178, 8.998162], - [-13.025434, 8.998676], - [-13.025433, 8.998677], - [-13.024916, 8.998676], - [-13.02517, 8.999448], - [-13.025169, 8.999449], - [-13.024135, 8.999443], - [-13.024136, 8.998929], - [-13.023101, 8.998923], - [-13.023103, 8.998408], - [-13.02125, 8.998949], - [-13.021249, 8.99625], - [-13.017917, 8.99375], - [-13.017463, 8.991939], - [-13.01638, 8.992089], - [-13.015864, 8.992169], - [-13.015104, 8.992294], - [-13.013753, 8.992924], - [-13.013545, 8.993113], - [-13.013342, 8.993446], - [-13.01317, 8.993257], - [-13.012042, 8.993287], - [-13.010871, 8.993367], - [-13.010417, 8.993466], - [-13.010416, 8.98875], - [-13.006457, 8.991389], - [-13.006434, 8.991351], - [-13.005957, 8.990906], - [-13.005386, 8.990337], - [-13.004365, 8.988685], - [-13.00314, 8.985735], - [-13.002672, 8.985123], - [-13.000155, 8.982874], - [-12.999432, 8.978584], - [-12.99789, 8.977648], - [-12.996794, 8.976264], - [-12.995738, 8.977208], - [-12.9951, 8.977221], - [-12.994584, 8.977542], - [-12.994019, 8.977565], - [-12.992998, 8.97828], - [-12.992669, 8.979329], - [-12.992298, 8.979957], - [-12.992207, 8.981398], - [-12.992206, 8.981399], - [-12.991243, 8.980656], - [-12.991065, 8.979686], - [-12.991149, 8.979533], - [-12.987917, 8.977917], - [-12.987916, 8.977909], - [-12.987641, 8.977985], - [-12.987338, 8.978052], - [-12.987657, 8.97614], - [-12.988127, 8.976061], - [-12.988477, 8.975977], - [-12.987916, 8.975417], - [-12.98125, 8.97375], - [-12.983194, 8.976992], - [-12.981688, 8.977359], - [-12.9807, 8.977615], - [-12.979418, 8.978134], - [-12.978083, 8.9788], - [-12.976617, 8.979826], - [-12.974217, 8.981891], - [-12.973002, 8.982852], - [-12.97039, 8.979719], - [-12.9681, 8.980999], - [-12.963499, 8.9847], - [-12.9539, 8.989899], - [-12.9496, 8.992099], - [-12.9457, 8.995099], - [-12.9424, 8.9987], - [-12.9409, 9.002], - [-12.9435, 9.009099], - [-12.9466, 9.011899], - [-12.9509, 9.0128], - [-12.957899, 9.0128], - [-12.961, 9.0145], - [-12.961799, 9.0181], - [-12.960499, 9.0214], - [-12.956, 9.0271], - [-12.9549, 9.031], - [-12.9554, 9.035099], - [-12.959499, 9.043199], - [-12.9643, 9.049299], - [-12.9682, 9.0501], - [-12.972299, 9.0501], - [-12.9768, 9.049299], - [-12.9817, 9.0473], - [-12.985, 9.0475], - [-12.987699, 9.049], - [-12.990799, 9.0526], - [-12.9923, 9.0575], - [-12.992399, 9.066699], - [-12.9928, 9.070599], - [-12.995, 9.074899], - [-12.999199, 9.078399], - [-13.0014, 9.0794], - [-13.0072, 9.0808], - [-13.010099, 9.082699], - [-13.012099, 9.084499], - [-13.0156, 9.088999], - [-13.0185, 9.0876], - [-13.036099, 9.088199], - [-13.043699, 9.086599], - [-13.050899, 9.082599], - [-13.058299, 9.0584], - [-13.061911, 9.056383], - [-13.059614, 9.055707], - [-13.05922, 9.055851], - [-13.057917, 9.055416], - [-13.057917, 9.052916], - [-13.060416, 9.051249], - [-13.057916, 9.049583], - [-13.052916, 9.049582], - [-13.052083, 9.047082], - [-13.053749, 9.042917], - [-13.055416, 9.042082], - [-13.054583, 9.037917], - [-13.05375, 9.03625], - [-13.05125, 9.03375], - [-13.056249, 9.028749], - [-13.057083, 9.025416], - [-13.057082, 9.023233], - [-13.056647, 9.023275], - [-13.056249, 9.022082], - [-13.056108, 9.020388], - [-13.055711, 9.020197], - [-13.055583, 9.020027], - [-13.056563, 9.018296], - [-13.056612, 9.017777], - [-13.055968, 9.015504], - [-13.055454, 9.014788], - [-13.055604, 9.014338], - [-13.055438, 9.012344], - [-13.055206, 9.012329], - [-13.05506, 9.011962], - [-13.055417, 9.01125], - [-13.05655, 9.010965], - [-13.05633, 9.010779], - [-13.056084, 9.01055], - [-13.05587, 9.010386], - [-13.055827, 9.010351], - [-13.055641, 9.010297], - [-13.055323, 9.010296], - [-13.055107, 9.010391], - [-13.054958, 9.010464], - [-13.054815, 9.010571], - [-13.054537, 9.010724], - [-13.054309, 9.01093], - [-13.054172, 9.010846], - [-13.05426, 9.010668], - [-13.0548, 9.010381], - [-13.055158, 9.010264], - [-13.055289, 9.010224], - [-13.055537, 9.010096], - [-13.055676, 9.00982], - [-13.055657, 9.009529], - [-13.055636, 9.008902], - [-13.055667, 9.008295], - [-13.055662, 9.008075], - [-13.055655, 9.007824], - [-13.055657, 9.00762], - [-13.055714, 9.007349], - [-13.055869, 9.007032], - [-13.056039, 9.006734], - [-13.056397, 9.006375], - [-13.056601, 9.006107], - [-13.056677, 9.005982], - [-13.056889, 9.0055], - [-13.057255, 9.004987], - [-13.05743, 9.004775], - [-13.057927, 9.004353], - [-13.058364, 9.0039], - [-13.058989, 9.003272], - [-13.059334, 9.002701], - [-13.059349, 9.002599], - [-13.059533, 9.001971], - [-13.059449, 9.001608], - [-13.059457, 9.001455], - [-13.059356, 9.001169], - [-13.059099, 9.000941], - [-13.058822, 9.000816], - [-13.05839, 9.000697], - [-13.057977, 9.000456], - [-13.057193, 8.999921], - [-13.056068, 8.999378], - [-13.055807, 8.999293], - [-13.055484, 8.999033], - [-13.055426, 8.998811], - [-13.055317, 8.998416], - [-13.05547, 8.998155], - [-13.055639, 8.998], - [-13.056004, 8.99761], - [-13.056208, 8.99751], - [-13.056528, 8.997415], - [-13.056819, 8.997335], - [-13.057098, 8.997213], - [-13.057569, 8.997029], - [-13.058099, 8.996658], - [-13.058463, 8.996556], - [-13.059103, 8.996247], - [-13.059424, 8.996077], - [-13.059744, 8.995841], - [-13.060098, 8.995148], - [-13.060208, 8.994559], - [-13.060201, 8.99419], - [-13.06023, 8.99279], - [-13.060148, 8.992634], - [-13.060198, 8.992574], - [-13.060204, 8.992289], - [-13.060754, 8.992285], - [-13.061355, 8.992207], - [-13.062028, 8.992475], - [-13.063172, 8.993027], - [-13.063565, 8.9932], - [-13.064269, 8.993537], - [-13.064579, 8.993834], - [-13.065626, 8.994827], - [-13.066562, 8.995226], - [-13.066906, 8.994935] - ] - ], - "type": "Polygon" - }, - "id": 487, - "properties": { - "cc:admin:id": ["115"], - "cc:oBld:total": 2525, - "cc:pop:fifteen-to-twenty-four": 3357.259855304251, - "cc:pop:grid3-total": 17195.05845580337, - "cc:pop:kontur-total": 21099.519269779445, - "cc:pop:men": 8749.865356829743, - "cc:pop:sixty-plus": 1104.5358158942013, - "cc:pop:total": 18783.4409537992, - "cc:pop:under-five": 2919.6151655364265, - "cc:pop:women": 10033.575596969462, - "cc:pop:women-fiften-to-forty-nine": 4849.490330265764, - "cc:pop:wp-total": 16693.10486772675, - "cc:pop:wp-total-UN": 19336.69409694112, - "cc:id": "487", - "cc:Name": "Rokai CHP", - "cc:site": [-13.02, 9.02], - "user:parentName": "Samu", - "user:code": "OU_211250", - "user:orgUnitId": "UxpUYgdb4oU", - "user:level": "4", - "user:parentId": "r06ohri9wA9" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.437466, 8.47657], - [-12.430417, 8.47375], - [-12.430416, 8.470417], - [-12.427083, 8.467917], - [-12.41875, 8.464584], - [-12.418749, 8.45875], - [-12.40781, 8.458749], - [-12.403904, 8.451984], - [-12.404137, 8.451579], - [-12.403749, 8.450417], - [-12.394582, 8.450416], - [-12.389583, 8.445417], - [-12.38875, 8.445416], - [-12.387916, 8.438749], - [-12.385416, 8.43625], - [-12.383749, 8.436249], - [-12.382082, 8.43375], - [-12.37875, 8.432084], - [-12.377082, 8.42875], - [-12.372083, 8.429583], - [-12.367917, 8.42875], - [-12.367916, 8.429583], - [-12.364582, 8.42875], - [-12.361928, 8.42928], - [-12.362976, 8.433303], - [-12.362083, 8.43375], - [-12.362082, 8.43875], - [-12.360416, 8.44125], - [-12.355417, 8.442917], - [-12.355416, 8.445417], - [-12.349583, 8.45125], - [-12.348749, 8.460416], - [-12.347916, 8.460416], - [-12.346117, 8.46016], - [-12.346191, 8.460306], - [-12.346192, 8.460671], - [-12.346116, 8.46124], - [-12.345017, 8.462433], - [-12.34477, 8.462874], - [-12.34476, 8.462947], - [-12.345183, 8.463229], - [-12.346255, 8.463028], - [-12.346615, 8.463001], - [-12.346803, 8.463128], - [-12.346872, 8.463458], - [-12.346826, 8.463773], - [-12.346754, 8.463927], - [-12.346556, 8.464231], - [-12.346249, 8.464318], - [-12.34579, 8.464959], - [-12.345737, 8.465091], - [-12.345661, 8.46524], - [-12.345623, 8.465399], - [-12.345645, 8.465553], - [-12.346155, 8.465888], - [-12.34632, 8.466709], - [-12.346154, 8.466716], - [-12.345295, 8.467066], - [-12.343598, 8.468303], - [-12.343954, 8.469427], - [-12.343728, 8.471929], - [-12.343892, 8.473215], - [-12.34446, 8.474392], - [-12.344373, 8.475646], - [-12.343802, 8.476702], - [-12.34239, 8.477907], - [-12.341788, 8.478999], - [-12.340849, 8.479691], - [-12.340548, 8.480569], - [-12.334107, 8.479093], - [-12.332917, 8.479018], - [-12.332916, 8.479584], - [-12.33125, 8.484583], - [-12.333266, 8.489291], - [-12.331554, 8.489483], - [-12.330476, 8.489179], - [-12.329056, 8.489901], - [-12.328421, 8.490035], - [-12.327513, 8.489081], - [-12.326955, 8.487824], - [-12.325917, 8.48624], - [-12.325759, 8.48572], - [-12.325481, 8.485352], - [-12.322917, 8.487917], - [-12.319583, 8.494583], - [-12.317083, 8.494584], - [-12.314583, 8.495417], - [-12.31125, 8.499583], - [-12.311249, 8.504583], - [-12.307917, 8.504584], - [-12.305416, 8.50625], - [-12.302917, 8.509584], - [-12.302083, 8.513749], - [-12.305417, 8.514584], - [-12.316249, 8.514584], - [-12.323749, 8.518749], - [-12.320417, 8.526249], - [-12.327082, 8.528749], - [-12.327916, 8.52875], - [-12.330557, 8.531391], - [-12.330256, 8.532059], - [-12.32914, 8.532752], - [-12.327613, 8.532753], - [-12.327222, 8.532901], - [-12.327109, 8.533258], - [-12.326533, 8.533166], - [-12.32587, 8.533234], - [-12.325594, 8.533421], - [-12.327916, 8.534584], - [-12.328516, 8.536382], - [-12.332799, 8.5283], - [-12.3364, 8.524099], - [-12.341, 8.5211], - [-12.351999, 8.519], - [-12.3559, 8.517599], - [-12.3593, 8.515199], - [-12.3621, 8.512099], - [-12.3662, 8.505899], - [-12.368899, 8.5027], - [-12.372, 8.499899], - [-12.3756, 8.497999], - [-12.3904, 8.4945], - [-12.395899, 8.494699], - [-12.400499, 8.496099], - [-12.4049, 8.4969], - [-12.418799, 8.497299], - [-12.4201, 8.494399], - [-12.422299, 8.4916], - [-12.4303, 8.485399], - [-12.433549, 8.482149], - [-12.434167, 8.480629], - [-12.43534, 8.479143], - [-12.435782, 8.478198], - [-12.437046, 8.477215], - [-12.437466, 8.47657] - ] - ], - "type": "Polygon" - }, - "id": 488, - "properties": { - "cc:admin:id": ["149"], - "cc:oBld:total": 698, - "cc:pop:fifteen-to-twenty-four": 1973.6356721716345, - "cc:pop:grid3-total": 7641.8784848153655, - "cc:pop:kontur-total": 10640.703999547344, - "cc:pop:men": 4915.934495976668, - "cc:pop:sixty-plus": 674.1394353979982, - "cc:pop:total": 10611.936302175722, - "cc:pop:under-five": 1705.507619474132, - "cc:pop:women": 5696.001806199053, - "cc:pop:women-fiften-to-forty-nine": 2794.232419884322, - "cc:pop:wp-total": 8002.412637015014, - "cc:pop:wp-total-UN": 9280.895968964403, - "cc:id": "488", - "cc:Name": "Rokimbi MCHP", - "cc:site": [-12.3755, 8.4766], - "user:parentName": "Yoni", - "user:code": "OU_268242", - "user:orgUnitId": "pVuRAzSstbn", - "user:level": "4", - "user:parentId": "NNE0YMCDZkO" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.087917, 8.754582], - [-12.087916, 8.749583], - [-12.077917, 8.747917], - [-12.077083, 8.74625], - [-12.085416, 8.737916], - [-12.085416, 8.73666], - [-12.082466, 8.735926], - [-12.080255, 8.734906], - [-12.080417, 8.734582], - [-12.085416, 8.732082], - [-12.083749, 8.72875], - [-12.082082, 8.728749], - [-12.077082, 8.722917], - [-12.072083, 8.722917], - [-12.07072, 8.724005], - [-12.067091, 8.71772], - [-12.062871, 8.717719], - [-12.06328, 8.716813], - [-12.063054, 8.715324], - [-12.063134, 8.714771], - [-12.06283, 8.714726], - [-12.062011, 8.71519], - [-12.061388, 8.715203], - [-12.06073, 8.715487], - [-12.060618, 8.715817], - [-12.060488, 8.7156], - [-12.060509, 8.714996], - [-12.059904, 8.713851], - [-12.059913, 8.71375], - [-12.052917, 8.71375], - [-12.05174, 8.714689], - [-12.048794, 8.709587], - [-12.049009, 8.709517], - [-12.049537, 8.709773], - [-12.050489, 8.71089], - [-12.050831, 8.71086], - [-12.051361, 8.710308], - [-12.051598, 8.710512], - [-12.052916, 8.704583], - [-12.05125, 8.69875], - [-12.049582, 8.695417], - [-12.048749, 8.695417], - [-12.042082, 8.696249], - [-12.03875, 8.687916], - [-12.03875, 8.68375], - [-12.040181, 8.683749], - [-12.040261, 8.683326], - [-12.038299, 8.6835], - [-12.0337, 8.6835], - [-12.030699, 8.683199], - [-12.027799, 8.682499], - [-12.0121, 8.677], - [-12.008, 8.6767], - [-12.004599, 8.6776], - [-12.0017, 8.679499], - [-11.9998, 8.681599], - [-11.997699, 8.6849], - [-11.9937, 8.693599], - [-11.9887, 8.700999], - [-11.9864, 8.705499], - [-11.990499, 8.709799], - [-11.9932, 8.7124], - [-11.996199, 8.714499], - [-11.9994, 8.716], - [-12.0024, 8.718], - [-12.0044, 8.72], - [-12.0067, 8.7229], - [-12.010299, 8.730399], - [-12.010999, 8.732999], - [-12.0112, 8.7366], - [-12.011299, 8.7478], - [-12.011, 8.750499], - [-12.0104, 8.752599], - [-12.006499, 8.7605], - [-12.004399, 8.7633], - [-12.0005, 8.767199], - [-11.9969, 8.769999], - [-11.995245, 8.770755], - [-11.996049, 8.770591], - [-11.996875, 8.772004], - [-11.997179, 8.772233], - [-11.998958, 8.768958], - [-11.99972, 8.768554], - [-12.001126, 8.768243], - [-12.0032, 8.767822], - [-12.005876, 8.768004], - [-12.006249, 8.76875], - [-12.00625, 8.769582], - [-12.009583, 8.769583], - [-12.013749, 8.772082], - [-12.014323, 8.77237], - [-12.014323, 8.772372], - [-12.014216, 8.772422], - [-12.014332, 8.773067], - [-12.014579, 8.773372], - [-12.014004, 8.773687], - [-12.01417, 8.774064], - [-12.01409, 8.774349], - [-12.014439, 8.774997], - [-12.014459, 8.775208], - [-12.01424, 8.775304], - [-12.01423, 8.775733], - [-12.01447, 8.776342], - [-12.014734, 8.776455], - [-12.015694, 8.778129], - [-12.015926, 8.778187], - [-12.01718, 8.778241], - [-12.017944, 8.778028], - [-12.018617, 8.777455], - [-12.01831, 8.775541], - [-12.018384, 8.774545], - [-12.018574, 8.774252], - [-12.018407, 8.773932], - [-12.018528, 8.77251], - [-12.017986, 8.772013], - [-12.022082, 8.767918], - [-12.022917, 8.782082], - [-12.031249, 8.777917], - [-12.031634, 8.777146], - [-12.031135, 8.777256], - [-12.031135, 8.777254], - [-12.03125, 8.777082], - [-12.033108, 8.776154], - [-12.03314, 8.776059], - [-12.034231, 8.775592], - [-12.034582, 8.775416], - [-12.035802, 8.771761], - [-12.037077, 8.772004], - [-12.03777, 8.772524], - [-12.037804, 8.772527], - [-12.042916, 8.771249], - [-12.043745, 8.770421], - [-12.043755, 8.770423], - [-12.04471, 8.770074], - [-12.044265, 8.768474], - [-12.044261, 8.768124], - [-12.044481, 8.766645], - [-12.044662, 8.765702], - [-12.045035, 8.764679], - [-12.046016, 8.763656], - [-12.047423, 8.762413], - [-12.048307, 8.763357], - [-12.048917, 8.763631], - [-12.050761, 8.763764], - [-12.05185, 8.764246], - [-12.05249, 8.764194], - [-12.052774, 8.763665], - [-12.053326, 8.763823], - [-12.053349, 8.763784], - [-12.054183, 8.763955], - [-12.054243, 8.763953], - [-12.054248, 8.76397], - [-12.054928, 8.764109], - [-12.054521, 8.763459], - [-12.054842, 8.762761], - [-12.054964, 8.760808], - [-12.05489, 8.759446], - [-12.054684, 8.759055], - [-12.054685, 8.759054], - [-12.056523, 8.759327], - [-12.057643, 8.759875], - [-12.059008, 8.759771], - [-12.059693, 8.759903], - [-12.059953, 8.7603], - [-12.059958, 8.760706], - [-12.060394, 8.760903], - [-12.05957, 8.761276], - [-12.060537, 8.762327], - [-12.061159, 8.762475], - [-12.061766, 8.762301], - [-12.062609, 8.762565], - [-12.062876, 8.762752], - [-12.062831, 8.763107], - [-12.062818, 8.763814], - [-12.062394, 8.765238], - [-12.062178, 8.7655], - [-12.062317, 8.765619], - [-12.062565, 8.765814], - [-12.063091, 8.76531], - [-12.063187, 8.76438], - [-12.063686, 8.763263], - [-12.063627, 8.762605], - [-12.064222, 8.761291], - [-12.063916, 8.760417], - [-12.064582, 8.760416], - [-12.065417, 8.758749], - [-12.072082, 8.755416], - [-12.072917, 8.752082], - [-12.075417, 8.749583], - [-12.077083, 8.749583], - [-12.084583, 8.757916], - [-12.085416, 8.757916], - [-12.087917, 8.754582] - ] - ], - "type": "Polygon" - }, - "id": 489, - "properties": { - "cc:admin:id": ["8"], - "cc:oBld:total": 504, - "cc:pop:fifteen-to-twenty-four": 785.4623130202989, - "cc:pop:grid3-total": 5830.757446234787, - "cc:pop:kontur-total": 4299.3336875636, - "cc:pop:men": 2091.7615745408348, - "cc:pop:sixty-plus": 239.75772841792622, - "cc:pop:total": 4396.902523094643, - "cc:pop:under-five": 721.1941438613387, - "cc:pop:women": 2305.140948553809, - "cc:pop:women-fiften-to-forty-nine": 1074.8548508593437, - "cc:pop:wp-total": 2264.679351199421, - "cc:pop:wp-total-UN": 2632.601819929373, - "cc:id": "489", - "cc:Name": "Rokonta CHC", - "cc:site": [-12.0482, 8.7452], - "user:parentName": "Bombali Sebora", - "user:code": "OU_193205", - "user:orgUnitId": "mepHuAA9l51", - "user:level": "4", - "user:parentId": "KKkLOTpMXGV" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.248749, 9.180417], - [-12.244583, 9.179583], - [-12.244582, 9.177917], - [-12.23875, 9.17375], - [-12.240416, 9.168749], - [-12.238257, 9.161554], - [-12.238119, 9.16166], - [-12.236004, 9.162233], - [-12.235523, 9.16254], - [-12.235375, 9.16382], - [-12.234868, 9.164577], - [-12.233685, 9.167103], - [-12.233814, 9.168776], - [-12.233459, 9.169322], - [-12.233255, 9.169392], - [-12.230043, 9.170315], - [-12.227082, 9.162917], - [-12.224582, 9.164582], - [-12.219582, 9.165416], - [-12.21519, 9.164162], - [-12.215249, 9.163746], - [-12.215755, 9.162579], - [-12.215818, 9.161743], - [-12.21445, 9.16078], - [-12.213687, 9.159678], - [-12.212529, 9.158747], - [-12.211169, 9.158488], - [-12.210695, 9.158462], - [-12.2106, 9.167599], - [-12.210299, 9.1712], - [-12.209699, 9.1733], - [-12.205899, 9.1812], - [-12.203699, 9.184], - [-12.2012, 9.186599], - [-12.1974, 9.189899], - [-12.191799, 9.193], - [-12.189099, 9.195], - [-12.185195, 9.198403], - [-12.1813, 9.2013], - [-12.180699, 9.2046], - [-12.1791, 9.208199], - [-12.1759, 9.212699], - [-12.189499, 9.225999], - [-12.192199, 9.227899], - [-12.196699, 9.230199], - [-12.198999, 9.231899], - [-12.199662, 9.232493], - [-12.201372, 9.230204], - [-12.201931, 9.229208], - [-12.202373, 9.230312], - [-12.203742, 9.23167], - [-12.206249, 9.230416], - [-12.208749, 9.227083], - [-12.204583, 9.22625], - [-12.202083, 9.223749], - [-12.202083, 9.222177], - [-12.202161, 9.222083], - [-12.208749, 9.222082], - [-12.207917, 9.219582], - [-12.2086, 9.215474], - [-12.208337, 9.215411], - [-12.208336, 9.21541], - [-12.208749, 9.214583], - [-12.205417, 9.212916], - [-12.20625, 9.211249], - [-12.207916, 9.210416], - [-12.207083, 9.208749], - [-12.208749, 9.205417], - [-12.210416, 9.205417], - [-12.212082, 9.206249], - [-12.212917, 9.205417], - [-12.215416, 9.205416], - [-12.215417, 9.202083], - [-12.217917, 9.202916], - [-12.221249, 9.202916], - [-12.222336, 9.2002], - [-12.222831, 9.200456], - [-12.223108, 9.200429], - [-12.226249, 9.197916], - [-12.228361, 9.193693], - [-12.228829, 9.193974], - [-12.230416, 9.192916], - [-12.232082, 9.190417], - [-12.232916, 9.190416], - [-12.236249, 9.187082], - [-12.23625, 9.18375], - [-12.241249, 9.184582], - [-12.245416, 9.184582], - [-12.248749, 9.180417] - ] - ], - "type": "Polygon" - }, - "id": 490, - "properties": { - "cc:admin:id": ["118"], - "cc:oBld:total": 415, - "cc:pop:fifteen-to-twenty-four": 818.4445503688361, - "cc:pop:grid3-total": 6833.753991845567, - "cc:pop:kontur-total": 4248.404255375714, - "cc:pop:men": 2059.513050314249, - "cc:pop:sixty-plus": 291.5152289286766, - "cc:pop:total": 4358.13665475006, - "cc:pop:under-five": 678.5405027634743, - "cc:pop:women": 2298.6236044358116, - "cc:pop:women-fiften-to-forty-nine": 1121.5832028779507, - "cc:pop:wp-total": 3616.407155333211, - "cc:pop:wp-total-UN": 4188.786003955294, - "cc:id": "490", - "cc:Name": "Rokulan CHC", - "cc:site": [-12.2112, 9.1945], - "user:parentName": "Sanda Tendaren", - "user:code": "OU_193196", - "user:orgUnitId": "X79FDd4EAgo", - "user:level": "4", - "user:parentId": "UhHipWG7J8b" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.177752, 8.460848], - [-13.177559, 8.46077], - [-13.176536, 8.4602], - [-13.176502, 8.460143], - [-13.175959, 8.459094], - [-13.175653, 8.458673], - [-13.175554, 8.4585], - [-13.175409, 8.458219], - [-13.175097, 8.457502], - [-13.17366, 8.458059], - [-13.173526, 8.457844], - [-13.173412, 8.457603], - [-13.17336, 8.45753], - [-13.17319, 8.457235], - [-13.17314, 8.457122], - [-13.172825, 8.45654], - [-13.174482, 8.455481], - [-13.174294, 8.455108], - [-13.172521, 8.456013], - [-13.172384, 8.455808], - [-13.172301, 8.455678], - [-13.172158, 8.455406], - [-13.172075, 8.455197], - [-13.171181, 8.455599], - [-13.171744, 8.456985], - [-13.172152, 8.458069], - [-13.172199, 8.458185], - [-13.172198, 8.458187], - [-13.172121, 8.45819], - [-13.171917, 8.457688], - [-13.17164, 8.456924], - [-13.170528, 8.457444], - [-13.17053, 8.456666], - [-13.170775, 8.45655], - [-13.170582, 8.456282], - [-13.170284, 8.456404], - [-13.167688, 8.456404], - [-13.167982, 8.456955], - [-13.167822, 8.45725], - [-13.167927, 8.45752], - [-13.168243, 8.457504], - [-13.168854, 8.456786], - [-13.169456, 8.457486], - [-13.168864, 8.459348], - [-13.168462, 8.459072], - [-13.167677, 8.457399], - [-13.167419, 8.45709], - [-13.167072, 8.4567], - [-13.166811, 8.45638], - [-13.166605, 8.455903], - [-13.166453, 8.45571], - [-13.16626, 8.4556], - [-13.166073, 8.455611], - [-13.165139, 8.455631], - [-13.163671, 8.455348], - [-13.162741, 8.455058], - [-13.161905, 8.45464], - [-13.16133, 8.454363], - [-13.160693, 8.454157], - [-13.159997, 8.453983], - [-13.159009, 8.45328], - [-13.158462, 8.452344], - [-13.156327, 8.449638], - [-13.155183, 8.449638], - [-13.155149, 8.449697], - [-13.155418, 8.450133], - [-13.173661, 8.469282], - [-13.175206, 8.468382], - [-13.174869, 8.467506], - [-13.174553, 8.467219], - [-13.174821, 8.466453], - [-13.174558, 8.466275], - [-13.17351, 8.466285], - [-13.173509, 8.466284], - [-13.174356, 8.465144], - [-13.174485, 8.464755], - [-13.174708, 8.46446], - [-13.175915, 8.465726], - [-13.175964, 8.46568], - [-13.176715, 8.464992], - [-13.176637, 8.464444], - [-13.176753, 8.464104], - [-13.17623, 8.463591], - [-13.175703, 8.463102], - [-13.175729, 8.462589], - [-13.176515, 8.461775], - [-13.176893, 8.462079], - [-13.177675, 8.460995], - [-13.177752, 8.460848] - ] - ], - "type": "Polygon" - }, - "id": 491, - "properties": { - "cc:admin:id": ["112"], - "cc:oBld:total": 2681, - "cc:pop:fifteen-to-twenty-four": 4014.6200361493306, - "cc:pop:grid3-total": 38534.452296893636, - "cc:pop:kontur-total": 8066.9765885607485, - "cc:pop:men": 8604.859849537363, - "cc:pop:sixty-plus": 1363.3237271876508, - "cc:pop:total": 17541.627443179357, - "cc:pop:under-five": 2028.1599396897498, - "cc:pop:women": 8936.767593641993, - "cc:pop:women-fiften-to-forty-nine": 4780.0481948165125, - "cc:pop:wp-total": 21124.03787054603, - "cc:pop:wp-total-UN": 24494.68074141473, - "cc:id": "491", - "cc:Name": "Rokupa Govt. Hospital", - "cc:site": [-13.1726, 8.4603], - "user:parentName": "Freetown", - "user:code": "OU_278332", - "user:orgUnitId": "NfE9gvFwLIF", - "user:level": "4", - "user:parentId": "C9uduqDZr9d" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.993399, 8.9456], - [-12.9873, 8.9427], - [-12.983999, 8.941399], - [-12.979699, 8.938999], - [-12.9721, 8.9355], - [-12.9687, 8.9349], - [-12.965299, 8.9355], - [-12.9593, 8.937899], - [-12.955, 8.938399], - [-12.909583, 8.9384], - [-12.909582, 8.93875], - [-12.904583, 8.943749], - [-12.908602, 8.94509], - [-12.908041, 8.947715], - [-12.907879, 8.949194], - [-12.907313, 8.950523], - [-12.907029, 8.950575], - [-12.906143, 8.95184], - [-12.904797, 8.952968], - [-12.900771, 8.954077], - [-12.900441, 8.953987], - [-12.900063, 8.953566], - [-12.901249, 8.957917], - [-12.897199, 8.962642], - [-12.896285, 8.96218], - [-12.892083, 8.967082], - [-12.892917, 8.967917], - [-12.897916, 8.977082], - [-12.897083, 8.978749], - [-12.899582, 8.981249], - [-12.898445, 8.983525], - [-12.901886, 8.985581], - [-12.903551, 8.986197], - [-12.903146, 8.987615], - [-12.902103, 8.988723], - [-12.901513, 8.989352], - [-12.901295, 8.989582], - [-12.904583, 8.989583], - [-12.909583, 8.992916], - [-12.912083, 8.99125], - [-12.917916, 8.998749], - [-12.917917, 9.001249], - [-12.91812, 9.001453], - [-12.917882, 9.001799], - [-12.917764, 9.002414], - [-12.91811, 9.004578], - [-12.918094, 9.005239], - [-12.918694, 9.006112], - [-12.919226, 9.007342], - [-12.919282, 9.007572], - [-12.919437, 9.009558], - [-12.919432, 9.010026], - [-12.919577, 9.011666], - [-12.919495, 9.012486], - [-12.91971, 9.013805], - [-12.920041, 9.01433], - [-12.920149, 9.015335], - [-12.921124, 9.016595], - [-12.921447, 9.016666], - [-12.922963, 9.017782], - [-12.924014, 9.021644], - [-12.924005, 9.021782], - [-12.924765, 9.021953], - [-12.925154, 9.02226], - [-12.925598, 9.023386], - [-12.92375, 9.027082], - [-12.927916, 9.03125], - [-12.927082, 9.033749], - [-12.924583, 9.03375], - [-12.92375, 9.036249], - [-12.92375, 9.036403], - [-12.925155, 9.035797], - [-12.929786, 9.034162], - [-12.931055, 9.034827], - [-12.931761, 9.03616], - [-12.932268, 9.036304], - [-12.934069, 9.039424], - [-12.931382, 9.044081], - [-12.932917, 9.047916], - [-12.939582, 9.047083], - [-12.938891, 9.054702], - [-12.939575, 9.05464], - [-12.941286, 9.054921], - [-12.944603, 9.05586], - [-12.948544, 9.057833], - [-12.948823, 9.055492], - [-12.949387, 9.054063], - [-12.950821, 9.052177], - [-12.951752, 9.051451], - [-12.952616, 9.049431], - [-12.952935, 9.047874], - [-12.952938, 9.046639], - [-12.952817, 9.046424], - [-12.953078, 9.045401], - [-12.952919, 9.044011], - [-12.953071, 9.04277], - [-12.953043, 9.040479], - [-12.95286, 9.03911], - [-12.954089, 9.038363], - [-12.954184, 9.037488], - [-12.954116, 9.037412], - [-12.953469, 9.036098], - [-12.952948, 9.034135], - [-12.952471, 9.033629], - [-12.953258, 9.031575], - [-12.95236, 9.02912], - [-12.951195, 9.027801], - [-12.950281, 9.027099], - [-12.950096, 9.025225], - [-12.950104, 9.024036], - [-12.949816, 9.022341], - [-12.949029, 9.021606], - [-12.948436, 9.019565], - [-12.947854, 9.018667], - [-12.947782, 9.018534], - [-12.947079, 9.017403], - [-12.947727, 9.015604], - [-12.947889, 9.015128], - [-12.947574, 9.014757], - [-12.947319, 9.014761], - [-12.947336, 9.014685], - [-12.946731, 9.014775], - [-12.946576, 9.014655], - [-12.946862, 9.013994], - [-12.947231, 9.012923], - [-12.947811, 9.013074], - [-12.948058, 9.012205], - [-12.946599, 9.011899], - [-12.9435, 9.009099], - [-12.9409, 9.002], - [-12.942399, 8.9987], - [-12.9457, 8.995099], - [-12.949599, 8.9921], - [-12.9539, 8.989899], - [-12.963499, 8.9847], - [-12.9681, 8.980999], - [-12.974, 8.977699], - [-12.9768, 8.975499], - [-12.983299, 8.9691], - [-12.985599, 8.9664], - [-12.986899, 8.9641], - [-12.9875, 8.961499], - [-12.9881, 8.9548], - [-12.99, 8.950699], - [-12.993399, 8.9456] - ] - ], - "type": "Polygon" - }, - "id": 492, - "properties": { - "cc:admin:id": ["82"], - "cc:oBld:total": 717, - "cc:pop:fifteen-to-twenty-four": 3743.2452421885, - "cc:pop:grid3-total": 7625.603190278201, - "cc:pop:kontur-total": 21697.522182194793, - "cc:pop:men": 9494.167838388874, - "cc:pop:sixty-plus": 1348.2250741012233, - "cc:pop:total": 20033.89644289129, - "cc:pop:under-five": 3171.3155465122672, - "cc:pop:women": 10539.728604502432, - "cc:pop:women-fiften-to-forty-nine": 5038.80512936937, - "cc:pop:wp-total": 15465.398329229358, - "cc:pop:wp-total-UN": 17924.354524187962, - "cc:id": "492", - "cc:Name": "Rokupr CHC", - "cc:site": [-12.9443, 9.0163], - "user:parentName": "Magbema", - "user:code": "OU_211237", - "user:orgUnitId": "QZtMuEEV9Vv", - "user:level": "4", - "user:parentId": "QywkxFudXrC" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.109583, 8.852661], - [-13.109582, 8.846005], - [-13.107568, 8.845762], - [-13.10524, 8.845461], - [-13.102178, 8.844814], - [-13.100624, 8.843649], - [-13.098725, 8.843649], - [-13.098749, 8.84375], - [-13.098653, 8.844324], - [-13.097562, 8.844425], - [-13.095751, 8.844123], - [-13.095147, 8.843391], - [-13.094554, 8.842917], - [-13.090417, 8.842917], - [-13.08875, 8.84375], - [-13.088749, 8.846486], - [-13.086736, 8.846884], - [-13.08363, 8.84697], - [-13.079749, 8.846626], - [-13.07625, 8.845405], - [-13.07625, 8.847081], - [-13.076248, 8.847082], - [-13.067917, 8.845417], - [-13.062082, 8.842917], - [-13.057917, 8.844582], - [-13.05741, 8.843319], - [-13.053721, 8.844628], - [-13.049806, 8.846944], - [-13.048102, 8.847407], - [-13.042083, 8.850416], - [-13.040918, 8.848089], - [-13.04078, 8.848186], - [-13.036515, 8.849546], - [-13.037916, 8.853748], - [-13.037915, 8.853749], - [-13.027083, 8.853749], - [-13.02584, 8.850644], - [-13.024674, 8.850918], - [-13.022339, 8.851677], - [-13.018703, 8.851949], - [-13.016472, 8.852249], - [-13.014808, 8.852581], - [-13.00777, 8.85444], - [-13.006026, 8.85469], - [-13.005793, 8.854665], - [-13.004582, 8.857082], - [-13.002083, 8.856249], - [-13.00051, 8.854677], - [-13.000497, 8.854769], - [-12.999267, 8.854904], - [-12.99694, 8.854407], - [-12.992549, 8.851777], - [-12.988324, 8.849583], - [-12.985557, 8.849583], - [-12.982467, 8.848116], - [-12.982324, 8.848101], - [-12.98125, 8.845417], - [-12.981249, 8.845285], - [-12.975099, 8.845499], - [-12.9644, 8.8444], - [-12.955699, 8.842299], - [-12.9447, 8.8405], - [-12.9381, 8.8401], - [-12.931399, 8.8401], - [-12.9232, 8.842099], - [-12.9104, 8.848499], - [-12.8976, 8.8524], - [-12.893, 8.856699], - [-12.889999, 8.8607], - [-12.887599, 8.8661], - [-12.8846, 8.873699], - [-12.884, 8.876699], - [-12.8838, 8.8811], - [-12.883899, 8.901299], - [-12.8836, 8.907299], - [-12.882899, 8.9115], - [-12.8794, 8.923999], - [-12.8794, 8.924099], - [-12.8861, 8.9311], - [-12.889299, 8.933199], - [-12.891899, 8.934399], - [-12.8971, 8.9357], - [-12.9025, 8.9379], - [-12.9065, 8.9384], - [-12.919413, 8.938399], - [-12.91875, 8.93375], - [-12.919582, 8.929583], - [-12.920417, 8.927916], - [-12.929431, 8.927223], - [-12.929391, 8.927949], - [-12.92898, 8.928788], - [-12.928131, 8.929253], - [-12.926165, 8.929869], - [-12.924992, 8.930014], - [-12.924521, 8.930806], - [-12.924434, 8.931981], - [-12.921888, 8.931674], - [-12.921703, 8.932171], - [-12.92261, 8.932529], - [-12.923288, 8.933099], - [-12.923798, 8.934863], - [-12.924023, 8.934235], - [-12.923984, 8.933518], - [-12.924255, 8.932759], - [-12.924749, 8.932343], - [-12.925794, 8.931995], - [-12.926453, 8.932102], - [-12.928097, 8.932892], - [-12.928469, 8.932043], - [-12.92837, 8.931716], - [-12.929322, 8.930052], - [-12.931429, 8.928373], - [-12.932472, 8.928421], - [-12.934403, 8.927554], - [-12.934952, 8.927081], - [-12.935973, 8.926755], - [-12.93645, 8.926889], - [-12.936894, 8.927338], - [-12.938133, 8.927737], - [-12.939179, 8.926611], - [-12.939615, 8.926695], - [-12.941723, 8.926467], - [-12.943964, 8.925286], - [-12.945709, 8.924314], - [-12.94625, 8.924582], - [-12.952082, 8.92125], - [-12.954287, 8.9218], - [-12.954432, 8.92178], - [-12.954516, 8.921858], - [-12.955416, 8.922082], - [-12.95625, 8.920417], - [-12.95875, 8.920417], - [-12.961271, 8.921046], - [-12.961321, 8.920999], - [-12.96374, 8.920231], - [-12.96402, 8.920281], - [-12.968749, 8.917917], - [-12.969583, 8.917083], - [-12.971724, 8.918153], - [-12.971727, 8.915364], - [-12.971728, 8.915365], - [-12.972916, 8.917328], - [-12.972917, 8.912083], - [-12.975417, 8.91125], - [-12.979582, 8.911249], - [-12.982916, 8.905416], - [-12.982917, 8.902916], - [-12.986319, 8.898832], - [-12.986191, 8.898496], - [-12.986029, 8.898357], - [-12.987082, 8.89625], - [-12.987916, 8.896249], - [-12.990416, 8.89375], - [-12.997083, 8.897082], - [-12.998245, 8.896502], - [-12.998551, 8.896997], - [-12.998796, 8.896296], - [-12.999583, 8.897082], - [-13.002916, 8.89625], - [-13.005416, 8.892917], - [-13.008749, 8.892916], - [-13.010416, 8.890416], - [-13.010416, 8.889582], - [-13.007621, 8.883291], - [-13.015581, 8.88366], - [-13.015596, 8.883464], - [-13.015682, 8.883466], - [-13.018554, 8.883882], - [-13.021554, 8.884318], - [-13.020485, 8.876356], - [-13.023311, 8.876115], - [-13.023381, 8.876115], - [-13.02704, 8.876247], - [-13.026861, 8.874967], - [-13.026695, 8.873789], - [-13.026574, 8.872874], - [-13.026259, 8.870541], - [-13.026635, 8.870556], - [-13.027198, 8.870647], - [-13.029452, 8.871046], - [-13.029777, 8.871326], - [-13.029782, 8.871332], - [-13.03169, 8.875255], - [-13.031765, 8.875223], - [-13.03337, 8.873741], - [-13.034012, 8.873227], - [-13.034843, 8.872113], - [-13.034942, 8.871739], - [-13.034948, 8.871736], - [-13.034961, 8.871689], - [-13.035277, 8.870826], - [-13.036452, 8.869127], - [-13.03862, 8.86734], - [-13.042082, 8.867916], - [-13.043622, 8.867917], - [-13.043669, 8.867835], - [-13.046792, 8.870959], - [-13.048396, 8.871654], - [-13.049041, 8.872301], - [-13.048852, 8.873749], - [-13.051249, 8.873749], - [-13.05125, 8.872917], - [-13.052083, 8.871249], - [-13.057748, 8.869125], - [-13.057983, 8.871574], - [-13.061362, 8.869273], - [-13.060851, 8.867854], - [-13.059043, 8.867071], - [-13.058593, 8.865165], - [-13.062082, 8.864583], - [-13.062917, 8.865416], - [-13.067083, 8.864583], - [-13.07375, 8.869582], - [-13.077082, 8.867916], - [-13.080381, 8.863793], - [-13.08047, 8.86375], - [-13.08125, 8.86375], - [-13.084268, 8.866014], - [-13.084605, 8.865305], - [-13.085325, 8.864474], - [-13.085789, 8.864269], - [-13.086482, 8.862915], - [-13.087484, 8.862093], - [-13.087436, 8.861341], - [-13.086616, 8.861155], - [-13.086106, 8.860768], - [-13.085707, 8.859755], - [-13.085772, 8.858959], - [-13.086457, 8.858117], - [-13.086823, 8.857945], - [-13.087056, 8.857638], - [-13.08734, 8.857073], - [-13.087374, 8.856907], - [-13.087203, 8.855842], - [-13.086831, 8.855282], - [-13.086822, 8.854633], - [-13.087359, 8.854207], - [-13.088056, 8.854452], - [-13.088241, 8.854132], - [-13.08825, 8.853402], - [-13.089627, 8.853682], - [-13.090974, 8.853967], - [-13.091096, 8.855513], - [-13.090181, 8.857183], - [-13.088367, 8.857304], - [-13.087232, 8.859271], - [-13.087057, 8.86013], - [-13.088874, 8.859367], - [-13.089387, 8.8604], - [-13.09068, 8.860665], - [-13.090293, 8.861924], - [-13.091452, 8.861699], - [-13.091454, 8.861441], - [-13.09353, 8.860679], - [-13.093019, 8.859389], - [-13.09397, 8.858921], - [-13.096511, 8.860897], - [-13.096579, 8.859253], - [-13.097196, 8.858387], - [-13.09672, 8.856586], - [-13.09702, 8.856039], - [-13.097186, 8.856078], - [-13.097234, 8.854312], - [-13.098746, 8.853678], - [-13.09951, 8.853047], - [-13.100747, 8.85273], - [-13.104568, 8.852729], - [-13.108851, 8.852686], - [-13.109583, 8.852661] - ] - ], - "type": "Polygon" - }, - "id": 493, - "properties": { - "cc:admin:id": ["89"], - "cc:oBld:total": 342, - "cc:pop:fifteen-to-twenty-four": 2843.6883853328263, - "cc:pop:grid3-total": 15282.752224430847, - "cc:pop:kontur-total": 16782.297350288, - "cc:pop:men": 7546.299983967664, - "cc:pop:sixty-plus": 881.6584451809518, - "cc:pop:total": 15993.370132079302, - "cc:pop:under-five": 2442.807490673105, - "cc:pop:women": 8447.07014811163, - "cc:pop:women-fiften-to-forty-nine": 4126.6090442339, - "cc:pop:wp-total": 12170.079047160641, - "cc:pop:wp-total-UN": 14111.332884373693, - "cc:id": "493", - "cc:Name": "Romando MCHP", - "cc:site": [-12.9873, 8.8628], - "user:parentName": "Mambolo", - "user:code": "OU_211263", - "user:orgUnitId": "FQ5CCuUKNLf", - "user:level": "4", - "user:parentId": "xGMGhjA3y6J" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.802025, 8.887858], - [-12.800772, 8.886605], - [-12.80165, 8.885696], - [-12.801576, 8.885521], - [-12.801115, 8.885418], - [-12.800326, 8.885917], - [-12.800129, 8.885962], - [-12.799803, 8.885637], - [-12.798892, 8.886067], - [-12.797917, 8.885417], - [-12.797082, 8.882083], - [-12.793025, 8.882082], - [-12.793151, 8.880604], - [-12.79268, 8.878592], - [-12.791773, 8.878439], - [-12.789454, 8.878745], - [-12.788807, 8.878731], - [-12.789582, 8.867083], - [-12.792082, 8.865416], - [-12.792082, 8.858179], - [-12.790417, 8.858178], - [-12.790416, 8.854583], - [-12.787082, 8.850417], - [-12.78559, 8.849989], - [-12.788675, 8.844647], - [-12.796487, 8.844646], - [-12.799168, 8.840003], - [-12.797083, 8.837917], - [-12.796537, 8.835735], - [-12.794899, 8.8371], - [-12.787899, 8.8407], - [-12.785799, 8.8412], - [-12.7795, 8.841899], - [-12.7765, 8.8427], - [-12.773799, 8.8445], - [-12.7682, 8.849799], - [-12.7651, 8.852099], - [-12.7613, 8.853899], - [-12.758499, 8.8555], - [-12.754499, 8.8572], - [-12.7503, 8.859599], - [-12.7464, 8.861499], - [-12.740599, 8.8659], - [-12.737299, 8.867299], - [-12.7265, 8.868099], - [-12.7231, 8.8694], - [-12.720999, 8.8711], - [-12.713699, 8.8786], - [-12.7116, 8.880499], - [-12.709299, 8.8819], - [-12.705699, 8.882699], - [-12.7023, 8.8826], - [-12.6999, 8.881999], - [-12.697199, 8.879899], - [-12.6931, 8.8774], - [-12.6898, 8.8742], - [-12.688, 8.871599], - [-12.687299, 8.869399], - [-12.686999, 8.866699], - [-12.6868, 8.8594], - [-12.686299, 8.857199], - [-12.685299, 8.855099], - [-12.683599, 8.853099], - [-12.681599, 8.8513], - [-12.6792, 8.8505], - [-12.677, 8.851], - [-12.6729, 8.8536], - [-12.670599, 8.857], - [-12.6681, 8.860299], - [-12.6661, 8.862899], - [-12.6634, 8.868199], - [-12.662004, 8.870039], - [-12.66625, 8.867917], - [-12.66875, 8.873749], - [-12.672916, 8.877082], - [-12.672523, 8.878264], - [-12.673265, 8.878913], - [-12.676255, 8.882291], - [-12.677071, 8.882677], - [-12.675669, 8.883903], - [-12.674576, 8.88493], - [-12.679582, 8.892082], - [-12.677083, 8.894583], - [-12.675884, 8.896981], - [-12.677344, 8.897292], - [-12.678749, 8.902916], - [-12.67875, 8.907916], - [-12.682916, 8.907917], - [-12.683194, 8.907892], - [-12.682839, 8.909026], - [-12.682651, 8.910095], - [-12.682872, 8.911568], - [-12.683089, 8.91204], - [-12.685286, 8.908235], - [-12.69297, 8.908235], - [-12.69375, 8.912917], - [-12.693749, 8.918749], - [-12.693091, 8.91922], - [-12.693229, 8.919328], - [-12.689713, 8.925418], - [-12.692599, 8.930416], - [-12.697916, 8.930417], - [-12.69875, 8.932082], - [-12.699582, 8.932917], - [-12.699582, 8.935416], - [-12.697917, 8.940417], - [-12.697917, 8.941431], - [-12.698412, 8.941407], - [-12.698749, 8.942083], - [-12.697083, 8.945417], - [-12.69875, 8.951249], - [-12.701019, 8.946715], - [-12.702255, 8.95019], - [-12.702985, 8.950904], - [-12.703787, 8.952091], - [-12.704997, 8.952301], - [-12.706275, 8.952301], - [-12.707345, 8.952046], - [-12.707487, 8.952108], - [-12.70375, 8.959582], - [-12.709582, 8.962082], - [-12.710417, 8.962083], - [-12.716249, 8.967916], - [-12.71875, 8.96875], - [-12.72125, 8.972082], - [-12.726249, 8.972083], - [-12.724583, 8.976249], - [-12.728251, 8.984318], - [-12.729427, 8.983684], - [-12.729429, 8.983685], - [-12.727917, 8.991249], - [-12.727917, 8.992083], - [-12.72875, 8.993749], - [-12.735416, 8.992917], - [-12.735416, 8.995741], - [-12.734959, 8.995727], - [-12.73375, 8.998749], - [-12.737916, 8.99875], - [-12.741249, 9.000416], - [-12.742082, 9.000417], - [-12.742083, 9.009582], - [-12.744582, 9.010417], - [-12.74639, 9.01403], - [-12.751264, 9.011713], - [-12.753119, 9.010537], - [-12.754703, 9.010079], - [-12.755552, 9.009612], - [-12.756523, 9.008705], - [-12.757239, 9.007639], - [-12.759283, 9.008048], - [-12.760558, 9.005369], - [-12.760925, 9.004054], - [-12.760715, 9.002499], - [-12.760138, 9.001893], - [-12.75949, 9.000148], - [-12.757723, 8.998747], - [-12.756042, 8.99612], - [-12.754419, 8.994748], - [-12.752917, 8.99625], - [-12.752917, 8.996865], - [-12.752915, 8.996866], - [-12.752419, 8.996491], - [-12.750581, 8.995514], - [-12.748507, 8.994874], - [-12.746031, 8.994417], - [-12.744849, 8.993318], - [-12.744395, 8.992463], - [-12.74393, 8.989992], - [-12.743422, 8.989394], - [-12.742399, 8.987113], - [-12.741901, 8.984459], - [-12.742118, 8.981235], - [-12.742565, 8.979523], - [-12.741192, 8.973973], - [-12.741253, 8.973091], - [-12.741988, 8.970542], - [-12.744437, 8.967673], - [-12.745138, 8.96717], - [-12.745454, 8.966713], - [-12.746214, 8.96616], - [-12.746889, 8.965899], - [-12.748498, 8.964621], - [-12.750957, 8.962192], - [-12.75325, 8.96074], - [-12.754048, 8.960453], - [-12.756173, 8.959192], - [-12.759558, 8.956497], - [-12.761755, 8.955769], - [-12.762639, 8.955648], - [-12.763055, 8.955698], - [-12.763636, 8.960341], - [-12.764041, 8.9602], - [-12.766956, 8.958107], - [-12.76714, 8.957114], - [-12.767666, 8.956516], - [-12.769092, 8.955635], - [-12.769775, 8.956084], - [-12.77961, 8.949024], - [-12.780872, 8.949282], - [-12.781607, 8.951488], - [-12.782615, 8.951466], - [-12.786111, 8.95053], - [-12.78908, 8.949406], - [-12.79024, 8.948449], - [-12.791313, 8.947118], - [-12.791819, 8.945599], - [-12.791941, 8.944698], - [-12.792833, 8.942609], - [-12.7927, 8.942006], - [-12.792745, 8.940668], - [-12.793533, 8.9386], - [-12.790254, 8.938131], - [-12.791628, 8.935635], - [-12.792193, 8.933444], - [-12.792224, 8.931325], - [-12.792967, 8.929957], - [-12.793146, 8.929264], - [-12.793072, 8.928809], - [-12.792372, 8.927925], - [-12.7914, 8.926251], - [-12.791401, 8.92625], - [-12.793006, 8.926249], - [-12.791807, 8.924497], - [-12.791568, 8.922805], - [-12.791658, 8.922467], - [-12.792581, 8.921893], - [-12.793697, 8.920864], - [-12.795053, 8.920775], - [-12.795812, 8.920422], - [-12.795842, 8.920025], - [-12.795098, 8.918922], - [-12.794829, 8.918216], - [-12.794308, 8.917759], - [-12.793758, 8.915759], - [-12.794115, 8.915214], - [-12.795008, 8.915493], - [-12.795172, 8.913287], - [-12.79486, 8.913197], - [-12.794963, 8.910564], - [-12.794814, 8.909652], - [-12.794233, 8.908489], - [-12.793683, 8.904841], - [-12.793608, 8.901088], - [-12.79053, 8.900574], - [-12.790675, 8.898632], - [-12.794114, 8.893511], - [-12.795039, 8.893098], - [-12.795857, 8.892451], - [-12.796989, 8.891142], - [-12.797145, 8.890865], - [-12.798039, 8.891311], - [-12.798254, 8.891172], - [-12.798198, 8.891391], - [-12.800369, 8.892476], - [-12.800578, 8.8922], - [-12.800578, 8.891495], - [-12.800102, 8.891053], - [-12.800489, 8.889965], - [-12.802008, 8.887875], - [-12.802025, 8.887858] - ] - ], - "type": "Polygon" - }, - "id": 494, - "properties": { - "cc:admin:id": ["13"], - "cc:oBld:total": 15, - "cc:pop:fifteen-to-twenty-four": 1505.5870507852665, - "cc:pop:grid3-total": 8388.528455460753, - "cc:pop:kontur-total": 8701.959004026636, - "cc:pop:men": 3975.7334188655796, - "cc:pop:sixty-plus": 458.9186654745843, - "cc:pop:total": 8384.651005518175, - "cc:pop:under-five": 1312.8354762862245, - "cc:pop:women": 4408.917586652594, - "cc:pop:women-fiften-to-forty-nine": 2194.596137452473, - "cc:pop:wp-total": 8643.541540792856, - "cc:pop:wp-total-UN": 10019.314381974384, - "cc:id": "494", - "cc:Name": "Romeni MCHP", - "cc:site": [-12.7202, 8.899], - "user:parentName": "Bureh Kasseh Maconteh", - "user:code": "OU_255047", - "user:orgUnitId": "GCbYmPqcOOP", - "user:level": "4", - "user:parentId": "TA7NvKjsn4A" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.528749, 8.35125], - [-12.517083, 8.345416], - [-12.518749, 8.337084], - [-12.51875, 8.334584], - [-12.51625, 8.332084], - [-12.505417, 8.32875], - [-12.50375, 8.328749], - [-12.499582, 8.332916], - [-12.492083, 8.332917], - [-12.490416, 8.33375], - [-12.480969, 8.33375], - [-12.480972, 8.33475], - [-12.481439, 8.335549], - [-12.480416, 8.337083], - [-12.474583, 8.340417], - [-12.474582, 8.344793], - [-12.46875, 8.344794], - [-12.468749, 8.348084], - [-12.464255, 8.348085], - [-12.461193, 8.353387], - [-12.461328, 8.353577], - [-12.461307, 8.354319], - [-12.462097, 8.355231], - [-12.462097, 8.355232], - [-12.45625, 8.354584], - [-12.454583, 8.354584], - [-12.45125, 8.357917], - [-12.450416, 8.359583], - [-12.440417, 8.357084], - [-12.432917, 8.359583], - [-12.434582, 8.364583], - [-12.43125, 8.364584], - [-12.430103, 8.366303], - [-12.430101, 8.366303], - [-12.42993, 8.3661], - [-12.429822, 8.36601], - [-12.424582, 8.371249], - [-12.42125, 8.371249], - [-12.421249, 8.370417], - [-12.41625, 8.369583], - [-12.413749, 8.367917], - [-12.40125, 8.369583], - [-12.399583, 8.367083], - [-12.399582, 8.359584], - [-12.397083, 8.357917], - [-12.396249, 8.355417], - [-12.394583, 8.35625], - [-12.394582, 8.360416], - [-12.38625, 8.360417], - [-12.38375, 8.362084], - [-12.382917, 8.36375], - [-12.382917, 8.365416], - [-12.386249, 8.367083], - [-12.387274, 8.368619], - [-12.39634, 8.36884], - [-12.397917, 8.370417], - [-12.39875, 8.374583], - [-12.402916, 8.374583], - [-12.404582, 8.372084], - [-12.404929, 8.372084], - [-12.407432, 8.375746], - [-12.412516, 8.382324], - [-12.41272, 8.38258], - [-12.413408, 8.3829], - [-12.41401, 8.38399], - [-12.414765, 8.383665], - [-12.415667, 8.383535], - [-12.416499, 8.383159], - [-12.419302, 8.381254], - [-12.420646, 8.380533], - [-12.421175, 8.380342], - [-12.422916, 8.382084], - [-12.422917, 8.384583], - [-12.426249, 8.38375], - [-12.426309, 8.383809], - [-12.425783, 8.385182], - [-12.427916, 8.38625], - [-12.427917, 8.388749], - [-12.435416, 8.387917], - [-12.43625, 8.392916], - [-12.442082, 8.392917], - [-12.442917, 8.39375], - [-12.454582, 8.393749], - [-12.454583, 8.389681], - [-12.458749, 8.389681], - [-12.458749, 8.389682], - [-12.457965, 8.390774], - [-12.457519, 8.391947], - [-12.456838, 8.392615], - [-12.456747, 8.392902], - [-12.456947, 8.393501], - [-12.45875, 8.394583], - [-12.467082, 8.392917], - [-12.467917, 8.394584], - [-12.467917, 8.402083], - [-12.476249, 8.402084], - [-12.47625, 8.40375], - [-12.477083, 8.405416], - [-12.477916, 8.40625], - [-12.477917, 8.414322], - [-12.478113, 8.41446], - [-12.479743, 8.414766], - [-12.480427, 8.414583], - [-12.484582, 8.414584], - [-12.485082, 8.413835], - [-12.485988, 8.413642], - [-12.487925, 8.413785], - [-12.488446, 8.413586], - [-12.486649, 8.40875], - [-12.487916, 8.408749], - [-12.492083, 8.405416], - [-12.492587, 8.403903], - [-12.4914, 8.403233], - [-12.492083, 8.397083], - [-12.494583, 8.395416], - [-12.499582, 8.39375], - [-12.500417, 8.393749], - [-12.505417, 8.39125], - [-12.508749, 8.391249], - [-12.509583, 8.386249], - [-12.517082, 8.383749], - [-12.51625, 8.379584], - [-12.517917, 8.379583], - [-12.521249, 8.37625], - [-12.522083, 8.37375], - [-12.524582, 8.371249], - [-12.520417, 8.362917], - [-12.519583, 8.359583], - [-12.528749, 8.35125] - ] - ], - "type": "Polygon" - }, - "id": 495, - "properties": { - "cc:admin:id": ["149"], - "cc:oBld:total": 18, - "cc:pop:fifteen-to-twenty-four": 1127.0466657143236, - "cc:pop:grid3-total": 4637.3642938867415, - "cc:pop:kontur-total": 7202.58697679179, - "cc:pop:men": 2809.532559977036, - "cc:pop:sixty-plus": 379.04666263937577, - "cc:pop:total": 6060.951922788082, - "cc:pop:under-five": 970.4464788948097, - "cc:pop:women": 3251.4193628110443, - "cc:pop:women-fiften-to-forty-nine": 1597.772194458985, - "cc:pop:wp-total": 5118.9724550883175, - "cc:pop:wp-total-UN": 5942.15003790762, - "cc:id": "495", - "cc:Name": "Ronietta MCHP", - "cc:site": [-12.4601, 8.36326], - "user:parentName": "Yoni", - "user:code": "OU_268241", - "user:orgUnitId": "B9RxRfRUi2R", - "user:level": "4", - "user:parentId": "NNE0YMCDZkO" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.99186, 8.554362], - [-11.987916, 8.550417], - [-11.981249, 8.549583], - [-11.977917, 8.546249], - [-11.977916, 8.541634], - [-11.977302, 8.541841], - [-11.975198, 8.541841], - [-11.973547, 8.542101], - [-11.971633, 8.54255], - [-11.969583, 8.537084], - [-11.974582, 8.52625], - [-11.973749, 8.524584], - [-11.965417, 8.524584], - [-11.962082, 8.527916], - [-11.95875, 8.529584], - [-11.958749, 8.532917], - [-11.956249, 8.534583], - [-11.950171, 8.536241], - [-11.946796, 8.530397], - [-11.938983, 8.530396], - [-11.938937, 8.530314], - [-11.939583, 8.527084], - [-11.942592, 8.524675], - [-11.935155, 8.524674], - [-11.933239, 8.521356], - [-11.933749, 8.51625], - [-11.930416, 8.514584], - [-11.924583, 8.514584], - [-11.917917, 8.518749], - [-11.917082, 8.523749], - [-11.908749, 8.524583], - [-11.90375, 8.519583], - [-11.903749, 8.510417], - [-11.90125, 8.507917], - [-11.900416, 8.51125], - [-11.897916, 8.513749], - [-11.896249, 8.513749], - [-11.890417, 8.51125], - [-11.888597, 8.507614], - [-11.888134, 8.507896], - [-11.886264, 8.508454], - [-11.882573, 8.510236], - [-11.877406, 8.51148], - [-11.876788, 8.511931], - [-11.875154, 8.513681], - [-11.87495, 8.513744], - [-11.872977, 8.514279], - [-11.871824, 8.514922], - [-11.869877, 8.515635], - [-11.86439, 8.51688], - [-11.861589, 8.518005], - [-11.860246, 8.517937], - [-11.859583, 8.52125], - [-11.860246, 8.524571], - [-11.856312, 8.519345], - [-11.854094, 8.519345], - [-11.850187, 8.526109], - [-11.847186, 8.526109], - [-11.845879, 8.524368], - [-11.845654, 8.52444], - [-11.845234, 8.524881], - [-11.843416, 8.528031], - [-11.845315, 8.531321], - [-11.845314, 8.531323], - [-11.844582, 8.53125], - [-11.834583, 8.53125], - [-11.832916, 8.532083], - [-11.83125, 8.532084], - [-11.824583, 8.538749], - [-11.818799, 8.537304], - [-11.818082, 8.539411], - [-11.818205, 8.540089], - [-11.819972, 8.544257], - [-11.820601, 8.546119], - [-11.820481, 8.547246], - [-11.819862, 8.548729], - [-11.819536, 8.549401], - [-11.8221, 8.5508], - [-11.8253, 8.5521], - [-11.829599, 8.554499], - [-11.8338, 8.5565], - [-11.839499, 8.560999], - [-11.8448, 8.5638], - [-11.8477, 8.566], - [-11.852399, 8.570399], - [-11.855199, 8.572599], - [-11.8606, 8.5754], - [-11.8659, 8.5796], - [-11.870499, 8.581899], - [-11.874899, 8.584299], - [-11.8781, 8.5856], - [-11.882399, 8.587999], - [-11.886599, 8.590099], - [-11.8926, 8.5947], - [-11.900499, 8.598699], - [-11.903, 8.5995], - [-11.9081, 8.6006], - [-11.912599, 8.602799], - [-11.9158, 8.6041], - [-11.920099, 8.606599], - [-11.924299, 8.608699], - [-11.929999, 8.613099], - [-11.9353, 8.6158], - [-11.941999, 8.621099], - [-11.9446, 8.616599], - [-11.947, 8.613799], - [-11.949899, 8.6109], - [-11.953799, 8.608], - [-11.956999, 8.6066], - [-11.958999, 8.6052], - [-11.962199, 8.6023], - [-11.9642, 8.599599], - [-11.966599, 8.593799], - [-11.9666, 8.5914], - [-11.9638, 8.5852], - [-11.9617, 8.581899], - [-11.9611, 8.579], - [-11.962, 8.5767], - [-11.964299, 8.5744], - [-11.966399, 8.5738], - [-11.9691, 8.5736], - [-11.9788, 8.573799], - [-11.982299, 8.573299], - [-11.984699, 8.5716], - [-11.986399, 8.568799], - [-11.987199, 8.5646], - [-11.9879, 8.562199], - [-11.990999, 8.5555], - [-11.99186, 8.554362] - ] - ], - "type": "Polygon" - }, - "id": 496, - "properties": { - "cc:admin:id": ["36"], - "cc:oBld:total": 1139, - "cc:pop:fifteen-to-twenty-four": 2355.607909060791, - "cc:pop:grid3-total": 9323.229441270742, - "cc:pop:kontur-total": 13449.98295473484, - "cc:pop:men": 5911.615561175354, - "cc:pop:sixty-plus": 830.6700477909109, - "cc:pop:total": 12836.175476712546, - "cc:pop:under-five": 2025.2445424400855, - "cc:pop:women": 6924.559915537194, - "cc:pop:women-fiften-to-forty-nine": 3357.918387820159, - "cc:pop:wp-total": 9693.751038872177, - "cc:pop:wp-total-UN": 11231.795793328267, - "cc:id": "496", - "cc:Name": "Rosengbeh MCHP", - "cc:site": [-11.9275, 8.5859], - "user:parentName": "Tane", - "user:code": "OU_268224", - "user:orgUnitId": "x3ti3t9eOuX", - "user:level": "4", - "user:parentId": "xhyjU2SVewz" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.547916, 8.81125], - [-12.542633, 8.809929], - [-12.54268, 8.809866], - [-12.540967, 8.805871], - [-12.540116, 8.806279], - [-12.540114, 8.806278], - [-12.537917, 8.800417], - [-12.537916, 8.800185], - [-12.536714, 8.800921], - [-12.536276, 8.799909], - [-12.535312, 8.798882], - [-12.535187, 8.797598], - [-12.534129, 8.796098], - [-12.533563, 8.795753], - [-12.532524, 8.794324], - [-12.532239, 8.793633], - [-12.532962, 8.793241], - [-12.533485, 8.792892], - [-12.535539, 8.790549], - [-12.536523, 8.789821], - [-12.536326, 8.789418], - [-12.53716, 8.789097], - [-12.537417, 8.788595], - [-12.537085, 8.787586], - [-12.536099, 8.787198], - [-12.535451, 8.788394], - [-12.53545, 8.788395], - [-12.53337, 8.786152], - [-12.532906, 8.785045], - [-12.532877, 8.782888], - [-12.5332, 8.781261], - [-12.533185, 8.780561], - [-12.532685, 8.779298], - [-12.532412, 8.777917], - [-12.535416, 8.777916], - [-12.535416, 8.775965], - [-12.5289, 8.778999], - [-12.524599, 8.7814], - [-12.5162, 8.785299], - [-12.5103, 8.786699], - [-12.504999, 8.7889], - [-12.499099, 8.7903], - [-12.4935, 8.793299], - [-12.4917, 8.794799], - [-12.4884, 8.8007], - [-12.4877, 8.804399], - [-12.4884, 8.8079], - [-12.4926, 8.8162], - [-12.495, 8.8192], - [-12.499199, 8.823399], - [-12.501499, 8.825099], - [-12.5037, 8.8262], - [-12.507, 8.8267], - [-12.514799, 8.826899], - [-12.517099, 8.8274], - [-12.5204, 8.8293], - [-12.5242, 8.8333], - [-12.527199, 8.839599], - [-12.527599, 8.841899], - [-12.526, 8.847599], - [-12.525799, 8.8504], - [-12.5257, 8.8563], - [-12.525899, 8.875199], - [-12.5258, 8.8753], - [-12.526732, 8.876541], - [-12.531901, 8.87769], - [-12.531923, 8.877621], - [-12.532282, 8.877002], - [-12.532671, 8.876731], - [-12.533262, 8.875547], - [-12.533348, 8.874579], - [-12.533165, 8.874171], - [-12.533023, 8.871555], - [-12.533127, 8.871123], - [-12.533776, 8.870721], - [-12.535447, 8.867837], - [-12.537312, 8.865528], - [-12.538271, 8.865123], - [-12.540462, 8.86286], - [-12.542681, 8.862396], - [-12.543471, 8.861954], - [-12.543955, 8.861394], - [-12.545221, 8.860748], - [-12.545228, 8.86074], - [-12.544582, 8.860416], - [-12.542916, 8.855417], - [-12.542082, 8.855416], - [-12.538749, 8.854582], - [-12.536734, 8.849207], - [-12.536677, 8.8492], - [-12.53375, 8.840417], - [-12.53375, 8.839583], - [-12.535417, 8.839582], - [-12.542082, 8.834582], - [-12.537917, 8.82625], - [-12.542917, 8.82375], - [-12.547082, 8.823749], - [-12.545417, 8.820416], - [-12.547916, 8.81125] - ] - ], - "type": "Polygon" - }, - "id": 497, - "properties": { - "cc:admin:id": ["130"], - "cc:oBld:total": 83, - "cc:pop:fifteen-to-twenty-four": 955.5461047379281, - "cc:pop:grid3-total": 2541.634314189818, - "cc:pop:kontur-total": 5481.5226175824, - "cc:pop:men": 2380.723469757066, - "cc:pop:sixty-plus": 329.1221960221962, - "cc:pop:total": 5127.883397805993, - "cc:pop:under-five": 796.54807676331, - "cc:pop:women": 2747.1599280489254, - "cc:pop:women-fiften-to-forty-nine": 1316.4887840887848, - "cc:pop:wp-total": 4156.685771680057, - "cc:pop:wp-total-UN": 4822.599811785422, - "cc:id": "497", - "cc:Name": "Rosint Buya MCHP", - "cc:site": [-12.4929, 8.8152], - "user:parentName": "Buya Romende", - "user:code": "OU_255029", - "user:orgUnitId": "el8sgzyHuEe", - "user:level": "4", - "user:parentId": "Pc3JTyqnsmL" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.216954, 8.488087], - [-13.216297, 8.4879], - [-13.215192, 8.487706], - [-13.215067, 8.488289], - [-13.214869, 8.488263], - [-13.214479, 8.488178], - [-13.214116, 8.488102], - [-13.21452, 8.486578], - [-13.214199, 8.486365], - [-13.213881, 8.486181], - [-13.214262, 8.485305], - [-13.214274, 8.485269], - [-13.212596, 8.484424], - [-13.212366, 8.48503], - [-13.211751, 8.484907], - [-13.211669, 8.484206], - [-13.211909, 8.483762], - [-13.212214, 8.483066], - [-13.212045, 8.483038], - [-13.211945, 8.483026], - [-13.21176, 8.483039], - [-13.211614, 8.483309], - [-13.211119, 8.484529], - [-13.209904, 8.485325], - [-13.208766, 8.486294], - [-13.208475, 8.486563], - [-13.208356, 8.486681], - [-13.208028, 8.48709], - [-13.207926, 8.488492], - [-13.207828, 8.488567], - [-13.207466, 8.488556], - [-13.206859, 8.488556], - [-13.206495, 8.488574], - [-13.20474, 8.488615], - [-13.204771, 8.489005], - [-13.204822, 8.489449], - [-13.204789, 8.489921], - [-13.204085, 8.490256], - [-13.204351, 8.490336], - [-13.205743, 8.490714], - [-13.206057, 8.490931], - [-13.207107, 8.491664], - [-13.20742, 8.49211], - [-13.215399, 8.494599], - [-13.216866, 8.493476], - [-13.216387, 8.493482], - [-13.216372, 8.493219], - [-13.216284, 8.492806], - [-13.215703, 8.49264], - [-13.215466, 8.492364], - [-13.215717, 8.49148], - [-13.21634, 8.489753], - [-13.216356, 8.489693], - [-13.216553, 8.489137], - [-13.216769, 8.488564], - [-13.216954, 8.488087] - ] - ], - "type": "Polygon" - }, - "id": 498, - "properties": { - "cc:admin:id": ["26"], - "cc:oBld:total": 1522, - "cc:pop:fifteen-to-twenty-four": 4298.7346321432615, - "cc:pop:grid3-total": 20728.395303981903, - "cc:pop:kontur-total": 10442, - "cc:pop:men": 9374.661626487692, - "cc:pop:sixty-plus": 1461.30181486782, - "cc:pop:total": 18737.208867981913, - "cc:pop:under-five": 2164.2028255826235, - "cc:pop:women": 9362.547241494223, - "cc:pop:women-fiften-to-forty-nine": 5019.243761842364, - "cc:pop:wp-total": 17387.65270624043, - "cc:pop:wp-total-UN": 20157.34785344336, - "cc:id": "498", - "cc:Name": "Ross Road Health Centre", - "cc:site": [-13.2104, 8.489], - "user:parentName": "Freetown", - "user:code": "OU_278318", - "user:orgUnitId": "bPqP6eRfkyn", - "user:level": "4", - "user:parentId": "C9uduqDZr9d" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.773607, 8.195904], - [-12.772989, 8.195582], - [-12.771719, 8.19446], - [-12.771208, 8.193808], - [-12.770416, 8.191971], - [-12.769536, 8.191243], - [-12.768033, 8.190661], - [-12.765069, 8.188747], - [-12.763618, 8.186679], - [-12.763094, 8.185585], - [-12.761185, 8.183457], - [-12.757759, 8.180993], - [-12.760411, 8.177939], - [-12.760533, 8.177855], - [-12.757916, 8.174584], - [-12.755416, 8.17375], - [-12.750417, 8.173749], - [-12.751249, 8.169584], - [-12.745417, 8.164584], - [-12.744583, 8.16375], - [-12.743749, 8.160417], - [-12.740636, 8.159171], - [-12.7407, 8.159031], - [-12.740581, 8.158044], - [-12.74007, 8.157268], - [-12.740333, 8.156496], - [-12.740469, 8.154953], - [-12.739693, 8.154947], - [-12.739443, 8.15366], - [-12.739701, 8.15366], - [-12.739699, 8.154174], - [-12.739956, 8.154176], - [-12.740221, 8.153148], - [-12.740736, 8.153407], - [-12.74074, 8.152893], - [-12.741256, 8.152895], - [-12.741347, 8.152469], - [-12.740484, 8.152633], - [-12.740483, 8.152632], - [-12.740656, 8.152288], - [-12.741262, 8.151865], - [-12.741265, 8.151351], - [-12.74075, 8.15109], - [-12.740525, 8.15175], - [-12.740216, 8.151808], - [-12.739975, 8.150828], - [-12.739457, 8.150953], - [-12.738301, 8.150046], - [-12.737917, 8.149142], - [-12.73765, 8.149006], - [-12.737163, 8.14764], - [-12.738185, 8.14734], - [-12.738702, 8.147342], - [-12.738963, 8.146958], - [-12.737412, 8.147077], - [-12.737029, 8.147265], - [-12.734582, 8.140417], - [-12.730416, 8.141249], - [-12.730271, 8.141176], - [-12.730208, 8.140985], - [-12.731759, 8.140735], - [-12.73167, 8.139584], - [-12.731249, 8.139583], - [-12.730295, 8.138629], - [-12.730218, 8.138923], - [-12.729185, 8.138918], - [-12.729182, 8.139432], - [-12.727116, 8.139164], - [-12.727118, 8.138649], - [-12.726344, 8.138386], - [-12.725446, 8.137352], - [-12.725451, 8.136579], - [-12.725839, 8.136194], - [-12.728167, 8.13595], - [-12.728304, 8.135747], - [-12.728234, 8.13554], - [-12.727395, 8.135429], - [-12.727138, 8.135043], - [-12.725086, 8.134985], - [-12.724557, 8.134256], - [-12.72404, 8.134252], - [-12.723661, 8.132961], - [-12.723789, 8.131691], - [-12.724578, 8.130649], - [-12.725143, 8.13016], - [-12.724803, 8.128798], - [-12.722961, 8.130845], - [-12.721277, 8.132695], - [-12.719865, 8.13471], - [-12.719365, 8.13575], - [-12.718763, 8.136084], - [-12.717361, 8.136632], - [-12.715604, 8.136789], - [-12.714282, 8.136605], - [-12.712195, 8.13572], - [-12.710643, 8.135088], - [-12.708045, 8.134195], - [-12.70549, 8.134174], - [-12.703391, 8.134381], - [-12.701791, 8.134256], - [-12.700212, 8.133653], - [-12.697595, 8.131888], - [-12.695807, 8.130391], - [-12.69399, 8.129161], - [-12.693199, 8.128735], - [-12.693404, 8.128117], - [-12.690198, 8.126538], - [-12.687729, 8.126251], - [-12.682977, 8.125967], - [-12.680016, 8.126019], - [-12.678899, 8.1262], - [-12.676952, 8.12685], - [-12.676198, 8.127551], - [-12.674964, 8.128606], - [-12.675104, 8.129168], - [-12.674224, 8.129785], - [-12.673056, 8.130381], - [-12.671938, 8.131031], - [-12.670563, 8.131965], - [-12.669783, 8.132719], - [-12.668484, 8.133083], - [-12.665731, 8.133161], - [-12.66168, 8.13329], - [-12.659991, 8.133654], - [-12.658666, 8.134278], - [-12.657343, 8.135056], - [-12.656616, 8.135966], - [-12.656512, 8.136823], - [-12.656641, 8.138329], - [-12.656251, 8.140745], - [-12.655836, 8.143056], - [-12.65588, 8.144926], - [-12.655733, 8.145055], - [-12.656003, 8.145287], - [-12.655326, 8.148543], - [-12.654197, 8.15137], - [-12.65333, 8.151717], - [-12.653369, 8.151367], - [-12.652412, 8.151455], - [-12.650786, 8.150964], - [-12.648979, 8.150696], - [-12.647174, 8.149785], - [-12.643556, 8.149635], - [-12.643509, 8.149737], - [-12.645416, 8.152917], - [-12.646249, 8.161249], - [-12.639583, 8.160417], - [-12.638749, 8.161249], - [-12.633733, 8.160623], - [-12.633723, 8.16065], - [-12.63335, 8.161351], - [-12.632927, 8.162633], - [-12.633194, 8.166368], - [-12.633167, 8.166532], - [-12.630417, 8.167083], - [-12.625417, 8.162917], - [-12.624582, 8.15875], - [-12.622083, 8.15875], - [-12.621249, 8.165417], - [-12.61625, 8.169583], - [-12.615352, 8.169484], - [-12.612776, 8.169484], - [-12.608868, 8.176249], - [-12.60125, 8.17625], - [-12.601249, 8.178749], - [-12.597917, 8.179584], - [-12.594583, 8.18375], - [-12.594583, 8.192916], - [-12.597916, 8.197084], - [-12.597196, 8.205005], - [-12.597194, 8.205006], - [-12.592225, 8.202025], - [-12.590799, 8.2054], - [-12.590199, 8.2081], - [-12.5897, 8.212899], - [-12.589, 8.215699], - [-12.587099, 8.2202], - [-12.586399, 8.2239], - [-12.5862, 8.2289], - [-12.586399, 8.236999], - [-12.587, 8.240899], - [-12.5889, 8.2443], - [-12.594299, 8.249799], - [-12.596599, 8.252799], - [-12.5977, 8.2555], - [-12.597999, 8.2584], - [-12.597899, 8.2614], - [-12.597299, 8.2642], - [-12.5952, 8.268999], - [-12.6021, 8.274999], - [-12.6053, 8.2764], - [-12.6096, 8.2788], - [-12.6128, 8.2801], - [-12.6185, 8.282699], - [-12.6226, 8.2832], - [-12.6282, 8.283199], - [-12.633999, 8.2827], - [-12.639799, 8.2803], - [-12.6456, 8.278799], - [-12.648799, 8.2771], - [-12.653099, 8.2737], - [-12.6551, 8.272699], - [-12.6572, 8.272099], - [-12.662599, 8.2716], - [-12.665099, 8.2711], - [-12.669599, 8.269], - [-12.676299, 8.2673], - [-12.6808, 8.265399], - [-12.6834, 8.264699], - [-12.688699, 8.2642], - [-12.691299, 8.2636], - [-12.695699, 8.2614], - [-12.6988, 8.260099], - [-12.7032, 8.257899], - [-12.7067, 8.257199], - [-12.714799, 8.2569], - [-12.717399, 8.256299], - [-12.719999, 8.254299], - [-12.721799, 8.2511], - [-12.724399, 8.2455], - [-12.725399, 8.2415], - [-12.7263, 8.2396], - [-12.729199, 8.2372], - [-12.731199, 8.2349], - [-12.7344, 8.229399], - [-12.738, 8.225799], - [-12.7402, 8.224199], - [-12.7441, 8.222299], - [-12.7464, 8.220599], - [-12.7492, 8.217999], - [-12.757399, 8.2097], - [-12.761299, 8.2064], - [-12.7668, 8.203399], - [-12.771599, 8.1987], - [-12.773607, 8.195904] - ] - ], - "type": "Polygon" - }, - "id": 499, - "properties": { - "cc:admin:id": ["12"], - "cc:oBld:total": 1143, - "cc:pop:fifteen-to-twenty-four": 2679.277010255618, - "cc:pop:grid3-total": 18080.168560361133, - "cc:pop:kontur-total": 14959.037904795692, - "cc:pop:men": 6727.150573746907, - "cc:pop:sixty-plus": 940.6996502047965, - "cc:pop:total": 14387.784255779703, - "cc:pop:under-five": 2453.8614740627813, - "cc:pop:women": 7660.633682032781, - "cc:pop:women-fiften-to-forty-nine": 3627.957261691329, - "cc:pop:wp-total": 12312.313697959402, - "cc:pop:wp-total-UN": 14296.85776884697, - "cc:id": "499", - "cc:Name": "Rotifunk CHC", - "cc:site": [-12.6772, 8.2282], - "user:parentName": "Bumpeh", - "user:code": "OU_247032", - "user:orgUnitId": "gUPhNWkSXvD", - "user:level": "4", - "user:parentId": "nOYt1LtFSyU" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.606752, 7.219024], - [-11.606299, 7.218399], - [-11.603999, 7.211299], - [-11.601999, 7.206799], - [-11.601399, 7.204099], - [-11.600799, 7.199199], - [-11.600099, 7.196499], - [-11.5978, 7.1911], - [-11.597299, 7.188099], - [-11.5971, 7.185099], - [-11.5972, 7.177899], - [-11.5977, 7.174999], - [-11.5999, 7.169699], - [-11.600399, 7.166299], - [-11.599899, 7.1628], - [-11.5978, 7.1584], - [-11.596999, 7.154599], - [-11.5967, 7.148499], - [-11.5967, 7.1298], - [-11.5963, 7.1248], - [-11.595599, 7.121899], - [-11.593599, 7.117499], - [-11.592799, 7.113699], - [-11.592499, 7.107599], - [-11.592199, 7.066499], - [-11.592099, 7.063399], - [-11.5915, 7.0596], - [-11.589199, 7.054099], - [-11.587599, 7.048299], - [-11.585299, 7.042999], - [-11.5835, 7.0363], - [-11.581399, 7.031799], - [-11.580699, 7.027999], - [-11.579899, 7.019699], - [-11.579099, 7.016799], - [-11.577499, 7.013199], - [-11.575599, 7.006499], - [-11.5734, 7.001], - [-11.571999, 6.992699], - [-11.567099, 6.981899], - [-11.5598, 6.9695], - [-11.5548, 6.979799], - [-11.5486, 6.989499], - [-11.5471, 6.992799], - [-11.5455, 6.998299], - [-11.543799, 7.0029], - [-11.543099, 7.0066], - [-11.5422, 7.014399], - [-11.5411, 7.017999], - [-11.5375, 7.023599], - [-11.5361, 7.027199], - [-11.5355, 7.032099], - [-11.5357, 7.0359], - [-11.5362, 7.0386], - [-11.5388, 7.0442], - [-11.539499, 7.0481], - [-11.539199, 7.052599], - [-11.537899, 7.055899], - [-11.534, 7.060799], - [-11.5328, 7.063199], - [-11.5312, 7.069099], - [-11.529199, 7.074], - [-11.5289, 7.0778], - [-11.5294, 7.0803], - [-11.5318, 7.0861], - [-11.5324, 7.0903], - [-11.532699, 7.097999], - [-11.533399, 7.102099], - [-11.535799, 7.107899], - [-11.5363, 7.1107], - [-11.5366, 7.1156], - [-11.536799, 7.133299], - [-11.536699, 7.1362], - [-11.536, 7.139499], - [-11.535099, 7.1415], - [-11.530699, 7.1473], - [-11.528199, 7.1519], - [-11.524899, 7.1557], - [-11.5188, 7.1605], - [-11.5164, 7.164399], - [-11.515398, 7.166702], - [-11.5139, 7.172499], - [-11.5128, 7.174899], - [-11.5095, 7.179199], - [-11.5079, 7.182399], - [-11.506499, 7.1883], - [-11.5046, 7.192699], - [-11.5035, 7.196599], - [-11.5022, 7.198699], - [-11.4954, 7.201499], - [-11.489899, 7.2053], - [-11.4861, 7.2085], - [-11.486, 7.211799], - [-11.4898, 7.217099], - [-11.4921, 7.218199], - [-11.497199, 7.218599], - [-11.499599, 7.219299], - [-11.503099, 7.222199], - [-11.506699, 7.228999], - [-11.507099, 7.2325], - [-11.502965, 7.240854], - [-11.50361, 7.241479], - [-11.505199, 7.242491], - [-11.505854, 7.242662], - [-11.50592, 7.243642], - [-11.506306, 7.244059], - [-11.506198, 7.244485], - [-11.505716, 7.24489], - [-11.506198, 7.245519], - [-11.505802, 7.247139], - [-11.504931, 7.248087], - [-11.504276, 7.248099], - [-11.503996, 7.248365], - [-11.504013, 7.248513], - [-11.506722, 7.248513], - [-11.50625, 7.248112], - [-11.506357, 7.247542], - [-11.507157, 7.247397], - [-11.507855, 7.247003], - [-11.507996, 7.246742], - [-11.508907, 7.246428], - [-11.508908, 7.246429], - [-11.508866, 7.246587], - [-11.509053, 7.246646], - [-11.509119, 7.246379], - [-11.510021, 7.246075], - [-11.510317, 7.245799], - [-11.511267, 7.245761], - [-11.511772, 7.245048], - [-11.51207, 7.244999], - [-11.512308, 7.24459], - [-11.512554, 7.24434], - [-11.512492, 7.24427], - [-11.513375, 7.242741], - [-11.513376, 7.242742], - [-11.513484, 7.24355], - [-11.513909, 7.243874], - [-11.514227, 7.243694], - [-11.513939, 7.241795], - [-11.513933, 7.241774], - [-11.513949, 7.241748], - [-11.514877, 7.241748], - [-11.515138, 7.242418], - [-11.515904, 7.244747], - [-11.515468, 7.246501], - [-11.515605, 7.247378], - [-11.515814, 7.24779], - [-11.517964, 7.250213], - [-11.518192, 7.250891], - [-11.51821, 7.25262], - [-11.51807, 7.25322], - [-11.518219, 7.253871], - [-11.518446, 7.253758], - [-11.51875, 7.253191], - [-11.518652, 7.25299], - [-11.518957, 7.252506], - [-11.518714, 7.252293], - [-11.51893, 7.252197], - [-11.519764, 7.254342], - [-11.52037, 7.253959], - [-11.521019, 7.253814], - [-11.520677, 7.253015], - [-11.520678, 7.253014], - [-11.523919, 7.253013], - [-11.527559, 7.246709], - [-11.527648, 7.246951], - [-11.528636, 7.248563], - [-11.529892, 7.249733], - [-11.530399, 7.250467], - [-11.532856, 7.2512], - [-11.534389, 7.251847], - [-11.534902, 7.252117], - [-11.537917, 7.244584], - [-11.547916, 7.247083], - [-11.549583, 7.248749], - [-11.55625, 7.245417], - [-11.566249, 7.243749], - [-11.566249, 7.242917], - [-11.565416, 7.242083], - [-11.564583, 7.237916], - [-11.565417, 7.22875], - [-11.565916, 7.228251], - [-11.572213, 7.22825], - [-11.574103, 7.224979], - [-11.579573, 7.226802], - [-11.57763, 7.223435], - [-11.581536, 7.21667], - [-11.582578, 7.21667], - [-11.584983, 7.218692], - [-11.586108, 7.219287], - [-11.587378, 7.220362], - [-11.588303, 7.220882], - [-11.588848, 7.221419], - [-11.587917, 7.223749], - [-11.587959, 7.224218], - [-11.595546, 7.224218], - [-11.599453, 7.217453], - [-11.602452, 7.217453], - [-11.606185, 7.221185], - [-11.606414, 7.219611], - [-11.606752, 7.219024] - ] - ], - "type": "Polygon" - }, - "id": 500, - "properties": { - "cc:admin:id": ["27"], - "cc:oBld:total": 669, - "cc:pop:fifteen-to-twenty-four": 2637.8183598845562, - "cc:pop:grid3-total": 8922.585430837544, - "cc:pop:kontur-total": 14728.58640035529, - "cc:pop:men": 7015.241345367375, - "cc:pop:sixty-plus": 979.1820657666699, - "cc:pop:total": 14460.634596137654, - "cc:pop:under-five": 2439.5154227476496, - "cc:pop:women": 7445.39325077028, - "cc:pop:women-fiften-to-forty-nine": 3583.2820693929048, - "cc:pop:wp-total": 11178.7562163595, - "cc:pop:wp-total-UN": 12964.054544965213, - "cc:id": "500", - "cc:Name": "Saama MCHP", - "cc:site": [-11.5565, 7.2076], - "user:parentName": "Galliness Perri", - "user:code": "OU_260427", - "user:orgUnitId": "WZ8PTx8qQlE", - "user:level": "4", - "user:parentId": "eNtRuQrrZeo" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.8973, 7.433299], - [-11.897299, 7.4281], - [-11.895999, 7.4252], - [-11.892999, 7.4223], - [-11.887, 7.42], - [-11.8836, 7.4177], - [-11.8804, 7.413899], - [-11.879199, 7.410699], - [-11.878599, 7.406799], - [-11.8775, 7.3933], - [-11.8754, 7.3861], - [-11.8751, 7.382199], - [-11.8759, 7.377099], - [-11.8841, 7.362499], - [-11.885199, 7.358599], - [-11.8848, 7.3546], - [-11.882899, 7.348899], - [-11.877199, 7.340799], - [-11.870399, 7.33], - [-11.8649, 7.330199], - [-11.862199, 7.3306], - [-11.859799, 7.3315], - [-11.856999, 7.333], - [-11.853799, 7.3344], - [-11.849599, 7.3368], - [-11.845699, 7.3385], - [-11.8406, 7.342], - [-11.8385, 7.344899], - [-11.835999, 7.3471], - [-11.8302, 7.350299], - [-11.8256, 7.353999], - [-11.8236, 7.355399], - [-11.820399, 7.3568], - [-11.816099, 7.3592], - [-11.812899, 7.3606], - [-11.810899, 7.3619], - [-11.806999, 7.3652], - [-11.804899, 7.3665], - [-11.801099, 7.3684], - [-11.797799, 7.371], - [-11.7904, 7.378399], - [-11.7871, 7.381099], - [-11.7832, 7.382899], - [-11.7789, 7.385199], - [-11.774599, 7.3872], - [-11.7712, 7.390199], - [-11.7691, 7.392899], - [-11.7673, 7.396799], - [-11.765499, 7.3995], - [-11.762499, 7.4028], - [-11.7527, 7.412699], - [-11.7502, 7.415999], - [-11.746599, 7.4235], - [-11.745999, 7.4262], - [-11.7458, 7.432999], - [-11.746299, 7.439699], - [-11.7472, 7.4423], - [-11.748745, 7.445002], - [-11.749582, 7.444583], - [-11.751249, 7.442917], - [-11.75125, 7.442918], - [-11.757083, 7.453749], - [-11.759583, 7.452084], - [-11.761839, 7.452647], - [-11.761793, 7.452916], - [-11.763749, 7.452916], - [-11.769582, 7.445417], - [-11.773749, 7.44375], - [-11.775417, 7.451249], - [-11.785415, 7.452083], - [-11.785416, 7.452085], - [-11.785268, 7.45372], - [-11.789582, 7.453721], - [-11.789583, 7.45473], - [-11.789505, 7.454964], - [-11.790051, 7.456687], - [-11.789649, 7.457405], - [-11.788861, 7.458119], - [-11.788555, 7.459256], - [-11.789022, 7.460022], - [-11.789414, 7.460256], - [-11.790668, 7.460117], - [-11.791222, 7.459672], - [-11.791522, 7.459612], - [-11.792101, 7.459432], - [-11.792808, 7.459448], - [-11.79312, 7.459714], - [-11.793152, 7.460553], - [-11.792504, 7.461086], - [-11.792755, 7.461804], - [-11.792482, 7.462389], - [-11.793742, 7.462606], - [-11.792799, 7.46642], - [-11.795319, 7.466984], - [-11.797685, 7.467351], - [-11.798275, 7.467495], - [-11.79834, 7.466766], - [-11.799155, 7.465911], - [-11.800367, 7.465384], - [-11.800764, 7.465314], - [-11.802267, 7.463569], - [-11.80364, 7.46329], - [-11.799583, 7.472083], - [-11.80125, 7.473749], - [-11.805841, 7.47375], - [-11.806284, 7.473984], - [-11.806666, 7.47375], - [-11.809353, 7.47375], - [-11.809337, 7.47384], - [-11.809432, 7.47375], - [-11.810416, 7.473749], - [-11.8112, 7.472967], - [-11.811831, 7.473425], - [-11.811815, 7.473835], - [-11.812009, 7.474058], - [-11.812159, 7.474021], - [-11.812856, 7.47341], - [-11.813671, 7.473542], - [-11.814085, 7.475352], - [-11.815447, 7.476718], - [-11.817318, 7.477457], - [-11.817711, 7.478015], - [-11.818187, 7.477473], - [-11.818386, 7.476978], - [-11.818194, 7.475634], - [-11.818575, 7.475634], - [-11.819657, 7.476085], - [-11.819614, 7.479914], - [-11.818686, 7.479921], - [-11.816295, 7.479921], - [-11.815984, 7.480739], - [-11.815842, 7.481249], - [-11.817916, 7.48125], - [-11.823056, 7.483452], - [-11.82321, 7.483451], - [-11.823757, 7.483426], - [-11.824893, 7.484164], - [-11.825478, 7.484701], - [-11.826176, 7.485914], - [-11.827109, 7.486696], - [-11.827474, 7.487148], - [-11.827892, 7.487323], - [-11.82823, 7.487377], - [-11.828553, 7.48717], - [-11.829587, 7.4881], - [-11.830092, 7.489243], - [-11.830821, 7.489431], - [-11.830537, 7.490281], - [-11.831272, 7.490791], - [-11.832346, 7.490939], - [-11.832399, 7.490823], - [-11.83323, 7.489037], - [-11.835416, 7.489583], - [-11.837082, 7.489584], - [-11.839583, 7.492083], - [-11.844534, 7.490669], - [-11.844902, 7.491641], - [-11.8452, 7.491199], - [-11.8479, 7.489099], - [-11.854499, 7.4864], - [-11.860499, 7.483499], - [-11.866199, 7.4743], - [-11.869399, 7.4712], - [-11.876399, 7.4683], - [-11.880499, 7.4662], - [-11.883999, 7.463299], - [-11.886099, 7.459399], - [-11.887199, 7.4502], - [-11.8887, 7.4454], - [-11.893499, 7.4402], - [-11.895999, 7.437], - [-11.8973, 7.433299] - ] - ], - "type": "Polygon" - }, - "id": 501, - "properties": { - "cc:admin:id": ["88"], - "cc:oBld:total": 50, - "cc:pop:fifteen-to-twenty-four": 5465.954533955105, - "cc:pop:grid3-total": 30978.780804354625, - "cc:pop:kontur-total": 31799.059889725853, - "cc:pop:men": 15393.514967991638, - "cc:pop:sixty-plus": 2246.3745450383844, - "cc:pop:total": 30693.746005648147, - "cc:pop:under-five": 5116.586268703245, - "cc:pop:women": 15300.231037656511, - "cc:pop:women-fiften-to-forty-nine": 7244.678051599448, - "cc:pop:wp-total": 23545.682314460122, - "cc:pop:wp-total-UN": 27315.094088881022, - "cc:id": "501", - "cc:Name": "Sahn Bumpe MCHP", - "cc:site": [-11.8432, 7.4362], - "user:parentName": "Malen", - "user:code": "OU_646", - "user:orgUnitId": "NDqR2cWlVy3", - "user:level": "4", - "user:parentId": "DfUfwjM9am5" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.642917, 8.184583], - [-11.642916, 8.18125], - [-11.637917, 8.176249], - [-11.639582, 8.173749], - [-11.639583, 8.172916], - [-11.642082, 8.170416], - [-11.642082, 8.167917], - [-11.641249, 8.167083], - [-11.640416, 8.157917], - [-11.627917, 8.157083], - [-11.632916, 8.149583], - [-11.631249, 8.142917], - [-11.622916, 8.144583], - [-11.622083, 8.138749], - [-11.624582, 8.132917], - [-11.61625, 8.132084], - [-11.615416, 8.129584], - [-11.612082, 8.131249], - [-11.60625, 8.129584], - [-11.60453, 8.127864], - [-11.603184, 8.128251], - [-11.59875, 8.128651], - [-11.59875, 8.126249], - [-11.599582, 8.122084], - [-11.600417, 8.122083], - [-11.600416, 8.121249], - [-11.599583, 8.117916], - [-11.602916, 8.113749], - [-11.602917, 8.10625], - [-11.607916, 8.106249], - [-11.608749, 8.104583], - [-11.607916, 8.099584], - [-11.607083, 8.099583], - [-11.607082, 8.098749], - [-11.606249, 8.09625], - [-11.604583, 8.095416], - [-11.604582, 8.08875], - [-11.60375, 8.088749], - [-11.603749, 8.087917], - [-11.602916, 8.087916], - [-11.600416, 8.08125], - [-11.597083, 8.081249], - [-11.597082, 8.079584], - [-11.594582, 8.07625], - [-11.591916, 8.076784], - [-11.591999, 8.085599], - [-11.5918, 8.090499], - [-11.591, 8.093999], - [-11.589099, 8.0975], - [-11.5873, 8.101499], - [-11.5849, 8.104499], - [-11.582199, 8.1073], - [-11.5777, 8.110899], - [-11.5723, 8.113799], - [-11.5689, 8.116899], - [-11.567199, 8.1191], - [-11.565399, 8.123], - [-11.5632, 8.125899], - [-11.56, 8.129099], - [-11.5564, 8.1316], - [-11.5534, 8.135699], - [-11.550899, 8.1384], - [-11.547999, 8.140599], - [-11.5418, 8.142699], - [-11.540199, 8.1441], - [-11.537699, 8.1481], - [-11.536599, 8.1513], - [-11.5364, 8.154899], - [-11.536699, 8.157599], - [-11.537399, 8.160199], - [-11.5394, 8.1651], - [-11.539499, 8.1677], - [-11.5387, 8.171699], - [-11.539899, 8.1764], - [-11.539, 8.179899], - [-11.536299, 8.182199], - [-11.5298, 8.183799], - [-11.5253, 8.185799], - [-11.521, 8.186999], - [-11.5182, 8.188], - [-11.518, 8.193099], - [-11.5176, 8.196599], - [-11.5162, 8.2013], - [-11.5166, 8.2036], - [-11.5189, 8.2087], - [-11.5211, 8.2115], - [-11.525599, 8.216199], - [-11.528099, 8.219299], - [-11.5313, 8.225], - [-11.5355, 8.2292], - [-11.5376, 8.2306], - [-11.5415, 8.2324], - [-11.545099, 8.235399], - [-11.547899, 8.239099], - [-11.5499, 8.2429], - [-11.5521, 8.2457], - [-11.5582, 8.2525], - [-11.561399, 8.256499], - [-11.5653, 8.257499], - [-11.569, 8.256999], - [-11.570599, 8.255999], - [-11.5725, 8.253299], - [-11.575299, 8.251], - [-11.578699, 8.249899], - [-11.5786, 8.2362], - [-11.5784, 8.2315], - [-11.577499, 8.227899], - [-11.5752, 8.223199], - [-11.575, 8.2198], - [-11.5758, 8.217299], - [-11.5775, 8.215899], - [-11.581499, 8.2135], - [-11.585499, 8.2119], - [-11.5891, 8.209999], - [-11.593, 8.208199], - [-11.596, 8.205899], - [-11.6015, 8.200599], - [-11.604299, 8.1987], - [-11.606399, 8.1979], - [-11.6091, 8.1977], - [-11.6127, 8.1979], - [-11.6153, 8.1985], - [-11.6205, 8.200799], - [-11.623999, 8.201199], - [-11.6266, 8.200699], - [-11.631799, 8.1984], - [-11.637699, 8.1968], - [-11.641299, 8.195], - [-11.642411, 8.194734], - [-11.642083, 8.193749], - [-11.642083, 8.185417], - [-11.642917, 8.184583] - ] - ], - "type": "Polygon" - }, - "id": 502, - "properties": { - "cc:admin:id": ["98"], - "cc:oBld:total": 12, - "cc:pop:fifteen-to-twenty-four": 1949.310755549101, - "cc:pop:grid3-total": 8061.6799667402565, - "cc:pop:kontur-total": 11488.145421017516, - "cc:pop:men": 5097.456139450356, - "cc:pop:sixty-plus": 794.0433081649363, - "cc:pop:total": 10871.258560236502, - "cc:pop:under-five": 1811.4343616775673, - "cc:pop:women": 5773.802420786146, - "cc:pop:women-fiften-to-forty-nine": 2750.3540637140363, - "cc:pop:wp-total": 9589.455017751787, - "cc:pop:wp-total-UN": 11126.702198425302, - "cc:id": "502", - "cc:Name": "Sahn CHC", - "cc:site": [-11.598, 8.1582], - "user:parentName": "Niawa Lenga", - "user:code": "OU_952", - "user:orgUnitId": "PuZOFApTSeo", - "user:level": "4", - "user:parentId": "I4jWcnFmgEC" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.659582, 7.505417], - [-11.657916, 7.505416], - [-11.654583, 7.50125], - [-11.654582, 7.49875], - [-11.644583, 7.495416], - [-11.645245, 7.491448], - [-11.64682, 7.491048], - [-11.649479, 7.491237], - [-11.650607, 7.491119], - [-11.649582, 7.489583], - [-11.64875, 7.487084], - [-11.647917, 7.485416], - [-11.647083, 7.480417], - [-11.657916, 7.478749], - [-11.655417, 7.466251], - [-11.655418, 7.46625], - [-11.657082, 7.466249], - [-11.652083, 7.46125], - [-11.652082, 7.458395], - [-11.648958, 7.458394], - [-11.645053, 7.451629], - [-11.648958, 7.444863], - [-11.648474, 7.444025], - [-11.646249, 7.446249], - [-11.64073, 7.445855], - [-11.638874, 7.442643], - [-11.632734, 7.442642], - [-11.629583, 7.437916], - [-11.629582, 7.429521], - [-11.629199, 7.4304], - [-11.6269, 7.433499], - [-11.6235, 7.436599], - [-11.6176, 7.439799], - [-11.613, 7.443399], - [-11.6108, 7.444699], - [-11.6075, 7.4455], - [-11.607799, 7.450099], - [-11.608799, 7.453399], - [-11.6107, 7.457], - [-11.614599, 7.465499], - [-11.6153, 7.4694], - [-11.615499, 7.474499], - [-11.6152, 7.479599], - [-11.614599, 7.4824], - [-11.612499, 7.4874], - [-11.6118, 7.492599], - [-11.6118, 7.497699], - [-11.6152, 7.4985], - [-11.6197, 7.5005], - [-11.6225, 7.5011], - [-11.6274, 7.5017], - [-11.630099, 7.502299], - [-11.6348, 7.5042], - [-11.6385, 7.5049], - [-11.6453, 7.5053], - [-11.648899, 7.505999], - [-11.653599, 7.507899], - [-11.6563, 7.5085], - [-11.659013, 7.508831], - [-11.659582, 7.505417] - ] - ], - "type": "Polygon" - }, - "id": 503, - "properties": { - "cc:admin:id": ["66"], - "cc:oBld:total": 0, - "cc:pop:fifteen-to-twenty-four": 345.2567706548193, - "cc:pop:grid3-total": 1756.0455178955706, - "cc:pop:kontur-total": 1974.1374087816098, - "cc:pop:men": 946.0171462661488, - "cc:pop:sixty-plus": 145.6913016784319, - "cc:pop:total": 1945.9143296970965, - "cc:pop:under-five": 325.33555730375406, - "cc:pop:women": 999.8971834309475, - "cc:pop:women-fiften-to-forty-nine": 480.990362822081, - "cc:pop:wp-total": 2500.633929191334, - "cc:pop:wp-total-UN": 2902.135874573781, - "cc:id": "503", - "cc:Name": "Salima MCHP", - "cc:site": [-11.622, 7.4798], - "user:parentName": "Kpanga Kabonde", - "user:code": "OU_260403", - "user:orgUnitId": "rFelzKE3SEp", - "user:level": "4", - "user:parentId": "QwMiPiME3bA" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.591699, 9.5999], - [-12.583499, 9.596399], - [-12.576699, 9.594899], - [-12.57, 9.5928], - [-12.566199, 9.592199], - [-12.561799, 9.5921], - [-12.556, 9.592799], - [-12.5501, 9.594699], - [-12.545899, 9.5954], - [-12.541599, 9.595599], - [-12.5373, 9.5952], - [-12.531299, 9.593199], - [-12.5216, 9.590499], - [-12.516699, 9.5866], - [-12.512199, 9.585], - [-12.507099, 9.5854], - [-12.499999, 9.5879], - [-12.490799, 9.590899], - [-12.4881, 9.590599], - [-12.485699, 9.589099], - [-12.484099, 9.586299], - [-12.4829, 9.581599], - [-12.4832, 9.574999], - [-12.485599, 9.5657], - [-12.486099, 9.561699], - [-12.485799, 9.556399], - [-12.4832, 9.5456], - [-12.4827, 9.539899], - [-12.483, 9.534199], - [-12.485399, 9.5234], - [-12.485399, 9.519199], - [-12.483699, 9.512099], - [-12.477, 9.4931], - [-12.4752, 9.4875], - [-12.473599, 9.480599], - [-12.469299, 9.465799], - [-12.450099, 9.4653], - [-12.4423, 9.465399], - [-12.4378, 9.465799], - [-12.433399, 9.4666], - [-12.428799, 9.4684], - [-12.4204, 9.470999], - [-12.4162, 9.471199], - [-12.413399, 9.469499], - [-12.411899, 9.466999], - [-12.410499, 9.4636], - [-12.4053, 9.463699], - [-12.4015, 9.464399], - [-12.3939, 9.467899], - [-12.391699, 9.4695], - [-12.389, 9.471999], - [-12.3873, 9.474199], - [-12.383599, 9.4817], - [-12.382999, 9.4839], - [-12.3826, 9.489199], - [-12.382999, 9.504099], - [-12.3828, 9.508899], - [-12.381999, 9.511999], - [-12.380199, 9.514199], - [-12.378099, 9.5156], - [-12.375099, 9.5169], - [-12.371499, 9.5189], - [-12.368299, 9.5201], - [-12.364, 9.522499], - [-12.360799, 9.5238], - [-12.3573, 9.525799], - [-12.354199, 9.5272], - [-12.3519, 9.528599], - [-12.349099, 9.531], - [-12.3408, 9.539199], - [-12.3383, 9.540099], - [-12.335799, 9.539399], - [-12.334299, 9.538199], - [-12.3311, 9.5349], - [-12.329299, 9.532699], - [-12.325299, 9.5259], - [-12.3227, 9.5239], - [-12.3189, 9.523], - [-12.315, 9.523099], - [-12.3128, 9.524199], - [-12.311399, 9.526], - [-12.3088, 9.531], - [-12.308399, 9.5337], - [-12.308299, 9.5415], - [-12.3079, 9.544299], - [-12.3068, 9.546899], - [-12.305099, 9.549], - [-12.3024, 9.551199], - [-12.2989, 9.552699], - [-12.298274, 9.552771], - [-12.296397, 9.553983], - [-12.296968, 9.554463], - [-12.297821, 9.554753], - [-12.298705, 9.555373], - [-12.29907, 9.556231], - [-12.300132, 9.557812], - [-12.300422, 9.557904], - [-12.298308, 9.562133], - [-12.297513, 9.561784], - [-12.296529, 9.560615], - [-12.295991, 9.560471], - [-12.29545, 9.560393], - [-12.294376, 9.560981], - [-12.292991, 9.560988], - [-12.292346, 9.5607], - [-12.290868, 9.561057], - [-12.290725, 9.561124], - [-12.291021, 9.562604], - [-12.29207, 9.562177], - [-12.293409, 9.561992], - [-12.293992, 9.562117], - [-12.297056, 9.563483], - [-12.29954, 9.563701], - [-12.301365, 9.563372], - [-12.304982, 9.562159], - [-12.306031, 9.561542], - [-12.310416, 9.569582], - [-12.313749, 9.572916], - [-12.313749, 9.575416], - [-12.312082, 9.577083], - [-12.311328, 9.580102], - [-12.311844, 9.580998], - [-12.311466, 9.581596], - [-12.311158, 9.582834], - [-12.310825, 9.584156], - [-12.310185, 9.585221], - [-12.309583, 9.585746], - [-12.309583, 9.587916], - [-12.312917, 9.592082], - [-12.322775, 9.592906], - [-12.320441, 9.59695], - [-12.323922, 9.602982], - [-12.323609, 9.603529], - [-12.322441, 9.60442], - [-12.322173, 9.605202], - [-12.322479, 9.606922], - [-12.322451, 9.606998], - [-12.320441, 9.610482], - [-12.321495, 9.61231], - [-12.321489, 9.613314], - [-12.321657, 9.614008], - [-12.322519, 9.614858], - [-12.322659, 9.615513], - [-12.323143, 9.616139], - [-12.323761, 9.616234], - [-12.324346, 9.617248], - [-12.320441, 9.624014], - [-12.324347, 9.630779], - [-12.332158, 9.63078], - [-12.336066, 9.637545], - [-12.343878, 9.637546], - [-12.347783, 9.64431], - [-12.343878, 9.651076], - [-12.347077, 9.656618], - [-12.346208, 9.657385], - [-12.352934, 9.657386], - [-12.35684, 9.664151], - [-12.352934, 9.670918], - [-12.356841, 9.677683], - [-12.364396, 9.677683], - [-12.364747, 9.677132], - [-12.368333, 9.674551], - [-12.368954, 9.673939], - [-12.369686, 9.673939], - [-12.373593, 9.680704], - [-12.381404, 9.680704], - [-12.385311, 9.673939], - [-12.392314, 9.673939], - [-12.393199, 9.674554], - [-12.393564, 9.674701], - [-12.397029, 9.680704], - [-12.39505, 9.684133], - [-12.396955, 9.683835], - [-12.397605, 9.684342], - [-12.398095, 9.684294], - [-12.398573, 9.683931], - [-12.399002, 9.682663], - [-12.399492, 9.682216], - [-12.401888, 9.681443], - [-12.39875, 9.684583], - [-12.39875, 9.690495], - [-12.406379, 9.690496], - [-12.409289, 9.695533], - [-12.409765, 9.695488], - [-12.410714, 9.695734], - [-12.411968, 9.694781], - [-12.41273, 9.695656], - [-12.41338, 9.695579], - [-12.41345, 9.697116], - [-12.413533, 9.69726], - [-12.415773, 9.69726], - [-12.417916, 9.694582], - [-12.417916, 9.691586], - [-12.417854, 9.691586], - [-12.41779, 9.691805], - [-12.417187, 9.692227], - [-12.416536, 9.692257], - [-12.415902, 9.692024], - [-12.415664, 9.691742], - [-12.416409, 9.691162], - [-12.416536, 9.689943], - [-12.416504, 9.689473], - [-12.415925, 9.688654], - [-12.418507, 9.684183], - [-12.426319, 9.684183], - [-12.430226, 9.690948], - [-12.438037, 9.690949], - [-12.441945, 9.697713], - [-12.445623, 9.697713], - [-12.446226, 9.689896], - [-12.453464, 9.689896], - [-12.454426, 9.691561], - [-12.454449, 9.691286], - [-12.454101, 9.689542], - [-12.453933, 9.689084], - [-12.45557, 9.68625], - [-12.460417, 9.68625], - [-12.463749, 9.688749], - [-12.464262, 9.689261], - [-12.470962, 9.689261], - [-12.474869, 9.682497], - [-12.482563, 9.682496], - [-12.482173, 9.677417], - [-12.484913, 9.677417], - [-12.48882, 9.684182], - [-12.496631, 9.684182], - [-12.500538, 9.677417], - [-12.50835, 9.677417], - [-12.509481, 9.679375], - [-12.509689, 9.676937], - [-12.509664, 9.676458], - [-12.509919, 9.676258], - [-12.510147, 9.67524], - [-12.509848, 9.674823], - [-12.512212, 9.670728], - [-12.513209, 9.670651], - [-12.52007, 9.670651], - [-12.523976, 9.677416], - [-12.531787, 9.677417], - [-12.532239, 9.678197], - [-12.533933, 9.677901], - [-12.535236, 9.678019], - [-12.539279, 9.678894], - [-12.540542, 9.679516], - [-12.541146, 9.680562], - [-12.541467, 9.681845], - [-12.54124, 9.682759], - [-12.541521, 9.683434], - [-12.54226, 9.683792], - [-12.542621, 9.684182], - [-12.543506, 9.684182], - [-12.544669, 9.682168], - [-12.544876, 9.682118], - [-12.545067, 9.682366], - [-12.545184, 9.682533], - [-12.54556, 9.682835], - [-12.545427, 9.683219], - [-12.545724, 9.683634], - [-12.553494, 9.683635], - [-12.557401, 9.6904], - [-12.56347, 9.6904], - [-12.564017, 9.689065], - [-12.564752, 9.688579], - [-12.56487, 9.684684], - [-12.56537, 9.68157], - [-12.566751, 9.682129], - [-12.567446, 9.682149], - [-12.56827, 9.682799], - [-12.5696, 9.6774], - [-12.574199, 9.670099], - [-12.5755, 9.659899], - [-12.5785, 9.6581], - [-12.5832, 9.663599], - [-12.587099, 9.663099], - [-12.5897, 9.660599], - [-12.591499, 9.6541], - [-12.588, 9.6422], - [-12.5856, 9.635299], - [-12.5854, 9.6289], - [-12.590599, 9.6125], - [-12.591699, 9.5999] - ] - ], - "type": "Polygon" - }, - "id": 504, - "properties": { - "cc:admin:id": ["131"], - "cc:oBld:total": 562, - "cc:pop:fifteen-to-twenty-four": 1511.106866746278, - "cc:pop:grid3-total": 15326.098700083094, - "cc:pop:kontur-total": 8476.663239915923, - "cc:pop:men": 4091.687737671571, - "cc:pop:sixty-plus": 608.6227327500505, - "cc:pop:total": 8478.918397985304, - "cc:pop:under-five": 1343.7201479698456, - "cc:pop:women": 4387.230660313736, - "cc:pop:women-fiften-to-forty-nine": 2119.729599496326, - "cc:pop:wp-total": 6597.051044856672, - "cc:pop:wp-total-UN": 7647.426994798897, - "cc:id": "504", - "cc:Name": "Samaya CHP", - "cc:site": [-12.3937, 9.5118], - "user:parentName": "Tambaka", - "user:code": "OU_193248", - "user:orgUnitId": "BnVjTzwis3o", - "user:level": "4", - "user:parentId": "Qhmi8IZyPyD" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.082948, 8.726732], - [-11.0825, 8.725899], - [-11.0821, 8.7237], - [-11.0816, 8.7184], - [-11.0808, 8.7158], - [-11.077899, 8.7117], - [-11.073899, 8.708699], - [-11.0699, 8.707], - [-11.066999, 8.705399], - [-11.0632, 8.703699], - [-11.060599, 8.701299], - [-11.0591, 8.697499], - [-11.0587, 8.686], - [-11.058, 8.6824], - [-11.0557, 8.6771], - [-11.054499, 8.671999], - [-11.050499, 8.6637], - [-11.047699, 8.660699], - [-11.0432, 8.6585], - [-11.0396, 8.6565], - [-11.0364, 8.6552], - [-11.0321, 8.6529], - [-11.028799, 8.651499], - [-11.0245, 8.6491], - [-11.022261, 8.648067], - [-11.023095, 8.648565], - [-11.023407, 8.649096], - [-11.024483, 8.649781], - [-11.02375, 8.651249], - [-11.026249, 8.65375], - [-11.027916, 8.658749], - [-11.020416, 8.66125], - [-11.019583, 8.662084], - [-11.019583, 8.666249], - [-11.023749, 8.66875], - [-11.027916, 8.673749], - [-11.027083, 8.67625], - [-11.027083, 8.681249], - [-11.030416, 8.685417], - [-11.029582, 8.687916], - [-11.02875, 8.68875], - [-11.02875, 8.692082], - [-11.029583, 8.692917], - [-11.029583, 8.697916], - [-11.030416, 8.69875], - [-11.030416, 8.699178], - [-11.030161, 8.699072], - [-11.030417, 8.699583], - [-11.030417, 8.702082], - [-11.032916, 8.702083], - [-11.033749, 8.703749], - [-11.032082, 8.70625], - [-11.030417, 8.711249], - [-11.032082, 8.713749], - [-11.03125, 8.717082], - [-11.032916, 8.720416], - [-11.032917, 8.721249], - [-11.03375, 8.722916], - [-11.042082, 8.722916], - [-11.042083, 8.71875], - [-11.049582, 8.718749], - [-11.053749, 8.717083], - [-11.055417, 8.719582], - [-11.058749, 8.720416], - [-11.060417, 8.722082], - [-11.072915, 8.722083], - [-11.072916, 8.722084], - [-11.072083, 8.723749], - [-11.072917, 8.724582], - [-11.082948, 8.726732] - ] - ], - "type": "Polygon" - }, - "id": 505, - "properties": { - "cc:admin:id": ["49"], - "cc:oBld:total": 258, - "cc:pop:fifteen-to-twenty-four": 289.7237177339301, - "cc:pop:grid3-total": 1136.8660680552798, - "cc:pop:kontur-total": 1455.6855633806838, - "cc:pop:men": 850.036659182094, - "cc:pop:sixty-plus": 77.81070506229017, - "cc:pop:total": 1532.3683430163176, - "cc:pop:under-five": 230.87082003128086, - "cc:pop:women": 682.3316838342234, - "cc:pop:women-fiften-to-forty-nine": 313.68152509357094, - "cc:pop:wp-total": 1273.270091204384, - "cc:pop:wp-total-UN": 1479.4700602116263, - "cc:id": "505", - "cc:Name": "Samiquidu MCHP", - "cc:site": [-11.0588, 8.6941], - "user:parentName": "Kamara", - "user:code": "OU_233340", - "user:orgUnitId": "yXBtSoD0IRS", - "user:level": "4", - "user:parentId": "kvkDWg42lHR" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.116101, 8.244584], - [-11.113749, 8.244583], - [-11.111249, 8.232917], - [-11.106249, 8.232083], - [-11.105417, 8.217917], - [-11.107916, 8.217084], - [-11.106249, 8.217083], - [-11.10375, 8.214584], - [-11.102917, 8.20875], - [-11.107916, 8.202083], - [-11.10852, 8.197856], - [-11.108219, 8.197718], - [-11.105568, 8.197344], - [-11.104954, 8.197098], - [-11.103885, 8.196341], - [-11.102986, 8.196439], - [-11.102201, 8.196637], - [-11.099674, 8.199969], - [-11.09875, 8.202386], - [-11.098749, 8.199583], - [-11.097082, 8.195417], - [-11.09625, 8.195417], - [-11.089583, 8.199583], - [-11.08875, 8.200417], - [-11.090416, 8.204583], - [-11.08875, 8.204584], - [-11.086087, 8.207911], - [-11.085252, 8.207364], - [-11.084273, 8.205879], - [-11.083158, 8.204861], - [-11.082736, 8.206085], - [-11.081512, 8.207895], - [-11.079365, 8.209549], - [-11.078553, 8.21058], - [-11.078551, 8.210579], - [-11.078574, 8.210417], - [-11.077917, 8.210417], - [-11.077917, 8.211184], - [-11.078011, 8.211346], - [-11.07749, 8.212035], - [-11.07659, 8.212822], - [-11.076512, 8.21283], - [-11.076513, 8.212886], - [-11.0763, 8.213046], - [-11.076329, 8.213174], - [-11.075874, 8.213493], - [-11.075787, 8.213402], - [-11.075471, 8.213623], - [-11.07519, 8.213765], - [-11.07495, 8.213655], - [-11.073175, 8.21395], - [-11.071633, 8.214214], - [-11.071008, 8.214346], - [-11.071159, 8.214986], - [-11.071158, 8.214988], - [-11.070375, 8.215102], - [-11.07006, 8.214501], - [-11.068366, 8.21468], - [-11.068151, 8.214786], - [-11.068123, 8.215047], - [-11.068125, 8.215185], - [-11.068139, 8.215578], - [-11.067605, 8.215667], - [-11.066772, 8.215793], - [-11.066637, 8.216109], - [-11.066094, 8.215927], - [-11.064015, 8.216367], - [-11.06471, 8.216689], - [-11.064699, 8.216748], - [-11.064328, 8.217076], - [-11.063349, 8.217399], - [-11.061051, 8.217195], - [-11.060825, 8.217153], - [-11.060735, 8.216994], - [-11.060085, 8.217129], - [-11.059269, 8.217404], - [-11.058214, 8.218055], - [-11.057927, 8.218306], - [-11.05777, 8.218534], - [-11.057341, 8.219355], - [-11.056912, 8.220001], - [-11.056093, 8.221285], - [-11.055593, 8.221986], - [-11.055516, 8.222113], - [-11.055173, 8.222826], - [-11.05521, 8.223418], - [-11.055181, 8.223588], - [-11.055143, 8.223692], - [-11.055246, 8.223754], - [-11.055356, 8.223779], - [-11.056164, 8.225342], - [-11.056988, 8.224822], - [-11.057842, 8.223743], - [-11.058286, 8.223419], - [-11.058956, 8.223315], - [-11.059977, 8.22354], - [-11.059385, 8.223668], - [-11.058631, 8.224205], - [-11.058733, 8.224512], - [-11.058479, 8.225601], - [-11.058734, 8.226098], - [-11.059476, 8.226729], - [-11.060233, 8.228995], - [-11.060144, 8.229092], - [-11.059842, 8.228881], - [-11.059034, 8.229256], - [-11.058305, 8.229296], - [-11.058508, 8.229836], - [-11.058071, 8.230972], - [-11.057165, 8.231744], - [-11.057036, 8.232083], - [-11.062083, 8.232084], - [-11.06375, 8.234583], - [-11.067082, 8.236249], - [-11.067083, 8.237083], - [-11.069418, 8.237084], - [-11.069542, 8.237316], - [-11.07048, 8.238118], - [-11.07055, 8.23821], - [-11.070564, 8.238545], - [-11.070735, 8.239031], - [-11.070812, 8.239801], - [-11.07125, 8.239584], - [-11.073749, 8.239584], - [-11.082916, 8.243749], - [-11.084583, 8.242917], - [-11.088668, 8.242917], - [-11.08821, 8.244207], - [-11.087083, 8.244584], - [-11.08375, 8.24875], - [-11.08375, 8.255416], - [-11.093659, 8.255417], - [-11.09366, 8.255522], - [-11.104582, 8.25625], - [-11.104582, 8.263749], - [-11.102083, 8.26625], - [-11.102917, 8.268749], - [-11.105124, 8.270221], - [-11.107499, 8.2651], - [-11.1099, 8.260899], - [-11.1112, 8.257699], - [-11.113299, 8.2533], - [-11.114699, 8.2475], - [-11.116101, 8.244584] - ] - ], - "type": "Polygon" - }, - "id": 506, - "properties": { - "cc:admin:id": ["75"], - "cc:oBld:total": 849, - "cc:pop:fifteen-to-twenty-four": 1739.3607170975984, - "cc:pop:grid3-total": 4729.68068988868, - "cc:pop:kontur-total": 9858.063936509858, - "cc:pop:men": 5058.710817586347, - "cc:pop:sixty-plus": 534.5678154877477, - "cc:pop:total": 9042.045337368778, - "cc:pop:under-five": 1402.1533718603873, - "cc:pop:women": 3983.334519782431, - "cc:pop:women-fiften-to-forty-nine": 1979.8904412141844, - "cc:pop:wp-total": 7837.05723766636, - "cc:pop:wp-total-UN": 9085.523386158635, - "cc:id": "506", - "cc:Name": "Sandayeima MCHP", - "cc:site": [-11.0681, 8.2184], - "user:parentName": "Lower Bambara", - "user:code": "OU_222658", - "user:orgUnitId": "oUR5HPmim7E", - "user:level": "4", - "user:parentId": "hdEuw2ugkVF" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.359599, 8.5317], - [-11.351535, 8.523636], - [-11.350179, 8.523557], - [-11.348674, 8.521841], - [-11.346839, 8.521255], - [-11.344407, 8.522118], - [-11.343004, 8.52204], - [-11.338499, 8.522406], - [-11.338447, 8.522084], - [-11.33625, 8.522084], - [-11.33375, 8.522917], - [-11.333749, 8.528749], - [-11.32875, 8.52625], - [-11.32777, 8.524781], - [-11.327505, 8.525466], - [-11.327018, 8.525805], - [-11.326802, 8.526177], - [-11.326524, 8.527107], - [-11.324652, 8.529867], - [-11.32496, 8.531598], - [-11.324755, 8.534042], - [-11.324071, 8.535762], - [-11.324003, 8.536928], - [-11.323964, 8.537937], - [-11.322491, 8.539606], - [-11.322225, 8.540344], - [-11.321626, 8.542116], - [-11.319188, 8.54511], - [-11.318361, 8.54644], - [-11.317761, 8.547019], - [-11.31676, 8.547647], - [-11.315339, 8.549268], - [-11.314847, 8.550116], - [-11.314696, 8.55083], - [-11.314279, 8.553382], - [-11.313608, 8.555034], - [-11.313, 8.555602], - [-11.312308, 8.555728], - [-11.31135, 8.556198], - [-11.311153, 8.556548], - [-11.311134, 8.557593], - [-11.311661, 8.559743], - [-11.310622, 8.560969], - [-11.310355, 8.561695], - [-11.30966, 8.56405], - [-11.308409, 8.567013], - [-11.30673, 8.570354], - [-11.306665, 8.57166], - [-11.306352, 8.572574], - [-11.303549, 8.572136], - [-11.30101, 8.571676], - [-11.299362, 8.571347], - [-11.29875, 8.571154], - [-11.298749, 8.574583], - [-11.29625, 8.582083], - [-11.294583, 8.58125], - [-11.293749, 8.584584], - [-11.29125, 8.587083], - [-11.285417, 8.587917], - [-11.285416, 8.590416], - [-11.274411, 8.590417], - [-11.274479, 8.590569], - [-11.275054, 8.592509], - [-11.274903, 8.594358], - [-11.27125, 8.59375], - [-11.271249, 8.585417], - [-11.267082, 8.588749], - [-11.26375, 8.589584], - [-11.262917, 8.591249], - [-11.262684, 8.59125], - [-11.262688, 8.591736], - [-11.262681, 8.591815], - [-11.261293, 8.591469], - [-11.261351, 8.595414], - [-11.261341, 8.595833], - [-11.258799, 8.595834], - [-11.254892, 8.589068], - [-11.249829, 8.589068], - [-11.248749, 8.590416], - [-11.245416, 8.587917], - [-11.237917, 8.58875], - [-11.235417, 8.597084], - [-11.235417, 8.602916], - [-11.236249, 8.607916], - [-11.240656, 8.607917], - [-11.243609, 8.613034], - [-11.241195, 8.617216], - [-11.233037, 8.617843], - [-11.233035, 8.617857], - [-11.229583, 8.619584], - [-11.232082, 8.636249], - [-11.229583, 8.637917], - [-11.229583, 8.643749], - [-11.23125, 8.644584], - [-11.233749, 8.652916], - [-11.225417, 8.652917], - [-11.224583, 8.655416], - [-11.22625, 8.657083], - [-11.232916, 8.657084], - [-11.232917, 8.659583], - [-11.237082, 8.667083], - [-11.237083, 8.670416], - [-11.237307, 8.67064], - [-11.237839, 8.669746], - [-11.239262, 8.668073], - [-11.240968, 8.666778], - [-11.243106, 8.664078], - [-11.243614, 8.663656], - [-11.244859, 8.663294], - [-11.246301, 8.662119], - [-11.248655, 8.661307], - [-11.249215, 8.660711], - [-11.249812, 8.659556], - [-11.250629, 8.658496], - [-11.251719, 8.658057], - [-11.252695, 8.658019], - [-11.253142, 8.657789], - [-11.254582, 8.65875], - [-11.25375, 8.669582], - [-11.260417, 8.66625], - [-11.266822, 8.665668], - [-11.26698, 8.665829], - [-11.267092, 8.665578], - [-11.266329, 8.664748], - [-11.26704, 8.66423], - [-11.267821, 8.663986], - [-11.2682, 8.66438], - [-11.268199, 8.664754], - [-11.268421, 8.665001], - [-11.268545, 8.668169], - [-11.268148, 8.670831], - [-11.268181, 8.671756], - [-11.267829, 8.67175], - [-11.268187, 8.672107], - [-11.268874, 8.67343], - [-11.268684, 8.67628], - [-11.269151, 8.677169], - [-11.269203, 8.679366], - [-11.268742, 8.680062], - [-11.268759, 8.680423], - [-11.269369, 8.682298], - [-11.268931, 8.683048], - [-11.268762, 8.683766], - [-11.269091, 8.685349], - [-11.2702, 8.683899], - [-11.2716, 8.681099], - [-11.2722, 8.678699], - [-11.2725, 8.673799], - [-11.2733, 8.6702], - [-11.276599, 8.6645], - [-11.278899, 8.6633], - [-11.2812, 8.6636], - [-11.283, 8.6651], - [-11.283699, 8.6675], - [-11.2835, 8.677999], - [-11.2846, 8.680499], - [-11.286899, 8.681199], - [-11.289799, 8.679899], - [-11.292799, 8.6766], - [-11.2942, 8.674299], - [-11.295499, 8.6711], - [-11.297799, 8.6667], - [-11.2991, 8.663599], - [-11.3006, 8.661299], - [-11.303199, 8.6586], - [-11.3053, 8.656999], - [-11.313599, 8.6527], - [-11.3168, 8.651399], - [-11.321099, 8.6492], - [-11.327899, 8.6475], - [-11.3323, 8.645499], - [-11.336, 8.644799], - [-11.342899, 8.6446], - [-11.3479, 8.6448], - [-11.354599, 8.645499], - [-11.356999, 8.6345], - [-11.357499, 8.6304], - [-11.357299, 8.626199], - [-11.3558, 8.6159], - [-11.353, 8.6052], - [-11.3515, 8.596], - [-11.3491, 8.5866], - [-11.3475, 8.5788], - [-11.345999, 8.575099], - [-11.3423, 8.5691], - [-11.3412, 8.5664], - [-11.3403, 8.562], - [-11.3401, 8.5575], - [-11.3408, 8.5525], - [-11.3423, 8.5494], - [-11.3449, 8.547099], - [-11.3514, 8.543799], - [-11.3544, 8.540299], - [-11.3568, 8.5349], - [-11.359599, 8.5317] - ] - ], - "type": "Polygon" - }, - "id": 507, - "properties": { - "cc:admin:id": ["101"], - "cc:oBld:total": 722, - "cc:pop:fifteen-to-twenty-four": 909.4770791309369, - "cc:pop:grid3-total": 4138.642374034106, - "cc:pop:kontur-total": 5322.622511150977, - "cc:pop:men": 2653.8352351258413, - "cc:pop:sixty-plus": 243.13044015737904, - "cc:pop:total": 4834.267398677275, - "cc:pop:under-five": 726.9139769763796, - "cc:pop:women": 2180.432163551432, - "cc:pop:women-fiften-to-forty-nine": 1174.7516574824829, - "cc:pop:wp-total": 4804.897888295061, - "cc:pop:wp-total-UN": 5572.634169736398, - "cc:id": "507", - "cc:Name": "Sandia CHP", - "cc:site": [-11.2681, 8.6418], - "user:parentName": "Nimiyama", - "user:code": "OU_233337", - "user:orgUnitId": "vcY0lzBz6fU", - "user:level": "4", - "user:parentId": "qgQ49DH9a0v" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.56827, 9.6828], - [-12.567445, 9.682149], - [-12.566751, 9.682129], - [-12.565371, 9.68157], - [-12.56487, 9.684684], - [-12.564752, 9.688579], - [-12.564018, 9.689065], - [-12.56347, 9.6904], - [-12.557401, 9.6904], - [-12.553494, 9.683635], - [-12.545724, 9.683634], - [-12.545427, 9.68322], - [-12.54556, 9.682836], - [-12.545184, 9.682533], - [-12.545067, 9.682366], - [-12.544876, 9.682118], - [-12.544669, 9.682168], - [-12.543507, 9.684182], - [-12.542621, 9.684182], - [-12.54226, 9.683792], - [-12.541521, 9.683434], - [-12.54124, 9.682759], - [-12.541467, 9.681845], - [-12.541146, 9.680562], - [-12.540542, 9.679516], - [-12.539279, 9.678894], - [-12.535236, 9.678019], - [-12.533933, 9.677901], - [-12.532239, 9.678198], - [-12.531787, 9.677417], - [-12.523976, 9.677416], - [-12.520069, 9.670651], - [-12.513205, 9.670651], - [-12.512213, 9.670726], - [-12.509848, 9.674823], - [-12.510147, 9.67524], - [-12.50992, 9.676258], - [-12.509664, 9.676458], - [-12.509689, 9.676937], - [-12.509481, 9.679372], - [-12.50948, 9.679372], - [-12.50835, 9.677417], - [-12.500538, 9.677417], - [-12.496631, 9.684182], - [-12.48882, 9.684182], - [-12.484912, 9.677417], - [-12.482173, 9.677417], - [-12.482563, 9.682496], - [-12.47487, 9.682497], - [-12.470962, 9.689261], - [-12.464262, 9.689261], - [-12.463749, 9.688749], - [-12.460416, 9.68625], - [-12.45557, 9.68625], - [-12.453933, 9.689085], - [-12.454101, 9.689542], - [-12.454449, 9.691286], - [-12.454426, 9.691559], - [-12.453464, 9.689896], - [-12.446226, 9.689896], - [-12.445624, 9.697713], - [-12.441944, 9.697713], - [-12.438037, 9.690949], - [-12.430225, 9.690948], - [-12.426319, 9.684183], - [-12.418507, 9.684183], - [-12.415925, 9.688654], - [-12.416504, 9.689472], - [-12.416536, 9.689943], - [-12.416409, 9.691162], - [-12.415664, 9.691742], - [-12.415902, 9.692023], - [-12.416536, 9.692257], - [-12.417187, 9.692227], - [-12.41779, 9.691805], - [-12.417853, 9.691586], - [-12.417916, 9.691586], - [-12.417916, 9.694583], - [-12.415774, 9.69726], - [-12.413533, 9.697261], - [-12.41345, 9.697116], - [-12.41338, 9.695579], - [-12.412729, 9.695656], - [-12.411967, 9.694781], - [-12.410715, 9.695734], - [-12.409765, 9.695488], - [-12.409288, 9.695533], - [-12.406379, 9.690496], - [-12.39875, 9.690495], - [-12.39875, 9.684583], - [-12.40189, 9.681442], - [-12.399492, 9.682216], - [-12.399003, 9.682663], - [-12.398574, 9.683931], - [-12.398096, 9.684294], - [-12.397604, 9.684342], - [-12.396955, 9.683835], - [-12.395051, 9.684133], - [-12.395051, 9.684132], - [-12.397029, 9.680704], - [-12.393563, 9.674701], - [-12.393199, 9.674554], - [-12.392314, 9.673939], - [-12.385312, 9.673939], - [-12.381405, 9.680704], - [-12.373593, 9.680705], - [-12.371087, 9.685044], - [-12.377082, 9.684583], - [-12.377801, 9.685302], - [-12.374042, 9.685303], - [-12.371759, 9.689257], - [-12.37126, 9.689397], - [-12.37104, 9.69001], - [-12.371323, 9.692225], - [-12.370992, 9.693478], - [-12.370974, 9.69352], - [-12.370972, 9.69352], - [-12.370135, 9.692069], - [-12.362366, 9.692069], - [-12.362082, 9.692917], - [-12.360417, 9.695417], - [-12.360416, 9.705416], - [-12.354582, 9.705417], - [-12.34625, 9.712083], - [-12.34625, 9.714532], - [-12.346248, 9.714533], - [-12.338437, 9.714534], - [-12.33453, 9.7213], - [-12.338436, 9.728065], - [-12.33453, 9.734831], - [-12.330666, 9.734832], - [-12.330416, 9.734583], - [-12.324583, 9.740416], - [-12.322917, 9.740417], - [-12.322429, 9.741875], - [-12.32236, 9.74183], - [-12.320805, 9.7404], - [-12.320243, 9.739667], - [-12.320104, 9.739605], - [-12.318865, 9.73872], - [-12.318527, 9.738353], - [-12.317048, 9.735881], - [-12.314731, 9.733863], - [-12.312452, 9.731314], - [-12.311911, 9.730588], - [-12.30875, 9.73375], - [-12.309528, 9.744658], - [-12.305551, 9.744659], - [-12.301643, 9.751424], - [-12.293832, 9.751425], - [-12.289925, 9.75819], - [-12.282113, 9.758191], - [-12.278207, 9.764957], - [-12.282112, 9.771723], - [-12.278206, 9.778487], - [-12.270394, 9.778488], - [-12.266488, 9.785254], - [-12.270393, 9.792019], - [-12.266488, 9.798786], - [-12.270393, 9.805552], - [-12.266488, 9.812317], - [-12.267706, 9.814428], - [-12.26625, 9.81625], - [-12.266249, 9.822915], - [-12.266248, 9.822916], - [-12.264582, 9.822083], - [-12.256871, 9.822785], - [-12.25754, 9.823653], - [-12.258855, 9.82642], - [-12.260032, 9.830972], - [-12.260037, 9.831649], - [-12.260121, 9.831803], - [-12.259406, 9.831804], - [-12.255501, 9.838569], - [-12.252273, 9.838569], - [-12.251721, 9.83788], - [-12.249696, 9.841385], - [-12.243763, 9.841386], - [-12.243764, 9.841673], - [-12.244103, 9.842409], - [-12.243973, 9.844809], - [-12.245475, 9.849768], - [-12.246419, 9.851784], - [-12.241058, 9.851785], - [-12.240404, 9.852916], - [-12.23875, 9.852917], - [-12.235416, 9.856249], - [-12.23375, 9.85625], - [-12.233749, 9.857082], - [-12.230691, 9.857083], - [-12.226784, 9.850318], - [-12.22005, 9.850318], - [-12.219316, 9.851784], - [-12.217621, 9.851785], - [-12.213715, 9.85855], - [-12.205902, 9.858551], - [-12.201995, 9.865316], - [-12.194183, 9.865317], - [-12.190276, 9.872081], - [-12.182465, 9.872082], - [-12.178557, 9.878847], - [-12.170745, 9.878847], - [-12.166839, 9.872082], - [-12.159027, 9.872082], - [-12.155121, 9.878847], - [-12.156242, 9.880791], - [-12.155637, 9.881232], - [-12.15508, 9.881148], - [-12.154074, 9.88057], - [-12.153912, 9.880268], - [-12.154028, 9.87971], - [-12.154951, 9.878087], - [-12.154848, 9.877703], - [-12.15296, 9.87612], - [-12.151359, 9.878893], - [-12.151643, 9.879385], - [-12.1569, 9.8821], - [-12.1774, 9.897399], - [-12.204999, 9.907], - [-12.212899, 9.9141], - [-12.2153, 9.9187], - [-12.2227, 9.924399], - [-12.227099, 9.924699], - [-12.287399, 9.9109], - [-12.2892, 9.908799], - [-12.353199, 9.8962], - [-12.365899, 9.895699], - [-12.3713, 9.892699], - [-12.393699, 9.8878], - [-12.431699, 9.881599], - [-12.437499, 9.877499], - [-12.4435, 9.866199], - [-12.452499, 9.8572], - [-12.456899, 9.8546], - [-12.480099, 9.855499], - [-12.498999, 9.843599], - [-12.4989, 9.8393], - [-12.500599, 9.8347], - [-12.4995, 9.8322], - [-12.496699, 9.8299], - [-12.4923, 9.828999], - [-12.4902, 9.825999], - [-12.491299, 9.8113], - [-12.497299, 9.810299], - [-12.500299, 9.807999], - [-12.5014, 9.789199], - [-12.511299, 9.775099], - [-12.5124, 9.763399], - [-12.518699, 9.756499], - [-12.518399, 9.7539], - [-12.5084, 9.749399], - [-12.5073, 9.745899], - [-12.5091, 9.7429], - [-12.522999, 9.743399], - [-12.525599, 9.741699], - [-12.528099, 9.736399], - [-12.5192, 9.7142], - [-12.5194, 9.7073], - [-12.5224, 9.7054], - [-12.5257, 9.7059], - [-12.528899, 9.7091], - [-12.5336, 9.720099], - [-12.536099, 9.720499], - [-12.547499, 9.709], - [-12.556699, 9.7035], - [-12.566699, 9.702699], - [-12.568899, 9.692399], - [-12.568, 9.6839], - [-12.56827, 9.6828] - ] - ], - "type": "Polygon" - }, - "id": 508, - "properties": { - "cc:admin:id": ["131"], - "cc:oBld:total": 594, - "cc:pop:fifteen-to-twenty-four": 1490.38318205445, - "cc:pop:grid3-total": 13014.751620335615, - "cc:pop:kontur-total": 9509.447219433298, - "cc:pop:men": 4001.9334027295054, - "cc:pop:sixty-plus": 585.3972699545928, - "cc:pop:total": 8303.121808036172, - "cc:pop:under-five": 1323.8249138030374, - "cc:pop:women": 4301.188405306662, - "cc:pop:women-fiften-to-forty-nine": 2075.780452009043, - "cc:pop:wp-total": 7778.451091761948, - "cc:pop:wp-total-UN": 9010.79574986816, - "cc:id": "508", - "cc:Name": "Sanya CHP", - "cc:site": [-12.3786, 9.8371], - "user:parentName": "Tambaka", - "user:code": "OU_193246", - "user:orgUnitId": "UqHuR4IYvTY", - "user:level": "4", - "user:parentId": "Qhmi8IZyPyD" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.147364, 8.701723], - [-11.14702, 8.700515], - [-11.146397, 8.700167], - [-11.145765, 8.701259], - [-11.137953, 8.701259], - [-11.134046, 8.694495], - [-11.126233, 8.694494], - [-11.122328, 8.687729], - [-11.122424, 8.687562], - [-11.122082, 8.687083], - [-11.119583, 8.687917], - [-11.118749, 8.691249], - [-11.107083, 8.685417], - [-11.107082, 8.680417], - [-11.104583, 8.677916], - [-11.10673, 8.672189], - [-11.102961, 8.672064], - [-11.101516, 8.671177], - [-11.100174, 8.669781], - [-11.097316, 8.67006], - [-11.096202, 8.67003], - [-11.095013, 8.669319], - [-11.094184, 8.668008], - [-11.094144, 8.667963], - [-11.093749, 8.668749], - [-11.087082, 8.667084], - [-11.082083, 8.667916], - [-11.080416, 8.665417], - [-11.074583, 8.665417], - [-11.072082, 8.670416], - [-11.068529, 8.669232], - [-11.067226, 8.672247], - [-11.066795, 8.673469], - [-11.06125, 8.672083], - [-11.060416, 8.674582], - [-11.057083, 8.67625], - [-11.056022, 8.677842], - [-11.058, 8.6824], - [-11.0587, 8.686], - [-11.0591, 8.697499], - [-11.0606, 8.701299], - [-11.0632, 8.703699], - [-11.066999, 8.705399], - [-11.0699, 8.707], - [-11.073899, 8.708699], - [-11.077899, 8.7117], - [-11.0808, 8.7158], - [-11.0816, 8.7184], - [-11.082099, 8.723699], - [-11.0825, 8.7259], - [-11.0839, 8.7285], - [-11.0877, 8.733599], - [-11.0948, 8.7345], - [-11.0974, 8.7352], - [-11.1019, 8.7372], - [-11.107899, 8.7386], - [-11.114099, 8.7422], - [-11.1186, 8.7474], - [-11.1206, 8.7488], - [-11.1264, 8.7519], - [-11.1297, 8.752699], - [-11.132899, 8.752099], - [-11.134499, 8.750099], - [-11.134899, 8.7475], - [-11.1348, 8.7438], - [-11.134299, 8.741099], - [-11.133199, 8.7389], - [-11.1302, 8.7368], - [-11.1284, 8.734899], - [-11.1275, 8.732199], - [-11.1278, 8.729699], - [-11.1316, 8.722399], - [-11.1345, 8.718799], - [-11.141299, 8.7121], - [-11.144199, 8.7085], - [-11.146524, 8.703849], - [-11.147364, 8.701723] - ] - ], - "type": "Polygon" - }, - "id": 509, - "properties": { - "cc:admin:id": ["100"], - "cc:oBld:total": 535, - "cc:pop:fifteen-to-twenty-four": 527.0866499110865, - "cc:pop:grid3-total": 4309.184032071207, - "cc:pop:kontur-total": 2982.8152361250873, - "cc:pop:men": 1566.4805774132165, - "cc:pop:sixty-plus": 172.8771900848985, - "cc:pop:total": 2832.3572049533554, - "cc:pop:under-five": 462.3390555381217, - "cc:pop:women": 1265.8766275401379, - "cc:pop:women-fiften-to-forty-nine": 629.7455020677991, - "cc:pop:wp-total": 2802.4484176181622, - "cc:pop:wp-total-UN": 3242.547230210822, - "cc:id": "509", - "cc:Name": "Seidu MCHP", - "cc:site": [-11.097, 8.728], - "user:parentName": "Nimikoro", - "user:code": "OU_233406", - "user:orgUnitId": "uoPC2z9r7Cc", - "user:level": "4", - "user:parentId": "DmaLM8WYmWv" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.891299, 7.7567], - [-11.8864, 7.7529], - [-11.884099, 7.7516], - [-11.881399, 7.751], - [-11.8783, 7.751199], - [-11.876299, 7.7518], - [-11.872599, 7.7535], - [-11.866799, 7.7552], - [-11.863699, 7.7569], - [-11.8595, 7.760299], - [-11.857, 7.761499], - [-11.8536, 7.761799], - [-11.850999, 7.761299], - [-11.8466, 7.759], - [-11.843499, 7.757599], - [-11.8399, 7.7557], - [-11.8377, 7.755], - [-11.833999, 7.7546], - [-11.8177, 7.7546], - [-11.814, 7.7532], - [-11.810199, 7.747599], - [-11.808599, 7.743699], - [-11.8062, 7.7394], - [-11.804899, 7.736199], - [-11.8028, 7.7326], - [-11.800999, 7.7289], - [-11.798199, 7.7259], - [-11.786, 7.7198], - [-11.7836, 7.7174], - [-11.7817, 7.7132], - [-11.7797, 7.7096], - [-11.7783, 7.7065], - [-11.775999, 7.703399], - [-11.771999, 7.699999], - [-11.769299, 7.698899], - [-11.764199, 7.697899], - [-11.7559, 7.6939], - [-11.7531, 7.6921], - [-11.7452, 7.6841], - [-11.7423, 7.6806], - [-11.738099, 7.672299], - [-11.737399, 7.668899], - [-11.736999, 7.6593], - [-11.7232, 7.6598], - [-11.722599, 7.6641], - [-11.7221, 7.669599], - [-11.7215, 7.672299], - [-11.719099, 7.678], - [-11.7186, 7.683399], - [-11.7188, 7.688399], - [-11.72, 7.6918], - [-11.725099, 7.698399], - [-11.7281, 7.7037], - [-11.7325, 7.7091], - [-11.7373, 7.7176], - [-11.738699, 7.720699], - [-11.740199, 7.723399], - [-11.740799, 7.7256], - [-11.740399, 7.728], - [-11.738999, 7.7296], - [-11.736999, 7.7328], - [-11.733999, 7.7363], - [-11.7279, 7.742399], - [-11.7246, 7.746399], - [-11.7225, 7.750599], - [-11.7203, 7.753499], - [-11.716999, 7.7566], - [-11.7131, 7.7594], - [-11.7098, 7.764499], - [-11.7089, 7.766499], - [-11.7084, 7.77], - [-11.708599, 7.786899], - [-11.708399, 7.7897], - [-11.707599, 7.7923], - [-11.704199, 7.799], - [-11.702099, 7.802], - [-11.6962, 7.808399], - [-11.6945, 7.8112], - [-11.694099, 7.8134], - [-11.6936, 7.818699], - [-11.693003, 7.821184], - [-11.692999, 7.8212], - [-11.690699, 7.8269], - [-11.6903, 7.8309], - [-11.690499, 7.833599], - [-11.691199, 7.836199], - [-11.696499, 7.846399], - [-11.697299, 7.8487], - [-11.697299, 7.851299], - [-11.6956, 7.856799], - [-11.699499, 7.8588], - [-11.701099, 7.860499], - [-11.701699, 7.8636], - [-11.7013, 7.866099], - [-11.701054, 7.866603], - [-11.703491, 7.866794], - [-11.704443, 7.866428], - [-11.705072, 7.867016], - [-11.706683, 7.867585], - [-11.708082, 7.868931], - [-11.708202, 7.868982], - [-11.708751, 7.866657], - [-11.708778, 7.866444], - [-11.709347, 7.863571], - [-11.713573, 7.863043], - [-11.713574, 7.863044], - [-11.712793, 7.865123], - [-11.712514, 7.86544], - [-11.712141, 7.865567], - [-11.712268, 7.866004], - [-11.712309, 7.866413], - [-11.711264, 7.869202], - [-11.711725, 7.869573], - [-11.71242, 7.86983], - [-11.714582, 7.86875], - [-11.715318, 7.869851], - [-11.715757, 7.869877], - [-11.71787, 7.868172], - [-11.718354, 7.867411], - [-11.71813, 7.8671], - [-11.718763, 7.866962], - [-11.718915, 7.866528], - [-11.719458, 7.865926], - [-11.72109, 7.865138], - [-11.721982, 7.864434], - [-11.722326, 7.862452], - [-11.722255, 7.85979], - [-11.72242, 7.859063], - [-11.723735, 7.857483], - [-11.724802, 7.856978], - [-11.723885, 7.854459], - [-11.72382, 7.853742], - [-11.724433, 7.852553], - [-11.724298, 7.851452], - [-11.725145, 7.851262], - [-11.725493, 7.850763], - [-11.725187, 7.850051], - [-11.72544, 7.847918], - [-11.725298, 7.847737], - [-11.725478, 7.847375], - [-11.725485, 7.846809], - [-11.72452, 7.845688], - [-11.724301, 7.844838], - [-11.724779, 7.842419], - [-11.725111, 7.842069], - [-11.725671, 7.840961], - [-11.727916, 7.842083], - [-11.727917, 7.840924], - [-11.730006, 7.840174], - [-11.730622, 7.839584], - [-11.733749, 7.839583], - [-11.73323, 7.838024], - [-11.733347, 7.837985], - [-11.735317, 7.836691], - [-11.736248, 7.836202], - [-11.73625, 7.836203], - [-11.73625, 7.839312], - [-11.73831, 7.839082], - [-11.739935, 7.838622], - [-11.738401, 7.83555], - [-11.740824, 7.835316], - [-11.741821, 7.834771], - [-11.74192, 7.834643], - [-11.743191, 7.836338], - [-11.743438, 7.836239], - [-11.743994, 7.835679], - [-11.745631, 7.835509], - [-11.747633, 7.832508], - [-11.748035, 7.832427], - [-11.748325, 7.83222], - [-11.750758, 7.83303], - [-11.751359, 7.832541], - [-11.751838, 7.832394], - [-11.753102, 7.832394], - [-11.752917, 7.832084], - [-11.752905, 7.83207], - [-11.752941, 7.832058], - [-11.755037, 7.82982], - [-11.755088, 7.829611], - [-11.754583, 7.827084], - [-11.754582, 7.826923], - [-11.754493, 7.826909], - [-11.754133, 7.8265], - [-11.754404, 7.826072], - [-11.754774, 7.825977], - [-11.754696, 7.825151], - [-11.755379, 7.824946], - [-11.755544, 7.825031], - [-11.75875, 7.82375], - [-11.761393, 7.824631], - [-11.760443, 7.826087], - [-11.760565, 7.826201], - [-11.761135, 7.826036], - [-11.761609, 7.826224], - [-11.762352, 7.825985], - [-11.762876, 7.825126], - [-11.763165, 7.825221], - [-11.763544, 7.824881], - [-11.763919, 7.824734], - [-11.764024, 7.82432], - [-11.765261, 7.823737], - [-11.765647, 7.8228], - [-11.765538, 7.822595], - [-11.764916, 7.822532], - [-11.764972, 7.822789], - [-11.764718, 7.823023], - [-11.764285, 7.823283], - [-11.764283, 7.823283], - [-11.764583, 7.822083], - [-11.770416, 7.820417], - [-11.770667, 7.820916], - [-11.770849, 7.820827], - [-11.773609, 7.819584], - [-11.77125, 7.819583], - [-11.770697, 7.817924], - [-11.771406, 7.817399], - [-11.772222, 7.816325], - [-11.772788, 7.81593], - [-11.777732, 7.817577], - [-11.778524, 7.816817], - [-11.779157, 7.816691], - [-11.779802, 7.816771], - [-11.781749, 7.817396], - [-11.781948, 7.817404], - [-11.781812, 7.816034], - [-11.782295, 7.816215], - [-11.783119, 7.815874], - [-11.783533, 7.815075], - [-11.783431, 7.814731], - [-11.783136, 7.814706], - [-11.782161, 7.815261], - [-11.781732, 7.81524], - [-11.781444, 7.812358], - [-11.781562, 7.812263], - [-11.782013, 7.811645], - [-11.783691, 7.811311], - [-11.785572, 7.810398], - [-11.787619, 7.809994], - [-11.789293, 7.809889], - [-11.791988, 7.808724], - [-11.793085, 7.808089], - [-11.793644, 7.807438], - [-11.794454, 7.806954], - [-11.796432, 7.808932], - [-11.798233, 7.806665], - [-11.800476, 7.804342], - [-11.801378, 7.804007], - [-11.801249, 7.80375], - [-11.799334, 7.803431], - [-11.79913, 7.803467], - [-11.798745, 7.803182], - [-11.799728, 7.801646], - [-11.800354, 7.801464], - [-11.801064, 7.801546], - [-11.801276, 7.801417], - [-11.801384, 7.801001], - [-11.801866, 7.800648], - [-11.80082, 7.800186], - [-11.802015, 7.798843], - [-11.801908, 7.798624], - [-11.802183, 7.79857], - [-11.802493, 7.798038], - [-11.802821, 7.797971], - [-11.803447, 7.796041], - [-11.803964, 7.795355], - [-11.805853, 7.793544], - [-11.809211, 7.792759], - [-11.809609, 7.792533], - [-11.811739, 7.792518], - [-11.812564, 7.792426], - [-11.813271, 7.792133], - [-11.815057, 7.792405], - [-11.816583, 7.792007], - [-11.817235, 7.791986], - [-11.818736, 7.790838], - [-11.819154, 7.789813], - [-11.820188, 7.789002], - [-11.822257, 7.788269], - [-11.822783, 7.787244], - [-11.823518, 7.786536], - [-11.825063, 7.786003], - [-11.82538, 7.78609], - [-11.82587, 7.786608], - [-11.827207, 7.787002], - [-11.827335, 7.787467], - [-11.827906, 7.787919], - [-11.828705, 7.788166], - [-11.828879, 7.788174], - [-11.829583, 7.789583], - [-11.835448, 7.789583], - [-11.83618, 7.789005], - [-11.838841, 7.786365], - [-11.839236, 7.786042], - [-11.838227, 7.783016], - [-11.838556, 7.782834], - [-11.839221, 7.781743], - [-11.84002, 7.781375], - [-11.841252, 7.781194], - [-11.842976, 7.780595], - [-11.844044, 7.780496], - [-11.844965, 7.779979], - [-11.84592, 7.778848], - [-11.848271, 7.777132], - [-11.848599, 7.777167], - [-11.849035, 7.777505], - [-11.849668, 7.777606], - [-11.85017, 7.777503], - [-11.851393, 7.776355], - [-11.851472, 7.776308], - [-11.852554, 7.780633], - [-11.854287, 7.778818], - [-11.855452, 7.777996], - [-11.85845, 7.777205], - [-11.861023, 7.777075], - [-11.862647, 7.77677], - [-11.864, 7.775926], - [-11.864031, 7.775971], - [-11.8646, 7.774899], - [-11.8671, 7.7734], - [-11.872, 7.772399], - [-11.877399, 7.7704], - [-11.882399, 7.7692], - [-11.884399, 7.768399], - [-11.8869, 7.766199], - [-11.891299, 7.7567] - ] - ], - "type": "Polygon" - }, - "id": 510, - "properties": { - "cc:admin:id": ["134"], - "cc:oBld:total": 727, - "cc:pop:fifteen-to-twenty-four": 2648.844377222193, - "cc:pop:grid3-total": 15272.896994778164, - "cc:pop:kontur-total": 15443.216959667272, - "cc:pop:men": 8070.9818071583595, - "cc:pop:sixty-plus": 911.6969718104572, - "cc:pop:total": 15652.83065278045, - "cc:pop:under-five": 2496.5645416867305, - "cc:pop:women": 7581.848845622099, - "cc:pop:women-fiften-to-forty-nine": 3770.5181946977627, - "cc:pop:wp-total": 15315.460849597795, - "cc:pop:wp-total-UN": 17768.7538782927, - "cc:id": "510", - "cc:Name": "Sembehun 17 CHP", - "cc:site": [-11.7243, 7.7801], - "user:parentName": "Tikonko", - "user:code": "OU_1107", - "user:orgUnitId": "DqfiI6NVnB1", - "user:level": "4", - "user:parentId": "sxRd2XOzFbz" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.608199, 7.9145], - [-12.605, 7.913099], - [-12.6023, 7.9102], - [-12.600699, 7.907699], - [-12.5982, 7.9051], - [-12.5916, 7.901], - [-12.588699, 7.897999], - [-12.586999, 7.895299], - [-12.586499, 7.891899], - [-12.5861, 7.8815], - [-12.585856, 7.880179], - [-12.584528, 7.880248], - [-12.583111, 7.879467], - [-12.582767, 7.879405], - [-12.581249, 7.880417], - [-12.577438, 7.880417], - [-12.577422, 7.880465], - [-12.574846, 7.879291], - [-12.572391, 7.879663], - [-12.571484, 7.880174], - [-12.57148, 7.880689], - [-12.569928, 7.881066], - [-12.568632, 7.88183], - [-12.567917, 7.882005], - [-12.567917, 7.883878], - [-12.568361, 7.884147], - [-12.569649, 7.884412], - [-12.571205, 7.883521], - [-12.571458, 7.884551], - [-12.572091, 7.884873], - [-12.572917, 7.885974], - [-12.571704, 7.886742], - [-12.571193, 7.885581], - [-12.569772, 7.88583], - [-12.569376, 7.886987], - [-12.5686, 7.887239], - [-12.567567, 7.887234], - [-12.568079, 7.88788], - [-12.568075, 7.888654], - [-12.566007, 7.888898], - [-12.56537, 7.887607], - [-12.565511, 7.885291], - [-12.563835, 7.885022], - [-12.563709, 7.88425], - [-12.561905, 7.883723], - [-12.561908, 7.882951], - [-12.560619, 7.882815], - [-12.55989, 7.883223], - [-12.558749, 7.882084], - [-12.55461, 7.882084], - [-12.554677, 7.882652], - [-12.553643, 7.88303], - [-12.552616, 7.881867], - [-12.552848, 7.886247], - [-12.550256, 7.887647], - [-12.548451, 7.887251], - [-12.548453, 7.886736], - [-12.547603, 7.886358], - [-12.547083, 7.887916], - [-12.546957, 7.888668], - [-12.544571, 7.888299], - [-12.543242, 7.885543], - [-12.542357, 7.885101], - [-12.540996, 7.885237], - [-12.539668, 7.885644], - [-12.536673, 7.885339], - [-12.535117, 7.885637], - [-12.535607, 7.886416], - [-12.535606, 7.886418], - [-12.531892, 7.887136], - [-12.529358, 7.887518], - [-12.526772, 7.887789], - [-12.524267, 7.887925], - [-12.522313, 7.888188], - [-12.520791, 7.888188], - [-12.520034, 7.88893], - [-12.519217, 7.890482], - [-12.518319, 7.891407], - [-12.517094, 7.891625], - [-12.516222, 7.891652], - [-12.514942, 7.891138], - [-12.514306, 7.892239], - [-12.512874, 7.891588], - [-12.511288, 7.890353], - [-12.510307, 7.888801], - [-12.508755, 7.887005], - [-12.502556, 7.890448], - [-12.505985, 7.890016], - [-12.50256, 7.890456], - [-12.502833, 7.89136], - [-12.50231, 7.892644], - [-12.502173, 7.893673], - [-12.501657, 7.893671], - [-12.501392, 7.8947], - [-12.49984, 7.895206], - [-12.499708, 7.895719], - [-12.499965, 7.895979], - [-12.500089, 7.896495], - [-12.49983, 7.896621], - [-12.49854, 7.896486], - [-12.497917, 7.897468], - [-12.497916, 7.900417], - [-12.49625, 7.902917], - [-12.496249, 7.907083], - [-12.495659, 7.907182], - [-12.495763, 7.907287], - [-12.496017, 7.908061], - [-12.496262, 7.910122], - [-12.496252, 7.911925], - [-12.495593, 7.913982], - [-12.495077, 7.913979], - [-12.495073, 7.914495], - [-12.494035, 7.915388], - [-12.492742, 7.915639], - [-12.490924, 7.917172], - [-12.489145, 7.918268], - [-12.489761, 7.92012], - [-12.48976, 7.920121], - [-12.489699, 7.92007], - [-12.489583, 7.920417], - [-12.489583, 7.922084], - [-12.490416, 7.925416], - [-12.482917, 7.92625], - [-12.482916, 7.93816], - [-12.480275, 7.937901], - [-12.476374, 7.939035], - [-12.475417, 7.939858], - [-12.475417, 7.948749], - [-12.474763, 7.952016], - [-12.474687, 7.952005], - [-12.474369, 7.951941], - [-12.47383, 7.951798], - [-12.469583, 7.959584], - [-12.470417, 7.965416], - [-12.472916, 7.968749], - [-12.473749, 7.96875], - [-12.47375, 7.969583], - [-12.474545, 7.969981], - [-12.472363, 7.97153], - [-12.474582, 7.973749], - [-12.47625, 7.97375], - [-12.480417, 7.978749], - [-12.482083, 7.97875], - [-12.484583, 7.982083], - [-12.487917, 7.98125], - [-12.495416, 7.98125], - [-12.500644, 7.986478], - [-12.500417, 7.98665], - [-12.500416, 7.997916], - [-12.492917, 7.999584], - [-12.48875, 8.003749], - [-12.48875, 8.004583], - [-12.500416, 8.012084], - [-12.500416, 8.012917], - [-12.497083, 8.014584], - [-12.495417, 8.017083], - [-12.498708, 8.020787], - [-12.495548, 8.026261], - [-12.499453, 8.033026], - [-12.498296, 8.035032], - [-12.498749, 8.035416], - [-12.49875, 8.035689], - [-12.503359, 8.03569], - [-12.507264, 8.042455], - [-12.503723, 8.048591], - [-12.5128, 8.0485], - [-12.5157, 8.0486], - [-12.519499, 8.049099], - [-12.5249, 8.0514], - [-12.530799, 8.052899], - [-12.5361, 8.0551], - [-12.542899, 8.056899], - [-12.5474, 8.0589], - [-12.5509, 8.0596], - [-12.558299, 8.059699], - [-12.5574, 8.0563], - [-12.5552, 8.0519], - [-12.5546, 8.0494], - [-12.5544, 8.046799], - [-12.554799, 8.0425], - [-12.558599, 8.0338], - [-12.5606, 8.030299], - [-12.5623, 8.0266], - [-12.565, 8.0236], - [-12.5688, 8.021899], - [-12.5731, 8.019299], - [-12.5763, 8.017999], - [-12.580299, 8.0161], - [-12.5824, 8.015499], - [-12.588599, 8.0149], - [-12.591699, 8.013799], - [-12.594399, 8.010499], - [-12.5961, 8.0057], - [-12.597499, 8.004], - [-12.6005, 8.001799], - [-12.606699, 7.995799], - [-12.606, 7.9854], - [-12.605299, 7.981799], - [-12.6017, 7.9745], - [-12.5992, 7.970201], - [-12.595299, 7.962199], - [-12.5945, 7.957899], - [-12.5945, 7.9489], - [-12.5952, 7.9447], - [-12.5974, 7.940299], - [-12.601099, 7.9321], - [-12.6024, 7.927099], - [-12.604, 7.923899], - [-12.607399, 7.919099], - [-12.608199, 7.9145] - ] - ], - "type": "Polygon" - }, - "id": 511, - "properties": { - "cc:admin:id": ["1"], - "cc:oBld:total": 37, - "cc:pop:fifteen-to-twenty-four": 1401.4100486383654, - "cc:pop:grid3-total": 9416.551045320664, - "cc:pop:kontur-total": 7747.261807892493, - "cc:pop:men": 3527.090934907226, - "cc:pop:sixty-plus": 485.921971282526, - "cc:pop:total": 7567.195753013708, - "cc:pop:under-five": 1311.9555523803053, - "cc:pop:women": 4040.104818106483, - "cc:pop:women-fiften-to-forty-nine": 1887.9066826668031, - "cc:pop:wp-total": 6159.4165862085165, - "cc:pop:wp-total-UN": 7137.124841000296, - "cc:id": "511", - "cc:Name": "Sembehun CHC", - "cc:site": [-12.5375, 7.9388], - "user:parentName": "Bagruwa", - "user:code": "OU_247053", - "user:orgUnitId": "egjrZ1PHNtT", - "user:level": "4", - "user:parentId": "jPidqyo7cpF" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.351699, 7.9604], - [-11.3437, 7.9596], - [-11.3406, 7.958999], - [-11.337599, 7.957199], - [-11.3316, 7.9518], - [-11.328499, 7.9501], - [-11.326, 7.9504], - [-11.324402, 7.951135], - [-11.324383, 7.952165], - [-11.325124, 7.953542], - [-11.324582, 7.95625], - [-11.321249, 7.959583], - [-11.31875, 7.960416], - [-11.318714, 7.960417], - [-11.318921, 7.961315], - [-11.318707, 7.962565], - [-11.318416, 7.962782], - [-11.317888, 7.964426], - [-11.317514, 7.96511], - [-11.317473, 7.965923], - [-11.317083, 7.965989], - [-11.317083, 7.967917], - [-11.317916, 7.971248], - [-11.31375, 7.969584], - [-11.312083, 7.971249], - [-11.312083, 7.977191], - [-11.312081, 7.977191], - [-11.311991, 7.977023], - [-11.311507, 7.976494], - [-11.311269, 7.976446], - [-11.311542, 7.979251], - [-11.311443, 7.980358], - [-11.311347, 7.981249], - [-11.30875, 7.98125], - [-11.308749, 7.982084], - [-11.306249, 7.984584], - [-11.304583, 7.992916], - [-11.304583, 7.994583], - [-11.30625, 7.996249], - [-11.307916, 7.99625], - [-11.30792, 7.996253], - [-11.307259, 7.997146], - [-11.307226, 7.997133], - [-11.307916, 8.005416], - [-11.305416, 8.00625], - [-11.30125, 8.007084], - [-11.302053, 8.007886], - [-11.302386, 8.007203], - [-11.302958, 8.007697], - [-11.303429, 8.008795], - [-11.303916, 8.009449], - [-11.304517, 8.009733], - [-11.305042, 8.010392], - [-11.30491, 8.010743], - [-11.307916, 8.01375], - [-11.305416, 8.015416], - [-11.295417, 8.014584], - [-11.295416, 8.022082], - [-11.292917, 8.02125], - [-11.289583, 8.032083], - [-11.295936, 8.034906], - [-11.297044, 8.034461], - [-11.299439, 8.033929], - [-11.302286, 8.033359], - [-11.302917, 8.029583], - [-11.312082, 8.027917], - [-11.314582, 8.027084], - [-11.322916, 8.031249], - [-11.32375, 8.032083], - [-11.330416, 8.032083], - [-11.332083, 8.03125], - [-11.337733, 8.031249], - [-11.338006, 8.02911], - [-11.336042, 8.025887], - [-11.336042, 8.024934], - [-11.336649, 8.024083], - [-11.337194, 8.022092], - [-11.336732, 8.020309], - [-11.336397, 8.02001], - [-11.336104, 8.018961], - [-11.335434, 8.017943], - [-11.335057, 8.016865], - [-11.334893, 8.015608], - [-11.338468, 8.016203], - [-11.338433, 8.016605], - [-11.338768, 8.016609], - [-11.33988, 8.019784], - [-11.339711, 8.019917], - [-11.339702, 8.021034], - [-11.339496, 8.020973], - [-11.339322, 8.021221], - [-11.339554, 8.021346], - [-11.339814, 8.021123], - [-11.340174, 8.021661], - [-11.340607, 8.021856], - [-11.341562, 8.024583], - [-11.342449, 8.024583], - [-11.341999, 8.018099], - [-11.3418, 7.9976], - [-11.3421, 7.990499], - [-11.3434, 7.984199], - [-11.347699, 7.9708], - [-11.351699, 7.9604] - ] - ], - "type": "Polygon" - }, - "id": 512, - "properties": { - "cc:admin:id": ["50"], - "cc:oBld:total": 549, - "cc:pop:fifteen-to-twenty-four": 1395.396861290395, - "cc:pop:grid3-total": 2860.370738549823, - "cc:pop:kontur-total": 7716.43677003629, - "cc:pop:men": 4066.273868380286, - "cc:pop:sixty-plus": 452.1454308737044, - "cc:pop:total": 7401.140812129542, - "cc:pop:under-five": 1107.2805897994917, - "cc:pop:women": 3334.8669437492554, - "cc:pop:women-fiften-to-forty-nine": 1697.4982399145717, - "cc:pop:wp-total": 6100.026529164657, - "cc:pop:wp-total-UN": 7069.439622830572, - "cc:id": "512", - "cc:Name": "Sembehun MCHP", - "cc:site": [-11.3277, 8.0208], - "user:parentName": "Kandu Lepiema", - "user:code": "OU_222727", - "user:orgUnitId": "IWM4eKPJJSc", - "user:level": "4", - "user:parentId": "K1r3uF6eZ8n" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.041249, 8.217916], - [-11.04085, 8.217118], - [-11.040727, 8.217219], - [-11.040726, 8.217219], - [-11.03875, 8.214584], - [-11.039582, 8.212917], - [-11.037082, 8.209583], - [-11.03625, 8.205417], - [-11.03625, 8.204584], - [-11.037916, 8.203749], - [-11.034582, 8.195417], - [-11.03125, 8.194584], - [-11.030417, 8.194583], - [-11.031249, 8.189584], - [-11.024583, 8.186249], - [-11.026249, 8.177917], - [-11.02375, 8.174584], - [-11.021249, 8.174584], - [-11.012917, 8.175416], - [-11.007083, 8.177084], - [-11.004582, 8.179584], - [-11.002916, 8.184584], - [-11.002083, 8.190416], - [-11.00625, 8.196249], - [-11.007916, 8.19625], - [-11.007917, 8.202916], - [-11.010417, 8.204583], - [-11.014581, 8.204584], - [-11.01125, 8.208749], - [-11.011249, 8.208748], - [-11.010416, 8.207084], - [-11.008591, 8.20754], - [-11.008937, 8.208308], - [-11.009065, 8.209214], - [-11.01001, 8.211182], - [-11.009776, 8.211692], - [-11.009932, 8.212248], - [-11.010253, 8.212487], - [-11.010784, 8.212555], - [-11.012583, 8.214388], - [-11.013635, 8.215074], - [-11.014827, 8.217137], - [-11.016718, 8.218508], - [-11.017408, 8.218395], - [-11.017409, 8.218396], - [-11.017292, 8.218978], - [-11.015963, 8.220384], - [-11.012998, 8.220422], - [-11.012723, 8.221621], - [-11.011943, 8.222745], - [-11.011701, 8.222854], - [-11.010493, 8.222784], - [-11.009861, 8.223083], - [-11.009743, 8.223468], - [-11.016249, 8.227084], - [-11.01875, 8.230416], - [-11.022083, 8.227917], - [-11.029583, 8.227916], - [-11.035416, 8.22625], - [-11.036249, 8.226249], - [-11.040218, 8.224266], - [-11.040351, 8.21907], - [-11.040241, 8.218925], - [-11.041249, 8.217916] - ] - ], - "type": "Polygon" - }, - "id": 513, - "properties": { - "cc:admin:id": ["75"], - "cc:oBld:total": 0, - "cc:pop:fifteen-to-twenty-four": 414.96091014916624, - "cc:pop:grid3-total": 690.3214865931382, - "cc:pop:kontur-total": 1935.061377376278, - "cc:pop:men": 1202.5273636565523, - "cc:pop:sixty-plus": 128.21025622692196, - "cc:pop:total": 2150.2391677143646, - "cc:pop:under-five": 331.12182025972805, - "cc:pop:women": 947.711804057812, - "cc:pop:women-fiften-to-forty-nine": 468.39710505395834, - "cc:pop:wp-total": 2405.9042528978234, - "cc:pop:wp-total-UN": 2787.1594932387734, - "cc:id": "513", - "cc:Name": "Sembeima MCHP", - "cc:site": [-11.0273, 8.2109], - "user:parentName": "Lower Bambara", - "user:code": "OU_222655", - "user:orgUnitId": "REtQE1gstTf", - "user:level": "4", - "user:parentId": "hdEuw2ugkVF" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.087916, 8.157084], - [-11.087083, 8.157083], - [-11.087082, 8.147917], - [-11.078749, 8.150416], - [-11.07625, 8.145417], - [-11.077636, 8.143567], - [-11.074438, 8.143566], - [-11.070532, 8.136801], - [-11.065417, 8.1368], - [-11.065416, 8.133209], - [-11.063032, 8.12908], - [-11.055219, 8.129079], - [-11.054583, 8.127976], - [-11.054582, 8.122917], - [-11.05125, 8.11875], - [-11.04375, 8.117084], - [-11.042916, 8.127916], - [-11.039583, 8.130416], - [-11.032917, 8.12375], - [-11.032083, 8.127913], - [-11.027375, 8.127914], - [-11.023468, 8.134679], - [-11.017981, 8.134679], - [-11.017916, 8.134584], - [-11.01125, 8.134583], - [-11.009582, 8.132917], - [-11.007083, 8.132084], - [-11.007082, 8.13875], - [-11.00375, 8.144583], - [-10.997629, 8.143903], - [-10.998201, 8.144895], - [-10.994296, 8.15166], - [-10.989163, 8.151661], - [-10.99125, 8.155416], - [-10.997916, 8.159584], - [-10.997083, 8.165416], - [-10.999633, 8.170515], - [-11.004726, 8.170515], - [-11.008633, 8.16375], - [-11.015047, 8.16375], - [-11.015799, 8.163336], - [-11.016249, 8.163384], - [-11.01625, 8.168749], - [-11.017083, 8.171249], - [-11.02125, 8.174583], - [-11.02375, 8.174584], - [-11.026249, 8.177916], - [-11.024583, 8.186249], - [-11.031249, 8.189583], - [-11.030417, 8.194583], - [-11.03125, 8.194584], - [-11.034583, 8.195417], - [-11.037916, 8.203749], - [-11.03625, 8.204584], - [-11.03625, 8.205417], - [-11.037082, 8.209583], - [-11.039583, 8.212916], - [-11.042916, 8.212083], - [-11.045416, 8.207916], - [-11.04375, 8.203751], - [-11.043751, 8.20375], - [-11.049582, 8.204584], - [-11.05125, 8.206249], - [-11.052244, 8.20625], - [-11.052219, 8.206215], - [-11.052903, 8.205552], - [-11.054917, 8.205651], - [-11.05548, 8.205317], - [-11.055965, 8.204959], - [-11.056219, 8.205136], - [-11.056451, 8.204966], - [-11.056461, 8.20529], - [-11.056732, 8.205374], - [-11.057164, 8.205307], - [-11.057248, 8.204965], - [-11.056977, 8.204576], - [-11.056706, 8.20459], - [-11.056554, 8.204809], - [-11.056128, 8.204793], - [-11.056127, 8.204792], - [-11.057159, 8.204008], - [-11.057362, 8.203208], - [-11.059208, 8.202931], - [-11.060661, 8.203168], - [-11.060854, 8.203261], - [-11.061885, 8.203303], - [-11.062121, 8.203504], - [-11.062089, 8.203559], - [-11.062663, 8.203944], - [-11.063156, 8.20404], - [-11.064009, 8.203133], - [-11.064073, 8.203097], - [-11.06465, 8.203282], - [-11.064737, 8.203335], - [-11.064866, 8.203437], - [-11.064857, 8.203455], - [-11.064659, 8.203637], - [-11.065321, 8.204575], - [-11.065616, 8.204856], - [-11.065498, 8.204975], - [-11.065816, 8.205574], - [-11.066764, 8.205839], - [-11.067373, 8.205301], - [-11.068133, 8.205601], - [-11.068968, 8.2053], - [-11.069197, 8.204561], - [-11.069793, 8.203909], - [-11.070628, 8.203796], - [-11.071222, 8.203883], - [-11.07125, 8.203749], - [-11.072082, 8.202917], - [-11.072916, 8.202916], - [-11.074583, 8.199584], - [-11.076249, 8.197916], - [-11.07625, 8.190416], - [-11.077083, 8.187083], - [-11.077917, 8.18625], - [-11.078749, 8.186249], - [-11.079582, 8.177084], - [-11.079396, 8.176712], - [-11.079016, 8.177007], - [-11.079014, 8.177007], - [-11.075417, 8.17125], - [-11.075417, 8.167917], - [-11.083749, 8.169583], - [-11.085416, 8.168749], - [-11.085417, 8.164584], - [-11.086183, 8.163816], - [-11.086185, 8.163816], - [-11.0862, 8.16384], - [-11.086751, 8.163545], - [-11.086944, 8.163744], - [-11.086968, 8.1636], - [-11.08712, 8.16364], - [-11.087422, 8.163931], - [-11.087491, 8.163076], - [-11.087257, 8.162925], - [-11.087343, 8.162656], - [-11.087916, 8.162083], - [-11.087916, 8.157084] - ] - ], - "type": "Polygon" - }, - "id": 514, - "properties": { - "cc:admin:id": ["75"], - "cc:oBld:total": 199, - "cc:pop:fifteen-to-twenty-four": 1077.5980445180503, - "cc:pop:grid3-total": 3435.501395700982, - "cc:pop:kontur-total": 5827.372569165047, - "cc:pop:men": 3135.7387418618796, - "cc:pop:sixty-plus": 333.1894297199654, - "cc:pop:total": 5604.551198209377, - "cc:pop:under-five": 864.3557038999938, - "cc:pop:women": 2468.812456347498, - "cc:pop:women-fiften-to-forty-nine": 1223.5450438234805, - "cc:pop:wp-total": 6880.688977047866, - "cc:pop:wp-total-UN": 7966.52565048803, - "cc:id": "514", - "cc:Name": "Semewebu MCHP", - "cc:site": [-11.0527, 8.2005], - "user:parentName": "Lower Bambara", - "user:code": "OU_222667", - "user:orgUnitId": "NqTZjfTIsxC", - "user:level": "4", - "user:parentId": "hdEuw2ugkVF" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.428472, 7.703603], - [-11.4283, 7.6998], - [-11.427799, 7.6969], - [-11.425599, 7.6927], - [-11.422299, 7.690499], - [-11.420099, 7.688599], - [-11.414099, 7.682899], - [-11.411099, 7.680899], - [-11.4037, 7.6772], - [-11.4005, 7.6758], - [-11.398199, 7.674399], - [-11.3948, 7.6713], - [-11.3916, 7.6679], - [-11.389599, 7.664999], - [-11.387599, 7.661099], - [-11.385599, 7.658499], - [-11.382, 7.6554], - [-11.377799, 7.653399], - [-11.3734, 7.6511], - [-11.370199, 7.649799], - [-11.363, 7.6457], - [-11.360299, 7.6429], - [-11.351799, 7.642899], - [-11.3392, 7.6428], - [-11.336499, 7.643], - [-11.3338, 7.644], - [-11.330699, 7.6479], - [-11.327099, 7.652], - [-11.322499, 7.6567], - [-11.3131, 7.666099], - [-11.3093, 7.670099], - [-11.307199, 7.6731], - [-11.305199, 7.677], - [-11.300799, 7.6828], - [-11.297899, 7.6881], - [-11.295699, 7.6909], - [-11.2908, 7.696199], - [-11.2891, 7.698799], - [-11.288299, 7.7009], - [-11.287399, 7.7051], - [-11.2838, 7.713499], - [-11.2813, 7.718699], - [-11.2799, 7.724499], - [-11.2776, 7.729799], - [-11.2766, 7.733999], - [-11.2746, 7.737899], - [-11.2812, 7.7391], - [-11.288099, 7.740599], - [-11.2927, 7.7426], - [-11.2985, 7.744], - [-11.3006, 7.7453], - [-11.3026, 7.7478], - [-11.305799, 7.752799], - [-11.308199, 7.755599], - [-11.3137, 7.7606], - [-11.322699, 7.765199], - [-11.3259, 7.7665], - [-11.330299, 7.768899], - [-11.3335, 7.7703], - [-11.337899, 7.772499], - [-11.342999, 7.773599], - [-11.345399, 7.774399], - [-11.352999, 7.778199], - [-11.3552, 7.7798], - [-11.360599, 7.784799], - [-11.363399, 7.786999], - [-11.3688, 7.7899], - [-11.3748, 7.7945], - [-11.3787, 7.7963], - [-11.386999, 7.800499], - [-11.389699, 7.802499], - [-11.3925, 7.8057], - [-11.3953, 7.810899], - [-11.3983, 7.8137], - [-11.404899, 7.816999], - [-11.407399, 7.817699], - [-11.410099, 7.817799], - [-11.412299, 7.8174], - [-11.417899, 7.8149], - [-11.422999, 7.8137], - [-11.425299, 7.812799], - [-11.424299, 7.808], - [-11.421099, 7.802699], - [-11.4171, 7.7954], - [-11.412899, 7.786899], - [-11.411099, 7.781099], - [-11.4106, 7.774999], - [-11.4112, 7.769499], - [-11.4134, 7.762299], - [-11.4147, 7.754399], - [-11.4169, 7.744999], - [-11.4174, 7.740899], - [-11.417799, 7.7326], - [-11.418499, 7.7286], - [-11.4199, 7.724999], - [-11.427, 7.712499], - [-11.4281, 7.708599], - [-11.428499, 7.7042], - [-11.428472, 7.703603] - ] - ], - "type": "Polygon" - }, - "id": 515, - "properties": { - "cc:admin:id": ["97"], - "cc:oBld:total": 1111, - "cc:pop:fifteen-to-twenty-four": 2602.415750407942, - "cc:pop:grid3-total": 6938.694367961162, - "cc:pop:kontur-total": 13713.976281325664, - "cc:pop:men": 6481.343356664328, - "cc:pop:sixty-plus": 814.2041025002502, - "cc:pop:total": 13627.854670531306, - "cc:pop:under-five": 2170.7285686633863, - "cc:pop:women": 7146.511313866983, - "cc:pop:women-fiften-to-forty-nine": 3568.7344831784717, - "cc:pop:wp-total": 11726.09303888212, - "cc:pop:wp-total-UN": 13599.60432858471, - "cc:id": "515", - "cc:Name": "Sendumei CHC", - "cc:site": [-11.3867, 7.7138], - "user:parentName": "Niawa", - "user:code": "OU_222650", - "user:orgUnitId": "Jyv7sjpl9bA", - "user:level": "4", - "user:parentId": "uKC54fzxRzO" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.056599, 8.089599], - [-12.054999, 8.0871], - [-12.049399, 8.084999], - [-12.045, 8.0828], - [-12.041799, 8.081499], - [-12.0382, 8.0795], - [-12.034299, 8.077799], - [-12.029499, 8.0754], - [-12.015399, 8.0747], - [-12.0097, 8.0747], - [-12.005999, 8.075], - [-12.003899, 8.0757], - [-11.9968, 8.079099], - [-11.9925, 8.081499], - [-11.989299, 8.0828], - [-11.9804, 8.087699], - [-11.9746, 8.092099], - [-11.969999, 8.0946], - [-11.9635, 8.099599], - [-11.9581, 8.102599], - [-11.9538, 8.105999], - [-11.9515, 8.107499], - [-11.948399, 8.1089], - [-11.944899, 8.1109], - [-11.9418, 8.112299], - [-11.9395, 8.113699], - [-11.937399, 8.1154], - [-11.9314, 8.120999], - [-11.9292, 8.122499], - [-11.926099, 8.1239], - [-11.921799, 8.1263], - [-11.918699, 8.1276], - [-11.9144, 8.129999], - [-11.911199, 8.1313], - [-11.906, 8.133899], - [-11.9009, 8.134999], - [-11.8956, 8.137299], - [-11.892099, 8.138], - [-11.887399, 8.138199], - [-11.8817, 8.138], - [-11.877799, 8.137599], - [-11.8712, 8.1366], - [-11.868299, 8.1425], - [-11.8652, 8.146699], - [-11.863218, 8.148749], - [-11.870416, 8.14875], - [-11.876249, 8.152083], - [-11.876249, 8.15375], - [-11.872083, 8.159584], - [-11.872917, 8.165416], - [-11.877083, 8.168749], - [-11.890416, 8.168749], - [-11.893749, 8.164583], - [-11.89375, 8.155896], - [-11.896922, 8.161388], - [-11.904734, 8.161389], - [-11.904815, 8.16125], - [-11.905753, 8.16125], - [-11.905717, 8.161349], - [-11.905434, 8.164453], - [-11.90526, 8.16496], - [-11.907083, 8.165417], - [-11.910417, 8.170416], - [-11.912916, 8.17125], - [-11.910417, 8.179583], - [-11.910417, 8.182083], - [-11.914582, 8.182083], - [-11.91608, 8.181419], - [-11.913051, 8.186666], - [-11.916957, 8.193431], - [-11.92067, 8.193431], - [-11.921791, 8.192031], - [-11.922698, 8.192031], - [-11.926605, 8.198796], - [-11.931349, 8.198796], - [-11.932083, 8.197917], - [-11.938671, 8.19741], - [-11.939869, 8.199487], - [-11.935963, 8.206252], - [-11.938795, 8.211157], - [-11.939583, 8.209584], - [-11.942082, 8.209583], - [-11.947917, 8.20625], - [-11.94875, 8.209584], - [-11.94875, 8.22125], - [-11.952083, 8.222917], - [-11.958749, 8.223749], - [-11.964582, 8.22375], - [-11.968749, 8.220416], - [-11.96887, 8.219094], - [-11.969573, 8.219094], - [-11.97348, 8.225859], - [-11.978755, 8.225859], - [-11.9791, 8.224199], - [-11.979299, 8.2212], - [-11.979399, 8.214], - [-11.979799, 8.2101], - [-11.981999, 8.2047], - [-11.9826, 8.201899], - [-11.982899, 8.196899], - [-11.9826, 8.1825], - [-11.9827, 8.179499], - [-11.9832, 8.176599], - [-11.9856, 8.170299], - [-11.9861, 8.166299], - [-11.986299, 8.1571], - [-11.986899, 8.1534], - [-11.9888, 8.148899], - [-11.9902, 8.142999], - [-11.992699, 8.1377], - [-11.994, 8.134599], - [-11.996299, 8.1303], - [-11.998099, 8.1265], - [-12.0003, 8.123599], - [-12.0029, 8.120899], - [-12.013999, 8.1097], - [-12.0185, 8.105899], - [-12.0227, 8.103799], - [-12.027899, 8.1014], - [-12.033, 8.100299], - [-12.038199, 8.0977], - [-12.0414, 8.096399], - [-12.046499, 8.094], - [-12.050799, 8.093], - [-12.053199, 8.0921], - [-12.056599, 8.089599] - ] - ], - "type": "Polygon" - }, - "id": 516, - "properties": { - "cc:admin:id": ["48"], - "cc:oBld:total": 14, - "cc:pop:fifteen-to-twenty-four": 757.1424314170688, - "cc:pop:grid3-total": 3354.6902746749115, - "cc:pop:kontur-total": 5564.38594294366, - "cc:pop:men": 1981.111414292787, - "cc:pop:sixty-plus": 276.10689365419057, - "cc:pop:total": 4314.477875955404, - "cc:pop:under-five": 700.818085443805, - "cc:pop:women": 2333.3664616626183, - "cc:pop:women-fiften-to-forty-nine": 1109.8452640630853, - "cc:pop:wp-total": 3617.4280921024074, - "cc:pop:wp-total-UN": 4197.402008579694, - "cc:id": "516", - "cc:Name": "Senehun CHC", - "cc:site": [-11.9487, 8.1698], - "user:parentName": "Kamaje", - "user:code": "OU_247011", - "user:orgUnitId": "oLuhRyYPxRO", - "user:level": "4", - "user:parentId": "LsYpCyYxSLY" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.178268, 7.405088], - [-12.1753, 7.4005], - [-12.172999, 7.398099], - [-12.164799, 7.394099], - [-12.161099, 7.393399], - [-12.1534, 7.3931], - [-12.150599, 7.392399], - [-12.147199, 7.390399], - [-12.1402, 7.3833], - [-12.1372, 7.3807], - [-12.133799, 7.3789], - [-12.130999, 7.378399], - [-12.1223, 7.3783], - [-12.1176, 7.3778], - [-12.112099, 7.375599], - [-12.109599, 7.374999], - [-12.1042, 7.3744], - [-12.1017, 7.3738], - [-12.0972, 7.3718], - [-12.0904, 7.3701], - [-12.0846, 7.3678], - [-12.0767, 7.366699], - [-12.072999, 7.364899], - [-12.068699, 7.361499], - [-12.0662, 7.3604], - [-12.06492, 7.360243], - [-12.063275, 7.363702], - [-12.062779, 7.364367], - [-12.061138, 7.36617], - [-12.058156, 7.36884], - [-12.056169, 7.366358], - [-12.054699, 7.368608], - [-12.053138, 7.370658], - [-12.048472, 7.37499], - [-12.046623, 7.377724], - [-12.044398, 7.382231], - [-12.042239, 7.389441], - [-12.045463, 7.388981], - [-12.045464, 7.388982], - [-12.043793, 7.392804], - [-12.041774, 7.399002], - [-12.041167, 7.400861], - [-12.040025, 7.403271], - [-12.038674, 7.405625], - [-12.038586, 7.406221], - [-12.038267, 7.406554], - [-12.038263, 7.407178], - [-12.037903, 7.407742], - [-12.037324, 7.409478], - [-12.036461, 7.410679], - [-12.035936, 7.41222], - [-12.035141, 7.413454], - [-12.033496, 7.414394], - [-12.032151, 7.414625], - [-12.030914, 7.414546], - [-12.029247, 7.41414], - [-12.023903, 7.411705], - [-12.02187, 7.411072], - [-12.020966, 7.411069], - [-12.018039, 7.411514], - [-12.017002, 7.412096], - [-12.015971, 7.412838], - [-12.013506, 7.415451], - [-12.012323, 7.417039], - [-12.011136, 7.421335], - [-12.010947, 7.42335], - [-12.013322, 7.427803], - [-12.02125, 7.427084], - [-12.032082, 7.427084], - [-12.037082, 7.432083], - [-12.037083, 7.43474], - [-12.040733, 7.434741], - [-12.04125, 7.433847], - [-12.04125, 7.42625], - [-12.044582, 7.422084], - [-12.053749, 7.42125], - [-12.057917, 7.419584], - [-12.061249, 7.419584], - [-12.070416, 7.42625], - [-12.072083, 7.437083], - [-12.082916, 7.437916], - [-12.087082, 7.434583], - [-12.087917, 7.429584], - [-12.088749, 7.42875], - [-12.097916, 7.427916], - [-12.09875, 7.422084], - [-12.10375, 7.41875], - [-12.107917, 7.417917], - [-12.114582, 7.417917], - [-12.115417, 7.422083], - [-12.117476, 7.422907], - [-12.117616, 7.42209], - [-12.11757, 7.421845], - [-12.117779, 7.421885], - [-12.122438, 7.419029], - [-12.121798, 7.417919], - [-12.124973, 7.41242], - [-12.124583, 7.411252], - [-12.124584, 7.411251], - [-12.133749, 7.416249], - [-12.134303, 7.407392], - [-12.139298, 7.407392], - [-12.142883, 7.413601], - [-12.14875, 7.407084], - [-12.152916, 7.41125], - [-12.152917, 7.415146], - [-12.154925, 7.411668], - [-12.160834, 7.411668], - [-12.162917, 7.413749], - [-12.170416, 7.413749], - [-12.172916, 7.412083], - [-12.172917, 7.410416], - [-12.176575, 7.406234], - [-12.176512, 7.40592], - [-12.176778, 7.405074], - [-12.17678, 7.405074], - [-12.177388, 7.405824], - [-12.177873, 7.40574], - [-12.178268, 7.405088] - ] - ], - "type": "Polygon" - }, - "id": 517, - "properties": { - "cc:admin:id": ["147"], - "cc:oBld:total": 1, - "cc:pop:fifteen-to-twenty-four": 232.25776725366418, - "cc:pop:grid3-total": 1738.376283638337, - "cc:pop:kontur-total": 1287.9132003093325, - "cc:pop:men": 607.9054367668676, - "cc:pop:sixty-plus": 72.01705238261651, - "cc:pop:total": 1221.8108203148297, - "cc:pop:under-five": 223.26957809953925, - "cc:pop:women": 613.9053835479623, - "cc:pop:women-fiften-to-forty-nine": 303.2748196362807, - "cc:pop:wp-total": 1116.2017099331722, - "cc:pop:wp-total-UN": 1287.5555642137285, - "cc:id": "517", - "cc:Name": "Senehun Gbloh MCHP", - "cc:site": [-12.1133, 7.4039], - "user:parentName": "Yawbeko", - "user:code": "OU_197438", - "user:orgUnitId": "Efmr3Xo36DR", - "user:level": "4", - "user:parentId": "CG4QD1HC3h4" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.625537, 9.593871], - [-11.623749, 9.592083], - [-11.622916, 9.592082], - [-11.617082, 9.589582], - [-11.615416, 9.585417], - [-11.612916, 9.583749], - [-11.612082, 9.575417], - [-11.605417, 9.577082], - [-11.605416, 9.560417], - [-11.599582, 9.568749], - [-11.594583, 9.56625], - [-11.594583, 9.565843], - [-11.594754, 9.565763], - [-11.592627, 9.566378], - [-11.592264, 9.566588], - [-11.59125, 9.56625], - [-11.588749, 9.56125], - [-11.582916, 9.565416], - [-11.577917, 9.566249], - [-11.577083, 9.565416], - [-11.576249, 9.562916], - [-11.575417, 9.558749], - [-11.575417, 9.557916], - [-11.575654, 9.556842], - [-11.573884, 9.553776], - [-11.566395, 9.553775], - [-11.566394, 9.553774], - [-11.566572, 9.553214], - [-11.566201, 9.552291], - [-11.565126, 9.552191], - [-11.56353, 9.552299], - [-11.563244, 9.552232], - [-11.563749, 9.55375], - [-11.557917, 9.554582], - [-11.557083, 9.554583], - [-11.557082, 9.557082], - [-11.554582, 9.559582], - [-11.549583, 9.557917], - [-11.548749, 9.557916], - [-11.545417, 9.554583], - [-11.547916, 9.550417], - [-11.539583, 9.547917], - [-11.539582, 9.54625], - [-11.538749, 9.545417], - [-11.53375, 9.544583], - [-11.533546, 9.544785], - [-11.532471, 9.544138], - [-11.532184, 9.544127], - [-11.531466, 9.544158], - [-11.53116, 9.544279], - [-11.530066, 9.544663], - [-11.53002, 9.544671], - [-11.529672, 9.5447], - [-11.529554, 9.544676], - [-11.528961, 9.544324], - [-11.528804, 9.544462], - [-11.52748, 9.545043], - [-11.526744, 9.545598], - [-11.526138, 9.545705], - [-11.524588, 9.546667], - [-11.524074, 9.547249], - [-11.523552, 9.548651], - [-11.520966, 9.551986], - [-11.5211, 9.5521], - [-11.5287, 9.5558], - [-11.5312, 9.5566], - [-11.5363, 9.5577], - [-11.540799, 9.559899], - [-11.5448, 9.5615], - [-11.55, 9.5647], - [-11.550899, 9.5663], - [-11.550699, 9.568799], - [-11.548899, 9.573], - [-11.547699, 9.578], - [-11.546499, 9.5805], - [-11.544199, 9.5834], - [-11.5381, 9.589499], - [-11.5341, 9.592799], - [-11.5256, 9.597199], - [-11.522399, 9.5985], - [-11.5181, 9.600899], - [-11.5142, 9.602799], - [-11.511, 9.605299], - [-11.4931, 9.623399], - [-11.489199, 9.6266], - [-11.4814, 9.630599], - [-11.4793, 9.631099], - [-11.474099, 9.631499], - [-11.469099, 9.631399], - [-11.4642, 9.6311], - [-11.467199, 9.635599], - [-11.469599, 9.638299], - [-11.474299, 9.642999], - [-11.4771, 9.6452], - [-11.485099, 9.649199], - [-11.487199, 9.649699], - [-11.4909, 9.65], - [-11.500499, 9.650199], - [-11.503999, 9.651], - [-11.506, 9.6522], - [-11.5096, 9.6551], - [-11.511899, 9.656499], - [-11.5191, 9.6585], - [-11.521, 9.6597], - [-11.5257, 9.6634], - [-11.534599, 9.667699], - [-11.5385, 9.665799], - [-11.542299, 9.6635], - [-11.549399, 9.6571], - [-11.5515, 9.655399], - [-11.5538, 9.653999], - [-11.556899, 9.6527], - [-11.5605, 9.650699], - [-11.564299, 9.649], - [-11.566999, 9.6469], - [-11.569499, 9.644], - [-11.572899, 9.6378], - [-11.5766, 9.633099], - [-11.58, 9.626899], - [-11.5831, 9.623099], - [-11.5902, 9.615999], - [-11.593, 9.613899], - [-11.596899, 9.6121], - [-11.6005, 9.610099], - [-11.6044, 9.608299], - [-11.607, 9.606399], - [-11.613399, 9.6005], - [-11.615399, 9.599], - [-11.6192, 9.597099], - [-11.623499, 9.5947], - [-11.625537, 9.593871] - ] - ], - "type": "Polygon" - }, - "id": 518, - "properties": { - "cc:admin:id": ["144"], - "cc:oBld:total": 5744, - "cc:pop:fifteen-to-twenty-four": 6243.95523914874, - "cc:pop:grid3-total": 42976.747141462845, - "cc:pop:kontur-total": 33199.488197896055, - "cc:pop:men": 16072.932542503786, - "cc:pop:sixty-plus": 2072.7086593777203, - "cc:pop:total": 33709.37385127283, - "cc:pop:under-five": 5390.44760107783, - "cc:pop:women": 17636.441308769052, - "cc:pop:women-fiften-to-forty-nine": 8628.07564803672, - "cc:pop:wp-total": 27351.80353448898, - "cc:pop:wp-total-UN": 31733.17699976944, - "cc:id": "518", - "cc:Name": "Senekedugu MCHP", - "cc:site": [-11.5543, 9.6233], - "user:parentName": "Wara Wara Yagala", - "user:code": "OU_226262", - "user:orgUnitId": "xX4lIVqF4yb", - "user:level": "4", - "user:parentId": "EZPwuUTeIIG" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.844901, 7.491641], - [-11.844534, 7.490669], - [-11.839583, 7.492083], - [-11.837082, 7.489584], - [-11.835416, 7.489583], - [-11.833231, 7.489037], - [-11.832399, 7.490823], - [-11.832347, 7.490939], - [-11.831271, 7.490791], - [-11.830537, 7.490282], - [-11.830821, 7.489431], - [-11.830092, 7.489243], - [-11.829587, 7.4881], - [-11.828552, 7.48717], - [-11.82823, 7.487377], - [-11.827892, 7.487323], - [-11.827473, 7.487148], - [-11.827109, 7.486696], - [-11.826176, 7.485914], - [-11.825478, 7.484701], - [-11.824893, 7.484164], - [-11.823757, 7.483426], - [-11.82321, 7.483451], - [-11.823057, 7.483453], - [-11.817916, 7.48125], - [-11.815842, 7.481249], - [-11.815984, 7.480739], - [-11.816295, 7.479921], - [-11.818687, 7.47992], - [-11.819614, 7.479914], - [-11.819657, 7.476086], - [-11.818575, 7.475634], - [-11.818194, 7.475634], - [-11.818386, 7.476979], - [-11.818187, 7.477473], - [-11.81771, 7.478015], - [-11.817318, 7.477458], - [-11.815447, 7.476718], - [-11.814085, 7.475352], - [-11.813671, 7.473543], - [-11.812856, 7.47341], - [-11.812159, 7.474021], - [-11.812009, 7.474058], - [-11.811815, 7.473835], - [-11.811831, 7.473426], - [-11.8112, 7.472967], - [-11.810416, 7.473749], - [-11.809432, 7.47375], - [-11.809338, 7.473839], - [-11.809337, 7.473837], - [-11.809354, 7.47375], - [-11.806666, 7.47375], - [-11.806284, 7.473984], - [-11.805842, 7.47375], - [-11.801249, 7.473749], - [-11.799583, 7.472083], - [-11.803641, 7.46329], - [-11.802267, 7.46357], - [-11.800765, 7.465314], - [-11.800367, 7.465384], - [-11.799155, 7.465911], - [-11.79834, 7.466767], - [-11.798275, 7.467495], - [-11.797685, 7.467351], - [-11.795319, 7.466984], - [-11.792799, 7.466421], - [-11.793742, 7.462606], - [-11.792482, 7.462389], - [-11.792755, 7.461804], - [-11.792504, 7.461086], - [-11.793152, 7.460553], - [-11.79312, 7.459714], - [-11.792808, 7.459448], - [-11.792101, 7.459432], - [-11.791522, 7.459612], - [-11.791222, 7.459672], - [-11.790668, 7.460117], - [-11.789414, 7.460256], - [-11.789022, 7.460022], - [-11.788555, 7.459257], - [-11.78886, 7.458119], - [-11.789649, 7.457405], - [-11.790051, 7.456687], - [-11.789505, 7.454964], - [-11.789583, 7.454729], - [-11.789582, 7.453721], - [-11.785268, 7.45372], - [-11.785416, 7.452083], - [-11.775417, 7.451249], - [-11.773749, 7.44375], - [-11.769583, 7.445417], - [-11.76375, 7.452916], - [-11.761793, 7.452916], - [-11.761839, 7.452648], - [-11.759583, 7.452084], - [-11.757083, 7.453749], - [-11.751249, 7.442917], - [-11.749582, 7.444583], - [-11.748745, 7.445003], - [-11.7492, 7.4458], - [-11.7506, 7.4489], - [-11.7523, 7.4517], - [-11.753599, 7.455799], - [-11.753699, 7.461199], - [-11.752999, 7.4638], - [-11.750799, 7.4691], - [-11.750299, 7.4728], - [-11.7502, 7.480499], - [-11.7497, 7.485199], - [-11.747499, 7.4906], - [-11.746999, 7.4931], - [-11.7465, 7.498499], - [-11.7457, 7.501299], - [-11.743999, 7.5035], - [-11.7402, 7.5065], - [-11.738199, 7.5094], - [-11.735899, 7.5122], - [-11.7223, 7.5247], - [-11.724099, 7.5277], - [-11.725599, 7.534499], - [-11.727499, 7.538899], - [-11.72765, 7.539583], - [-11.729583, 7.539584], - [-11.735058, 7.540951], - [-11.735016, 7.540841], - [-11.735018, 7.540839], - [-11.736249, 7.54125], - [-11.737917, 7.548749], - [-11.744583, 7.542917], - [-11.746249, 7.542917], - [-11.747916, 7.543749], - [-11.747917, 7.545416], - [-11.752916, 7.547083], - [-11.757082, 7.54625], - [-11.760416, 7.547083], - [-11.76125, 7.549583], - [-11.767916, 7.547917], - [-11.772082, 7.549583], - [-11.77625, 7.54625], - [-11.782082, 7.546249], - [-11.782083, 7.545417], - [-11.786249, 7.545416], - [-11.787916, 7.544584], - [-11.7882, 7.544512], - [-11.788964, 7.551717], - [-11.789046, 7.551798], - [-11.790629, 7.552462], - [-11.791337, 7.552571], - [-11.794738, 7.552961], - [-11.79541, 7.553178], - [-11.797003, 7.55253], - [-11.799667, 7.551865], - [-11.801114, 7.550979], - [-11.802652, 7.55244], - [-11.802369, 7.55276], - [-11.802776, 7.553292], - [-11.802267, 7.554398], - [-11.802337, 7.556131], - [-11.803393, 7.554812], - [-11.804299, 7.554053], - [-11.804395, 7.554099], - [-11.804353, 7.554796], - [-11.804187, 7.55518], - [-11.80431, 7.55587], - [-11.804439, 7.556152], - [-11.804857, 7.556339], - [-11.804889, 7.556722], - [-11.804723, 7.5576], - [-11.803753, 7.558625], - [-11.803431, 7.558769], - [-11.80319, 7.559158], - [-11.803291, 7.559646], - [-11.803603, 7.55996], - [-11.804327, 7.559609], - [-11.805249, 7.558566], - [-11.805421, 7.557923], - [-11.805834, 7.557524], - [-11.806789, 7.55694], - [-11.807405, 7.557093], - [-11.807582, 7.557407], - [-11.807562, 7.557583], - [-11.80777, 7.558206], - [-11.807749, 7.558976], - [-11.807932, 7.559423], - [-11.808302, 7.559789], - [-11.808725, 7.559997], - [-11.809111, 7.55988], - [-11.809454, 7.559215], - [-11.809289, 7.55879], - [-11.809273, 7.557727], - [-11.809686, 7.557227], - [-11.811091, 7.557944], - [-11.811873, 7.557982], - [-11.811054, 7.558642], - [-11.81107, 7.560445], - [-11.81107, 7.563749], - [-11.814868, 7.563749], - [-11.815167, 7.563407], - [-11.815532, 7.563173], - [-11.816503, 7.562805], - [-11.816558, 7.561356], - [-11.816559, 7.561356], - [-11.816745, 7.561619], - [-11.818724, 7.56046], - [-11.820636, 7.563749], - [-11.827916, 7.56375], - [-11.829018, 7.564853], - [-11.828531, 7.564874], - [-11.828154, 7.566134], - [-11.827383, 7.567032], - [-11.829998, 7.567], - [-11.831099, 7.563999], - [-11.830999, 7.5592], - [-11.8295, 7.5548], - [-11.826, 7.5485], - [-11.8246, 7.5446], - [-11.8229, 7.5348], - [-11.821499, 7.530199], - [-11.8211, 7.526899], - [-11.822099, 7.5226], - [-11.823699, 7.5198], - [-11.8293, 7.514599], - [-11.837799, 7.5032], - [-11.842099, 7.4958], - [-11.844901, 7.491641] - ] - ], - "type": "Polygon" - }, - "id": 519, - "properties": { - "cc:admin:id": ["88"], - "cc:oBld:total": 25, - "cc:pop:fifteen-to-twenty-four": 1676.6634015039538, - "cc:pop:grid3-total": 12682.297811627945, - "cc:pop:kontur-total": 9282.227876089042, - "cc:pop:men": 4731.55443575396, - "cc:pop:sixty-plus": 693.3087295776799, - "cc:pop:total": 9438.16134035579, - "cc:pop:under-five": 1570.8639005607756, - "cc:pop:women": 4706.606904601827, - "cc:pop:women-fiften-to-forty-nine": 2224.724331118833, - "cc:pop:wp-total": 10504.371799896748, - "cc:pop:wp-total-UN": 12182.989094908553, - "cc:id": "519", - "cc:Name": "Sengema CHP", - "cc:site": [-11.7843, 7.4932], - "user:parentName": "Malen", - "user:code": "OU_260396", - "user:orgUnitId": "aRXfvyonenP", - "user:level": "4", - "user:parentId": "DfUfwjM9am5" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.039409, 7.55306], - [-12.039499, 7.552499], - [-12.0393, 7.5489], - [-12.0384, 7.5455], - [-12.0364, 7.5419], - [-12.034999, 7.538799], - [-12.033, 7.5353], - [-12.032199, 7.533199], - [-12.031699, 7.528899], - [-12.0316, 7.5192], - [-12.031399, 7.5145], - [-12.0283, 7.5076], - [-12.027199, 7.502499], - [-12.022799, 7.493499], - [-12.019799, 7.490699], - [-12.0139, 7.4877], - [-12.0118, 7.487], - [-12.008499, 7.486499], - [-12.0025, 7.4863], - [-11.9832, 7.486499], - [-11.9773, 7.4861], - [-11.974999, 7.485399], - [-11.973099, 7.484199], - [-11.967199, 7.479799], - [-11.9605, 7.4763], - [-11.9579, 7.4754], - [-11.954999, 7.4751], - [-11.9481, 7.475299], - [-11.9453, 7.475899], - [-11.940799, 7.478], - [-11.934099, 7.48], - [-11.9308, 7.4831], - [-11.9289, 7.486799], - [-11.927199, 7.489], - [-11.923999, 7.4922], - [-11.9201, 7.495], - [-11.9167, 7.499599], - [-11.9132, 7.502999], - [-11.9089, 7.5061], - [-11.904899, 7.5128], - [-11.904299, 7.5154], - [-11.9042, 7.5191], - [-11.904299, 7.524799], - [-11.9054, 7.533299], - [-11.912699, 7.5306], - [-11.917, 7.529599], - [-11.9246, 7.529], - [-11.9337, 7.5293], - [-11.936699, 7.529799], - [-11.939499, 7.530599], - [-11.946899, 7.534599], - [-11.9496, 7.5356], - [-11.9525, 7.5361], - [-11.962899, 7.537099], - [-11.965799, 7.537899], - [-11.969399, 7.539899], - [-11.971599, 7.541699], - [-11.975199, 7.545899], - [-11.9773, 7.5496], - [-11.9811, 7.5607], - [-11.984599, 7.574199], - [-11.986799, 7.584499], - [-11.990299, 7.591099], - [-11.990476, 7.591488], - [-11.992083, 7.590417], - [-11.995854, 7.590416], - [-11.995906, 7.590132], - [-11.995925, 7.588454], - [-11.995607, 7.587405], - [-11.9971, 7.586658], - [-11.997101, 7.586659], - [-11.997191, 7.586997], - [-12.005416, 7.586249], - [-12.008749, 7.582083], - [-12.00875, 7.574581], - [-12.008859, 7.574564], - [-12.012151, 7.580266], - [-12.019963, 7.580265], - [-12.022936, 7.575116], - [-12.026249, 7.575416], - [-12.027488, 7.575003], - [-12.026472, 7.574079], - [-12.026145, 7.573451], - [-12.025944, 7.57247], - [-12.028749, 7.56125], - [-12.033749, 7.562084], - [-12.036065, 7.564398], - [-12.0361, 7.563799], - [-12.0367, 7.561199], - [-12.0388, 7.556799], - [-12.039409, 7.55306] - ] - ], - "type": "Polygon" - }, - "id": 520, - "properties": { - "cc:admin:id": ["65"], - "cc:oBld:total": 10, - "cc:pop:fifteen-to-twenty-four": 902.7189797374544, - "cc:pop:grid3-total": 7570.432162148589, - "cc:pop:kontur-total": 5222.320864742591, - "cc:pop:men": 2316.332636976545, - "cc:pop:sixty-plus": 324.01617634279603, - "cc:pop:total": 4816.135865431515, - "cc:pop:under-five": 834.3896613975295, - "cc:pop:women": 2499.8032284549695, - "cc:pop:women-fiften-to-forty-nine": 1180.362151328522, - "cc:pop:wp-total": 4782.081124435034, - "cc:pop:wp-total-UN": 5550.124576028715, - "cc:id": "520", - "cc:Name": "Senjehun MCHP", - "cc:site": [-12.0141, 7.5318], - "user:parentName": "Kpanda Kemoh", - "user:code": "OU_197425", - "user:orgUnitId": "MnfykVk3zin", - "user:level": "4", - "user:parentId": "aWQTfvgPA5v" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.929582, 9.083749], - [-12.928749, 9.072917], - [-12.92125, 9.07375], - [-12.919583, 9.074583], - [-12.917082, 9.077082], - [-12.914058, 9.075874], - [-12.91389, 9.076206], - [-12.913888, 9.076207], - [-12.914177, 9.074617], - [-12.915034, 9.070035], - [-12.91125, 9.066249], - [-12.910416, 9.064583], - [-12.90625, 9.064582], - [-12.903749, 9.062083], - [-12.902083, 9.062082], - [-12.902082, 9.06125], - [-12.901249, 9.061249], - [-12.89513, 9.05989], - [-12.894005, 9.061215], - [-12.892917, 9.059582], - [-12.893749, 9.05125], - [-12.891249, 9.050416], - [-12.882083, 9.04875], - [-12.882082, 9.045417], - [-12.877917, 9.04125], - [-12.877916, 9.038944], - [-12.874516, 9.039274], - [-12.872477, 9.040171], - [-12.871427, 9.041191], - [-12.871186, 9.040955], - [-12.871402, 9.040392], - [-12.871323, 9.039905], - [-12.871108, 9.039702], - [-12.869226, 9.039295], - [-12.868632, 9.039416], - [-12.866928, 9.038538], - [-12.864732, 9.036539], - [-12.862917, 9.032916], - [-12.862917, 9.042082], - [-12.865417, 9.042083], - [-12.865859, 9.043412], - [-12.865688, 9.04344], - [-12.866249, 9.046249], - [-12.859583, 9.05125], - [-12.858749, 9.053749], - [-12.855417, 9.054583], - [-12.854732, 9.059377], - [-12.853941, 9.060287], - [-12.843392, 9.058179], - [-12.842656, 9.059261], - [-12.842032, 9.060575], - [-12.842032, 9.061622], - [-12.842358, 9.06267], - [-12.843607, 9.066666], - [-12.84367, 9.067082], - [-12.840416, 9.067083], - [-12.835417, 9.067917], - [-12.832082, 9.072082], - [-12.829583, 9.072082], - [-12.827916, 9.070417], - [-12.826302, 9.070416], - [-12.82629, 9.070316], - [-12.825949, 9.06893], - [-12.822082, 9.071249], - [-12.817083, 9.072083], - [-12.817082, 9.081233], - [-12.810447, 9.081233], - [-12.808306, 9.077527], - [-12.807082, 9.078749], - [-12.798269, 9.079485], - [-12.799, 9.0821], - [-12.7997, 9.0871], - [-12.799799, 9.0935], - [-12.7991, 9.101399], - [-12.8018, 9.104499], - [-12.808199, 9.108299], - [-12.8101, 9.109199], - [-12.8148, 9.109799], - [-12.8317, 9.1095], - [-12.835499, 9.109599], - [-12.8382, 9.11], - [-12.840399, 9.1112], - [-12.842399, 9.1134], - [-12.8433, 9.1168], - [-12.843499, 9.122299], - [-12.843356, 9.124216], - [-12.843558, 9.12544], - [-12.845416, 9.127916], - [-12.850417, 9.129582], - [-12.852916, 9.129582], - [-12.857152, 9.125347], - [-12.85737, 9.124546], - [-12.857489, 9.121224], - [-12.857293, 9.120102], - [-12.857439, 9.118329], - [-12.857317, 9.117279], - [-12.857486, 9.116731], - [-12.859068, 9.114706], - [-12.859188, 9.112279], - [-12.868749, 9.113749], - [-12.870417, 9.10875], - [-12.872917, 9.10625], - [-12.878566, 9.110487], - [-12.878566, 9.110489], - [-12.878373, 9.11063], - [-12.878239, 9.111077], - [-12.882917, 9.113749], - [-12.885416, 9.113749], - [-12.885417, 9.103749], - [-12.891249, 9.101249], - [-12.892917, 9.097917], - [-12.902916, 9.097916], - [-12.904927, 9.091884], - [-12.905457, 9.092001], - [-12.90415, 9.089583], - [-12.906249, 9.089582], - [-12.909361, 9.088027], - [-12.911508, 9.083328], - [-12.912233, 9.082039], - [-12.912455, 9.081552], - [-12.914582, 9.082082], - [-12.91625, 9.08125], - [-12.918749, 9.083749], - [-12.91875, 9.085416], - [-12.92375, 9.087916], - [-12.926249, 9.087916], - [-12.929582, 9.083749] - ] - ], - "type": "Polygon" - }, - "id": 521, - "properties": { - "cc:admin:id": ["82"], - "cc:oBld:total": 245, - "cc:pop:fifteen-to-twenty-four": 1353.200784235322, - "cc:pop:grid3-total": 4859.699891564588, - "cc:pop:kontur-total": 7876.645539501536, - "cc:pop:men": 3443.181033910917, - "cc:pop:sixty-plus": 485.2322354006773, - "cc:pop:total": 7262.725062171632, - "cc:pop:under-five": 1153.940147836771, - "cc:pop:women": 3819.544028260713, - "cc:pop:women-fiften-to-forty-nine": 1832.4846724468068, - "cc:pop:wp-total": 8126.598384259709, - "cc:pop:wp-total-UN": 9419.981092216469, - "cc:id": "521", - "cc:Name": "Senthai MCHP", - "cc:site": [-12.8863, 9.0668], - "user:parentName": "Magbema", - "user:code": "OU_211240", - "user:orgUnitId": "Qr41Mw2MSjo", - "user:level": "4", - "user:parentId": "QywkxFudXrC" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.256647, 8.277083], - [-11.2568, 8.275099], - [-11.256799, 8.270399], - [-11.2566, 8.2658], - [-11.256199, 8.2618], - [-11.252399, 8.260999], - [-11.2496, 8.2595], - [-11.248856, 8.258307], - [-11.247083, 8.25875], - [-11.245416, 8.261249], - [-11.239202, 8.261249], - [-11.23848, 8.255088], - [-11.238553, 8.254584], - [-11.235416, 8.254583], - [-11.23125, 8.25125], - [-11.23124, 8.251119], - [-11.230681, 8.251118], - [-11.226775, 8.244353], - [-11.219398, 8.244352], - [-11.216249, 8.240417], - [-11.21125, 8.239583], - [-11.210416, 8.23625], - [-11.200417, 8.236249], - [-11.200416, 8.234584], - [-11.197082, 8.232916], - [-11.195416, 8.224584], - [-11.194582, 8.224584], - [-11.193749, 8.225417], - [-11.188749, 8.231249], - [-11.181249, 8.227916], - [-11.177083, 8.22125], - [-11.177082, 8.220417], - [-11.17125, 8.22125], - [-11.167916, 8.224583], - [-11.164584, 8.224584], - [-11.164582, 8.220417], - [-11.150417, 8.220417], - [-11.146249, 8.224583], - [-11.142082, 8.222084], - [-11.137082, 8.222083], - [-11.132082, 8.215417], - [-11.130417, 8.214583], - [-11.127082, 8.21125], - [-11.125271, 8.21125], - [-11.1241, 8.216099], - [-11.122099, 8.2206], - [-11.121499, 8.2243], - [-11.1212, 8.231999], - [-11.1203, 8.235599], - [-11.1185, 8.239099], - [-11.117199, 8.2423], - [-11.1147, 8.247499], - [-11.113299, 8.2533], - [-11.1112, 8.257699], - [-11.1099, 8.260899], - [-11.107499, 8.2651], - [-11.1043, 8.271999], - [-11.1034, 8.275399], - [-11.1031, 8.282199], - [-11.1024, 8.286399], - [-11.1005, 8.291299], - [-11.099899, 8.2941], - [-11.0996, 8.301], - [-11.099699, 8.308999], - [-11.099899, 8.312999], - [-11.100599, 8.316699], - [-11.103299, 8.322299], - [-11.1058, 8.326099], - [-11.1078, 8.3277], - [-11.1144, 8.331], - [-11.116999, 8.331699], - [-11.1196, 8.331699], - [-11.1226, 8.330899], - [-11.1245, 8.329699], - [-11.127999, 8.3268], - [-11.1303, 8.325399], - [-11.1331, 8.324499], - [-11.136999, 8.3243], - [-11.140699, 8.324499], - [-11.142699, 8.325099], - [-11.1443, 8.3261], - [-11.157599, 8.331399], - [-11.165899, 8.336799], - [-11.169999, 8.338699], - [-11.1744, 8.339799], - [-11.178999, 8.338499], - [-11.188499, 8.331], - [-11.1985, 8.324599], - [-11.2024, 8.323299], - [-11.207899, 8.323], - [-11.2129, 8.322299], - [-11.219099, 8.320299], - [-11.221399, 8.3186], - [-11.2229, 8.316599], - [-11.2247, 8.312899], - [-11.2268, 8.309999], - [-11.2293, 8.307299], - [-11.2314, 8.305399], - [-11.234199, 8.3033], - [-11.2386, 8.300899], - [-11.2409, 8.298799], - [-11.2434, 8.2955], - [-11.247099, 8.2931], - [-11.2498, 8.290599], - [-11.2521, 8.287799], - [-11.255899, 8.2799], - [-11.256599, 8.2777], - [-11.256647, 8.277083] - ] - ], - "type": "Polygon" - }, - "id": 522, - "properties": { - "cc:admin:id": ["22"], - "cc:oBld:total": 770, - "cc:pop:fifteen-to-twenty-four": 1360.3642372087518, - "cc:pop:grid3-total": 6780.31813028806, - "cc:pop:kontur-total": 7241.653592982896, - "cc:pop:men": 3452.0428806666882, - "cc:pop:sixty-plus": 427.8215097269232, - "cc:pop:total": 6994.787170035656, - "cc:pop:under-five": 1135.4040704940571, - "cc:pop:women": 3542.744289368968, - "cc:pop:women-fiften-to-forty-nine": 1749.2868708375856, - "cc:pop:wp-total": 5967.558331776151, - "cc:pop:wp-total-UN": 6924.651297680027, - "cc:id": "522", - "cc:Name": "Serabu (Koya) CHP", - "cc:site": [-11.1532, 8.28012], - "user:parentName": "Koya (kenema)", - "user:code": "OU_222643", - "user:orgUnitId": "wjP03y8OY5k", - "user:level": "4", - "user:parentId": "EYt6ThQDagn" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.143295, 9.547739], - [-11.1432, 9.5391], - [-11.142899, 9.535099], - [-11.142099, 9.531399], - [-11.140099, 9.526799], - [-11.1381, 9.5165], - [-11.135799, 9.511099], - [-11.135099, 9.503999], - [-11.135, 9.477], - [-11.134599, 9.470899], - [-11.133899, 9.467999], - [-11.131799, 9.462999], - [-11.131099, 9.458899], - [-11.130699, 9.453099], - [-11.129899, 9.449499], - [-11.127699, 9.444099], - [-11.127099, 9.440099], - [-11.1269, 9.4329], - [-11.126599, 9.429899], - [-11.125999, 9.426999], - [-11.123599, 9.421699], - [-11.122999, 9.417699], - [-11.1228, 9.412599], - [-11.123, 9.407499], - [-11.1237, 9.404699], - [-11.125899, 9.4003], - [-11.1272, 9.397199], - [-11.1294, 9.392799], - [-11.1301, 9.388999], - [-11.1301, 9.377], - [-11.130599, 9.3721], - [-11.1327, 9.366699], - [-11.1335, 9.362999], - [-11.133799, 9.3572], - [-11.134299, 9.3535], - [-11.136499, 9.3482], - [-11.137099, 9.3444], - [-11.137099, 9.341399], - [-11.1363, 9.3378], - [-11.1343, 9.3332], - [-11.133599, 9.330499], - [-11.1332, 9.325699], - [-11.133299, 9.3188], - [-11.133699, 9.315], - [-11.12, 9.315], - [-11.1149, 9.3148], - [-11.111899, 9.314399], - [-11.1066, 9.3121], - [-11.103599, 9.311499], - [-11.099599, 9.3111], - [-11.0934, 9.311199], - [-11.0904, 9.311499], - [-11.087699, 9.3125], - [-11.082029, 9.315293], - [-11.07875, 9.317917], - [-11.07831, 9.319676], - [-11.078218, 9.319653], - [-11.077941, 9.32013], - [-11.07013, 9.320131], - [-11.067141, 9.325305], - [-11.067081, 9.325289], - [-11.066667, 9.324854], - [-11.065923, 9.324758], - [-11.064647, 9.325381], - [-11.067419, 9.330183], - [-11.063514, 9.336948], - [-11.055702, 9.336949], - [-11.051795, 9.343714], - [-11.055701, 9.35048], - [-11.051795, 9.357246], - [-11.055701, 9.364012], - [-11.051827, 9.370722], - [-11.051917, 9.370724], - [-11.052836, 9.371552], - [-11.054014, 9.37319], - [-11.054699, 9.374895], - [-11.05125, 9.380417], - [-11.053749, 9.387083], - [-11.04875, 9.392917], - [-11.049582, 9.395416], - [-11.044583, 9.396249], - [-11.040417, 9.39625], - [-11.034583, 9.402917], - [-11.034583, 9.404582], - [-11.041249, 9.407916], - [-11.043039, 9.410899], - [-11.04275, 9.411259], - [-11.042313, 9.411367], - [-11.041972, 9.411406], - [-11.040852, 9.410766], - [-11.040097, 9.410712], - [-11.038859, 9.41121], - [-11.037866, 9.412325], - [-11.040752, 9.417325], - [-11.036846, 9.424089], - [-11.029034, 9.42409], - [-11.025128, 9.430856], - [-11.027278, 9.434582], - [-11.022917, 9.434583], - [-11.022917, 9.444582], - [-11.027916, 9.45375], - [-11.026249, 9.454582], - [-11.017846, 9.446675], - [-11.017405, 9.446912], - [-11.016895, 9.448405], - [-11.016925, 9.448649], - [-11.016923, 9.44865], - [-11.01428, 9.444074], - [-11.007991, 9.444074], - [-11.00625, 9.44625], - [-11.00625, 9.456249], - [-11.007334, 9.457604], - [-11.010162, 9.457605], - [-11.010074, 9.457726], - [-11.00981, 9.45854], - [-11.009962, 9.461499], - [-11.009766, 9.461907], - [-11.009697, 9.462854], - [-11.008669, 9.464617], - [-11.008651, 9.464684], - [-11.005596, 9.464685], - [-11.003249, 9.468749], - [-11.006264, 9.46875], - [-11.006142, 9.468879], - [-11.006067, 9.469861], - [-11.006272, 9.470658], - [-11.00657, 9.470972], - [-11.006411, 9.471722], - [-11.005922, 9.472551], - [-11.008337, 9.472454], - [-11.009046, 9.471549], - [-11.010292, 9.47096], - [-11.01096, 9.47096], - [-11.012083, 9.472083], - [-11.012916, 9.475417], - [-11.003051, 9.482815], - [-11.001269, 9.479732], - [-11.000711, 9.480144], - [-10.999708, 9.480515], - [-10.998925, 9.481055], - [-10.998533, 9.48177], - [-10.998426, 9.482314], - [-10.998088, 9.482626], - [-10.996843, 9.482801], - [-10.996471, 9.483018], - [-10.995968, 9.483389], - [-10.994601, 9.483959], - [-10.992123, 9.483854], - [-10.990846, 9.4835], - [-10.990197, 9.483479], - [-10.988217, 9.484123], - [-10.98798, 9.484331], - [-10.98782, 9.484706], - [-10.987817, 9.484851], - [-10.988185, 9.484852], - [-10.992091, 9.491617], - [-10.988185, 9.498383], - [-10.990891, 9.503069], - [-10.995562, 9.503403], - [-10.995703, 9.503649], - [-10.991798, 9.510414], - [-10.983986, 9.510415], - [-10.983962, 9.510457], - [-10.984582, 9.517916], - [-10.985417, 9.524582], - [-10.988749, 9.527917], - [-10.987083, 9.533749], - [-10.987082, 9.538978], - [-10.980373, 9.538979], - [-10.979513, 9.540467], - [-10.978073, 9.540697], - [-10.978791, 9.541008], - [-10.979152, 9.541345], - [-10.97983, 9.541467], - [-10.979945, 9.541742], - [-10.980506, 9.54212], - [-10.980939, 9.542109], - [-10.981487, 9.542671], - [-10.982213, 9.543854], - [-10.982895, 9.544619], - [-10.983257, 9.546174], - [-10.983255, 9.546218], - [-10.976483, 9.546219], - [-10.975882, 9.54726], - [-10.976222, 9.548226], - [-10.97657, 9.548716], - [-10.97707, 9.548655], - [-10.977269, 9.549034], - [-10.977274, 9.549576], - [-10.972843, 9.555272], - [-10.97296, 9.555373], - [-10.972083, 9.55625], - [-10.97125, 9.561249], - [-10.97125, 9.562082], - [-10.979277, 9.560624], - [-10.979282, 9.56065], - [-10.979732, 9.561895], - [-10.979738, 9.563044], - [-10.980721, 9.565161], - [-10.982113, 9.566305], - [-10.989583, 9.559583], - [-10.992917, 9.560417], - [-10.995416, 9.562916], - [-10.997083, 9.568749], - [-10.99875, 9.567083], - [-11.005416, 9.567083], - [-11.005417, 9.577916], - [-11.006078, 9.579239], - [-11.007325, 9.57708], - [-11.015137, 9.57708], - [-11.016931, 9.580188], - [-11.017083, 9.579583], - [-11.017916, 9.579583], - [-11.017916, 9.58047], - [-11.016378, 9.583135], - [-11.019753, 9.58898], - [-11.020006, 9.588607], - [-11.022084, 9.587706], - [-11.022748, 9.587051], - [-11.023005, 9.586573], - [-11.022961, 9.586022], - [-11.023198, 9.58587], - [-11.023647, 9.584883], - [-11.023768, 9.584708], - [-11.026249, 9.585416], - [-11.033749, 9.569583], - [-11.042916, 9.572916], - [-11.043749, 9.582082], - [-11.039583, 9.587083], - [-11.044582, 9.600416], - [-11.041561, 9.604951], - [-11.045297, 9.611424], - [-11.041392, 9.61819], - [-11.045298, 9.624955], - [-11.05311, 9.624956], - [-11.057017, 9.631721], - [-11.064829, 9.631722], - [-11.068735, 9.638488], - [-11.064829, 9.645253], - [-11.068736, 9.652018], - [-11.076547, 9.652018], - [-11.07889, 9.647963], - [-11.081249, 9.64875], - [-11.084583, 9.652082], - [-11.093749, 9.652083], - [-11.09383, 9.652019], - [-11.099985, 9.652019], - [-11.103892, 9.658784], - [-11.111704, 9.658785], - [-11.11561, 9.66555], - [-11.111704, 9.672316], - [-11.112042, 9.6729], - [-11.112153, 9.672891], - [-11.114407, 9.673383], - [-11.115307, 9.673905], - [-11.115784, 9.673687], - [-11.116592, 9.673948], - [-11.118423, 9.673793], - [-11.119598, 9.672741], - [-11.120306, 9.672903], - [-11.120782, 9.672683], - [-11.121558, 9.672624], - [-11.121622, 9.672646], - [-11.122901, 9.67486], - [-11.124987, 9.674861], - [-11.125535, 9.675058], - [-11.126314, 9.676214], - [-11.126659, 9.676082], - [-11.126924, 9.675112], - [-11.127545, 9.675421], - [-11.128008, 9.675379], - [-11.128186, 9.674861], - [-11.130714, 9.674861], - [-11.134619, 9.681626], - [-11.130714, 9.688393], - [-11.133559, 9.693322], - [-11.1336, 9.691599], - [-11.1342, 9.6882], - [-11.1353, 9.686099], - [-11.1391, 9.681199], - [-11.140199, 9.678699], - [-11.140399, 9.6753], - [-11.139999, 9.6727], - [-11.1379, 9.6684], - [-11.137199, 9.665599], - [-11.136799, 9.658499], - [-11.1367, 9.6351], - [-11.1364, 9.6282], - [-11.1356, 9.6245], - [-11.1336, 9.62], - [-11.132899, 9.617099], - [-11.1325, 9.611099], - [-11.1325, 9.5906], - [-11.1321, 9.5835], - [-11.131299, 9.579799], - [-11.129199, 9.575299], - [-11.1287, 9.571999], - [-11.1292, 9.5685], - [-11.1307, 9.565999], - [-11.1326, 9.563799], - [-11.139699, 9.5569], - [-11.141899, 9.5538], - [-11.143, 9.551099], - [-11.143299, 9.5481], - [-11.143295, 9.547739] - ] - ], - "type": "Polygon" - }, - "id": 523, - "properties": { - "cc:admin:id": ["95"], - "cc:oBld:total": 509, - "cc:pop:fifteen-to-twenty-four": 1580.5874682910444, - "cc:pop:grid3-total": 5805.952884187551, - "cc:pop:kontur-total": 8760.52027806792, - "cc:pop:men": 4063.1531500463175, - "cc:pop:sixty-plus": 541.6136929272292, - "cc:pop:total": 8668.887346748472, - "cc:pop:under-five": 1403.8848389720115, - "cc:pop:women": 4605.734196702155, - "cc:pop:women-fiften-to-forty-nine": 2242.104230447291, - "cc:pop:wp-total": 5473.02365141745, - "cc:pop:wp-total-UN": 6339.138888267219, - "cc:id": "523", - "cc:Name": "Serekolia MCHP", - "cc:site": [-11.0768, 9.5348], - "user:parentName": "Mongo", - "user:code": "OU_226252", - "user:orgUnitId": "ZOZ4s2gTPj7", - "user:level": "4", - "user:parentId": "OTFepb1k9Db" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.082029, 9.315293], - [-11.080999, 9.3158], - [-11.0775, 9.317799], - [-11.075, 9.318499], - [-11.0724, 9.318599], - [-11.0699, 9.3179], - [-11.067, 9.315599], - [-11.0644, 9.3111], - [-11.061499, 9.308299], - [-11.053999, 9.304599], - [-11.050299, 9.303899], - [-11.0425, 9.303599], - [-11.0385, 9.3022], - [-11.033799, 9.298599], - [-11.031799, 9.297399], - [-11.029599, 9.296599], - [-11.0267, 9.2962], - [-11.0238, 9.2962], - [-11.0201, 9.2966], - [-11.0176, 9.2979], - [-11.0152, 9.301099], - [-11.012699, 9.302999], - [-11.0093, 9.303799], - [-11.0066, 9.303899], - [-11.0022, 9.3031], - [-10.997699, 9.300999], - [-10.994399, 9.300099], - [-10.991, 9.2992], - [-10.986599, 9.296999], - [-10.979, 9.2935], - [-10.9755, 9.2929], - [-10.9721, 9.293499], - [-10.9678, 9.295499], - [-10.964899, 9.2962], - [-10.959999, 9.2965], - [-10.951, 9.2965], - [-10.947, 9.2964], - [-10.9435, 9.296], - [-10.941399, 9.295299], - [-10.9378, 9.2934], - [-10.934599, 9.291999], - [-10.930299, 9.289499], - [-10.923099, 9.286299], - [-10.919499, 9.2862], - [-10.908099, 9.291599], - [-10.9044, 9.291599], - [-10.8994, 9.2896], - [-10.895399, 9.2891], - [-10.8905, 9.2896], - [-10.884799, 9.292], - [-10.880899, 9.292599], - [-10.876, 9.2922], - [-10.869699, 9.289799], - [-10.8656, 9.2891], - [-10.8597, 9.2889], - [-10.8564, 9.288299], - [-10.854299, 9.287199], - [-10.848499, 9.282799], - [-10.840199, 9.278599], - [-10.837399, 9.277999], - [-10.8306, 9.2777], - [-10.8268, 9.2772], - [-10.8213, 9.2751], - [-10.8188, 9.2744], - [-10.8134, 9.2738], - [-10.8109, 9.2732], - [-10.8004, 9.2682], - [-10.7981, 9.2676], - [-10.7956, 9.2677], - [-10.790699, 9.2699], - [-10.7879, 9.270199], - [-10.7854, 9.2691], - [-10.784299, 9.267099], - [-10.783099, 9.260099], - [-10.7796, 9.2521], - [-10.777299, 9.247699], - [-10.776599, 9.244799], - [-10.7763, 9.2408], - [-10.7761, 9.2127], - [-10.7762, 9.207599], - [-10.7766, 9.204699], - [-10.778699, 9.1992], - [-10.779399, 9.1965], - [-10.779899, 9.1916], - [-10.780599, 9.1889], - [-10.782799, 9.1835], - [-10.783499, 9.179699], - [-10.783399, 9.1746], - [-10.7817, 9.1709], - [-10.7786, 9.1699], - [-10.7758, 9.170499], - [-10.770699, 9.1728], - [-10.764899, 9.1744], - [-10.7594, 9.176799], - [-10.7565, 9.177299], - [-10.7503, 9.177399], - [-10.745199, 9.177099], - [-10.742399, 9.176399], - [-10.7379, 9.1744], - [-10.735299, 9.174], - [-10.7318, 9.1742], - [-10.7262, 9.176299], - [-10.7206, 9.1773], - [-10.723499, 9.1835], - [-10.718399, 9.197499], - [-10.712999, 9.198399], - [-10.708399, 9.192], - [-10.6952, 9.193999], - [-10.6827, 9.198599], - [-10.679, 9.1983], - [-10.6679, 9.203399], - [-10.6637, 9.21], - [-10.664399, 9.226598], - [-10.664398, 9.2266], - [-10.6635, 9.2266], - [-10.674599, 9.239399], - [-10.675199, 9.250199], - [-10.670999, 9.2659], - [-10.6615, 9.29], - [-10.6633, 9.3006], - [-10.6688, 9.309299], - [-10.689399, 9.324499], - [-10.707499, 9.330099], - [-10.711599, 9.334699], - [-10.7102, 9.3379], - [-10.7111, 9.348499], - [-10.724999, 9.371699], - [-10.731, 9.380199], - [-10.7384, 9.374], - [-10.7409, 9.3754], - [-10.7483, 9.3849], - [-10.760099, 9.385999], - [-10.7701, 9.3817], - [-10.779999, 9.3833], - [-10.7897, 9.389999], - [-10.799199, 9.390699], - [-10.804599, 9.3809], - [-10.809699, 9.3809], - [-10.814699, 9.386599], - [-10.816599, 9.3919], - [-10.8124, 9.401299], - [-10.8045, 9.4073], - [-10.802, 9.414399], - [-10.8063, 9.420199], - [-10.8161, 9.4257], - [-10.8272, 9.435399], - [-10.8355, 9.4381], - [-10.843399, 9.442799], - [-10.8489, 9.4547], - [-10.848899, 9.4616], - [-10.8408, 9.471], - [-10.8408, 9.476499], - [-10.848599, 9.490999], - [-10.848399, 9.495399], - [-10.844399, 9.5009], - [-10.8305, 9.5073], - [-10.8263, 9.5142], - [-10.827499, 9.517899], - [-10.831, 9.5207], - [-10.857099, 9.5246], - [-10.873799, 9.537499], - [-10.870099, 9.543199], - [-10.8589, 9.5526], - [-10.8594, 9.558199], - [-10.876155, 9.572177], - [-10.882083, 9.56625], - [-10.887083, 9.571249], - [-10.890416, 9.572082], - [-10.892917, 9.57125], - [-10.896249, 9.571249], - [-10.897083, 9.567083], - [-10.902916, 9.567916], - [-10.902917, 9.568749], - [-10.906249, 9.569582], - [-10.90625, 9.570416], - [-10.907912, 9.570417], - [-10.907718, 9.571016], - [-10.907381, 9.571309], - [-10.911249, 9.572082], - [-10.912083, 9.566249], - [-10.912083, 9.559583], - [-10.918749, 9.559583], - [-10.92375, 9.564582], - [-10.928749, 9.560417], - [-10.93339, 9.559754], - [-10.933391, 9.559755], - [-10.932547, 9.560978], - [-10.932622, 9.561623], - [-10.933212, 9.56194], - [-10.934005, 9.562094], - [-10.935514, 9.562015], - [-10.937155, 9.563173], - [-10.938384, 9.563564], - [-10.939112, 9.562694], - [-10.940013, 9.562064], - [-10.941259, 9.561491], - [-10.942361, 9.560947], - [-10.94209, 9.560614], - [-10.941956, 9.560554], - [-10.94157, 9.555917], - [-10.945568, 9.555917], - [-10.947629, 9.559485], - [-10.947258, 9.559838], - [-10.947251, 9.559849], - [-10.947053, 9.560489], - [-10.947196, 9.56069], - [-10.948037, 9.560333], - [-10.948564, 9.560072], - [-10.948711, 9.560458], - [-10.948953, 9.561716], - [-10.948536, 9.56302], - [-10.948475, 9.564287], - [-10.947878, 9.56493], - [-10.94767, 9.566398], - [-10.957082, 9.555417], - [-10.958749, 9.556249], - [-10.963749, 9.55375], - [-10.971249, 9.561249], - [-10.972083, 9.556249], - [-10.97296, 9.555373], - [-10.972843, 9.555272], - [-10.977274, 9.549575], - [-10.977269, 9.549034], - [-10.97707, 9.548655], - [-10.97657, 9.548716], - [-10.976222, 9.548226], - [-10.975882, 9.54726], - [-10.976482, 9.546219], - [-10.983254, 9.546218], - [-10.983257, 9.546174], - [-10.982894, 9.544619], - [-10.982213, 9.543854], - [-10.981487, 9.542671], - [-10.980938, 9.542109], - [-10.980505, 9.54212], - [-10.979945, 9.541742], - [-10.97983, 9.541467], - [-10.979152, 9.541346], - [-10.978791, 9.541008], - [-10.978076, 9.540698], - [-10.978075, 9.540696], - [-10.979512, 9.540467], - [-10.980373, 9.538979], - [-10.987082, 9.538978], - [-10.987083, 9.533749], - [-10.988749, 9.527917], - [-10.985417, 9.524582], - [-10.984582, 9.517916], - [-10.983961, 9.510457], - [-10.983986, 9.510415], - [-10.991797, 9.510414], - [-10.995703, 9.503648], - [-10.995562, 9.503402], - [-10.99089, 9.503069], - [-10.988185, 9.498384], - [-10.992091, 9.491618], - [-10.988185, 9.484852], - [-10.987816, 9.484851], - [-10.98782, 9.484706], - [-10.98798, 9.484331], - [-10.988217, 9.484123], - [-10.990197, 9.483479], - [-10.990846, 9.4835], - [-10.992123, 9.483854], - [-10.994601, 9.483959], - [-10.995968, 9.483389], - [-10.996471, 9.483018], - [-10.996843, 9.482801], - [-10.998087, 9.482626], - [-10.998425, 9.482314], - [-10.998533, 9.48177], - [-10.998925, 9.481055], - [-10.999708, 9.480515], - [-11.000711, 9.480144], - [-11.001269, 9.479732], - [-11.003051, 9.482815], - [-11.012916, 9.475416], - [-11.012082, 9.472083], - [-11.010959, 9.47096], - [-11.010292, 9.47096], - [-11.009046, 9.471549], - [-11.008337, 9.472454], - [-11.005923, 9.472551], - [-11.005922, 9.47255], - [-11.006411, 9.471722], - [-11.00657, 9.470972], - [-11.006271, 9.470658], - [-11.006067, 9.469861], - [-11.006142, 9.468879], - [-11.006265, 9.46875], - [-11.003249, 9.468749], - [-11.005595, 9.464685], - [-11.008651, 9.464684], - [-11.008669, 9.464617], - [-11.009697, 9.462854], - [-11.009766, 9.461907], - [-11.009962, 9.461499], - [-11.00981, 9.45854], - [-11.010074, 9.457726], - [-11.010163, 9.457605], - [-11.007333, 9.457604], - [-11.00625, 9.456249], - [-11.00625, 9.44625], - [-11.00799, 9.444074], - [-11.01428, 9.444074], - [-11.016925, 9.448653], - [-11.016895, 9.448405], - [-11.017404, 9.446912], - [-11.017847, 9.446675], - [-11.02625, 9.454582], - [-11.027916, 9.453749], - [-11.022917, 9.444583], - [-11.022917, 9.434583], - [-11.027278, 9.434582], - [-11.025128, 9.430855], - [-11.029033, 9.42409], - [-11.036845, 9.424089], - [-11.040752, 9.417324], - [-11.037866, 9.412324], - [-11.038859, 9.41121], - [-11.040096, 9.410712], - [-11.040852, 9.410766], - [-11.041972, 9.411406], - [-11.042313, 9.411367], - [-11.04275, 9.411258], - [-11.043038, 9.410898], - [-11.041249, 9.407917], - [-11.034583, 9.404583], - [-11.034583, 9.402917], - [-11.040417, 9.39625], - [-11.044583, 9.396249], - [-11.049582, 9.395416], - [-11.04875, 9.392916], - [-11.053749, 9.387082], - [-11.05125, 9.380417], - [-11.054699, 9.374895], - [-11.054014, 9.37319], - [-11.052836, 9.371552], - [-11.051917, 9.370724], - [-11.051828, 9.370722], - [-11.051827, 9.370721], - [-11.055701, 9.364012], - [-11.051795, 9.357246], - [-11.055701, 9.35048], - [-11.051795, 9.343714], - [-11.055701, 9.336949], - [-11.063513, 9.336948], - [-11.067419, 9.330183], - [-11.064647, 9.325381], - [-11.065923, 9.324758], - [-11.066667, 9.324854], - [-11.067081, 9.325289], - [-11.06714, 9.325306], - [-11.070129, 9.320131], - [-11.077941, 9.32013], - [-11.078217, 9.319653], - [-11.078309, 9.319676], - [-11.07875, 9.317916], - [-11.082029, 9.315293] - ] - ], - "type": "Polygon" - }, - "id": 524, - "properties": { - "cc:admin:id": ["95"], - "cc:oBld:total": 2754, - "cc:pop:fifteen-to-twenty-four": 4704.461151385463, - "cc:pop:grid3-total": 29693.725293821506, - "cc:pop:kontur-total": 27965.308980148733, - "cc:pop:men": 12082.171811353748, - "cc:pop:sixty-plus": 1613.992723346534, - "cc:pop:total": 25754.705732934326, - "cc:pop:under-five": 4171.064583713266, - "cc:pop:women": 13672.533921580582, - "cc:pop:women-fiften-to-forty-nine": 6667.849452721995, - "cc:pop:wp-total": 25305.895079834176, - "cc:pop:wp-total-UN": 29336.011944532238, - "cc:id": "524", - "cc:Name": "Seria MCHP", - "cc:site": [-10.9216, 9.4654], - "user:parentName": "Mongo", - "user:code": "OU_226249", - "user:orgUnitId": "kzmwOrwmzbW", - "user:level": "4", - "user:parentId": "OTFepb1k9Db" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.958435, 7.911647], - [-12.957099, 7.9085], - [-12.9546, 7.908999], - [-12.953999, 7.9082], - [-12.952599, 7.907599], - [-12.951799, 7.9065], - [-12.950999, 7.906499], - [-12.949, 7.9038], - [-12.946299, 7.901299], - [-12.9438, 7.8982], - [-12.943499, 7.8971], - [-12.9424, 7.896799], - [-12.941799, 7.8954], - [-12.9404, 7.894599], - [-12.940099, 7.8932], - [-12.937599, 7.890999], - [-12.9365, 7.8893], - [-12.936499, 7.8882], - [-12.9349, 7.8868], - [-12.9338, 7.8851], - [-12.933499, 7.8829], - [-12.9318, 7.8807], - [-12.931499, 7.8785], - [-12.9301, 7.8768], - [-12.929899, 7.8754], - [-12.9282, 7.8738], - [-12.9265, 7.871], - [-12.925399, 7.8699], - [-12.9213, 7.8699], - [-12.9199, 7.870099], - [-12.917599, 7.871499], - [-12.914, 7.871], - [-12.911, 7.870999], - [-12.910399, 7.8704], - [-12.908799, 7.870399], - [-12.907599, 7.8687], - [-12.906499, 7.868699], - [-12.904299, 7.8674], - [-12.903199, 7.867399], - [-12.902419, 7.866762], - [-12.892917, 7.870417], - [-12.899582, 7.877083], - [-12.89625, 7.882916], - [-12.898749, 7.886249], - [-12.895417, 7.888749], - [-12.892083, 7.88875], - [-12.891817, 7.889282], - [-12.892097, 7.889568], - [-12.892082, 7.889584], - [-12.891341, 7.891438], - [-12.891007, 7.891437], - [-12.890743, 7.892207], - [-12.889928, 7.892204], - [-12.887917, 7.899583], - [-12.887916, 7.900416], - [-12.881249, 7.898749], - [-12.877917, 7.894584], - [-12.877916, 7.892996], - [-12.87661, 7.895258], - [-12.880516, 7.902024], - [-12.87661, 7.908789], - [-12.868798, 7.90879], - [-12.866143, 7.913387], - [-12.865396, 7.913151], - [-12.863917, 7.913151], - [-12.862267, 7.913912], - [-12.861633, 7.91552], - [-12.861971, 7.917253], - [-12.863281, 7.918522], - [-12.866031, 7.919748], - [-12.867935, 7.919833], - [-12.869921, 7.91941], - [-12.871234, 7.91865], - [-12.872671, 7.918692], - [-12.873813, 7.919156], - [-12.873897, 7.920511], - [-12.873136, 7.921864], - [-12.872333, 7.923344], - [-12.872333, 7.925289], - [-12.872883, 7.926938], - [-12.874448, 7.928504], - [-12.877451, 7.9299], - [-12.8802, 7.931169], - [-12.883076, 7.932607], - [-12.886374, 7.934425], - [-12.889252, 7.935568], - [-12.89217, 7.936202], - [-12.894412, 7.936244], - [-12.896779, 7.935864], - [-12.897595, 7.935602], - [-12.899375, 7.935401], - [-12.901039, 7.935964], - [-12.902828, 7.937428], - [-12.903345, 7.938036], - [-12.903173, 7.93894], - [-12.902785, 7.939671], - [-12.901803, 7.941236], - [-12.901364, 7.942108], - [-12.900964, 7.942892], - [-12.900781, 7.943262], - [-12.9013, 7.9429], - [-12.902599, 7.9429], - [-12.9037, 7.944299], - [-12.906499, 7.943799], - [-12.908199, 7.9418], - [-12.910099, 7.9401], - [-12.911799, 7.940099], - [-12.9126, 7.9379], - [-12.914599, 7.937899], - [-12.915399, 7.936799], - [-12.916, 7.9343], - [-12.917399, 7.933999], - [-12.9182, 7.9332], - [-12.920699, 7.933499], - [-12.9207, 7.931], - [-12.922599, 7.929899], - [-12.9226, 7.928799], - [-12.9238, 7.927899], - [-12.926299, 7.926799], - [-12.9263, 7.926199], - [-12.928999, 7.924599], - [-12.9315, 7.9218], - [-12.9335, 7.921], - [-12.937099, 7.9207], - [-12.9374, 7.921199], - [-12.938999, 7.921199], - [-12.9399, 7.920099], - [-12.942599, 7.919599], - [-12.9438, 7.9179], - [-12.945999, 7.918499], - [-12.9463, 7.917599], - [-12.9485, 7.915999], - [-12.951799, 7.9154], - [-12.9524, 7.916499], - [-12.953749, 7.916799], - [-12.95375, 7.916249], - [-12.955416, 7.915416], - [-12.954583, 7.912917], - [-12.955088, 7.912663], - [-12.954048, 7.911699], - [-12.955356, 7.910843], - [-12.95525, 7.91033], - [-12.955017, 7.909767], - [-12.955736, 7.909459], - [-12.956201, 7.910346], - [-12.956681, 7.910094], - [-12.956872, 7.910311], - [-12.957312, 7.9102], - [-12.958435, 7.911647] - ] - ], - "type": "Polygon" - }, - "id": 525, - "properties": { - "cc:admin:id": ["51"], - "cc:oBld:total": 5, - "cc:pop:fifteen-to-twenty-four": 732.8386090002506, - "cc:pop:grid3-total": 6577.1682653118905, - "cc:pop:kontur-total": 3610.0120154671354, - "cc:pop:men": 1931.248259328233, - "cc:pop:sixty-plus": 271.0527540503785, - "cc:pop:total": 4053.6987873284597, - "cc:pop:under-five": 671.7168863056069, - "cc:pop:women": 2122.4505280002268, - "cc:pop:women-fiften-to-forty-nine": 989.8177267478826, - "cc:pop:wp-total": 3600.957547038646, - "cc:pop:wp-total-UN": 4180.850295969927, - "cc:id": "525", - "cc:Name": "Shenge CHC", - "cc:site": [-12.9517, 7.9085], - "user:parentName": "Kargboro", - "user:code": "OU_247069", - "user:orgUnitId": "p9KfD6eaRvu", - "user:level": "4", - "user:parentId": "Z9QaI6sxTwW" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - [-12.597199, 7.697799], - [-12.595399, 7.694499], - [-12.590899, 7.691299], - [-12.5857, 7.6879], - [-12.582899, 7.686499], - [-12.581499, 7.685999], - [-12.5793, 7.685699], - [-12.578499, 7.6851], - [-12.575099, 7.684599], - [-12.571, 7.6832], - [-12.5665, 7.6824], - [-12.565399, 7.6818], - [-12.5632, 7.6815], - [-12.562399, 7.680999], - [-12.5579, 7.6801], - [-12.5549, 7.679], - [-12.5515, 7.6785], - [-12.550399, 7.6779], - [-12.5476, 7.6774], - [-12.547899, 7.675999], - [-12.5474, 7.6707], - [-12.547599, 7.6693], - [-12.5454, 7.666799], - [-12.544, 7.6626], - [-12.5435, 7.662399], - [-12.542899, 7.6604], - [-12.5421, 7.659599], - [-12.541799, 7.6576], - [-12.541299, 7.657399], - [-12.540999, 7.6557], - [-12.5399, 7.654599], - [-12.539899, 7.6537], - [-12.5388, 7.652899], - [-12.537599, 7.650999], - [-12.5354, 7.6488], - [-12.5329, 7.6474], - [-12.5318, 7.6471], - [-12.5271, 7.6471], - [-12.524, 7.647599], - [-12.5218, 7.6468], - [-12.521299, 7.646], - [-12.518999, 7.645099], - [-12.518199, 7.6435], - [-12.5171, 7.642599], - [-12.514899, 7.6393], - [-12.5138, 7.638499], - [-12.512899, 7.636799], - [-12.511499, 7.636], - [-12.5099, 7.6357], - [-12.5082, 7.6365], - [-12.508199, 7.6371], - [-12.5065, 7.637399], - [-12.504299, 7.635999], - [-12.4999, 7.634], - [-12.499899, 7.630999], - [-12.497099, 7.6285], - [-12.495699, 7.628499], - [-12.493999, 7.6274], - [-12.4912, 7.627399], - [-12.489599, 7.6262], - [-12.487899, 7.625699], - [-12.4854, 7.6229], - [-12.484899, 7.622899], - [-12.4815, 7.6185], - [-12.4801, 7.6171], - [-12.479599, 7.6154], - [-12.477899, 7.6143], - [-12.4765, 7.6143], - [-12.4751, 7.616], - [-12.475099, 7.619299], - [-12.4743, 7.619898], - [-12.4743, 7.6165], - [-12.475699, 7.6135], - [-12.476499, 7.613199], - [-12.476473, 7.613081], - [-12.476292, 7.612884], - [-12.475705, 7.613294], - [-12.475296, 7.613795], - [-12.474835, 7.614571], - [-12.474375, 7.615783], - [-12.474137, 7.618013], - [-12.473964, 7.61922], - [-12.473709, 7.620176], - [-12.473312, 7.620557], - [-12.472797, 7.620782], - [-12.47122, 7.621738], - [-12.470062, 7.622525], - [-12.469074, 7.623355], - [-12.468184, 7.623737], - [-12.467637, 7.623588], - [-12.467065, 7.623187], - [-12.466031, 7.622195], - [-12.465212, 7.621419], - [-12.464578, 7.62127], - [-12.463859, 7.62126], - [-12.462144, 7.621335], - [-12.461715, 7.621675], - [-12.461318, 7.622334], - [-12.461266, 7.623344], - [-12.45756, 7.623345], - [-12.453653, 7.63011], - [-12.447749, 7.63011], - [-12.444217, 7.628124], - [-12.440577, 7.634426], - [-12.432766, 7.634427], - [-12.430941, 7.637586], - [-12.43116, 7.637628], - [-12.431418, 7.637303], - [-12.431607, 7.636566], - [-12.433443, 7.636186], - [-12.434091, 7.636691], - [-12.434372, 7.638133], - [-12.434062, 7.639719], - [-12.434744, 7.640701], - [-12.434128, 7.642037], - [-12.434217, 7.642814], - [-12.433749, 7.643331], - [-12.433199, 7.64326], - [-12.431801, 7.642488], - [-12.430208, 7.642713], - [-12.429635, 7.642537], - [-12.432765, 7.647959], - [-12.428858, 7.654723], - [-12.421047, 7.654724], - [-12.417141, 7.66149], - [-12.417522, 7.662152], - [-12.417186, 7.662396], - [-12.417427, 7.66523], - [-12.418323, 7.666265], - [-12.418089, 7.666479], - [-12.416901, 7.666773], - [-12.416765, 7.667799], - [-12.416763, 7.667798], - [-12.41553, 7.665186], - [-12.414201, 7.664954], - [-12.410415, 7.668795], - [-12.411895, 7.671358], - [-12.415069, 7.671359], - [-12.41507, 7.67136], - [-12.412083, 7.673749], - [-12.410417, 7.67375], - [-12.407917, 7.683749], - [-12.409583, 7.684584], - [-12.413749, 7.687916], - [-12.41375, 7.691249], - [-12.413902, 7.691327], - [-12.413098, 7.691304], - [-12.413136, 7.691731], - [-12.414292, 7.692382], - [-12.414805, 7.693157], - [-12.416351, 7.693424], - [-12.417387, 7.693174], - [-12.418158, 7.693436], - [-12.418542, 7.694083], - [-12.418791, 7.695628], - [-12.419303, 7.696404], - [-12.419301, 7.696919], - [-12.419685, 7.697179], - [-12.419961, 7.694348], - [-12.420477, 7.694222], - [-12.420738, 7.693967], - [-12.422029, 7.693846], - [-12.422156, 7.694361], - [-12.422412, 7.694621], - [-12.422278, 7.695392], - [-12.423565, 7.695915], - [-12.423442, 7.695142], - [-12.423576, 7.69437], - [-12.424388, 7.694099], - [-12.4259, 7.693998], - [-12.426158, 7.694256], - [-12.426914, 7.694261], - [-12.4265, 7.69758], - [-12.426395, 7.697735], - [-12.427169, 7.69774], - [-12.427167, 7.698254], - [-12.427424, 7.698256], - [-12.427428, 7.697741], - [-12.428333, 7.697489], - [-12.428717, 7.696924], - [-12.42875, 7.697084], - [-12.43125, 7.699583], - [-12.435671, 7.700215], - [-12.43567, 7.700217], - [-12.435663, 7.70022], - [-12.439767, 7.699927], - [-12.439767, 7.699928], - [-12.439543, 7.700319], - [-12.443449, 7.707084], - [-12.448236, 7.707085], - [-12.447069, 7.707594], - [-12.446137, 7.708267], - [-12.445258, 7.709043], - [-12.444738, 7.709296], - [-12.44505, 7.709836], - [-12.445672, 7.709457], - [-12.446966, 7.708525], - [-12.448829, 7.707387], - [-12.449711, 7.706454], - [-12.450072, 7.705418], - [-12.449762, 7.704021], - [-12.449347, 7.703088], - [-12.448986, 7.702053], - [-12.449037, 7.700967], - [-12.450434, 7.701018], - [-12.451522, 7.701536], - [-12.451937, 7.702623], - [-12.452351, 7.703762], - [-12.452993, 7.705516], - [-12.455015, 7.706325], - [-12.457605, 7.706244], - [-12.461891, 7.705598], - [-12.458606, 7.710725], - [-12.460692, 7.720335], - [-12.465512, 7.720559], - [-12.466714, 7.720837], - [-12.467916, 7.721342], - [-12.467916, 7.723201], - [-12.467915, 7.723202], - [-12.467869, 7.723171], - [-12.463171, 7.722215], - [-12.459909, 7.722959], - [-12.457205, 7.723874], - [-12.452013, 7.729125], - [-12.448532, 7.734812], - [-12.447485, 7.739684], - [-12.447613, 7.740745], - [-12.449253, 7.739222], - [-12.449401, 7.741542], - [-12.4571, 7.7418], - [-12.470199, 7.744299], - [-12.481399, 7.748699], - [-12.4864, 7.7495], - [-12.4944, 7.751299], - [-12.4988, 7.750499], - [-12.504099, 7.7481], - [-12.507699, 7.7454], - [-12.514599, 7.7397], - [-12.5208, 7.735099], - [-12.5248, 7.731099], - [-12.529099, 7.7246], - [-12.5323, 7.721699], - [-12.5359, 7.719699], - [-12.552699, 7.713499], - [-12.5583, 7.708499], - [-12.565499, 7.7031], - [-12.569199, 7.7011], - [-12.580699, 7.6971], - [-12.586799, 7.6963], - [-12.5928, 7.6963], - [-12.596799, 7.697299], - [-12.597199, 7.697799] - ] - ], - [ - [ - [-12.507599, 7.6182], - [-12.506799, 7.6174], - [-12.5046, 7.616499], - [-12.503499, 7.6154], - [-12.502399, 7.615099], - [-12.4988, 7.6118], - [-12.497399, 7.611299], - [-12.496499, 7.6101], - [-12.4954, 7.610099], - [-12.494599, 7.6093], - [-12.4932, 7.608999], - [-12.492899, 7.6079], - [-12.4915, 7.607599], - [-12.490699, 7.606299], - [-12.488999, 7.6057], - [-12.486799, 7.605699], - [-12.485399, 7.604899], - [-12.4832, 7.6043], - [-12.4799, 7.6043], - [-12.4785, 7.6046], - [-12.4782, 7.607399], - [-12.479299, 7.6085], - [-12.4804, 7.612099], - [-12.481299, 7.6126], - [-12.4818, 7.613999], - [-12.4829, 7.6149], - [-12.4832, 7.615999], - [-12.4843, 7.6165], - [-12.4862, 7.619299], - [-12.489599, 7.620699], - [-12.4901, 7.621299], - [-12.4924, 7.621399], - [-12.495399, 7.6213], - [-12.4965, 7.6207], - [-12.500699, 7.620699], - [-12.5032, 7.6196], - [-12.5057, 7.619599], - [-12.507099, 7.618999], - [-12.507599, 7.6182] - ] - ], - [ - [ - [-12.505399, 7.6271], - [-12.5021, 7.6268], - [-12.5012, 7.628199], - [-12.5018, 7.6285], - [-12.5021, 7.631199], - [-12.5026, 7.631499], - [-12.503499, 7.631199], - [-12.504299, 7.6293], - [-12.505399, 7.628799], - [-12.505399, 7.6271] - ] - ], - [ - [ - [-12.520699, 7.631199], - [-12.520099, 7.6288], - [-12.5174, 7.629], - [-12.5171, 7.630099], - [-12.518999, 7.6299], - [-12.5199, 7.631499], - [-12.520699, 7.631199] - ] - ], - [ - [ - [-12.555399, 7.6543], - [-12.5546, 7.653499], - [-12.554599, 7.6518], - [-12.5538, 7.6496], - [-12.553499, 7.6476], - [-12.552899, 7.647399], - [-12.552599, 7.6454], - [-12.5507, 7.6435], - [-12.550399, 7.6421], - [-12.549299, 7.641299], - [-12.548799, 7.6396], - [-12.5474, 7.6385], - [-12.547399, 7.6376], - [-12.545399, 7.6349], - [-12.543999, 7.634299], - [-12.542599, 7.632399], - [-12.5393, 7.6293], - [-12.538199, 7.627899], - [-12.536, 7.626], - [-12.533499, 7.6251], - [-12.5299, 7.625099], - [-12.528799, 7.6246], - [-12.5271, 7.624599], - [-12.526799, 7.624], - [-12.5246, 7.624], - [-12.5229, 7.625399], - [-12.5213, 7.6262], - [-12.5213, 7.629299], - [-12.5221, 7.6315], - [-12.5221, 7.637599], - [-12.522599, 7.6382], - [-12.5229, 7.640399], - [-12.5237, 7.641499], - [-12.525699, 7.642099], - [-12.5274, 7.6421], - [-12.528999, 7.6426], - [-12.5299, 7.643499], - [-12.533999, 7.6443], - [-12.536, 7.6457], - [-12.538999, 7.646799], - [-12.5401, 7.648799], - [-12.541299, 7.649], - [-12.542099, 7.650099], - [-12.5424, 7.652099], - [-12.5435, 7.6535], - [-12.5449, 7.656499], - [-12.5479, 7.658199], - [-12.5496, 7.6583], - [-12.552099, 7.658499], - [-12.552899, 7.6574], - [-12.554599, 7.656799], - [-12.555399, 7.655999], - [-12.555399, 7.6543] - ] - ], - [ - [ - [-12.560699, 7.635399], - [-12.560699, 7.634], - [-12.5599, 7.633199], - [-12.558799, 7.6307], - [-12.5546, 7.6299], - [-12.5538, 7.6304], - [-12.554, 7.632399], - [-12.5551, 7.6332], - [-12.5568, 7.635399], - [-12.5576, 7.635699], - [-12.560699, 7.635399] - ] - ], - [ - [ - [-12.571299, 7.654899], - [-12.569, 7.6515], - [-12.5663, 7.649], - [-12.5649, 7.648999], - [-12.564899, 7.647899], - [-12.563799, 7.647099], - [-12.5615, 7.6463], - [-12.5615, 7.647599], - [-12.562399, 7.649599], - [-12.563799, 7.6507], - [-12.5649, 7.6524], - [-12.5663, 7.653499], - [-12.5671, 7.6535], - [-12.569, 7.655399], - [-12.571299, 7.654899] - ] - ] - ], - "type": "MultiPolygon" - }, - "id": 526, - "properties": { - "cc:admin:id": ["39"], - "cc:oBld:total": 0, - "cc:pop:fifteen-to-twenty-four": 73.39856613809165, - "cc:pop:grid3-total": 200.9503555508117, - "cc:pop:kontur-total": 247, - "cc:pop:men": 184.1786223111645, - "cc:pop:sixty-plus": 13.745657316461097, - "cc:pop:total": 372.40125521431884, - "cc:pop:under-five": 72.39856613809165, - "cc:pop:women": 188.22263290315422, - "cc:pop:women-fiften-to-forty-nine": 99.14071235075677, - "cc:pop:wp-total": 454.76389694112885, - "cc:pop:wp-total-UN": 529.0127611798622, - "cc:id": "526", - "cc:Name": "Sierra Rutile Clinic", - "cc:site": [-12.45803, 7.69661], - "user:parentName": "Imperi", - "user:code": "OU_197420", - "user:orgUnitId": "Bq5nb7UAEGd", - "user:level": "4", - "user:parentId": "XEyIRFd9pct" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.522082, 9.829583], - [-11.51625, 9.832082], - [-11.513749, 9.830417], - [-11.512917, 9.830417], - [-11.505417, 9.833749], - [-11.49875, 9.829583], - [-11.49375, 9.832916], - [-11.493421, 9.833899], - [-11.491474, 9.833609], - [-11.491074, 9.833048], - [-11.491366, 9.832764], - [-11.493511, 9.832372], - [-11.493637, 9.832324], - [-11.487917, 9.830417], - [-11.488749, 9.827083], - [-11.48625, 9.826249], - [-11.487082, 9.819583], - [-11.487916, 9.818749], - [-11.487916, 9.815417], - [-11.485416, 9.814582], - [-11.483749, 9.812083], - [-11.47125, 9.813749], - [-11.470794, 9.811925], - [-11.471092, 9.811691], - [-11.471977, 9.809948], - [-11.471249, 9.809583], - [-11.467916, 9.810417], - [-11.46125, 9.811249], - [-11.459583, 9.80625], - [-11.458749, 9.805417], - [-11.449583, 9.805416], - [-11.44875, 9.804582], - [-11.448749, 9.80375], - [-11.437917, 9.802916], - [-11.434583, 9.79875], - [-11.434582, 9.795411], - [-11.433582, 9.79541], - [-11.432828, 9.794103], - [-11.432916, 9.79375], - [-11.42625, 9.792916], - [-11.423749, 9.79125], - [-11.41625, 9.792082], - [-11.414582, 9.792083], - [-11.410417, 9.792916], - [-11.407082, 9.785417], - [-11.39875, 9.782083], - [-11.395416, 9.783749], - [-11.387917, 9.782917], - [-11.387082, 9.782083], - [-11.380416, 9.782083], - [-11.369583, 9.782916], - [-11.36625, 9.787082], - [-11.366179, 9.787498], - [-11.364422, 9.784457], - [-11.358934, 9.784457], - [-11.358499, 9.787], - [-11.356299, 9.7928], - [-11.355799, 9.7966], - [-11.355399, 9.8034], - [-11.354599, 9.8068], - [-11.352899, 9.8105], - [-11.3521, 9.8147], - [-11.3521, 9.820099], - [-11.3525, 9.8234], - [-11.3533, 9.8255], - [-11.355299, 9.829099], - [-11.356699, 9.832299], - [-11.359099, 9.836499], - [-11.3605, 9.8397], - [-11.3625, 9.8433], - [-11.3644, 9.8472], - [-11.3666, 9.8501], - [-11.370399, 9.853399], - [-11.375499, 9.856099], - [-11.3786, 9.8584], - [-11.383799, 9.863299], - [-11.3878, 9.8677], - [-11.3895, 9.87], - [-11.392, 9.8747], - [-11.3963, 9.8801], - [-11.3985, 9.8843], - [-11.400999, 9.888599], - [-11.402399, 9.891799], - [-11.404799, 9.895999], - [-11.406199, 9.899199], - [-11.407722, 9.902083], - [-11.415416, 9.902082], - [-11.414583, 9.892082], - [-11.417083, 9.890417], - [-11.426818, 9.890416], - [-11.43008, 9.884768], - [-11.433023, 9.884768], - [-11.433503, 9.88524], - [-11.43437, 9.88574], - [-11.434887, 9.886826], - [-11.435359, 9.888504], - [-11.435944, 9.889574], - [-11.436294, 9.89203], - [-11.436137, 9.894165], - [-11.436539, 9.895015], - [-11.437484, 9.895015], - [-11.440416, 9.892082], - [-11.44125, 9.889582], - [-11.442586, 9.888514], - [-11.442738, 9.88825], - [-11.442917, 9.888249], - [-11.445416, 9.886249], - [-11.442083, 9.882082], - [-11.442083, 9.872917], - [-11.447083, 9.867917], - [-11.462082, 9.867917], - [-11.462917, 9.868749], - [-11.47375, 9.86625], - [-11.478126, 9.8675], - [-11.478125, 9.867502], - [-11.477064, 9.867809], - [-11.476979, 9.869929], - [-11.478127, 9.871536], - [-11.478901, 9.872003], - [-11.479583, 9.867917], - [-11.490416, 9.869582], - [-11.494582, 9.867083], - [-11.497082, 9.867916], - [-11.498749, 9.865416], - [-11.49875, 9.85625], - [-11.499583, 9.856249], - [-11.505416, 9.85375], - [-11.510416, 9.854582], - [-11.51125, 9.850416], - [-11.514583, 9.847083], - [-11.522082, 9.847082], - [-11.522082, 9.829583] - ] - ], - "type": "Polygon" - }, - "id": 527, - "properties": { - "cc:admin:id": ["19"], - "cc:oBld:total": 355, - "cc:pop:fifteen-to-twenty-four": 473.6664016708483, - "cc:pop:grid3-total": 5592.13207664884, - "cc:pop:kontur-total": 2532.717717467897, - "cc:pop:men": 1281.9036881328295, - "cc:pop:sixty-plus": 167.50811618342107, - "cc:pop:total": 2627.624246247771, - "cc:pop:under-five": 432.7965941401154, - "cc:pop:women": 1345.7205581149422, - "cc:pop:women-fiften-to-forty-nine": 672.1702007355784, - "cc:pop:wp-total": 1980.4006950717596, - "cc:pop:wp-total-UN": 2295.8883631247713, - "cc:id": "527", - "cc:Name": "Sinkunia CHC", - "cc:site": [-11.4291, 9.863], - "user:parentName": "Dembelia Sinkunia", - "user:code": "OU_226216", - "user:orgUnitId": "IlnqGuxfQAw", - "user:level": "4", - "user:parentId": "Mr4au3jR9bt" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.939513, 8.727119], - [-11.939254, 8.726636], - [-11.937427, 8.725144], - [-11.938054, 8.724529], - [-11.937119, 8.723246], - [-11.936893, 8.722957], - [-11.936012, 8.722142], - [-11.935206, 8.721509], - [-11.937442, 8.720239], - [-11.937416, 8.720163], - [-11.937411, 8.720133], - [-11.937248, 8.71944], - [-11.937339, 8.719192], - [-11.937488, 8.718811], - [-11.937314, 8.718652], - [-11.93722, 8.718519], - [-11.937209, 8.718297], - [-11.937505, 8.71806], - [-11.937809, 8.718137], - [-11.938023, 8.717904], - [-11.937008, 8.71567], - [-11.936021, 8.713415], - [-11.93565, 8.712684], - [-11.934326, 8.711513], - [-11.933631, 8.710876], - [-11.932608, 8.710519], - [-11.932591, 8.710248], - [-11.932928, 8.710044], - [-11.933489, 8.709699], - [-11.934583, 8.708984], - [-11.934582, 8.70375], - [-11.932083, 8.702082], - [-11.932916, 8.69875], - [-11.932916, 8.695416], - [-11.931249, 8.694583], - [-11.92625, 8.69375], - [-11.926249, 8.695416], - [-11.924583, 8.69625], - [-11.925416, 8.697917], - [-11.923617, 8.699715], - [-11.923526, 8.699475], - [-11.922745, 8.698138], - [-11.92122, 8.695983], - [-11.919386, 8.693689], - [-11.917083, 8.695417], - [-11.916249, 8.698749], - [-11.914583, 8.699582], - [-11.90875, 8.697083], - [-11.908749, 8.69544], - [-11.908452, 8.695321], - [-11.908204, 8.695455], - [-11.907889, 8.695269], - [-11.907777, 8.695665], - [-11.907177, 8.696017], - [-11.906778, 8.696039], - [-11.905672, 8.697017], - [-11.904545, 8.697273], - [-11.90392, 8.697648], - [-11.903521, 8.697457], - [-11.90277, 8.695177], - [-11.90224, 8.694398], - [-11.901814, 8.69287], - [-11.901383, 8.692201], - [-11.901341, 8.691006], - [-11.896126, 8.690631], - [-11.894283, 8.689355], - [-11.890366, 8.6863], - [-11.889582, 8.687082], - [-11.884583, 8.687083], - [-11.88125, 8.689582], - [-11.877917, 8.689583], - [-11.872702, 8.692191], - [-11.872724, 8.692878], - [-11.872377, 8.69453], - [-11.87182, 8.69545], - [-11.871407, 8.696707], - [-11.871374, 8.697242], - [-11.875416, 8.697916], - [-11.875817, 8.698719], - [-11.87157, 8.701592], - [-11.870956, 8.702016], - [-11.870802, 8.702651], - [-11.87153, 8.702821], - [-11.872471, 8.702604], - [-11.872885, 8.702722], - [-11.873943, 8.702336], - [-11.875589, 8.702676], - [-11.875994, 8.703032], - [-11.877791, 8.703826], - [-11.879962, 8.704129], - [-11.883749, 8.707917], - [-11.884582, 8.710416], - [-11.879583, 8.712917], - [-11.878749, 8.714582], - [-11.87625, 8.714583], - [-11.874583, 8.717917], - [-11.876249, 8.722082], - [-11.887526, 8.726111], - [-11.887487, 8.727276], - [-11.887184, 8.728958], - [-11.878233, 8.7322], - [-11.878749, 8.733749], - [-11.882083, 8.733749], - [-11.887916, 8.732917], - [-11.888749, 8.733749], - [-11.88625, 8.744582], - [-11.885417, 8.746249], - [-11.891249, 8.749582], - [-11.891431, 8.749947], - [-11.891382, 8.750037], - [-11.89125, 8.750209], - [-11.897082, 8.754583], - [-11.897082, 8.76125], - [-11.895065, 8.763772], - [-11.89478, 8.763811], - [-11.893323, 8.764484], - [-11.892658, 8.765073], - [-11.891414, 8.766838], - [-11.890062, 8.76784], - [-11.889626, 8.768012], - [-11.889006, 8.767787], - [-11.888809, 8.767658], - [-11.887963, 8.768068], - [-11.887895, 8.768629], - [-11.886941, 8.770269], - [-11.886669, 8.771266], - [-11.886732, 8.773012], - [-11.886516, 8.774587], - [-11.886751, 8.775123], - [-11.886599, 8.775639], - [-11.886867, 8.776407], - [-11.887618, 8.777062], - [-11.888306, 8.776975], - [-11.88846, 8.777082], - [-11.88874, 8.778071], - [-11.888724, 8.779991], - [-11.888566, 8.780085], - [-11.888143, 8.779792], - [-11.887797, 8.779752], - [-11.886714, 8.780134], - [-11.885524, 8.77911], - [-11.884339, 8.778709], - [-11.883951, 8.779172], - [-11.883625, 8.779322], - [-11.884606, 8.779608], - [-11.884759, 8.779574], - [-11.885208, 8.779755], - [-11.885269, 8.779802], - [-11.886837, 8.780258], - [-11.887851, 8.779983], - [-11.888558, 8.780295], - [-11.888751, 8.780553], - [-11.888716, 8.780806], - [-11.889249, 8.780962], - [-11.889693, 8.779596], - [-11.889695, 8.779562], - [-11.889696, 8.779561], - [-11.89366, 8.782958], - [-11.8937, 8.782899], - [-11.895199, 8.7797], - [-11.896299, 8.7763], - [-11.897699, 8.7685], - [-11.898799, 8.7649], - [-11.904199, 8.7554], - [-11.906899, 8.7521], - [-11.91, 8.749299], - [-11.9163, 8.745099], - [-11.926199, 8.7377], - [-11.933699, 8.7344], - [-11.938761, 8.730895], - [-11.938756, 8.730886], - [-11.938626, 8.730528], - [-11.938608, 8.730484], - [-11.937954, 8.728968], - [-11.937998, 8.728866], - [-11.937996, 8.728859], - [-11.937527, 8.72792], - [-11.937594, 8.72786], - [-11.938494, 8.727517], - [-11.939513, 8.727119] - ] - ], - "type": "Polygon" - }, - "id": 528, - "properties": { - "cc:admin:id": ["54"], - "cc:oBld:total": 1954, - "cc:pop:fifteen-to-twenty-four": 4394.388551443715, - "cc:pop:grid3-total": 11357.179942576911, - "cc:pop:kontur-total": 22913.421647771906, - "cc:pop:men": 11202.01708820031, - "cc:pop:sixty-plus": 1482.8837008351406, - "cc:pop:total": 23629.472520106665, - "cc:pop:under-five": 3811.2873791988377, - "cc:pop:women": 12427.45543190637, - "cc:pop:women-fiften-to-forty-nine": 6025.080919780074, - "cc:pop:wp-total": 17962.8223194311, - "cc:pop:wp-total-UN": 20828.96019248996, - "cc:id": "528", - "cc:Name": "SLRCS MCH Clinic", - "cc:site": [-11.9355, 8.7209], - "user:parentName": "Kholifa Rowalla", - "user:code": "OU_268153", - "user:orgUnitId": "wicmjKI3xiP", - "user:level": "4", - "user:parentId": "PQZJPIpTepd" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.959419, 8.370505], - [-12.958617, 8.370358], - [-12.958163, 8.370737], - [-12.956499, 8.3714], - [-12.952917, 8.372819], - [-12.952917, 8.371249], - [-12.955416, 8.367917], - [-12.955416, 8.367084], - [-12.950417, 8.36625], - [-12.947917, 8.367916], - [-12.94625, 8.367084], - [-12.94625, 8.363284], - [-12.94658, 8.363263], - [-12.949104, 8.363053], - [-12.950167, 8.362754], - [-12.953549, 8.361183], - [-12.951249, 8.360417], - [-12.94625, 8.360416], - [-12.944583, 8.35875], - [-12.94375, 8.357083], - [-12.94375, 8.356249], - [-12.947917, 8.353749], - [-12.947916, 8.35125], - [-12.946249, 8.350416], - [-12.945416, 8.347084], - [-12.944582, 8.347083], - [-12.939583, 8.34625], - [-12.937082, 8.347083], - [-12.934583, 8.34625], - [-12.934582, 8.34375], - [-12.932916, 8.342916], - [-12.930831, 8.337359], - [-12.929236, 8.338378], - [-12.928575, 8.339054], - [-12.927881, 8.339329], - [-12.927493, 8.339947], - [-12.927781, 8.346806], - [-12.922916, 8.345416], - [-12.917916, 8.33875], - [-12.911489, 8.339464], - [-12.913671, 8.349652], - [-12.908967, 8.363152], - [-12.912872, 8.372137], - [-12.936957, 8.378252], - [-12.958802, 8.37463], - [-12.959419, 8.370505] - ] - ], - "type": "Polygon" - }, - "id": 529, - "properties": { - "cc:admin:id": ["112"], - "cc:oBld:total": 108, - "cc:pop:fifteen-to-twenty-four": 504.5484441504011, - "cc:pop:grid3-total": 1794.6127000704826, - "cc:pop:kontur-total": 2639.239018357058, - "cc:pop:men": 1204.1226428926805, - "cc:pop:sixty-plus": 172.35008835446018, - "cc:pop:total": 2567.040500313382, - "cc:pop:under-five": 375.8063144330266, - "cc:pop:women": 1362.917857420701, - "cc:pop:women-fiften-to-forty-nine": 686.7266008557639, - "cc:pop:wp-total": 2500.744453181048, - "cc:pop:wp-total-UN": 2894.8093443220337, - "cc:id": "529", - "cc:Name": "Songo CHC", - "cc:site": [-12.9303, 8.3706], - "user:parentName": "Rural Western Area", - "user:code": "OU_278402", - "user:orgUnitId": "pXDcgDRz8Od", - "user:level": "4", - "user:parentId": "qtr8GGlm4gg" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.743281, 7.948548], - [-11.741853, 7.947966], - [-11.741346, 7.947756], - [-11.738731, 7.946618], - [-11.739147, 7.945411], - [-11.739309, 7.944928], - [-11.739384, 7.944744], - [-11.7396, 7.944468], - [-11.739765, 7.944015], - [-11.73989, 7.943501], - [-11.740024, 7.942991], - [-11.740384, 7.942021], - [-11.739581, 7.941812], - [-11.739286, 7.941731], - [-11.739386, 7.941327], - [-11.739164, 7.94117], - [-11.739381, 7.940339], - [-11.73931, 7.939822], - [-11.736939, 7.939186], - [-11.736766, 7.939658], - [-11.735856, 7.939414], - [-11.733938, 7.938322], - [-11.73379, 7.938731], - [-11.733871, 7.938888], - [-11.733569, 7.939871], - [-11.733974, 7.940049], - [-11.733816, 7.940467], - [-11.73372, 7.940675], - [-11.733469, 7.941133], - [-11.734358, 7.94135], - [-11.734149, 7.941841], - [-11.73388, 7.942507], - [-11.733902, 7.942543], - [-11.73384, 7.943042], - [-11.733685, 7.943607], - [-11.73365, 7.943721], - [-11.733415, 7.944347], - [-11.732994, 7.944218], - [-11.731769, 7.944035], - [-11.731293, 7.944012], - [-11.730917, 7.944011], - [-11.730572, 7.944035], - [-11.730199, 7.944076], - [-11.729892, 7.944123], - [-11.729352, 7.944246], - [-11.729283, 7.944267], - [-11.728839, 7.944373], - [-11.728466, 7.944484], - [-11.728411, 7.944483], - [-11.728338, 7.944534], - [-11.728323, 7.944567], - [-11.728377, 7.944691], - [-11.727833, 7.944902], - [-11.727264, 7.945232], - [-11.726847, 7.945504], - [-11.725724, 7.946181], - [-11.723989, 7.947248], - [-11.723694, 7.947423], - [-11.722894, 7.94785], - [-11.722625, 7.94795], - [-11.722879, 7.948697], - [-11.722466, 7.948902], - [-11.722238, 7.949226], - [-11.721894, 7.949337], - [-11.721389, 7.949179], - [-11.720597, 7.949195], - [-11.720527, 7.949269], - [-11.719774, 7.950096], - [-11.719098, 7.950575], - [-11.718484, 7.950707], - [-11.718394, 7.950651], - [-11.718203, 7.950817], - [-11.717702, 7.95063], - [-11.717089, 7.951043], - [-11.716715, 7.950866], - [-11.716421, 7.951387], - [-11.716196, 7.951806], - [-11.716159, 7.951859], - [-11.715886, 7.952219], - [-11.714438, 7.951315], - [-11.71433, 7.951544], - [-11.715013, 7.952105], - [-11.714744, 7.952373], - [-11.713948, 7.95277], - [-11.713581, 7.952987], - [-11.713195, 7.953329], - [-11.712615, 7.952835], - [-11.712215, 7.953195], - [-11.71188, 7.953522], - [-11.711034, 7.952892], - [-11.710707, 7.953246], - [-11.710022, 7.953963], - [-11.710849, 7.954657], - [-11.710483, 7.955094], - [-11.711144, 7.955617], - [-11.711727, 7.955662], - [-11.712007, 7.955492], - [-11.712389, 7.955672], - [-11.712413, 7.955638], - [-11.712836, 7.955935], - [-11.713616, 7.954775], - [-11.714015, 7.955064], - [-11.714786, 7.953889], - [-11.715135, 7.954132], - [-11.715189, 7.954173], - [-11.715611, 7.954513], - [-11.716018, 7.954754], - [-11.716214, 7.954501], - [-11.717484, 7.954459], - [-11.718597, 7.95439], - [-11.718754, 7.954358], - [-11.71893, 7.954316], - [-11.719553, 7.954227], - [-11.719984, 7.954765], - [-11.720861, 7.95593], - [-11.721608, 7.956445], - [-11.721311, 7.956983], - [-11.721083, 7.958604], - [-11.721081, 7.958663], - [-11.720561, 7.958652], - [-11.720419, 7.95962], - [-11.720972, 7.95957], - [-11.720978, 7.959541], - [-11.721478, 7.959552], - [-11.721465, 7.959683], - [-11.721417, 7.960015], - [-11.721358, 7.96054], - [-11.72338, 7.960651], - [-11.723478, 7.96011], - [-11.723529, 7.959549], - [-11.723521, 7.958983], - [-11.725372, 7.959117], - [-11.725478, 7.957988], - [-11.725964, 7.957975], - [-11.725891, 7.95748], - [-11.725874, 7.957395], - [-11.726267, 7.957249], - [-11.727062, 7.957349], - [-11.727521, 7.956933], - [-11.729056, 7.957052], - [-11.729129, 7.957063], - [-11.730726, 7.957225], - [-11.730905, 7.956825], - [-11.730922, 7.956324], - [-11.730481, 7.954637], - [-11.731103, 7.954458], - [-11.731806, 7.954322], - [-11.731555, 7.953542], - [-11.732034, 7.954144], - [-11.732642, 7.955094], - [-11.733332, 7.95584], - [-11.733892, 7.956165], - [-11.733838, 7.955463], - [-11.733626, 7.95302], - [-11.733496, 7.951629], - [-11.734032, 7.95157], - [-11.734537, 7.951506], - [-11.735031, 7.951458], - [-11.735582, 7.951416], - [-11.736146, 7.951356], - [-11.736596, 7.951253], - [-11.736537, 7.950081], - [-11.737076, 7.950021], - [-11.737549, 7.949986], - [-11.738062, 7.949978], - [-11.738756, 7.949897], - [-11.738947, 7.948871], - [-11.739721, 7.949329], - [-11.739966, 7.949525], - [-11.739977, 7.949583], - [-11.73985, 7.949982], - [-11.73992, 7.950304], - [-11.74005, 7.950299], - [-11.74037, 7.950293], - [-11.741639, 7.950175], - [-11.741836, 7.950111], - [-11.743035, 7.949022], - [-11.743281, 7.948548] - ] - ], - "type": "Polygon" - }, - "id": 530, - "properties": { - "cc:admin:id": ["46"], - "cc:oBld:total": 3366, - "cc:pop:fifteen-to-twenty-four": 7669.474954899111, - "cc:pop:grid3-total": 30388.36801338534, - "cc:pop:kontur-total": 30629.155431972693, - "cc:pop:men": 20713.319739286646, - "cc:pop:sixty-plus": 3060.2489458467167, - "cc:pop:total": 42744.223417125744, - "cc:pop:under-five": 7094.0791917386, - "cc:pop:women": 22030.903677839106, - "cc:pop:women-fiften-to-forty-nine": 10495.786150595808, - "cc:pop:wp-total": 39997.16898947323, - "cc:pop:wp-total-UN": 46370.0102303688, - "cc:id": "530", - "cc:Name": "St Monica's Clinic", - "cc:site": [-11.731, 7.9491], - "user:parentName": "Kakua", - "user:code": "OU_978", - "user:orgUnitId": "jCnyQOKQBFX", - "user:level": "4", - "user:parentId": "U6Kr7Gtpidn" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.220104, 8.634173], - [-13.220063, 8.633408], - [-13.220104, 8.632464], - [-13.219712, 8.63088], - [-13.218348, 8.62963], - [-13.218349, 8.629629], - [-13.219885, 8.629628], - [-13.220025, 8.629386], - [-13.2196, 8.628799], - [-13.219599, 8.6274], - [-13.2182, 8.6262], - [-13.218199, 8.6254], - [-13.2171, 8.6246], - [-13.216499, 8.6229], - [-13.215999, 8.622899], - [-13.215399, 8.6212], - [-13.2143, 8.6204], - [-13.214195, 8.620072], - [-13.212175, 8.62088], - [-13.21372, 8.622567], - [-13.213846, 8.622748], - [-13.213626, 8.622821], - [-13.212195, 8.623523], - [-13.211794, 8.623648], - [-13.210288, 8.623609], - [-13.209525, 8.623607], - [-13.209049, 8.623788], - [-13.207781, 8.625028], - [-13.207561, 8.625286], - [-13.206735, 8.626134], - [-13.207341, 8.626717], - [-13.208047, 8.627374], - [-13.208693, 8.626615], - [-13.209141, 8.626464], - [-13.21427, 8.628265], - [-13.21434, 8.628431], - [-13.213498, 8.629581], - [-13.213537, 8.630372], - [-13.213122, 8.630478], - [-13.212948, 8.630322], - [-13.212765, 8.630539], - [-13.211348, 8.630829], - [-13.211478, 8.633003], - [-13.211859, 8.633201], - [-13.211975, 8.634026], - [-13.211446, 8.634066], - [-13.211253, 8.635251], - [-13.212176, 8.63548], - [-13.212227, 8.635827], - [-13.211934, 8.63592], - [-13.212044, 8.636904], - [-13.212071, 8.636947], - [-13.212586, 8.636851], - [-13.214019, 8.636625], - [-13.214143, 8.636091], - [-13.215061, 8.636542], - [-13.216103, 8.63707], - [-13.21615, 8.636711], - [-13.215838, 8.635822], - [-13.215534, 8.634798], - [-13.21655, 8.635169], - [-13.216635, 8.634962], - [-13.216705, 8.6346], - [-13.216737, 8.634607], - [-13.218121, 8.634314], - [-13.218211, 8.634214], - [-13.218256, 8.634269], - [-13.218259, 8.634267], - [-13.218855, 8.634157], - [-13.220104, 8.634173] - ] - ], - "type": "Polygon" - }, - "id": 531, - "properties": { - "cc:admin:id": ["44"], - "cc:oBld:total": 911, - "cc:pop:fifteen-to-twenty-four": 1023.7338809963575, - "cc:pop:grid3-total": 9750.724897949885, - "cc:pop:kontur-total": 2975.8894185445324, - "cc:pop:men": 2662.380671852719, - "cc:pop:sixty-plus": 343.4775638563542, - "cc:pop:total": 5539.582723453228, - "cc:pop:under-five": 892.6304797115898, - "cc:pop:women": 2877.2020516005086, - "cc:pop:women-fiften-to-forty-nine": 1399.6790081020922, - "cc:pop:wp-total": 4978.437529267261, - "cc:pop:wp-total-UN": 5770.375491106973, - "cc:id": "531", - "cc:Name": "St. John of God Catholic Clinic", - "cc:site": [-13.2125, 8.6258], - "user:parentName": "Kaffu Bullom", - "user:code": "OU_255015", - "user:orgUnitId": "RUCp6OaTSAD", - "user:level": "4", - "user:parentId": "vn9KJsLyP5f" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.576975, 8.727403], - [-12.575881, 8.726629], - [-12.575466, 8.726488], - [-12.574947, 8.726595], - [-12.573899, 8.726144], - [-12.572979, 8.724991], - [-12.571848, 8.724401], - [-12.571358, 8.723033], - [-12.570701, 8.722502], - [-12.570288, 8.722673], - [-12.570231, 8.722515], - [-12.568608, 8.722452], - [-12.567491, 8.721686], - [-12.565391, 8.722797], - [-12.562041, 8.724662], - [-12.561165, 8.725221], - [-12.559973, 8.723565], - [-12.558906, 8.722731], - [-12.558628, 8.721841], - [-12.557647, 8.720635], - [-12.557168, 8.720295], - [-12.556677, 8.719088], - [-12.556524, 8.71823], - [-12.556668, 8.718027], - [-12.556283, 8.716978], - [-12.556112, 8.716943], - [-12.555995, 8.716624], - [-12.555032, 8.714386], - [-12.554654, 8.710407], - [-12.554485, 8.709858], - [-12.55125, 8.707917], - [-12.549582, 8.704583], - [-12.544583, 8.704582], - [-12.541196, 8.703229], - [-12.541202, 8.703216], - [-12.542151, 8.702488], - [-12.543128, 8.700983], - [-12.54335, 8.700912], - [-12.54032, 8.700191], - [-12.539559, 8.699616], - [-12.539165, 8.698078], - [-12.538943, 8.697953], - [-12.538198, 8.697853], - [-12.538261, 8.696488], - [-12.537808, 8.696499], - [-12.537863, 8.696228], - [-12.537648, 8.696018], - [-12.537525, 8.694995], - [-12.537595, 8.694448], - [-12.53728, 8.693305], - [-12.536613, 8.693528], - [-12.536501, 8.693653], - [-12.536493, 8.693985], - [-12.536418, 8.694368], - [-12.537058, 8.6944], - [-12.53691, 8.69506], - [-12.536983, 8.695612], - [-12.535337, 8.695992], - [-12.535335, 8.695991], - [-12.535334, 8.695897], - [-12.535072, 8.695493], - [-12.534953, 8.695479], - [-12.534671, 8.695171], - [-12.534061, 8.695315], - [-12.533886, 8.694697], - [-12.534119, 8.69448], - [-12.534241, 8.694407], - [-12.534138, 8.694326], - [-12.533837, 8.693931], - [-12.533735, 8.693436], - [-12.53364, 8.693308], - [-12.533539, 8.693134], - [-12.532744, 8.693591], - [-12.532654, 8.693485], - [-12.529808, 8.695046], - [-12.529598, 8.69541], - [-12.529221, 8.695651], - [-12.528924, 8.695376], - [-12.529225, 8.694394], - [-12.528547, 8.69425], - [-12.528565, 8.693798], - [-12.528604, 8.693562], - [-12.528177, 8.692775], - [-12.528145, 8.692766], - [-12.528155, 8.692247], - [-12.52818, 8.691756], - [-12.528315, 8.690858], - [-12.528066, 8.69084], - [-12.527653, 8.690804], - [-12.526977, 8.69133], - [-12.525888, 8.690867], - [-12.523482, 8.690953], - [-12.522916, 8.692083], - [-12.519909, 8.692512], - [-12.519908, 8.692511], - [-12.519955, 8.692343], - [-12.519917, 8.692274], - [-12.515416, 8.692916], - [-12.512917, 8.69125], - [-12.512717, 8.69125], - [-12.512521, 8.691161], - [-12.511839, 8.689804], - [-12.510976, 8.689814], - [-12.510853, 8.690375], - [-12.51074, 8.69037], - [-12.510912, 8.688853], - [-12.510927, 8.685954], - [-12.51082, 8.685567], - [-12.510681, 8.685526], - [-12.511367, 8.684876], - [-12.511018, 8.683763], - [-12.510874, 8.683723], - [-12.511298, 8.683439], - [-12.510717, 8.682878], - [-12.509904, 8.681754], - [-12.509844, 8.680682], - [-12.509673, 8.680693], - [-12.509677, 8.681015], - [-12.509349, 8.681478], - [-12.509226, 8.68224], - [-12.508776, 8.682126], - [-12.508279, 8.682023], - [-12.507849, 8.681639], - [-12.508094, 8.683109], - [-12.507978, 8.683446], - [-12.507294, 8.68439], - [-12.505946, 8.685505], - [-12.505365, 8.68731], - [-12.504367, 8.6882], - [-12.502833, 8.686684], - [-12.502652, 8.686053], - [-12.500645, 8.684547], - [-12.500413, 8.684661], - [-12.497455, 8.684527], - [-12.496904, 8.684307], - [-12.496861, 8.684155], - [-12.496742, 8.68425], - [-12.496313, 8.684208], - [-12.494377, 8.684707], - [-12.4945, 8.685], - [-12.497, 8.6893], - [-12.4992, 8.6936], - [-12.5041, 8.6998], - [-12.506, 8.7036], - [-12.508499, 8.707899], - [-12.509799, 8.711099], - [-12.512299, 8.715399], - [-12.5136, 8.7185], - [-12.516099, 8.722799], - [-12.518299, 8.727099], - [-12.522599, 8.732499], - [-12.525599, 8.737799], - [-12.5282, 8.741099], - [-12.5372, 8.741299], - [-12.540099, 8.741], - [-12.542799, 8.740299], - [-12.5459, 8.738299], - [-12.5484, 8.735599], - [-12.552099, 8.7311], - [-12.555899, 8.73], - [-12.567399, 8.7299], - [-12.570999, 8.7296], - [-12.5731, 8.729099], - [-12.576975, 8.727403] - ] - ], - "type": "Polygon" - }, - "id": 532, - "properties": { - "cc:admin:id": ["93"], - "cc:oBld:total": 1904, - "cc:pop:fifteen-to-twenty-four": 1322.5613635372226, - "cc:pop:grid3-total": 8691.575388590905, - "cc:pop:kontur-total": 8700.92038993577, - "cc:pop:men": 3280.6847274090164, - "cc:pop:sixty-plus": 454.7637746098877, - "cc:pop:total": 7015.967486110379, - "cc:pop:under-five": 1116.520613368196, - "cc:pop:women": 3735.282758701364, - "cc:pop:women-fiften-to-forty-nine": 1818.2401272401705, - "cc:pop:wp-total": 5837.889901947791, - "cc:pop:wp-total-UN": 6777.458035712841, - "cc:id": "532", - "cc:Name": "St. John of God Catholic Hospital", - "cc:site": [-12.5252, 8.7034], - "user:parentName": "Marampa", - "user:code": "OU_255055", - "user:orgUnitId": "xWIyicUgscN", - "user:level": "4", - "user:parentId": "RWvG1aFrr0r" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - [-12.4779, 7.540399], - [-12.477899, 7.5382], - [-12.4765, 7.536299], - [-12.4757, 7.5326], - [-12.4749, 7.531499], - [-12.474599, 7.5296], - [-12.473499, 7.5276], - [-12.4721, 7.526299], - [-12.472099, 7.5251], - [-12.471299, 7.523699], - [-12.469299, 7.5215], - [-12.4679, 7.521], - [-12.466299, 7.522399], - [-12.4643, 7.5224], - [-12.463999, 7.524], - [-12.4613, 7.527599], - [-12.4604, 7.5282], - [-12.460399, 7.530099], - [-12.4593, 7.5313], - [-12.459599, 7.5329], - [-12.458799, 7.534299], - [-12.4576, 7.5351], - [-12.4579, 7.538799], - [-12.4585, 7.539], - [-12.459, 7.541299], - [-12.4615, 7.543199], - [-12.4646, 7.5432], - [-12.466499, 7.543699], - [-12.4671, 7.544599], - [-12.470099, 7.544299], - [-12.471299, 7.5429], - [-12.472599, 7.542599], - [-12.473999, 7.5415], - [-12.476299, 7.541499], - [-12.4779, 7.540399] - ] - ], - [ - [ - [-12.477099, 7.5132], - [-12.475699, 7.5129], - [-12.4724, 7.512899], - [-12.4715, 7.5126], - [-12.471, 7.513999], - [-12.471, 7.516299], - [-12.4715, 7.5163], - [-12.4721, 7.519899], - [-12.4726, 7.5199], - [-12.4735, 7.521799], - [-12.4743, 7.522599], - [-12.475099, 7.522399], - [-12.4751, 7.521], - [-12.476299, 7.519899], - [-12.4763, 7.5182], - [-12.4768, 7.517099], - [-12.477099, 7.5132] - ] - ], - [ - [ - [-12.482599, 7.5474], - [-12.4813, 7.5454], - [-12.480699, 7.5437], - [-12.479899, 7.542899], - [-12.4785, 7.5426], - [-12.477899, 7.5435], - [-12.4751, 7.5437], - [-12.4738, 7.544599], - [-12.4724, 7.5446], - [-12.4726, 7.546499], - [-12.474299, 7.5468], - [-12.4749, 7.5476], - [-12.480099, 7.550099], - [-12.481, 7.550999], - [-12.482599, 7.550399], - [-12.482599, 7.5474] - ] - ], - [ - [ - [-12.478499, 7.5212], - [-12.477599, 7.5204], - [-12.4763, 7.5204], - [-12.476, 7.522399], - [-12.477099, 7.5226], - [-12.478199, 7.523999], - [-12.478499, 7.5212] - ] - ], - [ - [ - [-12.491499, 7.530699], - [-12.491199, 7.5285], - [-12.488999, 7.527099], - [-12.4851, 7.5229], - [-12.484599, 7.521], - [-12.4829, 7.521], - [-12.4824, 7.5221], - [-12.482899, 7.5237], - [-12.4829, 7.527099], - [-12.484899, 7.5285], - [-12.486799, 7.531499], - [-12.4868, 7.532599], - [-12.487899, 7.5335], - [-12.4879, 7.535399], - [-12.489299, 7.535099], - [-12.4899, 7.533199], - [-12.491499, 7.530699] - ] - ], - [ - [ - [-12.498999, 7.5154], - [-12.498199, 7.513799], - [-12.4957, 7.510699], - [-12.495399, 7.5082], - [-12.4949, 7.507399], - [-12.4949, 7.5026], - [-12.4943, 7.502399], - [-12.494299, 7.5007], - [-12.4921, 7.5013], - [-12.4912, 7.5021], - [-12.4912, 7.505099], - [-12.491499, 7.506499], - [-12.489599, 7.5063], - [-12.489, 7.5085], - [-12.489, 7.511799], - [-12.4896, 7.5121], - [-12.4921, 7.515699], - [-12.493199, 7.5143], - [-12.494899, 7.5143], - [-12.4949, 7.516299], - [-12.495399, 7.5168], - [-12.4954, 7.518499], - [-12.4971, 7.519899], - [-12.497899, 7.519899], - [-12.498799, 7.518499], - [-12.498999, 7.5154] - ] - ], - [ - [ - [-12.497399, 7.537899], - [-12.497399, 7.5351], - [-12.496199, 7.5324], - [-12.494, 7.5324], - [-12.493799, 7.534299], - [-12.4926, 7.5351], - [-12.4912, 7.5374], - [-12.4915, 7.542099], - [-12.492099, 7.5424], - [-12.4915, 7.544], - [-12.4921, 7.547399], - [-12.4938, 7.547399], - [-12.496199, 7.545999], - [-12.497099, 7.5446], - [-12.4968, 7.543199], - [-12.4968, 7.539], - [-12.497399, 7.537899] - ] - ], - [ - [ - [-12.554299, 7.534633], - [-12.553844, 7.534776], - [-12.553258, 7.533774], - [-12.55167, 7.533579], - [-12.54986, 7.533606], - [-12.549079, 7.533215], - [-12.548745, 7.53263], - [-12.548495, 7.531822], - [-12.54855, 7.530792], - [-12.548745, 7.530207], - [-12.549107, 7.529734], - [-12.549441, 7.529426], - [-12.549163, 7.528786], - [-12.547993, 7.528452], - [-12.545457, 7.528451], - [-12.545179, 7.528145], - [-12.545318, 7.527337], - [-12.545787, 7.526554], - [-12.543366, 7.522359], - [-12.541372, 7.522359], - [-12.541252, 7.523261], - [-12.540734, 7.523643], - [-12.540232, 7.523558], - [-12.540108, 7.52455], - [-12.540728, 7.524803], - [-12.540597, 7.525318], - [-12.544041, 7.529732], - [-12.54295, 7.530422], - [-12.539433, 7.525697], - [-12.538917, 7.525565], - [-12.538281, 7.524017], - [-12.538285, 7.523244], - [-12.537903, 7.522212], - [-12.536873, 7.521819], - [-12.536099, 7.521943], - [-12.536082, 7.521743], - [-12.53623, 7.521686], - [-12.536235, 7.520657], - [-12.535966, 7.520348], - [-12.534762, 7.520775], - [-12.530417, 7.512084], - [-12.530981, 7.511517], - [-12.530013, 7.50984], - [-12.522201, 7.509839], - [-12.518684, 7.50375], - [-12.51375, 7.50375], - [-12.512848, 7.503074], - [-12.510482, 7.503074], - [-12.506576, 7.509839], - [-12.507389, 7.511249], - [-12.506738, 7.511249], - [-12.506659, 7.511145], - [-12.506502, 7.510253], - [-12.506424, 7.508679], - [-12.506398, 7.507813], - [-12.506082, 7.506816], - [-12.504822, 7.506213], - [-12.502581, 7.506311], - [-12.501798, 7.506364], - [-12.501079, 7.506216], - [-12.500231, 7.505099], - [-12.499952, 7.504513], - [-12.499909, 7.503939], - [-12.500519, 7.502985], - [-12.501363, 7.502099], - [-12.502258, 7.501264], - [-12.502624, 7.500594], - [-12.502779, 7.500051], - [-12.502875, 7.49944], - [-12.502794, 7.498829], - [-12.502381, 7.498121], - [-12.50185, 7.497764], - [-12.501154, 7.497318], - [-12.500652, 7.496826], - [-12.500615, 7.496751], - [-12.500699, 7.497399], - [-12.4996, 7.497399], - [-12.498499, 7.4963], - [-12.4971, 7.4963], - [-12.496, 7.4971], - [-12.4951, 7.4993], - [-12.4951, 7.500399], - [-12.496199, 7.501], - [-12.4957, 7.5035], - [-12.4957, 7.507099], - [-12.496499, 7.5076], - [-12.4968, 7.509299], - [-12.497599, 7.510399], - [-12.4985, 7.5104], - [-12.499, 7.512399], - [-12.500399, 7.5138], - [-12.500399, 7.515399], - [-12.4996, 7.5171], - [-12.4996, 7.521199], - [-12.4999, 7.5226], - [-12.4999, 7.527399], - [-12.500699, 7.529], - [-12.5007, 7.532099], - [-12.501199, 7.533799], - [-12.503499, 7.5346], - [-12.5051, 7.537399], - [-12.5063, 7.5376], - [-12.5071, 7.538999], - [-12.5093, 7.5393], - [-12.510099, 7.5401], - [-12.5115, 7.542899], - [-12.5121, 7.5429], - [-12.5126, 7.545099], - [-12.5132, 7.5451], - [-12.5138, 7.547399], - [-12.515399, 7.549], - [-12.516299, 7.551499], - [-12.5163, 7.555399], - [-12.516, 7.556799], - [-12.516499, 7.5574], - [-12.5171, 7.559599], - [-12.518699, 7.5601], - [-12.5196, 7.560999], - [-12.5224, 7.561], - [-12.527399, 7.561799], - [-12.5282, 7.561299], - [-12.531, 7.560699], - [-12.534299, 7.5582], - [-12.5349, 7.5571], - [-12.535999, 7.556799], - [-12.536, 7.555999], - [-12.537099, 7.555399], - [-12.5374, 7.553198], - [-12.538199, 7.5515], - [-12.538999, 7.551299], - [-12.5393, 7.5496], - [-12.540399, 7.547899], - [-12.5404, 7.546799], - [-12.543199, 7.5435], - [-12.5471, 7.542599], - [-12.548999, 7.541799], - [-12.5493, 7.541299], - [-12.552099, 7.540699], - [-12.552899, 7.5399], - [-12.553499, 7.5374], - [-12.554299, 7.535699], - [-12.554299, 7.534633] - ] - ] - ], - "type": "MultiPolygon" - }, - "id": 533, - "properties": { - "cc:admin:id": ["18"], - "cc:oBld:total": 1228, - "cc:pop:fifteen-to-twenty-four": 2516.4286085738418, - "cc:pop:grid3-total": 9813.862753632859, - "cc:pop:kontur-total": 13121.642032849963, - "cc:pop:men": 6511.225320278122, - "cc:pop:sixty-plus": 1009.5145479837751, - "cc:pop:total": 13971.968612600556, - "cc:pop:under-five": 2331.9823362720317, - "cc:pop:women": 7460.743292322436, - "cc:pop:women-fiften-to-forty-nine": 3557.302701620382, - "cc:pop:wp-total": 11525.829420632108, - "cc:pop:wp-total-UN": 13365.391653550423, - "cc:id": "533", - "cc:Name": "St. Joseph's Clinic", - "cc:site": [-12.5019, 7.5309], - "user:parentName": "BMC", - "user:code": "OU_197443", - "user:orgUnitId": "vv1QJFONsT6", - "user:level": "4", - "user:parentId": "ENHOJz3UH5L" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.399182, 7.765085], - [-12.399144, 7.76451], - [-12.398622, 7.764013], - [-12.398737, 7.763713], - [-12.399113, 7.763451], - [-12.398421, 7.763545], - [-12.398405, 7.763412], - [-12.398992, 7.76317], - [-12.398529, 7.763247], - [-12.398501, 7.762844], - [-12.397499, 7.761339], - [-12.397234, 7.761289], - [-12.397334, 7.760991], - [-12.39688, 7.760057], - [-12.39665, 7.7586], - [-12.39638, 7.757658], - [-12.396323, 7.756719], - [-12.395326, 7.756431], - [-12.394405, 7.756969], - [-12.393981, 7.757441], - [-12.392083, 7.757917], - [-12.391303, 7.758384], - [-12.39119, 7.758552], - [-12.390192, 7.759724], - [-12.389344, 7.760298], - [-12.388495, 7.760249], - [-12.388319, 7.760175], - [-12.387916, 7.760416], - [-12.385417, 7.75875], - [-12.384942, 7.756857], - [-12.384299, 7.756554], - [-12.383494, 7.756456], - [-12.382378, 7.757353], - [-12.382048, 7.757882], - [-12.381986, 7.757916], - [-12.377876, 7.757916], - [-12.376969, 7.757208], - [-12.374777, 7.756808], - [-12.373994, 7.756436], - [-12.371982, 7.754942], - [-12.37012, 7.753923], - [-12.369509, 7.753328], - [-12.369109, 7.753612], - [-12.368246, 7.753059], - [-12.367894, 7.753186], - [-12.367077, 7.752966], - [-12.367189, 7.753269], - [-12.3662, 7.754375], - [-12.366402, 7.754673], - [-12.366143, 7.754928], - [-12.364595, 7.754919], - [-12.363042, 7.755553], - [-12.363304, 7.754783], - [-12.364597, 7.754403], - [-12.365116, 7.75402], - [-12.364738, 7.752731], - [-12.36474, 7.752216], - [-12.36458, 7.751891], - [-12.361148, 7.757836], - [-12.355686, 7.757836], - [-12.355416, 7.756528], - [-12.347083, 7.75375], - [-12.344582, 7.75125], - [-12.342083, 7.751249], - [-12.34125, 7.750417], - [-12.340498, 7.74065], - [-12.33848, 7.74076], - [-12.336116, 7.744917], - [-12.335524, 7.746607], - [-12.335479, 7.74676], - [-12.334582, 7.745417], - [-12.330417, 7.74375], - [-12.327917, 7.743749], - [-12.327563, 7.743045], - [-12.327404, 7.743309], - [-12.32729, 7.743749], - [-12.327083, 7.743749], - [-12.322916, 7.73875], - [-12.32125, 7.738749], - [-12.320417, 7.737916], - [-12.317916, 7.73125], - [-12.310416, 7.730417], - [-12.302083, 7.731249], - [-12.297082, 7.727916], - [-12.294582, 7.727084], - [-12.293749, 7.727083], - [-12.285417, 7.725417], - [-12.282917, 7.72625], - [-12.282358, 7.729598], - [-12.282136, 7.729364], - [-12.281539, 7.729729], - [-12.280635, 7.729863], - [-12.280287, 7.729287], - [-12.279171, 7.729152], - [-12.278632, 7.729229], - [-12.278151, 7.729517], - [-12.277687, 7.728824], - [-12.277361, 7.728998], - [-12.277578, 7.729583], - [-12.27711, 7.729583], - [-12.27712, 7.729233], - [-12.271461, 7.728021], - [-12.271461, 7.728019], - [-12.27163, 7.727961], - [-12.270949, 7.726828], - [-12.270259, 7.726453], - [-12.269353, 7.726925], - [-12.268771, 7.726345], - [-12.268228, 7.726049], - [-12.267958, 7.726177], - [-12.267513, 7.726213], - [-12.267688, 7.725412], - [-12.267602, 7.724568], - [-12.267275, 7.723961], - [-12.266578, 7.722766], - [-12.26573, 7.723547], - [-12.265457, 7.723818], - [-12.265119, 7.72419], - [-12.2654, 7.7245], - [-12.267399, 7.728299], - [-12.2693, 7.733899], - [-12.2695, 7.7337], - [-12.278699, 7.7386], - [-12.281699, 7.7423], - [-12.282699, 7.747399], - [-12.2805, 7.757899], - [-12.2802, 7.7618], - [-12.2806, 7.7658], - [-12.2827, 7.774], - [-12.2835, 7.7836], - [-12.2845, 7.787699], - [-12.287299, 7.791899], - [-12.2906, 7.7935], - [-12.291734, 7.793741], - [-12.292463, 7.793143], - [-12.293455, 7.792009], - [-12.293025, 7.791302], - [-12.292746, 7.7906], - [-12.293031, 7.789968], - [-12.293728, 7.790079], - [-12.294285, 7.790542], - [-12.29455, 7.790983], - [-12.295588, 7.790658], - [-12.296809, 7.790854], - [-12.296813, 7.79039], - [-12.29679, 7.789825], - [-12.296784, 7.789701], - [-12.296722, 7.788934], - [-12.296683, 7.788705], - [-12.296456, 7.787636], - [-12.296417, 7.787342], - [-12.296424, 7.786732], - [-12.296447, 7.78665], - [-12.296426, 7.786398], - [-12.296379, 7.785631], - [-12.297198, 7.785562], - [-12.297256, 7.786782], - [-12.297336, 7.787315], - [-12.298137, 7.78725], - [-12.300378, 7.787285], - [-12.301089, 7.787465], - [-12.302321, 7.786879], - [-12.302795, 7.786947], - [-12.303216, 7.787376], - [-12.303817, 7.789058], - [-12.306403, 7.788096], - [-12.308508, 7.787318], - [-12.310763, 7.786443], - [-12.310873, 7.786409], - [-12.311878, 7.786296], - [-12.31404, 7.789324], - [-12.31389, 7.789057], - [-12.313824, 7.788398], - [-12.314183, 7.788346], - [-12.314393, 7.788573], - [-12.314687, 7.78972], - [-12.315027, 7.789899], - [-12.315633, 7.789699], - [-12.315627, 7.790255], - [-12.315249, 7.790947], - [-12.315218, 7.790972], - [-12.315417, 7.791249], - [-12.316169, 7.79125], - [-12.316889, 7.794421], - [-12.317562, 7.795599], - [-12.319596, 7.798232], - [-12.3209, 7.7985], - [-12.327499, 7.801399], - [-12.3337, 7.8047], - [-12.339099, 7.806799], - [-12.342499, 7.806999], - [-12.3471, 7.804899], - [-12.3514, 7.800099], - [-12.3564, 7.7915], - [-12.360799, 7.7882], - [-12.3643, 7.786799], - [-12.376699, 7.784699], - [-12.380399, 7.782599], - [-12.3841, 7.778499], - [-12.3862, 7.774599], - [-12.3887, 7.7677], - [-12.390399, 7.7657], - [-12.394599, 7.7651], - [-12.398396, 7.766414], - [-12.398703, 7.765756], - [-12.399182, 7.765085] - ] - ], - "type": "Polygon" - }, - "id": 534, - "properties": { - "cc:admin:id": ["39"], - "cc:oBld:total": 266, - "cc:pop:fifteen-to-twenty-four": 2456.9589751596855, - "cc:pop:grid3-total": 22260.04806772953, - "cc:pop:kontur-total": 14083.239151565404, - "cc:pop:men": 6700.914300840221, - "cc:pop:sixty-plus": 938.6277751816317, - "cc:pop:total": 13532.365387260255, - "cc:pop:under-five": 2318.7763546733377, - "cc:pop:women": 6831.451086420025, - "cc:pop:women-fiften-to-forty-nine": 3267.1394257170723, - "cc:pop:wp-total": 10641.525791162749, - "cc:pop:wp-total-UN": 12329.390226182326, - "cc:id": "534", - "cc:Name": "St. Mary's Clinic", - "cc:site": [-12.2967, 7.7822], - "user:parentName": "Lower Banta", - "user:code": "OU_247017", - "user:orgUnitId": "M721NHGtdZV", - "user:level": "4", - "user:parentId": "W5fN3G6y1VI" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.744467, 8.473866], - [-10.738099, 8.470799], - [-10.7339, 8.4698], - [-10.730899, 8.4697], - [-10.7174, 8.4697], - [-10.7113, 8.470199], - [-10.708499, 8.4708], - [-10.704099, 8.4729], - [-10.7007, 8.473499], - [-10.6981, 8.473199], - [-10.695199, 8.471499], - [-10.6936, 8.468999], - [-10.693, 8.4667], - [-10.6929, 8.462799], - [-10.692999, 8.4498], - [-10.692599, 8.445999], - [-10.691299, 8.442599], - [-10.684899, 8.4335], - [-10.6735, 8.434599], - [-10.6689, 8.435499], - [-10.6587, 8.439699], - [-10.651899, 8.4446], - [-10.6518, 8.4451], - [-10.651999, 8.455899], - [-10.650299, 8.4614], - [-10.649599, 8.4763], - [-10.647699, 8.4784], - [-10.6424, 8.4797], - [-10.6394, 8.4832], - [-10.639899, 8.4871], - [-10.6396, 8.492599], - [-10.6382, 8.493699], - [-10.630599, 8.4907], - [-10.6295, 8.494599], - [-10.632899, 8.5043], - [-10.631099, 8.5123], - [-10.624, 8.531999], - [-10.623299, 8.536249], - [-10.62375, 8.536249], - [-10.625846, 8.5352], - [-10.626111, 8.534564], - [-10.626088, 8.532332], - [-10.626356, 8.531876], - [-10.627917, 8.532916], - [-10.632916, 8.532084], - [-10.63375, 8.536249], - [-10.637916, 8.53625], - [-10.642082, 8.537916], - [-10.642917, 8.535417], - [-10.648749, 8.535417], - [-10.650416, 8.536249], - [-10.651467, 8.534673], - [-10.651395, 8.534585], - [-10.651396, 8.534584], - [-10.657082, 8.534584], - [-10.658749, 8.537917], - [-10.65625, 8.544583], - [-10.666249, 8.542916], - [-10.669582, 8.537917], - [-10.672082, 8.537917], - [-10.67375, 8.545416], - [-10.677082, 8.547083], - [-10.678749, 8.544583], - [-10.67875, 8.535417], - [-10.686249, 8.536249], - [-10.684583, 8.527917], - [-10.687082, 8.524585], - [-10.687083, 8.524585], - [-10.690417, 8.531249], - [-10.696157, 8.525508], - [-10.696116, 8.525349], - [-10.69125, 8.522916], - [-10.69125, 8.514583], - [-10.697082, 8.512084], - [-10.699583, 8.515416], - [-10.709575, 8.515416], - [-10.709548, 8.514445], - [-10.709676, 8.513866], - [-10.710249, 8.512833], - [-10.710344, 8.512393], - [-10.709582, 8.511249], - [-10.706249, 8.507917], - [-10.702084, 8.507916], - [-10.706249, 8.503749], - [-10.70375, 8.497917], - [-10.70375, 8.497084], - [-10.707082, 8.497083], - [-10.707917, 8.496249], - [-10.710416, 8.494583], - [-10.71125, 8.489584], - [-10.712082, 8.48875], - [-10.715843, 8.489377], - [-10.716002, 8.489806], - [-10.716495, 8.49033], - [-10.716802, 8.491372], - [-10.722082, 8.484583], - [-10.722083, 8.48125], - [-10.72875, 8.481249], - [-10.732916, 8.479583], - [-10.73375, 8.477083], - [-10.742916, 8.475416], - [-10.744467, 8.473866] - ] - ], - "type": "Polygon" - }, - "id": 535, - "properties": { - "cc:admin:id": ["125"], - "cc:oBld:total": 1161, - "cc:pop:fifteen-to-twenty-four": 860.1387453408568, - "cc:pop:grid3-total": 6761.971652680304, - "cc:pop:kontur-total": 4667.025720960645, - "cc:pop:men": 1985.5083100080474, - "cc:pop:sixty-plus": 218.7643860142407, - "cc:pop:total": 4303.732458110401, - "cc:pop:under-five": 756.2760426165033, - "cc:pop:women": 2318.2241481023534, - "cc:pop:women-fiften-to-forty-nine": 1098.0918257063374, - "cc:pop:wp-total": 4348.378926707439, - "cc:pop:wp-total-UN": 5019.274229580538, - "cc:id": "535", - "cc:Name": "Sukudu Soa MCHP", - "cc:site": [-10.6806, 8.504], - "user:parentName": "Soa", - "user:code": "OU_233322", - "user:orgUnitId": "EoIjKXqXxi2", - "user:level": "4", - "user:parentId": "iGHlidSFdpu" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.614299, 6.9821], - [-11.612899, 6.9807], - [-11.6093, 6.979], - [-11.608499, 6.9779], - [-11.6062, 6.9768], - [-11.605399, 6.976799], - [-11.602099, 6.9751], - [-11.6007, 6.975099], - [-11.598799, 6.9735], - [-11.596, 6.9729], - [-11.595699, 6.9724], - [-11.5932, 6.9715], - [-11.591499, 6.9704], - [-11.590399, 6.970399], - [-11.588999, 6.9693], - [-11.5879, 6.969299], - [-11.587099, 6.9685], - [-11.5854, 6.9682], - [-11.585099, 6.9676], - [-11.581, 6.966499], - [-11.580099, 6.9657], - [-11.578999, 6.965699], - [-11.577399, 6.9646], - [-11.576499, 6.964599], - [-11.574899, 6.963499], - [-11.571799, 6.9621], - [-11.5696, 6.962399], - [-11.569, 6.962], - [-11.5598, 6.9695], - [-11.567099, 6.981899], - [-11.571629, 6.991881], - [-11.575416, 6.991249], - [-11.578091, 6.98523], - [-11.580015, 6.984647], - [-11.581227, 6.984104], - [-11.582569, 6.983106], - [-11.584067, 6.9815], - [-11.585664, 6.980262], - [-11.585883, 6.979584], - [-11.588749, 6.979583], - [-11.58875, 6.974584], - [-11.590611, 6.972101], - [-11.591901, 6.97281], - [-11.59734, 6.974962], - [-11.5971, 6.974], - [-11.598499, 6.974299], - [-11.6004, 6.975999], - [-11.602099, 6.9763], - [-11.6043, 6.977599], - [-11.605999, 6.977899], - [-11.606, 6.978999], - [-11.608199, 6.979899], - [-11.6088, 6.980699], - [-11.6107, 6.981799], - [-11.612599, 6.9821], - [-11.613999, 6.982899], - [-11.614299, 6.9821] - ] - ], - "type": "Polygon" - }, - "id": 536, - "properties": { - "cc:admin:id": ["64"], - "cc:oBld:total": 419, - "cc:pop:fifteen-to-twenty-four": 1177.9991074889638, - "cc:pop:grid3-total": 5299.604822111663, - "cc:pop:kontur-total": 6422.638485895904, - "cc:pop:men": 3058.138265571507, - "cc:pop:sixty-plus": 469.6020238792402, - "cc:pop:total": 6552.445832462727, - "cc:pop:under-five": 1088.0837834164327, - "cc:pop:women": 3494.307566891219, - "cc:pop:women-fiften-to-forty-nine": 1668.5804778732484, - "cc:pop:wp-total": 4532.453108737947, - "cc:pop:wp-total-UN": 5254.035753474136, - "cc:id": "536", - "cc:Name": "Sulima CHP", - "cc:site": [-11.5773, 6.9679], - "user:parentName": "Soro-Gbeima", - "user:code": "OU_260414", - "user:orgUnitId": "PfZXxl6Wp3F", - "user:level": "4", - "user:parentId": "d9iMR1MpuIO" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.34502, 8.776596], - [-11.342917, 8.769583], - [-11.342916, 8.767917], - [-11.33625, 8.770416], - [-11.329583, 8.767917], - [-11.329582, 8.767083], - [-11.328749, 8.767083], - [-11.325416, 8.767916], - [-11.320417, 8.76625], - [-11.313749, 8.772082], - [-11.309583, 8.772083], - [-11.307916, 8.772916], - [-11.303749, 8.772083], - [-11.300417, 8.772917], - [-11.300416, 8.77375], - [-11.297082, 8.774583], - [-11.296249, 8.774582], - [-11.292914, 8.771248], - [-11.289952, 8.772712], - [-11.289596, 8.772926], - [-11.292917, 8.775417], - [-11.292916, 8.777082], - [-11.290417, 8.777083], - [-11.290416, 8.782917], - [-11.28375, 8.784582], - [-11.280561, 8.78267], - [-11.280516, 8.782796], - [-11.27125, 8.782083], - [-11.272916, 8.792082], - [-11.271249, 8.796249], - [-11.264583, 8.79625], - [-11.263749, 8.797917], - [-11.250417, 8.797917], - [-11.250416, 8.800416], - [-11.240417, 8.800417], - [-11.237917, 8.802916], - [-11.245416, 8.812917], - [-11.244582, 8.813749], - [-11.232917, 8.812917], - [-11.23125, 8.816249], - [-11.230416, 8.81625], - [-11.227083, 8.81875], - [-11.22375, 8.82375], - [-11.224583, 8.826249], - [-11.227082, 8.827082], - [-11.22875, 8.82625], - [-11.232082, 8.832082], - [-11.227917, 8.832917], - [-11.22625, 8.837916], - [-11.22375, 8.839583], - [-11.224583, 8.843749], - [-11.227082, 8.84625], - [-11.228749, 8.85125], - [-11.225416, 8.854582], - [-11.21875, 8.854583], - [-11.213991, 8.855263], - [-11.217749, 8.861773], - [-11.217135, 8.862838], - [-11.217917, 8.862917], - [-11.221249, 8.867083], - [-11.22125, 8.881249], - [-11.222082, 8.887916], - [-11.21875, 8.892916], - [-11.227083, 8.903749], - [-11.23625, 8.900417], - [-11.238749, 8.902083], - [-11.239582, 8.905416], - [-11.231249, 8.909582], - [-11.229582, 8.909582], - [-11.22829, 8.90829], - [-11.228191, 8.907344], - [-11.228049, 8.90695], - [-11.22625, 8.908749], - [-11.22625, 8.910416], - [-11.227916, 8.91125], - [-11.227113, 8.918482], - [-11.2393, 8.918299], - [-11.243699, 8.918], - [-11.246499, 8.9174], - [-11.2578, 8.913799], - [-11.265099, 8.9101], - [-11.268, 8.907799], - [-11.2704, 8.904899], - [-11.2729, 8.900899], - [-11.276999, 8.8951], - [-11.2823, 8.885499], - [-11.2835, 8.881799], - [-11.2847, 8.873999], - [-11.287799, 8.8602], - [-11.2898, 8.854599], - [-11.2917, 8.851299], - [-11.296999, 8.8449], - [-11.299399, 8.8416], - [-11.299416, 8.84157], - [-11.3034, 8.834299], - [-11.315599, 8.8087], - [-11.319499, 8.8014], - [-11.3217, 8.798399], - [-11.325299, 8.7948], - [-11.3283, 8.792599], - [-11.3335, 8.789399], - [-11.339699, 8.784], - [-11.343299, 8.7799], - [-11.34502, 8.776596] - ] - ], - "type": "Polygon" - }, - "id": 537, - "properties": { - "cc:admin:id": ["119"], - "cc:oBld:total": 600, - "cc:pop:fifteen-to-twenty-four": 714.3856336529533, - "cc:pop:grid3-total": 3464.8513866221465, - "cc:pop:kontur-total": 3389.1226606448213, - "cc:pop:men": 1785.125812105027, - "cc:pop:sixty-plus": 181.79628950607957, - "cc:pop:total": 3595.8313086976573, - "cc:pop:under-five": 652.4910997108092, - "cc:pop:women": 1810.7054965926316, - "cc:pop:women-fiften-to-forty-nine": 815.0778419701315, - "cc:pop:wp-total": 2633.202980919268, - "cc:pop:wp-total-UN": 3040.6627413681135, - "cc:id": "537", - "cc:Name": "Sumbaria MCHP", - "cc:site": [-11.26109, 8.8685], - "user:parentName": "Nieni", - "user:code": "OU_226271", - "user:orgUnitId": "GvstqlRRnpV", - "user:level": "4", - "user:parentId": "J4GiUImJZoE" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.994499, 7.6004], - [-11.986599, 7.6017], - [-11.981, 7.601999], - [-11.9755, 7.6017], - [-11.9721, 7.6007], - [-11.968599, 7.598699], - [-11.9613, 7.5961], - [-11.954099, 7.5987], - [-11.9499, 7.601099], - [-11.946699, 7.6025], - [-11.9424, 7.604899], - [-11.939199, 7.6062], - [-11.935, 7.608599], - [-11.9318, 7.609999], - [-11.9275, 7.612299], - [-11.925362, 7.613235], - [-11.925302, 7.613348], - [-11.928749, 7.615417], - [-11.929582, 7.617916], - [-11.928749, 7.619584], - [-11.927083, 7.626249], - [-11.92618, 7.627153], - [-11.926776, 7.627321], - [-11.925417, 7.632083], - [-11.932369, 7.631451], - [-11.92888, 7.637497], - [-11.932354, 7.643514], - [-11.933365, 7.643592], - [-11.933366, 7.643593], - [-11.932069, 7.64584], - [-11.92625, 7.64875], - [-11.92375, 7.65125], - [-11.923274, 7.653154], - [-11.925344, 7.653886], - [-11.928563, 7.65606], - [-11.926712, 7.657637], - [-11.924668, 7.658805], - [-11.923392, 7.660446], - [-11.936249, 7.661249], - [-11.939582, 7.66125], - [-11.942916, 7.664583], - [-11.944583, 7.667083], - [-11.947082, 7.667916], - [-11.947083, 7.669583], - [-11.948793, 7.671293], - [-11.9513, 7.6667], - [-11.954899, 7.6639], - [-11.956999, 7.6617], - [-11.958999, 7.6581], - [-11.961399, 7.6555], - [-11.966199, 7.6529], - [-11.969099, 7.6506], - [-11.971099, 7.6486], - [-11.972499, 7.6463], - [-11.972899, 7.643], - [-11.9718, 7.64], - [-11.9683, 7.637599], - [-11.9664, 7.6352], - [-11.966, 7.6322], - [-11.9674, 7.629399], - [-11.969899, 7.6267], - [-11.9722, 7.6251], - [-11.976099, 7.6243], - [-11.979699, 7.624699], - [-11.9845, 7.627], - [-11.993299, 7.630099], - [-11.993499, 7.6107], - [-11.994499, 7.6004] - ] - ], - "type": "Polygon" - }, - "id": 538, - "properties": { - "cc:admin:id": ["78"], - "cc:oBld:total": 436, - "cc:pop:fifteen-to-twenty-four": 2378.1780261675735, - "cc:pop:grid3-total": 4530.554219054965, - "cc:pop:kontur-total": 11897.688066949991, - "cc:pop:men": 6838.954034452718, - "cc:pop:sixty-plus": 914.4179404873132, - "cc:pop:total": 13231.426238456643, - "cc:pop:under-five": 2179.1364013184743, - "cc:pop:women": 6392.472204003929, - "cc:pop:women-fiften-to-forty-nine": 3048.446079976962, - "cc:pop:wp-total": 8608.914124108858, - "cc:pop:wp-total-UN": 9981.532271183372, - "cc:id": "538", - "cc:Name": "Sumbuya CHC", - "cc:site": [-11.9641, 7.6524], - "user:parentName": "Lugbu", - "user:code": "OU_1050", - "user:orgUnitId": "W2KnxOMvmgE", - "user:level": "4", - "user:parentId": "kU8vhUkAGaT" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.96171, 8.461893], - [-12.961525, 8.461715], - [-12.960763, 8.461717], - [-12.960337, 8.461691], - [-12.960114, 8.461629], - [-12.959852, 8.461478], - [-12.959789, 8.461181], - [-12.959652, 8.460773], - [-12.959502, 8.46052], - [-12.959313, 8.460285], - [-12.95913, 8.46011], - [-12.958909, 8.460017], - [-12.958462, 8.460062], - [-12.958312, 8.460169], - [-12.958191, 8.460413], - [-12.957932, 8.460839], - [-12.957812, 8.461219], - [-12.957555, 8.461746], - [-12.956644, 8.46249], - [-12.956209, 8.463963], - [-12.956165, 8.464482], - [-12.956069, 8.465047], - [-12.955839, 8.4654], - [-12.955447, 8.46585], - [-12.954924, 8.466198], - [-12.954466, 8.466744], - [-12.953669, 8.467277], - [-12.953104, 8.467807], - [-12.952527, 8.468315], - [-12.951871, 8.467959], - [-12.951118, 8.4678], - [-12.950646, 8.467761], - [-12.950142, 8.467771], - [-12.950018, 8.467662], - [-12.949967, 8.467371], - [-12.94996, 8.466774], - [-12.950184, 8.465976], - [-12.950337, 8.465652], - [-12.950578, 8.464501], - [-12.950554, 8.463032], - [-12.950853, 8.461951], - [-12.951378, 8.461315], - [-12.951078, 8.461182], - [-12.950761, 8.461564], - [-12.94942, 8.462407], - [-12.948506, 8.462574], - [-12.947491, 8.462234], - [-12.946646, 8.461692], - [-12.945796, 8.461605], - [-12.944561, 8.458759], - [-12.944431, 8.455924], - [-12.9436, 8.455775], - [-12.943122, 8.456253], - [-12.942463, 8.456528], - [-12.942184, 8.456481], - [-12.941545, 8.45594], - [-12.939733, 8.455324], - [-12.939342, 8.45477], - [-12.940416, 8.452084], - [-12.93875, 8.449583], - [-12.940416, 8.445417], - [-12.942916, 8.443749], - [-12.943749, 8.44125], - [-12.940417, 8.439584], - [-12.939436, 8.438112], - [-12.939346, 8.43833], - [-12.938185, 8.440517], - [-12.938184, 8.440517], - [-12.937981, 8.440027], - [-12.937807, 8.43847], - [-12.935893, 8.436011], - [-12.935859, 8.435982], - [-12.936188, 8.43536], - [-12.936639, 8.434952], - [-12.937234, 8.434692], - [-12.938173, 8.434777], - [-12.939626, 8.435445], - [-12.940184, 8.435921], - [-12.940228, 8.435793], - [-12.940702, 8.434071], - [-12.940628, 8.432641], - [-12.941765, 8.429449], - [-12.942255, 8.425539], - [-12.943022, 8.424401], - [-12.943327, 8.424152], - [-12.944389, 8.422978], - [-12.944862, 8.421848], - [-12.945281, 8.420214], - [-12.947982, 8.413797], - [-12.94666, 8.413727], - [-12.945284, 8.413199], - [-12.942286, 8.413162], - [-12.941572, 8.41281], - [-12.941054, 8.412333], - [-12.940375, 8.41221], - [-12.940037, 8.412226], - [-12.939733, 8.412315], - [-12.939054, 8.411556], - [-12.937758, 8.411011], - [-12.937761, 8.410881], - [-12.937633, 8.409448], - [-12.937267, 8.408441], - [-12.937418, 8.406472], - [-12.937327, 8.404478], - [-12.936114, 8.404685], - [-12.935074, 8.404413], - [-12.934699, 8.403978], - [-12.933627, 8.403592], - [-12.933367, 8.403125], - [-12.933349, 8.402724], - [-12.933008, 8.402626], - [-12.932065, 8.401453], - [-12.931464, 8.399956], - [-12.931555, 8.398658], - [-12.932544, 8.398145], - [-12.933958, 8.397321], - [-12.93419, 8.3969], - [-12.934552, 8.396305], - [-12.937804, 8.394739], - [-12.937627, 8.394548], - [-12.938278, 8.39424], - [-12.937082, 8.39125], - [-12.93625, 8.390417], - [-12.93375, 8.389584], - [-12.932916, 8.387917], - [-12.93125, 8.387084], - [-12.930418, 8.387915], - [-12.930416, 8.387915], - [-12.929582, 8.382917], - [-12.926998, 8.379685], - [-12.927962, 8.377848], - [-12.923699, 8.377099], - [-12.916899, 8.374499], - [-12.9129, 8.3721], - [-12.9105, 8.3701], - [-12.9089, 8.3669], - [-12.909, 8.363099], - [-12.9104, 8.358899], - [-12.913299, 8.352799], - [-12.913699, 8.3496], - [-12.912999, 8.346299], - [-12.9105, 8.3411], - [-12.9089, 8.3367], - [-12.9069, 8.3276], - [-12.9046, 8.3203], - [-12.903999, 8.314299], - [-12.903799, 8.3035], - [-12.896199, 8.2961], - [-12.8917, 8.299799], - [-12.8867, 8.302299], - [-12.877, 8.3044], - [-12.8746, 8.306], - [-12.872699, 8.3084], - [-12.870999, 8.3115], - [-12.8689, 8.319199], - [-12.8667, 8.324799], - [-12.8603, 8.334799], - [-12.858399, 8.3371], - [-12.8551, 8.339699], - [-12.850258, 8.342196], - [-12.851391, 8.342683], - [-12.852903, 8.343711], - [-12.85361, 8.344434], - [-12.854403, 8.345271], - [-12.855294, 8.346315], - [-12.856007, 8.347436], - [-12.856185, 8.348403], - [-12.856033, 8.349167], - [-12.855829, 8.349626], - [-12.855345, 8.350288], - [-12.854608, 8.351407], - [-12.854099, 8.352425], - [-12.853284, 8.352883], - [-12.852723, 8.353036], - [-12.851705, 8.352781], - [-12.850508, 8.352552], - [-12.849108, 8.35207], - [-12.847913, 8.352121], - [-12.846996, 8.352451], - [-12.846079, 8.352935], - [-12.845112, 8.353622], - [-12.843609, 8.355277], - [-12.842414, 8.356346], - [-12.841523, 8.357033], - [-12.840427, 8.357085], - [-12.839359, 8.357314], - [-12.838391, 8.357874], - [-12.83801, 8.358434], - [-12.837806, 8.359299], - [-12.837831, 8.360164], - [-12.839078, 8.361946], - [-12.839943, 8.363245], - [-12.840555, 8.364569], - [-12.841064, 8.366275], - [-12.841191, 8.369049], - [-12.841013, 8.370729], - [-12.840326, 8.372002], - [-12.839179, 8.372995], - [-12.837577, 8.373581], - [-12.837396, 8.373646], - [-12.837587, 8.374603], - [-12.838639, 8.374631], - [-12.839855, 8.372667], - [-12.841288, 8.37087], - [-12.841831, 8.366237], - [-12.841789, 8.365938], - [-12.84179, 8.365937], - [-12.844583, 8.372917], - [-12.849582, 8.382916], - [-12.847916, 8.384583], - [-12.842917, 8.385417], - [-12.837083, 8.392916], - [-12.837082, 8.394584], - [-12.836788, 8.394804], - [-12.836701, 8.394805], - [-12.836635, 8.394918], - [-12.83375, 8.397084], - [-12.834583, 8.402916], - [-12.845417, 8.407084], - [-12.853749, 8.407083], - [-12.857454, 8.40412], - [-12.857712, 8.404569], - [-12.853807, 8.411334], - [-12.857713, 8.4181], - [-12.862056, 8.418101], - [-12.862056, 8.418102], - [-12.860431, 8.418715], - [-12.859793, 8.419795], - [-12.860018, 8.420259], - [-12.860469, 8.422785], - [-12.860779, 8.423513], - [-12.862814, 8.424361], - [-12.864728, 8.424505], - [-12.866867, 8.42505], - [-12.868342, 8.42584], - [-12.868955, 8.426692], - [-12.869531, 8.42757], - [-12.869332, 8.427802], - [-12.86938, 8.427937], - [-12.869886, 8.428318], - [-12.870958, 8.428721], - [-12.872197, 8.42962], - [-12.873868, 8.431486], - [-12.874423, 8.432172], - [-12.875116, 8.433374], - [-12.877856, 8.436068], - [-12.878422, 8.436432], - [-12.878124, 8.436999], - [-12.876331, 8.440373], - [-12.876634, 8.440754], - [-12.875119, 8.444512], - [-12.874835, 8.445222], - [-12.875115, 8.445413], - [-12.876744, 8.44567], - [-12.878755, 8.446441], - [-12.880386, 8.446521], - [-12.883033, 8.446112], - [-12.884237, 8.447092], - [-12.884257, 8.448155], - [-12.883323, 8.447784], - [-12.882339, 8.448041], - [-12.882917, 8.452083], - [-12.885416, 8.452917], - [-12.88625, 8.454583], - [-12.887082, 8.454584], - [-12.887083, 8.455416], - [-12.896249, 8.458749], - [-12.896249, 8.453857], - [-12.89606, 8.453447], - [-12.894931, 8.452237], - [-12.894055, 8.450924], - [-12.893654, 8.448609], - [-12.893722, 8.44778], - [-12.902082, 8.447084], - [-12.907083, 8.451249], - [-12.91125, 8.45125], - [-12.915417, 8.455417], - [-12.916647, 8.459726], - [-12.916587, 8.459762], - [-12.917083, 8.461249], - [-12.921721, 8.460735], - [-12.921906, 8.461087], - [-12.921628, 8.461908], - [-12.921783, 8.462104], - [-12.923177, 8.462127], - [-12.925291, 8.463204], - [-12.925339, 8.463914], - [-12.924888, 8.464519], - [-12.924428, 8.46576], - [-12.924733, 8.465765], - [-12.925351, 8.4654], - [-12.926036, 8.4654], - [-12.926921, 8.466078], - [-12.926526, 8.464095], - [-12.926198, 8.463521], - [-12.926814, 8.462788], - [-12.927206, 8.462891], - [-12.927298, 8.463177], - [-12.927715, 8.463234], - [-12.928059, 8.463065], - [-12.928214, 8.462497], - [-12.928028, 8.461686], - [-12.928124, 8.461277], - [-12.928591, 8.460933], - [-12.929609, 8.460667], - [-12.931068, 8.461022], - [-12.931315, 8.461016], - [-12.935416, 8.463749], - [-12.934583, 8.469583], - [-12.940416, 8.472084], - [-12.939583, 8.48125], - [-12.941954, 8.48362], - [-12.942478, 8.483391], - [-12.942581, 8.483048], - [-12.944918, 8.483414], - [-12.94838, 8.479952], - [-12.948969, 8.48022], - [-12.948863, 8.482529], - [-12.948976, 8.482808], - [-12.948552, 8.483569], - [-12.948283, 8.483874], - [-12.947792, 8.484447], - [-12.94741, 8.485278], - [-12.947408, 8.486184], - [-12.947894, 8.487375], - [-12.948473, 8.487868], - [-12.94887, 8.488681], - [-12.949204, 8.489046], - [-12.949814, 8.490008], - [-12.950187, 8.490801], - [-12.950423, 8.491538], - [-12.950568, 8.492279], - [-12.95049, 8.492948], - [-12.950327, 8.493743], - [-12.950297, 8.495744], - [-12.950446, 8.496241], - [-12.950757, 8.496851], - [-12.951662, 8.498075], - [-12.952532, 8.499196], - [-12.9515, 8.4976], - [-12.95267, 8.49693], - [-12.952255, 8.496467], - [-12.951876, 8.49621], - [-12.951585, 8.496042], - [-12.951465, 8.495794], - [-12.951584, 8.494141], - [-12.951649, 8.492698], - [-12.951563, 8.491894], - [-12.951383, 8.491204], - [-12.95117, 8.490444], - [-12.950882, 8.489628], - [-12.950377, 8.488652], - [-12.949903, 8.488071], - [-12.949308, 8.487496], - [-12.948734, 8.486926], - [-12.948493, 8.486594], - [-12.948485, 8.48612], - [-12.948502, 8.485834], - [-12.948842, 8.485487], - [-12.949407, 8.484445], - [-12.949952, 8.483287], - [-12.950198, 8.482467], - [-12.950627, 8.481408], - [-12.950926, 8.480516], - [-12.951067, 8.479949], - [-12.951161, 8.479612], - [-12.951236, 8.479148], - [-12.951108, 8.478453], - [-12.95108, 8.478007], - [-12.950751, 8.477346], - [-12.950794, 8.477134], - [-12.951953, 8.476776], - [-12.952609, 8.476812], - [-12.95314, 8.476728], - [-12.953642, 8.476511], - [-12.95412, 8.476181], - [-12.954434, 8.475756], - [-12.954732, 8.475191], - [-12.954843, 8.474657], - [-12.954832, 8.474122], - [-12.954782, 8.473531], - [-12.954571, 8.472831], - [-12.95416, 8.472152], - [-12.953934, 8.471765], - [-12.953612, 8.471546], - [-12.953366, 8.471297], - [-12.953221, 8.469207], - [-12.953223, 8.469137], - [-12.953205, 8.468987], - [-12.953205, 8.468833], - [-12.953374, 8.468426], - [-12.953624, 8.468024], - [-12.954042, 8.467684], - [-12.955106, 8.466753], - [-12.955777, 8.466133], - [-12.956244, 8.465556], - [-12.956595, 8.464976], - [-12.956706, 8.464699], - [-12.956777, 8.464013], - [-12.956703, 8.463349], - [-12.956843, 8.462819], - [-12.957084, 8.462527], - [-12.957325, 8.462418], - [-12.957691, 8.462104], - [-12.957986, 8.46167], - [-12.958153, 8.461336], - [-12.958346, 8.460768], - [-12.958455, 8.460465], - [-12.95865, 8.460394], - [-12.95888, 8.460414], - [-12.959042, 8.460529], - [-12.959257, 8.460842], - [-12.959342, 8.461079], - [-12.959393, 8.461515], - [-12.959619, 8.461956], - [-12.960136, 8.462123], - [-12.960693, 8.462063], - [-12.961008, 8.462004], - [-12.961315, 8.461989], - [-12.961635, 8.46208], - [-12.96171, 8.461893] - ] - ], - "type": "Polygon" - }, - "id": 539, - "properties": { - "cc:admin:id": ["62"], - "cc:oBld:total": 424, - "cc:pop:fifteen-to-twenty-four": 2048.3888800257555, - "cc:pop:grid3-total": 7685.599098820303, - "cc:pop:kontur-total": 10871.841985145553, - "cc:pop:men": 5245.230660096679, - "cc:pop:sixty-plus": 685.7120747515363, - "cc:pop:total": 11219.99950571961, - "cc:pop:under-five": 1856.2335814212772, - "cc:pop:women": 5974.768845622927, - "cc:pop:women-fiften-to-forty-nine": 2991.828697924629, - "cc:pop:wp-total": 9328.120742272384, - "cc:pop:wp-total-UN": 10818.817845414438, - "cc:id": "539", - "cc:Name": "Sumbuya MCHP", - "cc:site": [-12.8979, 8.4205], - "user:parentName": "Koya", - "user:code": "OU_254972", - "user:orgUnitId": "pUZIL5xBsve", - "user:level": "4", - "user:parentId": "pRHGAROvuyI" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.251065, 8.3681], - [-13.235952, 8.350405], - [-13.23346, 8.353177], - [-13.233459, 8.353177], - [-13.234023, 8.344572], - [-13.201518, 8.334317], - [-13.200135, 8.330412], - [-13.199851, 8.330593], - [-13.199006, 8.330764], - [-13.197209, 8.332032], - [-13.196331, 8.332885], - [-13.196026, 8.333708], - [-13.195289, 8.337904], - [-13.194846, 8.338497], - [-13.194228, 8.338681], - [-13.192907, 8.33846], - [-13.192444, 8.338581], - [-13.192321, 8.339077], - [-13.191612, 8.338552], - [-13.191288, 8.338685], - [-13.191413, 8.339052], - [-13.191055, 8.339078], - [-13.191157, 8.339336], - [-13.19191, 8.339733], - [-13.191493, 8.339942], - [-13.191071, 8.339912], - [-13.190531, 8.338928], - [-13.189426, 8.338757], - [-13.188645, 8.33907], - [-13.18767, 8.340565], - [-13.187892, 8.341964], - [-13.187834, 8.34329], - [-13.18727, 8.345019], - [-13.187127, 8.345289], - [-13.18786, 8.346559], - [-13.195672, 8.34656], - [-13.199577, 8.353326], - [-13.19912, 8.354119], - [-13.198749, 8.35375], - [-13.193779, 8.354372], - [-13.195797, 8.356116], - [-13.196589, 8.357299], - [-13.19387, 8.362008], - [-13.18625, 8.362008], - [-13.18625, 8.359394], - [-13.186235, 8.359394], - [-13.182329, 8.366159], - [-13.186235, 8.372924], - [-13.194047, 8.372925], - [-13.197953, 8.37969], - [-13.194047, 8.386457], - [-13.197954, 8.393222], - [-13.205765, 8.393222], - [-13.209671, 8.386457], - [-13.217484, 8.386456], - [-13.221073, 8.380241], - [-13.22125, 8.380417], - [-13.222916, 8.380416], - [-13.225581, 8.378086], - [-13.230478, 8.378085], - [-13.234235, 8.371579], - [-13.235335, 8.372538], - [-13.235404, 8.372485], - [-13.235471, 8.372425], - [-13.237554, 8.371211], - [-13.236766, 8.370119], - [-13.236931, 8.369736], - [-13.236786, 8.369382], - [-13.236346, 8.369456], - [-13.235736, 8.369522], - [-13.234734, 8.370531], - [-13.2342, 8.371337], - [-13.233714, 8.370958], - [-13.234014, 8.370602], - [-13.235776, 8.36755], - [-13.242916, 8.36755], - [-13.242917, 8.368749], - [-13.245417, 8.37125], - [-13.247916, 8.371249], - [-13.251065, 8.3681] - ] - ], - "type": "Polygon" - }, - "id": 541, - "properties": { - "cc:admin:id": ["112"], - "cc:oBld:total": 957, - "cc:pop:fifteen-to-twenty-four": 3696.2783861082557, - "cc:pop:grid3-total": 5817.8258664833365, - "cc:pop:kontur-total": 15042.026389063523, - "cc:pop:men": 8236.483225418488, - "cc:pop:sixty-plus": 1320.5242558219747, - "cc:pop:total": 16346.942607899144, - "cc:pop:under-five": 1900.1388948294148, - "cc:pop:women": 8110.459382480657, - "cc:pop:women-fiften-to-forty-nine": 4327.431697372647, - "cc:pop:wp-total": 11043.812842096717, - "cc:pop:wp-total-UN": 12807.786943834742, - "cc:id": "541", - "cc:Name": "Sussex MCHP", - "cc:site": [-13.231, 8.3472], - "user:parentName": "Rural Western Area", - "user:code": "OU_278393", - "user:orgUnitId": "wcHRDp21Lw1", - "user:level": "4", - "user:parentId": "qtr8GGlm4gg" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.009399, 8.601699], - [-11.009169, 8.590581], - [-11.007289, 8.592083], - [-11.007215, 8.592011], - [-11.00714, 8.591175], - [-11.006509, 8.590468], - [-11.006556, 8.589852], - [-11.005903, 8.588828], - [-11.005746, 8.5878], - [-11.004749, 8.586728], - [-11.003901, 8.586367], - [-11.002631, 8.586118], - [-11.001853, 8.586171], - [-11.000813, 8.585854], - [-11.000416, 8.58625], - [-10.999582, 8.587917], - [-10.98875, 8.587917], - [-10.988361, 8.587141], - [-10.987166, 8.587556], - [-10.986615, 8.588746], - [-10.986583, 8.589785], - [-10.986282, 8.59018], - [-10.986194, 8.59044], - [-10.980417, 8.592916], - [-10.978749, 8.589584], - [-10.976249, 8.588749], - [-10.967917, 8.587084], - [-10.967083, 8.587917], - [-10.966723, 8.589173], - [-10.962357, 8.589173], - [-10.961865, 8.587479], - [-10.961667, 8.58606], - [-10.962171, 8.584382], - [-10.962798, 8.583485], - [-10.963232, 8.581461], - [-10.962916, 8.581249], - [-10.957917, 8.579584], - [-10.952916, 8.593749], - [-10.95125, 8.592916], - [-10.951249, 8.58125], - [-10.950416, 8.58125], - [-10.94625, 8.585417], - [-10.946249, 8.587917], - [-10.944741, 8.588419], - [-10.944648, 8.588208], - [-10.937083, 8.589583], - [-10.934582, 8.591249], - [-10.929583, 8.589584], - [-10.929582, 8.58875], - [-10.928749, 8.588749], - [-10.920417, 8.587083], - [-10.920416, 8.577917], - [-10.909583, 8.577917], - [-10.907916, 8.580416], - [-10.901055, 8.579731], - [-10.9012, 8.5806], - [-10.9035, 8.5865], - [-10.9041, 8.5902], - [-10.904499, 8.595999], - [-10.905299, 8.599699], - [-10.9075, 8.6051], - [-10.9082, 8.6099], - [-10.908299, 8.619999], - [-10.9088, 8.6244], - [-10.9096, 8.6266], - [-10.913399, 8.632899], - [-10.9151, 8.6361], - [-10.9184, 8.639499], - [-10.9218, 8.640899], - [-10.925399, 8.640899], - [-10.927799, 8.6401], - [-10.931399, 8.6381], - [-10.9345, 8.636699], - [-10.938699, 8.6342], - [-10.9419, 8.632899], - [-10.9454, 8.630999], - [-10.948799, 8.6301], - [-10.958799, 8.6295], - [-10.961399, 8.6288], - [-10.968699, 8.6249], - [-10.974499, 8.6204], - [-10.9765, 8.619399], - [-10.9796, 8.6188], - [-10.989199, 8.6188], - [-10.9932, 8.618199], - [-10.9958, 8.616799], - [-10.9976, 8.614599], - [-10.9999, 8.610099], - [-11.0023, 8.607199], - [-11.005, 8.604699], - [-11.009399, 8.601699] - ] - ], - "type": "Polygon" - }, - "id": 542, - "properties": { - "cc:admin:id": ["133"], - "cc:oBld:total": 4592, - "cc:pop:fifteen-to-twenty-four": 2120.3669183930647, - "cc:pop:grid3-total": 14115.11579158857, - "cc:pop:kontur-total": 9349.966378291374, - "cc:pop:men": 5357.941769346547, - "cc:pop:sixty-plus": 569.9959944936427, - "cc:pop:total": 10525.468302014795, - "cc:pop:under-five": 1620.7375814767938, - "cc:pop:women": 5167.526532668243, - "cc:pop:women-fiften-to-forty-nine": 2610.5500312845115, - "cc:pop:wp-total": 8064.086843488912, - "cc:pop:wp-total-UN": 9348.068426864389, - "cc:id": "542", - "cc:Name": "Swarray Town MCHP", - "cc:site": [-10.9621, 8.6228], - "user:parentName": "Tankoro", - "user:code": "OU_233329", - "user:orgUnitId": "fzBpuujglTY", - "user:level": "4", - "user:parentId": "M2qEv692lS6" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.263699, 7.458999], - [-12.261099, 7.454899], - [-12.2583, 7.4516], - [-12.2554, 7.4489], - [-12.253099, 7.447199], - [-12.250699, 7.445999], - [-12.246399, 7.444399], - [-12.2449, 7.442799], - [-12.2432, 7.4385], - [-12.2414, 7.436], - [-12.2383, 7.433399], - [-12.2371, 7.430699], - [-12.236799, 7.426899], - [-12.236699, 7.4206], - [-12.235399, 7.416899], - [-12.233499, 7.4158], - [-12.2314, 7.4154], - [-12.2258, 7.4152], - [-12.2221, 7.4146], - [-12.2175, 7.4127], - [-12.214599, 7.412099], - [-12.208599, 7.4118], - [-12.1941, 7.411899], - [-12.191099, 7.411799], - [-12.187299, 7.410899], - [-12.1814, 7.4079], - [-12.1786, 7.4056], - [-12.178269, 7.405088], - [-12.177873, 7.40574], - [-12.177388, 7.405824], - [-12.176779, 7.405073], - [-12.176512, 7.405921], - [-12.176575, 7.406235], - [-12.172917, 7.410417], - [-12.172916, 7.412084], - [-12.170417, 7.413749], - [-12.162917, 7.413749], - [-12.160833, 7.411668], - [-12.154925, 7.411668], - [-12.152918, 7.415144], - [-12.152917, 7.415143], - [-12.152916, 7.41125], - [-12.14875, 7.407084], - [-12.142883, 7.413601], - [-12.139297, 7.407392], - [-12.134304, 7.407392], - [-12.133749, 7.416249], - [-12.124583, 7.41125], - [-12.124973, 7.412421], - [-12.121798, 7.41792], - [-12.122438, 7.41903], - [-12.117779, 7.421885], - [-12.11757, 7.421845], - [-12.117616, 7.42209], - [-12.117476, 7.422907], - [-12.115417, 7.422083], - [-12.114582, 7.417917], - [-12.107917, 7.417917], - [-12.10375, 7.41875], - [-12.09875, 7.422084], - [-12.097916, 7.427916], - [-12.088749, 7.42875], - [-12.087917, 7.429584], - [-12.087082, 7.434583], - [-12.082916, 7.437916], - [-12.072083, 7.437083], - [-12.070416, 7.42625], - [-12.061249, 7.419584], - [-12.057917, 7.419584], - [-12.053749, 7.42125], - [-12.044583, 7.422084], - [-12.04125, 7.42625], - [-12.04125, 7.433847], - [-12.040733, 7.43474], - [-12.037083, 7.43474], - [-12.037082, 7.432084], - [-12.032082, 7.427084], - [-12.02125, 7.427084], - [-12.013322, 7.427804], - [-12.014599, 7.430199], - [-12.015199, 7.432399], - [-12.015999, 7.438299], - [-12.0168, 7.440699], - [-12.0212, 7.444599], - [-12.0237, 7.4453], - [-12.0271, 7.4454], - [-12.030499, 7.446299], - [-12.034999, 7.448299], - [-12.0409, 7.4498], - [-12.0468, 7.4522], - [-12.050999, 7.452799], - [-12.053999, 7.452899], - [-12.076299, 7.4527], - [-12.079999, 7.4532], - [-12.082599, 7.4544], - [-12.085199, 7.457399], - [-12.0878, 7.459299], - [-12.0944, 7.4614], - [-12.097699, 7.4645], - [-12.099299, 7.467299], - [-12.100799, 7.469199], - [-12.1027, 7.4708], - [-12.1094, 7.4741], - [-12.1128, 7.4749], - [-12.118099, 7.475399], - [-12.121399, 7.4764], - [-12.1242, 7.479], - [-12.127899, 7.486699], - [-12.1299, 7.4936], - [-12.1322, 7.4964], - [-12.1352, 7.4987], - [-12.139099, 7.504499], - [-12.1414, 7.5092], - [-12.143999, 7.512399], - [-12.1472, 7.5152], - [-12.152099, 7.518199], - [-12.1536, 7.514399], - [-12.1559, 7.5102], - [-12.159999, 7.5071], - [-12.1632, 7.504299], - [-12.1647, 7.502399], - [-12.1674, 7.497099], - [-12.169499, 7.4944], - [-12.1729, 7.490799], - [-12.1769, 7.487499], - [-12.1809, 7.485599], - [-12.1852, 7.483299], - [-12.1883, 7.481899], - [-12.192599, 7.4796], - [-12.1958, 7.478199], - [-12.200099, 7.4758], - [-12.2033, 7.474499], - [-12.2075, 7.472099], - [-12.2107, 7.470699], - [-12.2151, 7.468499], - [-12.221, 7.467099], - [-12.2275, 7.464599], - [-12.233299, 7.4638], - [-12.236699, 7.4631], - [-12.2421, 7.460899], - [-12.2469, 7.460299], - [-12.254899, 7.4602], - [-12.259199, 7.4599], - [-12.263699, 7.458999] - ] - ], - "type": "Polygon" - }, - "id": 543, - "properties": { - "cc:admin:id": ["147"], - "cc:oBld:total": 10, - "cc:pop:fifteen-to-twenty-four": 887.4709742228522, - "cc:pop:grid3-total": 10085.138653183212, - "cc:pop:kontur-total": 5026.706267589544, - "cc:pop:men": 2420.3624115766092, - "cc:pop:sixty-plus": 336.85884126439976, - "cc:pop:total": 4887.339538644468, - "cc:pop:under-five": 827.9488260296032, - "cc:pop:women": 2466.9771270678602, - "cc:pop:women-fiften-to-forty-nine": 1207.6987484924935, - "cc:pop:wp-total": 4155.474887100596, - "cc:pop:wp-total-UN": 4831.079767381186, - "cc:id": "543", - "cc:Name": "Talia CHC", - "cc:site": [-12.1298, 7.4386], - "user:parentName": "Yawbeko", - "user:code": "OU_197437", - "user:orgUnitId": "s5aXfzOL456", - "user:level": "4", - "user:parentId": "CG4QD1HC3h4" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.558385, 7.482082], - [-11.556929, 7.48133], - [-11.554887, 7.479936], - [-11.552631, 7.477799], - [-11.552572, 7.477716], - [-11.546249, 7.477083], - [-11.542916, 7.473749], - [-11.542082, 7.470416], - [-11.540417, 7.466249], - [-11.542082, 7.459584], - [-11.542082, 7.45875], - [-11.539065, 7.448941], - [-11.538995, 7.448947], - [-11.536249, 7.442084], - [-11.52875, 7.442084], - [-11.524583, 7.445417], - [-11.523749, 7.452083], - [-11.517084, 7.452083], - [-11.517084, 7.452082], - [-11.520416, 7.447916], - [-11.520416, 7.43875], - [-11.512916, 7.43125], - [-11.504868, 7.43125], - [-11.5033, 7.434699], - [-11.5029, 7.4373], - [-11.5032, 7.440699], - [-11.505399, 7.445999], - [-11.5062, 7.4497], - [-11.506399, 7.454499], - [-11.5061, 7.458299], - [-11.5047, 7.464199], - [-11.5062, 7.4701], - [-11.506699, 7.4757], - [-11.5066, 7.482599], - [-11.505999, 7.4862], - [-11.504, 7.490599], - [-11.5031, 7.493999], - [-11.507799, 7.494], - [-11.511399, 7.4938], - [-11.514099, 7.4932], - [-11.519299, 7.4909], - [-11.5244, 7.489699], - [-11.529499, 7.4872], - [-11.5327, 7.485799], - [-11.536299, 7.4839], - [-11.5383, 7.483199], - [-11.5416, 7.4829], - [-11.554299, 7.4829], - [-11.558385, 7.482082] - ] - ], - "type": "Polygon" - }, - "id": 544, - "properties": { - "cc:admin:id": ["27"], - "cc:oBld:total": 4, - "cc:pop:fifteen-to-twenty-four": 366.6058524830267, - "cc:pop:grid3-total": 1068.2709697153339, - "cc:pop:kontur-total": 1886.2782082850395, - "cc:pop:men": 980.7448746027187, - "cc:pop:sixty-plus": 138.46472311436625, - "cc:pop:total": 2031.178373082299, - "cc:pop:under-five": 338.68110077164476, - "cc:pop:women": 1050.4334984795803, - "cc:pop:women-fiften-to-forty-nine": 502.07057559739303, - "cc:pop:wp-total": 2193.356418035371, - "cc:pop:wp-total-UN": 2542.624891934692, - "cc:id": "544", - "cc:Name": "Tambeyama MCHP", - "cc:site": [-11.5141, 7.4722], - "user:parentName": "Barri", - "user:code": "OU_260432", - "user:orgUnitId": "dU3vTbLRLHy", - "user:level": "4", - "user:parentId": "RzKeCma9qb1" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.187751, 9.023707], - [-12.186213, 9.023542], - [-12.186184, 9.02354], - [-12.186108, 9.023906], - [-12.185528, 9.024785], - [-12.182901, 9.026936], - [-12.181511, 9.027685], - [-12.180522, 9.028236], - [-12.180055, 9.028493], - [-12.178549, 9.029516], - [-12.177098, 9.031132], - [-12.175257, 9.03242], - [-12.174582, 9.032082], - [-12.172083, 9.027083], - [-12.172083, 9.026249], - [-12.177082, 9.017916], - [-12.177083, 9.017082], - [-12.177916, 9.012083], - [-12.178749, 9.00875], - [-12.172083, 9.005417], - [-12.17125, 9.005416], - [-12.171249, 9.004583], - [-12.168097, 9.003322], - [-12.168912, 9.00182], - [-12.165555, 9.00236], - [-12.164583, 9.000418], - [-12.164584, 9.000417], - [-12.166249, 9.000416], - [-12.168749, 8.997916], - [-12.167917, 8.996249], - [-12.167916, 8.984583], - [-12.166249, 8.984582], - [-12.163023, 8.983938], - [-12.163023, 8.983325], - [-12.162566, 8.981035], - [-12.162606, 8.98019], - [-12.166249, 8.979582], - [-12.169582, 8.975416], - [-12.167083, 8.969582], - [-12.167082, 8.963693], - [-12.166495, 8.963547], - [-12.165555, 8.963647], - [-12.163995, 8.964086], - [-12.162797, 8.964077], - [-12.157916, 8.960417], - [-12.155417, 8.960416], - [-12.155416, 8.958796], - [-12.154583, 8.958684], - [-12.154583, 8.955417], - [-12.158749, 8.949583], - [-12.152083, 8.94625], - [-12.151639, 8.94492], - [-12.150799, 8.9466], - [-12.147299, 8.9507], - [-12.145099, 8.9524], - [-12.138399, 8.9558], - [-12.134999, 8.957], - [-12.130099, 8.9573], - [-12.119082, 8.9573], - [-12.11993, 8.957892], - [-12.117916, 8.96125], - [-12.107083, 8.962917], - [-12.106684, 8.964909], - [-12.103993, 8.966866], - [-12.103635, 8.966952], - [-12.103273, 8.967859], - [-12.103586, 8.968061], - [-12.102916, 8.972082], - [-12.096249, 8.969583], - [-12.092917, 8.972083], - [-12.097042, 8.980337], - [-12.095899, 8.980313], - [-12.09352, 8.979223], - [-12.092254, 8.977917], - [-12.08625, 8.977917], - [-12.086249, 8.98125], - [-12.07875, 8.982917], - [-12.079582, 8.984583], - [-12.078308, 8.988409], - [-12.078306, 8.98841], - [-12.078118, 8.988345], - [-12.077083, 8.990416], - [-12.07375, 8.989583], - [-12.072083, 8.992082], - [-12.075415, 8.995415], - [-12.075415, 8.995417], - [-12.071626, 8.99668], - [-12.071612, 8.996651], - [-12.062083, 8.999583], - [-12.062917, 9.002916], - [-12.065416, 9.004583], - [-12.065416, 9.012083], - [-12.063749, 9.012917], - [-12.058087, 9.012917], - [-12.058079, 9.013439], - [-12.057509, 9.019054], - [-12.057421, 9.01948], - [-12.047917, 9.01875], - [-12.047693, 9.018862], - [-12.048099, 9.022799], - [-12.048032, 9.025531], - [-12.05375, 9.031249], - [-12.05425, 9.031499], - [-12.055485, 9.030357], - [-12.05965, 9.033926], - [-12.059406, 9.034221], - [-12.057586, 9.035701], - [-12.056369, 9.036917], - [-12.055715, 9.038157], - [-12.055666, 9.038569], - [-12.059583, 9.037916], - [-12.063749, 9.03625], - [-12.06375, 9.038749], - [-12.06625, 9.042916], - [-12.073749, 9.039583], - [-12.07375, 9.042082], - [-12.075417, 9.043749], - [-12.077916, 9.044583], - [-12.07875, 9.046249], - [-12.080416, 9.047916], - [-12.083749, 9.044583], - [-12.085417, 9.047082], - [-12.09125, 9.04625], - [-12.094517, 9.049517], - [-12.093849, 9.050366], - [-12.093842, 9.050909], - [-12.093311, 9.052353], - [-12.093215, 9.052375], - [-12.093518, 9.054091], - [-12.093326, 9.055628], - [-12.095417, 9.054583], - [-12.100416, 9.064582], - [-12.100417, 9.067082], - [-12.104582, 9.071249], - [-12.10625, 9.070417], - [-12.109583, 9.072082], - [-12.11125, 9.072083], - [-12.11375, 9.073749], - [-12.120416, 9.072917], - [-12.12441, 9.076111], - [-12.125718, 9.073849], - [-12.129229, 9.073848], - [-12.130417, 9.067916], - [-12.139582, 9.06625], - [-12.142082, 9.067082], - [-12.142916, 9.067082], - [-12.142917, 9.060417], - [-12.145416, 9.059582], - [-12.14625, 9.05875], - [-12.147916, 9.057916], - [-12.147917, 9.054583], - [-12.150416, 9.054582], - [-12.152082, 9.052916], - [-12.152917, 9.046249], - [-12.155417, 9.045417], - [-12.157158, 9.045417], - [-12.157159, 9.045418], - [-12.156929, 9.046249], - [-12.162082, 9.046249], - [-12.164582, 9.042082], - [-12.164583, 9.040416], - [-12.16625, 9.03875], - [-12.167917, 9.037916], - [-12.170813, 9.035599], - [-12.170522, 9.03484], - [-12.172964, 9.034009], - [-12.173287, 9.034527], - [-12.173628, 9.034696], - [-12.174447, 9.034592], - [-12.174863, 9.034733], - [-12.174878, 9.034088], - [-12.175468, 9.033004], - [-12.176278, 9.032453], - [-12.177376, 9.032744], - [-12.178044, 9.032111], - [-12.178972, 9.031803], - [-12.181764, 9.031518], - [-12.182446, 9.03114], - [-12.182683, 9.030791], - [-12.182615, 9.029899], - [-12.183641, 9.028645], - [-12.184214, 9.028349], - [-12.18459, 9.027518], - [-12.185439, 9.027358], - [-12.185402, 9.027063], - [-12.186021, 9.026685], - [-12.186243, 9.026103], - [-12.186174, 9.025522], - [-12.185693, 9.025181], - [-12.185815, 9.024736], - [-12.186167, 9.024516], - [-12.186771, 9.02444], - [-12.186986, 9.024107], - [-12.187751, 9.023707] - ] - ], - "type": "Polygon" - }, - "id": 545, - "properties": { - "cc:admin:id": ["32"], - "cc:oBld:total": 419, - "cc:pop:fifteen-to-twenty-four": 2286.503108082002, - "cc:pop:grid3-total": 11946.003254467894, - "cc:pop:kontur-total": 12001.14238231996, - "cc:pop:men": 5644.765823801143, - "cc:pop:sixty-plus": 829.2553941723371, - "cc:pop:total": 11925.731458089082, - "cc:pop:under-five": 1864.4846488961596, - "cc:pop:women": 6280.965634287938, - "cc:pop:women-fiften-to-forty-nine": 3070.5386639975977, - "cc:pop:wp-total": 9693.157122504703, - "cc:pop:wp-total-UN": 11223.76696325374, - "cc:id": "545", - "cc:Name": "Tambiama CHC", - "cc:site": [-12.1103, 8.9948], - "user:parentName": "Gbendembu Ngowahun", - "user:code": "OU_193280", - "user:orgUnitId": "agEKP19IUKI", - "user:level": "4", - "user:parentId": "BXJdOLvUrZB" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.438749, 7.412916], - [-11.433699, 7.406423], - [-11.433729, 7.406352], - [-11.42875, 7.402084], - [-11.428749, 7.400417], - [-11.424583, 7.397917], - [-11.427916, 7.39125], - [-11.422083, 7.385417], - [-11.419583, 7.384584], - [-11.419582, 7.383749], - [-11.416249, 7.37875], - [-11.411177, 7.378116], - [-11.411012, 7.378945], - [-11.410207, 7.380267], - [-11.406897, 7.379795], - [-11.406891, 7.380098], - [-11.40706, 7.38082], - [-11.406086, 7.382954], - [-11.406029, 7.383537], - [-11.40629, 7.384087], - [-11.406272, 7.384623], - [-11.405708, 7.384942], - [-11.405265, 7.385566], - [-11.404326, 7.387526], - [-11.40358, 7.388041], - [-11.402769, 7.389469], - [-11.400938, 7.391371], - [-11.399616, 7.393896], - [-11.398316, 7.395712], - [-11.398542, 7.395885], - [-11.398542, 7.395886], - [-11.398018, 7.396475], - [-11.397611, 7.396672], - [-11.396759, 7.396534], - [-11.395287, 7.397284], - [-11.394783, 7.39816], - [-11.393687, 7.398903], - [-11.392525, 7.399455], - [-11.391371, 7.40108], - [-11.391539, 7.401115], - [-11.391539, 7.401117], - [-11.390945, 7.401738], - [-11.390985, 7.402532], - [-11.390462, 7.402958], - [-11.390153, 7.402837], - [-11.389979, 7.403041], - [-11.388413, 7.405247], - [-11.386926, 7.404505], - [-11.386866, 7.404328], - [-11.386312, 7.404134], - [-11.38626, 7.403966], - [-11.385875, 7.403979], - [-11.383351, 7.402718], - [-11.381188, 7.403351], - [-11.377619, 7.402753], - [-11.37587, 7.403215], - [-11.374353, 7.404395], - [-11.370063, 7.409019], - [-11.367334, 7.41228], - [-11.366891, 7.412672], - [-11.366192, 7.412673], - [-11.365446, 7.413597], - [-11.366401, 7.41399], - [-11.366261, 7.414314], - [-11.36533, 7.414315], - [-11.364111, 7.4155], - [-11.363094, 7.415002], - [-11.362264, 7.414295], - [-11.36101, 7.413961], - [-11.359804, 7.414532], - [-11.359575, 7.414833], - [-11.357134, 7.415018], - [-11.355493, 7.415419], - [-11.357199, 7.422799], - [-11.356999, 7.4262], - [-11.354199, 7.4389], - [-11.352699, 7.441999], - [-11.35, 7.4445], - [-11.3513, 7.4528], - [-11.354, 7.4627], - [-11.354599, 7.466899], - [-11.354999, 7.472599], - [-11.355059, 7.476925], - [-11.355809, 7.476695], - [-11.357144, 7.475662], - [-11.357339, 7.475149], - [-11.35717, 7.474741], - [-11.357477, 7.47438], - [-11.357299, 7.474344], - [-11.357056, 7.474562], - [-11.356857, 7.474207], - [-11.357529, 7.473667], - [-11.359465, 7.47303], - [-11.359466, 7.472876], - [-11.361345, 7.47252], - [-11.360452, 7.472347], - [-11.360555, 7.472021], - [-11.361797, 7.471756], - [-11.363131, 7.471726], - [-11.363912, 7.472489], - [-11.363451, 7.471625], - [-11.36386, 7.471584], - [-11.365083, 7.472632], - [-11.365472, 7.472509], - [-11.364754, 7.471472], - [-11.36261, 7.471115], - [-11.363419, 7.470383], - [-11.363122, 7.470188], - [-11.363419, 7.469629], - [-11.363665, 7.469923], - [-11.363841, 7.469567], - [-11.364548, 7.469476], - [-11.365349, 7.469659], - [-11.365966, 7.470351], - [-11.366377, 7.47026], - [-11.366757, 7.470962], - [-11.36688, 7.47079], - [-11.367404, 7.471328], - [-11.367721, 7.471145], - [-11.367625, 7.471046], - [-11.367626, 7.471045], - [-11.371111, 7.471044], - [-11.375015, 7.464285], - [-11.375385, 7.464892], - [-11.375724, 7.465015], - [-11.37692, 7.466497], - [-11.378527, 7.469597], - [-11.379451, 7.470992], - [-11.381833, 7.475089], - [-11.382763, 7.476428], - [-11.383517, 7.478061], - [-11.38387, 7.478749], - [-11.392916, 7.478749], - [-11.39375, 7.470417], - [-11.397916, 7.469583], - [-11.39875, 7.465417], - [-11.401506, 7.464234], - [-11.401971, 7.463432], - [-11.403381, 7.463431], - [-11.404582, 7.462916], - [-11.409582, 7.457916], - [-11.409582, 7.450417], - [-11.407917, 7.447917], - [-11.410416, 7.447916], - [-11.412916, 7.445417], - [-11.416249, 7.444583], - [-11.421249, 7.435417], - [-11.422917, 7.430417], - [-11.42625, 7.429584], - [-11.430995, 7.432972], - [-11.433546, 7.431424], - [-11.43693, 7.428898], - [-11.430209, 7.423123], - [-11.430694, 7.418776], - [-11.438749, 7.412916] - ] - ], - "type": "Polygon" - }, - "id": 546, - "properties": { - "cc:admin:id": ["5"], - "cc:oBld:total": 42, - "cc:pop:fifteen-to-twenty-four": 887.6597790702243, - "cc:pop:grid3-total": 2482.954446520049, - "cc:pop:kontur-total": 4744.791055627316, - "cc:pop:men": 2374.083446958805, - "cc:pop:sixty-plus": 369.64827500859195, - "cc:pop:total": 4887.400466422958, - "cc:pop:under-five": 831.8930946480466, - "cc:pop:women": 2513.3170194641543, - "cc:pop:women-fiften-to-forty-nine": 1189.4419093073216, - "cc:pop:wp-total": 5076.370715119164, - "cc:pop:wp-total-UN": 5886.885702115506, - "cc:id": "546", - "cc:Name": "Taninahun MCHP", - "cc:site": [-11.4078, 7.4116], - "user:parentName": "Barri", - "user:code": "OU_260429", - "user:orgUnitId": "Fhko00f3hXT", - "user:level": "4", - "user:parentId": "RzKeCma9qb1" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.265799, 7.972499], - [-12.265299, 7.967999], - [-12.264999, 7.9592], - [-12.2522, 7.9592], - [-12.2493, 7.959399], - [-12.2466, 7.960099], - [-12.2413, 7.962299], - [-12.2362, 7.963599], - [-12.2311, 7.966099], - [-12.227899, 7.9674], - [-12.222999, 7.9697], - [-12.218, 7.970499], - [-12.2131, 7.970599], - [-12.2073, 7.9705], - [-12.20339, 7.969963], - [-12.201951, 7.971995], - [-12.19375, 7.97125], - [-12.192082, 7.972916], - [-12.187546, 7.972917], - [-12.188206, 7.974062], - [-12.184301, 7.980827], - [-12.187189, 7.985832], - [-12.182083, 7.98875], - [-12.185639, 7.993727], - [-12.186475, 7.993656], - [-12.187082, 7.997917], - [-12.18375, 8.00125], - [-12.185416, 8.010416], - [-12.175417, 8.00875], - [-12.175417, 8.009584], - [-12.177917, 8.017083], - [-12.186248, 8.019584], - [-12.181249, 8.023749], - [-12.175417, 8.025417], - [-12.175417, 8.026249], - [-12.178749, 8.027917], - [-12.18125, 8.031249], - [-12.182083, 8.03125], - [-12.189582, 8.036249], - [-12.182083, 8.044584], - [-12.182917, 8.047083], - [-12.189582, 8.047084], - [-12.191249, 8.047916], - [-12.194582, 8.053749], - [-12.194088, 8.055232], - [-12.192834, 8.054918], - [-12.19109, 8.05366], - [-12.190389, 8.053663], - [-12.189687, 8.054103], - [-12.18887, 8.05496], - [-12.187951, 8.055514], - [-12.187848, 8.055759], - [-12.187996, 8.056273], - [-12.187954, 8.056951], - [-12.188393, 8.057839], - [-12.188476, 8.058358], - [-12.191, 8.056999], - [-12.193999, 8.0562], - [-12.1985, 8.0561], - [-12.202, 8.0568], - [-12.207299, 8.059199], - [-12.213199, 8.060599], - [-12.217699, 8.062699], - [-12.221199, 8.063499], - [-12.223799, 8.0615], - [-12.2257, 8.060599], - [-12.2278, 8.060099], - [-12.234799, 8.059199], - [-12.237299, 8.058], - [-12.243899, 8.0532], - [-12.2477, 8.051399], - [-12.253799, 8.047399], - [-12.2578, 8.040899], - [-12.2591, 8.037799], - [-12.261399, 8.0335], - [-12.2628, 8.030299], - [-12.264599, 8.0268], - [-12.2656, 8.023399], - [-12.265799, 8.019699], - [-12.2655, 8.0152], - [-12.2648, 8.0117], - [-12.262699, 8.007199], - [-12.261999, 8.004699], - [-12.261399, 7.999399], - [-12.260699, 7.996899], - [-12.2583, 7.9917], - [-12.2577, 7.988099], - [-12.257799, 7.9845], - [-12.2584, 7.981899], - [-12.2599, 7.979499], - [-12.2625, 7.976699], - [-12.265799, 7.972499] - ] - ], - "type": "Polygon" - }, - "id": 547, - "properties": { - "cc:admin:id": ["16"], - "cc:oBld:total": 2, - "cc:pop:fifteen-to-twenty-four": 564.63809148153, - "cc:pop:grid3-total": 4654.385315777973, - "cc:pop:kontur-total": 3266.839001481017, - "cc:pop:men": 1505.2148010165865, - "cc:pop:sixty-plus": 205.45121137090655, - "cc:pop:total": 3177.294434497412, - "cc:pop:under-five": 508.7777786932903, - "cc:pop:women": 1672.0796334808258, - "cc:pop:women-fiften-to-forty-nine": 827.9996072730495, - "cc:pop:wp-total": 3171.4460999370644, - "cc:pop:wp-total-UN": 3682.4476560960084, - "cc:id": "547", - "cc:Name": "Taninihun Kapuima MCHP", - "cc:site": [-12.2309, 8.0043], - "user:parentName": "Dasse", - "user:code": "OU_247022", - "user:orgUnitId": "iHQVo7h7KOQ", - "user:level": "4", - "user:parentId": "RndxKqQGzUl" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.596684, 8.135922], - [-12.5965, 8.1159], - [-12.596399, 8.112999], - [-12.5959, 8.1098], - [-12.5952, 8.1076], - [-12.5933, 8.104], - [-12.5919, 8.1009], - [-12.5894, 8.0966], - [-12.587999, 8.093499], - [-12.583999, 8.088499], - [-12.578799, 8.083999], - [-12.572699, 8.080599], - [-12.5681, 8.0768], - [-12.5643, 8.0728], - [-12.562799, 8.070599], - [-12.561399, 8.067399], - [-12.5592, 8.0631], - [-12.558299, 8.0597], - [-12.5509, 8.0596], - [-12.5474, 8.0589], - [-12.542899, 8.056899], - [-12.5361, 8.0551], - [-12.530799, 8.052899], - [-12.5249, 8.0514], - [-12.5195, 8.0491], - [-12.5157, 8.0486], - [-12.513647, 8.048529], - [-12.512917, 8.058749], - [-12.512965, 8.058799], - [-12.512965, 8.0588], - [-12.512113, 8.058719], - [-12.510562, 8.057934], - [-12.510283, 8.05797], - [-12.509431, 8.057551], - [-12.508804, 8.057429], - [-12.50875, 8.057436], - [-12.50875, 8.061271], - [-12.508521, 8.061668], - [-12.500708, 8.061669], - [-12.496801, 8.068434], - [-12.489562, 8.068435], - [-12.489583, 8.068749], - [-12.490418, 8.069419], - [-12.489844, 8.070415], - [-12.49375, 8.07718], - [-12.497817, 8.077181], - [-12.49375, 8.08125], - [-12.494474, 8.090666], - [-12.494394, 8.09076], - [-12.492221, 8.091657], - [-12.491218, 8.09171], - [-12.488825, 8.091316], - [-12.489582, 8.100416], - [-12.484583, 8.105416], - [-12.477473, 8.104909], - [-12.480188, 8.10961], - [-12.488, 8.109611], - [-12.491906, 8.116376], - [-12.488, 8.123143], - [-12.491439, 8.129098], - [-12.492917, 8.127917], - [-12.500417, 8.127917], - [-12.508749, 8.128749], - [-12.511249, 8.131249], - [-12.511786, 8.133932], - [-12.51125, 8.134539], - [-12.510541, 8.136089], - [-12.509908, 8.136322], - [-12.50941, 8.136307], - [-12.508321, 8.137395], - [-12.507917, 8.137583], - [-12.507917, 8.14187], - [-12.507994, 8.141887], - [-12.508632, 8.141554], - [-12.509382, 8.141506], - [-12.510675, 8.141362], - [-12.511185, 8.14106], - [-12.513239, 8.14116], - [-12.514098, 8.140391], - [-12.514972, 8.14004], - [-12.515007, 8.140082], - [-12.517525, 8.135723], - [-12.525338, 8.135723], - [-12.529243, 8.142489], - [-12.525338, 8.149255], - [-12.529244, 8.15602], - [-12.537055, 8.156021], - [-12.538675, 8.158824], - [-12.540417, 8.157084], - [-12.54625, 8.162917], - [-12.547082, 8.165417], - [-12.54375, 8.175416], - [-12.552916, 8.176249], - [-12.555477, 8.173689], - [-12.556176, 8.174815], - [-12.557522, 8.176596], - [-12.557917, 8.175416], - [-12.562083, 8.172084], - [-12.571249, 8.172084], - [-12.575417, 8.176249], - [-12.582916, 8.177917], - [-12.586478, 8.182903], - [-12.58699, 8.182727], - [-12.587794, 8.18202], - [-12.589531, 8.17939], - [-12.593137, 8.17625], - [-12.593099, 8.175399], - [-12.592499, 8.172599], - [-12.590199, 8.167299], - [-12.5895, 8.163599], - [-12.5895, 8.1597], - [-12.5904, 8.156099], - [-12.5923, 8.152499], - [-12.5959, 8.144999], - [-12.5965, 8.142299], - [-12.596699, 8.1375], - [-12.596684, 8.135922] - ] - ], - "type": "Polygon" - }, - "id": 548, - "properties": { - "cc:admin:id": ["59"], - "cc:oBld:total": 23, - "cc:pop:fifteen-to-twenty-four": 389.1870535147647, - "cc:pop:grid3-total": 2597.8743684701267, - "cc:pop:kontur-total": 2177.69913863628, - "cc:pop:men": 1101.4264997170174, - "cc:pop:sixty-plus": 168.49407140947656, - "cc:pop:total": 2242.7868697475533, - "cc:pop:under-five": 366.1993088052801, - "cc:pop:women": 1141.3603700305364, - "cc:pop:women-fiften-to-forty-nine": 550.681225215731, - "cc:pop:wp-total": 1792.663778495292, - "cc:pop:wp-total-UN": 2079.4489209044827, - "cc:id": "548", - "cc:Name": "Taninihun Mboka MCHP", - "cc:site": [-12.5411, 8.1075], - "user:parentName": "Kongbora", - "user:code": "OU_247081", - "user:orgUnitId": "Cc9kMNFpGmC", - "user:level": "4", - "user:parentId": "Jiyc4ekaMMh" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.059876, 7.767916], - [-11.056028, 7.76125], - [-11.059769, 7.754769], - [-11.057916, 7.754583], - [-11.056291, 7.75052], - [-11.056199, 7.7518], - [-11.055399, 7.7546], - [-11.053, 7.757499], - [-11.05, 7.7597], - [-11.047399, 7.7634], - [-11.040499, 7.7709], - [-11.038999, 7.773], - [-11.037099, 7.7769], - [-11.035099, 7.7798], - [-11.0309, 7.783399], - [-11.0255, 7.786399], - [-11.021199, 7.7898], - [-11.0172, 7.791699], - [-11.0138, 7.792399], - [-11.011399, 7.7932], - [-11.0035, 7.797099], - [-10.9943, 7.804], - [-10.995799, 7.812199], - [-10.998599, 7.818799], - [-11.003099, 7.824899], - [-11.0062, 7.8299], - [-11.0106, 7.8361], - [-11.0137, 7.8425], - [-11.017, 7.8512], - [-11.020799, 7.858699], - [-11.0242, 7.8645], - [-11.028, 7.871599], - [-11.0329, 7.868799], - [-11.041099, 7.8658], - [-11.046499, 7.8658], - [-11.047082, 7.866], - [-11.047083, 7.860416], - [-11.047933, 7.859566], - [-11.049582, 7.859619], - [-11.049583, 7.857917], - [-11.052082, 7.855416], - [-11.052083, 7.853749], - [-11.055416, 7.851249], - [-11.055416, 7.842917], - [-11.054582, 7.842083], - [-11.049582, 7.83375], - [-11.046189, 7.833325], - [-11.042316, 7.826616], - [-11.04352, 7.82453], - [-11.040416, 7.825416], - [-11.037916, 7.814584], - [-11.03625, 7.813749], - [-11.037083, 7.812084], - [-11.037273, 7.812084], - [-11.037392, 7.812219], - [-11.037485, 7.812504], - [-11.03875, 7.812084], - [-11.041249, 7.812083], - [-11.042916, 7.809584], - [-11.039583, 7.80875], - [-11.039027, 7.807917], - [-11.038819, 7.807948], - [-11.038781, 7.807947], - [-11.03875, 7.807916], - [-11.039583, 7.802916], - [-11.045416, 7.797084], - [-11.045446, 7.797098], - [-11.041856, 7.790877], - [-11.045761, 7.784112], - [-11.046234, 7.784111], - [-11.046059, 7.78375], - [-11.048749, 7.783749], - [-11.052082, 7.780417], - [-11.053749, 7.780416], - [-11.056249, 7.777916], - [-11.057082, 7.77125], - [-11.057083, 7.767917], - [-11.059876, 7.767916] - ] - ], - "type": "Polygon" - }, - "id": 549, - "properties": { - "cc:admin:id": ["15"], - "cc:oBld:total": 762, - "cc:pop:fifteen-to-twenty-four": 881.9366100786002, - "cc:pop:grid3-total": 3437.185674149887, - "cc:pop:kontur-total": 5482.88508578156, - "cc:pop:men": 2147.2892655945125, - "cc:pop:sixty-plus": 284.1133062506047, - "cc:pop:total": 4489.550626152689, - "cc:pop:under-five": 725.0816112899047, - "cc:pop:women": 2342.2613605581773, - "cc:pop:women-fiften-to-forty-nine": 1195.7826694685918, - "cc:pop:wp-total": 4178.846353793875, - "cc:pop:wp-total-UN": 4842.937435017192, - "cc:id": "549", - "cc:Name": "Tawahun MCHP", - "cc:site": [-11.0292, 7.8633], - "user:parentName": "Dama", - "user:code": "OU_222742", - "user:orgUnitId": "GHPuYdLcVN5", - "user:level": "4", - "user:parentId": "myQ4q1W6B4y" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.358657, 8.697175], - [-11.358199, 8.694299], - [-11.3536, 8.6835], - [-11.351499, 8.677999], - [-11.3498, 8.6723], - [-11.349199, 8.668399], - [-11.349, 8.663199], - [-11.3496, 8.657999], - [-11.3514, 8.652199], - [-11.354599, 8.6455], - [-11.3479, 8.6448], - [-11.342899, 8.6446], - [-11.336, 8.644799], - [-11.3323, 8.645499], - [-11.327899, 8.6475], - [-11.321099, 8.6492], - [-11.3168, 8.651399], - [-11.313599, 8.6527], - [-11.3053, 8.656999], - [-11.303199, 8.6586], - [-11.3006, 8.661299], - [-11.2991, 8.663599], - [-11.297799, 8.6667], - [-11.295499, 8.6711], - [-11.2942, 8.674299], - [-11.292799, 8.6766], - [-11.289799, 8.679899], - [-11.2869, 8.681199], - [-11.2846, 8.680499], - [-11.2835, 8.677999], - [-11.283699, 8.6675], - [-11.282999, 8.6651], - [-11.281199, 8.6636], - [-11.2789, 8.6633], - [-11.2766, 8.664499], - [-11.273299, 8.6702], - [-11.2725, 8.673799], - [-11.2722, 8.678699], - [-11.271599, 8.6811], - [-11.270199, 8.6839], - [-11.266299, 8.689], - [-11.2621, 8.697099], - [-11.260299, 8.7011], - [-11.258699, 8.7033], - [-11.256699, 8.7052], - [-11.254099, 8.707099], - [-11.250799, 8.7081], - [-11.24501, 8.708299], - [-11.244999, 8.708299], - [-11.2411, 8.707799], - [-11.237999, 8.706299], - [-11.236, 8.703499], - [-11.2349, 8.7001], - [-11.233499, 8.698], - [-11.229899, 8.6969], - [-11.2216, 8.696999], - [-11.218799, 8.696499], - [-11.2174, 8.694699], - [-11.217499, 8.6922], - [-11.2191, 8.688899], - [-11.219899, 8.6854], - [-11.219799, 8.681699], - [-11.218499, 8.6793], - [-11.2138, 8.676699], - [-11.2099, 8.6722], - [-11.2069, 8.6693], - [-11.203599, 8.667599], - [-11.1977, 8.6661], - [-11.193099, 8.664199], - [-11.189499, 8.663499], - [-11.1826, 8.6633], - [-11.1791, 8.662499], - [-11.1764, 8.660499], - [-11.174399, 8.657399], - [-11.167999, 8.649], - [-11.1631, 8.653099], - [-11.1609, 8.655599], - [-11.157999, 8.6608], - [-11.153499, 8.6666], - [-11.149599, 8.6744], - [-11.148899, 8.6775], - [-11.1487, 8.681299], - [-11.148999, 8.691899], - [-11.149, 8.695699], - [-11.1487, 8.698499], - [-11.148099, 8.700702], - [-11.148287, 8.701469], - [-11.147707, 8.703951], - [-11.145734, 8.707259], - [-11.144846, 8.708397], - [-11.145416, 8.711249], - [-11.14375, 8.717916], - [-11.143252, 8.723892], - [-11.139583, 8.723893], - [-11.139583, 8.737424], - [-11.142203, 8.737425], - [-11.142083, 8.738749], - [-11.144582, 8.741249], - [-11.145417, 8.744582], - [-11.154582, 8.744583], - [-11.156524, 8.743614], - [-11.15575, 8.746677], - [-11.155546, 8.748436], - [-11.154324, 8.75024], - [-11.153231, 8.751479], - [-11.156249, 8.752082], - [-11.15875, 8.749583], - [-11.162082, 8.749582], - [-11.163749, 8.747917], - [-11.164582, 8.747917], - [-11.167917, 8.753749], - [-11.169583, 8.75375], - [-11.174581, 8.759581], - [-11.17458, 8.759583], - [-11.172083, 8.759583], - [-11.17125, 8.760417], - [-11.172916, 8.762916], - [-11.172083, 8.764583], - [-11.172917, 8.768749], - [-11.177083, 8.76875], - [-11.181249, 8.77625], - [-11.180417, 8.777917], - [-11.180416, 8.778749], - [-11.17875, 8.77875], - [-11.172917, 8.78375], - [-11.172916, 8.784583], - [-11.17125, 8.787917], - [-11.17125, 8.794583], - [-11.175424, 8.798756], - [-11.176002, 8.798535], - [-11.177181, 8.797745], - [-11.182083, 8.799582], - [-11.188749, 8.79875], - [-11.18875, 8.799582], - [-11.189583, 8.800416], - [-11.193749, 8.800417], - [-11.198749, 8.802082], - [-11.197917, 8.804582], - [-11.200417, 8.804583], - [-11.207082, 8.807916], - [-11.205417, 8.811249], - [-11.212083, 8.817082], - [-11.218749, 8.81375], - [-11.21875, 8.820416], - [-11.227082, 8.818749], - [-11.230416, 8.81625], - [-11.231249, 8.816249], - [-11.232917, 8.812917], - [-11.244583, 8.813749], - [-11.245416, 8.812916], - [-11.237917, 8.802917], - [-11.240417, 8.800417], - [-11.250416, 8.800416], - [-11.250417, 8.797917], - [-11.263749, 8.797917], - [-11.264583, 8.79625], - [-11.271249, 8.796249], - [-11.272916, 8.792082], - [-11.27125, 8.782083], - [-11.280515, 8.782795], - [-11.28056, 8.78267], - [-11.28375, 8.784582], - [-11.290416, 8.782916], - [-11.290417, 8.777083], - [-11.292916, 8.777082], - [-11.292917, 8.775417], - [-11.289596, 8.772925], - [-11.289952, 8.772712], - [-11.292914, 8.771248], - [-11.29625, 8.774582], - [-11.297082, 8.774583], - [-11.300416, 8.773749], - [-11.300417, 8.772916], - [-11.303749, 8.772083], - [-11.307916, 8.772916], - [-11.309583, 8.772083], - [-11.313749, 8.772082], - [-11.320417, 8.76625], - [-11.325417, 8.767916], - [-11.328749, 8.767083], - [-11.329582, 8.767083], - [-11.329583, 8.767916], - [-11.33625, 8.770416], - [-11.342916, 8.767917], - [-11.342917, 8.769583], - [-11.345021, 8.776596], - [-11.345799, 8.775099], - [-11.346399, 8.7711], - [-11.346499, 8.7602], - [-11.3471, 8.754799], - [-11.3489, 8.749199], - [-11.354699, 8.7374], - [-11.3565, 8.731799], - [-11.3572, 8.725199], - [-11.357399, 8.7103], - [-11.358899, 8.6987], - [-11.358657, 8.697175] - ] - ], - "type": "Polygon" - }, - "id": 550, - "properties": { - "cc:admin:id": ["119"], - "cc:oBld:total": 2414, - "cc:pop:fifteen-to-twenty-four": 2387.6550069452587, - "cc:pop:grid3-total": 19682.825031197528, - "cc:pop:kontur-total": 12416.492944213269, - "cc:pop:men": 5962.984612847737, - "cc:pop:sixty-plus": 676.723038286911, - "cc:pop:total": 12088.040247080535, - "cc:pop:under-five": 2056.7443530515843, - "cc:pop:women": 6125.055634232806, - "cc:pop:women-fiften-to-forty-nine": 2919.995056888302, - "cc:pop:wp-total": 10952.948822283804, - "cc:pop:wp-total-UN": 12677.853373319578, - "cc:id": "550", - "cc:Name": "Tefeya CHP", - "cc:site": [-11.2113, 8.7066], - "user:parentName": "Sandor", - "user:code": "OU_233368", - "user:orgUnitId": "nAH0uNc3b5f", - "user:level": "4", - "user:parentId": "g5ptsn0SFX8" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.038889, 8.869832], - [-12.038099, 8.868199], - [-12.0356, 8.8639], - [-12.034299, 8.860699], - [-12.0324, 8.8571], - [-12.0311, 8.8513], - [-12.030099, 8.8489], - [-12.027299, 8.8465], - [-12.0245, 8.846], - [-12.0213, 8.8476], - [-12.0187, 8.850099], - [-12.0171, 8.852399], - [-12.013199, 8.8608], - [-12.012599, 8.8635], - [-12.0125, 8.866399], - [-12.012699, 8.8852], - [-12.0122, 8.888999], - [-12.011349, 8.891087], - [-12.011835, 8.890458], - [-12.012531, 8.88842], - [-12.013764, 8.887351], - [-12.014778, 8.887097], - [-12.016002, 8.886451], - [-12.017019, 8.886169], - [-12.01704, 8.88525], - [-12.017217, 8.884703], - [-12.017408, 8.885012], - [-12.018101, 8.885407], - [-12.019386, 8.885404], - [-12.019429, 8.885595], - [-12.020674, 8.886018], - [-12.022125, 8.886063], - [-12.022741, 8.885869], - [-12.023681, 8.886108], - [-12.024493, 8.886015], - [-12.025561, 8.886997], - [-12.025802, 8.887624], - [-12.0258, 8.887633], - [-12.025815, 8.887658], - [-12.025832, 8.8877], - [-12.025847, 8.887707], - [-12.026288, 8.887808], - [-12.026338, 8.887871], - [-12.026411, 8.887806], - [-12.026424, 8.887797], - [-12.026111, 8.887038], - [-12.026112, 8.887037], - [-12.026281, 8.887144], - [-12.026253, 8.886725], - [-12.026439, 8.886192], - [-12.026645, 8.886033], - [-12.027195, 8.88603], - [-12.027433, 8.886566], - [-12.027603, 8.886603], - [-12.027968, 8.885903], - [-12.028954, 8.885596], - [-12.029889, 8.885771], - [-12.029932, 8.886059], - [-12.030069, 8.886042], - [-12.030086, 8.885702], - [-12.030903, 8.885524], - [-12.031135, 8.885379], - [-12.03102, 8.885109], - [-12.031397, 8.885144], - [-12.03166, 8.884925], - [-12.031525, 8.884726], - [-12.030809, 8.883541], - [-12.03033, 8.883206], - [-12.031078, 8.882817], - [-12.031861, 8.883202], - [-12.033063, 8.883026], - [-12.032839, 8.882415], - [-12.032827, 8.881729], - [-12.034247, 8.881354], - [-12.033968, 8.880876], - [-12.033678, 8.880169], - [-12.033395, 8.879516], - [-12.033302, 8.879237], - [-12.033924, 8.879194], - [-12.034088, 8.879399], - [-12.034797, 8.879248], - [-12.035429, 8.879039], - [-12.035129, 8.878444], - [-12.034885, 8.876288], - [-12.035865, 8.876295], - [-12.036613, 8.876318], - [-12.036505, 8.875647], - [-12.03651, 8.875376], - [-12.036427, 8.87475], - [-12.036561, 8.874339], - [-12.037058, 8.874769], - [-12.037471, 8.874881], - [-12.03757, 8.874852], - [-12.036623, 8.872967], - [-12.036677, 8.872175], - [-12.036679, 8.872175], - [-12.036848, 8.872332], - [-12.037152, 8.871834], - [-12.037324, 8.871127], - [-12.037528, 8.87039], - [-12.038437, 8.870706], - [-12.038889, 8.869832] - ] - ], - "type": "Polygon" - }, - "id": 551, - "properties": { - "cc:admin:id": ["83"], - "cc:oBld:total": 1476, - "cc:pop:fifteen-to-twenty-four": 3808.1468230338014, - "cc:pop:grid3-total": 16779.55675485385, - "cc:pop:kontur-total": 23041.026181131656, - "cc:pop:men": 9918.981233183173, - "cc:pop:sixty-plus": 1310.1117582945055, - "cc:pop:total": 20677.93574503923, - "cc:pop:under-five": 3326.4757591413218, - "cc:pop:women": 10758.954511856047, - "cc:pop:women-fiften-to-forty-nine": 5211.393956964018, - "cc:pop:wp-total": 18584.443367233092, - "cc:pop:wp-total-UN": 21559.07543692957, - "cc:id": "551", - "cc:Name": "Teko Barracks Clinic", - "cc:site": [-12.0286, 8.8707], - "user:parentName": "Bombali Sebora", - "user:code": "OU_193212", - "user:orgUnitId": "OuwX8H2CcRO", - "user:level": "4", - "user:parentId": "KKkLOTpMXGV" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.737523, 7.731961], - [-11.736249, 7.732917], - [-11.732083, 7.737083], - [-11.72914, 7.737083], - [-11.729139, 7.737082], - [-11.730283, 7.735099], - [-11.726377, 7.728334], - [-11.720417, 7.728334], - [-11.720416, 7.735416], - [-11.71875, 7.737083], - [-11.714583, 7.737916], - [-11.710417, 7.737917], - [-11.709582, 7.739584], - [-11.70375, 7.742084], - [-11.703193, 7.744863], - [-11.701544, 7.743171], - [-11.701654, 7.742852], - [-11.700878, 7.740422], - [-11.700817, 7.740304], - [-11.700739, 7.740383], - [-11.699877, 7.740375], - [-11.699805, 7.740241], - [-11.699672, 7.74], - [-11.699462, 7.740127], - [-11.6981, 7.739413], - [-11.696897, 7.739208], - [-11.694878, 7.739711], - [-11.694828, 7.739729], - [-11.695416, 7.742084], - [-11.69125, 7.74375], - [-11.69125, 7.749583], - [-11.690416, 7.754583], - [-11.687916, 7.753749], - [-11.68125, 7.749584], - [-11.67625, 7.755416], - [-11.673941, 7.754262], - [-11.673753, 7.754584], - [-11.662917, 7.754584], - [-11.662916, 7.760416], - [-11.654583, 7.759584], - [-11.654583, 7.767916], - [-11.654305, 7.769583], - [-11.64987, 7.769584], - [-11.645963, 7.776348], - [-11.642207, 7.776349], - [-11.642083, 7.77625], - [-11.642083, 7.77918], - [-11.641848, 7.779586], - [-11.634036, 7.779587], - [-11.630129, 7.786352], - [-11.623853, 7.786353], - [-11.624091, 7.786592], - [-11.622074, 7.786593], - [-11.618516, 7.792755], - [-11.616249, 7.789584], - [-11.611249, 7.787917], - [-11.603481, 7.787917], - [-11.604372, 7.790353], - [-11.604193, 7.792081], - [-11.598685, 7.792081], - [-11.598292, 7.791404], - [-11.597083, 7.792917], - [-11.597083, 7.802916], - [-11.599395, 7.805613], - [-11.606497, 7.805614], - [-11.606707, 7.805979], - [-11.606569, 7.806796], - [-11.606646, 7.808478], - [-11.606771, 7.809531], - [-11.607082, 7.809583], - [-11.609583, 7.807083], - [-11.619582, 7.802084], - [-11.61875, 7.814583], - [-11.625417, 7.821249], - [-11.625785, 7.821249], - [-11.627017, 7.819774], - [-11.627018, 7.819774], - [-11.631249, 7.825416], - [-11.63125, 7.827083], - [-11.632916, 7.827917], - [-11.632917, 7.829583], - [-11.636249, 7.82875], - [-11.638749, 7.828749], - [-11.641249, 7.825417], - [-11.642917, 7.825416], - [-11.644528, 7.823804], - [-11.644246, 7.823591], - [-11.644583, 7.822917], - [-11.648749, 7.823749], - [-11.65125, 7.812084], - [-11.655416, 7.812917], - [-11.658749, 7.815416], - [-11.657917, 7.807084], - [-11.668618, 7.804789], - [-11.668534, 7.804585], - [-11.668535, 7.804584], - [-11.669582, 7.804583], - [-11.667917, 7.799584], - [-11.672916, 7.79375], - [-11.672083, 7.792916], - [-11.672917, 7.787084], - [-11.683749, 7.782084], - [-11.684582, 7.782083], - [-11.684582, 7.78125], - [-11.683023, 7.778647], - [-11.684386, 7.778969], - [-11.688174, 7.780095], - [-11.691249, 7.779584], - [-11.693749, 7.777083], - [-11.69375, 7.775417], - [-11.694359, 7.774807], - [-11.697163, 7.774806], - [-11.701069, 7.768041], - [-11.697164, 7.761276], - [-11.698605, 7.758779], - [-11.698606, 7.758779], - [-11.70125, 7.762083], - [-11.708749, 7.763749], - [-11.710284, 7.763749], - [-11.7131, 7.7594], - [-11.716999, 7.7566], - [-11.7203, 7.753499], - [-11.7225, 7.750599], - [-11.7246, 7.746399], - [-11.7279, 7.742399], - [-11.734, 7.736299], - [-11.736999, 7.7328], - [-11.737523, 7.731961] - ] - ], - "type": "Polygon" - }, - "id": 552, - "properties": { - "cc:admin:id": ["40"], - "cc:oBld:total": 262, - "cc:pop:fifteen-to-twenty-four": 1227.0476588102006, - "cc:pop:grid3-total": 4115.3207943772, - "cc:pop:kontur-total": 7093.469100058502, - "cc:pop:men": 3372.1248911783646, - "cc:pop:sixty-plus": 516.2832812812655, - "cc:pop:total": 6964.508593180102, - "cc:pop:under-five": 1126.036902411171, - "cc:pop:women": 3592.3837020017363, - "cc:pop:women-fiften-to-forty-nine": 1687.994853240666, - "cc:pop:wp-total": 6099.667811155042, - "cc:pop:wp-total-UN": 7073.99392645158, - "cc:id": "552", - "cc:Name": "Telu CHP", - "cc:site": [-11.639, 7.8029], - "user:parentName": "Jaiama Bongor", - "user:code": "OU_824", - "user:orgUnitId": "erqWTArTsyJ", - "user:level": "4", - "user:parentId": "daJPPxtIrQn" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.988842, 8.637158], - [-10.988745, 8.636388], - [-10.988225, 8.636152], - [-10.988189, 8.635984], - [-10.988439, 8.635806], - [-10.988328, 8.635583], - [-10.987966, 8.63546], - [-10.987925, 8.635088], - [-10.987655, 8.635094], - [-10.987538, 8.634608], - [-10.986704, 8.6342], - [-10.986536, 8.632675], - [-10.985839, 8.632999], - [-10.984506, 8.633591], - [-10.983902, 8.634116], - [-10.983096, 8.636133], - [-10.982674, 8.637344], - [-10.982614, 8.637486], - [-10.982089, 8.638816], - [-10.981452, 8.639381], - [-10.980839, 8.639627], - [-10.978976, 8.639895], - [-10.978241, 8.640041], - [-10.978104, 8.64071], - [-10.978054, 8.641021], - [-10.977775, 8.641597], - [-10.977013, 8.641664], - [-10.976993, 8.641975], - [-10.97698, 8.64198], - [-10.976947, 8.642325], - [-10.976857, 8.642558], - [-10.9768, 8.642602], - [-10.976797, 8.642669], - [-10.976883, 8.642721], - [-10.977098, 8.642888], - [-10.977303, 8.643106], - [-10.976567, 8.643569], - [-10.976796, 8.644114], - [-10.976754, 8.64417], - [-10.976953, 8.645134], - [-10.976895, 8.645756], - [-10.976752, 8.646126], - [-10.976093, 8.64645], - [-10.97621, 8.646837], - [-10.975349, 8.647146], - [-10.975813, 8.648353], - [-10.975354, 8.648683], - [-10.975618, 8.649444], - [-10.975534, 8.650382], - [-10.975309, 8.652246], - [-10.975578, 8.654762], - [-10.975906, 8.657155], - [-10.976641, 8.657559], - [-10.979077, 8.658479], - [-10.97972, 8.658476], - [-10.980104, 8.658586], - [-10.981584, 8.657856], - [-10.982224, 8.657633], - [-10.983543, 8.657286], - [-10.983925, 8.65714], - [-10.984165, 8.657048], - [-10.985256, 8.656221], - [-10.985144, 8.655909], - [-10.985987, 8.654908], - [-10.985962, 8.654558], - [-10.98567, 8.654128], - [-10.986568, 8.65304], - [-10.987644, 8.652676], - [-10.987835, 8.65219], - [-10.987875, 8.652055], - [-10.987848, 8.652008], - [-10.985751, 8.650272], - [-10.986586, 8.649446], - [-10.986965, 8.649314], - [-10.986645, 8.649011], - [-10.98608, 8.648913], - [-10.985041, 8.648899], - [-10.984762, 8.647554], - [-10.984707, 8.647437], - [-10.985552, 8.647049], - [-10.985655, 8.646978], - [-10.986465, 8.645467], - [-10.987724, 8.643425], - [-10.987821, 8.642878], - [-10.987902, 8.642014], - [-10.987838, 8.640246], - [-10.987829, 8.638958], - [-10.987979, 8.638612], - [-10.987995, 8.638534], - [-10.988004, 8.638532], - [-10.988196, 8.637801], - [-10.988214, 8.637756], - [-10.988232, 8.637724], - [-10.988248, 8.637697], - [-10.988378, 8.637508], - [-10.988393, 8.637511], - [-10.988443, 8.637486], - [-10.98846, 8.637504], - [-10.988593, 8.637383], - [-10.988664, 8.63733], - [-10.988842, 8.637158] - ] - ], - "type": "Polygon" - }, - "id": 553, - "properties": { - "cc:admin:id": ["33"], - "cc:oBld:total": 2330, - "cc:pop:fifteen-to-twenty-four": 2561.081240252187, - "cc:pop:grid3-total": 11022.3118168951, - "cc:pop:kontur-total": 14536.581870295819, - "cc:pop:men": 7004.672593562549, - "cc:pop:sixty-plus": 779.622864691532, - "cc:pop:total": 13231.460531051216, - "cc:pop:under-five": 2088.5702128405173, - "cc:pop:women": 6226.787937488665, - "cc:pop:women-fiften-to-forty-nine": 3130.743985592945, - "cc:pop:wp-total": 11063.749430183028, - "cc:pop:wp-total-UN": 12824.691773971252, - "cc:id": "553", - "cc:Name": "The White House Clinic", - "cc:site": [-10.9815, 8.6447], - "user:parentName": "Tankoro", - "user:code": "OU_233326", - "user:orgUnitId": "AhnK8hb3JWm", - "user:level": "4", - "user:parentId": "M2qEv692lS6" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.298499, 8.494], - [-13.288699, 8.487099], - [-13.2782, 8.4565], - [-13.278319, 8.454866], - [-13.278157, 8.454835], - [-13.277956, 8.454375], - [-13.277454, 8.454282], - [-13.276564, 8.454847], - [-13.276977, 8.455234], - [-13.276957, 8.455264], - [-13.277239, 8.455481], - [-13.277682, 8.455702], - [-13.277978, 8.456794], - [-13.278097, 8.457273], - [-13.278291, 8.458349], - [-13.278311, 8.459525], - [-13.278326, 8.459938], - [-13.278138, 8.460588], - [-13.276508, 8.460237], - [-13.275229, 8.459262], - [-13.274544, 8.460056], - [-13.274342, 8.460723], - [-13.273873, 8.461766], - [-13.273575, 8.461931], - [-13.273574, 8.461931], - [-13.273395, 8.461578], - [-13.272799, 8.46178], - [-13.272544, 8.460907], - [-13.27168, 8.461223], - [-13.2721, 8.462003], - [-13.272433, 8.462951], - [-13.272343, 8.462985], - [-13.272535, 8.463561], - [-13.272768, 8.464323], - [-13.273263, 8.465742], - [-13.273676, 8.466341], - [-13.272249, 8.467448], - [-13.272003, 8.46795], - [-13.272592, 8.468251], - [-13.272593, 8.468252], - [-13.272005, 8.468832], - [-13.271916, 8.468781], - [-13.271062, 8.469392], - [-13.270788, 8.469984], - [-13.270073, 8.469684], - [-13.269673, 8.469871], - [-13.269611, 8.469911], - [-13.269683, 8.470032], - [-13.269751, 8.470017], - [-13.270809, 8.470388], - [-13.272108, 8.470505], - [-13.272736, 8.470886], - [-13.272689, 8.471562], - [-13.272165, 8.47227], - [-13.271953, 8.472874], - [-13.271054, 8.473501], - [-13.270459, 8.474115], - [-13.270182, 8.475121], - [-13.269577, 8.475067], - [-13.269409, 8.47508], - [-13.269133, 8.475216], - [-13.268717, 8.47512], - [-13.268266, 8.474952], - [-13.26798, 8.475364], - [-13.266579, 8.475619], - [-13.266086, 8.475737], - [-13.26586, 8.476841], - [-13.26551, 8.47781], - [-13.265605, 8.478765], - [-13.265751, 8.479864], - [-13.265413, 8.480772], - [-13.26594, 8.48175], - [-13.266496, 8.482251], - [-13.267121, 8.482685], - [-13.267188, 8.482935], - [-13.267056, 8.483122], - [-13.265673, 8.48371], - [-13.265066, 8.48341], - [-13.264785, 8.484027], - [-13.264682, 8.484351], - [-13.26528, 8.484402], - [-13.265279, 8.485089], - [-13.265288, 8.485168], - [-13.263765, 8.485309], - [-13.263086, 8.485368], - [-13.263095, 8.485404], - [-13.262621, 8.485741], - [-13.263385, 8.486833], - [-13.263384, 8.486835], - [-13.262475, 8.487142], - [-13.261758, 8.48707], - [-13.26162, 8.486709], - [-13.261477, 8.486586], - [-13.26115, 8.486642], - [-13.261433, 8.487675], - [-13.261528, 8.488054], - [-13.261667, 8.488623], - [-13.261761, 8.489056], - [-13.26041, 8.489547], - [-13.268199, 8.497399], - [-13.279799, 8.475402], - [-13.281299, 8.489299], - [-13.2737, 8.493199], - [-13.286799, 8.499599], - [-13.293199, 8.494], - [-13.297099, 8.498699], - [-13.298499, 8.494] - ] - ], - "type": "Polygon" - }, - "id": 554, - "properties": { - "cc:admin:id": ["26"], - "cc:oBld:total": 7799, - "cc:pop:fifteen-to-twenty-four": 26873.449941502415, - "cc:pop:grid3-total": 64342.24082326427, - "cc:pop:kontur-total": 112336.38062598369, - "cc:pop:men": 58597.941730118044, - "cc:pop:sixty-plus": 9135.789751711003, - "cc:pop:total": 117115.46308961295, - "cc:pop:under-five": 13525.40856003238, - "cc:pop:women": 58517.52135949492, - "cc:pop:women-fiften-to-forty-nine": 31365.453057352486, - "cc:pop:wp-total": 107443.6540590886, - "cc:pop:wp-total-UN": 124569.62151356346, - "cc:id": "554", - "cc:Name": "Thompson Bay MCHP", - "cc:site": [-13.2725, 8.4799], - "user:parentName": "Freetown", - "user:code": "OU_278341", - "user:orgUnitId": "BzEwqabuW19", - "user:level": "4", - "user:parentId": "C9uduqDZr9d" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.152099, 7.5182], - [-12.1472, 7.5152], - [-12.143999, 7.512399], - [-12.1414, 7.5092], - [-12.139099, 7.504499], - [-12.1352, 7.4987], - [-12.1322, 7.4964], - [-12.1299, 7.4936], - [-12.127899, 7.486699], - [-12.1242, 7.479], - [-12.121399, 7.4764], - [-12.118099, 7.475399], - [-12.1128, 7.4749], - [-12.1094, 7.4741], - [-12.1027, 7.4708], - [-12.100799, 7.469199], - [-12.099299, 7.467299], - [-12.097699, 7.4645], - [-12.0944, 7.4614], - [-12.0878, 7.459299], - [-12.085199, 7.457399], - [-12.082599, 7.4544], - [-12.079999, 7.4532], - [-12.076299, 7.4527], - [-12.053999, 7.452899], - [-12.050999, 7.452799], - [-12.0468, 7.4522], - [-12.0409, 7.4498], - [-12.035, 7.4483], - [-12.0305, 7.4463], - [-12.0271, 7.4454], - [-12.027499, 7.449899], - [-12.028599, 7.453299], - [-12.032399, 7.458399], - [-12.034099, 7.461599], - [-12.035799, 7.467399], - [-12.038099, 7.472799], - [-12.0387, 7.4767], - [-12.039199, 7.501499], - [-12.038899, 7.5055], - [-12.037699, 7.5093], - [-12.035099, 7.5121], - [-12.0314, 7.5145], - [-12.0316, 7.5192], - [-12.031699, 7.528899], - [-12.032199, 7.533199], - [-12.033, 7.5353], - [-12.034999, 7.538799], - [-12.0364, 7.5419], - [-12.038399, 7.545499], - [-12.0393, 7.5489], - [-12.039499, 7.5525], - [-12.0388, 7.556799], - [-12.0367, 7.561199], - [-12.0361, 7.563799], - [-12.0359, 7.567299], - [-12.036199, 7.569999], - [-12.0368, 7.5721], - [-12.0388, 7.5762], - [-12.0404, 7.5821], - [-12.042899, 7.588199], - [-12.0441, 7.5933], - [-12.0458, 7.5965], - [-12.048299, 7.599199], - [-12.050999, 7.600899], - [-12.054499, 7.601199], - [-12.057099, 7.5997], - [-12.063799, 7.5932], - [-12.0667, 7.5914], - [-12.070199, 7.5917], - [-12.072799, 7.593299], - [-12.0749, 7.5952], - [-12.080899, 7.601399], - [-12.083799, 7.603899], - [-12.0873, 7.6059], - [-12.092, 7.608199], - [-12.094499, 7.608599], - [-12.096899, 7.6081], - [-12.1004, 7.606399], - [-12.105399, 7.6048], - [-12.108299, 7.603599], - [-12.1089, 7.601299], - [-12.1102, 7.599299], - [-12.1135, 7.595099], - [-12.1156, 7.590899], - [-12.117999, 7.5867], - [-12.1192, 7.583499], - [-12.121399, 7.5791], - [-12.122499, 7.574], - [-12.123299, 7.5716], - [-12.125199, 7.568], - [-12.1265, 7.564799], - [-12.1289, 7.559699], - [-12.130299, 7.5538], - [-12.1325, 7.548499], - [-12.1339, 7.542899], - [-12.1358, 7.539599], - [-12.140799, 7.5343], - [-12.142999, 7.5315], - [-12.1453, 7.526899], - [-12.150099, 7.521], - [-12.152099, 7.5182] - ] - ], - "type": "Polygon" - }, - "id": 555, - "properties": { - "cc:admin:id": ["126"], - "cc:oBld:total": 314, - "cc:pop:fifteen-to-twenty-four": 1972.7298450366982, - "cc:pop:grid3-total": 9745.019241943042, - "cc:pop:kontur-total": 11312.243219985445, - "cc:pop:men": 5435.372875992215, - "cc:pop:sixty-plus": 878.4219604395789, - "cc:pop:total": 11387.662976722575, - "cc:pop:under-five": 1851.1792369288892, - "cc:pop:women": 5952.2901007303635, - "cc:pop:women-fiften-to-forty-nine": 2824.19202033822, - "cc:pop:wp-total": 9888.207400060846, - "cc:pop:wp-total-UN": 11455.900929245705, - "cc:id": "555", - "cc:Name": "Tihun CHC", - "cc:site": [-12.0898, 7.5666], - "user:parentName": "Sogbini", - "user:code": "OU_197412", - "user:orgUnitId": "ua5GXy2uhBR", - "user:level": "4", - "user:parentId": "cgOy0hRMGu9" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.8879, 7.802799], - [-11.887899, 7.7999], - [-11.885799, 7.7969], - [-11.882599, 7.795099], - [-11.8788, 7.792299], - [-11.8764, 7.7885], - [-11.873599, 7.7856], - [-11.8683, 7.7828], - [-11.8655, 7.7806], - [-11.864, 7.778699], - [-11.8637, 7.7766], - [-11.864031, 7.775972], - [-11.864, 7.775926], - [-11.862647, 7.776771], - [-11.861023, 7.777075], - [-11.85845, 7.777205], - [-11.855452, 7.777996], - [-11.854287, 7.778818], - [-11.852554, 7.780632], - [-11.851472, 7.776308], - [-11.851393, 7.776355], - [-11.85017, 7.777503], - [-11.849668, 7.777606], - [-11.849035, 7.777505], - [-11.848598, 7.777167], - [-11.848272, 7.777132], - [-11.84592, 7.778848], - [-11.844965, 7.779979], - [-11.844044, 7.780496], - [-11.842976, 7.780595], - [-11.841252, 7.781194], - [-11.84002, 7.781375], - [-11.839222, 7.781743], - [-11.838557, 7.782834], - [-11.838227, 7.783015], - [-11.839236, 7.786042], - [-11.838841, 7.786365], - [-11.83618, 7.789005], - [-11.835447, 7.789583], - [-11.829583, 7.789583], - [-11.828878, 7.788174], - [-11.828705, 7.788166], - [-11.827906, 7.787919], - [-11.827335, 7.787468], - [-11.827207, 7.787002], - [-11.82587, 7.786609], - [-11.825379, 7.78609], - [-11.825064, 7.786003], - [-11.823518, 7.786536], - [-11.822783, 7.787244], - [-11.822257, 7.78827], - [-11.820188, 7.789002], - [-11.819154, 7.789814], - [-11.818736, 7.790839], - [-11.817236, 7.791986], - [-11.816583, 7.792007], - [-11.815057, 7.792405], - [-11.813271, 7.792133], - [-11.812564, 7.792426], - [-11.811739, 7.792518], - [-11.809609, 7.792533], - [-11.809211, 7.792759], - [-11.805853, 7.793545], - [-11.803964, 7.795355], - [-11.803447, 7.796041], - [-11.802822, 7.797971], - [-11.802493, 7.798038], - [-11.802184, 7.79857], - [-11.801908, 7.798624], - [-11.802015, 7.798844], - [-11.80082, 7.800186], - [-11.801865, 7.800647], - [-11.801865, 7.800648], - [-11.801384, 7.801002], - [-11.801277, 7.801417], - [-11.801064, 7.801546], - [-11.800354, 7.801464], - [-11.799728, 7.801646], - [-11.798745, 7.803182], - [-11.79913, 7.803467], - [-11.799333, 7.80343], - [-11.801249, 7.803749], - [-11.801378, 7.804007], - [-11.800476, 7.804342], - [-11.798233, 7.806665], - [-11.796433, 7.808932], - [-11.794454, 7.806955], - [-11.793644, 7.807438], - [-11.793085, 7.808089], - [-11.791988, 7.808724], - [-11.789293, 7.809889], - [-11.787619, 7.809994], - [-11.785572, 7.810398], - [-11.783691, 7.811311], - [-11.782013, 7.811645], - [-11.781562, 7.812263], - [-11.781444, 7.812359], - [-11.781732, 7.81524], - [-11.78216, 7.815261], - [-11.783136, 7.814706], - [-11.783431, 7.814731], - [-11.783533, 7.815075], - [-11.783119, 7.815875], - [-11.782296, 7.816215], - [-11.781812, 7.816033], - [-11.781948, 7.817405], - [-11.781749, 7.817396], - [-11.779802, 7.816771], - [-11.779157, 7.816691], - [-11.778525, 7.816817], - [-11.777732, 7.817577], - [-11.772788, 7.81593], - [-11.772222, 7.816325], - [-11.771406, 7.817399], - [-11.770697, 7.817924], - [-11.77125, 7.819583], - [-11.773605, 7.819584], - [-11.773605, 7.819585], - [-11.770849, 7.820827], - [-11.770667, 7.820916], - [-11.770416, 7.820417], - [-11.764583, 7.822084], - [-11.764283, 7.823285], - [-11.764718, 7.823023], - [-11.764972, 7.822788], - [-11.764916, 7.822532], - [-11.765538, 7.822595], - [-11.765647, 7.8228], - [-11.765262, 7.823737], - [-11.764024, 7.824321], - [-11.763919, 7.824734], - [-11.763544, 7.824881], - [-11.763166, 7.825221], - [-11.762877, 7.825126], - [-11.762352, 7.825985], - [-11.761609, 7.826224], - [-11.761135, 7.826036], - [-11.760564, 7.826201], - [-11.760443, 7.826087], - [-11.761394, 7.824632], - [-11.75875, 7.82375], - [-11.755544, 7.825031], - [-11.755379, 7.824946], - [-11.754696, 7.825152], - [-11.754774, 7.825977], - [-11.754404, 7.826072], - [-11.754133, 7.826499], - [-11.754494, 7.826909], - [-11.754582, 7.826923], - [-11.754583, 7.827084], - [-11.755088, 7.829609], - [-11.755037, 7.82982], - [-11.752941, 7.832058], - [-11.752904, 7.832071], - [-11.752917, 7.832084], - [-11.753102, 7.832394], - [-11.751838, 7.832395], - [-11.751359, 7.832541], - [-11.750758, 7.83303], - [-11.748325, 7.83222], - [-11.748035, 7.832427], - [-11.747632, 7.832509], - [-11.745632, 7.835509], - [-11.743994, 7.835679], - [-11.743438, 7.836239], - [-11.743191, 7.836338], - [-11.741919, 7.834643], - [-11.741821, 7.834771], - [-11.740824, 7.835316], - [-11.7384, 7.835551], - [-11.739935, 7.838623], - [-11.73831, 7.839082], - [-11.73625, 7.839312], - [-11.736249, 7.836202], - [-11.735317, 7.836691], - [-11.733347, 7.837985], - [-11.73323, 7.838025], - [-11.733748, 7.839583], - [-11.730622, 7.839584], - [-11.730006, 7.840174], - [-11.727917, 7.840924], - [-11.727916, 7.842083], - [-11.725672, 7.840961], - [-11.725111, 7.842069], - [-11.72478, 7.842419], - [-11.724301, 7.844838], - [-11.72452, 7.845688], - [-11.725485, 7.846809], - [-11.725478, 7.847375], - [-11.725298, 7.847737], - [-11.72544, 7.847918], - [-11.725187, 7.850051], - [-11.725493, 7.850764], - [-11.725145, 7.851262], - [-11.724298, 7.851452], - [-11.724433, 7.852554], - [-11.72382, 7.853742], - [-11.723885, 7.854459], - [-11.724802, 7.856978], - [-11.723735, 7.857483], - [-11.72242, 7.859063], - [-11.722255, 7.85979], - [-11.722326, 7.862452], - [-11.721982, 7.864435], - [-11.72109, 7.865138], - [-11.719458, 7.865926], - [-11.718915, 7.866528], - [-11.718763, 7.866962], - [-11.71813, 7.8671], - [-11.718354, 7.867411], - [-11.71787, 7.868172], - [-11.715757, 7.869877], - [-11.715318, 7.869852], - [-11.714582, 7.86875], - [-11.71242, 7.869831], - [-11.711725, 7.869573], - [-11.711263, 7.869203], - [-11.712309, 7.866413], - [-11.712268, 7.866004], - [-11.712141, 7.865567], - [-11.712513, 7.86544], - [-11.712793, 7.865123], - [-11.713574, 7.863043], - [-11.709347, 7.863571], - [-11.708778, 7.866444], - [-11.708751, 7.866657], - [-11.708202, 7.868982], - [-11.708082, 7.868931], - [-11.706683, 7.867585], - [-11.705072, 7.867016], - [-11.704442, 7.866428], - [-11.703491, 7.866794], - [-11.701053, 7.866604], - [-11.6992, 7.870399], - [-11.698499, 7.874], - [-11.6983, 7.8789], - [-11.698384, 7.886067], - [-11.698749, 7.88625], - [-11.69875, 7.889583], - [-11.708749, 7.889583], - [-11.709583, 7.88875], - [-11.710589, 7.888414], - [-11.709617, 7.886103], - [-11.709193, 7.883054], - [-11.709194, 7.883053], - [-11.710089, 7.885527], - [-11.711006, 7.886951], - [-11.714445, 7.891524], - [-11.714814, 7.89311], - [-11.714577, 7.894549], - [-11.716014, 7.893952], - [-11.716877, 7.892925], - [-11.717223, 7.891964], - [-11.717318, 7.891428], - [-11.721249, 7.892084], - [-11.723749, 7.894583], - [-11.720417, 7.901249], - [-11.721326, 7.902614], - [-11.721336, 7.902607], - [-11.721991, 7.901632], - [-11.723688, 7.899848], - [-11.724237, 7.899505], - [-11.724369, 7.899067], - [-11.724527, 7.898559], - [-11.724406, 7.898019], - [-11.724522, 7.896359], - [-11.72514, 7.895585], - [-11.725281, 7.893806], - [-11.72507, 7.892998], - [-11.72511, 7.892355], - [-11.72512, 7.892312], - [-11.728749, 7.892916], - [-11.731536, 7.897097], - [-11.731147, 7.897294], - [-11.730684, 7.897075], - [-11.729833, 7.897691], - [-11.729645, 7.898199], - [-11.729453, 7.898312], - [-11.728845, 7.898827], - [-11.737916, 7.899584], - [-11.741249, 7.903749], - [-11.74125, 7.905633], - [-11.741491, 7.90556], - [-11.742186, 7.905626], - [-11.744338, 7.906313], - [-11.745066, 7.906116], - [-11.745525, 7.90628], - [-11.746144, 7.906063], - [-11.746877, 7.907228], - [-11.74299, 7.908861], - [-11.74389, 7.910209], - [-11.749502, 7.91021], - [-11.749583, 7.911249], - [-11.757916, 7.914583], - [-11.76875, 7.909584], - [-11.769583, 7.909584], - [-11.776708, 7.912433], - [-11.776976, 7.912083], - [-11.77875, 7.912084], - [-11.78125, 7.91375], - [-11.784582, 7.913749], - [-11.787182, 7.911151], - [-11.791385, 7.911151], - [-11.795292, 7.917917], - [-11.802082, 7.917916], - [-11.802083, 7.91375], - [-11.804583, 7.915416], - [-11.813749, 7.915416], - [-11.817082, 7.912084], - [-11.820416, 7.912083], - [-11.823279, 7.909793], - [-11.823715, 7.911066], - [-11.823494, 7.912156], - [-11.823026, 7.912281], - [-11.822724, 7.912575], - [-11.823974, 7.912989], - [-11.824833, 7.91287], - [-11.826455, 7.913332], - [-11.8267, 7.912199], - [-11.8289, 7.906799], - [-11.8303, 7.900999], - [-11.834099, 7.8926], - [-11.836499, 7.8883], - [-11.8378, 7.885199], - [-11.8396, 7.881599], - [-11.8405, 7.878199], - [-11.840699, 7.8701], - [-11.8414, 7.866599], - [-11.842799, 7.8642], - [-11.8446, 7.862099], - [-11.865899, 7.8409], - [-11.869099, 7.837], - [-11.873, 7.828899], - [-11.8737, 7.825199], - [-11.873799, 7.818], - [-11.8746, 7.8146], - [-11.8766, 7.811999], - [-11.8786, 7.810699], - [-11.882399, 7.8088], - [-11.885599, 7.8062], - [-11.8879, 7.802799] - ] - ], - "type": "Polygon" - }, - "id": 556, - "properties": { - "cc:admin:id": ["134"], - "cc:oBld:total": 2033, - "cc:pop:fifteen-to-twenty-four": 2777.044248090842, - "cc:pop:grid3-total": 8983.847883944189, - "cc:pop:kontur-total": 17425.940078752625, - "cc:pop:men": 8797.162695413343, - "cc:pop:sixty-plus": 882.4602322531729, - "cc:pop:total": 16889.648410535938, - "cc:pop:under-five": 2644.261971417452, - "cc:pop:women": 8092.485715122592, - "cc:pop:women-fiften-to-forty-nine": 4130.136520854925, - "cc:pop:wp-total": 11745.023997367533, - "cc:pop:wp-total-UN": 13625.622065972972, - "cc:id": "556", - "cc:Name": "Tikonko CHC", - "cc:site": [-11.7815, 7.8783], - "user:parentName": "Tikonko", - "user:code": "OU_1103", - "user:orgUnitId": "KYXbIQBQgP1", - "user:level": "4", - "user:parentId": "sxRd2XOzFbz" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.765416, 7.532916], - [-12.76466, 7.5246], - [-12.763999, 7.524599], - [-12.762099, 7.5235], - [-12.7604, 7.523699], - [-12.760099, 7.523199], - [-12.7557, 7.5218], - [-12.753999, 7.521799], - [-12.7518, 7.5212], - [-12.750399, 7.520399], - [-12.7471, 7.519], - [-12.7449, 7.518699], - [-12.742899, 7.5176], - [-12.741499, 7.517599], - [-12.740099, 7.5168], - [-12.738999, 7.516799], - [-12.735099, 7.515099], - [-12.7293, 7.5138], - [-12.728499, 7.5132], - [-12.7263, 7.512899], - [-12.723799, 7.5115], - [-12.7207, 7.510999], - [-12.719599, 7.5101], - [-12.716799, 7.509599], - [-12.713999, 7.508499], - [-12.7118, 7.508199], - [-12.708499, 7.506499], - [-12.706799, 7.506], - [-12.7046, 7.505999], - [-12.702399, 7.505099], - [-12.6999, 7.504599], - [-12.698199, 7.5035], - [-12.696799, 7.503499], - [-12.695399, 7.5026], - [-12.6932, 7.502599], - [-12.6907, 7.5018], - [-12.689599, 7.501], - [-12.6876, 7.500699], - [-12.687399, 7.5001], - [-12.6826, 7.498999], - [-12.680099, 7.4974], - [-12.6779, 7.4971], - [-12.677399, 7.4965], - [-12.6749, 7.495999], - [-12.673499, 7.4951], - [-12.6715, 7.494899], - [-12.670399, 7.494], - [-12.669299, 7.493999], - [-12.667599, 7.4929], - [-12.666299, 7.492899], - [-12.665099, 7.4921], - [-12.662599, 7.491499], - [-12.658222, 7.489908], - [-12.658199, 7.489899], - [-12.656799, 7.488799], - [-12.6526, 7.4868], - [-12.6507, 7.486499], - [-12.649323, 7.485624], - [-12.64875, 7.487917], - [-12.64875, 7.497083], - [-12.652916, 7.497916], - [-12.654582, 7.497917], - [-12.655416, 7.49875], - [-12.65375, 7.50375], - [-12.653749, 7.516249], - [-12.653002, 7.516249], - [-12.652577, 7.516092], - [-12.652316, 7.516249], - [-12.652082, 7.516249], - [-12.64875, 7.515417], - [-12.648749, 7.516249], - [-12.647917, 7.517084], - [-12.647917, 7.527083], - [-12.649583, 7.530416], - [-12.650416, 7.530417], - [-12.650417, 7.532083], - [-12.651249, 7.534584], - [-12.651249, 7.537083], - [-12.647917, 7.537917], - [-12.645416, 7.540416], - [-12.642082, 7.539584], - [-12.639583, 7.545416], - [-12.645416, 7.545417], - [-12.645793, 7.546171], - [-12.643603, 7.546172], - [-12.642293, 7.546424], - [-12.639178, 7.548636], - [-12.63782, 7.549591], - [-12.637691, 7.549662], - [-12.641264, 7.555022], - [-12.640611, 7.557335], - [-12.640408, 7.558265], - [-12.639679, 7.558539], - [-12.639362, 7.558959], - [-12.638949, 7.558958], - [-12.638754, 7.559087], - [-12.638618, 7.560115], - [-12.637844, 7.560112], - [-12.637841, 7.560627], - [-12.636552, 7.56049], - [-12.636294, 7.560231], - [-12.635779, 7.56023], - [-12.635002, 7.560482], - [-12.633714, 7.560089], - [-12.633588, 7.559574], - [-12.633075, 7.559055], - [-12.63282, 7.558281], - [-12.632177, 7.557892], - [-12.631402, 7.558017], - [-12.631399, 7.558531], - [-12.630495, 7.558785], - [-12.630492, 7.559299], - [-12.631132, 7.560332], - [-12.632164, 7.560082], - [-12.632165, 7.560083], - [-12.63211, 7.560403], - [-12.625417, 7.56375], - [-12.625417, 7.571249], - [-12.627508, 7.573865], - [-12.627441, 7.57435], - [-12.62744, 7.574351], - [-12.626412, 7.573702], - [-12.626404, 7.574989], - [-12.625631, 7.574986], - [-12.625371, 7.575242], - [-12.626394, 7.57705], - [-12.62717, 7.576668], - [-12.627743, 7.576671], - [-12.627744, 7.576672], - [-12.625417, 7.579584], - [-12.625417, 7.583036], - [-12.625824, 7.583023], - [-12.626485, 7.582666], - [-12.626788, 7.582238], - [-12.627162, 7.581596], - [-12.627572, 7.580883], - [-12.628054, 7.580206], - [-12.628428, 7.579955], - [-12.62866, 7.579617], - [-12.628909, 7.579118], - [-12.629515, 7.578993], - [-12.629907, 7.578618], - [-12.630158, 7.578101], - [-12.630301, 7.577691], - [-12.630425, 7.57721], - [-12.630638, 7.577371], - [-12.630443, 7.578101], - [-12.630176, 7.578743], - [-12.629694, 7.5791], - [-12.629266, 7.579404], - [-12.629177, 7.57992], - [-12.629729, 7.580027], - [-12.630247, 7.579921], - [-12.630925, 7.58017], - [-12.631601, 7.580473], - [-12.63203, 7.580866], - [-12.632585, 7.581431], - [-12.633633, 7.584259], - [-12.633831, 7.58585], - [-12.633345, 7.5866], - [-12.632546, 7.587172], - [-12.63162, 7.587899], - [-12.631489, 7.588149], - [-12.631799, 7.5885], - [-12.631, 7.5893], - [-12.630999, 7.5915], - [-12.628999, 7.593799], - [-12.6268, 7.593799], - [-12.6257, 7.592599], - [-12.625699, 7.5904], - [-12.624899, 7.5882], - [-12.623999, 7.5879], - [-12.6204, 7.5879], - [-12.619, 7.5885], - [-12.6179, 7.5901], - [-12.6179, 7.593499], - [-12.618198, 7.5935], - [-12.618199, 7.593501], - [-12.6179, 7.597399], - [-12.6171, 7.5976], - [-12.6163, 7.599299], - [-12.616, 7.601799], - [-12.618199, 7.605399], - [-12.618199, 7.607599], - [-12.617599, 7.6088], - [-12.614299, 7.610399], - [-12.6104, 7.608999], - [-12.6087, 7.6074], - [-12.608499, 7.606], - [-12.6068, 7.6043], - [-12.606799, 7.6037], - [-12.6051, 7.602399], - [-12.6029, 7.599], - [-12.602399, 7.5968], - [-12.5996, 7.5954], - [-12.5987, 7.5968], - [-12.598699, 7.6049], - [-12.598199, 7.607099], - [-12.5974, 7.608199], - [-12.5932, 7.611499], - [-12.5913, 7.6124], - [-12.589899, 7.613799], - [-12.5865, 7.614899], - [-12.584299, 7.616299], - [-12.5824, 7.6168], - [-12.582099, 7.6174], - [-12.5799, 7.6176], - [-12.577899, 7.618999], - [-12.5757, 7.6193], - [-12.5751, 7.6204], - [-12.5757, 7.622599], - [-12.5765, 7.6232], - [-12.5782, 7.6257], - [-12.582399, 7.6301], - [-12.5829, 7.631499], - [-12.5837, 7.6321], - [-12.5843, 7.633999], - [-12.5851, 7.634], - [-12.5857, 7.635099], - [-12.589299, 7.636799], - [-12.5907, 7.637899], - [-12.5921, 7.6376], - [-12.596199, 7.637899], - [-12.5971, 7.6374], - [-12.600399, 7.6374], - [-12.6004, 7.6376], - [-12.603999, 7.6379], - [-12.6054, 7.638799], - [-12.608699, 7.6388], - [-12.6099, 7.639299], - [-12.613999, 7.639], - [-12.616, 7.639899], - [-12.619899, 7.640099], - [-12.6204, 7.640699], - [-12.622599, 7.6407], - [-12.6238, 7.641299], - [-12.627599, 7.6413], - [-12.6276, 7.641499], - [-12.630699, 7.641299], - [-12.6315, 7.6407], - [-12.634299, 7.640699], - [-12.636, 7.6399], - [-12.639299, 7.6399], - [-12.6421, 7.639599], - [-12.646499, 7.6385], - [-12.6474, 7.637599], - [-12.6496, 7.6371], - [-12.658999, 7.6371], - [-12.6596, 7.6376], - [-12.665699, 7.637599], - [-12.6657, 7.637399], - [-12.669, 7.637099], - [-12.670699, 7.636299], - [-12.6713, 7.6354], - [-12.672399, 7.636299], - [-12.6724, 7.637099], - [-12.673499, 7.637599], - [-12.677899, 7.6376], - [-12.6804, 7.638799], - [-12.694299, 7.638799], - [-12.695999, 7.638199], - [-12.697899, 7.6368], - [-12.700099, 7.636799], - [-12.7007, 7.635699], - [-12.702899, 7.634299], - [-12.7035, 7.6329], - [-12.704899, 7.6315], - [-12.706199, 7.631199], - [-12.7093, 7.6288], - [-12.711, 7.628199], - [-12.717099, 7.627599], - [-12.7193, 7.625099], - [-12.721299, 7.624], - [-12.723199, 7.623999], - [-12.723499, 7.6224], - [-12.720101, 7.622899], - [-12.7218, 7.620999], - [-12.724, 7.6207], - [-12.725399, 7.6221], - [-12.725399, 7.624599], - [-12.725029, 7.625416], - [-12.727082, 7.625416], - [-12.729582, 7.622083], - [-12.73125, 7.615417], - [-12.732917, 7.615416], - [-12.738861, 7.61502], - [-12.739014, 7.614231], - [-12.739529, 7.614619], - [-12.740044, 7.614622], - [-12.740342, 7.614921], - [-12.745416, 7.614584], - [-12.746119, 7.614113], - [-12.745895, 7.613597], - [-12.746426, 7.613246], - [-12.746172, 7.612739], - [-12.744959, 7.613231], - [-12.744958, 7.61323], - [-12.745097, 7.61117], - [-12.744973, 7.61014], - [-12.744458, 7.610137], - [-12.744533, 7.609154], - [-12.742917, 7.608749], - [-12.742082, 7.607083], - [-12.73375, 7.602916], - [-12.737082, 7.597083], - [-12.737083, 7.59125], - [-12.738749, 7.588749], - [-12.73625, 7.582917], - [-12.741249, 7.577917], - [-12.744582, 7.577083], - [-12.744583, 7.572917], - [-12.747082, 7.569583], - [-12.745417, 7.566249], - [-12.747807, 7.562663], - [-12.748106, 7.562725], - [-12.749582, 7.561249], - [-12.749583, 7.560416], - [-12.752916, 7.554584], - [-12.752917, 7.55125], - [-12.758749, 7.548749], - [-12.759583, 7.542917], - [-12.762082, 7.543749], - [-12.762083, 7.540417], - [-12.765416, 7.532916] - ] - ], - "type": "Polygon" - }, - "id": 557, - "properties": { - "cc:admin:id": ["18"], - "cc:oBld:total": 7, - "cc:pop:fifteen-to-twenty-four": 1001.5342616383894, - "cc:pop:grid3-total": 5017.743911897108, - "cc:pop:kontur-total": 6222.570152141785, - "cc:pop:men": 2787.340513285513, - "cc:pop:sixty-plus": 490.3490437266401, - "cc:pop:total": 5847.906657403788, - "cc:pop:under-five": 944.2673791236394, - "cc:pop:women": 3060.566144118271, - "cc:pop:women-fiften-to-forty-nine": 1508.8164525616494, - "cc:pop:wp-total": 4873.349731482534, - "cc:pop:wp-total-UN": 5647.836951955759, - "cc:id": "557", - "cc:Name": "Tissana CHC", - "cc:site": [-12.70613, 7.53912], - "user:parentName": "Dema", - "user:code": "OU_197423", - "user:orgUnitId": "CFPrsD3dNeb", - "user:level": "4", - "user:parentId": "DNRAeXT9IwS" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.200135, 8.330411], - [-13.190699, 8.30374], - [-13.194602, 8.295696], - [-13.185995, 8.290426], - [-13.186511, 8.281818], - [-13.165116, 8.285086], - [-13.161255, 8.285674], - [-13.171505, 8.279842], - [-13.166802, 8.270434], - [-13.175127, 8.260132], - [-13.166802, 8.25458], - [-13.163743, 8.242633], - [-13.161255, 8.249582], - [-13.161253, 8.249581], - [-13.161459, 8.248545], - [-13.159582, 8.245417], - [-13.157083, 8.245417], - [-13.15625, 8.248749], - [-13.157082, 8.250417], - [-13.154167, 8.250999], - [-13.153147, 8.24931], - [-13.15301, 8.249365], - [-13.154341, 8.251528], - [-13.155377, 8.252868], - [-13.147917, 8.259583], - [-13.137083, 8.24875], - [-13.137082, 8.247197], - [-13.135453, 8.244375], - [-13.127641, 8.244375], - [-13.123735, 8.25114], - [-13.12764, 8.257905], - [-13.123735, 8.264671], - [-13.12764, 8.271437], - [-13.123735, 8.278204], - [-13.12764, 8.284969], - [-13.12375, 8.291709], - [-13.12375, 8.291762], - [-13.12764, 8.2985], - [-13.124879, 8.303285], - [-13.127916, 8.307084], - [-13.127917, 8.312032], - [-13.135453, 8.312033], - [-13.135483, 8.312084], - [-13.136249, 8.312084], - [-13.13625, 8.325416], - [-13.146249, 8.326249], - [-13.146927, 8.318799], - [-13.147171, 8.318799], - [-13.151079, 8.325564], - [-13.158891, 8.325565], - [-13.162796, 8.332329], - [-13.158891, 8.339096], - [-13.162797, 8.345861], - [-13.17061, 8.345862], - [-13.174516, 8.352627], - [-13.179475, 8.352628], - [-13.182083, 8.354583], - [-13.183581, 8.354798], - [-13.186234, 8.359393], - [-13.186249, 8.359394], - [-13.18625, 8.362009], - [-13.193869, 8.362008], - [-13.196589, 8.357299], - [-13.195797, 8.356116], - [-13.193781, 8.354372], - [-13.198749, 8.35375], - [-13.199119, 8.354119], - [-13.199577, 8.353326], - [-13.195671, 8.34656], - [-13.18786, 8.346559], - [-13.187127, 8.345289], - [-13.18727, 8.345019], - [-13.187834, 8.34329], - [-13.187892, 8.341964], - [-13.18767, 8.340565], - [-13.188644, 8.33907], - [-13.189426, 8.338757], - [-13.190531, 8.338927], - [-13.191072, 8.339912], - [-13.191493, 8.339942], - [-13.191911, 8.339733], - [-13.191156, 8.339336], - [-13.191055, 8.339078], - [-13.191413, 8.339052], - [-13.191288, 8.338685], - [-13.191613, 8.338552], - [-13.192321, 8.339077], - [-13.192444, 8.338581], - [-13.192907, 8.33846], - [-13.194228, 8.338681], - [-13.194845, 8.338497], - [-13.195289, 8.337904], - [-13.196026, 8.333708], - [-13.196331, 8.332885], - [-13.197209, 8.332032], - [-13.199006, 8.330764], - [-13.199851, 8.330593], - [-13.200135, 8.330411] - ] - ], - "type": "Polygon" - }, - "id": 558, - "properties": { - "cc:admin:id": ["112"], - "cc:oBld:total": 472, - "cc:pop:fifteen-to-twenty-four": 2477.5932874641658, - "cc:pop:grid3-total": 4502.957366074995, - "cc:pop:kontur-total": 10827.138370501141, - "cc:pop:men": 5645.60112384274, - "cc:pop:sixty-plus": 868.3383796878786, - "cc:pop:total": 11217.840391206428, - "cc:pop:under-five": 1361.8610887804743, - "cc:pop:women": 5572.239267363687, - "cc:pop:women-fiften-to-forty-nine": 2974.488145667673, - "cc:pop:wp-total": 8391.776761931029, - "cc:pop:wp-total-UN": 9722.434736789763, - "cc:id": "558", - "cc:Name": "Tokeh MCHP", - "cc:site": [-13.1913, 8.3136], - "user:parentName": "Rural Western Area", - "user:code": "OU_278368", - "user:orgUnitId": "GGDHb8xd8jc", - "user:level": "4", - "user:parentId": "qtr8GGlm4gg" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.033749, 8.703749], - [-11.032916, 8.702083], - [-11.030417, 8.702082], - [-11.030417, 8.699583], - [-11.030161, 8.699073], - [-11.030163, 8.699072], - [-11.030416, 8.699178], - [-11.030416, 8.69875], - [-11.029583, 8.697916], - [-11.029583, 8.692917], - [-11.02875, 8.692082], - [-11.02875, 8.68875], - [-11.029582, 8.687916], - [-11.030416, 8.685417], - [-11.027083, 8.681249], - [-11.027083, 8.67625], - [-11.027916, 8.67375], - [-11.023749, 8.66875], - [-11.019583, 8.666249], - [-11.019583, 8.662084], - [-11.020416, 8.66125], - [-11.027916, 8.658749], - [-11.02625, 8.65375], - [-11.02375, 8.65125], - [-11.024483, 8.649781], - [-11.023407, 8.649095], - [-11.023095, 8.648565], - [-11.02226, 8.648066], - [-11.020599, 8.647299], - [-11.016399, 8.6449], - [-11.0135, 8.645799], - [-11.010599, 8.6478], - [-11.0044, 8.653699], - [-11.0014, 8.657099], - [-10.999399, 8.66], - [-10.997299, 8.6641], - [-10.994199, 8.6679], - [-10.9878, 8.674399], - [-10.985, 8.677799], - [-10.983099, 8.6816], - [-10.981699, 8.6837], - [-10.978499, 8.6876], - [-10.9773, 8.689699], - [-10.9767, 8.6919], - [-10.9768, 8.6941], - [-10.977299, 8.696599], - [-10.9797, 8.7018], - [-10.9803, 8.7053], - [-10.980699, 8.712599], - [-10.981599, 8.715999], - [-10.983599, 8.719499], - [-10.985, 8.7227], - [-10.987499, 8.726899], - [-10.9889, 8.7301], - [-10.9913, 8.7344], - [-10.992699, 8.737599], - [-10.995199, 8.741799], - [-10.9966, 8.745], - [-10.998899, 8.749299], - [-10.9996, 8.7519], - [-11.0003, 8.7578], - [-11.003699, 8.759499], - [-11.004995, 8.76001], - [-11.005416, 8.758749], - [-11.005416, 8.755417], - [-11.004582, 8.754582], - [-11.002917, 8.750417], - [-11.00375, 8.747083], - [-11.007916, 8.747083], - [-11.012082, 8.747916], - [-11.013749, 8.747916], - [-11.015417, 8.745416], - [-11.019358, 8.743445], - [-11.019242, 8.743101], - [-11.018611, 8.742064], - [-11.017925, 8.740419], - [-11.017156, 8.739569], - [-11.018368, 8.738099], - [-11.021877, 8.736104], - [-11.022584, 8.735428], - [-11.023564, 8.734987], - [-11.025602, 8.734548], - [-11.025099, 8.732768], - [-11.024742, 8.732083], - [-11.026385, 8.732082], - [-11.026096, 8.731851], - [-11.026091, 8.731577], - [-11.026431, 8.73135], - [-11.026504, 8.73103], - [-11.026427, 8.730579], - [-11.025663, 8.729923], - [-11.025636, 8.727046], - [-11.025446, 8.726622], - [-11.02498, 8.7263], - [-11.024552, 8.725603], - [-11.024739, 8.724664], - [-11.024098, 8.724307], - [-11.024459, 8.723768], - [-11.024709, 8.723656], - [-11.02472, 8.723346], - [-11.024487, 8.722915], - [-11.023981, 8.722633], - [-11.023253, 8.721902], - [-11.022834, 8.72098], - [-11.022947, 8.720579], - [-11.022816, 8.72], - [-11.023319, 8.719476], - [-11.023127, 8.719294], - [-11.023066, 8.718892], - [-11.022693, 8.718724], - [-11.022495, 8.717943], - [-11.022872, 8.71797], - [-11.023135, 8.717464], - [-11.022947, 8.71713], - [-11.022273, 8.716854], - [-11.021949, 8.716039], - [-11.021706, 8.715896], - [-11.021582, 8.715585], - [-11.021583, 8.714226], - [-11.021253, 8.713925], - [-11.020895, 8.713939], - [-11.020412, 8.712796], - [-11.020044, 8.712838], - [-11.019721, 8.712324], - [-11.019995, 8.712283], - [-11.020062, 8.712046], - [-11.019623, 8.711846], - [-11.019531, 8.712008], - [-11.019328, 8.711786], - [-11.019523, 8.71153], - [-11.019515, 8.711249], - [-11.019516, 8.711249], - [-11.020068, 8.711864], - [-11.020307, 8.711803], - [-11.020607, 8.712041], - [-11.020608, 8.712752], - [-11.021004, 8.713774], - [-11.021816, 8.713879], - [-11.021677, 8.714688], - [-11.021801, 8.715645], - [-11.022165, 8.716011], - [-11.02231, 8.716645], - [-11.023116, 8.717095], - [-11.023209, 8.717299], - [-11.023326, 8.717678], - [-11.023271, 8.718689], - [-11.023301, 8.718749], - [-11.025416, 8.71875], - [-11.025417, 8.723749], - [-11.026249, 8.726249], - [-11.02625, 8.727082], - [-11.028749, 8.730416], - [-11.032082, 8.730416], - [-11.0337, 8.728259], - [-11.031591, 8.726968], - [-11.02955, 8.726742], - [-11.028237, 8.72548], - [-11.029582, 8.724582], - [-11.029583, 8.722916], - [-11.032916, 8.721249], - [-11.032916, 8.720416], - [-11.03125, 8.717082], - [-11.032082, 8.71375], - [-11.030417, 8.711249], - [-11.032082, 8.70625], - [-11.033749, 8.703749] - ] - ], - "type": "Polygon" - }, - "id": 559, - "properties": { - "cc:admin:id": ["49"], - "cc:oBld:total": 1042, - "cc:pop:fifteen-to-twenty-four": 1397.6025815171977, - "cc:pop:grid3-total": 9192.31682779397, - "cc:pop:kontur-total": 7741.52937641494, - "cc:pop:men": 4076.3561856333954, - "cc:pop:sixty-plus": 414.7615328132566, - "cc:pop:total": 7347.585243877863, - "cc:pop:under-five": 1119.0203889585853, - "cc:pop:women": 3271.2290582444703, - "cc:pop:women-fiften-to-forty-nine": 1560.4001411716717, - "cc:pop:wp-total": 6255.648084814156, - "cc:pop:wp-total-UN": 7249.337349458584, - "cc:id": "559", - "cc:Name": "Tombodu CHC", - "cc:site": [-11.0121, 8.702], - "user:parentName": "Kamara", - "user:code": "OU_233341", - "user:orgUnitId": "lxxASQqPUqd", - "user:level": "4", - "user:parentId": "kvkDWg42lHR" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.060183, 8.216278], - [-11.060168, 8.216177], - [-11.059466, 8.21529], - [-11.05852, 8.214147], - [-11.0582, 8.213779], - [-11.057487, 8.21325], - [-11.057194, 8.212695], - [-11.057221, 8.212044], - [-11.05714, 8.211819], - [-11.056667, 8.211175], - [-11.056248, 8.210266], - [-11.056319, 8.209479], - [-11.057148, 8.209163], - [-11.059149, 8.207634], - [-11.057262, 8.207458], - [-11.056754, 8.206943], - [-11.056261, 8.206756], - [-11.056013, 8.206887], - [-11.056012, 8.206709], - [-11.055805, 8.20604], - [-11.05548, 8.205317], - [-11.054917, 8.205651], - [-11.052903, 8.205552], - [-11.052219, 8.206215], - [-11.052243, 8.206248], - [-11.052243, 8.206249], - [-11.05125, 8.206249], - [-11.049582, 8.204584], - [-11.04375, 8.20375], - [-11.045416, 8.207917], - [-11.042917, 8.212083], - [-11.039583, 8.212917], - [-11.03875, 8.214583], - [-11.040726, 8.217219], - [-11.040849, 8.217118], - [-11.040851, 8.217118], - [-11.04125, 8.217916], - [-11.044582, 8.218749], - [-11.045417, 8.220416], - [-11.04625, 8.220417], - [-11.047082, 8.222916], - [-11.04375, 8.22625], - [-11.04375, 8.228768], - [-11.043899, 8.22857], - [-11.046005, 8.228479], - [-11.049203, 8.228031], - [-11.050668, 8.227471], - [-11.051317, 8.226719], - [-11.052336, 8.225558], - [-11.052397, 8.225496], - [-11.052864, 8.225057], - [-11.053351, 8.224611], - [-11.053452, 8.224492], - [-11.053712, 8.224475], - [-11.054124, 8.224357], - [-11.054783, 8.224042], - [-11.054833, 8.224042], - [-11.054777, 8.224087], - [-11.054874, 8.224203], - [-11.055536, 8.226244], - [-11.055747, 8.226502], - [-11.056231, 8.226266], - [-11.056499, 8.226466], - [-11.057388, 8.225894], - [-11.057672, 8.22492], - [-11.058069, 8.224603], - [-11.059384, 8.223668], - [-11.05998, 8.22354], - [-11.058956, 8.223315], - [-11.058286, 8.223419], - [-11.057842, 8.223743], - [-11.056988, 8.224822], - [-11.056164, 8.225342], - [-11.055356, 8.223779], - [-11.055246, 8.223754], - [-11.055143, 8.223692], - [-11.055181, 8.223588], - [-11.05521, 8.223418], - [-11.055173, 8.222825], - [-11.055516, 8.222113], - [-11.055593, 8.221986], - [-11.056093, 8.221285], - [-11.056912, 8.220001], - [-11.057341, 8.219355], - [-11.05777, 8.218534], - [-11.057927, 8.218306], - [-11.058214, 8.218055], - [-11.059268, 8.217405], - [-11.060085, 8.217128], - [-11.059754, 8.216421], - [-11.060183, 8.216278] - ] - ], - "type": "Polygon" - }, - "id": 560, - "properties": { - "cc:admin:id": ["75"], - "cc:oBld:total": 720, - "cc:pop:fifteen-to-twenty-four": 2547.9072883235544, - "cc:pop:grid3-total": 9667.479105652215, - "cc:pop:kontur-total": 15498.090664174553, - "cc:pop:men": 7419.619855352246, - "cc:pop:sixty-plus": 779.6406075029455, - "cc:pop:total": 13262.174483142193, - "cc:pop:under-five": 2063.7639154497556, - "cc:pop:women": 5842.5546277899475, - "cc:pop:women-fiften-to-forty-nine": 2914.6464023087183, - "cc:pop:wp-total": 10264.333814854726, - "cc:pop:wp-total-UN": 11886.92761733087, - "cc:id": "560", - "cc:Name": "Tongo Field CHC", - "cc:site": [-11.0581, 8.2154], - "user:parentName": "Lower Bambara", - "user:code": "OU_222665", - "user:orgUnitId": "K3jhn3TXF3a", - "user:level": "4", - "user:parentId": "hdEuw2ugkVF" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.328501, 8.856727], - [-12.327999, 8.853799], - [-12.3264, 8.8494], - [-12.326176, 8.848976], - [-12.324661, 8.848208], - [-12.323056, 8.848365], - [-12.322025, 8.848108], - [-12.321297, 8.848454], - [-12.32027, 8.847772], - [-12.318666, 8.848049], - [-12.316508, 8.846622], - [-12.31625, 8.846647], - [-12.316249, 8.840417], - [-12.314583, 8.839583], - [-12.312083, 8.842082], - [-12.311249, 8.839583], - [-12.30875, 8.83875], - [-12.30625, 8.842081], - [-12.305416, 8.839583], - [-12.302916, 8.837917], - [-12.302082, 8.837916], - [-12.299583, 8.83625], - [-12.295417, 8.840415], - [-12.296249, 8.83125], - [-12.294946, 8.830816], - [-12.294784, 8.831207], - [-12.294203, 8.83352], - [-12.292887, 8.835018], - [-12.29253, 8.835477], - [-12.29177, 8.835035], - [-12.29134, 8.834494], - [-12.289973, 8.833365], - [-12.289312, 8.832246], - [-12.288407, 8.831129], - [-12.288062, 8.830371], - [-12.287241, 8.829686], - [-12.286744, 8.828255], - [-12.286456, 8.827917], - [-12.28125, 8.827916], - [-12.280517, 8.818403], - [-12.272509, 8.819654], - [-12.272083, 8.819743], - [-12.272082, 8.820417], - [-12.26875, 8.822916], - [-12.267916, 8.82125], - [-12.264582, 8.817916], - [-12.263749, 8.814583], - [-12.262916, 8.814582], - [-12.261629, 8.810081], - [-12.259604, 8.811036], - [-12.256039, 8.812751], - [-12.252552, 8.814448], - [-12.248376, 8.816509], - [-12.246191, 8.817134], - [-12.243937, 8.817134], - [-12.24125, 8.810416], - [-12.241249, 8.80625], - [-12.237917, 8.805417], - [-12.237082, 8.812083], - [-12.234583, 8.816249], - [-12.232917, 8.815417], - [-12.231774, 8.816178], - [-12.232799, 8.816718], - [-12.233203, 8.817203], - [-12.233202, 8.817204], - [-12.23246, 8.81738], - [-12.233749, 8.821249], - [-12.23125, 8.826249], - [-12.227082, 8.82125], - [-12.22375, 8.821249], - [-12.223458, 8.820669], - [-12.219127, 8.822276], - [-12.217621, 8.822733], - [-12.217387, 8.822795], - [-12.216767, 8.822925], - [-12.215782, 8.823021], - [-12.211133, 8.822882], - [-12.210416, 8.832916], - [-12.204583, 8.832916], - [-12.201503, 8.829068], - [-12.198075, 8.829068], - [-12.19778, 8.829096], - [-12.193891, 8.835833], - [-12.197797, 8.842598], - [-12.200215, 8.842599], - [-12.199582, 8.842917], - [-12.19625, 8.847083], - [-12.198749, 8.857082], - [-12.19625, 8.864583], - [-12.197083, 8.868749], - [-12.199583, 8.870417], - [-12.201249, 8.875416], - [-12.195879, 8.875864], - [-12.196168, 8.875961], - [-12.196545, 8.87648], - [-12.195279, 8.878875], - [-12.195251, 8.881028], - [-12.194945, 8.881868], - [-12.195037, 8.882412], - [-12.194812, 8.882778], - [-12.191599, 8.882779], - [-12.192082, 8.883025], - [-12.192083, 8.884372], - [-12.194072, 8.885186], - [-12.194234, 8.886331], - [-12.193847, 8.886408], - [-12.190324, 8.887938], - [-12.194638, 8.887939], - [-12.194246, 8.888426], - [-12.19405, 8.889752], - [-12.19377, 8.890293], - [-12.19337, 8.890512], - [-12.192933, 8.890157], - [-12.192707, 8.890135], - [-12.192507, 8.890324], - [-12.192578, 8.893259], - [-12.192876, 8.893998], - [-12.194166, 8.894978], - [-12.19574, 8.894552], - [-12.196252, 8.894877], - [-12.196301, 8.895329], - [-12.195504, 8.8974], - [-12.195336, 8.898446], - [-12.195335, 8.899979], - [-12.19505, 8.900416], - [-12.192083, 8.900417], - [-12.187917, 8.90375], - [-12.187083, 8.913749], - [-12.184583, 8.915417], - [-12.184174, 8.916643], - [-12.184477, 8.916994], - [-12.18375, 8.927916], - [-12.185555, 8.929722], - [-12.184813, 8.930442], - [-12.1837, 8.931937], - [-12.183018, 8.933257], - [-12.182277, 8.934128], - [-12.181787, 8.935205], - [-12.1838, 8.9349], - [-12.1916, 8.9349], - [-12.1955, 8.9356], - [-12.199899, 8.937599], - [-12.2026, 8.938399], - [-12.205799, 8.938199], - [-12.207499, 8.936699], - [-12.208299, 8.934199], - [-12.2081, 8.9305], - [-12.2074, 8.9277], - [-12.2051, 8.9233], - [-12.203, 8.9168], - [-12.2012, 8.913199], - [-12.2013, 8.9106], - [-12.2028, 8.909099], - [-12.204899, 8.9087], - [-12.207599, 8.9095], - [-12.2098, 8.9112], - [-12.2128, 8.914799], - [-12.2152, 8.915999], - [-12.2182, 8.9164], - [-12.226499, 8.916599], - [-12.2295, 8.916299], - [-12.232099, 8.915499], - [-12.233799, 8.913399], - [-12.235, 8.909099], - [-12.2368, 8.904699], - [-12.238699, 8.8993], - [-12.240799, 8.8979], - [-12.2432, 8.897499], - [-12.2472, 8.8974], - [-12.264299, 8.897699], - [-12.268599, 8.898199], - [-12.2725, 8.896199], - [-12.2748, 8.893999], - [-12.282499, 8.8861], - [-12.2853, 8.8842], - [-12.287599, 8.8846], - [-12.289599, 8.886999], - [-12.2907, 8.8927], - [-12.294899, 8.901899], - [-12.2966, 8.9041], - [-12.2993, 8.9066], - [-12.3022, 8.908299], - [-12.3056, 8.9089], - [-12.317799, 8.908999], - [-12.320799, 8.9089], - [-12.323099, 8.908299], - [-12.3259, 8.906299], - [-12.327499, 8.903399], - [-12.327799, 8.901], - [-12.3278, 8.895], - [-12.3274, 8.8899], - [-12.326699, 8.886999], - [-12.3249, 8.882699], - [-12.3259, 8.872199], - [-12.328499, 8.8608], - [-12.328599, 8.8573], - [-12.328501, 8.856727] - ] - ], - "type": "Polygon" - }, - "id": 561, - "properties": { - "cc:admin:id": ["83"], - "cc:oBld:total": 54, - "cc:pop:fifteen-to-twenty-four": 990.1387455676942, - "cc:pop:grid3-total": 2606.7802148574424, - "cc:pop:kontur-total": 4383.78889844371, - "cc:pop:men": 2530.344079496048, - "cc:pop:sixty-plus": 334.853031456274, - "cc:pop:total": 5394.649341394453, - "cc:pop:under-five": 861.2135928257187, - "cc:pop:women": 2864.3052618984034, - "cc:pop:women-fiften-to-forty-nine": 1387.0142537950599, - "cc:pop:wp-total": 4099.901846588377, - "cc:pop:wp-total-UN": 4736.550902193298, - "cc:id": "561", - "cc:Name": "Tonkomba MCHP", - "cc:site": [-12.2665, 8.8744], - "user:parentName": "Makari Gbanti", - "user:code": "OU_193264", - "user:orgUnitId": "xIMxph4NMP1", - "user:level": "4", - "user:parentId": "lY93YpCxJqf" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.064919, 7.360243], - [-12.061299, 7.3598], - [-12.0562, 7.3598], - [-12.0521, 7.3603], - [-12.0487, 7.363599], - [-12.0461, 7.366799], - [-12.0434, 7.371999], - [-12.039299, 7.3774], - [-12.0358, 7.383599], - [-12.032099, 7.3876], - [-12.029999, 7.389], - [-12.023199, 7.3922], - [-12.019899, 7.393], - [-12.0136, 7.393499], - [-12.0115, 7.394199], - [-12.0084, 7.396299], - [-12.0066, 7.398099], - [-12.0048, 7.4011], - [-12.004, 7.404699], - [-12.0042, 7.4115], - [-12.0049, 7.4149], - [-12.0061, 7.4169], - [-12.010599, 7.422699], - [-12.010946, 7.42335], - [-12.011136, 7.421335], - [-12.012323, 7.417039], - [-12.013506, 7.415451], - [-12.015971, 7.412838], - [-12.017002, 7.412096], - [-12.018039, 7.411514], - [-12.020966, 7.411069], - [-12.02187, 7.411072], - [-12.023903, 7.411705], - [-12.029247, 7.41414], - [-12.030914, 7.414546], - [-12.032151, 7.414625], - [-12.033496, 7.414394], - [-12.035141, 7.413454], - [-12.035936, 7.41222], - [-12.036461, 7.410679], - [-12.037324, 7.409478], - [-12.037903, 7.407742], - [-12.038263, 7.407177], - [-12.038267, 7.406554], - [-12.038586, 7.406221], - [-12.038674, 7.405625], - [-12.040025, 7.403271], - [-12.041167, 7.400861], - [-12.043793, 7.392804], - [-12.045465, 7.388981], - [-12.04224, 7.389441], - [-12.042239, 7.38944], - [-12.044398, 7.382231], - [-12.046623, 7.377724], - [-12.047301, 7.37672], - [-12.048472, 7.37499], - [-12.053138, 7.370658], - [-12.054699, 7.368608], - [-12.056168, 7.366358], - [-12.058156, 7.36884], - [-12.061138, 7.36617], - [-12.062779, 7.364367], - [-12.063275, 7.363702], - [-12.064919, 7.360243] - ] - ], - "type": "Polygon" - }, - "id": 562, - "properties": { - "cc:admin:id": ["147"], - "cc:oBld:total": 226, - "cc:pop:fifteen-to-twenty-four": 153.9143138046632, - "cc:pop:grid3-total": 1600.3212754510275, - "cc:pop:kontur-total": 1331.1890603322013, - "cc:pop:men": 420.5743696952273, - "cc:pop:sixty-plus": 60.063631886804835, - "cc:pop:total": 852.5592261949558, - "cc:pop:under-five": 143.02764009413252, - "cc:pop:women": 431.9848564997285, - "cc:pop:women-fiften-to-forty-nine": 209.1161498213372, - "cc:pop:wp-total": 657.2017746577665, - "cc:pop:wp-total-UN": 764.5806350035157, - "cc:id": "562", - "cc:Name": "Torma Bum CHP", - "cc:site": [-12.0092, 7.4143], - "user:parentName": "Bum", - "user:code": "OU_197405", - "user:orgUnitId": "rZkUcho9Z65", - "user:level": "4", - "user:parentId": "iUauWFeH8Qp" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.232082, 7.602981], - [-12.232082, 7.59625], - [-12.226251, 7.590418], - [-12.226252, 7.590417], - [-12.227082, 7.590416], - [-12.227082, 7.582084], - [-12.22555, 7.580552], - [-12.225009, 7.580727], - [-12.222173, 7.580452], - [-12.220516, 7.580753], - [-12.219316, 7.580675], - [-12.217787, 7.580166], - [-12.214836, 7.577702], - [-12.21375, 7.576604], - [-12.21375, 7.57625], - [-12.214076, 7.575595], - [-12.211633, 7.573947], - [-12.207765, 7.573406], - [-12.205295, 7.573261], - [-12.203121, 7.573377], - [-12.199867, 7.574086], - [-12.198569, 7.574794], - [-12.19822, 7.575207], - [-12.18875, 7.573749], - [-12.186249, 7.57125], - [-12.184583, 7.57125], - [-12.179583, 7.579583], - [-12.172917, 7.57875], - [-12.170416, 7.575416], - [-12.168901, 7.574912], - [-12.168998, 7.575258], - [-12.162917, 7.574583], - [-12.160687, 7.566412], - [-12.153035, 7.566164], - [-12.152512, 7.567158], - [-12.148534, 7.567158], - [-12.147046, 7.564584], - [-12.142083, 7.564583], - [-12.1418, 7.562611], - [-12.136474, 7.56261], - [-12.132568, 7.555845], - [-12.129815, 7.555845], - [-12.128899, 7.5597], - [-12.1265, 7.564799], - [-12.125199, 7.568], - [-12.123299, 7.5716], - [-12.122499, 7.574], - [-12.121399, 7.5791], - [-12.1192, 7.583499], - [-12.118, 7.586699], - [-12.1156, 7.590899], - [-12.1135, 7.595099], - [-12.1102, 7.599299], - [-12.1089, 7.6013], - [-12.108299, 7.6036], - [-12.1075, 7.610099], - [-12.1064, 7.613399], - [-12.100999, 7.6245], - [-12.1003, 7.6284], - [-12.100399, 7.632399], - [-12.100999, 7.634999], - [-12.103299, 7.639399], - [-12.1047, 7.6426], - [-12.107999, 7.646499], - [-12.111999, 7.649499], - [-12.1182, 7.652], - [-12.1229, 7.6535], - [-12.128599, 7.655099], - [-12.141799, 7.656799], - [-12.152999, 7.660999], - [-12.1563, 7.661699], - [-12.1596, 7.661299], - [-12.170299, 7.6569], - [-12.1738, 7.656099], - [-12.1811, 7.6556], - [-12.1854, 7.656], - [-12.188299, 7.656699], - [-12.19019, 7.657559], - [-12.190972, 7.656521], - [-12.191073, 7.656201], - [-12.190757, 7.654746], - [-12.189357, 7.652779], - [-12.188858, 7.652667], - [-12.187634, 7.65279], - [-12.1871, 7.652568], - [-12.185974, 7.651464], - [-12.185108, 7.649189], - [-12.183961, 7.646833], - [-12.183559, 7.644277], - [-12.183269, 7.643389], - [-12.182207, 7.642171], - [-12.182237, 7.641886], - [-12.182995, 7.640747], - [-12.183756, 7.639914], - [-12.183953, 7.637809], - [-12.184588, 7.637486], - [-12.185007, 7.637084], - [-12.183315, 7.637083], - [-12.183816, 7.635572], - [-12.183988, 7.633722], - [-12.18399, 7.633722], - [-12.185298, 7.634702], - [-12.185854, 7.634164], - [-12.18627, 7.632761], - [-12.18627, 7.631663], - [-12.186704, 7.630621], - [-12.188532, 7.629479], - [-12.189973, 7.627604], - [-12.190695, 7.62613], - [-12.19065, 7.625957], - [-12.19002, 7.6257], - [-12.188799, 7.623423], - [-12.187345, 7.621694], - [-12.186973, 7.620888], - [-12.185898, 7.621425], - [-12.185897, 7.621425], - [-12.185619, 7.620728], - [-12.185682, 7.619006], - [-12.184423, 7.615052], - [-12.184387, 7.614585], - [-12.184388, 7.614584], - [-12.184582, 7.614583], - [-12.185416, 7.613749], - [-12.185416, 7.610768], - [-12.184185, 7.608405], - [-12.184187, 7.60789], - [-12.183934, 7.607116], - [-12.183186, 7.606051], - [-12.182548, 7.603845], - [-12.182304, 7.602628], - [-12.180524, 7.602271], - [-12.18056, 7.59875], - [-12.181998, 7.598749], - [-12.182839, 7.596478], - [-12.184014, 7.595013], - [-12.185181, 7.592532], - [-12.185823, 7.591678], - [-12.186415, 7.59118], - [-12.187088, 7.590995], - [-12.189323, 7.592085], - [-12.191343, 7.592338], - [-12.191758, 7.592513], - [-12.192053, 7.592943], - [-12.192405, 7.594656], - [-12.194553, 7.596814], - [-12.196519, 7.596767], - [-12.199833, 7.596156], - [-12.20087, 7.596176], - [-12.201606, 7.596487], - [-12.201771, 7.595833], - [-12.202227, 7.596071], - [-12.202857, 7.596567], - [-12.203301, 7.597307], - [-12.20431, 7.597926], - [-12.206079, 7.597933], - [-12.206832, 7.598122], - [-12.207363, 7.598595], - [-12.207728, 7.599286], - [-12.207601, 7.600545], - [-12.207711, 7.601861], - [-12.207989, 7.602317], - [-12.209121, 7.603287], - [-12.209514, 7.604041], - [-12.210582, 7.605016], - [-12.212618, 7.60555], - [-12.212903, 7.605497], - [-12.213369, 7.604988], - [-12.214112, 7.603788], - [-12.214817, 7.60301], - [-12.217637, 7.603341], - [-12.219342, 7.602971], - [-12.220476, 7.603488], - [-12.221767, 7.603367], - [-12.223585, 7.601577], - [-12.225644, 7.600236], - [-12.227282, 7.599881], - [-12.228069, 7.600014], - [-12.229525, 7.600842], - [-12.231945, 7.603219], - [-12.232082, 7.602981] - ] - ], - "type": "Polygon" - }, - "id": 563, - "properties": { - "cc:admin:id": ["42"], - "cc:oBld:total": 2600, - "cc:pop:fifteen-to-twenty-four": 4570.279587488965, - "cc:pop:grid3-total": 20140.96340482847, - "cc:pop:kontur-total": 25801.53004659916, - "cc:pop:men": 12272.868476027612, - "cc:pop:sixty-plus": 1853.420018885421, - "cc:pop:total": 25720.053039379665, - "cc:pop:under-five": 4289.159391401826, - "cc:pop:women": 13447.184563352052, - "cc:pop:women-fiften-to-forty-nine": 6481.57944720523, - "cc:pop:wp-total": 19875.106361114336, - "cc:pop:wp-total-UN": 23039.64425864032, - "cc:id": "563", - "cc:Name": "UBC Under 5", - "cc:site": [-12.1676, 7.605], - "user:parentName": "Jong", - "user:code": "OU_197388", - "user:orgUnitId": "PdGktj8bAML", - "user:level": "4", - "user:parentId": "VCtF1DbspR5" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.132082, 8.185416], - [-12.132082, 8.182083], - [-12.126249, 8.170417], - [-12.122083, 8.17125], - [-12.120416, 8.173749], - [-12.117916, 8.170417], - [-12.113749, 8.169583], - [-12.107916, 8.162917], - [-12.107082, 8.162916], - [-12.099583, 8.162084], - [-12.098749, 8.16125], - [-12.09375, 8.160417], - [-12.094583, 8.15375], - [-12.096967, 8.153749], - [-12.093803, 8.152523], - [-12.091239, 8.151116], - [-12.087713, 8.148138], - [-12.085199, 8.145244], - [-12.083236, 8.142207], - [-12.082431, 8.141587], - [-12.081046, 8.140717], - [-12.078038, 8.139514], - [-12.076256, 8.139002], - [-12.075559, 8.139074], - [-12.075138, 8.139478], - [-12.074524, 8.140694], - [-12.07281, 8.145468], - [-12.072641, 8.146478], - [-12.072777, 8.14828], - [-12.073339, 8.149578], - [-12.077032, 8.155121], - [-12.080589, 8.161859], - [-12.081592, 8.164553], - [-12.081962, 8.166488], - [-12.081009, 8.166726], - [-12.081008, 8.166726], - [-12.080436, 8.164319], - [-12.079721, 8.162112], - [-12.078955, 8.160427], - [-12.075449, 8.154582], - [-12.074056, 8.152491], - [-12.067083, 8.154583], - [-12.065417, 8.154583], - [-12.062082, 8.15125], - [-12.057916, 8.15375], - [-12.053241, 8.155086], - [-12.053091, 8.157494], - [-12.052943, 8.158749], - [-12.04625, 8.158749], - [-12.043749, 8.15625], - [-12.039583, 8.154583], - [-12.03875, 8.15375], - [-12.038841, 8.153012], - [-12.034451, 8.153011], - [-12.030545, 8.146246], - [-12.026353, 8.146246], - [-12.027916, 8.150417], - [-12.01125, 8.15375], - [-12.012081, 8.155416], - [-12.00875, 8.155417], - [-12.007082, 8.157083], - [-11.99375, 8.155417], - [-11.994582, 8.15875], - [-11.992916, 8.162916], - [-11.989583, 8.162083], - [-11.98625, 8.159584], - [-11.986246, 8.159584], - [-11.9861, 8.166299], - [-11.9856, 8.170299], - [-11.9832, 8.176599], - [-11.982699, 8.1795], - [-11.9826, 8.1825], - [-11.982899, 8.196899], - [-11.9826, 8.201899], - [-11.981999, 8.2047], - [-11.979799, 8.2101], - [-11.979399, 8.214], - [-11.9793, 8.221199], - [-11.979099, 8.2242], - [-11.978499, 8.2271], - [-11.976399, 8.2324], - [-11.975899, 8.2362], - [-11.9756, 8.241999], - [-11.9749, 8.245699], - [-11.9728, 8.250999], - [-11.971599, 8.2561], - [-11.9692, 8.261199], - [-11.9679, 8.264399], - [-11.965499, 8.2686], - [-11.962, 8.276299], - [-11.961399, 8.279], - [-11.9612, 8.283], - [-11.961399, 8.299399], - [-11.961699, 8.302399], - [-11.9624, 8.3053], - [-11.9646, 8.3106], - [-11.9653, 8.3155], - [-11.965499, 8.324599], - [-11.965799, 8.328499], - [-11.9665, 8.3313], - [-11.968499, 8.335699], - [-11.968999, 8.3383], - [-11.968599, 8.342599], - [-11.966499, 8.3469], - [-11.9609, 8.359899], - [-11.9637, 8.3611], - [-11.9707, 8.364699], - [-11.975, 8.365399], - [-11.980199, 8.3647], - [-11.984699, 8.3663], - [-11.987999, 8.3689], - [-11.9937, 8.377199], - [-11.9982, 8.373099], - [-12.0036, 8.367699], - [-12.0093, 8.364099], - [-12.021, 8.357999], - [-12.026799, 8.3539], - [-12.032199, 8.3507], - [-12.036299, 8.347], - [-12.039899, 8.342799], - [-12.0442, 8.332999], - [-12.048999, 8.3247], - [-12.0529, 8.318999], - [-12.054399, 8.315199], - [-12.054499, 8.311], - [-12.0527, 8.3072], - [-12.049899, 8.304099], - [-12.046499, 8.301699], - [-12.0403, 8.2993], - [-12.0371, 8.297399], - [-12.034799, 8.294699], - [-12.032, 8.2896], - [-12.030699, 8.284099], - [-12.029599, 8.271999], - [-12.026799, 8.261299], - [-12.0265, 8.2561], - [-12.0272, 8.2529], - [-12.0299, 8.2496], - [-12.033699, 8.2478], - [-12.0366, 8.2474], - [-12.0411, 8.2474], - [-12.045599, 8.247999], - [-12.0485, 8.2489], - [-12.0522, 8.2513], - [-12.05849, 8.257083], - [-12.067082, 8.257083], - [-12.069582, 8.254583], - [-12.062917, 8.24625], - [-12.062917, 8.24375], - [-12.067916, 8.243749], - [-12.069583, 8.232917], - [-12.079582, 8.235416], - [-12.081889, 8.23484], - [-12.084582, 8.239554], - [-12.084583, 8.232917], - [-12.086249, 8.227917], - [-12.089582, 8.225417], - [-12.092082, 8.225416], - [-12.092083, 8.224583], - [-12.095416, 8.212084], - [-12.098749, 8.207917], - [-12.103749, 8.207916], - [-12.10375, 8.206241], - [-12.103983, 8.205835], - [-12.10375, 8.205428], - [-12.10375, 8.202916], - [-12.113749, 8.19875], - [-12.120416, 8.197916], - [-12.119583, 8.185417], - [-12.132082, 8.185416] - ] - ], - "type": "Polygon" - }, - "id": 564, - "properties": { - "cc:admin:id": ["60"], - "cc:oBld:total": 1173, - "cc:pop:fifteen-to-twenty-four": 1959.2054617631975, - "cc:pop:grid3-total": 11629.859415153533, - "cc:pop:kontur-total": 11080.275775726443, - "cc:pop:men": 5250.035003639102, - "cc:pop:sixty-plus": 756.5291559922341, - "cc:pop:total": 11071.07724385147, - "cc:pop:under-five": 1804.5496043800451, - "cc:pop:women": 5821.042240212373, - "cc:pop:women-fiften-to-forty-nine": 2792.6932416414793, - "cc:pop:wp-total": 9840.414474186528, - "cc:pop:wp-total-UN": 11402.886440679145, - "cc:id": "564", - "cc:Name": "UMC Clinic Taiama", - "cc:site": [-12.0601, 8.2029], - "user:parentName": "Kori", - "user:code": "OU_246996", - "user:orgUnitId": "Qw7c6Ckb0XC", - "user:level": "4", - "user:parentId": "nV3OkyzF4US" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.184799, 8.552299], - [-11.1847, 8.5302], - [-11.184499, 8.527099], - [-11.1839, 8.5231], - [-11.181599, 8.517199], - [-11.180799, 8.512999], - [-11.1804, 8.5063], - [-11.1797, 8.5035], - [-11.1775, 8.4992], - [-11.176099, 8.495999], - [-11.1738, 8.4916], - [-11.172199, 8.485799], - [-11.1683, 8.4774], - [-11.166, 8.473099], - [-11.1653, 8.4693], - [-11.1652, 8.4663], - [-11.165399, 8.4624], - [-11.165999, 8.4592], - [-11.1597, 8.4582], - [-11.157499, 8.457499], - [-11.155599, 8.456299], - [-11.151199, 8.452899], - [-11.145799, 8.449899], - [-11.142999, 8.447599], - [-11.137199, 8.442499], - [-11.134099, 8.440699], - [-11.128199, 8.439099], - [-11.1253, 8.437099], - [-11.1213, 8.4305], - [-11.1187, 8.4279], - [-11.115799, 8.425699], - [-11.111799, 8.423799], - [-11.108999, 8.421599], - [-11.1036, 8.4166], - [-11.100599, 8.414499], - [-11.0935, 8.411], - [-11.0899, 8.4103], - [-11.084699, 8.41], - [-11.071199, 8.410199], - [-11.065, 8.409599], - [-11.0593, 8.4072], - [-11.0558, 8.4064], - [-11.0512, 8.4062], - [-11.047599, 8.4064], - [-11.0454, 8.406999], - [-11.043399, 8.408], - [-11.041199, 8.4098], - [-11.0352, 8.415899], - [-11.0325, 8.418399], - [-11.029499, 8.4206], - [-11.025299, 8.4228], - [-11.021399, 8.4261], - [-11.014699, 8.4328], - [-11.0125, 8.434499], - [-11.0104, 8.435599], - [-11.008299, 8.4361], - [-11.003, 8.436599], - [-11.0004, 8.437199], - [-10.995099, 8.4394], - [-10.990699, 8.4399], - [-10.9814, 8.440099], - [-10.980392, 8.440306], - [-10.977499, 8.4409], - [-10.9718, 8.4435], - [-10.9747, 8.4479], - [-10.9786, 8.452], - [-10.9818, 8.4542], - [-10.985, 8.4555], - [-10.989299, 8.457899], - [-10.9932, 8.4597], - [-10.9965, 8.4623], - [-11.004299, 8.469799], - [-11.007033, 8.472533], - [-11.008827, 8.472534], - [-11.012733, 8.479299], - [-11.020545, 8.4793], - [-11.023241, 8.483969], - [-11.022083, 8.485417], - [-11.022917, 8.495416], - [-11.025417, 8.495416], - [-11.034582, 8.49125], - [-11.034583, 8.496249], - [-11.037083, 8.49875], - [-11.041249, 8.502083], - [-11.039583, 8.505417], - [-11.039583, 8.510416], - [-11.040417, 8.512916], - [-11.046249, 8.515417], - [-11.046249, 8.517084], - [-11.044583, 8.522083], - [-11.04375, 8.522916], - [-11.048749, 8.526249], - [-11.049583, 8.530416], - [-11.052083, 8.53125], - [-11.056249, 8.540417], - [-11.05625, 8.54125], - [-11.058749, 8.549583], - [-11.05875, 8.552916], - [-11.062851, 8.552916], - [-11.062428, 8.552213], - [-11.061599, 8.549376], - [-11.06158, 8.549259], - [-11.062295, 8.549267], - [-11.06553, 8.549467], - [-11.06553, 8.549469], - [-11.06375, 8.55125], - [-11.06375, 8.552916], - [-11.064583, 8.555416], - [-11.067082, 8.555417], - [-11.069583, 8.557916], - [-11.072082, 8.557917], - [-11.072857, 8.559076], - [-11.072928, 8.559017], - [-11.074172, 8.559116], - [-11.074638, 8.559007], - [-11.074978, 8.558711], - [-11.07498, 8.558711], - [-11.075416, 8.559584], - [-11.075416, 8.562083], - [-11.072917, 8.56375], - [-11.072917, 8.565416], - [-11.076249, 8.567916], - [-11.077083, 8.570416], - [-11.079583, 8.569584], - [-11.082916, 8.572916], - [-11.082917, 8.574583], - [-11.083504, 8.574877], - [-11.082786, 8.575283], - [-11.083226, 8.575889], - [-11.083126, 8.57642], - [-11.083348, 8.576645], - [-11.083438, 8.577087], - [-11.084021, 8.57753], - [-11.083992, 8.577873], - [-11.08436, 8.578715], - [-11.084852, 8.579393], - [-11.08566, 8.579951], - [-11.085978, 8.580319], - [-11.084583, 8.58125], - [-11.084744, 8.581731], - [-11.085046, 8.581861], - [-11.085798, 8.582677], - [-11.085797, 8.582679], - [-11.085295, 8.5827], - [-11.085032, 8.582597], - [-11.085417, 8.583749], - [-11.087803, 8.58375], - [-11.087768, 8.584129], - [-11.089582, 8.584584], - [-11.09125, 8.590416], - [-11.09375, 8.592916], - [-11.095416, 8.592917], - [-11.095417, 8.593749], - [-11.098749, 8.594583], - [-11.102916, 8.592917], - [-11.104583, 8.592083], - [-11.109583, 8.582917], - [-11.119582, 8.582084], - [-11.123749, 8.585416], - [-11.124583, 8.589583], - [-11.127082, 8.591249], - [-11.127217, 8.591918], - [-11.131898, 8.591918], - [-11.135804, 8.585153], - [-11.132605, 8.57961], - [-11.13125, 8.577916], - [-11.132083, 8.566249], - [-11.134357, 8.564431], - [-11.134358, 8.564432], - [-11.134273, 8.564916], - [-11.134365, 8.565483], - [-11.134975, 8.565976], - [-11.135057, 8.566147], - [-11.138466, 8.566147], - [-11.140333, 8.562917], - [-11.145416, 8.562917], - [-11.147251, 8.564384], - [-11.143618, 8.558089], - [-11.147523, 8.551324], - [-11.155335, 8.551323], - [-11.159242, 8.544558], - [-11.167054, 8.544557], - [-11.170961, 8.537793], - [-11.172791, 8.537793], - [-11.174583, 8.539583], - [-11.184699, 8.539584], - [-11.184799, 8.552299] - ] - ], - "type": "Polygon" - }, - "id": 565, - "properties": { - "cc:admin:id": ["100"], - "cc:oBld:total": 1352, - "cc:pop:fifteen-to-twenty-four": 1658.9181604081464, - "cc:pop:grid3-total": 10264.382693773507, - "cc:pop:kontur-total": 9166.108162398577, - "cc:pop:men": 4929.380881990876, - "cc:pop:sixty-plus": 507.28688960843976, - "cc:pop:total": 8889.09717839924, - "cc:pop:under-five": 1462.8788424935371, - "cc:pop:women": 3959.7162964083604, - "cc:pop:women-fiften-to-forty-nine": 1963.835023221942, - "cc:pop:wp-total": 7319.5345758733, - "cc:pop:wp-total-UN": 8486.455239782503, - "cc:id": "565", - "cc:Name": "UMC Mitchener Memorial Maternity & Health Centre", - "cc:site": [-11.09, 8.5439], - "user:parentName": "Nimikoro", - "user:code": "OU_233397", - "user:orgUnitId": "g5A3hiJlwmI", - "user:level": "4", - "user:parentId": "DmaLM8WYmWv" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.881149, 7.672816], - [-11.880416, 7.672084], - [-11.879582, 7.672083], - [-11.87625, 7.671249], - [-11.877916, 7.659584], - [-11.876249, 7.657917], - [-11.875416, 7.657916], - [-11.874406, 7.655897], - [-11.874071, 7.656059], - [-11.872917, 7.653749], - [-11.873749, 7.65125], - [-11.864583, 7.651249], - [-11.86375, 7.649584], - [-11.866249, 7.647083], - [-11.867916, 7.640417], - [-11.868749, 7.63875], - [-11.867082, 7.637917], - [-11.852083, 7.638749], - [-11.851249, 7.63625], - [-11.84125, 7.635416], - [-11.841249, 7.624108], - [-11.840199, 7.6241], - [-11.8373, 7.624299], - [-11.834899, 7.6248], - [-11.832999, 7.6256], - [-11.827099, 7.6286], - [-11.8245, 7.631099], - [-11.821799, 7.6358], - [-11.819499, 7.6388], - [-11.815599, 7.6431], - [-11.8133, 7.646099], - [-11.809999, 7.6519], - [-11.8059, 7.656499], - [-11.80333, 7.659106], - [-11.807916, 7.660417], - [-11.807917, 7.672083], - [-11.810417, 7.665418], - [-11.812916, 7.66875], - [-11.812917, 7.673749], - [-11.814637, 7.67332], - [-11.814638, 7.673321], - [-11.814593, 7.673749], - [-11.822082, 7.67375], - [-11.825416, 7.675416], - [-11.825416, 7.679323], - [-11.824948, 7.679538], - [-11.823125, 7.67948], - [-11.822083, 7.682084], - [-11.824583, 7.688749], - [-11.827082, 7.689583], - [-11.82875, 7.68875], - [-11.838749, 7.690416], - [-11.845416, 7.690417], - [-11.847039, 7.691498], - [-11.847461, 7.689947], - [-11.848336, 7.688622], - [-11.848587, 7.687259], - [-11.849406, 7.685942], - [-11.852917, 7.688749], - [-11.859582, 7.688749], - [-11.863749, 7.686249], - [-11.867015, 7.682168], - [-11.867016, 7.682168], - [-11.867233, 7.682827], - [-11.873111, 7.682292], - [-11.871547, 7.679582], - [-11.875452, 7.672817], - [-11.881149, 7.672816] - ] - ], - "type": "Polygon" - }, - "id": 566, - "properties": { - "cc:admin:id": ["78"], - "cc:oBld:total": 21, - "cc:pop:fifteen-to-twenty-four": 1051.5336422084592, - "cc:pop:grid3-total": 5332.159408459913, - "cc:pop:kontur-total": 5771.0856714941265, - "cc:pop:men": 3009.327347775652, - "cc:pop:sixty-plus": 400.2178459761606, - "cc:pop:total": 5806.486774125317, - "cc:pop:under-five": 945.6981253678682, - "cc:pop:women": 2797.1594263496654, - "cc:pop:women-fiften-to-forty-nine": 1325.94292374997, - "cc:pop:wp-total": 5736.917826639725, - "cc:pop:wp-total-UN": 6649.761331934101, - "cc:id": "566", - "cc:Name": "Upper Saama MCHP", - "cc:site": [-11.8618, 7.6677], - "user:parentName": "Lugbu", - "user:code": "OU_1069", - "user:orgUnitId": "Ykx8Ovui7g0", - "user:level": "4", - "user:parentId": "kU8vhUkAGaT" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.134824, 8.088094], - [-11.134799, 8.087699], - [-11.134199, 8.083699], - [-11.131499, 8.076499], - [-11.130799, 8.070699], - [-11.129499, 8.066999], - [-11.124999, 8.0597], - [-11.119699, 8.063], - [-11.117599, 8.0636], - [-11.1135, 8.063899], - [-11.1086, 8.063199], - [-11.1008, 8.0593], - [-11.098399, 8.056899], - [-11.0953, 8.0515], - [-11.093699, 8.049399], - [-11.090499, 8.046099], - [-11.0855, 8.0413], - [-11.0816, 8.0384], - [-11.078399, 8.036999], - [-11.074099, 8.034599], - [-11.0656, 8.0309], - [-11.0597, 8.0295], - [-11.054299, 8.027299], - [-11.048399, 8.025799], - [-11.046099, 8.024399], - [-11.043899, 8.022599], - [-11.0345, 8.0133], - [-11.033456, 8.012216], - [-11.02375, 8.00875], - [-11.020089, 8.013873], - [-11.018623, 8.012143], - [-11.01746, 8.011643], - [-11.016843, 8.010995], - [-11.016249, 8.00625], - [-11.014012, 8.002335], - [-11.013515, 8.005869], - [-11.013452, 8.008449], - [-11.011645, 8.010991], - [-11.010147, 8.013141], - [-11.007082, 8.00625], - [-10.995417, 8.006249], - [-10.9955, 8.005401], - [-10.991813, 8.011789], - [-10.988871, 8.01179], - [-10.986499, 8.0162], - [-10.9803, 8.0246], - [-10.980699, 8.041799], - [-10.981, 8.0458], - [-10.9819, 8.0491], - [-10.9878, 8.0609], - [-10.9884, 8.0634], - [-10.988699, 8.0676], - [-10.988599, 8.0707], - [-10.9878, 8.074699], - [-10.985499, 8.0801], - [-10.984, 8.085799], - [-10.982099, 8.0902], - [-10.9815, 8.093199], - [-10.9813, 8.1004], - [-10.981782, 8.127233], - [-10.98875, 8.12375], - [-10.991249, 8.12375], - [-10.992917, 8.125416], - [-10.996249, 8.125417], - [-10.996249, 8.136249], - [-10.994583, 8.137917], - [-10.99625, 8.143749], - [-11.003749, 8.144583], - [-11.007082, 8.138749], - [-11.007083, 8.132084], - [-11.009582, 8.132917], - [-11.01125, 8.134583], - [-11.017916, 8.134584], - [-11.017981, 8.134679], - [-11.023468, 8.134679], - [-11.027374, 8.127914], - [-11.032083, 8.127913], - [-11.032917, 8.123751], - [-11.039583, 8.130416], - [-11.042916, 8.127916], - [-11.04375, 8.117084], - [-11.049883, 8.118446], - [-11.050322, 8.117646], - [-11.05141, 8.116411], - [-11.047917, 8.112916], - [-11.050416, 8.103749], - [-11.049583, 8.09875], - [-11.050416, 8.097084], - [-11.052917, 8.097084], - [-11.055416, 8.099583], - [-11.055417, 8.101249], - [-11.057083, 8.10125], - [-11.058177, 8.102891], - [-11.0583, 8.102851], - [-11.05875, 8.103749], - [-11.060417, 8.10375], - [-11.067917, 8.111249], - [-11.068749, 8.110416], - [-11.069096, 8.109375], - [-11.069098, 8.109375], - [-11.069226, 8.109462], - [-11.072083, 8.10375], - [-11.074582, 8.10125], - [-11.081267, 8.101249], - [-11.08355, 8.097296], - [-11.081802, 8.094265], - [-11.085707, 8.0875], - [-11.088749, 8.0875], - [-11.092082, 8.089583], - [-11.094583, 8.077084], - [-11.101958, 8.076412], - [-11.102024, 8.076276], - [-11.10204, 8.07625], - [-11.102083, 8.076249], - [-11.103117, 8.074493], - [-11.104275, 8.072982], - [-11.108428, 8.072981], - [-11.112335, 8.066216], - [-11.120146, 8.066216], - [-11.122716, 8.070666], - [-11.119583, 8.074584], - [-11.119583, 8.081249], - [-11.129583, 8.088749], - [-11.134824, 8.088094] - ] - ], - "type": "Polygon" - }, - "id": 567, - "properties": { - "cc:admin:id": ["75"], - "cc:oBld:total": 1307, - "cc:pop:fifteen-to-twenty-four": 4108.31070311612, - "cc:pop:grid3-total": 15692.088362572411, - "cc:pop:kontur-total": 21285.218254106203, - "cc:pop:men": 11954.230865036683, - "cc:pop:sixty-plus": 1256.0726533988309, - "cc:pop:total": 21359.871798741573, - "cc:pop:under-five": 3310.7144440827187, - "cc:pop:women": 9405.640933704892, - "cc:pop:women-fiften-to-forty-nine": 4677.87929463727, - "cc:pop:wp-total": 18552.28628476467, - "cc:pop:wp-total-UN": 21492.996916224118, - "cc:id": "567", - "cc:Name": "Vaahun MCHP", - "cc:site": [-11.0037, 8.0275], - "user:parentName": "Nongowa", - "user:code": "OU_222720", - "user:orgUnitId": "up9gjdODKXE", - "user:level": "4", - "user:parentId": "KIUCimTXf8Q" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.449107, 7.530893], - [-11.448316, 7.528915], - [-11.448436, 7.528852], - [-11.447917, 7.52625], - [-11.447083, 7.524584], - [-11.445417, 7.523749], - [-11.445416, 7.517084], - [-11.443971, 7.515638], - [-11.442628, 7.51559], - [-11.441956, 7.5157], - [-11.437886, 7.517781], - [-11.437084, 7.517963], - [-11.437083, 7.517962], - [-11.437082, 7.517083], - [-11.420417, 7.514583], - [-11.42004, 7.51082], - [-11.426379, 7.510819], - [-11.429846, 7.504814], - [-11.429583, 7.504583], - [-11.432916, 7.498749], - [-11.432083, 7.490417], - [-11.430416, 7.48625], - [-11.429882, 7.48625], - [-11.429215, 7.487197], - [-11.429193, 7.487278], - [-11.427917, 7.487917], - [-11.427082, 7.48875], - [-11.421804, 7.490069], - [-11.420498, 7.489434], - [-11.421249, 7.480417], - [-11.41625, 7.482083], - [-11.410416, 7.479583], - [-11.40875, 7.478749], - [-11.407916, 7.476249], - [-11.39875, 7.470417], - [-11.397916, 7.469584], - [-11.39375, 7.470417], - [-11.392916, 7.478749], - [-11.38387, 7.478749], - [-11.383517, 7.478061], - [-11.382763, 7.476428], - [-11.381833, 7.475089], - [-11.379451, 7.470992], - [-11.378527, 7.469597], - [-11.37692, 7.466497], - [-11.375724, 7.465015], - [-11.375384, 7.464892], - [-11.375015, 7.464284], - [-11.371111, 7.471044], - [-11.367624, 7.471045], - [-11.367721, 7.471146], - [-11.367403, 7.471328], - [-11.36688, 7.47079], - [-11.366757, 7.470961], - [-11.366756, 7.470961], - [-11.366376, 7.47026], - [-11.365965, 7.470351], - [-11.365349, 7.46966], - [-11.364548, 7.469476], - [-11.363841, 7.469567], - [-11.363665, 7.469923], - [-11.36342, 7.469629], - [-11.363122, 7.470188], - [-11.363419, 7.470383], - [-11.362609, 7.471115], - [-11.364754, 7.471471], - [-11.365472, 7.47251], - [-11.365082, 7.472632], - [-11.36386, 7.471584], - [-11.363451, 7.471625], - [-11.363909, 7.472484], - [-11.363909, 7.472485], - [-11.363131, 7.471726], - [-11.361796, 7.471757], - [-11.360555, 7.472022], - [-11.360452, 7.472346], - [-11.36134, 7.47252], - [-11.361341, 7.472521], - [-11.359466, 7.472877], - [-11.359465, 7.47303], - [-11.35753, 7.473667], - [-11.356857, 7.474206], - [-11.357057, 7.474562], - [-11.357298, 7.474344], - [-11.357477, 7.47438], - [-11.35717, 7.474742], - [-11.357339, 7.475149], - [-11.357145, 7.475662], - [-11.355809, 7.476695], - [-11.355059, 7.476926], - [-11.355199, 7.4872], - [-11.354799, 7.5002], - [-11.353699, 7.5053], - [-11.352599, 7.5086], - [-11.350199, 7.5141], - [-11.3488, 7.518599], - [-11.347099, 7.529], - [-11.345299, 7.5346], - [-11.342899, 7.5401], - [-11.3412, 7.545999], - [-11.340699, 7.5503], - [-11.3406, 7.5547], - [-11.340699, 7.559099], - [-11.341299, 7.563399], - [-11.342599, 7.567299], - [-11.3457, 7.5726], - [-11.35, 7.5811], - [-11.3536, 7.5911], - [-11.356999, 7.602599], - [-11.3587, 7.605299], - [-11.3615, 7.6075], - [-11.366699, 7.609799], - [-11.371199, 7.610099], - [-11.378799, 7.6076], - [-11.381999, 7.6059], - [-11.385399, 7.6048], - [-11.393299, 7.604399], - [-11.4037, 7.594099], - [-11.4079, 7.590599], - [-11.412899, 7.5874], - [-11.4164, 7.583899], - [-11.423799, 7.5729], - [-11.4266, 7.567699], - [-11.430799, 7.5611], - [-11.4355, 7.556599], - [-11.4374, 7.553399], - [-11.440299, 7.5438], - [-11.4416, 7.540499], - [-11.445, 7.5344], - [-11.448599, 7.5311], - [-11.449107, 7.530893] - ] - ], - "type": "Polygon" - }, - "id": 568, - "properties": { - "cc:admin:id": ["5"], - "cc:oBld:total": 477, - "cc:pop:fifteen-to-twenty-four": 2185.535883693558, - "cc:pop:grid3-total": 10046.474451769218, - "cc:pop:kontur-total": 13064.582506189965, - "cc:pop:men": 5879.94323577202, - "cc:pop:sixty-plus": 903.8890470028815, - "cc:pop:total": 12090.598544669227, - "cc:pop:under-five": 2046.6198012719035, - "cc:pop:women": 6210.655308897205, - "cc:pop:women-fiften-to-forty-nine": 2949.7525105170425, - "cc:pop:wp-total": 11140.02856124346, - "cc:pop:wp-total-UN": 12908.69705490181, - "cc:id": "568", - "cc:Name": "Vaama MCHP", - "cc:site": [-11.4124, 7.5426], - "user:parentName": "Barri", - "user:code": "OU_260430", - "user:orgUnitId": "GjJjES51GvK", - "user:level": "4", - "user:parentId": "RzKeCma9qb1" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - [-12.476473, 7.61308], - [-12.4754, 7.6082], - [-12.4751, 7.608199], - [-12.475099, 7.6049], - [-12.4746, 7.603699], - [-12.474599, 7.6001], - [-12.473199, 7.599599], - [-12.4729, 7.5963], - [-12.472399, 7.595999], - [-12.472099, 7.5932], - [-12.4704, 7.590999], - [-12.470099, 7.5874], - [-12.469, 7.586299], - [-12.468799, 7.584], - [-12.468199, 7.583799], - [-12.4679, 7.5821], - [-12.467899, 7.5788], - [-12.4671, 7.576499], - [-12.4671, 7.571501], - [-12.467101, 7.5715], - [-12.468999, 7.571799], - [-12.468999, 7.5679], - [-12.465401, 7.567599], - [-12.4663, 7.5668], - [-12.468799, 7.566799], - [-12.469, 7.5638], - [-12.469599, 7.563199], - [-12.469299, 7.561], - [-12.468499, 7.5593], - [-12.4671, 7.558999], - [-12.466799, 7.5579], - [-12.465399, 7.556499], - [-12.465099, 7.5554], - [-12.4626, 7.5529], - [-12.460699, 7.553199], - [-12.459599, 7.5507], - [-12.458999, 7.550399], - [-12.457399, 7.5465], - [-12.456799, 7.546199], - [-12.4549, 7.5418], - [-12.454299, 7.541499], - [-12.4526, 7.5376], - [-12.451479, 7.53583], - [-12.450984, 7.536685], - [-12.443173, 7.536684], - [-12.441356, 7.533539], - [-12.437969, 7.535814], - [-12.426254, 7.539451], - [-12.417713, 7.54279], - [-12.399239, 7.540707], - [-12.396786, 7.545439], - [-12.395861, 7.547825], - [-12.398855, 7.548458], - [-12.397373, 7.550591], - [-12.396151, 7.552951], - [-12.395541, 7.554545], - [-12.394905, 7.555866], - [-12.39467, 7.557152], - [-12.394692, 7.558205], - [-12.39545, 7.559104], - [-12.396925, 7.560461], - [-12.397813, 7.560853], - [-12.398535, 7.560945], - [-12.399517, 7.560749], - [-12.400154, 7.56011], - [-12.40123, 7.558988], - [-12.403929, 7.554313], - [-12.405882, 7.554312], - [-12.407546, 7.553602], - [-12.409067, 7.553527], - [-12.410129, 7.5536], - [-12.411504, 7.553998], - [-12.414224, 7.558707], - [-12.418983, 7.558708], - [-12.41966, 7.559142], - [-12.42094, 7.561498], - [-12.421073, 7.562417], - [-12.42088, 7.563046], - [-12.420424, 7.56414], - [-12.420021, 7.564582], - [-12.419261, 7.565315], - [-12.4183, 7.565832], - [-12.416782, 7.566501], - [-12.415312, 7.567135], - [-12.414588, 7.567608], - [-12.414443, 7.567964], - [-12.414083, 7.56806], - [-12.413038, 7.568453], - [-12.410597, 7.569511], - [-12.409349, 7.570324], - [-12.409037, 7.57052], - [-12.407083, 7.567917], - [-12.406758, 7.567917], - [-12.405714, 7.569697], - [-12.404976, 7.571603], - [-12.404735, 7.573415], - [-12.405124, 7.574772], - [-12.405499, 7.575439], - [-12.406154, 7.576043], - [-12.407159, 7.576865], - [-12.408182, 7.577586], - [-12.409441, 7.578341], - [-12.410365, 7.578996], - [-12.411001, 7.579802], - [-12.411236, 7.580724], - [-12.410281, 7.580891], - [-12.409526, 7.580624], - [-12.408568, 7.579985], - [-12.407411, 7.579197], - [-12.406086, 7.578627], - [-12.404815, 7.578161], - [-12.401559, 7.577827], - [-12.400325, 7.57808], - [-12.398491, 7.578682], - [-12.397336, 7.579129], - [-12.396759, 7.580072], - [-12.396131, 7.581749], - [-12.396009, 7.583136], - [-12.39656, 7.584526], - [-12.3969, 7.586203], - [-12.396844, 7.586535], - [-12.398343, 7.586836], - [-12.39833, 7.586935], - [-12.398044, 7.58766], - [-12.397832, 7.588071], - [-12.397421, 7.588549], - [-12.397019, 7.588852], - [-12.396489, 7.589297], - [-12.395066, 7.590255], - [-12.394364, 7.59058], - [-12.393575, 7.590787], - [-12.39202, 7.59136], - [-12.391065, 7.591632], - [-12.390796, 7.591782], - [-12.390094, 7.592264], - [-12.387968, 7.59433], - [-12.387669, 7.595274], - [-12.387579, 7.595801], - [-12.387798, 7.597062], - [-12.388023, 7.599296], - [-12.388488, 7.600956], - [-12.388549, 7.601177], - [-12.388736, 7.601873], - [-12.389219, 7.602826], - [-12.38936, 7.603736], - [-12.389255, 7.604367], - [-12.389149, 7.604622], - [-12.38898, 7.604798], - [-12.388726, 7.605151], - [-12.388283, 7.605441], - [-12.387176, 7.60541], - [-12.384398, 7.604057], - [-12.383816, 7.60359], - [-12.383068, 7.601863], - [-12.382391, 7.601001], - [-12.381784, 7.600673], - [-12.380921, 7.600581], - [-12.380034, 7.600954], - [-12.378798, 7.601374], - [-12.377539, 7.60198], - [-12.376628, 7.602541], - [-12.375415, 7.602983], - [-12.374389, 7.60331], - [-12.373337, 7.603521], - [-12.372079, 7.604058], - [-12.371844, 7.604583], - [-12.369608, 7.604584], - [-12.369426, 7.605766], - [-12.369435, 7.605854], - [-12.369434, 7.605855], - [-12.367082, 7.602917], - [-12.362917, 7.602084], - [-12.359583, 7.605416], - [-12.359582, 7.605478], - [-12.359288, 7.605469], - [-12.358749, 7.607084], - [-12.354583, 7.609584], - [-12.352916, 7.612916], - [-12.342917, 7.609584], - [-12.340417, 7.609584], - [-12.339801, 7.615734], - [-12.334584, 7.615734], - [-12.330677, 7.608969], - [-12.322865, 7.608969], - [-12.319912, 7.614084], - [-12.319939, 7.614119], - [-12.320073, 7.614583], - [-12.31625, 7.614584], - [-12.312083, 7.617083], - [-12.312082, 7.615417], - [-12.309583, 7.612917], - [-12.30951, 7.6129], - [-12.307239, 7.608969], - [-12.299428, 7.608968], - [-12.29552, 7.602204], - [-12.289321, 7.602203], - [-12.292082, 7.598749], - [-12.292082, 7.594151], - [-12.291437, 7.593033], - [-12.283625, 7.593033], - [-12.279719, 7.599798], - [-12.271906, 7.599799], - [-12.271474, 7.600545], - [-12.27125, 7.600416], - [-12.272082, 7.59375], - [-12.270453, 7.593207], - [-12.27004, 7.59365], - [-12.268848, 7.594018], - [-12.268098, 7.593519], - [-12.267389, 7.592455], - [-12.26714, 7.591166], - [-12.267152, 7.589106], - [-12.267042, 7.588529], - [-12.266768, 7.588129], - [-12.265899, 7.5888], - [-12.2635, 7.589999], - [-12.258, 7.5915], - [-12.2544, 7.594699], - [-12.2533, 7.5989], - [-12.253599, 7.619899], - [-12.253799, 7.624099], - [-12.2549, 7.628099], - [-12.2596, 7.6345], - [-12.260999, 7.6383], - [-12.260999, 7.641699], - [-12.2585, 7.647899], - [-12.256899, 7.6537], - [-12.2537, 7.661099], - [-12.2511, 7.665499], - [-12.2489, 7.669899], - [-12.244999, 7.6747], - [-12.2387, 7.680799], - [-12.237733, 7.681433], - [-12.232917, 7.68625], - [-12.232917, 7.692083], - [-12.242916, 7.693749], - [-12.249582, 7.691249], - [-12.252083, 7.68875], - [-12.257082, 7.689584], - [-12.259177, 7.6922], - [-12.260114, 7.691061], - [-12.260485, 7.690308], - [-12.260068, 7.688561], - [-12.259742, 7.688054], - [-12.257325, 7.686146], - [-12.257676, 7.685409], - [-12.261968, 7.676583], - [-12.262934, 7.674935], - [-12.263001, 7.674379], - [-12.26271, 7.671732], - [-12.262462, 7.670975], - [-12.261977, 7.670377], - [-12.261978, 7.670376], - [-12.262916, 7.670458], - [-12.262917, 7.672083], - [-12.271115, 7.672828], - [-12.270272, 7.671849], - [-12.270912, 7.671544], - [-12.272108, 7.672267], - [-12.272192, 7.671182], - [-12.272582, 7.670793], - [-12.273639, 7.671517], - [-12.275643, 7.674021], - [-12.275642, 7.674022], - [-12.27492, 7.674217], - [-12.27556, 7.674467], - [-12.276617, 7.674551], - [-12.277286, 7.675134], - [-12.27865, 7.674912], - [-12.279511, 7.675773], - [-12.279511, 7.675775], - [-12.278455, 7.67597], - [-12.278261, 7.676415], - [-12.278983, 7.676916], - [-12.278841, 7.677286], - [-12.279004, 7.677351], - [-12.28052, 7.674225], - [-12.28074, 7.673379], - [-12.280725, 7.672998], - [-12.280726, 7.672998], - [-12.283259, 7.674696], - [-12.284397, 7.675653], - [-12.284655, 7.676865], - [-12.285107, 7.677126], - [-12.288604, 7.679497], - [-12.290102, 7.681149], - [-12.29136, 7.682234], - [-12.291724, 7.682814], - [-12.292959, 7.683083], - [-12.293185, 7.682989], - [-12.293553, 7.680985], - [-12.294086, 7.679748], - [-12.294675, 7.67908], - [-12.295719, 7.678533], - [-12.296315, 7.677073], - [-12.297097, 7.677037], - [-12.297225, 7.676912], - [-12.297518, 7.676104], - [-12.297674, 7.675004], - [-12.29887, 7.675358], - [-12.301144, 7.675532], - [-12.30217, 7.67661], - [-12.30262, 7.677406], - [-12.302853, 7.678437], - [-12.303544, 7.679517], - [-12.303549, 7.680073], - [-12.303616, 7.680058], - [-12.303778, 7.679794], - [-12.303863, 7.679478], - [-12.303918, 7.678732], - [-12.30405, 7.678626], - [-12.304596, 7.678475], - [-12.304749, 7.678444], - [-12.304958, 7.678413], - [-12.304977, 7.678421], - [-12.305266, 7.678613], - [-12.305326, 7.67909], - [-12.305767, 7.679742], - [-12.306262, 7.679694], - [-12.307518, 7.678749], - [-12.307573, 7.678767], - [-12.307601, 7.678686], - [-12.30889, 7.678093], - [-12.312185, 7.677912], - [-12.314351, 7.67727], - [-12.314545, 7.677435], - [-12.315812, 7.677446], - [-12.31776, 7.677149], - [-12.319004, 7.678769], - [-12.319578, 7.679036], - [-12.320438, 7.68003], - [-12.322163, 7.6769], - [-12.323649, 7.677155], - [-12.324249, 7.677376], - [-12.324865, 7.677672], - [-12.325512, 7.678083], - [-12.326722, 7.678939], - [-12.327799, 7.680107], - [-12.328512, 7.681303], - [-12.329392, 7.684124], - [-12.330814, 7.682644], - [-12.331772, 7.680842], - [-12.333105, 7.67956], - [-12.334578, 7.677563], - [-12.335893, 7.676851], - [-12.336557, 7.676938], - [-12.337916, 7.67875], - [-12.337917, 7.687395], - [-12.341331, 7.69331], - [-12.342083, 7.704583], - [-12.34625, 7.707916], - [-12.351249, 7.70875], - [-12.350417, 7.714583], - [-12.353561, 7.717728], - [-12.354109, 7.717167], - [-12.354238, 7.716751], - [-12.354774, 7.716922], - [-12.356536, 7.718985], - [-12.356535, 7.718986], - [-12.356324, 7.718983], - [-12.355818, 7.719716], - [-12.360416, 7.721249], - [-12.361105, 7.719987], - [-12.36042, 7.720254], - [-12.359916, 7.718192], - [-12.356821, 7.717914], - [-12.356824, 7.7174], - [-12.35734, 7.717273], - [-12.35786, 7.716762], - [-12.359152, 7.716511], - [-12.359673, 7.716], - [-12.360707, 7.71562], - [-12.360843, 7.714592], - [-12.360458, 7.714203], - [-12.359943, 7.713942], - [-12.358653, 7.713805], - [-12.358918, 7.712777], - [-12.360461, 7.713688], - [-12.361234, 7.71382], - [-12.361237, 7.713307], - [-12.361239, 7.713306], - [-12.362527, 7.713442], - [-12.363815, 7.713965], - [-12.364841, 7.714098], - [-12.365199, 7.715021], - [-12.366065, 7.714411], - [-12.367262, 7.714359], - [-12.368254, 7.714029], - [-12.369172, 7.713798], - [-12.370369, 7.713774], - [-12.371616, 7.713875], - [-12.373094, 7.714308], - [-12.374241, 7.715455], - [-12.375157, 7.716626], - [-12.375997, 7.71795], - [-12.376889, 7.719096], - [-12.377449, 7.719427], - [-12.378391, 7.71958], - [-12.378698, 7.719607], - [-12.379793, 7.719912], - [-12.38071, 7.72004], - [-12.382008, 7.720217], - [-12.383638, 7.720522], - [-12.384225, 7.720829], - [-12.384988, 7.721669], - [-12.385003, 7.721683], - [-12.385377, 7.723554], - [-12.385403, 7.723582], - [-12.385462, 7.723761], - [-12.387216, 7.7242], - [-12.387585, 7.724913], - [-12.388171, 7.726322], - [-12.388729, 7.728606], - [-12.389069, 7.730652], - [-12.389552, 7.731315], - [-12.390134, 7.731756], - [-12.390872, 7.731638], - [-12.391348, 7.730836], - [-12.391851, 7.729727], - [-12.392224, 7.728188], - [-12.391634, 7.726348], - [-12.390846, 7.725235], - [-12.390617, 7.724037], - [-12.390516, 7.722561], - [-12.390771, 7.721364], - [-12.391381, 7.720345], - [-12.391968, 7.719658], - [-12.393144, 7.719678], - [-12.39476, 7.719302], - [-12.395117, 7.71893], - [-12.395164, 7.717378], - [-12.394975, 7.717076], - [-12.39498, 7.716346], - [-12.395661, 7.715113], - [-12.396397, 7.714364], - [-12.397231, 7.714141], - [-12.397904, 7.7141], - [-12.399004, 7.714507], - [-12.399656, 7.714813], - [-12.400818, 7.715588], - [-12.400499, 7.716963], - [-12.399705, 7.716841], - [-12.398829, 7.716394], - [-12.398075, 7.715986], - [-12.39675, 7.715579], - [-12.396282, 7.715966], - [-12.396261, 7.716801], - [-12.396342, 7.717941], - [-12.396627, 7.719164], - [-12.397219, 7.719938], - [-12.398747, 7.720326], - [-12.401865, 7.721305], - [-12.403964, 7.722466], - [-12.40814, 7.724971], - [-12.410931, 7.726989], - [-12.412011, 7.727457], - [-12.41295, 7.727681], - [-12.413805, 7.727478], - [-12.4143, 7.726984], - [-12.415699, 7.728848], - [-12.416593, 7.728411], - [-12.417748, 7.727007], - [-12.419028, 7.72529], - [-12.420306, 7.724043], - [-12.42118, 7.723512], - [-12.421898, 7.723948], - [-12.421774, 7.72448], - [-12.422211, 7.724697], - [-12.423147, 7.724573], - [-12.423553, 7.725104], - [-12.424082, 7.726071], - [-12.424332, 7.727475], - [-12.424457, 7.72916], - [-12.42452, 7.730503], - [-12.424831, 7.733903], - [-12.4253, 7.735994], - [-12.425332, 7.737336], - [-12.426173, 7.738741], - [-12.427017, 7.74002], - [-12.428577, 7.741301], - [-12.4302, 7.742143], - [-12.431979, 7.742891], - [-12.434778, 7.742604], - [-12.43747, 7.742455], - [-12.439063, 7.742143], - [-12.441902, 7.742173], - [-12.443899, 7.742081], - [-12.444092, 7.742144], - [-12.4446, 7.741899], - [-12.448099, 7.7415], - [-12.4494, 7.741542], - [-12.449253, 7.739221], - [-12.447614, 7.740744], - [-12.447612, 7.740744], - [-12.447485, 7.739684], - [-12.448532, 7.734813], - [-12.452013, 7.729125], - [-12.457205, 7.723874], - [-12.459909, 7.722959], - [-12.463171, 7.722215], - [-12.467869, 7.723171], - [-12.467916, 7.723202], - [-12.467916, 7.721342], - [-12.466714, 7.720837], - [-12.465512, 7.720559], - [-12.460691, 7.720335], - [-12.458606, 7.710725], - [-12.461892, 7.705598], - [-12.457605, 7.706244], - [-12.455015, 7.706325], - [-12.452992, 7.705516], - [-12.452351, 7.703762], - [-12.451937, 7.702623], - [-12.451522, 7.701536], - [-12.450434, 7.701018], - [-12.449037, 7.700967], - [-12.448986, 7.702053], - [-12.449347, 7.703088], - [-12.449762, 7.704021], - [-12.450072, 7.705418], - [-12.449711, 7.706454], - [-12.448829, 7.707387], - [-12.446966, 7.708525], - [-12.445672, 7.709457], - [-12.445049, 7.709836], - [-12.444738, 7.709295], - [-12.445258, 7.709043], - [-12.446137, 7.708267], - [-12.447069, 7.707594], - [-12.44824, 7.707085], - [-12.443448, 7.707084], - [-12.439543, 7.700319], - [-12.439768, 7.699927], - [-12.435668, 7.70022], - [-12.435668, 7.700218], - [-12.435673, 7.700216], - [-12.43125, 7.699583], - [-12.42875, 7.697084], - [-12.428717, 7.696923], - [-12.428333, 7.697489], - [-12.427428, 7.697742], - [-12.427424, 7.698256], - [-12.427167, 7.698254], - [-12.427169, 7.69774], - [-12.426395, 7.697734], - [-12.4265, 7.697579], - [-12.426914, 7.694261], - [-12.426158, 7.694256], - [-12.4259, 7.693998], - [-12.424388, 7.694099], - [-12.423576, 7.69437], - [-12.423442, 7.695142], - [-12.423565, 7.695914], - [-12.423564, 7.695915], - [-12.422278, 7.695392], - [-12.422412, 7.694621], - [-12.422155, 7.694361], - [-12.422029, 7.693846], - [-12.420738, 7.693967], - [-12.420477, 7.694223], - [-12.419961, 7.694349], - [-12.419685, 7.697178], - [-12.419301, 7.69692], - [-12.419303, 7.696405], - [-12.418791, 7.695628], - [-12.418542, 7.694083], - [-12.418158, 7.693436], - [-12.417386, 7.693174], - [-12.416351, 7.693424], - [-12.414805, 7.693158], - [-12.414292, 7.692382], - [-12.413136, 7.691731], - [-12.413098, 7.691304], - [-12.413905, 7.691327], - [-12.41375, 7.691249], - [-12.413749, 7.687917], - [-12.409583, 7.684584], - [-12.407917, 7.683749], - [-12.410416, 7.67375], - [-12.412082, 7.673749], - [-12.415071, 7.671359], - [-12.411895, 7.671358], - [-12.410415, 7.668794], - [-12.414201, 7.664954], - [-12.41553, 7.665186], - [-12.416764, 7.667801], - [-12.416901, 7.666773], - [-12.418089, 7.666478], - [-12.418323, 7.666265], - [-12.417427, 7.66523], - [-12.417186, 7.662396], - [-12.417522, 7.662152], - [-12.417141, 7.661489], - [-12.421046, 7.654724], - [-12.428859, 7.654723], - [-12.432765, 7.647958], - [-12.429635, 7.642537], - [-12.430208, 7.642713], - [-12.431802, 7.642488], - [-12.433199, 7.64326], - [-12.433749, 7.643331], - [-12.434217, 7.642814], - [-12.434128, 7.642036], - [-12.434744, 7.640701], - [-12.434062, 7.639719], - [-12.434372, 7.638133], - [-12.434091, 7.63669], - [-12.433443, 7.636186], - [-12.431607, 7.636566], - [-12.431418, 7.637303], - [-12.431161, 7.637628], - [-12.430941, 7.637586], - [-12.432765, 7.634427], - [-12.440577, 7.634426], - [-12.444217, 7.628123], - [-12.447749, 7.63011], - [-12.453653, 7.63011], - [-12.457559, 7.623345], - [-12.461266, 7.623344], - [-12.461318, 7.622333], - [-12.461715, 7.621675], - [-12.462144, 7.621335], - [-12.463859, 7.62126], - [-12.464578, 7.62127], - [-12.465212, 7.621419], - [-12.466031, 7.622195], - [-12.467065, 7.623187], - [-12.467637, 7.623588], - [-12.468183, 7.623737], - [-12.469074, 7.623355], - [-12.470062, 7.622525], - [-12.47122, 7.621738], - [-12.472797, 7.620782], - [-12.473312, 7.620557], - [-12.473709, 7.620175], - [-12.473964, 7.61922], - [-12.474137, 7.618013], - [-12.474374, 7.615784], - [-12.474835, 7.614571], - [-12.475296, 7.613795], - [-12.475705, 7.613294], - [-12.476292, 7.612884], - [-12.476473, 7.61308] - ] - ], - [ - [ - [-12.475099, 7.574599], - [-12.475099, 7.5735], - [-12.474299, 7.573499], - [-12.473799, 7.5721], - [-12.4729, 7.5721], - [-12.472399, 7.5746], - [-12.4713, 7.5774], - [-12.4715, 7.580399], - [-12.472599, 7.580099], - [-12.473499, 7.5788], - [-12.473999, 7.5754], - [-12.475099, 7.574599] - ] - ], - [ - [ - [-12.484599, 7.593799], - [-12.484599, 7.592099], - [-12.483799, 7.5896], - [-12.4826, 7.588199], - [-12.482599, 7.5865], - [-12.4818, 7.585999], - [-12.481299, 7.584], - [-12.480099, 7.583199], - [-12.479599, 7.5818], - [-12.4754, 7.584], - [-12.475399, 7.586499], - [-12.4743, 7.5885], - [-12.4743, 7.590999], - [-12.4757, 7.5957], - [-12.4776, 7.597599], - [-12.479899, 7.598199], - [-12.4804, 7.598999], - [-12.482399, 7.598999], - [-12.483199, 7.598199], - [-12.4832, 7.5963], - [-12.483799, 7.595999], - [-12.484, 7.594], - [-12.484599, 7.593799] - ] - ] - ], - "type": "MultiPolygon" - }, - "id": 569, - "properties": { - "cc:admin:id": ["39"], - "cc:oBld:total": 64, - "cc:pop:fifteen-to-twenty-four": 918.5840488766821, - "cc:pop:grid3-total": 4669.333274979482, - "cc:pop:kontur-total": 4891.646529967504, - "cc:pop:men": 2375.2864729796825, - "cc:pop:sixty-plus": 284.7254063834668, - "cc:pop:total": 4808.938043519787, - "cc:pop:under-five": 874.1492105738475, - "cc:pop:women": 2433.651570540104, - "cc:pop:women-fiften-to-forty-nine": 1199.248568941377, - "cc:pop:wp-total": 4905.33842628876, - "cc:pop:wp-total-UN": 5700.181758459022, - "cc:id": "569", - "cc:Name": "Victoria MCHP", - "cc:site": [-12.3309, 7.646], - "user:parentName": "Imperi", - "user:code": "OU_197419", - "user:orgUnitId": "dyn5pihalrJ", - "user:level": "4", - "user:parentId": "XEyIRFd9pct" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [ - [-11.568999, 6.962], - [-11.5679, 6.9613], - [-11.567899, 6.9604], - [-11.566499, 6.9596], - [-11.5651, 6.959599], - [-11.563999, 6.9587], - [-11.562599, 6.958699], - [-11.560699, 6.9574], - [-11.5571, 6.956499], - [-11.5538, 6.9543], - [-11.5526, 6.953999], - [-11.551299, 6.9529], - [-11.549599, 6.952899], - [-11.5438, 6.9504], - [-11.543499, 6.9499], - [-11.541, 6.949899], - [-11.539599, 6.9485], - [-11.5382, 6.9482], - [-11.536799, 6.9468], - [-11.5343, 6.945999], - [-11.533199, 6.9451], - [-11.5304, 6.944899], - [-11.528699, 6.944], - [-11.5276, 6.943999], - [-11.526299, 6.9429], - [-11.525099, 6.942899], - [-11.523199, 6.9415], - [-11.5212, 6.941299], - [-11.520399, 6.9404], - [-11.5182, 6.9396], - [-11.518199, 6.939], - [-11.515999, 6.9376], - [-11.514, 6.937099], - [-11.512899, 6.9363], - [-11.5113, 6.936299], - [-11.5093, 6.9354], - [-11.508999, 6.9346], - [-11.5071, 6.9338], - [-11.506199, 6.9326], - [-11.5046, 6.9321], - [-11.503799, 6.931], - [-11.5018, 6.930399], - [-11.501799, 6.9299], - [-11.5001, 6.9279], - [-11.499899, 6.9268], - [-11.4979, 6.924299], - [-11.497399, 6.9224], - [-11.495399, 6.922399], - [-11.493499, 6.921], - [-11.491499, 6.920699], - [-11.4893, 6.9199], - [-11.488499, 6.9188], - [-11.485699, 6.9178], - [-11.4777, 6.918199], - [-11.466699, 6.922099], - [-11.4615, 6.922199], - [-11.456999, 6.9176], - [-11.4531, 6.9208], - [-11.452399, 6.925399], - [-11.449199, 6.929899], - [-11.442699, 6.9332], - [-11.434199, 6.937099], - [-11.427799, 6.937099], - [-11.4213, 6.9358], - [-11.4155, 6.9325], - [-11.4167, 6.945499], - [-11.424499, 6.954599], - [-11.428026, 6.960704], - [-11.431893, 6.965154], - [-11.433458, 6.968784], - [-11.432691, 6.970789], - [-11.431823, 6.972287], - [-11.430756, 6.972739], - [-11.428634, 6.972456], - [-11.424294, 6.970607], - [-11.422917, 6.970613], - [-11.422917, 6.978749], - [-11.423556, 6.979549], - [-11.420692, 6.98451], - [-11.422083, 6.98625], - [-11.422082, 6.996249], - [-11.420417, 6.99875], - [-11.422082, 7.00125], - [-11.422082, 7.010416], - [-11.417083, 7.015417], - [-11.421249, 7.019584], - [-11.421249, 7.028749], - [-11.417813, 7.032186], - [-11.417696, 7.032124], - [-11.416608, 7.03113], - [-11.414752, 7.033912], - [-11.415024, 7.033913], - [-11.41893, 7.040678], - [-11.421249, 7.040679], - [-11.42125, 7.042916], - [-11.422916, 7.045416], - [-11.42125, 7.047084], - [-11.43125, 7.057083], - [-11.436249, 7.059583], - [-11.43375, 7.06375], - [-11.436693, 7.072583], - [-11.434583, 7.073295], - [-11.434583, 7.073749], - [-11.43875, 7.077083], - [-11.447396, 7.077084], - [-11.447691, 7.077512], - [-11.445297, 7.08166], - [-11.449202, 7.088425], - [-11.449582, 7.088426], - [-11.449583, 7.093749], - [-11.452082, 7.096249], - [-11.452083, 7.097084], - [-11.455417, 7.100416], - [-11.462916, 7.102917], - [-11.46375, 7.107916], - [-11.466249, 7.112084], - [-11.465417, 7.114584], - [-11.465417, 7.118749], - [-11.468749, 7.122084], - [-11.46625, 7.127084], - [-11.46625, 7.132916], - [-11.468749, 7.139583], - [-11.477082, 7.139584], - [-11.477083, 7.140416], - [-11.477917, 7.14125], - [-11.479582, 7.144584], - [-11.479583, 7.148132], - [-11.480258, 7.148133], - [-11.484164, 7.154897], - [-11.491976, 7.154897], - [-11.493006, 7.153116], - [-11.501249, 7.153749], - [-11.504856, 7.150144], - [-11.507602, 7.154897], - [-11.515414, 7.154898], - [-11.518722, 7.160626], - [-11.5188, 7.160499], - [-11.524899, 7.1557], - [-11.528199, 7.1519], - [-11.530699, 7.1473], - [-11.535099, 7.1415], - [-11.535999, 7.1395], - [-11.536699, 7.1362], - [-11.536799, 7.133299], - [-11.5366, 7.1156], - [-11.5363, 7.1107], - [-11.535799, 7.107899], - [-11.5334, 7.1021], - [-11.533397, 7.102084], - [-11.532699, 7.097999], - [-11.5324, 7.0903], - [-11.5318, 7.0861], - [-11.5294, 7.0803], - [-11.5289, 7.077799], - [-11.5292, 7.074], - [-11.5312, 7.069099], - [-11.5328, 7.063199], - [-11.534, 7.060799], - [-11.537899, 7.055899], - [-11.5392, 7.052599], - [-11.539499, 7.0481], - [-11.5388, 7.0442], - [-11.5362, 7.0386], - [-11.5357, 7.0359], - [-11.5355, 7.032099], - [-11.536099, 7.0272], - [-11.5375, 7.023599], - [-11.5411, 7.017999], - [-11.5422, 7.014399], - [-11.543099, 7.0066], - [-11.543799, 7.0029], - [-11.5455, 6.998299], - [-11.547099, 6.9928], - [-11.548599, 6.9895], - [-11.554799, 6.9798], - [-11.5598, 6.9695], - [-11.568999, 6.962] - ] - ], - [ - [ - [-11.534899, 6.9426], - [-11.5321, 6.9415], - [-11.531499, 6.9407], - [-11.5299, 6.940699], - [-11.5274, 6.9396], - [-11.527099, 6.9388], - [-11.5257, 6.938499], - [-11.525099, 6.9376], - [-11.523499, 6.937099], - [-11.519299, 6.9343], - [-11.5182, 6.934299], - [-11.517099, 6.9332], - [-11.515699, 6.932899], - [-11.514299, 6.9315], - [-11.513499, 6.931499], - [-11.511499, 6.9301], - [-11.5104, 6.930099], - [-11.509299, 6.929], - [-11.5082, 6.929], - [-11.5088, 6.930699], - [-11.5118, 6.931], - [-11.5132, 6.9321], - [-11.5146, 6.933999], - [-11.5157, 6.9343], - [-11.5165, 6.935699], - [-11.5193, 6.936], - [-11.5201, 6.9365], - [-11.521, 6.938199], - [-11.5229, 6.9379], - [-11.524299, 6.938799], - [-11.5246, 6.9396], - [-11.528499, 6.941499], - [-11.5299, 6.9415], - [-11.531799, 6.9424], - [-11.5326, 6.943199], - [-11.5337, 6.9432], - [-11.534599, 6.943999], - [-11.534899, 6.9426] - ] - ] - ], - "type": "MultiPolygon" - }, - "id": 570, - "properties": { - "cc:admin:id": ["127"], - "cc:oBld:total": 1207, - "cc:pop:fifteen-to-twenty-four": 3872.0555563057133, - "cc:pop:grid3-total": 7791.050061272447, - "cc:pop:kontur-total": 23726.412509102465, - "cc:pop:men": 10244.337355904654, - "cc:pop:sixty-plus": 1480.0417056740032, - "cc:pop:total": 21851.237323785106, - "cc:pop:under-five": 3690.3539447875983, - "cc:pop:women": 11606.899967880443, - "cc:pop:women-fiften-to-forty-nine": 5514.894900653527, - "cc:pop:wp-total": 17606.329885363943, - "cc:pop:wp-total-UN": 20411.361482615954, - "cc:id": "570", - "cc:Name": "Wai MCHP", - "cc:site": [-11.4542, 7.0472], - "user:parentName": "Soro-Gbeima", - "user:code": "OU_260412", - "user:orgUnitId": "zCSWBz2pyMd", - "user:level": "4", - "user:parentId": "d9iMR1MpuIO" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.50519, 7.419653], - [-11.502899, 7.414499], - [-11.502399, 7.410699], - [-11.501999, 7.404899], - [-11.501199, 7.401299], - [-11.499037, 7.396222], - [-11.497916, 7.399583], - [-11.495417, 7.402083], - [-11.48875, 7.402917], - [-11.489582, 7.412917], - [-11.488749, 7.41375], - [-11.479706, 7.41786], - [-11.477629, 7.414266], - [-11.470932, 7.414266], - [-11.469582, 7.412917], - [-11.462917, 7.412917], - [-11.462916, 7.418749], - [-11.452965, 7.419515], - [-11.452649, 7.418284], - [-11.451249, 7.41875], - [-11.447083, 7.422916], - [-11.442082, 7.412917], - [-11.43875, 7.412917], - [-11.430693, 7.418776], - [-11.430209, 7.423122], - [-11.43693, 7.428899], - [-11.433546, 7.431424], - [-11.430994, 7.432972], - [-11.426249, 7.429584], - [-11.422917, 7.430417], - [-11.421249, 7.435417], - [-11.41625, 7.444583], - [-11.412917, 7.445417], - [-11.410416, 7.447916], - [-11.407917, 7.447917], - [-11.409582, 7.450417], - [-11.409582, 7.457917], - [-11.404582, 7.462916], - [-11.40338, 7.463431], - [-11.401971, 7.463432], - [-11.401506, 7.464235], - [-11.39875, 7.465417], - [-11.397917, 7.469583], - [-11.39875, 7.470417], - [-11.407916, 7.476249], - [-11.40875, 7.478749], - [-11.410416, 7.479583], - [-11.41625, 7.482083], - [-11.421249, 7.480417], - [-11.420498, 7.489434], - [-11.421804, 7.490069], - [-11.427082, 7.488749], - [-11.427917, 7.487917], - [-11.429193, 7.487277], - [-11.429215, 7.487197], - [-11.429881, 7.486249], - [-11.442082, 7.486249], - [-11.442083, 7.479888], - [-11.44267, 7.480081], - [-11.442381, 7.478905], - [-11.445416, 7.477084], - [-11.44875, 7.481249], - [-11.451249, 7.481249], - [-11.45125, 7.470417], - [-11.456249, 7.470417], - [-11.460417, 7.474583], - [-11.470416, 7.474583], - [-11.472916, 7.472083], - [-11.469583, 7.462084], - [-11.476249, 7.460417], - [-11.48125, 7.465416], - [-11.482916, 7.465416], - [-11.487082, 7.457083], - [-11.487083, 7.45375], - [-11.487047, 7.453713], - [-11.488749, 7.453712], - [-11.48875, 7.446249], - [-11.492082, 7.442084], - [-11.494583, 7.440417], - [-11.503174, 7.440416], - [-11.5029, 7.4373], - [-11.503299, 7.4347], - [-11.505299, 7.4303], - [-11.5059, 7.427499], - [-11.505999, 7.423599], - [-11.5053, 7.4199], - [-11.50519, 7.419653] - ] - ], - "type": "Polygon" - }, - "id": 571, - "properties": { - "cc:admin:id": ["5"], - "cc:oBld:total": 7, - "cc:pop:fifteen-to-twenty-four": 1014.0664266166782, - "cc:pop:grid3-total": 2875.8164060016124, - "cc:pop:kontur-total": 5920.465903382001, - "cc:pop:men": 2693.445856567312, - "cc:pop:sixty-plus": 428.2562261501048, - "cc:pop:total": 5553.043018873075, - "cc:pop:under-five": 953.8649817892853, - "cc:pop:women": 2859.5971623057626, - "cc:pop:women-fiften-to-forty-nine": 1349.172973759633, - "cc:pop:wp-total": 5265.876197930037, - "cc:pop:wp-total-UN": 6100.143680809381, - "cc:id": "571", - "cc:Name": "Waiima MCHP", - "cc:site": [-11.4531, 7.4467], - "user:parentName": "Barri", - "user:code": "OU_260431", - "user:orgUnitId": "YPSCWmJ3TyN", - "user:level": "4", - "user:parentId": "RzKeCma9qb1" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.134619, 9.681627], - [-11.130713, 9.674861], - [-11.128185, 9.674861], - [-11.128008, 9.675379], - [-11.127545, 9.675421], - [-11.126924, 9.675112], - [-11.12666, 9.676082], - [-11.126314, 9.676214], - [-11.125535, 9.675058], - [-11.124988, 9.674861], - [-11.1229, 9.67486], - [-11.121623, 9.672647], - [-11.121558, 9.672624], - [-11.120782, 9.672683], - [-11.120306, 9.672903], - [-11.119599, 9.672741], - [-11.118423, 9.673793], - [-11.116592, 9.673948], - [-11.115784, 9.673687], - [-11.115306, 9.673905], - [-11.114407, 9.673383], - [-11.112153, 9.672891], - [-11.112041, 9.6729], - [-11.111704, 9.672316], - [-11.11561, 9.66555], - [-11.111703, 9.658785], - [-11.103891, 9.658784], - [-11.099985, 9.652019], - [-11.09383, 9.652019], - [-11.093749, 9.652083], - [-11.084583, 9.652082], - [-11.081249, 9.64875], - [-11.07889, 9.647963], - [-11.076547, 9.652018], - [-11.068735, 9.652018], - [-11.064829, 9.645254], - [-11.068735, 9.638488], - [-11.064828, 9.631722], - [-11.057017, 9.631721], - [-11.05311, 9.624956], - [-11.045297, 9.624955], - [-11.041392, 9.61819], - [-11.045297, 9.611424], - [-11.041561, 9.60495], - [-11.044582, 9.600416], - [-11.039583, 9.587083], - [-11.043749, 9.582082], - [-11.042916, 9.572916], - [-11.03375, 9.569583], - [-11.02625, 9.585416], - [-11.023768, 9.584708], - [-11.023647, 9.584883], - [-11.023199, 9.58587], - [-11.022961, 9.586022], - [-11.023005, 9.586573], - [-11.022748, 9.587051], - [-11.022084, 9.587706], - [-11.020006, 9.588607], - [-11.019753, 9.588979], - [-11.016378, 9.583135], - [-11.017916, 9.580469], - [-11.017916, 9.579583], - [-11.017083, 9.579583], - [-11.016932, 9.580186], - [-11.01693, 9.580187], - [-11.015136, 9.57708], - [-11.007325, 9.57708], - [-11.006079, 9.579237], - [-11.006077, 9.579238], - [-11.005417, 9.577916], - [-11.005416, 9.567083], - [-10.99875, 9.567083], - [-10.997083, 9.568749], - [-10.995416, 9.562917], - [-10.992916, 9.560417], - [-10.989583, 9.559583], - [-10.982113, 9.566305], - [-10.980721, 9.565161], - [-10.979738, 9.563044], - [-10.979732, 9.561895], - [-10.979282, 9.56065], - [-10.979277, 9.560624], - [-10.97125, 9.562082], - [-10.971249, 9.561249], - [-10.963749, 9.55375], - [-10.95875, 9.556249], - [-10.957083, 9.555417], - [-10.947671, 9.566397], - [-10.947669, 9.566396], - [-10.947878, 9.56493], - [-10.948475, 9.564287], - [-10.948536, 9.56302], - [-10.948953, 9.561715], - [-10.948711, 9.560458], - [-10.948563, 9.560072], - [-10.948037, 9.560333], - [-10.947196, 9.56069], - [-10.947053, 9.560489], - [-10.947251, 9.559849], - [-10.947258, 9.559838], - [-10.947629, 9.559486], - [-10.945567, 9.555917], - [-10.941569, 9.555917], - [-10.941955, 9.560553], - [-10.94209, 9.560614], - [-10.942361, 9.560947], - [-10.941259, 9.561491], - [-10.940013, 9.562064], - [-10.939112, 9.562694], - [-10.938384, 9.563564], - [-10.937155, 9.563173], - [-10.935513, 9.562015], - [-10.934005, 9.562094], - [-10.933212, 9.56194], - [-10.932622, 9.561624], - [-10.932547, 9.560977], - [-10.933392, 9.559754], - [-10.92875, 9.560417], - [-10.923749, 9.564582], - [-10.918749, 9.559583], - [-10.912083, 9.559583], - [-10.912083, 9.566249], - [-10.911249, 9.572082], - [-10.907381, 9.57131], - [-10.907381, 9.571308], - [-10.907717, 9.571016], - [-10.907912, 9.570417], - [-10.90625, 9.570416], - [-10.906249, 9.569583], - [-10.902917, 9.56875], - [-10.902916, 9.567917], - [-10.897083, 9.567083], - [-10.896249, 9.571249], - [-10.892917, 9.57125], - [-10.890416, 9.572082], - [-10.887082, 9.571249], - [-10.882083, 9.56625], - [-10.876156, 9.572177], - [-10.8781, 9.5738], - [-10.8955, 9.593899], - [-10.904099, 9.5943], - [-10.910999, 9.601899], - [-10.914899, 9.632999], - [-10.920899, 9.641699], - [-10.9214, 9.65], - [-10.9262, 9.654599], - [-10.932899, 9.656399], - [-10.944099, 9.6562], - [-10.954699, 9.657899], - [-10.962799, 9.6641], - [-10.967899, 9.6737], - [-10.9709, 9.6979], - [-10.977399, 9.713999], - [-10.983799, 9.724999], - [-11.003999, 9.750799], - [-11.0126, 9.7593], - [-11.038699, 9.797699], - [-11.047099, 9.805899], - [-11.0503, 9.802499], - [-11.056599, 9.7948], - [-11.0585, 9.792099], - [-11.0618, 9.785299], - [-11.0627, 9.782999], - [-11.064, 9.7771], - [-11.065399, 9.7748], - [-11.0678, 9.771999], - [-11.076199, 9.7637], - [-11.079099, 9.7605], - [-11.0809, 9.757899], - [-11.0828, 9.753999], - [-11.0849, 9.751299], - [-11.0902, 9.745699], - [-11.092099, 9.742599], - [-11.093399, 9.7369], - [-11.0955, 9.731699], - [-11.0972, 9.7249], - [-11.099, 9.721999], - [-11.1014, 9.719299], - [-11.107599, 9.7133], - [-11.111399, 9.7104], - [-11.1147, 9.708999], - [-11.1189, 9.706599], - [-11.1221, 9.705299], - [-11.1264, 9.702899], - [-11.133399, 9.700299], - [-11.133559, 9.693323], - [-11.130714, 9.688392], - [-11.134619, 9.681627] - ] - ], - "type": "Polygon" - }, - "id": 572, - "properties": { - "cc:admin:id": ["95"], - "cc:oBld:total": 956, - "cc:pop:fifteen-to-twenty-four": 2149.3706658029564, - "cc:pop:grid3-total": 9418.326141955715, - "cc:pop:kontur-total": 12674.618590253962, - "cc:pop:men": 5573.9274210387, - "cc:pop:sixty-plus": 742.6810502212211, - "cc:pop:total": 11894.03086384116, - "cc:pop:under-five": 1943.7599350412097, - "cc:pop:women": 6320.103442802464, - "cc:pop:women-fiften-to-forty-nine": 3072.847950633125, - "cc:pop:wp-total": 9015.737346429181, - "cc:pop:wp-total-UN": 10453.888614994601, - "cc:id": "572", - "cc:Name": "Walia MCHP", - "cc:site": [-10.9602, 9.6549], - "user:parentName": "Mongo", - "user:code": "OU_226247", - "user:orgUnitId": "m0PiiU5BteW", - "user:level": "4", - "user:parentId": "OTFepb1k9Db" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.697916, 8.503591], - [-12.697916, 8.497917], - [-12.694583, 8.497916], - [-12.689211, 8.495231], - [-12.689211, 8.49523], - [-12.689313, 8.495049], - [-12.687917, 8.494584], - [-12.684582, 8.490417], - [-12.682917, 8.490417], - [-12.682658, 8.490514], - [-12.67986, 8.490513], - [-12.677627, 8.486647], - [-12.67736, 8.487385], - [-12.676854, 8.487758], - [-12.676545, 8.488593], - [-12.675596, 8.488759], - [-12.674373, 8.487902], - [-12.673446, 8.48771], - [-12.672868, 8.487332], - [-12.670978, 8.487929], - [-12.670795, 8.487763], - [-12.670708, 8.487293], - [-12.670338, 8.486931], - [-12.670244, 8.486011], - [-12.670472, 8.485347], - [-12.670852, 8.484987], - [-12.671599, 8.484661], - [-12.672615, 8.484492], - [-12.671892, 8.483105], - [-12.671323, 8.481396], - [-12.670411, 8.478866], - [-12.670117, 8.478865], - [-12.669471, 8.478551], - [-12.670346, 8.4775], - [-12.664847, 8.477499], - [-12.664293, 8.47654], - [-12.664583, 8.476249], - [-12.666249, 8.470417], - [-12.655921, 8.467466], - [-12.655179, 8.469801], - [-12.654483, 8.471255], - [-12.653121, 8.472346], - [-12.651643, 8.472941], - [-12.647083, 8.464584], - [-12.64625, 8.464583], - [-12.646509, 8.4625], - [-12.642467, 8.462499], - [-12.638561, 8.455734], - [-12.635251, 8.455733], - [-12.635416, 8.45375], - [-12.626445, 8.453749], - [-12.626572, 8.453503], - [-12.626664, 8.452961], - [-12.626422, 8.451586], - [-12.625416, 8.451249], - [-12.622916, 8.447917], - [-12.61625, 8.447917], - [-12.614582, 8.448749], - [-12.61125, 8.44875], - [-12.609582, 8.447917], - [-12.604351, 8.447263], - [-12.605699, 8.4505], - [-12.605499, 8.4546], - [-12.603599, 8.457399], - [-12.5999, 8.459499], - [-12.589, 8.461199], - [-12.580899, 8.464], - [-12.5731, 8.4643], - [-12.580499, 8.476299], - [-12.5823, 8.4802], - [-12.5847, 8.4845], - [-12.5861, 8.4876], - [-12.591699, 8.494999], - [-12.593699, 8.498699], - [-12.5958, 8.5012], - [-12.597899, 8.502599], - [-12.600999, 8.503899], - [-12.6038, 8.5056], - [-12.6078, 8.5072], - [-12.612199, 8.509599], - [-12.6161, 8.5113], - [-12.6197, 8.5133], - [-12.6281, 8.5172], - [-12.633999, 8.518599], - [-12.6394, 8.5209], - [-12.6442, 8.5214], - [-12.652999, 8.521499], - [-12.6566, 8.5222], - [-12.666099, 8.527099], - [-12.671899, 8.532199], - [-12.675099, 8.534699], - [-12.680199, 8.537499], - [-12.681265, 8.538734], - [-12.683507, 8.536492], - [-12.683601, 8.536586], - [-12.68407, 8.536687], - [-12.687281, 8.531125], - [-12.683376, 8.52436], - [-12.684672, 8.522113], - [-12.68386, 8.521288], - [-12.683599, 8.520778], - [-12.683769, 8.520486], - [-12.691581, 8.520485], - [-12.695487, 8.513719], - [-12.693086, 8.509558], - [-12.693616, 8.504245], - [-12.694118, 8.50417], - [-12.695358, 8.504167], - [-12.6978, 8.5036], - [-12.697916, 8.503591] - ] - ], - "type": "Polygon" - }, - "id": 573, - "properties": { - "cc:admin:id": ["62"], - "cc:oBld:total": 280, - "cc:pop:fifteen-to-twenty-four": 931.5130224402739, - "cc:pop:grid3-total": 7671.647596792588, - "cc:pop:kontur-total": 5272.103070319003, - "cc:pop:men": 2427.7892820197467, - "cc:pop:sixty-plus": 300.4370935127961, - "cc:pop:total": 5161.694046018377, - "cc:pop:under-five": 853.6554228461086, - "cc:pop:women": 2733.9047639986316, - "cc:pop:women-fiften-to-forty-nine": 1391.78994089407, - "cc:pop:wp-total": 4550.691049353884, - "cc:pop:wp-total-UN": 5278.706111357885, - "cc:id": "573", - "cc:Name": "Warima MCHP", - "cc:site": [-12.6382, 8.4899], - "user:parentName": "Koya", - "user:code": "OU_254971", - "user:orgUnitId": "DXegteybeb5", - "user:level": "4", - "user:parentId": "pRHGAROvuyI" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.955386, 8.172577], - [-10.954899, 8.171299], - [-10.9533, 8.1691], - [-10.9507, 8.1664], - [-10.946099, 8.162699], - [-10.9397, 8.1593], - [-10.9377, 8.156299], - [-10.9379, 8.153099], - [-10.9402, 8.150299], - [-10.9464, 8.147399], - [-10.9486, 8.1472], - [-10.952916, 8.14904], - [-10.952916, 8.13875], - [-10.942916, 8.138749], - [-10.94202, 8.138391], - [-10.940261, 8.136809], - [-10.94002, 8.136292], - [-10.940191, 8.136004], - [-10.940749, 8.135816], - [-10.941304, 8.135471], - [-10.94125, 8.135417], - [-10.93875, 8.134584], - [-10.93125, 8.137083], - [-10.930417, 8.137916], - [-10.927083, 8.135417], - [-10.925416, 8.130417], - [-10.919583, 8.125417], - [-10.919583, 8.125184], - [-10.919987, 8.125222], - [-10.921517, 8.123208], - [-10.921808, 8.122212], - [-10.921495, 8.121784], - [-10.921545, 8.121478], - [-10.921767, 8.121122], - [-10.922397, 8.12072], - [-10.923197, 8.120472], - [-10.923378, 8.119937], - [-10.923303, 8.119181], - [-10.923597, 8.118831], - [-10.923905, 8.118758], - [-10.924104, 8.11892], - [-10.924262, 8.119378], - [-10.924594, 8.118881], - [-10.924351, 8.118278], - [-10.92445, 8.118163], - [-10.925152, 8.118362], - [-10.925433, 8.118612], - [-10.925728, 8.1186], - [-10.92606, 8.118325], - [-10.926519, 8.11735], - [-10.927671, 8.116994], - [-10.929226, 8.11595], - [-10.929189, 8.115814], - [-10.929598, 8.115685], - [-10.930792, 8.114787], - [-10.93117, 8.114464], - [-10.929582, 8.112084], - [-10.924583, 8.109583], - [-10.923412, 8.106657], - [-10.922699, 8.1077], - [-10.919899, 8.1128], - [-10.915099, 8.1201], - [-10.912399, 8.1265], - [-10.910499, 8.1328], - [-10.9081, 8.141999], - [-10.9062, 8.145399], - [-10.902799, 8.148799], - [-10.8962, 8.152099], - [-10.8935, 8.154299], - [-10.891, 8.1595], - [-10.8904, 8.1636], - [-10.8904, 8.177099], - [-10.889899, 8.1814], - [-10.888399, 8.185099], - [-10.8826, 8.1914], - [-10.8803, 8.196499], - [-10.8766, 8.216099], - [-10.8765, 8.2195], - [-10.876999, 8.2252], - [-10.8736, 8.231299], - [-10.871199, 8.2365], - [-10.868099, 8.2418], - [-10.866699, 8.2451], - [-10.865199, 8.25], - [-10.8648, 8.253], - [-10.8648, 8.2603], - [-10.8656, 8.263699], - [-10.8681, 8.267099], - [-10.873199, 8.269899], - [-10.877299, 8.270799], - [-10.8846, 8.270999], - [-10.891899, 8.2703], - [-10.8961, 8.268799], - [-10.9009, 8.265199], - [-10.907399, 8.2587], - [-10.9126, 8.251599], - [-10.915, 8.245999], - [-10.9188, 8.2344], - [-10.921799, 8.2306], - [-10.923799, 8.2271], - [-10.9254, 8.223599], - [-10.926699, 8.2196], - [-10.927799, 8.2176], - [-10.931399, 8.2149], - [-10.9348, 8.211899], - [-10.937999, 8.2087], - [-10.940199, 8.2059], - [-10.942, 8.201899], - [-10.946399, 8.1934], - [-10.950199, 8.1887], - [-10.9516, 8.186499], - [-10.9554, 8.178999], - [-10.955999, 8.175599], - [-10.9557, 8.1734], - [-10.955386, 8.172577] - ] - ], - "type": "Polygon" - }, - "id": 574, - "properties": { - "cc:admin:id": ["86"], - "cc:oBld:total": 1868, - "cc:pop:fifteen-to-twenty-four": 2680.8547950727807, - "cc:pop:grid3-total": 15138.51804724625, - "cc:pop:kontur-total": 13795.941024421334, - "cc:pop:men": 6952.709108875394, - "cc:pop:sixty-plus": 825.1789735522269, - "cc:pop:total": 13888.484265172574, - "cc:pop:under-five": 2190.0558756786113, - "cc:pop:women": 6935.775156297181, - "cc:pop:women-fiften-to-forty-nine": 3418.252419039128, - "cc:pop:wp-total": 11304.991005549886, - "cc:pop:wp-total-UN": 13116.2463810703, - "cc:id": "574", - "cc:Name": "Weima CHC", - "cc:site": [-10.9459, 8.1675], - "user:parentName": "Lower Bambara", - "user:code": "OU_222671", - "user:orgUnitId": "CKkE4GBJekz", - "user:level": "4", - "user:parentId": "hdEuw2ugkVF" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.189583, 8.440416], - [-13.190416, 8.437916], - [-13.189582, 8.432084], - [-13.188749, 8.43125], - [-13.185416, 8.431249], - [-13.182916, 8.42625], - [-13.17875, 8.429584], - [-13.178749, 8.430712], - [-13.173029, 8.430712], - [-13.173029, 8.430711], - [-13.173629, 8.430349], - [-13.173478, 8.429786], - [-13.173335, 8.429242], - [-13.173354, 8.429135], - [-13.172396, 8.429311], - [-13.171373, 8.429839], - [-13.170158, 8.427737], - [-13.169782, 8.427918], - [-13.169505, 8.428173], - [-13.168964, 8.428641], - [-13.168772, 8.428798], - [-13.168418, 8.429104], - [-13.1674, 8.430012], - [-13.16683, 8.430353], - [-13.166199, 8.430725], - [-13.165736, 8.431134], - [-13.165491, 8.4314], - [-13.165122, 8.43166], - [-13.164549, 8.432005], - [-13.164547, 8.432004], - [-13.164287, 8.431246], - [-13.163601, 8.431621], - [-13.162953, 8.43187], - [-13.162887, 8.431904], - [-13.163055, 8.432417], - [-13.161899, 8.433023], - [-13.16143, 8.433477], - [-13.161071, 8.433202], - [-13.160675, 8.432843], - [-13.160365, 8.433115], - [-13.160047, 8.432582], - [-13.159232, 8.433032], - [-13.159213, 8.433066], - [-13.159378, 8.433152], - [-13.159378, 8.433153], - [-13.15814, 8.434145], - [-13.158785, 8.434471], - [-13.158864, 8.434692], - [-13.157904, 8.435139], - [-13.157334, 8.434302], - [-13.157331, 8.434405], - [-13.156806, 8.435313], - [-13.15729, 8.436782], - [-13.157244, 8.439447], - [-13.15724, 8.439448], - [-13.156636, 8.439501], - [-13.156607, 8.439233], - [-13.15576, 8.438064], - [-13.155736, 8.436724], - [-13.155162, 8.436155], - [-13.154344, 8.436145], - [-13.15421, 8.436534], - [-13.153747, 8.436414], - [-13.153534, 8.436286], - [-13.153646, 8.436145], - [-13.153284, 8.436004], - [-13.152485, 8.436225], - [-13.152433, 8.435806], - [-13.153085, 8.43528], - [-13.14897, 8.435279], - [-13.146857, 8.432481], - [-13.143047, 8.430063], - [-13.143022, 8.430105], - [-13.155148, 8.449697], - [-13.155183, 8.449638], - [-13.156327, 8.449638], - [-13.158462, 8.452344], - [-13.159009, 8.45328], - [-13.159997, 8.453983], - [-13.160693, 8.454157], - [-13.16133, 8.454363], - [-13.161905, 8.45464], - [-13.162741, 8.455058], - [-13.163671, 8.455348], - [-13.165139, 8.455631], - [-13.166073, 8.455611], - [-13.16626, 8.4556], - [-13.166453, 8.45571], - [-13.166605, 8.455903], - [-13.166811, 8.45638], - [-13.167072, 8.4567], - [-13.167419, 8.45709], - [-13.167677, 8.457399], - [-13.168463, 8.459072], - [-13.168864, 8.459348], - [-13.169456, 8.457487], - [-13.168855, 8.456786], - [-13.168244, 8.457504], - [-13.167926, 8.45752], - [-13.167822, 8.45725], - [-13.167982, 8.456955], - [-13.167659, 8.456348], - [-13.167676, 8.45595], - [-13.167006, 8.455306], - [-13.166046, 8.454922], - [-13.163584, 8.450657], - [-13.163884, 8.450579], - [-13.164523, 8.450377], - [-13.165158, 8.450322], - [-13.165718, 8.44999], - [-13.16593, 8.450516], - [-13.166093, 8.450873], - [-13.166134, 8.450983], - [-13.166363, 8.451515], - [-13.166621, 8.452126], - [-13.167992, 8.451619], - [-13.168155, 8.451806], - [-13.169166, 8.452989], - [-13.169223, 8.452938], - [-13.168729, 8.452357], - [-13.168854, 8.452261], - [-13.168561, 8.451821], - [-13.168412, 8.451393], - [-13.168124, 8.450864], - [-13.167626, 8.451077], - [-13.167215, 8.450583], - [-13.167382, 8.450466], - [-13.167917, 8.450248], - [-13.167735, 8.449754], - [-13.168411, 8.449512], - [-13.16827, 8.448969], - [-13.168975, 8.448726], - [-13.169597, 8.44852], - [-13.169815, 8.449], - [-13.169949, 8.449425], - [-13.170464, 8.449246], - [-13.170381, 8.448807], - [-13.171336, 8.448508], - [-13.17127, 8.44794], - [-13.17198, 8.447765], - [-13.172655, 8.447463], - [-13.173262, 8.44749], - [-13.174301, 8.447577], - [-13.17452, 8.447598], - [-13.176456, 8.447571], - [-13.178088, 8.446844], - [-13.178676, 8.446923], - [-13.179878, 8.446419], - [-13.180269, 8.446332], - [-13.180978, 8.446477], - [-13.17969, 8.444244], - [-13.182833, 8.438798], - [-13.182916, 8.438846], - [-13.182917, 8.439583], - [-13.187082, 8.439584], - [-13.189583, 8.440416] - ] - ], - "type": "Polygon" - }, - "id": 575, - "properties": { - "cc:admin:id": ["112"], - "cc:oBld:total": 10413, - "cc:pop:fifteen-to-twenty-four": 23977.667743197777, - "cc:pop:grid3-total": 83480.75077425141, - "cc:pop:kontur-total": 104606.48027899752, - "cc:pop:men": 51409.676214703686, - "cc:pop:sixty-plus": 8134.422437172927, - "cc:pop:total": 104823.79491327486, - "cc:pop:under-five": 12101.89867012175, - "cc:pop:women": 53414.11869857121, - "cc:pop:women-fiften-to-forty-nine": 28570.386789456985, - "cc:pop:wp-total": 95362.44112518906, - "cc:pop:wp-total-UN": 110584.4299003129, - "cc:id": "575", - "cc:Name": "Wellington Health Centre", - "cc:site": [-13.1678, 8.4479], - "user:parentName": "Freetown", - "user:code": "OU_278317", - "user:orgUnitId": "Qc9lf4VM9bD", - "user:level": "4", - "user:parentId": "C9uduqDZr9d" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.192418, 8.460074], - [-13.192295, 8.459869], - [-13.191832, 8.459656], - [-13.191142, 8.459723], - [-13.190935, 8.459634], - [-13.190915, 8.459357], - [-13.191061, 8.458229], - [-13.190917, 8.457897], - [-13.190203, 8.458682], - [-13.189578, 8.458613], - [-13.189241, 8.4578], - [-13.188696, 8.457294], - [-13.188839, 8.457167], - [-13.188764, 8.456894], - [-13.188143, 8.457135], - [-13.187756, 8.457755], - [-13.187464, 8.45879], - [-13.186817, 8.45917], - [-13.186271, 8.458651], - [-13.18537, 8.459647], - [-13.184954, 8.459284], - [-13.18421, 8.458886], - [-13.183538, 8.46059], - [-13.183492, 8.460683], - [-13.183324, 8.46093], - [-13.183153, 8.461189], - [-13.182524, 8.462194], - [-13.181954, 8.462533], - [-13.181572, 8.462988], - [-13.180972, 8.463634], - [-13.180286, 8.464761], - [-13.179994, 8.46452], - [-13.179729, 8.464322], - [-13.179594, 8.464175], - [-13.179204, 8.463855], - [-13.178906, 8.46362], - [-13.178448, 8.463308], - [-13.178192, 8.463058], - [-13.178171, 8.463079], - [-13.17742, 8.46246], - [-13.177185, 8.46277], - [-13.176099, 8.46347], - [-13.17623, 8.463591], - [-13.176753, 8.464103], - [-13.176637, 8.464444], - [-13.176715, 8.464993], - [-13.175915, 8.465726], - [-13.174709, 8.46446], - [-13.174485, 8.464755], - [-13.174356, 8.465144], - [-13.173508, 8.466285], - [-13.174558, 8.466275], - [-13.174821, 8.466452], - [-13.174827, 8.466445], - [-13.175363, 8.466004], - [-13.17539, 8.466033], - [-13.176006, 8.466422], - [-13.176649, 8.46688], - [-13.1769, 8.466746], - [-13.177144, 8.467004], - [-13.177909, 8.467781], - [-13.178143, 8.468237], - [-13.178471, 8.468582], - [-13.17873, 8.468839], - [-13.17896, 8.469052], - [-13.179286, 8.469365], - [-13.179909, 8.469983], - [-13.180349, 8.470424], - [-13.180678, 8.470689], - [-13.180842, 8.47045], - [-13.181497, 8.469782], - [-13.182589, 8.470409], - [-13.18222, 8.471112], - [-13.18275, 8.471289], - [-13.184254, 8.471881], - [-13.184941, 8.472249], - [-13.18521, 8.472], - [-13.185458, 8.47183], - [-13.185715, 8.471529], - [-13.185756, 8.471476], - [-13.185909, 8.471167], - [-13.18604, 8.470853], - [-13.186949, 8.471274], - [-13.192246, 8.46263], - [-13.191712, 8.46242], - [-13.191496, 8.461785], - [-13.190927, 8.461423], - [-13.191713, 8.460789], - [-13.192418, 8.460074] - ] - ], - "type": "Polygon" - }, - "id": 576, - "properties": { - "cc:admin:id": ["112"], - "cc:oBld:total": 3394, - "cc:pop:fifteen-to-twenty-four": 6368.840498368108, - "cc:pop:grid3-total": 43238.477691699336, - "cc:pop:kontur-total": 29793.458444595126, - "cc:pop:men": 13640.186467468673, - "cc:pop:sixty-plus": 2156.4705407754227, - "cc:pop:total": 27824.658218325694, - "cc:pop:under-five": 3202.015747478458, - "cc:pop:women": 14184.471750857021, - "cc:pop:women-fiften-to-forty-nine": 7585.763038935554, - "cc:pop:wp-total": 33720.78280149167, - "cc:pop:wp-total-UN": 39086.98072158672, - "cc:id": "576", - "cc:Name": "Wesleyan Health Clinic", - "cc:site": [-13.1807, 8.468], - "user:parentName": "Freetown", - "user:code": "OU_278315", - "user:orgUnitId": "XJ6DqDkMlPv", - "user:level": "4", - "user:parentId": "C9uduqDZr9d" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.273676, 8.466341], - [-13.273263, 8.465742], - [-13.272768, 8.464323], - [-13.272535, 8.463561], - [-13.272343, 8.462985], - [-13.272433, 8.462951], - [-13.272099, 8.462002], - [-13.27168, 8.461223], - [-13.271536, 8.460995], - [-13.27146, 8.461033], - [-13.270627, 8.459619], - [-13.270353, 8.459305], - [-13.270274, 8.459306], - [-13.269853, 8.459995], - [-13.269635, 8.460463], - [-13.269538, 8.460721], - [-13.269459, 8.461067], - [-13.269385, 8.461082], - [-13.269307, 8.461102], - [-13.268375, 8.463121], - [-13.267912, 8.462892], - [-13.268281, 8.461977], - [-13.267464, 8.461661], - [-13.267364, 8.461853], - [-13.265978, 8.46155], - [-13.265524, 8.461366], - [-13.265464, 8.461054], - [-13.265386, 8.460924], - [-13.265359, 8.461192], - [-13.264858, 8.461273], - [-13.264811, 8.46183], - [-13.264631, 8.462083], - [-13.264239, 8.462551], - [-13.26395, 8.462369], - [-13.263553, 8.462372], - [-13.263761, 8.463587], - [-13.263473, 8.464397], - [-13.263458, 8.465087], - [-13.262982, 8.466101], - [-13.262353, 8.466528], - [-13.262067, 8.466651], - [-13.261504, 8.467446], - [-13.261434, 8.467494], - [-13.2608, 8.466651], - [-13.260609, 8.466868], - [-13.260365, 8.467188], - [-13.260011, 8.468086], - [-13.259525, 8.468388], - [-13.259268, 8.469007], - [-13.259285, 8.470397], - [-13.259177, 8.470505], - [-13.259337, 8.471163], - [-13.259853, 8.471066], - [-13.259956, 8.471633], - [-13.260208, 8.471559], - [-13.261333, 8.471255], - [-13.262433, 8.470855], - [-13.262435, 8.470856], - [-13.262436, 8.471599], - [-13.262217, 8.472123], - [-13.26177, 8.473078], - [-13.261294, 8.47407], - [-13.261291, 8.474909], - [-13.261651, 8.475804], - [-13.261699, 8.47669], - [-13.261691, 8.476854], - [-13.261548, 8.477123], - [-13.26048, 8.47745], - [-13.260305, 8.477793], - [-13.26047, 8.478183], - [-13.261175, 8.478308], - [-13.26145, 8.478609], - [-13.261979, 8.479234], - [-13.261085, 8.479575], - [-13.260945, 8.480614], - [-13.260943, 8.480615], - [-13.260865, 8.480599], - [-13.260977, 8.48128], - [-13.261376, 8.481417], - [-13.261382, 8.482082], - [-13.260304, 8.48242], - [-13.259628, 8.482792], - [-13.260668, 8.482942], - [-13.261604, 8.482625], - [-13.262089, 8.482517], - [-13.262697, 8.482805], - [-13.262847, 8.482827], - [-13.2631, 8.48364], - [-13.264681, 8.484351], - [-13.264785, 8.484027], - [-13.265065, 8.48341], - [-13.265673, 8.48371], - [-13.267057, 8.483121], - [-13.267188, 8.482934], - [-13.267121, 8.482686], - [-13.266496, 8.482251], - [-13.26594, 8.48175], - [-13.265413, 8.480772], - [-13.265751, 8.479864], - [-13.265605, 8.478765], - [-13.26551, 8.47781], - [-13.26586, 8.476841], - [-13.266085, 8.475737], - [-13.266579, 8.475619], - [-13.26798, 8.475363], - [-13.268266, 8.474952], - [-13.268717, 8.47512], - [-13.269133, 8.475216], - [-13.269409, 8.47508], - [-13.269577, 8.475067], - [-13.270182, 8.475121], - [-13.270459, 8.474114], - [-13.271054, 8.473501], - [-13.271953, 8.472873], - [-13.272165, 8.47227], - [-13.272689, 8.471561], - [-13.272736, 8.470886], - [-13.272107, 8.470505], - [-13.270809, 8.470388], - [-13.269751, 8.470017], - [-13.269683, 8.470032], - [-13.269611, 8.46991], - [-13.269673, 8.469871], - [-13.270073, 8.469684], - [-13.270787, 8.469984], - [-13.271062, 8.469391], - [-13.271916, 8.468781], - [-13.272004, 8.468832], - [-13.272593, 8.468252], - [-13.272003, 8.46795], - [-13.272249, 8.467448], - [-13.273676, 8.466341] - ] - ], - "type": "Polygon" - }, - "id": 577, - "properties": { - "cc:admin:id": ["26"], - "cc:oBld:total": 2536, - "cc:pop:fifteen-to-twenty-four": 11928.068392243253, - "cc:pop:grid3-total": 17858.614859138885, - "cc:pop:kontur-total": 43361.310001657694, - "cc:pop:men": 26000.893284311656, - "cc:pop:sixty-plus": 4055.843655885025, - "cc:pop:total": 51970.05614688313, - "cc:pop:under-five": 5999.403744193371, - "cc:pop:women": 25969.162862571462, - "cc:pop:women-fiften-to-forty-nine": 13921.360830027403, - "cc:pop:wp-total": 45874.05121137846, - "cc:pop:wp-total-UN": 53197.84262266628, - "cc:id": "577", - "cc:Name": "Wilberforce CHC", - "cc:site": [-13.2644, 8.4757], - "user:parentName": "Freetown", - "user:code": "OU_278343", - "user:orgUnitId": "EUUkKEDoNsf", - "user:level": "4", - "user:parentId": "C9uduqDZr9d" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.265288, 8.485168], - [-13.265279, 8.485089], - [-13.26528, 8.484402], - [-13.264682, 8.484351], - [-13.2631, 8.483641], - [-13.262846, 8.482827], - [-13.262697, 8.482805], - [-13.262088, 8.482517], - [-13.261604, 8.482625], - [-13.260668, 8.482942], - [-13.25963, 8.482792], - [-13.260304, 8.48242], - [-13.261382, 8.482082], - [-13.261376, 8.481417], - [-13.260977, 8.48128], - [-13.260865, 8.4806], - [-13.260945, 8.480615], - [-13.261085, 8.479575], - [-13.261979, 8.479234], - [-13.26145, 8.478609], - [-13.261174, 8.478308], - [-13.26047, 8.478183], - [-13.260305, 8.477793], - [-13.26048, 8.477449], - [-13.261548, 8.477122], - [-13.261691, 8.476854], - [-13.261699, 8.47669], - [-13.261651, 8.475804], - [-13.261291, 8.474909], - [-13.261294, 8.47407], - [-13.261771, 8.473077], - [-13.262217, 8.472123], - [-13.262436, 8.471599], - [-13.262434, 8.470855], - [-13.261333, 8.471255], - [-13.260208, 8.471559], - [-13.259956, 8.471633], - [-13.259853, 8.471066], - [-13.259337, 8.471163], - [-13.259176, 8.470505], - [-13.258544, 8.470663], - [-13.257406, 8.471015], - [-13.255824, 8.47139], - [-13.255472, 8.471297], - [-13.255385, 8.47127], - [-13.254423, 8.471195], - [-13.254332, 8.471204], - [-13.2541, 8.471237], - [-13.254237, 8.472078], - [-13.25354, 8.472173], - [-13.253197, 8.471659], - [-13.252723, 8.471763], - [-13.252377, 8.471728], - [-13.251651, 8.471645], - [-13.251713, 8.47265], - [-13.25173, 8.473145], - [-13.251923, 8.473642], - [-13.252047, 8.473772], - [-13.252151, 8.473845], - [-13.252652, 8.474071], - [-13.252957, 8.474163], - [-13.253432, 8.474337], - [-13.253569, 8.474386], - [-13.253815, 8.474497], - [-13.254471, 8.474808], - [-13.253092, 8.47649], - [-13.252903, 8.476762], - [-13.252914, 8.477025], - [-13.252915, 8.477446], - [-13.25312, 8.477948], - [-13.253338, 8.477853], - [-13.253773, 8.477704], - [-13.254025, 8.477144], - [-13.254208, 8.477057], - [-13.25454, 8.477063], - [-13.254783, 8.477328], - [-13.255328, 8.477416], - [-13.255468, 8.477854], - [-13.255601, 8.477922], - [-13.255507, 8.478925], - [-13.25535, 8.479182], - [-13.254672, 8.48018], - [-13.25462, 8.480245], - [-13.255134, 8.48068], - [-13.255623, 8.481098], - [-13.256503, 8.481768], - [-13.256542, 8.483136], - [-13.256896, 8.483106], - [-13.257504, 8.483052], - [-13.257843, 8.483052], - [-13.258664, 8.483164], - [-13.259246, 8.484153], - [-13.259489, 8.484403], - [-13.259768, 8.484672], - [-13.259814, 8.484623], - [-13.26071, 8.485389], - [-13.260877, 8.485463], - [-13.260878, 8.485569], - [-13.260908, 8.485729], - [-13.260968, 8.486074], - [-13.261006, 8.486199], - [-13.26115, 8.486641], - [-13.261477, 8.486586], - [-13.261621, 8.486709], - [-13.261758, 8.487069], - [-13.262475, 8.487142], - [-13.263385, 8.486834], - [-13.262621, 8.485741], - [-13.263095, 8.485404], - [-13.263086, 8.485368], - [-13.263765, 8.485309], - [-13.265288, 8.485168] - ] - ], - "type": "Polygon" - }, - "id": 578, - "properties": { - "cc:admin:id": ["26"], - "cc:oBld:total": 2131, - "cc:pop:fifteen-to-twenty-four": 6787.2121158197915, - "cc:pop:grid3-total": 18249.662508303492, - "cc:pop:kontur-total": 19823.361087968417, - "cc:pop:men": 14784.683463166435, - "cc:pop:sixty-plus": 2302.8978460865583, - "cc:pop:total": 29550.77202599266, - "cc:pop:under-five": 3411.0220532046137, - "cc:pop:women": 14766.088562826222, - "cc:pop:women-fiften-to-forty-nine": 7916.239996236894, - "cc:pop:wp-total": 28154.634612597743, - "cc:pop:wp-total-UN": 32641.889469934384, - "cc:id": "578", - "cc:Name": "Wilberforce MCHP", - "cc:site": [-13.2614, 8.4763], - "user:parentName": "Freetown", - "user:code": "OU_278316", - "user:orgUnitId": "EDxXfB4iVpY", - "user:level": "4", - "user:parentId": "C9uduqDZr9d" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.261503, 8.467446], - [-13.260847, 8.466555], - [-13.26124, 8.465833], - [-13.261204, 8.464667], - [-13.261287, 8.464319], - [-13.261113, 8.46409], - [-13.260535, 8.463325], - [-13.259602, 8.463384], - [-13.258972, 8.463396], - [-13.259004, 8.463241], - [-13.258456, 8.46264], - [-13.25815, 8.462637], - [-13.25751, 8.46208], - [-13.257301, 8.461804], - [-13.25686, 8.462303], - [-13.257258, 8.462829], - [-13.256968, 8.463044], - [-13.256702, 8.463623], - [-13.255834, 8.463048], - [-13.255457, 8.462742], - [-13.255409, 8.462916], - [-13.255388, 8.462928], - [-13.255293, 8.462922], - [-13.255328, 8.463019], - [-13.255327, 8.46302], - [-13.254545, 8.46292], - [-13.254591, 8.462548], - [-13.254797, 8.4623], - [-13.253083, 8.460797], - [-13.252655, 8.461808], - [-13.252611, 8.462066], - [-13.25243, 8.462385], - [-13.251743, 8.461942], - [-13.251356, 8.461434], - [-13.251443, 8.460167], - [-13.251817, 8.459398], - [-13.252229, 8.459049], - [-13.252602, 8.459002], - [-13.2512, 8.457752], - [-13.251024, 8.457578], - [-13.250965, 8.457234], - [-13.251332, 8.456958], - [-13.250539, 8.456817], - [-13.248744, 8.458159], - [-13.247784, 8.458437], - [-13.246647, 8.458265], - [-13.245926, 8.458182], - [-13.245635, 8.458139], - [-13.245232, 8.457906], - [-13.245031, 8.457772], - [-13.244488, 8.457941], - [-13.243726, 8.458209], - [-13.243543, 8.458589], - [-13.243093, 8.458401], - [-13.24253, 8.457891], - [-13.24167, 8.457698], - [-13.241012, 8.4574], - [-13.240064, 8.456875], - [-13.239719, 8.456613], - [-13.2395, 8.456423], - [-13.239664, 8.455994], - [-13.237899, 8.454828], - [-13.236708, 8.454103], - [-13.236337, 8.454037], - [-13.236015, 8.454549], - [-13.235919, 8.45471], - [-13.235794, 8.454879], - [-13.235483, 8.455198], - [-13.235702, 8.455424], - [-13.235774, 8.456197], - [-13.235932, 8.456266], - [-13.236092, 8.456329], - [-13.235974, 8.456824], - [-13.23612, 8.457152], - [-13.236118, 8.457153], - [-13.235789, 8.456881], - [-13.235398, 8.457548], - [-13.23529, 8.458337], - [-13.235009, 8.459263], - [-13.234887, 8.459229], - [-13.234577, 8.458896], - [-13.234166, 8.458426], - [-13.233705, 8.460113], - [-13.233578, 8.460852], - [-13.23459, 8.462605], - [-13.242046, 8.462606], - [-13.24199, 8.462354], - [-13.243274, 8.462044], - [-13.243366, 8.461993], - [-13.243881, 8.462141], - [-13.244655, 8.462284], - [-13.244655, 8.462286], - [-13.244193, 8.462668], - [-13.245106, 8.46366], - [-13.245868, 8.464537], - [-13.245765, 8.465258], - [-13.245681, 8.465505], - [-13.246191, 8.466566], - [-13.246379, 8.466646], - [-13.247005, 8.466472], - [-13.247428, 8.466738], - [-13.247782, 8.466755], - [-13.247781, 8.467089], - [-13.247468, 8.467454], - [-13.247656, 8.467726], - [-13.246168, 8.4684], - [-13.245664, 8.468652], - [-13.245713, 8.468868], - [-13.245398, 8.469069], - [-13.245474, 8.469197], - [-13.245462, 8.469245], - [-13.245618, 8.469524], - [-13.245828, 8.469797], - [-13.246021, 8.470036], - [-13.246442, 8.470501], - [-13.246683, 8.470774], - [-13.246991, 8.470498], - [-13.246996, 8.470198], - [-13.247224, 8.469996], - [-13.248706, 8.469485], - [-13.248707, 8.469486], - [-13.248698, 8.470421], - [-13.249041, 8.47028], - [-13.249097, 8.470301], - [-13.249141, 8.470217], - [-13.249267, 8.470013], - [-13.249995, 8.469164], - [-13.250123, 8.468546], - [-13.25145, 8.467583], - [-13.25145, 8.467585], - [-13.251029, 8.468793], - [-13.251059, 8.469493], - [-13.251481, 8.469926], - [-13.251697, 8.470501], - [-13.25167, 8.470975], - [-13.251408, 8.471238], - [-13.251272, 8.471506], - [-13.251408, 8.471575], - [-13.251651, 8.471645], - [-13.252377, 8.471728], - [-13.252723, 8.471763], - [-13.253197, 8.471659], - [-13.25354, 8.472173], - [-13.254237, 8.472079], - [-13.2541, 8.471237], - [-13.254332, 8.471204], - [-13.254423, 8.471195], - [-13.255385, 8.47127], - [-13.255472, 8.471297], - [-13.255824, 8.47139], - [-13.257406, 8.471015], - [-13.258544, 8.470663], - [-13.259176, 8.470504], - [-13.259285, 8.470397], - [-13.259268, 8.469006], - [-13.259524, 8.468388], - [-13.26001, 8.468086], - [-13.260366, 8.467187], - [-13.260609, 8.466868], - [-13.260801, 8.466651], - [-13.261433, 8.467494], - [-13.261503, 8.467446] - ] - ], - "type": "Polygon" - }, - "id": 579, - "properties": { - "cc:admin:id": ["26"], - "cc:oBld:total": 3819, - "cc:pop:fifteen-to-twenty-four": 11320.56557326336, - "cc:pop:grid3-total": 33523.94245824402, - "cc:pop:kontur-total": 47416.120351391946, - "cc:pop:men": 24717.045082788718, - "cc:pop:sixty-plus": 3852.8038341382007, - "cc:pop:total": 49323.302700639724, - "cc:pop:under-five": 5700.746591583583, - "cc:pop:women": 24606.25761785101, - "cc:pop:women-fiften-to-forty-nine": 13190.956492539564, - "cc:pop:wp-total": 40264.406814582464, - "cc:pop:wp-total-UN": 46684.98158604583, - "cc:id": "579", - "cc:Name": "Wilberforce Military Hospital", - "cc:site": [-13.2561, 8.464], - "user:parentName": "Freetown", - "user:code": "OU_278321", - "user:orgUnitId": "ui12Hyvn6jR", - "user:level": "4", - "user:parentId": "C9uduqDZr9d" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.01619, 8.547282], - [-11.009583, 8.54875], - [-11.006249, 8.552083], - [-11.000417, 8.552083], - [-10.998749, 8.547917], - [-10.997082, 8.547084], - [-10.996249, 8.547083], - [-10.991249, 8.54375], - [-10.98125, 8.543749], - [-10.981249, 8.54125], - [-10.979133, 8.534901], - [-10.975017, 8.534901], - [-10.963749, 8.545416], - [-10.95875, 8.543749], - [-10.959582, 8.540417], - [-10.95625, 8.532084], - [-10.956249, 8.53082], - [-10.956142, 8.531035], - [-10.954578, 8.533486], - [-10.953674, 8.53445], - [-10.95171, 8.53588], - [-10.950512, 8.537644], - [-10.950033, 8.537983], - [-10.952082, 8.542083], - [-10.94625, 8.542916], - [-10.945185, 8.540787], - [-10.945099, 8.540815], - [-10.944582, 8.53875], - [-10.940416, 8.535417], - [-10.934583, 8.536249], - [-10.932536, 8.53352], - [-10.932084, 8.534301], - [-10.932083, 8.534302], - [-10.932082, 8.533749], - [-10.927082, 8.52875], - [-10.921569, 8.52875], - [-10.920399, 8.5309], - [-10.916, 8.535999], - [-10.9133, 8.538399], - [-10.9109, 8.539799], - [-10.907399, 8.540399], - [-10.904699, 8.540299], - [-10.9019, 8.5397], - [-10.900799, 8.5424], - [-10.899199, 8.5476], - [-10.897099, 8.5521], - [-10.8965, 8.555799], - [-10.8965, 8.558799], - [-10.897299, 8.562499], - [-10.898999, 8.566199], - [-10.899899, 8.569699], - [-10.900499, 8.576399], - [-10.901055, 8.57973], - [-10.907916, 8.580416], - [-10.909583, 8.577917], - [-10.920416, 8.577917], - [-10.920417, 8.587084], - [-10.928749, 8.588749], - [-10.929582, 8.58875], - [-10.929583, 8.589583], - [-10.934582, 8.591249], - [-10.937083, 8.589583], - [-10.944648, 8.588208], - [-10.944741, 8.588419], - [-10.946249, 8.587916], - [-10.94625, 8.585416], - [-10.950416, 8.58125], - [-10.951249, 8.58125], - [-10.95125, 8.592916], - [-10.952916, 8.593749], - [-10.957917, 8.579584], - [-10.962916, 8.581249], - [-10.963232, 8.58146], - [-10.962798, 8.583485], - [-10.962171, 8.584382], - [-10.961667, 8.58606], - [-10.961865, 8.587479], - [-10.962357, 8.589173], - [-10.966723, 8.589173], - [-10.967082, 8.587917], - [-10.967917, 8.587084], - [-10.976249, 8.588749], - [-10.978749, 8.589584], - [-10.980417, 8.592916], - [-10.986194, 8.590439], - [-10.986282, 8.59018], - [-10.986583, 8.589785], - [-10.986615, 8.588746], - [-10.987165, 8.587556], - [-10.988361, 8.587141], - [-10.98875, 8.587917], - [-10.999582, 8.587916], - [-11.000416, 8.58625], - [-11.000813, 8.585854], - [-11.001853, 8.586171], - [-11.002631, 8.586118], - [-11.003901, 8.586367], - [-11.00475, 8.586728], - [-11.005746, 8.5878], - [-11.005903, 8.588828], - [-11.006556, 8.589851], - [-11.006509, 8.590467], - [-11.00714, 8.591175], - [-11.007215, 8.592011], - [-11.007291, 8.592083], - [-11.009169, 8.59058], - [-11.0091, 8.587199], - [-11.0093, 8.580999], - [-11.0099, 8.577999], - [-11.012, 8.572699], - [-11.0125, 8.569599], - [-11.0128, 8.563399], - [-11.0136, 8.559499], - [-11.0156, 8.554099], - [-11.0161, 8.550999], - [-11.016199, 8.5479], - [-11.01619, 8.547282] - ] - ], - "type": "Polygon" - }, - "id": 580, - "properties": { - "cc:admin:id": ["133"], - "cc:oBld:total": 790, - "cc:pop:fifteen-to-twenty-four": 453.7152612232198, - "cc:pop:grid3-total": 1536.3654009266033, - "cc:pop:kontur-total": 2070.677067554553, - "cc:pop:men": 1002.6666330682006, - "cc:pop:sixty-plus": 68.95121212049486, - "cc:pop:total": 2005.333266136401, - "cc:pop:under-five": 276.1331862087654, - "cc:pop:women": 1002.6666330682006, - "cc:pop:women-fiften-to-forty-nine": 511.67065648117983, - "cc:pop:wp-total": 1838.2875232896167, - "cc:pop:wp-total-UN": 2130.7433068694454, - "cc:id": "580", - "cc:Name": "Woama MCHP", - "cc:site": [-10.9648, 8.5512], - "user:parentName": "Tankoro", - "user:code": "OU_233328", - "user:orgUnitId": "AtZJOoQiGHd", - "user:level": "4", - "user:parentId": "M2qEv692lS6" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.698399, 8.4803], - [-11.688899, 8.482], - [-11.6765, 8.483199], - [-11.6674, 8.485499], - [-11.662599, 8.4861], - [-11.652699, 8.486399], - [-11.6095, 8.4863], - [-11.5914, 8.487499], - [-11.586599, 8.4907], - [-11.58, 8.4938], - [-11.584899, 8.498599], - [-11.5878, 8.5025], - [-11.5921, 8.5107], - [-11.592699, 8.513699], - [-11.592499, 8.516199], - [-11.590999, 8.5195], - [-11.5884, 8.522699], - [-11.5809, 8.530099], - [-11.579299, 8.5324], - [-11.578399, 8.535], - [-11.578099, 8.5385], - [-11.578, 8.544399], - [-11.576999, 8.5483], - [-11.5741, 8.551899], - [-11.5712, 8.553899], - [-11.5665, 8.555299], - [-11.5643, 8.5567], - [-11.5632, 8.5601], - [-11.563399, 8.563499], - [-11.563999, 8.565699], - [-11.5652, 8.5676], - [-11.567999, 8.5709], - [-11.569099, 8.5735], - [-11.568099, 8.576799], - [-11.5657, 8.579399], - [-11.564351, 8.580724], - [-11.563294, 8.583085], - [-11.563175, 8.58445], - [-11.56206, 8.58716], - [-11.561651, 8.587516], - [-11.561305, 8.588122], - [-11.560058, 8.589342], - [-11.56125, 8.592916], - [-11.563749, 8.59375], - [-11.564583, 8.595416], - [-11.569582, 8.59625], - [-11.570417, 8.599583], - [-11.574582, 8.602916], - [-11.57625, 8.602917], - [-11.580416, 8.60375], - [-11.580417, 8.616249], - [-11.58125, 8.618749], - [-11.587082, 8.617084], - [-11.58875, 8.621249], - [-11.592916, 8.625417], - [-11.592916, 8.629603], - [-11.592073, 8.630592], - [-11.591114, 8.631444], - [-11.590088, 8.632091], - [-11.588087, 8.632803], - [-11.585417, 8.633342], - [-11.585417, 8.649583], - [-11.586249, 8.649583], - [-11.58625, 8.644584], - [-11.603749, 8.644584], - [-11.604583, 8.647083], - [-11.605417, 8.647916], - [-11.61375, 8.644584], - [-11.623421, 8.647807], - [-11.624, 8.645399], - [-11.6244, 8.639999], - [-11.6252, 8.636699], - [-11.627799, 8.6318], - [-11.629299, 8.6301], - [-11.633199, 8.6279], - [-11.633565, 8.627829], - [-11.632917, 8.624584], - [-11.632916, 8.62375], - [-11.632443, 8.622333], - [-11.631119, 8.623203], - [-11.630443, 8.623443], - [-11.629568, 8.623465], - [-11.628244, 8.622891], - [-11.625997, 8.620659], - [-11.625379, 8.620145], - [-11.622555, 8.618714], - [-11.622555, 8.618713], - [-11.626249, 8.61625], - [-11.627917, 8.617916], - [-11.632082, 8.618749], - [-11.63375, 8.617083], - [-11.637917, 8.615417], - [-11.639582, 8.615416], - [-11.645416, 8.609583], - [-11.645417, 8.607917], - [-11.647082, 8.607083], - [-11.647083, 8.60625], - [-11.649582, 8.606249], - [-11.654582, 8.60125], - [-11.650416, 8.59875], - [-11.647084, 8.600416], - [-11.647083, 8.600415], - [-11.647083, 8.595416], - [-11.649582, 8.58625], - [-11.652916, 8.586249], - [-11.657916, 8.582916], - [-11.655416, 8.575417], - [-11.652083, 8.574583], - [-11.652654, 8.572298], - [-11.652689, 8.57231], - [-11.657917, 8.567084], - [-11.66375, 8.574583], - [-11.667389, 8.574947], - [-11.667784, 8.574266], - [-11.673004, 8.574265], - [-11.673749, 8.564584], - [-11.668749, 8.559584], - [-11.665416, 8.559583], - [-11.660417, 8.554584], - [-11.660417, 8.545417], - [-11.66375, 8.541249], - [-11.672082, 8.539583], - [-11.675417, 8.53625], - [-11.679378, 8.536249], - [-11.6797, 8.533999], - [-11.682199, 8.528], - [-11.6837, 8.521999], - [-11.6857, 8.517599], - [-11.687299, 8.5109], - [-11.6892, 8.506399], - [-11.690699, 8.5007], - [-11.693, 8.495299], - [-11.6947, 8.489199], - [-11.698399, 8.4803] - ] - ], - "type": "Polygon" - }, - "id": 581, - "properties": { - "cc:admin:id": ["69"], - "cc:oBld:total": 34, - "cc:pop:fifteen-to-twenty-four": 1203.5046578133617, - "cc:pop:grid3-total": 6701.273815663282, - "cc:pop:kontur-total": 6223.22288501024, - "cc:pop:men": 3154.0319175561144, - "cc:pop:sixty-plus": 418.44009251555195, - "cc:pop:total": 6436.002965117598, - "cc:pop:under-five": 1019.0678853384154, - "cc:pop:women": 3281.971047561484, - "cc:pop:women-fiften-to-forty-nine": 1606.9604327951508, - "cc:pop:wp-total": 6364.015291310305, - "cc:pop:wp-total-UN": 7373.159030667462, - "cc:id": "581", - "cc:Name": "Wonkibor MCHP", - "cc:site": [-11.6182, 8.5959], - "user:parentName": "Kunike Barina", - "user:code": "OU_268216", - "user:orgUnitId": "Qwzs1iinAI7", - "user:level": "4", - "user:parentId": "rXLor9Knq6l" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.15322, 8.944534], - [-11.15125, 8.94125], - [-11.151249, 8.940417], - [-11.142917, 8.937917], - [-11.14125, 8.937916], - [-11.14125, 8.934583], - [-11.143749, 8.932916], - [-11.145416, 8.928749], - [-11.145416, 8.927083], - [-11.14208, 8.923747], - [-11.142205, 8.923518], - [-11.141249, 8.922083], - [-11.137917, 8.919583], - [-11.135417, 8.92125], - [-11.133749, 8.924582], - [-11.12875, 8.926249], - [-11.12875, 8.925416], - [-11.129582, 8.915417], - [-11.128749, 8.915416], - [-11.126249, 8.91375], - [-11.12125, 8.912916], - [-11.122082, 8.902917], - [-11.117917, 8.90125], - [-11.112082, 8.903749], - [-11.107083, 8.89375], - [-11.112916, 8.892082], - [-11.115416, 8.880417], - [-11.109583, 8.882083], - [-11.10625, 8.884582], - [-11.10375, 8.884582], - [-11.10375, 8.880416], - [-11.109582, 8.875417], - [-11.102083, 8.875416], - [-11.102916, 8.86625], - [-11.102916, 8.865417], - [-11.094583, 8.865416], - [-11.092083, 8.857084], - [-11.092084, 8.857083], - [-11.102082, 8.857916], - [-11.102082, 8.852917], - [-11.09875, 8.849582], - [-11.09875, 8.84625], - [-11.099582, 8.844583], - [-11.097933, 8.842933], - [-11.097856, 8.843182], - [-11.097715, 8.843793], - [-11.097274, 8.844558], - [-11.097273, 8.844558], - [-11.095416, 8.842083], - [-11.092916, 8.842916], - [-11.09125, 8.838749], - [-11.091249, 8.834583], - [-11.08625, 8.832083], - [-11.085416, 8.832916], - [-11.082917, 8.832917], - [-11.080417, 8.836249], - [-11.079583, 8.83625], - [-11.079582, 8.840416], - [-11.07375, 8.84125], - [-11.072082, 8.844583], - [-11.069583, 8.847916], - [-11.06625, 8.84625], - [-11.062083, 8.84875], - [-11.058749, 8.854582], - [-11.05625, 8.85625], - [-11.056249, 8.857916], - [-11.055417, 8.857917], - [-11.054583, 8.85875], - [-11.054582, 8.864583], - [-11.047916, 8.867916], - [-11.042083, 8.86625], - [-11.043749, 8.872082], - [-11.043749, 8.873749], - [-11.04125, 8.875417], - [-11.041249, 8.87625], - [-11.037083, 8.880416], - [-11.033749, 8.878749], - [-11.028749, 8.875417], - [-11.02625, 8.875416], - [-11.024582, 8.87375], - [-11.01875, 8.87375], - [-11.018749, 8.883749], - [-11.014583, 8.88375], - [-11.012082, 8.887082], - [-11.007083, 8.887083], - [-11.005417, 8.890416], - [-11.002917, 8.889583], - [-11.001657, 8.890842], - [-11.001844, 8.891027], - [-11.003333, 8.891839], - [-11.004871, 8.892315], - [-11.005209, 8.892601], - [-11.005209, 8.892603], - [-11.004582, 8.892916], - [-11.000417, 8.890417], - [-10.997083, 8.894582], - [-11.001249, 8.897917], - [-11.00125, 8.900417], - [-11.002082, 8.903749], - [-11.002919, 8.904169], - [-11.002885, 8.904254], - [-11.00141, 8.90588], - [-10.999614, 8.908979], - [-10.999051, 8.909316], - [-11.001249, 8.910417], - [-11.00125, 8.912917], - [-11.002083, 8.916249], - [-11.003749, 8.917083], - [-11.002916, 8.91875], - [-10.999583, 8.920417], - [-11.000416, 8.922082], - [-10.999984, 8.922948], - [-11.000187, 8.923], - [-10.999583, 8.925416], - [-11.000416, 8.92625], - [-11.000417, 8.928749], - [-11.002083, 8.929583], - [-11.002082, 8.932916], - [-10.999583, 8.93375], - [-10.999583, 8.942082], - [-11.001249, 8.94375], - [-11.000417, 8.948749], - [-11.001249, 8.949583], - [-11.000417, 8.953749], - [-11.002916, 8.964582], - [-11.002916, 8.965416], - [-11.002083, 8.96625], - [-11.002083, 8.967917], - [-11.002916, 8.972916], - [-11.002917, 8.973749], - [-11.003749, 8.974583], - [-11.002917, 8.977916], - [-11.00125, 8.979583], - [-11.00125, 8.985416], - [-11.002083, 8.98625], - [-11.002916, 8.992916], - [-10.999583, 8.99375], - [-11.000417, 8.997916], - [-11.004582, 9.002082], - [-11.008748, 9.002083], - [-11.008749, 9.002084], - [-11.004582, 9.010416], - [-10.997872, 9.01243], - [-10.997621, 9.014677], - [-10.994427, 9.014944], - [-10.99499, 9.01592], - [-10.991084, 9.022684], - [-10.983271, 9.022685], - [-10.979366, 9.029451], - [-10.98304, 9.035816], - [-10.980417, 9.037917], - [-10.97997, 9.041935], - [-10.979366, 9.042983], - [-10.979774, 9.043691], - [-10.979703, 9.044343], - [-10.9832, 9.0449], - [-10.9877, 9.0452], - [-10.998399, 9.0452], - [-11.005999, 9.0449], - [-11.010399, 9.0442], - [-11.016399, 9.0423], - [-11.020399, 9.0415], - [-11.025999, 9.0412], - [-11.030199, 9.041499], - [-11.035399, 9.0432], - [-11.0464, 9.0516], - [-11.055199, 9.057399], - [-11.0592, 9.0592], - [-11.0621, 9.0598], - [-11.065099, 9.059999], - [-11.071299, 9.0599], - [-11.077499, 9.059], - [-11.081799, 9.057599], - [-11.089199, 9.0511], - [-11.095499, 9.047], - [-11.097699, 9.0452], - [-11.107499, 9.0363], - [-11.117499, 9.0297], - [-11.1213, 9.027899], - [-11.133699, 9.025599], - [-11.138199, 9.023199], - [-11.140599, 9.020499], - [-11.143999, 9.012999], - [-11.144399, 9.0089], - [-11.143799, 9.004899], - [-11.1399, 8.9925], - [-11.1392, 8.9882], - [-11.1387, 8.975999], - [-11.138799, 8.9715], - [-11.139399, 8.9671], - [-11.1412, 8.961499], - [-11.145799, 8.9528], - [-11.1485, 8.949399], - [-11.151599, 8.9461], - [-11.15322, 8.944534] - ] - ], - "type": "Polygon" - }, - "id": 582, - "properties": { - "cc:admin:id": ["119"], - "cc:oBld:total": 1372, - "cc:pop:fifteen-to-twenty-four": 2025.0859723098147, - "cc:pop:grid3-total": 24565.0231060248, - "cc:pop:kontur-total": 10272.650574285948, - "cc:pop:men": 5090.0130658596145, - "cc:pop:sixty-plus": 571.6578543000655, - "cc:pop:total": 10307.9216061077, - "cc:pop:under-five": 1736.6037383970915, - "cc:pop:women": 5217.908540248085, - "cc:pop:women-fiften-to-forty-nine": 2500.1994314166604, - "cc:pop:wp-total": 10207.128836229333, - "cc:pop:wp-total-UN": 11858.869951581268, - "cc:id": "582", - "cc:Name": "Wordu CHP", - "cc:site": [-11.0992, 8.9375], - "user:parentName": "Sandor", - "user:code": "OU_233367", - "user:orgUnitId": "bW5BaqrBM4K", - "user:level": "4", - "user:parentId": "g5ptsn0SFX8" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.535899, 7.6576], - [-11.521999, 7.651599], - [-11.5168, 7.6487], - [-11.514, 7.6467], - [-11.504399, 7.634499], - [-11.502599, 7.631199], - [-11.5009, 7.6267], - [-11.4993, 7.6207], - [-11.4982, 7.6071], - [-11.4956, 7.5948], - [-11.495628, 7.593154], - [-11.4941, 7.595803], - [-11.494582, 7.602083], - [-11.492917, 7.60375], - [-11.492917, 7.604583], - [-11.494583, 7.605417], - [-11.495417, 7.609584], - [-11.497082, 7.615417], - [-11.48125, 7.618749], - [-11.480416, 7.619583], - [-11.47875, 7.620416], - [-11.477916, 7.61875], - [-11.472917, 7.617917], - [-11.46125, 7.617917], - [-11.46125, 7.623749], - [-11.462082, 7.624583], - [-11.460417, 7.62625], - [-11.460416, 7.627916], - [-11.45875, 7.627917], - [-11.455417, 7.629584], - [-11.454335, 7.631206], - [-11.454436, 7.631396], - [-11.452917, 7.632917], - [-11.453749, 7.643749], - [-11.45481, 7.644599], - [-11.451657, 7.65006], - [-11.443846, 7.650061], - [-11.442917, 7.65167], - [-11.442916, 7.654584], - [-11.442227, 7.660788], - [-11.443845, 7.663592], - [-11.439939, 7.670357], - [-11.440635, 7.671562], - [-11.440924, 7.671583], - [-11.440925, 7.671585], - [-11.439296, 7.674404], - [-11.432726, 7.674405], - [-11.43125, 7.67625], - [-11.43125, 7.682916], - [-11.432082, 7.687083], - [-11.432083, 7.687478], - [-11.4344, 7.6866], - [-11.437799, 7.686699], - [-11.441099, 7.6885], - [-11.4477, 7.6971], - [-11.450599, 7.700099], - [-11.4539, 7.702599], - [-11.4578, 7.703999], - [-11.4644, 7.703899], - [-11.4691, 7.702099], - [-11.4744, 7.699199], - [-11.482899, 7.6921], - [-11.4902, 7.686999], - [-11.498799, 7.6801], - [-11.511399, 7.6728], - [-11.521099, 7.6651], - [-11.535899, 7.6576] - ] - ], - "type": "Polygon" - }, - "id": 583, - "properties": { - "cc:admin:id": ["71"], - "cc:oBld:total": 540, - "cc:pop:fifteen-to-twenty-four": 543.1110885569447, - "cc:pop:grid3-total": 3579.0660085958543, - "cc:pop:kontur-total": 2838, - "cc:pop:men": 1354.2775968592764, - "cc:pop:sixty-plus": 174.73775463890547, - "cc:pop:total": 2754.338270146085, - "cc:pop:under-five": 416.2930741154706, - "cc:pop:women": 1400.0606732868089, - "cc:pop:women-fiften-to-forty-nine": 694.7945372658507, - "cc:pop:wp-total": 2009.5942985081763, - "cc:pop:wp-total-UN": 2329.398193664277, - "cc:id": "583", - "cc:Name": "Yabaima CHP", - "cc:site": [-11.4761, 7.6407], - "user:parentName": "Langrama", - "user:code": "OU_222752", - "user:orgUnitId": "XbyObqerCya", - "user:level": "4", - "user:parentId": "jWSIbtKfURj" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.468977, 8.002917], - [-11.467917, 8.002916], - [-11.468749, 8.000417], - [-11.46625, 7.994584], - [-11.467082, 7.993749], - [-11.464583, 7.98375], - [-11.464583, 7.982084], - [-11.46597, 7.980927], - [-11.459583, 7.980926], - [-11.459582, 7.980416], - [-11.44375, 7.97375], - [-11.442916, 7.972917], - [-11.440417, 7.973749], - [-11.439582, 7.970417], - [-11.437082, 7.967917], - [-11.427083, 7.967084], - [-11.425617, 7.967572], - [-11.425615, 7.967916], - [-11.422917, 7.967917], - [-11.41875, 7.97125], - [-11.418427, 7.97575], - [-11.416953, 7.973198], - [-11.414907, 7.973197], - [-11.415416, 7.967084], - [-11.40375, 7.969584], - [-11.407082, 7.979581], - [-11.407081, 7.979582], - [-11.40125, 7.975417], - [-11.399582, 7.970417], - [-11.397083, 7.972917], - [-11.397916, 7.975416], - [-11.396249, 7.977083], - [-11.393749, 7.97625], - [-11.392083, 7.976249], - [-11.392082, 7.972084], - [-11.382917, 7.972084], - [-11.383749, 7.975416], - [-11.381249, 7.979584], - [-11.374582, 7.979583], - [-11.371249, 7.97375], - [-11.368749, 7.972084], - [-11.366249, 7.972916], - [-11.35875, 7.972917], - [-11.358749, 7.977916], - [-11.354583, 7.982084], - [-11.35375, 7.989583], - [-11.352916, 7.992916], - [-11.341966, 7.993647], - [-11.3418, 7.9976], - [-11.341999, 8.018099], - [-11.342499, 8.025299], - [-11.343, 8.0281], - [-11.3456, 8.0375], - [-11.347099, 8.045399], - [-11.347399, 8.0496], - [-11.3469, 8.055999], - [-11.346999, 8.060199], - [-11.349799, 8.071999], - [-11.3516, 8.081899], - [-11.355299, 8.0796], - [-11.3592, 8.077899], - [-11.3615, 8.076399], - [-11.3665, 8.072399], - [-11.373999, 8.0686], - [-11.3765, 8.067799], - [-11.3815, 8.066599], - [-11.385899, 8.0644], - [-11.3891, 8.063099], - [-11.393399, 8.0607], - [-11.397199, 8.0589], - [-11.3994, 8.057199], - [-11.404799, 8.0523], - [-11.407499, 8.0501], - [-11.411499, 8.0482], - [-11.414399, 8.0461], - [-11.416899, 8.0434], - [-11.418399, 8.0406], - [-11.4189, 8.038399], - [-11.4192, 8.033099], - [-11.419999, 8.0298], - [-11.4236, 8.023999], - [-11.4258, 8.022799], - [-11.433899, 8.0207], - [-11.438899, 8.022199], - [-11.441699, 8.023499], - [-11.444, 8.0207], - [-11.449299, 8.0178], - [-11.454999, 8.0134], - [-11.4604, 8.010399], - [-11.4632, 8.008199], - [-11.468599, 8.0032], - [-11.468977, 8.002917] - ] - ], - "type": "Polygon" - }, - "id": 584, - "properties": { - "cc:admin:id": ["2"], - "cc:oBld:total": 548, - "cc:pop:fifteen-to-twenty-four": 1853.542341157968, - "cc:pop:grid3-total": 3907.292715429008, - "cc:pop:kontur-total": 10536.17167077203, - "cc:pop:men": 5380.850936764668, - "cc:pop:sixty-plus": 734.9630262612507, - "cc:pop:total": 10408.987362851376, - "cc:pop:under-five": 1697.5637292071117, - "cc:pop:women": 5028.136426086711, - "cc:pop:women-fiften-to-forty-nine": 2397.760251380985, - "cc:pop:wp-total": 8566.281142534917, - "cc:pop:wp-total-UN": 9929.062970436149, - "cc:id": "584", - "cc:Name": "Yakaji MCHP", - "cc:site": [-11.4277, 8.0041], - "user:parentName": "Baoma", - "user:code": "OU_583", - "user:orgUnitId": "AnXoUM1tfNT", - "user:level": "4", - "user:parentId": "vWbkYPRmKyS" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.532927, 7.973727], - [-11.52862, 7.973726], - [-11.525747, 7.96875], - [-11.525417, 7.96875], - [-11.524146, 7.970655], - [-11.524145, 7.970655], - [-11.521363, 7.965839], - [-11.513938, 7.965838], - [-11.515416, 7.960417], - [-11.512917, 7.956249], - [-11.514406, 7.948797], - [-11.512933, 7.947979], - [-11.512311, 7.947874], - [-11.51145, 7.947989], - [-11.511317, 7.947841], - [-11.511257, 7.947843], - [-11.511262, 7.946485], - [-11.510838, 7.944393], - [-11.510358, 7.942904], - [-11.509809, 7.941823], - [-11.509687, 7.941762], - [-11.50564, 7.941028], - [-11.505344, 7.940665], - [-11.505345, 7.940663], - [-11.506493, 7.940324], - [-11.507432, 7.939814], - [-11.509351, 7.93804], - [-11.507916, 7.937084], - [-11.507082, 7.937083], - [-11.502917, 7.932917], - [-11.502082, 7.92875], - [-11.492083, 7.927916], - [-11.492083, 7.926249], - [-11.496249, 7.920417], - [-11.498749, 7.917916], - [-11.497916, 7.915417], - [-11.492917, 7.910417], - [-11.492916, 7.909203], - [-11.491361, 7.908624], - [-11.490221, 7.908796], - [-11.489168, 7.909361], - [-11.489099, 7.909353], - [-11.488305, 7.905345], - [-11.487837, 7.904871], - [-11.487524, 7.904224], - [-11.487453, 7.903538], - [-11.487917, 7.903609], - [-11.487916, 7.899584], - [-11.487082, 7.899583], - [-11.481917, 7.892205], - [-11.481741, 7.892286], - [-11.481501, 7.892696], - [-11.48111, 7.89242], - [-11.480138, 7.892173], - [-11.480571, 7.89182], - [-11.480711, 7.891498], - [-11.481013, 7.891061], - [-11.481098, 7.890824], - [-11.480931, 7.890846], - [-11.480757, 7.890562], - [-11.481261, 7.890154], - [-11.481428, 7.889738], - [-11.482089, 7.889621], - [-11.482715, 7.889291], - [-11.48354, 7.88863], - [-11.483749, 7.888626], - [-11.483749, 7.886349], - [-11.483667, 7.886431], - [-11.482729, 7.886553], - [-11.482122, 7.887059], - [-11.480813, 7.887552], - [-11.48013, 7.888306], - [-11.479072, 7.888789], - [-11.47786, 7.890013], - [-11.476492, 7.89083], - [-11.475535, 7.89246], - [-11.47486, 7.892623], - [-11.473688, 7.893755], - [-11.473249, 7.895421], - [-11.47301, 7.895879], - [-11.474316, 7.896534], - [-11.474094, 7.897122], - [-11.474525, 7.89852], - [-11.4743, 7.900014], - [-11.472567, 7.903147], - [-11.470982, 7.905537], - [-11.471007, 7.906118], - [-11.470768, 7.906762], - [-11.469988, 7.907963], - [-11.469717, 7.90997], - [-11.469476, 7.910496], - [-11.468392, 7.911836], - [-11.467829, 7.912238], - [-11.466161, 7.912608], - [-11.465726, 7.912545], - [-11.464677, 7.913019], - [-11.46318, 7.913485], - [-11.462083, 7.914584], - [-11.46125, 7.918749], - [-11.46125, 7.919583], - [-11.462083, 7.919584], - [-11.466249, 7.922083], - [-11.466249, 7.92375], - [-11.464583, 7.930416], - [-11.46125, 7.929584], - [-11.459368, 7.932091], - [-11.459733, 7.932274], - [-11.458749, 7.93375], - [-11.455417, 7.943749], - [-11.457917, 7.946249], - [-11.458548, 7.94625], - [-11.457997, 7.946546], - [-11.45744, 7.947839], - [-11.456606, 7.949161], - [-11.45708, 7.951279], - [-11.456433, 7.953444], - [-11.456425, 7.953901], - [-11.457145, 7.956373], - [-11.457804, 7.957299], - [-11.457726, 7.958968], - [-11.457999, 7.959827], - [-11.457921, 7.960556], - [-11.457403, 7.9614], - [-11.456456, 7.961483], - [-11.45625, 7.963749], - [-11.457817, 7.965318], - [-11.454453, 7.965319], - [-11.452309, 7.969032], - [-11.453724, 7.974066], - [-11.452838, 7.977162], - [-11.452517, 7.977441], - [-11.459582, 7.980416], - [-11.459583, 7.980926], - [-11.465969, 7.980927], - [-11.464583, 7.982084], - [-11.464583, 7.983749], - [-11.467082, 7.993749], - [-11.46625, 7.994584], - [-11.468749, 8.000416], - [-11.467917, 8.002916], - [-11.468977, 8.002916], - [-11.4714, 8.001099], - [-11.4746, 7.999699], - [-11.478799, 7.9973], - [-11.482, 7.995999], - [-11.486399, 7.9938], - [-11.492299, 7.9923], - [-11.4971, 7.990199], - [-11.5001, 7.989499], - [-11.503799, 7.9892], - [-11.515099, 7.989199], - [-11.5192, 7.986499], - [-11.526699, 7.9829], - [-11.528373, 7.982492], - [-11.531249, 7.974584], - [-11.532916, 7.97375], - [-11.532927, 7.973727] - ] - ], - "type": "Polygon" - }, - "id": 585, - "properties": { - "cc:admin:id": ["2"], - "cc:oBld:total": 861, - "cc:pop:fifteen-to-twenty-four": 3147.877676714104, - "cc:pop:grid3-total": 7277.921332357446, - "cc:pop:kontur-total": 18417.533087284482, - "cc:pop:men": 9079.268140477698, - "cc:pop:sixty-plus": 1246.4070281414338, - "cc:pop:total": 17585.01830711344, - "cc:pop:under-five": 2901.2676823961674, - "cc:pop:women": 8505.750166635737, - "cc:pop:women-fiften-to-forty-nine": 4055.5525883634587, - "cc:pop:wp-total": 16790.52306044804, - "cc:pop:wp-total-UN": 19467.70934665814, - "cc:id": "585", - "cc:Name": "Yamandu CHC", - "cc:site": [-11.4894, 7.9341], - "user:parentName": "Baoma", - "user:code": "OU_585", - "user:orgUnitId": "nX05QLraDhO", - "user:level": "4", - "user:parentId": "vWbkYPRmKyS" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.933366, 7.643593], - [-11.932353, 7.643514], - [-11.92888, 7.637497], - [-11.93237, 7.631451], - [-11.925417, 7.632083], - [-11.926776, 7.627321], - [-11.926181, 7.627152], - [-11.927082, 7.626249], - [-11.928749, 7.619584], - [-11.929582, 7.617916], - [-11.928749, 7.615417], - [-11.925302, 7.613348], - [-11.925361, 7.613235], - [-11.924299, 7.6137], - [-11.92, 7.616099], - [-11.916899, 7.6174], - [-11.9126, 7.619799], - [-11.909399, 7.6212], - [-11.9052, 7.623599], - [-11.901999, 7.6249], - [-11.8979, 7.626999], - [-11.8935, 7.627899], - [-11.8862, 7.628099], - [-11.881399, 7.627999], - [-11.8771, 7.6274], - [-11.8713, 7.6251], - [-11.867199, 7.624299], - [-11.84125, 7.624108], - [-11.84125, 7.635416], - [-11.851249, 7.636249], - [-11.852083, 7.638749], - [-11.867082, 7.637917], - [-11.868749, 7.638749], - [-11.867916, 7.640417], - [-11.86625, 7.647083], - [-11.86375, 7.649584], - [-11.864583, 7.651249], - [-11.873749, 7.65125], - [-11.872917, 7.653749], - [-11.874071, 7.65606], - [-11.874407, 7.655898], - [-11.875417, 7.657916], - [-11.87625, 7.657917], - [-11.877916, 7.659584], - [-11.87625, 7.671249], - [-11.879582, 7.672083], - [-11.880417, 7.672084], - [-11.885416, 7.677083], - [-11.885729, 7.677084], - [-11.886709, 7.67878], - [-11.898749, 7.679583], - [-11.902082, 7.677084], - [-11.904582, 7.677083], - [-11.904583, 7.673749], - [-11.909582, 7.669584], - [-11.917082, 7.669583], - [-11.915417, 7.660417], - [-11.919582, 7.65875], - [-11.922744, 7.661278], - [-11.924668, 7.658805], - [-11.926712, 7.657637], - [-11.928563, 7.65606], - [-11.925344, 7.653886], - [-11.923274, 7.653155], - [-11.923749, 7.65125], - [-11.92625, 7.64875], - [-11.932068, 7.64584], - [-11.933366, 7.643593] - ] - ], - "type": "Polygon" - }, - "id": 586, - "properties": { - "cc:admin:id": ["78"], - "cc:oBld:total": 6, - "cc:pop:fifteen-to-twenty-four": 1039.6794969618747, - "cc:pop:grid3-total": 4902.408368967969, - "cc:pop:kontur-total": 8257.736770575399, - "cc:pop:men": 2966.451523269628, - "cc:pop:sixty-plus": 395.4327390942299, - "cc:pop:total": 5724.884816046719, - "cc:pop:under-five": 931.484171444425, - "cc:pop:women": 2758.433292777091, - "cc:pop:women-fiften-to-forty-nine": 1302.9231625805464, - "cc:pop:wp-total": 5719.36080368022, - "cc:pop:wp-total-UN": 6627.2300958566875, - "cc:id": "586", - "cc:Name": "Yambama MCHP", - "cc:site": [-11.8915, 7.6541], - "user:parentName": "Lugbu", - "user:code": "OU_1072", - "user:orgUnitId": "QDoO5r6Sae7", - "user:level": "4", - "user:parentId": "kU8vhUkAGaT" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.336122, 8.723303], - [-12.335399, 8.721599], - [-12.332899, 8.718399], - [-12.3279, 8.7131], - [-12.323099, 8.708899], - [-12.319699, 8.7067], - [-12.316, 8.7059], - [-12.3113, 8.706799], - [-12.3093, 8.7092], - [-12.3088, 8.712299], - [-12.3094, 8.7159], - [-12.310999, 8.7227], - [-12.310899, 8.7256], - [-12.3098, 8.729799], - [-12.302999, 8.7447], - [-12.299, 8.751999], - [-12.296699, 8.7547], - [-12.293599, 8.7565], - [-12.287999, 8.757899], - [-12.2846, 8.757399], - [-12.282, 8.7559], - [-12.279799, 8.752499], - [-12.2775, 8.7452], - [-12.2755, 8.7419], - [-12.272099, 8.740099], - [-12.2678, 8.7394], - [-12.2642, 8.741499], - [-12.262841, 8.741593], - [-12.261636, 8.74456], - [-12.261214, 8.745078], - [-12.259339, 8.745899], - [-12.258367, 8.745906], - [-12.25695, 8.745252], - [-12.256592, 8.744971], - [-12.257082, 8.747917], - [-12.254583, 8.750417], - [-12.254582, 8.752916], - [-12.252917, 8.754583], - [-12.252917, 8.760416], - [-12.253948, 8.761449], - [-12.254029, 8.761358], - [-12.254179, 8.761276], - [-12.254582, 8.762082], - [-12.254583, 8.764582], - [-12.256171, 8.768819], - [-12.252288, 8.768228], - [-12.248806, 8.766082], - [-12.247621, 8.76579], - [-12.244794, 8.768966], - [-12.245352, 8.769613], - [-12.245957, 8.770927], - [-12.246075, 8.771727], - [-12.246027, 8.77193], - [-12.246001, 8.77248], - [-12.246972, 8.772688], - [-12.249642, 8.773593], - [-12.249772, 8.774278], - [-12.250625, 8.774746], - [-12.251859, 8.774907], - [-12.253083, 8.774752], - [-12.253749, 8.778749], - [-12.25375, 8.781249], - [-12.249583, 8.787917], - [-12.250416, 8.792083], - [-12.249582, 8.797916], - [-12.247917, 8.797917], - [-12.245417, 8.800417], - [-12.244582, 8.805416], - [-12.24125, 8.80625], - [-12.24125, 8.810416], - [-12.243937, 8.817134], - [-12.246191, 8.817134], - [-12.248376, 8.816509], - [-12.252552, 8.814448], - [-12.256039, 8.812751], - [-12.259604, 8.811036], - [-12.261629, 8.81008], - [-12.262917, 8.814582], - [-12.26375, 8.814583], - [-12.264583, 8.817916], - [-12.267916, 8.82125], - [-12.26875, 8.822916], - [-12.272082, 8.820416], - [-12.272083, 8.819742], - [-12.272509, 8.819654], - [-12.280517, 8.818402], - [-12.28125, 8.827916], - [-12.286457, 8.827917], - [-12.286744, 8.828255], - [-12.287242, 8.829686], - [-12.288062, 8.830371], - [-12.288407, 8.831129], - [-12.289312, 8.832246], - [-12.289973, 8.833365], - [-12.29134, 8.834494], - [-12.29177, 8.835035], - [-12.29253, 8.835477], - [-12.292887, 8.835018], - [-12.294203, 8.83352], - [-12.294784, 8.831207], - [-12.294945, 8.830816], - [-12.296249, 8.831249], - [-12.295417, 8.840416], - [-12.299583, 8.83625], - [-12.302082, 8.837916], - [-12.302917, 8.837917], - [-12.305416, 8.839582], - [-12.30625, 8.842082], - [-12.30875, 8.83875], - [-12.311249, 8.839583], - [-12.312083, 8.842082], - [-12.314583, 8.839583], - [-12.316249, 8.840417], - [-12.31625, 8.846647], - [-12.316508, 8.846622], - [-12.318666, 8.848049], - [-12.32027, 8.847772], - [-12.321297, 8.848454], - [-12.322025, 8.848108], - [-12.323056, 8.848365], - [-12.324661, 8.848208], - [-12.326176, 8.848975], - [-12.322499, 8.841999], - [-12.3172, 8.835], - [-12.313999, 8.829999], - [-12.309499, 8.823999], - [-12.3076, 8.8197], - [-12.3069, 8.815099], - [-12.3076, 8.810599], - [-12.309999, 8.8028], - [-12.312599, 8.796], - [-12.317299, 8.7875], - [-12.317899, 8.7863], - [-12.3219, 8.781599], - [-12.323899, 8.777099], - [-12.324399, 8.772999], - [-12.3243, 8.7616], - [-12.3247, 8.755999], - [-12.3263, 8.749999], - [-12.3307, 8.741599], - [-12.336, 8.733599], - [-12.337299, 8.729299], - [-12.3368, 8.7249], - [-12.336122, 8.723303] - ] - ], - "type": "Polygon" - }, - "id": 587, - "properties": { - "cc:admin:id": ["83"], - "cc:oBld:total": 7, - "cc:pop:fifteen-to-twenty-four": 948.0694430093871, - "cc:pop:grid3-total": 2583.5524450747366, - "cc:pop:kontur-total": 5005.848872168367, - "cc:pop:men": 2431.906045302516, - "cc:pop:sixty-plus": 323.0902432882249, - "cc:pop:total": 5192.949054065322, - "cc:pop:under-five": 835.787021833795, - "cc:pop:women": 2761.0430087628083, - "cc:pop:women-fiften-to-forty-nine": 1334.14209988304, - "cc:pop:wp-total": 3543.7341193232996, - "cc:pop:wp-total-UN": 4108.728532502393, - "cc:id": "587", - "cc:Name": "Yankasa MCHP", - "cc:site": [-12.3094, 8.7978], - "user:parentName": "Makari Gbanti", - "user:code": "OU_193257", - "user:orgUnitId": "SQz3xtx1Sgr", - "user:level": "4", - "user:parentId": "lY93YpCxJqf" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.728693, 9.370416], - [-11.7287, 9.370399], - [-11.729299, 9.366999], - [-11.7289, 9.3643], - [-11.727799, 9.361899], - [-11.7232, 9.3561], - [-11.720599, 9.351799], - [-11.717599, 9.349099], - [-11.713899, 9.347199], - [-11.711599, 9.344999], - [-11.707099, 9.336099], - [-11.705799, 9.330999], - [-11.7032, 9.3244], - [-11.702609, 9.319583], - [-11.694583, 9.319582], - [-11.700416, 9.30875], - [-11.694583, 9.30625], - [-11.692917, 9.309582], - [-11.690417, 9.311249], - [-11.685416, 9.311249], - [-11.682083, 9.307916], - [-11.686249, 9.30125], - [-11.675417, 9.300416], - [-11.677916, 9.295417], - [-11.677917, 9.294582], - [-11.679582, 9.289583], - [-11.67375, 9.282083], - [-11.669583, 9.282082], - [-11.667083, 9.279583], - [-11.665416, 9.277083], - [-11.662083, 9.27625], - [-11.660417, 9.276249], - [-11.65125, 9.272083], - [-11.649583, 9.272082], - [-11.648749, 9.267083], - [-11.64625, 9.267082], - [-11.644582, 9.264583], - [-11.642917, 9.264582], - [-11.642916, 9.25875], - [-11.639583, 9.257917], - [-11.632083, 9.260416], - [-11.632082, 9.250417], - [-11.630416, 9.250417], - [-11.622083, 9.254582], - [-11.618749, 9.25125], - [-11.617083, 9.25125], - [-11.611249, 9.257082], - [-11.606249, 9.252917], - [-11.604583, 9.252916], - [-11.604582, 9.24875], - [-11.60125, 9.247917], - [-11.599582, 9.248749], - [-11.59875, 9.248749], - [-11.594584, 9.244584], - [-11.594585, 9.244583], - [-11.600416, 9.244582], - [-11.604582, 9.23625], - [-11.595417, 9.237082], - [-11.593865, 9.231655], - [-11.593803, 9.231715], - [-11.593697, 9.232036], - [-11.593338, 9.232095], - [-11.591249, 9.227917], - [-11.587083, 9.225417], - [-11.584582, 9.228749], - [-11.57625, 9.224583], - [-11.575417, 9.226249], - [-11.574582, 9.226249], - [-11.574268, 9.226092], - [-11.574201, 9.225699], - [-11.573965, 9.225175], - [-11.570416, 9.224582], - [-11.566249, 9.217083], - [-11.56125, 9.217916], - [-11.559582, 9.21625], - [-11.550417, 9.216249], - [-11.548749, 9.212917], - [-11.545417, 9.210417], - [-11.545416, 9.20875], - [-11.537917, 9.21625], - [-11.537916, 9.21958], - [-11.536249, 9.217083], - [-11.534582, 9.217916], - [-11.531249, 9.217082], - [-11.525416, 9.21375], - [-11.52156, 9.21375], - [-11.522157, 9.21434], - [-11.522157, 9.214562], - [-11.520946, 9.215855], - [-11.52014, 9.217602], - [-11.51965, 9.220902], - [-11.519107, 9.22257], - [-11.518988, 9.22383], - [-11.519541, 9.227144], - [-11.520045, 9.228638], - [-11.521551, 9.231808], - [-11.521122, 9.232458], - [-11.521106, 9.232717], - [-11.521715, 9.234069], - [-11.522641, 9.234967], - [-11.524184, 9.23721], - [-11.525545, 9.238338], - [-11.522083, 9.240417], - [-11.517917, 9.250416], - [-11.518637, 9.251859], - [-11.518415, 9.252783], - [-11.51852, 9.255248], - [-11.518714, 9.25582], - [-11.519153, 9.256169], - [-11.520416, 9.256663], - [-11.520417, 9.260416], - [-11.521073, 9.261402], - [-11.521102, 9.261412], - [-11.521249, 9.261422], - [-11.52125, 9.262083], - [-11.525417, 9.265416], - [-11.530435, 9.265417], - [-11.530436, 9.265418], - [-11.530369, 9.265455], - [-11.528857, 9.265928], - [-11.527196, 9.266129], - [-11.525548, 9.26552], - [-11.52125, 9.27125], - [-11.521249, 9.272916], - [-11.519583, 9.272917], - [-11.520417, 9.27375], - [-11.523749, 9.275417], - [-11.523749, 9.277916], - [-11.522917, 9.277917], - [-11.522916, 9.280416], - [-11.522083, 9.282083], - [-11.522082, 9.283749], - [-11.52125, 9.286249], - [-11.528748, 9.29125], - [-11.527082, 9.292082], - [-11.520417, 9.290417], - [-11.517836, 9.289127], - [-11.517856, 9.289154], - [-11.518177, 9.290286], - [-11.514583, 9.292083], - [-11.514582, 9.292916], - [-11.502083, 9.29125], - [-11.50125, 9.298749], - [-11.501249, 9.302083], - [-11.499079, 9.311489], - [-11.499787, 9.311458], - [-11.50129, 9.311833], - [-11.502812, 9.312086], - [-11.503393, 9.312552], - [-11.505579, 9.312939], - [-11.505946, 9.313441], - [-11.506503, 9.313485], - [-11.50719, 9.313808], - [-11.508499, 9.313342], - [-11.510408, 9.313103], - [-11.511406, 9.313435], - [-11.50625, 9.32375], - [-11.507916, 9.327916], - [-11.507083, 9.330416], - [-11.50125, 9.33625], - [-11.500416, 9.345416], - [-11.494853, 9.346808], - [-11.497146, 9.35078], - [-11.493675, 9.352944], - [-11.491024, 9.354983], - [-11.490146, 9.355332], - [-11.490211, 9.355445], - [-11.486305, 9.362211], - [-11.490211, 9.368976], - [-11.486305, 9.375742], - [-11.490211, 9.382508], - [-11.488414, 9.385621], - [-11.489583, 9.387083], - [-11.489582, 9.401249], - [-11.48625, 9.405416], - [-11.486001, 9.405417], - [-11.487, 9.4077], - [-11.489499, 9.411999], - [-11.4909, 9.4151], - [-11.493299, 9.419399], - [-11.4947, 9.4226], - [-11.4972, 9.4268], - [-11.4986, 9.43], - [-11.5007, 9.4341], - [-11.501399, 9.4369], - [-11.5011, 9.440399], - [-11.499, 9.4455], - [-11.4989, 9.448199], - [-11.5002, 9.453999], - [-11.5036, 9.455], - [-11.509099, 9.457099], - [-11.5134, 9.4594], - [-11.521799, 9.463299], - [-11.527, 9.4644], - [-11.529399, 9.465299], - [-11.5322, 9.4668], - [-11.535399, 9.468199], - [-11.5376, 9.4698], - [-11.543699, 9.475299], - [-11.547299, 9.477999], - [-11.550499, 9.479399], - [-11.5548, 9.4818], - [-11.562099, 9.485199], - [-11.5642, 9.4858], - [-11.570399, 9.486499], - [-11.572999, 9.487099], - [-11.5788, 9.4894], - [-11.5831, 9.4899], - [-11.590899, 9.4899], - [-11.594199, 9.4895], - [-11.5964, 9.488799], - [-11.603799, 9.4851], - [-11.605999, 9.4834], - [-11.609899, 9.4796], - [-11.612799, 9.4762], - [-11.6156, 9.4721], - [-11.620599, 9.4689], - [-11.6225, 9.468099], - [-11.6248, 9.467599], - [-11.631199, 9.4674], - [-11.635199, 9.467999], - [-11.640999, 9.470299], - [-11.6445, 9.471], - [-11.647799, 9.472599], - [-11.6515, 9.4687], - [-11.656099, 9.4664], - [-11.6599, 9.463099], - [-11.6621, 9.459699], - [-11.6628, 9.457099], - [-11.6635, 9.4502], - [-11.665399, 9.4465], - [-11.6688, 9.442699], - [-11.673599, 9.438], - [-11.677199, 9.4351], - [-11.684699, 9.4314], - [-11.688199, 9.4304], - [-11.6989, 9.430299], - [-11.701799, 9.43], - [-11.703999, 9.4293], - [-11.7069, 9.427299], - [-11.7118, 9.422399], - [-11.7143, 9.418799], - [-11.7157, 9.415699], - [-11.718099, 9.4114], - [-11.7194, 9.408199], - [-11.7212, 9.404699], - [-11.7221, 9.401199], - [-11.722299, 9.3915], - [-11.7226, 9.387299], - [-11.7233, 9.385099], - [-11.725, 9.381499], - [-11.7264, 9.375599], - [-11.728693, 9.370416] - ] - ], - "type": "Polygon" - }, - "id": 588, - "properties": { - "cc:admin:id": ["20"], - "cc:oBld:total": 450, - "cc:pop:fifteen-to-twenty-four": 2661.071101275312, - "cc:pop:grid3-total": 10635.335655462915, - "cc:pop:kontur-total": 14091.475294448, - "cc:pop:men": 6552.459857884414, - "cc:pop:sixty-plus": 936.2681444841975, - "cc:pop:total": 14236.43048686477, - "cc:pop:under-five": 2235.811437810558, - "cc:pop:women": 7683.970628980347, - "cc:pop:women-fiften-to-forty-nine": 3685.0880633141996, - "cc:pop:wp-total": 12327.071485824785, - "cc:pop:wp-total-UN": 14290.773821371613, - "cc:id": "588", - "cc:Name": "Yara MCHP", - "cc:site": [-11.5822, 9.2701], - "user:parentName": "Diang", - "user:code": "OU_226264", - "user:orgUnitId": "M9q1wOOsrXp", - "user:level": "4", - "user:parentId": "Lt8U7GVWvSR" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.451478, 7.53583], - [-12.4507, 7.5346], - [-12.450099, 7.532899], - [-12.4454, 7.524], - [-12.444299, 7.522599], - [-12.442899, 7.5191], - [-12.441299, 7.520399], - [-12.438399, 7.5214], - [-12.435399, 7.521799], - [-12.4284, 7.521599], - [-12.424899, 7.520199], - [-12.418899, 7.5159], - [-12.4149, 7.5146], - [-12.4117, 7.516], - [-12.4072, 7.521199], - [-12.403799, 7.523799], - [-12.391, 7.528299], - [-12.379699, 7.528], - [-12.3652, 7.5291], - [-12.3578, 7.5328], - [-12.357799, 7.538399], - [-12.3523, 7.543999], - [-12.347399, 7.5453], - [-12.343, 7.5479], - [-12.342999, 7.553299], - [-12.3396, 7.556699], - [-12.336, 7.559599], - [-12.331499, 7.5621], - [-12.325699, 7.5665], - [-12.322399, 7.568099], - [-12.3182, 7.568499], - [-12.295299, 7.5685], - [-12.290899, 7.5693], - [-12.286399, 7.5711], - [-12.2801, 7.572099], - [-12.277, 7.5733], - [-12.276299, 7.5739], - [-12.273, 7.579099], - [-12.2714, 7.582799], - [-12.27, 7.585099], - [-12.2681, 7.587099], - [-12.266769, 7.588129], - [-12.267042, 7.588529], - [-12.267152, 7.589106], - [-12.26714, 7.591166], - [-12.26739, 7.592455], - [-12.268098, 7.593519], - [-12.268848, 7.594018], - [-12.27004, 7.593649], - [-12.270452, 7.593207], - [-12.272082, 7.59375], - [-12.27125, 7.600416], - [-12.271474, 7.600545], - [-12.271906, 7.599799], - [-12.279718, 7.599798], - [-12.283625, 7.593033], - [-12.291437, 7.593033], - [-12.292082, 7.594151], - [-12.292082, 7.598749], - [-12.28932, 7.602203], - [-12.295521, 7.602204], - [-12.299428, 7.608968], - [-12.30724, 7.608969], - [-12.30951, 7.612899], - [-12.309583, 7.612917], - [-12.312082, 7.615416], - [-12.312083, 7.617083], - [-12.316249, 7.614584], - [-12.320073, 7.614583], - [-12.319939, 7.614119], - [-12.319912, 7.614084], - [-12.322865, 7.608969], - [-12.330678, 7.608969], - [-12.334584, 7.615734], - [-12.3398, 7.615734], - [-12.340417, 7.609584], - [-12.342917, 7.609584], - [-12.352916, 7.612916], - [-12.354582, 7.609584], - [-12.358749, 7.607083], - [-12.359288, 7.605469], - [-12.359582, 7.605478], - [-12.359583, 7.605416], - [-12.362917, 7.602084], - [-12.367082, 7.602917], - [-12.369434, 7.605856], - [-12.369426, 7.605766], - [-12.369607, 7.604584], - [-12.371844, 7.604583], - [-12.372079, 7.604057], - [-12.373337, 7.603521], - [-12.374389, 7.60331], - [-12.375415, 7.602983], - [-12.376628, 7.602541], - [-12.377539, 7.60198], - [-12.378798, 7.601374], - [-12.380034, 7.600954], - [-12.380921, 7.600581], - [-12.381784, 7.600673], - [-12.382391, 7.601001], - [-12.383068, 7.601863], - [-12.383816, 7.60359], - [-12.384398, 7.604057], - [-12.387176, 7.60541], - [-12.388282, 7.605441], - [-12.388726, 7.605151], - [-12.38898, 7.604798], - [-12.389149, 7.604622], - [-12.389255, 7.604367], - [-12.38936, 7.603736], - [-12.389219, 7.602826], - [-12.388736, 7.601873], - [-12.388548, 7.601176], - [-12.388023, 7.599296], - [-12.387798, 7.597062], - [-12.387579, 7.595801], - [-12.387669, 7.595274], - [-12.387968, 7.59433], - [-12.390094, 7.592264], - [-12.390796, 7.591782], - [-12.391065, 7.591632], - [-12.39202, 7.59136], - [-12.393575, 7.590787], - [-12.394364, 7.59058], - [-12.395066, 7.590255], - [-12.396489, 7.589297], - [-12.397019, 7.588852], - [-12.397421, 7.588549], - [-12.397832, 7.588071], - [-12.398044, 7.58766], - [-12.39833, 7.586935], - [-12.398343, 7.586836], - [-12.396844, 7.586535], - [-12.3969, 7.586203], - [-12.39656, 7.584526], - [-12.396009, 7.583136], - [-12.396131, 7.581749], - [-12.396759, 7.580072], - [-12.397336, 7.579129], - [-12.398491, 7.578682], - [-12.400325, 7.57808], - [-12.401559, 7.577827], - [-12.404815, 7.578161], - [-12.406086, 7.578627], - [-12.407411, 7.579197], - [-12.408569, 7.579986], - [-12.409526, 7.580624], - [-12.410281, 7.580891], - [-12.411236, 7.580723], - [-12.411001, 7.579802], - [-12.410365, 7.578996], - [-12.409441, 7.578341], - [-12.408182, 7.577586], - [-12.407159, 7.576865], - [-12.406154, 7.576043], - [-12.405499, 7.575439], - [-12.405124, 7.574772], - [-12.404735, 7.573415], - [-12.404976, 7.571603], - [-12.405714, 7.569697], - [-12.406757, 7.567917], - [-12.407083, 7.567917], - [-12.409037, 7.57052], - [-12.409349, 7.570324], - [-12.410597, 7.569511], - [-12.413038, 7.568453], - [-12.414083, 7.56806], - [-12.414443, 7.567963], - [-12.414588, 7.567607], - [-12.415312, 7.567135], - [-12.416782, 7.566501], - [-12.4183, 7.565832], - [-12.419261, 7.565315], - [-12.420021, 7.564582], - [-12.420424, 7.56414], - [-12.42088, 7.563046], - [-12.421073, 7.562417], - [-12.42094, 7.561498], - [-12.41966, 7.559143], - [-12.418983, 7.558708], - [-12.414223, 7.558707], - [-12.411503, 7.553998], - [-12.410129, 7.5536], - [-12.409067, 7.553527], - [-12.407546, 7.553602], - [-12.405881, 7.554312], - [-12.40393, 7.554313], - [-12.401229, 7.558989], - [-12.400154, 7.56011], - [-12.399517, 7.56075], - [-12.398535, 7.560945], - [-12.397813, 7.560853], - [-12.396925, 7.560461], - [-12.39545, 7.559104], - [-12.394692, 7.558205], - [-12.39467, 7.557152], - [-12.394905, 7.555866], - [-12.395541, 7.554545], - [-12.396151, 7.552951], - [-12.397373, 7.550591], - [-12.398855, 7.548458], - [-12.395861, 7.547825], - [-12.396786, 7.545439], - [-12.399238, 7.540707], - [-12.417713, 7.54279], - [-12.426254, 7.539451], - [-12.437969, 7.535814], - [-12.441356, 7.533539], - [-12.443173, 7.536684], - [-12.450984, 7.536685], - [-12.451478, 7.53583] - ] - ], - "type": "Polygon" - }, - "id": 589, - "properties": { - "cc:admin:id": ["39"], - "cc:oBld:total": 423, - "cc:pop:fifteen-to-twenty-four": 268.5101453443492, - "cc:pop:grid3-total": 4250.284914343588, - "cc:pop:kontur-total": 1502.0664933201476, - "cc:pop:men": 709.7036503146443, - "cc:pop:sixty-plus": 88.80257317112739, - "cc:pop:total": 1437.2045190277954, - "cc:pop:under-five": 254.5503235617633, - "cc:pop:women": 727.5008687131512, - "cc:pop:women-fiften-to-forty-nine": 352.3440763604043, - "cc:pop:wp-total": 1444.4168363242716, - "cc:pop:wp-total-UN": 1681.006806051887, - "cc:id": "589", - "cc:Name": "Yargoi MCHP", - "cc:site": [-12.3374, 7.5738], - "user:parentName": "Imperi", - "user:code": "OU_197416", - "user:orgUnitId": "XctPvvWIIcF", - "user:level": "4", - "user:parentId": "XEyIRFd9pct" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.028192, 8.426916], - [-12.027199, 8.4275], - [-12.023899, 8.427999], - [-12.021, 8.4265], - [-12.0195, 8.424099], - [-12.0196, 8.4212], - [-12.0216, 8.416899], - [-12.0233, 8.411099], - [-12.025299, 8.406799], - [-12.025499, 8.4032], - [-12.024199, 8.4007], - [-12.022499, 8.3994], - [-12.019399, 8.398599], - [-12.016599, 8.3985], - [-12.0088, 8.398799], - [-12.005, 8.3987], - [-12.001699, 8.397999], - [-11.999899, 8.396399], - [-11.997899, 8.393799], - [-11.9916, 8.3869], - [-11.990644, 8.384113], - [-11.990437, 8.384253], - [-11.989857, 8.384194], - [-11.989397, 8.38406], - [-11.989132, 8.383731], - [-11.988833, 8.381214], - [-11.988653, 8.38075], - [-11.987612, 8.379525], - [-11.987015, 8.379399], - [-11.986459, 8.379981], - [-11.985406, 8.383737], - [-11.985008, 8.383342], - [-11.984232, 8.386365], - [-11.983626, 8.387513], - [-11.98319, 8.387894], - [-11.982499, 8.388247], - [-11.981885, 8.388306], - [-11.978989, 8.388031], - [-11.975439, 8.388031], - [-11.973499, 8.388645], - [-11.969764, 8.388802], - [-11.968773, 8.389125], - [-11.968311, 8.389494], - [-11.968473, 8.390144], - [-11.967249, 8.39142], - [-11.9669, 8.392863], - [-11.968109, 8.394583], - [-11.967625, 8.394584], - [-11.967809, 8.395028], - [-11.967754, 8.395396], - [-11.967122, 8.396366], - [-11.965772, 8.397879], - [-11.964672, 8.397965], - [-11.963535, 8.397653], - [-11.962957, 8.397298], - [-11.960698, 8.394075], - [-11.960105, 8.393748], - [-11.958888, 8.393466], - [-11.958242, 8.393595], - [-11.957486, 8.394121], - [-11.954591, 8.39636], - [-11.953405, 8.397511], - [-11.952403, 8.399249], - [-11.951118, 8.402516], - [-11.950725, 8.403164], - [-11.949083, 8.404948], - [-11.945295, 8.408192], - [-11.942869, 8.411872], - [-11.942327, 8.412298], - [-11.941968, 8.412376], - [-11.941321, 8.412165], - [-11.94012, 8.411561], - [-11.938151, 8.40994], - [-11.936723, 8.408409], - [-11.935566, 8.407671], - [-11.934739, 8.407614], - [-11.929744, 8.410665], - [-11.927157, 8.411798], - [-11.921931, 8.413567], - [-11.921913, 8.41358], - [-11.922245, 8.413913], - [-11.921581, 8.414214], - [-11.920264, 8.415102], - [-11.919905, 8.415587], - [-11.919632, 8.416697], - [-11.919616, 8.41917], - [-11.920274, 8.422423], - [-11.921621, 8.425892], - [-11.922761, 8.425837], - [-11.923479, 8.426537], - [-11.923479, 8.426538], - [-11.922224, 8.426751], - [-11.921818, 8.428097], - [-11.921817, 8.429116], - [-11.921526, 8.430899], - [-11.921071, 8.431251], - [-11.92513, 8.431252], - [-11.926184, 8.43308], - [-11.926332, 8.433977], - [-11.927691, 8.437476], - [-11.935416, 8.435416], - [-11.93625, 8.43125], - [-11.942082, 8.42875], - [-11.954582, 8.428749], - [-11.954386, 8.426583], - [-11.959738, 8.426583], - [-11.962916, 8.432087], - [-11.962917, 8.427917], - [-11.967739, 8.427917], - [-11.971647, 8.434682], - [-11.972718, 8.434682], - [-11.975327, 8.433378], - [-11.975352, 8.433229], - [-11.975303, 8.433129], - [-11.975304, 8.433128], - [-11.977916, 8.432084], - [-11.978618, 8.43699], - [-11.98254, 8.434396], - [-11.982916, 8.434583], - [-11.98375, 8.437916], - [-11.985417, 8.43875], - [-11.987917, 8.443749], - [-11.988749, 8.443749], - [-11.990252, 8.434732], - [-11.990437, 8.434762], - [-11.990697, 8.434843], - [-11.99125, 8.432084], - [-11.999582, 8.432916], - [-12.002917, 8.43125], - [-12.007916, 8.432916], - [-12.010417, 8.43125], - [-12.012917, 8.433749], - [-12.019582, 8.436249], - [-12.025416, 8.433749], - [-12.025417, 8.431424], - [-12.026588, 8.429735], - [-12.028192, 8.426916] - ] - ], - "type": "Polygon" - }, - "id": 590, - "properties": { - "cc:admin:id": ["36"], - "cc:oBld:total": 0, - "cc:pop:fifteen-to-twenty-four": 485.4242176697457, - "cc:pop:grid3-total": 2886.9194575257134, - "cc:pop:kontur-total": 2419.874972330088, - "cc:pop:men": 1206.3235584904046, - "cc:pop:sixty-plus": 169.9087030909447, - "cc:pop:total": 2619.110563550154, - "cc:pop:under-five": 413.9379708293199, - "cc:pop:women": 1412.7870050597487, - "cc:pop:women-fiften-to-forty-nine": 690.3932030844057, - "cc:pop:wp-total": 2561.6732286056813, - "cc:pop:wp-total-UN": 2972.7739746472084, - "cc:id": "590", - "cc:Name": "Yeben MCHP", - "cc:site": [-11.9933, 8.4001], - "user:parentName": "Gbonkonlenken", - "user:code": "OU_268209", - "user:orgUnitId": "g031LbUPMmh", - "user:level": "4", - "user:parentId": "P69SId31eDp" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-10.913399, 8.632899], - [-10.9096, 8.6266], - [-10.908799, 8.624399], - [-10.908299, 8.619999], - [-10.9082, 8.6099], - [-10.9075, 8.6051], - [-10.905299, 8.599699], - [-10.904499, 8.595999], - [-10.9041, 8.5902], - [-10.9035, 8.5865], - [-10.901199, 8.580599], - [-10.900499, 8.576399], - [-10.899899, 8.569699], - [-10.898999, 8.566199], - [-10.897299, 8.562499], - [-10.8965, 8.5588], - [-10.8965, 8.555799], - [-10.897099, 8.5521], - [-10.899199, 8.5476], - [-10.900799, 8.5424], - [-10.901899, 8.5397], - [-10.8936, 8.5366], - [-10.8914, 8.535199], - [-10.8894, 8.532599], - [-10.888099, 8.526799], - [-10.8869, 8.5245], - [-10.885399, 8.522499], - [-10.883599, 8.520699], - [-10.8815, 8.5192], - [-10.873199, 8.515099], - [-10.8697, 8.5145], - [-10.8669, 8.5144], - [-10.8642, 8.514699], - [-10.8617, 8.515499], - [-10.8582, 8.517399], - [-10.854999, 8.5188], - [-10.8508, 8.521199], - [-10.847599, 8.5225], - [-10.8433, 8.524899], - [-10.839399, 8.5268], - [-10.836599, 8.5289], - [-10.817083, 8.548561], - [-10.817083, 8.556249], - [-10.81875, 8.558749], - [-10.824582, 8.55875], - [-10.826004, 8.559224], - [-10.826051, 8.559583], - [-10.830416, 8.559584], - [-10.835417, 8.56125], - [-10.836249, 8.562917], - [-10.83625, 8.563887], - [-10.836456, 8.564245], - [-10.83625, 8.564604], - [-10.836249, 8.569583], - [-10.830417, 8.577084], - [-10.832083, 8.583749], - [-10.836249, 8.58875], - [-10.83625, 8.592916], - [-10.837917, 8.592917], - [-10.842916, 8.59875], - [-10.844113, 8.602343], - [-10.843013, 8.604451], - [-10.842861, 8.604583], - [-10.842917, 8.604584], - [-10.84875, 8.610416], - [-10.852916, 8.60875], - [-10.852917, 8.613749], - [-10.861249, 8.617083], - [-10.864068, 8.617084], - [-10.864032, 8.617165], - [-10.863252, 8.618367], - [-10.862788, 8.620169], - [-10.861351, 8.621844], - [-10.860488, 8.624809], - [-10.862916, 8.625417], - [-10.867082, 8.628749], - [-10.867083, 8.630416], - [-10.869582, 8.632083], - [-10.870417, 8.634583], - [-10.872916, 8.636249], - [-10.874583, 8.637916], - [-10.882916, 8.63875], - [-10.882916, 8.643749], - [-10.881906, 8.645265], - [-10.882082, 8.645425], - [-10.882083, 8.64625], - [-10.882916, 8.64875], - [-10.882303, 8.653661], - [-10.882385, 8.653662], - [-10.882574, 8.65394], - [-10.882891, 8.653578], - [-10.883269, 8.653699], - [-10.883469, 8.653359], - [-10.883384, 8.652898], - [-10.883014, 8.652687], - [-10.883261, 8.652199], - [-10.883594, 8.652442], - [-10.884385, 8.651958], - [-10.885058, 8.651965], - [-10.885798, 8.650614], - [-10.88642, 8.650734], - [-10.8864, 8.650994], - [-10.88715, 8.65108], - [-10.887564, 8.651397], - [-10.887922, 8.651425], - [-10.887779, 8.651705], - [-10.888008, 8.651992], - [-10.887859, 8.652156], - [-10.888089, 8.652353], - [-10.88788, 8.65256], - [-10.888245, 8.653094], - [-10.888701, 8.653264], - [-10.889128, 8.653183], - [-10.889768, 8.652793], - [-10.890135, 8.653135], - [-10.89014, 8.653149], - [-10.889929, 8.653234], - [-10.889703, 8.653342], - [-10.889467, 8.654616], - [-10.889543, 8.65496], - [-10.890125, 8.655123], - [-10.890243, 8.655482], - [-10.892299, 8.653], - [-10.894399, 8.6489], - [-10.8971, 8.645199], - [-10.8999, 8.642599], - [-10.9021, 8.641299], - [-10.9055, 8.639699], - [-10.9085, 8.637399], - [-10.913399, 8.632899] - ] - ], - "type": "Polygon" - }, - "id": 591, - "properties": { - "cc:admin:id": ["24"], - "cc:oBld:total": 971, - "cc:pop:fifteen-to-twenty-four": 690.5485473236915, - "cc:pop:grid3-total": 6151.136349236909, - "cc:pop:kontur-total": 3295.1926846025895, - "cc:pop:men": 1679.5692724880687, - "cc:pop:sixty-plus": 158.56276945983578, - "cc:pop:total": 3394.4452671341096, - "cc:pop:under-five": 545.1680790689355, - "cc:pop:women": 1714.8759946460405, - "cc:pop:women-fiften-to-forty-nine": 849.1113167835274, - "cc:pop:wp-total": 2958.511176420269, - "cc:pop:wp-total-UN": 3429.1822856444905, - "cc:id": "591", - "cc:Name": "Yekior MCHP", - "cc:site": [-10.878, 8.5759], - "user:parentName": "Fiama", - "user:code": "OU_233361", - "user:orgUnitId": "dBD9OHJFN8u", - "user:level": "4", - "user:parentId": "CF243RPvNY7" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.993699, 8.3772], - [-11.987999, 8.3689], - [-11.984699, 8.3663], - [-11.980199, 8.3647], - [-11.975, 8.365399], - [-11.9707, 8.364699], - [-11.9637, 8.3611], - [-11.960899, 8.359899], - [-11.954299, 8.356799], - [-11.9447, 8.3531], - [-11.938099, 8.351099], - [-11.925699, 8.345899], - [-11.917, 8.3439], - [-11.9094, 8.3418], - [-11.8945, 8.3402], - [-11.886999, 8.338099], - [-11.877, 8.3366], - [-11.8682, 8.3342], - [-11.864, 8.3337], - [-11.8596, 8.333799], - [-11.8554, 8.334499], - [-11.8443, 8.338399], - [-11.8318, 8.346399], - [-11.8262, 8.351], - [-11.823, 8.360099], - [-11.8211, 8.363399], - [-11.816599, 8.3686], - [-11.8113, 8.373099], - [-11.8028, 8.377699], - [-11.7952, 8.381099], - [-11.7885, 8.382899], - [-11.783899, 8.3846], - [-11.7749, 8.3864], - [-11.7701, 8.388999], - [-11.7671, 8.391999], - [-11.764799, 8.3953], - [-11.762936, 8.399754], - [-11.762499, 8.4008], - [-11.7593, 8.410799], - [-11.757399, 8.4152], - [-11.754399, 8.4194], - [-11.7434, 8.431599], - [-11.738699, 8.44], - [-11.734899, 8.4486], - [-11.733499, 8.4531], - [-11.7321, 8.459899], - [-11.7308, 8.464499], - [-11.728099, 8.4708], - [-11.7259, 8.473599], - [-11.721799, 8.477], - [-11.717499, 8.4819], - [-11.714599, 8.4842], - [-11.7103, 8.487], - [-11.714599, 8.490499], - [-11.719999, 8.495499], - [-11.722999, 8.497899], - [-11.7286, 8.501], - [-11.7343, 8.5054], - [-11.7386, 8.5075], - [-11.742899, 8.509799], - [-11.746099, 8.511199], - [-11.750499, 8.513499], - [-11.7537, 8.5149], - [-11.757999, 8.517299], - [-11.7612, 8.5186], - [-11.765499, 8.520999], - [-11.7688, 8.5223], - [-11.777199, 8.526799], - [-11.7837, 8.5317], - [-11.7876, 8.5335], - [-11.791899, 8.535899], - [-11.7951, 8.5372], - [-11.799499, 8.539599], - [-11.8027, 8.5409], - [-11.806999, 8.543299], - [-11.8102, 8.5446], - [-11.814499, 8.546999], - [-11.817699, 8.548399], - [-11.819535, 8.5494], - [-11.819862, 8.548729], - [-11.820481, 8.547246], - [-11.820601, 8.546119], - [-11.819972, 8.544257], - [-11.818204, 8.540088], - [-11.818082, 8.53941], - [-11.818799, 8.537304], - [-11.824582, 8.538749], - [-11.83125, 8.532084], - [-11.832916, 8.532083], - [-11.834583, 8.53125], - [-11.844582, 8.53125], - [-11.845315, 8.531322], - [-11.843416, 8.528032], - [-11.845234, 8.524881], - [-11.845653, 8.52444], - [-11.84588, 8.524368], - [-11.847187, 8.526109], - [-11.850186, 8.526109], - [-11.854094, 8.519345], - [-11.856313, 8.519345], - [-11.860247, 8.524574], - [-11.859583, 8.52125], - [-11.860246, 8.517936], - [-11.861589, 8.518005], - [-11.86439, 8.51688], - [-11.869877, 8.515635], - [-11.871824, 8.514922], - [-11.872977, 8.514279], - [-11.87495, 8.513744], - [-11.875154, 8.51368], - [-11.876788, 8.511931], - [-11.877406, 8.51148], - [-11.882573, 8.510236], - [-11.886264, 8.508454], - [-11.888135, 8.507895], - [-11.888193, 8.507859], - [-11.884583, 8.502084], - [-11.885416, 8.500417], - [-11.892916, 8.498749], - [-11.897082, 8.496249], - [-11.897082, 8.490417], - [-11.89375, 8.487083], - [-11.894582, 8.474584], - [-11.89375, 8.47375], - [-11.893902, 8.473655], - [-11.894803, 8.473434], - [-11.895563, 8.473965], - [-11.896037, 8.475162], - [-11.896969, 8.475672], - [-11.897152, 8.474876], - [-11.896937, 8.474027], - [-11.896294, 8.472817], - [-11.896239, 8.472331], - [-11.896627, 8.471927], - [-11.897067, 8.471916], - [-11.897291, 8.472288], - [-11.897303, 8.472764], - [-11.898021, 8.473082], - [-11.898181, 8.473519], - [-11.898461, 8.473666], - [-11.899704, 8.47283], - [-11.900121, 8.472989], - [-11.900371, 8.473507], - [-11.900949, 8.473932], - [-11.901656, 8.473667], - [-11.903749, 8.471615], - [-11.90375, 8.469583], - [-11.907082, 8.464583], - [-11.904582, 8.459584], - [-11.902917, 8.458749], - [-11.90375, 8.45625], - [-11.904582, 8.455416], - [-11.904583, 8.44875], - [-11.910318, 8.444653], - [-11.910328, 8.444656], - [-11.910736, 8.444647], - [-11.911791, 8.439375], - [-11.911731, 8.439062], - [-11.911881, 8.438929], - [-11.912916, 8.43375], - [-11.90875, 8.432916], - [-11.908004, 8.425454], - [-11.908562, 8.425503], - [-11.909897, 8.426077], - [-11.911663, 8.427072], - [-11.911567, 8.426686], - [-11.911568, 8.426684], - [-11.914594, 8.428267], - [-11.916393, 8.429001], - [-11.917738, 8.429318], - [-11.918548, 8.429269], - [-11.919436, 8.428914], - [-11.921304, 8.426226], - [-11.919921, 8.422666], - [-11.91989, 8.422537], - [-11.920271, 8.422408], - [-11.919616, 8.41917], - [-11.919633, 8.416696], - [-11.919905, 8.415587], - [-11.920264, 8.415102], - [-11.921581, 8.414214], - [-11.922245, 8.413912], - [-11.921913, 8.41358], - [-11.921913, 8.413578], - [-11.921931, 8.413566], - [-11.927157, 8.411798], - [-11.929744, 8.410665], - [-11.934739, 8.407614], - [-11.935567, 8.407671], - [-11.936723, 8.408409], - [-11.938151, 8.40994], - [-11.94012, 8.411561], - [-11.941321, 8.412165], - [-11.941969, 8.412376], - [-11.942327, 8.412298], - [-11.942869, 8.411872], - [-11.945295, 8.408192], - [-11.949083, 8.404948], - [-11.950725, 8.403164], - [-11.951118, 8.402516], - [-11.952403, 8.399249], - [-11.953405, 8.397511], - [-11.954591, 8.39636], - [-11.957486, 8.394121], - [-11.958241, 8.393595], - [-11.958889, 8.393466], - [-11.960104, 8.393747], - [-11.960697, 8.394075], - [-11.962956, 8.397297], - [-11.963534, 8.397652], - [-11.964673, 8.397965], - [-11.965772, 8.397879], - [-11.967122, 8.396366], - [-11.967754, 8.395396], - [-11.967809, 8.395029], - [-11.967625, 8.394584], - [-11.96811, 8.394583], - [-11.9669, 8.392863], - [-11.967248, 8.39142], - [-11.968473, 8.390144], - [-11.968311, 8.389494], - [-11.968772, 8.389125], - [-11.969765, 8.388801], - [-11.973499, 8.388645], - [-11.975439, 8.388031], - [-11.978989, 8.388031], - [-11.981884, 8.388306], - [-11.9825, 8.388247], - [-11.98319, 8.387894], - [-11.983626, 8.387513], - [-11.984232, 8.386365], - [-11.985007, 8.383343], - [-11.985009, 8.383343], - [-11.985405, 8.383738], - [-11.986459, 8.379981], - [-11.987014, 8.379399], - [-11.987613, 8.379525], - [-11.988653, 8.38075], - [-11.988833, 8.381214], - [-11.989132, 8.383731], - [-11.989397, 8.38406], - [-11.989858, 8.384195], - [-11.990437, 8.384253], - [-11.990644, 8.384112], - [-11.9904, 8.383399], - [-11.991399, 8.3807], - [-11.993699, 8.3772] - ] - ], - "type": "Polygon" - }, - "id": 592, - "properties": { - "cc:admin:id": ["36"], - "cc:oBld:total": 1055, - "cc:pop:fifteen-to-twenty-four": 8545.968818968719, - "cc:pop:grid3-total": 35542.35956713861, - "cc:pop:kontur-total": 47129.00553203044, - "cc:pop:men": 21423.223705088883, - "cc:pop:sixty-plus": 3009.7281124742144, - "cc:pop:total": 46518.23014769193, - "cc:pop:under-five": 7341.893195554755, - "cc:pop:women": 25095.00644260307, - "cc:pop:women-fiften-to-forty-nine": 12183.012140587203, - "cc:pop:wp-total": 36516.37520308967, - "cc:pop:wp-total-UN": 42314.787470120464, - "cc:id": "592", - "cc:Name": "Yele CHC", - "cc:site": [-11.8329, 8.4141], - "user:parentName": "Gbonkonlenken", - "user:code": "OU_268207", - "user:orgUnitId": "sesv0eXljBq", - "user:level": "4", - "user:parentId": "P69SId31eDp" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.10125, 8.628749], - [-11.101249, 8.627916], - [-11.09625, 8.622917], - [-11.096249, 8.62125], - [-11.092917, 8.620416], - [-11.092917, 8.619583], - [-11.095416, 8.61375], - [-11.096334, 8.611914], - [-11.095509, 8.611701], - [-11.094946, 8.61128], - [-11.093877, 8.611189], - [-11.093112, 8.610882], - [-11.093025, 8.610894], - [-11.092731, 8.61035], - [-11.093395, 8.609341], - [-11.093029, 8.609141], - [-11.092843, 8.607981], - [-11.091962, 8.607471], - [-11.090657, 8.607144], - [-11.090188, 8.606741], - [-11.090223, 8.605417], - [-11.089802, 8.605134], - [-11.089802, 8.604585], - [-11.090374, 8.604317], - [-11.089805, 8.603863], - [-11.088719, 8.60424], - [-11.087961, 8.604294], - [-11.087513, 8.602455], - [-11.087234, 8.601439], - [-11.086249, 8.602916], - [-11.082917, 8.602084], - [-11.081314, 8.603151], - [-11.080219, 8.601176], - [-11.080078, 8.599868], - [-11.079806, 8.598984], - [-11.080023, 8.598263], - [-11.079384, 8.598597], - [-11.078967, 8.598219], - [-11.078367, 8.598265], - [-11.077617, 8.598813], - [-11.077222, 8.598846], - [-11.076426, 8.598675], - [-11.075951, 8.5984], - [-11.075116, 8.5986], - [-11.073942, 8.599251], - [-11.074263, 8.5981], - [-11.073766, 8.597971], - [-11.07243, 8.597101], - [-11.071961, 8.596434], - [-11.071645, 8.596491], - [-11.07108, 8.596311], - [-11.070055, 8.596514], - [-11.069927, 8.59683], - [-11.069489, 8.59709], - [-11.069346, 8.597204], - [-11.0693, 8.597253], - [-11.069121, 8.597599], - [-11.069099, 8.597636], - [-11.069019, 8.597819], - [-11.069054, 8.598104], - [-11.069286, 8.598367], - [-11.069286, 8.598368], - [-11.06625, 8.599583], - [-11.065416, 8.59875], - [-11.058749, 8.602083], - [-11.056622, 8.601552], - [-11.055884, 8.60198], - [-11.055666, 8.602041], - [-11.054582, 8.600417], - [-11.049582, 8.601249], - [-11.047916, 8.600417], - [-11.047597, 8.600575], - [-11.046662, 8.599067], - [-11.045448, 8.599529], - [-11.04438, 8.601202], - [-11.04308, 8.603396], - [-11.041988, 8.604348], - [-11.041683, 8.604781], - [-11.041569, 8.604961], - [-11.041273, 8.605998], - [-11.041221, 8.606224], - [-11.040969, 8.606838], - [-11.042146, 8.608217], - [-11.042197, 8.608279], - [-11.041777, 8.608675], - [-11.040829, 8.609324], - [-11.040756, 8.609515], - [-11.04045, 8.609599], - [-11.039678, 8.609782], - [-11.039305, 8.610225], - [-11.039123, 8.610635], - [-11.038668, 8.611773], - [-11.038492, 8.612183], - [-11.038703, 8.612373], - [-11.039202, 8.613143], - [-11.039286, 8.613169], - [-11.039848, 8.614372], - [-11.03939, 8.615142], - [-11.041804, 8.616357], - [-11.042032, 8.616595], - [-11.041334, 8.616786], - [-11.040777, 8.616674], - [-11.039398, 8.616081], - [-11.036145, 8.621715], - [-11.04005, 8.62848], - [-11.039477, 8.629476], - [-11.040416, 8.630417], - [-11.03875, 8.633749], - [-11.040416, 8.634583], - [-11.040417, 8.635416], - [-11.042082, 8.637084], - [-11.040416, 8.644583], - [-11.038749, 8.64375], - [-11.035417, 8.64375], - [-11.033991, 8.64945], - [-11.034366, 8.649435], - [-11.03375, 8.653749], - [-11.033729, 8.65377], - [-11.0364, 8.6552], - [-11.0396, 8.6565], - [-11.0432, 8.6585], - [-11.047699, 8.660699], - [-11.050499, 8.663699], - [-11.054499, 8.671999], - [-11.055699, 8.677099], - [-11.056022, 8.677841], - [-11.057083, 8.676249], - [-11.060416, 8.674582], - [-11.06125, 8.672083], - [-11.066795, 8.673469], - [-11.067226, 8.672247], - [-11.068528, 8.669232], - [-11.072082, 8.670416], - [-11.074583, 8.665417], - [-11.080416, 8.665417], - [-11.082083, 8.667916], - [-11.087082, 8.667084], - [-11.093749, 8.668749], - [-11.094143, 8.667964], - [-11.094184, 8.668008], - [-11.094328, 8.668234], - [-11.096249, 8.663749], - [-11.094582, 8.657917], - [-11.092917, 8.656249], - [-11.094582, 8.652083], - [-11.092916, 8.647084], - [-11.09125, 8.647083], - [-11.091249, 8.640417], - [-11.090416, 8.640416], - [-11.089583, 8.638749], - [-11.089583, 8.637916], - [-11.090416, 8.631251], - [-11.090418, 8.63125], - [-11.097082, 8.632916], - [-11.10125, 8.628749] - ] - ], - "type": "Polygon" - }, - "id": 593, - "properties": { - "cc:admin:id": ["100"], - "cc:oBld:total": 2060, - "cc:pop:fifteen-to-twenty-four": 2336.486280635072, - "cc:pop:grid3-total": 16022.85381939278, - "cc:pop:kontur-total": 12855.49343026545, - "cc:pop:men": 6928.210981512966, - "cc:pop:sixty-plus": 748.0516284527582, - "cc:pop:total": 12582.566526191838, - "cc:pop:under-five": 1991.1444330697068, - "cc:pop:women": 5654.355544678874, - "cc:pop:women-fiften-to-forty-nine": 2827.9861539174312, - "cc:pop:wp-total": 10306.931505061104, - "cc:pop:wp-total-UN": 11950.61887321739, - "cc:id": "593", - "cc:Name": "Yengema CHC", - "cc:site": [-11.0427, 8.6167], - "user:parentName": "Nimikoro", - "user:code": "OU_233398", - "user:orgUnitId": "PA1spYiNZfv", - "user:level": "4", - "user:parentId": "DmaLM8WYmWv" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-13.203998, 8.596485], - [-13.203799, 8.5943], - [-13.202899, 8.593699], - [-13.202599, 8.5904], - [-13.2021, 8.590099], - [-13.202099, 8.5885], - [-13.2015, 8.587899], - [-13.201499, 8.5854], - [-13.2007, 8.583799], - [-13.1999, 8.579], - [-13.199, 8.577099], - [-13.198999, 8.5751], - [-13.1982, 8.574599], - [-13.198199, 8.5735], - [-13.1974, 8.5715], - [-13.196499, 8.570999], - [-13.195999, 8.569], - [-13.195099, 8.568199], - [-13.194299, 8.565999], - [-13.192099, 8.5626], - [-13.191499, 8.562599], - [-13.1904, 8.560399], - [-13.190399, 8.559], - [-13.189299, 8.558499], - [-13.188699, 8.5565], - [-13.1876, 8.554899], - [-13.187399, 8.5535], - [-13.1863, 8.5529], - [-13.186192, 8.552677], - [-13.184583, 8.55375], - [-13.184175, 8.555785], - [-13.183632, 8.556065], - [-13.183502, 8.556131], - [-13.1835, 8.556131], - [-13.184063, 8.555173], - [-13.183977, 8.554794], - [-13.183712, 8.55475], - [-13.183586, 8.554507], - [-13.18346, 8.554723], - [-13.182868, 8.556123], - [-13.182773, 8.556426], - [-13.182614, 8.557003], - [-13.182594, 8.557059], - [-13.182248, 8.557547], - [-13.18214, 8.5576], - [-13.181763, 8.557713], - [-13.181309, 8.55784], - [-13.181726, 8.558], - [-13.182595, 8.557946], - [-13.182585, 8.558888], - [-13.182347, 8.559743], - [-13.182391, 8.55994], - [-13.18295, 8.560406], - [-13.182452, 8.560992], - [-13.182452, 8.561419], - [-13.182773, 8.561545], - [-13.183206, 8.561403], - [-13.183426, 8.561716], - [-13.183372, 8.562147], - [-13.18356, 8.562295], - [-13.184286, 8.561946], - [-13.185017, 8.562772], - [-13.185404, 8.562701], - [-13.185637, 8.562471], - [-13.185516, 8.561868], - [-13.185677, 8.561809], - [-13.18651, 8.562169], - [-13.18651, 8.56217], - [-13.185815, 8.562329], - [-13.185792, 8.56263], - [-13.185499, 8.562921], - [-13.185698, 8.563391], - [-13.185593, 8.563577], - [-13.185355, 8.563588], - [-13.185316, 8.563228], - [-13.184895, 8.563272], - [-13.184562, 8.563584], - [-13.183926, 8.563748], - [-13.183027, 8.564772], - [-13.182546, 8.564964], - [-13.181732, 8.565649], - [-13.181814, 8.56647], - [-13.181443, 8.567078], - [-13.181051, 8.566936], - [-13.181221, 8.566471], - [-13.180978, 8.566234], - [-13.180416, 8.567916], - [-13.179583, 8.56875], - [-13.179582, 8.569584], - [-13.172917, 8.57125], - [-13.17625, 8.579583], - [-13.177917, 8.579584], - [-13.17875, 8.585416], - [-13.183296, 8.585922], - [-13.184576, 8.588138], - [-13.181582, 8.593325], - [-13.181848, 8.593668], - [-13.182102, 8.594015], - [-13.182832, 8.593762], - [-13.183405, 8.593629], - [-13.183692, 8.593738], - [-13.183744, 8.59408], - [-13.183876, 8.594777], - [-13.18393, 8.595136], - [-13.184043, 8.595926], - [-13.184108, 8.596115], - [-13.184156, 8.59629], - [-13.184454, 8.597151], - [-13.184561, 8.597695], - [-13.187089, 8.596709], - [-13.187241, 8.596986], - [-13.187309, 8.597478], - [-13.187441, 8.597459], - [-13.189674, 8.597037], - [-13.189711, 8.597038], - [-13.189725, 8.597055], - [-13.190138, 8.597702], - [-13.190664, 8.598079], - [-13.191247, 8.598718], - [-13.191939, 8.598284], - [-13.19245, 8.598164], - [-13.193131, 8.598146], - [-13.193148, 8.598149], - [-13.193415, 8.596979], - [-13.195762, 8.59698], - [-13.195814, 8.596978], - [-13.196763, 8.596724], - [-13.197532, 8.596891], - [-13.197708, 8.596777], - [-13.198265, 8.596852], - [-13.198453, 8.596708], - [-13.198696, 8.596811], - [-13.199709, 8.596407], - [-13.200918, 8.596667], - [-13.201011, 8.596492], - [-13.201627, 8.596434], - [-13.201642, 8.596617], - [-13.201656, 8.596876], - [-13.203998, 8.596485] - ] - ], - "type": "Polygon" - }, - "id": 594, - "properties": { - "cc:admin:id": ["44"], - "cc:oBld:total": 747, - "cc:pop:fifteen-to-twenty-four": 1161.3305665751564, - "cc:pop:grid3-total": 4196.976724885187, - "cc:pop:kontur-total": 6125.911097428027, - "cc:pop:men": 3101.400207465487, - "cc:pop:sixty-plus": 385.6542340503674, - "cc:pop:total": 6455.187935166046, - "cc:pop:under-five": 1054.807333262797, - "cc:pop:women": 3353.7877277005596, - "cc:pop:women-fiften-to-forty-nine": 1617.4367299401638, - "cc:pop:wp-total": 4741.853964502704, - "cc:pop:wp-total-UN": 5498.614478654358, - "cc:id": "594", - "cc:Name": "Yongoro CHP", - "cc:site": [-13.2015, 8.5922], - "user:parentName": "Kaffu Bullom", - "user:code": "OU_255006", - "user:orgUnitId": "YDDOlgRBEAA", - "user:level": "4", - "user:parentId": "vn9KJsLyP5f" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.288822, 8.46739], - [-12.28739, 8.466618], - [-12.28575, 8.465346], - [-12.284357, 8.464021], - [-12.283017, 8.462386], - [-12.281758, 8.461299], - [-12.281092, 8.460289], - [-12.280933, 8.459086], - [-12.281771, 8.458762], - [-12.282122, 8.458395], - [-12.282917, 8.45125], - [-12.284582, 8.451249], - [-12.288749, 8.442084], - [-12.287916, 8.442083], - [-12.285416, 8.439584], - [-12.281323, 8.4389], - [-12.281448, 8.438199], - [-12.281426, 8.437959], - [-12.280144, 8.437925], - [-12.27625, 8.432084], - [-12.277916, 8.432083], - [-12.282082, 8.427083], - [-12.282917, 8.424584], - [-12.285086, 8.423932], - [-12.285134, 8.423848], - [-12.281228, 8.417083], - [-12.276845, 8.417083], - [-12.275416, 8.420416], - [-12.270417, 8.421249], - [-12.268749, 8.410417], - [-12.267083, 8.410416], - [-12.267083, 8.404584], - [-12.267916, 8.402917], - [-12.274582, 8.399584], - [-12.277082, 8.399583], - [-12.276249, 8.395417], - [-12.269582, 8.397084], - [-12.259583, 8.397083], - [-12.262083, 8.392084], - [-12.267916, 8.386249], - [-12.267554, 8.385163], - [-12.267917, 8.384987], - [-12.267917, 8.381249], - [-12.268749, 8.372084], - [-12.263749, 8.367084], - [-12.256956, 8.367083], - [-12.255993, 8.365417], - [-12.247917, 8.365416], - [-12.246249, 8.36375], - [-12.244846, 8.363594], - [-12.242081, 8.368382], - [-12.243225, 8.370365], - [-12.243382, 8.370486], - [-12.243092, 8.370905], - [-12.242696, 8.371737], - [-12.243623, 8.372363], - [-12.244107, 8.373351], - [-12.244938, 8.37421], - [-12.244889, 8.374418], - [-12.244306, 8.374848], - [-12.244616, 8.375357], - [-12.244306, 8.375866], - [-12.244788, 8.376588], - [-12.24518, 8.376795], - [-12.245501, 8.376748], - [-12.245682, 8.376862], - [-12.245416, 8.377084], - [-12.24375, 8.382082], - [-12.243748, 8.382082], - [-12.242799, 8.381134], - [-12.238619, 8.381133], - [-12.237242, 8.37875], - [-12.23125, 8.37875], - [-12.227916, 8.382083], - [-12.225416, 8.382917], - [-12.222917, 8.38625], - [-12.225416, 8.390416], - [-12.225417, 8.392916], - [-12.227915, 8.396249], - [-12.22625, 8.39625], - [-12.222917, 8.399583], - [-12.223432, 8.40165], - [-12.219207, 8.403966], - [-12.215107, 8.406345], - [-12.212916, 8.412916], - [-12.209583, 8.41375], - [-12.208002, 8.419282], - [-12.208, 8.419282], - [-12.207896, 8.419163], - [-12.207277, 8.418647], - [-12.208749, 8.422083], - [-12.205417, 8.423749], - [-12.204583, 8.424584], - [-12.204582, 8.432082], - [-12.197944, 8.427104], - [-12.196519, 8.429776], - [-12.19642, 8.430241], - [-12.197521, 8.437388], - [-12.196639, 8.440719], - [-12.196403, 8.441556], - [-12.197083, 8.442916], - [-12.201249, 8.443749], - [-12.203749, 8.442917], - [-12.205417, 8.449583], - [-12.208749, 8.448749], - [-12.211809, 8.445689], - [-12.211716, 8.445544], - [-12.211663, 8.444526], - [-12.21355, 8.444594], - [-12.213535, 8.443964], - [-12.213749, 8.443751], - [-12.214583, 8.448749], - [-12.22125, 8.452083], - [-12.223749, 8.45125], - [-12.226593, 8.452387], - [-12.227345, 8.451365], - [-12.228861, 8.449885], - [-12.233327, 8.447073], - [-12.234582, 8.449584], - [-12.234583, 8.452083], - [-12.235417, 8.453749], - [-12.240416, 8.452917], - [-12.242083, 8.452917], - [-12.242916, 8.454584], - [-12.242917, 8.457083], - [-12.242083, 8.460416], - [-12.243749, 8.462083], - [-12.248749, 8.463749], - [-12.249611, 8.462889], - [-12.250254, 8.463647], - [-12.250986, 8.464349], - [-12.254583, 8.46375], - [-12.256249, 8.465417], - [-12.255417, 8.467916], - [-12.25875, 8.46875], - [-12.261249, 8.471249], - [-12.26165, 8.472449], - [-12.26182, 8.472497], - [-12.262298, 8.47164], - [-12.263339, 8.470721], - [-12.265125, 8.470206], - [-12.266021, 8.469697], - [-12.267216, 8.46844], - [-12.267656, 8.468461], - [-12.267908, 8.468764], - [-12.267834, 8.469267], - [-12.268027, 8.469866], - [-12.269035, 8.470292], - [-12.269062, 8.471256], - [-12.269437, 8.472016], - [-12.269367, 8.472297], - [-12.26875, 8.472969], - [-12.26875, 8.474382], - [-12.269154, 8.474361], - [-12.269684, 8.474684], - [-12.270435, 8.475485], - [-12.27043, 8.476201], - [-12.270291, 8.476854], - [-12.270548, 8.477221], - [-12.271184, 8.477436], - [-12.272382, 8.477453], - [-12.273613, 8.477235], - [-12.274327, 8.477139], - [-12.274899, 8.477089], - [-12.275528, 8.477089], - [-12.276057, 8.477131], - [-12.277196, 8.477345], - [-12.281757, 8.479186], - [-12.285799, 8.480548], - [-12.286249, 8.47875], - [-12.282917, 8.477916], - [-12.281249, 8.474584], - [-12.277027, 8.474584], - [-12.277026, 8.474582], - [-12.277334, 8.474387], - [-12.278776, 8.473289], - [-12.278798, 8.471852], - [-12.278563, 8.471363], - [-12.278976, 8.470164], - [-12.279334, 8.46975], - [-12.279105, 8.468631], - [-12.279463, 8.468328], - [-12.279496, 8.466439], - [-12.2808, 8.466169], - [-12.282054, 8.466746], - [-12.284162, 8.468147], - [-12.285302, 8.469403], - [-12.287916, 8.468749], - [-12.288822, 8.46739] - ] - ], - "type": "Polygon" - }, - "id": 595, - "properties": { - "cc:admin:id": ["149"], - "cc:oBld:total": 201, - "cc:pop:fifteen-to-twenty-four": 1595.4579061303045, - "cc:pop:grid3-total": 7054.678390653142, - "cc:pop:kontur-total": 7927.196336408192, - "cc:pop:men": 3946.5696284319715, - "cc:pop:sixty-plus": 537.3450721944131, - "cc:pop:total": 8513.250130275219, - "cc:pop:under-five": 1362.8312446060283, - "cc:pop:women": 4566.680501843249, - "cc:pop:women-fiften-to-forty-nine": 2245.2713052984845, - "cc:pop:wp-total": 7563.591479540673, - "cc:pop:wp-total-UN": 8771.336021024557, - "cc:id": "595", - "cc:Name": "Yonibana MCHP", - "cc:site": [-12.2435, 8.4394], - "user:parentName": "Yoni", - "user:code": "OU_268238", - "user:orgUnitId": "x5ZxMDvEQUb", - "user:level": "4", - "user:parentId": "NNE0YMCDZkO" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.903345, 7.938036], - [-12.902828, 7.937428], - [-12.901038, 7.935964], - [-12.899375, 7.935401], - [-12.897595, 7.935602], - [-12.896779, 7.935864], - [-12.894411, 7.936244], - [-12.892169, 7.936201], - [-12.889251, 7.935567], - [-12.886374, 7.934425], - [-12.883076, 7.932607], - [-12.8802, 7.931169], - [-12.87745, 7.929899], - [-12.874448, 7.928504], - [-12.872883, 7.926938], - [-12.872333, 7.925289], - [-12.872333, 7.923344], - [-12.873136, 7.921864], - [-12.873897, 7.92051], - [-12.873813, 7.919157], - [-12.872671, 7.918692], - [-12.871234, 7.91865], - [-12.869921, 7.91941], - [-12.867935, 7.919833], - [-12.866031, 7.919748], - [-12.863281, 7.918522], - [-12.861971, 7.917254], - [-12.861633, 7.91552], - [-12.862267, 7.913912], - [-12.863917, 7.913151], - [-12.865396, 7.913151], - [-12.866142, 7.913387], - [-12.868798, 7.90879], - [-12.87661, 7.908789], - [-12.880516, 7.902024], - [-12.87661, 7.895258], - [-12.877915, 7.892998], - [-12.877917, 7.892999], - [-12.877917, 7.894583], - [-12.88125, 7.898749], - [-12.887916, 7.900416], - [-12.887917, 7.899583], - [-12.889928, 7.892204], - [-12.890743, 7.892207], - [-12.891006, 7.891437], - [-12.89134, 7.891438], - [-12.892082, 7.889584], - [-12.892097, 7.889568], - [-12.891816, 7.889283], - [-12.892082, 7.88875], - [-12.895416, 7.888749], - [-12.898749, 7.886249], - [-12.89625, 7.882916], - [-12.899582, 7.877084], - [-12.892917, 7.870416], - [-12.902419, 7.866761], - [-12.902099, 7.866499], - [-12.900999, 7.864899], - [-12.8974, 7.8615], - [-12.897399, 7.8607], - [-12.896199, 7.860099], - [-12.895399, 7.8585], - [-12.893699, 7.857399], - [-12.892599, 7.8551], - [-12.891799, 7.854899], - [-12.891299, 7.8532], - [-12.8899, 7.852099], - [-12.889599, 7.8504], - [-12.887399, 7.850099], - [-12.886799, 7.848999], - [-12.8849, 7.8471], - [-12.884899, 7.8451], - [-12.883799, 7.845099], - [-12.8824, 7.844], - [-12.882399, 7.8424], - [-12.8807, 7.842399], - [-12.8796, 7.841799], - [-12.878499, 7.839], - [-12.877899, 7.838999], - [-12.8751, 7.8335], - [-12.8729, 7.8304], - [-12.872899, 7.8276], - [-12.8721, 7.826799], - [-12.872099, 7.8254], - [-12.871, 7.8243], - [-12.869899, 7.824299], - [-12.869299, 7.8232], - [-12.8668, 7.8218], - [-12.865999, 7.8207], - [-12.864599, 7.8199], - [-12.860699, 7.820099], - [-12.858999, 7.8182], - [-12.857599, 7.817899], - [-12.855699, 7.8157], - [-12.8543, 7.8151], - [-12.853999, 7.8143], - [-12.852399, 7.813499], - [-12.8496, 7.8107], - [-12.849299, 7.8093], - [-12.846799, 7.8085], - [-12.8438, 7.8085], - [-12.8426, 7.808199], - [-12.8418, 7.807099], - [-12.840999, 7.8043], - [-12.839, 7.8026], - [-12.8371, 7.8018], - [-12.836499, 7.800999], - [-12.8335, 7.7996], - [-12.830099, 7.799299], - [-12.825999, 7.7957], - [-12.8238, 7.795699], - [-12.822599, 7.7946], - [-12.819, 7.794599], - [-12.817899, 7.7938], - [-12.816499, 7.793799], - [-12.8149, 7.792899], - [-12.814299, 7.7921], - [-12.8121, 7.792099], - [-12.811799, 7.7904], - [-12.810099, 7.7896], - [-12.8085, 7.790099], - [-12.808199, 7.788699], - [-12.8074, 7.7885], - [-12.805999, 7.790099], - [-12.8038, 7.7891], - [-12.7967, 7.797699], - [-12.793099, 7.8031], - [-12.786, 7.811199], - [-12.7787, 7.818299], - [-12.7751, 7.822799], - [-12.7722, 7.825899], - [-12.7691, 7.828499], - [-12.764399, 7.831099], - [-12.7534, 7.832699], - [-12.751613, 7.832762], - [-12.751645, 7.83294], - [-12.750992, 7.833567], - [-12.749845, 7.833851], - [-12.749521, 7.834281], - [-12.74688, 7.835042], - [-12.746872, 7.83633], - [-12.746267, 7.836987], - [-12.742812, 7.842972], - [-12.734999, 7.842973], - [-12.73455, 7.843749], - [-12.732917, 7.84375], - [-12.725417, 7.852084], - [-12.725416, 7.861249], - [-12.724583, 7.862084], - [-12.72375, 7.867083], - [-12.720417, 7.86875], - [-12.720416, 7.869583], - [-12.719582, 7.870417], - [-12.717479, 7.876727], - [-12.717416, 7.876715], - [-12.71375, 7.886249], - [-12.721095, 7.886862], - [-12.718083, 7.892084], - [-12.721989, 7.898848], - [-12.725416, 7.898849], - [-12.725417, 7.899583], - [-12.726249, 7.899584], - [-12.726863, 7.900197], - [-12.725115, 7.903229], - [-12.729021, 7.909993], - [-12.730649, 7.909994], - [-12.734582, 7.914583], - [-12.735108, 7.911958], - [-12.73856, 7.911777], - [-12.740714, 7.910633], - [-12.744662, 7.910637], - [-12.744781, 7.912827], - [-12.747696, 7.914188], - [-12.747917, 7.91375], - [-12.755046, 7.91375], - [-12.755809, 7.914349], - [-12.756265, 7.915208], - [-12.756807, 7.914911], - [-12.756744, 7.91375], - [-12.757916, 7.91375], - [-12.756464, 7.921011], - [-12.756593, 7.921022], - [-12.758083, 7.922179], - [-12.758158, 7.923719], - [-12.759682, 7.925271], - [-12.760454, 7.927003], - [-12.763472, 7.927004], - [-12.765924, 7.931249], - [-12.769582, 7.931249], - [-12.773748, 7.927918], - [-12.77375, 7.927919], - [-12.77375, 7.929583], - [-12.77625, 7.931249], - [-12.78508, 7.931249], - [-12.786269, 7.93016], - [-12.789864, 7.928309], - [-12.798217, 7.925825], - [-12.803134, 7.924451], - [-12.805354, 7.923446], - [-12.806517, 7.921543], - [-12.807416, 7.920221], - [-12.809003, 7.918529], - [-12.810695, 7.917736], - [-12.812769, 7.917723], - [-12.814858, 7.918752], - [-12.817953, 7.920121], - [-12.821073, 7.921125], - [-12.821265, 7.921233], - [-12.821265, 7.921234], - [-12.820417, 7.922084], - [-12.820417, 7.924445], - [-12.822422, 7.925529], - [-12.824316, 7.927477], - [-12.825562, 7.929373], - [-12.827564, 7.930536], - [-12.829704, 7.931375], - [-12.833005, 7.93143], - [-12.834575, 7.93162], - [-12.836199, 7.933054], - [-12.837102, 7.934014], - [-12.838749, 7.932916], - [-12.839164, 7.930844], - [-12.840285, 7.930844], - [-12.84518, 7.933691], - [-12.847444, 7.937609], - [-12.85188, 7.93761], - [-12.855224, 7.94023], - [-12.857102, 7.940809], - [-12.859162, 7.944375], - [-12.863798, 7.944376], - [-12.863798, 7.944377], - [-12.860417, 7.947084], - [-12.860002, 7.948327], - [-12.861513, 7.949325], - [-12.868174, 7.95202], - [-12.874021, 7.954193], - [-12.875219, 7.948807], - [-12.875848, 7.949056], - [-12.884795, 7.951456], - [-12.888754, 7.951749], - [-12.8888, 7.951499], - [-12.889, 7.946499], - [-12.8907, 7.9457], - [-12.894899, 7.945699], - [-12.8979, 7.9443], - [-12.8993, 7.944299], - [-12.90078, 7.943262], - [-12.900964, 7.942892], - [-12.901364, 7.942108], - [-12.901803, 7.941236], - [-12.902785, 7.939671], - [-12.903173, 7.93894], - [-12.903345, 7.938036] - ] - ], - "type": "Polygon" - }, - "id": 596, - "properties": { - "cc:admin:id": ["51"], - "cc:oBld:total": 2, - "cc:pop:fifteen-to-twenty-four": 1409.851472899924, - "cc:pop:grid3-total": 10845.78483442459, - "cc:pop:kontur-total": 7402.609952453682, - "cc:pop:men": 3612.6826733537123, - "cc:pop:sixty-plus": 480.26954664542416, - "cc:pop:total": 7663.775758087353, - "cc:pop:under-five": 1294.2447409674749, - "cc:pop:women": 4051.093084733639, - "cc:pop:women-fiften-to-forty-nine": 1821.9509846786766, - "cc:pop:wp-total": 8269.60558408315, - "cc:pop:wp-total-UN": 9596.090168652261, - "cc:id": "596", - "cc:Name": "Yorgbofore MCHP", - "cc:site": [-12.8331, 7.8653], - "user:parentName": "Kargboro", - "user:code": "OU_247076", - "user:orgUnitId": "TGRCfJEnXJr", - "user:level": "4", - "user:parentId": "Z9QaI6sxTwW" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.181249, 8.77625], - [-11.177082, 8.76875], - [-11.172916, 8.768749], - [-11.172083, 8.764583], - [-11.172916, 8.762917], - [-11.17125, 8.760416], - [-11.172083, 8.759583], - [-11.174582, 8.759582], - [-11.169582, 8.75375], - [-11.167916, 8.753749], - [-11.164582, 8.747917], - [-11.16375, 8.747917], - [-11.162082, 8.749582], - [-11.15875, 8.749583], - [-11.15625, 8.752082], - [-11.153232, 8.75148], - [-11.153232, 8.751478], - [-11.154324, 8.75024], - [-11.155546, 8.748436], - [-11.15575, 8.746677], - [-11.156524, 8.743613], - [-11.154582, 8.744583], - [-11.145417, 8.744582], - [-11.144582, 8.74125], - [-11.142083, 8.738749], - [-11.142203, 8.737425], - [-11.139583, 8.737424], - [-11.139583, 8.723893], - [-11.143251, 8.723892], - [-11.14375, 8.717916], - [-11.145416, 8.711249], - [-11.144846, 8.708397], - [-11.145734, 8.707259], - [-11.147707, 8.70395], - [-11.148287, 8.701469], - [-11.148098, 8.700702], - [-11.144199, 8.7085], - [-11.141299, 8.7121], - [-11.1345, 8.718799], - [-11.1316, 8.722399], - [-11.1278, 8.7297], - [-11.1275, 8.732199], - [-11.1284, 8.734899], - [-11.1302, 8.7368], - [-11.133199, 8.738899], - [-11.1343, 8.7411], - [-11.1348, 8.7438], - [-11.134899, 8.7475], - [-11.134499, 8.750099], - [-11.132899, 8.752099], - [-11.1297, 8.752699], - [-11.1264, 8.7519], - [-11.1206, 8.7488], - [-11.118599, 8.747399], - [-11.114099, 8.7422], - [-11.107899, 8.7386], - [-11.1019, 8.7372], - [-11.0974, 8.7352], - [-11.0948, 8.7345], - [-11.0877, 8.7336], - [-11.0832, 8.741099], - [-11.081199, 8.7454], - [-11.0787, 8.748699], - [-11.0767, 8.750599], - [-11.074299, 8.751999], - [-11.0703, 8.752699], - [-11.0625, 8.7526], - [-11.0588, 8.752799], - [-11.0556, 8.754], - [-11.0532, 8.7562], - [-11.050899, 8.7606], - [-11.0488, 8.763499], - [-11.048543, 8.763723], - [-11.048691, 8.763764], - [-11.048695, 8.764054], - [-11.048018, 8.764224], - [-11.047881, 8.764705], - [-11.04816, 8.764415], - [-11.048371, 8.764533], - [-11.048305, 8.764775], - [-11.047792, 8.764846], - [-11.046987, 8.765883], - [-11.04747, 8.767133], - [-11.047181, 8.767458], - [-11.047366, 8.768185], - [-11.047658, 8.768593], - [-11.053749, 8.767917], - [-11.05375, 8.777082], - [-11.057083, 8.785416], - [-11.057866, 8.784634], - [-11.057992, 8.784791], - [-11.059685, 8.785489], - [-11.062386, 8.785813], - [-11.063117, 8.786277], - [-11.063708, 8.78635], - [-11.064634, 8.78729], - [-11.064672, 8.786929], - [-11.068749, 8.78625], - [-11.067917, 8.790416], - [-11.069582, 8.79375], - [-11.067917, 8.796249], - [-11.069583, 8.797916], - [-11.077082, 8.799582], - [-11.077916, 8.800416], - [-11.077916, 8.802083], - [-11.075417, 8.806249], - [-11.07322, 8.807348], - [-11.07611, 8.812455], - [-11.077243, 8.813813], - [-11.077768, 8.814927], - [-11.075417, 8.820416], - [-11.080416, 8.826249], - [-11.079583, 8.829582], - [-11.083749, 8.830416], - [-11.085117, 8.831783], - [-11.085988, 8.831329], - [-11.086249, 8.831257], - [-11.08625, 8.832082], - [-11.09125, 8.834583], - [-11.095416, 8.834582], - [-11.096021, 8.830951], - [-11.095658, 8.831122], - [-11.095657, 8.831121], - [-11.09625, 8.82875], - [-11.09875, 8.827917], - [-11.101249, 8.827916], - [-11.103749, 8.826249], - [-11.102917, 8.822082], - [-11.104583, 8.82125], - [-11.110416, 8.821249], - [-11.117082, 8.818749], - [-11.117083, 8.816249], - [-11.121998, 8.812738], - [-11.121773, 8.812045], - [-11.121405, 8.811238], - [-11.120513, 8.810156], - [-11.120573, 8.809397], - [-11.120188, 8.808978], - [-11.120566, 8.80852], - [-11.120986, 8.808405], - [-11.12206, 8.806574], - [-11.122771, 8.807588], - [-11.123584, 8.8077], - [-11.124216, 8.808052], - [-11.125718, 8.808222], - [-11.126371, 8.808002], - [-11.127898, 8.808241], - [-11.128966, 8.808749], - [-11.129583, 8.80875], - [-11.133749, 8.809582], - [-11.134583, 8.811249], - [-11.137916, 8.80875], - [-11.141249, 8.80875], - [-11.146915, 8.811897], - [-11.147326, 8.811757], - [-11.147302, 8.812111], - [-11.14875, 8.812917], - [-11.151449, 8.813456], - [-11.151945, 8.812599], - [-11.158637, 8.812598], - [-11.154309, 8.800335], - [-11.154277, 8.800332], - [-11.152917, 8.79625], - [-11.166249, 8.798749], - [-11.169583, 8.795417], - [-11.171249, 8.794582], - [-11.17125, 8.787917], - [-11.172916, 8.784583], - [-11.172917, 8.783749], - [-11.178749, 8.77875], - [-11.180416, 8.778749], - [-11.180417, 8.777917], - [-11.181249, 8.77625] - ] - ], - "type": "Polygon" - }, - "id": 597, - "properties": { - "cc:admin:id": ["119"], - "cc:oBld:total": 930, - "cc:pop:fifteen-to-twenty-four": 950.8263890764525, - "cc:pop:grid3-total": 8581.681248487417, - "cc:pop:kontur-total": 5168.943224980949, - "cc:pop:men": 2393.730525005365, - "cc:pop:sixty-plus": 271.34905283345034, - "cc:pop:total": 4853.832365097971, - "cc:pop:under-five": 817.1490245792296, - "cc:pop:women": 2460.1018400926055, - "cc:pop:women-fiften-to-forty-nine": 1170.3567589730608, - "cc:pop:wp-total": 3701.6024659103155, - "cc:pop:wp-total-UN": 4294.984990312032, - "cc:id": "597", - "cc:Name": "Yormandu CHC", - "cc:site": [-11.1019, 8.7393], - "user:parentName": "Sandor", - "user:code": "OU_233371", - "user:orgUnitId": "roGdTjEqLZQ", - "user:level": "4", - "user:parentId": "g5ptsn0SFX8" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-12.597996, 8.258524], - [-12.597999, 8.258399], - [-12.5977, 8.2555], - [-12.5966, 8.2528], - [-12.594299, 8.249799], - [-12.588899, 8.244299], - [-12.587, 8.240899], - [-12.586399, 8.236999], - [-12.5862, 8.2289], - [-12.5864, 8.223899], - [-12.587099, 8.2202], - [-12.588999, 8.2157], - [-12.589699, 8.2129], - [-12.590199, 8.2081], - [-12.590799, 8.2054], - [-12.592699, 8.2009], - [-12.5933, 8.198099], - [-12.5935, 8.193199], - [-12.5935, 8.1843], - [-12.593137, 8.176251], - [-12.589531, 8.17939], - [-12.587794, 8.18202], - [-12.586989, 8.182727], - [-12.586479, 8.182904], - [-12.582916, 8.177917], - [-12.575417, 8.17625], - [-12.571249, 8.172084], - [-12.562083, 8.172084], - [-12.557917, 8.175417], - [-12.557522, 8.176595], - [-12.556176, 8.174815], - [-12.555477, 8.173689], - [-12.552916, 8.176249], - [-12.54375, 8.175417], - [-12.547082, 8.165416], - [-12.54625, 8.162917], - [-12.540416, 8.157084], - [-12.538675, 8.158824], - [-12.537055, 8.156021], - [-12.529243, 8.15602], - [-12.525338, 8.149254], - [-12.529243, 8.142488], - [-12.525337, 8.135723], - [-12.517525, 8.135723], - [-12.515008, 8.140082], - [-12.514972, 8.14004], - [-12.514098, 8.140391], - [-12.513239, 8.14116], - [-12.511185, 8.14106], - [-12.510675, 8.141362], - [-12.509382, 8.141506], - [-12.508632, 8.141554], - [-12.507994, 8.141887], - [-12.507917, 8.141871], - [-12.507917, 8.137583], - [-12.508321, 8.137395], - [-12.509409, 8.136307], - [-12.509908, 8.136322], - [-12.510541, 8.136089], - [-12.51125, 8.134539], - [-12.511786, 8.133932], - [-12.511249, 8.13125], - [-12.508749, 8.128749], - [-12.500417, 8.127917], - [-12.492917, 8.127917], - [-12.491438, 8.129098], - [-12.488, 8.123142], - [-12.491906, 8.116377], - [-12.487999, 8.109611], - [-12.480188, 8.10961], - [-12.479241, 8.111249], - [-12.472082, 8.11125], - [-12.470523, 8.112811], - [-12.4725, 8.1152], - [-12.479299, 8.121899], - [-12.481199, 8.123999], - [-12.4832, 8.1271], - [-12.484, 8.1297], - [-12.484599, 8.134999], - [-12.485199, 8.137499], - [-12.4874, 8.1429], - [-12.488, 8.1473], - [-12.488299, 8.155499], - [-12.488999, 8.159499], - [-12.4915, 8.1657], - [-12.4921, 8.1707], - [-12.492299, 8.179399], - [-12.492199, 8.1842], - [-12.491599, 8.1889], - [-12.489199, 8.195], - [-12.488799, 8.1988], - [-12.4885, 8.205599], - [-12.4879, 8.208299], - [-12.484299, 8.2159], - [-12.482199, 8.2189], - [-12.4776, 8.223899], - [-12.4752, 8.226899], - [-12.472899, 8.2315], - [-12.471199, 8.2337], - [-12.468599, 8.2363], - [-12.466299, 8.2379], - [-12.458299, 8.241499], - [-12.4508, 8.242399], - [-12.448299, 8.2431], - [-12.4399, 8.246899], - [-12.436399, 8.2489], - [-12.4326, 8.250799], - [-12.430099, 8.253], - [-12.4272, 8.257], - [-12.431999, 8.264099], - [-12.433899, 8.267899], - [-12.436199, 8.270599], - [-12.439, 8.2729], - [-12.447499, 8.280199], - [-12.4526, 8.286899], - [-12.4581, 8.290599], - [-12.4626, 8.290899], - [-12.4702, 8.289399], - [-12.484199, 8.2882], - [-12.494899, 8.2854], - [-12.499499, 8.2849], - [-12.5043, 8.2848], - [-12.510499, 8.285299], - [-12.5147, 8.2865], - [-12.521099, 8.289599], - [-12.527099, 8.293499], - [-12.530899, 8.295299], - [-12.548999, 8.298299], - [-12.5523, 8.297699], - [-12.5597, 8.294099], - [-12.564, 8.292999], - [-12.570199, 8.292399], - [-12.577399, 8.2881], - [-12.582699, 8.2845], - [-12.5873, 8.281799], - [-12.59, 8.279199], - [-12.5937, 8.273699], - [-12.5952, 8.268999], - [-12.5973, 8.264199], - [-12.5979, 8.261399], - [-12.597996, 8.258524] - ] - ], - "type": "Polygon" - }, - "id": 598, - "properties": { - "cc:admin:id": ["59"], - "cc:oBld:total": 66, - "cc:pop:fifteen-to-twenty-four": 1818.3615293015678, - "cc:pop:grid3-total": 6545.482480706648, - "cc:pop:kontur-total": 9862.770182655728, - "cc:pop:men": 5013.885067921077, - "cc:pop:sixty-plus": 759.1090103946618, - "cc:pop:total": 10253.266002772254, - "cc:pop:under-five": 1688.4135285204113, - "cc:pop:women": 5239.380934851176, - "cc:pop:women-fiften-to-forty-nine": 2533.1722652734234, - "cc:pop:wp-total": 8960.9470731904, - "cc:pop:wp-total-UN": 10401.938630422388, - "cc:id": "598", - "cc:Name": "Yoyema MCHP", - "cc:site": [-12.4948, 8.1729], - "user:parentName": "Kaiyamba", - "user:code": "OU_247067", - "user:orgUnitId": "VdXuxcNkiad", - "user:level": "4", - "user:parentId": "USQdmvrHh1Q" - }, - "type": "Feature" - }, - { - "geometry": { - "coordinates": [ - [ - [-11.37743, 7.317257], - [-11.377082, 7.317083], - [-11.374583, 7.314583], - [-11.374582, 7.30875], - [-11.372655, 7.30875], - [-11.372759, 7.308891], - [-11.36849, 7.309501], - [-11.36766, 7.309024], - [-11.366812, 7.308697], - [-11.365684, 7.308557], - [-11.361687, 7.307578], - [-11.359853, 7.307577], - [-11.359054, 7.306878], - [-11.358207, 7.305805], - [-11.357917, 7.305546], - [-11.357916, 7.30156], - [-11.356508, 7.301125], - [-11.354863, 7.301243], - [-11.355417, 7.299583], - [-11.355713, 7.2975], - [-11.349859, 7.297499], - [-11.347231, 7.292948], - [-11.348749, 7.290417], - [-11.337084, 7.293749], - [-11.341249, 7.285417], - [-11.336158, 7.28478], - [-11.336157, 7.284778], - [-11.336203, 7.284423], - [-11.327917, 7.282917], - [-11.327916, 7.28125], - [-11.319263, 7.279086], - [-11.319264, 7.279085], - [-11.319299, 7.279059], - [-11.320379, 7.278546], - [-11.320869, 7.2778], - [-11.319583, 7.274584], - [-11.320416, 7.272916], - [-11.320416, 7.27125], - [-11.319779, 7.270931], - [-11.319822, 7.270896], - [-11.318749, 7.26875], - [-11.315741, 7.266493], - [-11.315669, 7.266503], - [-11.315416, 7.26625], - [-11.30817, 7.266249], - [-11.308166, 7.266186], - [-11.307303, 7.26425], - [-11.307606, 7.263169], - [-11.307335, 7.259509], - [-11.307991, 7.256689], - [-11.308552, 7.256348], - [-11.309255, 7.256705], - [-11.309184, 7.258634], - [-11.310024, 7.259636], - [-11.31056, 7.26089], - [-11.310609, 7.262962], - [-11.31128, 7.263248], - [-11.311906, 7.262827], - [-11.313451, 7.261176], - [-11.316508, 7.259611], - [-11.316665, 7.259165], - [-11.315416, 7.255417], - [-11.302917, 7.255416], - [-11.300417, 7.249583], - [-11.300416, 7.24625], - [-11.293749, 7.247083], - [-11.284583, 7.242084], - [-11.287082, 7.236249], - [-11.286249, 7.229584], - [-11.282082, 7.22625], - [-11.280155, 7.226249], - [-11.280049, 7.2258], - [-11.280105, 7.224266], - [-11.28061, 7.223885], - [-11.281867, 7.223575], - [-11.28266, 7.223194], - [-11.283261, 7.222431], - [-11.28264, 7.222061], - [-11.281718, 7.222106], - [-11.279294, 7.222195], - [-11.279293, 7.222194], - [-11.279676, 7.221823], - [-11.279844, 7.220994], - [-11.280984, 7.219979], - [-11.280611, 7.218302], - [-11.28062, 7.217122], - [-11.281181, 7.216], - [-11.282439, 7.21522], - [-11.2836, 7.214849], - [-11.284505, 7.215044], - [-11.285252, 7.214965], - [-11.285949, 7.214644], - [-11.286549, 7.213678], - [-11.286127, 7.211015], - [-11.286815, 7.20449], - [-11.286314, 7.201143], - [-11.286953, 7.199787], - [-11.287887, 7.199124], - [-11.289547, 7.198437], - [-11.292599, 7.191], - [-11.2842, 7.1943], - [-11.2829, 7.203999], - [-11.282899, 7.209799], - [-11.2783, 7.2111], - [-11.276999, 7.218899], - [-11.2725, 7.2189], - [-11.271899, 7.223999], - [-11.2692, 7.2273], - [-11.270499, 7.233099], - [-11.265999, 7.233099], - [-11.262099, 7.2273], - [-11.256899, 7.2273], - [-11.2491, 7.228], - [-11.242, 7.2338], - [-11.241399, 7.2377], - [-11.238099, 7.2396], - [-11.232299, 7.244799], - [-11.2271, 7.244799], - [-11.223199, 7.2422], - [-11.22, 7.242899], - [-11.2116, 7.248099], - [-11.203799, 7.2468], - [-11.1966, 7.2494], - [-11.190799, 7.255199], - [-11.183699, 7.2559], - [-11.1759, 7.263699], - [-11.1746, 7.2639], - [-11.180399, 7.270799], - [-11.1766, 7.2714], - [-11.1733, 7.279899], - [-11.177199, 7.2838], - [-11.174599, 7.287599], - [-11.17, 7.2889], - [-11.1681, 7.295999], - [-11.168099, 7.302499], - [-11.162199, 7.3019], - [-11.1545, 7.3025], - [-11.151199, 7.3064], - [-11.1473, 7.312899], - [-11.1396, 7.3168], - [-11.1383, 7.320999], - [-11.1407, 7.3164], - [-11.149199, 7.317999], - [-11.1564, 7.3202], - [-11.1654, 7.3221], - [-11.1732, 7.3253], - [-11.2044, 7.3408], - [-11.212, 7.345], - [-11.220399, 7.351699], - [-11.2229, 7.3534], - [-11.237799, 7.361199], - [-11.245299, 7.364999], - [-11.253199, 7.368199], - [-11.259, 7.3692], - [-11.274599, 7.369399], - [-11.2807, 7.37], - [-11.2845, 7.3713], - [-11.301899, 7.379299], - [-11.310999, 7.381199], - [-11.3182, 7.3834], - [-11.327299, 7.385299], - [-11.341999, 7.391899], - [-11.342799, 7.3859], - [-11.3442, 7.380299], - [-11.3447, 7.373999], - [-11.3454, 7.371199], - [-11.347399, 7.3671], - [-11.348699, 7.3639], - [-11.351099, 7.3597], - [-11.3524, 7.356499], - [-11.354799, 7.3522], - [-11.3561, 7.349099], - [-11.358399, 7.3448], - [-11.3598, 7.341699], - [-11.3618, 7.338699], - [-11.366799, 7.3334], - [-11.368499, 7.3313], - [-11.371799, 7.3254], - [-11.3755, 7.320799], - [-11.376799, 7.3187], - [-11.37743, 7.317257] - ] - ], - "type": "Polygon" - }, - "id": 599, - "properties": { - "cc:admin:id": ["84"], - "cc:oBld:total": 3079, - "cc:pop:fifteen-to-twenty-four": 5701.710570013244, - "cc:pop:grid3-total": 21983.127844140945, - "cc:pop:kontur-total": 34178.77175591954, - "cc:pop:men": 15862.62735897002, - "cc:pop:sixty-plus": 2373.4628950530155, - "cc:pop:total": 32471.8238915268, - "cc:pop:under-five": 5241.28764614013, - "cc:pop:women": 16609.19653255678, - "cc:pop:women-fiften-to-forty-nine": 7871.441804831204, - "cc:pop:wp-total": 23276.6193487309, - "cc:pop:wp-total-UN": 26973.59076969275, - "cc:id": "599", - "cc:Name": "Zimmi CHC", - "cc:site": [-11.309, 7.3213], - "user:parentName": "Makpele", - "user:code": "OU_260382", - "user:orgUnitId": "BNFrspDBKel", - "user:level": "4", - "user:parentId": "BD9gU0GKlr2" - }, - "type": "Feature" - } - ] -} From 72902281a5776e79116b2859c2f53d4c21234ec1 Mon Sep 17 00:00:00 2001 From: Jen Jones Arnesen Date: Mon, 6 Nov 2023 11:26:32 +0100 Subject: [PATCH 31/63] fix: add layer name workaround --- src/loaders/externalLoader.js | 2 +- src/loaders/geoJsonUrlLoader.js | 2 +- src/util/external.js | 9 ++------- 3 files changed, 4 insertions(+), 9 deletions(-) diff --git a/src/loaders/externalLoader.js b/src/loaders/externalLoader.js index d529da207..1f826c15b 100644 --- a/src/loaders/externalLoader.js +++ b/src/loaders/externalLoader.js @@ -25,7 +25,7 @@ const externalLoader = async (layer) => { return { ...layer, layer: EXTERNAL_LAYER, - name: config.name, + name: config.name, // TODO - will be fixed by DHIS2-16088 legend, config, isLoaded: true, diff --git a/src/loaders/geoJsonUrlLoader.js b/src/loaders/geoJsonUrlLoader.js index ab563dd1a..a5e5540d7 100644 --- a/src/loaders/geoJsonUrlLoader.js +++ b/src/loaders/geoJsonUrlLoader.js @@ -31,7 +31,7 @@ const geoJsonUrlLoader = async (layer) => { return { ...layer, - name, + name: newConfig.name, // TODO - will be fixed by DHIS2-16088 legend, data: geoJson?.features, config: newConfig, diff --git a/src/util/external.js b/src/util/external.js index 6a6ab302d..636508133 100644 --- a/src/util/external.js +++ b/src/util/external.js @@ -14,13 +14,6 @@ const MAP_SERVICE_XYZ = 'XYZ' const MAP_SERVICE_VECTOR_STYLE = 'VECTOR_STYLE' const MAP_SERVICE_GEOJSON_URL = 'GEOJSON_URL' -export const supportedMapServices = [ - MAP_SERVICE_WMS, - MAP_SERVICE_TMS, - MAP_SERVICE_XYZ, - MAP_SERVICE_VECTOR_STYLE, -] - const mapServiceToTypeMap = { [MAP_SERVICE_WMS]: WMS_LAYER, [MAP_SERVICE_XYZ]: TILE_LAYER, @@ -29,6 +22,8 @@ const mapServiceToTypeMap = { [MAP_SERVICE_GEOJSON_URL]: GEOJSON_LAYER, } +export const supportedMapServices = Object.keys(mapServiceToTypeMap) + // Create external layer from a model export const createExternalLayer = (model, forBasemap) => ({ layer: From 78191dc02c6adf88f93f32a6bf0c9fa53274b7a4 Mon Sep 17 00:00:00 2001 From: Jen Jones Arnesen Date: Tue, 7 Nov 2023 13:15:43 +0100 Subject: [PATCH 32/63] chore: handle API route url and external urls with error handling --- i18n/en.pot | 7 ++- src/components/loaders/GeoJsonUrlLoader.js | 30 ++++++++++++- src/loaders/geoJsonUrlLoader.js | 52 ++++++++++++++++++++-- 3 files changed, 81 insertions(+), 8 deletions(-) diff --git a/i18n/en.pot b/i18n/en.pot index 6492c5c8b..be8ba24f9 100644 --- a/i18n/en.pot +++ b/i18n/en.pot @@ -5,8 +5,8 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -"POT-Creation-Date: 2023-10-27T09:23:01.556Z\n" -"PO-Revision-Date: 2023-10-27T09:23:01.556Z\n" +"POT-Creation-Date: 2023-11-07T12:11:11.385Z\n" +"PO-Revision-Date: 2023-11-07T12:11:11.385Z\n" msgid "Untitled map, {{date}}" msgstr "Untitled map, {{date}}" @@ -608,6 +608,9 @@ msgstr "Group" msgid "Filters" msgstr "Filters" +msgid "Failed to load map layer \"{{layername}}\" with url: {{layerurl}}" +msgstr "Failed to load map layer \"{{layername}}\" with url: {{layerurl}}" + msgid "Drill up one level" msgstr "Drill up one level" diff --git a/src/components/loaders/GeoJsonUrlLoader.js b/src/components/loaders/GeoJsonUrlLoader.js index e5b687342..691659eca 100644 --- a/src/components/loaders/GeoJsonUrlLoader.js +++ b/src/components/loaders/GeoJsonUrlLoader.js @@ -1,11 +1,37 @@ +import { useDataEngine, useConfig } from '@dhis2/app-runtime' +import { useAlert } from '@dhis2/app-service-alerts' +import i18n from '@dhis2/d2-i18n' import PropTypes from 'prop-types' import { useEffect } from 'react' +import { + ALERT_CRITICAL, + ALERT_MESSAGE_DYNAMIC, +} from '../../constants/alerts.js' import geoJsonUrlLoader from '../../loaders/geoJsonUrlLoader.js' const GeoJsonUrlLoader = ({ config, onLoad }) => { + const loadFailedAlert = useAlert(ALERT_MESSAGE_DYNAMIC, ALERT_CRITICAL) + const engine = useDataEngine() + const { baseUrl } = useConfig() + useEffect(() => { - geoJsonUrlLoader(config).then(onLoad) - }, [config, onLoad]) + geoJsonUrlLoader(config, engine, baseUrl).then((data) => { + if (data.error) { + loadFailedAlert.show({ + msg: i18n.t( + 'Failed to load map layer "{{layername}}" with url: {{layerurl}}', + { + layername: data.name, + layerurl: data.error.url, + nsSeparator: '^^', + interpolation: { escapeValue: false }, // TODO make sure this is safe + } + ), + }) + } + return onLoad(data) + }) + }, [config, onLoad, engine, baseUrl, loadFailedAlert]) return null } diff --git a/src/loaders/geoJsonUrlLoader.js b/src/loaders/geoJsonUrlLoader.js index a5e5540d7..fe62f335c 100644 --- a/src/loaders/geoJsonUrlLoader.js +++ b/src/loaders/geoJsonUrlLoader.js @@ -1,7 +1,43 @@ import { parseLayerConfig } from '../util/external.js' +const fetchData = async (url, engine, baseUrl) => { + if (url.includes(baseUrl)) { + // API route, use engine + const routesIndex = url.indexOf('routes') + if (routesIndex === -1) { + throw new Error(`Invalid API route ${url}`) + } + + return engine + .query({ + geojson: { + resource: url.slice(routesIndex), + }, + }) + .then(async (data) => { + if (data.geojson instanceof Blob) { + return JSON.parse(await data.geojson.text()) + } + return data.geojson + }) + .catch((e) => { + throw new Error(`Failed to load from API route ${url}: "${e}"`) + }) + } else { + // External route, use fetch + // TODO implement auth capability + return fetch(url) + .then((response) => response.json()) + .catch((e) => { + throw new Error( + `Failed to load from external service ${url}: ${e}` + ) + }) + } +} + const EMPTY_FEATURE_STYLE = {} -const geoJsonUrlLoader = async (layer) => { +const geoJsonUrlLoader = async (layer, engine, baseUrl) => { const { name, config } = layer let newConfig @@ -17,9 +53,16 @@ const geoJsonUrlLoader = async (layer) => { featureStyle = layer.featureStyle || EMPTY_FEATURE_STYLE } - const geoJson = await fetch(newConfig.url).then((response) => - response.json() - ) + let geoJson + let error + try { + geoJson = await fetchData(newConfig.url, engine, baseUrl) + } catch (err) { + console.error(err) + error = { + url: newConfig.url, + } + } const legend = { title: name, items: [] } legend.items.push({ @@ -39,6 +82,7 @@ const geoJsonUrlLoader = async (layer) => { isLoaded: true, isExpanded: true, isVisible: true, + error, } } From cf4f96da3f591d0e08dd74b15c3f65998243236f Mon Sep 17 00:00:00 2001 From: Jen Jones Arnesen Date: Tue, 7 Nov 2023 15:16:40 +0100 Subject: [PATCH 33/63] chore: move featureStyle tweak to cleanLayerConfig --- src/components/app/FileMenu.js | 22 ------- src/util/favorites.js | 104 ++++++++++++++++++--------------- 2 files changed, 58 insertions(+), 68 deletions(-) diff --git a/src/components/app/FileMenu.js b/src/components/app/FileMenu.js index 945d48056..66f6bd5e3 100644 --- a/src/components/app/FileMenu.js +++ b/src/components/app/FileMenu.js @@ -92,22 +92,11 @@ const FileMenu = ({ onFileMenuAction }) => { }) const saveMap = async () => { - if (map.mapViews) { - map.mapViews.forEach((view) => { - if (view.featureStyle) { - view.config.featureStyle = { ...view.featureStyle } // TODO or default featureStyle - } - }) - } const config = cleanMapConfig({ config: map, defaultBasemapId: defaultBasemap, }) - if (config.mapViews) { - config.mapViews.forEach((view) => delete view.id) - } - await saveMapMutate({ id: map.id, data: config, @@ -137,13 +126,6 @@ const FileMenu = ({ onFileMenuAction }) => { } const saveAsNewMap = async ({ name, description }) => { - if (map.mapViews) { - map.mapViews.forEach((view) => { - if (view.featureStyle) { - view.config.featureStyle = { ...view.featureStyle } // TODO or default featureStyle - } - }) - } const config = { ...cleanMapConfig({ config: map, @@ -155,10 +137,6 @@ const FileMenu = ({ onFileMenuAction }) => { delete config.id - if (config.mapViews) { - config.mapViews.forEach((view) => delete view.id) - } - const response = await saveAsNewMapMutate({ data: config, }) diff --git a/src/util/favorites.js b/src/util/favorites.js index 2c6b1b231..26a088144 100644 --- a/src/util/favorites.js +++ b/src/util/favorites.js @@ -1,6 +1,7 @@ import { isNil, omitBy, pick, isObject, omit } from 'lodash/fp' import { EARTH_ENGINE_LAYER, + GEOJSON_URL_LAYER, TRACKED_ENTITY_LAYER, } from '../constants/layers.js' @@ -39,6 +40,7 @@ const validLayerProperties = [ 'eventPointColor', 'eventPointRadius', 'eventStatus', + 'featureStyle', // used by GEOJSON_URL_LAYER, stored in layer config 'filter', 'filters', 'followUp', @@ -113,26 +115,27 @@ const getBasemapString = (basemap, defaultBasemapId) => { return basemap.id || defaultBasemapId } -const cleanLayerConfig = (config) => ({ - ...models2objects(pick(validLayerProperties, config)), +const cleanLayerConfig = (layer) => ({ + ...models2objects(pick(validLayerProperties, layer)), }) // TODO: This feels hacky, find better way to clean map configs before saving -const models2objects = (config) => { - const { layer } = config - - Object.keys(config).forEach((key) => { - config[key] = models.includes(key) - ? pick(validModelProperties, config[key]) - : config[key] +const models2objects = (layer) => { + // debugger + const { layer: layerType } = layer + + Object.keys(layer).forEach((key) => { + layer[key] = models.includes(key) + ? pick(validModelProperties, layer[key]) + : layer[key] }) - if (config.rows) { - config.rows = config.rows.map(cleanDimension) + if (layer.rows) { + layer.rows = layer.rows.map(cleanDimension) } if (layer === EARTH_ENGINE_LAYER) { - const { layerId: id, band, params, aggregationType, filter } = config + const { layerId: id, band, params, aggregationType, filter } = layer const eeConfig = { id, @@ -147,62 +150,71 @@ const models2objects = (config) => { (key) => eeConfig[key] === undefined && delete eeConfig[key] ) - config.config = JSON.stringify(eeConfig) - - delete config.layerId - delete config.datasetId - delete config.params - delete config.filter - delete config.filters - delete config.periodType - delete config.periodName - delete config.aggregationType - delete config.band - } else if (layer === TRACKED_ENTITY_LAYER) { - config.config = JSON.stringify({ - relationships: config.relationshipType + layer.config = JSON.stringify(eeConfig) + + delete layer.layerId + delete layer.datasetId + delete layer.params + delete layer.filter + delete layer.filters + delete layer.periodType + delete layer.periodName + delete layer.aggregationType + delete layer.band + } else if (layerType === TRACKED_ENTITY_LAYER) { + layer.config = JSON.stringify({ + relationships: layer.relationshipType ? { - type: config.relationshipType, - pointColor: config.relatedPointColor, - pointRadius: config.relatedPointRadius, - lineColor: config.relationshipLineColor, + type: layer.relationshipType, + pointColor: layer.relatedPointColor, + pointRadius: layer.relatedPointRadius, + lineColor: layer.relationshipLineColor, relationshipOutsideProgram: - config.relationshipOutsideProgram, + layer.relationshipOutsideProgram, } : null, - periodType: config.periodType, + periodType: layer.periodType, }) - delete config.relationshipType - delete config.relatedPointColor - delete config.relatedPointRadius - delete config.relationshipLineColor - delete config.relationshipOutsideProgram - delete config.periodType + delete layer.relationshipType + delete layer.relatedPointColor + delete layer.relatedPointRadius + delete layer.relationshipLineColor + delete layer.relationshipOutsideProgram + delete layer.periodType + } else if (layerType === GEOJSON_URL_LAYER) { + console.log('config', layer) + layer.config = { + ...layer.config, + featureStyle: { ...layer.featureStyle }, + } + + delete layer.featureStyle + delete layer.id } - if (isObject(config.config)) { - config.config = JSON.stringify(config.config) // External overlay + if (isObject(layer.config)) { + layer.config = JSON.stringify(layer.config) // External overlay } - if (config.styleDataItem) { + if (layer.styleDataItem) { // Remove legendSet from styleDataItem as this is stored in a separate property // Remove names as these can be translated and will be fetched on layer load - config.styleDataItem = omit( + layer.styleDataItem = omit( ['legendSet', 'name', 'optionSet.name'], - config.styleDataItem + layer.styleDataItem ) - if (config.styleDataItem.optionSet) { + if (layer.styleDataItem.optionSet) { // Remove name and code from options as these are not persistent - config.styleDataItem.optionSet.options.forEach((option) => { + layer.styleDataItem.optionSet.options.forEach((option) => { delete option.name delete option.code }) } } - return config + return layer } export const cleanDimension = (dim) => ({ From 79df51c90376f3ba40a71c97d12a9b5d3ed2c523 Mon Sep 17 00:00:00 2001 From: Jen Jones Arnesen Date: Fri, 10 Nov 2023 07:55:08 -0800 Subject: [PATCH 34/63] chore: remove unused constants --- src/constants/actionTypes.js | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/constants/actionTypes.js b/src/constants/actionTypes.js index b38e90afa..7f5743dea 100644 --- a/src/constants/actionTypes.js +++ b/src/constants/actionTypes.js @@ -96,13 +96,6 @@ export const LAYER_EDIT_ORGANISATION_UNITS_SET = 'LAYER_EDIT_ORGANISATION_UNITS_SET' export const LAYER_EDIT_ORGANISATION_UNIT_GROUP_SET = 'LAYER_EDIT_ORGANISATION_UNIT_GROUP_SET' // Facility TODO: Distinguish frome above -export const LAYER_EDIT_ORGANISATIOM_UNIT_SET = - 'LAYER_EDIT_ORGANISATIOM_UNIT_SET' -export const LAYER_EDIT_ORGANISATIOM_UNIT_TOGGLE = - 'LAYER_EDIT_ORGANISATIOM_UNIT_TOGGLE' -export const LAYER_EDIT_USER_ORGANISATION_UNITS_SET = - 'LAYER_EDIT_USER_ORGANISATION_UNITS_SET' -;('LAYER_EDIT_ORGANISATION_UNIT_GROUP_SET') export const LAYER_EDIT_ORGANISATION_UNIT_MODE_SET = 'LAYER_EDIT_ORGANISATION_UNIT_MODE_SET' export const LAYER_EDIT_ORGANISATION_UNIT_COLOR_SET = From ab5148c0fd6de25553afceb8131ff9fafc4fb77e Mon Sep 17 00:00:00 2001 From: Jen Jones Arnesen Date: Fri, 10 Nov 2023 08:02:54 -0800 Subject: [PATCH 35/63] chore: remove loaders/layers that got readded during merge --- src/loaders/layers.js | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 src/loaders/layers.js diff --git a/src/loaders/layers.js b/src/loaders/layers.js deleted file mode 100644 index 217b03b0a..000000000 --- a/src/loaders/layers.js +++ /dev/null @@ -1,33 +0,0 @@ -import earthEngineLoader from './earthEngineLoader.js' -import eventLoader from './eventLoader.js' -import externalLoader from './externalLoader.js' -import facilityLoader from './facilityLoader.js' -import geoJsonUrlLoader from './geoJsonUrlLoader.js' -import orgUnitLoader from './orgUnitLoader.js' -import thematicLoader from './thematicLoader.js' -import trackedEntityLoader from './trackedEntityLoader.js' - -const layerType = { - event: eventLoader, - trackedEntity: trackedEntityLoader, - facility: facilityLoader, - thematic: thematicLoader, - orgUnit: orgUnitLoader, - earthEngine: earthEngineLoader, - external: externalLoader, - geoJsonUrl: geoJsonUrlLoader, -} - -export const fetchLayer = (config) => { - const Loader = layerType[config.layer] - - if (Loader) { - return Loader({ - ...config, - editCounter: - config.editCounter !== undefined ? config.editCounter + 1 : 0, - }) - } else { - console.log('Unknown layer type', config.layer, config) - } -} From 905814b4f06a030ea03a92cf4a4dd7087b2c5661 Mon Sep 17 00:00:00 2001 From: Jen Jones Arnesen Date: Fri, 10 Nov 2023 14:19:01 -0800 Subject: [PATCH 36/63] chore: use constants --- src/components/plugin/getBasemapConfig.js | 6 +++++- src/constants/layers.js | 3 +++ src/util/app.js | 20 ++++++++++++++------ src/util/external.js | 19 +++++++++++++------ 4 files changed, 35 insertions(+), 13 deletions(-) diff --git a/src/components/plugin/getBasemapConfig.js b/src/components/plugin/getBasemapConfig.js index 226be38d2..b2f77f6af 100644 --- a/src/components/plugin/getBasemapConfig.js +++ b/src/components/plugin/getBasemapConfig.js @@ -3,6 +3,7 @@ import { getFallbackBasemap, defaultBasemaps, } from '../../constants/basemaps.js' +import { MAP_LAYER_POSITION_BASEMAP } from '../../constants/layers.js' import { createExternalLayer } from '../../util/external.js' import { fetchExternalLayersQuery } from '../../util/requests.js' @@ -14,7 +15,10 @@ async function getBasemaps(basemapId, defaultBasemapId, engine) { externalLayers: fetchExternalLayersQuery, }) externalBasemaps = externalLayers.externalMapLayers - .filter((layer) => layer.mapLayerPosition === 'BASEMAP') + .filter( + (layer) => + layer.mapLayerPosition === MAP_LAYER_POSITION_BASEMAP + ) .map(createExternalLayer) } diff --git a/src/constants/layers.js b/src/constants/layers.js index f7b4b6b62..35823970b 100644 --- a/src/constants/layers.js +++ b/src/constants/layers.js @@ -36,6 +36,9 @@ export const DATA_TABLE_LAYER_TYPES = [ GEOJSON_URL_LAYER, ] +export const MAP_LAYER_POSITION_BASEMAP = 'BASEMAP' +export const MAP_LAYER_POSITION_OVERLAY = 'OVERLAY' + export const OPEN_AS_LAYER_TYPES = [THEMATIC_LAYER] export const DEFAULT_START_DATE = formatDate( diff --git a/src/util/app.js b/src/util/app.js index c7e821538..e251d6190 100644 --- a/src/util/app.js +++ b/src/util/app.js @@ -1,11 +1,15 @@ import { layerTypes } from '../components/map/MapApi.js' import { defaultBasemaps } from '../constants/basemaps.js' -import { BING_LAYER } from '../constants/layers.js' +import { BING_LAYER, MAP_LAYER_POSITION_BASEMAP } from '../constants/layers.js' import { DEFAULT_SYSTEM_SETTINGS, SYSTEM_SETTINGS, } from '../constants/settings.js' -import { createExternalLayer, supportedMapServices } from './external.js' +import { + createExternalBasemapLayer, + createExternalOverlayLayer, + supportedMapServices, +} from './external.js' import { getDefaultLayerTypes } from './getDefaultLayerTypes.js' import { getHiddenPeriods } from './periods.js' import { fetchExternalLayersQuery } from './requests.js' @@ -28,9 +32,11 @@ export const appQueries = { const getBasemapList = (externalMapLayers, systemSettings) => { const externalBasemaps = externalMapLayers - .filter((layer) => layer.mapLayerPosition === 'BASEMAP') + .filter( + (layer) => layer.mapLayerPosition === MAP_LAYER_POSITION_BASEMAP + ) .filter((layer) => supportedMapServices.includes(layer.mapService)) - .map((layer) => createExternalLayer(layer, true)) + .map((layer) => createExternalBasemapLayer(layer)) .filter((basemap) => layerTypes.includes(basemap.config.type)) return defaultBasemaps() @@ -52,9 +58,11 @@ const getBasemapList = (externalMapLayers, systemSettings) => { // TODO ask Bjorn if we should check layer.config.type against MapApi.layerTypes const getLayerTypes = (externalMapLayers) => { const externalLayerTypes = externalMapLayers - .filter((layer) => layer.mapLayerPosition !== 'BASEMAP') + .filter( + (layer) => layer.mapLayerPosition !== MAP_LAYER_POSITION_BASEMAP + ) .filter((layer) => supportedMapServices.includes(layer.mapService)) - .map((layer) => createExternalLayer(layer, false)) + .map((layer) => createExternalOverlayLayer(layer)) return getDefaultLayerTypes().concat(externalLayerTypes) } diff --git a/src/util/external.js b/src/util/external.js index 636508133..a2dd50564 100644 --- a/src/util/external.js +++ b/src/util/external.js @@ -24,16 +24,23 @@ const mapServiceToTypeMap = { export const supportedMapServices = Object.keys(mapServiceToTypeMap) -// Create external layer from a model -export const createExternalLayer = (model, forBasemap) => ({ +export const createExternalBasemapLayer = (layer) => ({ + layer: EXTERNAL_LAYER, + id: layer.id, + name: layer.name, + opacity: 1, + config: createExternalLayerConfig(layer), +}) + +export const createExternalOverlayLayer = (layer) => ({ layer: - model.mapService === MAP_SERVICE_GEOJSON_URL + layer.mapService === MAP_SERVICE_GEOJSON_URL ? GEOJSON_URL_LAYER : EXTERNAL_LAYER, - id: forBasemap ? model.id : undefined, - name: model.name, + img: 'images/featurelayer.png', + name: layer.name, opacity: 1, - config: createExternalLayerConfig(model), + config: createExternalLayerConfig(layer), }) // Create external layer config From f847d9bd4e7c48d65d123271e578badbe82e3508 Mon Sep 17 00:00:00 2001 From: Jen Jones Arnesen Date: Fri, 10 Nov 2023 14:24:52 -0800 Subject: [PATCH 37/63] chore: undo unintentional changes --- src/constants/actionTypes.js | 1 - src/loaders/externalLoader.js | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/constants/actionTypes.js b/src/constants/actionTypes.js index 7f5743dea..1f2229036 100644 --- a/src/constants/actionTypes.js +++ b/src/constants/actionTypes.js @@ -139,7 +139,6 @@ export const LAYER_EDIT_FOLLOW_UP_SET = 'LAYER_EDIT_FOLLOW_UP_SET' export const LAYER_EDIT_NO_DATA_COLOR_SET = 'LAYER_EDIT_NO_DATA_COLOR_SET' export const LAYER_EDIT_BAND_SET = 'LAYER_EDIT_BAND_SET' export const LAYER_EDIT_FEATURE_STYLE_SET = 'LAYER_EDIT_FEATURE_STYLE_SET' -;('LAYER_EDIT_TRACKED_ENTITY_RELATIONSHIP_OUTSIDE_PROGRAM_SET') export const LAYER_EDIT_FALLBACK_COORDINATE_FIELD_SET = 'LAYER_EDIT_FALLBACK_COORDINATE_FIELD_SET' diff --git a/src/loaders/externalLoader.js b/src/loaders/externalLoader.js index 1f826c15b..d529da207 100644 --- a/src/loaders/externalLoader.js +++ b/src/loaders/externalLoader.js @@ -25,7 +25,7 @@ const externalLoader = async (layer) => { return { ...layer, layer: EXTERNAL_LAYER, - name: config.name, // TODO - will be fixed by DHIS2-16088 + name: config.name, legend, config, isLoaded: true, From 758ff4cfc86cff6f8d11ef611b08309ed34b6b82 Mon Sep 17 00:00:00 2001 From: Jen Jones Arnesen Date: Fri, 10 Nov 2023 14:59:18 -0800 Subject: [PATCH 38/63] chore: layer.id should be removed for all layers --- src/util/favorites.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/util/favorites.js b/src/util/favorites.js index 26a088144..b677f9c59 100644 --- a/src/util/favorites.js +++ b/src/util/favorites.js @@ -183,15 +183,14 @@ const models2objects = (layer) => { delete layer.relationshipOutsideProgram delete layer.periodType } else if (layerType === GEOJSON_URL_LAYER) { - console.log('config', layer) layer.config = { ...layer.config, featureStyle: { ...layer.featureStyle }, } delete layer.featureStyle - delete layer.id } + delete layer.id if (isObject(layer.config)) { layer.config = JSON.stringify(layer.config) // External overlay From 543cba1e39d522a21d71adc46a12058638d433ad Mon Sep 17 00:00:00 2001 From: Jen Jones Arnesen Date: Sun, 12 Nov 2023 20:04:11 -0800 Subject: [PATCH 39/63] chore: update DetailsPanel tests --- .../app/__tests__/Detailspanel.spec.js | 202 +++++++++--------- .../__snapshots__/Detailspanel.spec.js.snap | 28 ++- 2 files changed, 117 insertions(+), 113 deletions(-) diff --git a/src/components/app/__tests__/Detailspanel.spec.js b/src/components/app/__tests__/Detailspanel.spec.js index 6d6110eef..2ad70e5cb 100644 --- a/src/components/app/__tests__/Detailspanel.spec.js +++ b/src/components/app/__tests__/Detailspanel.spec.js @@ -22,121 +22,113 @@ jest.mock( } ) -describe('DetailsPanel', () => { - test('renders InterpretationsPanel when has interpretationId, has orgUnitProfile and panel is open', () => { - const store = { - interpretation: { id: 'abc123' }, - orgUnitProfile: 'xyzpdq', - ui: { rightPanelOpen: true }, - } - - const { container } = render( - - - - ) - expect(container).toMatchSnapshot() - }) - test('renders InterpretationsPanel when has interpretationId, has orgUnitProfile and panel is closed', () => { - const store = { - interpretation: { id: 'abc123' }, - orgUnitProfile: 'xyzpdq', - ui: { rightPanelOpen: false }, +jest.mock( + '../../feature/FeatureProfile.js', + () => + function MockFeatureProfile() { + return
Feature Profile
} +) - const { container } = render( - - - - ) - expect(container).toMatchSnapshot() - }) - test('renders InterpretationsPanel when has interpretationId, no orgUnitProfile and panel is open', () => { - const store = { - interpretation: { id: 'abc123' }, +const interpretation = { id: 'myinterpretation' } +const orgUnitProfile = 'myorgunit' +const featureProfile = 'myfeature' +const uiWithPanelOpen = { rightPanelOpen: true } +const uiWithPanelClosed = { rightPanelOpen: false } + +const testCases = [ + { + store: { + interpretation, + orgUnitProfile, + featureProfile, + ui: uiWithPanelOpen, + }, + expected: 'Interpretations', + }, + { + store: { + interpretation, + orgUnitProfile, + featureProfile, + ui: uiWithPanelClosed, + }, + expected: 'Interpretations', + }, + { + store: { + interpretation, orgUnitProfile: null, - ui: { rightPanelOpen: true }, - } - - const { container } = render( - - - - ) - expect(container).toMatchSnapshot() - }) - - test('renders InterpretationsPanel when has interpretationId, no orgUnitProfile and panel is closed', () => { - const store = { - interpretation: { id: 'abc123' }, + featureProfile: null, + ui: uiWithPanelOpen, + }, + expected: 'Interpretations', + }, + { + store: { + interpretation, orgUnitProfile: null, - ui: { rightPanelOpen: false }, - } - - const { container } = render( - - - - ) - expect(container).toMatchSnapshot() - }) - - test('renders OrgUnitProfile when no interpretationId, has orgUnitProfile and panel is open', () => { - const store = { + featureProfile: null, + ui: uiWithPanelClosed, + }, + expected: 'Interpretations', + }, + { + store: { interpretation: {}, - orgUnitProfile: 'xyzpdq', - ui: { rightPanelOpen: true }, - } - - const { container } = render( - - - - ) - expect(container).toMatchSnapshot() - }) - - test('renders null when no interpretationId, has orgUnitProfile, and panel closed', () => { - const store = { + orgUnitProfile: null, + featureProfile: null, + ui: uiWithPanelOpen, + }, + expected: 'Interpretations', + }, + { + store: { interpretation: {}, - orgUnitProfile: 'xyzpdq', - ui: { rightPanelOpen: false }, - } - - const { container } = render( - - - - ) - expect(container).toMatchSnapshot() - }) - test('renders InterpretationsPanel when no interpretationId, no orgUnitProfile and panel open', () => { - const store = { + orgUnitProfile, + featureProfile, + ui: uiWithPanelOpen, + }, + expected: 'OrgUnitProfile', + }, + { + store: { interpretation: {}, orgUnitProfile: null, - ui: { rightPanelOpen: true }, - } - - const { container } = render( - - - - ) - expect(container).toMatchSnapshot() - }) - - test('renders null when no interpretationId, no orgUnitProfile, and panel closed', () => { - const store = { + featureProfile, + ui: uiWithPanelOpen, + }, + expected: 'FeatureProfile', + }, + { + store: { + interpretation: {}, + orgUnitProfile, + featureProfile: null, + ui: uiWithPanelClosed, + }, + expected: 'null', + }, + { + store: { interpretation: {}, orgUnitProfile: null, - ui: { rightPanelOpen: false }, - } + featureProfile: null, + ui: uiWithPanelClosed, + }, + expected: 'null', + }, +] - const { container } = render( - - - - ) - expect(container).toMatchSnapshot() +describe('DetailsPanel', () => { + testCases.forEach(({ store, expected }) => { + test(`renders ${expected} when interpretation=${store.interpretation.id}, orgUnitProfile=${store.orgUnitProfile}, featureProfile=${store.featureProfile} and panelOpen=${store.ui.rightPanelOpen}`, () => { + const { container } = render( + + + + ) + expect(container).toMatchSnapshot() + }) }) }) diff --git a/src/components/app/__tests__/__snapshots__/Detailspanel.spec.js.snap b/src/components/app/__tests__/__snapshots__/Detailspanel.spec.js.snap index b45d254ce..8b550fdfd 100644 --- a/src/components/app/__tests__/__snapshots__/Detailspanel.spec.js.snap +++ b/src/components/app/__tests__/__snapshots__/Detailspanel.spec.js.snap @@ -1,6 +1,18 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`DetailsPanel renders InterpretationsPanel when has interpretationId, has orgUnitProfile and panel is closed 1`] = ` +exports[`DetailsPanel renders FeatureProfile when interpretation=undefined, orgUnitProfile=null, featureProfile=myfeature and panelOpen=true 1`] = ` +
+
+
+ Feature Profile +
+
+
+`; + +exports[`DetailsPanel renders Interpretations when interpretation=myinterpretation, orgUnitProfile=myorgunit, featureProfile=myfeature and panelOpen=false 1`] = `