From e808932204f22398b894d000099ebc2085968215 Mon Sep 17 00:00:00 2001 From: Kipchirchir Sigei Date: Fri, 12 Jul 2019 12:09:29 +0300 Subject: [PATCH 1/4] parse superset data with geo coordinates to geojson Signed-off-by: Kipchirchir Sigei --- src/map/prepareLayer.js | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/map/prepareLayer.js b/src/map/prepareLayer.js index 2fa4bcec..02decfcb 100644 --- a/src/map/prepareLayer.js +++ b/src/map/prepareLayer.js @@ -285,7 +285,18 @@ function readData(mapId, layer, dispatch, doUpdateTsLayer) { res => res, ) // pass in callback func to process response .then((data) => { - layerObj.source.data = superset.processData(data); // assign processed data to layerObj + const processedData = superset.processData(data); + let parsedData; + if (layerObj.source.type === 'geojson') { + parsedData = csvToGEOjson(layerObj, processedData); + } else { + parsedData = [...processedData]; + } + + layerObj.source.data = Array.isArray(parsedData) + ? [...parsedData] + : { ...parsedData }; + if (layerObj.aggregate && layerObj.aggregate.type) { layerObj.source.data = aggregateFormData(layerObj); } From 1899bdf5743d2128fb70746ff086e2980d83fa63 Mon Sep 17 00:00:00 2001 From: Kipchirchir Sigei Date: Fri, 12 Jul 2019 17:33:03 +0300 Subject: [PATCH 2/4] update superset connector to v0.0.11 Signed-off-by: Kipchirchir Sigei --- package.json | 2 +- yarn.lock | 53 +++++++++++++++++----------------------------------- 2 files changed, 18 insertions(+), 37 deletions(-) diff --git a/package.json b/package.json index 43d33e9b..ea1dfb63 100644 --- a/package.json +++ b/package.json @@ -49,7 +49,7 @@ }, "dependencies": { "@babel/runtime": "^7.4.3", - "@onaio/superset-connector": "^0.0.9", + "@onaio/superset-connector": "^0.0.11", "babel-core": "v6.25.0", "babel-loader": "^7.1.2", "babel-polyfill": "^6.26.0", diff --git a/yarn.lock b/yarn.lock index f46d9100..02d9fcd0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -159,12 +159,12 @@ resolved "https://registry.yarnpkg.com/@mapbox/whoots-js/-/whoots-js-3.1.0.tgz#497c67a1cef50d1a2459ba60f315e448d2ad87fe" integrity sha512-Es6WcD0nO5l+2BOQS4uLfNPYQaNDfbot3X1XUoloz+x0mPDS3eeORZJl06HXjwBG1fOGwCRnzK88LMdxKRrd6Q== -"@onaio/superset-connector@^0.0.9": - version "0.0.9" - resolved "https://registry.yarnpkg.com/@onaio/superset-connector/-/superset-connector-0.0.9.tgz#d0fd811aaec3f39bb01ba9898a8c79c1f4c55610" - integrity sha512-EZMFAlIYvx7yvyyezwtpcp6k+Lm106Tk40hpMyBEDm3kF2COhaBxEklSEsoLXbqcfOTnraFbl1qz7O7z0Ny04w== +"@onaio/superset-connector@^0.0.11": + version "0.0.11" + resolved "https://registry.yarnpkg.com/@onaio/superset-connector/-/superset-connector-0.0.11.tgz#2104c712cc1c988b322d25c8d1b2de2465a42fbc" + integrity sha512-PWysD43GkrCBOtgmX5SNxeMmQ3AqjW1TqgdUv+Qs6//EhB24lbi34nI3WAuX6QtXZ/VSMfSeEb/Z5gBJg52kuw== dependencies: - jest-fetch-mock "^2.1.1" + "@types/papaparse" "^4.5.11" papaparse "^4.6.3" "@samverschueren/stream-to-observable@^0.3.0": @@ -174,6 +174,18 @@ dependencies: any-observable "^0.3.0" +"@types/node@*": + version "12.6.2" + resolved "https://registry.yarnpkg.com/@types/node/-/node-12.6.2.tgz#a5ccec6abb6060d5f20d256fb03ed743e9774999" + integrity sha512-gojym4tX0FWeV2gsW4Xmzo5wxGjXGm550oVUII7f7G5o4BV6c7DBdiG1RRQd+y1bvqRyYtPfMK85UM95vsapqQ== + +"@types/papaparse@^4.5.11": + version "4.5.11" + resolved "https://registry.yarnpkg.com/@types/papaparse/-/papaparse-4.5.11.tgz#dcd4f64da55f768c2e2cf92ccac1973c67a73890" + integrity sha512-zOw6K7YyA/NuZ2yZ8lzZFe2U3fn+vFfcRfiQp4ZJHG6y8WYWy2SYFbq6mp4yUgpIruJHBjKZtgyE0vvCoWEq+A== + dependencies: + "@types/node" "*" + "JSV@>= 4.0.x": version "4.0.2" resolved "https://registry.yarnpkg.com/JSV/-/JSV-4.0.2.tgz#d077f6825571f82132f9dffaed587b4029feff57" @@ -2007,14 +2019,6 @@ create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: safe-buffer "^5.0.1" sha.js "^2.4.8" -cross-fetch@^2.2.2: - version "2.2.3" - resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-2.2.3.tgz#e8a0b3c54598136e037f8650f8e823ccdfac198e" - integrity sha512-PrWWNH3yL2NYIb/7WF/5vFG3DCQiXDOVf8k3ijatbrtnwNuhMWLC7YF7uqf53tbTFDzHIUD8oITw4Bxt8ST3Nw== - dependencies: - node-fetch "2.1.2" - whatwg-fetch "2.0.4" - cross-spawn@^5.0.1, cross-spawn@^5.1.0: version "5.1.0" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" @@ -4493,14 +4497,6 @@ jest-environment-node@^22.4.1: jest-mock "^22.4.3" jest-util "^22.4.3" -jest-fetch-mock@^2.1.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/jest-fetch-mock/-/jest-fetch-mock-2.1.2.tgz#1260b347918e3931c4ec743ceaf60433da661bd0" - integrity sha512-tcSR4Lh2bWLe1+0w/IwvNxeDocMI/6yIA2bijZ0fyWxC4kQ18lckQ1n7Yd40NKuisGmcGBRFPandRXrW/ti/Bw== - dependencies: - cross-fetch "^2.2.2" - promise-polyfill "^7.1.1" - jest-get-type@^22.1.0, jest-get-type@^22.4.3: version "22.4.3" resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-22.4.3.tgz#e3a8504d8479342dd4420236b322869f18900ce4" @@ -5562,11 +5558,6 @@ nice-try@^1.0.4: resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== -node-fetch@2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.1.2.tgz#ab884e8e7e57e38a944753cec706f788d1768bb5" - integrity sha1-q4hOjn5X44qUR1POxwb3iNF2i7U= - node-int64@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" @@ -6210,11 +6201,6 @@ promise-inflight@^1.0.1: resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM= -promise-polyfill@^7.1.1: - version "7.1.2" - resolved "https://registry.yarnpkg.com/promise-polyfill/-/promise-polyfill-7.1.2.tgz#ab05301d8c28536301622d69227632269a70ca3b" - integrity sha512-FuEc12/eKqqoRYIGBrUptCBRhobL19PS2U31vMNTfyck1FxPyMfgsXyW4Mav85y/ZN1hop3hOwRlUDok23oYfQ== - prop-types@^15.7.2: version "15.7.2" resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" @@ -7891,11 +7877,6 @@ whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3: dependencies: iconv-lite "0.4.24" -whatwg-fetch@2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz#dde6a5df315f9d39991aa17621853d720b85566f" - integrity sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng== - whatwg-mimetype@^2.1.0, whatwg-mimetype@^2.2.0: version "2.3.0" resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" From 8be8212306bd0da3acd3cf5af0915af3f6d4f719 Mon Sep 17 00:00:00 2001 From: Kipchirchir Sigei Date: Tue, 23 Jul 2019 12:48:51 +0300 Subject: [PATCH 3/4] update superset connector to latest version Signed-off-by: Kipchirchir Sigei --- package.json | 2 +- yarn.lock | 659 ++++++++++++++------------------------------------- 2 files changed, 174 insertions(+), 487 deletions(-) diff --git a/package.json b/package.json index ac9704e8..341cb3ef 100644 --- a/package.json +++ b/package.json @@ -49,7 +49,7 @@ }, "dependencies": { "@babel/runtime": "^7.4.3", - "@onaio/superset-connector": "^0.0.11", + "@onaio/superset-connector": "^0.0.13", "babel-core": "v6.25.0", "babel-loader": "^7.1.2", "babel-polyfill": "^6.26.0", diff --git a/yarn.lock b/yarn.lock index 02d9fcd0..2ceaff3b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -117,26 +117,36 @@ dependencies: wgs84 "0.0.0" -"@mapbox/gl-matrix@^0.0.1": - version "0.0.1" - resolved "https://registry.yarnpkg.com/@mapbox/gl-matrix/-/gl-matrix-0.0.1.tgz#e5126aab4d64c36b81c7a97d0ae0dddde5773d2b" - integrity sha1-5RJqq01kw2uBx6l9CuDd3eV3PSs= +"@mapbox/geojson-rewind@^0.4.0": + version "0.4.0" + resolved "https://registry.yarnpkg.com/@mapbox/geojson-rewind/-/geojson-rewind-0.4.0.tgz#0d3632d4c1b4a928cf10a06ade387e1c8a8c181b" + integrity sha512-b+1uPWBERW4Pet/969BNu61ZPDyH2ilIxBjJDFzxyS9TyszF9UrTQyYIl/G38clux3rtpAGGFSGTCSF/qR6UjA== + dependencies: + "@mapbox/geojson-area" "0.2.2" + concat-stream "~1.6.0" + minimist "1.2.0" + sharkdown "^0.1.0" -"@mapbox/mapbox-gl-supported@^1.3.0": - version "1.4.0" - resolved "https://registry.yarnpkg.com/@mapbox/mapbox-gl-supported/-/mapbox-gl-supported-1.4.0.tgz#36946b22944fe2cfa43cfafd5ef36fdb54a069e4" - integrity sha512-ZD0Io4XK+/vU/4zpANjOtdWfVszAgnaMPsGR6LKsWh4kLIEv9qoobTVmJPPuwuM+ZI2b3BlZ6DYw1XHVmv6YTA== +"@mapbox/geojson-types@^1.0.2": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@mapbox/geojson-types/-/geojson-types-1.0.2.tgz#9aecf642cb00eab1080a57c4f949a65b4a5846d6" + integrity sha512-e9EBqHHv3EORHrSfbR9DqecPNn+AmuAoQxV6aL8Xu30bJMJR1o8PZLZzpk1Wq7/NfCbuhmakHTPYRhoqLsXRnw== + +"@mapbox/jsonlint-lines-primitives@^2.0.2": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@mapbox/jsonlint-lines-primitives/-/jsonlint-lines-primitives-2.0.2.tgz#ce56e539f83552b58d10d672ea4d6fc9adc7b234" + integrity sha1-zlblOfg1UrWNENZy6k1vya3HsjQ= + +"@mapbox/mapbox-gl-supported@^1.4.0": + version "1.4.1" + resolved "https://registry.yarnpkg.com/@mapbox/mapbox-gl-supported/-/mapbox-gl-supported-1.4.1.tgz#c0a03cf75f8b0ad7b57849d6c7e91b0aec4b640f" + integrity sha512-yyKza9S6z3ELKuf6w5n6VNUB0Osu6Z93RXPfMHLIlNWohu3KqxewLOq4lMXseYJ92GwkRAxd207Pr/Z98cwmvw== "@mapbox/point-geometry@0.1.0", "@mapbox/point-geometry@^0.1.0", "@mapbox/point-geometry@~0.1.0": version "0.1.0" resolved "https://registry.yarnpkg.com/@mapbox/point-geometry/-/point-geometry-0.1.0.tgz#8a83f9335c7860effa2eeeca254332aa0aeed8f2" integrity sha1-ioP5M1x4YO/6Lu7KJUMyqgru2PI= -"@mapbox/shelf-pack@^3.1.0": - version "3.2.0" - resolved "https://registry.yarnpkg.com/@mapbox/shelf-pack/-/shelf-pack-3.2.0.tgz#df3630ecce8c042817c9a365b88078412963de64" - integrity sha512-dyQxe6ukILV6qaEvxoKCIwhblgRjYp1ZGlClo4xvfbmxzFO5LYu7Tnrg2AZrRgN7VsSragsGcNjzUe9kCdKHYQ== - "@mapbox/tiny-sdf@^1.1.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@mapbox/tiny-sdf/-/tiny-sdf-1.1.0.tgz#b0b8f5c22005e6ddb838f421ffd257c1f74f9a20" @@ -147,22 +157,22 @@ resolved "https://registry.yarnpkg.com/@mapbox/unitbezier/-/unitbezier-0.0.0.tgz#15651bd553a67b8581fb398810c98ad86a34524e" integrity sha1-FWUb1VOme4WB+zmIEMmK2Go0Uk4= -"@mapbox/vector-tile@^1.3.0", "@mapbox/vector-tile@^1.3.1": +"@mapbox/vector-tile@^1.3.1": version "1.3.1" resolved "https://registry.yarnpkg.com/@mapbox/vector-tile/-/vector-tile-1.3.1.tgz#d3a74c90402d06e89ec66de49ec817ff53409666" integrity sha512-MCEddb8u44/xfQ3oD+Srl/tNcQoqTw3goGk2oLsrFxOTc3dUp+kAnby3PvAeeBYSMSjSPD1nd1AJA6W49WnoUw== dependencies: "@mapbox/point-geometry" "~0.1.0" -"@mapbox/whoots-js@^3.0.0": +"@mapbox/whoots-js@^3.1.0": version "3.1.0" resolved "https://registry.yarnpkg.com/@mapbox/whoots-js/-/whoots-js-3.1.0.tgz#497c67a1cef50d1a2459ba60f315e448d2ad87fe" integrity sha512-Es6WcD0nO5l+2BOQS4uLfNPYQaNDfbot3X1XUoloz+x0mPDS3eeORZJl06HXjwBG1fOGwCRnzK88LMdxKRrd6Q== -"@onaio/superset-connector@^0.0.11": - version "0.0.11" - resolved "https://registry.yarnpkg.com/@onaio/superset-connector/-/superset-connector-0.0.11.tgz#2104c712cc1c988b322d25c8d1b2de2465a42fbc" - integrity sha512-PWysD43GkrCBOtgmX5SNxeMmQ3AqjW1TqgdUv+Qs6//EhB24lbi34nI3WAuX6QtXZ/VSMfSeEb/Z5gBJg52kuw== +"@onaio/superset-connector@^0.0.13": + version "0.0.13" + resolved "https://registry.yarnpkg.com/@onaio/superset-connector/-/superset-connector-0.0.13.tgz#5736a565bfd29d4a952398491627c4eda3301b69" + integrity sha512-cXwBXDqP93j3V332mimjmRXqfKOZrQ0AzrCpkB3ouVgfBmxyki6NkStDPzr2vxUdcofkDYSxQchoZIB2jaYOhQ== dependencies: "@types/papaparse" "^4.5.11" papaparse "^4.6.3" @@ -186,11 +196,6 @@ dependencies: "@types/node" "*" -"JSV@>= 4.0.x": - version "4.0.2" - resolved "https://registry.yarnpkg.com/JSV/-/JSV-4.0.2.tgz#d077f6825571f82132f9dffaed587b4029feff57" - integrity sha1-0Hf2glVx+CEy+d/67Vh7QCn+/1c= - abab@^1.0.3: version "1.0.4" resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e" @@ -228,36 +233,29 @@ acorn-globals@^4.1.0: acorn "^6.0.1" acorn-walk "^6.0.1" -acorn-jsx@^3.0.0, acorn-jsx@^3.0.1: +acorn-jsx@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" integrity sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s= dependencies: acorn "^3.0.4" -acorn-object-spread@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/acorn-object-spread/-/acorn-object-spread-1.0.0.tgz#48ead0f4a8eb16995a17a0db9ffc6acaada4ba68" - integrity sha1-SOrQ9KjrFplaF6Dbn/xqyq2kumg= - dependencies: - acorn "^3.1.0" - acorn-walk@^6.0.1: version "6.1.1" resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.1.1.tgz#d363b66f5fac5f018ff9c3a1e7b6f8e310cc3913" integrity sha512-OtUw6JUTgxA2QoqqmrmQ7F2NYqiBPi/L2jqHyFtllhOUvXYQXf0Z1CYUinIfyT4bTCGmrA7gX9FvHA81uzCoVw== -acorn@^3.0.4, acorn@^3.1.0, acorn@^3.3.0: +acorn@^3.0.4: version "3.3.0" resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" integrity sha1-ReN/s56No/JbruP/U2niu18iAXo= -acorn@^4.0.0, acorn@^4.0.3, acorn@^4.0.4: +acorn@^4.0.3, acorn@^4.0.4: version "4.0.13" resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" integrity sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c= -acorn@^5.0.0, acorn@^5.1.0, acorn@^5.2.1, acorn@^5.5.0, acorn@^5.5.3: +acorn@^5.0.0, acorn@^5.2.1, acorn@^5.5.0, acorn@^5.5.3: version "5.7.3" resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw== @@ -338,11 +336,6 @@ ansi-styles@^3.2.0, ansi-styles@^3.2.1: dependencies: color-convert "^1.9.0" -ansi-styles@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.0.0.tgz#cb102df1c56f5123eab8b67cd7b98027a0279178" - integrity sha1-yxAt8cVvUSPquLZ817mAJ6AnkXg= - ansicolors@~0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.2.1.tgz#be089599097b74a5c9c4a84a0cdbcdb62bd87aef" @@ -883,7 +876,7 @@ babel-plugin-transform-async-generator-functions@^6.24.1: babel-plugin-syntax-async-generators "^6.5.0" babel-runtime "^6.22.0" -babel-plugin-transform-async-to-generator@^6.24.1: +babel-plugin-transform-async-to-generator@^6.22.0, babel-plugin-transform-async-to-generator@^6.24.1: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" integrity sha1-ZTbjeK/2yx1VF6wOQOs+n8jQh2E= @@ -944,7 +937,7 @@ babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: dependencies: babel-runtime "^6.22.0" -babel-plugin-transform-es2015-block-scoping@^6.24.1: +babel-plugin-transform-es2015-block-scoping@^6.23.0: version "6.26.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" integrity sha1-1w9SmcEwjQXBL0Y4E7CgnnOxiV8= @@ -955,7 +948,7 @@ babel-plugin-transform-es2015-block-scoping@^6.24.1: babel-types "^6.26.0" lodash "^4.17.4" -babel-plugin-transform-es2015-classes@^6.24.1: +babel-plugin-transform-es2015-classes@^6.23.0: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" integrity sha1-WkxYpQyclGHlZLSyo7+ryXolhNs= @@ -970,7 +963,7 @@ babel-plugin-transform-es2015-classes@^6.24.1: babel-traverse "^6.24.1" babel-types "^6.24.1" -babel-plugin-transform-es2015-computed-properties@^6.24.1: +babel-plugin-transform-es2015-computed-properties@^6.22.0: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" integrity sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM= @@ -978,14 +971,14 @@ babel-plugin-transform-es2015-computed-properties@^6.24.1: babel-runtime "^6.22.0" babel-template "^6.24.1" -babel-plugin-transform-es2015-destructuring@^6.22.0: +babel-plugin-transform-es2015-destructuring@^6.23.0: version "6.23.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" integrity sha1-mXux8auWf2gtKwh2/jWNYOdlxW0= dependencies: babel-runtime "^6.22.0" -babel-plugin-transform-es2015-duplicate-keys@^6.24.1: +babel-plugin-transform-es2015-duplicate-keys@^6.22.0: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" integrity sha1-c+s9MQypaePvnskcU3QabxV2Qj4= @@ -993,14 +986,14 @@ babel-plugin-transform-es2015-duplicate-keys@^6.24.1: babel-runtime "^6.22.0" babel-types "^6.24.1" -babel-plugin-transform-es2015-for-of@^6.22.0: +babel-plugin-transform-es2015-for-of@^6.23.0: version "6.23.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" integrity sha1-9HyVsrYT3x0+zC/bdXNiPHUkhpE= dependencies: babel-runtime "^6.22.0" -babel-plugin-transform-es2015-function-name@^6.24.1: +babel-plugin-transform-es2015-function-name@^6.22.0: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" integrity sha1-g0yJhTvDaxrw86TF26qU/Y6sqos= @@ -1016,7 +1009,7 @@ babel-plugin-transform-es2015-literals@^6.22.0: dependencies: babel-runtime "^6.22.0" -babel-plugin-transform-es2015-modules-amd@^6.24.1: +babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" integrity sha1-Oz5UAXI5hC1tGcMBHEvS8AoA0VQ= @@ -1025,7 +1018,7 @@ babel-plugin-transform-es2015-modules-amd@^6.24.1: babel-runtime "^6.22.0" babel-template "^6.24.1" -babel-plugin-transform-es2015-modules-commonjs@^6.24.1: +babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: version "6.26.2" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3" integrity sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q== @@ -1035,7 +1028,7 @@ babel-plugin-transform-es2015-modules-commonjs@^6.24.1: babel-template "^6.26.0" babel-types "^6.26.0" -babel-plugin-transform-es2015-modules-systemjs@^6.24.1: +babel-plugin-transform-es2015-modules-systemjs@^6.23.0: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" integrity sha1-/4mhQrkRmpBhlfXxBuzzBdlAfSM= @@ -1044,7 +1037,7 @@ babel-plugin-transform-es2015-modules-systemjs@^6.24.1: babel-runtime "^6.22.0" babel-template "^6.24.1" -babel-plugin-transform-es2015-modules-umd@^6.24.1: +babel-plugin-transform-es2015-modules-umd@^6.23.0: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" integrity sha1-rJl+YoXNGO1hdq22B9YCNErThGg= @@ -1053,7 +1046,7 @@ babel-plugin-transform-es2015-modules-umd@^6.24.1: babel-runtime "^6.22.0" babel-template "^6.24.1" -babel-plugin-transform-es2015-object-super@^6.24.1: +babel-plugin-transform-es2015-object-super@^6.22.0: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" integrity sha1-JM72muIcuDp/hgPa0CH1cusnj40= @@ -1061,7 +1054,7 @@ babel-plugin-transform-es2015-object-super@^6.24.1: babel-helper-replace-supers "^6.24.1" babel-runtime "^6.22.0" -babel-plugin-transform-es2015-parameters@^6.24.1: +babel-plugin-transform-es2015-parameters@^6.23.0: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" integrity sha1-V6w1GrScrxSpfNE7CfZv3wpiXys= @@ -1073,7 +1066,7 @@ babel-plugin-transform-es2015-parameters@^6.24.1: babel-traverse "^6.24.1" babel-types "^6.24.1" -babel-plugin-transform-es2015-shorthand-properties@^6.24.1: +babel-plugin-transform-es2015-shorthand-properties@^6.22.0: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" integrity sha1-JPh11nIch2YbvZmkYi5R8U3jiqA= @@ -1088,7 +1081,7 @@ babel-plugin-transform-es2015-spread@^6.22.0: dependencies: babel-runtime "^6.22.0" -babel-plugin-transform-es2015-sticky-regex@^6.24.1: +babel-plugin-transform-es2015-sticky-regex@^6.22.0: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" integrity sha1-AMHNsaynERLN8M9hJsLta0V8zbw= @@ -1104,14 +1097,14 @@ babel-plugin-transform-es2015-template-literals@^6.22.0: dependencies: babel-runtime "^6.22.0" -babel-plugin-transform-es2015-typeof-symbol@^6.22.0: +babel-plugin-transform-es2015-typeof-symbol@^6.23.0: version "6.23.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" integrity sha1-3sCfHN3/lLUqxz1QXITfWdzOs3I= dependencies: babel-runtime "^6.22.0" -babel-plugin-transform-es2015-unicode-regex@^6.24.1: +babel-plugin-transform-es2015-unicode-regex@^6.22.0: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" integrity sha1-04sS9C6nMj9yk4fxinxa4frrNek= @@ -1120,7 +1113,7 @@ babel-plugin-transform-es2015-unicode-regex@^6.24.1: babel-runtime "^6.22.0" regexpu-core "^2.0.0" -babel-plugin-transform-exponentiation-operator@^6.24.1: +babel-plugin-transform-exponentiation-operator@^6.22.0, babel-plugin-transform-exponentiation-operator@^6.24.1: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" integrity sha1-KrDJx/MJj6SJB3cruBP+QejeOg4= @@ -1153,7 +1146,7 @@ babel-plugin-transform-object-rest-spread@^6.22.0: babel-plugin-syntax-object-rest-spread "^6.8.0" babel-runtime "^6.26.0" -babel-plugin-transform-regenerator@^6.24.1: +babel-plugin-transform-regenerator@^6.22.0: version "6.26.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" integrity sha1-4HA2lvveJ/Cj78rPi03KL3s6jy8= @@ -1177,42 +1170,41 @@ babel-polyfill@^6.26.0: core-js "^2.5.0" regenerator-runtime "^0.10.5" -babel-preset-es2015@^6.24.0: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" - integrity sha1-1EBQ1rwsn+6nAqrzjXJ6AhBTiTk= +babel-preset-env@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.7.0.tgz#dea79fa4ebeb883cd35dab07e260c1c9c04df77a" + integrity sha512-9OR2afuKDneX2/q2EurSftUYM0xGu4O2D9adAhVfADDhrYDaxXV0rBbevVYoY9n6nyX1PmQW/0jtpJvUNr9CHg== dependencies: babel-plugin-check-es2015-constants "^6.22.0" + babel-plugin-syntax-trailing-function-commas "^6.22.0" + babel-plugin-transform-async-to-generator "^6.22.0" babel-plugin-transform-es2015-arrow-functions "^6.22.0" babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" - babel-plugin-transform-es2015-block-scoping "^6.24.1" - babel-plugin-transform-es2015-classes "^6.24.1" - babel-plugin-transform-es2015-computed-properties "^6.24.1" - babel-plugin-transform-es2015-destructuring "^6.22.0" - babel-plugin-transform-es2015-duplicate-keys "^6.24.1" - babel-plugin-transform-es2015-for-of "^6.22.0" - babel-plugin-transform-es2015-function-name "^6.24.1" + babel-plugin-transform-es2015-block-scoping "^6.23.0" + babel-plugin-transform-es2015-classes "^6.23.0" + babel-plugin-transform-es2015-computed-properties "^6.22.0" + babel-plugin-transform-es2015-destructuring "^6.23.0" + babel-plugin-transform-es2015-duplicate-keys "^6.22.0" + babel-plugin-transform-es2015-for-of "^6.23.0" + babel-plugin-transform-es2015-function-name "^6.22.0" babel-plugin-transform-es2015-literals "^6.22.0" - babel-plugin-transform-es2015-modules-amd "^6.24.1" - babel-plugin-transform-es2015-modules-commonjs "^6.24.1" - babel-plugin-transform-es2015-modules-systemjs "^6.24.1" - babel-plugin-transform-es2015-modules-umd "^6.24.1" - babel-plugin-transform-es2015-object-super "^6.24.1" - babel-plugin-transform-es2015-parameters "^6.24.1" - babel-plugin-transform-es2015-shorthand-properties "^6.24.1" + babel-plugin-transform-es2015-modules-amd "^6.22.0" + babel-plugin-transform-es2015-modules-commonjs "^6.23.0" + babel-plugin-transform-es2015-modules-systemjs "^6.23.0" + babel-plugin-transform-es2015-modules-umd "^6.23.0" + babel-plugin-transform-es2015-object-super "^6.22.0" + babel-plugin-transform-es2015-parameters "^6.23.0" + babel-plugin-transform-es2015-shorthand-properties "^6.22.0" babel-plugin-transform-es2015-spread "^6.22.0" - babel-plugin-transform-es2015-sticky-regex "^6.24.1" + babel-plugin-transform-es2015-sticky-regex "^6.22.0" babel-plugin-transform-es2015-template-literals "^6.22.0" - babel-plugin-transform-es2015-typeof-symbol "^6.22.0" - babel-plugin-transform-es2015-unicode-regex "^6.24.1" - babel-plugin-transform-regenerator "^6.24.1" - -babel-preset-es2016@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-preset-es2016/-/babel-preset-es2016-6.24.1.tgz#f900bf93e2ebc0d276df9b8ab59724ebfd959f8b" - integrity sha1-+QC/k+LrwNJ235uKtZck6/2Vn4s= - dependencies: - babel-plugin-transform-exponentiation-operator "^6.24.1" + babel-plugin-transform-es2015-typeof-symbol "^6.23.0" + babel-plugin-transform-es2015-unicode-regex "^6.22.0" + babel-plugin-transform-exponentiation-operator "^6.22.0" + babel-plugin-transform-regenerator "^6.22.0" + browserslist "^3.2.6" + invariant "^2.2.2" + semver "^5.3.0" babel-preset-jest@^22.4.4: version "22.4.4" @@ -1323,7 +1315,7 @@ babylon@7.0.0-beta.44: resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.44.tgz#89159e15e6e30c5096e22d738d8c0af8a0e8ca1d" integrity sha512-5Hlm13BJVAioCHpImtFqNOF2H3ieTOHd0fmFGMxOJ9jgeFqeAwsv3u5P5cR7CSeFrkgHsT19DgFJkHV0/Mcd8g== -babylon@^6.15.0, babylon@^6.17.2, babylon@^6.18.0: +babylon@^6.17.2, babylon@^6.18.0: version "6.18.0" resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== @@ -1421,16 +1413,6 @@ braces@^2.3.1, braces@^2.3.2: split-string "^3.0.2" to-regex "^3.0.1" -brfs@^1.4.0: - version "1.6.1" - resolved "https://registry.yarnpkg.com/brfs/-/brfs-1.6.1.tgz#b78ce2336d818e25eea04a0947cba6d4fb8849c3" - integrity sha512-OfZpABRQQf+Xsmju8XE9bDjs+uU4vLREGolP7bDgcpsI17QREyZ4Bl+2KLxxx1kCgA0fAIhKQBaBYh+PEcCqYQ== - dependencies: - quote-stream "^1.0.1" - resolve "^1.1.5" - static-module "^2.2.0" - through2 "^2.0.0" - brorand@^1.0.1: version "1.1.0" resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" @@ -1479,11 +1461,6 @@ browserify-des@^1.0.0: inherits "^2.0.1" safe-buffer "^5.1.2" -browserify-package-json@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/browserify-package-json/-/browserify-package-json-1.0.1.tgz#98dde8aa5c561fd6d3fe49bbaa102b74b396fdea" - integrity sha1-mN3oqlxWH9bT/km7qhArdLOW/eo= - browserify-rsa@^4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" @@ -1512,6 +1489,14 @@ browserify-zlib@^0.2.0: dependencies: pako "~1.0.5" +browserslist@^3.2.6: + version "3.2.8" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-3.2.8.tgz#b0005361d6471f0f5952797a76fc985f1f978fc6" + integrity sha512-WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ== + dependencies: + caniuse-lite "^1.0.30000844" + electron-to-chromium "^1.3.47" + bser@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" @@ -1519,32 +1504,6 @@ bser@^2.0.0: dependencies: node-int64 "^0.4.0" -buble@^0.15.1: - version "0.15.2" - resolved "https://registry.yarnpkg.com/buble/-/buble-0.15.2.tgz#547fc47483f8e5e8176d82aa5ebccb183b02d613" - integrity sha1-VH/EdIP45egXbYKqXrzLGDsC1hM= - dependencies: - acorn "^3.3.0" - acorn-jsx "^3.0.1" - acorn-object-spread "^1.0.0" - chalk "^1.1.3" - magic-string "^0.14.0" - minimist "^1.2.0" - os-homedir "^1.0.1" - -bubleify@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/bubleify/-/bubleify-0.7.0.tgz#d08ea642ffd085ff8711c8843f57072f0d5eb8f6" - integrity sha1-0I6mQv/Qhf+HEciEP1cHLw1euPY= - dependencies: - buble "^0.15.1" - object-assign "^4.0.1" - -buffer-equal@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/buffer-equal/-/buffer-equal-0.0.1.tgz#91bc74b11ea405bc916bc6aa908faafa5b4aac4b" - integrity sha1-kbx0sR6kBbyRa8aqkI+q+ltKrEs= - buffer-from@^1.0.0: version "1.1.1" resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" @@ -1603,16 +1562,6 @@ cache-base@^1.0.1: union-value "^1.0.0" unset-value "^1.0.0" -call-matcher@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/call-matcher/-/call-matcher-1.1.0.tgz#23b2c1bc7a8394c8be28609d77ddbd5786680432" - integrity sha512-IoQLeNwwf9KTNbtSA7aEBb1yfDbdnzwjCetjkC8io5oGeOmK2CBNdg0xr+tadRYKO0p7uQyZzvon0kXlZbvGrw== - dependencies: - core-js "^2.0.0" - deep-equal "^1.0.0" - espurify "^1.6.0" - estraverse "^4.0.0" - caller-callsite@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" @@ -1659,6 +1608,11 @@ camelcase@^5.0.0: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== +caniuse-lite@^1.0.30000844: + version "1.0.30000985" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000985.tgz#0eb40f6c8a8c219155cbe43c4975c0efb4a0f77f" + integrity sha512-1ngiwkgqAYPG0JSSUp3PUDGPKKY59EK7NrGGX+VOxaKCNzRbNc7uXMny+c3VJfZxtoK3wSImTvG9T9sXiTw2+w== + capture-exit@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-1.2.0.tgz#1c5fcc489fd0ab00d4f1ac7ae1072e3173fbab6f" @@ -1707,15 +1661,6 @@ chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.1, chalk@^2.4.1: escape-string-regexp "^1.0.5" supports-color "^5.3.0" -chalk@~0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz#5199a3ddcd0c1efe23bc08c1b027b06176e0c64f" - integrity sha1-UZmj3c0MHv4jvAjBsCewYXbgxk8= - dependencies: - ansi-styles "~1.0.0" - has-color "~0.1.0" - strip-ansi "~0.1.0" - chardet@^0.4.0: version "0.4.2" resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" @@ -1944,7 +1889,7 @@ content-type-parser@^1.0.1: resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.2.tgz#caabe80623e63638b2502fd4c7f12ff4ce2352e7" integrity sha512-lM4l4CnMEwOLHAHr/P6MEZwZFPJFtAAKgL6pogbXmVZggIqXhdB6RbBtPOTsw2FcXwYhehRGERJmRrjOiIB8pQ== -convert-source-map@^1.1.0, convert-source-map@^1.1.1, convert-source-map@^1.4.0, convert-source-map@^1.5.1: +convert-source-map@^1.1.0, convert-source-map@^1.4.0, convert-source-map@^1.5.1: version "1.6.0" resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" integrity sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A== @@ -1968,7 +1913,7 @@ copy-descriptor@^0.1.0: resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= -core-js@^2.0.0, core-js@^2.4.0, core-js@^2.5.0: +core-js@^2.4.0, core-js@^2.5.0: version "2.6.5" resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.5.tgz#44bc8d249e7fb2ff5d00e0341a7ffb94fbf67895" integrity sha512-klh/kDpwX8hryYL14M9w/xei6vrv6sE8gTHDG7/T/+SEovB/G4ejwcfE/CBzO6Edsu+OETZMZ3wcX/EjUkrl5A== @@ -2498,11 +2443,6 @@ dedent@^0.7.0: resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw= -deep-equal@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" - integrity sha1-9dJgKStmDghO/0zbyfCK0yR0SLU= - deep-extend@^0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" @@ -2655,13 +2595,6 @@ domexception@^1.0.1: dependencies: webidl-conversions "^4.0.2" -duplexer2@~0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" - integrity sha1-ixLauHjA1p4+eJEFFmKjL8a93ME= - dependencies: - readable-stream "^2.0.2" - duplexify@^3.4.2, duplexify@^3.6.0: version "3.7.1" resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309" @@ -2672,7 +2605,7 @@ duplexify@^3.4.2, duplexify@^3.6.0: readable-stream "^2.0.0" stream-shift "^1.0.0" -earcut@^2.1.3: +earcut@^2.1.5: version "2.1.5" resolved "https://registry.yarnpkg.com/earcut/-/earcut-2.1.5.tgz#829280a9a3a0f5fee0529f0a47c3e4eff09b21e4" integrity sha512-QFWC7ywTVLtvRAJTVp8ugsuuGQ5mVqNmJ1cRYeLrSHgP3nycr2RHTJob9OtM0v8ujuoKN0NY1a93J/omeTL1PA== @@ -2685,6 +2618,11 @@ ecc-jsbn@~0.1.1: jsbn "~0.1.0" safer-buffer "^2.1.0" +electron-to-chromium@^1.3.47: + version "1.3.199" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.199.tgz#f9a62a74cda77854310a2abffde8b75591ea09a1" + integrity sha512-gachlDdHSK47s0N2e58GH9HMC6Z4ip0SfmYUa5iEbE50AKaOUXysaJnXMfKj0xB245jWbYcyFSH+th3rqsF8hA== + elegant-spinner@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" @@ -2838,7 +2776,7 @@ escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.4, escape-string-regexp@^ resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= -escodegen@^1.6.1, escodegen@^1.8.1, escodegen@^1.9.1: +escodegen@^1.6.1, escodegen@^1.9.1: version "1.11.1" resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.11.1.tgz#c485ff8d6b4cdb89e27f4a856e91f118401ca510" integrity sha512-JwiqFD9KdGVVpeuRa68yU3zZnBEOcPs0nKW7wZzXky8Z7tffdYUHbe11bPCV5jYlK6DVdKLWLm0f5I/QlL0Kmw== @@ -2850,18 +2788,6 @@ escodegen@^1.6.1, escodegen@^1.8.1, escodegen@^1.9.1: optionalDependencies: source-map "~0.6.1" -escodegen@~1.9.0: - version "1.9.1" - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.1.tgz#dbae17ef96c8e4bedb1356f4504fa4cc2f7cb7e2" - integrity sha512-6hTjO1NAWkHnDk3OqQ4YrCuwwmGHL9S3nPlzBOUG/R44rda3wLNrfvQ5fkSGjyhHFKM7ALPKcKGrwvCLe0lC7Q== - dependencies: - esprima "^3.1.3" - estraverse "^4.2.0" - esutils "^2.0.2" - optionator "^0.8.1" - optionalDependencies: - source-map "~0.6.1" - escope@^3.6.0: version "3.6.0" resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" @@ -3016,6 +2942,11 @@ eslint@^4.14.0: table "4.0.2" text-table "~0.2.0" +esm@^3.0.84: + version "3.2.25" + resolved "https://registry.yarnpkg.com/esm/-/esm-3.2.25.tgz#342c18c29d56157688ba5ce31f8431fbb795cc10" + integrity sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA== + espree@^3.5.4: version "3.5.4" resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7" @@ -3044,13 +2975,6 @@ esprima@~1.0.4: resolved "https://registry.yarnpkg.com/esprima/-/esprima-1.0.4.tgz#9f557e08fc3b4d26ece9dd34f8fbf476b62585ad" integrity sha1-n1V+CPw7TSbs6d00+Pv0drYlha0= -espurify@^1.3.0, espurify@^1.6.0: - version "1.8.1" - resolved "https://registry.yarnpkg.com/espurify/-/espurify-1.8.1.tgz#5746c6c1ab42d302de10bd1d5bf7f0e8c0515056" - integrity sha512-ZDko6eY/o+D/gHCWyHTU85mKDgYcS4FJj7S+YD6WIInm7GQ6AnOjmcL4+buFV/JOztVLELi/7MmuGU5NHta0Mg== - dependencies: - core-js "^2.0.0" - esquery@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" @@ -3240,16 +3164,6 @@ extsprintf@^1.2.0: resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= -falafel@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/falafel/-/falafel-2.1.0.tgz#96bb17761daba94f46d001738b3cedf3a67fe06c" - integrity sha1-lrsXdh2rqU9G0AFzizzt86Z/4Gw= - dependencies: - acorn "^5.0.0" - foreach "^2.0.5" - isarray "0.0.1" - object-keys "^1.0.6" - fast-deep-equal@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" @@ -3390,14 +3304,6 @@ flat-cache@^1.2.1: rimraf "~2.6.2" write "^0.2.1" -flow-remove-types@^1.1.2: - version "1.2.3" - resolved "https://registry.yarnpkg.com/flow-remove-types/-/flow-remove-types-1.2.3.tgz#6131aefc7da43364bb8b479758c9dec7735d1a18" - integrity sha512-ypq/U3V+t9atYiOuSJd40tekCra03EHKoRsiK/wXGrsZimuum0kdwVY7Yv0HTaoXgHW1WiayomYd+Q3kkvPl9Q== - dependencies: - babylon "^6.15.0" - vlq "^0.2.1" - flush-write-stream@^1.0.0: version "1.1.1" resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8" @@ -3423,11 +3329,6 @@ for-own@^0.1.4: dependencies: for-in "^1.0.1" -foreach@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" - integrity sha1-C+4AUBiusmDQo6865ljdATbsG5k= - forever-agent@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" @@ -3520,17 +3421,7 @@ gauge@~2.7.3: strip-ansi "^3.0.1" wide-align "^1.1.0" -geojson-rewind@^0.3.0: - version "0.3.1" - resolved "https://registry.yarnpkg.com/geojson-rewind/-/geojson-rewind-0.3.1.tgz#22240797c847cc2f0c1d313e4aa0c915afa7f29d" - integrity sha1-IiQHl8hHzC8MHTE+SqDJFa+n8p0= - dependencies: - "@mapbox/geojson-area" "0.2.2" - concat-stream "~1.6.0" - minimist "1.2.0" - sharkdown "^0.1.0" - -geojson-vt@^3.0.0: +geojson-vt@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/geojson-vt/-/geojson-vt-3.2.1.tgz#f8adb614d2c1d3f6ee7c4265cad4bbf3ad60c8b7" integrity sha512-EvGQQi/zPrDA6zr6BnJD/YhwAkBP8nnJ9emh3EnHQKVMfg/MRVtPbMYdgVy/IaEmn4UfagD2a6fafPDL5hbtwg== @@ -3574,6 +3465,11 @@ getpass@^0.1.1: dependencies: assert-plus "^1.0.0" +gl-matrix@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/gl-matrix/-/gl-matrix-3.0.0.tgz#888301ac7650e148c3865370e13ec66d08a8381f" + integrity sha512-PD4mVH/C/Zs64kOozeFnKY8ybhgwxXXQYGWdB4h68krAHknWJgk9uKOn6z8YElh5//vs++90pb6csrTIDWnexA== + glob-base@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" @@ -3666,17 +3562,7 @@ graceful-fs@^4.1.11, graceful-fs@^4.1.2: resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00" integrity sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA== -gray-matter@^3.0.8: - version "3.1.1" - resolved "https://registry.yarnpkg.com/gray-matter/-/gray-matter-3.1.1.tgz#101f80d9e69eeca6765cdce437705b18f40876ac" - integrity sha512-nZ1qjLmayEv0/wt3sHig7I0s3/sJO0dkAaKYQ5YAOApUtYEOonXSFdWvL1khvnZMTvov4UufkqlFsilPnejEXA== - dependencies: - extend-shallow "^2.0.1" - js-yaml "^3.10.0" - kind-of "^5.0.2" - strip-bom-string "^1.0.0" - -grid-index@^1.0.0: +grid-index@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/grid-index/-/grid-index-1.1.0.tgz#97f8221edec1026c8377b86446a7c71e79522ea7" integrity sha512-HZRwumpOGUrHyxO5bqKZL0B0GlUpwtCAzZ42sgxUPniu33R1LSFH5yrIcBCHjkctCAh3mtWKcKd9J4vDDdeVHA== @@ -3717,11 +3603,6 @@ has-ansi@^2.0.0: dependencies: ansi-regex "^2.0.0" -has-color@~0.1.0: - version "0.1.7" - resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" - integrity sha1-ZxRKUmDDT8PMpnfQQdr1L+e3iy8= - has-flag@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" @@ -4297,11 +4178,6 @@ is-wsl@^1.1.0: resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= -isarray@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" - integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8= - isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" @@ -4698,7 +4574,7 @@ js-tokens@^3.0.0, js-tokens@^3.0.2: resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== -js-yaml@^3.10.0, js-yaml@^3.13.0, js-yaml@^3.7.0, js-yaml@^3.9.1: +js-yaml@^3.13.0, js-yaml@^3.7.0, js-yaml@^3.9.1: version "3.13.1" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== @@ -4842,14 +4718,6 @@ jsonify@~0.0.0: resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" integrity sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM= -jsonlint-lines-primitives@~1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/jsonlint-lines-primitives/-/jsonlint-lines-primitives-1.6.0.tgz#bb89f60c8b9b612fd913ddaa236649b840d86611" - integrity sha1-u4n2DIubYS/ZE92qI2ZJuEDYZhE= - dependencies: - JSV ">= 4.0.x" - nomnom ">= 1.5.x" - jsprim@^1.2.2: version "1.4.1" resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" @@ -4886,10 +4754,10 @@ jsx-loader@^0.13.2: jstransform "11" loader-utils "^0.2.2" -kdbush@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/kdbush/-/kdbush-1.0.1.tgz#3cbd03e9dead9c0f6f66ccdb96450e5cecc640e0" - integrity sha1-PL0D6d6tnA9vZszblkUOXOzGQOA= +kdbush@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/kdbush/-/kdbush-3.0.0.tgz#f8484794d47004cc2d85ed3a79353dbe0abc2bf0" + integrity sha512-hRkd6/XW4HTsA9vjVpY9tuXJYLSlelnkTmVFu4M9/7MIYQtFcHpbugAU7UbOfjOiVSVYl2fqgBuJ32JUmRo5Ew== kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: version "3.2.2" @@ -4905,7 +4773,7 @@ kind-of@^4.0.0: dependencies: is-buffer "^1.1.5" -kind-of@^5.0.0, kind-of@^5.0.2: +kind-of@^5.0.0: version "5.1.0" resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== @@ -5156,20 +5024,6 @@ lru-cache@^4.0.1, lru-cache@^4.1.1: pseudomap "^1.0.2" yallist "^2.1.2" -magic-string@^0.14.0: - version "0.14.0" - resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.14.0.tgz#57224aef1701caeed273b17a39a956e72b172462" - integrity sha1-VyJK7xcByu7Sc7F6OalW5ysXJGI= - dependencies: - vlq "^0.2.1" - -magic-string@^0.22.4: - version "0.22.5" - resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.22.5.tgz#8e9cf5afddf44385c1da5bc2a6a0dbd10b03657e" - integrity sha512-oreip9rJZkzvA8Qzk9HFs8fZGF/u7H/gtrE8EN6RjKJ9kh2HlC+yQ2QezifqTZfGyiuAV0dRv5a+y/8gBb1m9w== - dependencies: - vlq "^0.2.2" - make-dir@^1.0.0: version "1.3.0" resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c" @@ -5203,42 +5057,35 @@ map-visit@^1.0.0: dependencies: object-visit "^1.0.0" -mapbox-gl@^0.44.1: - version "0.44.2" - resolved "https://registry.yarnpkg.com/mapbox-gl/-/mapbox-gl-0.44.2.tgz#8c118ba8c5c15b054272644f30877309db0f8ee2" - integrity sha512-UzrfDEit6pX+HSj5qQTDG633JiF4JKn1MD8vz58S7kAnGRqnnSfFc7rrSVXZ/E6G5SFKsfESURUbLLuGkOcfWA== +mapbox-gl@^0.53.1: + version "0.53.1" + resolved "https://registry.yarnpkg.com/mapbox-gl/-/mapbox-gl-0.53.1.tgz#08a956d8da54b04bc7f29ab1319bddb9c97ddedf" + integrity sha512-dTtW/qlkUowKGlqOhE8fqII2Tj4lcokvlZwUDLnkjy4uQ9zMFnVBULGeSzzTVkj9HtQZ3Zbey10/jmoVPV9t5w== dependencies: - "@mapbox/gl-matrix" "^0.0.1" - "@mapbox/mapbox-gl-supported" "^1.3.0" + "@mapbox/geojson-rewind" "^0.4.0" + "@mapbox/geojson-types" "^1.0.2" + "@mapbox/jsonlint-lines-primitives" "^2.0.2" + "@mapbox/mapbox-gl-supported" "^1.4.0" "@mapbox/point-geometry" "^0.1.0" - "@mapbox/shelf-pack" "^3.1.0" "@mapbox/tiny-sdf" "^1.1.0" "@mapbox/unitbezier" "^0.0.0" - "@mapbox/vector-tile" "^1.3.0" - "@mapbox/whoots-js" "^3.0.0" - brfs "^1.4.0" - bubleify "^0.7.0" + "@mapbox/vector-tile" "^1.3.1" + "@mapbox/whoots-js" "^3.1.0" csscolorparser "~1.0.2" - earcut "^2.1.3" - geojson-rewind "^0.3.0" - geojson-vt "^3.0.0" - gray-matter "^3.0.8" - grid-index "^1.0.0" - jsonlint-lines-primitives "~1.6.0" + earcut "^2.1.5" + esm "^3.0.84" + geojson-vt "^3.2.1" + gl-matrix "^3.0.0" + grid-index "^1.1.0" minimist "0.0.8" - package-json-versionify "^1.0.2" + murmurhash-js "^1.0.0" pbf "^3.0.5" - quickselect "^1.0.0" + potpack "^1.0.1" + quickselect "^2.0.0" rw "^1.3.3" - shuffle-seed "^1.1.6" - sort-object "^0.3.2" - supercluster "^2.3.0" - through2 "^2.0.3" - tinyqueue "^1.1.0" - unassertify "^2.0.0" - unflowify "^1.0.0" - vt-pbf "^3.0.1" - webworkify "^1.5.0" + supercluster "^6.0.1" + tinyqueue "^2.0.0" + vt-pbf "^3.1.1" matcher@^1.0.0: version "1.1.1" @@ -5285,13 +5132,6 @@ memory-fs@^0.4.0, memory-fs@~0.4.1: errno "^0.1.3" readable-stream "^2.0.1" -merge-source-map@1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/merge-source-map/-/merge-source-map-1.0.4.tgz#a5de46538dae84d4114cc5ea02b4772a6346701f" - integrity sha1-pd5GU42uhNQRTMXqArR3KmNGcB8= - dependencies: - source-map "^0.5.6" - merge-stream@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" @@ -5399,7 +5239,7 @@ minimist@0.0.8: resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= -minimist@1.2.0, minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0: +minimist@1.2.0, minimist@^1.1.1, minimist@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= @@ -5490,12 +5330,10 @@ ms@^2.1.1: resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== -multi-stage-sourcemap@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/multi-stage-sourcemap/-/multi-stage-sourcemap-0.2.1.tgz#b09fc8586eaa17f81d575c4ad02e0f7a3f6b1105" - integrity sha1-sJ/IWG6qF/gdV1xK0C4Pej9rEQU= - dependencies: - source-map "^0.1.34" +murmurhash-js@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/murmurhash-js/-/murmurhash-js-1.0.0.tgz#b06278e21fc6c37fa5313732b0412bcb6ae15f51" + integrity sha1-sGJ44h/Gw3+lMTcysEEry2rhX1E= mustache@^2.3.0: version "2.3.2" @@ -5619,14 +5457,6 @@ node-pre-gyp@^0.12.0: semver "^5.3.0" tar "^4" -"nomnom@>= 1.5.x": - version "1.8.1" - resolved "https://registry.yarnpkg.com/nomnom/-/nomnom-1.8.1.tgz#2151f722472ba79e50a76fc125bb8c8f2e4dc2a7" - integrity sha1-IVH3Ikcrp55Qp2/BJbuMjy5Nwqc= - dependencies: - chalk "~0.4.0" - underscore "~1.6.0" - nopt@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" @@ -5742,12 +5572,7 @@ object-copy@^0.1.0: define-property "^0.2.5" kind-of "^3.0.3" -object-inspect@~1.4.0: - version "1.4.1" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.4.1.tgz#37ffb10e71adaf3748d05f713b4c9452f402cbc4" - integrity sha512-wqdhLpfCUbEsoEwl3FXwGyv8ief1k/1aUdIPCqVnupM6e8l63BEJdiF/0swtn04/8p05tG/T0FrpTlfwvljOdw== - -object-keys@^1.0.12, object-keys@^1.0.6: +object-keys@^1.0.12: version "1.1.1" resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== @@ -5831,7 +5656,7 @@ os-browserify@^0.3.0: resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc= -os-homedir@^1.0.0, os-homedir@^1.0.1: +os-homedir@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= @@ -5930,13 +5755,6 @@ p-try@^2.0.0: resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== -package-json-versionify@^1.0.2: - version "1.0.4" - resolved "https://registry.yarnpkg.com/package-json-versionify/-/package-json-versionify-1.0.4.tgz#5860587a944873a6b7e6d26e8e51ffb22315bf17" - integrity sha1-WGBYepRIc6a35tJujlH/siMVvxc= - dependencies: - browserify-package-json "^1.0.0" - pako@~1.0.5: version "1.0.10" resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.10.tgz#4328badb5086a426aa90f541977d4955da5c9732" @@ -6153,6 +5971,11 @@ posix-character-classes@^0.1.0: resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= +potpack@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/potpack/-/potpack-1.0.1.tgz#d1b1afd89e4c8f7762865ec30bd112ab767e2ebf" + integrity sha512-15vItUAbViaYrmaB/Pbw7z6qX2xENbFSTA7Ii4tgbPtasxm5v6ryKhKtL91tpWovDJzTiZqdwzhcFBCwiMVdVw== + prelude-ls@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" @@ -6307,19 +6130,10 @@ querystring@0.2.0: resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= -quickselect@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/quickselect/-/quickselect-1.1.1.tgz#852e412ce418f237ad5b660d70cffac647ae94c2" - integrity sha512-qN0Gqdw4c4KGPsBOQafj6yj/PA6c/L63f6CaZ/DCF/xF4Esu3jVmKLUDYxghFx8Kb/O7y9tI7x2RjTSXwdK1iQ== - -quote-stream@^1.0.1, quote-stream@~1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/quote-stream/-/quote-stream-1.0.2.tgz#84963f8c9c26b942e153feeb53aae74652b7e0b2" - integrity sha1-hJY/jJwmuULhU/7rU6rnRlK34LI= - dependencies: - buffer-equal "0.0.1" - minimist "^1.1.3" - through2 "^2.0.0" +quickselect@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/quickselect/-/quickselect-2.0.0.tgz#f19680a486a5eefb581303e023e98faaf25dd018" + integrity sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw== randomatic@^3.0.0: version "3.1.1" @@ -6403,7 +6217,7 @@ read-pkg@^4.0.1: parse-json "^4.0.0" pify "^3.0.0" -"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.3, readable-stream@~2.3.6: +"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6: version "2.3.6" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw== @@ -6658,7 +6472,7 @@ resolve@1.1.7: resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs= -resolve@^1.1.5, resolve@^1.10.0, resolve@^1.10.1, resolve@^1.5.0: +resolve@^1.10.0, resolve@^1.10.1, resolve@^1.5.0: version "1.10.1" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.10.1.tgz#664842ac960795bbe758221cdccda61fb64b5f18" integrity sha512-KuIe4mf++td/eFb6wkaPbMDnP6kObCaEtIDuHOUED6MNUo4K670KZUHuuvYPZDxNF0WVLw49n06M2m2dXphEzA== @@ -6793,11 +6607,6 @@ schema-utils@^0.3.0: dependencies: ajv "^5.0.0" -seedrandom@^2.4.2: - version "2.4.4" - resolved "https://registry.yarnpkg.com/seedrandom/-/seedrandom-2.4.4.tgz#b25ea98632c73e45f58b77cfaa931678df01f9ba" - integrity sha512-9A+PDmgm+2du77B5i0Ip2cxOqqHjgNxnBgglxLcX78A2D6c2rTo61z4jnVABpF4cKeDMDG+cmXXvdnqse2VqMA== - semver-compare@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" @@ -6851,11 +6660,6 @@ sha.js@^2.4.0, sha.js@^2.4.8: inherits "^2.0.1" safe-buffer "^5.0.1" -shallow-copy@~0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/shallow-copy/-/shallow-copy-0.0.1.tgz#415f42702d73d810330292cc5ee86eae1a11a170" - integrity sha1-QV9CcC1z2BAzApLMXuhurhoRoXA= - sharkdown@^0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/sharkdown/-/sharkdown-0.1.1.tgz#64484bd0f08f347f8319e9ff947a670f6b48b1b2" @@ -6882,13 +6686,6 @@ shellwords@^0.1.1: resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww== -shuffle-seed@^1.1.6: - version "1.1.6" - resolved "https://registry.yarnpkg.com/shuffle-seed/-/shuffle-seed-1.1.6.tgz#533c12683bab3b4fa3e8751fc4e562146744260b" - integrity sha1-UzwSaDurO0+j6HUfxOViFGdEJgs= - dependencies: - seedrandom "^2.4.2" - signal-exit@^3.0.0, signal-exit@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" @@ -6958,24 +6755,6 @@ snapdragon@^0.8.1: source-map-resolve "^0.5.0" use "^3.1.0" -sort-asc@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/sort-asc/-/sort-asc-0.1.0.tgz#ab799df61fc73ea0956c79c4b531ed1e9e7727e9" - integrity sha1-q3md9h/HPqCVbHnEtTHtHp53J+k= - -sort-desc@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/sort-desc/-/sort-desc-0.1.1.tgz#198b8c0cdeb095c463341861e3925d4ee359a9ee" - integrity sha1-GYuMDN6wlcRjNBhh45JdTuNZqe4= - -sort-object@^0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/sort-object/-/sort-object-0.3.2.tgz#98e0d199ede40e07c61a84403c61d6c3b290f9e2" - integrity sha1-mODRme3kDgfGGoRAPGHWw7KQ+eI= - dependencies: - sort-asc "^0.1.0" - sort-desc "^0.1.1" - source-list-map@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" @@ -7012,13 +6791,6 @@ source-map-url@^0.4.0: resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= -source-map@^0.1.34: - version "0.1.43" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346" - integrity sha1-wkvBRspRfBRx9drL4lcbK3+eM0Y= - dependencies: - amdefine ">=0.0.4" - source-map@^0.4.2: version "0.4.4" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" @@ -7113,13 +6885,6 @@ staged-git-files@1.1.2: resolved "https://registry.yarnpkg.com/staged-git-files/-/staged-git-files-1.1.2.tgz#4326d33886dc9ecfa29a6193bf511ba90a46454b" integrity sha512-0Eyrk6uXW6tg9PYkhi/V/J4zHp33aNyi2hOCmhFLqLTIhbgqWn5jlSzI+IU0VqrZq6+DbHcabQl/WP6P3BG0QA== -static-eval@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/static-eval/-/static-eval-2.0.2.tgz#2d1759306b1befa688938454c546b7871f806a42" - integrity sha512-N/D219Hcr2bPjLxPiV+TQE++Tsmrady7TqAJugLy7Xk1EumfDWS/f5dtBbkRCGE7wKKXuYockQoj8Rm2/pVKyg== - dependencies: - escodegen "^1.8.1" - static-extend@^0.1.1: version "0.1.2" resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" @@ -7128,26 +6893,6 @@ static-extend@^0.1.1: define-property "^0.2.5" object-copy "^0.1.0" -static-module@^2.2.0: - version "2.2.5" - resolved "https://registry.yarnpkg.com/static-module/-/static-module-2.2.5.tgz#bd40abceae33da6b7afb84a0e4329ff8852bfbbf" - integrity sha512-D8vv82E/Kpmz3TXHKG8PPsCPg+RAX6cbCOyvjM6x04qZtQ47EtJFVwRsdov3n5d6/6ynrOY9XB4JkaZwB2xoRQ== - dependencies: - concat-stream "~1.6.0" - convert-source-map "^1.5.1" - duplexer2 "~0.1.4" - escodegen "~1.9.0" - falafel "^2.1.0" - has "^1.0.1" - magic-string "^0.22.4" - merge-source-map "1.0.4" - object-inspect "~1.4.0" - quote-stream "~1.0.2" - readable-stream "~2.3.3" - shallow-copy "~0.0.1" - static-eval "^2.0.0" - through2 "~2.0.3" - stealthy-require@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" @@ -7252,16 +6997,6 @@ strip-ansi@^4.0.0: dependencies: ansi-regex "^3.0.0" -strip-ansi@~0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-0.1.1.tgz#39e8a98d044d150660abe4a6808acf70bb7bc991" - integrity sha1-OeipjQRNFQZgq+SmgIrPcLt7yZE= - -strip-bom-string@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/strip-bom-string/-/strip-bom-string-1.0.0.tgz#e5211e9224369fbb81d633a2f00044dc8cedad92" - integrity sha1-5SEekiQ2n7uB1jOi8ABE3IztrZI= - strip-bom@3.0.0, strip-bom@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" @@ -7284,12 +7019,12 @@ strip-json-comments@~2.0.1: resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= -supercluster@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/supercluster/-/supercluster-2.3.0.tgz#87ab56081bbea9a1d724df5351ee9e8c3af2f48b" - integrity sha1-h6tWCBu+qaHXJN9TUe6ejDry9Is= +supercluster@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/supercluster/-/supercluster-6.0.1.tgz#4c0177d96daa195d58a5bad9f55dbf12fb727a4c" + integrity sha512-NTth/FBFUt9mwW03+Z6Byscex+UHu0utroIe6uXjGu9PrTuWtW70LYv9I1vPSYYIHQL74S5zAkrXrHEk0L7dGA== dependencies: - kdbush "^1.0.1" + kdbush "^3.0.0" supports-color@^2.0.0: version "2.0.0" @@ -7388,7 +7123,7 @@ throat@^4.0.0: resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" integrity sha1-iQN8vJLFarGJJua6TLsgDhVnKmo= -through2@^2.0.0, through2@^2.0.3, through2@~2.0.3: +through2@^2.0.0: version "2.0.5" resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== @@ -7396,7 +7131,7 @@ through2@^2.0.0, through2@^2.0.3, through2@~2.0.3: readable-stream "~2.3.6" xtend "~4.0.1" -through@2, through@^2.3.6, through@^2.3.7, through@^2.3.8: +through@2, through@^2.3.6: version "2.3.8" resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= @@ -7408,10 +7143,10 @@ timers-browserify@^2.0.4: dependencies: setimmediate "^1.0.4" -tinyqueue@^1.1.0: - version "1.2.3" - resolved "https://registry.yarnpkg.com/tinyqueue/-/tinyqueue-1.2.3.tgz#b6a61de23060584da29f82362e45df1ec7353f3d" - integrity sha512-Qz9RgWuO9l8lT+Y9xvbzhPT2efIUIFd69N7eF7tJ9lnQl0iLj1M7peK7IoUGZL9DJHw9XftqLreccfxcQgYLxA== +tinyqueue@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/tinyqueue/-/tinyqueue-2.0.3.tgz#64d8492ebf39e7801d7bd34062e29b45b2035f08" + integrity sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA== tmp@^0.0.33: version "0.0.33" @@ -7591,44 +7326,6 @@ uglifyjs-webpack-plugin@^0.4.6: uglify-js "^2.8.29" webpack-sources "^1.0.1" -unassert@^1.3.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/unassert/-/unassert-1.5.1.tgz#cbc88ec387417c5a5e4c02d3cd07be98bd75ff76" - integrity sha1-y8iOw4dBfFpeTALTzQe+mL11/3Y= - dependencies: - acorn "^4.0.0" - call-matcher "^1.0.1" - deep-equal "^1.0.0" - espurify "^1.3.0" - estraverse "^4.1.0" - esutils "^2.0.2" - object-assign "^4.1.0" - -unassertify@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/unassertify/-/unassertify-2.1.1.tgz#23772d76c136fb3d5df7dad4911c737d952357d3" - integrity sha512-YIAaIlc6/KC9Oib8cVZLlpDDhK1UTEuaDyx9BwD97xqxDZC0cJOqwFcs/Y6K3m73B5VzHsRTBLXNO0dxS/GkTw== - dependencies: - acorn "^5.1.0" - convert-source-map "^1.1.1" - escodegen "^1.6.1" - multi-stage-sourcemap "^0.2.1" - through "^2.3.7" - unassert "^1.3.1" - -underscore@~1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.6.0.tgz#8b38b10cacdef63337b8b24e4ff86d45aea529a8" - integrity sha1-izixDKze9jM3uLJOT/htRa6lKag= - -unflowify@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/unflowify/-/unflowify-1.0.1.tgz#a2ea0d25c0affcc46955e6473575f7c5a1f4a696" - integrity sha1-ouoNJcCv/MRpVeZHNXX3xaH0ppY= - dependencies: - flow-remove-types "^1.1.2" - through "^2.3.8" - union-value@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" @@ -7745,11 +7442,6 @@ verror@1.10.0: core-util-is "1.0.2" extsprintf "^1.2.0" -vlq@^0.2.1, vlq@^0.2.2: - version "0.2.3" - resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.3.tgz#8f3e4328cf63b1540c0d67e1b2778386f8975b26" - integrity sha512-DRibZL6DsNhIgYQ+wNdWDL2SL3bKPlVrRiBqV5yuMm++op8W4kGFtaQfCs4KEJn0wBZcHVHJ3eoywX8983k1ow== - vm-browserify@0.0.4: version "0.0.4" resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" @@ -7757,7 +7449,7 @@ vm-browserify@0.0.4: dependencies: indexof "0.0.1" -vt-pbf@^3.0.1: +vt-pbf@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/vt-pbf/-/vt-pbf-3.1.1.tgz#b0f627e39a10ce91d943b898ed2363d21899fb82" integrity sha512-pHjWdrIoxurpmTcbfBWXaPwSmtPAHS105253P1qyEfSTV2HJddqjM+kIHquaT/L6lVJIk9ltTGc0IxR/G47hYA== @@ -7860,11 +7552,6 @@ webpack@^3.8.1: webpack-sources "^1.0.1" yargs "^8.0.2" -webworkify@^1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/webworkify/-/webworkify-1.5.0.tgz#734ad87a774de6ebdd546e1d3e027da5b8f4a42c" - integrity sha512-AMcUeyXAhbACL8S2hqqdqOLqvJ8ylmIbNwUIqQujRSouf4+eUFaXbG6F1Rbu+srlJMmxQWsiU7mOJi0nMBfM1g== - wgs84@0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/wgs84/-/wgs84-0.0.0.tgz#34fdc555917b6e57cf2a282ed043710c049cdc76" From 87c1aadbfcf6b453e83f179e66e92fb47a51d57f Mon Sep 17 00:00:00 2001 From: Kipchirchir Sigei Date: Tue, 23 Jul 2019 14:56:57 +0300 Subject: [PATCH 4/4] Fix fillLayer tests Signed-off-by: Kipchirchir Sigei --- test/fixtures/outputs/fill-layer-output.json | 4752 +++++++++--------- 1 file changed, 2385 insertions(+), 2367 deletions(-) diff --git a/test/fixtures/outputs/fill-layer-output.json b/test/fixtures/outputs/fill-layer-output.json index 005e5486..370902c0 100644 --- a/test/fixtures/outputs/fill-layer-output.json +++ b/test/fixtures/outputs/fill-layer-output.json @@ -1,2609 +1,2627 @@ { "label": "OCHA: Percentage of people (children < 3) and pregnant and lactating women reached with malnutrition prevention services", "source": { - "type": "vector", - "data": [ - { - "monthly_target": "45112", - "percent_target": "0", - "period": "January", - "region": "Galgaduud", + "type": "vector", + "data": [ + { + "region_id": "R1720056", + "region": "Galgaduud", + "period": "January", + "value": "0", + "monthly_target": "45112", + "percent_target": "0" + }, + { + "region_id": "R1720063", + "region": "Mudug", + "period": "January", + "value": "5232", + "monthly_target": "115999", + "percent_target": "5" + }, + { + "region_id": "R1720058", + "region": "Hiraan", + "period": "January", + "value": "0", + "monthly_target": "62481", + "percent_target": "0" + }, + { + "region_id": "R1720062", + "region": "Shabelle Dhexe", + "period": "January", + "value": "0", + "monthly_target": "43550", + "percent_target": "0" + }, + { + "region_id": "R1720057", + "region": "Gedo", + "period": "January", + "value": "8555", + "monthly_target": "61008", + "percent_target": "14" + }, + { + "region_id": "R1720059", + "region": "Juba Hoose", + "period": "January", + "value": "4003", + "monthly_target": "46966", + "percent_target": "9" + }, + { + "region_id": "R1720061", + "region": "Juba Dhexe", + "period": "January", + "value": "0", + "monthly_target": "0", + "percent_target": "0" + }, + { + "region_id": "R1720053", + "region": "Banadir", + "period": "January", + "value": "2100", + "monthly_target": "131856", + "percent_target": "2" + }, + { + "region_id": "R1720054", + "region": "Bari", + "period": "January", + "value": "17373", + "monthly_target": "87616", + "percent_target": "20" + }, + { + "region_id": "R1720064", + "region": "Nugaal", + "period": "January", + "value": "2553", + "monthly_target": "47122", + "percent_target": "5" + }, + { + "region_id": "R1720065", + "region": "Sanaag", + "period": "January", + "value": "3605", + "monthly_target": "105312", + "percent_target": "3" + }, + { + "region_id": "R1720066", + "region": "Sool", + "period": "January", + "value": "4831", + "monthly_target": "98337", + "percent_target": "5" + }, + { + "region_id": "R1720051", + "region": "Awdal", + "period": "January", + "value": "12216", + "monthly_target": "80790", + "percent_target": "15" + }, + { + "region_id": "R1720067", + "region": "Togdheer", + "period": "January", + "value": "11380", + "monthly_target": "86563", + "percent_target": "13" + }, + { + "region_id": "R1720068", + "region": "Woqooyi Galbeed", + "period": "January", + "value": "21886", + "monthly_target": "149040", + "percent_target": "15" + }, + { + "region_id": "R1720052", + "region": "Bakool", + "period": "January", + "value": "0", + "monthly_target": "44067", + "percent_target": "0" + }, + { + "region_id": "R1720055", + "region": "Bay", + "period": "January", + "value": "3761", + "monthly_target": "58872", + "percent_target": "6" + }, + { + "region_id": "R1720060", + "region": "Shabelle Hoose", + "period": "January", + "value": "0", + "monthly_target": "42202", + "percent_target": "0" + }, + { + "region_id": "R1720056", + "region": "Galgaduud", + "period": "February", + "value": "1250", + "monthly_target": "45112", + "percent_target": "3" + }, + { + "region_id": "R1720063", + "region": "Mudug", + "period": "February", + "value": "11190", + "monthly_target": "115999", + "percent_target": "10" + }, + { + "region_id": "R1720058", + "region": "Hiraan", + "period": "February", + "value": "5700", + "monthly_target": "62481", + "percent_target": "9" + }, + { + "region_id": "R1720062", + "region": "Shabelle Dhexe", + "period": "February", + "value": "0", + "monthly_target": "43550", + "percent_target": "0" + }, + { + "region_id": "R1720057", + "region": "Gedo", + "period": "February", + "value": "17340", + "monthly_target": "61008", + "percent_target": "28" + }, + { + "region_id": "R1720059", + "region": "Juba Hoose", + "period": "February", + "value": "4003", + "monthly_target": "46966", + "percent_target": "9" + }, + { + "region_id": "R1720061", + "region": "Juba Dhexe", + "period": "February", + "value": "0", + "monthly_target": "0", + "percent_target": "0" + }, + { + "region_id": "R1720053", + "region": "Banadir", + "period": "February", + "value": "27604", + "monthly_target": "131856", + "percent_target": "21" + }, + { + "region_id": "R1720054", + "region": "Bari", + "period": "February", + "value": "25628", + "monthly_target": "87616", + "percent_target": "29" + }, + { + "region_id": "R1720064", + "region": "Nugaal", + "period": "February", + "value": "13322", + "monthly_target": "47122", + "percent_target": "28" + }, + { + "region_id": "R1720065", + "region": "Sanaag", + "period": "February", + "value": "11678", + "monthly_target": "105312", + "percent_target": "11" + }, + { + "region_id": "R1720066", + "region": "Sool", + "period": "February", + "value": "12171", + "monthly_target": "110296", + "percent_target": "11" + }, + { + "region_id": "R1720051", + "region": "Awdal", + "period": "February", + "value": "12216", + "monthly_target": "80790", + "percent_target": "15" + }, + { + "region_id": "R1720067", + "region": "Togdheer", + "period": "February", + "value": "20554", + "monthly_target": "86563", + "percent_target": "24" + }, + { + "region_id": "R1720068", + "region": "Woqooyi Galbeed", + "period": "February", + "value": "21896", + "monthly_target": "149040", + "percent_target": "15" + }, + { + "region_id": "R1720052", + "region": "Bakool", + "period": "February", + "value": "7007", + "monthly_target": "44067", + "percent_target": "16" + }, + { + "region_id": "R1720055", + "region": "Bay", + "period": "February", + "value": "7500", + "monthly_target": "58872", + "percent_target": "13" + }, + { + "region_id": "R1720060", + "region": "Shabelle Hoose", + "period": "February", + "value": "0", + "monthly_target": "42202", + "percent_target": "0" + }, + { + "region_id": "R1720056", + "region": "Galgaduud", + "period": "March", + "value": "3500", + "monthly_target": "45112", + "percent_target": "8" + }, + { + "region_id": "R1720063", + "region": "Mudug", + "period": "March", + "value": "33555", + "monthly_target": "132536", + "percent_target": "25" + }, + { + "region_id": "R1720058", + "region": "Hiraan", + "period": "March", + "value": "11025", + "monthly_target": "62481", + "percent_target": "18" + }, + { + "region_id": "R1720062", + "region": "Shabelle Dhexe", + "period": "March", + "value": "4305", + "monthly_target": "43550", + "percent_target": "10" + }, + { + "region_id": "R1720057", + "region": "Gedo", + "period": "March", + "value": "22664", + "monthly_target": "61008", + "percent_target": "37" + }, + { + "region_id": "R1720059", + "region": "Juba Hoose", + "period": "March", + "value": "20940", + "monthly_target": "46966", + "percent_target": "45" + }, + { + "region_id": "R1720061", + "region": "Juba Dhexe", + "period": "March", + "value": "0", + "monthly_target": "0", + "percent_target": "0" + }, + { + "region_id": "R1720053", + "region": "Banadir", + "period": "March", + "value": "28598", + "monthly_target": "131856", + "percent_target": "22" + }, + { + "region_id": "R1720054", + "region": "Bari", + "period": "March", + "value": "40771", + "monthly_target": "87616", + "percent_target": "47" + }, + { + "region_id": "R1720064", + "region": "Nugaal", + "period": "March", + "value": "17097", + "monthly_target": "47122", + "percent_target": "36" + }, + { + "region_id": "R1720065", + "region": "Sanaag", + "period": "March", + "value": "25720", + "monthly_target": "115278", + "percent_target": "22" + }, + { + "region_id": "R1720066", + "region": "Sool", + "period": "March", + "value": "25628", + "monthly_target": "76394", + "percent_target": "34" + }, + { + "region_id": "R1720051", + "region": "Awdal", + "period": "March", + "value": "15364", + "monthly_target": "80790", + "percent_target": "19" + }, + { + "region_id": "R1720067", + "region": "Togdheer", + "period": "March", + "value": "24121", + "monthly_target": "86563", + "percent_target": "28" + }, + { + "region_id": "R1720068", + "region": "Woqooyi Galbeed", + "period": "March", + "value": "23755", + "monthly_target": "149040", + "percent_target": "16" + }, + { + "region_id": "R1720052", + "region": "Bakool", + "period": "March", + "value": "8095", + "monthly_target": "44067", + "percent_target": "18" + }, + { + "region_id": "R1720055", + "region": "Bay", + "period": "March", + "value": "9000", + "monthly_target": "58872", + "percent_target": "15" + }, + { + "region_id": "R1720060", + "region": "Shabelle Hoose", + "period": "March", + "value": "3526", + "monthly_target": "42202", + "percent_target": "8" + }, + { + "region_id": "R1720056", + "region": "Galgaduud", + "period": "April", + "value": "13500", + "monthly_target": "68332", + "percent_target": "20" + }, + { + "region_id": "R1720063", + "region": "Mudug", + "period": "April", + "value": "35877", + "monthly_target": "86143", + "percent_target": "42" + }, + { + "region_id": "R1720058", + "region": "Hiraan", + "period": "April", + "value": "11912", + "monthly_target": "62481", + "percent_target": "19" + }, + { + "region_id": "R1720062", + "region": "Shabelle Dhexe", + "period": "April", + "value": "14374", + "monthly_target": "144265", + "percent_target": "10" + }, + { + "region_id": "R1720057", + "region": "Gedo", + "period": "April", + "value": "25748", + "monthly_target": "61008", + "percent_target": "42" + }, + { + "region_id": "R1720059", + "region": "Juba Hoose", + "period": "April", + "value": "24936", + "monthly_target": "58716", + "percent_target": "42" + }, + { + "region_id": "R1720061", + "region": "Juba Dhexe", + "period": "April", + "value": "0", + "monthly_target": "43550", + "percent_target": "0" + }, + { + "region_id": "R1720053", + "region": "Banadir", + "period": "April", + "value": "58650", + "monthly_target": "156771", + "percent_target": "37" + }, + { + "region_id": "R1720054", + "region": "Bari", + "period": "April", + "value": "38955", + "monthly_target": "87616", + "percent_target": "44" + }, + { + "region_id": "R1720064", + "region": "Nugaal", + "period": "April", + "value": "19133", + "monthly_target": "47123", + "percent_target": "41" + }, + { + "region_id": "R1720065", + "region": "Sanaag", + "period": "April", + "value": "29470", + "monthly_target": "59322", + "percent_target": "50" + }, + { + "region_id": "R1720066", + "region": "Sool", + "period": "April", + "value": "25966", + "monthly_target": "37452", + "percent_target": "69" + }, + { + "region_id": "R1720051", + "region": "Awdal", + "period": "April", + "value": "18385", + "monthly_target": "80790", + "percent_target": "23" + }, + { + "region_id": "R1720067", + "region": "Togdheer", + "period": "April", + "value": "15337", + "monthly_target": "86563", + "percent_target": "18" + }, + { + "region_id": "R1720068", + "region": "Woqooyi Galbeed", + "period": "April", + "value": "22930", + "monthly_target": "149040", + "percent_target": "15" + }, + { + "region_id": "R1720052", + "region": "Bakool", + "period": "April", + "value": "12940", + "monthly_target": "44067", + "percent_target": "29" + }, + { + "region_id": "R1720055", + "region": "Bay", + "period": "April", + "value": "11560", + "monthly_target": "95061", + "percent_target": "12" + }, + { + "region_id": "R1720060", + "region": "Shabelle Hoose", + "period": "April", + "value": "18754", + "monthly_target": "61923", + "percent_target": "30" + } + ], + "layer": "som_adm_1-6k13xf", + "url": "mapbox://ona.bnc2rzsw", + "join": [ + "osm_id", + "region_id" + ] + }, + "type": "fill", + "property": "percent_target", + "categories": { + "breaks": "yes", + "color": "Blues", + "clusters": 5, + "suffix": "%" + }, + "aggregate": { + "timeseries": { + "field": "period" + } + }, + "labels": { + "data": "data/som_region_labels.csv", + "label": " {{percent_target}}%
of {{monthly_target}}", + "join": [ + "osm_id", + "region_id" + ], + "coordinates": [ + "longitude", + "latitude" + ], + "minzoom": 4.5, + "height": 30, + "width": 30, + "offset": [ + -15, + -5 + ] + }, + "popup": { + "header": "region", + "body": "{{value}} people reached" + }, + "visible": false, + "credit": "OCHA - Percentage of people (children < 3) and pregnant and lactating women reached with malnutrition prevention services (against monthly target)
Updated: June 8th, 2017", + "charts": { + "pie": { + "type": "breaks", + "level": "Regions", + "column": "percent_target" + }, + "primary": { + "type": "column", + "spec": { + "type": "percent", + "level": "region", + "column": "percent_target" + } + } + }, + "category": "Nutrition Cluster", + "id": "children-women-mal-prevention", + "loaded": false, + "mergedData": [ + { "region_id": "R1720056", - "value": "0" - }, - { - "monthly_target": "115999", - "percent_target": "5", + "region": "Galgaduud", "period": "January", - "region": "Mudug", + "value": "0", + "monthly_target": "45112", + "percent_target": "0" + }, + { "region_id": "R1720063", - "value": "5232" - }, - { - "monthly_target": "62481", - "percent_target": "0", + "region": "Mudug", "period": "January", - "region": "Hiraan", + "value": "5232", + "monthly_target": "115999", + "percent_target": "5" + }, + { "region_id": "R1720058", - "value": "0" - }, - { - "monthly_target": "43550", - "percent_target": "0", + "region": "Hiraan", "period": "January", - "region": "Shabelle Dhexe", + "value": "0", + "monthly_target": "62481", + "percent_target": "0" + }, + { "region_id": "R1720062", - "value": "0" - }, - { - "monthly_target": "61008", - "percent_target": "14", + "region": "Shabelle Dhexe", "period": "January", - "region": "Gedo", + "value": "0", + "monthly_target": "43550", + "percent_target": "0" + }, + { "region_id": "R1720057", - "value": "8555" - }, - { - "monthly_target": "46966", - "percent_target": "9", + "region": "Gedo", "period": "January", - "region": "Juba Hoose", + "value": "8555", + "monthly_target": "61008", + "percent_target": "14" + }, + { "region_id": "R1720059", - "value": "4003" - }, - { - "monthly_target": "0", - "percent_target": "0", + "region": "Juba Hoose", "period": "January", - "region": "Juba Dhexe", + "value": "4003", + "monthly_target": "46966", + "percent_target": "9" + }, + { "region_id": "R1720061", - "value": "0" - }, - { - "monthly_target": "131856", - "percent_target": "2", + "region": "Juba Dhexe", "period": "January", - "region": "Banadir", + "value": "0", + "monthly_target": "0", + "percent_target": "0" + }, + { "region_id": "R1720053", - "value": "2100" - }, - { - "monthly_target": "87616", - "percent_target": "20", + "region": "Banadir", "period": "January", - "region": "Bari", + "value": "2100", + "monthly_target": "131856", + "percent_target": "2" + }, + { "region_id": "R1720054", - "value": "17373" - }, - { - "monthly_target": "47122", - "percent_target": "5", + "region": "Bari", "period": "January", - "region": "Nugaal", + "value": "17373", + "monthly_target": "87616", + "percent_target": "20" + }, + { "region_id": "R1720064", - "value": "2553" - }, - { - "monthly_target": "105312", - "percent_target": "3", + "region": "Nugaal", "period": "January", - "region": "Sanaag", + "value": "2553", + "monthly_target": "47122", + "percent_target": "5" + }, + { "region_id": "R1720065", - "value": "3605" - }, - { - "monthly_target": "98337", - "percent_target": "5", + "region": "Sanaag", "period": "January", - "region": "Sool", + "value": "3605", + "monthly_target": "105312", + "percent_target": "3" + }, + { "region_id": "R1720066", - "value": "4831" - }, - { - "monthly_target": "80790", - "percent_target": "15", + "region": "Sool", "period": "January", - "region": "Awdal", + "value": "4831", + "monthly_target": "98337", + "percent_target": "5" + }, + { "region_id": "R1720051", - "value": "12216" - }, - { - "monthly_target": "86563", - "percent_target": "13", + "region": "Awdal", "period": "January", - "region": "Togdheer", + "value": "12216", + "monthly_target": "80790", + "percent_target": "15" + }, + { "region_id": "R1720067", - "value": "11380" - }, - { - "monthly_target": "149040", - "percent_target": "15", + "region": "Togdheer", "period": "January", - "region": "Woqooyi Galbeed", + "value": "11380", + "monthly_target": "86563", + "percent_target": "13" + }, + { "region_id": "R1720068", - "value": "21886" - }, - { - "monthly_target": "44067", - "percent_target": "0", + "region": "Woqooyi Galbeed", "period": "January", - "region": "Bakool", + "value": "21886", + "monthly_target": "149040", + "percent_target": "15" + }, + { "region_id": "R1720052", - "value": "0" - }, - { - "monthly_target": "58872", - "percent_target": "6", + "region": "Bakool", "period": "January", - "region": "Bay", + "value": "0", + "monthly_target": "44067", + "percent_target": "0" + }, + { "region_id": "R1720055", - "value": "3761" - }, - { - "monthly_target": "42202", - "percent_target": "0", + "region": "Bay", "period": "January", - "region": "Shabelle Hoose", + "value": "3761", + "monthly_target": "58872", + "percent_target": "6" + }, + { "region_id": "R1720060", - "value": "0" - }, - { - "monthly_target": "45112", - "percent_target": "3", - "period": "February", - "region": "Galgaduud", + "region": "Shabelle Hoose", + "period": "January", + "value": "0", + "monthly_target": "42202", + "percent_target": "0" + }, + { "region_id": "R1720056", - "value": "1250" - }, - { - "monthly_target": "115999", - "percent_target": "10", + "region": "Galgaduud", "period": "February", - "region": "Mudug", + "value": "1250", + "monthly_target": "45112", + "percent_target": "3" + }, + { "region_id": "R1720063", - "value": "11190" - }, - { - "monthly_target": "62481", - "percent_target": "9", + "region": "Mudug", "period": "February", - "region": "Hiraan", + "value": "11190", + "monthly_target": "115999", + "percent_target": "10" + }, + { "region_id": "R1720058", - "value": "5700" - }, - { - "monthly_target": "43550", - "percent_target": "0", + "region": "Hiraan", "period": "February", - "region": "Shabelle Dhexe", + "value": "5700", + "monthly_target": "62481", + "percent_target": "9" + }, + { "region_id": "R1720062", - "value": "0" - }, - { - "monthly_target": "61008", - "percent_target": "28", + "region": "Shabelle Dhexe", "period": "February", - "region": "Gedo", + "value": "0", + "monthly_target": "43550", + "percent_target": "0" + }, + { "region_id": "R1720057", - "value": "17340" - }, - { - "monthly_target": "46966", - "percent_target": "9", + "region": "Gedo", "period": "February", - "region": "Juba Hoose", + "value": "17340", + "monthly_target": "61008", + "percent_target": "28" + }, + { "region_id": "R1720059", - "value": "4003" - }, - { - "monthly_target": "0", - "percent_target": "0", + "region": "Juba Hoose", "period": "February", - "region": "Juba Dhexe", + "value": "4003", + "monthly_target": "46966", + "percent_target": "9" + }, + { "region_id": "R1720061", - "value": "0" - }, - { - "monthly_target": "131856", - "percent_target": "21", + "region": "Juba Dhexe", "period": "February", - "region": "Banadir", + "value": "0", + "monthly_target": "0", + "percent_target": "0" + }, + { "region_id": "R1720053", - "value": "27604" - }, - { - "monthly_target": "87616", - "percent_target": "29", + "region": "Banadir", "period": "February", - "region": "Bari", + "value": "27604", + "monthly_target": "131856", + "percent_target": "21" + }, + { "region_id": "R1720054", - "value": "25628" - }, - { - "monthly_target": "47122", - "percent_target": "28", + "region": "Bari", "period": "February", - "region": "Nugaal", + "value": "25628", + "monthly_target": "87616", + "percent_target": "29" + }, + { "region_id": "R1720064", - "value": "13322" - }, - { - "monthly_target": "105312", - "percent_target": "11", + "region": "Nugaal", "period": "February", - "region": "Sanaag", + "value": "13322", + "monthly_target": "47122", + "percent_target": "28" + }, + { "region_id": "R1720065", - "value": "11678" - }, - { - "monthly_target": "110296", - "percent_target": "11", + "region": "Sanaag", "period": "February", - "region": "Sool", + "value": "11678", + "monthly_target": "105312", + "percent_target": "11" + }, + { "region_id": "R1720066", - "value": "12171" - }, - { - "monthly_target": "80790", - "percent_target": "15", + "region": "Sool", "period": "February", - "region": "Awdal", + "value": "12171", + "monthly_target": "110296", + "percent_target": "11" + }, + { "region_id": "R1720051", - "value": "12216" - }, - { - "monthly_target": "86563", - "percent_target": "24", + "region": "Awdal", "period": "February", - "region": "Togdheer", + "value": "12216", + "monthly_target": "80790", + "percent_target": "15" + }, + { "region_id": "R1720067", - "value": "20554" - }, - { - "monthly_target": "149040", - "percent_target": "15", + "region": "Togdheer", "period": "February", - "region": "Woqooyi Galbeed", + "value": "20554", + "monthly_target": "86563", + "percent_target": "24" + }, + { "region_id": "R1720068", - "value": "21896" - }, - { - "monthly_target": "44067", - "percent_target": "16", + "region": "Woqooyi Galbeed", "period": "February", - "region": "Bakool", + "value": "21896", + "monthly_target": "149040", + "percent_target": "15" + }, + { "region_id": "R1720052", - "value": "7007" - }, - { - "monthly_target": "58872", - "percent_target": "13", + "region": "Bakool", "period": "February", - "region": "Bay", + "value": "7007", + "monthly_target": "44067", + "percent_target": "16" + }, + { "region_id": "R1720055", - "value": "7500" - }, - { - "monthly_target": "42202", - "percent_target": "0", + "region": "Bay", "period": "February", - "region": "Shabelle Hoose", + "value": "7500", + "monthly_target": "58872", + "percent_target": "13" + }, + { "region_id": "R1720060", - "value": "0" - }, - { - "monthly_target": "45112", - "percent_target": "8", - "period": "March", - "region": "Galgaduud", + "region": "Shabelle Hoose", + "period": "February", + "value": "0", + "monthly_target": "42202", + "percent_target": "0" + }, + { "region_id": "R1720056", - "value": "3500" - }, - { - "monthly_target": "132536", - "percent_target": "25", + "region": "Galgaduud", "period": "March", - "region": "Mudug", - "region_id": "R1720063", - "value": "33555" - }, - { - "monthly_target": "62481", - "percent_target": "18", + "value": "3500", + "monthly_target": "45112", + "percent_target": "8" + }, + { + "region_id": "R1720063", + "region": "Mudug", "period": "March", - "region": "Hiraan", + "value": "33555", + "monthly_target": "132536", + "percent_target": "25" + }, + { "region_id": "R1720058", - "value": "11025" - }, - { - "monthly_target": "43550", - "percent_target": "10", + "region": "Hiraan", "period": "March", - "region": "Shabelle Dhexe", + "value": "11025", + "monthly_target": "62481", + "percent_target": "18" + }, + { "region_id": "R1720062", - "value": "4305" - }, - { - "monthly_target": "61008", - "percent_target": "37", + "region": "Shabelle Dhexe", "period": "March", - "region": "Gedo", + "value": "4305", + "monthly_target": "43550", + "percent_target": "10" + }, + { "region_id": "R1720057", - "value": "22664" - }, - { - "monthly_target": "46966", - "percent_target": "45", + "region": "Gedo", "period": "March", - "region": "Juba Hoose", + "value": "22664", + "monthly_target": "61008", + "percent_target": "37" + }, + { "region_id": "R1720059", - "value": "20940" - }, - { - "monthly_target": "0", - "percent_target": "0", + "region": "Juba Hoose", "period": "March", - "region": "Juba Dhexe", + "value": "20940", + "monthly_target": "46966", + "percent_target": "45" + }, + { "region_id": "R1720061", - "value": "0" - }, - { - "monthly_target": "131856", - "percent_target": "22", + "region": "Juba Dhexe", "period": "March", - "region": "Banadir", + "value": "0", + "monthly_target": "0", + "percent_target": "0" + }, + { "region_id": "R1720053", - "value": "28598" - }, - { - "monthly_target": "87616", - "percent_target": "47", + "region": "Banadir", "period": "March", - "region": "Bari", + "value": "28598", + "monthly_target": "131856", + "percent_target": "22" + }, + { "region_id": "R1720054", - "value": "40771" - }, - { - "monthly_target": "47122", - "percent_target": "36", + "region": "Bari", "period": "March", - "region": "Nugaal", + "value": "40771", + "monthly_target": "87616", + "percent_target": "47" + }, + { "region_id": "R1720064", - "value": "17097" - }, - { - "monthly_target": "115278", - "percent_target": "22", + "region": "Nugaal", "period": "March", - "region": "Sanaag", + "value": "17097", + "monthly_target": "47122", + "percent_target": "36" + }, + { "region_id": "R1720065", - "value": "25720" - }, - { - "monthly_target": "76394", - "percent_target": "34", + "region": "Sanaag", "period": "March", - "region": "Sool", + "value": "25720", + "monthly_target": "115278", + "percent_target": "22" + }, + { "region_id": "R1720066", - "value": "25628" - }, - { - "monthly_target": "80790", - "percent_target": "19", + "region": "Sool", "period": "March", - "region": "Awdal", + "value": "25628", + "monthly_target": "76394", + "percent_target": "34" + }, + { "region_id": "R1720051", - "value": "15364" - }, - { - "monthly_target": "86563", - "percent_target": "28", + "region": "Awdal", "period": "March", - "region": "Togdheer", + "value": "15364", + "monthly_target": "80790", + "percent_target": "19" + }, + { "region_id": "R1720067", - "value": "24121" - }, - { - "monthly_target": "149040", - "percent_target": "16", + "region": "Togdheer", "period": "March", - "region": "Woqooyi Galbeed", + "value": "24121", + "monthly_target": "86563", + "percent_target": "28" + }, + { "region_id": "R1720068", - "value": "23755" - }, - { - "monthly_target": "44067", - "percent_target": "18", + "region": "Woqooyi Galbeed", "period": "March", - "region": "Bakool", + "value": "23755", + "monthly_target": "149040", + "percent_target": "16" + }, + { "region_id": "R1720052", - "value": "8095" - }, - { - "monthly_target": "58872", - "percent_target": "15", + "region": "Bakool", "period": "March", - "region": "Bay", + "value": "8095", + "monthly_target": "44067", + "percent_target": "18" + }, + { "region_id": "R1720055", - "value": "9000" - }, - { - "monthly_target": "42202", - "percent_target": "8", + "region": "Bay", "period": "March", - "region": "Shabelle Hoose", + "value": "9000", + "monthly_target": "58872", + "percent_target": "15" + }, + { "region_id": "R1720060", - "value": "3526" - }, - { - "monthly_target": "68332", - "percent_target": "20", - "period": "April", - "region": "Galgaduud", + "region": "Shabelle Hoose", + "period": "March", + "value": "3526", + "monthly_target": "42202", + "percent_target": "8" + }, + { "region_id": "R1720056", - "value": "13500" - }, - { - "monthly_target": "86143", - "percent_target": "42", + "region": "Galgaduud", "period": "April", - "region": "Mudug", + "value": "13500", + "monthly_target": "68332", + "percent_target": "20" + }, + { "region_id": "R1720063", - "value": "35877" - }, - { - "monthly_target": "62481", - "percent_target": "19", + "region": "Mudug", "period": "April", - "region": "Hiraan", + "value": "35877", + "monthly_target": "86143", + "percent_target": "42" + }, + { "region_id": "R1720058", - "value": "11912" - }, - { - "monthly_target": "144265", - "percent_target": "10", + "region": "Hiraan", "period": "April", - "region": "Shabelle Dhexe", + "value": "11912", + "monthly_target": "62481", + "percent_target": "19" + }, + { "region_id": "R1720062", - "value": "14374" - }, - { - "monthly_target": "61008", - "percent_target": "42", - "period": "April", - "region": "Gedo", - "region_id": "R1720057", - "value": "25748" - }, - { - "monthly_target": "58716", - "percent_target": "42", - "period": "April", - "region": "Juba Hoose", - "region_id": "R1720059", - "value": "24936" - }, - { - "monthly_target": "43550", - "percent_target": "0", - "period": "April", - "region": "Juba Dhexe", - "region_id": "R1720061", - "value": "0" - }, - { - "monthly_target": "156771", - "percent_target": "37", - "period": "April", - "region": "Banadir", - "region_id": "R1720053", - "value": "58650" - }, - { - "monthly_target": "87616", - "percent_target": "44", - "period": "April", - "region": "Bari", - "region_id": "R1720054", - "value": "38955" - }, - { - "monthly_target": "47123", - "percent_target": "41", - "period": "April", - "region": "Nugaal", - "region_id": "R1720064", - "value": "19133" - }, - { - "monthly_target": "59322", - "percent_target": "50", - "period": "April", - "region": "Sanaag", - "region_id": "R1720065", - "value": "29470" - }, - { - "monthly_target": "37452", - "percent_target": "69", - "period": "April", - "region": "Sool", - "region_id": "R1720066", - "value": "25966" - }, - { - "monthly_target": "80790", - "percent_target": "23", - "period": "April", - "region": "Awdal", - "region_id": "R1720051", - "value": "18385" - }, - { - "monthly_target": "86563", - "percent_target": "18", - "period": "April", - "region": "Togdheer", - "region_id": "R1720067", - "value": "15337" - }, - { - "monthly_target": "149040", - "percent_target": "15", - "period": "April", - "region": "Woqooyi Galbeed", - "region_id": "R1720068", - "value": "22930" - }, - { - "monthly_target": "44067", - "percent_target": "29", - "period": "April", - "region": "Bakool", - "region_id": "R1720052", - "value": "12940" - }, - { - "monthly_target": "95061", - "percent_target": "12", - "period": "April", - "region": "Bay", - "region_id": "R1720055", - "value": "11560" - }, - { - "monthly_target": "61923", - "percent_target": "30", + "region": "Shabelle Dhexe", "period": "April", - "region": "Shabelle Hoose", - "region_id": "R1720060", - "value": "18754" - } - ], - "layer": "som_adm_1-6k13xf", - "url": "mapbox://ona.bnc2rzsw", - "join": [ - "osm_id", - "region_id" - ] - }, - "type": "fill", - "property": "percent_target", - "categories": { - "breaks": "yes", - "color": "Blues", - "clusters": 5, - "suffix": "%" - }, - "aggregate": { - "timeseries": { - "field": "period" - } - }, - "labels": { - "data": "data/som_region_labels.csv", - "label": " {{percent_target}}%
of {{monthly_target}}", - "join": [ - "osm_id", - "region_id" - ], - "coordinates": [ - "longitude", - "latitude" - ], - "minzoom": 4.5, - "height": 30, - "width": 30, - "offset": [ - -15, - -5 - ] - }, - "popup": { - "header": "region", - "body": "{{value}} people reached" - }, - "visible": false, - "credit": "OCHA - Percentage of people (children < 3) and pregnant and lactating women reached with malnutrition prevention services (against monthly target)
Updated: June 8th, 2017", - "charts": { - "pie": { - "type": "breaks", - "level": "Regions", - "column": "percent_target" - }, - "primary": { - "type": "column", - "spec": { - "type": "percent", - "level": "region", - "column": "percent_target" - } - } - }, - "category": "Nutrition Cluster", - "id": "children-women-mal-prevention", - "loaded": false, - "mergedData": [ - { - "monthly_target": "45112", - "percent_target": "0", - "period": "January", - "region": "Galgaduud", - "region_id": "R1720056", - "value": "0" + "value": "14374", + "monthly_target": "144265", + "percent_target": "10" }, { - "monthly_target": "115999", - "percent_target": "5", - "period": "January", - "region": "Mudug", - "region_id": "R1720063", - "value": "5232" + "region_id": "R1720057", + "region": "Gedo", + "period": "April", + "value": "25748", + "monthly_target": "61008", + "percent_target": "42" }, { - "monthly_target": "62481", - "percent_target": "0", - "period": "January", - "region": "Hiraan", - "region_id": "R1720058", - "value": "0" + "region_id": "R1720059", + "region": "Juba Hoose", + "period": "April", + "value": "24936", + "monthly_target": "58716", + "percent_target": "42" }, { - "monthly_target": "43550", - "percent_target": "0", - "period": "January", - "region": "Shabelle Dhexe", - "region_id": "R1720062", - "value": "0" + "region_id": "R1720061", + "region": "Juba Dhexe", + "period": "April", + "value": "0", + "monthly_target": "43550", + "percent_target": "0" }, { - "monthly_target": "61008", - "percent_target": "14", - "period": "January", - "region": "Gedo", - "region_id": "R1720057", - "value": "8555" + "region_id": "R1720053", + "region": "Banadir", + "period": "April", + "value": "58650", + "monthly_target": "156771", + "percent_target": "37" }, { - "monthly_target": "46966", - "percent_target": "9", - "period": "January", - "region": "Juba Hoose", - "region_id": "R1720059", - "value": "4003" + "region_id": "R1720054", + "region": "Bari", + "period": "April", + "value": "38955", + "monthly_target": "87616", + "percent_target": "44" }, { - "monthly_target": "0", - "percent_target": "0", - "period": "January", - "region": "Juba Dhexe", - "region_id": "R1720061", - "value": "0" + "region_id": "R1720064", + "region": "Nugaal", + "period": "April", + "value": "19133", + "monthly_target": "47123", + "percent_target": "41" }, { - "monthly_target": "131856", - "percent_target": "2", - "period": "January", - "region": "Banadir", - "region_id": "R1720053", - "value": "2100" + "region_id": "R1720065", + "region": "Sanaag", + "period": "April", + "value": "29470", + "monthly_target": "59322", + "percent_target": "50" }, { - "monthly_target": "87616", - "percent_target": "20", - "period": "January", - "region": "Bari", - "region_id": "R1720054", - "value": "17373" + "region_id": "R1720066", + "region": "Sool", + "period": "April", + "value": "25966", + "monthly_target": "37452", + "percent_target": "69" }, { - "monthly_target": "47122", - "percent_target": "5", - "period": "January", - "region": "Nugaal", - "region_id": "R1720064", - "value": "2553" + "region_id": "R1720051", + "region": "Awdal", + "period": "April", + "value": "18385", + "monthly_target": "80790", + "percent_target": "23" }, { - "monthly_target": "105312", - "percent_target": "3", - "period": "January", - "region": "Sanaag", - "region_id": "R1720065", - "value": "3605" + "region_id": "R1720067", + "region": "Togdheer", + "period": "April", + "value": "15337", + "monthly_target": "86563", + "percent_target": "18" }, { - "monthly_target": "98337", - "percent_target": "5", - "period": "January", - "region": "Sool", - "region_id": "R1720066", - "value": "4831" + "region_id": "R1720068", + "region": "Woqooyi Galbeed", + "period": "April", + "value": "22930", + "monthly_target": "149040", + "percent_target": "15" }, { - "monthly_target": "80790", - "percent_target": "15", - "period": "January", - "region": "Awdal", - "region_id": "R1720051", - "value": "12216" + "region_id": "R1720052", + "region": "Bakool", + "period": "April", + "value": "12940", + "monthly_target": "44067", + "percent_target": "29" }, { - "monthly_target": "86563", - "percent_target": "13", - "period": "January", - "region": "Togdheer", - "region_id": "R1720067", - "value": "11380" + "region_id": "R1720055", + "region": "Bay", + "period": "April", + "value": "11560", + "monthly_target": "95061", + "percent_target": "12" }, { - "monthly_target": "149040", - "percent_target": "15", - "period": "January", - "region": "Woqooyi Galbeed", - "region_id": "R1720068", - "value": "21886" - }, - { - "monthly_target": "44067", - "percent_target": "0", - "period": "January", - "region": "Bakool", - "region_id": "R1720052", - "value": "0" - }, - { - "monthly_target": "58872", - "percent_target": "6", - "period": "January", - "region": "Bay", - "region_id": "R1720055", - "value": "3761" - }, - { - "monthly_target": "42202", - "percent_target": "0", - "period": "January", - "region": "Shabelle Hoose", - "region_id": "R1720060", - "value": "0" - }, - { - "monthly_target": "45112", - "percent_target": "3", - "period": "February", - "region": "Galgaduud", - "region_id": "R1720056", - "value": "1250" - }, - { - "monthly_target": "115999", - "percent_target": "10", - "period": "February", - "region": "Mudug", - "region_id": "R1720063", - "value": "11190" - }, - { - "monthly_target": "62481", - "percent_target": "9", - "period": "February", - "region": "Hiraan", - "region_id": "R1720058", - "value": "5700" - }, - { - "monthly_target": "43550", - "percent_target": "0", - "period": "February", - "region": "Shabelle Dhexe", - "region_id": "R1720062", - "value": "0" - }, - { - "monthly_target": "61008", - "percent_target": "28", - "period": "February", - "region": "Gedo", - "region_id": "R1720057", - "value": "17340" - }, - { - "monthly_target": "46966", - "percent_target": "9", - "period": "February", - "region": "Juba Hoose", - "region_id": "R1720059", - "value": "4003" - }, - { - "monthly_target": "0", - "percent_target": "0", - "period": "February", - "region": "Juba Dhexe", - "region_id": "R1720061", - "value": "0" - }, - { - "monthly_target": "131856", - "percent_target": "21", - "period": "February", - "region": "Banadir", - "region_id": "R1720053", - "value": "27604" - }, - { - "monthly_target": "87616", - "percent_target": "29", - "period": "February", - "region": "Bari", - "region_id": "R1720054", - "value": "25628" - }, - { - "monthly_target": "47122", - "percent_target": "28", - "period": "February", - "region": "Nugaal", - "region_id": "R1720064", - "value": "13322" - }, - { - "monthly_target": "105312", - "percent_target": "11", - "period": "February", - "region": "Sanaag", - "region_id": "R1720065", - "value": "11678" - }, - { - "monthly_target": "110296", - "percent_target": "11", - "period": "February", - "region": "Sool", - "region_id": "R1720066", - "value": "12171" - }, - { - "monthly_target": "80790", - "percent_target": "15", - "period": "February", - "region": "Awdal", - "region_id": "R1720051", - "value": "12216" - }, - { - "monthly_target": "86563", - "percent_target": "24", - "period": "February", - "region": "Togdheer", - "region_id": "R1720067", - "value": "20554" - }, - { - "monthly_target": "149040", - "percent_target": "15", - "period": "February", - "region": "Woqooyi Galbeed", - "region_id": "R1720068", - "value": "21896" - }, - { - "monthly_target": "44067", - "percent_target": "16", - "period": "February", - "region": "Bakool", - "region_id": "R1720052", - "value": "7007" - }, - { - "monthly_target": "58872", - "percent_target": "13", - "period": "February", - "region": "Bay", - "region_id": "R1720055", - "value": "7500" - }, - { - "monthly_target": "42202", - "percent_target": "0", - "period": "February", - "region": "Shabelle Hoose", - "region_id": "R1720060", - "value": "0" - }, - { - "monthly_target": "45112", - "percent_target": "8", - "period": "March", - "region": "Galgaduud", - "region_id": "R1720056", - "value": "3500" - }, - { - "monthly_target": "132536", - "percent_target": "25", - "period": "March", - "region": "Mudug", - "region_id": "R1720063", - "value": "33555" - }, - { - "monthly_target": "62481", - "percent_target": "18", - "period": "March", - "region": "Hiraan", - "region_id": "R1720058", - "value": "11025" - }, - { - "monthly_target": "43550", - "percent_target": "10", - "period": "March", - "region": "Shabelle Dhexe", - "region_id": "R1720062", - "value": "4305" - }, - { - "monthly_target": "61008", - "percent_target": "37", - "period": "March", - "region": "Gedo", - "region_id": "R1720057", - "value": "22664" - }, - { - "monthly_target": "46966", - "percent_target": "45", - "period": "March", - "region": "Juba Hoose", - "region_id": "R1720059", - "value": "20940" - }, - { - "monthly_target": "0", - "percent_target": "0", - "period": "March", - "region": "Juba Dhexe", - "region_id": "R1720061", - "value": "0" - }, - { - "monthly_target": "131856", - "percent_target": "22", - "period": "March", - "region": "Banadir", - "region_id": "R1720053", - "value": "28598" - }, - { - "monthly_target": "87616", - "percent_target": "47", - "period": "March", - "region": "Bari", - "region_id": "R1720054", - "value": "40771" - }, - { - "monthly_target": "47122", - "percent_target": "36", - "period": "March", - "region": "Nugaal", - "region_id": "R1720064", - "value": "17097" - }, - { - "monthly_target": "115278", - "percent_target": "22", - "period": "March", - "region": "Sanaag", - "region_id": "R1720065", - "value": "25720" - }, - { - "monthly_target": "76394", - "percent_target": "34", - "period": "March", - "region": "Sool", - "region_id": "R1720066", - "value": "25628" - }, - { - "monthly_target": "80790", - "percent_target": "19", - "period": "March", - "region": "Awdal", - "region_id": "R1720051", - "value": "15364" - }, - { - "monthly_target": "86563", - "percent_target": "28", - "period": "March", - "region": "Togdheer", - "region_id": "R1720067", - "value": "24121" - }, - { - "monthly_target": "149040", - "percent_target": "16", - "period": "March", - "region": "Woqooyi Galbeed", - "region_id": "R1720068", - "value": "23755" - }, - { - "monthly_target": "44067", - "percent_target": "18", - "period": "March", - "region": "Bakool", - "region_id": "R1720052", - "value": "8095" - }, - { - "monthly_target": "58872", - "percent_target": "15", - "period": "March", - "region": "Bay", - "region_id": "R1720055", - "value": "9000" - }, - { - "monthly_target": "42202", - "percent_target": "8", - "period": "March", - "region": "Shabelle Hoose", - "region_id": "R1720060", - "value": "3526" - }, - { - "monthly_target": "68332", - "percent_target": "20", - "period": "April", - "region": "Galgaduud", - "region_id": "R1720056", - "value": "13500" - }, - { - "monthly_target": "86143", - "percent_target": "42", - "period": "April", - "region": "Mudug", - "region_id": "R1720063", - "value": "35877" - }, - { - "monthly_target": "62481", - "percent_target": "19", - "period": "April", - "region": "Hiraan", - "region_id": "R1720058", - "value": "11912" - }, - { - "monthly_target": "144265", - "percent_target": "10", - "period": "April", - "region": "Shabelle Dhexe", - "region_id": "R1720062", - "value": "14374" - }, - { - "monthly_target": "61008", - "percent_target": "42", - "period": "April", - "region": "Gedo", - "region_id": "R1720057", - "value": "25748" - }, - { - "monthly_target": "58716", - "percent_target": "42", - "period": "April", - "region": "Juba Hoose", - "region_id": "R1720059", - "value": "24936" - }, - { - "monthly_target": "43550", - "percent_target": "0", - "period": "April", - "region": "Juba Dhexe", - "region_id": "R1720061", - "value": "0" - }, - { - "monthly_target": "156771", - "percent_target": "37", - "period": "April", - "region": "Banadir", - "region_id": "R1720053", - "value": "58650" - }, - { - "monthly_target": "87616", - "percent_target": "44", - "period": "April", - "region": "Bari", - "region_id": "R1720054", - "value": "38955" - }, - { - "monthly_target": "47123", - "percent_target": "41", - "period": "April", - "region": "Nugaal", - "region_id": "R1720064", - "value": "19133" - }, - { - "monthly_target": "59322", - "percent_target": "50", - "period": "April", - "region": "Sanaag", - "region_id": "R1720065", - "value": "29470" - }, - { - "monthly_target": "37452", - "percent_target": "69", - "period": "April", - "region": "Sool", - "region_id": "R1720066", - "value": "25966" - }, - { - "monthly_target": "80790", - "percent_target": "23", - "period": "April", - "region": "Awdal", - "region_id": "R1720051", - "value": "18385" - }, - { - "monthly_target": "86563", - "percent_target": "18", - "period": "April", - "region": "Togdheer", - "region_id": "R1720067", - "value": "15337" - }, - { - "monthly_target": "149040", - "percent_target": "15", - "period": "April", - "region": "Woqooyi Galbeed", - "region_id": "R1720068", - "value": "22930" - }, - { - "monthly_target": "44067", - "percent_target": "29", - "period": "April", - "region": "Bakool", - "region_id": "R1720052", - "value": "12940" - }, - { - "monthly_target": "95061", - "percent_target": "12", - "period": "April", - "region": "Bay", - "region_id": "R1720055", - "value": "11560" - }, - { - "monthly_target": "61923", - "percent_target": "30", - "period": "April", - "region": "Shabelle Hoose", - "region_id": "R1720060", - "value": "18754" + "region_id": "R1720060", + "region": "Shabelle Hoose", + "period": "April", + "value": "18754", + "monthly_target": "61923", + "percent_target": "30" } - ], + ], "filters": {}, "isChartMin": true, "legendBottom": 40, - "stopsData":[ + "stopsData": [ [ - "R1720061", - "#eff3ff" + "R1720061", + "#eff3ff" ], [ - "R1720056", - "#bdd7e7" + "R1720056", + "#bdd7e7" ], [ - "R1720060", - "#bdd7e7" + "R1720060", + "#bdd7e7" ], [ - "R1720062", - "#bdd7e7" + "R1720062", + "#bdd7e7" ], [ - "R1720055", - "#bdd7e7" + "R1720055", + "#bdd7e7" ], [ - "R1720068", - "#bdd7e7" + "R1720068", + "#bdd7e7" ], [ - "R1720058", - "#bdd7e7" + "R1720058", + "#bdd7e7" ], [ - "R1720052", - "#bdd7e7" + "R1720052", + "#bdd7e7" ], [ - "R1720051", - "#6baed6" + "R1720051", + "#6baed6" ], [ - "R1720065", - "#6baed6" + "R1720053", + "#6baed6" ], [ - "R1720053", - "#6baed6" + "R1720065", + "#6baed6" ], [ - "R1720063", - "#6baed6" + "R1720063", + "#6baed6" ], [ - "R1720067", - "#6baed6" + "R1720067", + "#6baed6" ], [ - "R1720066", - "#3182bd" + "R1720066", + "#3182bd" ], [ - "R1720064", - "#3182bd" + "R1720064", + "#3182bd" ], [ - "R1720057", - "#3182bd" + "R1720057", + "#3182bd" ], [ - "R1720059", - "#3182bd" + "R1720059", + "#3182bd" ], [ - "R1720054", - "#3182bd" + "R1720054", + "#3182bd" ] - ], + ], "breaks": [ - 6, - 18, - 30, - 50, - 69 + 6, + 18, + 30, + 50, + 69 ], "colors": [ - "#eff3ff", - "#bdd7e7", - "#6baed6", - "#3182bd", - "#08519c" + "#eff3ff", + "#bdd7e7", + "#6baed6", + "#3182bd", + "#08519c" ], "Data": [ { - "monthly_target": "45112", - "percent_target": "8", - "period": "March", - "region": "Galgaduud", - "region_id": "R1720056", - "value": "3500" + "region_id": "R1720056", + "region": "Galgaduud", + "period": "March", + "value": "3500", + "monthly_target": "45112", + "percent_target": "8" }, { - "monthly_target": "132536", - "percent_target": "25", - "period": "March", - "region": "Mudug", - "region_id": "R1720063", - "value": "33555" + "region_id": "R1720063", + "region": "Mudug", + "period": "March", + "value": "33555", + "monthly_target": "132536", + "percent_target": "25" }, { - "monthly_target": "62481", - "percent_target": "18", - "period": "March", - "region": "Hiraan", - "region_id": "R1720058", - "value": "11025" + "region_id": "R1720058", + "region": "Hiraan", + "period": "March", + "value": "11025", + "monthly_target": "62481", + "percent_target": "18" }, { - "monthly_target": "43550", - "percent_target": "10", - "period": "March", - "region": "Shabelle Dhexe", - "region_id": "R1720062", - "value": "4305" + "region_id": "R1720062", + "region": "Shabelle Dhexe", + "period": "March", + "value": "4305", + "monthly_target": "43550", + "percent_target": "10" }, { - "monthly_target": "61008", - "percent_target": "37", - "period": "March", - "region": "Gedo", - "region_id": "R1720057", - "value": "22664" + "region_id": "R1720057", + "region": "Gedo", + "period": "March", + "value": "22664", + "monthly_target": "61008", + "percent_target": "37" }, { - "monthly_target": "46966", - "percent_target": "45", - "period": "March", - "region": "Juba Hoose", - "region_id": "R1720059", - "value": "20940" + "region_id": "R1720059", + "region": "Juba Hoose", + "period": "March", + "value": "20940", + "monthly_target": "46966", + "percent_target": "45" }, { - "monthly_target": "0", - "percent_target": "0", - "period": "March", - "region": "Juba Dhexe", - "region_id": "R1720061", - "value": "0" + "region_id": "R1720061", + "region": "Juba Dhexe", + "period": "March", + "value": "0", + "monthly_target": "0", + "percent_target": "0" }, { - "monthly_target": "131856", - "percent_target": "22", - "period": "March", - "region": "Banadir", - "region_id": "R1720053", - "value": "28598" + "region_id": "R1720053", + "region": "Banadir", + "period": "March", + "value": "28598", + "monthly_target": "131856", + "percent_target": "22" }, { - "monthly_target": "87616", - "percent_target": "47", - "period": "March", - "region": "Bari", - "region_id": "R1720054", - "value": "40771" + "region_id": "R1720054", + "region": "Bari", + "period": "March", + "value": "40771", + "monthly_target": "87616", + "percent_target": "47" }, { - "monthly_target": "47122", - "percent_target": "36", - "period": "March", - "region": "Nugaal", - "region_id": "R1720064", - "value": "17097" + "region_id": "R1720064", + "region": "Nugaal", + "period": "March", + "value": "17097", + "monthly_target": "47122", + "percent_target": "36" }, { - "monthly_target": "115278", - "percent_target": "22", - "period": "March", - "region": "Sanaag", - "region_id": "R1720065", - "value": "25720" + "region_id": "R1720065", + "region": "Sanaag", + "period": "March", + "value": "25720", + "monthly_target": "115278", + "percent_target": "22" }, { - "monthly_target": "76394", - "percent_target": "34", - "period": "March", - "region": "Sool", - "region_id": "R1720066", - "value": "25628" + "region_id": "R1720066", + "region": "Sool", + "period": "March", + "value": "25628", + "monthly_target": "76394", + "percent_target": "34" }, { - "monthly_target": "80790", - "percent_target": "19", - "period": "March", - "region": "Awdal", - "region_id": "R1720051", - "value": "15364" - }, + "region_id": "R1720051", + "region": "Awdal", + "period": "March", + "value": "15364", + "monthly_target": "80790", + "percent_target": "19" + }, { - "monthly_target": "86563", - "percent_target": "28", - "period": "March", - "region": "Togdheer", - "region_id": "R1720067", - "value": "24121" - }, + "region_id": "R1720067", + "region": "Togdheer", + "period": "March", + "value": "24121", + "monthly_target": "86563", + "percent_target": "28" + }, { - "monthly_target": "149040", - "percent_target": "16", - "period": "March", - "region": "Woqooyi Galbeed", - "region_id": "R1720068", - "value": "23755" - }, + "region_id": "R1720068", + "region": "Woqooyi Galbeed", + "period": "March", + "value": "23755", + "monthly_target": "149040", + "percent_target": "16" + }, { - "monthly_target": "44067", - "percent_target": "18", - "period": "March", - "region": "Bakool", - "region_id": "R1720052", - "value": "8095" - }, + "region_id": "R1720052", + "region": "Bakool", + "period": "March", + "value": "8095", + "monthly_target": "44067", + "percent_target": "18" + }, { - "monthly_target": "58872", - "percent_target": "15", - "period": "March", - "region": "Bay", - "region_id": "R1720055", - "value": "9000" - }, + "region_id": "R1720055", + "region": "Bay", + "period": "March", + "value": "9000", + "monthly_target": "58872", + "percent_target": "15" + }, { - "monthly_target": "42202", - "percent_target": "8", - "period": "March", - "region": "Shabelle Hoose", - "region_id": "R1720060", - "value": "3526" + "region_id": "R1720060", + "region": "Shabelle Hoose", + "period": "March", + "value": "3526", + "monthly_target": "42202", + "percent_target": "8" } - ], + ], "stops": [ [ - [ - [ - "R1720056", - "#eff3ff" - ], - [ - "R1720062", - "#eff3ff" - ], - [ - "R1720061", - "#eff3ff" - ], [ - "R1720052", - "#eff3ff" - ], - [ - "R1720058", - "#eff3ff" - ], - [ - "R1720060", - "#eff3ff" - ], - [ - "R1720053", - "#eff3ff" - ], - [ - "R1720065", - "#eff3ff" - ], - [ - "R1720066", - "#eff3ff" - ], - [ - "R1720064", - "#eff3ff" - ], - [ - "R1720063", - "#eff3ff" - ], - [ - "R1720055", - "#eff3ff" - ], - [ - "R1720059", - "#bdd7e7" - ], - [ - "R1720067", - "#bdd7e7" - ], - [ - "R1720057", - "#bdd7e7" - ], - [ - "R1720068", - "#bdd7e7" - ], - [ - "R1720051", - "#bdd7e7" - ], - [ - "R1720054", - "#6baed6" + [ + "R1720061", + "#eff3ff" + ], + [ + "R1720062", + "#bdd7e7" + ], + [ + "R1720055", + "#bdd7e7" + ], + [ + "R1720068", + "#bdd7e7" + ], + [ + "R1720067", + "#bdd7e7" + ], + [ + "R1720058", + "#6baed6" + ], + [ + "R1720056", + "#6baed6" + ], + [ + "R1720051", + "#6baed6" + ], + [ + "R1720052", + "#6baed6" + ], + [ + "R1720060", + "#6baed6" + ], + [ + "R1720053", + "#3182bd" + ], + [ + "R1720064", + "#3182bd" + ], + [ + "R1720063", + "#3182bd" + ], + [ + "R1720057", + "#3182bd" + ], + [ + "R1720059", + "#3182bd" + ], + [ + "R1720054", + "#3182bd" + ], + [ + "R1720065", + "#3182bd" + ], + [ + "R1720066", + "#08519c" + ] + ], + [ + [ + "R1720062", + "#eff3ff" + ], + [ + "R1720061", + "#eff3ff" + ], + [ + "R1720060", + "#eff3ff" + ], + [ + "R1720056", + "#eff3ff" + ], + [ + "R1720058", + "#bdd7e7" + ], + [ + "R1720059", + "#bdd7e7" + ], + [ + "R1720063", + "#bdd7e7" + ], + [ + "R1720066", + "#bdd7e7" + ], + [ + "R1720065", + "#bdd7e7" + ], + [ + "R1720055", + "#bdd7e7" + ], + [ + "R1720051", + "#bdd7e7" + ], + [ + "R1720068", + "#bdd7e7" + ], + [ + "R1720052", + "#bdd7e7" + ], + [ + "R1720053", + "#6baed6" + ], + [ + "R1720067", + "#6baed6" + ], + [ + "R1720057", + "#6baed6" + ], + [ + "R1720064", + "#6baed6" + ], + [ + "R1720054", + "#6baed6" + ] + ], + [ + [ + "R1720060", + "#eff3ff" + ], + [ + "R1720052", + "#eff3ff" + ], + [ + "R1720056", + "#eff3ff" + ], + [ + "R1720058", + "#eff3ff" + ], + [ + "R1720061", + "#eff3ff" + ], + [ + "R1720062", + "#eff3ff" + ], + [ + "R1720053", + "#eff3ff" + ], + [ + "R1720065", + "#eff3ff" + ], + [ + "R1720063", + "#eff3ff" + ], + [ + "R1720066", + "#eff3ff" + ], + [ + "R1720064", + "#eff3ff" + ], + [ + "R1720055", + "#eff3ff" + ], + [ + "R1720059", + "#bdd7e7" + ], + [ + "R1720067", + "#bdd7e7" + ], + [ + "R1720057", + "#bdd7e7" + ], + [ + "R1720068", + "#bdd7e7" + ], + [ + "R1720051", + "#bdd7e7" + ], + [ + "R1720054", + "#6baed6" + ] + ], + [ + [ + "R1720061", + "#eff3ff" + ], + [ + "R1720056", + "#bdd7e7" + ], + [ + "R1720060", + "#bdd7e7" + ], + [ + "R1720062", + "#bdd7e7" + ], + [ + "R1720055", + "#bdd7e7" + ], + [ + "R1720068", + "#bdd7e7" + ], + [ + "R1720058", + "#bdd7e7" + ], + [ + "R1720052", + "#bdd7e7" + ], + [ + "R1720051", + "#6baed6" + ], + [ + "R1720053", + "#6baed6" + ], + [ + "R1720065", + "#6baed6" + ], + [ + "R1720063", + "#6baed6" + ], + [ + "R1720067", + "#6baed6" + ], + [ + "R1720066", + "#3182bd" + ], + [ + "R1720064", + "#3182bd" + ], + [ + "R1720057", + "#3182bd" + ], + [ + "R1720059", + "#3182bd" + ], + [ + "R1720054", + "#3182bd" + ] ] - ], - [ - [ - "R1720061", - "#eff3ff" - ], - [ - "R1720062", - "#bdd7e7" - ], - [ - "R1720055", - "#bdd7e7" - ], - [ - "R1720068", - "#bdd7e7" - ], - [ - "R1720067", - "#bdd7e7" - ], - [ - "R1720058", - "#6baed6" - ], - [ - "R1720056", - "#6baed6" - ], + ], + [ [ - "R1720051", - "#6baed6" - ], + [ + "R1720061", + 3 + ], + [ + "R1720062", + 6 + ], + [ + "R1720055", + 6 + ], + [ + "R1720068", + 6 + ], + [ + "R1720067", + 6 + ], + [ + "R1720058", + 9 + ], + [ + "R1720056", + 9 + ], + [ + "R1720051", + 9 + ], + [ + "R1720052", + 9 + ], + [ + "R1720060", + 9 + ], + [ + "R1720053", + 12 + ], + [ + "R1720064", + 12 + ], + [ + "R1720063", + 12 + ], + [ + "R1720057", + 12 + ], + [ + "R1720059", + 12 + ], + [ + "R1720054", + 12 + ], + [ + "R1720065", + 12 + ], + [ + "R1720066", + 15 + ] + ], + [ + [ + "R1720062", + 3 + ], + [ + "R1720061", + 3 + ], + [ + "R1720060", + 3 + ], + [ + "R1720056", + 3 + ], + [ + "R1720058", + 6 + ], + [ + "R1720059", + 6 + ], + [ + "R1720063", + 6 + ], + [ + "R1720066", + 6 + ], + [ + "R1720065", + 6 + ], + [ + "R1720055", + 6 + ], + [ + "R1720051", + 6 + ], + [ + "R1720068", + 6 + ], + [ + "R1720052", + 6 + ], + [ + "R1720053", + 9 + ], + [ + "R1720067", + 9 + ], + [ + "R1720057", + 9 + ], + [ + "R1720064", + 9 + ], + [ + "R1720054", + 9 + ] + ], + [ + [ + "R1720060", + 3 + ], + [ + "R1720052", + 3 + ], + [ + "R1720056", + 3 + ], + [ + "R1720058", + 3 + ], + [ + "R1720061", + 3 + ], + [ + "R1720062", + 3 + ], + [ + "R1720053", + 3 + ], + [ + "R1720065", + 3 + ], + [ + "R1720063", + 3 + ], + [ + "R1720066", + 3 + ], + [ + "R1720064", + 3 + ], + [ + "R1720055", + 3 + ], + [ + "R1720059", + 6 + ], + [ + "R1720067", + 6 + ], + [ + "R1720057", + 6 + ], + [ + "R1720068", + 6 + ], + [ + "R1720051", + 6 + ], + [ + "R1720054", + 9 + ] + ], + [ + [ + "R1720061", + 3 + ], + [ + "R1720056", + 6 + ], + [ + "R1720060", + 6 + ], + [ + "R1720062", + 6 + ], + [ + "R1720055", + 6 + ], + [ + "R1720068", + 6 + ], + [ + "R1720058", + 6 + ], + [ + "R1720052", + 6 + ], + [ + "R1720051", + 9 + ], + [ + "R1720053", + 9 + ], + [ + "R1720065", + 9 + ], + [ + "R1720063", + 9 + ], + [ + "R1720067", + 9 + ], + [ + "R1720066", + 12 + ], + [ + "R1720064", + 12 + ], + [ + "R1720057", + 12 + ], + [ + "R1720059", + 12 + ], + [ + "R1720054", + 12 + ] + ] + ], + [ + "April", + "February", + "January", + "March" + ], + [ + 6, + 18, + 30, + 50, + 69 + ], + [ + "#eff3ff", + "#bdd7e7", + "#6baed6", + "#3182bd", + "#08519c" + ], + [ [ - "R1720052", - "#6baed6" - ], + [ + "R1720061", + 1 + ], + [ + "R1720062", + 1 + ], + [ + "R1720055", + 1 + ], + [ + "R1720068", + 1 + ], + [ + "R1720067", + 1 + ], + [ + "R1720058", + 1 + ], + [ + "R1720056", + 1 + ], + [ + "R1720051", + 1 + ], + [ + "R1720052", + 1 + ], + [ + "R1720060", + 1 + ], + [ + "R1720053", + 1 + ], + [ + "R1720064", + 1 + ], + [ + "R1720063", + 1 + ], + [ + "R1720057", + 1 + ], + [ + "R1720059", + 1 + ], + [ + "R1720054", + 1 + ], + [ + "R1720065", + 1 + ], + [ + "R1720066", + 1 + ] + ], + [ + [ + "R1720062", + 1 + ], + [ + "R1720061", + 1 + ], + [ + "R1720060", + 1 + ], + [ + "R1720056", + 1 + ], + [ + "R1720058", + 1 + ], + [ + "R1720059", + 1 + ], + [ + "R1720063", + 1 + ], + [ + "R1720066", + 1 + ], + [ + "R1720065", + 1 + ], + [ + "R1720055", + 1 + ], + [ + "R1720051", + 1 + ], + [ + "R1720068", + 1 + ], + [ + "R1720052", + 1 + ], + [ + "R1720053", + 1 + ], + [ + "R1720067", + 1 + ], + [ + "R1720057", + 1 + ], + [ + "R1720064", + 1 + ], + [ + "R1720054", + 1 + ] + ], + [ + [ + "R1720060", + 1 + ], + [ + "R1720052", + 1 + ], + [ + "R1720056", + 1 + ], + [ + "R1720058", + 1 + ], + [ + "R1720061", + 1 + ], + [ + "R1720062", + 1 + ], + [ + "R1720053", + 1 + ], + [ + "R1720065", + 1 + ], + [ + "R1720063", + 1 + ], + [ + "R1720066", + 1 + ], + [ + "R1720064", + 1 + ], + [ + "R1720055", + 1 + ], + [ + "R1720059", + 1 + ], + [ + "R1720067", + 1 + ], + [ + "R1720057", + 1 + ], + [ + "R1720068", + 1 + ], + [ + "R1720051", + 1 + ], + [ + "R1720054", + 1 + ] + ], + [ + [ + "R1720061", + 1 + ], + [ + "R1720056", + 1 + ], + [ + "R1720060", + 1 + ], + [ + "R1720062", + 1 + ], + [ + "R1720055", + 1 + ], + [ + "R1720068", + 1 + ], + [ + "R1720058", + 1 + ], + [ + "R1720052", + 1 + ], + [ + "R1720051", + 1 + ], + [ + "R1720053", + 1 + ], + [ + "R1720065", + 1 + ], + [ + "R1720063", + 1 + ], + [ + "R1720067", + 1 + ], + [ + "R1720066", + 1 + ], + [ + "R1720064", + 1 + ], + [ + "R1720057", + 1 + ], + [ + "R1720059", + 1 + ], + [ + "R1720054", + 1 + ] + ] + ], + [ [ - "R1720060", - "#6baed6" - ], - [ - "R1720053", - "#3182bd" - ], - [ - "R1720064", - "#3182bd" - ], - [ - "R1720059", - "#3182bd" - ], - [ - "R1720057", - "#3182bd" - ], - [ - "R1720063", - "#3182bd" - ], - [ - "R1720054", - "#3182bd" - ], - [ - "R1720065", - "#3182bd" - ], - [ - "R1720066", - "#08519c" - ] - ], - [ - [ - "R1720060", - "#eff3ff" - ], - [ - "R1720062", - "#eff3ff" - ], - [ - "R1720061", - "#eff3ff" - ], - [ - "R1720056", - "#eff3ff" - ], - [ - "R1720058", - "#bdd7e7" - ], - [ - "R1720059", - "#bdd7e7" - ], - [ - "R1720063", - "#bdd7e7" - ], - [ - "R1720065", - "#bdd7e7" - ], - [ - "R1720066", - "#bdd7e7" - ], - [ - "R1720055", - "#bdd7e7" - ], - [ - "R1720068", - "#bdd7e7" - ], - [ - "R1720051", - "#bdd7e7" - ], - [ - "R1720052", - "#bdd7e7" - ], - [ - "R1720053", - "#6baed6" - ], - [ - "R1720067", - "#6baed6" - ], - [ - "R1720057", - "#6baed6" - ], - [ - "R1720064", - "#6baed6" - ], - [ - "R1720054", - "#6baed6" - ] - ], - [ - [ - "R1720061", - "#eff3ff" - ], - [ - "R1720056", - "#bdd7e7" - ], - [ - "R1720060", - "#bdd7e7" - ], - [ - "R1720062", - "#bdd7e7" - ], - [ - "R1720055", - "#bdd7e7" - ], - [ - "R1720068", - "#bdd7e7" - ], - [ - "R1720058", - "#bdd7e7" - ], - [ - "R1720052", - "#bdd7e7" - ], - [ - "R1720051", - "#6baed6" - ], - [ - "R1720065", - "#6baed6" - ], - [ - "R1720053", - "#6baed6" - ], - [ - "R1720063", - "#6baed6" - ], - [ - "R1720067", - "#6baed6" - ], - [ - "R1720066", - "#3182bd" - ], - [ - "R1720064", - "#3182bd" - ], - [ - "R1720057", - "#3182bd" - ], - [ - "R1720059", - "#3182bd" - ], - [ - "R1720054", - "#3182bd" + 6, + 18, + 18, + 18, + 18, + 30, + 30, + 30, + 30, + 30, + 50, + 50, + 50, + 50, + 50, + 50, + 50, + 69 + ], + [ + 6, + 6, + 6, + 6, + 18, + 18, + 18, + 18, + 18, + 18, + 18, + 18, + 18, + 30, + 30, + 30, + 30, + 30 + ], + [ + 6, + 6, + 6, + 6, + 6, + 6, + 6, + 6, + 6, + 6, + 6, + 6, + 18, + 18, + 18, + 18, + 18, + 30 + ], + [ + 6, + 18, + 18, + 18, + 18, + 18, + 18, + 18, + 30, + 30, + 30, + 30, + 30, + 50, + 50, + 50, + 50, + 50 ] - ] + ] + ], + "colorStops": [ + [ + "R1720061", + "#eff3ff" ], [ - [ - [ - "R1720056", - 3 - ], - [ - "R1720062", - 3 - ], - [ - "R1720061", - 3 - ], - [ - "R1720052", - 3 - ], - [ - "R1720058", - 3 - ], - [ - "R1720060", - 3 - ], - [ - "R1720053", - 3 - ], - [ - "R1720065", - 3 - ], - [ - "R1720066", - 3 - ], - [ - "R1720064", - 3 - ], - [ - "R1720063", - 3 - ], - [ - "R1720055", - 3 - ], - [ - "R1720059", - 6 - ], - [ - "R1720067", - 6 - ], - [ - "R1720057", - 6 - ], - [ - "R1720068", - 6 - ], - [ - "R1720051", - 6 - ], - [ - "R1720054", - 9 - ] - ], - [ - [ - "R1720061", - 3 - ], - [ - "R1720062", - 6 - ], - [ - "R1720055", - 6 - ], - [ - "R1720068", - 6 - ], - [ - "R1720067", - 6 - ], - [ - "R1720058", - 9 - ], - [ - "R1720056", - 9 - ], - [ - "R1720051", - 9 - ], - [ - "R1720052", - 9 - ], - [ - "R1720060", - 9 - ], - [ - "R1720053", - 12 - ], - [ - "R1720064", - 12 - ], - [ - "R1720059", - 12 - ], - [ - "R1720057", - 12 - ], - [ - "R1720063", - 12 - ], - [ - "R1720054", - 12 - ], - [ - "R1720065", - 12 - ], - [ - "R1720066", - 15 - ] - ], - [ - [ - "R1720060", - 3 - ], - [ - "R1720062", - 3 - ], - [ - "R1720061", - 3 - ], - [ - "R1720056", - 3 - ], - [ - "R1720058", - 6 - ], - [ - "R1720059", - 6 - ], - [ - "R1720063", - 6 - ], - [ - "R1720065", - 6 - ], - [ - "R1720066", - 6 - ], - [ - "R1720055", - 6 - ], - [ - "R1720068", - 6 - ], - [ - "R1720051", - 6 - ], - [ - "R1720052", - 6 - ], - [ - "R1720053", - 9 - ], - [ - "R1720067", - 9 - ], - [ - "R1720057", - 9 - ], - [ - "R1720064", - 9 - ], - [ - "R1720054", - 9 - ] - ], - [ - [ - "R1720061", - 3 - ], - [ - "R1720056", - 6 - ], - [ - "R1720060", - 6 - ], - [ - "R1720062", - 6 - ], - [ - "R1720055", - 6 - ], - [ - "R1720068", - 6 - ], - [ - "R1720058", - 6 - ], - [ - "R1720052", - 6 - ], - [ - "R1720051", - 9 - ], - [ - "R1720065", - 9 - ], - [ - "R1720053", - 9 - ], - [ - "R1720063", - 9 - ], - [ - "R1720067", - 9 - ], - [ - "R1720066", - 12 - ], - [ - "R1720064", - 12 - ], - [ - "R1720057", - 12 - ], - [ - "R1720059", - 12 - ], - [ - "R1720054", - 12 - ] - ] + "R1720056", + "#bdd7e7" ], [ - "January", - "April", - "February", - "March" + "R1720060", + "#bdd7e7" ], [ - 6, - 18, - 30, - 50, - 69 + "R1720062", + "#bdd7e7" ], [ - "#eff3ff", - "#bdd7e7", - "#6baed6", - "#3182bd", - "#08519c" + "R1720055", + "#bdd7e7" ], [ - [ - [ - "R1720056", - 1 - ], - [ - "R1720062", - 1 - ], - [ - "R1720061", - 1 - ], - [ - "R1720052", - 1 - ], - [ - "R1720058", - 1 - ], - [ - "R1720060", - 1 - ], - [ - "R1720053", - 1 - ], - [ - "R1720065", - 1 - ], - [ - "R1720066", - 1 - ], - [ - "R1720064", - 1 - ], - [ - "R1720063", - 1 - ], - [ - "R1720055", - 1 - ], - [ - "R1720059", - 1 - ], - [ - "R1720067", - 1 - ], - [ - "R1720057", - 1 - ], - [ - "R1720068", - 1 - ], - [ - "R1720051", - 1 - ], - [ - "R1720054", - 1 - ] - ], - [ - [ - "R1720061", - 1 - ], - [ - "R1720062", - 1 - ], - [ - "R1720055", - 1 - ], - [ - "R1720068", - 1 - ], - [ - "R1720067", - 1 - ], - [ - "R1720058", - 1 - ], - [ - "R1720056", - 1 - ], - [ - "R1720051", - 1 - ], - [ - "R1720052", - 1 - ], - [ - "R1720060", - 1 - ], - [ - "R1720053", - 1 - ], - [ - "R1720064", - 1 - ], - [ - "R1720059", - 1 - ], - [ - "R1720057", - 1 - ], - [ - "R1720063", - 1 - ], - [ - "R1720054", - 1 - ], - [ - "R1720065", - 1 - ], - [ - "R1720066", - 1 - ] - ], - [ - [ - "R1720060", - 1 - ], - [ - "R1720062", - 1 - ], - [ - "R1720061", - 1 - ], - [ - "R1720056", - 1 - ], - [ - "R1720058", - 1 - ], - [ - "R1720059", - 1 - ], - [ - "R1720063", - 1 - ], - [ - "R1720065", - 1 - ], - [ - "R1720066", - 1 - ], - [ - "R1720055", - 1 - ], - [ - "R1720068", - 1 - ], - [ - "R1720051", - 1 - ], - [ - "R1720052", - 1 - ], - [ - "R1720053", - 1 - ], - [ - "R1720067", - 1 - ], - [ - "R1720057", - 1 - ], - [ - "R1720064", - 1 - ], - [ - "R1720054", - 1 - ] - ], - [ - [ - "R1720061", - 1 - ], - [ - "R1720056", - 1 - ], - [ - "R1720060", - 1 - ], - [ - "R1720062", - 1 - ], - [ - "R1720055", - 1 - ], - [ - "R1720068", - 1 - ], - [ - "R1720058", - 1 - ], - [ - "R1720052", - 1 - ], - [ - "R1720051", - 1 - ], - [ - "R1720065", - 1 - ], - [ - "R1720053", - 1 - ], - [ - "R1720063", - 1 - ], - [ - "R1720067", - 1 - ], - [ - "R1720066", - 1 - ], - [ - "R1720064", - 1 - ], - [ - "R1720057", - 1 - ], - [ - "R1720059", - 1 - ], - [ - "R1720054", - 1 - ] - ] + "R1720068", + "#bdd7e7" ], [ - [ - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 18, - 18, - 18, - 18, - 18, - 30 - ], - [ - 6, - 18, - 18, - 18, - 18, - 30, - 30, - 30, - 30, - 30, - 50, - 50, - 50, - 50, - 50, - 50, - 50, - 69 - ], - [ - 6, - 6, - 6, - 6, - 18, - 18, - 18, - 18, - 18, - 18, - 18, - 18, - 18, - 30, - 30, - 30, - 30, - 30 - ], - [ - 6, - 18, - 18, - 18, - 18, - 18, - 18, - 18, - 30, - 30, - 30, - 30, - 30, - 50, - 50, - 50, - 50, - 50 - ] - ] - ], - "colorStops": [ [ - "R1720061", - "#eff3ff" - ], [ - "R1720056", - "#bdd7e7" - ], [ - "R1720060", - "#bdd7e7" - ], [ - "R1720062", - "#bdd7e7" - ], [ - "R1720055", - "#bdd7e7" - ], [ - "R1720068", - "#bdd7e7" - ], [ - "R1720058", - "#bdd7e7" - ], [ - "R1720052", - "#bdd7e7" - ], [ - "R1720051", - "#6baed6" - ], [ - "R1720065", - "#6baed6" - ], [ - "R1720053", - "#6baed6" - ], [ - "R1720063", - "#6baed6" - ], [ - "R1720067", - "#6baed6" - ], [ - "R1720066", - "#3182bd" - ], [ - "R1720064", - "#3182bd" - ], [ - "R1720057", - "#3182bd" - ], [ - "R1720059", - "#3182bd" - ], [ - "R1720054", - "#3182bd" + "R1720058", + "#bdd7e7" + ], + [ + "R1720052", + "#bdd7e7" + ], + [ + "R1720051", + "#6baed6" + ], + [ + "R1720053", + "#6baed6" + ], + [ + "R1720065", + "#6baed6" + ], + [ + "R1720063", + "#6baed6" + ], + [ + "R1720067", + "#6baed6" + ], + [ + "R1720066", + "#3182bd" + ], + [ + "R1720064", + "#3182bd" + ], + [ + "R1720057", + "#3182bd" + ], + [ + "R1720059", + "#3182bd" + ], + [ + "R1720054", + "#3182bd" ] - ], + ], "styleSpec": { - "id": "children-women-mal-prevention", - "visible": false, - "type": "fill", - "source": { - "type": "vector", - "url": "mapbox://ona.bnc2rzsw" - }, - "layout": {}, - "paint": { - "fill-color": { - "property": "osm_id", - "stops": [ - [ - "R1720061", - "#eff3ff" - ], - [ - "R1720056", - "#bdd7e7" - ], - [ - "R1720060", - "#bdd7e7" - ], - [ - "R1720062", - "#bdd7e7" - ], - [ - "R1720055", - "#bdd7e7" - ], - [ - "R1720068", - "#bdd7e7" - ], - [ - "R1720058", - "#bdd7e7" - ], - [ - "R1720052", - "#bdd7e7" - ], - [ - "R1720051", - "#6baed6" - ], - [ - "R1720065", - "#6baed6" - ], - [ - "R1720053", - "#6baed6" - ], - [ - "R1720063", - "#6baed6" - ], - [ - "R1720067", - "#6baed6" - ], - [ - "R1720066", - "#3182bd" - ], - [ - "R1720064", - "#3182bd" - ], - [ - "R1720057", - "#3182bd" - ], - [ - "R1720059", - "#3182bd" - ], - [ - "R1720054", - "#3182bd" - ] - ], - "type": "categorical", - "default": "rgba(0,0,0,0)" - }, - "fill-opacity": 0.7, - "fill-outline-color": "#fff" - }, - "source-layer": "som_adm_1-6k13xf" + "id": "children-women-mal-prevention", + "visible": false, + "type": "fill", + "source": { + "type": "vector", + "url": "mapbox://ona.bnc2rzsw" + }, + "layout": {}, + "paint": { + "fill-color": { + "property": "osm_id", + "stops": [ + [ + "R1720061", + "#eff3ff" + ], + [ + "R1720056", + "#bdd7e7" + ], + [ + "R1720060", + "#bdd7e7" + ], + [ + "R1720062", + "#bdd7e7" + ], + [ + "R1720055", + "#bdd7e7" + ], + [ + "R1720068", + "#bdd7e7" + ], + [ + "R1720058", + "#bdd7e7" + ], + [ + "R1720052", + "#bdd7e7" + ], + [ + "R1720051", + "#6baed6" + ], + [ + "R1720053", + "#6baed6" + ], + [ + "R1720065", + "#6baed6" + ], + [ + "R1720063", + "#6baed6" + ], + [ + "R1720067", + "#6baed6" + ], + [ + "R1720066", + "#3182bd" + ], + [ + "R1720064", + "#3182bd" + ], + [ + "R1720057", + "#3182bd" + ], + [ + "R1720059", + "#3182bd" + ], + [ + "R1720054", + "#3182bd" + ] + ], + "type": "categorical", + "default": "rgba(0,0,0,0)" + }, + "fill-opacity": 0.7, + "fill-outline-color": "#fff" + }, + "source-layer": "som_adm_1-6k13xf" } -} \ No newline at end of file +}