From 9292ceffa012495d8c157027fd7deb03c08af6a4 Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Wed, 4 Mar 2015 09:18:49 -0600 Subject: [PATCH 01/32] change worldBounds param to give more space to east and west bounds of world map --- src/kibana/components/vislib/visualizations/tile_map.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kibana/components/vislib/visualizations/tile_map.js b/src/kibana/components/vislib/visualizations/tile_map.js index db1f0aef0bf65f..9f10ecab2363e7 100644 --- a/src/kibana/components/vislib/visualizations/tile_map.js +++ b/src/kibana/components/vislib/visualizations/tile_map.js @@ -50,7 +50,7 @@ define(function (require) { var self = this; var $elem = $(this.chartEl); var div; - var worldBounds = L.latLngBounds([-90, -180], [90, 180]); + var worldBounds = L.latLngBounds([-90, -220], [90, 220]); // clean up old maps From b937b4fe577c55bd42b2effaabe61a1d8794341b Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Wed, 4 Mar 2015 09:21:53 -0600 Subject: [PATCH 02/32] increase max zoom to 18 and remove unused param, closes #3160 --- src/kibana/components/vislib/visualizations/tile_map.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/kibana/components/vislib/visualizations/tile_map.js b/src/kibana/components/vislib/visualizations/tile_map.js index 9f10ecab2363e7..1f1efe8060510c 100644 --- a/src/kibana/components/vislib/visualizations/tile_map.js +++ b/src/kibana/components/vislib/visualizations/tile_map.js @@ -80,11 +80,10 @@ define(function (require) { var mapOptions = { minZoom: 2, - maxZoom: 16, + maxZoom: 18, layers: tileLayer, center: mapCenter, zoom: mapZoom, - continuousWorld: true, noWrap: true, maxBounds: worldBounds, scrollWheelZoom: false, From 0fc142cfcbdcc1e07fdbb0e306d1b34aff798b2a Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Wed, 4 Mar 2015 11:38:16 -0600 Subject: [PATCH 03/32] set min zoom to 1 --- src/kibana/components/vislib/visualizations/tile_map.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/kibana/components/vislib/visualizations/tile_map.js b/src/kibana/components/vislib/visualizations/tile_map.js index 1f1efe8060510c..c400a974150e24 100644 --- a/src/kibana/components/vislib/visualizations/tile_map.js +++ b/src/kibana/components/vislib/visualizations/tile_map.js @@ -50,7 +50,7 @@ define(function (require) { var self = this; var $elem = $(this.chartEl); var div; - var worldBounds = L.latLngBounds([-90, -220], [90, 220]); + var worldBounds = L.latLngBounds([-90, -180], [90, 180]); // clean up old maps @@ -79,11 +79,12 @@ define(function (require) { }); var mapOptions = { - minZoom: 2, - maxZoom: 18, + minZoom: 1, + maxZoom: 16, layers: tileLayer, center: mapCenter, zoom: mapZoom, + continuousWorld: true, noWrap: true, maxBounds: worldBounds, scrollWheelZoom: false, From ff4462059ad64d1e4869ebd260c5f77d2b9d8627 Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Wed, 4 Mar 2015 11:39:48 -0600 Subject: [PATCH 04/32] add pinMarkers method, add rectangleMarkers method --- .../vislib/visualizations/tile_map.js | 118 ++++++++++++++++-- 1 file changed, 106 insertions(+), 12 deletions(-) diff --git a/src/kibana/components/vislib/visualizations/tile_map.js b/src/kibana/components/vislib/visualizations/tile_map.js index c400a974150e24..c50425224bfc2f 100644 --- a/src/kibana/components/vislib/visualizations/tile_map.js +++ b/src/kibana/components/vislib/visualizations/tile_map.js @@ -50,7 +50,7 @@ define(function (require) { var self = this; var $elem = $(this.chartEl); var div; - var worldBounds = L.latLngBounds([-90, -180], [90, 180]); + var worldBounds = L.latLngBounds([-90, -220], [90, 220]); // clean up old maps @@ -80,11 +80,10 @@ define(function (require) { var mapOptions = { minZoom: 1, - maxZoom: 16, + maxZoom: 18, layers: tileLayer, center: mapCenter, zoom: mapZoom, - continuousWorld: true, noWrap: true, maxBounds: worldBounds, scrollWheelZoom: false, @@ -105,13 +104,16 @@ define(function (require) { mapCenter = self._attr.lastCenter = map.getCenter(); }); - if (data.geoJson) { - if (self._attr.mapType === 'Scaled Circle Markers') { - featureLayer = self.scaledCircleMarkers(map, data.geoJson); - } else { - featureLayer = self.shadedCircleMarkers(map, data.geoJson); - } - } + featureLayer = self.rectangleMarkers(map, data.geoJson); + + // if (data.geoJson) { + // if (self._attr.mapType === 'Scaled Circle Markers') { + // featureLayer = self.scaledCircleMarkers(map, data.geoJson); + // } else { + // featureLayer = self.shadedCircleMarkers(map, data.geoJson); + // } + // } + if (data.geoJson.properties.label) { self.addLabel(data.geoJson.properties.label, map); @@ -148,6 +150,44 @@ define(function (require) { }; }; + /** + * Type of data overlay for map: + * creates featurelayer from mapData (geoJson) + * with default leaflet pin markers + * + * @method pinMarkers + * @param map {Object} + * @param mapData {Object} + * @return {Leaflet object} featureLayer + */ + TileMap.prototype.pinMarkers = function (map, mapData) { + var self = this; + var min = mapData.properties.min; + var max = mapData.properties.max; + var length = mapData.properties.length; + var precision = mapData.properties.precision; + var zoomScale = self.zoomScale(mapZoom); + var bounds; + var defaultColor = '#ff6128'; + var featureLayer = L.geoJson(mapData, { + onEachFeature: function (feature, layer) { + self.bindPopup(feature, layer); + }, + style: function (feature) { + var count = feature.properties.count; + return { + fillColor: defaultColor, + color: self.darkerColor(defaultColor), + weight: 1.0, + opacity: 1, + fillOpacity: 0.75 + }; + } + }).addTo(map) + + return featureLayer; + }; + /** * Type of data overlay for map: * creates featurelayer from mapData (geoJson) @@ -156,7 +196,7 @@ define(function (require) { * @method scaledCircleMarkers * @param map {Object} * @param mapData {Object} - * @return {undefined} + * @return {Leaflet object} featureLayer */ TileMap.prototype.scaledCircleMarkers = function (map, mapData) { var self = this; @@ -208,7 +248,7 @@ define(function (require) { * @method shadedCircleMarkers * @param map {Object} * @param mapData {Object} - * @return {undefined} + * @return {Leaflet object} featureLayer */ TileMap.prototype.shadedCircleMarkers = function (map, mapData) { var self = this; @@ -266,6 +306,60 @@ define(function (require) { return featureLayer; }; + /** + * Type of data overlay for map: + * creates featurelayer from mapData (geoJson) + * with rectangles that show the geohash grid bounds + * + * @method rectangleMarkers + * @param map {Object} + * @param mapData {Object} + * @return {undefined} + */ + TileMap.prototype.rectangleMarkers = function (map, mapData) { + var self = this; + var min = mapData.properties.min; + var max = mapData.properties.max; + var length = mapData.properties.length; + var precision = mapData.properties.precision; + var zoomScale = self.zoomScale(mapZoom); + var bounds; + var defaultColor = '#ff6128'; + var featureLayer = L.geoJson(mapData, { + pointToLayer: function (feature, latlng) { + var count = feature.properties.count; + var rad = zoomScale * 3; + var gh = feature.properties.rectangle; + var bounds = [[gh[0][1], gh[0][0]], [gh[2][1], gh[2][0]]]; + return L.rectangle(bounds); + }, + onEachFeature: function (feature, layer) { + self.bindPopup(feature, layer); + layer.on({ + mouseover: function (e) { + var layer = e.target; + if (!L.Browser.ie && !L.Browser.opera) { + layer.bringToFront(); + } + } + }); + }, + style: function (feature) { + var count = feature.properties.count; + var color = self.quantizeColorScale(count, min, max); + return { + fillColor: color, + color: self.darkerColor(color), + weight: 1.0, + opacity: 1, + fillOpacity: 0.75 + }; + } + }).addTo(map); + + return featureLayer; + }; + /** * Adds label div to each map when data is split * From 1cf1fb4ce79247ca1d083ed6b8a4783f5c1c905b Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Wed, 4 Mar 2015 11:57:57 -0600 Subject: [PATCH 05/32] add methods for markerType, pinMarkers, rectangleMarkers --- .../vislib/visualizations/tile_map.js | 34 +++++++++++++------ 1 file changed, 24 insertions(+), 10 deletions(-) diff --git a/src/kibana/components/vislib/visualizations/tile_map.js b/src/kibana/components/vislib/visualizations/tile_map.js index c50425224bfc2f..ad1a07e8b870ed 100644 --- a/src/kibana/components/vislib/visualizations/tile_map.js +++ b/src/kibana/components/vislib/visualizations/tile_map.js @@ -104,16 +104,7 @@ define(function (require) { mapCenter = self._attr.lastCenter = map.getCenter(); }); - featureLayer = self.rectangleMarkers(map, data.geoJson); - - // if (data.geoJson) { - // if (self._attr.mapType === 'Scaled Circle Markers') { - // featureLayer = self.scaledCircleMarkers(map, data.geoJson); - // } else { - // featureLayer = self.shadedCircleMarkers(map, data.geoJson); - // } - // } - + featureLayer = self.markerType(map, data.geoJson); if (data.geoJson.properties.label) { self.addLabel(data.geoJson.properties.label, map); @@ -150,6 +141,29 @@ define(function (require) { }; }; + /** + * Switch type of data overlay for map: + * creates featurelayer from mapData (geoJson) + * + * @method markerType + * @param map {Object} + * @param mapData {Object} + * @return {Leaflet object} featureLayer + */ + TileMap.prototype.markerType = function (map, mapData) { + console.log(mapData); + var featureLayer; + if (mapData) { + if (this._attr.mapType === 'Scaled Circle Markers') { + featureLayer = this.scaledCircleMarkers(map, mapData); + } else { + featureLayer = this.shadedCircleMarkers(map, mapData); + } + } + // featureLayer = this.pinMarkers(map, mapData); + return featureLayer; + }; + /** * Type of data overlay for map: * creates featurelayer from mapData (geoJson) From b288991eed2335a5f5999039c9fb7ca23ce92746 Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Wed, 4 Mar 2015 13:02:12 -0600 Subject: [PATCH 06/32] add UI options for pinMarkers, rectangleMarkers --- .../components/vislib/visualizations/tile_map.js | 12 +++++++----- src/kibana/plugins/vis_types/vislib/tile_map.js | 4 ++-- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/src/kibana/components/vislib/visualizations/tile_map.js b/src/kibana/components/vislib/visualizations/tile_map.js index ad1a07e8b870ed..759e5bd56c53b0 100644 --- a/src/kibana/components/vislib/visualizations/tile_map.js +++ b/src/kibana/components/vislib/visualizations/tile_map.js @@ -151,16 +151,18 @@ define(function (require) { * @return {Leaflet object} featureLayer */ TileMap.prototype.markerType = function (map, mapData) { - console.log(mapData); var featureLayer; if (mapData) { if (this._attr.mapType === 'Scaled Circle Markers') { featureLayer = this.scaledCircleMarkers(map, mapData); - } else { + } else if (this._attr.mapType === 'Shaded Circle Markers') { featureLayer = this.shadedCircleMarkers(map, mapData); + } else if (this._attr.mapType === 'Shaded Geohash Grid') { + featureLayer = this.geohashGrid(map, mapData); + } else { + featureLayer = this.pinMarkers(map, mapData); } } - // featureLayer = this.pinMarkers(map, mapData); return featureLayer; }; @@ -325,12 +327,12 @@ define(function (require) { * creates featurelayer from mapData (geoJson) * with rectangles that show the geohash grid bounds * - * @method rectangleMarkers + * @method geohashGrid * @param map {Object} * @param mapData {Object} * @return {undefined} */ - TileMap.prototype.rectangleMarkers = function (map, mapData) { + TileMap.prototype.geohashGrid = function (map, mapData) { var self = this; var min = mapData.properties.min; var max = mapData.properties.max; diff --git a/src/kibana/plugins/vis_types/vislib/tile_map.js b/src/kibana/plugins/vis_types/vislib/tile_map.js index 453cdf0ce077cf..de1be2a1eadbf5 100644 --- a/src/kibana/plugins/vis_types/vislib/tile_map.js +++ b/src/kibana/plugins/vis_types/vislib/tile_map.js @@ -12,10 +12,10 @@ define(function (require) { 'that is mapped as type:geo_point with latitude and longitude coordinates.', params: { defaults: { - mapType: 'Shaded Circle Markers', + mapType: 'Scaled Circle Markers', isDesaturated: true }, - mapTypes: ['Shaded Circle Markers', 'Scaled Circle Markers'], + mapTypes: ['Scaled Circle Markers', 'Shaded Circle Markers', 'Shaded Geohash Grid', 'Pins'], editor: require('text!plugins/vis_types/vislib/editors/tile_map.html') }, responseConverter: geoJsonConverter, From ab6531585e20abac43d53a1f92bd5d32d33e5c45 Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Thu, 5 Mar 2015 15:00:51 -0600 Subject: [PATCH 07/32] adding tilemap tests --- .../vislib/visualizations/tile_map.js | 5 +- .../fixture/mock_data/geohash/_columns.js | 48002 +---------- .../fixture/mock_data/geohash/_geo_json.js | 23552 +----- .../vislib/fixture/mock_data/geohash/_rows.js | 70026 +--------------- .../specs/vislib/visualizations/tile_map.js | 139 + 5 files changed, 9308 insertions(+), 132416 deletions(-) create mode 100644 test/unit/specs/vislib/visualizations/tile_map.js diff --git a/src/kibana/components/vislib/visualizations/tile_map.js b/src/kibana/components/vislib/visualizations/tile_map.js index 759e5bd56c53b0..745487be9d0e55 100644 --- a/src/kibana/components/vislib/visualizations/tile_map.js +++ b/src/kibana/components/vislib/visualizations/tile_map.js @@ -52,7 +52,6 @@ define(function (require) { var div; var worldBounds = L.latLngBounds([-90, -220], [90, 220]); - // clean up old maps _.invoke(self.maps, 'destroy'); // create a new maps array @@ -199,7 +198,7 @@ define(function (require) { fillOpacity: 0.75 }; } - }).addTo(map) + }).addTo(map); return featureLayer; }; @@ -395,6 +394,8 @@ define(function (require) { this._div.innerHTML = '

' + mapLabel + '

'; }; label.setPosition('bottomright').addTo(map); + return label; + }; /** diff --git a/test/unit/specs/vislib/fixture/mock_data/geohash/_columns.js b/test/unit/specs/vislib/fixture/mock_data/geohash/_columns.js index 0e50c89eb29ee3..d014f400ffbd4f 100644 --- a/test/unit/specs/vislib/fixture/mock_data/geohash/_columns.js +++ b/test/unit/specs/vislib/fixture/mock_data/geohash/_columns.js @@ -1,44215 +1,3797 @@ define(function () { return { - 'columns': [ - { - 'label': 'apache: _type', - 'geoJSON': { - 'properties': { - 'label': 'apache: _type', - 'length': 597, - 'min': 30, - 'max': 1269, - 'precision': 3 - }, - 'type': 'FeatureCollection', - 'features': [ - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 1269, - 'geohash': 'dr4', - 'center': [ - -75.234375, - 40.078125 - ], - 'rectangle': [ - [ - -75.9375, - 39.375 - ], - [ - -74.53125, - 39.375 - ], - [ - -74.53125, - 40.78125 - ], - [ - -75.9375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -73.828125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 889, - 'geohash': 'dr7', - 'center': [ - -73.828125, - 41.484375 - ], - 'rectangle': [ - [ - -74.53125, - 40.78125 - ], - [ - -73.125, - 40.78125 - ], - [ - -73.125, - 42.1875 - ], - [ - -74.53125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 882, - 'geohash': 'dph', - 'center': [ - -83.671875, - 40.078125 - ], - 'rectangle': [ - [ - -84.375, - 39.375 - ], - [ - -82.96875, - 39.375 - ], - [ - -82.96875, - 40.78125 - ], - [ - -84.375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -72.421875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 851, - 'geohash': 'drk', - 'center': [ - -72.421875, - 41.484375 - ], - 'rectangle': [ - [ - -73.125, - 40.78125 - ], - [ - -71.71875, - 40.78125 - ], - [ - -71.71875, - 42.1875 - ], - [ - -73.125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 841, - 'geohash': '9qh', - 'center': [ - -117.421875, - 34.453125 - ], - 'rectangle': [ - [ - -118.125, - 33.75 - ], - [ - -116.71875, - 33.75 - ], - [ - -116.71875, - 35.15625 - ], - [ - -118.125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 829, - 'geohash': '9qc', - 'center': [ - -121.640625, - 38.671875 - ], - 'rectangle': [ - [ - -122.34375, - 37.96875 - ], - [ - -120.9375, - 37.96875 - ], - [ - -120.9375, - 39.375 - ], - [ - -122.34375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 754, - 'geohash': 'dp3', - 'center': [ - -87.890625, - 41.484375 - ], - 'rectangle': [ - [ - -88.59375, - 40.78125 - ], - [ - -87.1875, - 40.78125 - ], - [ - -87.1875, - 42.1875 - ], - [ - -88.59375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 725, - 'geohash': 'dp4', - 'center': [ - -86.484375, - 40.078125 - ], - 'rectangle': [ - [ - -87.1875, - 39.375 - ], - [ - -85.78125, - 39.375 - ], - [ - -85.78125, - 40.78125 - ], - [ - -87.1875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 712, - 'geohash': 'dpk', - 'center': [ - -83.671875, - 41.484375 - ], - 'rectangle': [ - [ - -84.375, - 40.78125 - ], - [ - -82.96875, - 40.78125 - ], - [ - -82.96875, - 42.1875 - ], - [ - -84.375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 736, - 'geohash': 'dps', - 'center': [ - -83.671875, - 42.890625 - ], - 'rectangle': [ - [ - -84.375, - 42.1875 - ], - [ - -82.96875, - 42.1875 - ], - [ - -82.96875, - 43.59375 - ], - [ - -84.375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 716, - 'geohash': '9q9', - 'center': [ - -121.640625, - 37.265625 - ], - 'rectangle': [ - [ - -122.34375, - 36.5625 - ], - [ - -120.9375, - 36.5625 - ], - [ - -120.9375, - 37.96875 - ], - [ - -122.34375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 703, - 'geohash': 'dpq', - 'center': [ - -80.859375, - 41.484375 - ], - 'rectangle': [ - [ - -81.5625, - 40.78125 - ], - [ - -80.15625, - 40.78125 - ], - [ - -80.15625, - 42.1875 - ], - [ - -81.5625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 672, - 'geohash': '9q5', - 'center': [ - -118.828125, - 34.453125 - ], - 'rectangle': [ - [ - -119.53125, - 33.75 - ], - [ - -118.125, - 33.75 - ], - [ - -118.125, - 35.15625 - ], - [ - -119.53125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 674, - 'geohash': 'dp8', - 'center': [ - -89.296875, - 42.890625 - ], - 'rectangle': [ - [ - -90, - 42.1875 - ], - [ - -88.59375, - 42.1875 - ], - [ - -88.59375, - 43.59375 - ], - [ - -90, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 691, - 'geohash': 'dn6', - 'center': [ - -86.484375, - 35.859375 - ], - 'rectangle': [ - [ - -87.1875, - 35.15625 - ], - [ - -85.78125, - 35.15625 - ], - [ - -85.78125, - 36.5625 - ], - [ - -87.1875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 679, - 'geohash': '9y7', - 'center': [ - -96.328125, - 35.859375 - ], - 'rectangle': [ - [ - -97.03125, - 35.15625 - ], - [ - -95.625, - 35.15625 - ], - [ - -95.625, - 36.5625 - ], - [ - -97.03125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 655, - 'geohash': 'dpp', - 'center': [ - -79.453125, - 40.078125 - ], - 'rectangle': [ - [ - -80.15625, - 39.375 - ], - [ - -78.75, - 39.375 - ], - [ - -78.75, - 40.78125 - ], - [ - -80.15625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 652, - 'geohash': 'dn0', - 'center': [ - -89.296875, - 34.453125 - ], - 'rectangle': [ - [ - -90, - 33.75 - ], - [ - -88.59375, - 33.75 - ], - [ - -88.59375, - 35.15625 - ], - [ - -90, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 646, - 'geohash': 'dpe', - 'center': [ - -85.078125, - 42.890625 - ], - 'rectangle': [ - [ - -85.78125, - 42.1875 - ], - [ - -84.375, - 42.1875 - ], - [ - -84.375, - 43.59375 - ], - [ - -85.78125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 657, - 'geohash': '9vf', - 'center': [ - -97.734375, - 33.046875 - ], - 'rectangle': [ - [ - -98.4375, - 32.34375 - ], - [ - -97.03125, - 32.34375 - ], - [ - -97.03125, - 33.75 - ], - [ - -98.4375, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -73.828125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 641, - 'geohash': 'dre', - 'center': [ - -73.828125, - 42.890625 - ], - 'rectangle': [ - [ - -74.53125, - 42.1875 - ], - [ - -73.125, - 42.1875 - ], - [ - -73.125, - 43.59375 - ], - [ - -74.53125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 660, - 'geohash': 'dp6', - 'center': [ - -86.484375, - 41.484375 - ], - 'rectangle': [ - [ - -87.1875, - 40.78125 - ], - [ - -85.78125, - 40.78125 - ], - [ - -85.78125, - 42.1875 - ], - [ - -87.1875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 631, - 'geohash': '9vg', - 'center': [ - -96.328125, - 33.046875 - ], - 'rectangle': [ - [ - -97.03125, - 32.34375 - ], - [ - -95.625, - 32.34375 - ], - [ - -95.625, - 33.75 - ], - [ - -97.03125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 642, - 'geohash': '9zv', - 'center': [ - -93.515625, - 44.296875 - ], - 'rectangle': [ - [ - -94.21875, - 43.59375 - ], - [ - -92.8125, - 43.59375 - ], - [ - -92.8125, - 45 - ], - [ - -94.21875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 627, - 'geohash': 'dn5', - 'center': [ - -85.078125, - 34.453125 - ], - 'rectangle': [ - [ - -85.78125, - 33.75 - ], - [ - -84.375, - 33.75 - ], - [ - -84.375, - 35.15625 - ], - [ - -85.78125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 27.421875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 619, - 'geohash': 'dhv', - 'center': [ - -82.265625, - 27.421875 - ], - 'rectangle': [ - [ - -82.96875, - 26.71875 - ], - [ - -81.5625, - 26.71875 - ], - [ - -81.5625, - 28.125 - ], - [ - -82.96875, - 28.125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 630, - 'geohash': '9ys', - 'center': [ - -94.921875, - 37.265625 - ], - 'rectangle': [ - [ - -95.625, - 36.5625 - ], - [ - -94.21875, - 36.5625 - ], - [ - -94.21875, - 37.96875 - ], - [ - -95.625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 602, - 'geohash': 'dng', - 'center': [ - -85.078125, - 38.671875 - ], - 'rectangle': [ - [ - -85.78125, - 37.96875 - ], - [ - -84.375, - 37.96875 - ], - [ - -84.375, - 39.375 - ], - [ - -85.78125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -72.421875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 586, - 'geohash': 'drs', - 'center': [ - -72.421875, - 42.890625 - ], - 'rectangle': [ - [ - -73.125, - 42.1875 - ], - [ - -71.71875, - 42.1875 - ], - [ - -71.71875, - 43.59375 - ], - [ - -73.125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 596, - 'geohash': 'dr8', - 'center': [ - -78.046875, - 42.890625 - ], - 'rectangle': [ - [ - -78.75, - 42.1875 - ], - [ - -77.34375, - 42.1875 - ], - [ - -77.34375, - 43.59375 - ], - [ - -78.75, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 601, - 'geohash': 'djf', - 'center': [ - -86.484375, - 33.046875 - ], - 'rectangle': [ - [ - -87.1875, - 32.34375 - ], - [ - -85.78125, - 32.34375 - ], - [ - -85.78125, - 33.75 - ], - [ - -87.1875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 576, - 'geohash': 'dp9', - 'center': [ - -87.890625, - 42.890625 - ], - 'rectangle': [ - [ - -88.59375, - 42.1875 - ], - [ - -87.1875, - 42.1875 - ], - [ - -87.1875, - 43.59375 - ], - [ - -88.59375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 593, - 'geohash': '9yu', - 'center': [ - -94.921875, - 38.671875 - ], - 'rectangle': [ - [ - -95.625, - 37.96875 - ], - [ - -94.21875, - 37.96875 - ], - [ - -94.21875, - 39.375 - ], - [ - -95.625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 569, - 'geohash': '9yr', - 'center': [ - -90.703125, - 35.859375 - ], - 'rectangle': [ - [ - -91.40625, - 35.15625 - ], - [ - -90, - 35.15625 - ], - [ - -90, - 36.5625 - ], - [ - -91.40625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 568, - 'geohash': '9yn', - 'center': [ - -92.109375, - 34.453125 - ], - 'rectangle': [ - [ - -92.8125, - 33.75 - ], - [ - -91.40625, - 33.75 - ], - [ - -91.40625, - 35.15625 - ], - [ - -92.8125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 538, - 'geohash': '9qd', - 'center': [ - -120.234375, - 37.265625 - ], - 'rectangle': [ - [ - -120.9375, - 36.5625 - ], - [ - -119.53125, - 36.5625 - ], - [ - -119.53125, - 37.96875 - ], - [ - -120.9375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 529, - 'geohash': 'dp7', - 'center': [ - -85.078125, - 41.484375 - ], - 'rectangle': [ - [ - -85.78125, - 40.78125 - ], - [ - -84.375, - 40.78125 - ], - [ - -84.375, - 42.1875 - ], - [ - -85.78125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -71.015625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 557, - 'geohash': 'drt', - 'center': [ - -71.015625, - 42.890625 - ], - 'rectangle': [ - [ - -71.71875, - 42.1875 - ], - [ - -70.3125, - 42.1875 - ], - [ - -70.3125, - 43.59375 - ], - [ - -71.71875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 555, - 'geohash': 'dn2', - 'center': [ - -89.296875, - 35.859375 - ], - 'rectangle': [ - [ - -90, - 35.15625 - ], - [ - -88.59375, - 35.15625 - ], - [ - -88.59375, - 36.5625 - ], - [ - -90, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 541, - 'geohash': '9vk', - 'center': [ - -94.921875, - 30.234375 - ], - 'rectangle': [ - [ - -95.625, - 29.53125 - ], - [ - -94.21875, - 29.53125 - ], - [ - -94.21875, - 30.9375 - ], - [ - -95.625, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 27.421875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 547, - 'geohash': 'dhy', - 'center': [ - -80.859375, - 27.421875 - ], - 'rectangle': [ - [ - -81.5625, - 26.71875 - ], - [ - -80.15625, - 26.71875 - ], - [ - -80.15625, - 28.125 - ], - [ - -81.5625, - 28.125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 542, - 'geohash': 'dn3', - 'center': [ - -87.890625, - 35.859375 - ], - 'rectangle': [ - [ - -88.59375, - 35.15625 - ], - [ - -87.1875, - 35.15625 - ], - [ - -87.1875, - 36.5625 - ], - [ - -88.59375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 533, - 'geohash': 'dj8', - 'center': [ - -89.296875, - 31.640625 - ], - 'rectangle': [ - [ - -90, - 30.9375 - ], - [ - -88.59375, - 30.9375 - ], - [ - -88.59375, - 32.34375 - ], - [ - -90, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 534, - 'geohash': 'dpn', - 'center': [ - -80.859375, - 40.078125 - ], - 'rectangle': [ - [ - -81.5625, - 39.375 - ], - [ - -80.15625, - 39.375 - ], - [ - -80.15625, - 40.78125 - ], - [ - -81.5625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 521, - 'geohash': 'dju', - 'center': [ - -83.671875, - 33.046875 - ], - 'rectangle': [ - [ - -84.375, - 32.34375 - ], - [ - -82.96875, - 32.34375 - ], - [ - -82.96875, - 33.75 - ], - [ - -84.375, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 530, - 'geohash': '9vz', - 'center': [ - -90.703125, - 33.046875 - ], - 'rectangle': [ - [ - -91.40625, - 32.34375 - ], - [ - -90, - 32.34375 - ], - [ - -90, - 33.75 - ], - [ - -91.40625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 530, - 'geohash': 'dnp', - 'center': [ - -79.453125, - 34.453125 - ], - 'rectangle': [ - [ - -80.15625, - 33.75 - ], - [ - -78.75, - 33.75 - ], - [ - -78.75, - 35.15625 - ], - [ - -80.15625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -73.828125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 524, - 'geohash': 'dr5', - 'center': [ - -73.828125, - 40.078125 - ], - 'rectangle': [ - [ - -74.53125, - 39.375 - ], - [ - -73.125, - 39.375 - ], - [ - -73.125, - 40.78125 - ], - [ - -74.53125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 523, - 'geohash': 'dp5', - 'center': [ - -85.078125, - 40.078125 - ], - 'rectangle': [ - [ - -85.78125, - 39.375 - ], - [ - -84.375, - 39.375 - ], - [ - -84.375, - 40.78125 - ], - [ - -85.78125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 511, - 'geohash': '9r1', - 'center': [ - -121.640625, - 40.078125 - ], - 'rectangle': [ - [ - -122.34375, - 39.375 - ], - [ - -120.9375, - 39.375 - ], - [ - -120.9375, - 40.78125 - ], - [ - -122.34375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 512, - 'geohash': 'djv', - 'center': [ - -82.265625, - 33.046875 - ], - 'rectangle': [ - [ - -82.96875, - 32.34375 - ], - [ - -81.5625, - 32.34375 - ], - [ - -81.5625, - 33.75 - ], - [ - -82.96875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 518, - 'geohash': 'djt', - 'center': [ - -82.265625, - 31.640625 - ], - 'rectangle': [ - [ - -82.96875, - 30.9375 - ], - [ - -81.5625, - 30.9375 - ], - [ - -81.5625, - 32.34375 - ], - [ - -82.96875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 524, - 'geohash': 'dpm', - 'center': [ - -82.265625, - 41.484375 - ], - 'rectangle': [ - [ - -82.96875, - 40.78125 - ], - [ - -81.5625, - 40.78125 - ], - [ - -81.5625, - 42.1875 - ], - [ - -82.96875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 524, - 'geohash': '9zm', - 'center': [ - -93.515625, - 41.484375 - ], - 'rectangle': [ - [ - -94.21875, - 40.78125 - ], - [ - -92.8125, - 40.78125 - ], - [ - -92.8125, - 42.1875 - ], - [ - -94.21875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 525, - 'geohash': 'dnn', - 'center': [ - -80.859375, - 34.453125 - ], - 'rectangle': [ - [ - -81.5625, - 33.75 - ], - [ - -80.15625, - 33.75 - ], - [ - -80.15625, - 35.15625 - ], - [ - -81.5625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 507, - 'geohash': '9y3', - 'center': [ - -99.140625, - 35.859375 - ], - 'rectangle': [ - [ - -99.84375, - 35.15625 - ], - [ - -98.4375, - 35.15625 - ], - [ - -98.4375, - 36.5625 - ], - [ - -99.84375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 499, - 'geohash': '9yy', - 'center': [ - -92.109375, - 38.671875 - ], - 'rectangle': [ - [ - -92.8125, - 37.96875 - ], - [ - -91.40625, - 37.96875 - ], - [ - -91.40625, - 39.375 - ], - [ - -92.8125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 495, - 'geohash': 'dn7', - 'center': [ - -85.078125, - 35.859375 - ], - 'rectangle': [ - [ - -85.78125, - 35.15625 - ], - [ - -84.375, - 35.15625 - ], - [ - -84.375, - 36.5625 - ], - [ - -85.78125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 505, - 'geohash': '9tb', - 'center': [ - -111.796875, - 33.046875 - ], - 'rectangle': [ - [ - -112.5, - 32.34375 - ], - [ - -111.09375, - 32.34375 - ], - [ - -111.09375, - 33.75 - ], - [ - -112.5, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 494, - 'geohash': 'dnq', - 'center': [ - -80.859375, - 35.859375 - ], - 'rectangle': [ - [ - -81.5625, - 35.15625 - ], - [ - -80.15625, - 35.15625 - ], - [ - -80.15625, - 36.5625 - ], - [ - -81.5625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 513, - 'geohash': 'djn', - 'center': [ - -80.859375, - 28.828125 - ], - 'rectangle': [ - [ - -81.5625, - 28.125 - ], - [ - -80.15625, - 28.125 - ], - [ - -80.15625, - 29.53125 - ], - [ - -81.5625, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 526, - 'geohash': 'dnj', - 'center': [ - -82.265625, - 34.453125 - ], - 'rectangle': [ - [ - -82.96875, - 33.75 - ], - [ - -81.5625, - 33.75 - ], - [ - -81.5625, - 35.15625 - ], - [ - -82.96875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 470, - 'geohash': '9y6', - 'center': [ - -97.734375, - 35.859375 - ], - 'rectangle': [ - [ - -98.4375, - 35.15625 - ], - [ - -97.03125, - 35.15625 - ], - [ - -97.03125, - 36.5625 - ], - [ - -98.4375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 492, - 'geohash': '9vv', - 'center': [ - -93.515625, - 33.046875 - ], - 'rectangle': [ - [ - -94.21875, - 32.34375 - ], - [ - -92.8125, - 32.34375 - ], - [ - -92.8125, - 33.75 - ], - [ - -94.21875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 485, - 'geohash': 'dr9', - 'center': [ - -76.640625, - 42.890625 - ], - 'rectangle': [ - [ - -77.34375, - 42.1875 - ], - [ - -75.9375, - 42.1875 - ], - [ - -75.9375, - 43.59375 - ], - [ - -77.34375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 479, - 'geohash': 'djs', - 'center': [ - -83.671875, - 31.640625 - ], - 'rectangle': [ - [ - -84.375, - 30.9375 - ], - [ - -82.96875, - 30.9375 - ], - [ - -82.96875, - 32.34375 - ], - [ - -84.375, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 486, - 'geohash': '9z7', - 'center': [ - -96.328125, - 41.484375 - ], - 'rectangle': [ - [ - -97.03125, - 40.78125 - ], - [ - -95.625, - 40.78125 - ], - [ - -95.625, - 42.1875 - ], - [ - -97.03125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 488, - 'geohash': 'djg', - 'center': [ - -85.078125, - 33.046875 - ], - 'rectangle': [ - [ - -85.78125, - 32.34375 - ], - [ - -84.375, - 32.34375 - ], - [ - -84.375, - 33.75 - ], - [ - -85.78125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 494, - 'geohash': 'dpj', - 'center': [ - -82.265625, - 40.078125 - ], - 'rectangle': [ - [ - -82.96875, - 39.375 - ], - [ - -81.5625, - 39.375 - ], - [ - -81.5625, - 40.78125 - ], - [ - -82.96875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 488, - 'geohash': 'c20', - 'center': [ - -123.046875, - 45.703125 - ], - 'rectangle': [ - [ - -123.75, - 45 - ], - [ - -122.34375, - 45 - ], - [ - -122.34375, - 46.40625 - ], - [ - -123.75, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 481, - 'geohash': 'dnh', - 'center': [ - -83.671875, - 34.453125 - ], - 'rectangle': [ - [ - -84.375, - 33.75 - ], - [ - -82.96875, - 33.75 - ], - [ - -82.96875, - 35.15625 - ], - [ - -84.375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 470, - 'geohash': '9yk', - 'center': [ - -94.921875, - 35.859375 - ], - 'rectangle': [ - [ - -95.625, - 35.15625 - ], - [ - -94.21875, - 35.15625 - ], - [ - -94.21875, - 36.5625 - ], - [ - -95.625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 465, - 'geohash': 'dqb', - 'center': [ - -78.046875, - 38.671875 - ], - 'rectangle': [ - [ - -78.75, - 37.96875 - ], - [ - -77.34375, - 37.96875 - ], - [ - -77.34375, - 39.375 - ], - [ - -78.75, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 476, - 'geohash': '9mu', - 'center': [ - -117.421875, - 33.046875 - ], - 'rectangle': [ - [ - -118.125, - 32.34375 - ], - [ - -116.71875, - 32.34375 - ], - [ - -116.71875, - 33.75 - ], - [ - -118.125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -71.015625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 464, - 'geohash': 'drm', - 'center': [ - -71.015625, - 41.484375 - ], - 'rectangle': [ - [ - -71.71875, - 40.78125 - ], - [ - -70.3125, - 40.78125 - ], - [ - -70.3125, - 42.1875 - ], - [ - -71.71875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 470, - 'geohash': 'dqc', - 'center': [ - -76.640625, - 38.671875 - ], - 'rectangle': [ - [ - -77.34375, - 37.96875 - ], - [ - -75.9375, - 37.96875 - ], - [ - -75.9375, - 39.375 - ], - [ - -77.34375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 482, - 'geohash': '9yq', - 'center': [ - -92.109375, - 35.859375 - ], - 'rectangle': [ - [ - -92.8125, - 35.15625 - ], - [ - -91.40625, - 35.15625 - ], - [ - -91.40625, - 36.5625 - ], - [ - -92.8125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 470, - 'geohash': 'dn4', - 'center': [ - -86.484375, - 34.453125 - ], - 'rectangle': [ - [ - -87.1875, - 33.75 - ], - [ - -85.78125, - 33.75 - ], - [ - -85.78125, - 35.15625 - ], - [ - -87.1875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 460, - 'geohash': 'bdv', - 'center': [ - -149.765625, - 61.171875 - ], - 'rectangle': [ - [ - -150.46875, - 60.46875 - ], - [ - -149.0625, - 60.46875 - ], - [ - -149.0625, - 61.875 - ], - [ - -150.46875, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 471, - 'geohash': '9yp', - 'center': [ - -90.703125, - 34.453125 - ], - 'rectangle': [ - [ - -91.40625, - 33.75 - ], - [ - -90, - 33.75 - ], - [ - -90, - 35.15625 - ], - [ - -91.40625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 474, - 'geohash': '9vd', - 'center': [ - -97.734375, - 31.640625 - ], - 'rectangle': [ - [ - -98.4375, - 30.9375 - ], - [ - -97.03125, - 30.9375 - ], - [ - -97.03125, - 32.34375 - ], - [ - -98.4375, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 460, - 'geohash': '9yd', - 'center': [ - -97.734375, - 37.265625 - ], - 'rectangle': [ - [ - -98.4375, - 36.5625 - ], - [ - -97.03125, - 36.5625 - ], - [ - -97.03125, - 37.96875 - ], - [ - -98.4375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 26.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 452, - 'geohash': 'dhw', - 'center': [ - -80.859375, - 26.015625 - ], - 'rectangle': [ - [ - -81.5625, - 25.3125 - ], - [ - -80.15625, - 25.3125 - ], - [ - -80.15625, - 26.71875 - ], - [ - -81.5625, - 26.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 452, - 'geohash': 'dr6', - 'center': [ - -75.234375, - 41.484375 - ], - 'rectangle': [ - [ - -75.9375, - 40.78125 - ], - [ - -74.53125, - 40.78125 - ], - [ - -74.53125, - 42.1875 - ], - [ - -75.9375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 465, - 'geohash': 'dnv', - 'center': [ - -82.265625, - 38.671875 - ], - 'rectangle': [ - [ - -82.96875, - 37.96875 - ], - [ - -81.5625, - 37.96875 - ], - [ - -81.5625, - 39.375 - ], - [ - -82.96875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 444, - 'geohash': 'dnr', - 'center': [ - -79.453125, - 35.859375 - ], - 'rectangle': [ - [ - -80.15625, - 35.15625 - ], - [ - -78.75, - 35.15625 - ], - [ - -78.75, - 36.5625 - ], - [ - -80.15625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 466, - 'geohash': 'dje', - 'center': [ - -85.078125, - 31.640625 - ], - 'rectangle': [ - [ - -85.78125, - 30.9375 - ], - [ - -84.375, - 30.9375 - ], - [ - -84.375, - 32.34375 - ], - [ - -85.78125, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 447, - 'geohash': '9y4', - 'center': [ - -97.734375, - 34.453125 - ], - 'rectangle': [ - [ - -98.4375, - 33.75 - ], - [ - -97.03125, - 33.75 - ], - [ - -97.03125, - 35.15625 - ], - [ - -98.4375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 449, - 'geohash': '9q7', - 'center': [ - -118.828125, - 35.859375 - ], - 'rectangle': [ - [ - -119.53125, - 35.15625 - ], - [ - -118.125, - 35.15625 - ], - [ - -118.125, - 36.5625 - ], - [ - -119.53125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 451, - 'geohash': 'dn8', - 'center': [ - -89.296875, - 37.265625 - ], - 'rectangle': [ - [ - -90, - 36.5625 - ], - [ - -88.59375, - 36.5625 - ], - [ - -88.59375, - 37.96875 - ], - [ - -90, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 447, - 'geohash': '9zu', - 'center': [ - -94.921875, - 44.296875 - ], - 'rectangle': [ - [ - -95.625, - 43.59375 - ], - [ - -94.21875, - 43.59375 - ], - [ - -94.21875, - 45 - ], - [ - -95.625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 452, - 'geohash': 'dq2', - 'center': [ - -78.046875, - 35.859375 - ], - 'rectangle': [ - [ - -78.75, - 35.15625 - ], - [ - -77.34375, - 35.15625 - ], - [ - -77.34375, - 36.5625 - ], - [ - -78.75, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 443, - 'geohash': 'dnb', - 'center': [ - -89.296875, - 38.671875 - ], - 'rectangle': [ - [ - -90, - 37.96875 - ], - [ - -88.59375, - 37.96875 - ], - [ - -88.59375, - 39.375 - ], - [ - -90, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 449, - 'geohash': 'dnc', - 'center': [ - -87.890625, - 38.671875 - ], - 'rectangle': [ - [ - -88.59375, - 37.96875 - ], - [ - -87.1875, - 37.96875 - ], - [ - -87.1875, - 39.375 - ], - [ - -88.59375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 433, - 'geohash': '9zq', - 'center': [ - -92.109375, - 41.484375 - ], - 'rectangle': [ - [ - -92.8125, - 40.78125 - ], - [ - -91.40625, - 40.78125 - ], - [ - -91.40625, - 42.1875 - ], - [ - -92.8125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 425, - 'geohash': '9y5', - 'center': [ - -96.328125, - 34.453125 - ], - 'rectangle': [ - [ - -97.03125, - 33.75 - ], - [ - -95.625, - 33.75 - ], - [ - -95.625, - 35.15625 - ], - [ - -97.03125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 449, - 'geohash': '9vu', - 'center': [ - -94.921875, - 33.046875 - ], - 'rectangle': [ - [ - -95.625, - 32.34375 - ], - [ - -94.21875, - 32.34375 - ], - [ - -94.21875, - 33.75 - ], - [ - -95.625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 439, - 'geohash': 'dnm', - 'center': [ - -82.265625, - 35.859375 - ], - 'rectangle': [ - [ - -82.96875, - 35.15625 - ], - [ - -81.5625, - 35.15625 - ], - [ - -81.5625, - 36.5625 - ], - [ - -82.96875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 427, - 'geohash': '9yz', - 'center': [ - -90.703125, - 38.671875 - ], - 'rectangle': [ - [ - -91.40625, - 37.96875 - ], - [ - -90, - 37.96875 - ], - [ - -90, - 39.375 - ], - [ - -91.40625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -132.890625, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 415, - 'geohash': 'c1c', - 'center': [ - -132.890625, - 55.546875 - ], - 'rectangle': [ - [ - -133.59375, - 54.84375 - ], - [ - -132.1875, - 54.84375 - ], - [ - -132.1875, - 56.25 - ], - [ - -133.59375, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 432, - 'geohash': 'dnf', - 'center': [ - -86.484375, - 38.671875 - ], - 'rectangle': [ - [ - -87.1875, - 37.96875 - ], - [ - -85.78125, - 37.96875 - ], - [ - -85.78125, - 39.375 - ], - [ - -87.1875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 430, - 'geohash': 'dpg', - 'center': [ - -85.078125, - 44.296875 - ], - 'rectangle': [ - [ - -85.78125, - 43.59375 - ], - [ - -84.375, - 43.59375 - ], - [ - -84.375, - 45 - ], - [ - -85.78125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 422, - 'geohash': 'dn9', - 'center': [ - -87.890625, - 37.265625 - ], - 'rectangle': [ - [ - -88.59375, - 36.5625 - ], - [ - -87.1875, - 36.5625 - ], - [ - -87.1875, - 37.96875 - ], - [ - -88.59375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 407, - 'geohash': 'dq0', - 'center': [ - -78.046875, - 34.453125 - ], - 'rectangle': [ - [ - -78.75, - 33.75 - ], - [ - -77.34375, - 33.75 - ], - [ - -77.34375, - 35.15625 - ], - [ - -78.75, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 404, - 'geohash': '9v7', - 'center': [ - -96.328125, - 30.234375 - ], - 'rectangle': [ - [ - -97.03125, - 29.53125 - ], - [ - -95.625, - 29.53125 - ], - [ - -95.625, - 30.9375 - ], - [ - -97.03125, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 421, - 'geohash': '9z4', - 'center': [ - -97.734375, - 40.078125 - ], - 'rectangle': [ - [ - -98.4375, - 39.375 - ], - [ - -97.03125, - 39.375 - ], - [ - -97.03125, - 40.78125 - ], - [ - -98.4375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 417, - 'geohash': 'dq9', - 'center': [ - -76.640625, - 37.265625 - ], - 'rectangle': [ - [ - -77.34375, - 36.5625 - ], - [ - -75.9375, - 36.5625 - ], - [ - -75.9375, - 37.96875 - ], - [ - -77.34375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 418, - 'geohash': 'djb', - 'center': [ - -89.296875, - 33.046875 - ], - 'rectangle': [ - [ - -90, - 32.34375 - ], - [ - -88.59375, - 32.34375 - ], - [ - -88.59375, - 33.75 - ], - [ - -90, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 423, - 'geohash': '9zr', - 'center': [ - -90.703125, - 41.484375 - ], - 'rectangle': [ - [ - -91.40625, - 40.78125 - ], - [ - -90, - 40.78125 - ], - [ - -90, - 42.1875 - ], - [ - -91.40625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -72.421875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 426, - 'geohash': 'dru', - 'center': [ - -72.421875, - 44.296875 - ], - 'rectangle': [ - [ - -73.125, - 43.59375 - ], - [ - -71.71875, - 43.59375 - ], - [ - -71.71875, - 45 - ], - [ - -73.125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 422, - 'geohash': '9zs', - 'center': [ - -94.921875, - 42.890625 - ], - 'rectangle': [ - [ - -95.625, - 42.1875 - ], - [ - -94.21875, - 42.1875 - ], - [ - -94.21875, - 43.59375 - ], - [ - -95.625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 394, - 'geohash': '9ze', - 'center': [ - -96.328125, - 42.890625 - ], - 'rectangle': [ - [ - -97.03125, - 42.1875 - ], - [ - -95.625, - 42.1875 - ], - [ - -95.625, - 43.59375 - ], - [ - -97.03125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 393, - 'geohash': 'djc', - 'center': [ - -87.890625, - 33.046875 - ], - 'rectangle': [ - [ - -88.59375, - 32.34375 - ], - [ - -87.1875, - 32.34375 - ], - [ - -87.1875, - 33.75 - ], - [ - -88.59375, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 403, - 'geohash': '9y1', - 'center': [ - -99.140625, - 34.453125 - ], - 'rectangle': [ - [ - -99.84375, - 33.75 - ], - [ - -98.4375, - 33.75 - ], - [ - -98.4375, - 35.15625 - ], - [ - -99.84375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 405, - 'geohash': 'djy', - 'center': [ - -80.859375, - 33.046875 - ], - 'rectangle': [ - [ - -81.5625, - 32.34375 - ], - [ - -80.15625, - 32.34375 - ], - [ - -80.15625, - 33.75 - ], - [ - -81.5625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 408, - 'geohash': 'c28', - 'center': [ - -123.046875, - 48.515625 - ], - 'rectangle': [ - [ - -123.75, - 47.8125 - ], - [ - -122.34375, - 47.8125 - ], - [ - -122.34375, - 49.21875 - ], - [ - -123.75, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 404, - 'geohash': '9vx', - 'center': [ - -90.703125, - 31.640625 - ], - 'rectangle': [ - [ - -91.40625, - 30.9375 - ], - [ - -90, - 30.9375 - ], - [ - -90, - 32.34375 - ], - [ - -91.40625, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 408, - 'geohash': 'dnw', - 'center': [ - -80.859375, - 37.265625 - ], - 'rectangle': [ - [ - -81.5625, - 36.5625 - ], - [ - -80.15625, - 36.5625 - ], - [ - -80.15625, - 37.96875 - ], - [ - -81.5625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 394, - 'geohash': '9zk', - 'center': [ - -94.921875, - 41.484375 - ], - 'rectangle': [ - [ - -95.625, - 40.78125 - ], - [ - -94.21875, - 40.78125 - ], - [ - -94.21875, - 42.1875 - ], - [ - -95.625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 412, - 'geohash': 'djd', - 'center': [ - -86.484375, - 31.640625 - ], - 'rectangle': [ - [ - -87.1875, - 30.9375 - ], - [ - -85.78125, - 30.9375 - ], - [ - -85.78125, - 32.34375 - ], - [ - -87.1875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 397, - 'geohash': 'f05', - 'center': [ - -85.078125, - 45.703125 - ], - 'rectangle': [ - [ - -85.78125, - 45 - ], - [ - -84.375, - 45 - ], - [ - -84.375, - 46.40625 - ], - [ - -85.78125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -69.609375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 385, - 'geohash': 'dry', - 'center': [ - -69.609375, - 44.296875 - ], - 'rectangle': [ - [ - -70.3125, - 43.59375 - ], - [ - -68.90625, - 43.59375 - ], - [ - -68.90625, - 45 - ], - [ - -70.3125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 390, - 'geohash': 'cbd', - 'center': [ - -97.734375, - 48.515625 - ], - 'rectangle': [ - [ - -98.4375, - 47.8125 - ], - [ - -97.03125, - 47.8125 - ], - [ - -97.03125, - 49.21875 - ], - [ - -98.4375, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 377, - 'geohash': 'cbj', - 'center': [ - -93.515625, - 45.703125 - ], - 'rectangle': [ - [ - -94.21875, - 45 - ], - [ - -92.8125, - 45 - ], - [ - -92.8125, - 46.40625 - ], - [ - -94.21875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 395, - 'geohash': 'dr2', - 'center': [ - -78.046875, - 41.484375 - ], - 'rectangle': [ - [ - -78.75, - 40.78125 - ], - [ - -77.34375, - 40.78125 - ], - [ - -77.34375, - 42.1875 - ], - [ - -78.75, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 379, - 'geohash': 'djj', - 'center': [ - -82.265625, - 28.828125 - ], - 'rectangle': [ - [ - -82.96875, - 28.125 - ], - [ - -81.5625, - 28.125 - ], - [ - -81.5625, - 29.53125 - ], - [ - -82.96875, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 393, - 'geohash': '9z6', - 'center': [ - -97.734375, - 41.484375 - ], - 'rectangle': [ - [ - -98.4375, - 40.78125 - ], - [ - -97.03125, - 40.78125 - ], - [ - -97.03125, - 42.1875 - ], - [ - -98.4375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 375, - 'geohash': 'dqf', - 'center': [ - -75.234375, - 38.671875 - ], - 'rectangle': [ - [ - -75.9375, - 37.96875 - ], - [ - -74.53125, - 37.96875 - ], - [ - -74.53125, - 39.375 - ], - [ - -75.9375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 388, - 'geohash': 'dne', - 'center': [ - -85.078125, - 37.265625 - ], - 'rectangle': [ - [ - -85.78125, - 36.5625 - ], - [ - -84.375, - 36.5625 - ], - [ - -84.375, - 37.96875 - ], - [ - -85.78125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 380, - 'geohash': '9v6', - 'center': [ - -97.734375, - 30.234375 - ], - 'rectangle': [ - [ - -98.4375, - 29.53125 - ], - [ - -97.03125, - 29.53125 - ], - [ - -97.03125, - 30.9375 - ], - [ - -98.4375, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 382, - 'geohash': '9vy', - 'center': [ - -92.109375, - 33.046875 - ], - 'rectangle': [ - [ - -92.8125, - 32.34375 - ], - [ - -91.40625, - 32.34375 - ], - [ - -91.40625, - 33.75 - ], - [ - -92.8125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 387, - 'geohash': 'f00', - 'center': [ - -89.296875, - 45.703125 - ], - 'rectangle': [ - [ - -90, - 45 - ], - [ - -88.59375, - 45 - ], - [ - -88.59375, - 46.40625 - ], - [ - -90, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 374, - 'geohash': 'dr3', - 'center': [ - -76.640625, - 41.484375 - ], - 'rectangle': [ - [ - -77.34375, - 40.78125 - ], - [ - -75.9375, - 40.78125 - ], - [ - -75.9375, - 42.1875 - ], - [ - -77.34375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 388, - 'geohash': '9vm', - 'center': [ - -93.515625, - 30.234375 - ], - 'rectangle': [ - [ - -94.21875, - 29.53125 - ], - [ - -92.8125, - 29.53125 - ], - [ - -92.8125, - 30.9375 - ], - [ - -94.21875, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 385, - 'geohash': 'dnk', - 'center': [ - -83.671875, - 35.859375 - ], - 'rectangle': [ - [ - -84.375, - 35.15625 - ], - [ - -82.96875, - 35.15625 - ], - [ - -82.96875, - 36.5625 - ], - [ - -84.375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 366, - 'geohash': '9zx', - 'center': [ - -90.703125, - 42.890625 - ], - 'rectangle': [ - [ - -91.40625, - 42.1875 - ], - [ - -90, - 42.1875 - ], - [ - -90, - 43.59375 - ], - [ - -91.40625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 372, - 'geohash': '9qf', - 'center': [ - -120.234375, - 38.671875 - ], - 'rectangle': [ - [ - -120.9375, - 37.96875 - ], - [ - -119.53125, - 37.96875 - ], - [ - -119.53125, - 39.375 - ], - [ - -120.9375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 377, - 'geohash': 'dpc', - 'center': [ - -87.890625, - 44.296875 - ], - 'rectangle': [ - [ - -88.59375, - 43.59375 - ], - [ - -87.1875, - 43.59375 - ], - [ - -87.1875, - 45 - ], - [ - -88.59375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 369, - 'geohash': 'dj3', - 'center': [ - -87.890625, - 30.234375 - ], - 'rectangle': [ - [ - -88.59375, - 29.53125 - ], - [ - -87.1875, - 29.53125 - ], - [ - -87.1875, - 30.9375 - ], - [ - -88.59375, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 364, - 'geohash': '9zp', - 'center': [ - -90.703125, - 40.078125 - ], - 'rectangle': [ - [ - -91.40625, - 39.375 - ], - [ - -90, - 39.375 - ], - [ - -90, - 40.78125 - ], - [ - -91.40625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 364, - 'geohash': 'dnd', - 'center': [ - -86.484375, - 37.265625 - ], - 'rectangle': [ - [ - -87.1875, - 36.5625 - ], - [ - -85.78125, - 36.5625 - ], - [ - -85.78125, - 37.96875 - ], - [ - -87.1875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 377, - 'geohash': '9xj', - 'center': [ - -104.765625, - 40.078125 - ], - 'rectangle': [ - [ - -105.46875, - 39.375 - ], - [ - -104.0625, - 39.375 - ], - [ - -104.0625, - 40.78125 - ], - [ - -105.46875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 362, - 'geohash': 'dp1', - 'center': [ - -87.890625, - 40.078125 - ], - 'rectangle': [ - [ - -88.59375, - 39.375 - ], - [ - -87.1875, - 39.375 - ], - [ - -87.1875, - 40.78125 - ], - [ - -88.59375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 360, - 'geohash': '9qb', - 'center': [ - -123.046875, - 38.671875 - ], - 'rectangle': [ - [ - -123.75, - 37.96875 - ], - [ - -122.34375, - 37.96875 - ], - [ - -122.34375, - 39.375 - ], - [ - -123.75, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 353, - 'geohash': '9z1', - 'center': [ - -99.140625, - 40.078125 - ], - 'rectangle': [ - [ - -99.84375, - 39.375 - ], - [ - -98.4375, - 39.375 - ], - [ - -98.4375, - 40.78125 - ], - [ - -99.84375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 342, - 'geohash': 'dn1', - 'center': [ - -87.890625, - 34.453125 - ], - 'rectangle': [ - [ - -88.59375, - 33.75 - ], - [ - -87.1875, - 33.75 - ], - [ - -87.1875, - 35.15625 - ], - [ - -88.59375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 358, - 'geohash': '9vr', - 'center': [ - -90.703125, - 30.234375 - ], - 'rectangle': [ - [ - -91.40625, - 29.53125 - ], - [ - -90, - 29.53125 - ], - [ - -90, - 30.9375 - ], - [ - -91.40625, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 342, - 'geohash': '9vq', - 'center': [ - -92.109375, - 30.234375 - ], - 'rectangle': [ - [ - -92.8125, - 29.53125 - ], - [ - -91.40625, - 29.53125 - ], - [ - -91.40625, - 30.9375 - ], - [ - -92.8125, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 338, - 'geohash': 'cbn', - 'center': [ - -92.109375, - 45.703125 - ], - 'rectangle': [ - [ - -92.8125, - 45 - ], - [ - -91.40625, - 45 - ], - [ - -91.40625, - 46.40625 - ], - [ - -92.8125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 349, - 'geohash': '9ym', - 'center': [ - -93.515625, - 35.859375 - ], - 'rectangle': [ - [ - -94.21875, - 35.15625 - ], - [ - -92.8125, - 35.15625 - ], - [ - -92.8125, - 36.5625 - ], - [ - -94.21875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 343, - 'geohash': 'dpb', - 'center': [ - -89.296875, - 44.296875 - ], - 'rectangle': [ - [ - -90, - 43.59375 - ], - [ - -88.59375, - 43.59375 - ], - [ - -88.59375, - 45 - ], - [ - -90, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 332, - 'geohash': 'dns', - 'center': [ - -83.671875, - 37.265625 - ], - 'rectangle': [ - [ - -84.375, - 36.5625 - ], - [ - -82.96875, - 36.5625 - ], - [ - -82.96875, - 37.96875 - ], - [ - -84.375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 347, - 'geohash': 'dj2', - 'center': [ - -89.296875, - 30.234375 - ], - 'rectangle': [ - [ - -90, - 29.53125 - ], - [ - -88.59375, - 29.53125 - ], - [ - -88.59375, - 30.9375 - ], - [ - -90, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 345, - 'geohash': 'dp2', - 'center': [ - -89.296875, - 41.484375 - ], - 'rectangle': [ - [ - -90, - 40.78125 - ], - [ - -88.59375, - 40.78125 - ], - [ - -88.59375, - 42.1875 - ], - [ - -90, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 337, - 'geohash': 'djm', - 'center': [ - -82.265625, - 30.234375 - ], - 'rectangle': [ - [ - -82.96875, - 29.53125 - ], - [ - -81.5625, - 29.53125 - ], - [ - -81.5625, - 30.9375 - ], - [ - -82.96875, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 343, - 'geohash': 'cb5', - 'center': [ - -96.328125, - 45.703125 - ], - 'rectangle': [ - [ - -97.03125, - 45 - ], - [ - -95.625, - 45 - ], - [ - -95.625, - 46.40625 - ], - [ - -97.03125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 342, - 'geohash': '9yw', - 'center': [ - -92.109375, - 37.265625 - ], - 'rectangle': [ - [ - -92.8125, - 36.5625 - ], - [ - -91.40625, - 36.5625 - ], - [ - -91.40625, - 37.96875 - ], - [ - -92.8125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 332, - 'geohash': 'drd', - 'center': [ - -75.234375, - 42.890625 - ], - 'rectangle': [ - [ - -75.9375, - 42.1875 - ], - [ - -74.53125, - 42.1875 - ], - [ - -74.53125, - 43.59375 - ], - [ - -75.9375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 322, - 'geohash': 'dnt', - 'center': [ - -82.265625, - 37.265625 - ], - 'rectangle': [ - [ - -82.96875, - 36.5625 - ], - [ - -81.5625, - 36.5625 - ], - [ - -81.5625, - 37.96875 - ], - [ - -82.96875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 337, - 'geohash': '9vc', - 'center': [ - -99.140625, - 33.046875 - ], - 'rectangle': [ - [ - -99.84375, - 32.34375 - ], - [ - -98.4375, - 32.34375 - ], - [ - -98.4375, - 33.75 - ], - [ - -99.84375, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 358, - 'geohash': '9rb', - 'center': [ - -123.046875, - 44.296875 - ], - 'rectangle': [ - [ - -123.75, - 43.59375 - ], - [ - -122.34375, - 43.59375 - ], - [ - -122.34375, - 45 - ], - [ - -123.75, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 330, - 'geohash': 'djz', - 'center': [ - -79.453125, - 33.046875 - ], - 'rectangle': [ - [ - -80.15625, - 32.34375 - ], - [ - -78.75, - 32.34375 - ], - [ - -78.75, - 33.75 - ], - [ - -80.15625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 326, - 'geohash': 'djk', - 'center': [ - -83.671875, - 30.234375 - ], - 'rectangle': [ - [ - -84.375, - 29.53125 - ], - [ - -82.96875, - 29.53125 - ], - [ - -82.96875, - 30.9375 - ], - [ - -84.375, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 334, - 'geohash': '9z5', - 'center': [ - -96.328125, - 40.078125 - ], - 'rectangle': [ - [ - -97.03125, - 39.375 - ], - [ - -95.625, - 39.375 - ], - [ - -95.625, - 40.78125 - ], - [ - -97.03125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 325, - 'geohash': '9y8', - 'center': [ - -100.546875, - 37.265625 - ], - 'rectangle': [ - [ - -101.25, - 36.5625 - ], - [ - -99.84375, - 36.5625 - ], - [ - -99.84375, - 37.96875 - ], - [ - -101.25, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 316, - 'geohash': '9zh', - 'center': [ - -94.921875, - 40.078125 - ], - 'rectangle': [ - [ - -95.625, - 39.375 - ], - [ - -94.21875, - 39.375 - ], - [ - -94.21875, - 40.78125 - ], - [ - -95.625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 334, - 'geohash': '9zg', - 'center': [ - -96.328125, - 44.296875 - ], - 'rectangle': [ - [ - -97.03125, - 43.59375 - ], - [ - -95.625, - 43.59375 - ], - [ - -95.625, - 45 - ], - [ - -97.03125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 324, - 'geohash': 'dnu', - 'center': [ - -83.671875, - 38.671875 - ], - 'rectangle': [ - [ - -84.375, - 37.96875 - ], - [ - -82.96875, - 37.96875 - ], - [ - -82.96875, - 39.375 - ], - [ - -84.375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 324, - 'geohash': '9qq', - 'center': [ - -114.609375, - 35.859375 - ], - 'rectangle': [ - [ - -115.3125, - 35.15625 - ], - [ - -113.90625, - 35.15625 - ], - [ - -113.90625, - 36.5625 - ], - [ - -115.3125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 318, - 'geohash': 'dq3', - 'center': [ - -76.640625, - 35.859375 - ], - 'rectangle': [ - [ - -77.34375, - 35.15625 - ], - [ - -75.9375, - 35.15625 - ], - [ - -75.9375, - 36.5625 - ], - [ - -77.34375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 328, - 'geohash': 'dp0', - 'center': [ - -89.296875, - 40.078125 - ], - 'rectangle': [ - [ - -90, - 39.375 - ], - [ - -88.59375, - 39.375 - ], - [ - -88.59375, - 40.78125 - ], - [ - -90, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 309, - 'geohash': '9r2', - 'center': [ - -123.046875, - 41.484375 - ], - 'rectangle': [ - [ - -123.75, - 40.78125 - ], - [ - -122.34375, - 40.78125 - ], - [ - -122.34375, - 42.1875 - ], - [ - -123.75, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 320, - 'geohash': '9zn', - 'center': [ - -92.109375, - 40.078125 - ], - 'rectangle': [ - [ - -92.8125, - 39.375 - ], - [ - -91.40625, - 39.375 - ], - [ - -91.40625, - 40.78125 - ], - [ - -92.8125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 305, - 'geohash': 'dq8', - 'center': [ - -78.046875, - 37.265625 - ], - 'rectangle': [ - [ - -78.75, - 36.5625 - ], - [ - -77.34375, - 36.5625 - ], - [ - -77.34375, - 37.96875 - ], - [ - -78.75, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 306, - 'geohash': '9v1', - 'center': [ - -99.140625, - 28.828125 - ], - 'rectangle': [ - [ - -99.84375, - 28.125 - ], - [ - -98.4375, - 28.125 - ], - [ - -98.4375, - 29.53125 - ], - [ - -99.84375, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 295, - 'geohash': '9zf', - 'center': [ - -97.734375, - 44.296875 - ], - 'rectangle': [ - [ - -98.4375, - 43.59375 - ], - [ - -97.03125, - 43.59375 - ], - [ - -97.03125, - 45 - ], - [ - -98.4375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 301, - 'geohash': '9zw', - 'center': [ - -92.109375, - 42.890625 - ], - 'rectangle': [ - [ - -92.8125, - 42.1875 - ], - [ - -91.40625, - 42.1875 - ], - [ - -91.40625, - 43.59375 - ], - [ - -92.8125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 305, - 'geohash': 'dr1', - 'center': [ - -76.640625, - 40.078125 - ], - 'rectangle': [ - [ - -77.34375, - 39.375 - ], - [ - -75.9375, - 39.375 - ], - [ - -75.9375, - 40.78125 - ], - [ - -77.34375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 301, - 'geohash': 'c22', - 'center': [ - -123.046875, - 47.109375 - ], - 'rectangle': [ - [ - -123.75, - 46.40625 - ], - [ - -122.34375, - 46.40625 - ], - [ - -122.34375, - 47.8125 - ], - [ - -123.75, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -73.828125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 297, - 'geohash': 'drg', - 'center': [ - -73.828125, - 44.296875 - ], - 'rectangle': [ - [ - -74.53125, - 43.59375 - ], - [ - -73.125, - 43.59375 - ], - [ - -73.125, - 45 - ], - [ - -74.53125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 292, - 'geohash': '9zy', - 'center': [ - -92.109375, - 44.296875 - ], - 'rectangle': [ - [ - -92.8125, - 43.59375 - ], - [ - -91.40625, - 43.59375 - ], - [ - -91.40625, - 45 - ], - [ - -92.8125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 286, - 'geohash': 'cbq', - 'center': [ - -92.109375, - 47.109375 - ], - 'rectangle': [ - [ - -92.8125, - 46.40625 - ], - [ - -91.40625, - 46.40625 - ], - [ - -91.40625, - 47.8125 - ], - [ - -92.8125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 302, - 'geohash': '9z3', - 'center': [ - -99.140625, - 41.484375 - ], - 'rectangle': [ - [ - -99.84375, - 40.78125 - ], - [ - -98.4375, - 40.78125 - ], - [ - -98.4375, - 42.1875 - ], - [ - -99.84375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 289, - 'geohash': 'c2q', - 'center': [ - -114.609375, - 47.109375 - ], - 'rectangle': [ - [ - -115.3125, - 46.40625 - ], - [ - -113.90625, - 46.40625 - ], - [ - -113.90625, - 47.8125 - ], - [ - -115.3125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 290, - 'geohash': 'dpr', - 'center': [ - -79.453125, - 41.484375 - ], - 'rectangle': [ - [ - -80.15625, - 40.78125 - ], - [ - -78.75, - 40.78125 - ], - [ - -78.75, - 42.1875 - ], - [ - -80.15625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -65.390625, - 18.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 287, - 'geohash': 'de3', - 'center': [ - -65.390625, - 18.984375 - ], - 'rectangle': [ - [ - -66.09375, - 18.28125 - ], - [ - -64.6875, - 18.28125 - ], - [ - -64.6875, - 19.6875 - ], - [ - -66.09375, - 19.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 289, - 'geohash': 'b6u', - 'center': [ - -162.421875, - 61.171875 - ], - 'rectangle': [ - [ - -163.125, - 60.46875 - ], - [ - -161.71875, - 60.46875 - ], - [ - -161.71875, - 61.875 - ], - [ - -163.125, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 298, - 'geohash': '9wp', - 'center': [ - -101.953125, - 34.453125 - ], - 'rectangle': [ - [ - -102.65625, - 33.75 - ], - [ - -101.25, - 33.75 - ], - [ - -101.25, - 35.15625 - ], - [ - -102.65625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 297, - 'geohash': '9zt', - 'center': [ - -93.515625, - 42.890625 - ], - 'rectangle': [ - [ - -94.21875, - 42.1875 - ], - [ - -92.8125, - 42.1875 - ], - [ - -92.8125, - 43.59375 - ], - [ - -94.21875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 283, - 'geohash': 'cb7', - 'center': [ - -96.328125, - 47.109375 - ], - 'rectangle': [ - [ - -97.03125, - 46.40625 - ], - [ - -95.625, - 46.40625 - ], - [ - -95.625, - 47.8125 - ], - [ - -97.03125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 282, - 'geohash': 'c23', - 'center': [ - -121.640625, - 47.109375 - ], - 'rectangle': [ - [ - -122.34375, - 46.40625 - ], - [ - -120.9375, - 46.40625 - ], - [ - -120.9375, - 47.8125 - ], - [ - -122.34375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 289, - 'geohash': 'c27', - 'center': [ - -118.828125, - 47.109375 - ], - 'rectangle': [ - [ - -119.53125, - 46.40625 - ], - [ - -118.125, - 46.40625 - ], - [ - -118.125, - 47.8125 - ], - [ - -119.53125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 277, - 'geohash': '9zd', - 'center': [ - -97.734375, - 42.890625 - ], - 'rectangle': [ - [ - -98.4375, - 42.1875 - ], - [ - -97.03125, - 42.1875 - ], - [ - -97.03125, - 43.59375 - ], - [ - -98.4375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 27.421875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 282, - 'geohash': '9uf', - 'center': [ - -97.734375, - 27.421875 - ], - 'rectangle': [ - [ - -98.4375, - 26.71875 - ], - [ - -97.03125, - 26.71875 - ], - [ - -97.03125, - 28.125 - ], - [ - -98.4375, - 28.125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 284, - 'geohash': '9r0', - 'center': [ - -123.046875, - 40.078125 - ], - 'rectangle': [ - [ - -123.75, - 39.375 - ], - [ - -122.34375, - 39.375 - ], - [ - -122.34375, - 40.78125 - ], - [ - -123.75, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -165.234375, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 267, - 'geohash': 'b6f', - 'center': [ - -165.234375, - 61.171875 - ], - 'rectangle': [ - [ - -165.9375, - 60.46875 - ], - [ - -164.53125, - 60.46875 - ], - [ - -164.53125, - 61.875 - ], - [ - -165.9375, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 270, - 'geohash': '9vw', - 'center': [ - -92.109375, - 31.640625 - ], - 'rectangle': [ - [ - -92.8125, - 30.9375 - ], - [ - -91.40625, - 30.9375 - ], - [ - -91.40625, - 32.34375 - ], - [ - -92.8125, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 280, - 'geohash': 'cb4', - 'center': [ - -97.734375, - 45.703125 - ], - 'rectangle': [ - [ - -98.4375, - 45 - ], - [ - -97.03125, - 45 - ], - [ - -97.03125, - 46.40625 - ], - [ - -98.4375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 273, - 'geohash': '9z0', - 'center': [ - -100.546875, - 40.078125 - ], - 'rectangle': [ - [ - -101.25, - 39.375 - ], - [ - -99.84375, - 39.375 - ], - [ - -99.84375, - 40.78125 - ], - [ - -101.25, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 275, - 'geohash': 'dr0', - 'center': [ - -78.046875, - 40.078125 - ], - 'rectangle': [ - [ - -78.75, - 39.375 - ], - [ - -77.34375, - 39.375 - ], - [ - -77.34375, - 40.78125 - ], - [ - -78.75, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -135.703125, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 267, - 'geohash': 'bfr', - 'center': [ - -135.703125, - 58.359375 - ], - 'rectangle': [ - [ - -136.40625, - 57.65625 - ], - [ - -135, - 57.65625 - ], - [ - -135, - 59.0625 - ], - [ - -136.40625, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 274, - 'geohash': 'dnx', - 'center': [ - -79.453125, - 37.265625 - ], - 'rectangle': [ - [ - -80.15625, - 36.5625 - ], - [ - -78.75, - 36.5625 - ], - [ - -78.75, - 37.96875 - ], - [ - -80.15625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 269, - 'geohash': '9yf', - 'center': [ - -97.734375, - 38.671875 - ], - 'rectangle': [ - [ - -98.4375, - 37.96875 - ], - [ - -97.03125, - 37.96875 - ], - [ - -97.03125, - 39.375 - ], - [ - -98.4375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 273, - 'geohash': 'dj9', - 'center': [ - -87.890625, - 31.640625 - ], - 'rectangle': [ - [ - -88.59375, - 30.9375 - ], - [ - -87.1875, - 30.9375 - ], - [ - -87.1875, - 32.34375 - ], - [ - -88.59375, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 262, - 'geohash': '9yj', - 'center': [ - -93.515625, - 34.453125 - ], - 'rectangle': [ - [ - -94.21875, - 33.75 - ], - [ - -92.8125, - 33.75 - ], - [ - -92.8125, - 35.15625 - ], - [ - -94.21875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 254, - 'geohash': 'dpd', - 'center': [ - -86.484375, - 42.890625 - ], - 'rectangle': [ - [ - -87.1875, - 42.1875 - ], - [ - -85.78125, - 42.1875 - ], - [ - -85.78125, - 43.59375 - ], - [ - -87.1875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 271, - 'geohash': '9tz', - 'center': [ - -101.953125, - 33.046875 - ], - 'rectangle': [ - [ - -102.65625, - 32.34375 - ], - [ - -101.25, - 32.34375 - ], - [ - -101.25, - 33.75 - ], - [ - -102.65625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 257, - 'geohash': '9yg', - 'center': [ - -96.328125, - 38.671875 - ], - 'rectangle': [ - [ - -97.03125, - 37.96875 - ], - [ - -95.625, - 37.96875 - ], - [ - -95.625, - 39.375 - ], - [ - -97.03125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 263, - 'geohash': 'c2k', - 'center': [ - -117.421875, - 47.109375 - ], - 'rectangle': [ - [ - -118.125, - 46.40625 - ], - [ - -116.71875, - 46.40625 - ], - [ - -116.71875, - 47.8125 - ], - [ - -118.125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 273, - 'geohash': '9yh', - 'center': [ - -94.921875, - 34.453125 - ], - 'rectangle': [ - [ - -95.625, - 33.75 - ], - [ - -94.21875, - 33.75 - ], - [ - -94.21875, - 35.15625 - ], - [ - -95.625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 256, - 'geohash': 'c8x', - 'center': [ - -101.953125, - 48.515625 - ], - 'rectangle': [ - [ - -102.65625, - 47.8125 - ], - [ - -101.25, - 47.8125 - ], - [ - -101.25, - 49.21875 - ], - [ - -102.65625, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 26.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 255, - 'geohash': '9ud', - 'center': [ - -97.734375, - 26.015625 - ], - 'rectangle': [ - [ - -98.4375, - 25.3125 - ], - [ - -97.03125, - 25.3125 - ], - [ - -97.03125, - 26.71875 - ], - [ - -98.4375, - 26.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 258, - 'geohash': '9zz', - 'center': [ - -90.703125, - 44.296875 - ], - 'rectangle': [ - [ - -91.40625, - 43.59375 - ], - [ - -90, - 43.59375 - ], - [ - -90, - 45 - ], - [ - -91.40625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 253, - 'geohash': '9wz', - 'center': [ - -101.953125, - 38.671875 - ], - 'rectangle': [ - [ - -102.65625, - 37.96875 - ], - [ - -101.25, - 37.96875 - ], - [ - -101.25, - 39.375 - ], - [ - -102.65625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 251, - 'geohash': '9t9', - 'center': [ - -110.390625, - 31.640625 - ], - 'rectangle': [ - [ - -111.09375, - 30.9375 - ], - [ - -109.6875, - 30.9375 - ], - [ - -109.6875, - 32.34375 - ], - [ - -111.09375, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -134.296875, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 245, - 'geohash': 'c40', - 'center': [ - -134.296875, - 56.953125 - ], - 'rectangle': [ - [ - -135, - 56.25 - ], - [ - -133.59375, - 56.25 - ], - [ - -133.59375, - 57.65625 - ], - [ - -135, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 247, - 'geohash': '9yv', - 'center': [ - -93.515625, - 38.671875 - ], - 'rectangle': [ - [ - -94.21875, - 37.96875 - ], - [ - -92.8125, - 37.96875 - ], - [ - -92.8125, - 39.375 - ], - [ - -94.21875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 257, - 'geohash': '9w1', - 'center': [ - -110.390625, - 34.453125 - ], - 'rectangle': [ - [ - -111.09375, - 33.75 - ], - [ - -109.6875, - 33.75 - ], - [ - -109.6875, - 35.15625 - ], - [ - -111.09375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -71.015625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 240, - 'geohash': 'drv', - 'center': [ - -71.015625, - 44.296875 - ], - 'rectangle': [ - [ - -71.71875, - 43.59375 - ], - [ - -70.3125, - 43.59375 - ], - [ - -70.3125, - 45 - ], - [ - -71.71875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 247, - 'geohash': 'djw', - 'center': [ - -80.859375, - 31.640625 - ], - 'rectangle': [ - [ - -81.5625, - 30.9375 - ], - [ - -80.15625, - 30.9375 - ], - [ - -80.15625, - 32.34375 - ], - [ - -81.5625, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 254, - 'geohash': '9wr', - 'center': [ - -101.953125, - 35.859375 - ], - 'rectangle': [ - [ - -102.65625, - 35.15625 - ], - [ - -101.25, - 35.15625 - ], - [ - -101.25, - 36.5625 - ], - [ - -102.65625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 233, - 'geohash': '9v5', - 'center': [ - -96.328125, - 28.828125 - ], - 'rectangle': [ - [ - -97.03125, - 28.125 - ], - [ - -95.625, - 28.125 - ], - [ - -95.625, - 29.53125 - ], - [ - -97.03125, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 236, - 'geohash': '9vt', - 'center': [ - -93.515625, - 31.640625 - ], - 'rectangle': [ - [ - -94.21875, - 30.9375 - ], - [ - -92.8125, - 30.9375 - ], - [ - -92.8125, - 32.34375 - ], - [ - -94.21875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 235, - 'geohash': 'cbh', - 'center': [ - -94.921875, - 45.703125 - ], - 'rectangle': [ - [ - -95.625, - 45 - ], - [ - -94.21875, - 45 - ], - [ - -94.21875, - 46.40625 - ], - [ - -95.625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 240, - 'geohash': '9wx', - 'center': [ - -101.953125, - 37.265625 - ], - 'rectangle': [ - [ - -102.65625, - 36.5625 - ], - [ - -101.25, - 36.5625 - ], - [ - -101.25, - 37.96875 - ], - [ - -102.65625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 238, - 'geohash': '9xy', - 'center': [ - -103.359375, - 44.296875 - ], - 'rectangle': [ - [ - -104.0625, - 43.59375 - ], - [ - -102.65625, - 43.59375 - ], - [ - -102.65625, - 45 - ], - [ - -104.0625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 238, - 'geohash': 'c80', - 'center': [ - -111.796875, - 45.703125 - ], - 'rectangle': [ - [ - -112.5, - 45 - ], - [ - -111.09375, - 45 - ], - [ - -111.09375, - 46.40625 - ], - [ - -112.5, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 238, - 'geohash': '9vs', - 'center': [ - -94.921875, - 31.640625 - ], - 'rectangle': [ - [ - -95.625, - 30.9375 - ], - [ - -94.21875, - 30.9375 - ], - [ - -94.21875, - 32.34375 - ], - [ - -95.625, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 226, - 'geohash': 'cb1', - 'center': [ - -99.140625, - 45.703125 - ], - 'rectangle': [ - [ - -99.84375, - 45 - ], - [ - -98.4375, - 45 - ], - [ - -98.4375, - 46.40625 - ], - [ - -99.84375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 227, - 'geohash': 'c24', - 'center': [ - -120.234375, - 45.703125 - ], - 'rectangle': [ - [ - -120.9375, - 45 - ], - [ - -119.53125, - 45 - ], - [ - -119.53125, - 46.40625 - ], - [ - -120.9375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 224, - 'geohash': 'b6v', - 'center': [ - -161.015625, - 61.171875 - ], - 'rectangle': [ - [ - -161.71875, - 60.46875 - ], - [ - -160.3125, - 60.46875 - ], - [ - -160.3125, - 61.875 - ], - [ - -161.71875, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 222, - 'geohash': 'dj7', - 'center': [ - -85.078125, - 30.234375 - ], - 'rectangle': [ - [ - -85.78125, - 29.53125 - ], - [ - -84.375, - 29.53125 - ], - [ - -84.375, - 30.9375 - ], - [ - -85.78125, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 222, - 'geohash': '9we', - 'center': [ - -107.578125, - 37.265625 - ], - 'rectangle': [ - [ - -108.28125, - 36.5625 - ], - [ - -106.875, - 36.5625 - ], - [ - -106.875, - 37.96875 - ], - [ - -108.28125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 236, - 'geohash': '9q6', - 'center': [ - -120.234375, - 35.859375 - ], - 'rectangle': [ - [ - -120.9375, - 35.15625 - ], - [ - -119.53125, - 35.15625 - ], - [ - -119.53125, - 36.5625 - ], - [ - -120.9375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 216, - 'geohash': '9x0', - 'center': [ - -111.796875, - 40.078125 - ], - 'rectangle': [ - [ - -112.5, - 39.375 - ], - [ - -111.09375, - 39.375 - ], - [ - -111.09375, - 40.78125 - ], - [ - -112.5, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 216, - 'geohash': 'dj6', - 'center': [ - -86.484375, - 30.234375 - ], - 'rectangle': [ - [ - -87.1875, - 29.53125 - ], - [ - -85.78125, - 29.53125 - ], - [ - -85.78125, - 30.9375 - ], - [ - -87.1875, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 207, - 'geohash': '9mv', - 'center': [ - -116.015625, - 33.046875 - ], - 'rectangle': [ - [ - -116.71875, - 32.34375 - ], - [ - -115.3125, - 32.34375 - ], - [ - -115.3125, - 33.75 - ], - [ - -116.71875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 202, - 'geohash': '9z9', - 'center': [ - -99.140625, - 42.890625 - ], - 'rectangle': [ - [ - -99.84375, - 42.1875 - ], - [ - -98.4375, - 42.1875 - ], - [ - -98.4375, - 43.59375 - ], - [ - -99.84375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 234, - 'geohash': '9qe', - 'center': [ - -118.828125, - 37.265625 - ], - 'rectangle': [ - [ - -119.53125, - 36.5625 - ], - [ - -118.125, - 36.5625 - ], - [ - -118.125, - 37.96875 - ], - [ - -119.53125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 206, - 'geohash': 'cb6', - 'center': [ - -97.734375, - 47.109375 - ], - 'rectangle': [ - [ - -98.4375, - 46.40625 - ], - [ - -97.03125, - 46.40625 - ], - [ - -97.03125, - 47.8125 - ], - [ - -98.4375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -155.390625, - 20.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 221, - 'geohash': '8e9', - 'center': [ - -155.390625, - 20.390625 - ], - 'rectangle': [ - [ - -156.09375, - 19.6875 - ], - [ - -154.6875, - 19.6875 - ], - [ - -154.6875, - 21.09375 - ], - [ - -156.09375, - 21.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 204, - 'geohash': 'c26', - 'center': [ - -120.234375, - 47.109375 - ], - 'rectangle': [ - [ - -120.9375, - 46.40625 - ], - [ - -119.53125, - 46.40625 - ], - [ - -119.53125, - 47.8125 - ], - [ - -120.9375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 210, - 'geohash': '9xr', - 'center': [ - -101.953125, - 41.484375 - ], - 'rectangle': [ - [ - -102.65625, - 40.78125 - ], - [ - -101.25, - 40.78125 - ], - [ - -101.25, - 42.1875 - ], - [ - -102.65625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 207, - 'geohash': 'bd7', - 'center': [ - -152.578125, - 58.359375 - ], - 'rectangle': [ - [ - -153.28125, - 57.65625 - ], - [ - -151.875, - 57.65625 - ], - [ - -151.875, - 59.0625 - ], - [ - -153.28125, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 208, - 'geohash': 'c88', - 'center': [ - -111.796875, - 48.515625 - ], - 'rectangle': [ - [ - -112.5, - 47.8125 - ], - [ - -111.09375, - 47.8125 - ], - [ - -111.09375, - 49.21875 - ], - [ - -112.5, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 217, - 'geohash': '9x2', - 'center': [ - -111.796875, - 41.484375 - ], - 'rectangle': [ - [ - -112.5, - 40.78125 - ], - [ - -111.09375, - 40.78125 - ], - [ - -111.09375, - 42.1875 - ], - [ - -112.5, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 217, - 'geohash': '9r3', - 'center': [ - -121.640625, - 41.484375 - ], - 'rectangle': [ - [ - -122.34375, - 40.78125 - ], - [ - -120.9375, - 40.78125 - ], - [ - -120.9375, - 42.1875 - ], - [ - -122.34375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -69.609375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 199, - 'geohash': 'f2n', - 'center': [ - -69.609375, - 45.703125 - ], - 'rectangle': [ - [ - -70.3125, - 45 - ], - [ - -68.90625, - 45 - ], - [ - -68.90625, - 46.40625 - ], - [ - -70.3125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 213, - 'geohash': 'c2p', - 'center': [ - -113.203125, - 45.703125 - ], - 'rectangle': [ - [ - -113.90625, - 45 - ], - [ - -112.5, - 45 - ], - [ - -112.5, - 46.40625 - ], - [ - -113.90625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 206, - 'geohash': 'c25', - 'center': [ - -118.828125, - 45.703125 - ], - 'rectangle': [ - [ - -119.53125, - 45 - ], - [ - -118.125, - 45 - ], - [ - -118.125, - 46.40625 - ], - [ - -119.53125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 207, - 'geohash': 'dny', - 'center': [ - -80.859375, - 38.671875 - ], - 'rectangle': [ - [ - -81.5625, - 37.96875 - ], - [ - -80.15625, - 37.96875 - ], - [ - -80.15625, - 39.375 - ], - [ - -81.5625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 195, - 'geohash': '9yt', - 'center': [ - -93.515625, - 37.265625 - ], - 'rectangle': [ - [ - -94.21875, - 36.5625 - ], - [ - -92.8125, - 36.5625 - ], - [ - -92.8125, - 37.96875 - ], - [ - -94.21875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 214, - 'geohash': '9ye', - 'center': [ - -96.328125, - 37.265625 - ], - 'rectangle': [ - [ - -97.03125, - 36.5625 - ], - [ - -95.625, - 36.5625 - ], - [ - -95.625, - 37.96875 - ], - [ - -97.03125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 205, - 'geohash': '9v3', - 'center': [ - -99.140625, - 30.234375 - ], - 'rectangle': [ - [ - -99.84375, - 29.53125 - ], - [ - -98.4375, - 29.53125 - ], - [ - -98.4375, - 30.9375 - ], - [ - -99.84375, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 202, - 'geohash': '9qx', - 'center': [ - -113.203125, - 37.265625 - ], - 'rectangle': [ - [ - -113.90625, - 36.5625 - ], - [ - -112.5, - 36.5625 - ], - [ - -112.5, - 37.96875 - ], - [ - -113.90625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 196, - 'geohash': '9zb', - 'center': [ - -100.546875, - 44.296875 - ], - 'rectangle': [ - [ - -101.25, - 43.59375 - ], - [ - -99.84375, - 43.59375 - ], - [ - -99.84375, - 45 - ], - [ - -101.25, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 26.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 205, - 'geohash': 'dhx', - 'center': [ - -79.453125, - 26.015625 - ], - 'rectangle': [ - [ - -80.15625, - 25.3125 - ], - [ - -78.75, - 25.3125 - ], - [ - -78.75, - 26.71875 - ], - [ - -80.15625, - 26.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 198, - 'geohash': '9q4', - 'center': [ - -120.234375, - 34.453125 - ], - 'rectangle': [ - [ - -120.9375, - 33.75 - ], - [ - -119.53125, - 33.75 - ], - [ - -119.53125, - 35.15625 - ], - [ - -120.9375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 198, - 'geohash': 'b6p', - 'center': [ - -158.203125, - 56.953125 - ], - 'rectangle': [ - [ - -158.90625, - 56.25 - ], - [ - -157.5, - 56.25 - ], - [ - -157.5, - 57.65625 - ], - [ - -158.90625, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 194, - 'geohash': '9w0', - 'center': [ - -111.796875, - 34.453125 - ], - 'rectangle': [ - [ - -112.5, - 33.75 - ], - [ - -111.09375, - 33.75 - ], - [ - -111.09375, - 35.15625 - ], - [ - -112.5, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 189, - 'geohash': '9ve', - 'center': [ - -96.328125, - 31.640625 - ], - 'rectangle': [ - [ - -97.03125, - 30.9375 - ], - [ - -95.625, - 30.9375 - ], - [ - -95.625, - 32.34375 - ], - [ - -97.03125, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 201, - 'geohash': 'c8p', - 'center': [ - -101.953125, - 45.703125 - ], - 'rectangle': [ - [ - -102.65625, - 45 - ], - [ - -101.25, - 45 - ], - [ - -101.25, - 46.40625 - ], - [ - -102.65625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 195, - 'geohash': '9r8', - 'center': [ - -123.046875, - 42.890625 - ], - 'rectangle': [ - [ - -123.75, - 42.1875 - ], - [ - -122.34375, - 42.1875 - ], - [ - -122.34375, - 43.59375 - ], - [ - -123.75, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 180, - 'geohash': 'f01', - 'center': [ - -87.890625, - 45.703125 - ], - 'rectangle': [ - [ - -88.59375, - 45 - ], - [ - -87.1875, - 45 - ], - [ - -87.1875, - 46.40625 - ], - [ - -88.59375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 174, - 'geohash': '9x5', - 'center': [ - -107.578125, - 40.078125 - ], - 'rectangle': [ - [ - -108.28125, - 39.375 - ], - [ - -106.875, - 39.375 - ], - [ - -106.875, - 40.78125 - ], - [ - -108.28125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 185, - 'geohash': '9rw', - 'center': [ - -114.609375, - 42.890625 - ], - 'rectangle': [ - [ - -115.3125, - 42.1875 - ], - [ - -113.90625, - 42.1875 - ], - [ - -113.90625, - 43.59375 - ], - [ - -115.3125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 191, - 'geohash': 'cbp', - 'center': [ - -90.703125, - 45.703125 - ], - 'rectangle': [ - [ - -91.40625, - 45 - ], - [ - -90, - 45 - ], - [ - -90, - 46.40625 - ], - [ - -91.40625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 186, - 'geohash': '9ty', - 'center': [ - -103.359375, - 33.046875 - ], - 'rectangle': [ - [ - -104.0625, - 32.34375 - ], - [ - -102.65625, - 32.34375 - ], - [ - -102.65625, - 33.75 - ], - [ - -104.0625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 178, - 'geohash': '9wv', - 'center': [ - -104.765625, - 38.671875 - ], - 'rectangle': [ - [ - -105.46875, - 37.96875 - ], - [ - -104.0625, - 37.96875 - ], - [ - -104.0625, - 39.375 - ], - [ - -105.46875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 186, - 'geohash': '9xz', - 'center': [ - -101.953125, - 44.296875 - ], - 'rectangle': [ - [ - -102.65625, - 43.59375 - ], - [ - -101.25, - 43.59375 - ], - [ - -101.25, - 45 - ], - [ - -102.65625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 177, - 'geohash': '9tx', - 'center': [ - -101.953125, - 31.640625 - ], - 'rectangle': [ - [ - -102.65625, - 30.9375 - ], - [ - -101.25, - 30.9375 - ], - [ - -101.25, - 32.34375 - ], - [ - -102.65625, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 179, - 'geohash': '9tf', - 'center': [ - -108.984375, - 33.046875 - ], - 'rectangle': [ - [ - -109.6875, - 32.34375 - ], - [ - -108.28125, - 32.34375 - ], - [ - -108.28125, - 33.75 - ], - [ - -109.6875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 180, - 'geohash': '9xp', - 'center': [ - -101.953125, - 40.078125 - ], - 'rectangle': [ - [ - -102.65625, - 39.375 - ], - [ - -101.25, - 39.375 - ], - [ - -101.25, - 40.78125 - ], - [ - -102.65625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 179, - 'geohash': '9yx', - 'center': [ - -90.703125, - 37.265625 - ], - 'rectangle': [ - [ - -91.40625, - 36.5625 - ], - [ - -90, - 36.5625 - ], - [ - -90, - 37.96875 - ], - [ - -91.40625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 181, - 'geohash': 'dpu', - 'center': [ - -83.671875, - 44.296875 - ], - 'rectangle': [ - [ - -84.375, - 43.59375 - ], - [ - -82.96875, - 43.59375 - ], - [ - -82.96875, - 45 - ], - [ - -84.375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 170, - 'geohash': 'f04', - 'center': [ - -86.484375, - 45.703125 - ], - 'rectangle': [ - [ - -87.1875, - 45 - ], - [ - -85.78125, - 45 - ], - [ - -85.78125, - 46.40625 - ], - [ - -87.1875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 174, - 'geohash': '9pr', - 'center': [ - -124.453125, - 41.484375 - ], - 'rectangle': [ - [ - -125.15625, - 40.78125 - ], - [ - -123.75, - 40.78125 - ], - [ - -123.75, - 42.1875 - ], - [ - -125.15625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 179, - 'geohash': '9xn', - 'center': [ - -103.359375, - 40.078125 - ], - 'rectangle': [ - [ - -104.0625, - 39.375 - ], - [ - -102.65625, - 39.375 - ], - [ - -102.65625, - 40.78125 - ], - [ - -104.0625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -135.703125, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 173, - 'geohash': 'bfx', - 'center': [ - -135.703125, - 59.765625 - ], - 'rectangle': [ - [ - -136.40625, - 59.0625 - ], - [ - -135, - 59.0625 - ], - [ - -135, - 60.46875 - ], - [ - -136.40625, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 171, - 'geohash': '9zj', - 'center': [ - -93.515625, - 40.078125 - ], - 'rectangle': [ - [ - -94.21875, - 39.375 - ], - [ - -92.8125, - 39.375 - ], - [ - -92.8125, - 40.78125 - ], - [ - -94.21875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 173, - 'geohash': '9y9', - 'center': [ - -99.140625, - 37.265625 - ], - 'rectangle': [ - [ - -99.84375, - 36.5625 - ], - [ - -98.4375, - 36.5625 - ], - [ - -98.4375, - 37.96875 - ], - [ - -99.84375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 183, - 'geohash': '9xg', - 'center': [ - -107.578125, - 44.296875 - ], - 'rectangle': [ - [ - -108.28125, - 43.59375 - ], - [ - -106.875, - 43.59375 - ], - [ - -106.875, - 45 - ], - [ - -108.28125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 178, - 'geohash': 'djq', - 'center': [ - -80.859375, - 30.234375 - ], - 'rectangle': [ - [ - -81.5625, - 29.53125 - ], - [ - -80.15625, - 29.53125 - ], - [ - -80.15625, - 30.9375 - ], - [ - -81.5625, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 165, - 'geohash': '9w8', - 'center': [ - -111.796875, - 37.265625 - ], - 'rectangle': [ - [ - -112.5, - 36.5625 - ], - [ - -111.09375, - 36.5625 - ], - [ - -111.09375, - 37.96875 - ], - [ - -112.5, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 169, - 'geohash': '9tw', - 'center': [ - -103.359375, - 31.640625 - ], - 'rectangle': [ - [ - -104.0625, - 30.9375 - ], - [ - -102.65625, - 30.9375 - ], - [ - -102.65625, - 32.34375 - ], - [ - -104.0625, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 161, - 'geohash': '9ru', - 'center': [ - -117.421875, - 44.296875 - ], - 'rectangle': [ - [ - -118.125, - 43.59375 - ], - [ - -116.71875, - 43.59375 - ], - [ - -116.71875, - 45 - ], - [ - -118.125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -65.390625, - 17.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 162, - 'geohash': 'de1', - 'center': [ - -65.390625, - 17.578125 - ], - 'rectangle': [ - [ - -66.09375, - 16.875 - ], - [ - -64.6875, - 16.875 - ], - [ - -64.6875, - 18.28125 - ], - [ - -66.09375, - 18.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 168, - 'geohash': '9qn', - 'center': [ - -114.609375, - 34.453125 - ], - 'rectangle': [ - [ - -115.3125, - 33.75 - ], - [ - -113.90625, - 33.75 - ], - [ - -113.90625, - 35.15625 - ], - [ - -115.3125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 166, - 'geohash': '9y2', - 'center': [ - -100.546875, - 35.859375 - ], - 'rectangle': [ - [ - -101.25, - 35.15625 - ], - [ - -99.84375, - 35.15625 - ], - [ - -99.84375, - 36.5625 - ], - [ - -101.25, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 164, - 'geohash': '9rv', - 'center': [ - -116.015625, - 44.296875 - ], - 'rectangle': [ - [ - -116.71875, - 43.59375 - ], - [ - -115.3125, - 43.59375 - ], - [ - -115.3125, - 45 - ], - [ - -116.71875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -163.828125, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 165, - 'geohash': 'b75', - 'center': [ - -163.828125, - 62.578125 - ], - 'rectangle': [ - [ - -164.53125, - 61.875 - ], - [ - -163.125, - 61.875 - ], - [ - -163.125, - 63.28125 - ], - [ - -164.53125, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 171, - 'geohash': '9yb', - 'center': [ - -100.546875, - 38.671875 - ], - 'rectangle': [ - [ - -101.25, - 37.96875 - ], - [ - -99.84375, - 37.96875 - ], - [ - -99.84375, - 39.375 - ], - [ - -101.25, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 166, - 'geohash': 'dpx', - 'center': [ - -79.453125, - 42.890625 - ], - 'rectangle': [ - [ - -80.15625, - 42.1875 - ], - [ - -78.75, - 42.1875 - ], - [ - -78.75, - 43.59375 - ], - [ - -80.15625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 176, - 'geohash': 'dpt', - 'center': [ - -82.265625, - 42.890625 - ], - 'rectangle': [ - [ - -82.96875, - 42.1875 - ], - [ - -81.5625, - 42.1875 - ], - [ - -81.5625, - 43.59375 - ], - [ - -82.96875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 161, - 'geohash': 'c83', - 'center': [ - -110.390625, - 47.109375 - ], - 'rectangle': [ - [ - -111.09375, - 46.40625 - ], - [ - -109.6875, - 46.40625 - ], - [ - -109.6875, - 47.8125 - ], - [ - -111.09375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 173, - 'geohash': 'b6s', - 'center': [ - -162.421875, - 59.765625 - ], - 'rectangle': [ - [ - -163.125, - 59.0625 - ], - [ - -161.71875, - 59.0625 - ], - [ - -161.71875, - 60.46875 - ], - [ - -163.125, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 174, - 'geohash': '9xq', - 'center': [ - -103.359375, - 41.484375 - ], - 'rectangle': [ - [ - -104.0625, - 40.78125 - ], - [ - -102.65625, - 40.78125 - ], - [ - -102.65625, - 42.1875 - ], - [ - -104.0625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 166, - 'geohash': 'b7n', - 'center': [ - -159.609375, - 62.578125 - ], - 'rectangle': [ - [ - -160.3125, - 61.875 - ], - [ - -158.90625, - 61.875 - ], - [ - -158.90625, - 63.28125 - ], - [ - -160.3125, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 157, - 'geohash': '9rc', - 'center': [ - -121.640625, - 44.296875 - ], - 'rectangle': [ - [ - -122.34375, - 43.59375 - ], - [ - -120.9375, - 43.59375 - ], - [ - -120.9375, - 45 - ], - [ - -122.34375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 170, - 'geohash': '9vh', - 'center': [ - -94.921875, - 28.828125 - ], - 'rectangle': [ - [ - -95.625, - 28.125 - ], - [ - -94.21875, - 28.125 - ], - [ - -94.21875, - 29.53125 - ], - [ - -95.625, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -69.609375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 165, - 'geohash': 'drq', - 'center': [ - -69.609375, - 41.484375 - ], - 'rectangle': [ - [ - -70.3125, - 40.78125 - ], - [ - -68.90625, - 40.78125 - ], - [ - -68.90625, - 42.1875 - ], - [ - -70.3125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 170, - 'geohash': 'cb2', - 'center': [ - -100.546875, - 47.109375 - ], - 'rectangle': [ - [ - -101.25, - 46.40625 - ], - [ - -99.84375, - 46.40625 - ], - [ - -99.84375, - 47.8125 - ], - [ - -101.25, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -134.296875, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 156, - 'geohash': 'c42', - 'center': [ - -134.296875, - 58.359375 - ], - 'rectangle': [ - [ - -135, - 57.65625 - ], - [ - -133.59375, - 57.65625 - ], - [ - -133.59375, - 59.0625 - ], - [ - -135, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 165, - 'geohash': '9xx', - 'center': [ - -101.953125, - 42.890625 - ], - 'rectangle': [ - [ - -102.65625, - 42.1875 - ], - [ - -101.25, - 42.1875 - ], - [ - -101.25, - 43.59375 - ], - [ - -102.65625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 163, - 'geohash': '9tu', - 'center': [ - -106.171875, - 33.046875 - ], - 'rectangle': [ - [ - -106.875, - 32.34375 - ], - [ - -105.46875, - 32.34375 - ], - [ - -105.46875, - 33.75 - ], - [ - -106.875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 162, - 'geohash': 'cbe', - 'center': [ - -96.328125, - 48.515625 - ], - 'rectangle': [ - [ - -97.03125, - 47.8125 - ], - [ - -95.625, - 47.8125 - ], - [ - -95.625, - 49.21875 - ], - [ - -97.03125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -132.890625, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 158, - 'geohash': 'c41', - 'center': [ - -132.890625, - 56.953125 - ], - 'rectangle': [ - [ - -133.59375, - 56.25 - ], - [ - -132.1875, - 56.25 - ], - [ - -132.1875, - 57.65625 - ], - [ - -133.59375, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 165, - 'geohash': '9wm', - 'center': [ - -104.765625, - 35.859375 - ], - 'rectangle': [ - [ - -105.46875, - 35.15625 - ], - [ - -104.0625, - 35.15625 - ], - [ - -104.0625, - 36.5625 - ], - [ - -105.46875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 156, - 'geohash': '9w6', - 'center': [ - -108.984375, - 35.859375 - ], - 'rectangle': [ - [ - -109.6875, - 35.15625 - ], - [ - -108.28125, - 35.15625 - ], - [ - -108.28125, - 36.5625 - ], - [ - -109.6875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 155, - 'geohash': 'c8t', - 'center': [ - -104.765625, - 48.515625 - ], - 'rectangle': [ - [ - -105.46875, - 47.8125 - ], - [ - -104.0625, - 47.8125 - ], - [ - -104.0625, - 49.21875 - ], - [ - -105.46875, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 157, - 'geohash': '9wd', - 'center': [ - -108.984375, - 37.265625 - ], - 'rectangle': [ - [ - -109.6875, - 36.5625 - ], - [ - -108.28125, - 36.5625 - ], - [ - -108.28125, - 37.96875 - ], - [ - -109.6875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 153, - 'geohash': 'f0h', - 'center': [ - -83.671875, - 45.703125 - ], - 'rectangle': [ - [ - -84.375, - 45 - ], - [ - -82.96875, - 45 - ], - [ - -82.96875, - 46.40625 - ], - [ - -84.375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 164, - 'geohash': '9zc', - 'center': [ - -99.140625, - 44.296875 - ], - 'rectangle': [ - [ - -99.84375, - 43.59375 - ], - [ - -98.4375, - 43.59375 - ], - [ - -98.4375, - 45 - ], - [ - -99.84375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 165, - 'geohash': 'cbk', - 'center': [ - -94.921875, - 47.109375 - ], - 'rectangle': [ - [ - -95.625, - 46.40625 - ], - [ - -94.21875, - 46.40625 - ], - [ - -94.21875, - 47.8125 - ], - [ - -95.625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 153, - 'geohash': '9yc', - 'center': [ - -99.140625, - 38.671875 - ], - 'rectangle': [ - [ - -99.84375, - 37.96875 - ], - [ - -98.4375, - 37.96875 - ], - [ - -98.4375, - 39.375 - ], - [ - -99.84375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -155.390625, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 159, - 'geohash': 'bd9', - 'center': [ - -155.390625, - 59.765625 - ], - 'rectangle': [ - [ - -156.09375, - 59.0625 - ], - [ - -154.6875, - 59.0625 - ], - [ - -154.6875, - 60.46875 - ], - [ - -156.09375, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 155, - 'geohash': 'bd2', - 'center': [ - -156.796875, - 58.359375 - ], - 'rectangle': [ - [ - -157.5, - 57.65625 - ], - [ - -156.09375, - 57.65625 - ], - [ - -156.09375, - 59.0625 - ], - [ - -157.5, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 150, - 'geohash': '9wk', - 'center': [ - -106.171875, - 35.859375 - ], - 'rectangle': [ - [ - -106.875, - 35.15625 - ], - [ - -105.46875, - 35.15625 - ], - [ - -105.46875, - 36.5625 - ], - [ - -106.875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 158, - 'geohash': '9r4', - 'center': [ - -120.234375, - 40.078125 - ], - 'rectangle': [ - [ - -120.9375, - 39.375 - ], - [ - -119.53125, - 39.375 - ], - [ - -119.53125, - 40.78125 - ], - [ - -120.9375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 156, - 'geohash': '9xm', - 'center': [ - -104.765625, - 41.484375 - ], - 'rectangle': [ - [ - -105.46875, - 40.78125 - ], - [ - -104.0625, - 40.78125 - ], - [ - -104.0625, - 42.1875 - ], - [ - -105.46875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 155, - 'geohash': '9v4', - 'center': [ - -97.734375, - 28.828125 - ], - 'rectangle': [ - [ - -98.4375, - 28.125 - ], - [ - -97.03125, - 28.125 - ], - [ - -97.03125, - 29.53125 - ], - [ - -98.4375, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 153, - 'geohash': '9x9', - 'center': [ - -110.390625, - 42.890625 - ], - 'rectangle': [ - [ - -111.09375, - 42.1875 - ], - [ - -109.6875, - 42.1875 - ], - [ - -109.6875, - 43.59375 - ], - [ - -111.09375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 151, - 'geohash': 'cb0', - 'center': [ - -100.546875, - 45.703125 - ], - 'rectangle': [ - [ - -101.25, - 45 - ], - [ - -99.84375, - 45 - ], - [ - -99.84375, - 46.40625 - ], - [ - -101.25, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 159, - 'geohash': '9pp', - 'center': [ - -124.453125, - 40.078125 - ], - 'rectangle': [ - [ - -125.15625, - 39.375 - ], - [ - -123.75, - 39.375 - ], - [ - -123.75, - 40.78125 - ], - [ - -125.15625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 142, - 'geohash': '9qw', - 'center': [ - -114.609375, - 37.265625 - ], - 'rectangle': [ - [ - -115.3125, - 36.5625 - ], - [ - -113.90625, - 36.5625 - ], - [ - -113.90625, - 37.96875 - ], - [ - -115.3125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 144, - 'geohash': 'c89', - 'center': [ - -110.390625, - 48.515625 - ], - 'rectangle': [ - [ - -111.09375, - 47.8125 - ], - [ - -109.6875, - 47.8125 - ], - [ - -109.6875, - 49.21875 - ], - [ - -111.09375, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 156, - 'geohash': '9v9', - 'center': [ - -99.140625, - 31.640625 - ], - 'rectangle': [ - [ - -99.84375, - 30.9375 - ], - [ - -98.4375, - 30.9375 - ], - [ - -98.4375, - 32.34375 - ], - [ - -99.84375, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -68.203125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 148, - 'geohash': 'f2p', - 'center': [ - -68.203125, - 45.703125 - ], - 'rectangle': [ - [ - -68.90625, - 45 - ], - [ - -67.5, - 45 - ], - [ - -67.5, - 46.40625 - ], - [ - -68.90625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 150, - 'geohash': 'b7t', - 'center': [ - -161.015625, - 65.390625 - ], - 'rectangle': [ - [ - -161.71875, - 64.6875 - ], - [ - -160.3125, - 64.6875 - ], - [ - -160.3125, - 66.09375 - ], - [ - -161.71875, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 144, - 'geohash': 'cbm', - 'center': [ - -93.515625, - 47.109375 - ], - 'rectangle': [ - [ - -94.21875, - 46.40625 - ], - [ - -92.8125, - 46.40625 - ], - [ - -92.8125, - 47.8125 - ], - [ - -94.21875, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 140, - 'geohash': 'bd8', - 'center': [ - -156.796875, - 59.765625 - ], - 'rectangle': [ - [ - -157.5, - 59.0625 - ], - [ - -156.09375, - 59.0625 - ], - [ - -156.09375, - 60.46875 - ], - [ - -157.5, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 142, - 'geohash': 'c2s', - 'center': [ - -117.421875, - 48.515625 - ], - 'rectangle': [ - [ - -118.125, - 47.8125 - ], - [ - -116.71875, - 47.8125 - ], - [ - -116.71875, - 49.21875 - ], - [ - -118.125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 133, - 'geohash': 'b7k', - 'center': [ - -162.421875, - 63.984375 - ], - 'rectangle': [ - [ - -163.125, - 63.28125 - ], - [ - -161.71875, - 63.28125 - ], - [ - -161.71875, - 64.6875 - ], - [ - -163.125, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -68.203125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 142, - 'geohash': 'drz', - 'center': [ - -68.203125, - 44.296875 - ], - 'rectangle': [ - [ - -68.90625, - 43.59375 - ], - [ - -67.5, - 43.59375 - ], - [ - -67.5, - 45 - ], - [ - -68.90625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 144, - 'geohash': '9wu', - 'center': [ - -106.171875, - 38.671875 - ], - 'rectangle': [ - [ - -106.875, - 37.96875 - ], - [ - -105.46875, - 37.96875 - ], - [ - -105.46875, - 39.375 - ], - [ - -106.875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 132, - 'geohash': 'c84', - 'center': [ - -108.984375, - 45.703125 - ], - 'rectangle': [ - [ - -109.6875, - 45 - ], - [ - -108.28125, - 45 - ], - [ - -108.28125, - 46.40625 - ], - [ - -109.6875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 141, - 'geohash': 'c8d', - 'center': [ - -108.984375, - 48.515625 - ], - 'rectangle': [ - [ - -109.6875, - 47.8125 - ], - [ - -108.28125, - 47.8125 - ], - [ - -108.28125, - 49.21875 - ], - [ - -109.6875, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 137, - 'geohash': '9y0', - 'center': [ - -100.546875, - 34.453125 - ], - 'rectangle': [ - [ - -101.25, - 33.75 - ], - [ - -99.84375, - 33.75 - ], - [ - -99.84375, - 35.15625 - ], - [ - -101.25, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 135, - 'geohash': '9wh', - 'center': [ - -106.171875, - 34.453125 - ], - 'rectangle': [ - [ - -106.875, - 33.75 - ], - [ - -105.46875, - 33.75 - ], - [ - -105.46875, - 35.15625 - ], - [ - -106.875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 140, - 'geohash': '9xw', - 'center': [ - -103.359375, - 42.890625 - ], - 'rectangle': [ - [ - -104.0625, - 42.1875 - ], - [ - -102.65625, - 42.1875 - ], - [ - -102.65625, - 43.59375 - ], - [ - -104.0625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 140, - 'geohash': 'dnz', - 'center': [ - -79.453125, - 38.671875 - ], - 'rectangle': [ - [ - -80.15625, - 37.96875 - ], - [ - -78.75, - 37.96875 - ], - [ - -78.75, - 39.375 - ], - [ - -80.15625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 131, - 'geohash': '9ts', - 'center': [ - -106.171875, - 31.640625 - ], - 'rectangle': [ - [ - -106.875, - 30.9375 - ], - [ - -105.46875, - 30.9375 - ], - [ - -105.46875, - 32.34375 - ], - [ - -106.875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 136, - 'geohash': '9xh', - 'center': [ - -106.171875, - 40.078125 - ], - 'rectangle': [ - [ - -106.875, - 39.375 - ], - [ - -105.46875, - 39.375 - ], - [ - -105.46875, - 40.78125 - ], - [ - -106.875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 140, - 'geohash': 'c2d', - 'center': [ - -120.234375, - 48.515625 - ], - 'rectangle': [ - [ - -120.9375, - 47.8125 - ], - [ - -119.53125, - 47.8125 - ], - [ - -119.53125, - 49.21875 - ], - [ - -120.9375, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 133, - 'geohash': 'bdb', - 'center': [ - -156.796875, - 61.171875 - ], - 'rectangle': [ - [ - -157.5, - 60.46875 - ], - [ - -156.09375, - 60.46875 - ], - [ - -156.09375, - 61.875 - ], - [ - -157.5, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 26.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 137, - 'geohash': 'dht', - 'center': [ - -82.265625, - 26.015625 - ], - 'rectangle': [ - [ - -82.96875, - 25.3125 - ], - [ - -81.5625, - 25.3125 - ], - [ - -81.5625, - 26.71875 - ], - [ - -82.96875, - 26.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 124, - 'geohash': 'c8q', - 'center': [ - -103.359375, - 47.109375 - ], - 'rectangle': [ - [ - -104.0625, - 46.40625 - ], - [ - -102.65625, - 46.40625 - ], - [ - -102.65625, - 47.8125 - ], - [ - -104.0625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 128, - 'geohash': 'dpf', - 'center': [ - -86.484375, - 44.296875 - ], - 'rectangle': [ - [ - -87.1875, - 43.59375 - ], - [ - -85.78125, - 43.59375 - ], - [ - -85.78125, - 45 - ], - [ - -87.1875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 123, - 'geohash': 'cb8', - 'center': [ - -100.546875, - 48.515625 - ], - 'rectangle': [ - [ - -101.25, - 47.8125 - ], - [ - -99.84375, - 47.8125 - ], - [ - -99.84375, - 49.21875 - ], - [ - -101.25, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 134, - 'geohash': '9x1', - 'center': [ - -110.390625, - 40.078125 - ], - 'rectangle': [ - [ - -111.09375, - 39.375 - ], - [ - -109.6875, - 39.375 - ], - [ - -109.6875, - 40.78125 - ], - [ - -111.09375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 134, - 'geohash': 'b6r', - 'center': [ - -158.203125, - 58.359375 - ], - 'rectangle': [ - [ - -158.90625, - 57.65625 - ], - [ - -157.5, - 57.65625 - ], - [ - -157.5, - 59.0625 - ], - [ - -158.90625, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 133, - 'geohash': '9tg', - 'center': [ - -107.578125, - 33.046875 - ], - 'rectangle': [ - [ - -108.28125, - 32.34375 - ], - [ - -106.875, - 32.34375 - ], - [ - -106.875, - 33.75 - ], - [ - -108.28125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 20.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 131, - 'geohash': '8e8', - 'center': [ - -156.796875, - 20.390625 - ], - 'rectangle': [ - [ - -157.5, - 19.6875 - ], - [ - -156.09375, - 19.6875 - ], - [ - -156.09375, - 21.09375 - ], - [ - -157.5, - 21.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 129, - 'geohash': 'dq1', - 'center': [ - -76.640625, - 34.453125 - ], - 'rectangle': [ - [ - -77.34375, - 33.75 - ], - [ - -75.9375, - 33.75 - ], - [ - -75.9375, - 35.15625 - ], - [ - -77.34375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 132, - 'geohash': 'c81', - 'center': [ - -110.390625, - 45.703125 - ], - 'rectangle': [ - [ - -111.09375, - 45 - ], - [ - -109.6875, - 45 - ], - [ - -109.6875, - 46.40625 - ], - [ - -111.09375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 123, - 'geohash': 'c29', - 'center': [ - -121.640625, - 48.515625 - ], - 'rectangle': [ - [ - -122.34375, - 47.8125 - ], - [ - -120.9375, - 47.8125 - ], - [ - -120.9375, - 49.21875 - ], - [ - -122.34375, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 126, - 'geohash': 'bds', - 'center': [ - -151.171875, - 59.765625 - ], - 'rectangle': [ - [ - -151.875, - 59.0625 - ], - [ - -150.46875, - 59.0625 - ], - [ - -150.46875, - 60.46875 - ], - [ - -151.875, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 130, - 'geohash': '9ws', - 'center': [ - -106.171875, - 37.265625 - ], - 'rectangle': [ - [ - -106.875, - 36.5625 - ], - [ - -105.46875, - 36.5625 - ], - [ - -105.46875, - 37.96875 - ], - [ - -106.875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 127, - 'geohash': 'c8m', - 'center': [ - -104.765625, - 47.109375 - ], - 'rectangle': [ - [ - -105.46875, - 46.40625 - ], - [ - -104.0625, - 46.40625 - ], - [ - -104.0625, - 47.8125 - ], - [ - -105.46875, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 122, - 'geohash': 'c0p', - 'center': [ - -124.453125, - 45.703125 - ], - 'rectangle': [ - [ - -125.15625, - 45 - ], - [ - -123.75, - 45 - ], - [ - -123.75, - 46.40625 - ], - [ - -125.15625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 126, - 'geohash': 'beb', - 'center': [ - -156.796875, - 66.796875 - ], - 'rectangle': [ - [ - -157.5, - 66.09375 - ], - [ - -156.09375, - 66.09375 - ], - [ - -156.09375, - 67.5 - ], - [ - -157.5, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 124, - 'geohash': '9xb', - 'center': [ - -111.796875, - 44.296875 - ], - 'rectangle': [ - [ - -112.5, - 43.59375 - ], - [ - -111.09375, - 43.59375 - ], - [ - -111.09375, - 45 - ], - [ - -112.5, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 125, - 'geohash': '9rt', - 'center': [ - -116.015625, - 42.890625 - ], - 'rectangle': [ - [ - -116.71875, - 42.1875 - ], - [ - -115.3125, - 42.1875 - ], - [ - -115.3125, - 43.59375 - ], - [ - -116.71875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 126, - 'geohash': 'bfb', - 'center': [ - -145.546875, - 61.171875 - ], - 'rectangle': [ - [ - -146.25, - 60.46875 - ], - [ - -144.84375, - 60.46875 - ], - [ - -144.84375, - 61.875 - ], - [ - -146.25, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 130, - 'geohash': '9tq', - 'center': [ - -103.359375, - 30.234375 - ], - 'rectangle': [ - [ - -104.0625, - 29.53125 - ], - [ - -102.65625, - 29.53125 - ], - [ - -102.65625, - 30.9375 - ], - [ - -104.0625, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 119, - 'geohash': 'c86', - 'center': [ - -108.984375, - 47.109375 - ], - 'rectangle': [ - [ - -109.6875, - 46.40625 - ], - [ - -108.28125, - 46.40625 - ], - [ - -108.28125, - 47.8125 - ], - [ - -109.6875, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 127, - 'geohash': '9r6', - 'center': [ - -120.234375, - 41.484375 - ], - 'rectangle': [ - [ - -120.9375, - 40.78125 - ], - [ - -119.53125, - 40.78125 - ], - [ - -119.53125, - 42.1875 - ], - [ - -120.9375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 113, - 'geohash': 'cb9', - 'center': [ - -99.140625, - 48.515625 - ], - 'rectangle': [ - [ - -99.84375, - 47.8125 - ], - [ - -98.4375, - 47.8125 - ], - [ - -98.4375, - 49.21875 - ], - [ - -99.84375, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 134, - 'geohash': 'dq6', - 'center': [ - -75.234375, - 35.859375 - ], - 'rectangle': [ - [ - -75.9375, - 35.15625 - ], - [ - -74.53125, - 35.15625 - ], - [ - -74.53125, - 36.5625 - ], - [ - -75.9375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 125, - 'geohash': '9px', - 'center': [ - -124.453125, - 42.890625 - ], - 'rectangle': [ - [ - -125.15625, - 42.1875 - ], - [ - -123.75, - 42.1875 - ], - [ - -123.75, - 43.59375 - ], - [ - -125.15625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -153.984375, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 124, - 'geohash': 'bd4', - 'center': [ - -153.984375, - 56.953125 - ], - 'rectangle': [ - [ - -154.6875, - 56.25 - ], - [ - -153.28125, - 56.25 - ], - [ - -153.28125, - 57.65625 - ], - [ - -154.6875, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 123, - 'geohash': '9my', - 'center': [ - -114.609375, - 33.046875 - ], - 'rectangle': [ - [ - -115.3125, - 32.34375 - ], - [ - -113.90625, - 32.34375 - ], - [ - -113.90625, - 33.75 - ], - [ - -115.3125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 21.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 119, - 'geohash': '87z', - 'center': [ - -158.203125, - 21.796875 - ], - 'rectangle': [ - [ - -158.90625, - 21.09375 - ], - [ - -157.5, - 21.09375 - ], - [ - -157.5, - 22.5 - ], - [ - -158.90625, - 22.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 121, - 'geohash': 'c2m', - 'center': [ - -116.015625, - 47.109375 - ], - 'rectangle': [ - [ - -116.71875, - 46.40625 - ], - [ - -115.3125, - 46.40625 - ], - [ - -115.3125, - 47.8125 - ], - [ - -116.71875, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 119, - 'geohash': '9x3', - 'center': [ - -110.390625, - 41.484375 - ], - 'rectangle': [ - [ - -111.09375, - 40.78125 - ], - [ - -109.6875, - 40.78125 - ], - [ - -109.6875, - 42.1875 - ], - [ - -111.09375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 121, - 'geohash': '9w2', - 'center': [ - -111.796875, - 35.859375 - ], - 'rectangle': [ - [ - -112.5, - 35.15625 - ], - [ - -111.09375, - 35.15625 - ], - [ - -111.09375, - 36.5625 - ], - [ - -112.5, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 118, - 'geohash': '9pz', - 'center': [ - -124.453125, - 44.296875 - ], - 'rectangle': [ - [ - -125.15625, - 43.59375 - ], - [ - -123.75, - 43.59375 - ], - [ - -123.75, - 45 - ], - [ - -125.15625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 112, - 'geohash': 'cbr', - 'center': [ - -90.703125, - 47.109375 - ], - 'rectangle': [ - [ - -91.40625, - 46.40625 - ], - [ - -90, - 46.40625 - ], - [ - -90, - 47.8125 - ], - [ - -91.40625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 125, - 'geohash': '9wg', - 'center': [ - -107.578125, - 38.671875 - ], - 'rectangle': [ - [ - -108.28125, - 37.96875 - ], - [ - -106.875, - 37.96875 - ], - [ - -106.875, - 39.375 - ], - [ - -108.28125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 109, - 'geohash': '9vb', - 'center': [ - -100.546875, - 33.046875 - ], - 'rectangle': [ - [ - -101.25, - 32.34375 - ], - [ - -99.84375, - 32.34375 - ], - [ - -99.84375, - 33.75 - ], - [ - -101.25, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 124, - 'geohash': '9z8', - 'center': [ - -100.546875, - 42.890625 - ], - 'rectangle': [ - [ - -101.25, - 42.1875 - ], - [ - -99.84375, - 42.1875 - ], - [ - -99.84375, - 43.59375 - ], - [ - -101.25, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 118, - 'geohash': '9z2', - 'center': [ - -100.546875, - 41.484375 - ], - 'rectangle': [ - [ - -101.25, - 40.78125 - ], - [ - -99.84375, - 40.78125 - ], - [ - -99.84375, - 42.1875 - ], - [ - -101.25, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 103, - 'geohash': '9w4', - 'center': [ - -108.984375, - 34.453125 - ], - 'rectangle': [ - [ - -109.6875, - 33.75 - ], - [ - -108.28125, - 33.75 - ], - [ - -108.28125, - 35.15625 - ], - [ - -109.6875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 124, - 'geohash': '9wc', - 'center': [ - -110.390625, - 38.671875 - ], - 'rectangle': [ - [ - -111.09375, - 37.96875 - ], - [ - -109.6875, - 37.96875 - ], - [ - -109.6875, - 39.375 - ], - [ - -111.09375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 113, - 'geohash': '9mz', - 'center': [ - -113.203125, - 33.046875 - ], - 'rectangle': [ - [ - -113.90625, - 32.34375 - ], - [ - -112.5, - 32.34375 - ], - [ - -112.5, - 33.75 - ], - [ - -113.90625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -68.203125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 116, - 'geohash': 'f2r', - 'center': [ - -68.203125, - 47.109375 - ], - 'rectangle': [ - [ - -68.90625, - 46.40625 - ], - [ - -67.5, - 46.40625 - ], - [ - -67.5, - 47.8125 - ], - [ - -68.90625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -131.484375, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 117, - 'geohash': 'c1f', - 'center': [ - -131.484375, - 55.546875 - ], - 'rectangle': [ - [ - -132.1875, - 54.84375 - ], - [ - -130.78125, - 54.84375 - ], - [ - -130.78125, - 56.25 - ], - [ - -132.1875, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -155.390625, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 114, - 'geohash': 'be1', - 'center': [ - -155.390625, - 62.578125 - ], - 'rectangle': [ - [ - -156.09375, - 61.875 - ], - [ - -154.6875, - 61.875 - ], - [ - -154.6875, - 63.28125 - ], - [ - -156.09375, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 118, - 'geohash': '9x8', - 'center': [ - -111.796875, - 42.890625 - ], - 'rectangle': [ - [ - -112.5, - 42.1875 - ], - [ - -111.09375, - 42.1875 - ], - [ - -111.09375, - 43.59375 - ], - [ - -112.5, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 117, - 'geohash': '9rx', - 'center': [ - -113.203125, - 42.890625 - ], - 'rectangle': [ - [ - -113.90625, - 42.1875 - ], - [ - -112.5, - 42.1875 - ], - [ - -112.5, - 43.59375 - ], - [ - -113.90625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 105, - 'geohash': 'bev', - 'center': [ - -149.765625, - 66.796875 - ], - 'rectangle': [ - [ - -150.46875, - 66.09375 - ], - [ - -149.0625, - 66.09375 - ], - [ - -149.0625, - 67.5 - ], - [ - -150.46875, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 114, - 'geohash': '9wt', - 'center': [ - -104.765625, - 37.265625 - ], - 'rectangle': [ - [ - -105.46875, - 36.5625 - ], - [ - -104.0625, - 36.5625 - ], - [ - -104.0625, - 37.96875 - ], - [ - -105.46875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 21.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 120, - 'geohash': '87y', - 'center': [ - -159.609375, - 21.796875 - ], - 'rectangle': [ - [ - -160.3125, - 21.09375 - ], - [ - -158.90625, - 21.09375 - ], - [ - -158.90625, - 22.5 - ], - [ - -160.3125, - 22.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 115, - 'geohash': 'drf', - 'center': [ - -75.234375, - 44.296875 - ], - 'rectangle': [ - [ - -75.9375, - 43.59375 - ], - [ - -74.53125, - 43.59375 - ], - [ - -74.53125, - 45 - ], - [ - -75.9375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 122, - 'geohash': 'c2w', - 'center': [ - -114.609375, - 48.515625 - ], - 'rectangle': [ - [ - -115.3125, - 47.8125 - ], - [ - -113.90625, - 47.8125 - ], - [ - -113.90625, - 49.21875 - ], - [ - -115.3125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 104, - 'geohash': 'c2t', - 'center': [ - -116.015625, - 48.515625 - ], - 'rectangle': [ - [ - -116.71875, - 47.8125 - ], - [ - -115.3125, - 47.8125 - ], - [ - -115.3125, - 49.21875 - ], - [ - -116.71875, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 115, - 'geohash': '9r5', - 'center': [ - -118.828125, - 40.078125 - ], - 'rectangle': [ - [ - -119.53125, - 39.375 - ], - [ - -118.125, - 39.375 - ], - [ - -118.125, - 40.78125 - ], - [ - -119.53125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 117, - 'geohash': '9qk', - 'center': [ - -117.421875, - 35.859375 - ], - 'rectangle': [ - [ - -118.125, - 35.15625 - ], - [ - -116.71875, - 35.15625 - ], - [ - -116.71875, - 36.5625 - ], - [ - -118.125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -144.140625, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 112, - 'geohash': 'bg9', - 'center': [ - -144.140625, - 65.390625 - ], - 'rectangle': [ - [ - -144.84375, - 64.6875 - ], - [ - -143.4375, - 64.6875 - ], - [ - -143.4375, - 66.09375 - ], - [ - -144.84375, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 110, - 'geohash': 'c2j', - 'center': [ - -116.015625, - 45.703125 - ], - 'rectangle': [ - [ - -116.71875, - 45 - ], - [ - -115.3125, - 45 - ], - [ - -115.3125, - 46.40625 - ], - [ - -116.71875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 110, - 'geohash': 'c2h', - 'center': [ - -117.421875, - 45.703125 - ], - 'rectangle': [ - [ - -118.125, - 45 - ], - [ - -116.71875, - 45 - ], - [ - -116.71875, - 46.40625 - ], - [ - -118.125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -163.828125, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 112, - 'geohash': 'b6e', - 'center': [ - -163.828125, - 59.765625 - ], - 'rectangle': [ - [ - -164.53125, - 59.0625 - ], - [ - -163.125, - 59.0625 - ], - [ - -163.125, - 60.46875 - ], - [ - -164.53125, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 116, - 'geohash': '9xf', - 'center': [ - -108.984375, - 44.296875 - ], - 'rectangle': [ - [ - -109.6875, - 43.59375 - ], - [ - -108.28125, - 43.59375 - ], - [ - -108.28125, - 45 - ], - [ - -109.6875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 109, - 'geohash': '9wy', - 'center': [ - -103.359375, - 38.671875 - ], - 'rectangle': [ - [ - -104.0625, - 37.96875 - ], - [ - -102.65625, - 37.96875 - ], - [ - -102.65625, - 39.375 - ], - [ - -104.0625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 113, - 'geohash': '9wb', - 'center': [ - -111.796875, - 38.671875 - ], - 'rectangle': [ - [ - -112.5, - 37.96875 - ], - [ - -111.09375, - 37.96875 - ], - [ - -111.09375, - 39.375 - ], - [ - -112.5, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 113, - 'geohash': 'bet', - 'center': [ - -149.765625, - 65.390625 - ], - 'rectangle': [ - [ - -150.46875, - 64.6875 - ], - [ - -149.0625, - 64.6875 - ], - [ - -149.0625, - 66.09375 - ], - [ - -150.46875, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 110, - 'geohash': '9qg', - 'center': [ - -118.828125, - 38.671875 - ], - 'rectangle': [ - [ - -119.53125, - 37.96875 - ], - [ - -118.125, - 37.96875 - ], - [ - -118.125, - 39.375 - ], - [ - -119.53125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 116, - 'geohash': 'c8w', - 'center': [ - -103.359375, - 48.515625 - ], - 'rectangle': [ - [ - -104.0625, - 47.8125 - ], - [ - -102.65625, - 47.8125 - ], - [ - -102.65625, - 49.21875 - ], - [ - -104.0625, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 107, - 'geohash': 'c2e', - 'center': [ - -118.828125, - 48.515625 - ], - 'rectangle': [ - [ - -119.53125, - 47.8125 - ], - [ - -118.125, - 47.8125 - ], - [ - -118.125, - 49.21875 - ], - [ - -119.53125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 14.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 99, - 'geohash': '8f8', - 'center': [ - -145.546875, - 14.765625 - ], - 'rectangle': [ - [ - -146.25, - 14.0625 - ], - [ - -144.84375, - 14.0625 - ], - [ - -144.84375, - 15.46875 - ], - [ - -146.25, - 15.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 109, - 'geohash': 'c8j', - 'center': [ - -104.765625, - 45.703125 - ], - 'rectangle': [ - [ - -105.46875, - 45 - ], - [ - -104.0625, - 45 - ], - [ - -104.0625, - 46.40625 - ], - [ - -105.46875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 108, - 'geohash': '9qs', - 'center': [ - -117.421875, - 37.265625 - ], - 'rectangle': [ - [ - -118.125, - 36.5625 - ], - [ - -116.71875, - 36.5625 - ], - [ - -116.71875, - 37.96875 - ], - [ - -118.125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 110, - 'geohash': 'c8r', - 'center': [ - -101.953125, - 47.109375 - ], - 'rectangle': [ - [ - -102.65625, - 46.40625 - ], - [ - -101.25, - 46.40625 - ], - [ - -101.25, - 47.8125 - ], - [ - -102.65625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 102, - 'geohash': 'be7', - 'center': [ - -152.578125, - 63.984375 - ], - 'rectangle': [ - [ - -153.28125, - 63.28125 - ], - [ - -151.875, - 63.28125 - ], - [ - -151.875, - 64.6875 - ], - [ - -153.28125, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -66.796875, - 18.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 96, - 'geohash': 'de2', - 'center': [ - -66.796875, - 18.984375 - ], - 'rectangle': [ - [ - -67.5, - 18.28125 - ], - [ - -66.09375, - 18.28125 - ], - [ - -66.09375, - 19.6875 - ], - [ - -67.5, - 19.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 93, - 'geohash': 'bgb', - 'center': [ - -145.546875, - 66.796875 - ], - 'rectangle': [ - [ - -146.25, - 66.09375 - ], - [ - -144.84375, - 66.09375 - ], - [ - -144.84375, - 67.5 - ], - [ - -146.25, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 98, - 'geohash': 'c8h', - 'center': [ - -106.171875, - 45.703125 - ], - 'rectangle': [ - [ - -106.875, - 45 - ], - [ - -105.46875, - 45 - ], - [ - -105.46875, - 46.40625 - ], - [ - -106.875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 85, - 'geohash': 'bsj', - 'center': [ - -149.765625, - 68.203125 - ], - 'rectangle': [ - [ - -150.46875, - 67.5 - ], - [ - -149.0625, - 67.5 - ], - [ - -149.0625, - 68.90625 - ], - [ - -150.46875, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -141.328125, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 100, - 'geohash': 'bg7', - 'center': [ - -141.328125, - 63.984375 - ], - 'rectangle': [ - [ - -142.03125, - 63.28125 - ], - [ - -140.625, - 63.28125 - ], - [ - -140.625, - 64.6875 - ], - [ - -142.03125, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 95, - 'geohash': '9rq', - 'center': [ - -114.609375, - 41.484375 - ], - 'rectangle': [ - [ - -115.3125, - 40.78125 - ], - [ - -113.90625, - 40.78125 - ], - [ - -113.90625, - 42.1875 - ], - [ - -115.3125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 92, - 'geohash': '9rm', - 'center': [ - -116.015625, - 41.484375 - ], - 'rectangle': [ - [ - -116.71875, - 40.78125 - ], - [ - -115.3125, - 40.78125 - ], - [ - -115.3125, - 42.1875 - ], - [ - -116.71875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 99, - 'geohash': '9xk', - 'center': [ - -106.171875, - 41.484375 - ], - 'rectangle': [ - [ - -106.875, - 40.78125 - ], - [ - -105.46875, - 40.78125 - ], - [ - -105.46875, - 42.1875 - ], - [ - -106.875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 90, - 'geohash': '9xd', - 'center': [ - -108.984375, - 42.890625 - ], - 'rectangle': [ - [ - -109.6875, - 42.1875 - ], - [ - -108.28125, - 42.1875 - ], - [ - -108.28125, - 43.59375 - ], - [ - -109.6875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 88, - 'geohash': 'cbt', - 'center': [ - -93.515625, - 48.515625 - ], - 'rectangle': [ - [ - -94.21875, - 47.8125 - ], - [ - -92.8125, - 47.8125 - ], - [ - -92.8125, - 49.21875 - ], - [ - -94.21875, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 97, - 'geohash': '9xt', - 'center': [ - -104.765625, - 42.890625 - ], - 'rectangle': [ - [ - -105.46875, - 42.1875 - ], - [ - -104.0625, - 42.1875 - ], - [ - -104.0625, - 43.59375 - ], - [ - -105.46875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 85, - 'geohash': '9x7', - 'center': [ - -107.578125, - 41.484375 - ], - 'rectangle': [ - [ - -108.28125, - 40.78125 - ], - [ - -106.875, - 40.78125 - ], - [ - -106.875, - 42.1875 - ], - [ - -108.28125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 87, - 'geohash': '9x4', - 'center': [ - -108.984375, - 40.078125 - ], - 'rectangle': [ - [ - -109.6875, - 39.375 - ], - [ - -108.28125, - 39.375 - ], - [ - -108.28125, - 40.78125 - ], - [ - -109.6875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 96, - 'geohash': '9rh', - 'center': [ - -117.421875, - 40.078125 - ], - 'rectangle': [ - [ - -118.125, - 39.375 - ], - [ - -116.71875, - 39.375 - ], - [ - -116.71875, - 40.78125 - ], - [ - -118.125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 86, - 'geohash': 'c82', - 'center': [ - -111.796875, - 47.109375 - ], - 'rectangle': [ - [ - -112.5, - 46.40625 - ], - [ - -111.09375, - 46.40625 - ], - [ - -111.09375, - 47.8125 - ], - [ - -112.5, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 93, - 'geohash': 'c21', - 'center': [ - -121.640625, - 45.703125 - ], - 'rectangle': [ - [ - -122.34375, - 45 - ], - [ - -120.9375, - 45 - ], - [ - -120.9375, - 46.40625 - ], - [ - -122.34375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -142.734375, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 95, - 'geohash': 'bg4', - 'center': [ - -142.734375, - 62.578125 - ], - 'rectangle': [ - [ - -143.4375, - 61.875 - ], - [ - -142.03125, - 61.875 - ], - [ - -142.03125, - 63.28125 - ], - [ - -143.4375, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 95, - 'geohash': '9w9', - 'center': [ - -110.390625, - 37.265625 - ], - 'rectangle': [ - [ - -111.09375, - 36.5625 - ], - [ - -109.6875, - 36.5625 - ], - [ - -109.6875, - 37.96875 - ], - [ - -111.09375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 84, - 'geohash': '9qj', - 'center': [ - -116.015625, - 34.453125 - ], - 'rectangle': [ - [ - -116.71875, - 33.75 - ], - [ - -115.3125, - 33.75 - ], - [ - -115.3125, - 35.15625 - ], - [ - -116.71875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 88, - 'geohash': 'c8s', - 'center': [ - -106.171875, - 48.515625 - ], - 'rectangle': [ - [ - -106.875, - 47.8125 - ], - [ - -105.46875, - 47.8125 - ], - [ - -105.46875, - 49.21875 - ], - [ - -106.875, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 91, - 'geohash': 'c0x', - 'center': [ - -124.453125, - 48.515625 - ], - 'rectangle': [ - [ - -125.15625, - 47.8125 - ], - [ - -123.75, - 47.8125 - ], - [ - -123.75, - 49.21875 - ], - [ - -125.15625, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 27.421875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 91, - 'geohash': '9uc', - 'center': [ - -99.140625, - 27.421875 - ], - 'rectangle': [ - [ - -99.84375, - 26.71875 - ], - [ - -98.4375, - 26.71875 - ], - [ - -98.4375, - 28.125 - ], - [ - -99.84375, - 28.125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 89, - 'geohash': '9td', - 'center': [ - -108.984375, - 31.640625 - ], - 'rectangle': [ - [ - -109.6875, - 30.9375 - ], - [ - -108.28125, - 30.9375 - ], - [ - -108.28125, - 32.34375 - ], - [ - -109.6875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 101, - 'geohash': '9qz', - 'center': [ - -113.203125, - 38.671875 - ], - 'rectangle': [ - [ - -113.90625, - 37.96875 - ], - [ - -112.5, - 37.96875 - ], - [ - -112.5, - 39.375 - ], - [ - -113.90625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 90, - 'geohash': '9q8', - 'center': [ - -123.046875, - 37.265625 - ], - 'rectangle': [ - [ - -123.75, - 36.5625 - ], - [ - -122.34375, - 36.5625 - ], - [ - -122.34375, - 37.96875 - ], - [ - -123.75, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -153.984375, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 86, - 'geohash': 'bdd', - 'center': [ - -153.984375, - 59.765625 - ], - 'rectangle': [ - [ - -154.6875, - 59.0625 - ], - [ - -153.28125, - 59.0625 - ], - [ - -153.28125, - 60.46875 - ], - [ - -154.6875, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 85, - 'geohash': '9wn', - 'center': [ - -103.359375, - 34.453125 - ], - 'rectangle': [ - [ - -104.0625, - 33.75 - ], - [ - -102.65625, - 33.75 - ], - [ - -102.65625, - 35.15625 - ], - [ - -104.0625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 83, - 'geohash': '9w5', - 'center': [ - -107.578125, - 34.453125 - ], - 'rectangle': [ - [ - -108.28125, - 33.75 - ], - [ - -106.875, - 33.75 - ], - [ - -106.875, - 35.15625 - ], - [ - -108.28125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 92, - 'geohash': '9wj', - 'center': [ - -104.765625, - 34.453125 - ], - 'rectangle': [ - [ - -105.46875, - 33.75 - ], - [ - -104.0625, - 33.75 - ], - [ - -104.0625, - 35.15625 - ], - [ - -105.46875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 91, - 'geohash': '9v0', - 'center': [ - -100.546875, - 28.828125 - ], - 'rectangle': [ - [ - -101.25, - 28.125 - ], - [ - -99.84375, - 28.125 - ], - [ - -99.84375, - 29.53125 - ], - [ - -101.25, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 88, - 'geohash': '9tt', - 'center': [ - -104.765625, - 31.640625 - ], - 'rectangle': [ - [ - -105.46875, - 30.9375 - ], - [ - -104.0625, - 30.9375 - ], - [ - -104.0625, - 32.34375 - ], - [ - -105.46875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 87, - 'geohash': 'c8n', - 'center': [ - -103.359375, - 45.703125 - ], - 'rectangle': [ - [ - -104.0625, - 45 - ], - [ - -102.65625, - 45 - ], - [ - -102.65625, - 46.40625 - ], - [ - -104.0625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 84, - 'geohash': 'be8', - 'center': [ - -156.796875, - 65.390625 - ], - 'rectangle': [ - [ - -157.5, - 64.6875 - ], - [ - -156.09375, - 64.6875 - ], - [ - -156.09375, - 66.09375 - ], - [ - -157.5, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -165.234375, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 84, - 'geohash': 'b74', - 'center': [ - -165.234375, - 62.578125 - ], - 'rectangle': [ - [ - -165.9375, - 61.875 - ], - [ - -164.53125, - 61.875 - ], - [ - -164.53125, - 63.28125 - ], - [ - -165.9375, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 86, - 'geohash': 'b7m', - 'center': [ - -161.015625, - 63.984375 - ], - 'rectangle': [ - [ - -161.71875, - 63.28125 - ], - [ - -160.3125, - 63.28125 - ], - [ - -160.3125, - 64.6875 - ], - [ - -161.71875, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 82, - 'geohash': 'bem', - 'center': [ - -149.765625, - 63.984375 - ], - 'rectangle': [ - [ - -150.46875, - 63.28125 - ], - [ - -149.0625, - 63.28125 - ], - [ - -149.0625, - 64.6875 - ], - [ - -150.46875, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 86, - 'geohash': 'b79', - 'center': [ - -166.640625, - 65.390625 - ], - 'rectangle': [ - [ - -167.34375, - 64.6875 - ], - [ - -165.9375, - 64.6875 - ], - [ - -165.9375, - 66.09375 - ], - [ - -167.34375, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 86, - 'geohash': '9wq', - 'center': [ - -103.359375, - 35.859375 - ], - 'rectangle': [ - [ - -104.0625, - 35.15625 - ], - [ - -102.65625, - 35.15625 - ], - [ - -102.65625, - 36.5625 - ], - [ - -104.0625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -169.453125, - 14.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 79, - 'geohash': '84x', - 'center': [ - -169.453125, - 14.765625 - ], - 'rectangle': [ - [ - -170.15625, - 14.0625 - ], - [ - -168.75, - 14.0625 - ], - [ - -168.75, - 15.46875 - ], - [ - -170.15625, - 15.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 82, - 'geohash': 'beu', - 'center': [ - -151.171875, - 66.796875 - ], - 'rectangle': [ - [ - -151.875, - 66.09375 - ], - [ - -150.46875, - 66.09375 - ], - [ - -150.46875, - 67.5 - ], - [ - -151.875, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 86, - 'geohash': '9x6', - 'center': [ - -108.984375, - 41.484375 - ], - 'rectangle': [ - [ - -109.6875, - 40.78125 - ], - [ - -108.28125, - 40.78125 - ], - [ - -108.28125, - 42.1875 - ], - [ - -109.6875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 87, - 'geohash': 'c0r', - 'center': [ - -124.453125, - 47.109375 - ], - 'rectangle': [ - [ - -125.15625, - 46.40625 - ], - [ - -123.75, - 46.40625 - ], - [ - -123.75, - 47.8125 - ], - [ - -125.15625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -146.953125, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 80, - 'geohash': 'bez', - 'center': [ - -146.953125, - 66.796875 - ], - 'rectangle': [ - [ - -147.65625, - 66.09375 - ], - [ - -146.25, - 66.09375 - ], - [ - -146.25, - 67.5 - ], - [ - -147.65625, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 75, - 'geohash': 'bdu', - 'center': [ - -151.171875, - 61.171875 - ], - 'rectangle': [ - [ - -151.875, - 60.46875 - ], - [ - -150.46875, - 60.46875 - ], - [ - -150.46875, - 61.875 - ], - [ - -151.875, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 78, - 'geohash': 'c2r', - 'center': [ - -113.203125, - 47.109375 - ], - 'rectangle': [ - [ - -113.90625, - 46.40625 - ], - [ - -112.5, - 46.40625 - ], - [ - -112.5, - 47.8125 - ], - [ - -113.90625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 83, - 'geohash': 'b3u', - 'center': [ - -162.421875, - 55.546875 - ], - 'rectangle': [ - [ - -163.125, - 54.84375 - ], - [ - -161.71875, - 54.84375 - ], - [ - -161.71875, - 56.25 - ], - [ - -163.125, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -66.796875, - 17.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 80, - 'geohash': 'de0', - 'center': [ - -66.796875, - 17.578125 - ], - 'rectangle': [ - [ - -67.5, - 16.875 - ], - [ - -66.09375, - 16.875 - ], - [ - -66.09375, - 18.28125 - ], - [ - -67.5, - 18.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 77, - 'geohash': '9te', - 'center': [ - -107.578125, - 31.640625 - ], - 'rectangle': [ - [ - -108.28125, - 30.9375 - ], - [ - -106.875, - 30.9375 - ], - [ - -106.875, - 32.34375 - ], - [ - -108.28125, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -139.921875, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 79, - 'geohash': 'bfs', - 'center': [ - -139.921875, - 59.765625 - ], - 'rectangle': [ - [ - -140.625, - 59.0625 - ], - [ - -139.21875, - 59.0625 - ], - [ - -139.21875, - 60.46875 - ], - [ - -140.625, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 84, - 'geohash': 'b3y', - 'center': [ - -159.609375, - 55.546875 - ], - 'rectangle': [ - [ - -160.3125, - 54.84375 - ], - [ - -158.90625, - 54.84375 - ], - [ - -158.90625, - 56.25 - ], - [ - -160.3125, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 78, - 'geohash': '9w7', - 'center': [ - -107.578125, - 35.859375 - ], - 'rectangle': [ - [ - -108.28125, - 35.15625 - ], - [ - -106.875, - 35.15625 - ], - [ - -106.875, - 36.5625 - ], - [ - -108.28125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 71.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 79, - 'geohash': 'bs8', - 'center': [ - -156.796875, - 71.015625 - ], - 'rectangle': [ - [ - -157.5, - 70.3125 - ], - [ - -156.09375, - 70.3125 - ], - [ - -156.09375, - 71.71875 - ], - [ - -157.5, - 71.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 74, - 'geohash': 'b7x', - 'center': [ - -158.203125, - 65.390625 - ], - 'rectangle': [ - [ - -158.90625, - 64.6875 - ], - [ - -157.5, - 64.6875 - ], - [ - -157.5, - 66.09375 - ], - [ - -158.90625, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 83, - 'geohash': '9rk', - 'center': [ - -117.421875, - 41.484375 - ], - 'rectangle': [ - [ - -118.125, - 40.78125 - ], - [ - -116.71875, - 40.78125 - ], - [ - -116.71875, - 42.1875 - ], - [ - -118.125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 72, - 'geohash': 'cb3', - 'center': [ - -99.140625, - 47.109375 - ], - 'rectangle': [ - [ - -99.84375, - 46.40625 - ], - [ - -98.4375, - 46.40625 - ], - [ - -98.4375, - 47.8125 - ], - [ - -99.84375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -142.734375, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 79, - 'geohash': 'bff', - 'center': [ - -142.734375, - 61.171875 - ], - 'rectangle': [ - [ - -143.4375, - 60.46875 - ], - [ - -142.03125, - 60.46875 - ], - [ - -142.03125, - 61.875 - ], - [ - -143.4375, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 77, - 'geohash': 'b7v', - 'center': [ - -161.015625, - 66.796875 - ], - 'rectangle': [ - [ - -161.71875, - 66.09375 - ], - [ - -160.3125, - 66.09375 - ], - [ - -160.3125, - 67.5 - ], - [ - -161.71875, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 76, - 'geohash': 'b6y', - 'center': [ - -159.609375, - 61.171875 - ], - 'rectangle': [ - [ - -160.3125, - 60.46875 - ], - [ - -158.90625, - 60.46875 - ], - [ - -158.90625, - 61.875 - ], - [ - -160.3125, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 21.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 76, - 'geohash': '8eb', - 'center': [ - -156.796875, - 21.796875 - ], - 'rectangle': [ - [ - -157.5, - 21.09375 - ], - [ - -156.09375, - 21.09375 - ], - [ - -156.09375, - 22.5 - ], - [ - -157.5, - 22.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 78, - 'geohash': '9wf', - 'center': [ - -108.984375, - 38.671875 - ], - 'rectangle': [ - [ - -109.6875, - 37.96875 - ], - [ - -108.28125, - 37.96875 - ], - [ - -108.28125, - 39.375 - ], - [ - -109.6875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 72, - 'geohash': 'cbw', - 'center': [ - -92.109375, - 48.515625 - ], - 'rectangle': [ - [ - -92.8125, - 47.8125 - ], - [ - -91.40625, - 47.8125 - ], - [ - -91.40625, - 49.21875 - ], - [ - -92.8125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 68, - 'geohash': 'c8k', - 'center': [ - -106.171875, - 47.109375 - ], - 'rectangle': [ - [ - -106.875, - 46.40625 - ], - [ - -105.46875, - 46.40625 - ], - [ - -105.46875, - 47.8125 - ], - [ - -106.875, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -163.828125, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 68, - 'geohash': 'b7e', - 'center': [ - -163.828125, - 65.390625 - ], - 'rectangle': [ - [ - -164.53125, - 64.6875 - ], - [ - -163.125, - 64.6875 - ], - [ - -163.125, - 66.09375 - ], - [ - -164.53125, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 71, - 'geohash': 'b3v', - 'center': [ - -161.015625, - 55.546875 - ], - 'rectangle': [ - [ - -161.71875, - 54.84375 - ], - [ - -160.3125, - 54.84375 - ], - [ - -160.3125, - 56.25 - ], - [ - -161.71875, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 65, - 'geohash': '9tv', - 'center': [ - -104.765625, - 33.046875 - ], - 'rectangle': [ - [ - -105.46875, - 32.34375 - ], - [ - -104.0625, - 32.34375 - ], - [ - -104.0625, - 33.75 - ], - [ - -105.46875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 80, - 'geohash': '9qu', - 'center': [ - -117.421875, - 38.671875 - ], - 'rectangle': [ - [ - -118.125, - 37.96875 - ], - [ - -116.71875, - 37.96875 - ], - [ - -116.71875, - 39.375 - ], - [ - -118.125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 67, - 'geohash': '9xu', - 'center': [ - -106.171875, - 44.296875 - ], - 'rectangle': [ - [ - -106.875, - 43.59375 - ], - [ - -105.46875, - 43.59375 - ], - [ - -105.46875, - 45 - ], - [ - -106.875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 66, - 'geohash': 'cbs', - 'center': [ - -94.921875, - 48.515625 - ], - 'rectangle': [ - [ - -95.625, - 47.8125 - ], - [ - -94.21875, - 47.8125 - ], - [ - -94.21875, - 49.21875 - ], - [ - -95.625, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -135.703125, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 69, - 'geohash': 'bfp', - 'center': [ - -135.703125, - 56.953125 - ], - 'rectangle': [ - [ - -136.40625, - 56.25 - ], - [ - -135, - 56.25 - ], - [ - -135, - 57.65625 - ], - [ - -136.40625, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 66, - 'geohash': '9qp', - 'center': [ - -113.203125, - 34.453125 - ], - 'rectangle': [ - [ - -113.90625, - 33.75 - ], - [ - -112.5, - 33.75 - ], - [ - -112.5, - 35.15625 - ], - [ - -113.90625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -66.796875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 73, - 'geohash': 'dxb', - 'center': [ - -66.796875, - 44.296875 - ], - 'rectangle': [ - [ - -67.5, - 43.59375 - ], - [ - -66.09375, - 43.59375 - ], - [ - -66.09375, - 45 - ], - [ - -67.5, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -172.265625, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 50, - 'geohash': 'b5m', - 'center': [ - -172.265625, - 63.984375 - ], - 'rectangle': [ - [ - -172.96875, - 63.28125 - ], - [ - -171.5625, - 63.28125 - ], - [ - -171.5625, - 64.6875 - ], - [ - -172.96875, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 69.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 58, - 'geohash': 'bsk', - 'center': [ - -151.171875, - 69.609375 - ], - 'rectangle': [ - [ - -151.875, - 68.90625 - ], - [ - -150.46875, - 68.90625 - ], - [ - -150.46875, - 70.3125 - ], - [ - -151.875, - 70.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 51, - 'geohash': '9xv', - 'center': [ - -104.765625, - 44.296875 - ], - 'rectangle': [ - [ - -105.46875, - 43.59375 - ], - [ - -104.0625, - 43.59375 - ], - [ - -104.0625, - 45 - ], - [ - -105.46875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': 'bu0', - 'center': [ - -145.546875, - 68.203125 - ], - 'rectangle': [ - [ - -146.25, - 67.5 - ], - [ - -144.84375, - 67.5 - ], - [ - -144.84375, - 68.90625 - ], - [ - -146.25, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 53, - 'geohash': '9q3', - 'center': [ - -121.640625, - 35.859375 - ], - 'rectangle': [ - [ - -122.34375, - 35.15625 - ], - [ - -120.9375, - 35.15625 - ], - [ - -120.9375, - 36.5625 - ], - [ - -122.34375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -73.828125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 55, - 'geohash': 'dqg', - 'center': [ - -73.828125, - 38.671875 - ], - 'rectangle': [ - [ - -74.53125, - 37.96875 - ], - [ - -73.125, - 37.96875 - ], - [ - -73.125, - 39.375 - ], - [ - -74.53125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 55, - 'geohash': 'c8e', - 'center': [ - -107.578125, - 48.515625 - ], - 'rectangle': [ - [ - -108.28125, - 47.8125 - ], - [ - -106.875, - 47.8125 - ], - [ - -106.875, - 49.21875 - ], - [ - -108.28125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -72.421875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 52, - 'geohash': 'drh', - 'center': [ - -72.421875, - 40.078125 - ], - 'rectangle': [ - [ - -73.125, - 39.375 - ], - [ - -71.71875, - 39.375 - ], - [ - -71.71875, - 40.78125 - ], - [ - -73.125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 49, - 'geohash': 'b6z', - 'center': [ - -158.203125, - 61.171875 - ], - 'rectangle': [ - [ - -158.90625, - 60.46875 - ], - [ - -157.5, - 60.46875 - ], - [ - -157.5, - 61.875 - ], - [ - -158.90625, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 52, - 'geohash': '9rp', - 'center': [ - -113.203125, - 40.078125 - ], - 'rectangle': [ - [ - -113.90625, - 39.375 - ], - [ - -112.5, - 39.375 - ], - [ - -112.5, - 40.78125 - ], - [ - -113.90625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -170.859375, - 14.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': '84w', - 'center': [ - -170.859375, - 14.765625 - ], - 'rectangle': [ - [ - -171.5625, - 14.0625 - ], - [ - -170.15625, - 14.0625 - ], - [ - -170.15625, - 15.46875 - ], - [ - -171.5625, - 15.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 50, - 'geohash': 'bee', - 'center': [ - -152.578125, - 65.390625 - ], - 'rectangle': [ - [ - -153.28125, - 64.6875 - ], - [ - -151.875, - 64.6875 - ], - [ - -151.875, - 66.09375 - ], - [ - -153.28125, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -146.953125, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 52, - 'geohash': 'bep', - 'center': [ - -146.953125, - 62.578125 - ], - 'rectangle': [ - [ - -147.65625, - 61.875 - ], - [ - -146.25, - 61.875 - ], - [ - -146.25, - 63.28125 - ], - [ - -147.65625, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 46, - 'geohash': '9vp', - 'center': [ - -90.703125, - 28.828125 - ], - 'rectangle': [ - [ - -91.40625, - 28.125 - ], - [ - -90, - 28.125 - ], - [ - -90, - 29.53125 - ], - [ - -91.40625, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -170.859375, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 46, - 'geohash': 'b4n', - 'center': [ - -170.859375, - 56.953125 - ], - 'rectangle': [ - [ - -171.5625, - 56.25 - ], - [ - -170.15625, - 56.25 - ], - [ - -170.15625, - 57.65625 - ], - [ - -171.5625, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -142.734375, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 43, - 'geohash': 'bg6', - 'center': [ - -142.734375, - 63.984375 - ], - 'rectangle': [ - [ - -143.4375, - 63.28125 - ], - [ - -142.03125, - 63.28125 - ], - [ - -142.03125, - 64.6875 - ], - [ - -143.4375, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 47, - 'geohash': 'b6k', - 'center': [ - -162.421875, - 58.359375 - ], - 'rectangle': [ - [ - -163.125, - 57.65625 - ], - [ - -161.71875, - 57.65625 - ], - [ - -161.71875, - 59.0625 - ], - [ - -163.125, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 39, - 'geohash': 'c87', - 'center': [ - -107.578125, - 47.109375 - ], - 'rectangle': [ - [ - -108.28125, - 46.40625 - ], - [ - -106.875, - 46.40625 - ], - [ - -106.875, - 47.8125 - ], - [ - -108.28125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 47, - 'geohash': 'b6x', - 'center': [ - -158.203125, - 59.765625 - ], - 'rectangle': [ - [ - -158.90625, - 59.0625 - ], - [ - -157.5, - 59.0625 - ], - [ - -157.5, - 60.46875 - ], - [ - -158.90625, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 42, - 'geohash': 'b6c', - 'center': [ - -166.640625, - 61.171875 - ], - 'rectangle': [ - [ - -167.34375, - 60.46875 - ], - [ - -165.9375, - 60.46875 - ], - [ - -165.9375, - 61.875 - ], - [ - -167.34375, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 49, - 'geohash': '9qm', - 'center': [ - -116.015625, - 35.859375 - ], - 'rectangle': [ - [ - -116.71875, - 35.15625 - ], - [ - -115.3125, - 35.15625 - ], - [ - -115.3125, - 36.5625 - ], - [ - -116.71875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 47, - 'geohash': 'bdy', - 'center': [ - -148.359375, - 61.171875 - ], - 'rectangle': [ - [ - -149.0625, - 60.46875 - ], - [ - -147.65625, - 60.46875 - ], - [ - -147.65625, - 61.875 - ], - [ - -149.0625, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 54.140625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 44, - 'geohash': 'b3s', - 'center': [ - -162.421875, - 54.140625 - ], - 'rectangle': [ - [ - -163.125, - 53.4375 - ], - [ - -161.71875, - 53.4375 - ], - [ - -161.71875, - 54.84375 - ], - [ - -163.125, - 54.84375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 46, - 'geohash': '9rz', - 'center': [ - -113.203125, - 44.296875 - ], - 'rectangle': [ - [ - -113.90625, - 43.59375 - ], - [ - -112.5, - 43.59375 - ], - [ - -112.5, - 45 - ], - [ - -113.90625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 41, - 'geohash': '9rj', - 'center': [ - -116.015625, - 40.078125 - ], - 'rectangle': [ - [ - -116.71875, - 39.375 - ], - [ - -115.3125, - 39.375 - ], - [ - -115.3125, - 40.78125 - ], - [ - -116.71875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 46, - 'geohash': 'bg2', - 'center': [ - -145.546875, - 63.984375 - ], - 'rectangle': [ - [ - -146.25, - 63.28125 - ], - [ - -144.84375, - 63.28125 - ], - [ - -144.84375, - 64.6875 - ], - [ - -146.25, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 39, - 'geohash': 'bdt', - 'center': [ - -149.765625, - 59.765625 - ], - 'rectangle': [ - [ - -150.46875, - 59.0625 - ], - [ - -149.0625, - 59.0625 - ], - [ - -149.0625, - 60.46875 - ], - [ - -150.46875, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 43, - 'geohash': 'bd0', - 'center': [ - -156.796875, - 56.953125 - ], - 'rectangle': [ - [ - -157.5, - 56.25 - ], - [ - -156.09375, - 56.25 - ], - [ - -156.09375, - 57.65625 - ], - [ - -157.5, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -165.234375, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 42, - 'geohash': 'b76', - 'center': [ - -165.234375, - 63.984375 - ], - 'rectangle': [ - [ - -165.9375, - 63.28125 - ], - [ - -164.53125, - 63.28125 - ], - [ - -164.53125, - 64.6875 - ], - [ - -165.9375, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': '9v2', - 'center': [ - -100.546875, - 30.234375 - ], - 'rectangle': [ - [ - -101.25, - 29.53125 - ], - [ - -99.84375, - 29.53125 - ], - [ - -99.84375, - 30.9375 - ], - [ - -101.25, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': 'c2n', - 'center': [ - -114.609375, - 45.703125 - ], - 'rectangle': [ - [ - -115.3125, - 45 - ], - [ - -113.90625, - 45 - ], - [ - -113.90625, - 46.40625 - ], - [ - -115.3125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': 'bej', - 'center': [ - -149.765625, - 62.578125 - ], - 'rectangle': [ - [ - -150.46875, - 61.875 - ], - [ - -149.0625, - 61.875 - ], - [ - -149.0625, - 63.28125 - ], - [ - -150.46875, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 49, - 'geohash': 'b6q', - 'center': [ - -159.609375, - 58.359375 - ], - 'rectangle': [ - [ - -160.3125, - 57.65625 - ], - [ - -158.90625, - 57.65625 - ], - [ - -158.90625, - 59.0625 - ], - [ - -160.3125, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 42, - 'geohash': 'b6m', - 'center': [ - -161.015625, - 58.359375 - ], - 'rectangle': [ - [ - -161.71875, - 57.65625 - ], - [ - -160.3125, - 57.65625 - ], - [ - -160.3125, - 59.0625 - ], - [ - -161.71875, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -144.140625, - 13.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 49, - 'geohash': '8f3', - 'center': [ - -144.140625, - 13.359375 - ], - 'rectangle': [ - [ - -144.84375, - 12.65625 - ], - [ - -143.4375, - 12.65625 - ], - [ - -143.4375, - 14.0625 - ], - [ - -144.84375, - 14.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -141.328125, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': 'bg5', - 'center': [ - -141.328125, - 62.578125 - ], - 'rectangle': [ - [ - -142.03125, - 61.875 - ], - [ - -140.625, - 61.875 - ], - [ - -140.625, - 63.28125 - ], - [ - -142.03125, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -144.140625, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 42, - 'geohash': 'bfc', - 'center': [ - -144.140625, - 61.171875 - ], - 'rectangle': [ - [ - -144.84375, - 60.46875 - ], - [ - -143.4375, - 60.46875 - ], - [ - -143.4375, - 61.875 - ], - [ - -144.84375, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 69.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 40, - 'geohash': 'bsq', - 'center': [ - -148.359375, - 69.609375 - ], - 'rectangle': [ - [ - -149.0625, - 68.90625 - ], - [ - -147.65625, - 68.90625 - ], - [ - -147.65625, - 70.3125 - ], - [ - -149.0625, - 70.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -168.046875, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 44, - 'geohash': 'b78', - 'center': [ - -168.046875, - 65.390625 - ], - 'rectangle': [ - [ - -168.75, - 64.6875 - ], - [ - -167.34375, - 64.6875 - ], - [ - -167.34375, - 66.09375 - ], - [ - -168.75, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -165.234375, - 54.140625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 43, - 'geohash': 'b3d', - 'center': [ - -165.234375, - 54.140625 - ], - 'rectangle': [ - [ - -165.9375, - 53.4375 - ], - [ - -164.53125, - 53.4375 - ], - [ - -164.53125, - 54.84375 - ], - [ - -165.9375, - 54.84375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': '9xs', - 'center': [ - -106.171875, - 42.890625 - ], - 'rectangle': [ - [ - -106.875, - 42.1875 - ], - [ - -105.46875, - 42.1875 - ], - [ - -105.46875, - 43.59375 - ], - [ - -106.875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': '9rd', - 'center': [ - -120.234375, - 42.890625 - ], - 'rectangle': [ - [ - -120.9375, - 42.1875 - ], - [ - -119.53125, - 42.1875 - ], - [ - -119.53125, - 43.59375 - ], - [ - -120.9375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 41, - 'geohash': '9qr', - 'center': [ - -113.203125, - 35.859375 - ], - 'rectangle': [ - [ - -113.90625, - 35.15625 - ], - [ - -112.5, - 35.15625 - ], - [ - -112.5, - 36.5625 - ], - [ - -113.90625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 39, - 'geohash': 'bk1', - 'center': [ - -166.640625, - 68.203125 - ], - 'rectangle': [ - [ - -167.34375, - 67.5 - ], - [ - -165.9375, - 67.5 - ], - [ - -165.9375, - 68.90625 - ], - [ - -167.34375, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -144.140625, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 42, - 'geohash': 'bgc', - 'center': [ - -144.140625, - 66.796875 - ], - 'rectangle': [ - [ - -144.84375, - 66.09375 - ], - [ - -143.4375, - 66.09375 - ], - [ - -143.4375, - 67.5 - ], - [ - -144.84375, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': 'bek', - 'center': [ - -151.171875, - 63.984375 - ], - 'rectangle': [ - [ - -151.875, - 63.28125 - ], - [ - -150.46875, - 63.28125 - ], - [ - -150.46875, - 64.6875 - ], - [ - -151.875, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 41, - 'geohash': 'bde', - 'center': [ - -152.578125, - 59.765625 - ], - 'rectangle': [ - [ - -153.28125, - 59.0625 - ], - [ - -151.875, - 59.0625 - ], - [ - -151.875, - 60.46875 - ], - [ - -153.28125, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 38, - 'geohash': 'b7s', - 'center': [ - -162.421875, - 65.390625 - ], - 'rectangle': [ - [ - -163.125, - 64.6875 - ], - [ - -161.71875, - 64.6875 - ], - [ - -161.71875, - 66.09375 - ], - [ - -163.125, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 42, - 'geohash': 'b69', - 'center': [ - -166.640625, - 59.765625 - ], - 'rectangle': [ - [ - -167.34375, - 59.0625 - ], - [ - -165.9375, - 59.0625 - ], - [ - -165.9375, - 60.46875 - ], - [ - -167.34375, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 54.140625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 40, - 'geohash': 'b39', - 'center': [ - -166.640625, - 54.140625 - ], - 'rectangle': [ - [ - -167.34375, - 53.4375 - ], - [ - -165.9375, - 53.4375 - ], - [ - -165.9375, - 54.84375 - ], - [ - -167.34375, - 54.84375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 17.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 41, - 'geohash': '8g0', - 'center': [ - -145.546875, - 17.578125 - ], - 'rectangle': [ - [ - -146.25, - 16.875 - ], - [ - -144.84375, - 16.875 - ], - [ - -144.84375, - 18.28125 - ], - [ - -146.25, - 18.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -144.140625, - 69.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 38, - 'geohash': 'bu3', - 'center': [ - -144.140625, - 69.609375 - ], - 'rectangle': [ - [ - -144.84375, - 68.90625 - ], - [ - -143.4375, - 68.90625 - ], - [ - -143.4375, - 70.3125 - ], - [ - -144.84375, - 70.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 71.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 40, - 'geohash': 'bkw', - 'center': [ - -159.609375, - 71.015625 - ], - 'rectangle': [ - [ - -160.3125, - 70.3125 - ], - [ - -158.90625, - 70.3125 - ], - [ - -158.90625, - 71.71875 - ], - [ - -160.3125, - 71.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 69.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 39, - 'geohash': 'bkk', - 'center': [ - -162.421875, - 69.609375 - ], - 'rectangle': [ - [ - -163.125, - 68.90625 - ], - [ - -161.71875, - 68.90625 - ], - [ - -161.71875, - 70.3125 - ], - [ - -163.125, - 70.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -165.234375, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 41, - 'geohash': 'bk4', - 'center': [ - -165.234375, - 68.203125 - ], - 'rectangle': [ - [ - -165.9375, - 67.5 - ], - [ - -164.53125, - 67.5 - ], - [ - -164.53125, - 68.90625 - ], - [ - -165.9375, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 40, - 'geohash': 'be0', - 'center': [ - -156.796875, - 62.578125 - ], - 'rectangle': [ - [ - -157.5, - 61.875 - ], - [ - -156.09375, - 61.875 - ], - [ - -156.09375, - 63.28125 - ], - [ - -157.5, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 38, - 'geohash': 'bd5', - 'center': [ - -152.578125, - 56.953125 - ], - 'rectangle': [ - [ - -153.28125, - 56.25 - ], - [ - -151.875, - 56.25 - ], - [ - -151.875, - 57.65625 - ], - [ - -153.28125, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': 'b7p', - 'center': [ - -158.203125, - 62.578125 - ], - 'rectangle': [ - [ - -158.90625, - 61.875 - ], - [ - -157.5, - 61.875 - ], - [ - -157.5, - 63.28125 - ], - [ - -158.90625, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -170.859375, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 37, - 'geohash': 'b5q', - 'center': [ - -170.859375, - 63.984375 - ], - 'rectangle': [ - [ - -171.5625, - 63.28125 - ], - [ - -170.15625, - 63.28125 - ], - [ - -170.15625, - 64.6875 - ], - [ - -171.5625, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 39, - 'geohash': '9xc', - 'center': [ - -110.390625, - 44.296875 - ], - 'rectangle': [ - [ - -111.09375, - 43.59375 - ], - [ - -109.6875, - 43.59375 - ], - [ - -109.6875, - 45 - ], - [ - -111.09375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 42, - 'geohash': '9t8', - 'center': [ - -111.796875, - 31.640625 - ], - 'rectangle': [ - [ - -112.5, - 30.9375 - ], - [ - -111.09375, - 30.9375 - ], - [ - -111.09375, - 32.34375 - ], - [ - -112.5, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 44, - 'geohash': '9ry', - 'center': [ - -114.609375, - 44.296875 - ], - 'rectangle': [ - [ - -115.3125, - 43.59375 - ], - [ - -113.90625, - 43.59375 - ], - [ - -113.90625, - 45 - ], - [ - -115.3125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 37, - 'geohash': '9rn', - 'center': [ - -114.609375, - 40.078125 - ], - 'rectangle': [ - [ - -115.3125, - 39.375 - ], - [ - -113.90625, - 39.375 - ], - [ - -113.90625, - 40.78125 - ], - [ - -115.3125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 42, - 'geohash': 'f03', - 'center': [ - -87.890625, - 47.109375 - ], - 'rectangle': [ - [ - -88.59375, - 46.40625 - ], - [ - -87.1875, - 46.40625 - ], - [ - -87.1875, - 47.8125 - ], - [ - -88.59375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': 'f02', - 'center': [ - -89.296875, - 47.109375 - ], - 'rectangle': [ - [ - -90, - 46.40625 - ], - [ - -88.59375, - 46.40625 - ], - [ - -88.59375, - 47.8125 - ], - [ - -90, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 37, - 'geohash': 'b6w', - 'center': [ - -159.609375, - 59.765625 - ], - 'rectangle': [ - [ - -160.3125, - 59.0625 - ], - [ - -158.90625, - 59.0625 - ], - [ - -158.90625, - 60.46875 - ], - [ - -160.3125, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 43, - 'geohash': '9qy', - 'center': [ - -114.609375, - 38.671875 - ], - 'rectangle': [ - [ - -115.3125, - 37.96875 - ], - [ - -113.90625, - 37.96875 - ], - [ - -113.90625, - 39.375 - ], - [ - -115.3125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': 'bsn', - 'center': [ - -148.359375, - 68.203125 - ], - 'rectangle': [ - [ - -149.0625, - 67.5 - ], - [ - -147.65625, - 67.5 - ], - [ - -147.65625, - 68.90625 - ], - [ - -149.0625, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 39, - 'geohash': 'bg0', - 'center': [ - -145.546875, - 62.578125 - ], - 'rectangle': [ - [ - -146.25, - 61.875 - ], - [ - -144.84375, - 61.875 - ], - [ - -144.84375, - 63.28125 - ], - [ - -146.25, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 41, - 'geohash': 'bdw', - 'center': [ - -148.359375, - 59.765625 - ], - 'rectangle': [ - [ - -149.0625, - 59.0625 - ], - [ - -147.65625, - 59.0625 - ], - [ - -147.65625, - 60.46875 - ], - [ - -149.0625, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -155.390625, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 37, - 'geohash': 'bdc', - 'center': [ - -155.390625, - 61.171875 - ], - 'rectangle': [ - [ - -156.09375, - 60.46875 - ], - [ - -154.6875, - 60.46875 - ], - [ - -154.6875, - 61.875 - ], - [ - -156.09375, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 34, - 'geohash': 'b7y', - 'center': [ - -159.609375, - 66.796875 - ], - 'rectangle': [ - [ - -160.3125, - 66.09375 - ], - [ - -158.90625, - 66.09375 - ], - [ - -158.90625, - 67.5 - ], - [ - -160.3125, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -169.453125, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': 'b5x', - 'center': [ - -169.453125, - 65.390625 - ], - 'rectangle': [ - [ - -170.15625, - 64.6875 - ], - [ - -168.75, - 64.6875 - ], - [ - -168.75, - 66.09375 - ], - [ - -170.15625, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -176.484375, - 51.328125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 41, - 'geohash': 'b14', - 'center': [ - -176.484375, - 51.328125 - ], - 'rectangle': [ - [ - -177.1875, - 50.625 - ], - [ - -175.78125, - 50.625 - ], - [ - -175.78125, - 52.03125 - ], - [ - -177.1875, - 52.03125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 43, - 'geohash': '9re', - 'center': [ - -118.828125, - 42.890625 - ], - 'rectangle': [ - [ - -119.53125, - 42.1875 - ], - [ - -118.125, - 42.1875 - ], - [ - -118.125, - 43.59375 - ], - [ - -119.53125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 41, - 'geohash': '9r9', - 'center': [ - -121.640625, - 42.890625 - ], - 'rectangle': [ - [ - -122.34375, - 42.1875 - ], - [ - -120.9375, - 42.1875 - ], - [ - -120.9375, - 43.59375 - ], - [ - -122.34375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 32, - 'geohash': 'djh', - 'center': [ - -83.671875, - 28.828125 - ], - 'rectangle': [ - [ - -84.375, - 28.125 - ], - [ - -82.96875, - 28.125 - ], - [ - -82.96875, - 29.53125 - ], - [ - -84.375, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 42, - 'geohash': 'beq', - 'center': [ - -148.359375, - 63.984375 - ], - 'rectangle': [ - [ - -149.0625, - 63.28125 - ], - [ - -147.65625, - 63.28125 - ], - [ - -147.65625, - 64.6875 - ], - [ - -149.0625, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -169.453125, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 38, - 'geohash': 'b4p', - 'center': [ - -169.453125, - 56.953125 - ], - 'rectangle': [ - [ - -170.15625, - 56.25 - ], - [ - -168.75, - 56.25 - ], - [ - -168.75, - 57.65625 - ], - [ - -170.15625, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 42, - 'geohash': '9mg', - 'center': [ - -118.828125, - 33.046875 - ], - 'rectangle': [ - [ - -119.53125, - 32.34375 - ], - [ - -118.125, - 32.34375 - ], - [ - -118.125, - 33.75 - ], - [ - -119.53125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -153.984375, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': 'be4', - 'center': [ - -153.984375, - 62.578125 - ], - 'rectangle': [ - [ - -154.6875, - 61.875 - ], - [ - -153.28125, - 61.875 - ], - [ - -153.28125, - 63.28125 - ], - [ - -154.6875, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': 'b7u', - 'center': [ - -162.421875, - 66.796875 - ], - 'rectangle': [ - [ - -163.125, - 66.09375 - ], - [ - -161.71875, - 66.09375 - ], - [ - -161.71875, - 67.5 - ], - [ - -163.125, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': '9w3', - 'center': [ - -110.390625, - 35.859375 - ], - 'rectangle': [ - [ - -111.09375, - 35.15625 - ], - [ - -109.6875, - 35.15625 - ], - [ - -109.6875, - 36.5625 - ], - [ - -111.09375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 37, - 'geohash': 'drc', - 'center': [ - -76.640625, - 44.296875 - ], - 'rectangle': [ - [ - -77.34375, - 43.59375 - ], - [ - -75.9375, - 43.59375 - ], - [ - -75.9375, - 45 - ], - [ - -77.34375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 37, - 'geohash': 'cbx', - 'center': [ - -90.703125, - 48.515625 - ], - 'rectangle': [ - [ - -91.40625, - 47.8125 - ], - [ - -90, - 47.8125 - ], - [ - -90, - 49.21875 - ], - [ - -91.40625, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -134.296875, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': 'c1b', - 'center': [ - -134.296875, - 55.546875 - ], - 'rectangle': [ - [ - -135, - 54.84375 - ], - [ - -133.59375, - 54.84375 - ], - [ - -133.59375, - 56.25 - ], - [ - -135, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 31, - 'geohash': 'bkh', - 'center': [ - -162.421875, - 68.203125 - ], - 'rectangle': [ - [ - -163.125, - 67.5 - ], - [ - -161.71875, - 67.5 - ], - [ - -161.71875, - 68.90625 - ], - [ - -163.125, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 39, - 'geohash': 'b7c', - 'center': [ - -166.640625, - 66.796875 - ], - 'rectangle': [ - [ - -167.34375, - 66.09375 - ], - [ - -165.9375, - 66.09375 - ], - [ - -165.9375, - 67.5 - ], - [ - -167.34375, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 38, - 'geohash': '9v8', - 'center': [ - -100.546875, - 31.640625 - ], - 'rectangle': [ - [ - -101.25, - 30.9375 - ], - [ - -99.84375, - 30.9375 - ], - [ - -99.84375, - 32.34375 - ], - [ - -101.25, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 33, - 'geohash': 'beh', - 'center': [ - -151.171875, - 62.578125 - ], - 'rectangle': [ - [ - -151.875, - 61.875 - ], - [ - -150.46875, - 61.875 - ], - [ - -150.46875, - 63.28125 - ], - [ - -151.875, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 34, - 'geohash': 'b6t', - 'center': [ - -161.015625, - 59.765625 - ], - 'rectangle': [ - [ - -161.71875, - 59.0625 - ], - [ - -160.3125, - 59.0625 - ], - [ - -160.3125, - 60.46875 - ], - [ - -161.71875, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': '9rg', - 'center': [ - -118.828125, - 44.296875 - ], - 'rectangle': [ - [ - -119.53125, - 43.59375 - ], - [ - -118.125, - 43.59375 - ], - [ - -118.125, - 45 - ], - [ - -119.53125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': '9rf', - 'center': [ - -120.234375, - 44.296875 - ], - 'rectangle': [ - [ - -120.9375, - 43.59375 - ], - [ - -119.53125, - 43.59375 - ], - [ - -119.53125, - 45 - ], - [ - -120.9375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 32, - 'geohash': 'bsh', - 'center': [ - -151.171875, - 68.203125 - ], - 'rectangle': [ - [ - -151.875, - 67.5 - ], - [ - -150.46875, - 67.5 - ], - [ - -150.46875, - 68.90625 - ], - [ - -151.875, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 33, - 'geohash': 'bes', - 'center': [ - -151.171875, - 65.390625 - ], - 'rectangle': [ - [ - -151.875, - 64.6875 - ], - [ - -150.46875, - 64.6875 - ], - [ - -150.46875, - 66.09375 - ], - [ - -151.875, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 34, - 'geohash': 'b7r', - 'center': [ - -158.203125, - 63.984375 - ], - 'rectangle': [ - [ - -158.90625, - 63.28125 - ], - [ - -157.5, - 63.28125 - ], - [ - -157.5, - 64.6875 - ], - [ - -158.90625, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -146.953125, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': 'bdz', - 'center': [ - -146.953125, - 61.171875 - ], - 'rectangle': [ - [ - -147.65625, - 60.46875 - ], - [ - -146.25, - 60.46875 - ], - [ - -146.25, - 61.875 - ], - [ - -147.65625, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 31, - 'geohash': 'b7z', - 'center': [ - -158.203125, - 66.796875 - ], - 'rectangle': [ - [ - -158.90625, - 66.09375 - ], - [ - -157.5, - 66.09375 - ], - [ - -157.5, - 67.5 - ], - [ - -158.90625, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -153.984375, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 32, - 'geohash': 'bed', - 'center': [ - -153.984375, - 65.390625 - ], - 'rectangle': [ - [ - -154.6875, - 64.6875 - ], - [ - -153.28125, - 64.6875 - ], - [ - -153.28125, - 66.09375 - ], - [ - -154.6875, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -173.671875, - 52.734375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': 'b1k', - 'center': [ - -173.671875, - 52.734375 - ], - 'rectangle': [ - [ - -174.375, - 52.03125 - ], - [ - -172.96875, - 52.03125 - ], - [ - -172.96875, - 53.4375 - ], - [ - -174.375, - 53.4375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 24.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': 'dhm', - 'center': [ - -82.265625, - 24.609375 - ], - 'rectangle': [ - [ - -82.96875, - 23.90625 - ], - [ - -81.5625, - 23.90625 - ], - [ - -81.5625, - 25.3125 - ], - [ - -82.96875, - 25.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 34, - 'geohash': 'bew', - 'center': [ - -148.359375, - 65.390625 - ], - 'rectangle': [ - [ - -149.0625, - 64.6875 - ], - [ - -147.65625, - 64.6875 - ], - [ - -147.65625, - 66.09375 - ], - [ - -149.0625, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 29, - 'geohash': '9nz', - 'center': [ - -124.453125, - 38.671875 - ], - 'rectangle': [ - [ - -125.15625, - 37.96875 - ], - [ - -123.75, - 37.96875 - ], - [ - -123.75, - 39.375 - ], - [ - -125.15625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -141.328125, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': 'bge', - 'center': [ - -141.328125, - 65.390625 - ], - 'rectangle': [ - [ - -142.03125, - 64.6875 - ], - [ - -140.625, - 64.6875 - ], - [ - -140.625, - 66.09375 - ], - [ - -142.03125, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 32, - 'geohash': 'beg', - 'center': [ - -152.578125, - 66.796875 - ], - 'rectangle': [ - [ - -153.28125, - 66.09375 - ], - [ - -151.875, - 66.09375 - ], - [ - -151.875, - 67.5 - ], - [ - -153.28125, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -155.390625, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': 'be9', - 'center': [ - -155.390625, - 65.390625 - ], - 'rectangle': [ - [ - -156.09375, - 64.6875 - ], - [ - -154.6875, - 64.6875 - ], - [ - -154.6875, - 66.09375 - ], - [ - -156.09375, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 32, - 'geohash': 'b7h', - 'center': [ - -162.421875, - 62.578125 - ], - 'rectangle': [ - [ - -163.125, - 61.875 - ], - [ - -161.71875, - 61.875 - ], - [ - -161.71875, - 63.28125 - ], - [ - -163.125, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 24.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 31, - 'geohash': 'dhq', - 'center': [ - -80.859375, - 24.609375 - ], - 'rectangle': [ - [ - -81.5625, - 23.90625 - ], - [ - -80.15625, - 23.90625 - ], - [ - -80.15625, - 25.3125 - ], - [ - -81.5625, - 25.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -130.078125, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 32, - 'geohash': 'c1g', - 'center': [ - -130.078125, - 55.546875 - ], - 'rectangle': [ - [ - -130.78125, - 54.84375 - ], - [ - -129.375, - 54.84375 - ], - [ - -129.375, - 56.25 - ], - [ - -130.78125, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 33, - 'geohash': '9tc', - 'center': [ - -110.390625, - 33.046875 - ], - 'rectangle': [ - [ - -111.09375, - 32.34375 - ], - [ - -109.6875, - 32.34375 - ], - [ - -109.6875, - 33.75 - ], - [ - -111.09375, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 31, - 'geohash': 'dqd', - 'center': [ - -75.234375, - 37.265625 - ], - 'rectangle': [ - [ - -75.9375, - 36.5625 - ], - [ - -74.53125, - 36.5625 - ], - [ - -74.53125, - 37.96875 - ], - [ - -75.9375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -163.828125, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 30, - 'geohash': 'b3g', - 'center': [ - -163.828125, - 55.546875 - ], - 'rectangle': [ - [ - -164.53125, - 54.84375 - ], - [ - -163.125, - 54.84375 - ], - [ - -163.125, - 56.25 - ], - [ - -164.53125, - 56.25 - ] - ] - } - } - ] - } - }, - { - 'label': 'nginx: _type', - 'geoJSON': { - 'properties': { - 'label': 'nginx: _type', - 'length': 597, - 'min': 5, - 'max': 314, - 'precision': 3 - }, - 'type': 'FeatureCollection', - 'features': [ - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 314, - 'geohash': 'dr4', - 'center': [ - -75.234375, - 40.078125 - ], - 'rectangle': [ - [ - -75.9375, - 39.375 - ], - [ - -74.53125, - 39.375 - ], - [ - -74.53125, - 40.78125 - ], - [ - -75.9375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -73.828125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 248, - 'geohash': 'dr7', - 'center': [ - -73.828125, - 41.484375 - ], - 'rectangle': [ - [ - -74.53125, - 40.78125 - ], - [ - -73.125, - 40.78125 - ], - [ - -73.125, - 42.1875 - ], - [ - -74.53125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 199, - 'geohash': 'dph', - 'center': [ - -83.671875, - 40.078125 - ], - 'rectangle': [ - [ - -84.375, - 39.375 - ], - [ - -82.96875, - 39.375 - ], - [ - -82.96875, - 40.78125 - ], - [ - -84.375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -72.421875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 225, - 'geohash': 'drk', - 'center': [ - -72.421875, - 41.484375 - ], - 'rectangle': [ - [ - -73.125, - 40.78125 - ], - [ - -71.71875, - 40.78125 - ], - [ - -71.71875, - 42.1875 - ], - [ - -73.125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 215, - 'geohash': '9qh', - 'center': [ - -117.421875, - 34.453125 - ], - 'rectangle': [ - [ - -118.125, - 33.75 - ], - [ - -116.71875, - 33.75 - ], - [ - -116.71875, - 35.15625 - ], - [ - -118.125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 203, - 'geohash': '9qc', - 'center': [ - -121.640625, - 38.671875 - ], - 'rectangle': [ - [ - -122.34375, - 37.96875 - ], - [ - -120.9375, - 37.96875 - ], - [ - -120.9375, - 39.375 - ], - [ - -122.34375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 200, - 'geohash': 'dp3', - 'center': [ - -87.890625, - 41.484375 - ], - 'rectangle': [ - [ - -88.59375, - 40.78125 - ], - [ - -87.1875, - 40.78125 - ], - [ - -87.1875, - 42.1875 - ], - [ - -88.59375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 189, - 'geohash': 'dp4', - 'center': [ - -86.484375, - 40.078125 - ], - 'rectangle': [ - [ - -87.1875, - 39.375 - ], - [ - -85.78125, - 39.375 - ], - [ - -85.78125, - 40.78125 - ], - [ - -87.1875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 191, - 'geohash': 'dpk', - 'center': [ - -83.671875, - 41.484375 - ], - 'rectangle': [ - [ - -84.375, - 40.78125 - ], - [ - -82.96875, - 40.78125 - ], - [ - -82.96875, - 42.1875 - ], - [ - -84.375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 156, - 'geohash': 'dps', - 'center': [ - -83.671875, - 42.890625 - ], - 'rectangle': [ - [ - -84.375, - 42.1875 - ], - [ - -82.96875, - 42.1875 - ], - [ - -82.96875, - 43.59375 - ], - [ - -84.375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 176, - 'geohash': '9q9', - 'center': [ - -121.640625, - 37.265625 - ], - 'rectangle': [ - [ - -122.34375, - 36.5625 - ], - [ - -120.9375, - 36.5625 - ], - [ - -120.9375, - 37.96875 - ], - [ - -122.34375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 185, - 'geohash': 'dpq', - 'center': [ - -80.859375, - 41.484375 - ], - 'rectangle': [ - [ - -81.5625, - 40.78125 - ], - [ - -80.15625, - 40.78125 - ], - [ - -80.15625, - 42.1875 - ], - [ - -81.5625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 192, - 'geohash': '9q5', - 'center': [ - -118.828125, - 34.453125 - ], - 'rectangle': [ - [ - -119.53125, - 33.75 - ], - [ - -118.125, - 33.75 - ], - [ - -118.125, - 35.15625 - ], - [ - -119.53125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 181, - 'geohash': 'dp8', - 'center': [ - -89.296875, - 42.890625 - ], - 'rectangle': [ - [ - -90, - 42.1875 - ], - [ - -88.59375, - 42.1875 - ], - [ - -88.59375, - 43.59375 - ], - [ - -90, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 163, - 'geohash': 'dn6', - 'center': [ - -86.484375, - 35.859375 - ], - 'rectangle': [ - [ - -87.1875, - 35.15625 - ], - [ - -85.78125, - 35.15625 - ], - [ - -85.78125, - 36.5625 - ], - [ - -87.1875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 145, - 'geohash': '9y7', - 'center': [ - -96.328125, - 35.859375 - ], - 'rectangle': [ - [ - -97.03125, - 35.15625 - ], - [ - -95.625, - 35.15625 - ], - [ - -95.625, - 36.5625 - ], - [ - -97.03125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 161, - 'geohash': 'dpp', - 'center': [ - -79.453125, - 40.078125 - ], - 'rectangle': [ - [ - -80.15625, - 39.375 - ], - [ - -78.75, - 39.375 - ], - [ - -78.75, - 40.78125 - ], - [ - -80.15625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 160, - 'geohash': 'dn0', - 'center': [ - -89.296875, - 34.453125 - ], - 'rectangle': [ - [ - -90, - 33.75 - ], - [ - -88.59375, - 33.75 - ], - [ - -88.59375, - 35.15625 - ], - [ - -90, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 165, - 'geohash': 'dpe', - 'center': [ - -85.078125, - 42.890625 - ], - 'rectangle': [ - [ - -85.78125, - 42.1875 - ], - [ - -84.375, - 42.1875 - ], - [ - -84.375, - 43.59375 - ], - [ - -85.78125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 153, - 'geohash': '9vf', - 'center': [ - -97.734375, - 33.046875 - ], - 'rectangle': [ - [ - -98.4375, - 32.34375 - ], - [ - -97.03125, - 32.34375 - ], - [ - -97.03125, - 33.75 - ], - [ - -98.4375, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -73.828125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 161, - 'geohash': 'dre', - 'center': [ - -73.828125, - 42.890625 - ], - 'rectangle': [ - [ - -74.53125, - 42.1875 - ], - [ - -73.125, - 42.1875 - ], - [ - -73.125, - 43.59375 - ], - [ - -74.53125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 138, - 'geohash': 'dp6', - 'center': [ - -86.484375, - 41.484375 - ], - 'rectangle': [ - [ - -87.1875, - 40.78125 - ], - [ - -85.78125, - 40.78125 - ], - [ - -85.78125, - 42.1875 - ], - [ - -87.1875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 165, - 'geohash': '9vg', - 'center': [ - -96.328125, - 33.046875 - ], - 'rectangle': [ - [ - -97.03125, - 32.34375 - ], - [ - -95.625, - 32.34375 - ], - [ - -95.625, - 33.75 - ], - [ - -97.03125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 144, - 'geohash': '9zv', - 'center': [ - -93.515625, - 44.296875 - ], - 'rectangle': [ - [ - -94.21875, - 43.59375 - ], - [ - -92.8125, - 43.59375 - ], - [ - -92.8125, - 45 - ], - [ - -94.21875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 158, - 'geohash': 'dn5', - 'center': [ - -85.078125, - 34.453125 - ], - 'rectangle': [ - [ - -85.78125, - 33.75 - ], - [ - -84.375, - 33.75 - ], - [ - -84.375, - 35.15625 - ], - [ - -85.78125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 27.421875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 165, - 'geohash': 'dhv', - 'center': [ - -82.265625, - 27.421875 - ], - 'rectangle': [ - [ - -82.96875, - 26.71875 - ], - [ - -81.5625, - 26.71875 - ], - [ - -81.5625, - 28.125 - ], - [ - -82.96875, - 28.125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 150, - 'geohash': '9ys', - 'center': [ - -94.921875, - 37.265625 - ], - 'rectangle': [ - [ - -95.625, - 36.5625 - ], - [ - -94.21875, - 36.5625 - ], - [ - -94.21875, - 37.96875 - ], - [ - -95.625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 173, - 'geohash': 'dng', - 'center': [ - -85.078125, - 38.671875 - ], - 'rectangle': [ - [ - -85.78125, - 37.96875 - ], - [ - -84.375, - 37.96875 - ], - [ - -84.375, - 39.375 - ], - [ - -85.78125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -72.421875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 157, - 'geohash': 'drs', - 'center': [ - -72.421875, - 42.890625 - ], - 'rectangle': [ - [ - -73.125, - 42.1875 - ], - [ - -71.71875, - 42.1875 - ], - [ - -71.71875, - 43.59375 - ], - [ - -73.125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 139, - 'geohash': 'dr8', - 'center': [ - -78.046875, - 42.890625 - ], - 'rectangle': [ - [ - -78.75, - 42.1875 - ], - [ - -77.34375, - 42.1875 - ], - [ - -77.34375, - 43.59375 - ], - [ - -78.75, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 126, - 'geohash': 'djf', - 'center': [ - -86.484375, - 33.046875 - ], - 'rectangle': [ - [ - -87.1875, - 32.34375 - ], - [ - -85.78125, - 32.34375 - ], - [ - -85.78125, - 33.75 - ], - [ - -87.1875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 142, - 'geohash': 'dp9', - 'center': [ - -87.890625, - 42.890625 - ], - 'rectangle': [ - [ - -88.59375, - 42.1875 - ], - [ - -87.1875, - 42.1875 - ], - [ - -87.1875, - 43.59375 - ], - [ - -88.59375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 125, - 'geohash': '9yu', - 'center': [ - -94.921875, - 38.671875 - ], - 'rectangle': [ - [ - -95.625, - 37.96875 - ], - [ - -94.21875, - 37.96875 - ], - [ - -94.21875, - 39.375 - ], - [ - -95.625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 147, - 'geohash': '9yr', - 'center': [ - -90.703125, - 35.859375 - ], - 'rectangle': [ - [ - -91.40625, - 35.15625 - ], - [ - -90, - 35.15625 - ], - [ - -90, - 36.5625 - ], - [ - -91.40625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 138, - 'geohash': '9yn', - 'center': [ - -92.109375, - 34.453125 - ], - 'rectangle': [ - [ - -92.8125, - 33.75 - ], - [ - -91.40625, - 33.75 - ], - [ - -91.40625, - 35.15625 - ], - [ - -92.8125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 156, - 'geohash': '9qd', - 'center': [ - -120.234375, - 37.265625 - ], - 'rectangle': [ - [ - -120.9375, - 36.5625 - ], - [ - -119.53125, - 36.5625 - ], - [ - -119.53125, - 37.96875 - ], - [ - -120.9375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 159, - 'geohash': 'dp7', - 'center': [ - -85.078125, - 41.484375 - ], - 'rectangle': [ - [ - -85.78125, - 40.78125 - ], - [ - -84.375, - 40.78125 - ], - [ - -84.375, - 42.1875 - ], - [ - -85.78125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -71.015625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 125, - 'geohash': 'drt', - 'center': [ - -71.015625, - 42.890625 - ], - 'rectangle': [ - [ - -71.71875, - 42.1875 - ], - [ - -70.3125, - 42.1875 - ], - [ - -70.3125, - 43.59375 - ], - [ - -71.71875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 125, - 'geohash': 'dn2', - 'center': [ - -89.296875, - 35.859375 - ], - 'rectangle': [ - [ - -90, - 35.15625 - ], - [ - -88.59375, - 35.15625 - ], - [ - -88.59375, - 36.5625 - ], - [ - -90, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 138, - 'geohash': '9vk', - 'center': [ - -94.921875, - 30.234375 - ], - 'rectangle': [ - [ - -95.625, - 29.53125 - ], - [ - -94.21875, - 29.53125 - ], - [ - -94.21875, - 30.9375 - ], - [ - -95.625, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 27.421875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 128, - 'geohash': 'dhy', - 'center': [ - -80.859375, - 27.421875 - ], - 'rectangle': [ - [ - -81.5625, - 26.71875 - ], - [ - -80.15625, - 26.71875 - ], - [ - -80.15625, - 28.125 - ], - [ - -81.5625, - 28.125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 128, - 'geohash': 'dn3', - 'center': [ - -87.890625, - 35.859375 - ], - 'rectangle': [ - [ - -88.59375, - 35.15625 - ], - [ - -87.1875, - 35.15625 - ], - [ - -87.1875, - 36.5625 - ], - [ - -88.59375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 137, - 'geohash': 'dj8', - 'center': [ - -89.296875, - 31.640625 - ], - 'rectangle': [ - [ - -90, - 30.9375 - ], - [ - -88.59375, - 30.9375 - ], - [ - -88.59375, - 32.34375 - ], - [ - -90, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 128, - 'geohash': 'dpn', - 'center': [ - -80.859375, - 40.078125 - ], - 'rectangle': [ - [ - -81.5625, - 39.375 - ], - [ - -80.15625, - 39.375 - ], - [ - -80.15625, - 40.78125 - ], - [ - -81.5625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 137, - 'geohash': 'dju', - 'center': [ - -83.671875, - 33.046875 - ], - 'rectangle': [ - [ - -84.375, - 32.34375 - ], - [ - -82.96875, - 32.34375 - ], - [ - -82.96875, - 33.75 - ], - [ - -84.375, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 128, - 'geohash': '9vz', - 'center': [ - -90.703125, - 33.046875 - ], - 'rectangle': [ - [ - -91.40625, - 32.34375 - ], - [ - -90, - 32.34375 - ], - [ - -90, - 33.75 - ], - [ - -91.40625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 127, - 'geohash': 'dnp', - 'center': [ - -79.453125, - 34.453125 - ], - 'rectangle': [ - [ - -80.15625, - 33.75 - ], - [ - -78.75, - 33.75 - ], - [ - -78.75, - 35.15625 - ], - [ - -80.15625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -73.828125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 131, - 'geohash': 'dr5', - 'center': [ - -73.828125, - 40.078125 - ], - 'rectangle': [ - [ - -74.53125, - 39.375 - ], - [ - -73.125, - 39.375 - ], - [ - -73.125, - 40.78125 - ], - [ - -74.53125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 128, - 'geohash': 'dp5', - 'center': [ - -85.078125, - 40.078125 - ], - 'rectangle': [ - [ - -85.78125, - 39.375 - ], - [ - -84.375, - 39.375 - ], - [ - -84.375, - 40.78125 - ], - [ - -85.78125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 140, - 'geohash': '9r1', - 'center': [ - -121.640625, - 40.078125 - ], - 'rectangle': [ - [ - -122.34375, - 39.375 - ], - [ - -120.9375, - 39.375 - ], - [ - -120.9375, - 40.78125 - ], - [ - -122.34375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 138, - 'geohash': 'djv', - 'center': [ - -82.265625, - 33.046875 - ], - 'rectangle': [ - [ - -82.96875, - 32.34375 - ], - [ - -81.5625, - 32.34375 - ], - [ - -81.5625, - 33.75 - ], - [ - -82.96875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 132, - 'geohash': 'djt', - 'center': [ - -82.265625, - 31.640625 - ], - 'rectangle': [ - [ - -82.96875, - 30.9375 - ], - [ - -81.5625, - 30.9375 - ], - [ - -81.5625, - 32.34375 - ], - [ - -82.96875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 123, - 'geohash': 'dpm', - 'center': [ - -82.265625, - 41.484375 - ], - 'rectangle': [ - [ - -82.96875, - 40.78125 - ], - [ - -81.5625, - 40.78125 - ], - [ - -81.5625, - 42.1875 - ], - [ - -82.96875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 123, - 'geohash': '9zm', - 'center': [ - -93.515625, - 41.484375 - ], - 'rectangle': [ - [ - -94.21875, - 40.78125 - ], - [ - -92.8125, - 40.78125 - ], - [ - -92.8125, - 42.1875 - ], - [ - -94.21875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 115, - 'geohash': 'dnn', - 'center': [ - -80.859375, - 34.453125 - ], - 'rectangle': [ - [ - -81.5625, - 33.75 - ], - [ - -80.15625, - 33.75 - ], - [ - -80.15625, - 35.15625 - ], - [ - -81.5625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 127, - 'geohash': '9y3', - 'center': [ - -99.140625, - 35.859375 - ], - 'rectangle': [ - [ - -99.84375, - 35.15625 - ], - [ - -98.4375, - 35.15625 - ], - [ - -98.4375, - 36.5625 - ], - [ - -99.84375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 133, - 'geohash': '9yy', - 'center': [ - -92.109375, - 38.671875 - ], - 'rectangle': [ - [ - -92.8125, - 37.96875 - ], - [ - -91.40625, - 37.96875 - ], - [ - -91.40625, - 39.375 - ], - [ - -92.8125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 134, - 'geohash': 'dn7', - 'center': [ - -85.078125, - 35.859375 - ], - 'rectangle': [ - [ - -85.78125, - 35.15625 - ], - [ - -84.375, - 35.15625 - ], - [ - -84.375, - 36.5625 - ], - [ - -85.78125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 124, - 'geohash': '9tb', - 'center': [ - -111.796875, - 33.046875 - ], - 'rectangle': [ - [ - -112.5, - 32.34375 - ], - [ - -111.09375, - 32.34375 - ], - [ - -111.09375, - 33.75 - ], - [ - -112.5, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 131, - 'geohash': 'dnq', - 'center': [ - -80.859375, - 35.859375 - ], - 'rectangle': [ - [ - -81.5625, - 35.15625 - ], - [ - -80.15625, - 35.15625 - ], - [ - -80.15625, - 36.5625 - ], - [ - -81.5625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 111, - 'geohash': 'djn', - 'center': [ - -80.859375, - 28.828125 - ], - 'rectangle': [ - [ - -81.5625, - 28.125 - ], - [ - -80.15625, - 28.125 - ], - [ - -80.15625, - 29.53125 - ], - [ - -81.5625, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 94, - 'geohash': 'dnj', - 'center': [ - -82.265625, - 34.453125 - ], - 'rectangle': [ - [ - -82.96875, - 33.75 - ], - [ - -81.5625, - 33.75 - ], - [ - -81.5625, - 35.15625 - ], - [ - -82.96875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 149, - 'geohash': '9y6', - 'center': [ - -97.734375, - 35.859375 - ], - 'rectangle': [ - [ - -98.4375, - 35.15625 - ], - [ - -97.03125, - 35.15625 - ], - [ - -97.03125, - 36.5625 - ], - [ - -98.4375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 127, - 'geohash': '9vv', - 'center': [ - -93.515625, - 33.046875 - ], - 'rectangle': [ - [ - -94.21875, - 32.34375 - ], - [ - -92.8125, - 32.34375 - ], - [ - -92.8125, - 33.75 - ], - [ - -94.21875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 127, - 'geohash': 'dr9', - 'center': [ - -76.640625, - 42.890625 - ], - 'rectangle': [ - [ - -77.34375, - 42.1875 - ], - [ - -75.9375, - 42.1875 - ], - [ - -75.9375, - 43.59375 - ], - [ - -77.34375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 133, - 'geohash': 'djs', - 'center': [ - -83.671875, - 31.640625 - ], - 'rectangle': [ - [ - -84.375, - 30.9375 - ], - [ - -82.96875, - 30.9375 - ], - [ - -82.96875, - 32.34375 - ], - [ - -84.375, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 124, - 'geohash': '9z7', - 'center': [ - -96.328125, - 41.484375 - ], - 'rectangle': [ - [ - -97.03125, - 40.78125 - ], - [ - -95.625, - 40.78125 - ], - [ - -95.625, - 42.1875 - ], - [ - -97.03125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 119, - 'geohash': 'djg', - 'center': [ - -85.078125, - 33.046875 - ], - 'rectangle': [ - [ - -85.78125, - 32.34375 - ], - [ - -84.375, - 32.34375 - ], - [ - -84.375, - 33.75 - ], - [ - -85.78125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 111, - 'geohash': 'dpj', - 'center': [ - -82.265625, - 40.078125 - ], - 'rectangle': [ - [ - -82.96875, - 39.375 - ], - [ - -81.5625, - 39.375 - ], - [ - -81.5625, - 40.78125 - ], - [ - -82.96875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 115, - 'geohash': 'c20', - 'center': [ - -123.046875, - 45.703125 - ], - 'rectangle': [ - [ - -123.75, - 45 - ], - [ - -122.34375, - 45 - ], - [ - -122.34375, - 46.40625 - ], - [ - -123.75, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 110, - 'geohash': 'dnh', - 'center': [ - -83.671875, - 34.453125 - ], - 'rectangle': [ - [ - -84.375, - 33.75 - ], - [ - -82.96875, - 33.75 - ], - [ - -82.96875, - 35.15625 - ], - [ - -84.375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 120, - 'geohash': '9yk', - 'center': [ - -94.921875, - 35.859375 - ], - 'rectangle': [ - [ - -95.625, - 35.15625 - ], - [ - -94.21875, - 35.15625 - ], - [ - -94.21875, - 36.5625 - ], - [ - -95.625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 123, - 'geohash': 'dqb', - 'center': [ - -78.046875, - 38.671875 - ], - 'rectangle': [ - [ - -78.75, - 37.96875 - ], - [ - -77.34375, - 37.96875 - ], - [ - -77.34375, - 39.375 - ], - [ - -78.75, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 112, - 'geohash': '9mu', - 'center': [ - -117.421875, - 33.046875 - ], - 'rectangle': [ - [ - -118.125, - 32.34375 - ], - [ - -116.71875, - 32.34375 - ], - [ - -116.71875, - 33.75 - ], - [ - -118.125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -71.015625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 123, - 'geohash': 'drm', - 'center': [ - -71.015625, - 41.484375 - ], - 'rectangle': [ - [ - -71.71875, - 40.78125 - ], - [ - -70.3125, - 40.78125 - ], - [ - -70.3125, - 42.1875 - ], - [ - -71.71875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 117, - 'geohash': 'dqc', - 'center': [ - -76.640625, - 38.671875 - ], - 'rectangle': [ - [ - -77.34375, - 37.96875 - ], - [ - -75.9375, - 37.96875 - ], - [ - -75.9375, - 39.375 - ], - [ - -77.34375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 104, - 'geohash': '9yq', - 'center': [ - -92.109375, - 35.859375 - ], - 'rectangle': [ - [ - -92.8125, - 35.15625 - ], - [ - -91.40625, - 35.15625 - ], - [ - -91.40625, - 36.5625 - ], - [ - -92.8125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 111, - 'geohash': 'dn4', - 'center': [ - -86.484375, - 34.453125 - ], - 'rectangle': [ - [ - -87.1875, - 33.75 - ], - [ - -85.78125, - 33.75 - ], - [ - -85.78125, - 35.15625 - ], - [ - -87.1875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 119, - 'geohash': 'bdv', - 'center': [ - -149.765625, - 61.171875 - ], - 'rectangle': [ - [ - -150.46875, - 60.46875 - ], - [ - -149.0625, - 60.46875 - ], - [ - -149.0625, - 61.875 - ], - [ - -150.46875, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 108, - 'geohash': '9yp', - 'center': [ - -90.703125, - 34.453125 - ], - 'rectangle': [ - [ - -91.40625, - 33.75 - ], - [ - -90, - 33.75 - ], - [ - -90, - 35.15625 - ], - [ - -91.40625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 105, - 'geohash': '9vd', - 'center': [ - -97.734375, - 31.640625 - ], - 'rectangle': [ - [ - -98.4375, - 30.9375 - ], - [ - -97.03125, - 30.9375 - ], - [ - -97.03125, - 32.34375 - ], - [ - -98.4375, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 114, - 'geohash': '9yd', - 'center': [ - -97.734375, - 37.265625 - ], - 'rectangle': [ - [ - -98.4375, - 36.5625 - ], - [ - -97.03125, - 36.5625 - ], - [ - -97.03125, - 37.96875 - ], - [ - -98.4375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 26.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 118, - 'geohash': 'dhw', - 'center': [ - -80.859375, - 26.015625 - ], - 'rectangle': [ - [ - -81.5625, - 25.3125 - ], - [ - -80.15625, - 25.3125 - ], - [ - -80.15625, - 26.71875 - ], - [ - -81.5625, - 26.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 116, - 'geohash': 'dr6', - 'center': [ - -75.234375, - 41.484375 - ], - 'rectangle': [ - [ - -75.9375, - 40.78125 - ], - [ - -74.53125, - 40.78125 - ], - [ - -74.53125, - 42.1875 - ], - [ - -75.9375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 100, - 'geohash': 'dnv', - 'center': [ - -82.265625, - 38.671875 - ], - 'rectangle': [ - [ - -82.96875, - 37.96875 - ], - [ - -81.5625, - 37.96875 - ], - [ - -81.5625, - 39.375 - ], - [ - -82.96875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 119, - 'geohash': 'dnr', - 'center': [ - -79.453125, - 35.859375 - ], - 'rectangle': [ - [ - -80.15625, - 35.15625 - ], - [ - -78.75, - 35.15625 - ], - [ - -78.75, - 36.5625 - ], - [ - -80.15625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 94, - 'geohash': 'dje', - 'center': [ - -85.078125, - 31.640625 - ], - 'rectangle': [ - [ - -85.78125, - 30.9375 - ], - [ - -84.375, - 30.9375 - ], - [ - -84.375, - 32.34375 - ], - [ - -85.78125, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 113, - 'geohash': '9y4', - 'center': [ - -97.734375, - 34.453125 - ], - 'rectangle': [ - [ - -98.4375, - 33.75 - ], - [ - -97.03125, - 33.75 - ], - [ - -97.03125, - 35.15625 - ], - [ - -98.4375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 109, - 'geohash': '9q7', - 'center': [ - -118.828125, - 35.859375 - ], - 'rectangle': [ - [ - -119.53125, - 35.15625 - ], - [ - -118.125, - 35.15625 - ], - [ - -118.125, - 36.5625 - ], - [ - -119.53125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 104, - 'geohash': 'dn8', - 'center': [ - -89.296875, - 37.265625 - ], - 'rectangle': [ - [ - -90, - 36.5625 - ], - [ - -88.59375, - 36.5625 - ], - [ - -88.59375, - 37.96875 - ], - [ - -90, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 108, - 'geohash': '9zu', - 'center': [ - -94.921875, - 44.296875 - ], - 'rectangle': [ - [ - -95.625, - 43.59375 - ], - [ - -94.21875, - 43.59375 - ], - [ - -94.21875, - 45 - ], - [ - -95.625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 102, - 'geohash': 'dq2', - 'center': [ - -78.046875, - 35.859375 - ], - 'rectangle': [ - [ - -78.75, - 35.15625 - ], - [ - -77.34375, - 35.15625 - ], - [ - -77.34375, - 36.5625 - ], - [ - -78.75, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 108, - 'geohash': 'dnb', - 'center': [ - -89.296875, - 38.671875 - ], - 'rectangle': [ - [ - -90, - 37.96875 - ], - [ - -88.59375, - 37.96875 - ], - [ - -88.59375, - 39.375 - ], - [ - -90, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 101, - 'geohash': 'dnc', - 'center': [ - -87.890625, - 38.671875 - ], - 'rectangle': [ - [ - -88.59375, - 37.96875 - ], - [ - -87.1875, - 37.96875 - ], - [ - -87.1875, - 39.375 - ], - [ - -88.59375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 114, - 'geohash': '9zq', - 'center': [ - -92.109375, - 41.484375 - ], - 'rectangle': [ - [ - -92.8125, - 40.78125 - ], - [ - -91.40625, - 40.78125 - ], - [ - -91.40625, - 42.1875 - ], - [ - -92.8125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 122, - 'geohash': '9y5', - 'center': [ - -96.328125, - 34.453125 - ], - 'rectangle': [ - [ - -97.03125, - 33.75 - ], - [ - -95.625, - 33.75 - ], - [ - -95.625, - 35.15625 - ], - [ - -97.03125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 97, - 'geohash': '9vu', - 'center': [ - -94.921875, - 33.046875 - ], - 'rectangle': [ - [ - -95.625, - 32.34375 - ], - [ - -94.21875, - 32.34375 - ], - [ - -94.21875, - 33.75 - ], - [ - -95.625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 104, - 'geohash': 'dnm', - 'center': [ - -82.265625, - 35.859375 - ], - 'rectangle': [ - [ - -82.96875, - 35.15625 - ], - [ - -81.5625, - 35.15625 - ], - [ - -81.5625, - 36.5625 - ], - [ - -82.96875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 114, - 'geohash': '9yz', - 'center': [ - -90.703125, - 38.671875 - ], - 'rectangle': [ - [ - -91.40625, - 37.96875 - ], - [ - -90, - 37.96875 - ], - [ - -90, - 39.375 - ], - [ - -91.40625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -132.890625, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 125, - 'geohash': 'c1c', - 'center': [ - -132.890625, - 55.546875 - ], - 'rectangle': [ - [ - -133.59375, - 54.84375 - ], - [ - -132.1875, - 54.84375 - ], - [ - -132.1875, - 56.25 - ], - [ - -133.59375, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 107, - 'geohash': 'dnf', - 'center': [ - -86.484375, - 38.671875 - ], - 'rectangle': [ - [ - -87.1875, - 37.96875 - ], - [ - -85.78125, - 37.96875 - ], - [ - -85.78125, - 39.375 - ], - [ - -87.1875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 106, - 'geohash': 'dpg', - 'center': [ - -85.078125, - 44.296875 - ], - 'rectangle': [ - [ - -85.78125, - 43.59375 - ], - [ - -84.375, - 43.59375 - ], - [ - -84.375, - 45 - ], - [ - -85.78125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 111, - 'geohash': 'dn9', - 'center': [ - -87.890625, - 37.265625 - ], - 'rectangle': [ - [ - -88.59375, - 36.5625 - ], - [ - -87.1875, - 36.5625 - ], - [ - -87.1875, - 37.96875 - ], - [ - -88.59375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 120, - 'geohash': 'dq0', - 'center': [ - -78.046875, - 34.453125 - ], - 'rectangle': [ - [ - -78.75, - 33.75 - ], - [ - -77.34375, - 33.75 - ], - [ - -77.34375, - 35.15625 - ], - [ - -78.75, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 123, - 'geohash': '9v7', - 'center': [ - -96.328125, - 30.234375 - ], - 'rectangle': [ - [ - -97.03125, - 29.53125 - ], - [ - -95.625, - 29.53125 - ], - [ - -95.625, - 30.9375 - ], - [ - -97.03125, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 103, - 'geohash': '9z4', - 'center': [ - -97.734375, - 40.078125 - ], - 'rectangle': [ - [ - -98.4375, - 39.375 - ], - [ - -97.03125, - 39.375 - ], - [ - -97.03125, - 40.78125 - ], - [ - -98.4375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 106, - 'geohash': 'dq9', - 'center': [ - -76.640625, - 37.265625 - ], - 'rectangle': [ - [ - -77.34375, - 36.5625 - ], - [ - -75.9375, - 36.5625 - ], - [ - -75.9375, - 37.96875 - ], - [ - -77.34375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 102, - 'geohash': 'djb', - 'center': [ - -89.296875, - 33.046875 - ], - 'rectangle': [ - [ - -90, - 32.34375 - ], - [ - -88.59375, - 32.34375 - ], - [ - -88.59375, - 33.75 - ], - [ - -90, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 95, - 'geohash': '9zr', - 'center': [ - -90.703125, - 41.484375 - ], - 'rectangle': [ - [ - -91.40625, - 40.78125 - ], - [ - -90, - 40.78125 - ], - [ - -90, - 42.1875 - ], - [ - -91.40625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -72.421875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 91, - 'geohash': 'dru', - 'center': [ - -72.421875, - 44.296875 - ], - 'rectangle': [ - [ - -73.125, - 43.59375 - ], - [ - -71.71875, - 43.59375 - ], - [ - -71.71875, - 45 - ], - [ - -73.125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 94, - 'geohash': '9zs', - 'center': [ - -94.921875, - 42.890625 - ], - 'rectangle': [ - [ - -95.625, - 42.1875 - ], - [ - -94.21875, - 42.1875 - ], - [ - -94.21875, - 43.59375 - ], - [ - -95.625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 120, - 'geohash': '9ze', - 'center': [ - -96.328125, - 42.890625 - ], - 'rectangle': [ - [ - -97.03125, - 42.1875 - ], - [ - -95.625, - 42.1875 - ], - [ - -95.625, - 43.59375 - ], - [ - -97.03125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 116, - 'geohash': 'djc', - 'center': [ - -87.890625, - 33.046875 - ], - 'rectangle': [ - [ - -88.59375, - 32.34375 - ], - [ - -87.1875, - 32.34375 - ], - [ - -87.1875, - 33.75 - ], - [ - -88.59375, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 102, - 'geohash': '9y1', - 'center': [ - -99.140625, - 34.453125 - ], - 'rectangle': [ - [ - -99.84375, - 33.75 - ], - [ - -98.4375, - 33.75 - ], - [ - -98.4375, - 35.15625 - ], - [ - -99.84375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 99, - 'geohash': 'djy', - 'center': [ - -80.859375, - 33.046875 - ], - 'rectangle': [ - [ - -81.5625, - 32.34375 - ], - [ - -80.15625, - 32.34375 - ], - [ - -80.15625, - 33.75 - ], - [ - -81.5625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 95, - 'geohash': 'c28', - 'center': [ - -123.046875, - 48.515625 - ], - 'rectangle': [ - [ - -123.75, - 47.8125 - ], - [ - -122.34375, - 47.8125 - ], - [ - -122.34375, - 49.21875 - ], - [ - -123.75, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 97, - 'geohash': '9vx', - 'center': [ - -90.703125, - 31.640625 - ], - 'rectangle': [ - [ - -91.40625, - 30.9375 - ], - [ - -90, - 30.9375 - ], - [ - -90, - 32.34375 - ], - [ - -91.40625, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 92, - 'geohash': 'dnw', - 'center': [ - -80.859375, - 37.265625 - ], - 'rectangle': [ - [ - -81.5625, - 36.5625 - ], - [ - -80.15625, - 36.5625 - ], - [ - -80.15625, - 37.96875 - ], - [ - -81.5625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 106, - 'geohash': '9zk', - 'center': [ - -94.921875, - 41.484375 - ], - 'rectangle': [ - [ - -95.625, - 40.78125 - ], - [ - -94.21875, - 40.78125 - ], - [ - -94.21875, - 42.1875 - ], - [ - -95.625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 86, - 'geohash': 'djd', - 'center': [ - -86.484375, - 31.640625 - ], - 'rectangle': [ - [ - -87.1875, - 30.9375 - ], - [ - -85.78125, - 30.9375 - ], - [ - -85.78125, - 32.34375 - ], - [ - -87.1875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 99, - 'geohash': 'f05', - 'center': [ - -85.078125, - 45.703125 - ], - 'rectangle': [ - [ - -85.78125, - 45 - ], - [ - -84.375, - 45 - ], - [ - -84.375, - 46.40625 - ], - [ - -85.78125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -69.609375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 111, - 'geohash': 'dry', - 'center': [ - -69.609375, - 44.296875 - ], - 'rectangle': [ - [ - -70.3125, - 43.59375 - ], - [ - -68.90625, - 43.59375 - ], - [ - -68.90625, - 45 - ], - [ - -70.3125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 106, - 'geohash': 'cbd', - 'center': [ - -97.734375, - 48.515625 - ], - 'rectangle': [ - [ - -98.4375, - 47.8125 - ], - [ - -97.03125, - 47.8125 - ], - [ - -97.03125, - 49.21875 - ], - [ - -98.4375, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 116, - 'geohash': 'cbj', - 'center': [ - -93.515625, - 45.703125 - ], - 'rectangle': [ - [ - -94.21875, - 45 - ], - [ - -92.8125, - 45 - ], - [ - -92.8125, - 46.40625 - ], - [ - -94.21875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 95, - 'geohash': 'dr2', - 'center': [ - -78.046875, - 41.484375 - ], - 'rectangle': [ - [ - -78.75, - 40.78125 - ], - [ - -77.34375, - 40.78125 - ], - [ - -77.34375, - 42.1875 - ], - [ - -78.75, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 110, - 'geohash': 'djj', - 'center': [ - -82.265625, - 28.828125 - ], - 'rectangle': [ - [ - -82.96875, - 28.125 - ], - [ - -81.5625, - 28.125 - ], - [ - -81.5625, - 29.53125 - ], - [ - -82.96875, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 90, - 'geohash': '9z6', - 'center': [ - -97.734375, - 41.484375 - ], - 'rectangle': [ - [ - -98.4375, - 40.78125 - ], - [ - -97.03125, - 40.78125 - ], - [ - -97.03125, - 42.1875 - ], - [ - -98.4375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 106, - 'geohash': 'dqf', - 'center': [ - -75.234375, - 38.671875 - ], - 'rectangle': [ - [ - -75.9375, - 37.96875 - ], - [ - -74.53125, - 37.96875 - ], - [ - -74.53125, - 39.375 - ], - [ - -75.9375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 93, - 'geohash': 'dne', - 'center': [ - -85.078125, - 37.265625 - ], - 'rectangle': [ - [ - -85.78125, - 36.5625 - ], - [ - -84.375, - 36.5625 - ], - [ - -84.375, - 37.96875 - ], - [ - -85.78125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 101, - 'geohash': '9v6', - 'center': [ - -97.734375, - 30.234375 - ], - 'rectangle': [ - [ - -98.4375, - 29.53125 - ], - [ - -97.03125, - 29.53125 - ], - [ - -97.03125, - 30.9375 - ], - [ - -98.4375, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 96, - 'geohash': '9vy', - 'center': [ - -92.109375, - 33.046875 - ], - 'rectangle': [ - [ - -92.8125, - 32.34375 - ], - [ - -91.40625, - 32.34375 - ], - [ - -91.40625, - 33.75 - ], - [ - -92.8125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 90, - 'geohash': 'f00', - 'center': [ - -89.296875, - 45.703125 - ], - 'rectangle': [ - [ - -90, - 45 - ], - [ - -88.59375, - 45 - ], - [ - -88.59375, - 46.40625 - ], - [ - -90, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 100, - 'geohash': 'dr3', - 'center': [ - -76.640625, - 41.484375 - ], - 'rectangle': [ - [ - -77.34375, - 40.78125 - ], - [ - -75.9375, - 40.78125 - ], - [ - -75.9375, - 42.1875 - ], - [ - -77.34375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 86, - 'geohash': '9vm', - 'center': [ - -93.515625, - 30.234375 - ], - 'rectangle': [ - [ - -94.21875, - 29.53125 - ], - [ - -92.8125, - 29.53125 - ], - [ - -92.8125, - 30.9375 - ], - [ - -94.21875, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 86, - 'geohash': 'dnk', - 'center': [ - -83.671875, - 35.859375 - ], - 'rectangle': [ - [ - -84.375, - 35.15625 - ], - [ - -82.96875, - 35.15625 - ], - [ - -82.96875, - 36.5625 - ], - [ - -84.375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 101, - 'geohash': '9zx', - 'center': [ - -90.703125, - 42.890625 - ], - 'rectangle': [ - [ - -91.40625, - 42.1875 - ], - [ - -90, - 42.1875 - ], - [ - -90, - 43.59375 - ], - [ - -91.40625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 95, - 'geohash': '9qf', - 'center': [ - -120.234375, - 38.671875 - ], - 'rectangle': [ - [ - -120.9375, - 37.96875 - ], - [ - -119.53125, - 37.96875 - ], - [ - -119.53125, - 39.375 - ], - [ - -120.9375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 89, - 'geohash': 'dpc', - 'center': [ - -87.890625, - 44.296875 - ], - 'rectangle': [ - [ - -88.59375, - 43.59375 - ], - [ - -87.1875, - 43.59375 - ], - [ - -87.1875, - 45 - ], - [ - -88.59375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 96, - 'geohash': 'dj3', - 'center': [ - -87.890625, - 30.234375 - ], - 'rectangle': [ - [ - -88.59375, - 29.53125 - ], - [ - -87.1875, - 29.53125 - ], - [ - -87.1875, - 30.9375 - ], - [ - -88.59375, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 99, - 'geohash': '9zp', - 'center': [ - -90.703125, - 40.078125 - ], - 'rectangle': [ - [ - -91.40625, - 39.375 - ], - [ - -90, - 39.375 - ], - [ - -90, - 40.78125 - ], - [ - -91.40625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 96, - 'geohash': 'dnd', - 'center': [ - -86.484375, - 37.265625 - ], - 'rectangle': [ - [ - -87.1875, - 36.5625 - ], - [ - -85.78125, - 36.5625 - ], - [ - -85.78125, - 37.96875 - ], - [ - -87.1875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 83, - 'geohash': '9xj', - 'center': [ - -104.765625, - 40.078125 - ], - 'rectangle': [ - [ - -105.46875, - 39.375 - ], - [ - -104.0625, - 39.375 - ], - [ - -104.0625, - 40.78125 - ], - [ - -105.46875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 88, - 'geohash': 'dp1', - 'center': [ - -87.890625, - 40.078125 - ], - 'rectangle': [ - [ - -88.59375, - 39.375 - ], - [ - -87.1875, - 39.375 - ], - [ - -87.1875, - 40.78125 - ], - [ - -88.59375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 89, - 'geohash': '9qb', - 'center': [ - -123.046875, - 38.671875 - ], - 'rectangle': [ - [ - -123.75, - 37.96875 - ], - [ - -122.34375, - 37.96875 - ], - [ - -122.34375, - 39.375 - ], - [ - -123.75, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 87, - 'geohash': '9z1', - 'center': [ - -99.140625, - 40.078125 - ], - 'rectangle': [ - [ - -99.84375, - 39.375 - ], - [ - -98.4375, - 39.375 - ], - [ - -98.4375, - 40.78125 - ], - [ - -99.84375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 94, - 'geohash': 'dn1', - 'center': [ - -87.890625, - 34.453125 - ], - 'rectangle': [ - [ - -88.59375, - 33.75 - ], - [ - -87.1875, - 33.75 - ], - [ - -87.1875, - 35.15625 - ], - [ - -88.59375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 76, - 'geohash': '9vr', - 'center': [ - -90.703125, - 30.234375 - ], - 'rectangle': [ - [ - -91.40625, - 29.53125 - ], - [ - -90, - 29.53125 - ], - [ - -90, - 30.9375 - ], - [ - -91.40625, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 91, - 'geohash': '9vq', - 'center': [ - -92.109375, - 30.234375 - ], - 'rectangle': [ - [ - -92.8125, - 29.53125 - ], - [ - -91.40625, - 29.53125 - ], - [ - -91.40625, - 30.9375 - ], - [ - -92.8125, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 92, - 'geohash': 'cbn', - 'center': [ - -92.109375, - 45.703125 - ], - 'rectangle': [ - [ - -92.8125, - 45 - ], - [ - -91.40625, - 45 - ], - [ - -91.40625, - 46.40625 - ], - [ - -92.8125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 80, - 'geohash': '9ym', - 'center': [ - -93.515625, - 35.859375 - ], - 'rectangle': [ - [ - -94.21875, - 35.15625 - ], - [ - -92.8125, - 35.15625 - ], - [ - -92.8125, - 36.5625 - ], - [ - -94.21875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 83, - 'geohash': 'dpb', - 'center': [ - -89.296875, - 44.296875 - ], - 'rectangle': [ - [ - -90, - 43.59375 - ], - [ - -88.59375, - 43.59375 - ], - [ - -88.59375, - 45 - ], - [ - -90, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 94, - 'geohash': 'dns', - 'center': [ - -83.671875, - 37.265625 - ], - 'rectangle': [ - [ - -84.375, - 36.5625 - ], - [ - -82.96875, - 36.5625 - ], - [ - -82.96875, - 37.96875 - ], - [ - -84.375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 79, - 'geohash': 'dj2', - 'center': [ - -89.296875, - 30.234375 - ], - 'rectangle': [ - [ - -90, - 29.53125 - ], - [ - -88.59375, - 29.53125 - ], - [ - -88.59375, - 30.9375 - ], - [ - -90, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 80, - 'geohash': 'dp2', - 'center': [ - -89.296875, - 41.484375 - ], - 'rectangle': [ - [ - -90, - 40.78125 - ], - [ - -88.59375, - 40.78125 - ], - [ - -88.59375, - 42.1875 - ], - [ - -90, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 88, - 'geohash': 'djm', - 'center': [ - -82.265625, - 30.234375 - ], - 'rectangle': [ - [ - -82.96875, - 29.53125 - ], - [ - -81.5625, - 29.53125 - ], - [ - -81.5625, - 30.9375 - ], - [ - -82.96875, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 82, - 'geohash': 'cb5', - 'center': [ - -96.328125, - 45.703125 - ], - 'rectangle': [ - [ - -97.03125, - 45 - ], - [ - -95.625, - 45 - ], - [ - -95.625, - 46.40625 - ], - [ - -97.03125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 82, - 'geohash': '9yw', - 'center': [ - -92.109375, - 37.265625 - ], - 'rectangle': [ - [ - -92.8125, - 36.5625 - ], - [ - -91.40625, - 36.5625 - ], - [ - -91.40625, - 37.96875 - ], - [ - -92.8125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 90, - 'geohash': 'drd', - 'center': [ - -75.234375, - 42.890625 - ], - 'rectangle': [ - [ - -75.9375, - 42.1875 - ], - [ - -74.53125, - 42.1875 - ], - [ - -74.53125, - 43.59375 - ], - [ - -75.9375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 100, - 'geohash': 'dnt', - 'center': [ - -82.265625, - 37.265625 - ], - 'rectangle': [ - [ - -82.96875, - 36.5625 - ], - [ - -81.5625, - 36.5625 - ], - [ - -81.5625, - 37.96875 - ], - [ - -82.96875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 84, - 'geohash': '9vc', - 'center': [ - -99.140625, - 33.046875 - ], - 'rectangle': [ - [ - -99.84375, - 32.34375 - ], - [ - -98.4375, - 32.34375 - ], - [ - -98.4375, - 33.75 - ], - [ - -99.84375, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 63, - 'geohash': '9rb', - 'center': [ - -123.046875, - 44.296875 - ], - 'rectangle': [ - [ - -123.75, - 43.59375 - ], - [ - -122.34375, - 43.59375 - ], - [ - -122.34375, - 45 - ], - [ - -123.75, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 88, - 'geohash': 'djz', - 'center': [ - -79.453125, - 33.046875 - ], - 'rectangle': [ - [ - -80.15625, - 32.34375 - ], - [ - -78.75, - 32.34375 - ], - [ - -78.75, - 33.75 - ], - [ - -80.15625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 92, - 'geohash': 'djk', - 'center': [ - -83.671875, - 30.234375 - ], - 'rectangle': [ - [ - -84.375, - 29.53125 - ], - [ - -82.96875, - 29.53125 - ], - [ - -82.96875, - 30.9375 - ], - [ - -84.375, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 84, - 'geohash': '9z5', - 'center': [ - -96.328125, - 40.078125 - ], - 'rectangle': [ - [ - -97.03125, - 39.375 - ], - [ - -95.625, - 39.375 - ], - [ - -95.625, - 40.78125 - ], - [ - -97.03125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 84, - 'geohash': '9y8', - 'center': [ - -100.546875, - 37.265625 - ], - 'rectangle': [ - [ - -101.25, - 36.5625 - ], - [ - -99.84375, - 36.5625 - ], - [ - -99.84375, - 37.96875 - ], - [ - -101.25, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 90, - 'geohash': '9zh', - 'center': [ - -94.921875, - 40.078125 - ], - 'rectangle': [ - [ - -95.625, - 39.375 - ], - [ - -94.21875, - 39.375 - ], - [ - -94.21875, - 40.78125 - ], - [ - -95.625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 69, - 'geohash': '9zg', - 'center': [ - -96.328125, - 44.296875 - ], - 'rectangle': [ - [ - -97.03125, - 43.59375 - ], - [ - -95.625, - 43.59375 - ], - [ - -95.625, - 45 - ], - [ - -97.03125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 78, - 'geohash': 'dnu', - 'center': [ - -83.671875, - 38.671875 - ], - 'rectangle': [ - [ - -84.375, - 37.96875 - ], - [ - -82.96875, - 37.96875 - ], - [ - -82.96875, - 39.375 - ], - [ - -84.375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 74, - 'geohash': '9qq', - 'center': [ - -114.609375, - 35.859375 - ], - 'rectangle': [ - [ - -115.3125, - 35.15625 - ], - [ - -113.90625, - 35.15625 - ], - [ - -113.90625, - 36.5625 - ], - [ - -115.3125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 76, - 'geohash': 'dq3', - 'center': [ - -76.640625, - 35.859375 - ], - 'rectangle': [ - [ - -77.34375, - 35.15625 - ], - [ - -75.9375, - 35.15625 - ], - [ - -75.9375, - 36.5625 - ], - [ - -77.34375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 66, - 'geohash': 'dp0', - 'center': [ - -89.296875, - 40.078125 - ], - 'rectangle': [ - [ - -90, - 39.375 - ], - [ - -88.59375, - 39.375 - ], - [ - -88.59375, - 40.78125 - ], - [ - -90, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 85, - 'geohash': '9r2', - 'center': [ - -123.046875, - 41.484375 - ], - 'rectangle': [ - [ - -123.75, - 40.78125 - ], - [ - -122.34375, - 40.78125 - ], - [ - -122.34375, - 42.1875 - ], - [ - -123.75, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 72, - 'geohash': '9zn', - 'center': [ - -92.109375, - 40.078125 - ], - 'rectangle': [ - [ - -92.8125, - 39.375 - ], - [ - -91.40625, - 39.375 - ], - [ - -91.40625, - 40.78125 - ], - [ - -92.8125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 80, - 'geohash': 'dq8', - 'center': [ - -78.046875, - 37.265625 - ], - 'rectangle': [ - [ - -78.75, - 36.5625 - ], - [ - -77.34375, - 36.5625 - ], - [ - -77.34375, - 37.96875 - ], - [ - -78.75, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 70, - 'geohash': '9v1', - 'center': [ - -99.140625, - 28.828125 - ], - 'rectangle': [ - [ - -99.84375, - 28.125 - ], - [ - -98.4375, - 28.125 - ], - [ - -98.4375, - 29.53125 - ], - [ - -99.84375, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 80, - 'geohash': '9zf', - 'center': [ - -97.734375, - 44.296875 - ], - 'rectangle': [ - [ - -98.4375, - 43.59375 - ], - [ - -97.03125, - 43.59375 - ], - [ - -97.03125, - 45 - ], - [ - -98.4375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 73, - 'geohash': '9zw', - 'center': [ - -92.109375, - 42.890625 - ], - 'rectangle': [ - [ - -92.8125, - 42.1875 - ], - [ - -91.40625, - 42.1875 - ], - [ - -91.40625, - 43.59375 - ], - [ - -92.8125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 68, - 'geohash': 'dr1', - 'center': [ - -76.640625, - 40.078125 - ], - 'rectangle': [ - [ - -77.34375, - 39.375 - ], - [ - -75.9375, - 39.375 - ], - [ - -75.9375, - 40.78125 - ], - [ - -77.34375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 72, - 'geohash': 'c22', - 'center': [ - -123.046875, - 47.109375 - ], - 'rectangle': [ - [ - -123.75, - 46.40625 - ], - [ - -122.34375, - 46.40625 - ], - [ - -122.34375, - 47.8125 - ], - [ - -123.75, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -73.828125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 75, - 'geohash': 'drg', - 'center': [ - -73.828125, - 44.296875 - ], - 'rectangle': [ - [ - -74.53125, - 43.59375 - ], - [ - -73.125, - 43.59375 - ], - [ - -73.125, - 45 - ], - [ - -74.53125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 79, - 'geohash': '9zy', - 'center': [ - -92.109375, - 44.296875 - ], - 'rectangle': [ - [ - -92.8125, - 43.59375 - ], - [ - -91.40625, - 43.59375 - ], - [ - -91.40625, - 45 - ], - [ - -92.8125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 84, - 'geohash': 'cbq', - 'center': [ - -92.109375, - 47.109375 - ], - 'rectangle': [ - [ - -92.8125, - 46.40625 - ], - [ - -91.40625, - 46.40625 - ], - [ - -91.40625, - 47.8125 - ], - [ - -92.8125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 66, - 'geohash': '9z3', - 'center': [ - -99.140625, - 41.484375 - ], - 'rectangle': [ - [ - -99.84375, - 40.78125 - ], - [ - -98.4375, - 40.78125 - ], - [ - -98.4375, - 42.1875 - ], - [ - -99.84375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 76, - 'geohash': 'c2q', - 'center': [ - -114.609375, - 47.109375 - ], - 'rectangle': [ - [ - -115.3125, - 46.40625 - ], - [ - -113.90625, - 46.40625 - ], - [ - -113.90625, - 47.8125 - ], - [ - -115.3125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 73, - 'geohash': 'dpr', - 'center': [ - -79.453125, - 41.484375 - ], - 'rectangle': [ - [ - -80.15625, - 40.78125 - ], - [ - -78.75, - 40.78125 - ], - [ - -78.75, - 42.1875 - ], - [ - -80.15625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -65.390625, - 18.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 76, - 'geohash': 'de3', - 'center': [ - -65.390625, - 18.984375 - ], - 'rectangle': [ - [ - -66.09375, - 18.28125 - ], - [ - -64.6875, - 18.28125 - ], - [ - -64.6875, - 19.6875 - ], - [ - -66.09375, - 19.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 74, - 'geohash': 'b6u', - 'center': [ - -162.421875, - 61.171875 - ], - 'rectangle': [ - [ - -163.125, - 60.46875 - ], - [ - -161.71875, - 60.46875 - ], - [ - -161.71875, - 61.875 - ], - [ - -163.125, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 64, - 'geohash': '9wp', - 'center': [ - -101.953125, - 34.453125 - ], - 'rectangle': [ - [ - -102.65625, - 33.75 - ], - [ - -101.25, - 33.75 - ], - [ - -101.25, - 35.15625 - ], - [ - -102.65625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 62, - 'geohash': '9zt', - 'center': [ - -93.515625, - 42.890625 - ], - 'rectangle': [ - [ - -94.21875, - 42.1875 - ], - [ - -92.8125, - 42.1875 - ], - [ - -92.8125, - 43.59375 - ], - [ - -94.21875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 69, - 'geohash': 'cb7', - 'center': [ - -96.328125, - 47.109375 - ], - 'rectangle': [ - [ - -97.03125, - 46.40625 - ], - [ - -95.625, - 46.40625 - ], - [ - -95.625, - 47.8125 - ], - [ - -97.03125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 70, - 'geohash': 'c23', - 'center': [ - -121.640625, - 47.109375 - ], - 'rectangle': [ - [ - -122.34375, - 46.40625 - ], - [ - -120.9375, - 46.40625 - ], - [ - -120.9375, - 47.8125 - ], - [ - -122.34375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 59, - 'geohash': 'c27', - 'center': [ - -118.828125, - 47.109375 - ], - 'rectangle': [ - [ - -119.53125, - 46.40625 - ], - [ - -118.125, - 46.40625 - ], - [ - -118.125, - 47.8125 - ], - [ - -119.53125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 71, - 'geohash': '9zd', - 'center': [ - -97.734375, - 42.890625 - ], - 'rectangle': [ - [ - -98.4375, - 42.1875 - ], - [ - -97.03125, - 42.1875 - ], - [ - -97.03125, - 43.59375 - ], - [ - -98.4375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 27.421875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 65, - 'geohash': '9uf', - 'center': [ - -97.734375, - 27.421875 - ], - 'rectangle': [ - [ - -98.4375, - 26.71875 - ], - [ - -97.03125, - 26.71875 - ], - [ - -97.03125, - 28.125 - ], - [ - -98.4375, - 28.125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 63, - 'geohash': '9r0', - 'center': [ - -123.046875, - 40.078125 - ], - 'rectangle': [ - [ - -123.75, - 39.375 - ], - [ - -122.34375, - 39.375 - ], - [ - -122.34375, - 40.78125 - ], - [ - -123.75, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -165.234375, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 77, - 'geohash': 'b6f', - 'center': [ - -165.234375, - 61.171875 - ], - 'rectangle': [ - [ - -165.9375, - 60.46875 - ], - [ - -164.53125, - 60.46875 - ], - [ - -164.53125, - 61.875 - ], - [ - -165.9375, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 74, - 'geohash': '9vw', - 'center': [ - -92.109375, - 31.640625 - ], - 'rectangle': [ - [ - -92.8125, - 30.9375 - ], - [ - -91.40625, - 30.9375 - ], - [ - -91.40625, - 32.34375 - ], - [ - -92.8125, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 63, - 'geohash': 'cb4', - 'center': [ - -97.734375, - 45.703125 - ], - 'rectangle': [ - [ - -98.4375, - 45 - ], - [ - -97.03125, - 45 - ], - [ - -97.03125, - 46.40625 - ], - [ - -98.4375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 70, - 'geohash': '9z0', - 'center': [ - -100.546875, - 40.078125 - ], - 'rectangle': [ - [ - -101.25, - 39.375 - ], - [ - -99.84375, - 39.375 - ], - [ - -99.84375, - 40.78125 - ], - [ - -101.25, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 66, - 'geohash': 'dr0', - 'center': [ - -78.046875, - 40.078125 - ], - 'rectangle': [ - [ - -78.75, - 39.375 - ], - [ - -77.34375, - 39.375 - ], - [ - -77.34375, - 40.78125 - ], - [ - -78.75, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -135.703125, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 73, - 'geohash': 'bfr', - 'center': [ - -135.703125, - 58.359375 - ], - 'rectangle': [ - [ - -136.40625, - 57.65625 - ], - [ - -135, - 57.65625 - ], - [ - -135, - 59.0625 - ], - [ - -136.40625, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 65, - 'geohash': 'dnx', - 'center': [ - -79.453125, - 37.265625 - ], - 'rectangle': [ - [ - -80.15625, - 36.5625 - ], - [ - -78.75, - 36.5625 - ], - [ - -78.75, - 37.96875 - ], - [ - -80.15625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 70, - 'geohash': '9yf', - 'center': [ - -97.734375, - 38.671875 - ], - 'rectangle': [ - [ - -98.4375, - 37.96875 - ], - [ - -97.03125, - 37.96875 - ], - [ - -97.03125, - 39.375 - ], - [ - -98.4375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 65, - 'geohash': 'dj9', - 'center': [ - -87.890625, - 31.640625 - ], - 'rectangle': [ - [ - -88.59375, - 30.9375 - ], - [ - -87.1875, - 30.9375 - ], - [ - -87.1875, - 32.34375 - ], - [ - -88.59375, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 65, - 'geohash': '9yj', - 'center': [ - -93.515625, - 34.453125 - ], - 'rectangle': [ - [ - -94.21875, - 33.75 - ], - [ - -92.8125, - 33.75 - ], - [ - -92.8125, - 35.15625 - ], - [ - -94.21875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 71, - 'geohash': 'dpd', - 'center': [ - -86.484375, - 42.890625 - ], - 'rectangle': [ - [ - -87.1875, - 42.1875 - ], - [ - -85.78125, - 42.1875 - ], - [ - -85.78125, - 43.59375 - ], - [ - -87.1875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': '9tz', - 'center': [ - -101.953125, - 33.046875 - ], - 'rectangle': [ - [ - -102.65625, - 32.34375 - ], - [ - -101.25, - 32.34375 - ], - [ - -101.25, - 33.75 - ], - [ - -102.65625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 66, - 'geohash': '9yg', - 'center': [ - -96.328125, - 38.671875 - ], - 'rectangle': [ - [ - -97.03125, - 37.96875 - ], - [ - -95.625, - 37.96875 - ], - [ - -95.625, - 39.375 - ], - [ - -97.03125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 57, - 'geohash': 'c2k', - 'center': [ - -117.421875, - 47.109375 - ], - 'rectangle': [ - [ - -118.125, - 46.40625 - ], - [ - -116.71875, - 46.40625 - ], - [ - -116.71875, - 47.8125 - ], - [ - -118.125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 47, - 'geohash': '9yh', - 'center': [ - -94.921875, - 34.453125 - ], - 'rectangle': [ - [ - -95.625, - 33.75 - ], - [ - -94.21875, - 33.75 - ], - [ - -94.21875, - 35.15625 - ], - [ - -95.625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 63, - 'geohash': 'c8x', - 'center': [ - -101.953125, - 48.515625 - ], - 'rectangle': [ - [ - -102.65625, - 47.8125 - ], - [ - -101.25, - 47.8125 - ], - [ - -101.25, - 49.21875 - ], - [ - -102.65625, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 26.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 63, - 'geohash': '9ud', - 'center': [ - -97.734375, - 26.015625 - ], - 'rectangle': [ - [ - -98.4375, - 25.3125 - ], - [ - -97.03125, - 25.3125 - ], - [ - -97.03125, - 26.71875 - ], - [ - -98.4375, - 26.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 58, - 'geohash': '9zz', - 'center': [ - -90.703125, - 44.296875 - ], - 'rectangle': [ - [ - -91.40625, - 43.59375 - ], - [ - -90, - 43.59375 - ], - [ - -90, - 45 - ], - [ - -91.40625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 63, - 'geohash': '9wz', - 'center': [ - -101.953125, - 38.671875 - ], - 'rectangle': [ - [ - -102.65625, - 37.96875 - ], - [ - -101.25, - 37.96875 - ], - [ - -101.25, - 39.375 - ], - [ - -102.65625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 63, - 'geohash': '9t9', - 'center': [ - -110.390625, - 31.640625 - ], - 'rectangle': [ - [ - -111.09375, - 30.9375 - ], - [ - -109.6875, - 30.9375 - ], - [ - -109.6875, - 32.34375 - ], - [ - -111.09375, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -134.296875, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 68, - 'geohash': 'c40', - 'center': [ - -134.296875, - 56.953125 - ], - 'rectangle': [ - [ - -135, - 56.25 - ], - [ - -133.59375, - 56.25 - ], - [ - -133.59375, - 57.65625 - ], - [ - -135, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 63, - 'geohash': '9yv', - 'center': [ - -93.515625, - 38.671875 - ], - 'rectangle': [ - [ - -94.21875, - 37.96875 - ], - [ - -92.8125, - 37.96875 - ], - [ - -92.8125, - 39.375 - ], - [ - -94.21875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 52, - 'geohash': '9w1', - 'center': [ - -110.390625, - 34.453125 - ], - 'rectangle': [ - [ - -111.09375, - 33.75 - ], - [ - -109.6875, - 33.75 - ], - [ - -109.6875, - 35.15625 - ], - [ - -111.09375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -71.015625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 67, - 'geohash': 'drv', - 'center': [ - -71.015625, - 44.296875 - ], - 'rectangle': [ - [ - -71.71875, - 43.59375 - ], - [ - -70.3125, - 43.59375 - ], - [ - -70.3125, - 45 - ], - [ - -71.71875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 60, - 'geohash': 'djw', - 'center': [ - -80.859375, - 31.640625 - ], - 'rectangle': [ - [ - -81.5625, - 30.9375 - ], - [ - -80.15625, - 30.9375 - ], - [ - -80.15625, - 32.34375 - ], - [ - -81.5625, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 52, - 'geohash': '9wr', - 'center': [ - -101.953125, - 35.859375 - ], - 'rectangle': [ - [ - -102.65625, - 35.15625 - ], - [ - -101.25, - 35.15625 - ], - [ - -101.25, - 36.5625 - ], - [ - -102.65625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 68, - 'geohash': '9v5', - 'center': [ - -96.328125, - 28.828125 - ], - 'rectangle': [ - [ - -97.03125, - 28.125 - ], - [ - -95.625, - 28.125 - ], - [ - -95.625, - 29.53125 - ], - [ - -97.03125, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 64, - 'geohash': '9vt', - 'center': [ - -93.515625, - 31.640625 - ], - 'rectangle': [ - [ - -94.21875, - 30.9375 - ], - [ - -92.8125, - 30.9375 - ], - [ - -92.8125, - 32.34375 - ], - [ - -94.21875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 64, - 'geohash': 'cbh', - 'center': [ - -94.921875, - 45.703125 - ], - 'rectangle': [ - [ - -95.625, - 45 - ], - [ - -94.21875, - 45 - ], - [ - -94.21875, - 46.40625 - ], - [ - -95.625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 56, - 'geohash': '9wx', - 'center': [ - -101.953125, - 37.265625 - ], - 'rectangle': [ - [ - -102.65625, - 36.5625 - ], - [ - -101.25, - 36.5625 - ], - [ - -101.25, - 37.96875 - ], - [ - -102.65625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 56, - 'geohash': '9xy', - 'center': [ - -103.359375, - 44.296875 - ], - 'rectangle': [ - [ - -104.0625, - 43.59375 - ], - [ - -102.65625, - 43.59375 - ], - [ - -102.65625, - 45 - ], - [ - -104.0625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 55, - 'geohash': 'c80', - 'center': [ - -111.796875, - 45.703125 - ], - 'rectangle': [ - [ - -112.5, - 45 - ], - [ - -111.09375, - 45 - ], - [ - -111.09375, - 46.40625 - ], - [ - -112.5, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': '9vs', - 'center': [ - -94.921875, - 31.640625 - ], - 'rectangle': [ - [ - -95.625, - 30.9375 - ], - [ - -94.21875, - 30.9375 - ], - [ - -94.21875, - 32.34375 - ], - [ - -95.625, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 61, - 'geohash': 'cb1', - 'center': [ - -99.140625, - 45.703125 - ], - 'rectangle': [ - [ - -99.84375, - 45 - ], - [ - -98.4375, - 45 - ], - [ - -98.4375, - 46.40625 - ], - [ - -99.84375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 59, - 'geohash': 'c24', - 'center': [ - -120.234375, - 45.703125 - ], - 'rectangle': [ - [ - -120.9375, - 45 - ], - [ - -119.53125, - 45 - ], - [ - -119.53125, - 46.40625 - ], - [ - -120.9375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 59, - 'geohash': 'b6v', - 'center': [ - -161.015625, - 61.171875 - ], - 'rectangle': [ - [ - -161.71875, - 60.46875 - ], - [ - -160.3125, - 60.46875 - ], - [ - -160.3125, - 61.875 - ], - [ - -161.71875, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 60, - 'geohash': 'dj7', - 'center': [ - -85.078125, - 30.234375 - ], - 'rectangle': [ - [ - -85.78125, - 29.53125 - ], - [ - -84.375, - 29.53125 - ], - [ - -84.375, - 30.9375 - ], - [ - -85.78125, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 59, - 'geohash': '9we', - 'center': [ - -107.578125, - 37.265625 - ], - 'rectangle': [ - [ - -108.28125, - 36.5625 - ], - [ - -106.875, - 36.5625 - ], - [ - -106.875, - 37.96875 - ], - [ - -108.28125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': '9q6', - 'center': [ - -120.234375, - 35.859375 - ], - 'rectangle': [ - [ - -120.9375, - 35.15625 - ], - [ - -119.53125, - 35.15625 - ], - [ - -119.53125, - 36.5625 - ], - [ - -120.9375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 61, - 'geohash': '9x0', - 'center': [ - -111.796875, - 40.078125 - ], - 'rectangle': [ - [ - -112.5, - 39.375 - ], - [ - -111.09375, - 39.375 - ], - [ - -111.09375, - 40.78125 - ], - [ - -112.5, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 60, - 'geohash': 'dj6', - 'center': [ - -86.484375, - 30.234375 - ], - 'rectangle': [ - [ - -87.1875, - 29.53125 - ], - [ - -85.78125, - 29.53125 - ], - [ - -85.78125, - 30.9375 - ], - [ - -87.1875, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 66, - 'geohash': '9mv', - 'center': [ - -116.015625, - 33.046875 - ], - 'rectangle': [ - [ - -116.71875, - 32.34375 - ], - [ - -115.3125, - 32.34375 - ], - [ - -115.3125, - 33.75 - ], - [ - -116.71875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 70, - 'geohash': '9z9', - 'center': [ - -99.140625, - 42.890625 - ], - 'rectangle': [ - [ - -99.84375, - 42.1875 - ], - [ - -98.4375, - 42.1875 - ], - [ - -98.4375, - 43.59375 - ], - [ - -99.84375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': '9qe', - 'center': [ - -118.828125, - 37.265625 - ], - 'rectangle': [ - [ - -119.53125, - 36.5625 - ], - [ - -118.125, - 36.5625 - ], - [ - -118.125, - 37.96875 - ], - [ - -119.53125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 62, - 'geohash': 'cb6', - 'center': [ - -97.734375, - 47.109375 - ], - 'rectangle': [ - [ - -98.4375, - 46.40625 - ], - [ - -97.03125, - 46.40625 - ], - [ - -97.03125, - 47.8125 - ], - [ - -98.4375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -155.390625, - 20.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 46, - 'geohash': '8e9', - 'center': [ - -155.390625, - 20.390625 - ], - 'rectangle': [ - [ - -156.09375, - 19.6875 - ], - [ - -154.6875, - 19.6875 - ], - [ - -154.6875, - 21.09375 - ], - [ - -156.09375, - 21.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 62, - 'geohash': 'c26', - 'center': [ - -120.234375, - 47.109375 - ], - 'rectangle': [ - [ - -120.9375, - 46.40625 - ], - [ - -119.53125, - 46.40625 - ], - [ - -119.53125, - 47.8125 - ], - [ - -120.9375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 56, - 'geohash': '9xr', - 'center': [ - -101.953125, - 41.484375 - ], - 'rectangle': [ - [ - -102.65625, - 40.78125 - ], - [ - -101.25, - 40.78125 - ], - [ - -101.25, - 42.1875 - ], - [ - -102.65625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 56, - 'geohash': 'bd7', - 'center': [ - -152.578125, - 58.359375 - ], - 'rectangle': [ - [ - -153.28125, - 57.65625 - ], - [ - -151.875, - 57.65625 - ], - [ - -151.875, - 59.0625 - ], - [ - -153.28125, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': 'c88', - 'center': [ - -111.796875, - 48.515625 - ], - 'rectangle': [ - [ - -112.5, - 47.8125 - ], - [ - -111.09375, - 47.8125 - ], - [ - -111.09375, - 49.21875 - ], - [ - -112.5, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': '9x2', - 'center': [ - -111.796875, - 41.484375 - ], - 'rectangle': [ - [ - -112.5, - 40.78125 - ], - [ - -111.09375, - 40.78125 - ], - [ - -111.09375, - 42.1875 - ], - [ - -112.5, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 44, - 'geohash': '9r3', - 'center': [ - -121.640625, - 41.484375 - ], - 'rectangle': [ - [ - -122.34375, - 40.78125 - ], - [ - -120.9375, - 40.78125 - ], - [ - -120.9375, - 42.1875 - ], - [ - -122.34375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -69.609375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 61, - 'geohash': 'f2n', - 'center': [ - -69.609375, - 45.703125 - ], - 'rectangle': [ - [ - -70.3125, - 45 - ], - [ - -68.90625, - 45 - ], - [ - -68.90625, - 46.40625 - ], - [ - -70.3125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 47, - 'geohash': 'c2p', - 'center': [ - -113.203125, - 45.703125 - ], - 'rectangle': [ - [ - -113.90625, - 45 - ], - [ - -112.5, - 45 - ], - [ - -112.5, - 46.40625 - ], - [ - -113.90625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 52, - 'geohash': 'c25', - 'center': [ - -118.828125, - 45.703125 - ], - 'rectangle': [ - [ - -119.53125, - 45 - ], - [ - -118.125, - 45 - ], - [ - -118.125, - 46.40625 - ], - [ - -119.53125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 50, - 'geohash': 'dny', - 'center': [ - -80.859375, - 38.671875 - ], - 'rectangle': [ - [ - -81.5625, - 37.96875 - ], - [ - -80.15625, - 37.96875 - ], - [ - -80.15625, - 39.375 - ], - [ - -81.5625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 59, - 'geohash': '9yt', - 'center': [ - -93.515625, - 37.265625 - ], - 'rectangle': [ - [ - -94.21875, - 36.5625 - ], - [ - -92.8125, - 36.5625 - ], - [ - -92.8125, - 37.96875 - ], - [ - -94.21875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 40, - 'geohash': '9ye', - 'center': [ - -96.328125, - 37.265625 - ], - 'rectangle': [ - [ - -97.03125, - 36.5625 - ], - [ - -95.625, - 36.5625 - ], - [ - -95.625, - 37.96875 - ], - [ - -97.03125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 47, - 'geohash': '9v3', - 'center': [ - -99.140625, - 30.234375 - ], - 'rectangle': [ - [ - -99.84375, - 29.53125 - ], - [ - -98.4375, - 29.53125 - ], - [ - -98.4375, - 30.9375 - ], - [ - -99.84375, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 48, - 'geohash': '9qx', - 'center': [ - -113.203125, - 37.265625 - ], - 'rectangle': [ - [ - -113.90625, - 36.5625 - ], - [ - -112.5, - 36.5625 - ], - [ - -112.5, - 37.96875 - ], - [ - -113.90625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 53, - 'geohash': '9zb', - 'center': [ - -100.546875, - 44.296875 - ], - 'rectangle': [ - [ - -101.25, - 43.59375 - ], - [ - -99.84375, - 43.59375 - ], - [ - -99.84375, - 45 - ], - [ - -101.25, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 26.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 43, - 'geohash': 'dhx', - 'center': [ - -79.453125, - 26.015625 - ], - 'rectangle': [ - [ - -80.15625, - 25.3125 - ], - [ - -78.75, - 25.3125 - ], - [ - -78.75, - 26.71875 - ], - [ - -80.15625, - 26.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 49, - 'geohash': '9q4', - 'center': [ - -120.234375, - 34.453125 - ], - 'rectangle': [ - [ - -120.9375, - 33.75 - ], - [ - -119.53125, - 33.75 - ], - [ - -119.53125, - 35.15625 - ], - [ - -120.9375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 48, - 'geohash': 'b6p', - 'center': [ - -158.203125, - 56.953125 - ], - 'rectangle': [ - [ - -158.90625, - 56.25 - ], - [ - -157.5, - 56.25 - ], - [ - -157.5, - 57.65625 - ], - [ - -158.90625, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 50, - 'geohash': '9w0', - 'center': [ - -111.796875, - 34.453125 - ], - 'rectangle': [ - [ - -112.5, - 33.75 - ], - [ - -111.09375, - 33.75 - ], - [ - -111.09375, - 35.15625 - ], - [ - -112.5, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': '9ve', - 'center': [ - -96.328125, - 31.640625 - ], - 'rectangle': [ - [ - -97.03125, - 30.9375 - ], - [ - -95.625, - 30.9375 - ], - [ - -95.625, - 32.34375 - ], - [ - -97.03125, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 41, - 'geohash': 'c8p', - 'center': [ - -101.953125, - 45.703125 - ], - 'rectangle': [ - [ - -102.65625, - 45 - ], - [ - -101.25, - 45 - ], - [ - -101.25, - 46.40625 - ], - [ - -102.65625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 44, - 'geohash': '9r8', - 'center': [ - -123.046875, - 42.890625 - ], - 'rectangle': [ - [ - -123.75, - 42.1875 - ], - [ - -122.34375, - 42.1875 - ], - [ - -122.34375, - 43.59375 - ], - [ - -123.75, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 58, - 'geohash': 'f01', - 'center': [ - -87.890625, - 45.703125 - ], - 'rectangle': [ - [ - -88.59375, - 45 - ], - [ - -87.1875, - 45 - ], - [ - -87.1875, - 46.40625 - ], - [ - -88.59375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 62, - 'geohash': '9x5', - 'center': [ - -107.578125, - 40.078125 - ], - 'rectangle': [ - [ - -108.28125, - 39.375 - ], - [ - -106.875, - 39.375 - ], - [ - -106.875, - 40.78125 - ], - [ - -108.28125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 51, - 'geohash': '9rw', - 'center': [ - -114.609375, - 42.890625 - ], - 'rectangle': [ - [ - -115.3125, - 42.1875 - ], - [ - -113.90625, - 42.1875 - ], - [ - -113.90625, - 43.59375 - ], - [ - -115.3125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 43, - 'geohash': 'cbp', - 'center': [ - -90.703125, - 45.703125 - ], - 'rectangle': [ - [ - -91.40625, - 45 - ], - [ - -90, - 45 - ], - [ - -90, - 46.40625 - ], - [ - -91.40625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 47, - 'geohash': '9ty', - 'center': [ - -103.359375, - 33.046875 - ], - 'rectangle': [ - [ - -104.0625, - 32.34375 - ], - [ - -102.65625, - 32.34375 - ], - [ - -102.65625, - 33.75 - ], - [ - -104.0625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 53, - 'geohash': '9wv', - 'center': [ - -104.765625, - 38.671875 - ], - 'rectangle': [ - [ - -105.46875, - 37.96875 - ], - [ - -104.0625, - 37.96875 - ], - [ - -104.0625, - 39.375 - ], - [ - -105.46875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 44, - 'geohash': '9xz', - 'center': [ - -101.953125, - 44.296875 - ], - 'rectangle': [ - [ - -102.65625, - 43.59375 - ], - [ - -101.25, - 43.59375 - ], - [ - -101.25, - 45 - ], - [ - -102.65625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 51, - 'geohash': '9tx', - 'center': [ - -101.953125, - 31.640625 - ], - 'rectangle': [ - [ - -102.65625, - 30.9375 - ], - [ - -101.25, - 30.9375 - ], - [ - -101.25, - 32.34375 - ], - [ - -102.65625, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 49, - 'geohash': '9tf', - 'center': [ - -108.984375, - 33.046875 - ], - 'rectangle': [ - [ - -109.6875, - 32.34375 - ], - [ - -108.28125, - 32.34375 - ], - [ - -108.28125, - 33.75 - ], - [ - -109.6875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': '9xp', - 'center': [ - -101.953125, - 40.078125 - ], - 'rectangle': [ - [ - -102.65625, - 39.375 - ], - [ - -101.25, - 39.375 - ], - [ - -101.25, - 40.78125 - ], - [ - -102.65625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': '9yx', - 'center': [ - -90.703125, - 37.265625 - ], - 'rectangle': [ - [ - -91.40625, - 36.5625 - ], - [ - -90, - 36.5625 - ], - [ - -90, - 37.96875 - ], - [ - -91.40625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 41, - 'geohash': 'dpu', - 'center': [ - -83.671875, - 44.296875 - ], - 'rectangle': [ - [ - -84.375, - 43.59375 - ], - [ - -82.96875, - 43.59375 - ], - [ - -82.96875, - 45 - ], - [ - -84.375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 48, - 'geohash': 'f04', - 'center': [ - -86.484375, - 45.703125 - ], - 'rectangle': [ - [ - -87.1875, - 45 - ], - [ - -85.78125, - 45 - ], - [ - -85.78125, - 46.40625 - ], - [ - -87.1875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 43, - 'geohash': '9pr', - 'center': [ - -124.453125, - 41.484375 - ], - 'rectangle': [ - [ - -125.15625, - 40.78125 - ], - [ - -123.75, - 40.78125 - ], - [ - -123.75, - 42.1875 - ], - [ - -125.15625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 37, - 'geohash': '9xn', - 'center': [ - -103.359375, - 40.078125 - ], - 'rectangle': [ - [ - -104.0625, - 39.375 - ], - [ - -102.65625, - 39.375 - ], - [ - -102.65625, - 40.78125 - ], - [ - -104.0625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -135.703125, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 41, - 'geohash': 'bfx', - 'center': [ - -135.703125, - 59.765625 - ], - 'rectangle': [ - [ - -136.40625, - 59.0625 - ], - [ - -135, - 59.0625 - ], - [ - -135, - 60.46875 - ], - [ - -136.40625, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 43, - 'geohash': '9zj', - 'center': [ - -93.515625, - 40.078125 - ], - 'rectangle': [ - [ - -94.21875, - 39.375 - ], - [ - -92.8125, - 39.375 - ], - [ - -92.8125, - 40.78125 - ], - [ - -94.21875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 41, - 'geohash': '9y9', - 'center': [ - -99.140625, - 37.265625 - ], - 'rectangle': [ - [ - -99.84375, - 36.5625 - ], - [ - -98.4375, - 36.5625 - ], - [ - -98.4375, - 37.96875 - ], - [ - -99.84375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 31, - 'geohash': '9xg', - 'center': [ - -107.578125, - 44.296875 - ], - 'rectangle': [ - [ - -108.28125, - 43.59375 - ], - [ - -106.875, - 43.59375 - ], - [ - -106.875, - 45 - ], - [ - -108.28125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': 'djq', - 'center': [ - -80.859375, - 30.234375 - ], - 'rectangle': [ - [ - -81.5625, - 29.53125 - ], - [ - -80.15625, - 29.53125 - ], - [ - -80.15625, - 30.9375 - ], - [ - -81.5625, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 48, - 'geohash': '9w8', - 'center': [ - -111.796875, - 37.265625 - ], - 'rectangle': [ - [ - -112.5, - 36.5625 - ], - [ - -111.09375, - 36.5625 - ], - [ - -111.09375, - 37.96875 - ], - [ - -112.5, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 44, - 'geohash': '9tw', - 'center': [ - -103.359375, - 31.640625 - ], - 'rectangle': [ - [ - -104.0625, - 30.9375 - ], - [ - -102.65625, - 30.9375 - ], - [ - -102.65625, - 32.34375 - ], - [ - -104.0625, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 52, - 'geohash': '9ru', - 'center': [ - -117.421875, - 44.296875 - ], - 'rectangle': [ - [ - -118.125, - 43.59375 - ], - [ - -116.71875, - 43.59375 - ], - [ - -116.71875, - 45 - ], - [ - -118.125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -65.390625, - 17.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 50, - 'geohash': 'de1', - 'center': [ - -65.390625, - 17.578125 - ], - 'rectangle': [ - [ - -66.09375, - 16.875 - ], - [ - -64.6875, - 16.875 - ], - [ - -64.6875, - 18.28125 - ], - [ - -66.09375, - 18.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 44, - 'geohash': '9qn', - 'center': [ - -114.609375, - 34.453125 - ], - 'rectangle': [ - [ - -115.3125, - 33.75 - ], - [ - -113.90625, - 33.75 - ], - [ - -113.90625, - 35.15625 - ], - [ - -115.3125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': '9y2', - 'center': [ - -100.546875, - 35.859375 - ], - 'rectangle': [ - [ - -101.25, - 35.15625 - ], - [ - -99.84375, - 35.15625 - ], - [ - -99.84375, - 36.5625 - ], - [ - -101.25, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 47, - 'geohash': '9rv', - 'center': [ - -116.015625, - 44.296875 - ], - 'rectangle': [ - [ - -116.71875, - 43.59375 - ], - [ - -115.3125, - 43.59375 - ], - [ - -115.3125, - 45 - ], - [ - -116.71875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -163.828125, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': 'b75', - 'center': [ - -163.828125, - 62.578125 - ], - 'rectangle': [ - [ - -164.53125, - 61.875 - ], - [ - -163.125, - 61.875 - ], - [ - -163.125, - 63.28125 - ], - [ - -164.53125, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 39, - 'geohash': '9yb', - 'center': [ - -100.546875, - 38.671875 - ], - 'rectangle': [ - [ - -101.25, - 37.96875 - ], - [ - -99.84375, - 37.96875 - ], - [ - -99.84375, - 39.375 - ], - [ - -101.25, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 43, - 'geohash': 'dpx', - 'center': [ - -79.453125, - 42.890625 - ], - 'rectangle': [ - [ - -80.15625, - 42.1875 - ], - [ - -78.75, - 42.1875 - ], - [ - -78.75, - 43.59375 - ], - [ - -80.15625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 33, - 'geohash': 'dpt', - 'center': [ - -82.265625, - 42.890625 - ], - 'rectangle': [ - [ - -82.96875, - 42.1875 - ], - [ - -81.5625, - 42.1875 - ], - [ - -81.5625, - 43.59375 - ], - [ - -82.96875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 48, - 'geohash': 'c83', - 'center': [ - -110.390625, - 47.109375 - ], - 'rectangle': [ - [ - -111.09375, - 46.40625 - ], - [ - -109.6875, - 46.40625 - ], - [ - -109.6875, - 47.8125 - ], - [ - -111.09375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': 'b6s', - 'center': [ - -162.421875, - 59.765625 - ], - 'rectangle': [ - [ - -163.125, - 59.0625 - ], - [ - -161.71875, - 59.0625 - ], - [ - -161.71875, - 60.46875 - ], - [ - -163.125, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': '9xq', - 'center': [ - -103.359375, - 41.484375 - ], - 'rectangle': [ - [ - -104.0625, - 40.78125 - ], - [ - -102.65625, - 40.78125 - ], - [ - -102.65625, - 42.1875 - ], - [ - -104.0625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 42, - 'geohash': 'b7n', - 'center': [ - -159.609375, - 62.578125 - ], - 'rectangle': [ - [ - -160.3125, - 61.875 - ], - [ - -158.90625, - 61.875 - ], - [ - -158.90625, - 63.28125 - ], - [ - -160.3125, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 51, - 'geohash': '9rc', - 'center': [ - -121.640625, - 44.296875 - ], - 'rectangle': [ - [ - -122.34375, - 43.59375 - ], - [ - -120.9375, - 43.59375 - ], - [ - -120.9375, - 45 - ], - [ - -122.34375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': '9vh', - 'center': [ - -94.921875, - 28.828125 - ], - 'rectangle': [ - [ - -95.625, - 28.125 - ], - [ - -94.21875, - 28.125 - ], - [ - -94.21875, - 29.53125 - ], - [ - -95.625, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -69.609375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 39, - 'geohash': 'drq', - 'center': [ - -69.609375, - 41.484375 - ], - 'rectangle': [ - [ - -70.3125, - 40.78125 - ], - [ - -68.90625, - 40.78125 - ], - [ - -68.90625, - 42.1875 - ], - [ - -70.3125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 34, - 'geohash': 'cb2', - 'center': [ - -100.546875, - 47.109375 - ], - 'rectangle': [ - [ - -101.25, - 46.40625 - ], - [ - -99.84375, - 46.40625 - ], - [ - -99.84375, - 47.8125 - ], - [ - -101.25, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -134.296875, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 48, - 'geohash': 'c42', - 'center': [ - -134.296875, - 58.359375 - ], - 'rectangle': [ - [ - -135, - 57.65625 - ], - [ - -133.59375, - 57.65625 - ], - [ - -133.59375, - 59.0625 - ], - [ - -135, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 38, - 'geohash': '9xx', - 'center': [ - -101.953125, - 42.890625 - ], - 'rectangle': [ - [ - -102.65625, - 42.1875 - ], - [ - -101.25, - 42.1875 - ], - [ - -101.25, - 43.59375 - ], - [ - -102.65625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 40, - 'geohash': '9tu', - 'center': [ - -106.171875, - 33.046875 - ], - 'rectangle': [ - [ - -106.875, - 32.34375 - ], - [ - -105.46875, - 32.34375 - ], - [ - -105.46875, - 33.75 - ], - [ - -106.875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 40, - 'geohash': 'cbe', - 'center': [ - -96.328125, - 48.515625 - ], - 'rectangle': [ - [ - -97.03125, - 47.8125 - ], - [ - -95.625, - 47.8125 - ], - [ - -95.625, - 49.21875 - ], - [ - -97.03125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -132.890625, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 44, - 'geohash': 'c41', - 'center': [ - -132.890625, - 56.953125 - ], - 'rectangle': [ - [ - -133.59375, - 56.25 - ], - [ - -132.1875, - 56.25 - ], - [ - -132.1875, - 57.65625 - ], - [ - -133.59375, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 37, - 'geohash': '9wm', - 'center': [ - -104.765625, - 35.859375 - ], - 'rectangle': [ - [ - -105.46875, - 35.15625 - ], - [ - -104.0625, - 35.15625 - ], - [ - -104.0625, - 36.5625 - ], - [ - -105.46875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 46, - 'geohash': '9w6', - 'center': [ - -108.984375, - 35.859375 - ], - 'rectangle': [ - [ - -109.6875, - 35.15625 - ], - [ - -108.28125, - 35.15625 - ], - [ - -108.28125, - 36.5625 - ], - [ - -109.6875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': 'c8t', - 'center': [ - -104.765625, - 48.515625 - ], - 'rectangle': [ - [ - -105.46875, - 47.8125 - ], - [ - -104.0625, - 47.8125 - ], - [ - -104.0625, - 49.21875 - ], - [ - -105.46875, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 43, - 'geohash': '9wd', - 'center': [ - -108.984375, - 37.265625 - ], - 'rectangle': [ - [ - -109.6875, - 36.5625 - ], - [ - -108.28125, - 36.5625 - ], - [ - -108.28125, - 37.96875 - ], - [ - -109.6875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 46, - 'geohash': 'f0h', - 'center': [ - -83.671875, - 45.703125 - ], - 'rectangle': [ - [ - -84.375, - 45 - ], - [ - -82.96875, - 45 - ], - [ - -82.96875, - 46.40625 - ], - [ - -84.375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': '9zc', - 'center': [ - -99.140625, - 44.296875 - ], - 'rectangle': [ - [ - -99.84375, - 43.59375 - ], - [ - -98.4375, - 43.59375 - ], - [ - -98.4375, - 45 - ], - [ - -99.84375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 33, - 'geohash': 'cbk', - 'center': [ - -94.921875, - 47.109375 - ], - 'rectangle': [ - [ - -95.625, - 46.40625 - ], - [ - -94.21875, - 46.40625 - ], - [ - -94.21875, - 47.8125 - ], - [ - -95.625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': '9yc', - 'center': [ - -99.140625, - 38.671875 - ], - 'rectangle': [ - [ - -99.84375, - 37.96875 - ], - [ - -98.4375, - 37.96875 - ], - [ - -98.4375, - 39.375 - ], - [ - -99.84375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -155.390625, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 38, - 'geohash': 'bd9', - 'center': [ - -155.390625, - 59.765625 - ], - 'rectangle': [ - [ - -156.09375, - 59.0625 - ], - [ - -154.6875, - 59.0625 - ], - [ - -154.6875, - 60.46875 - ], - [ - -156.09375, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 42, - 'geohash': 'bd2', - 'center': [ - -156.796875, - 58.359375 - ], - 'rectangle': [ - [ - -157.5, - 57.65625 - ], - [ - -156.09375, - 57.65625 - ], - [ - -156.09375, - 59.0625 - ], - [ - -157.5, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 47, - 'geohash': '9wk', - 'center': [ - -106.171875, - 35.859375 - ], - 'rectangle': [ - [ - -106.875, - 35.15625 - ], - [ - -105.46875, - 35.15625 - ], - [ - -105.46875, - 36.5625 - ], - [ - -106.875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 37, - 'geohash': '9r4', - 'center': [ - -120.234375, - 40.078125 - ], - 'rectangle': [ - [ - -120.9375, - 39.375 - ], - [ - -119.53125, - 39.375 - ], - [ - -119.53125, - 40.78125 - ], - [ - -120.9375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 38, - 'geohash': '9xm', - 'center': [ - -104.765625, - 41.484375 - ], - 'rectangle': [ - [ - -105.46875, - 40.78125 - ], - [ - -104.0625, - 40.78125 - ], - [ - -104.0625, - 42.1875 - ], - [ - -105.46875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 39, - 'geohash': '9v4', - 'center': [ - -97.734375, - 28.828125 - ], - 'rectangle': [ - [ - -98.4375, - 28.125 - ], - [ - -97.03125, - 28.125 - ], - [ - -97.03125, - 29.53125 - ], - [ - -98.4375, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 40, - 'geohash': '9x9', - 'center': [ - -110.390625, - 42.890625 - ], - 'rectangle': [ - [ - -111.09375, - 42.1875 - ], - [ - -109.6875, - 42.1875 - ], - [ - -109.6875, - 43.59375 - ], - [ - -111.09375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 41, - 'geohash': 'cb0', - 'center': [ - -100.546875, - 45.703125 - ], - 'rectangle': [ - [ - -101.25, - 45 - ], - [ - -99.84375, - 45 - ], - [ - -99.84375, - 46.40625 - ], - [ - -101.25, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 33, - 'geohash': '9pp', - 'center': [ - -124.453125, - 40.078125 - ], - 'rectangle': [ - [ - -125.15625, - 39.375 - ], - [ - -123.75, - 39.375 - ], - [ - -123.75, - 40.78125 - ], - [ - -125.15625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': '9qw', - 'center': [ - -114.609375, - 37.265625 - ], - 'rectangle': [ - [ - -115.3125, - 36.5625 - ], - [ - -113.90625, - 36.5625 - ], - [ - -113.90625, - 37.96875 - ], - [ - -115.3125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 42, - 'geohash': 'c89', - 'center': [ - -110.390625, - 48.515625 - ], - 'rectangle': [ - [ - -111.09375, - 47.8125 - ], - [ - -109.6875, - 47.8125 - ], - [ - -109.6875, - 49.21875 - ], - [ - -111.09375, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 30, - 'geohash': '9v9', - 'center': [ - -99.140625, - 31.640625 - ], - 'rectangle': [ - [ - -99.84375, - 30.9375 - ], - [ - -98.4375, - 30.9375 - ], - [ - -98.4375, - 32.34375 - ], - [ - -99.84375, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -68.203125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 37, - 'geohash': 'f2p', - 'center': [ - -68.203125, - 45.703125 - ], - 'rectangle': [ - [ - -68.90625, - 45 - ], - [ - -67.5, - 45 - ], - [ - -67.5, - 46.40625 - ], - [ - -68.90625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': 'b7t', - 'center': [ - -161.015625, - 65.390625 - ], - 'rectangle': [ - [ - -161.71875, - 64.6875 - ], - [ - -160.3125, - 64.6875 - ], - [ - -160.3125, - 66.09375 - ], - [ - -161.71875, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 40, - 'geohash': 'cbm', - 'center': [ - -93.515625, - 47.109375 - ], - 'rectangle': [ - [ - -94.21875, - 46.40625 - ], - [ - -92.8125, - 46.40625 - ], - [ - -92.8125, - 47.8125 - ], - [ - -94.21875, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 44, - 'geohash': 'bd8', - 'center': [ - -156.796875, - 59.765625 - ], - 'rectangle': [ - [ - -157.5, - 59.0625 - ], - [ - -156.09375, - 59.0625 - ], - [ - -156.09375, - 60.46875 - ], - [ - -157.5, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 41, - 'geohash': 'c2s', - 'center': [ - -117.421875, - 48.515625 - ], - 'rectangle': [ - [ - -118.125, - 47.8125 - ], - [ - -116.71875, - 47.8125 - ], - [ - -116.71875, - 49.21875 - ], - [ - -118.125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 50, - 'geohash': 'b7k', - 'center': [ - -162.421875, - 63.984375 - ], - 'rectangle': [ - [ - -163.125, - 63.28125 - ], - [ - -161.71875, - 63.28125 - ], - [ - -161.71875, - 64.6875 - ], - [ - -163.125, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -68.203125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 40, - 'geohash': 'drz', - 'center': [ - -68.203125, - 44.296875 - ], - 'rectangle': [ - [ - -68.90625, - 43.59375 - ], - [ - -67.5, - 43.59375 - ], - [ - -67.5, - 45 - ], - [ - -68.90625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': '9wu', - 'center': [ - -106.171875, - 38.671875 - ], - 'rectangle': [ - [ - -106.875, - 37.96875 - ], - [ - -105.46875, - 37.96875 - ], - [ - -105.46875, - 39.375 - ], - [ - -106.875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 47, - 'geohash': 'c84', - 'center': [ - -108.984375, - 45.703125 - ], - 'rectangle': [ - [ - -109.6875, - 45 - ], - [ - -108.28125, - 45 - ], - [ - -108.28125, - 46.40625 - ], - [ - -109.6875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 37, - 'geohash': 'c8d', - 'center': [ - -108.984375, - 48.515625 - ], - 'rectangle': [ - [ - -109.6875, - 47.8125 - ], - [ - -108.28125, - 47.8125 - ], - [ - -108.28125, - 49.21875 - ], - [ - -109.6875, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 39, - 'geohash': '9y0', - 'center': [ - -100.546875, - 34.453125 - ], - 'rectangle': [ - [ - -101.25, - 33.75 - ], - [ - -99.84375, - 33.75 - ], - [ - -99.84375, - 35.15625 - ], - [ - -101.25, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 41, - 'geohash': '9wh', - 'center': [ - -106.171875, - 34.453125 - ], - 'rectangle': [ - [ - -106.875, - 33.75 - ], - [ - -105.46875, - 33.75 - ], - [ - -105.46875, - 35.15625 - ], - [ - -106.875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': '9xw', - 'center': [ - -103.359375, - 42.890625 - ], - 'rectangle': [ - [ - -104.0625, - 42.1875 - ], - [ - -102.65625, - 42.1875 - ], - [ - -102.65625, - 43.59375 - ], - [ - -104.0625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 33, - 'geohash': 'dnz', - 'center': [ - -79.453125, - 38.671875 - ], - 'rectangle': [ - [ - -80.15625, - 37.96875 - ], - [ - -78.75, - 37.96875 - ], - [ - -78.75, - 39.375 - ], - [ - -80.15625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 42, - 'geohash': '9ts', - 'center': [ - -106.171875, - 31.640625 - ], - 'rectangle': [ - [ - -106.875, - 30.9375 - ], - [ - -105.46875, - 30.9375 - ], - [ - -105.46875, - 32.34375 - ], - [ - -106.875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': '9xh', - 'center': [ - -106.171875, - 40.078125 - ], - 'rectangle': [ - [ - -106.875, - 39.375 - ], - [ - -105.46875, - 39.375 - ], - [ - -105.46875, - 40.78125 - ], - [ - -106.875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 31, - 'geohash': 'c2d', - 'center': [ - -120.234375, - 48.515625 - ], - 'rectangle': [ - [ - -120.9375, - 47.8125 - ], - [ - -119.53125, - 47.8125 - ], - [ - -119.53125, - 49.21875 - ], - [ - -120.9375, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 38, - 'geohash': 'bdb', - 'center': [ - -156.796875, - 61.171875 - ], - 'rectangle': [ - [ - -157.5, - 60.46875 - ], - [ - -156.09375, - 60.46875 - ], - [ - -156.09375, - 61.875 - ], - [ - -157.5, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 26.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 32, - 'geohash': 'dht', - 'center': [ - -82.265625, - 26.015625 - ], - 'rectangle': [ - [ - -82.96875, - 25.3125 - ], - [ - -81.5625, - 25.3125 - ], - [ - -81.5625, - 26.71875 - ], - [ - -82.96875, - 26.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 41, - 'geohash': 'c8q', - 'center': [ - -103.359375, - 47.109375 - ], - 'rectangle': [ - [ - -104.0625, - 46.40625 - ], - [ - -102.65625, - 46.40625 - ], - [ - -102.65625, - 47.8125 - ], - [ - -104.0625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': 'dpf', - 'center': [ - -86.484375, - 44.296875 - ], - 'rectangle': [ - [ - -87.1875, - 43.59375 - ], - [ - -85.78125, - 43.59375 - ], - [ - -85.78125, - 45 - ], - [ - -87.1875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 39, - 'geohash': 'cb8', - 'center': [ - -100.546875, - 48.515625 - ], - 'rectangle': [ - [ - -101.25, - 47.8125 - ], - [ - -99.84375, - 47.8125 - ], - [ - -99.84375, - 49.21875 - ], - [ - -101.25, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 28, - 'geohash': '9x1', - 'center': [ - -110.390625, - 40.078125 - ], - 'rectangle': [ - [ - -111.09375, - 39.375 - ], - [ - -109.6875, - 39.375 - ], - [ - -109.6875, - 40.78125 - ], - [ - -111.09375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 27, - 'geohash': 'b6r', - 'center': [ - -158.203125, - 58.359375 - ], - 'rectangle': [ - [ - -158.90625, - 57.65625 - ], - [ - -157.5, - 57.65625 - ], - [ - -157.5, - 59.0625 - ], - [ - -158.90625, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 28, - 'geohash': '9tg', - 'center': [ - -107.578125, - 33.046875 - ], - 'rectangle': [ - [ - -108.28125, - 32.34375 - ], - [ - -106.875, - 32.34375 - ], - [ - -106.875, - 33.75 - ], - [ - -108.28125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 20.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 30, - 'geohash': '8e8', - 'center': [ - -156.796875, - 20.390625 - ], - 'rectangle': [ - [ - -157.5, - 19.6875 - ], - [ - -156.09375, - 19.6875 - ], - [ - -156.09375, - 21.09375 - ], - [ - -157.5, - 21.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 31, - 'geohash': 'dq1', - 'center': [ - -76.640625, - 34.453125 - ], - 'rectangle': [ - [ - -77.34375, - 33.75 - ], - [ - -75.9375, - 33.75 - ], - [ - -75.9375, - 35.15625 - ], - [ - -77.34375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 28, - 'geohash': 'c81', - 'center': [ - -110.390625, - 45.703125 - ], - 'rectangle': [ - [ - -111.09375, - 45 - ], - [ - -109.6875, - 45 - ], - [ - -109.6875, - 46.40625 - ], - [ - -111.09375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 37, - 'geohash': 'c29', - 'center': [ - -121.640625, - 48.515625 - ], - 'rectangle': [ - [ - -122.34375, - 47.8125 - ], - [ - -120.9375, - 47.8125 - ], - [ - -120.9375, - 49.21875 - ], - [ - -122.34375, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 34, - 'geohash': 'bds', - 'center': [ - -151.171875, - 59.765625 - ], - 'rectangle': [ - [ - -151.875, - 59.0625 - ], - [ - -150.46875, - 59.0625 - ], - [ - -150.46875, - 60.46875 - ], - [ - -151.875, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 30, - 'geohash': '9ws', - 'center': [ - -106.171875, - 37.265625 - ], - 'rectangle': [ - [ - -106.875, - 36.5625 - ], - [ - -105.46875, - 36.5625 - ], - [ - -105.46875, - 37.96875 - ], - [ - -106.875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 31, - 'geohash': 'c8m', - 'center': [ - -104.765625, - 47.109375 - ], - 'rectangle': [ - [ - -105.46875, - 46.40625 - ], - [ - -104.0625, - 46.40625 - ], - [ - -104.0625, - 47.8125 - ], - [ - -105.46875, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': 'c0p', - 'center': [ - -124.453125, - 45.703125 - ], - 'rectangle': [ - [ - -125.15625, - 45 - ], - [ - -123.75, - 45 - ], - [ - -123.75, - 46.40625 - ], - [ - -125.15625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 32, - 'geohash': 'beb', - 'center': [ - -156.796875, - 66.796875 - ], - 'rectangle': [ - [ - -157.5, - 66.09375 - ], - [ - -156.09375, - 66.09375 - ], - [ - -156.09375, - 67.5 - ], - [ - -157.5, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 34, - 'geohash': '9xb', - 'center': [ - -111.796875, - 44.296875 - ], - 'rectangle': [ - [ - -112.5, - 43.59375 - ], - [ - -111.09375, - 43.59375 - ], - [ - -111.09375, - 45 - ], - [ - -112.5, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 32, - 'geohash': '9rt', - 'center': [ - -116.015625, - 42.890625 - ], - 'rectangle': [ - [ - -116.71875, - 42.1875 - ], - [ - -115.3125, - 42.1875 - ], - [ - -115.3125, - 43.59375 - ], - [ - -116.71875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 30, - 'geohash': 'bfb', - 'center': [ - -145.546875, - 61.171875 - ], - 'rectangle': [ - [ - -146.25, - 60.46875 - ], - [ - -144.84375, - 60.46875 - ], - [ - -144.84375, - 61.875 - ], - [ - -146.25, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 26, - 'geohash': '9tq', - 'center': [ - -103.359375, - 30.234375 - ], - 'rectangle': [ - [ - -104.0625, - 29.53125 - ], - [ - -102.65625, - 29.53125 - ], - [ - -102.65625, - 30.9375 - ], - [ - -104.0625, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': 'c86', - 'center': [ - -108.984375, - 47.109375 - ], - 'rectangle': [ - [ - -109.6875, - 46.40625 - ], - [ - -108.28125, - 46.40625 - ], - [ - -108.28125, - 47.8125 - ], - [ - -109.6875, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 28, - 'geohash': '9r6', - 'center': [ - -120.234375, - 41.484375 - ], - 'rectangle': [ - [ - -120.9375, - 40.78125 - ], - [ - -119.53125, - 40.78125 - ], - [ - -119.53125, - 42.1875 - ], - [ - -120.9375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 41, - 'geohash': 'cb9', - 'center': [ - -99.140625, - 48.515625 - ], - 'rectangle': [ - [ - -99.84375, - 47.8125 - ], - [ - -98.4375, - 47.8125 - ], - [ - -98.4375, - 49.21875 - ], - [ - -99.84375, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'dq6', - 'center': [ - -75.234375, - 35.859375 - ], - 'rectangle': [ - [ - -75.9375, - 35.15625 - ], - [ - -74.53125, - 35.15625 - ], - [ - -74.53125, - 36.5625 - ], - [ - -75.9375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 28, - 'geohash': '9px', - 'center': [ - -124.453125, - 42.890625 - ], - 'rectangle': [ - [ - -125.15625, - 42.1875 - ], - [ - -123.75, - 42.1875 - ], - [ - -123.75, - 43.59375 - ], - [ - -125.15625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -153.984375, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 28, - 'geohash': 'bd4', - 'center': [ - -153.984375, - 56.953125 - ], - 'rectangle': [ - [ - -154.6875, - 56.25 - ], - [ - -153.28125, - 56.25 - ], - [ - -153.28125, - 57.65625 - ], - [ - -154.6875, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 29, - 'geohash': '9my', - 'center': [ - -114.609375, - 33.046875 - ], - 'rectangle': [ - [ - -115.3125, - 32.34375 - ], - [ - -113.90625, - 32.34375 - ], - [ - -113.90625, - 33.75 - ], - [ - -115.3125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 21.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 33, - 'geohash': '87z', - 'center': [ - -158.203125, - 21.796875 - ], - 'rectangle': [ - [ - -158.90625, - 21.09375 - ], - [ - -157.5, - 21.09375 - ], - [ - -157.5, - 22.5 - ], - [ - -158.90625, - 22.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 30, - 'geohash': 'c2m', - 'center': [ - -116.015625, - 47.109375 - ], - 'rectangle': [ - [ - -116.71875, - 46.40625 - ], - [ - -115.3125, - 46.40625 - ], - [ - -115.3125, - 47.8125 - ], - [ - -116.71875, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 31, - 'geohash': '9x3', - 'center': [ - -110.390625, - 41.484375 - ], - 'rectangle': [ - [ - -111.09375, - 40.78125 - ], - [ - -109.6875, - 40.78125 - ], - [ - -109.6875, - 42.1875 - ], - [ - -111.09375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 29, - 'geohash': '9w2', - 'center': [ - -111.796875, - 35.859375 - ], - 'rectangle': [ - [ - -112.5, - 35.15625 - ], - [ - -111.09375, - 35.15625 - ], - [ - -111.09375, - 36.5625 - ], - [ - -112.5, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 32, - 'geohash': '9pz', - 'center': [ - -124.453125, - 44.296875 - ], - 'rectangle': [ - [ - -125.15625, - 43.59375 - ], - [ - -123.75, - 43.59375 - ], - [ - -123.75, - 45 - ], - [ - -125.15625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 37, - 'geohash': 'cbr', - 'center': [ - -90.703125, - 47.109375 - ], - 'rectangle': [ - [ - -91.40625, - 46.40625 - ], - [ - -90, - 46.40625 - ], - [ - -90, - 47.8125 - ], - [ - -91.40625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 24, - 'geohash': '9wg', - 'center': [ - -107.578125, - 38.671875 - ], - 'rectangle': [ - [ - -108.28125, - 37.96875 - ], - [ - -106.875, - 37.96875 - ], - [ - -106.875, - 39.375 - ], - [ - -108.28125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 39, - 'geohash': '9vb', - 'center': [ - -100.546875, - 33.046875 - ], - 'rectangle': [ - [ - -101.25, - 32.34375 - ], - [ - -99.84375, - 32.34375 - ], - [ - -99.84375, - 33.75 - ], - [ - -101.25, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 23, - 'geohash': '9z8', - 'center': [ - -100.546875, - 42.890625 - ], - 'rectangle': [ - [ - -101.25, - 42.1875 - ], - [ - -99.84375, - 42.1875 - ], - [ - -99.84375, - 43.59375 - ], - [ - -101.25, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 29, - 'geohash': '9z2', - 'center': [ - -100.546875, - 41.484375 - ], - 'rectangle': [ - [ - -101.25, - 40.78125 - ], - [ - -99.84375, - 40.78125 - ], - [ - -99.84375, - 42.1875 - ], - [ - -101.25, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 44, - 'geohash': '9w4', - 'center': [ - -108.984375, - 34.453125 - ], - 'rectangle': [ - [ - -109.6875, - 33.75 - ], - [ - -108.28125, - 33.75 - ], - [ - -108.28125, - 35.15625 - ], - [ - -109.6875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 22, - 'geohash': '9wc', - 'center': [ - -110.390625, - 38.671875 - ], - 'rectangle': [ - [ - -111.09375, - 37.96875 - ], - [ - -109.6875, - 37.96875 - ], - [ - -109.6875, - 39.375 - ], - [ - -111.09375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 33, - 'geohash': '9mz', - 'center': [ - -113.203125, - 33.046875 - ], - 'rectangle': [ - [ - -113.90625, - 32.34375 - ], - [ - -112.5, - 32.34375 - ], - [ - -112.5, - 33.75 - ], - [ - -113.90625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -68.203125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 29, - 'geohash': 'f2r', - 'center': [ - -68.203125, - 47.109375 - ], - 'rectangle': [ - [ - -68.90625, - 46.40625 - ], - [ - -67.5, - 46.40625 - ], - [ - -67.5, - 47.8125 - ], - [ - -68.90625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -131.484375, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 28, - 'geohash': 'c1f', - 'center': [ - -131.484375, - 55.546875 - ], - 'rectangle': [ - [ - -132.1875, - 54.84375 - ], - [ - -130.78125, - 54.84375 - ], - [ - -130.78125, - 56.25 - ], - [ - -132.1875, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -155.390625, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 31, - 'geohash': 'be1', - 'center': [ - -155.390625, - 62.578125 - ], - 'rectangle': [ - [ - -156.09375, - 61.875 - ], - [ - -154.6875, - 61.875 - ], - [ - -154.6875, - 63.28125 - ], - [ - -156.09375, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 26, - 'geohash': '9x8', - 'center': [ - -111.796875, - 42.890625 - ], - 'rectangle': [ - [ - -112.5, - 42.1875 - ], - [ - -111.09375, - 42.1875 - ], - [ - -111.09375, - 43.59375 - ], - [ - -112.5, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 27, - 'geohash': '9rx', - 'center': [ - -113.203125, - 42.890625 - ], - 'rectangle': [ - [ - -113.90625, - 42.1875 - ], - [ - -112.5, - 42.1875 - ], - [ - -112.5, - 43.59375 - ], - [ - -113.90625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 38, - 'geohash': 'bev', - 'center': [ - -149.765625, - 66.796875 - ], - 'rectangle': [ - [ - -150.46875, - 66.09375 - ], - [ - -149.0625, - 66.09375 - ], - [ - -149.0625, - 67.5 - ], - [ - -150.46875, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 29, - 'geohash': '9wt', - 'center': [ - -104.765625, - 37.265625 - ], - 'rectangle': [ - [ - -105.46875, - 36.5625 - ], - [ - -104.0625, - 36.5625 - ], - [ - -104.0625, - 37.96875 - ], - [ - -105.46875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 21.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 23, - 'geohash': '87y', - 'center': [ - -159.609375, - 21.796875 - ], - 'rectangle': [ - [ - -160.3125, - 21.09375 - ], - [ - -158.90625, - 21.09375 - ], - [ - -158.90625, - 22.5 - ], - [ - -160.3125, - 22.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 26, - 'geohash': 'drf', - 'center': [ - -75.234375, - 44.296875 - ], - 'rectangle': [ - [ - -75.9375, - 43.59375 - ], - [ - -74.53125, - 43.59375 - ], - [ - -74.53125, - 45 - ], - [ - -75.9375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'c2w', - 'center': [ - -114.609375, - 48.515625 - ], - 'rectangle': [ - [ - -115.3125, - 47.8125 - ], - [ - -113.90625, - 47.8125 - ], - [ - -113.90625, - 49.21875 - ], - [ - -115.3125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 37, - 'geohash': 'c2t', - 'center': [ - -116.015625, - 48.515625 - ], - 'rectangle': [ - [ - -116.71875, - 47.8125 - ], - [ - -115.3125, - 47.8125 - ], - [ - -115.3125, - 49.21875 - ], - [ - -116.71875, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 26, - 'geohash': '9r5', - 'center': [ - -118.828125, - 40.078125 - ], - 'rectangle': [ - [ - -119.53125, - 39.375 - ], - [ - -118.125, - 39.375 - ], - [ - -118.125, - 40.78125 - ], - [ - -119.53125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 24, - 'geohash': '9qk', - 'center': [ - -117.421875, - 35.859375 - ], - 'rectangle': [ - [ - -118.125, - 35.15625 - ], - [ - -116.71875, - 35.15625 - ], - [ - -116.71875, - 36.5625 - ], - [ - -118.125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -144.140625, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 27, - 'geohash': 'bg9', - 'center': [ - -144.140625, - 65.390625 - ], - 'rectangle': [ - [ - -144.84375, - 64.6875 - ], - [ - -143.4375, - 64.6875 - ], - [ - -143.4375, - 66.09375 - ], - [ - -144.84375, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 28, - 'geohash': 'c2j', - 'center': [ - -116.015625, - 45.703125 - ], - 'rectangle': [ - [ - -116.71875, - 45 - ], - [ - -115.3125, - 45 - ], - [ - -115.3125, - 46.40625 - ], - [ - -116.71875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 28, - 'geohash': 'c2h', - 'center': [ - -117.421875, - 45.703125 - ], - 'rectangle': [ - [ - -118.125, - 45 - ], - [ - -116.71875, - 45 - ], - [ - -116.71875, - 46.40625 - ], - [ - -118.125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -163.828125, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 26, - 'geohash': 'b6e', - 'center': [ - -163.828125, - 59.765625 - ], - 'rectangle': [ - [ - -164.53125, - 59.0625 - ], - [ - -163.125, - 59.0625 - ], - [ - -163.125, - 60.46875 - ], - [ - -164.53125, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 22, - 'geohash': '9xf', - 'center': [ - -108.984375, - 44.296875 - ], - 'rectangle': [ - [ - -109.6875, - 43.59375 - ], - [ - -108.28125, - 43.59375 - ], - [ - -108.28125, - 45 - ], - [ - -109.6875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 29, - 'geohash': '9wy', - 'center': [ - -103.359375, - 38.671875 - ], - 'rectangle': [ - [ - -104.0625, - 37.96875 - ], - [ - -102.65625, - 37.96875 - ], - [ - -102.65625, - 39.375 - ], - [ - -104.0625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 25, - 'geohash': '9wb', - 'center': [ - -111.796875, - 38.671875 - ], - 'rectangle': [ - [ - -112.5, - 37.96875 - ], - [ - -111.09375, - 37.96875 - ], - [ - -111.09375, - 39.375 - ], - [ - -112.5, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 24, - 'geohash': 'bet', - 'center': [ - -149.765625, - 65.390625 - ], - 'rectangle': [ - [ - -150.46875, - 64.6875 - ], - [ - -149.0625, - 64.6875 - ], - [ - -149.0625, - 66.09375 - ], - [ - -150.46875, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 27, - 'geohash': '9qg', - 'center': [ - -118.828125, - 38.671875 - ], - 'rectangle': [ - [ - -119.53125, - 37.96875 - ], - [ - -118.125, - 37.96875 - ], - [ - -118.125, - 39.375 - ], - [ - -119.53125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 20, - 'geohash': 'c8w', - 'center': [ - -103.359375, - 48.515625 - ], - 'rectangle': [ - [ - -104.0625, - 47.8125 - ], - [ - -102.65625, - 47.8125 - ], - [ - -102.65625, - 49.21875 - ], - [ - -104.0625, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 29, - 'geohash': 'c2e', - 'center': [ - -118.828125, - 48.515625 - ], - 'rectangle': [ - [ - -119.53125, - 47.8125 - ], - [ - -118.125, - 47.8125 - ], - [ - -118.125, - 49.21875 - ], - [ - -119.53125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 14.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 37, - 'geohash': '8f8', - 'center': [ - -145.546875, - 14.765625 - ], - 'rectangle': [ - [ - -146.25, - 14.0625 - ], - [ - -144.84375, - 14.0625 - ], - [ - -144.84375, - 15.46875 - ], - [ - -146.25, - 15.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 26, - 'geohash': 'c8j', - 'center': [ - -104.765625, - 45.703125 - ], - 'rectangle': [ - [ - -105.46875, - 45 - ], - [ - -104.0625, - 45 - ], - [ - -104.0625, - 46.40625 - ], - [ - -105.46875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 27, - 'geohash': '9qs', - 'center': [ - -117.421875, - 37.265625 - ], - 'rectangle': [ - [ - -118.125, - 36.5625 - ], - [ - -116.71875, - 36.5625 - ], - [ - -116.71875, - 37.96875 - ], - [ - -118.125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 23, - 'geohash': 'c8r', - 'center': [ - -101.953125, - 47.109375 - ], - 'rectangle': [ - [ - -102.65625, - 46.40625 - ], - [ - -101.25, - 46.40625 - ], - [ - -101.25, - 47.8125 - ], - [ - -102.65625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 28, - 'geohash': 'be7', - 'center': [ - -152.578125, - 63.984375 - ], - 'rectangle': [ - [ - -153.28125, - 63.28125 - ], - [ - -151.875, - 63.28125 - ], - [ - -151.875, - 64.6875 - ], - [ - -153.28125, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -66.796875, - 18.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 32, - 'geohash': 'de2', - 'center': [ - -66.796875, - 18.984375 - ], - 'rectangle': [ - [ - -67.5, - 18.28125 - ], - [ - -66.09375, - 18.28125 - ], - [ - -66.09375, - 19.6875 - ], - [ - -67.5, - 19.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 29, - 'geohash': 'bgb', - 'center': [ - -145.546875, - 66.796875 - ], - 'rectangle': [ - [ - -146.25, - 66.09375 - ], - [ - -144.84375, - 66.09375 - ], - [ - -144.84375, - 67.5 - ], - [ - -146.25, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 21, - 'geohash': 'c8h', - 'center': [ - -106.171875, - 45.703125 - ], - 'rectangle': [ - [ - -106.875, - 45 - ], - [ - -105.46875, - 45 - ], - [ - -105.46875, - 46.40625 - ], - [ - -106.875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 34, - 'geohash': 'bsj', - 'center': [ - -149.765625, - 68.203125 - ], - 'rectangle': [ - [ - -150.46875, - 67.5 - ], - [ - -149.0625, - 67.5 - ], - [ - -149.0625, - 68.90625 - ], - [ - -150.46875, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -141.328125, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': 'bg7', - 'center': [ - -141.328125, - 63.984375 - ], - 'rectangle': [ - [ - -142.03125, - 63.28125 - ], - [ - -140.625, - 63.28125 - ], - [ - -140.625, - 64.6875 - ], - [ - -142.03125, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 21, - 'geohash': '9rq', - 'center': [ - -114.609375, - 41.484375 - ], - 'rectangle': [ - [ - -115.3125, - 40.78125 - ], - [ - -113.90625, - 40.78125 - ], - [ - -113.90625, - 42.1875 - ], - [ - -115.3125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 24, - 'geohash': '9rm', - 'center': [ - -116.015625, - 41.484375 - ], - 'rectangle': [ - [ - -116.71875, - 40.78125 - ], - [ - -115.3125, - 40.78125 - ], - [ - -115.3125, - 42.1875 - ], - [ - -116.71875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': '9xk', - 'center': [ - -106.171875, - 41.484375 - ], - 'rectangle': [ - [ - -106.875, - 40.78125 - ], - [ - -105.46875, - 40.78125 - ], - [ - -105.46875, - 42.1875 - ], - [ - -106.875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 25, - 'geohash': '9xd', - 'center': [ - -108.984375, - 42.890625 - ], - 'rectangle': [ - [ - -109.6875, - 42.1875 - ], - [ - -108.28125, - 42.1875 - ], - [ - -108.28125, - 43.59375 - ], - [ - -109.6875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 26, - 'geohash': 'cbt', - 'center': [ - -93.515625, - 48.515625 - ], - 'rectangle': [ - [ - -94.21875, - 47.8125 - ], - [ - -92.8125, - 47.8125 - ], - [ - -92.8125, - 49.21875 - ], - [ - -94.21875, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': '9xt', - 'center': [ - -104.765625, - 42.890625 - ], - 'rectangle': [ - [ - -105.46875, - 42.1875 - ], - [ - -104.0625, - 42.1875 - ], - [ - -104.0625, - 43.59375 - ], - [ - -105.46875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 29, - 'geohash': '9x7', - 'center': [ - -107.578125, - 41.484375 - ], - 'rectangle': [ - [ - -108.28125, - 40.78125 - ], - [ - -106.875, - 40.78125 - ], - [ - -106.875, - 42.1875 - ], - [ - -108.28125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 27, - 'geohash': '9x4', - 'center': [ - -108.984375, - 40.078125 - ], - 'rectangle': [ - [ - -109.6875, - 39.375 - ], - [ - -108.28125, - 39.375 - ], - [ - -108.28125, - 40.78125 - ], - [ - -109.6875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': '9rh', - 'center': [ - -117.421875, - 40.078125 - ], - 'rectangle': [ - [ - -118.125, - 39.375 - ], - [ - -116.71875, - 39.375 - ], - [ - -116.71875, - 40.78125 - ], - [ - -118.125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 26, - 'geohash': 'c82', - 'center': [ - -111.796875, - 47.109375 - ], - 'rectangle': [ - [ - -112.5, - 46.40625 - ], - [ - -111.09375, - 46.40625 - ], - [ - -111.09375, - 47.8125 - ], - [ - -112.5, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'c21', - 'center': [ - -121.640625, - 45.703125 - ], - 'rectangle': [ - [ - -122.34375, - 45 - ], - [ - -120.9375, - 45 - ], - [ - -120.9375, - 46.40625 - ], - [ - -122.34375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -142.734375, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': 'bg4', - 'center': [ - -142.734375, - 62.578125 - ], - 'rectangle': [ - [ - -143.4375, - 61.875 - ], - [ - -142.03125, - 61.875 - ], - [ - -142.03125, - 63.28125 - ], - [ - -143.4375, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': '9w9', - 'center': [ - -110.390625, - 37.265625 - ], - 'rectangle': [ - [ - -111.09375, - 36.5625 - ], - [ - -109.6875, - 36.5625 - ], - [ - -109.6875, - 37.96875 - ], - [ - -111.09375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 28, - 'geohash': '9qj', - 'center': [ - -116.015625, - 34.453125 - ], - 'rectangle': [ - [ - -116.71875, - 33.75 - ], - [ - -115.3125, - 33.75 - ], - [ - -115.3125, - 35.15625 - ], - [ - -116.71875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 23, - 'geohash': 'c8s', - 'center': [ - -106.171875, - 48.515625 - ], - 'rectangle': [ - [ - -106.875, - 47.8125 - ], - [ - -105.46875, - 47.8125 - ], - [ - -105.46875, - 49.21875 - ], - [ - -106.875, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 20, - 'geohash': 'c0x', - 'center': [ - -124.453125, - 48.515625 - ], - 'rectangle': [ - [ - -125.15625, - 47.8125 - ], - [ - -123.75, - 47.8125 - ], - [ - -123.75, - 49.21875 - ], - [ - -125.15625, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 27.421875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 20, - 'geohash': '9uc', - 'center': [ - -99.140625, - 27.421875 - ], - 'rectangle': [ - [ - -99.84375, - 26.71875 - ], - [ - -98.4375, - 26.71875 - ], - [ - -98.4375, - 28.125 - ], - [ - -99.84375, - 28.125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 22, - 'geohash': '9td', - 'center': [ - -108.984375, - 31.640625 - ], - 'rectangle': [ - [ - -109.6875, - 30.9375 - ], - [ - -108.28125, - 30.9375 - ], - [ - -108.28125, - 32.34375 - ], - [ - -109.6875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 10, - 'geohash': '9qz', - 'center': [ - -113.203125, - 38.671875 - ], - 'rectangle': [ - [ - -113.90625, - 37.96875 - ], - [ - -112.5, - 37.96875 - ], - [ - -112.5, - 39.375 - ], - [ - -113.90625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 21, - 'geohash': '9q8', - 'center': [ - -123.046875, - 37.265625 - ], - 'rectangle': [ - [ - -123.75, - 36.5625 - ], - [ - -122.34375, - 36.5625 - ], - [ - -122.34375, - 37.96875 - ], - [ - -123.75, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -153.984375, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 24, - 'geohash': 'bdd', - 'center': [ - -153.984375, - 59.765625 - ], - 'rectangle': [ - [ - -154.6875, - 59.0625 - ], - [ - -153.28125, - 59.0625 - ], - [ - -153.28125, - 60.46875 - ], - [ - -154.6875, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 25, - 'geohash': '9wn', - 'center': [ - -103.359375, - 34.453125 - ], - 'rectangle': [ - [ - -104.0625, - 33.75 - ], - [ - -102.65625, - 33.75 - ], - [ - -102.65625, - 35.15625 - ], - [ - -104.0625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 27, - 'geohash': '9w5', - 'center': [ - -107.578125, - 34.453125 - ], - 'rectangle': [ - [ - -108.28125, - 33.75 - ], - [ - -106.875, - 33.75 - ], - [ - -106.875, - 35.15625 - ], - [ - -108.28125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': '9wj', - 'center': [ - -104.765625, - 34.453125 - ], - 'rectangle': [ - [ - -105.46875, - 33.75 - ], - [ - -104.0625, - 33.75 - ], - [ - -104.0625, - 35.15625 - ], - [ - -105.46875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': '9v0', - 'center': [ - -100.546875, - 28.828125 - ], - 'rectangle': [ - [ - -101.25, - 28.125 - ], - [ - -99.84375, - 28.125 - ], - [ - -99.84375, - 29.53125 - ], - [ - -101.25, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 20, - 'geohash': '9tt', - 'center': [ - -104.765625, - 31.640625 - ], - 'rectangle': [ - [ - -105.46875, - 30.9375 - ], - [ - -104.0625, - 30.9375 - ], - [ - -104.0625, - 32.34375 - ], - [ - -105.46875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 20, - 'geohash': 'c8n', - 'center': [ - -103.359375, - 45.703125 - ], - 'rectangle': [ - [ - -104.0625, - 45 - ], - [ - -102.65625, - 45 - ], - [ - -102.65625, - 46.40625 - ], - [ - -104.0625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 22, - 'geohash': 'be8', - 'center': [ - -156.796875, - 65.390625 - ], - 'rectangle': [ - [ - -157.5, - 64.6875 - ], - [ - -156.09375, - 64.6875 - ], - [ - -156.09375, - 66.09375 - ], - [ - -157.5, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -165.234375, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 22, - 'geohash': 'b74', - 'center': [ - -165.234375, - 62.578125 - ], - 'rectangle': [ - [ - -165.9375, - 61.875 - ], - [ - -164.53125, - 61.875 - ], - [ - -164.53125, - 63.28125 - ], - [ - -165.9375, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'b7m', - 'center': [ - -161.015625, - 63.984375 - ], - 'rectangle': [ - [ - -161.71875, - 63.28125 - ], - [ - -160.3125, - 63.28125 - ], - [ - -160.3125, - 64.6875 - ], - [ - -161.71875, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 22, - 'geohash': 'bem', - 'center': [ - -149.765625, - 63.984375 - ], - 'rectangle': [ - [ - -150.46875, - 63.28125 - ], - [ - -149.0625, - 63.28125 - ], - [ - -149.0625, - 64.6875 - ], - [ - -150.46875, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': 'b79', - 'center': [ - -166.640625, - 65.390625 - ], - 'rectangle': [ - [ - -167.34375, - 64.6875 - ], - [ - -165.9375, - 64.6875 - ], - [ - -165.9375, - 66.09375 - ], - [ - -167.34375, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': '9wq', - 'center': [ - -103.359375, - 35.859375 - ], - 'rectangle': [ - [ - -104.0625, - 35.15625 - ], - [ - -102.65625, - 35.15625 - ], - [ - -102.65625, - 36.5625 - ], - [ - -104.0625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -169.453125, - 14.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 25, - 'geohash': '84x', - 'center': [ - -169.453125, - 14.765625 - ], - 'rectangle': [ - [ - -170.15625, - 14.0625 - ], - [ - -168.75, - 14.0625 - ], - [ - -168.75, - 15.46875 - ], - [ - -170.15625, - 15.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 21, - 'geohash': 'beu', - 'center': [ - -151.171875, - 66.796875 - ], - 'rectangle': [ - [ - -151.875, - 66.09375 - ], - [ - -150.46875, - 66.09375 - ], - [ - -150.46875, - 67.5 - ], - [ - -151.875, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': '9x6', - 'center': [ - -108.984375, - 41.484375 - ], - 'rectangle': [ - [ - -109.6875, - 40.78125 - ], - [ - -108.28125, - 40.78125 - ], - [ - -108.28125, - 42.1875 - ], - [ - -109.6875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': 'c0r', - 'center': [ - -124.453125, - 47.109375 - ], - 'rectangle': [ - [ - -125.15625, - 46.40625 - ], - [ - -123.75, - 46.40625 - ], - [ - -123.75, - 47.8125 - ], - [ - -125.15625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -146.953125, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 21, - 'geohash': 'bez', - 'center': [ - -146.953125, - 66.796875 - ], - 'rectangle': [ - [ - -147.65625, - 66.09375 - ], - [ - -146.25, - 66.09375 - ], - [ - -146.25, - 67.5 - ], - [ - -147.65625, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 26, - 'geohash': 'bdu', - 'center': [ - -151.171875, - 61.171875 - ], - 'rectangle': [ - [ - -151.875, - 60.46875 - ], - [ - -150.46875, - 60.46875 - ], - [ - -150.46875, - 61.875 - ], - [ - -151.875, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 22, - 'geohash': 'c2r', - 'center': [ - -113.203125, - 47.109375 - ], - 'rectangle': [ - [ - -113.90625, - 46.40625 - ], - [ - -112.5, - 46.40625 - ], - [ - -112.5, - 47.8125 - ], - [ - -113.90625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': 'b3u', - 'center': [ - -162.421875, - 55.546875 - ], - 'rectangle': [ - [ - -163.125, - 54.84375 - ], - [ - -161.71875, - 54.84375 - ], - [ - -161.71875, - 56.25 - ], - [ - -163.125, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -66.796875, - 17.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'de0', - 'center': [ - -66.796875, - 17.578125 - ], - 'rectangle': [ - [ - -67.5, - 16.875 - ], - [ - -66.09375, - 16.875 - ], - [ - -66.09375, - 18.28125 - ], - [ - -67.5, - 18.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 22, - 'geohash': '9te', - 'center': [ - -107.578125, - 31.640625 - ], - 'rectangle': [ - [ - -108.28125, - 30.9375 - ], - [ - -106.875, - 30.9375 - ], - [ - -106.875, - 32.34375 - ], - [ - -108.28125, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -139.921875, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'bfs', - 'center': [ - -139.921875, - 59.765625 - ], - 'rectangle': [ - [ - -140.625, - 59.0625 - ], - [ - -139.21875, - 59.0625 - ], - [ - -139.21875, - 60.46875 - ], - [ - -140.625, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': 'b3y', - 'center': [ - -159.609375, - 55.546875 - ], - 'rectangle': [ - [ - -160.3125, - 54.84375 - ], - [ - -158.90625, - 54.84375 - ], - [ - -158.90625, - 56.25 - ], - [ - -160.3125, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 20, - 'geohash': '9w7', - 'center': [ - -107.578125, - 35.859375 - ], - 'rectangle': [ - [ - -108.28125, - 35.15625 - ], - [ - -106.875, - 35.15625 - ], - [ - -106.875, - 36.5625 - ], - [ - -108.28125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 71.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': 'bs8', - 'center': [ - -156.796875, - 71.015625 - ], - 'rectangle': [ - [ - -157.5, - 70.3125 - ], - [ - -156.09375, - 70.3125 - ], - [ - -156.09375, - 71.71875 - ], - [ - -157.5, - 71.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 23, - 'geohash': 'b7x', - 'center': [ - -158.203125, - 65.390625 - ], - 'rectangle': [ - [ - -158.90625, - 64.6875 - ], - [ - -157.5, - 64.6875 - ], - [ - -157.5, - 66.09375 - ], - [ - -158.90625, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': '9rk', - 'center': [ - -117.421875, - 41.484375 - ], - 'rectangle': [ - [ - -118.125, - 40.78125 - ], - [ - -116.71875, - 40.78125 - ], - [ - -116.71875, - 42.1875 - ], - [ - -118.125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 24, - 'geohash': 'cb3', - 'center': [ - -99.140625, - 47.109375 - ], - 'rectangle': [ - [ - -99.84375, - 46.40625 - ], - [ - -98.4375, - 46.40625 - ], - [ - -98.4375, - 47.8125 - ], - [ - -99.84375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -142.734375, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': 'bff', - 'center': [ - -142.734375, - 61.171875 - ], - 'rectangle': [ - [ - -143.4375, - 60.46875 - ], - [ - -142.03125, - 60.46875 - ], - [ - -142.03125, - 61.875 - ], - [ - -143.4375, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': 'b7v', - 'center': [ - -161.015625, - 66.796875 - ], - 'rectangle': [ - [ - -161.71875, - 66.09375 - ], - [ - -160.3125, - 66.09375 - ], - [ - -160.3125, - 67.5 - ], - [ - -161.71875, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'b6y', - 'center': [ - -159.609375, - 61.171875 - ], - 'rectangle': [ - [ - -160.3125, - 60.46875 - ], - [ - -158.90625, - 60.46875 - ], - [ - -158.90625, - 61.875 - ], - [ - -160.3125, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 21.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': '8eb', - 'center': [ - -156.796875, - 21.796875 - ], - 'rectangle': [ - [ - -157.5, - 21.09375 - ], - [ - -156.09375, - 21.09375 - ], - [ - -156.09375, - 22.5 - ], - [ - -157.5, - 22.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': '9wf', - 'center': [ - -108.984375, - 38.671875 - ], - 'rectangle': [ - [ - -109.6875, - 37.96875 - ], - [ - -108.28125, - 37.96875 - ], - [ - -108.28125, - 39.375 - ], - [ - -109.6875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 21, - 'geohash': 'cbw', - 'center': [ - -92.109375, - 48.515625 - ], - 'rectangle': [ - [ - -92.8125, - 47.8125 - ], - [ - -91.40625, - 47.8125 - ], - [ - -91.40625, - 49.21875 - ], - [ - -92.8125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 25, - 'geohash': 'c8k', - 'center': [ - -106.171875, - 47.109375 - ], - 'rectangle': [ - [ - -106.875, - 46.40625 - ], - [ - -105.46875, - 46.40625 - ], - [ - -105.46875, - 47.8125 - ], - [ - -106.875, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -163.828125, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 25, - 'geohash': 'b7e', - 'center': [ - -163.828125, - 65.390625 - ], - 'rectangle': [ - [ - -164.53125, - 64.6875 - ], - [ - -163.125, - 64.6875 - ], - [ - -163.125, - 66.09375 - ], - [ - -164.53125, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 22, - 'geohash': 'b3v', - 'center': [ - -161.015625, - 55.546875 - ], - 'rectangle': [ - [ - -161.71875, - 54.84375 - ], - [ - -160.3125, - 54.84375 - ], - [ - -160.3125, - 56.25 - ], - [ - -161.71875, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 28, - 'geohash': '9tv', - 'center': [ - -104.765625, - 33.046875 - ], - 'rectangle': [ - [ - -105.46875, - 32.34375 - ], - [ - -104.0625, - 32.34375 - ], - [ - -104.0625, - 33.75 - ], - [ - -105.46875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': '9qu', - 'center': [ - -117.421875, - 38.671875 - ], - 'rectangle': [ - [ - -118.125, - 37.96875 - ], - [ - -116.71875, - 37.96875 - ], - [ - -116.71875, - 39.375 - ], - [ - -118.125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 24, - 'geohash': '9xu', - 'center': [ - -106.171875, - 44.296875 - ], - 'rectangle': [ - [ - -106.875, - 43.59375 - ], - [ - -105.46875, - 43.59375 - ], - [ - -105.46875, - 45 - ], - [ - -106.875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 24, - 'geohash': 'cbs', - 'center': [ - -94.921875, - 48.515625 - ], - 'rectangle': [ - [ - -95.625, - 47.8125 - ], - [ - -94.21875, - 47.8125 - ], - [ - -94.21875, - 49.21875 - ], - [ - -95.625, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -135.703125, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'bfp', - 'center': [ - -135.703125, - 56.953125 - ], - 'rectangle': [ - [ - -136.40625, - 56.25 - ], - [ - -135, - 56.25 - ], - [ - -135, - 57.65625 - ], - [ - -136.40625, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': '9qp', - 'center': [ - -113.203125, - 34.453125 - ], - 'rectangle': [ - [ - -113.90625, - 33.75 - ], - [ - -112.5, - 33.75 - ], - [ - -112.5, - 35.15625 - ], - [ - -113.90625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -66.796875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 10, - 'geohash': 'dxb', - 'center': [ - -66.796875, - 44.296875 - ], - 'rectangle': [ - [ - -67.5, - 43.59375 - ], - [ - -66.09375, - 43.59375 - ], - [ - -66.09375, - 45 - ], - [ - -67.5, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -172.265625, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 21, - 'geohash': 'b5m', - 'center': [ - -172.265625, - 63.984375 - ], - 'rectangle': [ - [ - -172.96875, - 63.28125 - ], - [ - -171.5625, - 63.28125 - ], - [ - -171.5625, - 64.6875 - ], - [ - -172.96875, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 69.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 10, - 'geohash': 'bsk', - 'center': [ - -151.171875, - 69.609375 - ], - 'rectangle': [ - [ - -151.875, - 68.90625 - ], - [ - -150.46875, - 68.90625 - ], - [ - -150.46875, - 70.3125 - ], - [ - -151.875, - 70.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': '9xv', - 'center': [ - -104.765625, - 44.296875 - ], - 'rectangle': [ - [ - -105.46875, - 43.59375 - ], - [ - -104.0625, - 43.59375 - ], - [ - -104.0625, - 45 - ], - [ - -105.46875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': 'bu0', - 'center': [ - -145.546875, - 68.203125 - ], - 'rectangle': [ - [ - -146.25, - 67.5 - ], - [ - -144.84375, - 67.5 - ], - [ - -144.84375, - 68.90625 - ], - [ - -146.25, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': '9q3', - 'center': [ - -121.640625, - 35.859375 - ], - 'rectangle': [ - [ - -122.34375, - 35.15625 - ], - [ - -120.9375, - 35.15625 - ], - [ - -120.9375, - 36.5625 - ], - [ - -122.34375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -73.828125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': 'dqg', - 'center': [ - -73.828125, - 38.671875 - ], - 'rectangle': [ - [ - -74.53125, - 37.96875 - ], - [ - -73.125, - 37.96875 - ], - [ - -73.125, - 39.375 - ], - [ - -74.53125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': 'c8e', - 'center': [ - -107.578125, - 48.515625 - ], - 'rectangle': [ - [ - -108.28125, - 47.8125 - ], - [ - -106.875, - 47.8125 - ], - [ - -106.875, - 49.21875 - ], - [ - -108.28125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -72.421875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'drh', - 'center': [ - -72.421875, - 40.078125 - ], - 'rectangle': [ - [ - -73.125, - 39.375 - ], - [ - -71.71875, - 39.375 - ], - [ - -71.71875, - 40.78125 - ], - [ - -73.125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': 'b6z', - 'center': [ - -158.203125, - 61.171875 - ], - 'rectangle': [ - [ - -158.90625, - 60.46875 - ], - [ - -157.5, - 60.46875 - ], - [ - -157.5, - 61.875 - ], - [ - -158.90625, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': '9rp', - 'center': [ - -113.203125, - 40.078125 - ], - 'rectangle': [ - [ - -113.90625, - 39.375 - ], - [ - -112.5, - 39.375 - ], - [ - -112.5, - 40.78125 - ], - [ - -113.90625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -170.859375, - 14.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 9, - 'geohash': '84w', - 'center': [ - -170.859375, - 14.765625 - ], - 'rectangle': [ - [ - -171.5625, - 14.0625 - ], - [ - -170.15625, - 14.0625 - ], - [ - -170.15625, - 15.46875 - ], - [ - -171.5625, - 15.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': 'bee', - 'center': [ - -152.578125, - 65.390625 - ], - 'rectangle': [ - [ - -153.28125, - 64.6875 - ], - [ - -151.875, - 64.6875 - ], - [ - -151.875, - 66.09375 - ], - [ - -153.28125, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -146.953125, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 8, - 'geohash': 'bep', - 'center': [ - -146.953125, - 62.578125 - ], - 'rectangle': [ - [ - -147.65625, - 61.875 - ], - [ - -146.25, - 61.875 - ], - [ - -146.25, - 63.28125 - ], - [ - -147.65625, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': '9vp', - 'center': [ - -90.703125, - 28.828125 - ], - 'rectangle': [ - [ - -91.40625, - 28.125 - ], - [ - -90, - 28.125 - ], - [ - -90, - 29.53125 - ], - [ - -91.40625, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -170.859375, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': 'b4n', - 'center': [ - -170.859375, - 56.953125 - ], - 'rectangle': [ - [ - -171.5625, - 56.25 - ], - [ - -170.15625, - 56.25 - ], - [ - -170.15625, - 57.65625 - ], - [ - -171.5625, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -142.734375, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': 'bg6', - 'center': [ - -142.734375, - 63.984375 - ], - 'rectangle': [ - [ - -143.4375, - 63.28125 - ], - [ - -142.03125, - 63.28125 - ], - [ - -142.03125, - 64.6875 - ], - [ - -143.4375, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': 'b6k', - 'center': [ - -162.421875, - 58.359375 - ], - 'rectangle': [ - [ - -163.125, - 57.65625 - ], - [ - -161.71875, - 57.65625 - ], - [ - -161.71875, - 59.0625 - ], - [ - -163.125, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': 'c87', - 'center': [ - -107.578125, - 47.109375 - ], - 'rectangle': [ - [ - -108.28125, - 46.40625 - ], - [ - -106.875, - 46.40625 - ], - [ - -106.875, - 47.8125 - ], - [ - -108.28125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 10, - 'geohash': 'b6x', - 'center': [ - -158.203125, - 59.765625 - ], - 'rectangle': [ - [ - -158.90625, - 59.0625 - ], - [ - -157.5, - 59.0625 - ], - [ - -157.5, - 60.46875 - ], - [ - -158.90625, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': 'b6c', - 'center': [ - -166.640625, - 61.171875 - ], - 'rectangle': [ - [ - -167.34375, - 60.46875 - ], - [ - -165.9375, - 60.46875 - ], - [ - -165.9375, - 61.875 - ], - [ - -167.34375, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 8, - 'geohash': '9qm', - 'center': [ - -116.015625, - 35.859375 - ], - 'rectangle': [ - [ - -116.71875, - 35.15625 - ], - [ - -115.3125, - 35.15625 - ], - [ - -115.3125, - 36.5625 - ], - [ - -116.71875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 9, - 'geohash': 'bdy', - 'center': [ - -148.359375, - 61.171875 - ], - 'rectangle': [ - [ - -149.0625, - 60.46875 - ], - [ - -147.65625, - 60.46875 - ], - [ - -147.65625, - 61.875 - ], - [ - -149.0625, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 54.140625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'b3s', - 'center': [ - -162.421875, - 54.140625 - ], - 'rectangle': [ - [ - -163.125, - 53.4375 - ], - [ - -161.71875, - 53.4375 - ], - [ - -161.71875, - 54.84375 - ], - [ - -163.125, - 54.84375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 10, - 'geohash': '9rz', - 'center': [ - -113.203125, - 44.296875 - ], - 'rectangle': [ - [ - -113.90625, - 43.59375 - ], - [ - -112.5, - 43.59375 - ], - [ - -112.5, - 45 - ], - [ - -113.90625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': '9rj', - 'center': [ - -116.015625, - 40.078125 - ], - 'rectangle': [ - [ - -116.71875, - 39.375 - ], - [ - -115.3125, - 39.375 - ], - [ - -115.3125, - 40.78125 - ], - [ - -116.71875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 9, - 'geohash': 'bg2', - 'center': [ - -145.546875, - 63.984375 - ], - 'rectangle': [ - [ - -146.25, - 63.28125 - ], - [ - -144.84375, - 63.28125 - ], - [ - -144.84375, - 64.6875 - ], - [ - -146.25, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': 'bdt', - 'center': [ - -149.765625, - 59.765625 - ], - 'rectangle': [ - [ - -150.46875, - 59.0625 - ], - [ - -149.0625, - 59.0625 - ], - [ - -149.0625, - 60.46875 - ], - [ - -150.46875, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'bd0', - 'center': [ - -156.796875, - 56.953125 - ], - 'rectangle': [ - [ - -157.5, - 56.25 - ], - [ - -156.09375, - 56.25 - ], - [ - -156.09375, - 57.65625 - ], - [ - -157.5, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -165.234375, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': 'b76', - 'center': [ - -165.234375, - 63.984375 - ], - 'rectangle': [ - [ - -165.9375, - 63.28125 - ], - [ - -164.53125, - 63.28125 - ], - [ - -164.53125, - 64.6875 - ], - [ - -165.9375, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 10, - 'geohash': '9v2', - 'center': [ - -100.546875, - 30.234375 - ], - 'rectangle': [ - [ - -101.25, - 29.53125 - ], - [ - -99.84375, - 29.53125 - ], - [ - -99.84375, - 30.9375 - ], - [ - -101.25, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 9, - 'geohash': 'c2n', - 'center': [ - -114.609375, - 45.703125 - ], - 'rectangle': [ - [ - -115.3125, - 45 - ], - [ - -113.90625, - 45 - ], - [ - -113.90625, - 46.40625 - ], - [ - -115.3125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 9, - 'geohash': 'bej', - 'center': [ - -149.765625, - 62.578125 - ], - 'rectangle': [ - [ - -150.46875, - 61.875 - ], - [ - -149.0625, - 61.875 - ], - [ - -149.0625, - 63.28125 - ], - [ - -150.46875, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 5, - 'geohash': 'b6q', - 'center': [ - -159.609375, - 58.359375 - ], - 'rectangle': [ - [ - -160.3125, - 57.65625 - ], - [ - -158.90625, - 57.65625 - ], - [ - -158.90625, - 59.0625 - ], - [ - -160.3125, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'b6m', - 'center': [ - -161.015625, - 58.359375 - ], - 'rectangle': [ - [ - -161.71875, - 57.65625 - ], - [ - -160.3125, - 57.65625 - ], - [ - -160.3125, - 59.0625 - ], - [ - -161.71875, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -144.140625, - 13.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 5, - 'geohash': '8f3', - 'center': [ - -144.140625, - 13.359375 - ], - 'rectangle': [ - [ - -144.84375, - 12.65625 - ], - [ - -143.4375, - 12.65625 - ], - [ - -143.4375, - 14.0625 - ], - [ - -144.84375, - 14.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -141.328125, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': 'bg5', - 'center': [ - -141.328125, - 62.578125 - ], - 'rectangle': [ - [ - -142.03125, - 61.875 - ], - [ - -140.625, - 61.875 - ], - [ - -140.625, - 63.28125 - ], - [ - -142.03125, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -144.140625, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': 'bfc', - 'center': [ - -144.140625, - 61.171875 - ], - 'rectangle': [ - [ - -144.84375, - 60.46875 - ], - [ - -143.4375, - 60.46875 - ], - [ - -143.4375, - 61.875 - ], - [ - -144.84375, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 69.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'bsq', - 'center': [ - -148.359375, - 69.609375 - ], - 'rectangle': [ - [ - -149.0625, - 68.90625 - ], - [ - -147.65625, - 68.90625 - ], - [ - -147.65625, - 70.3125 - ], - [ - -149.0625, - 70.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -168.046875, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 8, - 'geohash': 'b78', - 'center': [ - -168.046875, - 65.390625 - ], - 'rectangle': [ - [ - -168.75, - 64.6875 - ], - [ - -167.34375, - 64.6875 - ], - [ - -167.34375, - 66.09375 - ], - [ - -168.75, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -165.234375, - 54.140625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 9, - 'geohash': 'b3d', - 'center': [ - -165.234375, - 54.140625 - ], - 'rectangle': [ - [ - -165.9375, - 53.4375 - ], - [ - -164.53125, - 53.4375 - ], - [ - -164.53125, - 54.84375 - ], - [ - -165.9375, - 54.84375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 7, - 'geohash': '9xs', - 'center': [ - -106.171875, - 42.890625 - ], - 'rectangle': [ - [ - -106.875, - 42.1875 - ], - [ - -105.46875, - 42.1875 - ], - [ - -105.46875, - 43.59375 - ], - [ - -106.875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 7, - 'geohash': '9rd', - 'center': [ - -120.234375, - 42.890625 - ], - 'rectangle': [ - [ - -120.9375, - 42.1875 - ], - [ - -119.53125, - 42.1875 - ], - [ - -119.53125, - 43.59375 - ], - [ - -120.9375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': '9qr', - 'center': [ - -113.203125, - 35.859375 - ], - 'rectangle': [ - [ - -113.90625, - 35.15625 - ], - [ - -112.5, - 35.15625 - ], - [ - -112.5, - 36.5625 - ], - [ - -113.90625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'bk1', - 'center': [ - -166.640625, - 68.203125 - ], - 'rectangle': [ - [ - -167.34375, - 67.5 - ], - [ - -165.9375, - 67.5 - ], - [ - -165.9375, - 68.90625 - ], - [ - -167.34375, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -144.140625, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 9, - 'geohash': 'bgc', - 'center': [ - -144.140625, - 66.796875 - ], - 'rectangle': [ - [ - -144.84375, - 66.09375 - ], - [ - -143.4375, - 66.09375 - ], - [ - -143.4375, - 67.5 - ], - [ - -144.84375, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 6, - 'geohash': 'bek', - 'center': [ - -151.171875, - 63.984375 - ], - 'rectangle': [ - [ - -151.875, - 63.28125 - ], - [ - -150.46875, - 63.28125 - ], - [ - -150.46875, - 64.6875 - ], - [ - -151.875, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 10, - 'geohash': 'bde', - 'center': [ - -152.578125, - 59.765625 - ], - 'rectangle': [ - [ - -153.28125, - 59.0625 - ], - [ - -151.875, - 59.0625 - ], - [ - -151.875, - 60.46875 - ], - [ - -153.28125, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': 'b7s', - 'center': [ - -162.421875, - 65.390625 - ], - 'rectangle': [ - [ - -163.125, - 64.6875 - ], - [ - -161.71875, - 64.6875 - ], - [ - -161.71875, - 66.09375 - ], - [ - -163.125, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 9, - 'geohash': 'b69', - 'center': [ - -166.640625, - 59.765625 - ], - 'rectangle': [ - [ - -167.34375, - 59.0625 - ], - [ - -165.9375, - 59.0625 - ], - [ - -165.9375, - 60.46875 - ], - [ - -167.34375, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 54.140625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': 'b39', - 'center': [ - -166.640625, - 54.140625 - ], - 'rectangle': [ - [ - -167.34375, - 53.4375 - ], - [ - -165.9375, - 53.4375 - ], - [ - -165.9375, - 54.84375 - ], - [ - -167.34375, - 54.84375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 17.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 10, - 'geohash': '8g0', - 'center': [ - -145.546875, - 17.578125 - ], - 'rectangle': [ - [ - -146.25, - 16.875 - ], - [ - -144.84375, - 16.875 - ], - [ - -144.84375, - 18.28125 - ], - [ - -146.25, - 18.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -144.140625, - 69.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'bu3', - 'center': [ - -144.140625, - 69.609375 - ], - 'rectangle': [ - [ - -144.84375, - 68.90625 - ], - [ - -143.4375, - 68.90625 - ], - [ - -143.4375, - 70.3125 - ], - [ - -144.84375, - 70.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 71.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 10, - 'geohash': 'bkw', - 'center': [ - -159.609375, - 71.015625 - ], - 'rectangle': [ - [ - -160.3125, - 70.3125 - ], - [ - -158.90625, - 70.3125 - ], - [ - -158.90625, - 71.71875 - ], - [ - -160.3125, - 71.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 69.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': 'bkk', - 'center': [ - -162.421875, - 69.609375 - ], - 'rectangle': [ - [ - -163.125, - 68.90625 - ], - [ - -161.71875, - 68.90625 - ], - [ - -161.71875, - 70.3125 - ], - [ - -163.125, - 70.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -165.234375, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 9, - 'geohash': 'bk4', - 'center': [ - -165.234375, - 68.203125 - ], - 'rectangle': [ - [ - -165.9375, - 67.5 - ], - [ - -164.53125, - 67.5 - ], - [ - -164.53125, - 68.90625 - ], - [ - -165.9375, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 10, - 'geohash': 'be0', - 'center': [ - -156.796875, - 62.578125 - ], - 'rectangle': [ - [ - -157.5, - 61.875 - ], - [ - -156.09375, - 61.875 - ], - [ - -156.09375, - 63.28125 - ], - [ - -157.5, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'bd5', - 'center': [ - -152.578125, - 56.953125 - ], - 'rectangle': [ - [ - -153.28125, - 56.25 - ], - [ - -151.875, - 56.25 - ], - [ - -151.875, - 57.65625 - ], - [ - -153.28125, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': 'b7p', - 'center': [ - -158.203125, - 62.578125 - ], - 'rectangle': [ - [ - -158.90625, - 61.875 - ], - [ - -157.5, - 61.875 - ], - [ - -157.5, - 63.28125 - ], - [ - -158.90625, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -170.859375, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': 'b5q', - 'center': [ - -170.859375, - 63.984375 - ], - 'rectangle': [ - [ - -171.5625, - 63.28125 - ], - [ - -170.15625, - 63.28125 - ], - [ - -170.15625, - 64.6875 - ], - [ - -171.5625, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': '9xc', - 'center': [ - -110.390625, - 44.296875 - ], - 'rectangle': [ - [ - -111.09375, - 43.59375 - ], - [ - -109.6875, - 43.59375 - ], - [ - -109.6875, - 45 - ], - [ - -111.09375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 8, - 'geohash': '9t8', - 'center': [ - -111.796875, - 31.640625 - ], - 'rectangle': [ - [ - -112.5, - 30.9375 - ], - [ - -111.09375, - 30.9375 - ], - [ - -111.09375, - 32.34375 - ], - [ - -112.5, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 6, - 'geohash': '9ry', - 'center': [ - -114.609375, - 44.296875 - ], - 'rectangle': [ - [ - -115.3125, - 43.59375 - ], - [ - -113.90625, - 43.59375 - ], - [ - -113.90625, - 45 - ], - [ - -115.3125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': '9rn', - 'center': [ - -114.609375, - 40.078125 - ], - 'rectangle': [ - [ - -115.3125, - 39.375 - ], - [ - -113.90625, - 39.375 - ], - [ - -113.90625, - 40.78125 - ], - [ - -115.3125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 7, - 'geohash': 'f03', - 'center': [ - -87.890625, - 47.109375 - ], - 'rectangle': [ - [ - -88.59375, - 46.40625 - ], - [ - -87.1875, - 46.40625 - ], - [ - -87.1875, - 47.8125 - ], - [ - -88.59375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': 'f02', - 'center': [ - -89.296875, - 47.109375 - ], - 'rectangle': [ - [ - -90, - 46.40625 - ], - [ - -88.59375, - 46.40625 - ], - [ - -88.59375, - 47.8125 - ], - [ - -90, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'b6w', - 'center': [ - -159.609375, - 59.765625 - ], - 'rectangle': [ - [ - -160.3125, - 59.0625 - ], - [ - -158.90625, - 59.0625 - ], - [ - -158.90625, - 60.46875 - ], - [ - -160.3125, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 6, - 'geohash': '9qy', - 'center': [ - -114.609375, - 38.671875 - ], - 'rectangle': [ - [ - -115.3125, - 37.96875 - ], - [ - -113.90625, - 37.96875 - ], - [ - -113.90625, - 39.375 - ], - [ - -115.3125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': 'bsn', - 'center': [ - -148.359375, - 68.203125 - ], - 'rectangle': [ - [ - -149.0625, - 67.5 - ], - [ - -147.65625, - 67.5 - ], - [ - -147.65625, - 68.90625 - ], - [ - -149.0625, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 9, - 'geohash': 'bg0', - 'center': [ - -145.546875, - 62.578125 - ], - 'rectangle': [ - [ - -146.25, - 61.875 - ], - [ - -144.84375, - 61.875 - ], - [ - -144.84375, - 63.28125 - ], - [ - -146.25, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 7, - 'geohash': 'bdw', - 'center': [ - -148.359375, - 59.765625 - ], - 'rectangle': [ - [ - -149.0625, - 59.0625 - ], - [ - -147.65625, - 59.0625 - ], - [ - -147.65625, - 60.46875 - ], - [ - -149.0625, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -155.390625, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': 'bdc', - 'center': [ - -155.390625, - 61.171875 - ], - 'rectangle': [ - [ - -156.09375, - 60.46875 - ], - [ - -154.6875, - 60.46875 - ], - [ - -154.6875, - 61.875 - ], - [ - -156.09375, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': 'b7y', - 'center': [ - -159.609375, - 66.796875 - ], - 'rectangle': [ - [ - -160.3125, - 66.09375 - ], - [ - -158.90625, - 66.09375 - ], - [ - -158.90625, - 67.5 - ], - [ - -160.3125, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -169.453125, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'b5x', - 'center': [ - -169.453125, - 65.390625 - ], - 'rectangle': [ - [ - -170.15625, - 64.6875 - ], - [ - -168.75, - 64.6875 - ], - [ - -168.75, - 66.09375 - ], - [ - -170.15625, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -176.484375, - 51.328125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 7, - 'geohash': 'b14', - 'center': [ - -176.484375, - 51.328125 - ], - 'rectangle': [ - [ - -177.1875, - 50.625 - ], - [ - -175.78125, - 50.625 - ], - [ - -175.78125, - 52.03125 - ], - [ - -177.1875, - 52.03125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 5, - 'geohash': '9re', - 'center': [ - -118.828125, - 42.890625 - ], - 'rectangle': [ - [ - -119.53125, - 42.1875 - ], - [ - -118.125, - 42.1875 - ], - [ - -118.125, - 43.59375 - ], - [ - -119.53125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 7, - 'geohash': '9r9', - 'center': [ - -121.640625, - 42.890625 - ], - 'rectangle': [ - [ - -122.34375, - 42.1875 - ], - [ - -120.9375, - 42.1875 - ], - [ - -120.9375, - 43.59375 - ], - [ - -122.34375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': 'djh', - 'center': [ - -83.671875, - 28.828125 - ], - 'rectangle': [ - [ - -84.375, - 28.125 - ], - [ - -82.96875, - 28.125 - ], - [ - -82.96875, - 29.53125 - ], - [ - -84.375, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 5, - 'geohash': 'beq', - 'center': [ - -148.359375, - 63.984375 - ], - 'rectangle': [ - [ - -149.0625, - 63.28125 - ], - [ - -147.65625, - 63.28125 - ], - [ - -147.65625, - 64.6875 - ], - [ - -149.0625, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -169.453125, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 9, - 'geohash': 'b4p', - 'center': [ - -169.453125, - 56.953125 - ], - 'rectangle': [ - [ - -170.15625, - 56.25 - ], - [ - -168.75, - 56.25 - ], - [ - -168.75, - 57.65625 - ], - [ - -170.15625, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 5, - 'geohash': '9mg', - 'center': [ - -118.828125, - 33.046875 - ], - 'rectangle': [ - [ - -119.53125, - 32.34375 - ], - [ - -118.125, - 32.34375 - ], - [ - -118.125, - 33.75 - ], - [ - -119.53125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -153.984375, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 10, - 'geohash': 'be4', - 'center': [ - -153.984375, - 62.578125 - ], - 'rectangle': [ - [ - -154.6875, - 61.875 - ], - [ - -153.28125, - 61.875 - ], - [ - -153.28125, - 63.28125 - ], - [ - -154.6875, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': 'b7u', - 'center': [ - -162.421875, - 66.796875 - ], - 'rectangle': [ - [ - -163.125, - 66.09375 - ], - [ - -161.71875, - 66.09375 - ], - [ - -161.71875, - 67.5 - ], - [ - -163.125, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': '9w3', - 'center': [ - -110.390625, - 35.859375 - ], - 'rectangle': [ - [ - -111.09375, - 35.15625 - ], - [ - -109.6875, - 35.15625 - ], - [ - -109.6875, - 36.5625 - ], - [ - -111.09375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 8, - 'geohash': 'drc', - 'center': [ - -76.640625, - 44.296875 - ], - 'rectangle': [ - [ - -77.34375, - 43.59375 - ], - [ - -75.9375, - 43.59375 - ], - [ - -75.9375, - 45 - ], - [ - -77.34375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 8, - 'geohash': 'cbx', - 'center': [ - -90.703125, - 48.515625 - ], - 'rectangle': [ - [ - -91.40625, - 47.8125 - ], - [ - -90, - 47.8125 - ], - [ - -90, - 49.21875 - ], - [ - -91.40625, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -134.296875, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 9, - 'geohash': 'c1b', - 'center': [ - -134.296875, - 55.546875 - ], - 'rectangle': [ - [ - -135, - 54.84375 - ], - [ - -133.59375, - 54.84375 - ], - [ - -133.59375, - 56.25 - ], - [ - -135, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': 'bkh', - 'center': [ - -162.421875, - 68.203125 - ], - 'rectangle': [ - [ - -163.125, - 67.5 - ], - [ - -161.71875, - 67.5 - ], - [ - -161.71875, - 68.90625 - ], - [ - -163.125, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 6, - 'geohash': 'b7c', - 'center': [ - -166.640625, - 66.796875 - ], - 'rectangle': [ - [ - -167.34375, - 66.09375 - ], - [ - -165.9375, - 66.09375 - ], - [ - -165.9375, - 67.5 - ], - [ - -167.34375, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 7, - 'geohash': '9v8', - 'center': [ - -100.546875, - 31.640625 - ], - 'rectangle': [ - [ - -101.25, - 30.9375 - ], - [ - -99.84375, - 30.9375 - ], - [ - -99.84375, - 32.34375 - ], - [ - -101.25, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': 'beh', - 'center': [ - -151.171875, - 62.578125 - ], - 'rectangle': [ - [ - -151.875, - 61.875 - ], - [ - -150.46875, - 61.875 - ], - [ - -150.46875, - 63.28125 - ], - [ - -151.875, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 10, - 'geohash': 'b6t', - 'center': [ - -161.015625, - 59.765625 - ], - 'rectangle': [ - [ - -161.71875, - 59.0625 - ], - [ - -160.3125, - 59.0625 - ], - [ - -160.3125, - 60.46875 - ], - [ - -161.71875, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 8, - 'geohash': '9rg', - 'center': [ - -118.828125, - 44.296875 - ], - 'rectangle': [ - [ - -119.53125, - 43.59375 - ], - [ - -118.125, - 43.59375 - ], - [ - -118.125, - 45 - ], - [ - -119.53125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 8, - 'geohash': '9rf', - 'center': [ - -120.234375, - 44.296875 - ], - 'rectangle': [ - [ - -120.9375, - 43.59375 - ], - [ - -119.53125, - 43.59375 - ], - [ - -119.53125, - 45 - ], - [ - -120.9375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': 'bsh', - 'center': [ - -151.171875, - 68.203125 - ], - 'rectangle': [ - [ - -151.875, - 67.5 - ], - [ - -150.46875, - 67.5 - ], - [ - -150.46875, - 68.90625 - ], - [ - -151.875, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 10, - 'geohash': 'bes', - 'center': [ - -151.171875, - 65.390625 - ], - 'rectangle': [ - [ - -151.875, - 64.6875 - ], - [ - -150.46875, - 64.6875 - ], - [ - -150.46875, - 66.09375 - ], - [ - -151.875, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 9, - 'geohash': 'b7r', - 'center': [ - -158.203125, - 63.984375 - ], - 'rectangle': [ - [ - -158.90625, - 63.28125 - ], - [ - -157.5, - 63.28125 - ], - [ - -157.5, - 64.6875 - ], - [ - -158.90625, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -146.953125, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 6, - 'geohash': 'bdz', - 'center': [ - -146.953125, - 61.171875 - ], - 'rectangle': [ - [ - -147.65625, - 60.46875 - ], - [ - -146.25, - 60.46875 - ], - [ - -146.25, - 61.875 - ], - [ - -147.65625, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': 'b7z', - 'center': [ - -158.203125, - 66.796875 - ], - 'rectangle': [ - [ - -158.90625, - 66.09375 - ], - [ - -157.5, - 66.09375 - ], - [ - -157.5, - 67.5 - ], - [ - -158.90625, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -153.984375, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 9, - 'geohash': 'bed', - 'center': [ - -153.984375, - 65.390625 - ], - 'rectangle': [ - [ - -154.6875, - 64.6875 - ], - [ - -153.28125, - 64.6875 - ], - [ - -153.28125, - 66.09375 - ], - [ - -154.6875, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -173.671875, - 52.734375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 5, - 'geohash': 'b1k', - 'center': [ - -173.671875, - 52.734375 - ], - 'rectangle': [ - [ - -174.375, - 52.03125 - ], - [ - -172.96875, - 52.03125 - ], - [ - -172.96875, - 53.4375 - ], - [ - -174.375, - 53.4375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 24.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 4, - 'geohash': 'dhm', - 'center': [ - -82.265625, - 24.609375 - ], - 'rectangle': [ - [ - -82.96875, - 23.90625 - ], - [ - -81.5625, - 23.90625 - ], - [ - -81.5625, - 25.3125 - ], - [ - -82.96875, - 25.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 6, - 'geohash': 'bew', - 'center': [ - -148.359375, - 65.390625 - ], - 'rectangle': [ - [ - -149.0625, - 64.6875 - ], - [ - -147.65625, - 64.6875 - ], - [ - -147.65625, - 66.09375 - ], - [ - -149.0625, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': '9nz', - 'center': [ - -124.453125, - 38.671875 - ], - 'rectangle': [ - [ - -125.15625, - 37.96875 - ], - [ - -123.75, - 37.96875 - ], - [ - -123.75, - 39.375 - ], - [ - -125.15625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -141.328125, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 4, - 'geohash': 'bge', - 'center': [ - -141.328125, - 65.390625 - ], - 'rectangle': [ - [ - -142.03125, - 64.6875 - ], - [ - -140.625, - 64.6875 - ], - [ - -140.625, - 66.09375 - ], - [ - -142.03125, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 7, - 'geohash': 'beg', - 'center': [ - -152.578125, - 66.796875 - ], - 'rectangle': [ - [ - -153.28125, - 66.09375 - ], - [ - -151.875, - 66.09375 - ], - [ - -151.875, - 67.5 - ], - [ - -153.28125, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -155.390625, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 4, - 'geohash': 'be9', - 'center': [ - -155.390625, - 65.390625 - ], - 'rectangle': [ - [ - -156.09375, - 64.6875 - ], - [ - -154.6875, - 64.6875 - ], - [ - -154.6875, - 66.09375 - ], - [ - -156.09375, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 7, - 'geohash': 'b7h', - 'center': [ - -162.421875, - 62.578125 - ], - 'rectangle': [ - [ - -163.125, - 61.875 - ], - [ - -161.71875, - 61.875 - ], - [ - -161.71875, - 63.28125 - ], - [ - -163.125, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 24.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 7, - 'geohash': 'dhq', - 'center': [ - -80.859375, - 24.609375 - ], - 'rectangle': [ - [ - -81.5625, - 23.90625 - ], - [ - -80.15625, - 23.90625 - ], - [ - -80.15625, - 25.3125 - ], - [ - -81.5625, - 25.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -130.078125, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 6, - 'geohash': 'c1g', - 'center': [ - -130.078125, - 55.546875 - ], - 'rectangle': [ - [ - -130.78125, - 54.84375 - ], - [ - -129.375, - 54.84375 - ], - [ - -129.375, - 56.25 - ], - [ - -130.78125, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 5, - 'geohash': '9tc', - 'center': [ - -110.390625, - 33.046875 - ], - 'rectangle': [ - [ - -111.09375, - 32.34375 - ], - [ - -109.6875, - 32.34375 - ], - [ - -109.6875, - 33.75 - ], - [ - -111.09375, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 5, - 'geohash': 'dqd', - 'center': [ - -75.234375, - 37.265625 - ], - 'rectangle': [ - [ - -75.9375, - 36.5625 - ], - [ - -74.53125, - 36.5625 - ], - [ - -74.53125, - 37.96875 - ], - [ - -75.9375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -163.828125, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 5, - 'geohash': 'b3g', - 'center': [ - -163.828125, - 55.546875 - ], - 'rectangle': [ - [ - -164.53125, - 54.84375 - ], - [ - -163.125, - 54.84375 - ], - [ - -163.125, - 56.25 - ], - [ - -164.53125, - 56.25 - ] - ] - } + "columns": [ + { + "geoJson": { + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 22.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 42, + "geohash": "s", + "center": [ + 22.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "s", + "value": "s", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 42, + "value": 42, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 0, + 0 + ], + [ + 45, + 0 + ], + [ + 45, + 45 + ], + [ + 0, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -67.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 31, + "geohash": "d", + "center": [ + -67.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "d", + "value": "d", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 31, + "value": 31, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -90, + 0 + ], + [ + -45, + 0 + ], + [ + -45, + 45 + ], + [ + -90, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 112.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 30, + "geohash": "w", + "center": [ + 112.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "w", + "value": "w", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 30, + "value": 30, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 90, + 0 + ], + [ + 135, + 0 + ], + [ + 135, + 45 + ], + [ + 90, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -112.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 25, + "geohash": "9", + "center": [ + -112.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "9", + "value": "9", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 25, + "value": 25, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -135, + 0 + ], + [ + -90, + 0 + ], + [ + -90, + 45 + ], + [ + -135, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 67.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 22, + "geohash": "t", + "center": [ + 67.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "t", + "value": "t", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 22, + "value": 22, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 45, + 0 + ], + [ + 90, + 0 + ], + [ + 90, + 45 + ], + [ + 45, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 22.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 22, + "geohash": "k", + "center": [ + 22.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "k", + "value": "k", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 22, + "value": 22, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 0, + -45 + ], + [ + 45, + -45 + ], + [ + 45, + 0 + ], + [ + 0, + 0 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -67.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 21, + "geohash": "6", + "center": [ + -67.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "6", + "value": "6", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 21, + "value": 21, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -90, + -45 + ], + [ + -45, + -45 + ], + [ + -45, + 0 + ], + [ + -90, + 0 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 22.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 19, + "geohash": "u", + "center": [ + 22.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "u", + "value": "u", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 19, + "value": 19, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 0, + 45 + ], + [ + 45, + 45 + ], + [ + 45, + 90 + ], + [ + 0, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 67.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 18, + "geohash": "v", + "center": [ + 67.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "v", + "value": "v", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 18, + "value": 18, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 45, + 45 + ], + [ + 90, + 45 + ], + [ + 90, + 90 + ], + [ + 45, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -112.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 11, + "geohash": "c", + "center": [ + -112.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "c", + "value": "c", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 11, + "value": 11, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -135, + 45 + ], + [ + -90, + 45 + ], + [ + -90, + 90 + ], + [ + -135, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 157.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 10, + "geohash": "r", + "center": [ + 157.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "r", + "value": "r", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 10, + "value": 10, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 135, + -45 + ], + [ + 180, + -45 + ], + [ + 180, + 0 + ], + [ + 135, + 0 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 112.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 9, + "geohash": "y", + "center": [ + 112.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "y", + "value": "y", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 9, + "value": 9, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 90, + 45 + ], + [ + 135, + 45 + ], + [ + 135, + 90 + ], + [ + 90, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -22.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 9, + "geohash": "e", + "center": [ + -22.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "e", + "value": "e", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 9, + "value": 9, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -45, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 45 + ], + [ + -45, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -67.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 8, + "geohash": "f", + "center": [ + -67.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "f", + "value": "f", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 8, + "value": 8, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -90, + 45 + ], + [ + -45, + 45 + ], + [ + -45, + 90 + ], + [ + -90, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -22.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 8, + "geohash": "7", + "center": [ + -22.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "7", + "value": "7", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 8, + "value": 8, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -45, + -45 + ], + [ + 0, + -45 + ], + [ + 0, + 0 + ], + [ + -45, + 0 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 112.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 6, + "geohash": "q", + "center": [ + 112.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "q", + "value": "q", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 6, + "value": 6, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 90, + -45 + ], + [ + 135, + -45 + ], + [ + 135, + 0 + ], + [ + 90, + 0 + ] + ] } - ] + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -22.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 6, + "geohash": "g", + "center": [ + -22.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "g", + "value": "g", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 6, + "value": 6, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -45, + 45 + ], + [ + 0, + 45 + ], + [ + 0, + 90 + ], + [ + -45, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 157.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 4, + "geohash": "x", + "center": [ + 157.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "x", + "value": "x", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 4, + "value": 4, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 135, + 0 + ], + [ + 180, + 0 + ], + [ + 180, + 45 + ], + [ + 135, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -157.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 3, + "geohash": "b", + "center": [ + -157.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "b", + "value": "b", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 3, + "value": 3, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -180, + 45 + ], + [ + -135, + 45 + ], + [ + -135, + 90 + ], + [ + -180, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 157.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 2, + "geohash": "z", + "center": [ + 157.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "z", + "value": "z", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 2, + "value": 2, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 135, + 45 + ], + [ + 180, + 45 + ], + [ + 180, + 90 + ], + [ + 135, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 67.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 1, + "geohash": "m", + "center": [ + 67.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "m", + "value": "m", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 1, + "value": 1, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 45, + -45 + ], + [ + 90, + -45 + ], + [ + 90, + 0 + ], + [ + 45, + 0 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -22.5, + -67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 1, + "geohash": "5", + "center": [ + -22.5, + -67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "5", + "value": "5", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 1, + "value": 1, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -45, + -90 + ], + [ + 0, + -90 + ], + [ + 0, + -45 + ], + [ + -45, + -45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -67.5, + -67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 1, + "geohash": "4", + "center": [ + -67.5, + -67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "4", + "value": "4", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 1, + "value": 1, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -90, + -90 + ], + [ + -45, + -90 + ], + [ + -45, + -45 + ], + [ + -90, + -45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -112.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 1, + "geohash": "3", + "center": [ + -112.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "3", + "value": "3", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 1, + "value": 1, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -135, + -45 + ], + [ + -90, + -45 + ], + [ + -90, + 0 + ], + [ + -135, + 0 + ] + ] + } + } + ], + "properties": { + "label": "Top 2 geo.dest: CN", + "length": 24, + "min": 1, + "max": 42, + "precision": 1 + } + }, + "label": "Top 2 geo.dest: CN" + }, + { + "geoJson": { + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 22.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 32, + "geohash": "s", + "center": [ + 22.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "s", + "value": "s", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 32, + "value": 32, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 0, + 0 + ], + [ + 45, + 0 + ], + [ + 45, + 45 + ], + [ + 0, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -67.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 31, + "geohash": "6", + "center": [ + -67.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "6", + "value": "6", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 31, + "value": 31, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -90, + -45 + ], + [ + -45, + -45 + ], + [ + -45, + 0 + ], + [ + -90, + 0 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -67.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 28, + "geohash": "d", + "center": [ + -67.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "d", + "value": "d", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 28, + "value": 28, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -90, + 0 + ], + [ + -45, + 0 + ], + [ + -45, + 45 + ], + [ + -90, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 112.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 27, + "geohash": "w", + "center": [ + 112.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "w", + "value": "w", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 27, + "value": 27, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 90, + 0 + ], + [ + 135, + 0 + ], + [ + 135, + 45 + ], + [ + 90, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 67.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 24, + "geohash": "t", + "center": [ + 67.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "t", + "value": "t", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 24, + "value": 24, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 45, + 0 + ], + [ + 90, + 0 + ], + [ + 90, + 45 + ], + [ + 45, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 22.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 23, + "geohash": "k", + "center": [ + 22.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "k", + "value": "k", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 23, + "value": 23, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 0, + -45 + ], + [ + 45, + -45 + ], + [ + 45, + 0 + ], + [ + 0, + 0 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 22.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 17, + "geohash": "u", + "center": [ + 22.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "u", + "value": "u", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 17, + "value": 17, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 0, + 45 + ], + [ + 45, + 45 + ], + [ + 45, + 90 + ], + [ + 0, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -112.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 16, + "geohash": "9", + "center": [ + -112.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "9", + "value": "9", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 16, + "value": 16, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -135, + 0 + ], + [ + -90, + 0 + ], + [ + -90, + 45 + ], + [ + -135, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 67.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 14, + "geohash": "v", + "center": [ + 67.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "v", + "value": "v", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 14, + "value": 14, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 45, + 45 + ], + [ + 90, + 45 + ], + [ + 90, + 90 + ], + [ + 45, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -22.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 13, + "geohash": "e", + "center": [ + -22.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "e", + "value": "e", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 13, + "value": 13, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -45, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 45 + ], + [ + -45, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 157.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 9, + "geohash": "r", + "center": [ + 157.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "r", + "value": "r", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 9, + "value": 9, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 135, + -45 + ], + [ + 180, + -45 + ], + [ + 180, + 0 + ], + [ + 135, + 0 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 112.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 6, + "geohash": "y", + "center": [ + 112.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "y", + "value": "y", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 6, + "value": 6, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 90, + 45 + ], + [ + 135, + 45 + ], + [ + 135, + 90 + ], + [ + 90, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -22.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 6, + "geohash": "g", + "center": [ + -22.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "g", + "value": "g", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 6, + "value": 6, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -45, + 45 + ], + [ + 0, + 45 + ], + [ + 0, + 90 + ], + [ + -45, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -67.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 6, + "geohash": "f", + "center": [ + -67.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "f", + "value": "f", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 6, + "value": 6, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -90, + 45 + ], + [ + -45, + 45 + ], + [ + -45, + 90 + ], + [ + -90, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -112.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 5, + "geohash": "c", + "center": [ + -112.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "c", + "value": "c", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 5, + "value": 5, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -135, + 45 + ], + [ + -90, + 45 + ], + [ + -90, + 90 + ], + [ + -135, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -157.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 4, + "geohash": "b", + "center": [ + -157.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "b", + "value": "b", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 4, + "value": 4, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -180, + 45 + ], + [ + -135, + 45 + ], + [ + -135, + 90 + ], + [ + -180, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 112.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 3, + "geohash": "q", + "center": [ + 112.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "q", + "value": "q", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 3, + "value": 3, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 90, + -45 + ], + [ + 135, + -45 + ], + [ + 135, + 0 + ], + [ + 90, + 0 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -67.5, + -67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 2, + "geohash": "4", + "center": [ + -67.5, + -67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "4", + "value": "4", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 2, + "value": 2, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -90, + -90 + ], + [ + -45, + -90 + ], + [ + -45, + -45 + ], + [ + -90, + -45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 157.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 1, + "geohash": "z", + "center": [ + 157.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "z", + "value": "z", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 1, + "value": 1, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 135, + 45 + ], + [ + 180, + 45 + ], + [ + 180, + 90 + ], + [ + 135, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 157.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 1, + "geohash": "x", + "center": [ + 157.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "x", + "value": "x", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 1, + "value": 1, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 135, + 0 + ], + [ + 180, + 0 + ], + [ + 180, + 45 + ], + [ + 135, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 157.5, + -67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 1, + "geohash": "p", + "center": [ + 157.5, + -67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "p", + "value": "p", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 1, + "value": 1, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 135, + -90 + ], + [ + 180, + -90 + ], + [ + 180, + -45 + ], + [ + 135, + -45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 67.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 1, + "geohash": "m", + "center": [ + 67.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "m", + "value": "m", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 1, + "value": 1, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 45, + -45 + ], + [ + 90, + -45 + ], + [ + 90, + 0 + ], + [ + 45, + 0 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -22.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 1, + "geohash": "7", + "center": [ + -22.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "7", + "value": "7", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 1, + "value": 1, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -45, + -45 + ], + [ + 0, + -45 + ], + [ + 0, + 0 + ], + [ + -45, + 0 + ] + ] + } + } + ], + "properties": { + "label": "Top 2 geo.dest: IN", + "length": 23, + "min": 1, + "max": 32, + "precision": 1 } - } - ], - 'hits': 171449 - }; + }, + "label": "Top 2 geo.dest: IN" + } + ], + "hits": 1638 +}; }); diff --git a/test/unit/specs/vislib/fixture/mock_data/geohash/_geo_json.js b/test/unit/specs/vislib/fixture/mock_data/geohash/_geo_json.js index 0bbcff66aceb14..9b3f03e0cd536b 100644 --- a/test/unit/specs/vislib/fixture/mock_data/geohash/_geo_json.js +++ b/test/unit/specs/vislib/fixture/mock_data/geohash/_geo_json.js @@ -1,22107 +1,1879 @@ define(function () { return { - 'label': '', - 'geoJSON': { - 'properties': { - 'label': '', - 'length': 597, - 'min': 35, - 'max': 1583, - 'precision': 3 - }, - 'type': 'FeatureCollection', - 'features': [ - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 1583, - 'geohash': 'dr4', - 'center': [ - -75.234375, - 40.078125 - ], - 'rectangle': [ - [ - -75.9375, - 39.375 - ], - [ - -74.53125, - 39.375 - ], - [ - -74.53125, - 40.78125 - ], - [ - -75.9375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -73.828125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 1138, - 'geohash': 'dr7', - 'center': [ - -73.828125, - 41.484375 - ], - 'rectangle': [ - [ - -74.53125, - 40.78125 - ], - [ - -73.125, - 40.78125 - ], - [ - -73.125, - 42.1875 - ], - [ - -74.53125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 1081, - 'geohash': 'dph', - 'center': [ - -83.671875, - 40.078125 - ], - 'rectangle': [ - [ - -84.375, - 39.375 - ], - [ - -82.96875, - 39.375 - ], - [ - -82.96875, - 40.78125 - ], - [ - -84.375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -72.421875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 1077, - 'geohash': 'drk', - 'center': [ - -72.421875, - 41.484375 - ], - 'rectangle': [ - [ - -73.125, - 40.78125 - ], - [ - -71.71875, - 40.78125 - ], - [ - -71.71875, - 42.1875 - ], - [ - -73.125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 1056, - 'geohash': '9qh', - 'center': [ - -117.421875, - 34.453125 - ], - 'rectangle': [ - [ - -118.125, - 33.75 - ], - [ - -116.71875, - 33.75 - ], - [ - -116.71875, - 35.15625 - ], - [ - -118.125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 1032, - 'geohash': '9qc', - 'center': [ - -121.640625, - 38.671875 - ], - 'rectangle': [ - [ - -122.34375, - 37.96875 - ], - [ - -120.9375, - 37.96875 - ], - [ - -120.9375, - 39.375 - ], - [ - -122.34375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 954, - 'geohash': 'dp3', - 'center': [ - -87.890625, - 41.484375 - ], - 'rectangle': [ - [ - -88.59375, - 40.78125 - ], - [ - -87.1875, - 40.78125 - ], - [ - -87.1875, - 42.1875 - ], - [ - -88.59375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 914, - 'geohash': 'dp4', - 'center': [ - -86.484375, - 40.078125 - ], - 'rectangle': [ - [ - -87.1875, - 39.375 - ], - [ - -85.78125, - 39.375 - ], - [ - -85.78125, - 40.78125 - ], - [ - -87.1875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 903, - 'geohash': 'dpk', - 'center': [ - -83.671875, - 41.484375 - ], - 'rectangle': [ - [ - -84.375, - 40.78125 - ], - [ - -82.96875, - 40.78125 - ], - [ - -82.96875, - 42.1875 - ], - [ - -84.375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 892, - 'geohash': 'dps', - 'center': [ - -83.671875, - 42.890625 - ], - 'rectangle': [ - [ - -84.375, - 42.1875 - ], - [ - -82.96875, - 42.1875 - ], - [ - -82.96875, - 43.59375 - ], - [ - -84.375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 891, - 'geohash': '9q9', - 'center': [ - -121.640625, - 37.265625 - ], - 'rectangle': [ - [ - -122.34375, - 36.5625 - ], - [ - -120.9375, - 36.5625 - ], - [ - -120.9375, - 37.96875 - ], - [ - -122.34375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 888, - 'geohash': 'dpq', - 'center': [ - -80.859375, - 41.484375 - ], - 'rectangle': [ - [ - -81.5625, - 40.78125 - ], - [ - -80.15625, - 40.78125 - ], - [ - -80.15625, - 42.1875 - ], - [ - -81.5625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 864, - 'geohash': '9q5', - 'center': [ - -118.828125, - 34.453125 - ], - 'rectangle': [ - [ - -119.53125, - 33.75 - ], - [ - -118.125, - 33.75 - ], - [ - -118.125, - 35.15625 - ], - [ - -119.53125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 856, - 'geohash': 'dp8', - 'center': [ - -89.296875, - 42.890625 - ], - 'rectangle': [ - [ - -90, - 42.1875 - ], - [ - -88.59375, - 42.1875 - ], - [ - -88.59375, - 43.59375 - ], - [ - -90, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 854, - 'geohash': 'dn6', - 'center': [ - -86.484375, - 35.859375 - ], - 'rectangle': [ - [ - -87.1875, - 35.15625 - ], - [ - -85.78125, - 35.15625 - ], - [ - -85.78125, - 36.5625 - ], - [ - -87.1875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 824, - 'geohash': '9y7', - 'center': [ - -96.328125, - 35.859375 - ], - 'rectangle': [ - [ - -97.03125, - 35.15625 - ], - [ - -95.625, - 35.15625 - ], - [ - -95.625, - 36.5625 - ], - [ - -97.03125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 816, - 'geohash': 'dpp', - 'center': [ - -79.453125, - 40.078125 - ], - 'rectangle': [ - [ - -80.15625, - 39.375 - ], - [ - -78.75, - 39.375 - ], - [ - -78.75, - 40.78125 - ], - [ - -80.15625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 812, - 'geohash': 'dn0', - 'center': [ - -89.296875, - 34.453125 - ], - 'rectangle': [ - [ - -90, - 33.75 - ], - [ - -88.59375, - 33.75 - ], - [ - -88.59375, - 35.15625 - ], - [ - -90, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 811, - 'geohash': 'dpe', - 'center': [ - -85.078125, - 42.890625 - ], - 'rectangle': [ - [ - -85.78125, - 42.1875 - ], - [ - -84.375, - 42.1875 - ], - [ - -84.375, - 43.59375 - ], - [ - -85.78125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 809, - 'geohash': '9vf', - 'center': [ - -97.734375, - 33.046875 - ], - 'rectangle': [ - [ - -98.4375, - 32.34375 - ], - [ - -97.03125, - 32.34375 - ], - [ - -97.03125, - 33.75 - ], - [ - -98.4375, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -73.828125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 802, - 'geohash': 'dre', - 'center': [ - -73.828125, - 42.890625 - ], - 'rectangle': [ - [ - -74.53125, - 42.1875 - ], - [ - -73.125, - 42.1875 - ], - [ - -73.125, - 43.59375 - ], - [ - -74.53125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 798, - 'geohash': 'dp6', - 'center': [ - -86.484375, - 41.484375 - ], - 'rectangle': [ - [ - -87.1875, - 40.78125 - ], - [ - -85.78125, - 40.78125 - ], - [ - -85.78125, - 42.1875 - ], - [ - -87.1875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 796, - 'geohash': '9vg', - 'center': [ - -96.328125, - 33.046875 - ], - 'rectangle': [ - [ - -97.03125, - 32.34375 - ], - [ - -95.625, - 32.34375 - ], - [ - -95.625, - 33.75 - ], - [ - -97.03125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 786, - 'geohash': '9zv', - 'center': [ - -93.515625, - 44.296875 - ], - 'rectangle': [ - [ - -94.21875, - 43.59375 - ], - [ - -92.8125, - 43.59375 - ], - [ - -92.8125, - 45 - ], - [ - -94.21875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 785, - 'geohash': 'dn5', - 'center': [ - -85.078125, - 34.453125 - ], - 'rectangle': [ - [ - -85.78125, - 33.75 - ], - [ - -84.375, - 33.75 - ], - [ - -84.375, - 35.15625 - ], - [ - -85.78125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 27.421875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 783, - 'geohash': 'dhv', - 'center': [ - -82.265625, - 27.421875 - ], - 'rectangle': [ - [ - -82.96875, - 26.71875 - ], - [ - -81.5625, - 26.71875 - ], - [ - -81.5625, - 28.125 - ], - [ - -82.96875, - 28.125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 780, - 'geohash': '9ys', - 'center': [ - -94.921875, - 37.265625 - ], - 'rectangle': [ - [ - -95.625, - 36.5625 - ], - [ - -94.21875, - 36.5625 - ], - [ - -94.21875, - 37.96875 - ], - [ - -95.625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 775, - 'geohash': 'dng', - 'center': [ - -85.078125, - 38.671875 - ], - 'rectangle': [ - [ - -85.78125, - 37.96875 - ], - [ - -84.375, - 37.96875 - ], - [ - -84.375, - 39.375 - ], - [ - -85.78125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -72.421875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 743, - 'geohash': 'drs', - 'center': [ - -72.421875, - 42.890625 - ], - 'rectangle': [ - [ - -73.125, - 42.1875 - ], - [ - -71.71875, - 42.1875 - ], - [ - -71.71875, - 43.59375 - ], - [ - -73.125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 735, - 'geohash': 'dr8', - 'center': [ - -78.046875, - 42.890625 - ], - 'rectangle': [ - [ - -78.75, - 42.1875 - ], - [ - -77.34375, - 42.1875 - ], - [ - -77.34375, - 43.59375 - ], - [ - -78.75, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 727, - 'geohash': 'djf', - 'center': [ - -86.484375, - 33.046875 - ], - 'rectangle': [ - [ - -87.1875, - 32.34375 - ], - [ - -85.78125, - 32.34375 - ], - [ - -85.78125, - 33.75 - ], - [ - -87.1875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 718, - 'geohash': 'dp9', - 'center': [ - -87.890625, - 42.890625 - ], - 'rectangle': [ - [ - -88.59375, - 42.1875 - ], - [ - -87.1875, - 42.1875 - ], - [ - -87.1875, - 43.59375 - ], - [ - -88.59375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 718, - 'geohash': '9yu', - 'center': [ - -94.921875, - 38.671875 - ], - 'rectangle': [ - [ - -95.625, - 37.96875 - ], - [ - -94.21875, - 37.96875 - ], - [ - -94.21875, - 39.375 - ], - [ - -95.625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 716, - 'geohash': '9yr', - 'center': [ - -90.703125, - 35.859375 - ], - 'rectangle': [ - [ - -91.40625, - 35.15625 - ], - [ - -90, - 35.15625 - ], - [ - -90, - 36.5625 - ], - [ - -91.40625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 705, - 'geohash': '9yn', - 'center': [ - -92.109375, - 34.453125 - ], - 'rectangle': [ - [ - -92.8125, - 33.75 - ], - [ - -91.40625, - 33.75 - ], - [ - -91.40625, - 35.15625 - ], - [ - -92.8125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 694, - 'geohash': '9qd', - 'center': [ - -120.234375, - 37.265625 - ], - 'rectangle': [ - [ - -120.9375, - 36.5625 - ], - [ - -119.53125, - 36.5625 - ], - [ - -119.53125, - 37.96875 - ], - [ - -120.9375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 688, - 'geohash': 'dp7', - 'center': [ - -85.078125, - 41.484375 - ], - 'rectangle': [ - [ - -85.78125, - 40.78125 - ], - [ - -84.375, - 40.78125 - ], - [ - -84.375, - 42.1875 - ], - [ - -85.78125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -71.015625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 682, - 'geohash': 'drt', - 'center': [ - -71.015625, - 42.890625 - ], - 'rectangle': [ - [ - -71.71875, - 42.1875 - ], - [ - -70.3125, - 42.1875 - ], - [ - -70.3125, - 43.59375 - ], - [ - -71.71875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 680, - 'geohash': 'dn2', - 'center': [ - -89.296875, - 35.859375 - ], - 'rectangle': [ - [ - -90, - 35.15625 - ], - [ - -88.59375, - 35.15625 - ], - [ - -88.59375, - 36.5625 - ], - [ - -90, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 678, - 'geohash': '9vk', - 'center': [ - -94.921875, - 30.234375 - ], - 'rectangle': [ - [ - -95.625, - 29.53125 - ], - [ - -94.21875, - 29.53125 - ], - [ - -94.21875, - 30.9375 - ], - [ - -95.625, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 27.421875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 675, - 'geohash': 'dhy', - 'center': [ - -80.859375, - 27.421875 - ], - 'rectangle': [ - [ - -81.5625, - 26.71875 - ], - [ - -80.15625, - 26.71875 - ], - [ - -80.15625, - 28.125 - ], - [ - -81.5625, - 28.125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 670, - 'geohash': 'dn3', - 'center': [ - -87.890625, - 35.859375 - ], - 'rectangle': [ - [ - -88.59375, - 35.15625 - ], - [ - -87.1875, - 35.15625 - ], - [ - -87.1875, - 36.5625 - ], - [ - -88.59375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 670, - 'geohash': 'dj8', - 'center': [ - -89.296875, - 31.640625 - ], - 'rectangle': [ - [ - -90, - 30.9375 - ], - [ - -88.59375, - 30.9375 - ], - [ - -88.59375, - 32.34375 - ], - [ - -90, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 662, - 'geohash': 'dpn', - 'center': [ - -80.859375, - 40.078125 - ], - 'rectangle': [ - [ - -81.5625, - 39.375 - ], - [ - -80.15625, - 39.375 - ], - [ - -80.15625, - 40.78125 - ], - [ - -81.5625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 658, - 'geohash': 'dju', - 'center': [ - -83.671875, - 33.046875 - ], - 'rectangle': [ - [ - -84.375, - 32.34375 - ], - [ - -82.96875, - 32.34375 - ], - [ - -82.96875, - 33.75 - ], - [ - -84.375, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 658, - 'geohash': '9vz', - 'center': [ - -90.703125, - 33.046875 - ], - 'rectangle': [ - [ - -91.40625, - 32.34375 - ], - [ - -90, - 32.34375 - ], - [ - -90, - 33.75 - ], - [ - -91.40625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 657, - 'geohash': 'dnp', - 'center': [ - -79.453125, - 34.453125 - ], - 'rectangle': [ - [ - -80.15625, - 33.75 - ], - [ - -78.75, - 33.75 - ], - [ - -78.75, - 35.15625 - ], - [ - -80.15625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -73.828125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 655, - 'geohash': 'dr5', - 'center': [ - -73.828125, - 40.078125 - ], - 'rectangle': [ - [ - -74.53125, - 39.375 - ], - [ - -73.125, - 39.375 - ], - [ - -73.125, - 40.78125 - ], - [ - -74.53125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 652, - 'geohash': 'dp5', - 'center': [ - -85.078125, - 40.078125 - ], - 'rectangle': [ - [ - -85.78125, - 39.375 - ], - [ - -84.375, - 39.375 - ], - [ - -84.375, - 40.78125 - ], - [ - -85.78125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 651, - 'geohash': '9r1', - 'center': [ - -121.640625, - 40.078125 - ], - 'rectangle': [ - [ - -122.34375, - 39.375 - ], - [ - -120.9375, - 39.375 - ], - [ - -120.9375, - 40.78125 - ], - [ - -122.34375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 650, - 'geohash': 'djv', - 'center': [ - -82.265625, - 33.046875 - ], - 'rectangle': [ - [ - -82.96875, - 32.34375 - ], - [ - -81.5625, - 32.34375 - ], - [ - -81.5625, - 33.75 - ], - [ - -82.96875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 650, - 'geohash': 'djt', - 'center': [ - -82.265625, - 31.640625 - ], - 'rectangle': [ - [ - -82.96875, - 30.9375 - ], - [ - -81.5625, - 30.9375 - ], - [ - -81.5625, - 32.34375 - ], - [ - -82.96875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 647, - 'geohash': 'dpm', - 'center': [ - -82.265625, - 41.484375 - ], - 'rectangle': [ - [ - -82.96875, - 40.78125 - ], - [ - -81.5625, - 40.78125 - ], - [ - -81.5625, - 42.1875 - ], - [ - -82.96875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 647, - 'geohash': '9zm', - 'center': [ - -93.515625, - 41.484375 - ], - 'rectangle': [ - [ - -94.21875, - 40.78125 - ], - [ - -92.8125, - 40.78125 - ], - [ - -92.8125, - 42.1875 - ], - [ - -94.21875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 641, - 'geohash': 'dnn', - 'center': [ - -80.859375, - 34.453125 - ], - 'rectangle': [ - [ - -81.5625, - 33.75 - ], - [ - -80.15625, - 33.75 - ], - [ - -80.15625, - 35.15625 - ], - [ - -81.5625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 634, - 'geohash': '9y3', - 'center': [ - -99.140625, - 35.859375 - ], - 'rectangle': [ - [ - -99.84375, - 35.15625 - ], - [ - -98.4375, - 35.15625 - ], - [ - -98.4375, - 36.5625 - ], - [ - -99.84375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 632, - 'geohash': '9yy', - 'center': [ - -92.109375, - 38.671875 - ], - 'rectangle': [ - [ - -92.8125, - 37.96875 - ], - [ - -91.40625, - 37.96875 - ], - [ - -91.40625, - 39.375 - ], - [ - -92.8125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 629, - 'geohash': 'dn7', - 'center': [ - -85.078125, - 35.859375 - ], - 'rectangle': [ - [ - -85.78125, - 35.15625 - ], - [ - -84.375, - 35.15625 - ], - [ - -84.375, - 36.5625 - ], - [ - -85.78125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 629, - 'geohash': '9tb', - 'center': [ - -111.796875, - 33.046875 - ], - 'rectangle': [ - [ - -112.5, - 32.34375 - ], - [ - -111.09375, - 32.34375 - ], - [ - -111.09375, - 33.75 - ], - [ - -112.5, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 625, - 'geohash': 'dnq', - 'center': [ - -80.859375, - 35.859375 - ], - 'rectangle': [ - [ - -81.5625, - 35.15625 - ], - [ - -80.15625, - 35.15625 - ], - [ - -80.15625, - 36.5625 - ], - [ - -81.5625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 624, - 'geohash': 'djn', - 'center': [ - -80.859375, - 28.828125 - ], - 'rectangle': [ - [ - -81.5625, - 28.125 - ], - [ - -80.15625, - 28.125 - ], - [ - -80.15625, - 29.53125 - ], - [ - -81.5625, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 620, - 'geohash': 'dnj', - 'center': [ - -82.265625, - 34.453125 - ], - 'rectangle': [ - [ - -82.96875, - 33.75 - ], - [ - -81.5625, - 33.75 - ], - [ - -81.5625, - 35.15625 - ], - [ - -82.96875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 619, - 'geohash': '9y6', - 'center': [ - -97.734375, - 35.859375 - ], - 'rectangle': [ - [ - -98.4375, - 35.15625 - ], - [ - -97.03125, - 35.15625 - ], - [ - -97.03125, - 36.5625 - ], - [ - -98.4375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 619, - 'geohash': '9vv', - 'center': [ - -93.515625, - 33.046875 - ], - 'rectangle': [ - [ - -94.21875, - 32.34375 - ], - [ - -92.8125, - 32.34375 - ], - [ - -92.8125, - 33.75 - ], - [ - -94.21875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 612, - 'geohash': 'dr9', - 'center': [ - -76.640625, - 42.890625 - ], - 'rectangle': [ - [ - -77.34375, - 42.1875 - ], - [ - -75.9375, - 42.1875 - ], - [ - -75.9375, - 43.59375 - ], - [ - -77.34375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 612, - 'geohash': 'djs', - 'center': [ - -83.671875, - 31.640625 - ], - 'rectangle': [ - [ - -84.375, - 30.9375 - ], - [ - -82.96875, - 30.9375 - ], - [ - -82.96875, - 32.34375 - ], - [ - -84.375, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 610, - 'geohash': '9z7', - 'center': [ - -96.328125, - 41.484375 - ], - 'rectangle': [ - [ - -97.03125, - 40.78125 - ], - [ - -95.625, - 40.78125 - ], - [ - -95.625, - 42.1875 - ], - [ - -97.03125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 607, - 'geohash': 'djg', - 'center': [ - -85.078125, - 33.046875 - ], - 'rectangle': [ - [ - -85.78125, - 32.34375 - ], - [ - -84.375, - 32.34375 - ], - [ - -84.375, - 33.75 - ], - [ - -85.78125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 605, - 'geohash': 'dpj', - 'center': [ - -82.265625, - 40.078125 - ], - 'rectangle': [ - [ - -82.96875, - 39.375 - ], - [ - -81.5625, - 39.375 - ], - [ - -81.5625, - 40.78125 - ], - [ - -82.96875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 603, - 'geohash': 'c20', - 'center': [ - -123.046875, - 45.703125 - ], - 'rectangle': [ - [ - -123.75, - 45 - ], - [ - -122.34375, - 45 - ], - [ - -122.34375, - 46.40625 - ], - [ - -123.75, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 591, - 'geohash': 'dnh', - 'center': [ - -83.671875, - 34.453125 - ], - 'rectangle': [ - [ - -84.375, - 33.75 - ], - [ - -82.96875, - 33.75 - ], - [ - -82.96875, - 35.15625 - ], - [ - -84.375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 590, - 'geohash': '9yk', - 'center': [ - -94.921875, - 35.859375 - ], - 'rectangle': [ - [ - -95.625, - 35.15625 - ], - [ - -94.21875, - 35.15625 - ], - [ - -94.21875, - 36.5625 - ], - [ - -95.625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 588, - 'geohash': 'dqc', - 'center': [ - -76.640625, - 38.671875 - ], - 'rectangle': [ - [ - -77.34375, - 37.96875 - ], - [ - -75.9375, - 37.96875 - ], - [ - -75.9375, - 39.375 - ], - [ - -77.34375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 588, - 'geohash': 'dqb', - 'center': [ - -78.046875, - 38.671875 - ], - 'rectangle': [ - [ - -78.75, - 37.96875 - ], - [ - -77.34375, - 37.96875 - ], - [ - -77.34375, - 39.375 - ], - [ - -78.75, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 588, - 'geohash': '9mu', - 'center': [ - -117.421875, - 33.046875 - ], - 'rectangle': [ - [ - -118.125, - 32.34375 - ], - [ - -116.71875, - 32.34375 - ], - [ - -116.71875, - 33.75 - ], - [ - -118.125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -71.015625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 587, - 'geohash': 'drm', - 'center': [ - -71.015625, - 41.484375 - ], - 'rectangle': [ - [ - -71.71875, - 40.78125 - ], - [ - -70.3125, - 40.78125 - ], - [ - -70.3125, - 42.1875 - ], - [ - -71.71875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 586, - 'geohash': '9yq', - 'center': [ - -92.109375, - 35.859375 - ], - 'rectangle': [ - [ - -92.8125, - 35.15625 - ], - [ - -91.40625, - 35.15625 - ], - [ - -91.40625, - 36.5625 - ], - [ - -92.8125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 581, - 'geohash': 'dn4', - 'center': [ - -86.484375, - 34.453125 - ], - 'rectangle': [ - [ - -87.1875, - 33.75 - ], - [ - -85.78125, - 33.75 - ], - [ - -85.78125, - 35.15625 - ], - [ - -87.1875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 579, - 'geohash': 'bdv', - 'center': [ - -149.765625, - 61.171875 - ], - 'rectangle': [ - [ - -150.46875, - 60.46875 - ], - [ - -149.0625, - 60.46875 - ], - [ - -149.0625, - 61.875 - ], - [ - -150.46875, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 579, - 'geohash': '9yp', - 'center': [ - -90.703125, - 34.453125 - ], - 'rectangle': [ - [ - -91.40625, - 33.75 - ], - [ - -90, - 33.75 - ], - [ - -90, - 35.15625 - ], - [ - -91.40625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 579, - 'geohash': '9vd', - 'center': [ - -97.734375, - 31.640625 - ], - 'rectangle': [ - [ - -98.4375, - 30.9375 - ], - [ - -97.03125, - 30.9375 - ], - [ - -97.03125, - 32.34375 - ], - [ - -98.4375, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 575, - 'geohash': '9yd', - 'center': [ - -97.734375, - 37.265625 - ], - 'rectangle': [ - [ - -98.4375, - 36.5625 - ], - [ - -97.03125, - 36.5625 - ], - [ - -97.03125, - 37.96875 - ], - [ - -98.4375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 26.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 569, - 'geohash': 'dhw', - 'center': [ - -80.859375, - 26.015625 - ], - 'rectangle': [ - [ - -81.5625, - 25.3125 - ], - [ - -80.15625, - 25.3125 - ], - [ - -80.15625, - 26.71875 - ], - [ - -81.5625, - 26.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 568, - 'geohash': 'dr6', - 'center': [ - -75.234375, - 41.484375 - ], - 'rectangle': [ - [ - -75.9375, - 40.78125 - ], - [ - -74.53125, - 40.78125 - ], - [ - -74.53125, - 42.1875 - ], - [ - -75.9375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 565, - 'geohash': 'dnv', - 'center': [ - -82.265625, - 38.671875 - ], - 'rectangle': [ - [ - -82.96875, - 37.96875 - ], - [ - -81.5625, - 37.96875 - ], - [ - -81.5625, - 39.375 - ], - [ - -82.96875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 562, - 'geohash': 'dnr', - 'center': [ - -79.453125, - 35.859375 - ], - 'rectangle': [ - [ - -80.15625, - 35.15625 - ], - [ - -78.75, - 35.15625 - ], - [ - -78.75, - 36.5625 - ], - [ - -80.15625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 560, - 'geohash': 'dje', - 'center': [ - -85.078125, - 31.640625 - ], - 'rectangle': [ - [ - -85.78125, - 30.9375 - ], - [ - -84.375, - 30.9375 - ], - [ - -84.375, - 32.34375 - ], - [ - -85.78125, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 560, - 'geohash': '9y4', - 'center': [ - -97.734375, - 34.453125 - ], - 'rectangle': [ - [ - -98.4375, - 33.75 - ], - [ - -97.03125, - 33.75 - ], - [ - -97.03125, - 35.15625 - ], - [ - -98.4375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 558, - 'geohash': '9q7', - 'center': [ - -118.828125, - 35.859375 - ], - 'rectangle': [ - [ - -119.53125, - 35.15625 - ], - [ - -118.125, - 35.15625 - ], - [ - -118.125, - 36.5625 - ], - [ - -119.53125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 555, - 'geohash': 'dn8', - 'center': [ - -89.296875, - 37.265625 - ], - 'rectangle': [ - [ - -90, - 36.5625 - ], - [ - -88.59375, - 36.5625 - ], - [ - -88.59375, - 37.96875 - ], - [ - -90, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 555, - 'geohash': '9zu', - 'center': [ - -94.921875, - 44.296875 - ], - 'rectangle': [ - [ - -95.625, - 43.59375 - ], - [ - -94.21875, - 43.59375 - ], - [ - -94.21875, - 45 - ], - [ - -95.625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 554, - 'geohash': 'dq2', - 'center': [ - -78.046875, - 35.859375 - ], - 'rectangle': [ - [ - -78.75, - 35.15625 - ], - [ - -77.34375, - 35.15625 - ], - [ - -77.34375, - 36.5625 - ], - [ - -78.75, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 551, - 'geohash': 'dnb', - 'center': [ - -89.296875, - 38.671875 - ], - 'rectangle': [ - [ - -90, - 37.96875 - ], - [ - -88.59375, - 37.96875 - ], - [ - -88.59375, - 39.375 - ], - [ - -90, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 550, - 'geohash': 'dnc', - 'center': [ - -87.890625, - 38.671875 - ], - 'rectangle': [ - [ - -88.59375, - 37.96875 - ], - [ - -87.1875, - 37.96875 - ], - [ - -87.1875, - 39.375 - ], - [ - -88.59375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 547, - 'geohash': '9zq', - 'center': [ - -92.109375, - 41.484375 - ], - 'rectangle': [ - [ - -92.8125, - 40.78125 - ], - [ - -91.40625, - 40.78125 - ], - [ - -91.40625, - 42.1875 - ], - [ - -92.8125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 547, - 'geohash': '9y5', - 'center': [ - -96.328125, - 34.453125 - ], - 'rectangle': [ - [ - -97.03125, - 33.75 - ], - [ - -95.625, - 33.75 - ], - [ - -95.625, - 35.15625 - ], - [ - -97.03125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 547, - 'geohash': '9vu', - 'center': [ - -94.921875, - 33.046875 - ], - 'rectangle': [ - [ - -95.625, - 32.34375 - ], - [ - -94.21875, - 32.34375 - ], - [ - -94.21875, - 33.75 - ], - [ - -95.625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 543, - 'geohash': 'dnm', - 'center': [ - -82.265625, - 35.859375 - ], - 'rectangle': [ - [ - -82.96875, - 35.15625 - ], - [ - -81.5625, - 35.15625 - ], - [ - -81.5625, - 36.5625 - ], - [ - -82.96875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 541, - 'geohash': '9yz', - 'center': [ - -90.703125, - 38.671875 - ], - 'rectangle': [ - [ - -91.40625, - 37.96875 - ], - [ - -90, - 37.96875 - ], - [ - -90, - 39.375 - ], - [ - -91.40625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -132.890625, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 540, - 'geohash': 'c1c', - 'center': [ - -132.890625, - 55.546875 - ], - 'rectangle': [ - [ - -133.59375, - 54.84375 - ], - [ - -132.1875, - 54.84375 - ], - [ - -132.1875, - 56.25 - ], - [ - -133.59375, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 539, - 'geohash': 'dnf', - 'center': [ - -86.484375, - 38.671875 - ], - 'rectangle': [ - [ - -87.1875, - 37.96875 - ], - [ - -85.78125, - 37.96875 - ], - [ - -85.78125, - 39.375 - ], - [ - -87.1875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 536, - 'geohash': 'dpg', - 'center': [ - -85.078125, - 44.296875 - ], - 'rectangle': [ - [ - -85.78125, - 43.59375 - ], - [ - -84.375, - 43.59375 - ], - [ - -84.375, - 45 - ], - [ - -85.78125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 533, - 'geohash': 'dn9', - 'center': [ - -87.890625, - 37.265625 - ], - 'rectangle': [ - [ - -88.59375, - 36.5625 - ], - [ - -87.1875, - 36.5625 - ], - [ - -87.1875, - 37.96875 - ], - [ - -88.59375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 527, - 'geohash': 'dq0', - 'center': [ - -78.046875, - 34.453125 - ], - 'rectangle': [ - [ - -78.75, - 33.75 - ], - [ - -77.34375, - 33.75 - ], - [ - -77.34375, - 35.15625 - ], - [ - -78.75, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 527, - 'geohash': '9v7', - 'center': [ - -96.328125, - 30.234375 - ], - 'rectangle': [ - [ - -97.03125, - 29.53125 - ], - [ - -95.625, - 29.53125 - ], - [ - -95.625, - 30.9375 - ], - [ - -97.03125, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 524, - 'geohash': '9z4', - 'center': [ - -97.734375, - 40.078125 - ], - 'rectangle': [ - [ - -98.4375, - 39.375 - ], - [ - -97.03125, - 39.375 - ], - [ - -97.03125, - 40.78125 - ], - [ - -98.4375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 523, - 'geohash': 'dq9', - 'center': [ - -76.640625, - 37.265625 - ], - 'rectangle': [ - [ - -77.34375, - 36.5625 - ], - [ - -75.9375, - 36.5625 - ], - [ - -75.9375, - 37.96875 - ], - [ - -77.34375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 520, - 'geohash': 'djb', - 'center': [ - -89.296875, - 33.046875 - ], - 'rectangle': [ - [ - -90, - 32.34375 - ], - [ - -88.59375, - 32.34375 - ], - [ - -88.59375, - 33.75 - ], - [ - -90, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 518, - 'geohash': '9zr', - 'center': [ - -90.703125, - 41.484375 - ], - 'rectangle': [ - [ - -91.40625, - 40.78125 - ], - [ - -90, - 40.78125 - ], - [ - -90, - 42.1875 - ], - [ - -91.40625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -72.421875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 517, - 'geohash': 'dru', - 'center': [ - -72.421875, - 44.296875 - ], - 'rectangle': [ - [ - -73.125, - 43.59375 - ], - [ - -71.71875, - 43.59375 - ], - [ - -71.71875, - 45 - ], - [ - -73.125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 516, - 'geohash': '9zs', - 'center': [ - -94.921875, - 42.890625 - ], - 'rectangle': [ - [ - -95.625, - 42.1875 - ], - [ - -94.21875, - 42.1875 - ], - [ - -94.21875, - 43.59375 - ], - [ - -95.625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 514, - 'geohash': '9ze', - 'center': [ - -96.328125, - 42.890625 - ], - 'rectangle': [ - [ - -97.03125, - 42.1875 - ], - [ - -95.625, - 42.1875 - ], - [ - -95.625, - 43.59375 - ], - [ - -97.03125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 509, - 'geohash': 'djc', - 'center': [ - -87.890625, - 33.046875 - ], - 'rectangle': [ - [ - -88.59375, - 32.34375 - ], - [ - -87.1875, - 32.34375 - ], - [ - -87.1875, - 33.75 - ], - [ - -88.59375, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 505, - 'geohash': '9y1', - 'center': [ - -99.140625, - 34.453125 - ], - 'rectangle': [ - [ - -99.84375, - 33.75 - ], - [ - -98.4375, - 33.75 - ], - [ - -98.4375, - 35.15625 - ], - [ - -99.84375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 504, - 'geohash': 'djy', - 'center': [ - -80.859375, - 33.046875 - ], - 'rectangle': [ - [ - -81.5625, - 32.34375 - ], - [ - -80.15625, - 32.34375 - ], - [ - -80.15625, - 33.75 - ], - [ - -81.5625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 503, - 'geohash': 'c28', - 'center': [ - -123.046875, - 48.515625 - ], - 'rectangle': [ - [ - -123.75, - 47.8125 - ], - [ - -122.34375, - 47.8125 - ], - [ - -122.34375, - 49.21875 - ], - [ - -123.75, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 501, - 'geohash': '9vx', - 'center': [ - -90.703125, - 31.640625 - ], - 'rectangle': [ - [ - -91.40625, - 30.9375 - ], - [ - -90, - 30.9375 - ], - [ - -90, - 32.34375 - ], - [ - -91.40625, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 500, - 'geohash': 'dnw', - 'center': [ - -80.859375, - 37.265625 - ], - 'rectangle': [ - [ - -81.5625, - 36.5625 - ], - [ - -80.15625, - 36.5625 - ], - [ - -80.15625, - 37.96875 - ], - [ - -81.5625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 500, - 'geohash': '9zk', - 'center': [ - -94.921875, - 41.484375 - ], - 'rectangle': [ - [ - -95.625, - 40.78125 - ], - [ - -94.21875, - 40.78125 - ], - [ - -94.21875, - 42.1875 - ], - [ - -95.625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 498, - 'geohash': 'djd', - 'center': [ - -86.484375, - 31.640625 - ], - 'rectangle': [ - [ - -87.1875, - 30.9375 - ], - [ - -85.78125, - 30.9375 - ], - [ - -85.78125, - 32.34375 - ], - [ - -87.1875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 496, - 'geohash': 'f05', - 'center': [ - -85.078125, - 45.703125 - ], - 'rectangle': [ - [ - -85.78125, - 45 - ], - [ - -84.375, - 45 - ], - [ - -84.375, - 46.40625 - ], - [ - -85.78125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -69.609375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 496, - 'geohash': 'dry', - 'center': [ - -69.609375, - 44.296875 - ], - 'rectangle': [ - [ - -70.3125, - 43.59375 - ], - [ - -68.90625, - 43.59375 - ], - [ - -68.90625, - 45 - ], - [ - -70.3125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 496, - 'geohash': 'cbd', - 'center': [ - -97.734375, - 48.515625 - ], - 'rectangle': [ - [ - -98.4375, - 47.8125 - ], - [ - -97.03125, - 47.8125 - ], - [ - -97.03125, - 49.21875 - ], - [ - -98.4375, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 492, - 'geohash': 'cbj', - 'center': [ - -93.515625, - 45.703125 - ], - 'rectangle': [ - [ - -94.21875, - 45 - ], - [ - -92.8125, - 45 - ], - [ - -92.8125, - 46.40625 - ], - [ - -94.21875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 490, - 'geohash': 'dr2', - 'center': [ - -78.046875, - 41.484375 - ], - 'rectangle': [ - [ - -78.75, - 40.78125 - ], - [ - -77.34375, - 40.78125 - ], - [ - -77.34375, - 42.1875 - ], - [ - -78.75, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 488, - 'geohash': 'djj', - 'center': [ - -82.265625, - 28.828125 - ], - 'rectangle': [ - [ - -82.96875, - 28.125 - ], - [ - -81.5625, - 28.125 - ], - [ - -81.5625, - 29.53125 - ], - [ - -82.96875, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 483, - 'geohash': '9z6', - 'center': [ - -97.734375, - 41.484375 - ], - 'rectangle': [ - [ - -98.4375, - 40.78125 - ], - [ - -97.03125, - 40.78125 - ], - [ - -97.03125, - 42.1875 - ], - [ - -98.4375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 481, - 'geohash': 'dqf', - 'center': [ - -75.234375, - 38.671875 - ], - 'rectangle': [ - [ - -75.9375, - 37.96875 - ], - [ - -74.53125, - 37.96875 - ], - [ - -74.53125, - 39.375 - ], - [ - -75.9375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 481, - 'geohash': 'dne', - 'center': [ - -85.078125, - 37.265625 - ], - 'rectangle': [ - [ - -85.78125, - 36.5625 - ], - [ - -84.375, - 36.5625 - ], - [ - -84.375, - 37.96875 - ], - [ - -85.78125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 481, - 'geohash': '9v6', - 'center': [ - -97.734375, - 30.234375 - ], - 'rectangle': [ - [ - -98.4375, - 29.53125 - ], - [ - -97.03125, - 29.53125 - ], - [ - -97.03125, - 30.9375 - ], - [ - -98.4375, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 478, - 'geohash': '9vy', - 'center': [ - -92.109375, - 33.046875 - ], - 'rectangle': [ - [ - -92.8125, - 32.34375 - ], - [ - -91.40625, - 32.34375 - ], - [ - -91.40625, - 33.75 - ], - [ - -92.8125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 477, - 'geohash': 'f00', - 'center': [ - -89.296875, - 45.703125 - ], - 'rectangle': [ - [ - -90, - 45 - ], - [ - -88.59375, - 45 - ], - [ - -88.59375, - 46.40625 - ], - [ - -90, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 474, - 'geohash': 'dr3', - 'center': [ - -76.640625, - 41.484375 - ], - 'rectangle': [ - [ - -77.34375, - 40.78125 - ], - [ - -75.9375, - 40.78125 - ], - [ - -75.9375, - 42.1875 - ], - [ - -77.34375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 474, - 'geohash': '9vm', - 'center': [ - -93.515625, - 30.234375 - ], - 'rectangle': [ - [ - -94.21875, - 29.53125 - ], - [ - -92.8125, - 29.53125 - ], - [ - -92.8125, - 30.9375 - ], - [ - -94.21875, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 471, - 'geohash': 'dnk', - 'center': [ - -83.671875, - 35.859375 - ], - 'rectangle': [ - [ - -84.375, - 35.15625 - ], - [ - -82.96875, - 35.15625 - ], - [ - -82.96875, - 36.5625 - ], - [ - -84.375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 468, - 'geohash': '9zx', - 'center': [ - -90.703125, - 42.890625 - ], - 'rectangle': [ - [ - -91.40625, - 42.1875 - ], - [ - -90, - 42.1875 - ], - [ - -90, - 43.59375 - ], - [ - -91.40625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 467, - 'geohash': '9qf', - 'center': [ - -120.234375, - 38.671875 - ], - 'rectangle': [ - [ - -120.9375, - 37.96875 - ], - [ - -119.53125, - 37.96875 - ], - [ - -119.53125, - 39.375 - ], - [ - -120.9375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 466, - 'geohash': 'dpc', - 'center': [ - -87.890625, - 44.296875 - ], - 'rectangle': [ - [ - -88.59375, - 43.59375 - ], - [ - -87.1875, - 43.59375 - ], - [ - -87.1875, - 45 - ], - [ - -88.59375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 465, - 'geohash': 'dj3', - 'center': [ - -87.890625, - 30.234375 - ], - 'rectangle': [ - [ - -88.59375, - 29.53125 - ], - [ - -87.1875, - 29.53125 - ], - [ - -87.1875, - 30.9375 - ], - [ - -88.59375, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 463, - 'geohash': '9zp', - 'center': [ - -90.703125, - 40.078125 - ], - 'rectangle': [ - [ - -91.40625, - 39.375 - ], - [ - -90, - 39.375 - ], - [ - -90, - 40.78125 - ], - [ - -91.40625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 460, - 'geohash': 'dnd', - 'center': [ - -86.484375, - 37.265625 - ], - 'rectangle': [ - [ - -87.1875, - 36.5625 - ], - [ - -85.78125, - 36.5625 - ], - [ - -85.78125, - 37.96875 - ], - [ - -87.1875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 460, - 'geohash': '9xj', - 'center': [ - -104.765625, - 40.078125 - ], - 'rectangle': [ - [ - -105.46875, - 39.375 - ], - [ - -104.0625, - 39.375 - ], - [ - -104.0625, - 40.78125 - ], - [ - -105.46875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 450, - 'geohash': 'dp1', - 'center': [ - -87.890625, - 40.078125 - ], - 'rectangle': [ - [ - -88.59375, - 39.375 - ], - [ - -87.1875, - 39.375 - ], - [ - -87.1875, - 40.78125 - ], - [ - -88.59375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 449, - 'geohash': '9qb', - 'center': [ - -123.046875, - 38.671875 - ], - 'rectangle': [ - [ - -123.75, - 37.96875 - ], - [ - -122.34375, - 37.96875 - ], - [ - -122.34375, - 39.375 - ], - [ - -123.75, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 440, - 'geohash': '9z1', - 'center': [ - -99.140625, - 40.078125 - ], - 'rectangle': [ - [ - -99.84375, - 39.375 - ], - [ - -98.4375, - 39.375 - ], - [ - -98.4375, - 40.78125 - ], - [ - -99.84375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 436, - 'geohash': 'dn1', - 'center': [ - -87.890625, - 34.453125 - ], - 'rectangle': [ - [ - -88.59375, - 33.75 - ], - [ - -87.1875, - 33.75 - ], - [ - -87.1875, - 35.15625 - ], - [ - -88.59375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 434, - 'geohash': '9vr', - 'center': [ - -90.703125, - 30.234375 - ], - 'rectangle': [ - [ - -91.40625, - 29.53125 - ], - [ - -90, - 29.53125 - ], - [ - -90, - 30.9375 - ], - [ - -91.40625, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 433, - 'geohash': '9vq', - 'center': [ - -92.109375, - 30.234375 - ], - 'rectangle': [ - [ - -92.8125, - 29.53125 - ], - [ - -91.40625, - 29.53125 - ], - [ - -91.40625, - 30.9375 - ], - [ - -92.8125, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 430, - 'geohash': 'cbn', - 'center': [ - -92.109375, - 45.703125 - ], - 'rectangle': [ - [ - -92.8125, - 45 - ], - [ - -91.40625, - 45 - ], - [ - -91.40625, - 46.40625 - ], - [ - -92.8125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 429, - 'geohash': '9ym', - 'center': [ - -93.515625, - 35.859375 - ], - 'rectangle': [ - [ - -94.21875, - 35.15625 - ], - [ - -92.8125, - 35.15625 - ], - [ - -92.8125, - 36.5625 - ], - [ - -94.21875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 426, - 'geohash': 'dpb', - 'center': [ - -89.296875, - 44.296875 - ], - 'rectangle': [ - [ - -90, - 43.59375 - ], - [ - -88.59375, - 43.59375 - ], - [ - -88.59375, - 45 - ], - [ - -90, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 426, - 'geohash': 'dns', - 'center': [ - -83.671875, - 37.265625 - ], - 'rectangle': [ - [ - -84.375, - 36.5625 - ], - [ - -82.96875, - 36.5625 - ], - [ - -82.96875, - 37.96875 - ], - [ - -84.375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 425, - 'geohash': 'dp2', - 'center': [ - -89.296875, - 41.484375 - ], - 'rectangle': [ - [ - -90, - 40.78125 - ], - [ - -88.59375, - 40.78125 - ], - [ - -88.59375, - 42.1875 - ], - [ - -90, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 425, - 'geohash': 'djm', - 'center': [ - -82.265625, - 30.234375 - ], - 'rectangle': [ - [ - -82.96875, - 29.53125 - ], - [ - -81.5625, - 29.53125 - ], - [ - -81.5625, - 30.9375 - ], - [ - -82.96875, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 425, - 'geohash': 'dj2', - 'center': [ - -89.296875, - 30.234375 - ], - 'rectangle': [ - [ - -90, - 29.53125 - ], - [ - -88.59375, - 29.53125 - ], - [ - -88.59375, - 30.9375 - ], - [ - -90, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 425, - 'geohash': 'cb5', - 'center': [ - -96.328125, - 45.703125 - ], - 'rectangle': [ - [ - -97.03125, - 45 - ], - [ - -95.625, - 45 - ], - [ - -95.625, - 46.40625 - ], - [ - -97.03125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 424, - 'geohash': '9yw', - 'center': [ - -92.109375, - 37.265625 - ], - 'rectangle': [ - [ - -92.8125, - 36.5625 - ], - [ - -91.40625, - 36.5625 - ], - [ - -91.40625, - 37.96875 - ], - [ - -92.8125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 422, - 'geohash': 'drd', - 'center': [ - -75.234375, - 42.890625 - ], - 'rectangle': [ - [ - -75.9375, - 42.1875 - ], - [ - -74.53125, - 42.1875 - ], - [ - -74.53125, - 43.59375 - ], - [ - -75.9375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 422, - 'geohash': 'dnt', - 'center': [ - -82.265625, - 37.265625 - ], - 'rectangle': [ - [ - -82.96875, - 36.5625 - ], - [ - -81.5625, - 36.5625 - ], - [ - -81.5625, - 37.96875 - ], - [ - -82.96875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 421, - 'geohash': '9rb', - 'center': [ - -123.046875, - 44.296875 - ], - 'rectangle': [ - [ - -123.75, - 43.59375 - ], - [ - -122.34375, - 43.59375 - ], - [ - -122.34375, - 45 - ], - [ - -123.75, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 420, - 'geohash': '9vc', - 'center': [ - -99.140625, - 33.046875 - ], - 'rectangle': [ - [ - -99.84375, - 32.34375 - ], - [ - -98.4375, - 32.34375 - ], - [ - -98.4375, - 33.75 - ], - [ - -99.84375, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 418, - 'geohash': 'djz', - 'center': [ - -79.453125, - 33.046875 - ], - 'rectangle': [ - [ - -80.15625, - 32.34375 - ], - [ - -78.75, - 32.34375 - ], - [ - -78.75, - 33.75 - ], - [ - -80.15625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 418, - 'geohash': '9z5', - 'center': [ - -96.328125, - 40.078125 - ], - 'rectangle': [ - [ - -97.03125, - 39.375 - ], - [ - -95.625, - 39.375 - ], - [ - -95.625, - 40.78125 - ], - [ - -97.03125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 417, - 'geohash': 'djk', - 'center': [ - -83.671875, - 30.234375 - ], - 'rectangle': [ - [ - -84.375, - 29.53125 - ], - [ - -82.96875, - 29.53125 - ], - [ - -82.96875, - 30.9375 - ], - [ - -84.375, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 409, - 'geohash': '9y8', - 'center': [ - -100.546875, - 37.265625 - ], - 'rectangle': [ - [ - -101.25, - 36.5625 - ], - [ - -99.84375, - 36.5625 - ], - [ - -99.84375, - 37.96875 - ], - [ - -101.25, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 406, - 'geohash': '9zh', - 'center': [ - -94.921875, - 40.078125 - ], - 'rectangle': [ - [ - -95.625, - 39.375 - ], - [ - -94.21875, - 39.375 - ], - [ - -94.21875, - 40.78125 - ], - [ - -95.625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 404, - 'geohash': '9zg', - 'center': [ - -96.328125, - 44.296875 - ], - 'rectangle': [ - [ - -97.03125, - 43.59375 - ], - [ - -95.625, - 43.59375 - ], - [ - -95.625, - 45 - ], - [ - -97.03125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 402, - 'geohash': 'dnu', - 'center': [ - -83.671875, - 38.671875 - ], - 'rectangle': [ - [ - -84.375, - 37.96875 - ], - [ - -82.96875, - 37.96875 - ], - [ - -82.96875, - 39.375 - ], - [ - -84.375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 398, - 'geohash': '9qq', - 'center': [ - -114.609375, - 35.859375 - ], - 'rectangle': [ - [ - -115.3125, - 35.15625 - ], - [ - -113.90625, - 35.15625 - ], - [ - -113.90625, - 36.5625 - ], - [ - -115.3125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 394, - 'geohash': 'dq3', - 'center': [ - -76.640625, - 35.859375 - ], - 'rectangle': [ - [ - -77.34375, - 35.15625 - ], - [ - -75.9375, - 35.15625 - ], - [ - -75.9375, - 36.5625 - ], - [ - -77.34375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 394, - 'geohash': 'dp0', - 'center': [ - -89.296875, - 40.078125 - ], - 'rectangle': [ - [ - -90, - 39.375 - ], - [ - -88.59375, - 39.375 - ], - [ - -88.59375, - 40.78125 - ], - [ - -90, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 394, - 'geohash': '9r2', - 'center': [ - -123.046875, - 41.484375 - ], - 'rectangle': [ - [ - -123.75, - 40.78125 - ], - [ - -122.34375, - 40.78125 - ], - [ - -122.34375, - 42.1875 - ], - [ - -123.75, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 392, - 'geohash': '9zn', - 'center': [ - -92.109375, - 40.078125 - ], - 'rectangle': [ - [ - -92.8125, - 39.375 - ], - [ - -91.40625, - 39.375 - ], - [ - -91.40625, - 40.78125 - ], - [ - -92.8125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 385, - 'geohash': 'dq8', - 'center': [ - -78.046875, - 37.265625 - ], - 'rectangle': [ - [ - -78.75, - 36.5625 - ], - [ - -77.34375, - 36.5625 - ], - [ - -77.34375, - 37.96875 - ], - [ - -78.75, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 376, - 'geohash': '9v1', - 'center': [ - -99.140625, - 28.828125 - ], - 'rectangle': [ - [ - -99.84375, - 28.125 - ], - [ - -98.4375, - 28.125 - ], - [ - -98.4375, - 29.53125 - ], - [ - -99.84375, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 375, - 'geohash': '9zf', - 'center': [ - -97.734375, - 44.296875 - ], - 'rectangle': [ - [ - -98.4375, - 43.59375 - ], - [ - -97.03125, - 43.59375 - ], - [ - -97.03125, - 45 - ], - [ - -98.4375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 374, - 'geohash': '9zw', - 'center': [ - -92.109375, - 42.890625 - ], - 'rectangle': [ - [ - -92.8125, - 42.1875 - ], - [ - -91.40625, - 42.1875 - ], - [ - -91.40625, - 43.59375 - ], - [ - -92.8125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 373, - 'geohash': 'dr1', - 'center': [ - -76.640625, - 40.078125 - ], - 'rectangle': [ - [ - -77.34375, - 39.375 - ], - [ - -75.9375, - 39.375 - ], - [ - -75.9375, - 40.78125 - ], - [ - -77.34375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 373, - 'geohash': 'c22', - 'center': [ - -123.046875, - 47.109375 - ], - 'rectangle': [ - [ - -123.75, - 46.40625 - ], - [ - -122.34375, - 46.40625 - ], - [ - -122.34375, - 47.8125 - ], - [ - -123.75, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -73.828125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 372, - 'geohash': 'drg', - 'center': [ - -73.828125, - 44.296875 - ], - 'rectangle': [ - [ - -74.53125, - 43.59375 - ], - [ - -73.125, - 43.59375 - ], - [ - -73.125, - 45 - ], - [ - -74.53125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 371, - 'geohash': '9zy', - 'center': [ - -92.109375, - 44.296875 - ], - 'rectangle': [ - [ - -92.8125, - 43.59375 - ], - [ - -91.40625, - 43.59375 - ], - [ - -91.40625, - 45 - ], - [ - -92.8125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 370, - 'geohash': 'cbq', - 'center': [ - -92.109375, - 47.109375 - ], - 'rectangle': [ - [ - -92.8125, - 46.40625 - ], - [ - -91.40625, - 46.40625 - ], - [ - -91.40625, - 47.8125 - ], - [ - -92.8125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 368, - 'geohash': '9z3', - 'center': [ - -99.140625, - 41.484375 - ], - 'rectangle': [ - [ - -99.84375, - 40.78125 - ], - [ - -98.4375, - 40.78125 - ], - [ - -98.4375, - 42.1875 - ], - [ - -99.84375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 366, - 'geohash': 'c2q', - 'center': [ - -114.609375, - 47.109375 - ], - 'rectangle': [ - [ - -115.3125, - 46.40625 - ], - [ - -113.90625, - 46.40625 - ], - [ - -113.90625, - 47.8125 - ], - [ - -115.3125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 363, - 'geohash': 'dpr', - 'center': [ - -79.453125, - 41.484375 - ], - 'rectangle': [ - [ - -80.15625, - 40.78125 - ], - [ - -78.75, - 40.78125 - ], - [ - -78.75, - 42.1875 - ], - [ - -80.15625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -65.390625, - 18.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 363, - 'geohash': 'de3', - 'center': [ - -65.390625, - 18.984375 - ], - 'rectangle': [ - [ - -66.09375, - 18.28125 - ], - [ - -64.6875, - 18.28125 - ], - [ - -64.6875, - 19.6875 - ], - [ - -66.09375, - 19.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 363, - 'geohash': 'b6u', - 'center': [ - -162.421875, - 61.171875 - ], - 'rectangle': [ - [ - -163.125, - 60.46875 - ], - [ - -161.71875, - 60.46875 - ], - [ - -161.71875, - 61.875 - ], - [ - -163.125, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 362, - 'geohash': '9wp', - 'center': [ - -101.953125, - 34.453125 - ], - 'rectangle': [ - [ - -102.65625, - 33.75 - ], - [ - -101.25, - 33.75 - ], - [ - -101.25, - 35.15625 - ], - [ - -102.65625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 359, - 'geohash': '9zt', - 'center': [ - -93.515625, - 42.890625 - ], - 'rectangle': [ - [ - -94.21875, - 42.1875 - ], - [ - -92.8125, - 42.1875 - ], - [ - -92.8125, - 43.59375 - ], - [ - -94.21875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 352, - 'geohash': 'cb7', - 'center': [ - -96.328125, - 47.109375 - ], - 'rectangle': [ - [ - -97.03125, - 46.40625 - ], - [ - -95.625, - 46.40625 - ], - [ - -95.625, - 47.8125 - ], - [ - -97.03125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 352, - 'geohash': 'c23', - 'center': [ - -121.640625, - 47.109375 - ], - 'rectangle': [ - [ - -122.34375, - 46.40625 - ], - [ - -120.9375, - 46.40625 - ], - [ - -120.9375, - 47.8125 - ], - [ - -122.34375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 348, - 'geohash': 'c27', - 'center': [ - -118.828125, - 47.109375 - ], - 'rectangle': [ - [ - -119.53125, - 46.40625 - ], - [ - -118.125, - 46.40625 - ], - [ - -118.125, - 47.8125 - ], - [ - -119.53125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 348, - 'geohash': '9zd', - 'center': [ - -97.734375, - 42.890625 - ], - 'rectangle': [ - [ - -98.4375, - 42.1875 - ], - [ - -97.03125, - 42.1875 - ], - [ - -97.03125, - 43.59375 - ], - [ - -98.4375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 27.421875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 347, - 'geohash': '9uf', - 'center': [ - -97.734375, - 27.421875 - ], - 'rectangle': [ - [ - -98.4375, - 26.71875 - ], - [ - -97.03125, - 26.71875 - ], - [ - -97.03125, - 28.125 - ], - [ - -98.4375, - 28.125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 346, - 'geohash': '9r0', - 'center': [ - -123.046875, - 40.078125 - ], - 'rectangle': [ - [ - -123.75, - 39.375 - ], - [ - -122.34375, - 39.375 - ], - [ - -122.34375, - 40.78125 - ], - [ - -123.75, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -165.234375, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 344, - 'geohash': 'b6f', - 'center': [ - -165.234375, - 61.171875 - ], - 'rectangle': [ - [ - -165.9375, - 60.46875 - ], - [ - -164.53125, - 60.46875 - ], - [ - -164.53125, - 61.875 - ], - [ - -165.9375, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 344, - 'geohash': '9vw', - 'center': [ - -92.109375, - 31.640625 - ], - 'rectangle': [ - [ - -92.8125, - 30.9375 - ], - [ - -91.40625, - 30.9375 - ], - [ - -91.40625, - 32.34375 - ], - [ - -92.8125, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 343, - 'geohash': '9z0', - 'center': [ - -100.546875, - 40.078125 - ], - 'rectangle': [ - [ - -101.25, - 39.375 - ], - [ - -99.84375, - 39.375 - ], - [ - -99.84375, - 40.78125 - ], - [ - -101.25, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 342, - 'geohash': 'dr0', - 'center': [ - -78.046875, - 40.078125 - ], - 'rectangle': [ - [ - -78.75, - 39.375 - ], - [ - -77.34375, - 39.375 - ], - [ - -77.34375, - 40.78125 - ], - [ - -78.75, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 342, - 'geohash': 'cb4', - 'center': [ - -97.734375, - 45.703125 - ], - 'rectangle': [ - [ - -98.4375, - 45 - ], - [ - -97.03125, - 45 - ], - [ - -97.03125, - 46.40625 - ], - [ - -98.4375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -135.703125, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 340, - 'geohash': 'bfr', - 'center': [ - -135.703125, - 58.359375 - ], - 'rectangle': [ - [ - -136.40625, - 57.65625 - ], - [ - -135, - 57.65625 - ], - [ - -135, - 59.0625 - ], - [ - -136.40625, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 339, - 'geohash': 'dnx', - 'center': [ - -79.453125, - 37.265625 - ], - 'rectangle': [ - [ - -80.15625, - 36.5625 - ], - [ - -78.75, - 36.5625 - ], - [ - -78.75, - 37.96875 - ], - [ - -80.15625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 339, - 'geohash': '9yf', - 'center': [ - -97.734375, - 38.671875 - ], - 'rectangle': [ - [ - -98.4375, - 37.96875 - ], - [ - -97.03125, - 37.96875 - ], - [ - -97.03125, - 39.375 - ], - [ - -98.4375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 338, - 'geohash': 'dj9', - 'center': [ - -87.890625, - 31.640625 - ], - 'rectangle': [ - [ - -88.59375, - 30.9375 - ], - [ - -87.1875, - 30.9375 - ], - [ - -87.1875, - 32.34375 - ], - [ - -88.59375, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 327, - 'geohash': '9yj', - 'center': [ - -93.515625, - 34.453125 - ], - 'rectangle': [ - [ - -94.21875, - 33.75 - ], - [ - -92.8125, - 33.75 - ], - [ - -92.8125, - 35.15625 - ], - [ - -94.21875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 325, - 'geohash': 'dpd', - 'center': [ - -86.484375, - 42.890625 - ], - 'rectangle': [ - [ - -87.1875, - 42.1875 - ], - [ - -85.78125, - 42.1875 - ], - [ - -85.78125, - 43.59375 - ], - [ - -87.1875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 325, - 'geohash': '9tz', - 'center': [ - -101.953125, - 33.046875 - ], - 'rectangle': [ - [ - -102.65625, - 32.34375 - ], - [ - -101.25, - 32.34375 - ], - [ - -101.25, - 33.75 - ], - [ - -102.65625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 323, - 'geohash': '9yg', - 'center': [ - -96.328125, - 38.671875 - ], - 'rectangle': [ - [ - -97.03125, - 37.96875 - ], - [ - -95.625, - 37.96875 - ], - [ - -95.625, - 39.375 - ], - [ - -97.03125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 320, - 'geohash': 'c2k', - 'center': [ - -117.421875, - 47.109375 - ], - 'rectangle': [ - [ - -118.125, - 46.40625 - ], - [ - -116.71875, - 46.40625 - ], - [ - -116.71875, - 47.8125 - ], - [ - -118.125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 320, - 'geohash': '9yh', - 'center': [ - -94.921875, - 34.453125 - ], - 'rectangle': [ - [ - -95.625, - 33.75 - ], - [ - -94.21875, - 33.75 - ], - [ - -94.21875, - 35.15625 - ], - [ - -95.625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 319, - 'geohash': 'c8x', - 'center': [ - -101.953125, - 48.515625 - ], - 'rectangle': [ - [ - -102.65625, - 47.8125 - ], - [ - -101.25, - 47.8125 - ], - [ - -101.25, - 49.21875 - ], - [ - -102.65625, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 26.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 318, - 'geohash': '9ud', - 'center': [ - -97.734375, - 26.015625 - ], - 'rectangle': [ - [ - -98.4375, - 25.3125 - ], - [ - -97.03125, - 25.3125 - ], - [ - -97.03125, - 26.71875 - ], - [ - -98.4375, - 26.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 316, - 'geohash': '9zz', - 'center': [ - -90.703125, - 44.296875 - ], - 'rectangle': [ - [ - -91.40625, - 43.59375 - ], - [ - -90, - 43.59375 - ], - [ - -90, - 45 - ], - [ - -91.40625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 316, - 'geohash': '9wz', - 'center': [ - -101.953125, - 38.671875 - ], - 'rectangle': [ - [ - -102.65625, - 37.96875 - ], - [ - -101.25, - 37.96875 - ], - [ - -101.25, - 39.375 - ], - [ - -102.65625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 314, - 'geohash': '9t9', - 'center': [ - -110.390625, - 31.640625 - ], - 'rectangle': [ - [ - -111.09375, - 30.9375 - ], - [ - -109.6875, - 30.9375 - ], - [ - -109.6875, - 32.34375 - ], - [ - -111.09375, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -134.296875, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 313, - 'geohash': 'c40', - 'center': [ - -134.296875, - 56.953125 - ], - 'rectangle': [ - [ - -135, - 56.25 - ], - [ - -133.59375, - 56.25 - ], - [ - -133.59375, - 57.65625 - ], - [ - -135, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 310, - 'geohash': '9yv', - 'center': [ - -93.515625, - 38.671875 - ], - 'rectangle': [ - [ - -94.21875, - 37.96875 - ], - [ - -92.8125, - 37.96875 - ], - [ - -92.8125, - 39.375 - ], - [ - -94.21875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 309, - 'geohash': '9w1', - 'center': [ - -110.390625, - 34.453125 - ], - 'rectangle': [ - [ - -111.09375, - 33.75 - ], - [ - -109.6875, - 33.75 - ], - [ - -109.6875, - 35.15625 - ], - [ - -111.09375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -71.015625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 307, - 'geohash': 'drv', - 'center': [ - -71.015625, - 44.296875 - ], - 'rectangle': [ - [ - -71.71875, - 43.59375 - ], - [ - -70.3125, - 43.59375 - ], - [ - -70.3125, - 45 - ], - [ - -71.71875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 307, - 'geohash': 'djw', - 'center': [ - -80.859375, - 31.640625 - ], - 'rectangle': [ - [ - -81.5625, - 30.9375 - ], - [ - -80.15625, - 30.9375 - ], - [ - -80.15625, - 32.34375 - ], - [ - -81.5625, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 306, - 'geohash': '9wr', - 'center': [ - -101.953125, - 35.859375 - ], - 'rectangle': [ - [ - -102.65625, - 35.15625 - ], - [ - -101.25, - 35.15625 - ], - [ - -101.25, - 36.5625 - ], - [ - -102.65625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 301, - 'geohash': '9v5', - 'center': [ - -96.328125, - 28.828125 - ], - 'rectangle': [ - [ - -97.03125, - 28.125 - ], - [ - -95.625, - 28.125 - ], - [ - -95.625, - 29.53125 - ], - [ - -97.03125, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 300, - 'geohash': '9vt', - 'center': [ - -93.515625, - 31.640625 - ], - 'rectangle': [ - [ - -94.21875, - 30.9375 - ], - [ - -92.8125, - 30.9375 - ], - [ - -92.8125, - 32.34375 - ], - [ - -94.21875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 299, - 'geohash': 'cbh', - 'center': [ - -94.921875, - 45.703125 - ], - 'rectangle': [ - [ - -95.625, - 45 - ], - [ - -94.21875, - 45 - ], - [ - -94.21875, - 46.40625 - ], - [ - -95.625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 296, - 'geohash': '9wx', - 'center': [ - -101.953125, - 37.265625 - ], - 'rectangle': [ - [ - -102.65625, - 36.5625 - ], - [ - -101.25, - 36.5625 - ], - [ - -101.25, - 37.96875 - ], - [ - -102.65625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 294, - 'geohash': '9xy', - 'center': [ - -103.359375, - 44.296875 - ], - 'rectangle': [ - [ - -104.0625, - 43.59375 - ], - [ - -102.65625, - 43.59375 - ], - [ - -102.65625, - 45 - ], - [ - -104.0625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 293, - 'geohash': 'c80', - 'center': [ - -111.796875, - 45.703125 - ], - 'rectangle': [ - [ - -112.5, - 45 - ], - [ - -111.09375, - 45 - ], - [ - -111.09375, - 46.40625 - ], - [ - -112.5, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 292, - 'geohash': '9vs', - 'center': [ - -94.921875, - 31.640625 - ], - 'rectangle': [ - [ - -95.625, - 30.9375 - ], - [ - -94.21875, - 30.9375 - ], - [ - -94.21875, - 32.34375 - ], - [ - -95.625, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 287, - 'geohash': 'cb1', - 'center': [ - -99.140625, - 45.703125 - ], - 'rectangle': [ - [ - -99.84375, - 45 - ], - [ - -98.4375, - 45 - ], - [ - -98.4375, - 46.40625 - ], - [ - -99.84375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 285, - 'geohash': 'c24', - 'center': [ - -120.234375, - 45.703125 - ], - 'rectangle': [ - [ - -120.9375, - 45 - ], - [ - -119.53125, - 45 - ], - [ - -119.53125, - 46.40625 - ], - [ - -120.9375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 282, - 'geohash': 'dj7', - 'center': [ - -85.078125, - 30.234375 - ], - 'rectangle': [ - [ - -85.78125, - 29.53125 - ], - [ - -84.375, - 29.53125 - ], - [ - -84.375, - 30.9375 - ], - [ - -85.78125, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 282, - 'geohash': 'b6v', - 'center': [ - -161.015625, - 61.171875 - ], - 'rectangle': [ - [ - -161.71875, - 60.46875 - ], - [ - -160.3125, - 60.46875 - ], - [ - -160.3125, - 61.875 - ], - [ - -161.71875, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 281, - 'geohash': '9we', - 'center': [ - -107.578125, - 37.265625 - ], - 'rectangle': [ - [ - -108.28125, - 36.5625 - ], - [ - -106.875, - 36.5625 - ], - [ - -106.875, - 37.96875 - ], - [ - -108.28125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 281, - 'geohash': '9q6', - 'center': [ - -120.234375, - 35.859375 - ], - 'rectangle': [ - [ - -120.9375, - 35.15625 - ], - [ - -119.53125, - 35.15625 - ], - [ - -119.53125, - 36.5625 - ], - [ - -120.9375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 277, - 'geohash': '9x0', - 'center': [ - -111.796875, - 40.078125 - ], - 'rectangle': [ - [ - -112.5, - 39.375 - ], - [ - -111.09375, - 39.375 - ], - [ - -111.09375, - 40.78125 - ], - [ - -112.5, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 276, - 'geohash': 'dj6', - 'center': [ - -86.484375, - 30.234375 - ], - 'rectangle': [ - [ - -87.1875, - 29.53125 - ], - [ - -85.78125, - 29.53125 - ], - [ - -85.78125, - 30.9375 - ], - [ - -87.1875, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 273, - 'geohash': '9mv', - 'center': [ - -116.015625, - 33.046875 - ], - 'rectangle': [ - [ - -116.71875, - 32.34375 - ], - [ - -115.3125, - 32.34375 - ], - [ - -115.3125, - 33.75 - ], - [ - -116.71875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 271, - 'geohash': '9z9', - 'center': [ - -99.140625, - 42.890625 - ], - 'rectangle': [ - [ - -99.84375, - 42.1875 - ], - [ - -98.4375, - 42.1875 - ], - [ - -98.4375, - 43.59375 - ], - [ - -99.84375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 270, - 'geohash': '9qe', - 'center': [ - -118.828125, - 37.265625 - ], - 'rectangle': [ - [ - -119.53125, - 36.5625 - ], - [ - -118.125, - 36.5625 - ], - [ - -118.125, - 37.96875 - ], - [ - -119.53125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 268, - 'geohash': 'cb6', - 'center': [ - -97.734375, - 47.109375 - ], - 'rectangle': [ - [ - -98.4375, - 46.40625 - ], - [ - -97.03125, - 46.40625 - ], - [ - -97.03125, - 47.8125 - ], - [ - -98.4375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -155.390625, - 20.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 267, - 'geohash': '8e9', - 'center': [ - -155.390625, - 20.390625 - ], - 'rectangle': [ - [ - -156.09375, - 19.6875 - ], - [ - -154.6875, - 19.6875 - ], - [ - -154.6875, - 21.09375 - ], - [ - -156.09375, - 21.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 266, - 'geohash': 'c26', - 'center': [ - -120.234375, - 47.109375 - ], - 'rectangle': [ - [ - -120.9375, - 46.40625 - ], - [ - -119.53125, - 46.40625 - ], - [ - -119.53125, - 47.8125 - ], - [ - -120.9375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 266, - 'geohash': '9xr', - 'center': [ - -101.953125, - 41.484375 - ], - 'rectangle': [ - [ - -102.65625, - 40.78125 - ], - [ - -101.25, - 40.78125 - ], - [ - -101.25, - 42.1875 - ], - [ - -102.65625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 263, - 'geohash': 'bd7', - 'center': [ - -152.578125, - 58.359375 - ], - 'rectangle': [ - [ - -153.28125, - 57.65625 - ], - [ - -151.875, - 57.65625 - ], - [ - -151.875, - 59.0625 - ], - [ - -153.28125, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 262, - 'geohash': '9x2', - 'center': [ - -111.796875, - 41.484375 - ], - 'rectangle': [ - [ - -112.5, - 40.78125 - ], - [ - -111.09375, - 40.78125 - ], - [ - -111.09375, - 42.1875 - ], - [ - -112.5, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 261, - 'geohash': 'c88', - 'center': [ - -111.796875, - 48.515625 - ], - 'rectangle': [ - [ - -112.5, - 47.8125 - ], - [ - -111.09375, - 47.8125 - ], - [ - -111.09375, - 49.21875 - ], - [ - -112.5, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 261, - 'geohash': 'c2p', - 'center': [ - -113.203125, - 45.703125 - ], - 'rectangle': [ - [ - -113.90625, - 45 - ], - [ - -112.5, - 45 - ], - [ - -112.5, - 46.40625 - ], - [ - -113.90625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 261, - 'geohash': '9r3', - 'center': [ - -121.640625, - 41.484375 - ], - 'rectangle': [ - [ - -122.34375, - 40.78125 - ], - [ - -120.9375, - 40.78125 - ], - [ - -120.9375, - 42.1875 - ], - [ - -122.34375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -69.609375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 260, - 'geohash': 'f2n', - 'center': [ - -69.609375, - 45.703125 - ], - 'rectangle': [ - [ - -70.3125, - 45 - ], - [ - -68.90625, - 45 - ], - [ - -68.90625, - 46.40625 - ], - [ - -70.3125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 258, - 'geohash': 'c25', - 'center': [ - -118.828125, - 45.703125 - ], - 'rectangle': [ - [ - -119.53125, - 45 - ], - [ - -118.125, - 45 - ], - [ - -118.125, - 46.40625 - ], - [ - -119.53125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 257, - 'geohash': 'dny', - 'center': [ - -80.859375, - 38.671875 - ], - 'rectangle': [ - [ - -81.5625, - 37.96875 - ], - [ - -80.15625, - 37.96875 - ], - [ - -80.15625, - 39.375 - ], - [ - -81.5625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 254, - 'geohash': '9yt', - 'center': [ - -93.515625, - 37.265625 - ], - 'rectangle': [ - [ - -94.21875, - 36.5625 - ], - [ - -92.8125, - 36.5625 - ], - [ - -92.8125, - 37.96875 - ], - [ - -94.21875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 254, - 'geohash': '9ye', - 'center': [ - -96.328125, - 37.265625 - ], - 'rectangle': [ - [ - -97.03125, - 36.5625 - ], - [ - -95.625, - 36.5625 - ], - [ - -95.625, - 37.96875 - ], - [ - -97.03125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 252, - 'geohash': '9v3', - 'center': [ - -99.140625, - 30.234375 - ], - 'rectangle': [ - [ - -99.84375, - 29.53125 - ], - [ - -98.4375, - 29.53125 - ], - [ - -98.4375, - 30.9375 - ], - [ - -99.84375, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 250, - 'geohash': '9qx', - 'center': [ - -113.203125, - 37.265625 - ], - 'rectangle': [ - [ - -113.90625, - 36.5625 - ], - [ - -112.5, - 36.5625 - ], - [ - -112.5, - 37.96875 - ], - [ - -113.90625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 249, - 'geohash': '9zb', - 'center': [ - -100.546875, - 44.296875 - ], - 'rectangle': [ - [ - -101.25, - 43.59375 - ], - [ - -99.84375, - 43.59375 - ], - [ - -99.84375, - 45 - ], - [ - -101.25, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 26.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 247, - 'geohash': 'dhx', - 'center': [ - -79.453125, - 26.015625 - ], - 'rectangle': [ - [ - -80.15625, - 25.3125 - ], - [ - -78.75, - 25.3125 - ], - [ - -78.75, - 26.71875 - ], - [ - -80.15625, - 26.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 247, - 'geohash': '9q4', - 'center': [ - -120.234375, - 34.453125 - ], - 'rectangle': [ - [ - -120.9375, - 33.75 - ], - [ - -119.53125, - 33.75 - ], - [ - -119.53125, - 35.15625 - ], - [ - -120.9375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 246, - 'geohash': 'b6p', - 'center': [ - -158.203125, - 56.953125 - ], - 'rectangle': [ - [ - -158.90625, - 56.25 - ], - [ - -157.5, - 56.25 - ], - [ - -157.5, - 57.65625 - ], - [ - -158.90625, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 244, - 'geohash': '9w0', - 'center': [ - -111.796875, - 34.453125 - ], - 'rectangle': [ - [ - -112.5, - 33.75 - ], - [ - -111.09375, - 33.75 - ], - [ - -111.09375, - 35.15625 - ], - [ - -112.5, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 244, - 'geohash': '9ve', - 'center': [ - -96.328125, - 31.640625 - ], - 'rectangle': [ - [ - -97.03125, - 30.9375 - ], - [ - -95.625, - 30.9375 - ], - [ - -95.625, - 32.34375 - ], - [ - -97.03125, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 242, - 'geohash': 'c8p', - 'center': [ - -101.953125, - 45.703125 - ], - 'rectangle': [ - [ - -102.65625, - 45 - ], - [ - -101.25, - 45 - ], - [ - -101.25, - 46.40625 - ], - [ - -102.65625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 239, - 'geohash': '9r8', - 'center': [ - -123.046875, - 42.890625 - ], - 'rectangle': [ - [ - -123.75, - 42.1875 - ], - [ - -122.34375, - 42.1875 - ], - [ - -122.34375, - 43.59375 - ], - [ - -123.75, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 238, - 'geohash': 'f01', - 'center': [ - -87.890625, - 45.703125 - ], - 'rectangle': [ - [ - -88.59375, - 45 - ], - [ - -87.1875, - 45 - ], - [ - -87.1875, - 46.40625 - ], - [ - -88.59375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 236, - 'geohash': '9x5', - 'center': [ - -107.578125, - 40.078125 - ], - 'rectangle': [ - [ - -108.28125, - 39.375 - ], - [ - -106.875, - 39.375 - ], - [ - -106.875, - 40.78125 - ], - [ - -108.28125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 236, - 'geohash': '9rw', - 'center': [ - -114.609375, - 42.890625 - ], - 'rectangle': [ - [ - -115.3125, - 42.1875 - ], - [ - -113.90625, - 42.1875 - ], - [ - -113.90625, - 43.59375 - ], - [ - -115.3125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 235, - 'geohash': 'cbp', - 'center': [ - -90.703125, - 45.703125 - ], - 'rectangle': [ - [ - -91.40625, - 45 - ], - [ - -90, - 45 - ], - [ - -90, - 46.40625 - ], - [ - -91.40625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 233, - 'geohash': '9ty', - 'center': [ - -103.359375, - 33.046875 - ], - 'rectangle': [ - [ - -104.0625, - 32.34375 - ], - [ - -102.65625, - 32.34375 - ], - [ - -102.65625, - 33.75 - ], - [ - -104.0625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 231, - 'geohash': '9wv', - 'center': [ - -104.765625, - 38.671875 - ], - 'rectangle': [ - [ - -105.46875, - 37.96875 - ], - [ - -104.0625, - 37.96875 - ], - [ - -104.0625, - 39.375 - ], - [ - -105.46875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 230, - 'geohash': '9xz', - 'center': [ - -101.953125, - 44.296875 - ], - 'rectangle': [ - [ - -102.65625, - 43.59375 - ], - [ - -101.25, - 43.59375 - ], - [ - -101.25, - 45 - ], - [ - -102.65625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 228, - 'geohash': '9tx', - 'center': [ - -101.953125, - 31.640625 - ], - 'rectangle': [ - [ - -102.65625, - 30.9375 - ], - [ - -101.25, - 30.9375 - ], - [ - -101.25, - 32.34375 - ], - [ - -102.65625, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 228, - 'geohash': '9tf', - 'center': [ - -108.984375, - 33.046875 - ], - 'rectangle': [ - [ - -109.6875, - 32.34375 - ], - [ - -108.28125, - 32.34375 - ], - [ - -108.28125, - 33.75 - ], - [ - -109.6875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 225, - 'geohash': '9xp', - 'center': [ - -101.953125, - 40.078125 - ], - 'rectangle': [ - [ - -102.65625, - 39.375 - ], - [ - -101.25, - 39.375 - ], - [ - -101.25, - 40.78125 - ], - [ - -102.65625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 224, - 'geohash': '9yx', - 'center': [ - -90.703125, - 37.265625 - ], - 'rectangle': [ - [ - -91.40625, - 36.5625 - ], - [ - -90, - 36.5625 - ], - [ - -90, - 37.96875 - ], - [ - -91.40625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 222, - 'geohash': 'dpu', - 'center': [ - -83.671875, - 44.296875 - ], - 'rectangle': [ - [ - -84.375, - 43.59375 - ], - [ - -82.96875, - 43.59375 - ], - [ - -82.96875, - 45 - ], - [ - -84.375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 218, - 'geohash': 'f04', - 'center': [ - -86.484375, - 45.703125 - ], - 'rectangle': [ - [ - -87.1875, - 45 - ], - [ - -85.78125, - 45 - ], - [ - -85.78125, - 46.40625 - ], - [ - -87.1875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 217, - 'geohash': '9pr', - 'center': [ - -124.453125, - 41.484375 - ], - 'rectangle': [ - [ - -125.15625, - 40.78125 - ], - [ - -123.75, - 40.78125 - ], - [ - -123.75, - 42.1875 - ], - [ - -125.15625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 216, - 'geohash': '9xn', - 'center': [ - -103.359375, - 40.078125 - ], - 'rectangle': [ - [ - -104.0625, - 39.375 - ], - [ - -102.65625, - 39.375 - ], - [ - -102.65625, - 40.78125 - ], - [ - -104.0625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -135.703125, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 214, - 'geohash': 'bfx', - 'center': [ - -135.703125, - 59.765625 - ], - 'rectangle': [ - [ - -136.40625, - 59.0625 - ], - [ - -135, - 59.0625 - ], - [ - -135, - 60.46875 - ], - [ - -136.40625, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 214, - 'geohash': '9zj', - 'center': [ - -93.515625, - 40.078125 - ], - 'rectangle': [ - [ - -94.21875, - 39.375 - ], - [ - -92.8125, - 39.375 - ], - [ - -92.8125, - 40.78125 - ], - [ - -94.21875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 214, - 'geohash': '9y9', - 'center': [ - -99.140625, - 37.265625 - ], - 'rectangle': [ - [ - -99.84375, - 36.5625 - ], - [ - -98.4375, - 36.5625 - ], - [ - -98.4375, - 37.96875 - ], - [ - -99.84375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 214, - 'geohash': '9xg', - 'center': [ - -107.578125, - 44.296875 - ], - 'rectangle': [ - [ - -108.28125, - 43.59375 - ], - [ - -106.875, - 43.59375 - ], - [ - -106.875, - 45 - ], - [ - -108.28125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 213, - 'geohash': 'djq', - 'center': [ - -80.859375, - 30.234375 - ], - 'rectangle': [ - [ - -81.5625, - 29.53125 - ], - [ - -80.15625, - 29.53125 - ], - [ - -80.15625, - 30.9375 - ], - [ - -81.5625, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 213, - 'geohash': '9w8', - 'center': [ - -111.796875, - 37.265625 - ], - 'rectangle': [ - [ - -112.5, - 36.5625 - ], - [ - -111.09375, - 36.5625 - ], - [ - -111.09375, - 37.96875 - ], - [ - -112.5, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 213, - 'geohash': '9tw', - 'center': [ - -103.359375, - 31.640625 - ], - 'rectangle': [ - [ - -104.0625, - 30.9375 - ], - [ - -102.65625, - 30.9375 - ], - [ - -102.65625, - 32.34375 - ], - [ - -104.0625, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 213, - 'geohash': '9ru', - 'center': [ - -117.421875, - 44.296875 - ], - 'rectangle': [ - [ - -118.125, - 43.59375 - ], - [ - -116.71875, - 43.59375 - ], - [ - -116.71875, - 45 - ], - [ - -118.125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -65.390625, - 17.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 212, - 'geohash': 'de1', - 'center': [ - -65.390625, - 17.578125 - ], - 'rectangle': [ - [ - -66.09375, - 16.875 - ], - [ - -64.6875, - 16.875 - ], - [ - -64.6875, - 18.28125 - ], - [ - -66.09375, - 18.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 212, - 'geohash': '9qn', - 'center': [ - -114.609375, - 34.453125 - ], - 'rectangle': [ - [ - -115.3125, - 33.75 - ], - [ - -113.90625, - 33.75 - ], - [ - -113.90625, - 35.15625 - ], - [ - -115.3125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 211, - 'geohash': '9y2', - 'center': [ - -100.546875, - 35.859375 - ], - 'rectangle': [ - [ - -101.25, - 35.15625 - ], - [ - -99.84375, - 35.15625 - ], - [ - -99.84375, - 36.5625 - ], - [ - -101.25, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 211, - 'geohash': '9rv', - 'center': [ - -116.015625, - 44.296875 - ], - 'rectangle': [ - [ - -116.71875, - 43.59375 - ], - [ - -115.3125, - 43.59375 - ], - [ - -115.3125, - 45 - ], - [ - -116.71875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -163.828125, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 210, - 'geohash': 'b75', - 'center': [ - -163.828125, - 62.578125 - ], - 'rectangle': [ - [ - -164.53125, - 61.875 - ], - [ - -163.125, - 61.875 - ], - [ - -163.125, - 63.28125 - ], - [ - -164.53125, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 210, - 'geohash': '9yb', - 'center': [ - -100.546875, - 38.671875 - ], - 'rectangle': [ - [ - -101.25, - 37.96875 - ], - [ - -99.84375, - 37.96875 - ], - [ - -99.84375, - 39.375 - ], - [ - -101.25, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 209, - 'geohash': 'dpx', - 'center': [ - -79.453125, - 42.890625 - ], - 'rectangle': [ - [ - -80.15625, - 42.1875 - ], - [ - -78.75, - 42.1875 - ], - [ - -78.75, - 43.59375 - ], - [ - -80.15625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 209, - 'geohash': 'dpt', - 'center': [ - -82.265625, - 42.890625 - ], - 'rectangle': [ - [ - -82.96875, - 42.1875 - ], - [ - -81.5625, - 42.1875 - ], - [ - -81.5625, - 43.59375 - ], - [ - -82.96875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 209, - 'geohash': 'c83', - 'center': [ - -110.390625, - 47.109375 - ], - 'rectangle': [ - [ - -111.09375, - 46.40625 - ], - [ - -109.6875, - 46.40625 - ], - [ - -109.6875, - 47.8125 - ], - [ - -111.09375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 209, - 'geohash': 'b6s', - 'center': [ - -162.421875, - 59.765625 - ], - 'rectangle': [ - [ - -163.125, - 59.0625 - ], - [ - -161.71875, - 59.0625 - ], - [ - -161.71875, - 60.46875 - ], - [ - -163.125, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 209, - 'geohash': '9xq', - 'center': [ - -103.359375, - 41.484375 - ], - 'rectangle': [ - [ - -104.0625, - 40.78125 - ], - [ - -102.65625, - 40.78125 - ], - [ - -102.65625, - 42.1875 - ], - [ - -104.0625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 208, - 'geohash': 'b7n', - 'center': [ - -159.609375, - 62.578125 - ], - 'rectangle': [ - [ - -160.3125, - 61.875 - ], - [ - -158.90625, - 61.875 - ], - [ - -158.90625, - 63.28125 - ], - [ - -160.3125, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 208, - 'geohash': '9rc', - 'center': [ - -121.640625, - 44.296875 - ], - 'rectangle': [ - [ - -122.34375, - 43.59375 - ], - [ - -120.9375, - 43.59375 - ], - [ - -120.9375, - 45 - ], - [ - -122.34375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 206, - 'geohash': '9vh', - 'center': [ - -94.921875, - 28.828125 - ], - 'rectangle': [ - [ - -95.625, - 28.125 - ], - [ - -94.21875, - 28.125 - ], - [ - -94.21875, - 29.53125 - ], - [ - -95.625, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -69.609375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 204, - 'geohash': 'drq', - 'center': [ - -69.609375, - 41.484375 - ], - 'rectangle': [ - [ - -70.3125, - 40.78125 - ], - [ - -68.90625, - 40.78125 - ], - [ - -68.90625, - 42.1875 - ], - [ - -70.3125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 204, - 'geohash': 'cb2', - 'center': [ - -100.546875, - 47.109375 - ], - 'rectangle': [ - [ - -101.25, - 46.40625 - ], - [ - -99.84375, - 46.40625 - ], - [ - -99.84375, - 47.8125 - ], - [ - -101.25, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -134.296875, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 204, - 'geohash': 'c42', - 'center': [ - -134.296875, - 58.359375 - ], - 'rectangle': [ - [ - -135, - 57.65625 - ], - [ - -133.59375, - 57.65625 - ], - [ - -133.59375, - 59.0625 - ], - [ - -135, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 203, - 'geohash': '9xx', - 'center': [ - -101.953125, - 42.890625 - ], - 'rectangle': [ - [ - -102.65625, - 42.1875 - ], - [ - -101.25, - 42.1875 - ], - [ - -101.25, - 43.59375 - ], - [ - -102.65625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 203, - 'geohash': '9tu', - 'center': [ - -106.171875, - 33.046875 - ], - 'rectangle': [ - [ - -106.875, - 32.34375 - ], - [ - -105.46875, - 32.34375 - ], - [ - -105.46875, - 33.75 - ], - [ - -106.875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 202, - 'geohash': 'cbe', - 'center': [ - -96.328125, - 48.515625 - ], - 'rectangle': [ - [ - -97.03125, - 47.8125 - ], - [ - -95.625, - 47.8125 - ], - [ - -95.625, - 49.21875 - ], - [ - -97.03125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -132.890625, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 202, - 'geohash': 'c41', - 'center': [ - -132.890625, - 56.953125 - ], - 'rectangle': [ - [ - -133.59375, - 56.25 - ], - [ - -132.1875, - 56.25 - ], - [ - -132.1875, - 57.65625 - ], - [ - -133.59375, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 202, - 'geohash': '9wm', - 'center': [ - -104.765625, - 35.859375 - ], - 'rectangle': [ - [ - -105.46875, - 35.15625 - ], - [ - -104.0625, - 35.15625 - ], - [ - -104.0625, - 36.5625 - ], - [ - -105.46875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 202, - 'geohash': '9w6', - 'center': [ - -108.984375, - 35.859375 - ], - 'rectangle': [ - [ - -109.6875, - 35.15625 - ], - [ - -108.28125, - 35.15625 - ], - [ - -108.28125, - 36.5625 - ], - [ - -109.6875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 200, - 'geohash': '9wd', - 'center': [ - -108.984375, - 37.265625 - ], - 'rectangle': [ - [ - -109.6875, - 36.5625 - ], - [ - -108.28125, - 36.5625 - ], - [ - -108.28125, - 37.96875 - ], - [ - -109.6875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 199, - 'geohash': 'f0h', - 'center': [ - -83.671875, - 45.703125 - ], - 'rectangle': [ - [ - -84.375, - 45 - ], - [ - -82.96875, - 45 - ], - [ - -82.96875, - 46.40625 - ], - [ - -84.375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 199, - 'geohash': 'c8t', - 'center': [ - -104.765625, - 48.515625 - ], - 'rectangle': [ - [ - -105.46875, - 47.8125 - ], - [ - -104.0625, - 47.8125 - ], - [ - -104.0625, - 49.21875 - ], - [ - -105.46875, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 199, - 'geohash': '9zc', - 'center': [ - -99.140625, - 44.296875 - ], - 'rectangle': [ - [ - -99.84375, - 43.59375 - ], - [ - -98.4375, - 43.59375 - ], - [ - -98.4375, - 45 - ], - [ - -99.84375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 198, - 'geohash': 'cbk', - 'center': [ - -94.921875, - 47.109375 - ], - 'rectangle': [ - [ - -95.625, - 46.40625 - ], - [ - -94.21875, - 46.40625 - ], - [ - -94.21875, - 47.8125 - ], - [ - -95.625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 198, - 'geohash': '9yc', - 'center': [ - -99.140625, - 38.671875 - ], - 'rectangle': [ - [ - -99.84375, - 37.96875 - ], - [ - -98.4375, - 37.96875 - ], - [ - -98.4375, - 39.375 - ], - [ - -99.84375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -155.390625, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 197, - 'geohash': 'bd9', - 'center': [ - -155.390625, - 59.765625 - ], - 'rectangle': [ - [ - -156.09375, - 59.0625 - ], - [ - -154.6875, - 59.0625 - ], - [ - -154.6875, - 60.46875 - ], - [ - -156.09375, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 197, - 'geohash': 'bd2', - 'center': [ - -156.796875, - 58.359375 - ], - 'rectangle': [ - [ - -157.5, - 57.65625 - ], - [ - -156.09375, - 57.65625 - ], - [ - -156.09375, - 59.0625 - ], - [ - -157.5, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 197, - 'geohash': '9wk', - 'center': [ - -106.171875, - 35.859375 - ], - 'rectangle': [ - [ - -106.875, - 35.15625 - ], - [ - -105.46875, - 35.15625 - ], - [ - -105.46875, - 36.5625 - ], - [ - -106.875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 195, - 'geohash': '9r4', - 'center': [ - -120.234375, - 40.078125 - ], - 'rectangle': [ - [ - -120.9375, - 39.375 - ], - [ - -119.53125, - 39.375 - ], - [ - -119.53125, - 40.78125 - ], - [ - -120.9375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 194, - 'geohash': '9xm', - 'center': [ - -104.765625, - 41.484375 - ], - 'rectangle': [ - [ - -105.46875, - 40.78125 - ], - [ - -104.0625, - 40.78125 - ], - [ - -104.0625, - 42.1875 - ], - [ - -105.46875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 194, - 'geohash': '9v4', - 'center': [ - -97.734375, - 28.828125 - ], - 'rectangle': [ - [ - -98.4375, - 28.125 - ], - [ - -97.03125, - 28.125 - ], - [ - -97.03125, - 29.53125 - ], - [ - -98.4375, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 193, - 'geohash': '9x9', - 'center': [ - -110.390625, - 42.890625 - ], - 'rectangle': [ - [ - -111.09375, - 42.1875 - ], - [ - -109.6875, - 42.1875 - ], - [ - -109.6875, - 43.59375 - ], - [ - -111.09375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 193, - 'geohash': '9pp', - 'center': [ - -124.453125, - 40.078125 - ], - 'rectangle': [ - [ - -125.15625, - 39.375 - ], - [ - -123.75, - 39.375 - ], - [ - -123.75, - 40.78125 - ], - [ - -125.15625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 192, - 'geohash': 'cb0', - 'center': [ - -100.546875, - 45.703125 - ], - 'rectangle': [ - [ - -101.25, - 45 - ], - [ - -99.84375, - 45 - ], - [ - -99.84375, - 46.40625 - ], - [ - -101.25, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 186, - 'geohash': 'c89', - 'center': [ - -110.390625, - 48.515625 - ], - 'rectangle': [ - [ - -111.09375, - 47.8125 - ], - [ - -109.6875, - 47.8125 - ], - [ - -109.6875, - 49.21875 - ], - [ - -111.09375, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 186, - 'geohash': '9v9', - 'center': [ - -99.140625, - 31.640625 - ], - 'rectangle': [ - [ - -99.84375, - 30.9375 - ], - [ - -98.4375, - 30.9375 - ], - [ - -98.4375, - 32.34375 - ], - [ - -99.84375, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 186, - 'geohash': '9qw', - 'center': [ - -114.609375, - 37.265625 - ], - 'rectangle': [ - [ - -115.3125, - 36.5625 - ], - [ - -113.90625, - 36.5625 - ], - [ - -113.90625, - 37.96875 - ], - [ - -115.3125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -68.203125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 185, - 'geohash': 'f2p', - 'center': [ - -68.203125, - 45.703125 - ], - 'rectangle': [ - [ - -68.90625, - 45 - ], - [ - -67.5, - 45 - ], - [ - -67.5, - 46.40625 - ], - [ - -68.90625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 185, - 'geohash': 'b7t', - 'center': [ - -161.015625, - 65.390625 - ], - 'rectangle': [ - [ - -161.71875, - 64.6875 - ], - [ - -160.3125, - 64.6875 - ], - [ - -160.3125, - 66.09375 - ], - [ - -161.71875, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 184, - 'geohash': 'cbm', - 'center': [ - -93.515625, - 47.109375 - ], - 'rectangle': [ - [ - -94.21875, - 46.40625 - ], - [ - -92.8125, - 46.40625 - ], - [ - -92.8125, - 47.8125 - ], - [ - -94.21875, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 184, - 'geohash': 'bd8', - 'center': [ - -156.796875, - 59.765625 - ], - 'rectangle': [ - [ - -157.5, - 59.0625 - ], - [ - -156.09375, - 59.0625 - ], - [ - -156.09375, - 60.46875 - ], - [ - -157.5, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 183, - 'geohash': 'c2s', - 'center': [ - -117.421875, - 48.515625 - ], - 'rectangle': [ - [ - -118.125, - 47.8125 - ], - [ - -116.71875, - 47.8125 - ], - [ - -116.71875, - 49.21875 - ], - [ - -118.125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 183, - 'geohash': 'b7k', - 'center': [ - -162.421875, - 63.984375 - ], - 'rectangle': [ - [ - -163.125, - 63.28125 - ], - [ - -161.71875, - 63.28125 - ], - [ - -161.71875, - 64.6875 - ], - [ - -163.125, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -68.203125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 182, - 'geohash': 'drz', - 'center': [ - -68.203125, - 44.296875 - ], - 'rectangle': [ - [ - -68.90625, - 43.59375 - ], - [ - -67.5, - 43.59375 - ], - [ - -67.5, - 45 - ], - [ - -68.90625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 180, - 'geohash': '9wu', - 'center': [ - -106.171875, - 38.671875 - ], - 'rectangle': [ - [ - -106.875, - 37.96875 - ], - [ - -105.46875, - 37.96875 - ], - [ - -105.46875, - 39.375 - ], - [ - -106.875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 179, - 'geohash': 'c84', - 'center': [ - -108.984375, - 45.703125 - ], - 'rectangle': [ - [ - -109.6875, - 45 - ], - [ - -108.28125, - 45 - ], - [ - -108.28125, - 46.40625 - ], - [ - -109.6875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 178, - 'geohash': 'c8d', - 'center': [ - -108.984375, - 48.515625 - ], - 'rectangle': [ - [ - -109.6875, - 47.8125 - ], - [ - -108.28125, - 47.8125 - ], - [ - -108.28125, - 49.21875 - ], - [ - -109.6875, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 177, - 'geohash': '9y0', - 'center': [ - -100.546875, - 34.453125 - ], - 'rectangle': [ - [ - -101.25, - 33.75 - ], - [ - -99.84375, - 33.75 - ], - [ - -99.84375, - 35.15625 - ], - [ - -101.25, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 176, - 'geohash': '9wh', - 'center': [ - -106.171875, - 34.453125 - ], - 'rectangle': [ - [ - -106.875, - 33.75 - ], - [ - -105.46875, - 33.75 - ], - [ - -105.46875, - 35.15625 - ], - [ - -106.875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 175, - 'geohash': '9xw', - 'center': [ - -103.359375, - 42.890625 - ], - 'rectangle': [ - [ - -104.0625, - 42.1875 - ], - [ - -102.65625, - 42.1875 - ], - [ - -102.65625, - 43.59375 - ], - [ - -104.0625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 173, - 'geohash': 'dnz', - 'center': [ - -79.453125, - 38.671875 - ], - 'rectangle': [ - [ - -80.15625, - 37.96875 - ], - [ - -78.75, - 37.96875 - ], - [ - -78.75, - 39.375 - ], - [ - -80.15625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 173, - 'geohash': '9ts', - 'center': [ - -106.171875, - 31.640625 - ], - 'rectangle': [ - [ - -106.875, - 30.9375 - ], - [ - -105.46875, - 30.9375 - ], - [ - -105.46875, - 32.34375 - ], - [ - -106.875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 172, - 'geohash': '9xh', - 'center': [ - -106.171875, - 40.078125 - ], - 'rectangle': [ - [ - -106.875, - 39.375 - ], - [ - -105.46875, - 39.375 - ], - [ - -105.46875, - 40.78125 - ], - [ - -106.875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 171, - 'geohash': 'c2d', - 'center': [ - -120.234375, - 48.515625 - ], - 'rectangle': [ - [ - -120.9375, - 47.8125 - ], - [ - -119.53125, - 47.8125 - ], - [ - -119.53125, - 49.21875 - ], - [ - -120.9375, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 171, - 'geohash': 'bdb', - 'center': [ - -156.796875, - 61.171875 - ], - 'rectangle': [ - [ - -157.5, - 60.46875 - ], - [ - -156.09375, - 60.46875 - ], - [ - -156.09375, - 61.875 - ], - [ - -157.5, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 26.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 169, - 'geohash': 'dht', - 'center': [ - -82.265625, - 26.015625 - ], - 'rectangle': [ - [ - -82.96875, - 25.3125 - ], - [ - -81.5625, - 25.3125 - ], - [ - -81.5625, - 26.71875 - ], - [ - -82.96875, - 26.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 165, - 'geohash': 'c8q', - 'center': [ - -103.359375, - 47.109375 - ], - 'rectangle': [ - [ - -104.0625, - 46.40625 - ], - [ - -102.65625, - 46.40625 - ], - [ - -102.65625, - 47.8125 - ], - [ - -104.0625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 163, - 'geohash': 'dpf', - 'center': [ - -86.484375, - 44.296875 - ], - 'rectangle': [ - [ - -87.1875, - 43.59375 - ], - [ - -85.78125, - 43.59375 - ], - [ - -85.78125, - 45 - ], - [ - -87.1875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 162, - 'geohash': 'cb8', - 'center': [ - -100.546875, - 48.515625 - ], - 'rectangle': [ - [ - -101.25, - 47.8125 - ], - [ - -99.84375, - 47.8125 - ], - [ - -99.84375, - 49.21875 - ], - [ - -101.25, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 162, - 'geohash': '9x1', - 'center': [ - -110.390625, - 40.078125 - ], - 'rectangle': [ - [ - -111.09375, - 39.375 - ], - [ - -109.6875, - 39.375 - ], - [ - -109.6875, - 40.78125 - ], - [ - -111.09375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 161, - 'geohash': 'b6r', - 'center': [ - -158.203125, - 58.359375 - ], - 'rectangle': [ - [ - -158.90625, - 57.65625 - ], - [ - -157.5, - 57.65625 - ], - [ - -157.5, - 59.0625 - ], - [ - -158.90625, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 161, - 'geohash': '9tg', - 'center': [ - -107.578125, - 33.046875 - ], - 'rectangle': [ - [ - -108.28125, - 32.34375 - ], - [ - -106.875, - 32.34375 - ], - [ - -106.875, - 33.75 - ], - [ - -108.28125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 20.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 161, - 'geohash': '8e8', - 'center': [ - -156.796875, - 20.390625 - ], - 'rectangle': [ - [ - -157.5, - 19.6875 - ], - [ - -156.09375, - 19.6875 - ], - [ - -156.09375, - 21.09375 - ], - [ - -157.5, - 21.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 160, - 'geohash': 'dq1', - 'center': [ - -76.640625, - 34.453125 - ], - 'rectangle': [ - [ - -77.34375, - 33.75 - ], - [ - -75.9375, - 33.75 - ], - [ - -75.9375, - 35.15625 - ], - [ - -77.34375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 160, - 'geohash': 'c81', - 'center': [ - -110.390625, - 45.703125 - ], - 'rectangle': [ - [ - -111.09375, - 45 - ], - [ - -109.6875, - 45 - ], - [ - -109.6875, - 46.40625 - ], - [ - -111.09375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 160, - 'geohash': 'c29', - 'center': [ - -121.640625, - 48.515625 - ], - 'rectangle': [ - [ - -122.34375, - 47.8125 - ], - [ - -120.9375, - 47.8125 - ], - [ - -120.9375, - 49.21875 - ], - [ - -122.34375, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 160, - 'geohash': 'bds', - 'center': [ - -151.171875, - 59.765625 - ], - 'rectangle': [ - [ - -151.875, - 59.0625 - ], - [ - -150.46875, - 59.0625 - ], - [ - -150.46875, - 60.46875 - ], - [ - -151.875, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 160, - 'geohash': '9ws', - 'center': [ - -106.171875, - 37.265625 - ], - 'rectangle': [ - [ - -106.875, - 36.5625 - ], - [ - -105.46875, - 36.5625 - ], - [ - -105.46875, - 37.96875 - ], - [ - -106.875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 158, - 'geohash': 'c8m', - 'center': [ - -104.765625, - 47.109375 - ], - 'rectangle': [ - [ - -105.46875, - 46.40625 - ], - [ - -104.0625, - 46.40625 - ], - [ - -104.0625, - 47.8125 - ], - [ - -105.46875, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 158, - 'geohash': 'c0p', - 'center': [ - -124.453125, - 45.703125 - ], - 'rectangle': [ - [ - -125.15625, - 45 - ], - [ - -123.75, - 45 - ], - [ - -123.75, - 46.40625 - ], - [ - -125.15625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 158, - 'geohash': 'beb', - 'center': [ - -156.796875, - 66.796875 - ], - 'rectangle': [ - [ - -157.5, - 66.09375 - ], - [ - -156.09375, - 66.09375 - ], - [ - -156.09375, - 67.5 - ], - [ - -157.5, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 158, - 'geohash': '9xb', - 'center': [ - -111.796875, - 44.296875 - ], - 'rectangle': [ - [ - -112.5, - 43.59375 - ], - [ - -111.09375, - 43.59375 - ], - [ - -111.09375, - 45 - ], - [ - -112.5, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 157, - 'geohash': '9rt', - 'center': [ - -116.015625, - 42.890625 - ], - 'rectangle': [ - [ - -116.71875, - 42.1875 - ], - [ - -115.3125, - 42.1875 - ], - [ - -115.3125, - 43.59375 - ], - [ - -116.71875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 156, - 'geohash': 'bfb', - 'center': [ - -145.546875, - 61.171875 - ], - 'rectangle': [ - [ - -146.25, - 60.46875 - ], - [ - -144.84375, - 60.46875 - ], - [ - -144.84375, - 61.875 - ], - [ - -146.25, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 156, - 'geohash': '9tq', - 'center': [ - -103.359375, - 30.234375 - ], - 'rectangle': [ - [ - -104.0625, - 29.53125 - ], - [ - -102.65625, - 29.53125 - ], - [ - -102.65625, - 30.9375 - ], - [ - -104.0625, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 155, - 'geohash': 'c86', - 'center': [ - -108.984375, - 47.109375 - ], - 'rectangle': [ - [ - -109.6875, - 46.40625 - ], - [ - -108.28125, - 46.40625 - ], - [ - -108.28125, - 47.8125 - ], - [ - -109.6875, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 155, - 'geohash': '9r6', - 'center': [ - -120.234375, - 41.484375 - ], - 'rectangle': [ - [ - -120.9375, - 40.78125 - ], - [ - -119.53125, - 40.78125 - ], - [ - -119.53125, - 42.1875 - ], - [ - -120.9375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 154, - 'geohash': 'cb9', - 'center': [ - -99.140625, - 48.515625 - ], - 'rectangle': [ - [ - -99.84375, - 47.8125 - ], - [ - -98.4375, - 47.8125 - ], - [ - -98.4375, - 49.21875 - ], - [ - -99.84375, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 153, - 'geohash': 'dq6', - 'center': [ - -75.234375, - 35.859375 - ], - 'rectangle': [ - [ - -75.9375, - 35.15625 - ], - [ - -74.53125, - 35.15625 - ], - [ - -74.53125, - 36.5625 - ], - [ - -75.9375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 153, - 'geohash': '9px', - 'center': [ - -124.453125, - 42.890625 - ], - 'rectangle': [ - [ - -125.15625, - 42.1875 - ], - [ - -123.75, - 42.1875 - ], - [ - -123.75, - 43.59375 - ], - [ - -125.15625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -153.984375, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 152, - 'geohash': 'bd4', - 'center': [ - -153.984375, - 56.953125 - ], - 'rectangle': [ - [ - -154.6875, - 56.25 - ], - [ - -153.28125, - 56.25 - ], - [ - -153.28125, - 57.65625 - ], - [ - -154.6875, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 152, - 'geohash': '9my', - 'center': [ - -114.609375, - 33.046875 - ], - 'rectangle': [ - [ - -115.3125, - 32.34375 - ], - [ - -113.90625, - 32.34375 - ], - [ - -113.90625, - 33.75 - ], - [ - -115.3125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 21.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 152, - 'geohash': '87z', - 'center': [ - -158.203125, - 21.796875 - ], - 'rectangle': [ - [ - -158.90625, - 21.09375 - ], - [ - -157.5, - 21.09375 - ], - [ - -157.5, - 22.5 - ], - [ - -158.90625, - 22.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 151, - 'geohash': 'c2m', - 'center': [ - -116.015625, - 47.109375 - ], - 'rectangle': [ - [ - -116.71875, - 46.40625 - ], - [ - -115.3125, - 46.40625 - ], - [ - -115.3125, - 47.8125 - ], - [ - -116.71875, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 150, - 'geohash': '9x3', - 'center': [ - -110.390625, - 41.484375 - ], - 'rectangle': [ - [ - -111.09375, - 40.78125 - ], - [ - -109.6875, - 40.78125 - ], - [ - -109.6875, - 42.1875 - ], - [ - -111.09375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 150, - 'geohash': '9w2', - 'center': [ - -111.796875, - 35.859375 - ], - 'rectangle': [ - [ - -112.5, - 35.15625 - ], - [ - -111.09375, - 35.15625 - ], - [ - -111.09375, - 36.5625 - ], - [ - -112.5, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 150, - 'geohash': '9pz', - 'center': [ - -124.453125, - 44.296875 - ], - 'rectangle': [ - [ - -125.15625, - 43.59375 - ], - [ - -123.75, - 43.59375 - ], - [ - -123.75, - 45 - ], - [ - -125.15625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 149, - 'geohash': 'cbr', - 'center': [ - -90.703125, - 47.109375 - ], - 'rectangle': [ - [ - -91.40625, - 46.40625 - ], - [ - -90, - 46.40625 - ], - [ - -90, - 47.8125 - ], - [ - -91.40625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 149, - 'geohash': '9wg', - 'center': [ - -107.578125, - 38.671875 - ], - 'rectangle': [ - [ - -108.28125, - 37.96875 - ], - [ - -106.875, - 37.96875 - ], - [ - -106.875, - 39.375 - ], - [ - -108.28125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 148, - 'geohash': '9vb', - 'center': [ - -100.546875, - 33.046875 - ], - 'rectangle': [ - [ - -101.25, - 32.34375 - ], - [ - -99.84375, - 32.34375 - ], - [ - -99.84375, - 33.75 - ], - [ - -101.25, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 147, - 'geohash': '9z8', - 'center': [ - -100.546875, - 42.890625 - ], - 'rectangle': [ - [ - -101.25, - 42.1875 - ], - [ - -99.84375, - 42.1875 - ], - [ - -99.84375, - 43.59375 - ], - [ - -101.25, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 147, - 'geohash': '9z2', - 'center': [ - -100.546875, - 41.484375 - ], - 'rectangle': [ - [ - -101.25, - 40.78125 - ], - [ - -99.84375, - 40.78125 - ], - [ - -99.84375, - 42.1875 - ], - [ - -101.25, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 147, - 'geohash': '9w4', - 'center': [ - -108.984375, - 34.453125 - ], - 'rectangle': [ - [ - -109.6875, - 33.75 - ], - [ - -108.28125, - 33.75 - ], - [ - -108.28125, - 35.15625 - ], - [ - -109.6875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 146, - 'geohash': '9wc', - 'center': [ - -110.390625, - 38.671875 - ], - 'rectangle': [ - [ - -111.09375, - 37.96875 - ], - [ - -109.6875, - 37.96875 - ], - [ - -109.6875, - 39.375 - ], - [ - -111.09375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 146, - 'geohash': '9mz', - 'center': [ - -113.203125, - 33.046875 - ], - 'rectangle': [ - [ - -113.90625, - 32.34375 - ], - [ - -112.5, - 32.34375 - ], - [ - -112.5, - 33.75 - ], - [ - -113.90625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -68.203125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 145, - 'geohash': 'f2r', - 'center': [ - -68.203125, - 47.109375 - ], - 'rectangle': [ - [ - -68.90625, - 46.40625 - ], - [ - -67.5, - 46.40625 - ], - [ - -67.5, - 47.8125 - ], - [ - -68.90625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -131.484375, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 145, - 'geohash': 'c1f', - 'center': [ - -131.484375, - 55.546875 - ], - 'rectangle': [ - [ - -132.1875, - 54.84375 - ], - [ - -130.78125, - 54.84375 - ], - [ - -130.78125, - 56.25 - ], - [ - -132.1875, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -155.390625, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 145, - 'geohash': 'be1', - 'center': [ - -155.390625, - 62.578125 - ], - 'rectangle': [ - [ - -156.09375, - 61.875 - ], - [ - -154.6875, - 61.875 - ], - [ - -154.6875, - 63.28125 - ], - [ - -156.09375, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 144, - 'geohash': '9x8', - 'center': [ - -111.796875, - 42.890625 - ], - 'rectangle': [ - [ - -112.5, - 42.1875 - ], - [ - -111.09375, - 42.1875 - ], - [ - -111.09375, - 43.59375 - ], - [ - -112.5, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 144, - 'geohash': '9rx', - 'center': [ - -113.203125, - 42.890625 - ], - 'rectangle': [ - [ - -113.90625, - 42.1875 - ], - [ - -112.5, - 42.1875 - ], - [ - -112.5, - 43.59375 - ], - [ - -113.90625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 143, - 'geohash': 'bev', - 'center': [ - -149.765625, - 66.796875 - ], - 'rectangle': [ - [ - -150.46875, - 66.09375 - ], - [ - -149.0625, - 66.09375 - ], - [ - -149.0625, - 67.5 - ], - [ - -150.46875, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 143, - 'geohash': '9wt', - 'center': [ - -104.765625, - 37.265625 - ], - 'rectangle': [ - [ - -105.46875, - 36.5625 - ], - [ - -104.0625, - 36.5625 - ], - [ - -104.0625, - 37.96875 - ], - [ - -105.46875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 21.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 143, - 'geohash': '87y', - 'center': [ - -159.609375, - 21.796875 - ], - 'rectangle': [ - [ - -160.3125, - 21.09375 - ], - [ - -158.90625, - 21.09375 - ], - [ - -158.90625, - 22.5 - ], - [ - -160.3125, - 22.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 141, - 'geohash': 'drf', - 'center': [ - -75.234375, - 44.296875 - ], - 'rectangle': [ - [ - -75.9375, - 43.59375 - ], - [ - -74.53125, - 43.59375 - ], - [ - -74.53125, - 45 - ], - [ - -75.9375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 141, - 'geohash': 'c2w', - 'center': [ - -114.609375, - 48.515625 - ], - 'rectangle': [ - [ - -115.3125, - 47.8125 - ], - [ - -113.90625, - 47.8125 - ], - [ - -113.90625, - 49.21875 - ], - [ - -115.3125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 141, - 'geohash': 'c2t', - 'center': [ - -116.015625, - 48.515625 - ], - 'rectangle': [ - [ - -116.71875, - 47.8125 - ], - [ - -115.3125, - 47.8125 - ], - [ - -115.3125, - 49.21875 - ], - [ - -116.71875, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 141, - 'geohash': '9r5', - 'center': [ - -118.828125, - 40.078125 - ], - 'rectangle': [ - [ - -119.53125, - 39.375 - ], - [ - -118.125, - 39.375 - ], - [ - -118.125, - 40.78125 - ], - [ - -119.53125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 141, - 'geohash': '9qk', - 'center': [ - -117.421875, - 35.859375 - ], - 'rectangle': [ - [ - -118.125, - 35.15625 - ], - [ - -116.71875, - 35.15625 - ], - [ - -116.71875, - 36.5625 - ], - [ - -118.125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -144.140625, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 139, - 'geohash': 'bg9', - 'center': [ - -144.140625, - 65.390625 - ], - 'rectangle': [ - [ - -144.84375, - 64.6875 - ], - [ - -143.4375, - 64.6875 - ], - [ - -143.4375, - 66.09375 - ], - [ - -144.84375, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 138, - 'geohash': 'c2j', - 'center': [ - -116.015625, - 45.703125 - ], - 'rectangle': [ - [ - -116.71875, - 45 - ], - [ - -115.3125, - 45 - ], - [ - -115.3125, - 46.40625 - ], - [ - -116.71875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 138, - 'geohash': 'c2h', - 'center': [ - -117.421875, - 45.703125 - ], - 'rectangle': [ - [ - -118.125, - 45 - ], - [ - -116.71875, - 45 - ], - [ - -116.71875, - 46.40625 - ], - [ - -118.125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -163.828125, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 138, - 'geohash': 'b6e', - 'center': [ - -163.828125, - 59.765625 - ], - 'rectangle': [ - [ - -164.53125, - 59.0625 - ], - [ - -163.125, - 59.0625 - ], - [ - -163.125, - 60.46875 - ], - [ - -164.53125, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 138, - 'geohash': '9xf', - 'center': [ - -108.984375, - 44.296875 - ], - 'rectangle': [ - [ - -109.6875, - 43.59375 - ], - [ - -108.28125, - 43.59375 - ], - [ - -108.28125, - 45 - ], - [ - -109.6875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 138, - 'geohash': '9wy', - 'center': [ - -103.359375, - 38.671875 - ], - 'rectangle': [ - [ - -104.0625, - 37.96875 - ], - [ - -102.65625, - 37.96875 - ], - [ - -102.65625, - 39.375 - ], - [ - -104.0625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 138, - 'geohash': '9wb', - 'center': [ - -111.796875, - 38.671875 - ], - 'rectangle': [ - [ - -112.5, - 37.96875 - ], - [ - -111.09375, - 37.96875 - ], - [ - -111.09375, - 39.375 - ], - [ - -112.5, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 137, - 'geohash': 'bet', - 'center': [ - -149.765625, - 65.390625 - ], - 'rectangle': [ - [ - -150.46875, - 64.6875 - ], - [ - -149.0625, - 64.6875 - ], - [ - -149.0625, - 66.09375 - ], - [ - -150.46875, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 137, - 'geohash': '9qg', - 'center': [ - -118.828125, - 38.671875 - ], - 'rectangle': [ - [ - -119.53125, - 37.96875 - ], - [ - -118.125, - 37.96875 - ], - [ - -118.125, - 39.375 - ], - [ - -119.53125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 136, - 'geohash': 'c8w', - 'center': [ - -103.359375, - 48.515625 - ], - 'rectangle': [ - [ - -104.0625, - 47.8125 - ], - [ - -102.65625, - 47.8125 - ], - [ - -102.65625, - 49.21875 - ], - [ - -104.0625, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 136, - 'geohash': 'c2e', - 'center': [ - -118.828125, - 48.515625 - ], - 'rectangle': [ - [ - -119.53125, - 47.8125 - ], - [ - -118.125, - 47.8125 - ], - [ - -118.125, - 49.21875 - ], - [ - -119.53125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 14.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 136, - 'geohash': '8f8', - 'center': [ - -145.546875, - 14.765625 - ], - 'rectangle': [ - [ - -146.25, - 14.0625 - ], - [ - -144.84375, - 14.0625 - ], - [ - -144.84375, - 15.46875 - ], - [ - -146.25, - 15.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 135, - 'geohash': 'c8j', - 'center': [ - -104.765625, - 45.703125 - ], - 'rectangle': [ - [ - -105.46875, - 45 - ], - [ - -104.0625, - 45 - ], - [ - -104.0625, - 46.40625 - ], - [ - -105.46875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 135, - 'geohash': '9qs', - 'center': [ - -117.421875, - 37.265625 - ], - 'rectangle': [ - [ - -118.125, - 36.5625 - ], - [ - -116.71875, - 36.5625 - ], - [ - -116.71875, - 37.96875 - ], - [ - -118.125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 133, - 'geohash': 'c8r', - 'center': [ - -101.953125, - 47.109375 - ], - 'rectangle': [ - [ - -102.65625, - 46.40625 - ], - [ - -101.25, - 46.40625 - ], - [ - -101.25, - 47.8125 - ], - [ - -102.65625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 130, - 'geohash': 'be7', - 'center': [ - -152.578125, - 63.984375 - ], - 'rectangle': [ - [ - -153.28125, - 63.28125 - ], - [ - -151.875, - 63.28125 - ], - [ - -151.875, - 64.6875 - ], - [ - -153.28125, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -66.796875, - 18.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 128, - 'geohash': 'de2', - 'center': [ - -66.796875, - 18.984375 - ], - 'rectangle': [ - [ - -67.5, - 18.28125 - ], - [ - -66.09375, - 18.28125 - ], - [ - -66.09375, - 19.6875 - ], - [ - -67.5, - 19.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 122, - 'geohash': 'bgb', - 'center': [ - -145.546875, - 66.796875 - ], - 'rectangle': [ - [ - -146.25, - 66.09375 - ], - [ - -144.84375, - 66.09375 - ], - [ - -144.84375, - 67.5 - ], - [ - -146.25, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 119, - 'geohash': 'c8h', - 'center': [ - -106.171875, - 45.703125 - ], - 'rectangle': [ - [ - -106.875, - 45 - ], - [ - -105.46875, - 45 - ], - [ - -105.46875, - 46.40625 - ], - [ - -106.875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 119, - 'geohash': 'bsj', - 'center': [ - -149.765625, - 68.203125 - ], - 'rectangle': [ - [ - -150.46875, - 67.5 - ], - [ - -149.0625, - 67.5 - ], - [ - -149.0625, - 68.90625 - ], - [ - -150.46875, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -141.328125, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 118, - 'geohash': 'bg7', - 'center': [ - -141.328125, - 63.984375 - ], - 'rectangle': [ - [ - -142.03125, - 63.28125 - ], - [ - -140.625, - 63.28125 - ], - [ - -140.625, - 64.6875 - ], - [ - -142.03125, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 116, - 'geohash': '9rq', - 'center': [ - -114.609375, - 41.484375 - ], - 'rectangle': [ - [ - -115.3125, - 40.78125 - ], - [ - -113.90625, - 40.78125 - ], - [ - -113.90625, - 42.1875 - ], - [ - -115.3125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 116, - 'geohash': '9rm', - 'center': [ - -116.015625, - 41.484375 - ], - 'rectangle': [ - [ - -116.71875, - 40.78125 - ], - [ - -115.3125, - 40.78125 - ], - [ - -115.3125, - 42.1875 - ], - [ - -116.71875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 115, - 'geohash': '9xk', - 'center': [ - -106.171875, - 41.484375 - ], - 'rectangle': [ - [ - -106.875, - 40.78125 - ], - [ - -105.46875, - 40.78125 - ], - [ - -105.46875, - 42.1875 - ], - [ - -106.875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 115, - 'geohash': '9xd', - 'center': [ - -108.984375, - 42.890625 - ], - 'rectangle': [ - [ - -109.6875, - 42.1875 - ], - [ - -108.28125, - 42.1875 - ], - [ - -108.28125, - 43.59375 - ], - [ - -109.6875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 114, - 'geohash': 'cbt', - 'center': [ - -93.515625, - 48.515625 - ], - 'rectangle': [ - [ - -94.21875, - 47.8125 - ], - [ - -92.8125, - 47.8125 - ], - [ - -92.8125, - 49.21875 - ], - [ - -94.21875, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 114, - 'geohash': '9xt', - 'center': [ - -104.765625, - 42.890625 - ], - 'rectangle': [ - [ - -105.46875, - 42.1875 - ], - [ - -104.0625, - 42.1875 - ], - [ - -104.0625, - 43.59375 - ], - [ - -105.46875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 114, - 'geohash': '9x7', - 'center': [ - -107.578125, - 41.484375 - ], - 'rectangle': [ - [ - -108.28125, - 40.78125 - ], - [ - -106.875, - 40.78125 - ], - [ - -106.875, - 42.1875 - ], - [ - -108.28125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 114, - 'geohash': '9x4', - 'center': [ - -108.984375, - 40.078125 - ], - 'rectangle': [ - [ - -109.6875, - 39.375 - ], - [ - -108.28125, - 39.375 - ], - [ - -108.28125, - 40.78125 - ], - [ - -109.6875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 113, - 'geohash': '9rh', - 'center': [ - -117.421875, - 40.078125 - ], - 'rectangle': [ - [ - -118.125, - 39.375 - ], - [ - -116.71875, - 39.375 - ], - [ - -116.71875, - 40.78125 - ], - [ - -118.125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 112, - 'geohash': 'c82', - 'center': [ - -111.796875, - 47.109375 - ], - 'rectangle': [ - [ - -112.5, - 46.40625 - ], - [ - -111.09375, - 46.40625 - ], - [ - -111.09375, - 47.8125 - ], - [ - -112.5, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 112, - 'geohash': 'c21', - 'center': [ - -121.640625, - 45.703125 - ], - 'rectangle': [ - [ - -122.34375, - 45 - ], - [ - -120.9375, - 45 - ], - [ - -120.9375, - 46.40625 - ], - [ - -122.34375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -142.734375, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 112, - 'geohash': 'bg4', - 'center': [ - -142.734375, - 62.578125 - ], - 'rectangle': [ - [ - -143.4375, - 61.875 - ], - [ - -142.03125, - 61.875 - ], - [ - -142.03125, - 63.28125 - ], - [ - -143.4375, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 112, - 'geohash': '9w9', - 'center': [ - -110.390625, - 37.265625 - ], - 'rectangle': [ - [ - -111.09375, - 36.5625 - ], - [ - -109.6875, - 36.5625 - ], - [ - -109.6875, - 37.96875 - ], - [ - -111.09375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 112, - 'geohash': '9qj', - 'center': [ - -116.015625, - 34.453125 - ], - 'rectangle': [ - [ - -116.71875, - 33.75 - ], - [ - -115.3125, - 33.75 - ], - [ - -115.3125, - 35.15625 - ], - [ - -116.71875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 111, - 'geohash': 'c8s', - 'center': [ - -106.171875, - 48.515625 - ], - 'rectangle': [ - [ - -106.875, - 47.8125 - ], - [ - -105.46875, - 47.8125 - ], - [ - -105.46875, - 49.21875 - ], - [ - -106.875, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 111, - 'geohash': 'c0x', - 'center': [ - -124.453125, - 48.515625 - ], - 'rectangle': [ - [ - -125.15625, - 47.8125 - ], - [ - -123.75, - 47.8125 - ], - [ - -123.75, - 49.21875 - ], - [ - -125.15625, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 27.421875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 111, - 'geohash': '9uc', - 'center': [ - -99.140625, - 27.421875 - ], - 'rectangle': [ - [ - -99.84375, - 26.71875 - ], - [ - -98.4375, - 26.71875 - ], - [ - -98.4375, - 28.125 - ], - [ - -99.84375, - 28.125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 111, - 'geohash': '9td', - 'center': [ - -108.984375, - 31.640625 - ], - 'rectangle': [ - [ - -109.6875, - 30.9375 - ], - [ - -108.28125, - 30.9375 - ], - [ - -108.28125, - 32.34375 - ], - [ - -109.6875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 111, - 'geohash': '9qz', - 'center': [ - -113.203125, - 38.671875 - ], - 'rectangle': [ - [ - -113.90625, - 37.96875 - ], - [ - -112.5, - 37.96875 - ], - [ - -112.5, - 39.375 - ], - [ - -113.90625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 111, - 'geohash': '9q8', - 'center': [ - -123.046875, - 37.265625 - ], - 'rectangle': [ - [ - -123.75, - 36.5625 - ], - [ - -122.34375, - 36.5625 - ], - [ - -122.34375, - 37.96875 - ], - [ - -123.75, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -153.984375, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 110, - 'geohash': 'bdd', - 'center': [ - -153.984375, - 59.765625 - ], - 'rectangle': [ - [ - -154.6875, - 59.0625 - ], - [ - -153.28125, - 59.0625 - ], - [ - -153.28125, - 60.46875 - ], - [ - -154.6875, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 110, - 'geohash': '9wn', - 'center': [ - -103.359375, - 34.453125 - ], - 'rectangle': [ - [ - -104.0625, - 33.75 - ], - [ - -102.65625, - 33.75 - ], - [ - -102.65625, - 35.15625 - ], - [ - -104.0625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 110, - 'geohash': '9w5', - 'center': [ - -107.578125, - 34.453125 - ], - 'rectangle': [ - [ - -108.28125, - 33.75 - ], - [ - -106.875, - 33.75 - ], - [ - -106.875, - 35.15625 - ], - [ - -108.28125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 108, - 'geohash': '9wj', - 'center': [ - -104.765625, - 34.453125 - ], - 'rectangle': [ - [ - -105.46875, - 33.75 - ], - [ - -104.0625, - 33.75 - ], - [ - -104.0625, - 35.15625 - ], - [ - -105.46875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 108, - 'geohash': '9v0', - 'center': [ - -100.546875, - 28.828125 - ], - 'rectangle': [ - [ - -101.25, - 28.125 - ], - [ - -99.84375, - 28.125 - ], - [ - -99.84375, - 29.53125 - ], - [ - -101.25, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 108, - 'geohash': '9tt', - 'center': [ - -104.765625, - 31.640625 - ], - 'rectangle': [ - [ - -105.46875, - 30.9375 - ], - [ - -104.0625, - 30.9375 - ], - [ - -104.0625, - 32.34375 - ], - [ - -105.46875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 107, - 'geohash': 'c8n', - 'center': [ - -103.359375, - 45.703125 - ], - 'rectangle': [ - [ - -104.0625, - 45 - ], - [ - -102.65625, - 45 - ], - [ - -102.65625, - 46.40625 - ], - [ - -104.0625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 106, - 'geohash': 'be8', - 'center': [ - -156.796875, - 65.390625 - ], - 'rectangle': [ - [ - -157.5, - 64.6875 - ], - [ - -156.09375, - 64.6875 - ], - [ - -156.09375, - 66.09375 - ], - [ - -157.5, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -165.234375, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 106, - 'geohash': 'b74', - 'center': [ - -165.234375, - 62.578125 - ], - 'rectangle': [ - [ - -165.9375, - 61.875 - ], - [ - -164.53125, - 61.875 - ], - [ - -164.53125, - 63.28125 - ], - [ - -165.9375, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 105, - 'geohash': 'b7m', - 'center': [ - -161.015625, - 63.984375 - ], - 'rectangle': [ - [ - -161.71875, - 63.28125 - ], - [ - -160.3125, - 63.28125 - ], - [ - -160.3125, - 64.6875 - ], - [ - -161.71875, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 104, - 'geohash': 'bem', - 'center': [ - -149.765625, - 63.984375 - ], - 'rectangle': [ - [ - -150.46875, - 63.28125 - ], - [ - -149.0625, - 63.28125 - ], - [ - -149.0625, - 64.6875 - ], - [ - -150.46875, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 104, - 'geohash': 'b79', - 'center': [ - -166.640625, - 65.390625 - ], - 'rectangle': [ - [ - -167.34375, - 64.6875 - ], - [ - -165.9375, - 64.6875 - ], - [ - -165.9375, - 66.09375 - ], - [ - -167.34375, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 104, - 'geohash': '9wq', - 'center': [ - -103.359375, - 35.859375 - ], - 'rectangle': [ - [ - -104.0625, - 35.15625 - ], - [ - -102.65625, - 35.15625 - ], - [ - -102.65625, - 36.5625 - ], - [ - -104.0625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -169.453125, - 14.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 104, - 'geohash': '84x', - 'center': [ - -169.453125, - 14.765625 - ], - 'rectangle': [ - [ - -170.15625, - 14.0625 - ], - [ - -168.75, - 14.0625 - ], - [ - -168.75, - 15.46875 - ], - [ - -170.15625, - 15.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 103, - 'geohash': 'beu', - 'center': [ - -151.171875, - 66.796875 - ], - 'rectangle': [ - [ - -151.875, - 66.09375 - ], - [ - -150.46875, - 66.09375 - ], - [ - -150.46875, - 67.5 - ], - [ - -151.875, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 103, - 'geohash': '9x6', - 'center': [ - -108.984375, - 41.484375 - ], - 'rectangle': [ - [ - -109.6875, - 40.78125 - ], - [ - -108.28125, - 40.78125 - ], - [ - -108.28125, - 42.1875 - ], - [ - -109.6875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 102, - 'geohash': 'c0r', - 'center': [ - -124.453125, - 47.109375 - ], - 'rectangle': [ - [ - -125.15625, - 46.40625 - ], - [ - -123.75, - 46.40625 - ], - [ - -123.75, - 47.8125 - ], - [ - -125.15625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -146.953125, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 101, - 'geohash': 'bez', - 'center': [ - -146.953125, - 66.796875 - ], - 'rectangle': [ - [ - -147.65625, - 66.09375 - ], - [ - -146.25, - 66.09375 - ], - [ - -146.25, - 67.5 - ], - [ - -147.65625, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 101, - 'geohash': 'bdu', - 'center': [ - -151.171875, - 61.171875 - ], - 'rectangle': [ - [ - -151.875, - 60.46875 - ], - [ - -150.46875, - 60.46875 - ], - [ - -150.46875, - 61.875 - ], - [ - -151.875, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 100, - 'geohash': 'c2r', - 'center': [ - -113.203125, - 47.109375 - ], - 'rectangle': [ - [ - -113.90625, - 46.40625 - ], - [ - -112.5, - 46.40625 - ], - [ - -112.5, - 47.8125 - ], - [ - -113.90625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 100, - 'geohash': 'b3u', - 'center': [ - -162.421875, - 55.546875 - ], - 'rectangle': [ - [ - -163.125, - 54.84375 - ], - [ - -161.71875, - 54.84375 - ], - [ - -161.71875, - 56.25 - ], - [ - -163.125, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -66.796875, - 17.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 99, - 'geohash': 'de0', - 'center': [ - -66.796875, - 17.578125 - ], - 'rectangle': [ - [ - -67.5, - 16.875 - ], - [ - -66.09375, - 16.875 - ], - [ - -66.09375, - 18.28125 - ], - [ - -67.5, - 18.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -139.921875, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 99, - 'geohash': 'bfs', - 'center': [ - -139.921875, - 59.765625 - ], - 'rectangle': [ - [ - -140.625, - 59.0625 - ], - [ - -139.21875, - 59.0625 - ], - [ - -139.21875, - 60.46875 - ], - [ - -140.625, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 99, - 'geohash': '9te', - 'center': [ - -107.578125, - 31.640625 - ], - 'rectangle': [ - [ - -108.28125, - 30.9375 - ], - [ - -106.875, - 30.9375 - ], - [ - -106.875, - 32.34375 - ], - [ - -108.28125, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 98, - 'geohash': 'b3y', - 'center': [ - -159.609375, - 55.546875 - ], - 'rectangle': [ - [ - -160.3125, - 54.84375 - ], - [ - -158.90625, - 54.84375 - ], - [ - -158.90625, - 56.25 - ], - [ - -160.3125, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 98, - 'geohash': '9w7', - 'center': [ - -107.578125, - 35.859375 - ], - 'rectangle': [ - [ - -108.28125, - 35.15625 - ], - [ - -106.875, - 35.15625 - ], - [ - -106.875, - 36.5625 - ], - [ - -108.28125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 71.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 97, - 'geohash': 'bs8', - 'center': [ - -156.796875, - 71.015625 - ], - 'rectangle': [ - [ - -157.5, - 70.3125 - ], - [ - -156.09375, - 70.3125 - ], - [ - -156.09375, - 71.71875 - ], - [ - -157.5, - 71.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 97, - 'geohash': 'b7x', - 'center': [ - -158.203125, - 65.390625 - ], - 'rectangle': [ - [ - -158.90625, - 64.6875 - ], - [ - -157.5, - 64.6875 - ], - [ - -157.5, - 66.09375 - ], - [ - -158.90625, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 97, - 'geohash': '9rk', - 'center': [ - -117.421875, - 41.484375 - ], - 'rectangle': [ - [ - -118.125, - 40.78125 - ], - [ - -116.71875, - 40.78125 - ], - [ - -116.71875, - 42.1875 - ], - [ - -118.125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 96, - 'geohash': 'cb3', - 'center': [ - -99.140625, - 47.109375 - ], - 'rectangle': [ - [ - -99.84375, - 46.40625 - ], - [ - -98.4375, - 46.40625 - ], - [ - -98.4375, - 47.8125 - ], - [ - -99.84375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -142.734375, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 96, - 'geohash': 'bff', - 'center': [ - -142.734375, - 61.171875 - ], - 'rectangle': [ - [ - -143.4375, - 60.46875 - ], - [ - -142.03125, - 60.46875 - ], - [ - -142.03125, - 61.875 - ], - [ - -143.4375, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 95, - 'geohash': 'b7v', - 'center': [ - -161.015625, - 66.796875 - ], - 'rectangle': [ - [ - -161.71875, - 66.09375 - ], - [ - -160.3125, - 66.09375 - ], - [ - -160.3125, - 67.5 - ], - [ - -161.71875, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 95, - 'geohash': 'b6y', - 'center': [ - -159.609375, - 61.171875 - ], - 'rectangle': [ - [ - -160.3125, - 60.46875 - ], - [ - -158.90625, - 60.46875 - ], - [ - -158.90625, - 61.875 - ], - [ - -160.3125, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 21.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 95, - 'geohash': '8eb', - 'center': [ - -156.796875, - 21.796875 - ], - 'rectangle': [ - [ - -157.5, - 21.09375 - ], - [ - -156.09375, - 21.09375 - ], - [ - -156.09375, - 22.5 - ], - [ - -157.5, - 22.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 94, - 'geohash': 'c8k', - 'center': [ - -106.171875, - 47.109375 - ], - 'rectangle': [ - [ - -106.875, - 46.40625 - ], - [ - -105.46875, - 46.40625 - ], - [ - -105.46875, - 47.8125 - ], - [ - -106.875, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 94, - 'geohash': '9wf', - 'center': [ - -108.984375, - 38.671875 - ], - 'rectangle': [ - [ - -109.6875, - 37.96875 - ], - [ - -108.28125, - 37.96875 - ], - [ - -108.28125, - 39.375 - ], - [ - -109.6875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 93, - 'geohash': 'cbw', - 'center': [ - -92.109375, - 48.515625 - ], - 'rectangle': [ - [ - -92.8125, - 47.8125 - ], - [ - -91.40625, - 47.8125 - ], - [ - -91.40625, - 49.21875 - ], - [ - -92.8125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -163.828125, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 93, - 'geohash': 'b7e', - 'center': [ - -163.828125, - 65.390625 - ], - 'rectangle': [ - [ - -164.53125, - 64.6875 - ], - [ - -163.125, - 64.6875 - ], - [ - -163.125, - 66.09375 - ], - [ - -164.53125, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 93, - 'geohash': 'b3v', - 'center': [ - -161.015625, - 55.546875 - ], - 'rectangle': [ - [ - -161.71875, - 54.84375 - ], - [ - -160.3125, - 54.84375 - ], - [ - -160.3125, - 56.25 - ], - [ - -161.71875, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 93, - 'geohash': '9tv', - 'center': [ - -104.765625, - 33.046875 - ], - 'rectangle': [ - [ - -105.46875, - 32.34375 - ], - [ - -104.0625, - 32.34375 - ], - [ - -104.0625, - 33.75 - ], - [ - -105.46875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 93, - 'geohash': '9qu', - 'center': [ - -117.421875, - 38.671875 - ], - 'rectangle': [ - [ - -118.125, - 37.96875 - ], - [ - -116.71875, - 37.96875 - ], - [ - -116.71875, - 39.375 - ], - [ - -118.125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 91, - 'geohash': '9xu', - 'center': [ - -106.171875, - 44.296875 - ], - 'rectangle': [ - [ - -106.875, - 43.59375 - ], - [ - -105.46875, - 43.59375 - ], - [ - -105.46875, - 45 - ], - [ - -106.875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 90, - 'geohash': 'cbs', - 'center': [ - -94.921875, - 48.515625 - ], - 'rectangle': [ - [ - -95.625, - 47.8125 - ], - [ - -94.21875, - 47.8125 - ], - [ - -94.21875, - 49.21875 - ], - [ - -95.625, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -135.703125, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 88, - 'geohash': 'bfp', - 'center': [ - -135.703125, - 56.953125 - ], - 'rectangle': [ - [ - -136.40625, - 56.25 - ], - [ - -135, - 56.25 - ], - [ - -135, - 57.65625 - ], - [ - -136.40625, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 84, - 'geohash': '9qp', - 'center': [ - -113.203125, - 34.453125 - ], - 'rectangle': [ - [ - -113.90625, - 33.75 - ], - [ - -112.5, - 33.75 - ], - [ - -112.5, - 35.15625 - ], - [ - -113.90625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -66.796875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 83, - 'geohash': 'dxb', - 'center': [ - -66.796875, - 44.296875 - ], - 'rectangle': [ - [ - -67.5, - 43.59375 - ], - [ - -66.09375, - 43.59375 - ], - [ - -66.09375, - 45 - ], - [ - -67.5, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -172.265625, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 71, - 'geohash': 'b5m', - 'center': [ - -172.265625, - 63.984375 - ], - 'rectangle': [ - [ - -172.96875, - 63.28125 - ], - [ - -171.5625, - 63.28125 - ], - [ - -171.5625, - 64.6875 - ], - [ - -172.96875, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 69.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 68, - 'geohash': 'bsk', - 'center': [ - -151.171875, - 69.609375 - ], - 'rectangle': [ - [ - -151.875, - 68.90625 - ], - [ - -150.46875, - 68.90625 - ], - [ - -150.46875, - 70.3125 - ], - [ - -151.875, - 70.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 68, - 'geohash': '9xv', - 'center': [ - -104.765625, - 44.296875 - ], - 'rectangle': [ - [ - -105.46875, - 43.59375 - ], - [ - -104.0625, - 43.59375 - ], - [ - -104.0625, - 45 - ], - [ - -105.46875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 67, - 'geohash': 'bu0', - 'center': [ - -145.546875, - 68.203125 - ], - 'rectangle': [ - [ - -146.25, - 67.5 - ], - [ - -144.84375, - 67.5 - ], - [ - -144.84375, - 68.90625 - ], - [ - -146.25, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 67, - 'geohash': '9q3', - 'center': [ - -121.640625, - 35.859375 - ], - 'rectangle': [ - [ - -122.34375, - 35.15625 - ], - [ - -120.9375, - 35.15625 - ], - [ - -120.9375, - 36.5625 - ], - [ - -122.34375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -73.828125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 66, - 'geohash': 'dqg', - 'center': [ - -73.828125, - 38.671875 - ], - 'rectangle': [ - [ - -74.53125, - 37.96875 - ], - [ - -73.125, - 37.96875 - ], - [ - -73.125, - 39.375 - ], - [ - -74.53125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 66, - 'geohash': 'c8e', - 'center': [ - -107.578125, - 48.515625 - ], - 'rectangle': [ - [ - -108.28125, - 47.8125 - ], - [ - -106.875, - 47.8125 - ], - [ - -106.875, - 49.21875 - ], - [ - -108.28125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -72.421875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 64, - 'geohash': 'drh', - 'center': [ - -72.421875, - 40.078125 - ], - 'rectangle': [ - [ - -73.125, - 39.375 - ], - [ - -71.71875, - 39.375 - ], - [ - -71.71875, - 40.78125 - ], - [ - -73.125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 63, - 'geohash': 'b6z', - 'center': [ - -158.203125, - 61.171875 - ], - 'rectangle': [ - [ - -158.90625, - 60.46875 - ], - [ - -157.5, - 60.46875 - ], - [ - -157.5, - 61.875 - ], - [ - -158.90625, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 63, - 'geohash': '9rp', - 'center': [ - -113.203125, - 40.078125 - ], - 'rectangle': [ - [ - -113.90625, - 39.375 - ], - [ - -112.5, - 39.375 - ], - [ - -112.5, - 40.78125 - ], - [ - -113.90625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -170.859375, - 14.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 63, - 'geohash': '84w', - 'center': [ - -170.859375, - 14.765625 - ], - 'rectangle': [ - [ - -171.5625, - 14.0625 - ], - [ - -170.15625, - 14.0625 - ], - [ - -170.15625, - 15.46875 - ], - [ - -171.5625, - 15.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 61, - 'geohash': 'bee', - 'center': [ - -152.578125, - 65.390625 - ], - 'rectangle': [ - [ - -153.28125, - 64.6875 - ], - [ - -151.875, - 64.6875 - ], - [ - -151.875, - 66.09375 - ], - [ - -153.28125, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -146.953125, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 60, - 'geohash': 'bep', - 'center': [ - -146.953125, - 62.578125 - ], - 'rectangle': [ - [ - -147.65625, - 61.875 - ], - [ - -146.25, - 61.875 - ], - [ - -146.25, - 63.28125 - ], - [ - -147.65625, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 60, - 'geohash': '9vp', - 'center': [ - -90.703125, - 28.828125 - ], - 'rectangle': [ - [ - -91.40625, - 28.125 - ], - [ - -90, - 28.125 - ], - [ - -90, - 29.53125 - ], - [ - -91.40625, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -170.859375, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 59, - 'geohash': 'b4n', - 'center': [ - -170.859375, - 56.953125 - ], - 'rectangle': [ - [ - -171.5625, - 56.25 - ], - [ - -170.15625, - 56.25 - ], - [ - -170.15625, - 57.65625 - ], - [ - -171.5625, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -142.734375, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 58, - 'geohash': 'bg6', - 'center': [ - -142.734375, - 63.984375 - ], - 'rectangle': [ - [ - -143.4375, - 63.28125 - ], - [ - -142.03125, - 63.28125 - ], - [ - -142.03125, - 64.6875 - ], - [ - -143.4375, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 58, - 'geohash': 'b6k', - 'center': [ - -162.421875, - 58.359375 - ], - 'rectangle': [ - [ - -163.125, - 57.65625 - ], - [ - -161.71875, - 57.65625 - ], - [ - -161.71875, - 59.0625 - ], - [ - -163.125, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 57, - 'geohash': 'c87', - 'center': [ - -107.578125, - 47.109375 - ], - 'rectangle': [ - [ - -108.28125, - 46.40625 - ], - [ - -106.875, - 46.40625 - ], - [ - -106.875, - 47.8125 - ], - [ - -108.28125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 57, - 'geohash': 'b6x', - 'center': [ - -158.203125, - 59.765625 - ], - 'rectangle': [ - [ - -158.90625, - 59.0625 - ], - [ - -157.5, - 59.0625 - ], - [ - -157.5, - 60.46875 - ], - [ - -158.90625, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 57, - 'geohash': 'b6c', - 'center': [ - -166.640625, - 61.171875 - ], - 'rectangle': [ - [ - -167.34375, - 60.46875 - ], - [ - -165.9375, - 60.46875 - ], - [ - -165.9375, - 61.875 - ], - [ - -167.34375, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 57, - 'geohash': '9qm', - 'center': [ - -116.015625, - 35.859375 - ], - 'rectangle': [ - [ - -116.71875, - 35.15625 - ], - [ - -115.3125, - 35.15625 - ], - [ - -115.3125, - 36.5625 - ], - [ - -116.71875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 56, - 'geohash': 'bdy', - 'center': [ - -148.359375, - 61.171875 - ], - 'rectangle': [ - [ - -149.0625, - 60.46875 - ], - [ - -147.65625, - 60.46875 - ], - [ - -147.65625, - 61.875 - ], - [ - -149.0625, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 54.140625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 56, - 'geohash': 'b3s', - 'center': [ - -162.421875, - 54.140625 - ], - 'rectangle': [ - [ - -163.125, - 53.4375 - ], - [ - -161.71875, - 53.4375 - ], - [ - -161.71875, - 54.84375 - ], - [ - -163.125, - 54.84375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 56, - 'geohash': '9rz', - 'center': [ - -113.203125, - 44.296875 - ], - 'rectangle': [ - [ - -113.90625, - 43.59375 - ], - [ - -112.5, - 43.59375 - ], - [ - -112.5, - 45 - ], - [ - -113.90625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 56, - 'geohash': '9rj', - 'center': [ - -116.015625, - 40.078125 - ], - 'rectangle': [ - [ - -116.71875, - 39.375 - ], - [ - -115.3125, - 39.375 - ], - [ - -115.3125, - 40.78125 - ], - [ - -116.71875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 55, - 'geohash': 'bg2', - 'center': [ - -145.546875, - 63.984375 - ], - 'rectangle': [ - [ - -146.25, - 63.28125 - ], - [ - -144.84375, - 63.28125 - ], - [ - -144.84375, - 64.6875 - ], - [ - -146.25, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 55, - 'geohash': 'bdt', - 'center': [ - -149.765625, - 59.765625 - ], - 'rectangle': [ - [ - -150.46875, - 59.0625 - ], - [ - -149.0625, - 59.0625 - ], - [ - -149.0625, - 60.46875 - ], - [ - -150.46875, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 55, - 'geohash': 'bd0', - 'center': [ - -156.796875, - 56.953125 - ], - 'rectangle': [ - [ - -157.5, - 56.25 - ], - [ - -156.09375, - 56.25 - ], - [ - -156.09375, - 57.65625 - ], - [ - -157.5, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -165.234375, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 55, - 'geohash': 'b76', - 'center': [ - -165.234375, - 63.984375 - ], - 'rectangle': [ - [ - -165.9375, - 63.28125 - ], - [ - -164.53125, - 63.28125 - ], - [ - -164.53125, - 64.6875 - ], - [ - -165.9375, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 55, - 'geohash': '9v2', - 'center': [ - -100.546875, - 30.234375 - ], - 'rectangle': [ - [ - -101.25, - 29.53125 - ], - [ - -99.84375, - 29.53125 - ], - [ - -99.84375, - 30.9375 - ], - [ - -101.25, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': 'c2n', - 'center': [ - -114.609375, - 45.703125 - ], - 'rectangle': [ - [ - -115.3125, - 45 - ], - [ - -113.90625, - 45 - ], - [ - -113.90625, - 46.40625 - ], - [ - -115.3125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': 'bej', - 'center': [ - -149.765625, - 62.578125 - ], - 'rectangle': [ - [ - -150.46875, - 61.875 - ], - [ - -149.0625, - 61.875 - ], - [ - -149.0625, - 63.28125 - ], - [ - -150.46875, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': 'b6q', - 'center': [ - -159.609375, - 58.359375 - ], - 'rectangle': [ - [ - -160.3125, - 57.65625 - ], - [ - -158.90625, - 57.65625 - ], - [ - -158.90625, - 59.0625 - ], - [ - -160.3125, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': 'b6m', - 'center': [ - -161.015625, - 58.359375 - ], - 'rectangle': [ - [ - -161.71875, - 57.65625 - ], - [ - -160.3125, - 57.65625 - ], - [ - -160.3125, - 59.0625 - ], - [ - -161.71875, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -144.140625, - 13.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': '8f3', - 'center': [ - -144.140625, - 13.359375 - ], - 'rectangle': [ - [ - -144.84375, - 12.65625 - ], - [ - -143.4375, - 12.65625 - ], - [ - -143.4375, - 14.0625 - ], - [ - -144.84375, - 14.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -141.328125, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 53, - 'geohash': 'bg5', - 'center': [ - -141.328125, - 62.578125 - ], - 'rectangle': [ - [ - -142.03125, - 61.875 - ], - [ - -140.625, - 61.875 - ], - [ - -140.625, - 63.28125 - ], - [ - -142.03125, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -144.140625, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 53, - 'geohash': 'bfc', - 'center': [ - -144.140625, - 61.171875 - ], - 'rectangle': [ - [ - -144.84375, - 60.46875 - ], - [ - -143.4375, - 60.46875 - ], - [ - -143.4375, - 61.875 - ], - [ - -144.84375, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 69.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 52, - 'geohash': 'bsq', - 'center': [ - -148.359375, - 69.609375 - ], - 'rectangle': [ - [ - -149.0625, - 68.90625 - ], - [ - -147.65625, - 68.90625 - ], - [ - -147.65625, - 70.3125 - ], - [ - -149.0625, - 70.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -168.046875, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 52, - 'geohash': 'b78', - 'center': [ - -168.046875, - 65.390625 - ], - 'rectangle': [ - [ - -168.75, - 64.6875 - ], - [ - -167.34375, - 64.6875 - ], - [ - -167.34375, - 66.09375 - ], - [ - -168.75, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -165.234375, - 54.140625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 52, - 'geohash': 'b3d', - 'center': [ - -165.234375, - 54.140625 - ], - 'rectangle': [ - [ - -165.9375, - 53.4375 - ], - [ - -164.53125, - 53.4375 - ], - [ - -164.53125, - 54.84375 - ], - [ - -165.9375, - 54.84375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 52, - 'geohash': '9xs', - 'center': [ - -106.171875, - 42.890625 - ], - 'rectangle': [ - [ - -106.875, - 42.1875 - ], - [ - -105.46875, - 42.1875 - ], - [ - -105.46875, - 43.59375 - ], - [ - -106.875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 52, - 'geohash': '9rd', - 'center': [ - -120.234375, - 42.890625 - ], - 'rectangle': [ - [ - -120.9375, - 42.1875 - ], - [ - -119.53125, - 42.1875 - ], - [ - -119.53125, - 43.59375 - ], - [ - -120.9375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 52, - 'geohash': '9qr', - 'center': [ - -113.203125, - 35.859375 - ], - 'rectangle': [ - [ - -113.90625, - 35.15625 - ], - [ - -112.5, - 35.15625 - ], - [ - -112.5, - 36.5625 - ], - [ - -113.90625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 69.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 51, - 'geohash': 'bkk', - 'center': [ - -162.421875, - 69.609375 - ], - 'rectangle': [ - [ - -163.125, - 68.90625 - ], - [ - -161.71875, - 68.90625 - ], - [ - -161.71875, - 70.3125 - ], - [ - -163.125, - 70.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 51, - 'geohash': 'bk1', - 'center': [ - -166.640625, - 68.203125 - ], - 'rectangle': [ - [ - -167.34375, - 67.5 - ], - [ - -165.9375, - 67.5 - ], - [ - -165.9375, - 68.90625 - ], - [ - -167.34375, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -144.140625, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 51, - 'geohash': 'bgc', - 'center': [ - -144.140625, - 66.796875 - ], - 'rectangle': [ - [ - -144.84375, - 66.09375 - ], - [ - -143.4375, - 66.09375 - ], - [ - -143.4375, - 67.5 - ], - [ - -144.84375, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 51, - 'geohash': 'bek', - 'center': [ - -151.171875, - 63.984375 - ], - 'rectangle': [ - [ - -151.875, - 63.28125 - ], - [ - -150.46875, - 63.28125 - ], - [ - -150.46875, - 64.6875 - ], - [ - -151.875, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 51, - 'geohash': 'bde', - 'center': [ - -152.578125, - 59.765625 - ], - 'rectangle': [ - [ - -153.28125, - 59.0625 - ], - [ - -151.875, - 59.0625 - ], - [ - -151.875, - 60.46875 - ], - [ - -153.28125, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 51, - 'geohash': 'b7s', - 'center': [ - -162.421875, - 65.390625 - ], - 'rectangle': [ - [ - -163.125, - 64.6875 - ], - [ - -161.71875, - 64.6875 - ], - [ - -161.71875, - 66.09375 - ], - [ - -163.125, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 51, - 'geohash': 'b69', - 'center': [ - -166.640625, - 59.765625 - ], - 'rectangle': [ - [ - -167.34375, - 59.0625 - ], - [ - -165.9375, - 59.0625 - ], - [ - -165.9375, - 60.46875 - ], - [ - -167.34375, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 54.140625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 51, - 'geohash': 'b39', - 'center': [ - -166.640625, - 54.140625 - ], - 'rectangle': [ - [ - -167.34375, - 53.4375 - ], - [ - -165.9375, - 53.4375 - ], - [ - -165.9375, - 54.84375 - ], - [ - -167.34375, - 54.84375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 17.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 51, - 'geohash': '8g0', - 'center': [ - -145.546875, - 17.578125 - ], - 'rectangle': [ - [ - -146.25, - 16.875 - ], - [ - -144.84375, - 16.875 - ], - [ - -144.84375, - 18.28125 - ], - [ - -146.25, - 18.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -144.140625, - 69.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 50, - 'geohash': 'bu3', - 'center': [ - -144.140625, - 69.609375 - ], - 'rectangle': [ - [ - -144.84375, - 68.90625 - ], - [ - -143.4375, - 68.90625 - ], - [ - -143.4375, - 70.3125 - ], - [ - -144.84375, - 70.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 71.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 50, - 'geohash': 'bkw', - 'center': [ - -159.609375, - 71.015625 - ], - 'rectangle': [ - [ - -160.3125, - 70.3125 - ], - [ - -158.90625, - 70.3125 - ], - [ - -158.90625, - 71.71875 - ], - [ - -160.3125, - 71.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -165.234375, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 50, - 'geohash': 'bk4', - 'center': [ - -165.234375, - 68.203125 - ], - 'rectangle': [ - [ - -165.9375, - 67.5 - ], - [ - -164.53125, - 67.5 - ], - [ - -164.53125, - 68.90625 - ], - [ - -165.9375, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 50, - 'geohash': 'be0', - 'center': [ - -156.796875, - 62.578125 - ], - 'rectangle': [ - [ - -157.5, - 61.875 - ], - [ - -156.09375, - 61.875 - ], - [ - -156.09375, - 63.28125 - ], - [ - -157.5, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 50, - 'geohash': 'bd5', - 'center': [ - -152.578125, - 56.953125 - ], - 'rectangle': [ - [ - -153.28125, - 56.25 - ], - [ - -151.875, - 56.25 - ], - [ - -151.875, - 57.65625 - ], - [ - -153.28125, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 50, - 'geohash': 'b7p', - 'center': [ - -158.203125, - 62.578125 - ], - 'rectangle': [ - [ - -158.90625, - 61.875 - ], - [ - -157.5, - 61.875 - ], - [ - -157.5, - 63.28125 - ], - [ - -158.90625, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -170.859375, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 50, - 'geohash': 'b5q', - 'center': [ - -170.859375, - 63.984375 - ], - 'rectangle': [ - [ - -171.5625, - 63.28125 - ], - [ - -170.15625, - 63.28125 - ], - [ - -170.15625, - 64.6875 - ], - [ - -171.5625, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 50, - 'geohash': '9xc', - 'center': [ - -110.390625, - 44.296875 - ], - 'rectangle': [ - [ - -111.09375, - 43.59375 - ], - [ - -109.6875, - 43.59375 - ], - [ - -109.6875, - 45 - ], - [ - -111.09375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 50, - 'geohash': '9t8', - 'center': [ - -111.796875, - 31.640625 - ], - 'rectangle': [ - [ - -112.5, - 30.9375 - ], - [ - -111.09375, - 30.9375 - ], - [ - -111.09375, - 32.34375 - ], - [ - -112.5, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 50, - 'geohash': '9ry', - 'center': [ - -114.609375, - 44.296875 - ], - 'rectangle': [ - [ - -115.3125, - 43.59375 - ], - [ - -113.90625, - 43.59375 - ], - [ - -113.90625, - 45 - ], - [ - -115.3125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 50, - 'geohash': '9rn', - 'center': [ - -114.609375, - 40.078125 - ], - 'rectangle': [ - [ - -115.3125, - 39.375 - ], - [ - -113.90625, - 39.375 - ], - [ - -113.90625, - 40.78125 - ], - [ - -115.3125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 49, - 'geohash': 'f03', - 'center': [ - -87.890625, - 47.109375 - ], - 'rectangle': [ - [ - -88.59375, - 46.40625 - ], - [ - -87.1875, - 46.40625 - ], - [ - -87.1875, - 47.8125 - ], - [ - -88.59375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 49, - 'geohash': 'f02', - 'center': [ - -89.296875, - 47.109375 - ], - 'rectangle': [ - [ - -90, - 46.40625 - ], - [ - -88.59375, - 46.40625 - ], - [ - -88.59375, - 47.8125 - ], - [ - -90, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 49, - 'geohash': 'b6w', - 'center': [ - -159.609375, - 59.765625 - ], - 'rectangle': [ - [ - -160.3125, - 59.0625 - ], - [ - -158.90625, - 59.0625 - ], - [ - -158.90625, - 60.46875 - ], - [ - -160.3125, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 49, - 'geohash': '9qy', - 'center': [ - -114.609375, - 38.671875 - ], - 'rectangle': [ - [ - -115.3125, - 37.96875 - ], - [ - -113.90625, - 37.96875 - ], - [ - -113.90625, - 39.375 - ], - [ - -115.3125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 48, - 'geohash': 'bsn', - 'center': [ - -148.359375, - 68.203125 - ], - 'rectangle': [ - [ - -149.0625, - 67.5 - ], - [ - -147.65625, - 67.5 - ], - [ - -147.65625, - 68.90625 - ], - [ - -149.0625, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 48, - 'geohash': 'bg0', - 'center': [ - -145.546875, - 62.578125 - ], - 'rectangle': [ - [ - -146.25, - 61.875 - ], - [ - -144.84375, - 61.875 - ], - [ - -144.84375, - 63.28125 - ], - [ - -146.25, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 48, - 'geohash': 'bdw', - 'center': [ - -148.359375, - 59.765625 - ], - 'rectangle': [ - [ - -149.0625, - 59.0625 - ], - [ - -147.65625, - 59.0625 - ], - [ - -147.65625, - 60.46875 - ], - [ - -149.0625, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -155.390625, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 48, - 'geohash': 'bdc', - 'center': [ - -155.390625, - 61.171875 - ], - 'rectangle': [ - [ - -156.09375, - 60.46875 - ], - [ - -154.6875, - 60.46875 - ], - [ - -154.6875, - 61.875 - ], - [ - -156.09375, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 48, - 'geohash': 'b7y', - 'center': [ - -159.609375, - 66.796875 - ], - 'rectangle': [ - [ - -160.3125, - 66.09375 - ], - [ - -158.90625, - 66.09375 - ], - [ - -158.90625, - 67.5 - ], - [ - -160.3125, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -169.453125, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 48, - 'geohash': 'b5x', - 'center': [ - -169.453125, - 65.390625 - ], - 'rectangle': [ - [ - -170.15625, - 64.6875 - ], - [ - -168.75, - 64.6875 - ], - [ - -168.75, - 66.09375 - ], - [ - -170.15625, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -176.484375, - 51.328125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 48, - 'geohash': 'b14', - 'center': [ - -176.484375, - 51.328125 - ], - 'rectangle': [ - [ - -177.1875, - 50.625 - ], - [ - -175.78125, - 50.625 - ], - [ - -175.78125, - 52.03125 - ], - [ - -177.1875, - 52.03125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 48, - 'geohash': '9re', - 'center': [ - -118.828125, - 42.890625 - ], - 'rectangle': [ - [ - -119.53125, - 42.1875 - ], - [ - -118.125, - 42.1875 - ], - [ - -118.125, - 43.59375 - ], - [ - -119.53125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 48, - 'geohash': '9r9', - 'center': [ - -121.640625, - 42.890625 - ], - 'rectangle': [ - [ - -122.34375, - 42.1875 - ], - [ - -120.9375, - 42.1875 - ], - [ - -120.9375, - 43.59375 - ], - [ - -122.34375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 47, - 'geohash': 'djh', - 'center': [ - -83.671875, - 28.828125 - ], - 'rectangle': [ - [ - -84.375, - 28.125 - ], - [ - -82.96875, - 28.125 - ], - [ - -82.96875, - 29.53125 - ], - [ - -84.375, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 47, - 'geohash': 'beq', - 'center': [ - -148.359375, - 63.984375 - ], - 'rectangle': [ - [ - -149.0625, - 63.28125 - ], - [ - -147.65625, - 63.28125 - ], - [ - -147.65625, - 64.6875 - ], - [ - -149.0625, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -169.453125, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 47, - 'geohash': 'b4p', - 'center': [ - -169.453125, - 56.953125 - ], - 'rectangle': [ - [ - -170.15625, - 56.25 - ], - [ - -168.75, - 56.25 - ], - [ - -168.75, - 57.65625 - ], - [ - -170.15625, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 47, - 'geohash': '9mg', - 'center': [ - -118.828125, - 33.046875 - ], - 'rectangle': [ - [ - -119.53125, - 32.34375 - ], - [ - -118.125, - 32.34375 - ], - [ - -118.125, - 33.75 - ], - [ - -119.53125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -153.984375, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 46, - 'geohash': 'be4', - 'center': [ - -153.984375, - 62.578125 - ], - 'rectangle': [ - [ - -154.6875, - 61.875 - ], - [ - -153.28125, - 61.875 - ], - [ - -153.28125, - 63.28125 - ], - [ - -154.6875, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 46, - 'geohash': 'b7u', - 'center': [ - -162.421875, - 66.796875 - ], - 'rectangle': [ - [ - -163.125, - 66.09375 - ], - [ - -161.71875, - 66.09375 - ], - [ - -161.71875, - 67.5 - ], - [ - -163.125, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 46, - 'geohash': '9w3', - 'center': [ - -110.390625, - 35.859375 - ], - 'rectangle': [ - [ - -111.09375, - 35.15625 - ], - [ - -109.6875, - 35.15625 - ], - [ - -109.6875, - 36.5625 - ], - [ - -111.09375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': 'drc', - 'center': [ - -76.640625, - 44.296875 - ], - 'rectangle': [ - [ - -77.34375, - 43.59375 - ], - [ - -75.9375, - 43.59375 - ], - [ - -75.9375, - 45 - ], - [ - -77.34375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': 'cbx', - 'center': [ - -90.703125, - 48.515625 - ], - 'rectangle': [ - [ - -91.40625, - 47.8125 - ], + "geoJson": { + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 22.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 608, + "geohash": "s", + "center": [ + 22.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "key": "s", + "value": "s", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 608, + "value": 608, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ [ - -90, - 47.8125 - ], - [ - -90, - 49.21875 - ], - [ - -91.40625, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -134.296875, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': 'c1b', - 'center': [ - -134.296875, - 55.546875 - ], - 'rectangle': [ - [ - -135, - 54.84375 - ], - [ - -133.59375, - 54.84375 - ], - [ - -133.59375, - 56.25 - ], - [ - -135, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': 'bkh', - 'center': [ - -162.421875, - 68.203125 - ], - 'rectangle': [ - [ - -163.125, - 67.5 + 0, + 0 ], [ - -161.71875, - 67.5 + 45, + 0 ], [ - -161.71875, - 68.90625 - ], - [ - -163.125, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': 'b7c', - 'center': [ - -166.640625, - 66.796875 - ], - 'rectangle': [ - [ - -167.34375, - 66.09375 - ], - [ - -165.9375, - 66.09375 - ], - [ - -165.9375, - 67.5 - ], - [ - -167.34375, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 31.640625 + 45, + 45 + ], + [ + 0, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 112.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 522, + "geohash": "w", + "center": [ + 112.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "key": "w", + "value": "w", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 522, + "value": 522, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 90, + 0 + ], + [ + 135, + 0 + ], + [ + 135, + 45 + ], + [ + 90, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -67.5, + -22.5 ] }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': '9v8', - 'center': [ - -100.546875, - 31.640625 + "properties": { + "valueLabel": "Count", + "count": 517, + "geohash": "6", + "center": [ + -67.5, + -22.5 ], - 'rectangle': [ + "aggConfigResult": { + "$parent": { + "key": "6", + "value": "6", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 517, + "value": 517, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ [ - -101.25, - 30.9375 + -90, + -45 ], [ - -99.84375, - 30.9375 + -45, + -45 ], [ - -99.84375, - 32.34375 + -45, + 0 ], [ - -101.25, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': '9rf', - 'center': [ - -120.234375, - 44.296875 - ], - 'rectangle': [ + -90, + 0 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -67.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 446, + "geohash": "d", + "center": [ + -67.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "key": "d", + "value": "d", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 446, + "value": 446, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ [ - -120.9375, - 43.59375 + -90, + 0 ], [ - -119.53125, - 43.59375 + -45, + 0 ], [ - -119.53125, + -45, 45 ], [ - -120.9375, + -90, 45 ] ] } }, { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 62.578125 - ] + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 22.5, + 67.5 + ] }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 44, - 'geohash': 'beh', - 'center': [ - -151.171875, - 62.578125 + "properties": { + "valueLabel": "Count", + "count": 426, + "geohash": "u", + "center": [ + 22.5, + 67.5 ], - 'rectangle': [ + "aggConfigResult": { + "$parent": { + "key": "u", + "value": "u", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 426, + "value": 426, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ [ - -151.875, - 61.875 + 0, + 45 ], [ - -150.46875, - 61.875 + 45, + 45 ], [ - -150.46875, - 63.28125 + 45, + 90 ], [ - -151.875, - 63.28125 + 0, + 90 ] ] } }, { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 59.765625 + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 67.5, + 22.5 ] }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 44, - 'geohash': 'b6t', - 'center': [ - -161.015625, - 59.765625 + "properties": { + "valueLabel": "Count", + "count": 413, + "geohash": "t", + "center": [ + 67.5, + 22.5 ], - 'rectangle': [ + "aggConfigResult": { + "$parent": { + "key": "t", + "value": "t", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 413, + "value": 413, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ [ - -161.71875, - 59.0625 + 45, + 0 ], [ - -160.3125, - 59.0625 + 90, + 0 ], [ - -160.3125, - 60.46875 + 90, + 45 ], - [ - -161.71875, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 44.296875 + [ + 45, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 22.5, + -22.5 ] }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 44, - 'geohash': '9rg', - 'center': [ - -118.828125, - 44.296875 + "properties": { + "valueLabel": "Count", + "count": 362, + "geohash": "k", + "center": [ + 22.5, + -22.5 ], - 'rectangle': [ + "aggConfigResult": { + "$parent": { + "key": "k", + "value": "k", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 362, + "value": 362, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 0, + -45 + ], + [ + 45, + -45 + ], + [ + 45, + 0 + ], + [ + 0, + 0 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -112.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 352, + "geohash": "9", + "center": [ + -112.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "key": "9", + "value": "9", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 352, + "value": 352, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ [ - -119.53125, - 43.59375 + -135, + 0 ], [ - -118.125, - 43.59375 + -90, + 0 ], [ - -118.125, + -90, 45 ], [ - -119.53125, + -135, 45 ] ] } }, { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 43, - 'geohash': 'bsh', - 'center': [ - -151.171875, - 68.203125 - ], - 'rectangle': [ - [ - -151.875, - 67.5 - ], - [ - -150.46875, - 67.5 - ], - [ - -150.46875, - 68.90625 - ], - [ - -151.875, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 65.390625 + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -22.5, + 22.5 ] }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 43, - 'geohash': 'bes', - 'center': [ - -151.171875, - 65.390625 + "properties": { + "valueLabel": "Count", + "count": 216, + "geohash": "e", + "center": [ + -22.5, + 22.5 ], - 'rectangle': [ + "aggConfigResult": { + "$parent": { + "key": "e", + "value": "e", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 216, + "value": 216, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ [ - -151.875, - 64.6875 + -45, + 0 ], [ - -150.46875, - 64.6875 + 0, + 0 ], [ - -150.46875, - 66.09375 + 0, + 45 ], [ - -151.875, - 66.09375 + -45, + 45 ] ] } }, { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 63.984375 + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 67.5, + 67.5 ] }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 43, - 'geohash': 'b7r', - 'center': [ - -158.203125, - 63.984375 + "properties": { + "valueLabel": "Count", + "count": 183, + "geohash": "v", + "center": [ + 67.5, + 67.5 ], - 'rectangle': [ + "aggConfigResult": { + "$parent": { + "key": "v", + "value": "v", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 183, + "value": 183, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ [ - -158.90625, - 63.28125 + 45, + 45 ], [ - -157.5, - 63.28125 + 90, + 45 ], [ - -157.5, - 64.6875 + 90, + 90 ], - [ - -158.90625, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -146.953125, - 61.171875 + [ + 45, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 157.5, + -22.5 ] }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 42, - 'geohash': 'bdz', - 'center': [ - -146.953125, - 61.171875 + "properties": { + "valueLabel": "Count", + "count": 158, + "geohash": "r", + "center": [ + 157.5, + -22.5 ], - 'rectangle': [ + "aggConfigResult": { + "$parent": { + "key": "r", + "value": "r", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 158, + "value": 158, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ [ - -147.65625, - 60.46875 + 135, + -45 ], [ - -146.25, - 60.46875 + 180, + -45 ], [ - -146.25, - 61.875 + 180, + 0 ], - [ - -147.65625, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 66.796875 + [ + 135, + 0 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 112.5, + 67.5 ] }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 42, - 'geohash': 'b7z', - 'center': [ - -158.203125, - 66.796875 + "properties": { + "valueLabel": "Count", + "count": 139, + "geohash": "y", + "center": [ + 112.5, + 67.5 ], - 'rectangle': [ - [ - -158.90625, - 66.09375 - ], - [ - -157.5, - 66.09375 - ], - [ - -157.5, - 67.5 - ], - [ - -158.90625, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -153.984375, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 41, - 'geohash': 'bed', - 'center': [ - -153.984375, - 65.390625 + "aggConfigResult": { + "$parent": { + "key": "y", + "value": "y", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 139, + "value": 139, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 90, + 45 + ], + [ + 135, + 45 + ], + [ + 135, + 90 + ], + [ + 90, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -112.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 110, + "geohash": "c", + "center": [ + -112.5, + 67.5 ], - 'rectangle': [ - [ - -154.6875, - 64.6875 - ], + "aggConfigResult": { + "$parent": { + "key": "c", + "value": "c", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 110, + "value": 110, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ [ - -153.28125, - 64.6875 + -135, + 45 ], [ - -153.28125, - 66.09375 + -90, + 45 ], [ - -154.6875, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -173.671875, - 52.734375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 41, - 'geohash': 'b1k', - 'center': [ - -173.671875, - 52.734375 - ], - 'rectangle': [ - [ - -174.375, - 52.03125 + -90, + 90 ], [ - -172.96875, - 52.03125 - ], + -135, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 112.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 101, + "geohash": "q", + "center": [ + 112.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "key": "q", + "value": "q", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 101, + "value": 101, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ [ - -172.96875, - 53.4375 + 90, + -45 ], [ - -174.375, - 53.4375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 24.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 40, - 'geohash': 'dhm', - 'center': [ - -82.265625, - 24.609375 - ], - 'rectangle': [ + 135, + -45 + ], + [ + 135, + 0 + ], + [ + 90, + 0 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -22.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 101, + "geohash": "7", + "center": [ + -22.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "key": "7", + "value": "7", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 101, + "value": 101, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -45, + -45 + ], + [ + 0, + -45 + ], + [ + 0, + 0 + ], + [ + -45, + 0 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -67.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 92, + "geohash": "f", + "center": [ + -67.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "key": "f", + "value": "f", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 92, + "value": 92, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ [ - -82.96875, - 23.90625 + -90, + 45 ], [ - -81.5625, - 23.90625 + -45, + 45 ], [ - -81.5625, - 25.3125 + -45, + 90 ], [ - -82.96875, - 25.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 40, - 'geohash': 'bew', - 'center': [ - -148.359375, - 65.390625 - ], - 'rectangle': [ - [ - -149.0625, - 64.6875 + -90, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -157.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 75, + "geohash": "b", + "center": [ + -157.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "key": "b", + "value": "b", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 75, + "value": 75, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -180, + 45 ], [ - -147.65625, - 64.6875 + -135, + 45 ], [ - -147.65625, - 66.09375 + -135, + 90 ], [ - -149.0625, - 66.09375 + -180, + 90 ] ] } }, { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 38.671875 + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -22.5, + 67.5 ] }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 40, - 'geohash': '9nz', - 'center': [ - -124.453125, - 38.671875 + "properties": { + "valueLabel": "Count", + "count": 64, + "geohash": "g", + "center": [ + -22.5, + 67.5 ], - 'rectangle': [ + "aggConfigResult": { + "$parent": { + "key": "g", + "value": "g", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 64, + "value": 64, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ [ - -125.15625, - 37.96875 + -45, + 45 ], [ - -123.75, - 37.96875 + 0, + 45 ], [ - -123.75, - 39.375 + 0, + 90 ], [ - -125.15625, - 39.375 + -45, + 90 ] ] } }, { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -141.328125, - 65.390625 + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 157.5, + 67.5 ] }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 39, - 'geohash': 'bge', - 'center': [ - -141.328125, - 65.390625 + "properties": { + "valueLabel": "Count", + "count": 36, + "geohash": "z", + "center": [ + 157.5, + 67.5 ], - 'rectangle': [ + "aggConfigResult": { + "$parent": { + "key": "z", + "value": "z", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 36, + "value": 36, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ [ - -142.03125, - 64.6875 + 135, + 45 ], [ - -140.625, - 64.6875 + 180, + 45 ], [ - -140.625, - 66.09375 + 180, + 90 ], [ - -142.03125, - 66.09375 + 135, + 90 ] ] } }, { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 66.796875 + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 157.5, + 22.5 ] }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 39, - 'geohash': 'beg', - 'center': [ - -152.578125, - 66.796875 + "properties": { + "valueLabel": "Count", + "count": 34, + "geohash": "x", + "center": [ + 157.5, + 22.5 ], - 'rectangle': [ - [ - -153.28125, - 66.09375 - ], - [ - -151.875, - 66.09375 - ], - [ - -151.875, - 67.5 - ], - [ - -153.28125, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -155.390625, - 65.390625 + "aggConfigResult": { + "$parent": { + "key": "x", + "value": "x", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 34, + "value": 34, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 135, + 0 + ], + [ + 180, + 0 + ], + [ + 180, + 45 + ], + [ + 135, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -67.5, + -67.5 ] }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 39, - 'geohash': 'be9', - 'center': [ - -155.390625, - 65.390625 + "properties": { + "valueLabel": "Count", + "count": 30, + "geohash": "4", + "center": [ + -67.5, + -67.5 ], - 'rectangle': [ - [ - -156.09375, - 64.6875 - ], + "aggConfigResult": { + "$parent": { + "key": "4", + "value": "4", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 30, + "value": 30, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ [ - -154.6875, - 64.6875 + -90, + -90 ], [ - -154.6875, - 66.09375 + -45, + -90 ], [ - -156.09375, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 39, - 'geohash': 'b7h', - 'center': [ - -162.421875, - 62.578125 - ], - 'rectangle': [ - [ - -163.125, - 61.875 + -45, + -45 ], [ - -161.71875, - 61.875 - ], + -90, + -45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 67.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 16, + "geohash": "m", + "center": [ + 67.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "key": "m", + "value": "m", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 16, + "value": 16, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ [ - -161.71875, - 63.28125 + 45, + -45 ], [ - -163.125, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 24.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 38, - 'geohash': 'dhq', - 'center': [ - -80.859375, - 24.609375 + 90, + -45 + ], + [ + 90, + 0 + ], + [ + 45, + 0 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -22.5, + -67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 10, + "geohash": "5", + "center": [ + -22.5, + -67.5 + ], + "aggConfigResult": { + "$parent": { + "key": "5", + "value": "5", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 10, + "value": 10, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -45, + -90 + ], + [ + 0, + -90 + ], + [ + 0, + -45 + ], + [ + -45, + -45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 157.5, + -67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 6, + "geohash": "p", + "center": [ + 157.5, + -67.5 ], - 'rectangle': [ - [ - -81.5625, - 23.90625 - ], - [ - -80.15625, - 23.90625 - ], - [ - -80.15625, - 25.3125 - ], - [ - -81.5625, - 25.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -130.078125, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 38, - 'geohash': 'c1g', - 'center': [ - -130.078125, - 55.546875 + "aggConfigResult": { + "$parent": { + "key": "p", + "value": "p", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 6, + "value": 6, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 135, + -90 + ], + [ + 180, + -90 + ], + [ + 180, + -45 + ], + [ + 135, + -45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -157.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 6, + "geohash": "2", + "center": [ + -157.5, + -22.5 ], - 'rectangle': [ - [ - -130.78125, - 54.84375 + "aggConfigResult": { + "$parent": { + "key": "2", + "value": "2", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 6, + "value": 6, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -180, + -45 ], [ - -129.375, - 54.84375 + -135, + -45 ], [ - -129.375, - 56.25 + -135, + 0 ], [ - -130.78125, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 38, - 'geohash': '9tc', - 'center': [ - -110.390625, - 33.046875 + -180, + 0 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 22.5, + -67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 4, + "geohash": "h", + "center": [ + 22.5, + -67.5 ], - 'rectangle': [ - [ - -111.09375, - 32.34375 - ], + "aggConfigResult": { + "$parent": { + "key": "h", + "value": "h", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 4, + "value": 4, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ [ - -109.6875, - 32.34375 + 0, + -90 ], [ - -109.6875, - 33.75 + 45, + -90 ], [ - -111.09375, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': 'dqd', - 'center': [ - -75.234375, - 37.265625 - ], - 'rectangle': [ + 45, + -45 + ], + [ + 0, + -45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 112.5, + -67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 2, + "geohash": "n", + "center": [ + 112.5, + -67.5 + ], + "aggConfigResult": { + "$parent": { + "key": "n", + "value": "n", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 2, + "value": 2, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 90, + -90 + ], + [ + 135, + -90 + ], + [ + 135, + -45 + ], + [ + 90, + -45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 67.5, + -67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 2, + "geohash": "j", + "center": [ + 67.5, + -67.5 + ], + "aggConfigResult": { + "$parent": { + "key": "j", + "value": "j", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 2, + "value": 2, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 45, + -90 + ], + [ + 90, + -90 + ], + [ + 90, + -45 + ], + [ + 45, + -45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -112.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 1, + "geohash": "3", + "center": [ + -112.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "key": "3", + "value": "3", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 1, + "value": 1, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ [ - -75.9375, - 36.5625 + -135, + -45 ], [ - -74.53125, - 36.5625 + -90, + -45 ], [ - -74.53125, - 37.96875 + -90, + 0 ], [ - -75.9375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -163.828125, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': 'b3g', - 'center': [ - -163.828125, - 55.546875 - ], - 'rectangle': [ + -135, + 0 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -112.5, + -67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 1, + "geohash": "1", + "center": [ + -112.5, + -67.5 + ], + "aggConfigResult": { + "$parent": { + "key": "1", + "value": "1", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 1, + "value": 1, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ [ - -164.53125, - 54.84375 + -135, + -90 ], [ - -163.125, - 54.84375 + -90, + -90 ], [ - -163.125, - 56.25 + -90, + -45 ], [ - -164.53125, - 56.25 + -135, + -45 ] ] } } - ] + ], + "properties": { + "label": null, + "length": 30, + "min": 1, + "max": 608, + "precision": 1, + "allmin": 1, + "allmax": 608 + } }, - 'hits': 171449 + "hits": 5033 }; }); diff --git a/test/unit/specs/vislib/fixture/mock_data/geohash/_rows.js b/test/unit/specs/vislib/fixture/mock_data/geohash/_rows.js index 446ba129c2b18e..dfc6ca706aa804 100644 --- a/test/unit/specs/vislib/fixture/mock_data/geohash/_rows.js +++ b/test/unit/specs/vislib/fixture/mock_data/geohash/_rows.js @@ -1,66320 +1,3718 @@ define(function () { return { - 'rows': [ - { - 'label': 'Mozilla/5.0 (X11; Linux x86_64; rv:6.0a1) Gecko/20110421 Firefox/6.0a1: agent.raw', - 'geoJSON': { - 'properties': { - 'label': 'Mozilla/5.0 (X11; Linux x86_64; rv:6.0a1) Gecko/20110421 Firefox/6.0a1: agent.raw', - 'length': 597, - 'min': 11, - 'max': 581, - 'precision': 3 - }, - 'type': 'FeatureCollection', - 'features': [ - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 581, - 'geohash': 'dr4', - 'center': [ - -75.234375, - 40.078125 - ], - 'rectangle': [ - [ - -75.9375, - 39.375 - ], - [ - -74.53125, - 39.375 - ], - [ - -74.53125, - 40.78125 - ], - [ - -75.9375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -73.828125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 411, - 'geohash': 'dr7', - 'center': [ - -73.828125, - 41.484375 - ], - 'rectangle': [ - [ - -74.53125, - 40.78125 - ], - [ - -73.125, - 40.78125 - ], - [ - -73.125, - 42.1875 - ], - [ - -74.53125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 421, - 'geohash': 'dph', - 'center': [ - -83.671875, - 40.078125 - ], - 'rectangle': [ - [ - -84.375, - 39.375 - ], - [ - -82.96875, - 39.375 - ], - [ - -82.96875, - 40.78125 - ], - [ - -84.375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -72.421875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 409, - 'geohash': 'drk', - 'center': [ - -72.421875, - 41.484375 - ], - 'rectangle': [ - [ - -73.125, - 40.78125 - ], - [ - -71.71875, - 40.78125 - ], - [ - -71.71875, - 42.1875 - ], - [ - -73.125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 408, - 'geohash': '9qh', - 'center': [ - -117.421875, - 34.453125 - ], - 'rectangle': [ - [ - -118.125, - 33.75 - ], - [ - -116.71875, - 33.75 - ], - [ - -116.71875, - 35.15625 - ], - [ - -118.125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 387, - 'geohash': '9qc', - 'center': [ - -121.640625, - 38.671875 - ], - 'rectangle': [ - [ - -122.34375, - 37.96875 - ], - [ - -120.9375, - 37.96875 - ], - [ - -120.9375, - 39.375 - ], - [ - -122.34375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 362, - 'geohash': 'dp3', - 'center': [ - -87.890625, - 41.484375 - ], - 'rectangle': [ - [ - -88.59375, - 40.78125 - ], - [ - -87.1875, - 40.78125 - ], - [ - -87.1875, - 42.1875 - ], - [ - -88.59375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 377, - 'geohash': 'dp4', - 'center': [ - -86.484375, - 40.078125 - ], - 'rectangle': [ - [ - -87.1875, - 39.375 - ], - [ - -85.78125, - 39.375 - ], - [ - -85.78125, - 40.78125 - ], - [ - -87.1875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 353, - 'geohash': 'dpk', - 'center': [ - -83.671875, - 41.484375 - ], - 'rectangle': [ - [ - -84.375, - 40.78125 - ], - [ - -82.96875, - 40.78125 - ], - [ - -82.96875, - 42.1875 - ], - [ - -84.375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 327, - 'geohash': 'dps', - 'center': [ - -83.671875, - 42.890625 - ], - 'rectangle': [ - [ - -84.375, - 42.1875 - ], - [ - -82.96875, - 42.1875 - ], - [ - -82.96875, - 43.59375 - ], - [ - -84.375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 351, - 'geohash': '9q9', - 'center': [ - -121.640625, - 37.265625 - ], - 'rectangle': [ - [ - -122.34375, - 36.5625 - ], - [ - -120.9375, - 36.5625 - ], - [ - -120.9375, - 37.96875 - ], - [ - -122.34375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 361, - 'geohash': 'dpq', - 'center': [ - -80.859375, - 41.484375 - ], - 'rectangle': [ - [ - -81.5625, - 40.78125 - ], - [ - -80.15625, - 40.78125 - ], - [ - -80.15625, - 42.1875 - ], - [ - -81.5625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 318, - 'geohash': '9q5', - 'center': [ - -118.828125, - 34.453125 - ], - 'rectangle': [ - [ - -119.53125, - 33.75 - ], - [ - -118.125, - 33.75 - ], - [ - -118.125, - 35.15625 - ], - [ - -119.53125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 331, - 'geohash': 'dp8', - 'center': [ - -89.296875, - 42.890625 - ], - 'rectangle': [ - [ - -90, - 42.1875 - ], - [ - -88.59375, - 42.1875 - ], - [ - -88.59375, - 43.59375 - ], - [ - -90, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 339, - 'geohash': 'dn6', - 'center': [ - -86.484375, - 35.859375 - ], - 'rectangle': [ - [ - -87.1875, - 35.15625 - ], - [ - -85.78125, - 35.15625 - ], - [ - -85.78125, - 36.5625 - ], - [ - -87.1875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 296, - 'geohash': '9y7', - 'center': [ - -96.328125, - 35.859375 - ], - 'rectangle': [ - [ - -97.03125, - 35.15625 - ], - [ - -95.625, - 35.15625 - ], - [ - -95.625, - 36.5625 - ], - [ - -97.03125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 309, - 'geohash': 'dpp', - 'center': [ - -79.453125, - 40.078125 - ], - 'rectangle': [ - [ - -80.15625, - 39.375 - ], - [ - -78.75, - 39.375 - ], - [ - -78.75, - 40.78125 - ], - [ - -80.15625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 319, - 'geohash': 'dn0', - 'center': [ - -89.296875, - 34.453125 - ], - 'rectangle': [ - [ - -90, - 33.75 - ], - [ - -88.59375, - 33.75 - ], - [ - -88.59375, - 35.15625 - ], - [ - -90, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 327, - 'geohash': 'dpe', - 'center': [ - -85.078125, - 42.890625 - ], - 'rectangle': [ - [ - -85.78125, - 42.1875 - ], - [ - -84.375, - 42.1875 - ], - [ - -84.375, - 43.59375 - ], - [ - -85.78125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 306, - 'geohash': '9vf', - 'center': [ - -97.734375, - 33.046875 - ], - 'rectangle': [ - [ - -98.4375, - 32.34375 - ], - [ - -97.03125, - 32.34375 - ], - [ - -97.03125, - 33.75 - ], - [ - -98.4375, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -73.828125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 313, - 'geohash': 'dre', - 'center': [ - -73.828125, - 42.890625 - ], - 'rectangle': [ - [ - -74.53125, - 42.1875 - ], - [ - -73.125, - 42.1875 - ], - [ - -73.125, - 43.59375 - ], - [ - -74.53125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 318, - 'geohash': 'dp6', - 'center': [ - -86.484375, - 41.484375 - ], - 'rectangle': [ - [ - -87.1875, - 40.78125 - ], - [ - -85.78125, - 40.78125 - ], - [ - -85.78125, - 42.1875 - ], - [ - -87.1875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 302, - 'geohash': '9vg', - 'center': [ - -96.328125, - 33.046875 - ], - 'rectangle': [ - [ - -97.03125, - 32.34375 - ], - [ - -95.625, - 32.34375 - ], - [ - -95.625, - 33.75 - ], - [ - -97.03125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 311, - 'geohash': '9zv', - 'center': [ - -93.515625, - 44.296875 - ], - 'rectangle': [ - [ - -94.21875, - 43.59375 - ], - [ - -92.8125, - 43.59375 - ], - [ - -92.8125, - 45 - ], - [ - -94.21875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 283, - 'geohash': 'dn5', - 'center': [ - -85.078125, - 34.453125 - ], - 'rectangle': [ - [ - -85.78125, - 33.75 - ], - [ - -84.375, - 33.75 - ], - [ - -84.375, - 35.15625 - ], - [ - -85.78125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 27.421875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 291, - 'geohash': 'dhv', - 'center': [ - -82.265625, - 27.421875 - ], - 'rectangle': [ - [ - -82.96875, - 26.71875 - ], - [ - -81.5625, - 26.71875 - ], - [ - -81.5625, - 28.125 - ], - [ - -82.96875, - 28.125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 292, - 'geohash': '9ys', - 'center': [ - -94.921875, - 37.265625 - ], - 'rectangle': [ - [ - -95.625, - 36.5625 - ], - [ - -94.21875, - 36.5625 - ], - [ - -94.21875, - 37.96875 - ], - [ - -95.625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 289, - 'geohash': 'dng', - 'center': [ - -85.078125, - 38.671875 - ], - 'rectangle': [ - [ - -85.78125, - 37.96875 - ], - [ - -84.375, - 37.96875 - ], - [ - -84.375, - 39.375 - ], - [ - -85.78125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -72.421875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 307, - 'geohash': 'drs', - 'center': [ - -72.421875, - 42.890625 - ], - 'rectangle': [ - [ - -73.125, - 42.1875 - ], - [ - -71.71875, - 42.1875 - ], - [ - -71.71875, - 43.59375 - ], - [ - -73.125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 297, - 'geohash': 'dr8', - 'center': [ - -78.046875, - 42.890625 - ], - 'rectangle': [ - [ - -78.75, - 42.1875 - ], - [ - -77.34375, - 42.1875 - ], - [ - -77.34375, - 43.59375 - ], - [ - -78.75, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 260, - 'geohash': 'djf', - 'center': [ - -86.484375, - 33.046875 - ], - 'rectangle': [ - [ - -87.1875, - 32.34375 - ], - [ - -85.78125, - 32.34375 - ], - [ - -85.78125, - 33.75 - ], - [ - -87.1875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 284, - 'geohash': 'dp9', - 'center': [ - -87.890625, - 42.890625 - ], - 'rectangle': [ - [ - -88.59375, - 42.1875 - ], - [ - -87.1875, - 42.1875 - ], - [ - -87.1875, - 43.59375 - ], - [ - -88.59375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 268, - 'geohash': '9yu', - 'center': [ - -94.921875, - 38.671875 - ], - 'rectangle': [ - [ - -95.625, - 37.96875 - ], - [ - -94.21875, - 37.96875 - ], - [ - -94.21875, - 39.375 - ], - [ - -95.625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 274, - 'geohash': '9yr', - 'center': [ - -90.703125, - 35.859375 - ], - 'rectangle': [ - [ - -91.40625, - 35.15625 - ], - [ - -90, - 35.15625 - ], - [ - -90, - 36.5625 - ], - [ - -91.40625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 282, - 'geohash': '9yn', - 'center': [ - -92.109375, - 34.453125 - ], - 'rectangle': [ - [ - -92.8125, - 33.75 - ], - [ - -91.40625, - 33.75 - ], - [ - -91.40625, - 35.15625 - ], - [ - -92.8125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 270, - 'geohash': '9qd', - 'center': [ - -120.234375, - 37.265625 - ], - 'rectangle': [ - [ - -120.9375, - 36.5625 - ], - [ - -119.53125, - 36.5625 - ], - [ - -119.53125, - 37.96875 - ], - [ - -120.9375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 269, - 'geohash': 'dp7', - 'center': [ - -85.078125, - 41.484375 - ], - 'rectangle': [ - [ - -85.78125, - 40.78125 - ], - [ - -84.375, - 40.78125 - ], - [ - -84.375, - 42.1875 - ], - [ - -85.78125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -71.015625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 260, - 'geohash': 'drt', - 'center': [ - -71.015625, - 42.890625 - ], - 'rectangle': [ - [ - -71.71875, - 42.1875 - ], - [ - -70.3125, - 42.1875 - ], - [ - -70.3125, - 43.59375 - ], - [ - -71.71875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 257, - 'geohash': 'dn2', - 'center': [ - -89.296875, - 35.859375 - ], - 'rectangle': [ - [ - -90, - 35.15625 - ], - [ - -88.59375, - 35.15625 - ], - [ - -88.59375, - 36.5625 - ], - [ - -90, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 288, - 'geohash': '9vk', - 'center': [ - -94.921875, - 30.234375 - ], - 'rectangle': [ - [ - -95.625, - 29.53125 - ], - [ - -94.21875, - 29.53125 - ], - [ - -94.21875, - 30.9375 - ], - [ - -95.625, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 27.421875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 260, - 'geohash': 'dhy', - 'center': [ - -80.859375, - 27.421875 - ], - 'rectangle': [ - [ - -81.5625, - 26.71875 - ], - [ - -80.15625, - 26.71875 - ], - [ - -80.15625, - 28.125 - ], - [ - -81.5625, - 28.125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 265, - 'geohash': 'dn3', - 'center': [ - -87.890625, - 35.859375 - ], - 'rectangle': [ - [ - -88.59375, - 35.15625 - ], - [ - -87.1875, - 35.15625 - ], - [ - -87.1875, - 36.5625 - ], - [ - -88.59375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 250, - 'geohash': 'dj8', - 'center': [ - -89.296875, - 31.640625 - ], - 'rectangle': [ - [ - -90, - 30.9375 - ], - [ - -88.59375, - 30.9375 - ], - [ - -88.59375, - 32.34375 - ], - [ - -90, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 255, - 'geohash': 'dpn', - 'center': [ - -80.859375, - 40.078125 - ], - 'rectangle': [ - [ - -81.5625, - 39.375 - ], - [ - -80.15625, - 39.375 - ], - [ - -80.15625, - 40.78125 - ], - [ - -81.5625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 259, - 'geohash': 'dju', - 'center': [ - -83.671875, - 33.046875 - ], - 'rectangle': [ - [ - -84.375, - 32.34375 - ], - [ - -82.96875, - 32.34375 - ], - [ - -82.96875, - 33.75 - ], - [ - -84.375, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 238, - 'geohash': '9vz', - 'center': [ - -90.703125, - 33.046875 - ], - 'rectangle': [ - [ - -91.40625, - 32.34375 - ], - [ - -90, - 32.34375 - ], - [ - -90, - 33.75 - ], - [ - -91.40625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 259, - 'geohash': 'dnp', - 'center': [ - -79.453125, - 34.453125 - ], - 'rectangle': [ - [ - -80.15625, - 33.75 - ], - [ - -78.75, - 33.75 - ], - [ - -78.75, - 35.15625 - ], - [ - -80.15625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -73.828125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 249, - 'geohash': 'dr5', - 'center': [ - -73.828125, - 40.078125 - ], - 'rectangle': [ - [ - -74.53125, - 39.375 - ], - [ - -73.125, - 39.375 - ], - [ - -73.125, - 40.78125 - ], - [ - -74.53125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 237, - 'geohash': 'dp5', - 'center': [ - -85.078125, - 40.078125 - ], - 'rectangle': [ - [ - -85.78125, - 39.375 - ], - [ - -84.375, - 39.375 - ], - [ - -84.375, - 40.78125 - ], - [ - -85.78125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 259, - 'geohash': '9r1', - 'center': [ - -121.640625, - 40.078125 - ], - 'rectangle': [ - [ - -122.34375, - 39.375 - ], - [ - -120.9375, - 39.375 - ], - [ - -120.9375, - 40.78125 - ], - [ - -122.34375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 253, - 'geohash': 'djv', - 'center': [ - -82.265625, - 33.046875 - ], - 'rectangle': [ - [ - -82.96875, - 32.34375 - ], - [ - -81.5625, - 32.34375 - ], - [ - -81.5625, - 33.75 - ], - [ - -82.96875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 248, - 'geohash': 'djt', - 'center': [ - -82.265625, - 31.640625 - ], - 'rectangle': [ - [ - -82.96875, - 30.9375 - ], - [ - -81.5625, - 30.9375 - ], - [ - -81.5625, - 32.34375 - ], - [ - -82.96875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 226, - 'geohash': 'dpm', - 'center': [ - -82.265625, - 41.484375 - ], - 'rectangle': [ - [ - -82.96875, - 40.78125 - ], - [ - -81.5625, - 40.78125 - ], - [ - -81.5625, - 42.1875 - ], - [ - -82.96875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 274, - 'geohash': '9zm', - 'center': [ - -93.515625, - 41.484375 - ], - 'rectangle': [ - [ - -94.21875, - 40.78125 - ], - [ - -92.8125, - 40.78125 - ], - [ - -92.8125, - 42.1875 - ], - [ - -94.21875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 250, - 'geohash': 'dnn', - 'center': [ - -80.859375, - 34.453125 - ], - 'rectangle': [ - [ - -81.5625, - 33.75 - ], - [ - -80.15625, - 33.75 - ], - [ - -80.15625, - 35.15625 - ], - [ - -81.5625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 262, - 'geohash': '9y3', - 'center': [ - -99.140625, - 35.859375 - ], - 'rectangle': [ - [ - -99.84375, - 35.15625 - ], - [ - -98.4375, - 35.15625 - ], - [ - -98.4375, - 36.5625 - ], - [ - -99.84375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 220, - 'geohash': '9yy', - 'center': [ - -92.109375, - 38.671875 - ], - 'rectangle': [ - [ - -92.8125, - 37.96875 - ], - [ - -91.40625, - 37.96875 - ], - [ - -91.40625, - 39.375 - ], - [ - -92.8125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 238, - 'geohash': 'dn7', - 'center': [ - -85.078125, - 35.859375 - ], - 'rectangle': [ - [ - -85.78125, - 35.15625 - ], - [ - -84.375, - 35.15625 - ], - [ - -84.375, - 36.5625 - ], - [ - -85.78125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 238, - 'geohash': '9tb', - 'center': [ - -111.796875, - 33.046875 - ], - 'rectangle': [ - [ - -112.5, - 32.34375 - ], - [ - -111.09375, - 32.34375 - ], - [ - -111.09375, - 33.75 - ], - [ - -112.5, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 267, - 'geohash': 'dnq', - 'center': [ - -80.859375, - 35.859375 - ], - 'rectangle': [ - [ - -81.5625, - 35.15625 - ], - [ - -80.15625, - 35.15625 - ], - [ - -80.15625, - 36.5625 - ], - [ - -81.5625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 232, - 'geohash': 'djn', - 'center': [ - -80.859375, - 28.828125 - ], - 'rectangle': [ - [ - -81.5625, - 28.125 - ], - [ - -80.15625, - 28.125 - ], - [ - -80.15625, - 29.53125 - ], - [ - -81.5625, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 241, - 'geohash': 'dnj', - 'center': [ - -82.265625, - 34.453125 - ], - 'rectangle': [ - [ - -82.96875, - 33.75 - ], - [ - -81.5625, - 33.75 - ], - [ - -81.5625, - 35.15625 - ], - [ - -82.96875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 237, - 'geohash': '9y6', - 'center': [ - -97.734375, - 35.859375 - ], - 'rectangle': [ - [ - -98.4375, - 35.15625 - ], - [ - -97.03125, - 35.15625 - ], - [ - -97.03125, - 36.5625 - ], - [ - -98.4375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 248, - 'geohash': '9vv', - 'center': [ - -93.515625, - 33.046875 - ], - 'rectangle': [ - [ - -94.21875, - 32.34375 - ], - [ - -92.8125, - 32.34375 - ], - [ - -92.8125, - 33.75 - ], - [ - -94.21875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 243, - 'geohash': 'dr9', - 'center': [ - -76.640625, - 42.890625 - ], - 'rectangle': [ - [ - -77.34375, - 42.1875 - ], - [ - -75.9375, - 42.1875 - ], - [ - -75.9375, - 43.59375 - ], - [ - -77.34375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 239, - 'geohash': 'djs', - 'center': [ - -83.671875, - 31.640625 - ], - 'rectangle': [ - [ - -84.375, - 30.9375 - ], - [ - -82.96875, - 30.9375 - ], - [ - -82.96875, - 32.34375 - ], - [ - -84.375, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 251, - 'geohash': '9z7', - 'center': [ - -96.328125, - 41.484375 - ], - 'rectangle': [ - [ - -97.03125, - 40.78125 - ], - [ - -95.625, - 40.78125 - ], - [ - -95.625, - 42.1875 - ], - [ - -97.03125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 215, - 'geohash': 'djg', - 'center': [ - -85.078125, - 33.046875 - ], - 'rectangle': [ - [ - -85.78125, - 32.34375 - ], - [ - -84.375, - 32.34375 - ], - [ - -84.375, - 33.75 - ], - [ - -85.78125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 228, - 'geohash': 'dpj', - 'center': [ - -82.265625, - 40.078125 - ], - 'rectangle': [ - [ - -82.96875, - 39.375 - ], - [ - -81.5625, - 39.375 - ], - [ - -81.5625, - 40.78125 - ], - [ - -82.96875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 215, - 'geohash': 'c20', - 'center': [ - -123.046875, - 45.703125 - ], - 'rectangle': [ - [ - -123.75, - 45 - ], - [ - -122.34375, - 45 - ], - [ - -122.34375, - 46.40625 - ], - [ - -123.75, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 223, - 'geohash': 'dnh', - 'center': [ - -83.671875, - 34.453125 - ], - 'rectangle': [ - [ - -84.375, - 33.75 - ], - [ - -82.96875, - 33.75 - ], - [ - -82.96875, - 35.15625 - ], - [ - -84.375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 236, - 'geohash': '9yk', - 'center': [ - -94.921875, - 35.859375 - ], - 'rectangle': [ - [ - -95.625, - 35.15625 - ], - [ - -94.21875, - 35.15625 - ], - [ - -94.21875, - 36.5625 - ], - [ - -95.625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 226, - 'geohash': 'dqc', - 'center': [ - -76.640625, - 38.671875 - ], - 'rectangle': [ - [ - -77.34375, - 37.96875 - ], - [ - -75.9375, - 37.96875 - ], - [ - -75.9375, - 39.375 - ], - [ - -77.34375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 220, - 'geohash': 'dqb', - 'center': [ - -78.046875, - 38.671875 - ], - 'rectangle': [ - [ - -78.75, - 37.96875 - ], - [ - -77.34375, - 37.96875 - ], - [ - -77.34375, - 39.375 - ], - [ - -78.75, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 219, - 'geohash': '9mu', - 'center': [ - -117.421875, - 33.046875 - ], - 'rectangle': [ - [ - -118.125, - 32.34375 - ], - [ - -116.71875, - 32.34375 - ], - [ - -116.71875, - 33.75 - ], - [ - -118.125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -71.015625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 203, - 'geohash': 'drm', - 'center': [ - -71.015625, - 41.484375 - ], - 'rectangle': [ - [ - -71.71875, - 40.78125 - ], - [ - -70.3125, - 40.78125 - ], - [ - -70.3125, - 42.1875 - ], - [ - -71.71875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 228, - 'geohash': '9yq', - 'center': [ - -92.109375, - 35.859375 - ], - 'rectangle': [ - [ - -92.8125, - 35.15625 - ], - [ - -91.40625, - 35.15625 - ], - [ - -91.40625, - 36.5625 - ], - [ - -92.8125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 237, - 'geohash': 'dn4', - 'center': [ - -86.484375, - 34.453125 - ], - 'rectangle': [ - [ - -87.1875, - 33.75 - ], - [ - -85.78125, - 33.75 - ], - [ - -85.78125, - 35.15625 - ], - [ - -87.1875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 222, - 'geohash': 'bdv', - 'center': [ - -149.765625, - 61.171875 - ], - 'rectangle': [ - [ - -150.46875, - 60.46875 - ], - [ - -149.0625, - 60.46875 - ], - [ - -149.0625, - 61.875 - ], - [ - -150.46875, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 215, - 'geohash': '9yp', - 'center': [ - -90.703125, - 34.453125 - ], - 'rectangle': [ - [ - -91.40625, - 33.75 - ], - [ - -90, - 33.75 - ], - [ - -90, - 35.15625 - ], - [ - -91.40625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 197, - 'geohash': '9vd', - 'center': [ - -97.734375, - 31.640625 - ], - 'rectangle': [ - [ - -98.4375, - 30.9375 - ], - [ - -97.03125, - 30.9375 - ], - [ - -97.03125, - 32.34375 - ], - [ - -98.4375, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 225, - 'geohash': '9yd', - 'center': [ - -97.734375, - 37.265625 - ], - 'rectangle': [ - [ - -98.4375, - 36.5625 - ], - [ - -97.03125, - 36.5625 - ], - [ - -97.03125, - 37.96875 - ], - [ - -98.4375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 26.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 216, - 'geohash': 'dhw', - 'center': [ - -80.859375, - 26.015625 - ], - 'rectangle': [ - [ - -81.5625, - 25.3125 - ], - [ - -80.15625, - 25.3125 - ], - [ - -80.15625, - 26.71875 - ], - [ - -81.5625, - 26.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 199, - 'geohash': 'dr6', - 'center': [ - -75.234375, - 41.484375 - ], - 'rectangle': [ - [ - -75.9375, - 40.78125 - ], - [ - -74.53125, - 40.78125 - ], - [ - -74.53125, - 42.1875 - ], - [ - -75.9375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 207, - 'geohash': 'dnv', - 'center': [ - -82.265625, - 38.671875 - ], - 'rectangle': [ - [ - -82.96875, - 37.96875 - ], - [ - -81.5625, - 37.96875 - ], - [ - -81.5625, - 39.375 - ], - [ - -82.96875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 210, - 'geohash': 'dnr', - 'center': [ - -79.453125, - 35.859375 - ], - 'rectangle': [ - [ - -80.15625, - 35.15625 - ], - [ - -78.75, - 35.15625 - ], - [ - -78.75, - 36.5625 - ], - [ - -80.15625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 221, - 'geohash': 'dje', - 'center': [ - -85.078125, - 31.640625 - ], - 'rectangle': [ - [ - -85.78125, - 30.9375 - ], - [ - -84.375, - 30.9375 - ], - [ - -84.375, - 32.34375 - ], - [ - -85.78125, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 204, - 'geohash': '9y4', - 'center': [ - -97.734375, - 34.453125 - ], - 'rectangle': [ - [ - -98.4375, - 33.75 - ], - [ - -97.03125, - 33.75 - ], - [ - -97.03125, - 35.15625 - ], - [ - -98.4375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 214, - 'geohash': '9q7', - 'center': [ - -118.828125, - 35.859375 - ], - 'rectangle': [ - [ - -119.53125, - 35.15625 - ], - [ - -118.125, - 35.15625 - ], - [ - -118.125, - 36.5625 - ], - [ - -119.53125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 214, - 'geohash': 'dn8', - 'center': [ - -89.296875, - 37.265625 - ], - 'rectangle': [ - [ - -90, - 36.5625 - ], - [ - -88.59375, - 36.5625 - ], - [ - -88.59375, - 37.96875 - ], - [ - -90, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 204, - 'geohash': '9zu', - 'center': [ - -94.921875, - 44.296875 - ], - 'rectangle': [ - [ - -95.625, - 43.59375 - ], - [ - -94.21875, - 43.59375 - ], - [ - -94.21875, - 45 - ], - [ - -95.625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 213, - 'geohash': 'dq2', - 'center': [ - -78.046875, - 35.859375 - ], - 'rectangle': [ - [ - -78.75, - 35.15625 - ], - [ - -77.34375, - 35.15625 - ], - [ - -77.34375, - 36.5625 - ], - [ - -78.75, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 228, - 'geohash': 'dnb', - 'center': [ - -89.296875, - 38.671875 - ], - 'rectangle': [ - [ - -90, - 37.96875 - ], - [ - -88.59375, - 37.96875 - ], - [ - -88.59375, - 39.375 - ], - [ - -90, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 221, - 'geohash': 'dnc', - 'center': [ - -87.890625, - 38.671875 - ], - 'rectangle': [ - [ - -88.59375, - 37.96875 - ], - [ - -87.1875, - 37.96875 - ], - [ - -87.1875, - 39.375 - ], - [ - -88.59375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 214, - 'geohash': '9zq', - 'center': [ - -92.109375, - 41.484375 - ], - 'rectangle': [ - [ - -92.8125, - 40.78125 - ], - [ - -91.40625, - 40.78125 - ], - [ - -91.40625, - 42.1875 - ], - [ - -92.8125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 205, - 'geohash': '9y5', - 'center': [ - -96.328125, - 34.453125 - ], - 'rectangle': [ - [ - -97.03125, - 33.75 - ], - [ - -95.625, - 33.75 - ], - [ - -95.625, - 35.15625 - ], - [ - -97.03125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 222, - 'geohash': '9vu', - 'center': [ - -94.921875, - 33.046875 - ], - 'rectangle': [ - [ - -95.625, - 32.34375 - ], - [ - -94.21875, - 32.34375 - ], - [ - -94.21875, - 33.75 - ], - [ - -95.625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 204, - 'geohash': 'dnm', - 'center': [ - -82.265625, - 35.859375 - ], - 'rectangle': [ - [ - -82.96875, - 35.15625 - ], - [ - -81.5625, - 35.15625 - ], - [ - -81.5625, - 36.5625 - ], - [ - -82.96875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 206, - 'geohash': '9yz', - 'center': [ - -90.703125, - 38.671875 - ], - 'rectangle': [ - [ - -91.40625, - 37.96875 - ], - [ - -90, - 37.96875 - ], - [ - -90, - 39.375 - ], - [ - -91.40625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -132.890625, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 214, - 'geohash': 'c1c', - 'center': [ - -132.890625, - 55.546875 - ], - 'rectangle': [ - [ - -133.59375, - 54.84375 - ], - [ - -132.1875, - 54.84375 - ], - [ - -132.1875, - 56.25 - ], - [ - -133.59375, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 195, - 'geohash': 'dnf', - 'center': [ - -86.484375, - 38.671875 - ], - 'rectangle': [ - [ - -87.1875, - 37.96875 - ], - [ - -85.78125, - 37.96875 - ], - [ - -85.78125, - 39.375 - ], - [ - -87.1875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 183, - 'geohash': 'dpg', - 'center': [ - -85.078125, - 44.296875 - ], - 'rectangle': [ - [ - -85.78125, - 43.59375 - ], - [ - -84.375, - 43.59375 - ], - [ - -84.375, - 45 - ], - [ - -85.78125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 203, - 'geohash': 'dn9', - 'center': [ - -87.890625, - 37.265625 - ], - 'rectangle': [ - [ - -88.59375, - 36.5625 - ], - [ - -87.1875, - 36.5625 - ], - [ - -87.1875, - 37.96875 - ], - [ - -88.59375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 198, - 'geohash': 'dq0', - 'center': [ - -78.046875, - 34.453125 - ], - 'rectangle': [ - [ - -78.75, - 33.75 - ], - [ - -77.34375, - 33.75 - ], - [ - -77.34375, - 35.15625 - ], - [ - -78.75, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 210, - 'geohash': '9v7', - 'center': [ - -96.328125, - 30.234375 - ], - 'rectangle': [ - [ - -97.03125, - 29.53125 - ], - [ - -95.625, - 29.53125 - ], - [ - -95.625, - 30.9375 - ], - [ - -97.03125, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 193, - 'geohash': '9z4', - 'center': [ - -97.734375, - 40.078125 - ], - 'rectangle': [ - [ - -98.4375, - 39.375 - ], - [ - -97.03125, - 39.375 - ], - [ - -97.03125, - 40.78125 - ], - [ - -98.4375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 196, - 'geohash': 'dq9', - 'center': [ - -76.640625, - 37.265625 - ], - 'rectangle': [ - [ - -77.34375, - 36.5625 - ], - [ - -75.9375, - 36.5625 - ], - [ - -75.9375, - 37.96875 - ], - [ - -77.34375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 196, - 'geohash': 'djb', - 'center': [ - -89.296875, - 33.046875 - ], - 'rectangle': [ - [ - -90, - 32.34375 - ], - [ - -88.59375, - 32.34375 - ], - [ - -88.59375, - 33.75 - ], - [ - -90, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 204, - 'geohash': '9zr', - 'center': [ - -90.703125, - 41.484375 - ], - 'rectangle': [ - [ - -91.40625, - 40.78125 - ], - [ - -90, - 40.78125 - ], - [ - -90, - 42.1875 - ], - [ - -91.40625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -72.421875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 203, - 'geohash': 'dru', - 'center': [ - -72.421875, - 44.296875 - ], - 'rectangle': [ - [ - -73.125, - 43.59375 - ], - [ - -71.71875, - 43.59375 - ], - [ - -71.71875, - 45 - ], - [ - -73.125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 184, - 'geohash': '9zs', - 'center': [ - -94.921875, - 42.890625 - ], - 'rectangle': [ - [ - -95.625, - 42.1875 - ], - [ - -94.21875, - 42.1875 - ], - [ - -94.21875, - 43.59375 - ], - [ - -95.625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 182, - 'geohash': '9ze', - 'center': [ - -96.328125, - 42.890625 - ], - 'rectangle': [ - [ - -97.03125, - 42.1875 - ], - [ - -95.625, - 42.1875 - ], - [ - -95.625, - 43.59375 - ], - [ - -97.03125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 206, - 'geohash': 'djc', - 'center': [ - -87.890625, - 33.046875 - ], - 'rectangle': [ - [ - -88.59375, - 32.34375 - ], - [ - -87.1875, - 32.34375 - ], - [ - -87.1875, - 33.75 - ], - [ - -88.59375, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 182, - 'geohash': '9y1', - 'center': [ - -99.140625, - 34.453125 - ], - 'rectangle': [ - [ - -99.84375, - 33.75 - ], - [ - -98.4375, - 33.75 - ], - [ - -98.4375, - 35.15625 - ], - [ - -99.84375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 194, - 'geohash': 'djy', - 'center': [ - -80.859375, - 33.046875 - ], - 'rectangle': [ - [ - -81.5625, - 32.34375 - ], - [ - -80.15625, - 32.34375 - ], - [ - -80.15625, - 33.75 - ], - [ - -81.5625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 199, - 'geohash': 'c28', - 'center': [ - -123.046875, - 48.515625 - ], - 'rectangle': [ - [ - -123.75, - 47.8125 - ], - [ - -122.34375, - 47.8125 - ], - [ - -122.34375, - 49.21875 - ], - [ - -123.75, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 184, - 'geohash': '9vx', - 'center': [ - -90.703125, - 31.640625 - ], - 'rectangle': [ - [ - -91.40625, - 30.9375 - ], - [ - -90, - 30.9375 - ], - [ - -90, - 32.34375 - ], - [ - -91.40625, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 192, - 'geohash': 'dnw', - 'center': [ - -80.859375, - 37.265625 - ], - 'rectangle': [ - [ - -81.5625, - 36.5625 - ], - [ - -80.15625, - 36.5625 - ], - [ - -80.15625, - 37.96875 - ], - [ - -81.5625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 197, - 'geohash': '9zk', - 'center': [ - -94.921875, - 41.484375 - ], - 'rectangle': [ - [ - -95.625, - 40.78125 - ], - [ - -94.21875, - 40.78125 - ], - [ - -94.21875, - 42.1875 - ], - [ - -95.625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 183, - 'geohash': 'djd', - 'center': [ - -86.484375, - 31.640625 - ], - 'rectangle': [ - [ - -87.1875, - 30.9375 - ], - [ - -85.78125, - 30.9375 - ], - [ - -85.78125, - 32.34375 - ], - [ - -87.1875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 188, - 'geohash': 'f05', - 'center': [ - -85.078125, - 45.703125 - ], - 'rectangle': [ - [ - -85.78125, - 45 - ], - [ - -84.375, - 45 - ], - [ - -84.375, - 46.40625 - ], - [ - -85.78125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -69.609375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 183, - 'geohash': 'dry', - 'center': [ - -69.609375, - 44.296875 - ], - 'rectangle': [ - [ - -70.3125, - 43.59375 - ], - [ - -68.90625, - 43.59375 - ], - [ - -68.90625, - 45 - ], - [ - -70.3125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 192, - 'geohash': 'cbd', - 'center': [ - -97.734375, - 48.515625 - ], - 'rectangle': [ - [ - -98.4375, - 47.8125 - ], - [ - -97.03125, - 47.8125 - ], - [ - -97.03125, - 49.21875 - ], - [ - -98.4375, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 176, - 'geohash': 'cbj', - 'center': [ - -93.515625, - 45.703125 - ], - 'rectangle': [ - [ - -94.21875, - 45 - ], - [ - -92.8125, - 45 - ], - [ - -92.8125, - 46.40625 - ], - [ - -94.21875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 180, - 'geohash': 'dr2', - 'center': [ - -78.046875, - 41.484375 - ], - 'rectangle': [ - [ - -78.75, - 40.78125 - ], - [ - -77.34375, - 40.78125 - ], - [ - -77.34375, - 42.1875 - ], - [ - -78.75, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 169, - 'geohash': 'djj', - 'center': [ - -82.265625, - 28.828125 - ], - 'rectangle': [ - [ - -82.96875, - 28.125 - ], - [ - -81.5625, - 28.125 - ], - [ - -81.5625, - 29.53125 - ], - [ - -82.96875, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 191, - 'geohash': '9z6', - 'center': [ - -97.734375, - 41.484375 - ], - 'rectangle': [ - [ - -98.4375, - 40.78125 - ], - [ - -97.03125, - 40.78125 - ], - [ - -97.03125, - 42.1875 - ], - [ - -98.4375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 187, - 'geohash': 'dqf', - 'center': [ - -75.234375, - 38.671875 - ], - 'rectangle': [ - [ - -75.9375, - 37.96875 - ], - [ - -74.53125, - 37.96875 - ], - [ - -74.53125, - 39.375 - ], - [ - -75.9375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 176, - 'geohash': 'dne', - 'center': [ - -85.078125, - 37.265625 - ], - 'rectangle': [ - [ - -85.78125, - 36.5625 - ], - [ - -84.375, - 36.5625 - ], - [ - -84.375, - 37.96875 - ], - [ - -85.78125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 187, - 'geohash': '9v6', - 'center': [ - -97.734375, - 30.234375 - ], - 'rectangle': [ - [ - -98.4375, - 29.53125 - ], - [ - -97.03125, - 29.53125 - ], - [ - -97.03125, - 30.9375 - ], - [ - -98.4375, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 181, - 'geohash': '9vy', - 'center': [ - -92.109375, - 33.046875 - ], - 'rectangle': [ - [ - -92.8125, - 32.34375 - ], - [ - -91.40625, - 32.34375 - ], - [ - -91.40625, - 33.75 - ], - [ - -92.8125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 183, - 'geohash': 'f00', - 'center': [ - -89.296875, - 45.703125 - ], - 'rectangle': [ - [ - -90, - 45 - ], - [ - -88.59375, - 45 - ], - [ - -88.59375, - 46.40625 - ], - [ - -90, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 163, - 'geohash': 'dr3', - 'center': [ - -76.640625, - 41.484375 - ], - 'rectangle': [ - [ - -77.34375, - 40.78125 - ], - [ - -75.9375, - 40.78125 - ], - [ - -75.9375, - 42.1875 - ], - [ - -77.34375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 185, - 'geohash': '9vm', - 'center': [ - -93.515625, - 30.234375 - ], - 'rectangle': [ - [ - -94.21875, - 29.53125 - ], - [ - -92.8125, - 29.53125 - ], - [ - -92.8125, - 30.9375 - ], - [ - -94.21875, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 176, - 'geohash': 'dnk', - 'center': [ - -83.671875, - 35.859375 - ], - 'rectangle': [ - [ - -84.375, - 35.15625 - ], - [ - -82.96875, - 35.15625 - ], - [ - -82.96875, - 36.5625 - ], - [ - -84.375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 200, - 'geohash': '9zx', - 'center': [ - -90.703125, - 42.890625 - ], - 'rectangle': [ - [ - -91.40625, - 42.1875 - ], - [ - -90, - 42.1875 - ], - [ - -90, - 43.59375 - ], - [ - -91.40625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 173, - 'geohash': '9qf', - 'center': [ - -120.234375, - 38.671875 - ], - 'rectangle': [ - [ - -120.9375, - 37.96875 - ], - [ - -119.53125, - 37.96875 - ], - [ - -119.53125, - 39.375 - ], - [ - -120.9375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 194, - 'geohash': 'dpc', - 'center': [ - -87.890625, - 44.296875 - ], - 'rectangle': [ - [ - -88.59375, - 43.59375 - ], - [ - -87.1875, - 43.59375 - ], - [ - -87.1875, - 45 - ], - [ - -88.59375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 195, - 'geohash': 'dj3', - 'center': [ - -87.890625, - 30.234375 - ], - 'rectangle': [ - [ - -88.59375, - 29.53125 - ], - [ - -87.1875, - 29.53125 - ], - [ - -87.1875, - 30.9375 - ], - [ - -88.59375, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 187, - 'geohash': '9zp', - 'center': [ - -90.703125, - 40.078125 - ], - 'rectangle': [ - [ - -91.40625, - 39.375 - ], - [ - -90, - 39.375 - ], - [ - -90, - 40.78125 - ], - [ - -91.40625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 177, - 'geohash': 'dnd', - 'center': [ - -86.484375, - 37.265625 - ], - 'rectangle': [ - [ - -87.1875, - 36.5625 - ], - [ - -85.78125, - 36.5625 - ], - [ - -85.78125, - 37.96875 - ], - [ - -87.1875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 174, - 'geohash': '9xj', - 'center': [ - -104.765625, - 40.078125 - ], - 'rectangle': [ - [ - -105.46875, - 39.375 - ], - [ - -104.0625, - 39.375 - ], - [ - -104.0625, - 40.78125 - ], - [ - -105.46875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 186, - 'geohash': 'dp1', - 'center': [ - -87.890625, - 40.078125 - ], - 'rectangle': [ - [ - -88.59375, - 39.375 - ], - [ - -87.1875, - 39.375 - ], - [ - -87.1875, - 40.78125 - ], - [ - -88.59375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 188, - 'geohash': '9qb', - 'center': [ - -123.046875, - 38.671875 - ], - 'rectangle': [ - [ - -123.75, - 37.96875 - ], - [ - -122.34375, - 37.96875 - ], - [ - -122.34375, - 39.375 - ], - [ - -123.75, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 169, - 'geohash': '9z1', - 'center': [ - -99.140625, - 40.078125 - ], - 'rectangle': [ - [ - -99.84375, - 39.375 - ], - [ - -98.4375, - 39.375 - ], - [ - -98.4375, - 40.78125 - ], - [ - -99.84375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 171, - 'geohash': 'dn1', - 'center': [ - -87.890625, - 34.453125 - ], - 'rectangle': [ - [ - -88.59375, - 33.75 - ], - [ - -87.1875, - 33.75 - ], - [ - -87.1875, - 35.15625 - ], - [ - -88.59375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 167, - 'geohash': '9vr', - 'center': [ - -90.703125, - 30.234375 - ], - 'rectangle': [ - [ - -91.40625, - 29.53125 - ], - [ - -90, - 29.53125 - ], - [ - -90, - 30.9375 - ], - [ - -91.40625, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 155, - 'geohash': '9vq', - 'center': [ - -92.109375, - 30.234375 - ], - 'rectangle': [ - [ - -92.8125, - 29.53125 - ], - [ - -91.40625, - 29.53125 - ], - [ - -91.40625, - 30.9375 - ], - [ - -92.8125, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 166, - 'geohash': 'cbn', - 'center': [ - -92.109375, - 45.703125 - ], - 'rectangle': [ - [ - -92.8125, - 45 - ], - [ - -91.40625, - 45 - ], - [ - -91.40625, - 46.40625 - ], - [ - -92.8125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 165, - 'geohash': '9ym', - 'center': [ - -93.515625, - 35.859375 - ], - 'rectangle': [ - [ - -94.21875, - 35.15625 - ], - [ - -92.8125, - 35.15625 - ], - [ - -92.8125, - 36.5625 - ], - [ - -94.21875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 162, - 'geohash': 'dpb', - 'center': [ - -89.296875, - 44.296875 - ], - 'rectangle': [ - [ - -90, - 43.59375 - ], - [ - -88.59375, - 43.59375 - ], - [ - -88.59375, - 45 - ], - [ - -90, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 173, - 'geohash': 'dns', - 'center': [ - -83.671875, - 37.265625 - ], - 'rectangle': [ - [ - -84.375, - 36.5625 - ], - [ - -82.96875, - 36.5625 - ], - [ - -82.96875, - 37.96875 - ], - [ - -84.375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 173, - 'geohash': 'dp2', - 'center': [ - -89.296875, - 41.484375 - ], - 'rectangle': [ - [ - -90, - 40.78125 - ], - [ - -88.59375, - 40.78125 - ], - [ - -88.59375, - 42.1875 - ], - [ - -90, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 161, - 'geohash': 'djm', - 'center': [ - -82.265625, - 30.234375 - ], - 'rectangle': [ - [ - -82.96875, - 29.53125 - ], - [ - -81.5625, - 29.53125 - ], - [ - -81.5625, - 30.9375 - ], - [ - -82.96875, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 164, - 'geohash': 'dj2', - 'center': [ - -89.296875, - 30.234375 - ], - 'rectangle': [ - [ - -90, - 29.53125 - ], - [ - -88.59375, - 29.53125 - ], - [ - -88.59375, - 30.9375 - ], - [ - -90, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 161, - 'geohash': 'cb5', - 'center': [ - -96.328125, - 45.703125 - ], - 'rectangle': [ - [ - -97.03125, - 45 - ], - [ - -95.625, - 45 - ], - [ - -95.625, - 46.40625 - ], - [ - -97.03125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 155, - 'geohash': '9yw', - 'center': [ - -92.109375, - 37.265625 - ], - 'rectangle': [ - [ - -92.8125, - 36.5625 - ], - [ - -91.40625, - 36.5625 - ], - [ - -91.40625, - 37.96875 - ], - [ - -92.8125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 146, - 'geohash': 'drd', - 'center': [ - -75.234375, - 42.890625 - ], - 'rectangle': [ - [ - -75.9375, - 42.1875 - ], - [ - -74.53125, - 42.1875 - ], - [ - -74.53125, - 43.59375 - ], - [ - -75.9375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 183, - 'geohash': 'dnt', - 'center': [ - -82.265625, - 37.265625 - ], - 'rectangle': [ - [ - -82.96875, - 36.5625 - ], - [ - -81.5625, - 36.5625 - ], - [ - -81.5625, - 37.96875 - ], - [ - -82.96875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 174, - 'geohash': '9vc', - 'center': [ - -99.140625, - 33.046875 - ], - 'rectangle': [ - [ - -99.84375, - 32.34375 - ], - [ - -98.4375, - 32.34375 - ], - [ - -98.4375, - 33.75 - ], - [ - -99.84375, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 147, - 'geohash': '9rb', - 'center': [ - -123.046875, - 44.296875 - ], - 'rectangle': [ - [ - -123.75, - 43.59375 - ], - [ - -122.34375, - 43.59375 - ], - [ - -122.34375, - 45 - ], - [ - -123.75, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 157, - 'geohash': 'djz', - 'center': [ - -79.453125, - 33.046875 - ], - 'rectangle': [ - [ - -80.15625, - 32.34375 - ], - [ - -78.75, - 32.34375 - ], - [ - -78.75, - 33.75 - ], - [ - -80.15625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 154, - 'geohash': '9z5', - 'center': [ - -96.328125, - 40.078125 - ], - 'rectangle': [ - [ - -97.03125, - 39.375 - ], - [ - -95.625, - 39.375 - ], - [ - -95.625, - 40.78125 - ], - [ - -97.03125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 175, - 'geohash': 'djk', - 'center': [ - -83.671875, - 30.234375 - ], - 'rectangle': [ - [ - -84.375, - 29.53125 - ], - [ - -82.96875, - 29.53125 - ], - [ - -82.96875, - 30.9375 - ], - [ - -84.375, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 149, - 'geohash': '9y8', - 'center': [ - -100.546875, - 37.265625 - ], - 'rectangle': [ - [ - -101.25, - 36.5625 - ], - [ - -99.84375, - 36.5625 - ], - [ - -99.84375, - 37.96875 - ], - [ - -101.25, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 164, - 'geohash': '9zh', - 'center': [ - -94.921875, - 40.078125 - ], - 'rectangle': [ - [ - -95.625, - 39.375 - ], - [ - -94.21875, - 39.375 - ], - [ - -94.21875, - 40.78125 - ], - [ - -95.625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 150, - 'geohash': '9zg', - 'center': [ - -96.328125, - 44.296875 - ], - 'rectangle': [ - [ - -97.03125, - 43.59375 - ], - [ - -95.625, - 43.59375 - ], - [ - -95.625, - 45 - ], - [ - -97.03125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 150, - 'geohash': 'dnu', - 'center': [ - -83.671875, - 38.671875 - ], - 'rectangle': [ - [ - -84.375, - 37.96875 - ], - [ - -82.96875, - 37.96875 - ], - [ - -82.96875, - 39.375 - ], - [ - -84.375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 158, - 'geohash': '9qq', - 'center': [ - -114.609375, - 35.859375 - ], - 'rectangle': [ - [ - -115.3125, - 35.15625 - ], - [ - -113.90625, - 35.15625 - ], - [ - -113.90625, - 36.5625 - ], - [ - -115.3125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 149, - 'geohash': 'dq3', - 'center': [ - -76.640625, - 35.859375 - ], - 'rectangle': [ - [ - -77.34375, - 35.15625 - ], - [ - -75.9375, - 35.15625 - ], - [ - -75.9375, - 36.5625 - ], - [ - -77.34375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 147, - 'geohash': 'dp0', - 'center': [ - -89.296875, - 40.078125 - ], - 'rectangle': [ - [ - -90, - 39.375 - ], - [ - -88.59375, - 39.375 - ], - [ - -88.59375, - 40.78125 - ], - [ - -90, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 154, - 'geohash': '9r2', - 'center': [ - -123.046875, - 41.484375 - ], - 'rectangle': [ - [ - -123.75, - 40.78125 - ], - [ - -122.34375, - 40.78125 - ], - [ - -122.34375, - 42.1875 - ], - [ - -123.75, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 156, - 'geohash': '9zn', - 'center': [ - -92.109375, - 40.078125 - ], - 'rectangle': [ - [ - -92.8125, - 39.375 - ], - [ - -91.40625, - 39.375 - ], - [ - -91.40625, - 40.78125 - ], - [ - -92.8125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 148, - 'geohash': 'dq8', - 'center': [ - -78.046875, - 37.265625 - ], - 'rectangle': [ - [ - -78.75, - 36.5625 - ], - [ - -77.34375, - 36.5625 - ], - [ - -77.34375, - 37.96875 - ], - [ - -78.75, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 149, - 'geohash': '9v1', - 'center': [ - -99.140625, - 28.828125 - ], - 'rectangle': [ - [ - -99.84375, - 28.125 - ], - [ - -98.4375, - 28.125 - ], - [ - -98.4375, - 29.53125 - ], - [ - -99.84375, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 142, - 'geohash': '9zf', - 'center': [ - -97.734375, - 44.296875 - ], - 'rectangle': [ - [ - -98.4375, - 43.59375 - ], - [ - -97.03125, - 43.59375 - ], - [ - -97.03125, - 45 - ], - [ - -98.4375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 165, - 'geohash': '9zw', - 'center': [ - -92.109375, - 42.890625 - ], - 'rectangle': [ - [ - -92.8125, - 42.1875 - ], - [ - -91.40625, - 42.1875 - ], - [ - -91.40625, - 43.59375 - ], - [ - -92.8125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 126, - 'geohash': 'dr1', - 'center': [ - -76.640625, - 40.078125 - ], - 'rectangle': [ - [ - -77.34375, - 39.375 - ], - [ - -75.9375, - 39.375 - ], - [ - -75.9375, - 40.78125 - ], - [ - -77.34375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 140, - 'geohash': 'c22', - 'center': [ - -123.046875, - 47.109375 - ], - 'rectangle': [ - [ - -123.75, - 46.40625 - ], - [ - -122.34375, - 46.40625 - ], - [ - -122.34375, - 47.8125 - ], - [ - -123.75, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -73.828125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 141, - 'geohash': 'drg', - 'center': [ - -73.828125, - 44.296875 - ], - 'rectangle': [ - [ - -74.53125, - 43.59375 - ], - [ - -73.125, - 43.59375 - ], - [ - -73.125, - 45 - ], - [ - -74.53125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 151, - 'geohash': '9zy', - 'center': [ - -92.109375, - 44.296875 - ], - 'rectangle': [ - [ - -92.8125, - 43.59375 - ], - [ - -91.40625, - 43.59375 - ], - [ - -91.40625, - 45 - ], - [ - -92.8125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 140, - 'geohash': 'cbq', - 'center': [ - -92.109375, - 47.109375 - ], - 'rectangle': [ - [ - -92.8125, - 46.40625 - ], - [ - -91.40625, - 46.40625 - ], - [ - -91.40625, - 47.8125 - ], - [ - -92.8125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 140, - 'geohash': '9z3', - 'center': [ - -99.140625, - 41.484375 - ], - 'rectangle': [ - [ - -99.84375, - 40.78125 - ], - [ - -98.4375, - 40.78125 - ], - [ - -98.4375, - 42.1875 - ], - [ - -99.84375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 153, - 'geohash': 'c2q', - 'center': [ - -114.609375, - 47.109375 - ], - 'rectangle': [ - [ - -115.3125, - 46.40625 - ], - [ - -113.90625, - 46.40625 - ], - [ - -113.90625, - 47.8125 - ], - [ - -115.3125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 127, - 'geohash': 'dpr', - 'center': [ - -79.453125, - 41.484375 - ], - 'rectangle': [ - [ - -80.15625, - 40.78125 - ], - [ - -78.75, - 40.78125 - ], - [ - -78.75, - 42.1875 - ], - [ - -80.15625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -65.390625, - 18.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 112, - 'geohash': 'de3', - 'center': [ - -65.390625, - 18.984375 - ], - 'rectangle': [ - [ - -66.09375, - 18.28125 - ], - [ - -64.6875, - 18.28125 - ], - [ - -64.6875, - 19.6875 - ], - [ - -66.09375, - 19.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 160, - 'geohash': 'b6u', - 'center': [ - -162.421875, - 61.171875 - ], - 'rectangle': [ - [ - -163.125, - 60.46875 - ], - [ - -161.71875, - 60.46875 - ], - [ - -161.71875, - 61.875 - ], - [ - -163.125, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 136, - 'geohash': '9wp', - 'center': [ - -101.953125, - 34.453125 - ], - 'rectangle': [ - [ - -102.65625, - 33.75 - ], - [ - -101.25, - 33.75 - ], - [ - -101.25, - 35.15625 - ], - [ - -102.65625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 141, - 'geohash': '9zt', - 'center': [ - -93.515625, - 42.890625 - ], - 'rectangle': [ - [ - -94.21875, - 42.1875 - ], - [ - -92.8125, - 42.1875 - ], - [ - -92.8125, - 43.59375 - ], - [ - -94.21875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 129, - 'geohash': 'cb7', - 'center': [ - -96.328125, - 47.109375 - ], - 'rectangle': [ - [ - -97.03125, - 46.40625 - ], - [ - -95.625, - 46.40625 - ], - [ - -95.625, - 47.8125 - ], - [ - -97.03125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 133, - 'geohash': 'c23', - 'center': [ - -121.640625, - 47.109375 - ], - 'rectangle': [ - [ - -122.34375, - 46.40625 - ], - [ - -120.9375, - 46.40625 - ], - [ - -120.9375, - 47.8125 - ], - [ - -122.34375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 135, - 'geohash': 'c27', - 'center': [ - -118.828125, - 47.109375 - ], - 'rectangle': [ - [ - -119.53125, - 46.40625 - ], - [ - -118.125, - 46.40625 - ], - [ - -118.125, - 47.8125 - ], - [ - -119.53125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 129, - 'geohash': '9zd', - 'center': [ - -97.734375, - 42.890625 - ], - 'rectangle': [ - [ - -98.4375, - 42.1875 - ], - [ - -97.03125, - 42.1875 - ], - [ - -97.03125, - 43.59375 - ], - [ - -98.4375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 27.421875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 135, - 'geohash': '9uf', - 'center': [ - -97.734375, - 27.421875 - ], - 'rectangle': [ - [ - -98.4375, - 26.71875 - ], - [ - -97.03125, - 26.71875 - ], - [ - -97.03125, - 28.125 - ], - [ - -98.4375, - 28.125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 131, - 'geohash': '9r0', - 'center': [ - -123.046875, - 40.078125 - ], - 'rectangle': [ - [ - -123.75, - 39.375 - ], - [ - -122.34375, - 39.375 - ], - [ - -122.34375, - 40.78125 - ], - [ - -123.75, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -165.234375, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 132, - 'geohash': 'b6f', - 'center': [ - -165.234375, - 61.171875 - ], - 'rectangle': [ - [ - -165.9375, - 60.46875 - ], - [ - -164.53125, - 60.46875 - ], - [ - -164.53125, - 61.875 - ], - [ - -165.9375, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 126, - 'geohash': '9vw', - 'center': [ - -92.109375, - 31.640625 - ], - 'rectangle': [ - [ - -92.8125, - 30.9375 - ], - [ - -91.40625, - 30.9375 - ], - [ - -91.40625, - 32.34375 - ], - [ - -92.8125, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 125, - 'geohash': '9z0', - 'center': [ - -100.546875, - 40.078125 - ], - 'rectangle': [ - [ - -101.25, - 39.375 - ], - [ - -99.84375, - 39.375 - ], - [ - -99.84375, - 40.78125 - ], - [ - -101.25, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 124, - 'geohash': 'dr0', - 'center': [ - -78.046875, - 40.078125 - ], - 'rectangle': [ - [ - -78.75, - 39.375 - ], - [ - -77.34375, - 39.375 - ], - [ - -77.34375, - 40.78125 - ], - [ - -78.75, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 140, - 'geohash': 'cb4', - 'center': [ - -97.734375, - 45.703125 - ], - 'rectangle': [ - [ - -98.4375, - 45 - ], - [ - -97.03125, - 45 - ], - [ - -97.03125, - 46.40625 - ], - [ - -98.4375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -135.703125, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 140, - 'geohash': 'bfr', - 'center': [ - -135.703125, - 58.359375 - ], - 'rectangle': [ - [ - -136.40625, - 57.65625 - ], - [ - -135, - 57.65625 - ], - [ - -135, - 59.0625 - ], - [ - -136.40625, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 134, - 'geohash': 'dnx', - 'center': [ - -79.453125, - 37.265625 - ], - 'rectangle': [ - [ - -80.15625, - 36.5625 - ], - [ - -78.75, - 36.5625 - ], - [ - -78.75, - 37.96875 - ], - [ - -80.15625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 124, - 'geohash': '9yf', - 'center': [ - -97.734375, - 38.671875 - ], - 'rectangle': [ - [ - -98.4375, - 37.96875 - ], - [ - -97.03125, - 37.96875 - ], - [ - -97.03125, - 39.375 - ], - [ - -98.4375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 142, - 'geohash': 'dj9', - 'center': [ - -87.890625, - 31.640625 - ], - 'rectangle': [ - [ - -88.59375, - 30.9375 - ], - [ - -87.1875, - 30.9375 - ], - [ - -87.1875, - 32.34375 - ], - [ - -88.59375, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 116, - 'geohash': '9yj', - 'center': [ - -93.515625, - 34.453125 - ], - 'rectangle': [ - [ - -94.21875, - 33.75 - ], - [ - -92.8125, - 33.75 - ], - [ - -92.8125, - 35.15625 - ], - [ - -94.21875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 104, - 'geohash': 'dpd', - 'center': [ - -86.484375, - 42.890625 - ], - 'rectangle': [ - [ - -87.1875, - 42.1875 - ], - [ - -85.78125, - 42.1875 - ], - [ - -85.78125, - 43.59375 - ], - [ - -87.1875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 121, - 'geohash': '9tz', - 'center': [ - -101.953125, - 33.046875 - ], - 'rectangle': [ - [ - -102.65625, - 32.34375 - ], - [ - -101.25, - 32.34375 - ], - [ - -101.25, - 33.75 - ], - [ - -102.65625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 128, - 'geohash': '9yg', - 'center': [ - -96.328125, - 38.671875 - ], - 'rectangle': [ - [ - -97.03125, - 37.96875 - ], - [ - -95.625, - 37.96875 - ], - [ - -95.625, - 39.375 - ], - [ - -97.03125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 121, - 'geohash': 'c2k', - 'center': [ - -117.421875, - 47.109375 - ], - 'rectangle': [ - [ - -118.125, - 46.40625 - ], - [ - -116.71875, - 46.40625 - ], - [ - -116.71875, - 47.8125 - ], - [ - -118.125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 131, - 'geohash': '9yh', - 'center': [ - -94.921875, - 34.453125 - ], - 'rectangle': [ - [ - -95.625, - 33.75 - ], - [ - -94.21875, - 33.75 - ], - [ - -94.21875, - 35.15625 - ], - [ - -95.625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 121, - 'geohash': 'c8x', - 'center': [ - -101.953125, - 48.515625 - ], - 'rectangle': [ - [ - -102.65625, - 47.8125 - ], - [ - -101.25, - 47.8125 - ], - [ - -101.25, - 49.21875 - ], - [ - -102.65625, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 26.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 108, - 'geohash': '9ud', - 'center': [ - -97.734375, - 26.015625 - ], - 'rectangle': [ - [ - -98.4375, - 25.3125 - ], - [ - -97.03125, - 25.3125 - ], - [ - -97.03125, - 26.71875 - ], - [ - -98.4375, - 26.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 133, - 'geohash': '9zz', - 'center': [ - -90.703125, - 44.296875 - ], - 'rectangle': [ - [ - -91.40625, - 43.59375 - ], - [ - -90, - 43.59375 - ], - [ - -90, - 45 - ], - [ - -91.40625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 126, - 'geohash': '9wz', - 'center': [ - -101.953125, - 38.671875 - ], - 'rectangle': [ - [ - -102.65625, - 37.96875 - ], - [ - -101.25, - 37.96875 - ], - [ - -101.25, - 39.375 - ], - [ - -102.65625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 126, - 'geohash': '9t9', - 'center': [ - -110.390625, - 31.640625 - ], - 'rectangle': [ - [ - -111.09375, - 30.9375 - ], - [ - -109.6875, - 30.9375 - ], - [ - -109.6875, - 32.34375 - ], - [ - -111.09375, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -134.296875, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 126, - 'geohash': 'c40', - 'center': [ - -134.296875, - 56.953125 - ], - 'rectangle': [ - [ - -135, - 56.25 - ], - [ - -133.59375, - 56.25 - ], - [ - -133.59375, - 57.65625 - ], - [ - -135, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 113, - 'geohash': '9yv', - 'center': [ - -93.515625, - 38.671875 - ], - 'rectangle': [ - [ - -94.21875, - 37.96875 - ], - [ - -92.8125, - 37.96875 - ], - [ - -92.8125, - 39.375 - ], - [ - -94.21875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 110, - 'geohash': '9w1', - 'center': [ - -110.390625, - 34.453125 - ], - 'rectangle': [ - [ - -111.09375, - 33.75 - ], - [ - -109.6875, - 33.75 - ], - [ - -109.6875, - 35.15625 - ], - [ - -111.09375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -71.015625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 124, - 'geohash': 'drv', - 'center': [ - -71.015625, - 44.296875 - ], - 'rectangle': [ - [ - -71.71875, - 43.59375 - ], - [ - -70.3125, - 43.59375 - ], - [ - -70.3125, - 45 - ], - [ - -71.71875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 120, - 'geohash': 'djw', - 'center': [ - -80.859375, - 31.640625 - ], - 'rectangle': [ - [ - -81.5625, - 30.9375 - ], - [ - -80.15625, - 30.9375 - ], - [ - -80.15625, - 32.34375 - ], - [ - -81.5625, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 114, - 'geohash': '9wr', - 'center': [ - -101.953125, - 35.859375 - ], - 'rectangle': [ - [ - -102.65625, - 35.15625 - ], - [ - -101.25, - 35.15625 - ], - [ - -101.25, - 36.5625 - ], - [ - -102.65625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 112, - 'geohash': '9v5', - 'center': [ - -96.328125, - 28.828125 - ], - 'rectangle': [ - [ - -97.03125, - 28.125 - ], - [ - -95.625, - 28.125 - ], - [ - -95.625, - 29.53125 - ], - [ - -97.03125, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 97, - 'geohash': '9vt', - 'center': [ - -93.515625, - 31.640625 - ], - 'rectangle': [ - [ - -94.21875, - 30.9375 - ], - [ - -92.8125, - 30.9375 - ], - [ - -92.8125, - 32.34375 - ], - [ - -94.21875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 109, - 'geohash': 'cbh', - 'center': [ - -94.921875, - 45.703125 - ], - 'rectangle': [ - [ - -95.625, - 45 - ], - [ - -94.21875, - 45 - ], - [ - -94.21875, - 46.40625 - ], - [ - -95.625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 127, - 'geohash': '9wx', - 'center': [ - -101.953125, - 37.265625 - ], - 'rectangle': [ - [ - -102.65625, - 36.5625 - ], - [ - -101.25, - 36.5625 - ], - [ - -101.25, - 37.96875 - ], - [ - -102.65625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 110, - 'geohash': '9xy', - 'center': [ - -103.359375, - 44.296875 - ], - 'rectangle': [ - [ - -104.0625, - 43.59375 - ], - [ - -102.65625, - 43.59375 - ], - [ - -102.65625, - 45 - ], - [ - -104.0625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 120, - 'geohash': 'c80', - 'center': [ - -111.796875, - 45.703125 - ], - 'rectangle': [ - [ - -112.5, - 45 - ], - [ - -111.09375, - 45 - ], - [ - -111.09375, - 46.40625 - ], - [ - -112.5, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 118, - 'geohash': '9vs', - 'center': [ - -94.921875, - 31.640625 - ], - 'rectangle': [ - [ - -95.625, - 30.9375 - ], - [ - -94.21875, - 30.9375 - ], - [ - -94.21875, - 32.34375 - ], - [ - -95.625, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 117, - 'geohash': 'cb1', - 'center': [ - -99.140625, - 45.703125 - ], - 'rectangle': [ - [ - -99.84375, - 45 - ], - [ - -98.4375, - 45 - ], - [ - -98.4375, - 46.40625 - ], - [ - -99.84375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 92, - 'geohash': 'c24', - 'center': [ - -120.234375, - 45.703125 - ], - 'rectangle': [ - [ - -120.9375, - 45 - ], - [ - -119.53125, - 45 - ], - [ - -119.53125, - 46.40625 - ], - [ - -120.9375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 106, - 'geohash': 'dj7', - 'center': [ - -85.078125, - 30.234375 - ], - 'rectangle': [ - [ - -85.78125, - 29.53125 - ], - [ - -84.375, - 29.53125 - ], - [ - -84.375, - 30.9375 - ], - [ - -85.78125, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 104, - 'geohash': 'b6v', - 'center': [ - -161.015625, - 61.171875 - ], - 'rectangle': [ - [ - -161.71875, - 60.46875 - ], - [ - -160.3125, - 60.46875 - ], - [ - -160.3125, - 61.875 - ], - [ - -161.71875, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 106, - 'geohash': '9we', - 'center': [ - -107.578125, - 37.265625 - ], - 'rectangle': [ - [ - -108.28125, - 36.5625 - ], - [ - -106.875, - 36.5625 - ], - [ - -106.875, - 37.96875 - ], - [ - -108.28125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 103, - 'geohash': '9q6', - 'center': [ - -120.234375, - 35.859375 - ], - 'rectangle': [ - [ - -120.9375, - 35.15625 - ], - [ - -119.53125, - 35.15625 - ], - [ - -119.53125, - 36.5625 - ], - [ - -120.9375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 93, - 'geohash': '9x0', - 'center': [ - -111.796875, - 40.078125 - ], - 'rectangle': [ - [ - -112.5, - 39.375 - ], - [ - -111.09375, - 39.375 - ], - [ - -111.09375, - 40.78125 - ], - [ - -112.5, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 95, - 'geohash': 'dj6', - 'center': [ - -86.484375, - 30.234375 - ], - 'rectangle': [ - [ - -87.1875, - 29.53125 - ], - [ - -85.78125, - 29.53125 - ], - [ - -85.78125, - 30.9375 - ], - [ - -87.1875, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 115, - 'geohash': '9mv', - 'center': [ - -116.015625, - 33.046875 - ], - 'rectangle': [ - [ - -116.71875, - 32.34375 - ], - [ - -115.3125, - 32.34375 - ], - [ - -115.3125, - 33.75 - ], - [ - -116.71875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 123, - 'geohash': '9z9', - 'center': [ - -99.140625, - 42.890625 - ], - 'rectangle': [ - [ - -99.84375, - 42.1875 - ], - [ - -98.4375, - 42.1875 - ], - [ - -98.4375, - 43.59375 - ], - [ - -99.84375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 113, - 'geohash': '9qe', - 'center': [ - -118.828125, - 37.265625 - ], - 'rectangle': [ - [ - -119.53125, - 36.5625 - ], - [ - -118.125, - 36.5625 - ], - [ - -118.125, - 37.96875 - ], - [ - -119.53125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 117, - 'geohash': 'cb6', - 'center': [ - -97.734375, - 47.109375 - ], - 'rectangle': [ - [ - -98.4375, - 46.40625 - ], - [ - -97.03125, - 46.40625 - ], - [ - -97.03125, - 47.8125 - ], - [ - -98.4375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -155.390625, - 20.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 96, - 'geohash': '8e9', - 'center': [ - -155.390625, - 20.390625 - ], - 'rectangle': [ - [ - -156.09375, - 19.6875 - ], - [ - -154.6875, - 19.6875 - ], - [ - -154.6875, - 21.09375 - ], - [ - -156.09375, - 21.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 86, - 'geohash': 'c26', - 'center': [ - -120.234375, - 47.109375 - ], - 'rectangle': [ - [ - -120.9375, - 46.40625 - ], - [ - -119.53125, - 46.40625 - ], - [ - -119.53125, - 47.8125 - ], - [ - -120.9375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 109, - 'geohash': '9xr', - 'center': [ - -101.953125, - 41.484375 - ], - 'rectangle': [ - [ - -102.65625, - 40.78125 - ], - [ - -101.25, - 40.78125 - ], - [ - -101.25, - 42.1875 - ], - [ - -102.65625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 108, - 'geohash': 'bd7', - 'center': [ - -152.578125, - 58.359375 - ], - 'rectangle': [ - [ - -153.28125, - 57.65625 - ], - [ - -151.875, - 57.65625 - ], - [ - -151.875, - 59.0625 - ], - [ - -153.28125, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 95, - 'geohash': '9x2', - 'center': [ - -111.796875, - 41.484375 - ], - 'rectangle': [ - [ - -112.5, - 40.78125 - ], - [ - -111.09375, - 40.78125 - ], - [ - -111.09375, - 42.1875 - ], - [ - -112.5, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 104, - 'geohash': 'c88', - 'center': [ - -111.796875, - 48.515625 - ], - 'rectangle': [ - [ - -112.5, - 47.8125 - ], - [ - -111.09375, - 47.8125 - ], - [ - -111.09375, - 49.21875 - ], - [ - -112.5, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 99, - 'geohash': 'c2p', - 'center': [ - -113.203125, - 45.703125 - ], - 'rectangle': [ - [ - -113.90625, - 45 - ], - [ - -112.5, - 45 - ], - [ - -112.5, - 46.40625 - ], - [ - -113.90625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 106, - 'geohash': '9r3', - 'center': [ - -121.640625, - 41.484375 - ], - 'rectangle': [ - [ - -122.34375, - 40.78125 - ], - [ - -120.9375, - 40.78125 - ], - [ - -120.9375, - 42.1875 - ], - [ - -122.34375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -69.609375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 116, - 'geohash': 'f2n', - 'center': [ - -69.609375, - 45.703125 - ], - 'rectangle': [ - [ - -70.3125, - 45 - ], - [ - -68.90625, - 45 - ], - [ - -68.90625, - 46.40625 - ], - [ - -70.3125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 105, - 'geohash': 'c25', - 'center': [ - -118.828125, - 45.703125 - ], - 'rectangle': [ - [ - -119.53125, - 45 - ], - [ - -118.125, - 45 - ], - [ - -118.125, - 46.40625 - ], - [ - -119.53125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 88, - 'geohash': 'dny', - 'center': [ - -80.859375, - 38.671875 - ], - 'rectangle': [ - [ - -81.5625, - 37.96875 - ], - [ - -80.15625, - 37.96875 - ], - [ - -80.15625, - 39.375 - ], - [ - -81.5625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 96, - 'geohash': '9yt', - 'center': [ - -93.515625, - 37.265625 - ], - 'rectangle': [ - [ - -94.21875, - 36.5625 - ], - [ - -92.8125, - 36.5625 - ], - [ - -92.8125, - 37.96875 - ], - [ - -94.21875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 105, - 'geohash': '9ye', - 'center': [ - -96.328125, - 37.265625 - ], - 'rectangle': [ - [ - -97.03125, - 36.5625 - ], - [ - -95.625, - 36.5625 - ], - [ - -95.625, - 37.96875 - ], - [ - -97.03125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 99, - 'geohash': '9v3', - 'center': [ - -99.140625, - 30.234375 - ], - 'rectangle': [ - [ - -99.84375, - 29.53125 - ], - [ - -98.4375, - 29.53125 - ], - [ - -98.4375, - 30.9375 - ], - [ - -99.84375, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 89, - 'geohash': '9qx', - 'center': [ - -113.203125, - 37.265625 - ], - 'rectangle': [ - [ - -113.90625, - 36.5625 - ], - [ - -112.5, - 36.5625 - ], - [ - -112.5, - 37.96875 - ], - [ - -113.90625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 82, - 'geohash': '9zb', - 'center': [ - -100.546875, - 44.296875 - ], - 'rectangle': [ - [ - -101.25, - 43.59375 - ], - [ - -99.84375, - 43.59375 - ], - [ - -99.84375, - 45 - ], - [ - -101.25, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 26.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 87, - 'geohash': 'dhx', - 'center': [ - -79.453125, - 26.015625 - ], - 'rectangle': [ - [ - -80.15625, - 25.3125 - ], - [ - -78.75, - 25.3125 - ], - [ - -78.75, - 26.71875 - ], - [ - -80.15625, - 26.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 89, - 'geohash': '9q4', - 'center': [ - -120.234375, - 34.453125 - ], - 'rectangle': [ - [ - -120.9375, - 33.75 - ], - [ - -119.53125, - 33.75 - ], - [ - -119.53125, - 35.15625 - ], - [ - -120.9375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 93, - 'geohash': 'b6p', - 'center': [ - -158.203125, - 56.953125 - ], - 'rectangle': [ - [ - -158.90625, - 56.25 - ], - [ - -157.5, - 56.25 - ], - [ - -157.5, - 57.65625 - ], - [ - -158.90625, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 88, - 'geohash': '9w0', - 'center': [ - -111.796875, - 34.453125 - ], - 'rectangle': [ - [ - -112.5, - 33.75 - ], - [ - -111.09375, - 33.75 - ], - [ - -111.09375, - 35.15625 - ], - [ - -112.5, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 99, - 'geohash': '9ve', - 'center': [ - -96.328125, - 31.640625 - ], - 'rectangle': [ - [ - -97.03125, - 30.9375 - ], - [ - -95.625, - 30.9375 - ], - [ - -95.625, - 32.34375 - ], - [ - -97.03125, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 91, - 'geohash': 'c8p', - 'center': [ - -101.953125, - 45.703125 - ], - 'rectangle': [ - [ - -102.65625, - 45 - ], - [ - -101.25, - 45 - ], - [ - -101.25, - 46.40625 - ], - [ - -102.65625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 111, - 'geohash': '9r8', - 'center': [ - -123.046875, - 42.890625 - ], - 'rectangle': [ - [ - -123.75, - 42.1875 - ], - [ - -122.34375, - 42.1875 - ], - [ - -122.34375, - 43.59375 - ], - [ - -123.75, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 92, - 'geohash': 'f01', - 'center': [ - -87.890625, - 45.703125 - ], - 'rectangle': [ - [ - -88.59375, - 45 - ], - [ - -87.1875, - 45 - ], - [ - -87.1875, - 46.40625 - ], - [ - -88.59375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 94, - 'geohash': '9x5', - 'center': [ - -107.578125, - 40.078125 - ], - 'rectangle': [ - [ - -108.28125, - 39.375 - ], - [ - -106.875, - 39.375 - ], - [ - -106.875, - 40.78125 - ], - [ - -108.28125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 85, - 'geohash': '9rw', - 'center': [ - -114.609375, - 42.890625 - ], - 'rectangle': [ - [ - -115.3125, - 42.1875 - ], - [ - -113.90625, - 42.1875 - ], - [ - -113.90625, - 43.59375 - ], - [ - -115.3125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 77, - 'geohash': 'cbp', - 'center': [ - -90.703125, - 45.703125 - ], - 'rectangle': [ - [ - -91.40625, - 45 - ], - [ - -90, - 45 - ], - [ - -90, - 46.40625 - ], - [ - -91.40625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 81, - 'geohash': '9ty', - 'center': [ - -103.359375, - 33.046875 - ], - 'rectangle': [ - [ - -104.0625, - 32.34375 - ], - [ - -102.65625, - 32.34375 - ], - [ - -102.65625, - 33.75 - ], - [ - -104.0625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 78, - 'geohash': '9wv', - 'center': [ - -104.765625, - 38.671875 - ], - 'rectangle': [ - [ - -105.46875, - 37.96875 - ], - [ - -104.0625, - 37.96875 - ], - [ - -104.0625, - 39.375 - ], - [ - -105.46875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 89, - 'geohash': '9xz', - 'center': [ - -101.953125, - 44.296875 - ], - 'rectangle': [ - [ - -102.65625, - 43.59375 - ], - [ - -101.25, - 43.59375 - ], - [ - -101.25, - 45 - ], - [ - -102.65625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 84, - 'geohash': '9tx', - 'center': [ - -101.953125, - 31.640625 - ], - 'rectangle': [ - [ - -102.65625, - 30.9375 - ], - [ - -101.25, - 30.9375 - ], - [ - -101.25, - 32.34375 - ], - [ - -102.65625, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 89, - 'geohash': '9tf', - 'center': [ - -108.984375, - 33.046875 - ], - 'rectangle': [ - [ - -109.6875, - 32.34375 - ], - [ - -108.28125, - 32.34375 - ], - [ - -108.28125, - 33.75 - ], - [ - -109.6875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 76, - 'geohash': '9xp', - 'center': [ - -101.953125, - 40.078125 - ], - 'rectangle': [ - [ - -102.65625, - 39.375 - ], - [ - -101.25, - 39.375 - ], - [ - -101.25, - 40.78125 - ], - [ - -102.65625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 66, - 'geohash': '9yx', - 'center': [ - -90.703125, - 37.265625 - ], - 'rectangle': [ - [ - -91.40625, - 36.5625 - ], - [ - -90, - 36.5625 - ], - [ - -90, - 37.96875 - ], - [ - -91.40625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 82, - 'geohash': 'dpu', - 'center': [ - -83.671875, - 44.296875 - ], - 'rectangle': [ - [ - -84.375, - 43.59375 - ], - [ - -82.96875, - 43.59375 - ], - [ - -82.96875, - 45 - ], - [ - -84.375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 90, - 'geohash': 'f04', - 'center': [ - -86.484375, - 45.703125 - ], - 'rectangle': [ - [ - -87.1875, - 45 - ], - [ - -85.78125, - 45 - ], - [ - -85.78125, - 46.40625 - ], - [ - -87.1875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 71, - 'geohash': '9pr', - 'center': [ - -124.453125, - 41.484375 - ], - 'rectangle': [ - [ - -125.15625, - 40.78125 - ], - [ - -123.75, - 40.78125 - ], - [ - -123.75, - 42.1875 - ], - [ - -125.15625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 101, - 'geohash': '9xn', - 'center': [ - -103.359375, - 40.078125 - ], - 'rectangle': [ - [ - -104.0625, - 39.375 - ], - [ - -102.65625, - 39.375 - ], - [ - -102.65625, - 40.78125 - ], - [ - -104.0625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -135.703125, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 84, - 'geohash': 'bfx', - 'center': [ - -135.703125, - 59.765625 - ], - 'rectangle': [ - [ - -136.40625, - 59.0625 - ], - [ - -135, - 59.0625 - ], - [ - -135, - 60.46875 - ], - [ - -136.40625, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 89, - 'geohash': '9zj', - 'center': [ - -93.515625, - 40.078125 - ], - 'rectangle': [ - [ - -94.21875, - 39.375 - ], - [ - -92.8125, - 39.375 - ], - [ - -92.8125, - 40.78125 - ], - [ - -94.21875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 80, - 'geohash': '9y9', - 'center': [ - -99.140625, - 37.265625 - ], - 'rectangle': [ - [ - -99.84375, - 36.5625 - ], - [ - -98.4375, - 36.5625 - ], - [ - -98.4375, - 37.96875 - ], - [ - -99.84375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 82, - 'geohash': '9xg', - 'center': [ - -107.578125, - 44.296875 - ], - 'rectangle': [ - [ - -108.28125, - 43.59375 - ], - [ - -106.875, - 43.59375 - ], - [ - -106.875, - 45 - ], - [ - -108.28125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 81, - 'geohash': 'djq', - 'center': [ - -80.859375, - 30.234375 - ], - 'rectangle': [ - [ - -81.5625, - 29.53125 - ], - [ - -80.15625, - 29.53125 - ], - [ - -80.15625, - 30.9375 - ], - [ - -81.5625, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 71, - 'geohash': '9w8', - 'center': [ - -111.796875, - 37.265625 - ], - 'rectangle': [ - [ - -112.5, - 36.5625 - ], - [ - -111.09375, - 36.5625 - ], - [ - -111.09375, - 37.96875 - ], - [ - -112.5, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 78, - 'geohash': '9tw', - 'center': [ - -103.359375, - 31.640625 - ], - 'rectangle': [ - [ - -104.0625, - 30.9375 - ], - [ - -102.65625, - 30.9375 - ], - [ - -102.65625, - 32.34375 - ], - [ - -104.0625, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 74, - 'geohash': '9ru', - 'center': [ - -117.421875, - 44.296875 - ], - 'rectangle': [ - [ - -118.125, - 43.59375 - ], - [ - -116.71875, - 43.59375 - ], - [ - -116.71875, - 45 - ], - [ - -118.125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -65.390625, - 17.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 80, - 'geohash': 'de1', - 'center': [ - -65.390625, - 17.578125 - ], - 'rectangle': [ - [ - -66.09375, - 16.875 - ], - [ - -64.6875, - 16.875 - ], - [ - -64.6875, - 18.28125 - ], - [ - -66.09375, - 18.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 63, - 'geohash': '9qn', - 'center': [ - -114.609375, - 34.453125 - ], - 'rectangle': [ - [ - -115.3125, - 33.75 - ], - [ - -113.90625, - 33.75 - ], - [ - -113.90625, - 35.15625 - ], - [ - -115.3125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 82, - 'geohash': '9y2', - 'center': [ - -100.546875, - 35.859375 - ], - 'rectangle': [ - [ - -101.25, - 35.15625 - ], - [ - -99.84375, - 35.15625 - ], - [ - -99.84375, - 36.5625 - ], - [ - -101.25, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 69, - 'geohash': '9rv', - 'center': [ - -116.015625, - 44.296875 - ], - 'rectangle': [ - [ - -116.71875, - 43.59375 - ], - [ - -115.3125, - 43.59375 - ], - [ - -115.3125, - 45 - ], - [ - -116.71875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -163.828125, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 82, - 'geohash': 'b75', - 'center': [ - -163.828125, - 62.578125 - ], - 'rectangle': [ - [ - -164.53125, - 61.875 - ], - [ - -163.125, - 61.875 - ], - [ - -163.125, - 63.28125 - ], - [ - -164.53125, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 85, - 'geohash': '9yb', - 'center': [ - -100.546875, - 38.671875 - ], - 'rectangle': [ - [ - -101.25, - 37.96875 - ], - [ - -99.84375, - 37.96875 - ], - [ - -99.84375, - 39.375 - ], - [ - -101.25, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 75, - 'geohash': 'dpx', - 'center': [ - -79.453125, - 42.890625 - ], - 'rectangle': [ - [ - -80.15625, - 42.1875 - ], - [ - -78.75, - 42.1875 - ], - [ - -78.75, - 43.59375 - ], - [ - -80.15625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 74, - 'geohash': 'dpt', - 'center': [ - -82.265625, - 42.890625 - ], - 'rectangle': [ - [ - -82.96875, - 42.1875 - ], - [ - -81.5625, - 42.1875 - ], - [ - -81.5625, - 43.59375 - ], - [ - -82.96875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 72, - 'geohash': 'c83', - 'center': [ - -110.390625, - 47.109375 - ], - 'rectangle': [ - [ - -111.09375, - 46.40625 - ], - [ - -109.6875, - 46.40625 - ], - [ - -109.6875, - 47.8125 - ], - [ - -111.09375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 84, - 'geohash': 'b6s', - 'center': [ - -162.421875, - 59.765625 - ], - 'rectangle': [ - [ - -163.125, - 59.0625 - ], - [ - -161.71875, - 59.0625 - ], - [ - -161.71875, - 60.46875 - ], - [ - -163.125, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 83, - 'geohash': '9xq', - 'center': [ - -103.359375, - 41.484375 - ], - 'rectangle': [ - [ - -104.0625, - 40.78125 - ], - [ - -102.65625, - 40.78125 - ], - [ - -102.65625, - 42.1875 - ], - [ - -104.0625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 75, - 'geohash': 'b7n', - 'center': [ - -159.609375, - 62.578125 - ], - 'rectangle': [ - [ - -160.3125, - 61.875 - ], - [ - -158.90625, - 61.875 - ], - [ - -158.90625, - 63.28125 - ], - [ - -160.3125, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 69, - 'geohash': '9rc', - 'center': [ - -121.640625, - 44.296875 - ], - 'rectangle': [ - [ - -122.34375, - 43.59375 - ], - [ - -120.9375, - 43.59375 - ], - [ - -120.9375, - 45 - ], - [ - -122.34375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 78, - 'geohash': '9vh', - 'center': [ - -94.921875, - 28.828125 - ], - 'rectangle': [ - [ - -95.625, - 28.125 - ], - [ - -94.21875, - 28.125 - ], - [ - -94.21875, - 29.53125 - ], - [ - -95.625, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -69.609375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 84, - 'geohash': 'drq', - 'center': [ - -69.609375, - 41.484375 - ], - 'rectangle': [ - [ - -70.3125, - 40.78125 - ], - [ - -68.90625, - 40.78125 - ], - [ - -68.90625, - 42.1875 - ], - [ - -70.3125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 97, - 'geohash': 'cb2', - 'center': [ - -100.546875, - 47.109375 - ], - 'rectangle': [ - [ - -101.25, - 46.40625 - ], - [ - -99.84375, - 46.40625 - ], - [ - -99.84375, - 47.8125 - ], - [ - -101.25, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -134.296875, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 82, - 'geohash': 'c42', - 'center': [ - -134.296875, - 58.359375 - ], - 'rectangle': [ - [ - -135, - 57.65625 - ], - [ - -133.59375, - 57.65625 - ], - [ - -133.59375, - 59.0625 - ], - [ - -135, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 80, - 'geohash': '9xx', - 'center': [ - -101.953125, - 42.890625 - ], - 'rectangle': [ - [ - -102.65625, - 42.1875 - ], - [ - -101.25, - 42.1875 - ], - [ - -101.25, - 43.59375 - ], - [ - -102.65625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 81, - 'geohash': '9tu', - 'center': [ - -106.171875, - 33.046875 - ], - 'rectangle': [ - [ - -106.875, - 32.34375 - ], - [ - -105.46875, - 32.34375 - ], - [ - -105.46875, - 33.75 - ], - [ - -106.875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 86, - 'geohash': 'cbe', - 'center': [ - -96.328125, - 48.515625 - ], - 'rectangle': [ - [ - -97.03125, - 47.8125 - ], - [ - -95.625, - 47.8125 - ], - [ - -95.625, - 49.21875 - ], - [ - -97.03125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -132.890625, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 85, - 'geohash': 'c41', - 'center': [ - -132.890625, - 56.953125 - ], - 'rectangle': [ - [ - -133.59375, - 56.25 - ], - [ - -132.1875, - 56.25 - ], - [ - -132.1875, - 57.65625 - ], - [ - -133.59375, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 82, - 'geohash': '9wm', - 'center': [ - -104.765625, - 35.859375 - ], - 'rectangle': [ - [ - -105.46875, - 35.15625 - ], - [ - -104.0625, - 35.15625 - ], - [ - -104.0625, - 36.5625 - ], - [ - -105.46875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 71, - 'geohash': '9w6', - 'center': [ - -108.984375, - 35.859375 - ], - 'rectangle': [ - [ - -109.6875, - 35.15625 - ], - [ - -108.28125, - 35.15625 - ], - [ - -108.28125, - 36.5625 - ], - [ - -109.6875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 83, - 'geohash': '9wd', - 'center': [ - -108.984375, - 37.265625 - ], - 'rectangle': [ - [ - -109.6875, - 36.5625 - ], - [ - -108.28125, - 36.5625 - ], - [ - -108.28125, - 37.96875 - ], - [ - -109.6875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 64, - 'geohash': 'f0h', - 'center': [ - -83.671875, - 45.703125 - ], - 'rectangle': [ - [ - -84.375, - 45 - ], - [ - -82.96875, - 45 - ], - [ - -82.96875, - 46.40625 - ], - [ - -84.375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 72, - 'geohash': 'c8t', - 'center': [ - -104.765625, - 48.515625 - ], - 'rectangle': [ - [ - -105.46875, - 47.8125 - ], - [ - -104.0625, - 47.8125 - ], - [ - -104.0625, - 49.21875 - ], - [ - -105.46875, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 69, - 'geohash': '9zc', - 'center': [ - -99.140625, - 44.296875 - ], - 'rectangle': [ - [ - -99.84375, - 43.59375 - ], - [ - -98.4375, - 43.59375 - ], - [ - -98.4375, - 45 - ], - [ - -99.84375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 79, - 'geohash': 'cbk', - 'center': [ - -94.921875, - 47.109375 - ], - 'rectangle': [ - [ - -95.625, - 46.40625 - ], - [ - -94.21875, - 46.40625 - ], - [ - -94.21875, - 47.8125 - ], - [ - -95.625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 76, - 'geohash': '9yc', - 'center': [ - -99.140625, - 38.671875 - ], - 'rectangle': [ - [ - -99.84375, - 37.96875 - ], - [ - -98.4375, - 37.96875 - ], - [ - -98.4375, - 39.375 - ], - [ - -99.84375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -155.390625, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 65, - 'geohash': 'bd9', - 'center': [ - -155.390625, - 59.765625 - ], - 'rectangle': [ - [ - -156.09375, - 59.0625 - ], - [ - -154.6875, - 59.0625 - ], - [ - -154.6875, - 60.46875 - ], - [ - -156.09375, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 72, - 'geohash': 'bd2', - 'center': [ - -156.796875, - 58.359375 - ], - 'rectangle': [ - [ - -157.5, - 57.65625 - ], - [ - -156.09375, - 57.65625 - ], - [ - -156.09375, - 59.0625 - ], - [ - -157.5, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 77, - 'geohash': '9wk', - 'center': [ - -106.171875, - 35.859375 - ], - 'rectangle': [ - [ - -106.875, - 35.15625 - ], - [ - -105.46875, - 35.15625 - ], - [ - -105.46875, - 36.5625 - ], - [ - -106.875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 78, - 'geohash': '9r4', - 'center': [ - -120.234375, - 40.078125 - ], - 'rectangle': [ - [ - -120.9375, - 39.375 - ], - [ - -119.53125, - 39.375 - ], - [ - -119.53125, - 40.78125 - ], - [ - -120.9375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 77, - 'geohash': '9xm', - 'center': [ - -104.765625, - 41.484375 - ], - 'rectangle': [ - [ - -105.46875, - 40.78125 - ], - [ - -104.0625, - 40.78125 - ], - [ - -104.0625, - 42.1875 - ], - [ - -105.46875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 80, - 'geohash': '9v4', - 'center': [ - -97.734375, - 28.828125 - ], - 'rectangle': [ - [ - -98.4375, - 28.125 - ], - [ - -97.03125, - 28.125 - ], - [ - -97.03125, - 29.53125 - ], - [ - -98.4375, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 77, - 'geohash': '9x9', - 'center': [ - -110.390625, - 42.890625 - ], - 'rectangle': [ - [ - -111.09375, - 42.1875 - ], - [ - -109.6875, - 42.1875 - ], - [ - -109.6875, - 43.59375 - ], - [ - -111.09375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 73, - 'geohash': '9pp', - 'center': [ - -124.453125, - 40.078125 - ], - 'rectangle': [ - [ - -125.15625, - 39.375 - ], - [ - -123.75, - 39.375 - ], - [ - -123.75, - 40.78125 - ], - [ - -125.15625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 75, - 'geohash': 'cb0', - 'center': [ - -100.546875, - 45.703125 - ], - 'rectangle': [ - [ - -101.25, - 45 - ], - [ - -99.84375, - 45 - ], - [ - -99.84375, - 46.40625 - ], - [ - -101.25, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 75, - 'geohash': 'c89', - 'center': [ - -110.390625, - 48.515625 - ], - 'rectangle': [ - [ - -111.09375, - 47.8125 - ], - [ - -109.6875, - 47.8125 - ], - [ - -109.6875, - 49.21875 - ], - [ - -111.09375, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 64, - 'geohash': '9v9', - 'center': [ - -99.140625, - 31.640625 - ], - 'rectangle': [ - [ - -99.84375, - 30.9375 - ], - [ - -98.4375, - 30.9375 - ], - [ - -98.4375, - 32.34375 - ], - [ - -99.84375, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 75, - 'geohash': '9qw', - 'center': [ - -114.609375, - 37.265625 - ], - 'rectangle': [ - [ - -115.3125, - 36.5625 - ], - [ - -113.90625, - 36.5625 - ], - [ - -113.90625, - 37.96875 - ], - [ - -115.3125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -68.203125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 77, - 'geohash': 'f2p', - 'center': [ - -68.203125, - 45.703125 - ], - 'rectangle': [ - [ - -68.90625, - 45 - ], - [ - -67.5, - 45 - ], - [ - -67.5, - 46.40625 - ], - [ - -68.90625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 70, - 'geohash': 'b7t', - 'center': [ - -161.015625, - 65.390625 - ], - 'rectangle': [ - [ - -161.71875, - 64.6875 - ], - [ - -160.3125, - 64.6875 - ], - [ - -160.3125, - 66.09375 - ], - [ - -161.71875, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 79, - 'geohash': 'cbm', - 'center': [ - -93.515625, - 47.109375 - ], - 'rectangle': [ - [ - -94.21875, - 46.40625 - ], - [ - -92.8125, - 46.40625 - ], - [ - -92.8125, - 47.8125 - ], - [ - -94.21875, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 75, - 'geohash': 'bd8', - 'center': [ - -156.796875, - 59.765625 - ], - 'rectangle': [ - [ - -157.5, - 59.0625 - ], - [ - -156.09375, - 59.0625 - ], - [ - -156.09375, - 60.46875 - ], - [ - -157.5, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 72, - 'geohash': 'c2s', - 'center': [ - -117.421875, - 48.515625 - ], - 'rectangle': [ - [ - -118.125, - 47.8125 - ], - [ - -116.71875, - 47.8125 - ], - [ - -116.71875, - 49.21875 - ], - [ - -118.125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 64, - 'geohash': 'b7k', - 'center': [ - -162.421875, - 63.984375 - ], - 'rectangle': [ - [ - -163.125, - 63.28125 - ], - [ - -161.71875, - 63.28125 - ], - [ - -161.71875, - 64.6875 - ], - [ - -163.125, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -68.203125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 60, - 'geohash': 'drz', - 'center': [ - -68.203125, - 44.296875 - ], - 'rectangle': [ - [ - -68.90625, - 43.59375 - ], - [ - -67.5, - 43.59375 - ], - [ - -67.5, - 45 - ], - [ - -68.90625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 81, - 'geohash': '9wu', - 'center': [ - -106.171875, - 38.671875 - ], - 'rectangle': [ - [ - -106.875, - 37.96875 - ], - [ - -105.46875, - 37.96875 - ], - [ - -105.46875, - 39.375 - ], - [ - -106.875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 56, - 'geohash': 'c84', - 'center': [ - -108.984375, - 45.703125 - ], - 'rectangle': [ - [ - -109.6875, - 45 - ], - [ - -108.28125, - 45 - ], - [ - -108.28125, - 46.40625 - ], - [ - -109.6875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 61, - 'geohash': 'c8d', - 'center': [ - -108.984375, - 48.515625 - ], - 'rectangle': [ - [ - -109.6875, - 47.8125 - ], - [ - -108.28125, - 47.8125 - ], - [ - -108.28125, - 49.21875 - ], - [ - -109.6875, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 66, - 'geohash': '9y0', - 'center': [ - -100.546875, - 34.453125 - ], - 'rectangle': [ - [ - -101.25, - 33.75 - ], - [ - -99.84375, - 33.75 - ], - [ - -99.84375, - 35.15625 - ], - [ - -101.25, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 57, - 'geohash': '9wh', - 'center': [ - -106.171875, - 34.453125 - ], - 'rectangle': [ - [ - -106.875, - 33.75 - ], - [ - -105.46875, - 33.75 - ], - [ - -105.46875, - 35.15625 - ], - [ - -106.875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 74, - 'geohash': '9xw', - 'center': [ - -103.359375, - 42.890625 - ], - 'rectangle': [ - [ - -104.0625, - 42.1875 - ], - [ - -102.65625, - 42.1875 - ], - [ - -102.65625, - 43.59375 - ], - [ - -104.0625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 56, - 'geohash': 'dnz', - 'center': [ - -79.453125, - 38.671875 - ], - 'rectangle': [ - [ - -80.15625, - 37.96875 - ], - [ - -78.75, - 37.96875 - ], - [ - -78.75, - 39.375 - ], - [ - -80.15625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 76, - 'geohash': '9ts', - 'center': [ - -106.171875, - 31.640625 - ], - 'rectangle': [ - [ - -106.875, - 30.9375 - ], - [ - -105.46875, - 30.9375 - ], - [ - -105.46875, - 32.34375 - ], - [ - -106.875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 75, - 'geohash': '9xh', - 'center': [ - -106.171875, - 40.078125 - ], - 'rectangle': [ - [ - -106.875, - 39.375 - ], - [ - -105.46875, - 39.375 - ], - [ - -105.46875, - 40.78125 - ], - [ - -106.875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 65, - 'geohash': 'c2d', - 'center': [ - -120.234375, - 48.515625 - ], - 'rectangle': [ - [ - -120.9375, - 47.8125 - ], - [ - -119.53125, - 47.8125 - ], - [ - -119.53125, - 49.21875 - ], - [ - -120.9375, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 60, - 'geohash': 'bdb', - 'center': [ - -156.796875, - 61.171875 - ], - 'rectangle': [ - [ - -157.5, - 60.46875 - ], - [ - -156.09375, - 60.46875 - ], - [ - -156.09375, - 61.875 - ], - [ - -157.5, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 26.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 68, - 'geohash': 'dht', - 'center': [ - -82.265625, - 26.015625 - ], - 'rectangle': [ - [ - -82.96875, - 25.3125 - ], - [ - -81.5625, - 25.3125 - ], - [ - -81.5625, - 26.71875 - ], - [ - -82.96875, - 26.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 76, - 'geohash': 'c8q', - 'center': [ - -103.359375, - 47.109375 - ], - 'rectangle': [ - [ - -104.0625, - 46.40625 - ], - [ - -102.65625, - 46.40625 - ], - [ - -102.65625, - 47.8125 - ], - [ - -104.0625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 61, - 'geohash': 'dpf', - 'center': [ - -86.484375, - 44.296875 - ], - 'rectangle': [ - [ - -87.1875, - 43.59375 - ], - [ - -85.78125, - 43.59375 - ], - [ - -85.78125, - 45 - ], - [ - -87.1875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 49, - 'geohash': 'cb8', - 'center': [ - -100.546875, - 48.515625 - ], - 'rectangle': [ - [ - -101.25, - 47.8125 - ], - [ - -99.84375, - 47.8125 - ], - [ - -99.84375, - 49.21875 - ], - [ - -101.25, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 68, - 'geohash': '9x1', - 'center': [ - -110.390625, - 40.078125 - ], - 'rectangle': [ - [ - -111.09375, - 39.375 - ], - [ - -109.6875, - 39.375 - ], - [ - -109.6875, - 40.78125 - ], - [ - -111.09375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 59, - 'geohash': 'b6r', - 'center': [ - -158.203125, - 58.359375 - ], - 'rectangle': [ - [ - -158.90625, - 57.65625 - ], - [ - -157.5, - 57.65625 - ], - [ - -157.5, - 59.0625 - ], - [ - -158.90625, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 63, - 'geohash': '9tg', - 'center': [ - -107.578125, - 33.046875 - ], - 'rectangle': [ - [ - -108.28125, - 32.34375 - ], - [ - -106.875, - 32.34375 - ], - [ - -106.875, - 33.75 - ], - [ - -108.28125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 20.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 65, - 'geohash': '8e8', - 'center': [ - -156.796875, - 20.390625 - ], - 'rectangle': [ - [ - -157.5, - 19.6875 - ], - [ - -156.09375, - 19.6875 - ], - [ - -156.09375, - 21.09375 - ], - [ - -157.5, - 21.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 67, - 'geohash': 'dq1', - 'center': [ - -76.640625, - 34.453125 - ], - 'rectangle': [ - [ - -77.34375, - 33.75 - ], - [ - -75.9375, - 33.75 - ], - [ - -75.9375, - 35.15625 - ], - [ - -77.34375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 66, - 'geohash': 'c81', - 'center': [ - -110.390625, - 45.703125 - ], - 'rectangle': [ - [ - -111.09375, - 45 - ], - [ - -109.6875, - 45 - ], - [ - -109.6875, - 46.40625 - ], - [ - -111.09375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 56, - 'geohash': 'c29', - 'center': [ - -121.640625, - 48.515625 - ], - 'rectangle': [ - [ - -122.34375, - 47.8125 - ], - [ - -120.9375, - 47.8125 - ], - [ - -120.9375, - 49.21875 - ], - [ - -122.34375, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 65, - 'geohash': 'bds', - 'center': [ - -151.171875, - 59.765625 - ], - 'rectangle': [ - [ - -151.875, - 59.0625 - ], - [ - -150.46875, - 59.0625 - ], - [ - -150.46875, - 60.46875 - ], - [ - -151.875, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 70, - 'geohash': '9ws', - 'center': [ - -106.171875, - 37.265625 - ], - 'rectangle': [ - [ - -106.875, - 36.5625 - ], - [ - -105.46875, - 36.5625 - ], - [ - -105.46875, - 37.96875 - ], - [ - -106.875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 56, - 'geohash': 'c8m', - 'center': [ - -104.765625, - 47.109375 - ], - 'rectangle': [ - [ - -105.46875, - 46.40625 - ], - [ - -104.0625, - 46.40625 - ], - [ - -104.0625, - 47.8125 - ], - [ - -105.46875, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 63, - 'geohash': 'c0p', - 'center': [ - -124.453125, - 45.703125 - ], - 'rectangle': [ - [ - -125.15625, - 45 - ], - [ - -123.75, - 45 - ], - [ - -123.75, - 46.40625 - ], - [ - -125.15625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': 'beb', - 'center': [ - -156.796875, - 66.796875 - ], - 'rectangle': [ - [ - -157.5, - 66.09375 - ], - [ - -156.09375, - 66.09375 - ], - [ - -156.09375, - 67.5 - ], - [ - -157.5, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 53, - 'geohash': '9xb', - 'center': [ - -111.796875, - 44.296875 - ], - 'rectangle': [ - [ - -112.5, - 43.59375 - ], - [ - -111.09375, - 43.59375 - ], - [ - -111.09375, - 45 - ], - [ - -112.5, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 55, - 'geohash': '9rt', - 'center': [ - -116.015625, - 42.890625 - ], - 'rectangle': [ - [ - -116.71875, - 42.1875 - ], - [ - -115.3125, - 42.1875 - ], - [ - -115.3125, - 43.59375 - ], - [ - -116.71875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 61, - 'geohash': 'bfb', - 'center': [ - -145.546875, - 61.171875 - ], - 'rectangle': [ - [ - -146.25, - 60.46875 - ], - [ - -144.84375, - 60.46875 - ], - [ - -144.84375, - 61.875 - ], - [ - -146.25, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 72, - 'geohash': '9tq', - 'center': [ - -103.359375, - 30.234375 - ], - 'rectangle': [ - [ - -104.0625, - 29.53125 - ], - [ - -102.65625, - 29.53125 - ], - [ - -102.65625, - 30.9375 - ], - [ - -104.0625, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 66, - 'geohash': 'c86', - 'center': [ - -108.984375, - 47.109375 - ], - 'rectangle': [ - [ - -109.6875, - 46.40625 - ], - [ - -108.28125, - 46.40625 - ], - [ - -108.28125, - 47.8125 - ], - [ - -109.6875, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 58, - 'geohash': '9r6', - 'center': [ - -120.234375, - 41.484375 - ], - 'rectangle': [ - [ - -120.9375, - 40.78125 - ], - [ - -119.53125, - 40.78125 - ], - [ - -119.53125, - 42.1875 - ], - [ - -120.9375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 56, - 'geohash': 'cb9', - 'center': [ - -99.140625, - 48.515625 - ], - 'rectangle': [ - [ - -99.84375, - 47.8125 - ], - [ - -98.4375, - 47.8125 - ], - [ - -98.4375, - 49.21875 - ], - [ - -99.84375, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 56, - 'geohash': 'dq6', - 'center': [ - -75.234375, - 35.859375 - ], - 'rectangle': [ - [ - -75.9375, - 35.15625 - ], - [ - -74.53125, - 35.15625 - ], - [ - -74.53125, - 36.5625 - ], - [ - -75.9375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 63, - 'geohash': '9px', - 'center': [ - -124.453125, - 42.890625 - ], - 'rectangle': [ - [ - -125.15625, - 42.1875 - ], - [ - -123.75, - 42.1875 - ], - [ - -123.75, - 43.59375 - ], - [ - -125.15625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -153.984375, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 60, - 'geohash': 'bd4', - 'center': [ - -153.984375, - 56.953125 - ], - 'rectangle': [ - [ - -154.6875, - 56.25 - ], - [ - -153.28125, - 56.25 - ], - [ - -153.28125, - 57.65625 - ], - [ - -154.6875, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 58, - 'geohash': '9my', - 'center': [ - -114.609375, - 33.046875 - ], - 'rectangle': [ - [ - -115.3125, - 32.34375 - ], - [ - -113.90625, - 32.34375 - ], - [ - -113.90625, - 33.75 - ], - [ - -115.3125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 21.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 67, - 'geohash': '87z', - 'center': [ - -158.203125, - 21.796875 - ], - 'rectangle': [ - [ - -158.90625, - 21.09375 - ], - [ - -157.5, - 21.09375 - ], - [ - -157.5, - 22.5 - ], - [ - -158.90625, - 22.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 65, - 'geohash': 'c2m', - 'center': [ - -116.015625, - 47.109375 - ], - 'rectangle': [ - [ - -116.71875, - 46.40625 - ], - [ - -115.3125, - 46.40625 - ], - [ - -115.3125, - 47.8125 - ], - [ - -116.71875, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 59, - 'geohash': '9x3', - 'center': [ - -110.390625, - 41.484375 - ], - 'rectangle': [ - [ - -111.09375, - 40.78125 - ], - [ - -109.6875, - 40.78125 - ], - [ - -109.6875, - 42.1875 - ], - [ - -111.09375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 63, - 'geohash': '9w2', - 'center': [ - -111.796875, - 35.859375 - ], - 'rectangle': [ - [ - -112.5, - 35.15625 - ], - [ - -111.09375, - 35.15625 - ], - [ - -111.09375, - 36.5625 - ], - [ - -112.5, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 57, - 'geohash': '9pz', - 'center': [ - -124.453125, - 44.296875 - ], - 'rectangle': [ - [ - -125.15625, - 43.59375 - ], - [ - -123.75, - 43.59375 - ], - [ - -123.75, - 45 - ], - [ - -125.15625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 46, - 'geohash': 'cbr', - 'center': [ - -90.703125, - 47.109375 - ], - 'rectangle': [ - [ - -91.40625, - 46.40625 - ], - [ - -90, - 46.40625 - ], - [ - -90, - 47.8125 - ], - [ - -91.40625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 53, - 'geohash': '9wg', - 'center': [ - -107.578125, - 38.671875 - ], - 'rectangle': [ - [ - -108.28125, - 37.96875 - ], - [ - -106.875, - 37.96875 - ], - [ - -106.875, - 39.375 - ], - [ - -108.28125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 53, - 'geohash': '9vb', - 'center': [ - -100.546875, - 33.046875 - ], - 'rectangle': [ - [ - -101.25, - 32.34375 - ], - [ - -99.84375, - 32.34375 - ], - [ - -99.84375, - 33.75 - ], - [ - -101.25, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': '9z8', - 'center': [ - -100.546875, - 42.890625 - ], - 'rectangle': [ - [ - -101.25, - 42.1875 - ], - [ - -99.84375, - 42.1875 - ], - [ - -99.84375, - 43.59375 - ], - [ - -101.25, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 57, - 'geohash': '9z2', - 'center': [ - -100.546875, - 41.484375 - ], - 'rectangle': [ - [ - -101.25, - 40.78125 - ], - [ - -99.84375, - 40.78125 - ], - [ - -99.84375, - 42.1875 - ], - [ - -101.25, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 52, - 'geohash': '9w4', - 'center': [ - -108.984375, - 34.453125 - ], - 'rectangle': [ - [ - -109.6875, - 33.75 - ], - [ - -108.28125, - 33.75 - ], - [ - -108.28125, - 35.15625 - ], - [ - -109.6875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 62, - 'geohash': '9wc', - 'center': [ - -110.390625, - 38.671875 - ], - 'rectangle': [ - [ - -111.09375, - 37.96875 - ], - [ - -109.6875, - 37.96875 - ], - [ - -109.6875, - 39.375 - ], - [ - -111.09375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 67, - 'geohash': '9mz', - 'center': [ - -113.203125, - 33.046875 - ], - 'rectangle': [ - [ - -113.90625, - 32.34375 - ], - [ - -112.5, - 32.34375 - ], - [ - -112.5, - 33.75 - ], - [ - -113.90625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -68.203125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 42, - 'geohash': 'f2r', - 'center': [ - -68.203125, - 47.109375 - ], - 'rectangle': [ - [ - -68.90625, - 46.40625 - ], - [ - -67.5, - 46.40625 - ], - [ - -67.5, - 47.8125 - ], - [ - -68.90625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -131.484375, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 53, - 'geohash': 'c1f', - 'center': [ - -131.484375, - 55.546875 - ], - 'rectangle': [ - [ - -132.1875, - 54.84375 - ], - [ - -130.78125, - 54.84375 - ], - [ - -130.78125, - 56.25 - ], - [ - -132.1875, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -155.390625, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 44, - 'geohash': 'be1', - 'center': [ - -155.390625, - 62.578125 - ], - 'rectangle': [ - [ - -156.09375, - 61.875 - ], - [ - -154.6875, - 61.875 - ], - [ - -154.6875, - 63.28125 - ], - [ - -156.09375, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 55, - 'geohash': '9x8', - 'center': [ - -111.796875, - 42.890625 - ], - 'rectangle': [ - [ - -112.5, - 42.1875 - ], - [ - -111.09375, - 42.1875 - ], - [ - -111.09375, - 43.59375 - ], - [ - -112.5, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': '9rx', - 'center': [ - -113.203125, - 42.890625 - ], - 'rectangle': [ - [ - -113.90625, - 42.1875 - ], - [ - -112.5, - 42.1875 - ], - [ - -112.5, - 43.59375 - ], - [ - -113.90625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 61, - 'geohash': 'bev', - 'center': [ - -149.765625, - 66.796875 - ], - 'rectangle': [ - [ - -150.46875, - 66.09375 - ], - [ - -149.0625, - 66.09375 - ], - [ - -149.0625, - 67.5 - ], - [ - -150.46875, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 65, - 'geohash': '9wt', - 'center': [ - -104.765625, - 37.265625 - ], - 'rectangle': [ - [ - -105.46875, - 36.5625 - ], - [ - -104.0625, - 36.5625 - ], - [ - -104.0625, - 37.96875 - ], - [ - -105.46875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 21.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 43, - 'geohash': '87y', - 'center': [ - -159.609375, - 21.796875 - ], - 'rectangle': [ - [ - -160.3125, - 21.09375 - ], - [ - -158.90625, - 21.09375 - ], - [ - -158.90625, - 22.5 - ], - [ - -160.3125, - 22.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 50, - 'geohash': 'drf', - 'center': [ - -75.234375, - 44.296875 - ], - 'rectangle': [ - [ - -75.9375, - 43.59375 - ], - [ - -74.53125, - 43.59375 - ], - [ - -74.53125, - 45 - ], - [ - -75.9375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 60, - 'geohash': 'c2w', - 'center': [ - -114.609375, - 48.515625 - ], - 'rectangle': [ - [ - -115.3125, - 47.8125 - ], - [ - -113.90625, - 47.8125 - ], - [ - -113.90625, - 49.21875 - ], - [ - -115.3125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 49, - 'geohash': 'c2t', - 'center': [ - -116.015625, - 48.515625 - ], - 'rectangle': [ - [ - -116.71875, - 47.8125 - ], - [ - -115.3125, - 47.8125 - ], - [ - -115.3125, - 49.21875 - ], - [ - -116.71875, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 60, - 'geohash': '9r5', - 'center': [ - -118.828125, - 40.078125 - ], - 'rectangle': [ - [ - -119.53125, - 39.375 - ], - [ - -118.125, - 39.375 - ], - [ - -118.125, - 40.78125 - ], - [ - -119.53125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 44, - 'geohash': '9qk', - 'center': [ - -117.421875, - 35.859375 - ], - 'rectangle': [ - [ - -118.125, - 35.15625 - ], - [ - -116.71875, - 35.15625 - ], - [ - -116.71875, - 36.5625 - ], - [ - -118.125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -144.140625, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 48, - 'geohash': 'bg9', - 'center': [ - -144.140625, - 65.390625 - ], - 'rectangle': [ - [ - -144.84375, - 64.6875 - ], - [ - -143.4375, - 64.6875 - ], - [ - -143.4375, - 66.09375 - ], - [ - -144.84375, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 48, - 'geohash': 'c2j', - 'center': [ - -116.015625, - 45.703125 - ], - 'rectangle': [ - [ - -116.71875, - 45 - ], - [ - -115.3125, - 45 - ], - [ - -115.3125, - 46.40625 - ], - [ - -116.71875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': 'c2h', - 'center': [ - -117.421875, - 45.703125 - ], - 'rectangle': [ - [ - -118.125, - 45 - ], - [ - -116.71875, - 45 - ], - [ - -116.71875, - 46.40625 - ], - [ - -118.125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -163.828125, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 46, - 'geohash': 'b6e', - 'center': [ - -163.828125, - 59.765625 - ], - 'rectangle': [ - [ - -164.53125, - 59.0625 - ], - [ - -163.125, - 59.0625 - ], - [ - -163.125, - 60.46875 - ], - [ - -164.53125, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 53, - 'geohash': '9xf', - 'center': [ - -108.984375, - 44.296875 - ], - 'rectangle': [ - [ - -109.6875, - 43.59375 - ], - [ - -108.28125, - 43.59375 - ], - [ - -108.28125, - 45 - ], - [ - -109.6875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 64, - 'geohash': '9wy', - 'center': [ - -103.359375, - 38.671875 - ], - 'rectangle': [ - [ - -104.0625, - 37.96875 - ], - [ - -102.65625, - 37.96875 - ], - [ - -102.65625, - 39.375 - ], - [ - -104.0625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 67, - 'geohash': '9wb', - 'center': [ - -111.796875, - 38.671875 - ], - 'rectangle': [ - [ - -112.5, - 37.96875 - ], - [ - -111.09375, - 37.96875 - ], - [ - -111.09375, - 39.375 - ], - [ - -112.5, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 51, - 'geohash': 'bet', - 'center': [ - -149.765625, - 65.390625 - ], - 'rectangle': [ - [ - -150.46875, - 64.6875 - ], - [ - -149.0625, - 64.6875 - ], - [ - -149.0625, - 66.09375 - ], - [ - -150.46875, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 46, - 'geohash': '9qg', - 'center': [ - -118.828125, - 38.671875 - ], - 'rectangle': [ - [ - -119.53125, - 37.96875 - ], - [ - -118.125, - 37.96875 - ], - [ - -118.125, - 39.375 - ], - [ - -119.53125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 52, - 'geohash': 'c8w', - 'center': [ - -103.359375, - 48.515625 - ], - 'rectangle': [ - [ - -104.0625, - 47.8125 - ], - [ - -102.65625, - 47.8125 - ], - [ - -102.65625, - 49.21875 - ], - [ - -104.0625, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 50, - 'geohash': 'c2e', - 'center': [ - -118.828125, - 48.515625 - ], - 'rectangle': [ - [ - -119.53125, - 47.8125 - ], - [ - -118.125, - 47.8125 - ], - [ - -118.125, - 49.21875 - ], - [ - -119.53125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 14.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 52, - 'geohash': '8f8', - 'center': [ - -145.546875, - 14.765625 - ], - 'rectangle': [ - [ - -146.25, - 14.0625 - ], - [ - -144.84375, - 14.0625 - ], - [ - -144.84375, - 15.46875 - ], - [ - -146.25, - 15.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 51, - 'geohash': 'c8j', - 'center': [ - -104.765625, - 45.703125 - ], - 'rectangle': [ - [ - -105.46875, - 45 - ], - [ - -104.0625, - 45 - ], - [ - -104.0625, - 46.40625 - ], - [ - -105.46875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': '9qs', - 'center': [ - -117.421875, - 37.265625 - ], - 'rectangle': [ - [ - -118.125, - 36.5625 - ], - [ - -116.71875, - 36.5625 - ], - [ - -116.71875, - 37.96875 - ], - [ - -118.125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': 'c8r', - 'center': [ - -101.953125, - 47.109375 - ], - 'rectangle': [ - [ - -102.65625, - 46.40625 - ], - [ - -101.25, - 46.40625 - ], - [ - -101.25, - 47.8125 - ], - [ - -102.65625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 48, - 'geohash': 'be7', - 'center': [ - -152.578125, - 63.984375 - ], - 'rectangle': [ - [ - -153.28125, - 63.28125 - ], - [ - -151.875, - 63.28125 - ], - [ - -151.875, - 64.6875 - ], - [ - -153.28125, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -66.796875, - 18.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 47, - 'geohash': 'de2', - 'center': [ - -66.796875, - 18.984375 - ], - 'rectangle': [ - [ - -67.5, - 18.28125 - ], - [ - -66.09375, - 18.28125 - ], - [ - -66.09375, - 19.6875 - ], - [ - -67.5, - 19.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': 'bgb', - 'center': [ - -145.546875, - 66.796875 - ], - 'rectangle': [ - [ - -146.25, - 66.09375 - ], - [ - -144.84375, - 66.09375 - ], - [ - -144.84375, - 67.5 - ], - [ - -146.25, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 47, - 'geohash': 'c8h', - 'center': [ - -106.171875, - 45.703125 - ], - 'rectangle': [ - [ - -106.875, - 45 - ], - [ - -105.46875, - 45 - ], - [ - -105.46875, - 46.40625 - ], - [ - -106.875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 44, - 'geohash': 'bsj', - 'center': [ - -149.765625, - 68.203125 - ], - 'rectangle': [ - [ - -150.46875, - 67.5 - ], - [ - -149.0625, - 67.5 - ], - [ - -149.0625, - 68.90625 - ], - [ - -150.46875, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -141.328125, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 41, - 'geohash': 'bg7', - 'center': [ - -141.328125, - 63.984375 - ], - 'rectangle': [ - [ - -142.03125, - 63.28125 - ], - [ - -140.625, - 63.28125 - ], - [ - -140.625, - 64.6875 - ], - [ - -142.03125, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 44, - 'geohash': '9rq', - 'center': [ - -114.609375, - 41.484375 - ], - 'rectangle': [ - [ - -115.3125, - 40.78125 - ], - [ - -113.90625, - 40.78125 - ], - [ - -113.90625, - 42.1875 - ], - [ - -115.3125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 47, - 'geohash': '9rm', - 'center': [ - -116.015625, - 41.484375 - ], - 'rectangle': [ - [ - -116.71875, - 40.78125 - ], - [ - -115.3125, - 40.78125 - ], - [ - -115.3125, - 42.1875 - ], - [ - -116.71875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 38, - 'geohash': '9xk', - 'center': [ - -106.171875, - 41.484375 - ], - 'rectangle': [ - [ - -106.875, - 40.78125 - ], - [ - -105.46875, - 40.78125 - ], - [ - -105.46875, - 42.1875 - ], - [ - -106.875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 50, - 'geohash': '9xd', - 'center': [ - -108.984375, - 42.890625 - ], - 'rectangle': [ - [ - -109.6875, - 42.1875 - ], - [ - -108.28125, - 42.1875 - ], - [ - -108.28125, - 43.59375 - ], - [ - -109.6875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 46, - 'geohash': 'cbt', - 'center': [ - -93.515625, - 48.515625 - ], - 'rectangle': [ - [ - -94.21875, - 47.8125 - ], - [ - -92.8125, - 47.8125 - ], - [ - -92.8125, - 49.21875 - ], - [ - -94.21875, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': '9xt', - 'center': [ - -104.765625, - 42.890625 - ], - 'rectangle': [ - [ - -105.46875, - 42.1875 - ], - [ - -104.0625, - 42.1875 - ], - [ - -104.0625, - 43.59375 - ], - [ - -105.46875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 49, - 'geohash': '9x7', - 'center': [ - -107.578125, - 41.484375 - ], - 'rectangle': [ - [ - -108.28125, - 40.78125 - ], - [ - -106.875, - 40.78125 - ], - [ - -106.875, - 42.1875 - ], - [ - -108.28125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 44, - 'geohash': '9x4', - 'center': [ - -108.984375, - 40.078125 - ], - 'rectangle': [ - [ - -109.6875, - 39.375 - ], - [ - -108.28125, - 39.375 - ], - [ - -108.28125, - 40.78125 - ], - [ - -109.6875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 37, - 'geohash': '9rh', - 'center': [ - -117.421875, - 40.078125 - ], - 'rectangle': [ - [ - -118.125, - 39.375 - ], - [ - -116.71875, - 39.375 - ], - [ - -116.71875, - 40.78125 - ], - [ - -118.125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 40, - 'geohash': 'c82', - 'center': [ - -111.796875, - 47.109375 - ], - 'rectangle': [ - [ - -112.5, - 46.40625 - ], - [ - -111.09375, - 46.40625 - ], - [ - -111.09375, - 47.8125 - ], - [ - -112.5, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 43, - 'geohash': 'c21', - 'center': [ - -121.640625, - 45.703125 - ], - 'rectangle': [ - [ - -122.34375, - 45 - ], - [ - -120.9375, - 45 - ], - [ - -120.9375, - 46.40625 - ], - [ - -122.34375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -142.734375, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 39, - 'geohash': 'bg4', - 'center': [ - -142.734375, - 62.578125 - ], - 'rectangle': [ - [ - -143.4375, - 61.875 - ], - [ - -142.03125, - 61.875 - ], - [ - -142.03125, - 63.28125 - ], - [ - -143.4375, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 50, - 'geohash': '9w9', - 'center': [ - -110.390625, - 37.265625 - ], - 'rectangle': [ - [ - -111.09375, - 36.5625 - ], - [ - -109.6875, - 36.5625 - ], - [ - -109.6875, - 37.96875 - ], - [ - -111.09375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 48, - 'geohash': '9qj', - 'center': [ - -116.015625, - 34.453125 - ], - 'rectangle': [ - [ - -116.71875, - 33.75 - ], - [ - -115.3125, - 33.75 - ], - [ - -115.3125, - 35.15625 - ], - [ - -116.71875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 38, - 'geohash': 'c8s', - 'center': [ - -106.171875, - 48.515625 - ], - 'rectangle': [ - [ - -106.875, - 47.8125 - ], - [ - -105.46875, - 47.8125 - ], - [ - -105.46875, - 49.21875 - ], - [ - -106.875, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 48, - 'geohash': 'c0x', - 'center': [ - -124.453125, - 48.515625 - ], - 'rectangle': [ - [ - -125.15625, - 47.8125 - ], - [ - -123.75, - 47.8125 - ], - [ - -123.75, - 49.21875 - ], - [ - -125.15625, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 27.421875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 39, - 'geohash': '9uc', - 'center': [ - -99.140625, - 27.421875 - ], - 'rectangle': [ - [ - -99.84375, - 26.71875 - ], - [ - -98.4375, - 26.71875 - ], - [ - -98.4375, - 28.125 - ], - [ - -99.84375, - 28.125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 34, - 'geohash': '9td', - 'center': [ - -108.984375, - 31.640625 - ], - 'rectangle': [ - [ - -109.6875, - 30.9375 - ], - [ - -108.28125, - 30.9375 - ], - [ - -108.28125, - 32.34375 - ], - [ - -109.6875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': '9qz', - 'center': [ - -113.203125, - 38.671875 - ], - 'rectangle': [ - [ - -113.90625, - 37.96875 - ], - [ - -112.5, - 37.96875 - ], - [ - -112.5, - 39.375 - ], - [ - -113.90625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 38, - 'geohash': '9q8', - 'center': [ - -123.046875, - 37.265625 - ], - 'rectangle': [ - [ - -123.75, - 36.5625 - ], - [ - -122.34375, - 36.5625 - ], - [ - -122.34375, - 37.96875 - ], - [ - -123.75, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -153.984375, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 48, - 'geohash': 'bdd', - 'center': [ - -153.984375, - 59.765625 - ], - 'rectangle': [ - [ - -154.6875, - 59.0625 - ], - [ - -153.28125, - 59.0625 - ], - [ - -153.28125, - 60.46875 - ], - [ - -154.6875, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': '9wn', - 'center': [ - -103.359375, - 34.453125 - ], - 'rectangle': [ - [ - -104.0625, - 33.75 - ], - [ - -102.65625, - 33.75 - ], - [ - -102.65625, - 35.15625 - ], - [ - -104.0625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 39, - 'geohash': '9w5', - 'center': [ - -107.578125, - 34.453125 - ], - 'rectangle': [ - [ - -108.28125, - 33.75 - ], - [ - -106.875, - 33.75 - ], - [ - -106.875, - 35.15625 - ], - [ - -108.28125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 47, - 'geohash': '9wj', - 'center': [ - -104.765625, - 34.453125 - ], - 'rectangle': [ - [ - -105.46875, - 33.75 - ], - [ - -104.0625, - 33.75 - ], - [ - -104.0625, - 35.15625 - ], - [ - -105.46875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 42, - 'geohash': '9v0', - 'center': [ - -100.546875, - 28.828125 - ], - 'rectangle': [ - [ - -101.25, - 28.125 - ], - [ - -99.84375, - 28.125 - ], - [ - -99.84375, - 29.53125 - ], - [ - -101.25, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 40, - 'geohash': '9tt', - 'center': [ - -104.765625, - 31.640625 - ], - 'rectangle': [ - [ - -105.46875, - 30.9375 - ], - [ - -104.0625, - 30.9375 - ], - [ - -104.0625, - 32.34375 - ], - [ - -105.46875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 41, - 'geohash': 'c8n', - 'center': [ - -103.359375, - 45.703125 - ], - 'rectangle': [ - [ - -104.0625, - 45 - ], - [ - -102.65625, - 45 - ], - [ - -102.65625, - 46.40625 - ], - [ - -104.0625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 39, - 'geohash': 'be8', - 'center': [ - -156.796875, - 65.390625 - ], - 'rectangle': [ - [ - -157.5, - 64.6875 - ], - [ - -156.09375, - 64.6875 - ], - [ - -156.09375, - 66.09375 - ], - [ - -157.5, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -165.234375, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 41, - 'geohash': 'b74', - 'center': [ - -165.234375, - 62.578125 - ], - 'rectangle': [ - [ - -165.9375, - 61.875 - ], - [ - -164.53125, - 61.875 - ], - [ - -164.53125, - 63.28125 - ], - [ - -165.9375, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 51, - 'geohash': 'b7m', - 'center': [ - -161.015625, - 63.984375 - ], - 'rectangle': [ - [ - -161.71875, - 63.28125 - ], - [ - -160.3125, - 63.28125 - ], - [ - -160.3125, - 64.6875 - ], - [ - -161.71875, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 34, - 'geohash': 'bem', - 'center': [ - -149.765625, - 63.984375 - ], - 'rectangle': [ - [ - -150.46875, - 63.28125 - ], - [ - -149.0625, - 63.28125 - ], - [ - -149.0625, - 64.6875 - ], - [ - -150.46875, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 43, - 'geohash': 'b79', - 'center': [ - -166.640625, - 65.390625 - ], - 'rectangle': [ - [ - -167.34375, - 64.6875 - ], - [ - -165.9375, - 64.6875 - ], - [ - -165.9375, - 66.09375 - ], - [ - -167.34375, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 42, - 'geohash': '9wq', - 'center': [ - -103.359375, - 35.859375 - ], - 'rectangle': [ - [ - -104.0625, - 35.15625 - ], - [ - -102.65625, - 35.15625 - ], - [ - -102.65625, - 36.5625 - ], - [ - -104.0625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -169.453125, - 14.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 52, - 'geohash': '84x', - 'center': [ - -169.453125, - 14.765625 - ], - 'rectangle': [ - [ - -170.15625, - 14.0625 - ], - [ - -168.75, - 14.0625 - ], - [ - -168.75, - 15.46875 - ], - [ - -170.15625, - 15.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 39, - 'geohash': 'beu', - 'center': [ - -151.171875, - 66.796875 - ], - 'rectangle': [ - [ - -151.875, - 66.09375 - ], - [ - -150.46875, - 66.09375 - ], - [ - -150.46875, - 67.5 - ], - [ - -151.875, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 30, - 'geohash': '9x6', - 'center': [ - -108.984375, - 41.484375 - ], - 'rectangle': [ - [ - -109.6875, - 40.78125 - ], - [ - -108.28125, - 40.78125 - ], - [ - -108.28125, - 42.1875 - ], - [ - -109.6875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 42, - 'geohash': 'c0r', - 'center': [ - -124.453125, - 47.109375 - ], - 'rectangle': [ - [ - -125.15625, - 46.40625 - ], - [ - -123.75, - 46.40625 - ], - [ - -123.75, - 47.8125 - ], - [ - -125.15625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -146.953125, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 43, - 'geohash': 'bez', - 'center': [ - -146.953125, - 66.796875 - ], - 'rectangle': [ - [ - -147.65625, - 66.09375 - ], - [ - -146.25, - 66.09375 - ], - [ - -146.25, - 67.5 - ], - [ - -147.65625, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 41, - 'geohash': 'bdu', - 'center': [ - -151.171875, - 61.171875 - ], - 'rectangle': [ - [ - -151.875, - 60.46875 - ], - [ - -150.46875, - 60.46875 - ], - [ - -150.46875, - 61.875 - ], - [ - -151.875, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': 'c2r', - 'center': [ - -113.203125, - 47.109375 - ], - 'rectangle': [ - [ - -113.90625, - 46.40625 - ], - [ - -112.5, - 46.40625 - ], - [ - -112.5, - 47.8125 - ], - [ - -113.90625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 37, - 'geohash': 'b3u', - 'center': [ - -162.421875, - 55.546875 - ], - 'rectangle': [ - [ - -163.125, - 54.84375 - ], - [ - -161.71875, - 54.84375 - ], - [ - -161.71875, - 56.25 - ], - [ - -163.125, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -66.796875, - 17.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 38, - 'geohash': 'de0', - 'center': [ - -66.796875, - 17.578125 - ], - 'rectangle': [ - [ - -67.5, - 16.875 - ], - [ - -66.09375, - 16.875 - ], - [ - -66.09375, - 18.28125 - ], - [ - -67.5, - 18.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 31, - 'geohash': '9te', - 'center': [ - -107.578125, - 31.640625 - ], - 'rectangle': [ - [ - -108.28125, - 30.9375 - ], - [ - -106.875, - 30.9375 - ], - [ - -106.875, - 32.34375 - ], - [ - -108.28125, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -139.921875, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 32, - 'geohash': 'bfs', - 'center': [ - -139.921875, - 59.765625 - ], - 'rectangle': [ - [ - -140.625, - 59.0625 - ], - [ - -139.21875, - 59.0625 - ], - [ - -139.21875, - 60.46875 - ], - [ - -140.625, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 38, - 'geohash': 'b3y', - 'center': [ - -159.609375, - 55.546875 - ], - 'rectangle': [ - [ - -160.3125, - 54.84375 - ], - [ - -158.90625, - 54.84375 - ], - [ - -158.90625, - 56.25 - ], - [ - -160.3125, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 33, - 'geohash': '9w7', - 'center': [ - -107.578125, - 35.859375 - ], - 'rectangle': [ - [ - -108.28125, - 35.15625 - ], - [ - -106.875, - 35.15625 - ], - [ - -106.875, - 36.5625 - ], - [ - -108.28125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 71.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 31, - 'geohash': 'bs8', - 'center': [ - -156.796875, - 71.015625 - ], - 'rectangle': [ - [ - -157.5, - 70.3125 - ], - [ - -156.09375, - 70.3125 - ], - [ - -156.09375, - 71.71875 - ], - [ - -157.5, - 71.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 37, - 'geohash': 'b7x', - 'center': [ - -158.203125, - 65.390625 - ], - 'rectangle': [ - [ - -158.90625, - 64.6875 - ], - [ - -157.5, - 64.6875 - ], - [ - -157.5, - 66.09375 - ], - [ - -158.90625, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 38, - 'geohash': '9rk', - 'center': [ - -117.421875, - 41.484375 - ], - 'rectangle': [ - [ - -118.125, - 40.78125 - ], - [ - -116.71875, - 40.78125 - ], - [ - -116.71875, - 42.1875 - ], - [ - -118.125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 28, - 'geohash': 'cb3', - 'center': [ - -99.140625, - 47.109375 - ], - 'rectangle': [ - [ - -99.84375, - 46.40625 - ], - [ - -98.4375, - 46.40625 - ], - [ - -98.4375, - 47.8125 - ], - [ - -99.84375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -142.734375, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 34, - 'geohash': 'bff', - 'center': [ - -142.734375, - 61.171875 - ], - 'rectangle': [ - [ - -143.4375, - 60.46875 - ], - [ - -142.03125, - 60.46875 - ], - [ - -142.03125, - 61.875 - ], - [ - -143.4375, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 38, - 'geohash': 'b7v', - 'center': [ - -161.015625, - 66.796875 - ], - 'rectangle': [ - [ - -161.71875, - 66.09375 - ], - [ - -160.3125, - 66.09375 - ], - [ - -160.3125, - 67.5 - ], - [ - -161.71875, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 40, - 'geohash': 'b6y', - 'center': [ - -159.609375, - 61.171875 - ], - 'rectangle': [ - [ - -160.3125, - 60.46875 - ], - [ - -158.90625, - 60.46875 - ], - [ - -158.90625, - 61.875 - ], - [ - -160.3125, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 21.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': '8eb', - 'center': [ - -156.796875, - 21.796875 - ], - 'rectangle': [ - [ - -157.5, - 21.09375 - ], - [ - -156.09375, - 21.09375 - ], - [ - -156.09375, - 22.5 - ], - [ - -157.5, - 22.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': 'c8k', - 'center': [ - -106.171875, - 47.109375 - ], - 'rectangle': [ - [ - -106.875, - 46.40625 - ], - [ - -105.46875, - 46.40625 - ], - [ - -105.46875, - 47.8125 - ], - [ - -106.875, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 34, - 'geohash': '9wf', - 'center': [ - -108.984375, - 38.671875 - ], - 'rectangle': [ - [ - -109.6875, - 37.96875 - ], - [ - -108.28125, - 37.96875 - ], - [ - -108.28125, - 39.375 - ], - [ - -109.6875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 42, - 'geohash': 'cbw', - 'center': [ - -92.109375, - 48.515625 - ], - 'rectangle': [ - [ - -92.8125, - 47.8125 - ], - [ - -91.40625, - 47.8125 - ], - [ - -91.40625, - 49.21875 - ], - [ - -92.8125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -163.828125, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 28, - 'geohash': 'b7e', - 'center': [ - -163.828125, - 65.390625 - ], - 'rectangle': [ - [ - -164.53125, - 64.6875 - ], - [ - -163.125, - 64.6875 - ], - [ - -163.125, - 66.09375 - ], - [ - -164.53125, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': 'b3v', - 'center': [ - -161.015625, - 55.546875 - ], - 'rectangle': [ - [ - -161.71875, - 54.84375 - ], - [ - -160.3125, - 54.84375 - ], - [ - -160.3125, - 56.25 - ], - [ - -161.71875, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 29, - 'geohash': '9tv', - 'center': [ - -104.765625, - 33.046875 - ], - 'rectangle': [ - [ - -105.46875, - 32.34375 - ], - [ - -104.0625, - 32.34375 - ], - [ - -104.0625, - 33.75 - ], - [ - -105.46875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 40, - 'geohash': '9qu', - 'center': [ - -117.421875, - 38.671875 - ], - 'rectangle': [ - [ - -118.125, - 37.96875 - ], - [ - -116.71875, - 37.96875 - ], - [ - -116.71875, - 39.375 - ], - [ - -118.125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 34, - 'geohash': '9xu', - 'center': [ - -106.171875, - 44.296875 - ], - 'rectangle': [ - [ - -106.875, - 43.59375 - ], - [ - -105.46875, - 43.59375 - ], - [ - -105.46875, - 45 - ], - [ - -106.875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 27, - 'geohash': 'cbs', - 'center': [ - -94.921875, - 48.515625 - ], - 'rectangle': [ - [ - -95.625, - 47.8125 - ], - [ - -94.21875, - 47.8125 - ], - [ - -94.21875, - 49.21875 - ], - [ - -95.625, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -135.703125, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 34, - 'geohash': 'bfp', - 'center': [ - -135.703125, - 56.953125 - ], - 'rectangle': [ - [ - -136.40625, - 56.25 - ], - [ - -135, - 56.25 - ], - [ - -135, - 57.65625 - ], - [ - -136.40625, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': '9qp', - 'center': [ - -113.203125, - 34.453125 - ], - 'rectangle': [ - [ - -113.90625, - 33.75 - ], - [ - -112.5, - 33.75 - ], - [ - -112.5, - 35.15625 - ], - [ - -113.90625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -66.796875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 33, - 'geohash': 'dxb', - 'center': [ - -66.796875, - 44.296875 - ], - 'rectangle': [ - [ - -67.5, - 43.59375 - ], - [ - -66.09375, - 43.59375 - ], - [ - -66.09375, - 45 - ], - [ - -67.5, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -172.265625, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 26, - 'geohash': 'b5m', - 'center': [ - -172.265625, - 63.984375 - ], - 'rectangle': [ - [ - -172.96875, - 63.28125 - ], - [ - -171.5625, - 63.28125 - ], - [ - -171.5625, - 64.6875 - ], - [ - -172.96875, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 69.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 28, - 'geohash': 'bsk', - 'center': [ - -151.171875, - 69.609375 - ], - 'rectangle': [ - [ - -151.875, - 68.90625 - ], - [ - -150.46875, - 68.90625 - ], - [ - -150.46875, - 70.3125 - ], - [ - -151.875, - 70.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 25, - 'geohash': '9xv', - 'center': [ - -104.765625, - 44.296875 - ], - 'rectangle': [ - [ - -105.46875, - 43.59375 - ], - [ - -104.0625, - 43.59375 - ], - [ - -104.0625, - 45 - ], - [ - -105.46875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 24, - 'geohash': 'bu0', - 'center': [ - -145.546875, - 68.203125 - ], - 'rectangle': [ - [ - -146.25, - 67.5 - ], - [ - -144.84375, - 67.5 - ], - [ - -144.84375, - 68.90625 - ], - [ - -146.25, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 24, - 'geohash': '9q3', - 'center': [ - -121.640625, - 35.859375 - ], - 'rectangle': [ - [ - -122.34375, - 35.15625 - ], - [ - -120.9375, - 35.15625 - ], - [ - -120.9375, - 36.5625 - ], - [ - -122.34375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -73.828125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 23, - 'geohash': 'dqg', - 'center': [ - -73.828125, - 38.671875 - ], - 'rectangle': [ - [ - -74.53125, - 37.96875 - ], - [ - -73.125, - 37.96875 - ], - [ - -73.125, - 39.375 - ], - [ - -74.53125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 29, - 'geohash': 'c8e', - 'center': [ - -107.578125, - 48.515625 - ], - 'rectangle': [ - [ - -108.28125, - 47.8125 - ], - [ - -106.875, - 47.8125 - ], - [ - -106.875, - 49.21875 - ], - [ - -108.28125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -72.421875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 26, - 'geohash': 'drh', - 'center': [ - -72.421875, - 40.078125 - ], - 'rectangle': [ - [ - -73.125, - 39.375 - ], - [ - -71.71875, - 39.375 - ], - [ - -71.71875, - 40.78125 - ], - [ - -73.125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 20, - 'geohash': 'b6z', - 'center': [ - -158.203125, - 61.171875 - ], - 'rectangle': [ - [ - -158.90625, - 60.46875 - ], - [ - -157.5, - 60.46875 - ], - [ - -157.5, - 61.875 - ], - [ - -158.90625, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 24, - 'geohash': '9rp', - 'center': [ - -113.203125, - 40.078125 - ], - 'rectangle': [ - [ - -113.90625, - 39.375 - ], - [ - -112.5, - 39.375 - ], - [ - -112.5, - 40.78125 - ], - [ - -113.90625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -170.859375, - 14.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 24, - 'geohash': '84w', - 'center': [ - -170.859375, - 14.765625 - ], - 'rectangle': [ - [ - -171.5625, - 14.0625 - ], - [ - -170.15625, - 14.0625 - ], - [ - -170.15625, - 15.46875 - ], - [ - -171.5625, - 15.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 23, - 'geohash': 'bee', - 'center': [ - -152.578125, - 65.390625 - ], - 'rectangle': [ - [ - -153.28125, - 64.6875 - ], - [ - -151.875, - 64.6875 - ], - [ - -151.875, - 66.09375 - ], - [ - -153.28125, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -146.953125, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'bep', - 'center': [ - -146.953125, - 62.578125 - ], - 'rectangle': [ - [ - -147.65625, - 61.875 - ], - [ - -146.25, - 61.875 - ], - [ - -146.25, - 63.28125 - ], - [ - -147.65625, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 25, - 'geohash': '9vp', - 'center': [ - -90.703125, - 28.828125 - ], - 'rectangle': [ - [ - -91.40625, - 28.125 - ], - [ - -90, - 28.125 - ], - [ - -90, - 29.53125 - ], - [ - -91.40625, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -170.859375, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 27, - 'geohash': 'b4n', - 'center': [ - -170.859375, - 56.953125 - ], - 'rectangle': [ - [ - -171.5625, - 56.25 - ], - [ - -170.15625, - 56.25 - ], - [ - -170.15625, - 57.65625 - ], - [ - -171.5625, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -142.734375, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 22, - 'geohash': 'bg6', - 'center': [ - -142.734375, - 63.984375 - ], - 'rectangle': [ - [ - -143.4375, - 63.28125 - ], - [ - -142.03125, - 63.28125 - ], - [ - -142.03125, - 64.6875 - ], - [ - -143.4375, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': 'b6k', - 'center': [ - -162.421875, - 58.359375 - ], - 'rectangle': [ - [ - -163.125, - 57.65625 - ], - [ - -161.71875, - 57.65625 - ], - [ - -161.71875, - 59.0625 - ], - [ - -163.125, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'c87', - 'center': [ - -107.578125, - 47.109375 - ], - 'rectangle': [ - [ - -108.28125, - 46.40625 - ], - [ - -106.875, - 46.40625 - ], - [ - -106.875, - 47.8125 - ], - [ - -108.28125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 21, - 'geohash': 'b6x', - 'center': [ - -158.203125, - 59.765625 - ], - 'rectangle': [ - [ - -158.90625, - 59.0625 - ], - [ - -157.5, - 59.0625 - ], - [ - -157.5, - 60.46875 - ], - [ - -158.90625, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 23, - 'geohash': 'b6c', - 'center': [ - -166.640625, - 61.171875 - ], - 'rectangle': [ - [ - -167.34375, - 60.46875 - ], - [ - -165.9375, - 60.46875 - ], - [ - -165.9375, - 61.875 - ], - [ - -167.34375, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 23, - 'geohash': '9qm', - 'center': [ - -116.015625, - 35.859375 - ], - 'rectangle': [ - [ - -116.71875, - 35.15625 - ], - [ - -115.3125, - 35.15625 - ], - [ - -115.3125, - 36.5625 - ], - [ - -116.71875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 20, - 'geohash': 'bdy', - 'center': [ - -148.359375, - 61.171875 - ], - 'rectangle': [ - [ - -149.0625, - 60.46875 - ], - [ - -147.65625, - 60.46875 - ], - [ - -147.65625, - 61.875 - ], - [ - -149.0625, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 54.140625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 24, - 'geohash': 'b3s', - 'center': [ - -162.421875, - 54.140625 - ], - 'rectangle': [ - [ - -163.125, - 53.4375 - ], - [ - -161.71875, - 53.4375 - ], - [ - -161.71875, - 54.84375 - ], - [ - -163.125, - 54.84375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': '9rz', - 'center': [ - -113.203125, - 44.296875 - ], - 'rectangle': [ - [ - -113.90625, - 43.59375 - ], - [ - -112.5, - 43.59375 - ], - [ - -112.5, - 45 - ], - [ - -113.90625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 20, - 'geohash': '9rj', - 'center': [ - -116.015625, - 40.078125 - ], - 'rectangle': [ - [ - -116.71875, - 39.375 - ], - [ - -115.3125, - 39.375 - ], - [ - -115.3125, - 40.78125 - ], - [ - -116.71875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'bg2', - 'center': [ - -145.546875, - 63.984375 - ], - 'rectangle': [ - [ - -146.25, - 63.28125 - ], - [ - -144.84375, - 63.28125 - ], - [ - -144.84375, - 64.6875 - ], - [ - -146.25, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 23, - 'geohash': 'bdt', - 'center': [ - -149.765625, - 59.765625 - ], - 'rectangle': [ - [ - -150.46875, - 59.0625 - ], - [ - -149.0625, - 59.0625 - ], - [ - -149.0625, - 60.46875 - ], - [ - -150.46875, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 22, - 'geohash': 'bd0', - 'center': [ - -156.796875, - 56.953125 - ], - 'rectangle': [ - [ - -157.5, - 56.25 - ], - [ - -156.09375, - 56.25 - ], - [ - -156.09375, - 57.65625 - ], - [ - -157.5, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -165.234375, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'b76', - 'center': [ - -165.234375, - 63.984375 - ], - 'rectangle': [ - [ - -165.9375, - 63.28125 - ], - [ - -164.53125, - 63.28125 - ], - [ - -164.53125, - 64.6875 - ], - [ - -165.9375, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': '9v2', - 'center': [ - -100.546875, - 30.234375 - ], - 'rectangle': [ - [ - -101.25, - 29.53125 - ], - [ - -99.84375, - 29.53125 - ], - [ - -99.84375, - 30.9375 - ], - [ - -101.25, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'c2n', - 'center': [ - -114.609375, - 45.703125 - ], - 'rectangle': [ - [ - -115.3125, - 45 - ], - [ - -113.90625, - 45 - ], - [ - -113.90625, - 46.40625 - ], - [ - -115.3125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 23, - 'geohash': 'bej', - 'center': [ - -149.765625, - 62.578125 - ], - 'rectangle': [ - [ - -150.46875, - 61.875 - ], - [ - -149.0625, - 61.875 - ], - [ - -149.0625, - 63.28125 - ], - [ - -150.46875, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'b6q', - 'center': [ - -159.609375, - 58.359375 - ], - 'rectangle': [ - [ - -160.3125, - 57.65625 - ], - [ - -158.90625, - 57.65625 - ], - [ - -158.90625, - 59.0625 - ], - [ - -160.3125, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 22, - 'geohash': 'b6m', - 'center': [ - -161.015625, - 58.359375 - ], - 'rectangle': [ - [ - -161.71875, - 57.65625 - ], - [ - -160.3125, - 57.65625 - ], - [ - -160.3125, - 59.0625 - ], - [ - -161.71875, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -144.140625, - 13.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 24, - 'geohash': '8f3', - 'center': [ - -144.140625, - 13.359375 - ], - 'rectangle': [ - [ - -144.84375, - 12.65625 - ], - [ - -143.4375, - 12.65625 - ], - [ - -143.4375, - 14.0625 - ], - [ - -144.84375, - 14.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -141.328125, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 26, - 'geohash': 'bg5', - 'center': [ - -141.328125, - 62.578125 - ], - 'rectangle': [ - [ - -142.03125, - 61.875 - ], - [ - -140.625, - 61.875 - ], - [ - -140.625, - 63.28125 - ], - [ - -142.03125, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -144.140625, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 24, - 'geohash': 'bfc', - 'center': [ - -144.140625, - 61.171875 - ], - 'rectangle': [ - [ - -144.84375, - 60.46875 - ], - [ - -143.4375, - 60.46875 - ], - [ - -143.4375, - 61.875 - ], - [ - -144.84375, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 69.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': 'bsq', - 'center': [ - -148.359375, - 69.609375 - ], - 'rectangle': [ - [ - -149.0625, - 68.90625 - ], - [ - -147.65625, - 68.90625 - ], - [ - -147.65625, - 70.3125 - ], - [ - -149.0625, - 70.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -168.046875, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': 'b78', - 'center': [ - -168.046875, - 65.390625 - ], - 'rectangle': [ - [ - -168.75, - 64.6875 - ], - [ - -167.34375, - 64.6875 - ], - [ - -167.34375, - 66.09375 - ], - [ - -168.75, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -165.234375, - 54.140625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': 'b3d', - 'center': [ - -165.234375, - 54.140625 - ], - 'rectangle': [ - [ - -165.9375, - 53.4375 - ], - [ - -164.53125, - 53.4375 - ], - [ - -164.53125, - 54.84375 - ], - [ - -165.9375, - 54.84375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 22, - 'geohash': '9xs', - 'center': [ - -106.171875, - 42.890625 - ], - 'rectangle': [ - [ - -106.875, - 42.1875 - ], - [ - -105.46875, - 42.1875 - ], - [ - -105.46875, - 43.59375 - ], - [ - -106.875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 23, - 'geohash': '9rd', - 'center': [ - -120.234375, - 42.890625 - ], - 'rectangle': [ - [ - -120.9375, - 42.1875 - ], - [ - -119.53125, - 42.1875 - ], - [ - -119.53125, - 43.59375 - ], - [ - -120.9375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 21, - 'geohash': '9qr', - 'center': [ - -113.203125, - 35.859375 - ], - 'rectangle': [ - [ - -113.90625, - 35.15625 - ], - [ - -112.5, - 35.15625 - ], - [ - -112.5, - 36.5625 - ], - [ - -113.90625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 23, - 'geohash': 'bk1', - 'center': [ - -166.640625, - 68.203125 - ], - 'rectangle': [ - [ - -167.34375, - 67.5 - ], - [ - -165.9375, - 67.5 - ], - [ - -165.9375, - 68.90625 - ], - [ - -167.34375, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -144.140625, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'bgc', - 'center': [ - -144.140625, - 66.796875 - ], - 'rectangle': [ - [ - -144.84375, - 66.09375 - ], - [ - -143.4375, - 66.09375 - ], - [ - -143.4375, - 67.5 - ], - [ - -144.84375, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 20, - 'geohash': 'bek', - 'center': [ - -151.171875, - 63.984375 - ], - 'rectangle': [ - [ - -151.875, - 63.28125 - ], - [ - -150.46875, - 63.28125 - ], - [ - -150.46875, - 64.6875 - ], - [ - -151.875, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 23, - 'geohash': 'bde', - 'center': [ - -152.578125, - 59.765625 - ], - 'rectangle': [ - [ - -153.28125, - 59.0625 - ], - [ - -151.875, - 59.0625 - ], - [ - -151.875, - 60.46875 - ], - [ - -153.28125, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'b7s', - 'center': [ - -162.421875, - 65.390625 - ], - 'rectangle': [ - [ - -163.125, - 64.6875 - ], - [ - -161.71875, - 64.6875 - ], - [ - -161.71875, - 66.09375 - ], - [ - -163.125, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'b69', - 'center': [ - -166.640625, - 59.765625 - ], - 'rectangle': [ - [ - -167.34375, - 59.0625 - ], - [ - -165.9375, - 59.0625 - ], - [ - -165.9375, - 60.46875 - ], - [ - -167.34375, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 54.140625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'b39', - 'center': [ - -166.640625, - 54.140625 - ], - 'rectangle': [ - [ - -167.34375, - 53.4375 - ], - [ - -165.9375, - 53.4375 - ], - [ - -165.9375, - 54.84375 - ], - [ - -167.34375, - 54.84375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 17.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 20, - 'geohash': '8g0', - 'center': [ - -145.546875, - 17.578125 - ], - 'rectangle': [ - [ - -146.25, - 16.875 - ], - [ - -144.84375, - 16.875 - ], - [ - -144.84375, - 18.28125 - ], - [ - -146.25, - 18.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -144.140625, - 69.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 25, - 'geohash': 'bu3', - 'center': [ - -144.140625, - 69.609375 - ], - 'rectangle': [ - [ - -144.84375, - 68.90625 - ], - [ - -143.4375, - 68.90625 - ], - [ - -143.4375, - 70.3125 - ], - [ - -144.84375, - 70.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 71.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': 'bkw', - 'center': [ - -159.609375, - 71.015625 - ], - 'rectangle': [ - [ - -160.3125, - 70.3125 - ], - [ - -158.90625, - 70.3125 - ], - [ - -158.90625, - 71.71875 - ], - [ - -160.3125, - 71.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 69.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 21, - 'geohash': 'bkk', - 'center': [ - -162.421875, - 69.609375 - ], - 'rectangle': [ - [ - -163.125, - 68.90625 - ], - [ - -161.71875, - 68.90625 - ], - [ - -161.71875, - 70.3125 - ], - [ - -163.125, - 70.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -165.234375, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': 'bk4', - 'center': [ - -165.234375, - 68.203125 - ], - 'rectangle': [ - [ - -165.9375, - 67.5 - ], - [ - -164.53125, - 67.5 - ], - [ - -164.53125, - 68.90625 - ], - [ - -165.9375, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': 'be0', - 'center': [ - -156.796875, - 62.578125 - ], - 'rectangle': [ - [ - -157.5, - 61.875 - ], - [ - -156.09375, - 61.875 - ], - [ - -156.09375, - 63.28125 - ], - [ - -157.5, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 20, - 'geohash': 'bd5', - 'center': [ - -152.578125, - 56.953125 - ], - 'rectangle': [ - [ - -153.28125, - 56.25 - ], - [ - -151.875, - 56.25 - ], - [ - -151.875, - 57.65625 - ], - [ - -153.28125, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': 'b7p', - 'center': [ - -158.203125, - 62.578125 - ], - 'rectangle': [ - [ - -158.90625, - 61.875 - ], - [ - -157.5, - 61.875 - ], - [ - -157.5, - 63.28125 - ], - [ - -158.90625, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -170.859375, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': 'b5q', - 'center': [ - -170.859375, - 63.984375 - ], - 'rectangle': [ - [ - -171.5625, - 63.28125 - ], - [ - -170.15625, - 63.28125 - ], - [ - -170.15625, - 64.6875 - ], - [ - -171.5625, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 23, - 'geohash': '9xc', - 'center': [ - -110.390625, - 44.296875 - ], - 'rectangle': [ - [ - -111.09375, - 43.59375 - ], - [ - -109.6875, - 43.59375 - ], - [ - -109.6875, - 45 - ], - [ - -111.09375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': '9t8', - 'center': [ - -111.796875, - 31.640625 - ], - 'rectangle': [ - [ - -112.5, - 30.9375 - ], - [ - -111.09375, - 30.9375 - ], - [ - -111.09375, - 32.34375 - ], - [ - -112.5, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': '9ry', - 'center': [ - -114.609375, - 44.296875 - ], - 'rectangle': [ - [ - -115.3125, - 43.59375 - ], - [ - -113.90625, - 43.59375 - ], - [ - -113.90625, - 45 - ], - [ - -115.3125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 20, - 'geohash': '9rn', - 'center': [ - -114.609375, - 40.078125 - ], - 'rectangle': [ - [ - -115.3125, - 39.375 - ], - [ - -113.90625, - 39.375 - ], - [ - -113.90625, - 40.78125 - ], - [ - -115.3125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 20, - 'geohash': 'f03', - 'center': [ - -87.890625, - 47.109375 - ], - 'rectangle': [ - [ - -88.59375, - 46.40625 - ], - [ - -87.1875, - 46.40625 - ], - [ - -87.1875, - 47.8125 - ], - [ - -88.59375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 20, - 'geohash': 'f02', - 'center': [ - -89.296875, - 47.109375 - ], - 'rectangle': [ - [ - -90, - 46.40625 - ], - [ - -88.59375, - 46.40625 - ], - [ - -88.59375, - 47.8125 - ], - [ - -90, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': 'b6w', - 'center': [ - -159.609375, - 59.765625 - ], - 'rectangle': [ - [ - -160.3125, - 59.0625 - ], - [ - -158.90625, - 59.0625 - ], - [ - -158.90625, - 60.46875 - ], - [ - -160.3125, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': '9qy', - 'center': [ - -114.609375, - 38.671875 - ], - 'rectangle': [ - [ - -115.3125, - 37.96875 - ], - [ - -113.90625, - 37.96875 - ], - [ - -113.90625, - 39.375 - ], - [ - -115.3125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': 'bsn', - 'center': [ - -148.359375, - 68.203125 - ], - 'rectangle': [ - [ - -149.0625, - 67.5 - ], - [ - -147.65625, - 67.5 - ], - [ - -147.65625, - 68.90625 - ], - [ - -149.0625, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 22, - 'geohash': 'bg0', - 'center': [ - -145.546875, - 62.578125 - ], - 'rectangle': [ - [ - -146.25, - 61.875 - ], - [ - -144.84375, - 61.875 - ], - [ - -144.84375, - 63.28125 - ], - [ - -146.25, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': 'bdw', - 'center': [ - -148.359375, - 59.765625 - ], - 'rectangle': [ - [ - -149.0625, - 59.0625 - ], - [ - -147.65625, - 59.0625 - ], - [ - -147.65625, - 60.46875 - ], - [ - -149.0625, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -155.390625, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 23, - 'geohash': 'bdc', - 'center': [ - -155.390625, - 61.171875 - ], - 'rectangle': [ - [ - -156.09375, - 60.46875 - ], - [ - -154.6875, - 60.46875 - ], - [ - -154.6875, - 61.875 - ], - [ - -156.09375, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': 'b7y', - 'center': [ - -159.609375, - 66.796875 - ], - 'rectangle': [ - [ - -160.3125, - 66.09375 - ], - [ - -158.90625, - 66.09375 - ], - [ - -158.90625, - 67.5 - ], - [ - -160.3125, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -169.453125, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': 'b5x', - 'center': [ - -169.453125, - 65.390625 - ], - 'rectangle': [ - [ - -170.15625, - 64.6875 - ], - [ - -168.75, - 64.6875 - ], - [ - -168.75, - 66.09375 - ], - [ - -170.15625, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -176.484375, - 51.328125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 26, - 'geohash': 'b14', - 'center': [ - -176.484375, - 51.328125 - ], - 'rectangle': [ - [ - -177.1875, - 50.625 - ], - [ - -175.78125, - 50.625 - ], - [ - -175.78125, - 52.03125 - ], - [ - -177.1875, - 52.03125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': '9re', - 'center': [ - -118.828125, - 42.890625 - ], - 'rectangle': [ - [ - -119.53125, - 42.1875 - ], - [ - -118.125, - 42.1875 - ], - [ - -118.125, - 43.59375 - ], - [ - -119.53125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': '9r9', - 'center': [ - -121.640625, - 42.890625 - ], - 'rectangle': [ - [ - -122.34375, - 42.1875 - ], - [ - -120.9375, - 42.1875 - ], - [ - -120.9375, - 43.59375 - ], - [ - -122.34375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'djh', - 'center': [ - -83.671875, - 28.828125 - ], - 'rectangle': [ - [ - -84.375, - 28.125 - ], - [ - -82.96875, - 28.125 - ], - [ - -82.96875, - 29.53125 - ], - [ - -84.375, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': 'beq', - 'center': [ - -148.359375, - 63.984375 - ], - 'rectangle': [ - [ - -149.0625, - 63.28125 - ], - [ - -147.65625, - 63.28125 - ], - [ - -147.65625, - 64.6875 - ], - [ - -149.0625, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -169.453125, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': 'b4p', - 'center': [ - -169.453125, - 56.953125 - ], - 'rectangle': [ - [ - -170.15625, - 56.25 - ], - [ - -168.75, - 56.25 - ], - [ - -168.75, - 57.65625 - ], - [ - -170.15625, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': '9mg', - 'center': [ - -118.828125, - 33.046875 - ], - 'rectangle': [ - [ - -119.53125, - 32.34375 - ], - [ - -118.125, - 32.34375 - ], - [ - -118.125, - 33.75 - ], - [ - -119.53125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -153.984375, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': 'be4', - 'center': [ - -153.984375, - 62.578125 - ], - 'rectangle': [ - [ - -154.6875, - 61.875 - ], - [ - -153.28125, - 61.875 - ], - [ - -153.28125, - 63.28125 - ], - [ - -154.6875, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': 'b7u', - 'center': [ - -162.421875, - 66.796875 - ], - 'rectangle': [ - [ - -163.125, - 66.09375 - ], - [ - -161.71875, - 66.09375 - ], - [ - -161.71875, - 67.5 - ], - [ - -163.125, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': '9w3', - 'center': [ - -110.390625, - 35.859375 - ], - 'rectangle': [ - [ - -111.09375, - 35.15625 - ], - [ - -109.6875, - 35.15625 - ], - [ - -109.6875, - 36.5625 - ], - [ - -111.09375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 9, - 'geohash': 'drc', - 'center': [ - -76.640625, - 44.296875 - ], - 'rectangle': [ - [ - -77.34375, - 43.59375 - ], - [ - -75.9375, - 43.59375 - ], - [ - -75.9375, - 45 - ], - [ - -77.34375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': 'cbx', - 'center': [ - -90.703125, - 48.515625 - ], - 'rectangle': [ - [ - -91.40625, - 47.8125 - ], - [ - -90, - 47.8125 - ], - [ - -90, - 49.21875 - ], - [ - -91.40625, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -134.296875, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': 'c1b', - 'center': [ - -134.296875, - 55.546875 - ], - 'rectangle': [ - [ - -135, - 54.84375 - ], - [ - -133.59375, - 54.84375 - ], - [ - -133.59375, - 56.25 - ], - [ - -135, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 21, - 'geohash': 'bkh', - 'center': [ - -162.421875, - 68.203125 - ], - 'rectangle': [ - [ - -163.125, - 67.5 - ], - [ - -161.71875, - 67.5 - ], - [ - -161.71875, - 68.90625 - ], - [ - -163.125, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': 'b7c', - 'center': [ - -166.640625, - 66.796875 - ], - 'rectangle': [ - [ - -167.34375, - 66.09375 - ], - [ - -165.9375, - 66.09375 - ], - [ - -165.9375, - 67.5 - ], - [ - -167.34375, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 22, - 'geohash': '9v8', - 'center': [ - -100.546875, - 31.640625 - ], - 'rectangle': [ - [ - -101.25, - 30.9375 - ], - [ - -99.84375, - 30.9375 - ], - [ - -99.84375, - 32.34375 - ], - [ - -101.25, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': 'beh', - 'center': [ - -151.171875, - 62.578125 - ], - 'rectangle': [ - [ - -151.875, - 61.875 - ], - [ - -150.46875, - 61.875 - ], - [ - -150.46875, - 63.28125 - ], - [ - -151.875, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'b6t', - 'center': [ - -161.015625, - 59.765625 - ], - 'rectangle': [ - [ - -161.71875, - 59.0625 - ], - [ - -160.3125, - 59.0625 - ], - [ - -160.3125, - 60.46875 - ], - [ - -161.71875, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': '9rg', - 'center': [ - -118.828125, - 44.296875 - ], - 'rectangle': [ - [ - -119.53125, - 43.59375 - ], - [ - -118.125, - 43.59375 - ], - [ - -118.125, - 45 - ], - [ - -119.53125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': '9rf', - 'center': [ - -120.234375, - 44.296875 - ], - 'rectangle': [ - [ - -120.9375, - 43.59375 - ], - [ - -119.53125, - 43.59375 - ], - [ - -119.53125, - 45 - ], - [ - -120.9375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': 'bsh', - 'center': [ - -151.171875, - 68.203125 - ], - 'rectangle': [ - [ - -151.875, - 67.5 - ], - [ - -150.46875, - 67.5 - ], - [ - -150.46875, - 68.90625 - ], - [ - -151.875, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'bes', - 'center': [ - -151.171875, - 65.390625 - ], - 'rectangle': [ - [ - -151.875, - 64.6875 - ], - [ - -150.46875, - 64.6875 - ], - [ - -150.46875, - 66.09375 - ], - [ - -151.875, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': 'b7r', - 'center': [ - -158.203125, - 63.984375 - ], - 'rectangle': [ - [ - -158.90625, - 63.28125 - ], - [ - -157.5, - 63.28125 - ], - [ - -157.5, - 64.6875 - ], - [ - -158.90625, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -146.953125, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 9, - 'geohash': 'bdz', - 'center': [ - -146.953125, - 61.171875 - ], - 'rectangle': [ - [ - -147.65625, - 60.46875 - ], - [ - -146.25, - 60.46875 - ], - [ - -146.25, - 61.875 - ], - [ - -147.65625, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': 'b7z', - 'center': [ - -158.203125, - 66.796875 - ], - 'rectangle': [ - [ - -158.90625, - 66.09375 - ], - [ - -157.5, - 66.09375 - ], - [ - -157.5, - 67.5 - ], - [ - -158.90625, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -153.984375, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': 'bed', - 'center': [ - -153.984375, - 65.390625 - ], - 'rectangle': [ - [ - -154.6875, - 64.6875 - ], - [ - -153.28125, - 64.6875 - ], - [ - -153.28125, - 66.09375 - ], - [ - -154.6875, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -173.671875, - 52.734375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': 'b1k', - 'center': [ - -173.671875, - 52.734375 - ], - 'rectangle': [ - [ - -174.375, - 52.03125 - ], - [ - -172.96875, - 52.03125 - ], - [ - -172.96875, - 53.4375 - ], - [ - -174.375, - 53.4375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 24.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 8, - 'geohash': 'dhm', - 'center': [ - -82.265625, - 24.609375 - ], - 'rectangle': [ - [ - -82.96875, - 23.90625 - ], - [ - -81.5625, - 23.90625 - ], - [ - -81.5625, - 25.3125 - ], - [ - -82.96875, - 25.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': 'bew', - 'center': [ - -148.359375, - 65.390625 - ], - 'rectangle': [ - [ - -149.0625, - 64.6875 - ], - [ - -147.65625, - 64.6875 - ], - [ - -147.65625, - 66.09375 - ], - [ - -149.0625, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 10, - 'geohash': '9nz', - 'center': [ - -124.453125, - 38.671875 - ], - 'rectangle': [ - [ - -125.15625, - 37.96875 - ], - [ - -123.75, - 37.96875 - ], - [ - -123.75, - 39.375 - ], - [ - -125.15625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -141.328125, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'bge', - 'center': [ - -141.328125, - 65.390625 - ], - 'rectangle': [ - [ - -142.03125, - 64.6875 - ], - [ - -140.625, - 64.6875 - ], - [ - -140.625, - 66.09375 - ], - [ - -142.03125, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': 'beg', - 'center': [ - -152.578125, - 66.796875 - ], - 'rectangle': [ - [ - -153.28125, - 66.09375 - ], - [ - -151.875, - 66.09375 - ], - [ - -151.875, - 67.5 - ], - [ - -153.28125, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -155.390625, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': 'be9', - 'center': [ - -155.390625, - 65.390625 - ], - 'rectangle': [ - [ - -156.09375, - 64.6875 - ], - [ - -154.6875, - 64.6875 - ], - [ - -154.6875, - 66.09375 - ], - [ - -156.09375, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': 'b7h', - 'center': [ - -162.421875, - 62.578125 - ], - 'rectangle': [ - [ - -163.125, - 61.875 - ], - [ - -161.71875, - 61.875 - ], - [ - -161.71875, - 63.28125 - ], - [ - -163.125, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 24.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': 'dhq', - 'center': [ - -80.859375, - 24.609375 - ], - 'rectangle': [ - [ - -81.5625, - 23.90625 - ], - [ - -80.15625, - 23.90625 - ], - [ - -80.15625, - 25.3125 - ], - [ - -81.5625, - 25.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -130.078125, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': 'c1g', - 'center': [ - -130.078125, - 55.546875 - ], - 'rectangle': [ - [ - -130.78125, - 54.84375 - ], - [ - -129.375, - 54.84375 - ], - [ - -129.375, - 56.25 - ], - [ - -130.78125, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': '9tc', - 'center': [ - -110.390625, - 33.046875 - ], - 'rectangle': [ - [ - -111.09375, - 32.34375 - ], - [ - -109.6875, - 32.34375 - ], - [ - -109.6875, - 33.75 - ], - [ - -111.09375, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': 'dqd', - 'center': [ - -75.234375, - 37.265625 - ], - 'rectangle': [ - [ - -75.9375, - 36.5625 - ], - [ - -74.53125, - 36.5625 - ], - [ - -74.53125, - 37.96875 - ], - [ - -75.9375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -163.828125, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': 'b3g', - 'center': [ - -163.828125, - 55.546875 - ], - 'rectangle': [ - [ - -164.53125, - 54.84375 - ], - [ - -163.125, - 54.84375 - ], - [ - -163.125, - 56.25 - ], - [ - -164.53125, - 56.25 - ] - ] - } - } - ] - } - }, - { - 'label': 'Mozilla/5.0 (X11; Linux i686) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.50 Safari/534.24: agent.raw', - 'geoJSON': { - 'properties': { - 'label': 'Mozilla/5.0 (X11; Linux i686) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.50 Safari/534.24: agent.raw', - 'length': 597, - 'min': 17, - 'max': 528, - 'precision': 3 - }, - 'type': 'FeatureCollection', - 'features': [ - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 528, - 'geohash': 'dr4', - 'center': [ - -75.234375, - 40.078125 - ], - 'rectangle': [ - [ - -75.9375, - 39.375 - ], - [ - -74.53125, - 39.375 - ], - [ - -74.53125, - 40.78125 - ], - [ - -75.9375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -73.828125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 388, - 'geohash': 'dr7', - 'center': [ - -73.828125, - 41.484375 - ], - 'rectangle': [ - [ - -74.53125, - 40.78125 - ], - [ - -73.125, - 40.78125 - ], - [ - -73.125, - 42.1875 - ], - [ - -74.53125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 367, - 'geohash': 'dph', - 'center': [ - -83.671875, - 40.078125 - ], - 'rectangle': [ - [ - -84.375, - 39.375 - ], - [ - -82.96875, - 39.375 - ], - [ - -82.96875, - 40.78125 - ], - [ - -84.375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -72.421875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 368, - 'geohash': 'drk', - 'center': [ - -72.421875, - 41.484375 - ], - 'rectangle': [ - [ - -73.125, - 40.78125 - ], - [ - -71.71875, - 40.78125 - ], - [ - -71.71875, - 42.1875 - ], - [ - -73.125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 337, - 'geohash': '9qh', - 'center': [ - -117.421875, - 34.453125 - ], - 'rectangle': [ - [ - -118.125, - 33.75 - ], - [ - -116.71875, - 33.75 - ], - [ - -116.71875, - 35.15625 - ], - [ - -118.125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 344, - 'geohash': '9qc', - 'center': [ - -121.640625, - 38.671875 - ], - 'rectangle': [ - [ - -122.34375, - 37.96875 - ], - [ - -120.9375, - 37.96875 - ], - [ - -120.9375, - 39.375 - ], - [ - -122.34375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 309, - 'geohash': 'dp3', - 'center': [ - -87.890625, - 41.484375 - ], - 'rectangle': [ - [ - -88.59375, - 40.78125 - ], - [ - -87.1875, - 40.78125 - ], - [ - -87.1875, - 42.1875 - ], - [ - -88.59375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 277, - 'geohash': 'dp4', - 'center': [ - -86.484375, - 40.078125 - ], - 'rectangle': [ - [ - -87.1875, - 39.375 - ], - [ - -85.78125, - 39.375 - ], - [ - -85.78125, - 40.78125 - ], - [ - -87.1875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 301, - 'geohash': 'dpk', - 'center': [ - -83.671875, - 41.484375 - ], - 'rectangle': [ - [ - -84.375, - 40.78125 - ], - [ - -82.96875, - 40.78125 - ], - [ - -82.96875, - 42.1875 - ], - [ - -84.375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 321, - 'geohash': 'dps', - 'center': [ - -83.671875, - 42.890625 - ], - 'rectangle': [ - [ - -84.375, - 42.1875 - ], - [ - -82.96875, - 42.1875 - ], - [ - -82.96875, - 43.59375 - ], - [ - -84.375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 296, - 'geohash': '9q9', - 'center': [ - -121.640625, - 37.265625 - ], - 'rectangle': [ - [ - -122.34375, - 36.5625 - ], - [ - -120.9375, - 36.5625 - ], - [ - -120.9375, - 37.96875 - ], - [ - -122.34375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 281, - 'geohash': 'dpq', - 'center': [ - -80.859375, - 41.484375 - ], - 'rectangle': [ - [ - -81.5625, - 40.78125 - ], - [ - -80.15625, - 40.78125 - ], - [ - -80.15625, - 42.1875 - ], - [ - -81.5625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 289, - 'geohash': '9q5', - 'center': [ - -118.828125, - 34.453125 - ], - 'rectangle': [ - [ - -119.53125, - 33.75 - ], - [ - -118.125, - 33.75 - ], - [ - -118.125, - 35.15625 - ], - [ - -119.53125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 275, - 'geohash': 'dp8', - 'center': [ - -89.296875, - 42.890625 - ], - 'rectangle': [ - [ - -90, - 42.1875 - ], - [ - -88.59375, - 42.1875 - ], - [ - -88.59375, - 43.59375 - ], - [ - -90, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 284, - 'geohash': 'dn6', - 'center': [ - -86.484375, - 35.859375 - ], - 'rectangle': [ - [ - -87.1875, - 35.15625 - ], - [ - -85.78125, - 35.15625 - ], - [ - -85.78125, - 36.5625 - ], - [ - -87.1875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 302, - 'geohash': '9y7', - 'center': [ - -96.328125, - 35.859375 - ], - 'rectangle': [ - [ - -97.03125, - 35.15625 - ], - [ - -95.625, - 35.15625 - ], - [ - -95.625, - 36.5625 - ], - [ - -97.03125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 269, - 'geohash': 'dpp', - 'center': [ - -79.453125, - 40.078125 - ], - 'rectangle': [ - [ - -80.15625, - 39.375 - ], - [ - -78.75, - 39.375 - ], - [ - -78.75, - 40.78125 - ], - [ - -80.15625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 262, - 'geohash': 'dn0', - 'center': [ - -89.296875, - 34.453125 - ], - 'rectangle': [ - [ - -90, - 33.75 - ], - [ - -88.59375, - 33.75 - ], - [ - -88.59375, - 35.15625 - ], - [ - -90, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 257, - 'geohash': 'dpe', - 'center': [ - -85.078125, - 42.890625 - ], - 'rectangle': [ - [ - -85.78125, - 42.1875 - ], - [ - -84.375, - 42.1875 - ], - [ - -84.375, - 43.59375 - ], - [ - -85.78125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 267, - 'geohash': '9vf', - 'center': [ - -97.734375, - 33.046875 - ], - 'rectangle': [ - [ - -98.4375, - 32.34375 - ], - [ - -97.03125, - 32.34375 - ], - [ - -97.03125, - 33.75 - ], - [ - -98.4375, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -73.828125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 265, - 'geohash': 'dre', - 'center': [ - -73.828125, - 42.890625 - ], - 'rectangle': [ - [ - -74.53125, - 42.1875 - ], - [ - -73.125, - 42.1875 - ], - [ - -73.125, - 43.59375 - ], - [ - -74.53125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 237, - 'geohash': 'dp6', - 'center': [ - -86.484375, - 41.484375 - ], - 'rectangle': [ - [ - -87.1875, - 40.78125 - ], - [ - -85.78125, - 40.78125 - ], - [ - -85.78125, - 42.1875 - ], - [ - -87.1875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 245, - 'geohash': '9vg', - 'center': [ - -96.328125, - 33.046875 - ], - 'rectangle': [ - [ - -97.03125, - 32.34375 - ], - [ - -95.625, - 32.34375 - ], - [ - -95.625, - 33.75 - ], - [ - -97.03125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 238, - 'geohash': '9zv', - 'center': [ - -93.515625, - 44.296875 - ], - 'rectangle': [ - [ - -94.21875, - 43.59375 - ], - [ - -92.8125, - 43.59375 - ], - [ - -92.8125, - 45 - ], - [ - -94.21875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 269, - 'geohash': 'dn5', - 'center': [ - -85.078125, - 34.453125 - ], - 'rectangle': [ - [ - -85.78125, - 33.75 - ], - [ - -84.375, - 33.75 - ], - [ - -84.375, - 35.15625 - ], - [ - -85.78125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 27.421875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 271, - 'geohash': 'dhv', - 'center': [ - -82.265625, - 27.421875 - ], - 'rectangle': [ - [ - -82.96875, - 26.71875 - ], - [ - -81.5625, - 26.71875 - ], - [ - -81.5625, - 28.125 - ], - [ - -82.96875, - 28.125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 267, - 'geohash': '9ys', - 'center': [ - -94.921875, - 37.265625 - ], - 'rectangle': [ - [ - -95.625, - 36.5625 - ], - [ - -94.21875, - 36.5625 - ], - [ - -94.21875, - 37.96875 - ], - [ - -95.625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 266, - 'geohash': 'dng', - 'center': [ - -85.078125, - 38.671875 - ], - 'rectangle': [ - [ - -85.78125, - 37.96875 - ], - [ - -84.375, - 37.96875 - ], - [ - -84.375, - 39.375 - ], - [ - -85.78125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -72.421875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 243, - 'geohash': 'drs', - 'center': [ - -72.421875, - 42.890625 - ], - 'rectangle': [ - [ - -73.125, - 42.1875 - ], - [ - -71.71875, - 42.1875 - ], - [ - -71.71875, - 43.59375 - ], - [ - -73.125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 240, - 'geohash': 'dr8', - 'center': [ - -78.046875, - 42.890625 - ], - 'rectangle': [ - [ - -78.75, - 42.1875 - ], - [ - -77.34375, - 42.1875 - ], - [ - -77.34375, - 43.59375 - ], - [ - -78.75, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 255, - 'geohash': 'djf', - 'center': [ - -86.484375, - 33.046875 - ], - 'rectangle': [ - [ - -87.1875, - 32.34375 - ], - [ - -85.78125, - 32.34375 - ], - [ - -85.78125, - 33.75 - ], - [ - -87.1875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 243, - 'geohash': 'dp9', - 'center': [ - -87.890625, - 42.890625 - ], - 'rectangle': [ - [ - -88.59375, - 42.1875 - ], - [ - -87.1875, - 42.1875 - ], - [ - -87.1875, - 43.59375 - ], - [ - -88.59375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 240, - 'geohash': '9yu', - 'center': [ - -94.921875, - 38.671875 - ], - 'rectangle': [ - [ - -95.625, - 37.96875 - ], - [ - -94.21875, - 37.96875 - ], - [ - -94.21875, - 39.375 - ], - [ - -95.625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 221, - 'geohash': '9yr', - 'center': [ - -90.703125, - 35.859375 - ], - 'rectangle': [ - [ - -91.40625, - 35.15625 - ], - [ - -90, - 35.15625 - ], - [ - -90, - 36.5625 - ], - [ - -91.40625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 223, - 'geohash': '9yn', - 'center': [ - -92.109375, - 34.453125 - ], - 'rectangle': [ - [ - -92.8125, - 33.75 - ], - [ - -91.40625, - 33.75 - ], - [ - -91.40625, - 35.15625 - ], - [ - -92.8125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 225, - 'geohash': '9qd', - 'center': [ - -120.234375, - 37.265625 - ], - 'rectangle': [ - [ - -120.9375, - 36.5625 - ], - [ - -119.53125, - 36.5625 - ], - [ - -119.53125, - 37.96875 - ], - [ - -120.9375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 227, - 'geohash': 'dp7', - 'center': [ - -85.078125, - 41.484375 - ], - 'rectangle': [ - [ - -85.78125, - 40.78125 - ], - [ - -84.375, - 40.78125 - ], - [ - -84.375, - 42.1875 - ], - [ - -85.78125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -71.015625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 224, - 'geohash': 'drt', - 'center': [ - -71.015625, - 42.890625 - ], - 'rectangle': [ - [ - -71.71875, - 42.1875 - ], - [ - -70.3125, - 42.1875 - ], - [ - -70.3125, - 43.59375 - ], - [ - -71.71875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 228, - 'geohash': 'dn2', - 'center': [ - -89.296875, - 35.859375 - ], - 'rectangle': [ - [ - -90, - 35.15625 - ], - [ - -88.59375, - 35.15625 - ], - [ - -88.59375, - 36.5625 - ], - [ - -90, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 225, - 'geohash': '9vk', - 'center': [ - -94.921875, - 30.234375 - ], - 'rectangle': [ - [ - -95.625, - 29.53125 - ], - [ - -94.21875, - 29.53125 - ], - [ - -94.21875, - 30.9375 - ], - [ - -95.625, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 27.421875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 196, - 'geohash': 'dhy', - 'center': [ - -80.859375, - 27.421875 - ], - 'rectangle': [ - [ - -81.5625, - 26.71875 - ], - [ - -80.15625, - 26.71875 - ], - [ - -80.15625, - 28.125 - ], - [ - -81.5625, - 28.125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 224, - 'geohash': 'dn3', - 'center': [ - -87.890625, - 35.859375 - ], - 'rectangle': [ - [ - -88.59375, - 35.15625 - ], - [ - -87.1875, - 35.15625 - ], - [ - -87.1875, - 36.5625 - ], - [ - -88.59375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 232, - 'geohash': 'dj8', - 'center': [ - -89.296875, - 31.640625 - ], - 'rectangle': [ - [ - -90, - 30.9375 - ], - [ - -88.59375, - 30.9375 - ], - [ - -88.59375, - 32.34375 - ], - [ - -90, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 240, - 'geohash': 'dpn', - 'center': [ - -80.859375, - 40.078125 - ], - 'rectangle': [ - [ - -81.5625, - 39.375 - ], - [ - -80.15625, - 39.375 - ], - [ - -80.15625, - 40.78125 - ], - [ - -81.5625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 221, - 'geohash': 'dju', - 'center': [ - -83.671875, - 33.046875 - ], - 'rectangle': [ - [ - -84.375, - 32.34375 - ], - [ - -82.96875, - 32.34375 - ], - [ - -82.96875, - 33.75 - ], - [ - -84.375, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 215, - 'geohash': '9vz', - 'center': [ - -90.703125, - 33.046875 - ], - 'rectangle': [ - [ - -91.40625, - 32.34375 - ], - [ - -90, - 32.34375 - ], - [ - -90, - 33.75 - ], - [ - -91.40625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 219, - 'geohash': 'dnp', - 'center': [ - -79.453125, - 34.453125 - ], - 'rectangle': [ - [ - -80.15625, - 33.75 - ], - [ - -78.75, - 33.75 - ], - [ - -78.75, - 35.15625 - ], - [ - -80.15625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -73.828125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 226, - 'geohash': 'dr5', - 'center': [ - -73.828125, - 40.078125 - ], - 'rectangle': [ - [ - -74.53125, - 39.375 - ], - [ - -73.125, - 39.375 - ], - [ - -73.125, - 40.78125 - ], - [ - -74.53125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 224, - 'geohash': 'dp5', - 'center': [ - -85.078125, - 40.078125 - ], - 'rectangle': [ - [ - -85.78125, - 39.375 - ], - [ - -84.375, - 39.375 - ], - [ - -84.375, - 40.78125 - ], - [ - -85.78125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 199, - 'geohash': '9r1', - 'center': [ - -121.640625, - 40.078125 - ], - 'rectangle': [ - [ - -122.34375, - 39.375 - ], - [ - -120.9375, - 39.375 - ], - [ - -120.9375, - 40.78125 - ], - [ - -122.34375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 217, - 'geohash': 'djv', - 'center': [ - -82.265625, - 33.046875 - ], - 'rectangle': [ - [ - -82.96875, - 32.34375 - ], - [ - -81.5625, - 32.34375 - ], - [ - -81.5625, - 33.75 - ], - [ - -82.96875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 202, - 'geohash': 'djt', - 'center': [ - -82.265625, - 31.640625 - ], - 'rectangle': [ - [ - -82.96875, - 30.9375 - ], - [ - -81.5625, - 30.9375 - ], - [ - -81.5625, - 32.34375 - ], - [ - -82.96875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 227, - 'geohash': 'dpm', - 'center': [ - -82.265625, - 41.484375 - ], - 'rectangle': [ - [ - -82.96875, - 40.78125 - ], - [ - -81.5625, - 40.78125 - ], - [ - -81.5625, - 42.1875 - ], - [ - -82.96875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 196, - 'geohash': '9zm', - 'center': [ - -93.515625, - 41.484375 - ], - 'rectangle': [ - [ - -94.21875, - 40.78125 - ], - [ - -92.8125, - 40.78125 - ], - [ - -92.8125, - 42.1875 - ], - [ - -94.21875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 208, - 'geohash': 'dnn', - 'center': [ - -80.859375, - 34.453125 - ], - 'rectangle': [ - [ - -81.5625, - 33.75 - ], - [ - -80.15625, - 33.75 - ], - [ - -80.15625, - 35.15625 - ], - [ - -81.5625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 195, - 'geohash': '9y3', - 'center': [ - -99.140625, - 35.859375 - ], - 'rectangle': [ - [ - -99.84375, - 35.15625 - ], - [ - -98.4375, - 35.15625 - ], - [ - -98.4375, - 36.5625 - ], - [ - -99.84375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 223, - 'geohash': '9yy', - 'center': [ - -92.109375, - 38.671875 - ], - 'rectangle': [ - [ - -92.8125, - 37.96875 - ], - [ - -91.40625, - 37.96875 - ], - [ - -91.40625, - 39.375 - ], - [ - -92.8125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 226, - 'geohash': 'dn7', - 'center': [ - -85.078125, - 35.859375 - ], - 'rectangle': [ - [ - -85.78125, - 35.15625 - ], - [ - -84.375, - 35.15625 - ], - [ - -84.375, - 36.5625 - ], - [ - -85.78125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 211, - 'geohash': '9tb', - 'center': [ - -111.796875, - 33.046875 - ], - 'rectangle': [ - [ - -112.5, - 32.34375 - ], - [ - -111.09375, - 32.34375 - ], - [ - -111.09375, - 33.75 - ], - [ - -112.5, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 204, - 'geohash': 'dnq', - 'center': [ - -80.859375, - 35.859375 - ], - 'rectangle': [ - [ - -81.5625, - 35.15625 - ], - [ - -80.15625, - 35.15625 - ], - [ - -80.15625, - 36.5625 - ], - [ - -81.5625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 213, - 'geohash': 'djn', - 'center': [ - -80.859375, - 28.828125 - ], - 'rectangle': [ - [ - -81.5625, - 28.125 - ], - [ - -80.15625, - 28.125 - ], - [ - -80.15625, - 29.53125 - ], - [ - -81.5625, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 208, - 'geohash': 'dnj', - 'center': [ - -82.265625, - 34.453125 - ], - 'rectangle': [ - [ - -82.96875, - 33.75 - ], - [ - -81.5625, - 33.75 - ], - [ - -81.5625, - 35.15625 - ], - [ - -82.96875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 213, - 'geohash': '9y6', - 'center': [ - -97.734375, - 35.859375 - ], - 'rectangle': [ - [ - -98.4375, - 35.15625 - ], - [ - -97.03125, - 35.15625 - ], - [ - -97.03125, - 36.5625 - ], - [ - -98.4375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 192, - 'geohash': '9vv', - 'center': [ - -93.515625, - 33.046875 - ], - 'rectangle': [ - [ - -94.21875, - 32.34375 - ], - [ - -92.8125, - 32.34375 - ], - [ - -92.8125, - 33.75 - ], - [ - -94.21875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 202, - 'geohash': 'dr9', - 'center': [ - -76.640625, - 42.890625 - ], - 'rectangle': [ - [ - -77.34375, - 42.1875 - ], - [ - -75.9375, - 42.1875 - ], - [ - -75.9375, - 43.59375 - ], - [ - -77.34375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 202, - 'geohash': 'djs', - 'center': [ - -83.671875, - 31.640625 - ], - 'rectangle': [ - [ - -84.375, - 30.9375 - ], - [ - -82.96875, - 30.9375 - ], - [ - -82.96875, - 32.34375 - ], - [ - -84.375, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 204, - 'geohash': '9z7', - 'center': [ - -96.328125, - 41.484375 - ], - 'rectangle': [ - [ - -97.03125, - 40.78125 - ], - [ - -95.625, - 40.78125 - ], - [ - -95.625, - 42.1875 - ], - [ - -97.03125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 217, - 'geohash': 'djg', - 'center': [ - -85.078125, - 33.046875 - ], - 'rectangle': [ - [ - -85.78125, - 32.34375 - ], - [ - -84.375, - 32.34375 - ], - [ - -84.375, - 33.75 - ], - [ - -85.78125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 192, - 'geohash': 'dpj', - 'center': [ - -82.265625, - 40.078125 - ], - 'rectangle': [ - [ - -82.96875, - 39.375 - ], - [ - -81.5625, - 39.375 - ], - [ - -81.5625, - 40.78125 - ], - [ - -82.96875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 203, - 'geohash': 'c20', - 'center': [ - -123.046875, - 45.703125 - ], - 'rectangle': [ - [ - -123.75, - 45 - ], - [ - -122.34375, - 45 - ], - [ - -122.34375, - 46.40625 - ], - [ - -123.75, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 206, - 'geohash': 'dnh', - 'center': [ - -83.671875, - 34.453125 - ], - 'rectangle': [ - [ - -84.375, - 33.75 - ], - [ - -82.96875, - 33.75 - ], - [ - -82.96875, - 35.15625 - ], - [ - -84.375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 191, - 'geohash': '9yk', - 'center': [ - -94.921875, - 35.859375 - ], - 'rectangle': [ - [ - -95.625, - 35.15625 - ], - [ - -94.21875, - 35.15625 - ], - [ - -94.21875, - 36.5625 - ], - [ - -95.625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 180, - 'geohash': 'dqc', - 'center': [ - -76.640625, - 38.671875 - ], - 'rectangle': [ - [ - -77.34375, - 37.96875 - ], - [ - -75.9375, - 37.96875 - ], - [ - -75.9375, - 39.375 - ], - [ - -77.34375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 201, - 'geohash': 'dqb', - 'center': [ - -78.046875, - 38.671875 - ], - 'rectangle': [ - [ - -78.75, - 37.96875 - ], - [ - -77.34375, - 37.96875 - ], - [ - -77.34375, - 39.375 - ], - [ - -78.75, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 191, - 'geohash': '9mu', - 'center': [ - -117.421875, - 33.046875 - ], - 'rectangle': [ - [ - -118.125, - 32.34375 - ], - [ - -116.71875, - 32.34375 - ], - [ - -116.71875, - 33.75 - ], - [ - -118.125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -71.015625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 211, - 'geohash': 'drm', - 'center': [ - -71.015625, - 41.484375 - ], - 'rectangle': [ - [ - -71.71875, - 40.78125 - ], - [ - -70.3125, - 40.78125 - ], - [ - -70.3125, - 42.1875 - ], - [ - -71.71875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 178, - 'geohash': '9yq', - 'center': [ - -92.109375, - 35.859375 - ], - 'rectangle': [ - [ - -92.8125, - 35.15625 - ], - [ - -91.40625, - 35.15625 - ], - [ - -91.40625, - 36.5625 - ], - [ - -92.8125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 189, - 'geohash': 'dn4', - 'center': [ - -86.484375, - 34.453125 - ], - 'rectangle': [ - [ - -87.1875, - 33.75 - ], - [ - -85.78125, - 33.75 - ], - [ - -85.78125, - 35.15625 - ], - [ - -87.1875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 203, - 'geohash': 'bdv', - 'center': [ - -149.765625, - 61.171875 - ], - 'rectangle': [ - [ - -150.46875, - 60.46875 - ], - [ - -149.0625, - 60.46875 - ], - [ - -149.0625, - 61.875 - ], - [ - -150.46875, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 194, - 'geohash': '9yp', - 'center': [ - -90.703125, - 34.453125 - ], - 'rectangle': [ - [ - -91.40625, - 33.75 - ], - [ - -90, - 33.75 - ], - [ - -90, - 35.15625 - ], - [ - -91.40625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 205, - 'geohash': '9vd', - 'center': [ - -97.734375, - 31.640625 - ], - 'rectangle': [ - [ - -98.4375, - 30.9375 - ], - [ - -97.03125, - 30.9375 - ], - [ - -97.03125, - 32.34375 - ], - [ - -98.4375, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 186, - 'geohash': '9yd', - 'center': [ - -97.734375, - 37.265625 - ], - 'rectangle': [ - [ - -98.4375, - 36.5625 - ], - [ - -97.03125, - 36.5625 - ], - [ - -97.03125, - 37.96875 - ], - [ - -98.4375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 26.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 181, - 'geohash': 'dhw', - 'center': [ - -80.859375, - 26.015625 - ], - 'rectangle': [ - [ - -81.5625, - 25.3125 - ], - [ - -80.15625, - 25.3125 - ], - [ - -80.15625, - 26.71875 - ], - [ - -81.5625, - 26.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 213, - 'geohash': 'dr6', - 'center': [ - -75.234375, - 41.484375 - ], - 'rectangle': [ - [ - -75.9375, - 40.78125 - ], - [ - -74.53125, - 40.78125 - ], - [ - -74.53125, - 42.1875 - ], - [ - -75.9375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 187, - 'geohash': 'dnv', - 'center': [ - -82.265625, - 38.671875 - ], - 'rectangle': [ - [ - -82.96875, - 37.96875 - ], - [ - -81.5625, - 37.96875 - ], - [ - -81.5625, - 39.375 - ], - [ - -82.96875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 175, - 'geohash': 'dnr', - 'center': [ - -79.453125, - 35.859375 - ], - 'rectangle': [ - [ - -80.15625, - 35.15625 - ], - [ - -78.75, - 35.15625 - ], - [ - -78.75, - 36.5625 - ], - [ - -80.15625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 179, - 'geohash': 'dje', - 'center': [ - -85.078125, - 31.640625 - ], - 'rectangle': [ - [ - -85.78125, - 30.9375 - ], - [ - -84.375, - 30.9375 - ], - [ - -84.375, - 32.34375 - ], - [ - -85.78125, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 176, - 'geohash': '9y4', - 'center': [ - -97.734375, - 34.453125 - ], - 'rectangle': [ - [ - -98.4375, - 33.75 - ], - [ - -97.03125, - 33.75 - ], - [ - -97.03125, - 35.15625 - ], - [ - -98.4375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 183, - 'geohash': '9q7', - 'center': [ - -118.828125, - 35.859375 - ], - 'rectangle': [ - [ - -119.53125, - 35.15625 - ], - [ - -118.125, - 35.15625 - ], - [ - -118.125, - 36.5625 - ], - [ - -119.53125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 187, - 'geohash': 'dn8', - 'center': [ - -89.296875, - 37.265625 - ], - 'rectangle': [ - [ - -90, - 36.5625 - ], - [ - -88.59375, - 36.5625 - ], - [ - -88.59375, - 37.96875 - ], - [ - -90, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 185, - 'geohash': '9zu', - 'center': [ - -94.921875, - 44.296875 - ], - 'rectangle': [ - [ - -95.625, - 43.59375 - ], - [ - -94.21875, - 43.59375 - ], - [ - -94.21875, - 45 - ], - [ - -95.625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 177, - 'geohash': 'dq2', - 'center': [ - -78.046875, - 35.859375 - ], - 'rectangle': [ - [ - -78.75, - 35.15625 - ], - [ - -77.34375, - 35.15625 - ], - [ - -77.34375, - 36.5625 - ], - [ - -78.75, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 185, - 'geohash': 'dnb', - 'center': [ - -89.296875, - 38.671875 - ], - 'rectangle': [ - [ - -90, - 37.96875 - ], - [ - -88.59375, - 37.96875 - ], - [ - -88.59375, - 39.375 - ], - [ - -90, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 172, - 'geohash': 'dnc', - 'center': [ - -87.890625, - 38.671875 - ], - 'rectangle': [ - [ - -88.59375, - 37.96875 - ], - [ - -87.1875, - 37.96875 - ], - [ - -87.1875, - 39.375 - ], - [ - -88.59375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 183, - 'geohash': '9zq', - 'center': [ - -92.109375, - 41.484375 - ], - 'rectangle': [ - [ - -92.8125, - 40.78125 - ], - [ - -91.40625, - 40.78125 - ], - [ - -91.40625, - 42.1875 - ], - [ - -92.8125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 178, - 'geohash': '9y5', - 'center': [ - -96.328125, - 34.453125 - ], - 'rectangle': [ - [ - -97.03125, - 33.75 - ], - [ - -95.625, - 33.75 - ], - [ - -95.625, - 35.15625 - ], - [ - -97.03125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 170, - 'geohash': '9vu', - 'center': [ - -94.921875, - 33.046875 - ], - 'rectangle': [ - [ - -95.625, - 32.34375 - ], - [ - -94.21875, - 32.34375 - ], - [ - -94.21875, - 33.75 - ], - [ - -95.625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 189, - 'geohash': 'dnm', - 'center': [ - -82.265625, - 35.859375 - ], - 'rectangle': [ - [ - -82.96875, - 35.15625 - ], - [ - -81.5625, - 35.15625 - ], - [ - -81.5625, - 36.5625 - ], - [ - -82.96875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 179, - 'geohash': '9yz', - 'center': [ - -90.703125, - 38.671875 - ], - 'rectangle': [ - [ - -91.40625, - 37.96875 - ], - [ - -90, - 37.96875 - ], - [ - -90, - 39.375 - ], - [ - -91.40625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -132.890625, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 165, - 'geohash': 'c1c', - 'center': [ - -132.890625, - 55.546875 - ], - 'rectangle': [ - [ - -133.59375, - 54.84375 - ], - [ - -132.1875, - 54.84375 - ], - [ - -132.1875, - 56.25 - ], - [ - -133.59375, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 193, - 'geohash': 'dnf', - 'center': [ - -86.484375, - 38.671875 - ], - 'rectangle': [ - [ - -87.1875, - 37.96875 - ], - [ - -85.78125, - 37.96875 - ], - [ - -85.78125, - 39.375 - ], - [ - -87.1875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 194, - 'geohash': 'dpg', - 'center': [ - -85.078125, - 44.296875 - ], - 'rectangle': [ - [ - -85.78125, - 43.59375 - ], - [ - -84.375, - 43.59375 - ], - [ - -84.375, - 45 - ], - [ - -85.78125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 185, - 'geohash': 'dn9', - 'center': [ - -87.890625, - 37.265625 - ], - 'rectangle': [ - [ - -88.59375, - 36.5625 - ], - [ - -87.1875, - 36.5625 - ], - [ - -87.1875, - 37.96875 - ], - [ - -88.59375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 180, - 'geohash': 'dq0', - 'center': [ - -78.046875, - 34.453125 - ], - 'rectangle': [ - [ - -78.75, - 33.75 - ], - [ - -77.34375, - 33.75 - ], - [ - -77.34375, - 35.15625 - ], - [ - -78.75, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 183, - 'geohash': '9v7', - 'center': [ - -96.328125, - 30.234375 - ], - 'rectangle': [ - [ - -97.03125, - 29.53125 - ], - [ - -95.625, - 29.53125 - ], - [ - -95.625, - 30.9375 - ], - [ - -97.03125, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 173, - 'geohash': '9z4', - 'center': [ - -97.734375, - 40.078125 - ], - 'rectangle': [ - [ - -98.4375, - 39.375 - ], - [ - -97.03125, - 39.375 - ], - [ - -97.03125, - 40.78125 - ], - [ - -98.4375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 177, - 'geohash': 'dq9', - 'center': [ - -76.640625, - 37.265625 - ], - 'rectangle': [ - [ - -77.34375, - 36.5625 - ], - [ - -75.9375, - 36.5625 - ], - [ - -75.9375, - 37.96875 - ], - [ - -77.34375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 177, - 'geohash': 'djb', - 'center': [ - -89.296875, - 33.046875 - ], - 'rectangle': [ - [ - -90, - 32.34375 - ], - [ - -88.59375, - 32.34375 - ], - [ - -88.59375, - 33.75 - ], - [ - -90, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 162, - 'geohash': '9zr', - 'center': [ - -90.703125, - 41.484375 - ], - 'rectangle': [ - [ - -91.40625, - 40.78125 - ], - [ - -90, - 40.78125 - ], - [ - -90, - 42.1875 - ], - [ - -91.40625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -72.421875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 174, - 'geohash': 'dru', - 'center': [ - -72.421875, - 44.296875 - ], - 'rectangle': [ - [ - -73.125, - 43.59375 - ], - [ - -71.71875, - 43.59375 - ], - [ - -71.71875, - 45 - ], - [ - -73.125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 185, - 'geohash': '9zs', - 'center': [ - -94.921875, - 42.890625 - ], - 'rectangle': [ - [ - -95.625, - 42.1875 - ], - [ - -94.21875, - 42.1875 - ], - [ - -94.21875, - 43.59375 - ], - [ - -95.625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 172, - 'geohash': '9ze', - 'center': [ - -96.328125, - 42.890625 - ], - 'rectangle': [ - [ - -97.03125, - 42.1875 - ], - [ - -95.625, - 42.1875 - ], - [ - -95.625, - 43.59375 - ], - [ - -97.03125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 171, - 'geohash': 'djc', - 'center': [ - -87.890625, - 33.046875 - ], - 'rectangle': [ - [ - -88.59375, - 32.34375 - ], - [ - -87.1875, - 32.34375 - ], - [ - -87.1875, - 33.75 - ], - [ - -88.59375, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 201, - 'geohash': '9y1', - 'center': [ - -99.140625, - 34.453125 - ], - 'rectangle': [ - [ - -99.84375, - 33.75 - ], - [ - -98.4375, - 33.75 - ], - [ - -98.4375, - 35.15625 - ], - [ - -99.84375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 170, - 'geohash': 'djy', - 'center': [ - -80.859375, - 33.046875 - ], - 'rectangle': [ - [ - -81.5625, - 32.34375 - ], - [ - -80.15625, - 32.34375 - ], - [ - -80.15625, - 33.75 - ], - [ - -81.5625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 163, - 'geohash': 'c28', - 'center': [ - -123.046875, - 48.515625 - ], - 'rectangle': [ - [ - -123.75, - 47.8125 - ], - [ - -122.34375, - 47.8125 - ], - [ - -122.34375, - 49.21875 - ], - [ - -123.75, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 166, - 'geohash': '9vx', - 'center': [ - -90.703125, - 31.640625 - ], - 'rectangle': [ - [ - -91.40625, - 30.9375 - ], - [ - -90, - 30.9375 - ], - [ - -90, - 32.34375 - ], - [ - -91.40625, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 177, - 'geohash': 'dnw', - 'center': [ - -80.859375, - 37.265625 - ], - 'rectangle': [ - [ - -81.5625, - 36.5625 - ], - [ - -80.15625, - 36.5625 - ], - [ - -80.15625, - 37.96875 - ], - [ - -81.5625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 151, - 'geohash': '9zk', - 'center': [ - -94.921875, - 41.484375 - ], - 'rectangle': [ - [ - -95.625, - 40.78125 - ], - [ - -94.21875, - 40.78125 - ], - [ - -94.21875, - 42.1875 - ], - [ - -95.625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 162, - 'geohash': 'djd', - 'center': [ - -86.484375, - 31.640625 - ], - 'rectangle': [ - [ - -87.1875, - 30.9375 - ], - [ - -85.78125, - 30.9375 - ], - [ - -85.78125, - 32.34375 - ], - [ - -87.1875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 180, - 'geohash': 'f05', - 'center': [ - -85.078125, - 45.703125 - ], - 'rectangle': [ - [ - -85.78125, - 45 - ], - [ - -84.375, - 45 - ], - [ - -84.375, - 46.40625 - ], - [ - -85.78125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -69.609375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 175, - 'geohash': 'dry', - 'center': [ - -69.609375, - 44.296875 - ], - 'rectangle': [ - [ - -70.3125, - 43.59375 - ], - [ - -68.90625, - 43.59375 - ], - [ - -68.90625, - 45 - ], - [ - -70.3125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 157, - 'geohash': 'cbd', - 'center': [ - -97.734375, - 48.515625 - ], - 'rectangle': [ - [ - -98.4375, - 47.8125 - ], - [ - -97.03125, - 47.8125 - ], - [ - -97.03125, - 49.21875 - ], - [ - -98.4375, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 160, - 'geohash': 'cbj', - 'center': [ - -93.515625, - 45.703125 - ], - 'rectangle': [ - [ - -94.21875, - 45 - ], - [ - -92.8125, - 45 - ], - [ - -92.8125, - 46.40625 - ], - [ - -94.21875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 170, - 'geohash': 'dr2', - 'center': [ - -78.046875, - 41.484375 - ], - 'rectangle': [ - [ - -78.75, - 40.78125 - ], - [ - -77.34375, - 40.78125 - ], - [ - -77.34375, - 42.1875 - ], - [ - -78.75, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 171, - 'geohash': 'djj', - 'center': [ - -82.265625, - 28.828125 - ], - 'rectangle': [ - [ - -82.96875, - 28.125 - ], - [ - -81.5625, - 28.125 - ], - [ - -81.5625, - 29.53125 - ], - [ - -82.96875, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 164, - 'geohash': '9z6', - 'center': [ - -97.734375, - 41.484375 - ], - 'rectangle': [ - [ - -98.4375, - 40.78125 - ], - [ - -97.03125, - 40.78125 - ], - [ - -97.03125, - 42.1875 - ], - [ - -98.4375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 163, - 'geohash': 'dqf', - 'center': [ - -75.234375, - 38.671875 - ], - 'rectangle': [ - [ - -75.9375, - 37.96875 - ], - [ - -74.53125, - 37.96875 - ], - [ - -74.53125, - 39.375 - ], - [ - -75.9375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 170, - 'geohash': 'dne', - 'center': [ - -85.078125, - 37.265625 - ], - 'rectangle': [ - [ - -85.78125, - 36.5625 - ], - [ - -84.375, - 36.5625 - ], - [ - -84.375, - 37.96875 - ], - [ - -85.78125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 145, - 'geohash': '9v6', - 'center': [ - -97.734375, - 30.234375 - ], - 'rectangle': [ - [ - -98.4375, - 29.53125 - ], - [ - -97.03125, - 29.53125 - ], - [ - -97.03125, - 30.9375 - ], - [ - -98.4375, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 162, - 'geohash': '9vy', - 'center': [ - -92.109375, - 33.046875 - ], - 'rectangle': [ - [ - -92.8125, - 32.34375 - ], - [ - -91.40625, - 32.34375 - ], - [ - -91.40625, - 33.75 - ], - [ - -92.8125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 162, - 'geohash': 'f00', - 'center': [ - -89.296875, - 45.703125 - ], - 'rectangle': [ - [ - -90, - 45 - ], - [ - -88.59375, - 45 - ], - [ - -88.59375, - 46.40625 - ], - [ - -90, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 175, - 'geohash': 'dr3', - 'center': [ - -76.640625, - 41.484375 - ], - 'rectangle': [ - [ - -77.34375, - 40.78125 - ], - [ - -75.9375, - 40.78125 - ], - [ - -75.9375, - 42.1875 - ], - [ - -77.34375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 162, - 'geohash': '9vm', - 'center': [ - -93.515625, - 30.234375 - ], - 'rectangle': [ - [ - -94.21875, - 29.53125 - ], - [ - -92.8125, - 29.53125 - ], - [ - -92.8125, - 30.9375 - ], - [ - -94.21875, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 151, - 'geohash': 'dnk', - 'center': [ - -83.671875, - 35.859375 - ], - 'rectangle': [ - [ - -84.375, - 35.15625 - ], - [ - -82.96875, - 35.15625 - ], - [ - -82.96875, - 36.5625 - ], - [ - -84.375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 143, - 'geohash': '9zx', - 'center': [ - -90.703125, - 42.890625 - ], - 'rectangle': [ - [ - -91.40625, - 42.1875 - ], - [ - -90, - 42.1875 - ], - [ - -90, - 43.59375 - ], - [ - -91.40625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 157, - 'geohash': '9qf', - 'center': [ - -120.234375, - 38.671875 - ], - 'rectangle': [ - [ - -120.9375, - 37.96875 - ], - [ - -119.53125, - 37.96875 - ], - [ - -119.53125, - 39.375 - ], - [ - -120.9375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 140, - 'geohash': 'dpc', - 'center': [ - -87.890625, - 44.296875 - ], - 'rectangle': [ - [ - -88.59375, - 43.59375 - ], - [ - -87.1875, - 43.59375 - ], - [ - -87.1875, - 45 - ], - [ - -88.59375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 158, - 'geohash': 'dj3', - 'center': [ - -87.890625, - 30.234375 - ], - 'rectangle': [ - [ - -88.59375, - 29.53125 - ], - [ - -87.1875, - 29.53125 - ], - [ - -87.1875, - 30.9375 - ], - [ - -88.59375, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 161, - 'geohash': '9zp', - 'center': [ - -90.703125, - 40.078125 - ], - 'rectangle': [ - [ - -91.40625, - 39.375 - ], - [ - -90, - 39.375 - ], - [ - -90, - 40.78125 - ], - [ - -91.40625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 171, - 'geohash': 'dnd', - 'center': [ - -86.484375, - 37.265625 - ], - 'rectangle': [ - [ - -87.1875, - 36.5625 - ], - [ - -85.78125, - 36.5625 - ], - [ - -85.78125, - 37.96875 - ], - [ - -87.1875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 150, - 'geohash': '9xj', - 'center': [ - -104.765625, - 40.078125 - ], - 'rectangle': [ - [ - -105.46875, - 39.375 - ], - [ - -104.0625, - 39.375 - ], - [ - -104.0625, - 40.78125 - ], - [ - -105.46875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 143, - 'geohash': 'dp1', - 'center': [ - -87.890625, - 40.078125 - ], - 'rectangle': [ - [ - -88.59375, - 39.375 - ], - [ - -87.1875, - 39.375 - ], - [ - -87.1875, - 40.78125 - ], - [ - -88.59375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 116, - 'geohash': '9qb', - 'center': [ - -123.046875, - 38.671875 - ], - 'rectangle': [ - [ - -123.75, - 37.96875 - ], - [ - -122.34375, - 37.96875 - ], - [ - -122.34375, - 39.375 - ], - [ - -123.75, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 152, - 'geohash': '9z1', - 'center': [ - -99.140625, - 40.078125 - ], - 'rectangle': [ - [ - -99.84375, - 39.375 - ], - [ - -98.4375, - 39.375 - ], - [ - -98.4375, - 40.78125 - ], - [ - -99.84375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 133, - 'geohash': 'dn1', - 'center': [ - -87.890625, - 34.453125 - ], - 'rectangle': [ - [ - -88.59375, - 33.75 - ], - [ - -87.1875, - 33.75 - ], - [ - -87.1875, - 35.15625 - ], - [ - -88.59375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 134, - 'geohash': '9vr', - 'center': [ - -90.703125, - 30.234375 - ], - 'rectangle': [ - [ - -91.40625, - 29.53125 - ], - [ - -90, - 29.53125 - ], - [ - -90, - 30.9375 - ], - [ - -91.40625, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 159, - 'geohash': '9vq', - 'center': [ - -92.109375, - 30.234375 - ], - 'rectangle': [ - [ - -92.8125, - 29.53125 - ], - [ - -91.40625, - 29.53125 - ], - [ - -91.40625, - 30.9375 - ], - [ - -92.8125, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 148, - 'geohash': 'cbn', - 'center': [ - -92.109375, - 45.703125 - ], - 'rectangle': [ - [ - -92.8125, - 45 - ], - [ - -91.40625, - 45 - ], - [ - -91.40625, - 46.40625 - ], - [ - -92.8125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 136, - 'geohash': '9ym', - 'center': [ - -93.515625, - 35.859375 - ], - 'rectangle': [ - [ - -94.21875, - 35.15625 - ], - [ - -92.8125, - 35.15625 - ], - [ - -92.8125, - 36.5625 - ], - [ - -94.21875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 152, - 'geohash': 'dpb', - 'center': [ - -89.296875, - 44.296875 - ], - 'rectangle': [ - [ - -90, - 43.59375 - ], - [ - -88.59375, - 43.59375 - ], - [ - -88.59375, - 45 - ], - [ - -90, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 126, - 'geohash': 'dns', - 'center': [ - -83.671875, - 37.265625 - ], - 'rectangle': [ - [ - -84.375, - 36.5625 - ], - [ - -82.96875, - 36.5625 - ], - [ - -82.96875, - 37.96875 - ], - [ - -84.375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 142, - 'geohash': 'dp2', - 'center': [ - -89.296875, - 41.484375 - ], - 'rectangle': [ - [ - -90, - 40.78125 - ], - [ - -88.59375, - 40.78125 - ], - [ - -88.59375, - 42.1875 - ], - [ - -90, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 140, - 'geohash': 'djm', - 'center': [ - -82.265625, - 30.234375 - ], - 'rectangle': [ - [ - -82.96875, - 29.53125 - ], - [ - -81.5625, - 29.53125 - ], - [ - -81.5625, - 30.9375 - ], - [ - -82.96875, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 147, - 'geohash': 'dj2', - 'center': [ - -89.296875, - 30.234375 - ], - 'rectangle': [ - [ - -90, - 29.53125 - ], - [ - -88.59375, - 29.53125 - ], - [ - -88.59375, - 30.9375 - ], - [ - -90, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 128, - 'geohash': 'cb5', - 'center': [ - -96.328125, - 45.703125 - ], - 'rectangle': [ - [ - -97.03125, - 45 - ], - [ - -95.625, - 45 - ], - [ - -95.625, - 46.40625 - ], - [ - -97.03125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 140, - 'geohash': '9yw', - 'center': [ - -92.109375, - 37.265625 - ], - 'rectangle': [ - [ - -92.8125, - 36.5625 - ], - [ - -91.40625, - 36.5625 - ], - [ - -91.40625, - 37.96875 - ], - [ - -92.8125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 147, - 'geohash': 'drd', - 'center': [ - -75.234375, - 42.890625 - ], - 'rectangle': [ - [ - -75.9375, - 42.1875 - ], - [ - -74.53125, - 42.1875 - ], - [ - -74.53125, - 43.59375 - ], - [ - -75.9375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 130, - 'geohash': 'dnt', - 'center': [ - -82.265625, - 37.265625 - ], - 'rectangle': [ - [ - -82.96875, - 36.5625 - ], - [ - -81.5625, - 36.5625 - ], - [ - -81.5625, - 37.96875 - ], - [ - -82.96875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 138, - 'geohash': '9vc', - 'center': [ - -99.140625, - 33.046875 - ], - 'rectangle': [ - [ - -99.84375, - 32.34375 - ], - [ - -98.4375, - 32.34375 - ], - [ - -98.4375, - 33.75 - ], - [ - -99.84375, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 156, - 'geohash': '9rb', - 'center': [ - -123.046875, - 44.296875 - ], - 'rectangle': [ - [ - -123.75, - 43.59375 - ], - [ - -122.34375, - 43.59375 - ], - [ - -122.34375, - 45 - ], - [ - -123.75, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 143, - 'geohash': 'djz', - 'center': [ - -79.453125, - 33.046875 - ], - 'rectangle': [ - [ - -80.15625, - 32.34375 - ], - [ - -78.75, - 32.34375 - ], - [ - -78.75, - 33.75 - ], - [ - -80.15625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 161, - 'geohash': '9z5', - 'center': [ - -96.328125, - 40.078125 - ], - 'rectangle': [ - [ - -97.03125, - 39.375 - ], - [ - -95.625, - 39.375 - ], - [ - -95.625, - 40.78125 - ], - [ - -97.03125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 119, - 'geohash': 'djk', - 'center': [ - -83.671875, - 30.234375 - ], - 'rectangle': [ - [ - -84.375, - 29.53125 - ], - [ - -82.96875, - 29.53125 - ], - [ - -82.96875, - 30.9375 - ], - [ - -84.375, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 147, - 'geohash': '9y8', - 'center': [ - -100.546875, - 37.265625 - ], - 'rectangle': [ - [ - -101.25, - 36.5625 - ], - [ - -99.84375, - 36.5625 - ], - [ - -99.84375, - 37.96875 - ], - [ - -101.25, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 134, - 'geohash': '9zh', - 'center': [ - -94.921875, - 40.078125 - ], - 'rectangle': [ - [ - -95.625, - 39.375 - ], - [ - -94.21875, - 39.375 - ], - [ - -94.21875, - 40.78125 - ], - [ - -95.625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 130, - 'geohash': '9zg', - 'center': [ - -96.328125, - 44.296875 - ], - 'rectangle': [ - [ - -97.03125, - 43.59375 - ], - [ - -95.625, - 43.59375 - ], - [ - -95.625, - 45 - ], - [ - -97.03125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 142, - 'geohash': 'dnu', - 'center': [ - -83.671875, - 38.671875 - ], - 'rectangle': [ - [ - -84.375, - 37.96875 - ], - [ - -82.96875, - 37.96875 - ], - [ - -82.96875, - 39.375 - ], - [ - -84.375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 129, - 'geohash': '9qq', - 'center': [ - -114.609375, - 35.859375 - ], - 'rectangle': [ - [ - -115.3125, - 35.15625 - ], - [ - -113.90625, - 35.15625 - ], - [ - -113.90625, - 36.5625 - ], - [ - -115.3125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 149, - 'geohash': 'dq3', - 'center': [ - -76.640625, - 35.859375 - ], - 'rectangle': [ - [ - -77.34375, - 35.15625 - ], - [ - -75.9375, - 35.15625 - ], - [ - -75.9375, - 36.5625 - ], - [ - -77.34375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 146, - 'geohash': 'dp0', - 'center': [ - -89.296875, - 40.078125 - ], - 'rectangle': [ - [ - -90, - 39.375 - ], - [ - -88.59375, - 39.375 - ], - [ - -88.59375, - 40.78125 - ], - [ - -90, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 136, - 'geohash': '9r2', - 'center': [ - -123.046875, - 41.484375 - ], - 'rectangle': [ - [ - -123.75, - 40.78125 - ], - [ - -122.34375, - 40.78125 - ], - [ - -122.34375, - 42.1875 - ], - [ - -123.75, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 119, - 'geohash': '9zn', - 'center': [ - -92.109375, - 40.078125 - ], - 'rectangle': [ - [ - -92.8125, - 39.375 - ], - [ - -91.40625, - 39.375 - ], - [ - -91.40625, - 40.78125 - ], - [ - -92.8125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 120, - 'geohash': 'dq8', - 'center': [ - -78.046875, - 37.265625 - ], - 'rectangle': [ - [ - -78.75, - 36.5625 - ], - [ - -77.34375, - 36.5625 - ], - [ - -77.34375, - 37.96875 - ], - [ - -78.75, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 127, - 'geohash': '9v1', - 'center': [ - -99.140625, - 28.828125 - ], - 'rectangle': [ - [ - -99.84375, - 28.125 - ], - [ - -98.4375, - 28.125 - ], - [ - -98.4375, - 29.53125 - ], - [ - -99.84375, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 137, - 'geohash': '9zf', - 'center': [ - -97.734375, - 44.296875 - ], - 'rectangle': [ - [ - -98.4375, - 43.59375 - ], - [ - -97.03125, - 43.59375 - ], - [ - -97.03125, - 45 - ], - [ - -98.4375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 111, - 'geohash': '9zw', - 'center': [ - -92.109375, - 42.890625 - ], - 'rectangle': [ - [ - -92.8125, - 42.1875 - ], - [ - -91.40625, - 42.1875 - ], - [ - -91.40625, - 43.59375 - ], - [ - -92.8125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 135, - 'geohash': 'dr1', - 'center': [ - -76.640625, - 40.078125 - ], - 'rectangle': [ - [ - -77.34375, - 39.375 - ], - [ - -75.9375, - 39.375 - ], - [ - -75.9375, - 40.78125 - ], - [ - -77.34375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 110, - 'geohash': 'c22', - 'center': [ - -123.046875, - 47.109375 - ], - 'rectangle': [ - [ - -123.75, - 46.40625 - ], - [ - -122.34375, - 46.40625 - ], - [ - -122.34375, - 47.8125 - ], - [ - -123.75, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -73.828125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 124, - 'geohash': 'drg', - 'center': [ - -73.828125, - 44.296875 - ], - 'rectangle': [ - [ - -74.53125, - 43.59375 - ], - [ - -73.125, - 43.59375 - ], - [ - -73.125, - 45 - ], - [ - -74.53125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 128, - 'geohash': '9zy', - 'center': [ - -92.109375, - 44.296875 - ], - 'rectangle': [ - [ - -92.8125, - 43.59375 - ], - [ - -91.40625, - 43.59375 - ], - [ - -91.40625, - 45 - ], - [ - -92.8125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 117, - 'geohash': 'cbq', - 'center': [ - -92.109375, - 47.109375 - ], - 'rectangle': [ - [ - -92.8125, - 46.40625 - ], - [ - -91.40625, - 46.40625 - ], - [ - -91.40625, - 47.8125 - ], - [ - -92.8125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 133, - 'geohash': '9z3', - 'center': [ - -99.140625, - 41.484375 - ], - 'rectangle': [ - [ - -99.84375, - 40.78125 - ], - [ - -98.4375, - 40.78125 - ], - [ - -98.4375, - 42.1875 - ], - [ - -99.84375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 122, - 'geohash': 'c2q', - 'center': [ - -114.609375, - 47.109375 - ], - 'rectangle': [ - [ - -115.3125, - 46.40625 - ], - [ - -113.90625, - 46.40625 - ], - [ - -113.90625, - 47.8125 - ], - [ - -115.3125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 113, - 'geohash': 'dpr', - 'center': [ - -79.453125, - 41.484375 - ], - 'rectangle': [ - [ - -80.15625, - 40.78125 - ], - [ - -78.75, - 40.78125 - ], - [ - -78.75, - 42.1875 - ], - [ - -80.15625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -65.390625, - 18.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 116, - 'geohash': 'de3', - 'center': [ - -65.390625, - 18.984375 - ], - 'rectangle': [ - [ - -66.09375, - 18.28125 - ], - [ - -64.6875, - 18.28125 - ], - [ - -64.6875, - 19.6875 - ], - [ - -66.09375, - 19.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 106, - 'geohash': 'b6u', - 'center': [ - -162.421875, - 61.171875 - ], - 'rectangle': [ - [ - -163.125, - 60.46875 - ], - [ - -161.71875, - 60.46875 - ], - [ - -161.71875, - 61.875 - ], - [ - -163.125, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 126, - 'geohash': '9wp', - 'center': [ - -101.953125, - 34.453125 - ], - 'rectangle': [ - [ - -102.65625, - 33.75 - ], - [ - -101.25, - 33.75 - ], - [ - -101.25, - 35.15625 - ], - [ - -102.65625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 110, - 'geohash': '9zt', - 'center': [ - -93.515625, - 42.890625 - ], - 'rectangle': [ - [ - -94.21875, - 42.1875 - ], - [ - -92.8125, - 42.1875 - ], - [ - -92.8125, - 43.59375 - ], - [ - -94.21875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 114, - 'geohash': 'cb7', - 'center': [ - -96.328125, - 47.109375 - ], - 'rectangle': [ - [ - -97.03125, - 46.40625 - ], - [ - -95.625, - 46.40625 - ], - [ - -95.625, - 47.8125 - ], - [ - -97.03125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 119, - 'geohash': 'c23', - 'center': [ - -121.640625, - 47.109375 - ], - 'rectangle': [ - [ - -122.34375, - 46.40625 - ], - [ - -120.9375, - 46.40625 - ], - [ - -120.9375, - 47.8125 - ], - [ - -122.34375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 111, - 'geohash': 'c27', - 'center': [ - -118.828125, - 47.109375 - ], - 'rectangle': [ - [ - -119.53125, - 46.40625 - ], - [ - -118.125, - 46.40625 - ], - [ - -118.125, - 47.8125 - ], - [ - -119.53125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 124, - 'geohash': '9zd', - 'center': [ - -97.734375, - 42.890625 - ], - 'rectangle': [ - [ - -98.4375, - 42.1875 - ], - [ - -97.03125, - 42.1875 - ], - [ - -97.03125, - 43.59375 - ], - [ - -98.4375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 27.421875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 105, - 'geohash': '9uf', - 'center': [ - -97.734375, - 27.421875 - ], - 'rectangle': [ - [ - -98.4375, - 26.71875 - ], - [ - -97.03125, - 26.71875 - ], - [ - -97.03125, - 28.125 - ], - [ - -98.4375, - 28.125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 135, - 'geohash': '9r0', - 'center': [ - -123.046875, - 40.078125 - ], - 'rectangle': [ - [ - -123.75, - 39.375 - ], - [ - -122.34375, - 39.375 - ], - [ - -122.34375, - 40.78125 - ], - [ - -123.75, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -165.234375, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 116, - 'geohash': 'b6f', - 'center': [ - -165.234375, - 61.171875 - ], - 'rectangle': [ - [ - -165.9375, - 60.46875 - ], - [ - -164.53125, - 60.46875 - ], - [ - -164.53125, - 61.875 - ], - [ - -165.9375, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 112, - 'geohash': '9vw', - 'center': [ - -92.109375, - 31.640625 - ], - 'rectangle': [ - [ - -92.8125, - 30.9375 - ], - [ - -91.40625, - 30.9375 - ], - [ - -91.40625, - 32.34375 - ], - [ - -92.8125, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 110, - 'geohash': '9z0', - 'center': [ - -100.546875, - 40.078125 - ], - 'rectangle': [ - [ - -101.25, - 39.375 - ], - [ - -99.84375, - 39.375 - ], - [ - -99.84375, - 40.78125 - ], - [ - -101.25, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 116, - 'geohash': 'dr0', - 'center': [ - -78.046875, - 40.078125 - ], - 'rectangle': [ - [ - -78.75, - 39.375 - ], - [ - -77.34375, - 39.375 - ], - [ - -77.34375, - 40.78125 - ], - [ - -78.75, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 116, - 'geohash': 'cb4', - 'center': [ - -97.734375, - 45.703125 - ], - 'rectangle': [ - [ - -98.4375, - 45 - ], - [ - -97.03125, - 45 - ], - [ - -97.03125, - 46.40625 - ], - [ - -98.4375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -135.703125, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 118, - 'geohash': 'bfr', - 'center': [ - -135.703125, - 58.359375 - ], - 'rectangle': [ - [ - -136.40625, - 57.65625 - ], - [ - -135, - 57.65625 - ], - [ - -135, - 59.0625 - ], - [ - -136.40625, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 121, - 'geohash': 'dnx', - 'center': [ - -79.453125, - 37.265625 - ], - 'rectangle': [ - [ - -80.15625, - 36.5625 - ], - [ - -78.75, - 36.5625 - ], - [ - -78.75, - 37.96875 - ], - [ - -80.15625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 134, - 'geohash': '9yf', - 'center': [ - -97.734375, - 38.671875 - ], - 'rectangle': [ - [ - -98.4375, - 37.96875 - ], - [ - -97.03125, - 37.96875 - ], - [ - -97.03125, - 39.375 - ], - [ - -98.4375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 106, - 'geohash': 'dj9', - 'center': [ - -87.890625, - 31.640625 - ], - 'rectangle': [ - [ - -88.59375, - 30.9375 - ], - [ - -87.1875, - 30.9375 - ], - [ - -87.1875, - 32.34375 - ], - [ - -88.59375, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 104, - 'geohash': '9yj', - 'center': [ - -93.515625, - 34.453125 - ], - 'rectangle': [ - [ - -94.21875, - 33.75 - ], - [ - -92.8125, - 33.75 - ], - [ - -92.8125, - 35.15625 - ], - [ - -94.21875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 124, - 'geohash': 'dpd', - 'center': [ - -86.484375, - 42.890625 - ], - 'rectangle': [ - [ - -87.1875, - 42.1875 - ], - [ - -85.78125, - 42.1875 - ], - [ - -85.78125, - 43.59375 - ], - [ - -87.1875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 111, - 'geohash': '9tz', - 'center': [ - -101.953125, - 33.046875 - ], - 'rectangle': [ - [ - -102.65625, - 32.34375 - ], - [ - -101.25, - 32.34375 - ], - [ - -101.25, - 33.75 - ], - [ - -102.65625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 99, - 'geohash': '9yg', - 'center': [ - -96.328125, - 38.671875 - ], - 'rectangle': [ - [ - -97.03125, - 37.96875 - ], - [ - -95.625, - 37.96875 - ], - [ - -95.625, - 39.375 - ], - [ - -97.03125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 103, - 'geohash': 'c2k', - 'center': [ - -117.421875, - 47.109375 - ], - 'rectangle': [ - [ - -118.125, - 46.40625 - ], - [ - -116.71875, - 46.40625 - ], - [ - -116.71875, - 47.8125 - ], - [ - -118.125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 112, - 'geohash': '9yh', - 'center': [ - -94.921875, - 34.453125 - ], - 'rectangle': [ - [ - -95.625, - 33.75 - ], - [ - -94.21875, - 33.75 - ], - [ - -94.21875, - 35.15625 - ], - [ - -95.625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 105, - 'geohash': 'c8x', - 'center': [ - -101.953125, - 48.515625 - ], - 'rectangle': [ - [ - -102.65625, - 47.8125 - ], - [ - -101.25, - 47.8125 - ], - [ - -101.25, - 49.21875 - ], - [ - -102.65625, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 26.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 100, - 'geohash': '9ud', - 'center': [ - -97.734375, - 26.015625 - ], - 'rectangle': [ - [ - -98.4375, - 25.3125 - ], - [ - -97.03125, - 25.3125 - ], - [ - -97.03125, - 26.71875 - ], - [ - -98.4375, - 26.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 97, - 'geohash': '9zz', - 'center': [ - -90.703125, - 44.296875 - ], - 'rectangle': [ - [ - -91.40625, - 43.59375 - ], - [ - -90, - 43.59375 - ], - [ - -90, - 45 - ], - [ - -91.40625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 102, - 'geohash': '9wz', - 'center': [ - -101.953125, - 38.671875 - ], - 'rectangle': [ - [ - -102.65625, - 37.96875 - ], - [ - -101.25, - 37.96875 - ], - [ - -101.25, - 39.375 - ], - [ - -102.65625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 90, - 'geohash': '9t9', - 'center': [ - -110.390625, - 31.640625 - ], - 'rectangle': [ - [ - -111.09375, - 30.9375 - ], - [ - -109.6875, - 30.9375 - ], - [ - -109.6875, - 32.34375 - ], - [ - -111.09375, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -134.296875, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 100, - 'geohash': 'c40', - 'center': [ - -134.296875, - 56.953125 - ], - 'rectangle': [ - [ - -135, - 56.25 - ], - [ - -133.59375, - 56.25 - ], - [ - -133.59375, - 57.65625 - ], - [ - -135, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 109, - 'geohash': '9yv', - 'center': [ - -93.515625, - 38.671875 - ], - 'rectangle': [ - [ - -94.21875, - 37.96875 - ], - [ - -92.8125, - 37.96875 - ], - [ - -92.8125, - 39.375 - ], - [ - -94.21875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 109, - 'geohash': '9w1', - 'center': [ - -110.390625, - 34.453125 - ], - 'rectangle': [ - [ - -111.09375, - 33.75 - ], - [ - -109.6875, - 33.75 - ], - [ - -109.6875, - 35.15625 - ], - [ - -111.09375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -71.015625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 92, - 'geohash': 'drv', - 'center': [ - -71.015625, - 44.296875 - ], - 'rectangle': [ - [ - -71.71875, - 43.59375 - ], - [ - -70.3125, - 43.59375 - ], - [ - -70.3125, - 45 - ], - [ - -71.71875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 99, - 'geohash': 'djw', - 'center': [ - -80.859375, - 31.640625 - ], - 'rectangle': [ - [ - -81.5625, - 30.9375 - ], - [ - -80.15625, - 30.9375 - ], - [ - -80.15625, - 32.34375 - ], - [ - -81.5625, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 103, - 'geohash': '9wr', - 'center': [ - -101.953125, - 35.859375 - ], - 'rectangle': [ - [ - -102.65625, - 35.15625 - ], - [ - -101.25, - 35.15625 - ], - [ - -101.25, - 36.5625 - ], - [ - -102.65625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 101, - 'geohash': '9v5', - 'center': [ - -96.328125, - 28.828125 - ], - 'rectangle': [ - [ - -97.03125, - 28.125 - ], - [ - -95.625, - 28.125 - ], - [ - -95.625, - 29.53125 - ], - [ - -97.03125, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 113, - 'geohash': '9vt', - 'center': [ - -93.515625, - 31.640625 - ], - 'rectangle': [ - [ - -94.21875, - 30.9375 - ], - [ - -92.8125, - 30.9375 - ], - [ - -92.8125, - 32.34375 - ], - [ - -94.21875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 102, - 'geohash': 'cbh', - 'center': [ - -94.921875, - 45.703125 - ], - 'rectangle': [ - [ - -95.625, - 45 - ], - [ - -94.21875, - 45 - ], - [ - -94.21875, - 46.40625 - ], - [ - -95.625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 100, - 'geohash': '9wx', - 'center': [ - -101.953125, - 37.265625 - ], - 'rectangle': [ - [ - -102.65625, - 36.5625 - ], - [ - -101.25, - 36.5625 - ], - [ - -101.25, - 37.96875 - ], - [ - -102.65625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 114, - 'geohash': '9xy', - 'center': [ - -103.359375, - 44.296875 - ], - 'rectangle': [ - [ - -104.0625, - 43.59375 - ], - [ - -102.65625, - 43.59375 - ], - [ - -102.65625, - 45 - ], - [ - -104.0625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 101, - 'geohash': 'c80', - 'center': [ - -111.796875, - 45.703125 - ], - 'rectangle': [ - [ - -112.5, - 45 - ], - [ - -111.09375, - 45 - ], - [ - -111.09375, - 46.40625 - ], - [ - -112.5, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 95, - 'geohash': '9vs', - 'center': [ - -94.921875, - 31.640625 - ], - 'rectangle': [ - [ - -95.625, - 30.9375 - ], - [ - -94.21875, - 30.9375 - ], - [ - -94.21875, - 32.34375 - ], - [ - -95.625, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 95, - 'geohash': 'cb1', - 'center': [ - -99.140625, - 45.703125 - ], - 'rectangle': [ - [ - -99.84375, - 45 - ], - [ - -98.4375, - 45 - ], - [ - -98.4375, - 46.40625 - ], - [ - -99.84375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 106, - 'geohash': 'c24', - 'center': [ - -120.234375, - 45.703125 - ], - 'rectangle': [ - [ - -120.9375, - 45 - ], - [ - -119.53125, - 45 - ], - [ - -119.53125, - 46.40625 - ], - [ - -120.9375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 101, - 'geohash': 'dj7', - 'center': [ - -85.078125, - 30.234375 - ], - 'rectangle': [ - [ - -85.78125, - 29.53125 - ], - [ - -84.375, - 29.53125 - ], - [ - -84.375, - 30.9375 - ], - [ - -85.78125, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 99, - 'geohash': 'b6v', - 'center': [ - -161.015625, - 61.171875 - ], - 'rectangle': [ - [ - -161.71875, - 60.46875 - ], - [ - -160.3125, - 60.46875 - ], - [ - -160.3125, - 61.875 - ], - [ - -161.71875, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 101, - 'geohash': '9we', - 'center': [ - -107.578125, - 37.265625 - ], - 'rectangle': [ - [ - -108.28125, - 36.5625 - ], - [ - -106.875, - 36.5625 - ], - [ - -106.875, - 37.96875 - ], - [ - -108.28125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 110, - 'geohash': '9q6', - 'center': [ - -120.234375, - 35.859375 - ], - 'rectangle': [ - [ - -120.9375, - 35.15625 - ], - [ - -119.53125, - 35.15625 - ], - [ - -119.53125, - 36.5625 - ], - [ - -120.9375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 100, - 'geohash': '9x0', - 'center': [ - -111.796875, - 40.078125 - ], - 'rectangle': [ - [ - -112.5, - 39.375 - ], - [ - -111.09375, - 39.375 - ], - [ - -111.09375, - 40.78125 - ], - [ - -112.5, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 106, - 'geohash': 'dj6', - 'center': [ - -86.484375, - 30.234375 - ], - 'rectangle': [ - [ - -87.1875, - 29.53125 - ], - [ - -85.78125, - 29.53125 - ], - [ - -85.78125, - 30.9375 - ], - [ - -87.1875, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 92, - 'geohash': '9mv', - 'center': [ - -116.015625, - 33.046875 - ], - 'rectangle': [ - [ - -116.71875, - 32.34375 - ], - [ - -115.3125, - 32.34375 - ], - [ - -115.3125, - 33.75 - ], - [ - -116.71875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 75, - 'geohash': '9z9', - 'center': [ - -99.140625, - 42.890625 - ], - 'rectangle': [ - [ - -99.84375, - 42.1875 - ], - [ - -98.4375, - 42.1875 - ], - [ - -98.4375, - 43.59375 - ], - [ - -99.84375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 73, - 'geohash': '9qe', - 'center': [ - -118.828125, - 37.265625 - ], - 'rectangle': [ - [ - -119.53125, - 36.5625 - ], - [ - -118.125, - 36.5625 - ], - [ - -118.125, - 37.96875 - ], - [ - -119.53125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 94, - 'geohash': 'cb6', - 'center': [ - -97.734375, - 47.109375 - ], - 'rectangle': [ - [ - -98.4375, - 46.40625 - ], - [ - -97.03125, - 46.40625 - ], - [ - -97.03125, - 47.8125 - ], - [ - -98.4375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -155.390625, - 20.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 90, - 'geohash': '8e9', - 'center': [ - -155.390625, - 20.390625 - ], - 'rectangle': [ - [ - -156.09375, - 19.6875 - ], - [ - -154.6875, - 19.6875 - ], - [ - -154.6875, - 21.09375 - ], - [ - -156.09375, - 21.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 111, - 'geohash': 'c26', - 'center': [ - -120.234375, - 47.109375 - ], - 'rectangle': [ - [ - -120.9375, - 46.40625 - ], - [ - -119.53125, - 46.40625 - ], - [ - -119.53125, - 47.8125 - ], - [ - -120.9375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 82, - 'geohash': '9xr', - 'center': [ - -101.953125, - 41.484375 - ], - 'rectangle': [ - [ - -102.65625, - 40.78125 - ], - [ - -101.25, - 40.78125 - ], - [ - -101.25, - 42.1875 - ], - [ - -102.65625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 80, - 'geohash': 'bd7', - 'center': [ - -152.578125, - 58.359375 - ], - 'rectangle': [ - [ - -153.28125, - 57.65625 - ], - [ - -151.875, - 57.65625 - ], - [ - -151.875, - 59.0625 - ], - [ - -153.28125, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 98, - 'geohash': '9x2', - 'center': [ - -111.796875, - 41.484375 - ], - 'rectangle': [ - [ - -112.5, - 40.78125 - ], - [ - -111.09375, - 40.78125 - ], - [ - -111.09375, - 42.1875 - ], - [ - -112.5, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 81, - 'geohash': 'c88', - 'center': [ - -111.796875, - 48.515625 - ], - 'rectangle': [ - [ - -112.5, - 47.8125 - ], - [ - -111.09375, - 47.8125 - ], - [ - -111.09375, - 49.21875 - ], - [ - -112.5, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 97, - 'geohash': 'c2p', - 'center': [ - -113.203125, - 45.703125 - ], - 'rectangle': [ - [ - -113.90625, - 45 - ], - [ - -112.5, - 45 - ], - [ - -112.5, - 46.40625 - ], - [ - -113.90625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 82, - 'geohash': '9r3', - 'center': [ - -121.640625, - 41.484375 - ], - 'rectangle': [ - [ - -122.34375, - 40.78125 - ], - [ - -120.9375, - 40.78125 - ], - [ - -120.9375, - 42.1875 - ], - [ - -122.34375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -69.609375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 79, - 'geohash': 'f2n', - 'center': [ - -69.609375, - 45.703125 - ], - 'rectangle': [ - [ - -70.3125, - 45 - ], - [ - -68.90625, - 45 - ], - [ - -68.90625, - 46.40625 - ], - [ - -70.3125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 76, - 'geohash': 'c25', - 'center': [ - -118.828125, - 45.703125 - ], - 'rectangle': [ - [ - -119.53125, - 45 - ], - [ - -118.125, - 45 - ], - [ - -118.125, - 46.40625 - ], - [ - -119.53125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 91, - 'geohash': 'dny', - 'center': [ - -80.859375, - 38.671875 - ], - 'rectangle': [ - [ - -81.5625, - 37.96875 - ], - [ - -80.15625, - 37.96875 - ], - [ - -80.15625, - 39.375 - ], - [ - -81.5625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 92, - 'geohash': '9yt', - 'center': [ - -93.515625, - 37.265625 - ], - 'rectangle': [ - [ - -94.21875, - 36.5625 - ], - [ - -92.8125, - 36.5625 - ], - [ - -92.8125, - 37.96875 - ], - [ - -94.21875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 78, - 'geohash': '9ye', - 'center': [ - -96.328125, - 37.265625 - ], - 'rectangle': [ - [ - -97.03125, - 36.5625 - ], - [ - -95.625, - 36.5625 - ], - [ - -95.625, - 37.96875 - ], - [ - -97.03125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 84, - 'geohash': '9v3', - 'center': [ - -99.140625, - 30.234375 - ], - 'rectangle': [ - [ - -99.84375, - 29.53125 - ], - [ - -98.4375, - 29.53125 - ], - [ - -98.4375, - 30.9375 - ], - [ - -99.84375, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 76, - 'geohash': '9qx', - 'center': [ - -113.203125, - 37.265625 - ], - 'rectangle': [ - [ - -113.90625, - 36.5625 - ], - [ - -112.5, - 36.5625 - ], - [ - -112.5, - 37.96875 - ], - [ - -113.90625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 89, - 'geohash': '9zb', - 'center': [ - -100.546875, - 44.296875 - ], - 'rectangle': [ - [ - -101.25, - 43.59375 - ], - [ - -99.84375, - 43.59375 - ], - [ - -99.84375, - 45 - ], - [ - -101.25, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 26.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 79, - 'geohash': 'dhx', - 'center': [ - -79.453125, - 26.015625 - ], - 'rectangle': [ - [ - -80.15625, - 25.3125 - ], - [ - -78.75, - 25.3125 - ], - [ - -78.75, - 26.71875 - ], - [ - -80.15625, - 26.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 82, - 'geohash': '9q4', - 'center': [ - -120.234375, - 34.453125 - ], - 'rectangle': [ - [ - -120.9375, - 33.75 - ], - [ - -119.53125, - 33.75 - ], - [ - -119.53125, - 35.15625 - ], - [ - -120.9375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 89, - 'geohash': 'b6p', - 'center': [ - -158.203125, - 56.953125 - ], - 'rectangle': [ - [ - -158.90625, - 56.25 - ], - [ - -157.5, - 56.25 - ], - [ - -157.5, - 57.65625 - ], - [ - -158.90625, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 77, - 'geohash': '9w0', - 'center': [ - -111.796875, - 34.453125 - ], - 'rectangle': [ - [ - -112.5, - 33.75 - ], - [ - -111.09375, - 33.75 - ], - [ - -111.09375, - 35.15625 - ], - [ - -112.5, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 80, - 'geohash': '9ve', - 'center': [ - -96.328125, - 31.640625 - ], - 'rectangle': [ - [ - -97.03125, - 30.9375 - ], - [ - -95.625, - 30.9375 - ], - [ - -95.625, - 32.34375 - ], - [ - -97.03125, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 75, - 'geohash': 'c8p', - 'center': [ - -101.953125, - 45.703125 - ], - 'rectangle': [ - [ - -102.65625, - 45 - ], - [ - -101.25, - 45 - ], - [ - -101.25, - 46.40625 - ], - [ - -102.65625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 63, - 'geohash': '9r8', - 'center': [ - -123.046875, - 42.890625 - ], - 'rectangle': [ - [ - -123.75, - 42.1875 - ], - [ - -122.34375, - 42.1875 - ], - [ - -122.34375, - 43.59375 - ], - [ - -123.75, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 72, - 'geohash': 'f01', - 'center': [ - -87.890625, - 45.703125 - ], - 'rectangle': [ - [ - -88.59375, - 45 - ], - [ - -87.1875, - 45 - ], - [ - -87.1875, - 46.40625 - ], - [ - -88.59375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 71, - 'geohash': '9x5', - 'center': [ - -107.578125, - 40.078125 - ], - 'rectangle': [ - [ - -108.28125, - 39.375 - ], - [ - -106.875, - 39.375 - ], - [ - -106.875, - 40.78125 - ], - [ - -108.28125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 90, - 'geohash': '9rw', - 'center': [ - -114.609375, - 42.890625 - ], - 'rectangle': [ - [ - -115.3125, - 42.1875 - ], - [ - -113.90625, - 42.1875 - ], - [ - -113.90625, - 43.59375 - ], - [ - -115.3125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 81, - 'geohash': 'cbp', - 'center': [ - -90.703125, - 45.703125 - ], - 'rectangle': [ - [ - -91.40625, - 45 - ], - [ - -90, - 45 - ], - [ - -90, - 46.40625 - ], - [ - -91.40625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 76, - 'geohash': '9ty', - 'center': [ - -103.359375, - 33.046875 - ], - 'rectangle': [ - [ - -104.0625, - 32.34375 - ], - [ - -102.65625, - 32.34375 - ], - [ - -102.65625, - 33.75 - ], - [ - -104.0625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 73, - 'geohash': '9wv', - 'center': [ - -104.765625, - 38.671875 - ], - 'rectangle': [ - [ - -105.46875, - 37.96875 - ], - [ - -104.0625, - 37.96875 - ], - [ - -104.0625, - 39.375 - ], - [ - -105.46875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 77, - 'geohash': '9xz', - 'center': [ - -101.953125, - 44.296875 - ], - 'rectangle': [ - [ - -102.65625, - 43.59375 - ], - [ - -101.25, - 43.59375 - ], - [ - -101.25, - 45 - ], - [ - -102.65625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 72, - 'geohash': '9tx', - 'center': [ - -101.953125, - 31.640625 - ], - 'rectangle': [ - [ - -102.65625, - 30.9375 - ], - [ - -101.25, - 30.9375 - ], - [ - -101.25, - 32.34375 - ], - [ - -102.65625, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 75, - 'geohash': '9tf', - 'center': [ - -108.984375, - 33.046875 - ], - 'rectangle': [ - [ - -109.6875, - 32.34375 - ], - [ - -108.28125, - 32.34375 - ], - [ - -108.28125, - 33.75 - ], - [ - -109.6875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 79, - 'geohash': '9xp', - 'center': [ - -101.953125, - 40.078125 - ], - 'rectangle': [ - [ - -102.65625, - 39.375 - ], - [ - -101.25, - 39.375 - ], - [ - -101.25, - 40.78125 - ], - [ - -102.65625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 99, - 'geohash': '9yx', - 'center': [ - -90.703125, - 37.265625 - ], - 'rectangle': [ - [ - -91.40625, - 36.5625 - ], - [ - -90, - 36.5625 - ], - [ - -90, - 37.96875 - ], - [ - -91.40625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 73, - 'geohash': 'dpu', - 'center': [ - -83.671875, - 44.296875 - ], - 'rectangle': [ - [ - -84.375, - 43.59375 - ], - [ - -82.96875, - 43.59375 - ], - [ - -82.96875, - 45 - ], - [ - -84.375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 72, - 'geohash': 'f04', - 'center': [ - -86.484375, - 45.703125 - ], - 'rectangle': [ - [ - -87.1875, - 45 - ], - [ - -85.78125, - 45 - ], - [ - -85.78125, - 46.40625 - ], - [ - -87.1875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 77, - 'geohash': '9pr', - 'center': [ - -124.453125, - 41.484375 - ], - 'rectangle': [ - [ - -125.15625, - 40.78125 - ], - [ - -123.75, - 40.78125 - ], - [ - -123.75, - 42.1875 - ], - [ - -125.15625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 57, - 'geohash': '9xn', - 'center': [ - -103.359375, - 40.078125 - ], - 'rectangle': [ - [ - -104.0625, - 39.375 - ], - [ - -102.65625, - 39.375 - ], - [ - -102.65625, - 40.78125 - ], - [ - -104.0625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -135.703125, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 74, - 'geohash': 'bfx', - 'center': [ - -135.703125, - 59.765625 - ], - 'rectangle': [ - [ - -136.40625, - 59.0625 - ], - [ - -135, - 59.0625 - ], - [ - -135, - 60.46875 - ], - [ - -136.40625, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 71, - 'geohash': '9zj', - 'center': [ - -93.515625, - 40.078125 - ], - 'rectangle': [ - [ - -94.21875, - 39.375 - ], - [ - -92.8125, - 39.375 - ], - [ - -92.8125, - 40.78125 - ], - [ - -94.21875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 66, - 'geohash': '9y9', - 'center': [ - -99.140625, - 37.265625 - ], - 'rectangle': [ - [ - -99.84375, - 36.5625 - ], - [ - -98.4375, - 36.5625 - ], - [ - -98.4375, - 37.96875 - ], - [ - -99.84375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 75, - 'geohash': '9xg', - 'center': [ - -107.578125, - 44.296875 - ], - 'rectangle': [ - [ - -108.28125, - 43.59375 - ], - [ - -106.875, - 43.59375 - ], - [ - -106.875, - 45 - ], - [ - -108.28125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 71, - 'geohash': 'djq', - 'center': [ - -80.859375, - 30.234375 - ], - 'rectangle': [ - [ - -81.5625, - 29.53125 - ], - [ - -80.15625, - 29.53125 - ], - [ - -80.15625, - 30.9375 - ], - [ - -81.5625, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 77, - 'geohash': '9w8', - 'center': [ - -111.796875, - 37.265625 - ], - 'rectangle': [ - [ - -112.5, - 36.5625 - ], - [ - -111.09375, - 36.5625 - ], - [ - -111.09375, - 37.96875 - ], - [ - -112.5, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 79, - 'geohash': '9tw', - 'center': [ - -103.359375, - 31.640625 - ], - 'rectangle': [ - [ - -104.0625, - 30.9375 - ], - [ - -102.65625, - 30.9375 - ], - [ - -102.65625, - 32.34375 - ], - [ - -104.0625, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 80, - 'geohash': '9ru', - 'center': [ - -117.421875, - 44.296875 - ], - 'rectangle': [ - [ - -118.125, - 43.59375 - ], - [ - -116.71875, - 43.59375 - ], - [ - -116.71875, - 45 - ], - [ - -118.125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -65.390625, - 17.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 70, - 'geohash': 'de1', - 'center': [ - -65.390625, - 17.578125 - ], - 'rectangle': [ - [ - -66.09375, - 16.875 - ], - [ - -64.6875, - 16.875 - ], - [ - -64.6875, - 18.28125 - ], - [ - -66.09375, - 18.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 72, - 'geohash': '9qn', - 'center': [ - -114.609375, - 34.453125 - ], - 'rectangle': [ - [ - -115.3125, - 33.75 - ], - [ - -113.90625, - 33.75 - ], - [ - -113.90625, - 35.15625 - ], - [ - -115.3125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 67, - 'geohash': '9y2', - 'center': [ - -100.546875, - 35.859375 - ], - 'rectangle': [ - [ - -101.25, - 35.15625 - ], - [ - -99.84375, - 35.15625 - ], - [ - -99.84375, - 36.5625 - ], - [ - -101.25, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 69, - 'geohash': '9rv', - 'center': [ - -116.015625, - 44.296875 - ], - 'rectangle': [ - [ - -116.71875, - 43.59375 - ], - [ - -115.3125, - 43.59375 - ], - [ - -115.3125, - 45 - ], - [ - -116.71875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -163.828125, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 73, - 'geohash': 'b75', - 'center': [ - -163.828125, - 62.578125 - ], - 'rectangle': [ - [ - -164.53125, - 61.875 - ], - [ - -163.125, - 61.875 - ], - [ - -163.125, - 63.28125 - ], - [ - -164.53125, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 66, - 'geohash': '9yb', - 'center': [ - -100.546875, - 38.671875 - ], - 'rectangle': [ - [ - -101.25, - 37.96875 - ], - [ - -99.84375, - 37.96875 - ], - [ - -99.84375, - 39.375 - ], - [ - -101.25, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 72, - 'geohash': 'dpx', - 'center': [ - -79.453125, - 42.890625 - ], - 'rectangle': [ - [ - -80.15625, - 42.1875 - ], - [ - -78.75, - 42.1875 - ], - [ - -78.75, - 43.59375 - ], - [ - -80.15625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 79, - 'geohash': 'dpt', - 'center': [ - -82.265625, - 42.890625 - ], - 'rectangle': [ - [ - -82.96875, - 42.1875 - ], - [ - -81.5625, - 42.1875 - ], - [ - -81.5625, - 43.59375 - ], - [ - -82.96875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 75, - 'geohash': 'c83', - 'center': [ - -110.390625, - 47.109375 - ], - 'rectangle': [ - [ - -111.09375, - 46.40625 - ], - [ - -109.6875, - 46.40625 - ], - [ - -109.6875, - 47.8125 - ], - [ - -111.09375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 71, - 'geohash': 'b6s', - 'center': [ - -162.421875, - 59.765625 - ], - 'rectangle': [ - [ - -163.125, - 59.0625 - ], - [ - -161.71875, - 59.0625 - ], - [ - -161.71875, - 60.46875 - ], - [ - -163.125, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 77, - 'geohash': '9xq', - 'center': [ - -103.359375, - 41.484375 - ], - 'rectangle': [ - [ - -104.0625, - 40.78125 - ], - [ - -102.65625, - 40.78125 - ], - [ - -102.65625, - 42.1875 - ], - [ - -104.0625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 72, - 'geohash': 'b7n', - 'center': [ - -159.609375, - 62.578125 - ], - 'rectangle': [ - [ - -160.3125, - 61.875 - ], - [ - -158.90625, - 61.875 - ], - [ - -158.90625, - 63.28125 - ], - [ - -160.3125, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 73, - 'geohash': '9rc', - 'center': [ - -121.640625, - 44.296875 - ], - 'rectangle': [ - [ - -122.34375, - 43.59375 - ], - [ - -120.9375, - 43.59375 - ], - [ - -120.9375, - 45 - ], - [ - -122.34375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 67, - 'geohash': '9vh', - 'center': [ - -94.921875, - 28.828125 - ], - 'rectangle': [ - [ - -95.625, - 28.125 - ], - [ - -94.21875, - 28.125 - ], - [ - -94.21875, - 29.53125 - ], - [ - -95.625, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -69.609375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 58, - 'geohash': 'drq', - 'center': [ - -69.609375, - 41.484375 - ], - 'rectangle': [ - [ - -70.3125, - 40.78125 - ], - [ - -68.90625, - 40.78125 - ], - [ - -68.90625, - 42.1875 - ], - [ - -70.3125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 62, - 'geohash': 'cb2', - 'center': [ - -100.546875, - 47.109375 - ], - 'rectangle': [ - [ - -101.25, - 46.40625 - ], - [ - -99.84375, - 46.40625 - ], - [ - -99.84375, - 47.8125 - ], - [ - -101.25, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -134.296875, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 73, - 'geohash': 'c42', - 'center': [ - -134.296875, - 58.359375 - ], - 'rectangle': [ - [ - -135, - 57.65625 - ], - [ - -133.59375, - 57.65625 - ], - [ - -133.59375, - 59.0625 - ], - [ - -135, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 64, - 'geohash': '9xx', - 'center': [ - -101.953125, - 42.890625 - ], - 'rectangle': [ - [ - -102.65625, - 42.1875 - ], - [ - -101.25, - 42.1875 - ], - [ - -101.25, - 43.59375 - ], - [ - -102.65625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 64, - 'geohash': '9tu', - 'center': [ - -106.171875, - 33.046875 - ], - 'rectangle': [ - [ - -106.875, - 32.34375 - ], - [ - -105.46875, - 32.34375 - ], - [ - -105.46875, - 33.75 - ], - [ - -106.875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 64, - 'geohash': 'cbe', - 'center': [ - -96.328125, - 48.515625 - ], - 'rectangle': [ - [ - -97.03125, - 47.8125 - ], - [ - -95.625, - 47.8125 - ], - [ - -95.625, - 49.21875 - ], - [ - -97.03125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -132.890625, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 66, - 'geohash': 'c41', - 'center': [ - -132.890625, - 56.953125 - ], - 'rectangle': [ - [ - -133.59375, - 56.25 - ], - [ - -132.1875, - 56.25 - ], - [ - -132.1875, - 57.65625 - ], - [ - -133.59375, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 68, - 'geohash': '9wm', - 'center': [ - -104.765625, - 35.859375 - ], - 'rectangle': [ - [ - -105.46875, - 35.15625 - ], - [ - -104.0625, - 35.15625 - ], - [ - -104.0625, - 36.5625 - ], - [ - -105.46875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 70, - 'geohash': '9w6', - 'center': [ - -108.984375, - 35.859375 - ], - 'rectangle': [ - [ - -109.6875, - 35.15625 - ], - [ - -108.28125, - 35.15625 - ], - [ - -108.28125, - 36.5625 - ], - [ - -109.6875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 63, - 'geohash': '9wd', - 'center': [ - -108.984375, - 37.265625 - ], - 'rectangle': [ - [ - -109.6875, - 36.5625 - ], - [ - -108.28125, - 36.5625 - ], - [ - -108.28125, - 37.96875 - ], - [ - -109.6875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 79, - 'geohash': 'f0h', - 'center': [ - -83.671875, - 45.703125 - ], - 'rectangle': [ - [ - -84.375, - 45 - ], - [ - -82.96875, - 45 - ], - [ - -82.96875, - 46.40625 - ], - [ - -84.375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 60, - 'geohash': 'c8t', - 'center': [ - -104.765625, - 48.515625 - ], - 'rectangle': [ - [ - -105.46875, - 47.8125 - ], - [ - -104.0625, - 47.8125 - ], - [ - -104.0625, - 49.21875 - ], - [ - -105.46875, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 68, - 'geohash': '9zc', - 'center': [ - -99.140625, - 44.296875 - ], - 'rectangle': [ - [ - -99.84375, - 43.59375 - ], - [ - -98.4375, - 43.59375 - ], - [ - -98.4375, - 45 - ], - [ - -99.84375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 70, - 'geohash': 'cbk', - 'center': [ - -94.921875, - 47.109375 - ], - 'rectangle': [ - [ - -95.625, - 46.40625 - ], - [ - -94.21875, - 46.40625 - ], - [ - -94.21875, - 47.8125 - ], - [ - -95.625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 59, - 'geohash': '9yc', - 'center': [ - -99.140625, - 38.671875 - ], - 'rectangle': [ - [ - -99.84375, - 37.96875 - ], - [ - -98.4375, - 37.96875 - ], - [ - -98.4375, - 39.375 - ], - [ - -99.84375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -155.390625, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 70, - 'geohash': 'bd9', - 'center': [ - -155.390625, - 59.765625 - ], - 'rectangle': [ - [ - -156.09375, - 59.0625 - ], - [ - -154.6875, - 59.0625 - ], - [ - -154.6875, - 60.46875 - ], - [ - -156.09375, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 71, - 'geohash': 'bd2', - 'center': [ - -156.796875, - 58.359375 - ], - 'rectangle': [ - [ - -157.5, - 57.65625 - ], - [ - -156.09375, - 57.65625 - ], - [ - -156.09375, - 59.0625 - ], - [ - -157.5, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 58, - 'geohash': '9wk', - 'center': [ - -106.171875, - 35.859375 - ], - 'rectangle': [ - [ - -106.875, - 35.15625 - ], - [ - -105.46875, - 35.15625 - ], - [ - -105.46875, - 36.5625 - ], - [ - -106.875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 58, - 'geohash': '9r4', - 'center': [ - -120.234375, - 40.078125 - ], - 'rectangle': [ - [ - -120.9375, - 39.375 - ], - [ - -119.53125, - 39.375 - ], - [ - -119.53125, - 40.78125 - ], - [ - -120.9375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 58, - 'geohash': '9xm', - 'center': [ - -104.765625, - 41.484375 - ], - 'rectangle': [ - [ - -105.46875, - 40.78125 - ], - [ - -104.0625, - 40.78125 - ], - [ - -104.0625, - 42.1875 - ], - [ - -105.46875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 61, - 'geohash': '9v4', - 'center': [ - -97.734375, - 28.828125 - ], - 'rectangle': [ - [ - -98.4375, - 28.125 - ], - [ - -97.03125, - 28.125 - ], - [ - -97.03125, - 29.53125 - ], - [ - -98.4375, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 69, - 'geohash': '9x9', - 'center': [ - -110.390625, - 42.890625 - ], - 'rectangle': [ - [ - -111.09375, - 42.1875 - ], - [ - -109.6875, - 42.1875 - ], - [ - -109.6875, - 43.59375 - ], - [ - -111.09375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 65, - 'geohash': '9pp', - 'center': [ - -124.453125, - 40.078125 - ], - 'rectangle': [ - [ - -125.15625, - 39.375 - ], - [ - -123.75, - 39.375 - ], - [ - -123.75, - 40.78125 - ], - [ - -125.15625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 67, - 'geohash': 'cb0', - 'center': [ - -100.546875, - 45.703125 - ], - 'rectangle': [ - [ - -101.25, - 45 - ], - [ - -99.84375, - 45 - ], - [ - -99.84375, - 46.40625 - ], - [ - -101.25, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 50, - 'geohash': 'c89', - 'center': [ - -110.390625, - 48.515625 - ], - 'rectangle': [ - [ - -111.09375, - 47.8125 - ], - [ - -109.6875, - 47.8125 - ], - [ - -109.6875, - 49.21875 - ], - [ - -111.09375, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 72, - 'geohash': '9v9', - 'center': [ - -99.140625, - 31.640625 - ], - 'rectangle': [ - [ - -99.84375, - 30.9375 - ], - [ - -98.4375, - 30.9375 - ], - [ - -98.4375, - 32.34375 - ], - [ - -99.84375, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 62, - 'geohash': '9qw', - 'center': [ - -114.609375, - 37.265625 - ], - 'rectangle': [ - [ - -115.3125, - 36.5625 - ], - [ - -113.90625, - 36.5625 - ], - [ - -113.90625, - 37.96875 - ], - [ - -115.3125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -68.203125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 58, - 'geohash': 'f2p', - 'center': [ - -68.203125, - 45.703125 - ], - 'rectangle': [ - [ - -68.90625, - 45 - ], - [ - -67.5, - 45 - ], - [ - -67.5, - 46.40625 - ], - [ - -68.90625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 61, - 'geohash': 'b7t', - 'center': [ - -161.015625, - 65.390625 - ], - 'rectangle': [ - [ - -161.71875, - 64.6875 - ], - [ - -160.3125, - 64.6875 - ], - [ - -160.3125, - 66.09375 - ], - [ - -161.71875, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 56, - 'geohash': 'cbm', - 'center': [ - -93.515625, - 47.109375 - ], - 'rectangle': [ - [ - -94.21875, - 46.40625 - ], - [ - -92.8125, - 46.40625 - ], - [ - -92.8125, - 47.8125 - ], - [ - -94.21875, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 65, - 'geohash': 'bd8', - 'center': [ - -156.796875, - 59.765625 - ], - 'rectangle': [ - [ - -157.5, - 59.0625 - ], - [ - -156.09375, - 59.0625 - ], - [ - -156.09375, - 60.46875 - ], - [ - -157.5, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 58, - 'geohash': 'c2s', - 'center': [ - -117.421875, - 48.515625 - ], - 'rectangle': [ - [ - -118.125, - 47.8125 - ], - [ - -116.71875, - 47.8125 - ], - [ - -116.71875, - 49.21875 - ], - [ - -118.125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 64, - 'geohash': 'b7k', - 'center': [ - -162.421875, - 63.984375 - ], - 'rectangle': [ - [ - -163.125, - 63.28125 - ], - [ - -161.71875, - 63.28125 - ], - [ - -161.71875, - 64.6875 - ], - [ - -163.125, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -68.203125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 69, - 'geohash': 'drz', - 'center': [ - -68.203125, - 44.296875 - ], - 'rectangle': [ - [ - -68.90625, - 43.59375 - ], - [ - -67.5, - 43.59375 - ], - [ - -67.5, - 45 - ], - [ - -68.90625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 64, - 'geohash': '9wu', - 'center': [ - -106.171875, - 38.671875 - ], - 'rectangle': [ - [ - -106.875, - 37.96875 - ], - [ - -105.46875, - 37.96875 - ], - [ - -105.46875, - 39.375 - ], - [ - -106.875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 69, - 'geohash': 'c84', - 'center': [ - -108.984375, - 45.703125 - ], - 'rectangle': [ - [ - -109.6875, - 45 - ], - [ - -108.28125, - 45 - ], - [ - -108.28125, - 46.40625 - ], - [ - -109.6875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 64, - 'geohash': 'c8d', - 'center': [ - -108.984375, - 48.515625 - ], - 'rectangle': [ - [ - -109.6875, - 47.8125 - ], - [ - -108.28125, - 47.8125 - ], - [ - -108.28125, - 49.21875 - ], - [ - -109.6875, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 59, - 'geohash': '9y0', - 'center': [ - -100.546875, - 34.453125 - ], - 'rectangle': [ - [ - -101.25, - 33.75 - ], - [ - -99.84375, - 33.75 - ], - [ - -99.84375, - 35.15625 - ], - [ - -101.25, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 60, - 'geohash': '9wh', - 'center': [ - -106.171875, - 34.453125 - ], - 'rectangle': [ - [ - -106.875, - 33.75 - ], - [ - -105.46875, - 33.75 - ], - [ - -105.46875, - 35.15625 - ], - [ - -106.875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': '9xw', - 'center': [ - -103.359375, - 42.890625 - ], - 'rectangle': [ - [ - -104.0625, - 42.1875 - ], - [ - -102.65625, - 42.1875 - ], - [ - -102.65625, - 43.59375 - ], - [ - -104.0625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 56, - 'geohash': 'dnz', - 'center': [ - -79.453125, - 38.671875 - ], - 'rectangle': [ - [ - -80.15625, - 37.96875 - ], - [ - -78.75, - 37.96875 - ], - [ - -78.75, - 39.375 - ], - [ - -80.15625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 51, - 'geohash': '9ts', - 'center': [ - -106.171875, - 31.640625 - ], - 'rectangle': [ - [ - -106.875, - 30.9375 - ], - [ - -105.46875, - 30.9375 - ], - [ - -105.46875, - 32.34375 - ], - [ - -106.875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': '9xh', - 'center': [ - -106.171875, - 40.078125 - ], - 'rectangle': [ - [ - -106.875, - 39.375 - ], - [ - -105.46875, - 39.375 - ], - [ - -105.46875, - 40.78125 - ], - [ - -106.875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 52, - 'geohash': 'c2d', - 'center': [ - -120.234375, - 48.515625 - ], - 'rectangle': [ - [ - -120.9375, - 47.8125 - ], - [ - -119.53125, - 47.8125 - ], - [ - -119.53125, - 49.21875 - ], - [ - -120.9375, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 74, - 'geohash': 'bdb', - 'center': [ - -156.796875, - 61.171875 - ], - 'rectangle': [ - [ - -157.5, - 60.46875 - ], - [ - -156.09375, - 60.46875 - ], - [ - -156.09375, - 61.875 - ], - [ - -157.5, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 26.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 52, - 'geohash': 'dht', - 'center': [ - -82.265625, - 26.015625 - ], - 'rectangle': [ - [ - -82.96875, - 25.3125 - ], - [ - -81.5625, - 25.3125 - ], - [ - -81.5625, - 26.71875 - ], - [ - -82.96875, - 26.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 46, - 'geohash': 'c8q', - 'center': [ - -103.359375, - 47.109375 - ], - 'rectangle': [ - [ - -104.0625, - 46.40625 - ], - [ - -102.65625, - 46.40625 - ], - [ - -102.65625, - 47.8125 - ], - [ - -104.0625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 50, - 'geohash': 'dpf', - 'center': [ - -86.484375, - 44.296875 - ], - 'rectangle': [ - [ - -87.1875, - 43.59375 - ], - [ - -85.78125, - 43.59375 - ], - [ - -85.78125, - 45 - ], - [ - -87.1875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 66, - 'geohash': 'cb8', - 'center': [ - -100.546875, - 48.515625 - ], - 'rectangle': [ - [ - -101.25, - 47.8125 - ], - [ - -99.84375, - 47.8125 - ], - [ - -99.84375, - 49.21875 - ], - [ - -101.25, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 46, - 'geohash': '9x1', - 'center': [ - -110.390625, - 40.078125 - ], - 'rectangle': [ - [ - -111.09375, - 39.375 - ], - [ - -109.6875, - 39.375 - ], - [ - -109.6875, - 40.78125 - ], - [ - -111.09375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 48, - 'geohash': 'b6r', - 'center': [ - -158.203125, - 58.359375 - ], - 'rectangle': [ - [ - -158.90625, - 57.65625 - ], - [ - -157.5, - 57.65625 - ], - [ - -157.5, - 59.0625 - ], - [ - -158.90625, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 55, - 'geohash': '9tg', - 'center': [ - -107.578125, - 33.046875 - ], - 'rectangle': [ - [ - -108.28125, - 32.34375 - ], - [ - -106.875, - 32.34375 - ], - [ - -106.875, - 33.75 - ], - [ - -108.28125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 20.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 48, - 'geohash': '8e8', - 'center': [ - -156.796875, - 20.390625 - ], - 'rectangle': [ - [ - -157.5, - 19.6875 - ], - [ - -156.09375, - 19.6875 - ], - [ - -156.09375, - 21.09375 - ], - [ - -157.5, - 21.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 46, - 'geohash': 'dq1', - 'center': [ - -76.640625, - 34.453125 - ], - 'rectangle': [ - [ - -77.34375, - 33.75 - ], - [ - -75.9375, - 33.75 - ], - [ - -75.9375, - 35.15625 - ], - [ - -77.34375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': 'c81', - 'center': [ - -110.390625, - 45.703125 - ], - 'rectangle': [ - [ - -111.09375, - 45 - ], - [ - -109.6875, - 45 - ], - [ - -109.6875, - 46.40625 - ], - [ - -111.09375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': 'c29', - 'center': [ - -121.640625, - 48.515625 - ], - 'rectangle': [ - [ - -122.34375, - 47.8125 - ], - [ - -120.9375, - 47.8125 - ], - [ - -120.9375, - 49.21875 - ], - [ - -122.34375, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 48, - 'geohash': 'bds', - 'center': [ - -151.171875, - 59.765625 - ], - 'rectangle': [ - [ - -151.875, - 59.0625 - ], - [ - -150.46875, - 59.0625 - ], - [ - -150.46875, - 60.46875 - ], - [ - -151.875, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 51, - 'geohash': '9ws', - 'center': [ - -106.171875, - 37.265625 - ], - 'rectangle': [ - [ - -106.875, - 36.5625 - ], - [ - -105.46875, - 36.5625 - ], - [ - -105.46875, - 37.96875 - ], - [ - -106.875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 58, - 'geohash': 'c8m', - 'center': [ - -104.765625, - 47.109375 - ], - 'rectangle': [ - [ - -105.46875, - 46.40625 - ], - [ - -104.0625, - 46.40625 - ], - [ - -104.0625, - 47.8125 - ], - [ - -105.46875, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 41, - 'geohash': 'c0p', - 'center': [ - -124.453125, - 45.703125 - ], - 'rectangle': [ - [ - -125.15625, - 45 - ], - [ - -123.75, - 45 - ], - [ - -123.75, - 46.40625 - ], - [ - -125.15625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 46, - 'geohash': 'beb', - 'center': [ - -156.796875, - 66.796875 - ], - 'rectangle': [ - [ - -157.5, - 66.09375 - ], - [ - -156.09375, - 66.09375 - ], - [ - -156.09375, - 67.5 - ], - [ - -157.5, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 67, - 'geohash': '9xb', - 'center': [ - -111.796875, - 44.296875 - ], - 'rectangle': [ - [ - -112.5, - 43.59375 - ], - [ - -111.09375, - 43.59375 - ], - [ - -111.09375, - 45 - ], - [ - -112.5, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 55, - 'geohash': '9rt', - 'center': [ - -116.015625, - 42.890625 - ], - 'rectangle': [ - [ - -116.71875, - 42.1875 - ], - [ - -115.3125, - 42.1875 - ], - [ - -115.3125, - 43.59375 - ], - [ - -116.71875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': 'bfb', - 'center': [ - -145.546875, - 61.171875 - ], - 'rectangle': [ - [ - -146.25, - 60.46875 - ], - [ - -144.84375, - 60.46875 - ], - [ - -144.84375, - 61.875 - ], - [ - -146.25, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': '9tq', - 'center': [ - -103.359375, - 30.234375 - ], - 'rectangle': [ - [ - -104.0625, - 29.53125 - ], - [ - -102.65625, - 29.53125 - ], - [ - -102.65625, - 30.9375 - ], - [ - -104.0625, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 50, - 'geohash': 'c86', - 'center': [ - -108.984375, - 47.109375 - ], - 'rectangle': [ - [ - -109.6875, - 46.40625 - ], - [ - -108.28125, - 46.40625 - ], - [ - -108.28125, - 47.8125 - ], - [ - -109.6875, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 62, - 'geohash': '9r6', - 'center': [ - -120.234375, - 41.484375 - ], - 'rectangle': [ - [ - -120.9375, - 40.78125 - ], - [ - -119.53125, - 40.78125 - ], - [ - -119.53125, - 42.1875 - ], - [ - -120.9375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 56, - 'geohash': 'cb9', - 'center': [ - -99.140625, - 48.515625 - ], - 'rectangle': [ - [ - -99.84375, - 47.8125 - ], - [ - -98.4375, - 47.8125 - ], - [ - -98.4375, - 49.21875 - ], - [ - -99.84375, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 53, - 'geohash': 'dq6', - 'center': [ - -75.234375, - 35.859375 - ], - 'rectangle': [ - [ - -75.9375, - 35.15625 - ], - [ - -74.53125, - 35.15625 - ], - [ - -74.53125, - 36.5625 - ], - [ - -75.9375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 52, - 'geohash': '9px', - 'center': [ - -124.453125, - 42.890625 - ], - 'rectangle': [ - [ - -125.15625, - 42.1875 - ], - [ - -123.75, - 42.1875 - ], - [ - -123.75, - 43.59375 - ], - [ - -125.15625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -153.984375, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 53, - 'geohash': 'bd4', - 'center': [ - -153.984375, - 56.953125 - ], - 'rectangle': [ - [ - -154.6875, - 56.25 - ], - [ - -153.28125, - 56.25 - ], - [ - -153.28125, - 57.65625 - ], - [ - -154.6875, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 50, - 'geohash': '9my', - 'center': [ - -114.609375, - 33.046875 - ], - 'rectangle': [ - [ - -115.3125, - 32.34375 - ], - [ - -113.90625, - 32.34375 - ], - [ - -113.90625, - 33.75 - ], - [ - -115.3125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 21.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': '87z', - 'center': [ - -158.203125, - 21.796875 - ], - 'rectangle': [ - [ - -158.90625, - 21.09375 - ], - [ - -157.5, - 21.09375 - ], - [ - -157.5, - 22.5 - ], - [ - -158.90625, - 22.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 46, - 'geohash': 'c2m', - 'center': [ - -116.015625, - 47.109375 - ], - 'rectangle': [ - [ - -116.71875, - 46.40625 - ], - [ - -115.3125, - 46.40625 - ], - [ - -115.3125, - 47.8125 - ], - [ - -116.71875, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 53, - 'geohash': '9x3', - 'center': [ - -110.390625, - 41.484375 - ], - 'rectangle': [ - [ - -111.09375, - 40.78125 - ], - [ - -109.6875, - 40.78125 - ], - [ - -109.6875, - 42.1875 - ], - [ - -111.09375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 42, - 'geohash': '9w2', - 'center': [ - -111.796875, - 35.859375 - ], - 'rectangle': [ - [ - -112.5, - 35.15625 - ], - [ - -111.09375, - 35.15625 - ], - [ - -111.09375, - 36.5625 - ], - [ - -112.5, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 53, - 'geohash': '9pz', - 'center': [ - -124.453125, - 44.296875 - ], - 'rectangle': [ - [ - -125.15625, - 43.59375 - ], - [ - -123.75, - 43.59375 - ], - [ - -123.75, - 45 - ], - [ - -125.15625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 56, - 'geohash': 'cbr', - 'center': [ - -90.703125, - 47.109375 - ], - 'rectangle': [ - [ - -91.40625, - 46.40625 - ], - [ - -90, - 46.40625 - ], - [ - -90, - 47.8125 - ], - [ - -91.40625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': '9wg', - 'center': [ - -107.578125, - 38.671875 - ], - 'rectangle': [ - [ - -108.28125, - 37.96875 - ], - [ - -106.875, - 37.96875 - ], - [ - -106.875, - 39.375 - ], - [ - -108.28125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 52, - 'geohash': '9vb', - 'center': [ - -100.546875, - 33.046875 - ], - 'rectangle': [ - [ - -101.25, - 32.34375 - ], - [ - -99.84375, - 32.34375 - ], - [ - -99.84375, - 33.75 - ], - [ - -101.25, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 55, - 'geohash': '9z8', - 'center': [ - -100.546875, - 42.890625 - ], - 'rectangle': [ - [ - -101.25, - 42.1875 - ], - [ - -99.84375, - 42.1875 - ], - [ - -99.84375, - 43.59375 - ], - [ - -101.25, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 42, - 'geohash': '9z2', - 'center': [ - -100.546875, - 41.484375 - ], - 'rectangle': [ - [ - -101.25, - 40.78125 - ], - [ - -99.84375, - 40.78125 - ], - [ - -99.84375, - 42.1875 - ], - [ - -101.25, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 47, - 'geohash': '9w4', - 'center': [ - -108.984375, - 34.453125 - ], - 'rectangle': [ - [ - -109.6875, - 33.75 - ], - [ - -108.28125, - 33.75 - ], - [ - -108.28125, - 35.15625 - ], - [ - -109.6875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 47, - 'geohash': '9wc', - 'center': [ - -110.390625, - 38.671875 - ], - 'rectangle': [ - [ - -111.09375, - 37.96875 - ], - [ - -109.6875, - 37.96875 - ], - [ - -109.6875, - 39.375 - ], - [ - -111.09375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 51, - 'geohash': '9mz', - 'center': [ - -113.203125, - 33.046875 - ], - 'rectangle': [ - [ - -113.90625, - 32.34375 - ], - [ - -112.5, - 32.34375 - ], - [ - -112.5, - 33.75 - ], - [ - -113.90625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -68.203125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 64, - 'geohash': 'f2r', - 'center': [ - -68.203125, - 47.109375 - ], - 'rectangle': [ - [ - -68.90625, - 46.40625 - ], - [ - -67.5, - 46.40625 - ], - [ - -67.5, - 47.8125 - ], - [ - -68.90625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -131.484375, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 48, - 'geohash': 'c1f', - 'center': [ - -131.484375, - 55.546875 - ], - 'rectangle': [ - [ - -132.1875, - 54.84375 - ], - [ - -130.78125, - 54.84375 - ], - [ - -130.78125, - 56.25 - ], - [ - -132.1875, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -155.390625, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 60, - 'geohash': 'be1', - 'center': [ - -155.390625, - 62.578125 - ], - 'rectangle': [ - [ - -156.09375, - 61.875 - ], - [ - -154.6875, - 61.875 - ], - [ - -154.6875, - 63.28125 - ], - [ - -156.09375, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 43, - 'geohash': '9x8', - 'center': [ - -111.796875, - 42.890625 - ], - 'rectangle': [ - [ - -112.5, - 42.1875 - ], - [ - -111.09375, - 42.1875 - ], - [ - -111.09375, - 43.59375 - ], - [ - -112.5, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 42, - 'geohash': '9rx', - 'center': [ - -113.203125, - 42.890625 - ], - 'rectangle': [ - [ - -113.90625, - 42.1875 - ], - [ - -112.5, - 42.1875 - ], - [ - -112.5, - 43.59375 - ], - [ - -113.90625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 49, - 'geohash': 'bev', - 'center': [ - -149.765625, - 66.796875 - ], - 'rectangle': [ - [ - -150.46875, - 66.09375 - ], - [ - -149.0625, - 66.09375 - ], - [ - -149.0625, - 67.5 - ], - [ - -150.46875, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 43, - 'geohash': '9wt', - 'center': [ - -104.765625, - 37.265625 - ], - 'rectangle': [ - [ - -105.46875, - 36.5625 - ], - [ - -104.0625, - 36.5625 - ], - [ - -104.0625, - 37.96875 - ], - [ - -105.46875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 21.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 58, - 'geohash': '87y', - 'center': [ - -159.609375, - 21.796875 - ], - 'rectangle': [ - [ - -160.3125, - 21.09375 - ], - [ - -158.90625, - 21.09375 - ], - [ - -158.90625, - 22.5 - ], - [ - -160.3125, - 22.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 42, - 'geohash': 'drf', - 'center': [ - -75.234375, - 44.296875 - ], - 'rectangle': [ - [ - -75.9375, - 43.59375 - ], - [ - -74.53125, - 43.59375 - ], - [ - -74.53125, - 45 - ], - [ - -75.9375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 49, - 'geohash': 'c2w', - 'center': [ - -114.609375, - 48.515625 - ], - 'rectangle': [ - [ - -115.3125, - 47.8125 - ], - [ - -113.90625, - 47.8125 - ], - [ - -113.90625, - 49.21875 - ], - [ - -115.3125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 47, - 'geohash': 'c2t', - 'center': [ - -116.015625, - 48.515625 - ], - 'rectangle': [ - [ - -116.71875, - 47.8125 - ], - [ - -115.3125, - 47.8125 - ], - [ - -115.3125, - 49.21875 - ], - [ - -116.71875, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': '9r5', - 'center': [ - -118.828125, - 40.078125 - ], - 'rectangle': [ - [ - -119.53125, - 39.375 - ], - [ - -118.125, - 39.375 - ], - [ - -118.125, - 40.78125 - ], - [ - -119.53125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': '9qk', - 'center': [ - -117.421875, - 35.859375 - ], - 'rectangle': [ - [ - -118.125, - 35.15625 - ], - [ - -116.71875, - 35.15625 - ], - [ - -116.71875, - 36.5625 - ], - [ - -118.125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -144.140625, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': 'bg9', - 'center': [ - -144.140625, - 65.390625 - ], - 'rectangle': [ - [ - -144.84375, - 64.6875 - ], - [ - -143.4375, - 64.6875 - ], - [ - -143.4375, - 66.09375 - ], - [ - -144.84375, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 55, - 'geohash': 'c2j', - 'center': [ - -116.015625, - 45.703125 - ], - 'rectangle': [ - [ - -116.71875, - 45 - ], - [ - -115.3125, - 45 - ], - [ - -115.3125, - 46.40625 - ], - [ - -116.71875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': 'c2h', - 'center': [ - -117.421875, - 45.703125 - ], - 'rectangle': [ - [ - -118.125, - 45 - ], - [ - -116.71875, - 45 - ], - [ - -116.71875, - 46.40625 - ], - [ - -118.125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -163.828125, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 55, - 'geohash': 'b6e', - 'center': [ - -163.828125, - 59.765625 - ], - 'rectangle': [ - [ - -164.53125, - 59.0625 - ], - [ - -163.125, - 59.0625 - ], - [ - -163.125, - 60.46875 - ], - [ - -164.53125, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 50, - 'geohash': '9xf', - 'center': [ - -108.984375, - 44.296875 - ], - 'rectangle': [ - [ - -109.6875, - 43.59375 - ], - [ - -108.28125, - 43.59375 - ], - [ - -108.28125, - 45 - ], - [ - -109.6875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 38, - 'geohash': '9wy', - 'center': [ - -103.359375, - 38.671875 - ], - 'rectangle': [ - [ - -104.0625, - 37.96875 - ], - [ - -102.65625, - 37.96875 - ], - [ - -102.65625, - 39.375 - ], - [ - -104.0625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 40, - 'geohash': '9wb', - 'center': [ - -111.796875, - 38.671875 - ], - 'rectangle': [ - [ - -112.5, - 37.96875 - ], - [ - -111.09375, - 37.96875 - ], - [ - -111.09375, - 39.375 - ], - [ - -112.5, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 47, - 'geohash': 'bet', - 'center': [ - -149.765625, - 65.390625 - ], - 'rectangle': [ - [ - -150.46875, - 64.6875 - ], - [ - -149.0625, - 64.6875 - ], - [ - -149.0625, - 66.09375 - ], - [ - -150.46875, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 56, - 'geohash': '9qg', - 'center': [ - -118.828125, - 38.671875 - ], - 'rectangle': [ - [ - -119.53125, - 37.96875 - ], - [ - -118.125, - 37.96875 - ], - [ - -118.125, - 39.375 - ], - [ - -119.53125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 52, - 'geohash': 'c8w', - 'center': [ - -103.359375, - 48.515625 - ], - 'rectangle': [ - [ - -104.0625, - 47.8125 - ], - [ - -102.65625, - 47.8125 - ], - [ - -102.65625, - 49.21875 - ], - [ - -104.0625, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': 'c2e', - 'center': [ - -118.828125, - 48.515625 - ], - 'rectangle': [ - [ - -119.53125, - 47.8125 - ], - [ - -118.125, - 47.8125 - ], - [ - -118.125, - 49.21875 - ], - [ - -119.53125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 14.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 49, - 'geohash': '8f8', - 'center': [ - -145.546875, - 14.765625 - ], - 'rectangle': [ - [ - -146.25, - 14.0625 - ], - [ - -144.84375, - 14.0625 - ], - [ - -144.84375, - 15.46875 - ], - [ - -146.25, - 15.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 38, - 'geohash': 'c8j', - 'center': [ - -104.765625, - 45.703125 - ], - 'rectangle': [ - [ - -105.46875, - 45 - ], - [ - -104.0625, - 45 - ], - [ - -104.0625, - 46.40625 - ], - [ - -105.46875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': '9qs', - 'center': [ - -117.421875, - 37.265625 - ], - 'rectangle': [ - [ - -118.125, - 36.5625 - ], - [ - -116.71875, - 36.5625 - ], - [ - -116.71875, - 37.96875 - ], - [ - -118.125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': 'c8r', - 'center': [ - -101.953125, - 47.109375 - ], - 'rectangle': [ - [ - -102.65625, - 46.40625 - ], - [ - -101.25, - 46.40625 - ], - [ - -101.25, - 47.8125 - ], - [ - -102.65625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 51, - 'geohash': 'be7', - 'center': [ - -152.578125, - 63.984375 - ], - 'rectangle': [ - [ - -153.28125, - 63.28125 - ], - [ - -151.875, - 63.28125 - ], - [ - -151.875, - 64.6875 - ], - [ - -153.28125, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -66.796875, - 18.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 37, - 'geohash': 'de2', - 'center': [ - -66.796875, - 18.984375 - ], - 'rectangle': [ - [ - -67.5, - 18.28125 - ], - [ - -66.09375, - 18.28125 - ], - [ - -66.09375, - 19.6875 - ], - [ - -67.5, - 19.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 49, - 'geohash': 'bgb', - 'center': [ - -145.546875, - 66.796875 - ], - 'rectangle': [ - [ - -146.25, - 66.09375 - ], - [ - -144.84375, - 66.09375 - ], - [ - -144.84375, - 67.5 - ], - [ - -146.25, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 40, - 'geohash': 'c8h', - 'center': [ - -106.171875, - 45.703125 - ], - 'rectangle': [ - [ - -106.875, - 45 - ], - [ - -105.46875, - 45 - ], - [ - -105.46875, - 46.40625 - ], - [ - -106.875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 44, - 'geohash': 'bsj', - 'center': [ - -149.765625, - 68.203125 - ], - 'rectangle': [ - [ - -150.46875, - 67.5 - ], - [ - -149.0625, - 67.5 - ], - [ - -149.0625, - 68.90625 - ], - [ - -150.46875, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -141.328125, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 38, - 'geohash': 'bg7', - 'center': [ - -141.328125, - 63.984375 - ], - 'rectangle': [ - [ - -142.03125, - 63.28125 - ], - [ - -140.625, - 63.28125 - ], - [ - -140.625, - 64.6875 - ], - [ - -142.03125, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 47, - 'geohash': '9rq', - 'center': [ - -114.609375, - 41.484375 - ], - 'rectangle': [ - [ - -115.3125, - 40.78125 - ], - [ - -113.90625, - 40.78125 - ], - [ - -113.90625, - 42.1875 - ], - [ - -115.3125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': '9rm', - 'center': [ - -116.015625, - 41.484375 - ], - 'rectangle': [ - [ - -116.71875, - 40.78125 - ], - [ - -115.3125, - 40.78125 - ], - [ - -115.3125, - 42.1875 - ], - [ - -116.71875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 44, - 'geohash': '9xk', - 'center': [ - -106.171875, - 41.484375 - ], - 'rectangle': [ - [ - -106.875, - 40.78125 - ], - [ - -105.46875, - 40.78125 - ], - [ - -105.46875, - 42.1875 - ], - [ - -106.875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 32, - 'geohash': '9xd', - 'center': [ - -108.984375, - 42.890625 - ], - 'rectangle': [ - [ - -109.6875, - 42.1875 - ], - [ - -108.28125, - 42.1875 - ], - [ - -108.28125, - 43.59375 - ], - [ - -109.6875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 43, - 'geohash': 'cbt', - 'center': [ - -93.515625, - 48.515625 - ], - 'rectangle': [ - [ - -94.21875, - 47.8125 - ], - [ - -92.8125, - 47.8125 - ], - [ - -92.8125, - 49.21875 - ], - [ - -94.21875, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 38, - 'geohash': '9xt', - 'center': [ - -104.765625, - 42.890625 - ], - 'rectangle': [ - [ - -105.46875, - 42.1875 - ], - [ - -104.0625, - 42.1875 - ], - [ - -104.0625, - 43.59375 - ], - [ - -105.46875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 34, - 'geohash': '9x7', - 'center': [ - -107.578125, - 41.484375 - ], - 'rectangle': [ - [ - -108.28125, - 40.78125 - ], - [ - -106.875, - 40.78125 - ], - [ - -106.875, - 42.1875 - ], - [ - -108.28125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 40, - 'geohash': '9x4', - 'center': [ - -108.984375, - 40.078125 - ], - 'rectangle': [ - [ - -109.6875, - 39.375 - ], - [ - -108.28125, - 39.375 - ], - [ - -108.28125, - 40.78125 - ], - [ - -109.6875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 40, - 'geohash': '9rh', - 'center': [ - -117.421875, - 40.078125 - ], - 'rectangle': [ - [ - -118.125, - 39.375 - ], - [ - -116.71875, - 39.375 - ], - [ - -116.71875, - 40.78125 - ], - [ - -118.125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 41, - 'geohash': 'c82', - 'center': [ - -111.796875, - 47.109375 - ], - 'rectangle': [ - [ - -112.5, - 46.40625 - ], - [ - -111.09375, - 46.40625 - ], - [ - -111.09375, - 47.8125 - ], - [ - -112.5, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 31, - 'geohash': 'c21', - 'center': [ - -121.640625, - 45.703125 - ], - 'rectangle': [ - [ - -122.34375, - 45 - ], - [ - -120.9375, - 45 - ], - [ - -120.9375, - 46.40625 - ], - [ - -122.34375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -142.734375, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 40, - 'geohash': 'bg4', - 'center': [ - -142.734375, - 62.578125 - ], - 'rectangle': [ - [ - -143.4375, - 61.875 - ], - [ - -142.03125, - 61.875 - ], - [ - -142.03125, - 63.28125 - ], - [ - -143.4375, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 32, - 'geohash': '9w9', - 'center': [ - -110.390625, - 37.265625 - ], - 'rectangle': [ - [ - -111.09375, - 36.5625 - ], - [ - -109.6875, - 36.5625 - ], - [ - -109.6875, - 37.96875 - ], - [ - -111.09375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 29, - 'geohash': '9qj', - 'center': [ - -116.015625, - 34.453125 - ], - 'rectangle': [ - [ - -116.71875, - 33.75 - ], - [ - -115.3125, - 33.75 - ], - [ - -115.3125, - 35.15625 - ], - [ - -116.71875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 43, - 'geohash': 'c8s', - 'center': [ - -106.171875, - 48.515625 - ], - 'rectangle': [ - [ - -106.875, - 47.8125 - ], - [ - -105.46875, - 47.8125 - ], - [ - -105.46875, - 49.21875 - ], - [ - -106.875, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 33, - 'geohash': 'c0x', - 'center': [ - -124.453125, - 48.515625 - ], - 'rectangle': [ - [ - -125.15625, - 47.8125 - ], - [ - -123.75, - 47.8125 - ], - [ - -123.75, - 49.21875 - ], - [ - -125.15625, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 27.421875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 31, - 'geohash': '9uc', - 'center': [ - -99.140625, - 27.421875 - ], - 'rectangle': [ - [ - -99.84375, - 26.71875 - ], - [ - -98.4375, - 26.71875 - ], - [ - -98.4375, - 28.125 - ], - [ - -99.84375, - 28.125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 46, - 'geohash': '9td', - 'center': [ - -108.984375, - 31.640625 - ], - 'rectangle': [ - [ - -109.6875, - 30.9375 - ], - [ - -108.28125, - 30.9375 - ], - [ - -108.28125, - 32.34375 - ], - [ - -109.6875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 31, - 'geohash': '9qz', - 'center': [ - -113.203125, - 38.671875 - ], - 'rectangle': [ - [ - -113.90625, - 37.96875 - ], - [ - -112.5, - 37.96875 - ], - [ - -112.5, - 39.375 - ], - [ - -113.90625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 42, - 'geohash': '9q8', - 'center': [ - -123.046875, - 37.265625 - ], - 'rectangle': [ - [ - -123.75, - 36.5625 - ], - [ - -122.34375, - 36.5625 - ], - [ - -122.34375, - 37.96875 - ], - [ - -123.75, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -153.984375, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 33, - 'geohash': 'bdd', - 'center': [ - -153.984375, - 59.765625 - ], - 'rectangle': [ - [ - -154.6875, - 59.0625 - ], - [ - -153.28125, - 59.0625 - ], - [ - -153.28125, - 60.46875 - ], - [ - -154.6875, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 30, - 'geohash': '9wn', - 'center': [ - -103.359375, - 34.453125 - ], - 'rectangle': [ - [ - -104.0625, - 33.75 - ], - [ - -102.65625, - 33.75 - ], - [ - -102.65625, - 35.15625 - ], - [ - -104.0625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 42, - 'geohash': '9w5', - 'center': [ - -107.578125, - 34.453125 - ], - 'rectangle': [ - [ - -108.28125, - 33.75 - ], - [ - -106.875, - 33.75 - ], - [ - -106.875, - 35.15625 - ], - [ - -108.28125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 30, - 'geohash': '9wj', - 'center': [ - -104.765625, - 34.453125 - ], - 'rectangle': [ - [ - -105.46875, - 33.75 - ], - [ - -104.0625, - 33.75 - ], - [ - -104.0625, - 35.15625 - ], - [ - -105.46875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 43, - 'geohash': '9v0', - 'center': [ - -100.546875, - 28.828125 - ], - 'rectangle': [ - [ - -101.25, - 28.125 - ], - [ - -99.84375, - 28.125 - ], - [ - -99.84375, - 29.53125 - ], - [ - -101.25, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': '9tt', - 'center': [ - -104.765625, - 31.640625 - ], - 'rectangle': [ - [ - -105.46875, - 30.9375 - ], - [ - -104.0625, - 30.9375 - ], - [ - -104.0625, - 32.34375 - ], - [ - -105.46875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': 'c8n', - 'center': [ - -103.359375, - 45.703125 - ], - 'rectangle': [ - [ - -104.0625, - 45 - ], - [ - -102.65625, - 45 - ], - [ - -102.65625, - 46.40625 - ], - [ - -104.0625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': 'be8', - 'center': [ - -156.796875, - 65.390625 - ], - 'rectangle': [ - [ - -157.5, - 64.6875 - ], - [ - -156.09375, - 64.6875 - ], - [ - -156.09375, - 66.09375 - ], - [ - -157.5, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -165.234375, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 40, - 'geohash': 'b74', - 'center': [ - -165.234375, - 62.578125 - ], - 'rectangle': [ - [ - -165.9375, - 61.875 - ], - [ - -164.53125, - 61.875 - ], - [ - -164.53125, - 63.28125 - ], - [ - -165.9375, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'b7m', - 'center': [ - -161.015625, - 63.984375 - ], - 'rectangle': [ - [ - -161.71875, - 63.28125 - ], - [ - -160.3125, - 63.28125 - ], - [ - -160.3125, - 64.6875 - ], - [ - -161.71875, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 34, - 'geohash': 'bem', - 'center': [ - -149.765625, - 63.984375 - ], - 'rectangle': [ - [ - -150.46875, - 63.28125 - ], - [ - -149.0625, - 63.28125 - ], - [ - -149.0625, - 64.6875 - ], - [ - -150.46875, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 30, - 'geohash': 'b79', - 'center': [ - -166.640625, - 65.390625 - ], - 'rectangle': [ - [ - -167.34375, - 64.6875 - ], - [ - -165.9375, - 64.6875 - ], - [ - -165.9375, - 66.09375 - ], - [ - -167.34375, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 33, - 'geohash': '9wq', - 'center': [ - -103.359375, - 35.859375 - ], - 'rectangle': [ - [ - -104.0625, - 35.15625 - ], - [ - -102.65625, - 35.15625 - ], - [ - -102.65625, - 36.5625 - ], - [ - -104.0625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -169.453125, - 14.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 30, - 'geohash': '84x', - 'center': [ - -169.453125, - 14.765625 - ], - 'rectangle': [ - [ - -170.15625, - 14.0625 - ], - [ - -168.75, - 14.0625 - ], - [ - -168.75, - 15.46875 - ], - [ - -170.15625, - 15.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 27, - 'geohash': 'beu', - 'center': [ - -151.171875, - 66.796875 - ], - 'rectangle': [ - [ - -151.875, - 66.09375 - ], - [ - -150.46875, - 66.09375 - ], - [ - -150.46875, - 67.5 - ], - [ - -151.875, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 37, - 'geohash': '9x6', - 'center': [ - -108.984375, - 41.484375 - ], - 'rectangle': [ - [ - -109.6875, - 40.78125 - ], - [ - -108.28125, - 40.78125 - ], - [ - -108.28125, - 42.1875 - ], - [ - -109.6875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 29, - 'geohash': 'c0r', - 'center': [ - -124.453125, - 47.109375 - ], - 'rectangle': [ - [ - -125.15625, - 46.40625 - ], - [ - -123.75, - 46.40625 - ], - [ - -123.75, - 47.8125 - ], - [ - -125.15625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -146.953125, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 30, - 'geohash': 'bez', - 'center': [ - -146.953125, - 66.796875 - ], - 'rectangle': [ - [ - -147.65625, - 66.09375 - ], - [ - -146.25, - 66.09375 - ], - [ - -146.25, - 67.5 - ], - [ - -147.65625, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 33, - 'geohash': 'bdu', - 'center': [ - -151.171875, - 61.171875 - ], - 'rectangle': [ - [ - -151.875, - 60.46875 - ], - [ - -150.46875, - 60.46875 - ], - [ - -150.46875, - 61.875 - ], - [ - -151.875, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 29, - 'geohash': 'c2r', - 'center': [ - -113.203125, - 47.109375 - ], - 'rectangle': [ - [ - -113.90625, - 46.40625 - ], - [ - -112.5, - 46.40625 - ], - [ - -112.5, - 47.8125 - ], - [ - -113.90625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 33, - 'geohash': 'b3u', - 'center': [ - -162.421875, - 55.546875 - ], - 'rectangle': [ - [ - -163.125, - 54.84375 - ], - [ - -161.71875, - 54.84375 - ], - [ - -161.71875, - 56.25 - ], - [ - -163.125, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -66.796875, - 17.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 32, - 'geohash': 'de0', - 'center': [ - -66.796875, - 17.578125 - ], - 'rectangle': [ - [ - -67.5, - 16.875 - ], - [ - -66.09375, - 16.875 - ], - [ - -66.09375, - 18.28125 - ], - [ - -67.5, - 18.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 32, - 'geohash': '9te', - 'center': [ - -107.578125, - 31.640625 - ], - 'rectangle': [ - [ - -108.28125, - 30.9375 - ], - [ - -106.875, - 30.9375 - ], - [ - -106.875, - 32.34375 - ], - [ - -108.28125, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -139.921875, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': 'bfs', - 'center': [ - -139.921875, - 59.765625 - ], - 'rectangle': [ - [ - -140.625, - 59.0625 - ], - [ - -139.21875, - 59.0625 - ], - [ - -139.21875, - 60.46875 - ], - [ - -140.625, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 32, - 'geohash': 'b3y', - 'center': [ - -159.609375, - 55.546875 - ], - 'rectangle': [ - [ - -160.3125, - 54.84375 - ], - [ - -158.90625, - 54.84375 - ], - [ - -158.90625, - 56.25 - ], - [ - -160.3125, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 38, - 'geohash': '9w7', - 'center': [ - -107.578125, - 35.859375 - ], - 'rectangle': [ - [ - -108.28125, - 35.15625 - ], - [ - -106.875, - 35.15625 - ], - [ - -106.875, - 36.5625 - ], - [ - -108.28125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 71.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': 'bs8', - 'center': [ - -156.796875, - 71.015625 - ], - 'rectangle': [ - [ - -157.5, - 70.3125 - ], - [ - -156.09375, - 70.3125 - ], - [ - -156.09375, - 71.71875 - ], - [ - -157.5, - 71.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 30, - 'geohash': 'b7x', - 'center': [ - -158.203125, - 65.390625 - ], - 'rectangle': [ - [ - -158.90625, - 64.6875 - ], - [ - -157.5, - 64.6875 - ], - [ - -157.5, - 66.09375 - ], - [ - -158.90625, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 31, - 'geohash': '9rk', - 'center': [ - -117.421875, - 41.484375 - ], - 'rectangle': [ - [ - -118.125, - 40.78125 - ], - [ - -116.71875, - 40.78125 - ], - [ - -116.71875, - 42.1875 - ], - [ - -118.125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 32, - 'geohash': 'cb3', - 'center': [ - -99.140625, - 47.109375 - ], - 'rectangle': [ - [ - -99.84375, - 46.40625 - ], - [ - -98.4375, - 46.40625 - ], - [ - -98.4375, - 47.8125 - ], - [ - -99.84375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -142.734375, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 30, - 'geohash': 'bff', - 'center': [ - -142.734375, - 61.171875 - ], - 'rectangle': [ - [ - -143.4375, - 60.46875 - ], - [ - -142.03125, - 60.46875 - ], - [ - -142.03125, - 61.875 - ], - [ - -143.4375, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 30, - 'geohash': 'b7v', - 'center': [ - -161.015625, - 66.796875 - ], - 'rectangle': [ - [ - -161.71875, - 66.09375 - ], - [ - -160.3125, - 66.09375 - ], - [ - -160.3125, - 67.5 - ], - [ - -161.71875, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'b6y', - 'center': [ - -159.609375, - 61.171875 - ], - 'rectangle': [ - [ - -160.3125, - 60.46875 - ], - [ - -158.90625, - 60.46875 - ], - [ - -158.90625, - 61.875 - ], - [ - -160.3125, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 21.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 31, - 'geohash': '8eb', - 'center': [ - -156.796875, - 21.796875 - ], - 'rectangle': [ - [ - -157.5, - 21.09375 - ], - [ - -156.09375, - 21.09375 - ], - [ - -156.09375, - 22.5 - ], - [ - -157.5, - 22.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': 'c8k', - 'center': [ - -106.171875, - 47.109375 - ], - 'rectangle': [ - [ - -106.875, - 46.40625 - ], - [ - -105.46875, - 46.40625 - ], - [ - -105.46875, - 47.8125 - ], - [ - -106.875, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 40, - 'geohash': '9wf', - 'center': [ - -108.984375, - 38.671875 - ], - 'rectangle': [ - [ - -109.6875, - 37.96875 - ], - [ - -108.28125, - 37.96875 - ], - [ - -108.28125, - 39.375 - ], - [ - -109.6875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 27, - 'geohash': 'cbw', - 'center': [ - -92.109375, - 48.515625 - ], - 'rectangle': [ - [ - -92.8125, - 47.8125 - ], - [ - -91.40625, - 47.8125 - ], - [ - -91.40625, - 49.21875 - ], - [ - -92.8125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -163.828125, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': 'b7e', - 'center': [ - -163.828125, - 65.390625 - ], - 'rectangle': [ - [ - -164.53125, - 64.6875 - ], - [ - -163.125, - 64.6875 - ], - [ - -163.125, - 66.09375 - ], - [ - -164.53125, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': 'b3v', - 'center': [ - -161.015625, - 55.546875 - ], - 'rectangle': [ - [ - -161.71875, - 54.84375 - ], - [ - -160.3125, - 54.84375 - ], - [ - -160.3125, - 56.25 - ], - [ - -161.71875, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 41, - 'geohash': '9tv', - 'center': [ - -104.765625, - 33.046875 - ], - 'rectangle': [ - [ - -105.46875, - 32.34375 - ], - [ - -104.0625, - 32.34375 - ], - [ - -104.0625, - 33.75 - ], - [ - -105.46875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 32, - 'geohash': '9qu', - 'center': [ - -117.421875, - 38.671875 - ], - 'rectangle': [ - [ - -118.125, - 37.96875 - ], - [ - -116.71875, - 37.96875 - ], - [ - -116.71875, - 39.375 - ], - [ - -118.125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 28, - 'geohash': '9xu', - 'center': [ - -106.171875, - 44.296875 - ], - 'rectangle': [ - [ - -106.875, - 43.59375 - ], - [ - -105.46875, - 43.59375 - ], - [ - -105.46875, - 45 - ], - [ - -106.875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 33, - 'geohash': 'cbs', - 'center': [ - -94.921875, - 48.515625 - ], - 'rectangle': [ - [ - -95.625, - 47.8125 - ], - [ - -94.21875, - 47.8125 - ], - [ - -94.21875, - 49.21875 - ], - [ - -95.625, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -135.703125, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 29, - 'geohash': 'bfp', - 'center': [ - -135.703125, - 56.953125 - ], - 'rectangle': [ - [ - -136.40625, - 56.25 - ], - [ - -135, - 56.25 - ], - [ - -135, - 57.65625 - ], - [ - -136.40625, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 30, - 'geohash': '9qp', - 'center': [ - -113.203125, - 34.453125 - ], - 'rectangle': [ - [ - -113.90625, - 33.75 - ], - [ - -112.5, - 33.75 - ], - [ - -112.5, - 35.15625 - ], - [ - -113.90625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -66.796875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 25, - 'geohash': 'dxb', - 'center': [ - -66.796875, - 44.296875 - ], - 'rectangle': [ - [ - -67.5, - 43.59375 - ], - [ - -66.09375, - 43.59375 - ], - [ - -66.09375, - 45 - ], - [ - -67.5, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -172.265625, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 25, - 'geohash': 'b5m', - 'center': [ - -172.265625, - 63.984375 - ], - 'rectangle': [ - [ - -172.96875, - 63.28125 - ], - [ - -171.5625, - 63.28125 - ], - [ - -171.5625, - 64.6875 - ], - [ - -172.96875, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 69.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 22, - 'geohash': 'bsk', - 'center': [ - -151.171875, - 69.609375 - ], - 'rectangle': [ - [ - -151.875, - 68.90625 - ], - [ - -150.46875, - 68.90625 - ], - [ - -150.46875, - 70.3125 - ], - [ - -151.875, - 70.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 21, - 'geohash': '9xv', - 'center': [ - -104.765625, - 44.296875 - ], - 'rectangle': [ - [ - -105.46875, - 43.59375 - ], - [ - -104.0625, - 43.59375 - ], - [ - -104.0625, - 45 - ], - [ - -105.46875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 24, - 'geohash': 'bu0', - 'center': [ - -145.546875, - 68.203125 - ], - 'rectangle': [ - [ - -146.25, - 67.5 - ], - [ - -144.84375, - 67.5 - ], - [ - -144.84375, - 68.90625 - ], - [ - -146.25, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 20, - 'geohash': '9q3', - 'center': [ - -121.640625, - 35.859375 - ], - 'rectangle': [ - [ - -122.34375, - 35.15625 - ], - [ - -120.9375, - 35.15625 - ], - [ - -120.9375, - 36.5625 - ], - [ - -122.34375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -73.828125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 24, - 'geohash': 'dqg', - 'center': [ - -73.828125, - 38.671875 - ], - 'rectangle': [ - [ - -74.53125, - 37.96875 - ], - [ - -73.125, - 37.96875 - ], - [ - -73.125, - 39.375 - ], - [ - -74.53125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': 'c8e', - 'center': [ - -107.578125, - 48.515625 - ], - 'rectangle': [ - [ - -108.28125, - 47.8125 - ], - [ - -106.875, - 47.8125 - ], - [ - -106.875, - 49.21875 - ], - [ - -108.28125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -72.421875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': 'drh', - 'center': [ - -72.421875, - 40.078125 - ], - 'rectangle': [ - [ - -73.125, - 39.375 - ], - [ - -71.71875, - 39.375 - ], - [ - -71.71875, - 40.78125 - ], - [ - -73.125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 24, - 'geohash': 'b6z', - 'center': [ - -158.203125, - 61.171875 - ], - 'rectangle': [ - [ - -158.90625, - 60.46875 - ], - [ - -157.5, - 60.46875 - ], - [ - -157.5, - 61.875 - ], - [ - -158.90625, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': '9rp', - 'center': [ - -113.203125, - 40.078125 - ], - 'rectangle': [ - [ - -113.90625, - 39.375 - ], - [ - -112.5, - 39.375 - ], - [ - -112.5, - 40.78125 - ], - [ - -113.90625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -170.859375, - 14.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 24, - 'geohash': '84w', - 'center': [ - -170.859375, - 14.765625 - ], - 'rectangle': [ - [ - -171.5625, - 14.0625 - ], - [ - -170.15625, - 14.0625 - ], - [ - -170.15625, - 15.46875 - ], - [ - -171.5625, - 15.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': 'bee', - 'center': [ - -152.578125, - 65.390625 - ], - 'rectangle': [ - [ - -153.28125, - 64.6875 - ], - [ - -151.875, - 64.6875 - ], - [ - -151.875, - 66.09375 - ], - [ - -153.28125, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -146.953125, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 24, - 'geohash': 'bep', - 'center': [ - -146.953125, - 62.578125 - ], - 'rectangle': [ - [ - -147.65625, - 61.875 - ], - [ - -146.25, - 61.875 - ], - [ - -146.25, - 63.28125 - ], - [ - -147.65625, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': '9vp', - 'center': [ - -90.703125, - 28.828125 - ], - 'rectangle': [ - [ - -91.40625, - 28.125 - ], - [ - -90, - 28.125 - ], - [ - -90, - 29.53125 - ], - [ - -91.40625, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -170.859375, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': 'b4n', - 'center': [ - -170.859375, - 56.953125 - ], - 'rectangle': [ - [ - -171.5625, - 56.25 - ], - [ - -170.15625, - 56.25 - ], - [ - -170.15625, - 57.65625 - ], - [ - -171.5625, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -142.734375, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 21, - 'geohash': 'bg6', - 'center': [ - -142.734375, - 63.984375 - ], - 'rectangle': [ - [ - -143.4375, - 63.28125 - ], - [ - -142.03125, - 63.28125 - ], - [ - -142.03125, - 64.6875 - ], - [ - -143.4375, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 25, - 'geohash': 'b6k', - 'center': [ - -162.421875, - 58.359375 - ], - 'rectangle': [ - [ - -163.125, - 57.65625 - ], - [ - -161.71875, - 57.65625 - ], - [ - -161.71875, - 59.0625 - ], - [ - -163.125, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': 'c87', - 'center': [ - -107.578125, - 47.109375 - ], - 'rectangle': [ - [ - -108.28125, - 46.40625 - ], - [ - -106.875, - 46.40625 - ], - [ - -106.875, - 47.8125 - ], - [ - -108.28125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'b6x', - 'center': [ - -158.203125, - 59.765625 - ], - 'rectangle': [ - [ - -158.90625, - 59.0625 - ], - [ - -157.5, - 59.0625 - ], - [ - -157.5, - 60.46875 - ], - [ - -158.90625, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 20, - 'geohash': 'b6c', - 'center': [ - -166.640625, - 61.171875 - ], - 'rectangle': [ - [ - -167.34375, - 60.46875 - ], - [ - -165.9375, - 60.46875 - ], - [ - -165.9375, - 61.875 - ], - [ - -167.34375, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': '9qm', - 'center': [ - -116.015625, - 35.859375 - ], - 'rectangle': [ - [ - -116.71875, - 35.15625 - ], - [ - -115.3125, - 35.15625 - ], - [ - -115.3125, - 36.5625 - ], - [ - -116.71875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': 'bdy', - 'center': [ - -148.359375, - 61.171875 - ], - 'rectangle': [ - [ - -149.0625, - 60.46875 - ], - [ - -147.65625, - 60.46875 - ], - [ - -147.65625, - 61.875 - ], - [ - -149.0625, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 54.140625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': 'b3s', - 'center': [ - -162.421875, - 54.140625 - ], - 'rectangle': [ - [ - -163.125, - 53.4375 - ], - [ - -161.71875, - 53.4375 - ], - [ - -161.71875, - 54.84375 - ], - [ - -163.125, - 54.84375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': '9rz', - 'center': [ - -113.203125, - 44.296875 - ], - 'rectangle': [ - [ - -113.90625, - 43.59375 - ], - [ - -112.5, - 43.59375 - ], - [ - -112.5, - 45 - ], - [ - -113.90625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 21, - 'geohash': '9rj', - 'center': [ - -116.015625, - 40.078125 - ], - 'rectangle': [ - [ - -116.71875, - 39.375 - ], - [ - -115.3125, - 39.375 - ], - [ - -115.3125, - 40.78125 - ], - [ - -116.71875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': 'bg2', - 'center': [ - -145.546875, - 63.984375 - ], - 'rectangle': [ - [ - -146.25, - 63.28125 - ], - [ - -144.84375, - 63.28125 - ], - [ - -144.84375, - 64.6875 - ], - [ - -146.25, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'bdt', - 'center': [ - -149.765625, - 59.765625 - ], - 'rectangle': [ - [ - -150.46875, - 59.0625 - ], - [ - -149.0625, - 59.0625 - ], - [ - -149.0625, - 60.46875 - ], - [ - -150.46875, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': 'bd0', - 'center': [ - -156.796875, - 56.953125 - ], - 'rectangle': [ - [ - -157.5, - 56.25 - ], - [ - -156.09375, - 56.25 - ], - [ - -156.09375, - 57.65625 - ], - [ - -157.5, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -165.234375, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': 'b76', - 'center': [ - -165.234375, - 63.984375 - ], - 'rectangle': [ - [ - -165.9375, - 63.28125 - ], - [ - -164.53125, - 63.28125 - ], - [ - -164.53125, - 64.6875 - ], - [ - -165.9375, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 22, - 'geohash': '9v2', - 'center': [ - -100.546875, - 30.234375 - ], - 'rectangle': [ - [ - -101.25, - 29.53125 - ], - [ - -99.84375, - 29.53125 - ], - [ - -99.84375, - 30.9375 - ], - [ - -101.25, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'c2n', - 'center': [ - -114.609375, - 45.703125 - ], - 'rectangle': [ - [ - -115.3125, - 45 - ], - [ - -113.90625, - 45 - ], - [ - -113.90625, - 46.40625 - ], - [ - -115.3125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': 'bej', - 'center': [ - -149.765625, - 62.578125 - ], - 'rectangle': [ - [ - -150.46875, - 61.875 - ], - [ - -149.0625, - 61.875 - ], - [ - -149.0625, - 63.28125 - ], - [ - -150.46875, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 20, - 'geohash': 'b6q', - 'center': [ - -159.609375, - 58.359375 - ], - 'rectangle': [ - [ - -160.3125, - 57.65625 - ], - [ - -158.90625, - 57.65625 - ], - [ - -158.90625, - 59.0625 - ], - [ - -160.3125, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 21, - 'geohash': 'b6m', - 'center': [ - -161.015625, - 58.359375 - ], - 'rectangle': [ - [ - -161.71875, - 57.65625 - ], - [ - -160.3125, - 57.65625 - ], - [ - -160.3125, - 59.0625 - ], - [ - -161.71875, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -144.140625, - 13.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': '8f3', - 'center': [ - -144.140625, - 13.359375 - ], - 'rectangle': [ - [ - -144.84375, - 12.65625 - ], - [ - -143.4375, - 12.65625 - ], - [ - -143.4375, - 14.0625 - ], - [ - -144.84375, - 14.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -141.328125, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': 'bg5', - 'center': [ - -141.328125, - 62.578125 - ], - 'rectangle': [ - [ - -142.03125, - 61.875 - ], - [ - -140.625, - 61.875 - ], - [ - -140.625, - 63.28125 - ], - [ - -142.03125, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -144.140625, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': 'bfc', - 'center': [ - -144.140625, - 61.171875 - ], - 'rectangle': [ - [ - -144.84375, - 60.46875 - ], - [ - -143.4375, - 60.46875 - ], - [ - -143.4375, - 61.875 - ], - [ - -144.84375, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 69.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': 'bsq', - 'center': [ - -148.359375, - 69.609375 - ], - 'rectangle': [ - [ - -149.0625, - 68.90625 - ], - [ - -147.65625, - 68.90625 - ], - [ - -147.65625, - 70.3125 - ], - [ - -149.0625, - 70.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -168.046875, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': 'b78', - 'center': [ - -168.046875, - 65.390625 - ], - 'rectangle': [ - [ - -168.75, - 64.6875 - ], - [ - -167.34375, - 64.6875 - ], - [ - -167.34375, - 66.09375 - ], - [ - -168.75, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -165.234375, - 54.140625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 23, - 'geohash': 'b3d', - 'center': [ - -165.234375, - 54.140625 - ], - 'rectangle': [ - [ - -165.9375, - 53.4375 - ], - [ - -164.53125, - 53.4375 - ], - [ - -164.53125, - 54.84375 - ], - [ - -165.9375, - 54.84375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': '9xs', - 'center': [ - -106.171875, - 42.890625 - ], - 'rectangle': [ - [ - -106.875, - 42.1875 - ], - [ - -105.46875, - 42.1875 - ], - [ - -105.46875, - 43.59375 - ], - [ - -106.875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': '9rd', - 'center': [ - -120.234375, - 42.890625 - ], - 'rectangle': [ - [ - -120.9375, - 42.1875 - ], - [ - -119.53125, - 42.1875 - ], - [ - -119.53125, - 43.59375 - ], - [ - -120.9375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': '9qr', - 'center': [ - -113.203125, - 35.859375 - ], - 'rectangle': [ - [ - -113.90625, - 35.15625 - ], - [ - -112.5, - 35.15625 - ], - [ - -112.5, - 36.5625 - ], - [ - -113.90625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': 'bk1', - 'center': [ - -166.640625, - 68.203125 - ], - 'rectangle': [ - [ - -167.34375, - 67.5 - ], - [ - -165.9375, - 67.5 - ], - [ - -165.9375, - 68.90625 - ], - [ - -167.34375, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -144.140625, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 21, - 'geohash': 'bgc', - 'center': [ - -144.140625, - 66.796875 - ], - 'rectangle': [ - [ - -144.84375, - 66.09375 - ], - [ - -143.4375, - 66.09375 - ], - [ - -143.4375, - 67.5 - ], - [ - -144.84375, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': 'bek', - 'center': [ - -151.171875, - 63.984375 - ], - 'rectangle': [ - [ - -151.875, - 63.28125 - ], - [ - -150.46875, - 63.28125 - ], - [ - -150.46875, - 64.6875 - ], - [ - -151.875, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'bde', - 'center': [ - -152.578125, - 59.765625 - ], - 'rectangle': [ - [ - -153.28125, - 59.0625 - ], - [ - -151.875, - 59.0625 - ], - [ - -151.875, - 60.46875 - ], - [ - -153.28125, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'b7s', - 'center': [ - -162.421875, - 65.390625 - ], - 'rectangle': [ - [ - -163.125, - 64.6875 - ], - [ - -161.71875, - 64.6875 - ], - [ - -161.71875, - 66.09375 - ], - [ - -163.125, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 21, - 'geohash': 'b69', - 'center': [ - -166.640625, - 59.765625 - ], - 'rectangle': [ - [ - -167.34375, - 59.0625 - ], - [ - -165.9375, - 59.0625 - ], - [ - -165.9375, - 60.46875 - ], - [ - -167.34375, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 54.140625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 21, - 'geohash': 'b39', - 'center': [ - -166.640625, - 54.140625 - ], - 'rectangle': [ - [ - -167.34375, - 53.4375 - ], - [ - -165.9375, - 53.4375 - ], - [ - -165.9375, - 54.84375 - ], - [ - -167.34375, - 54.84375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 17.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': '8g0', - 'center': [ - -145.546875, - 17.578125 - ], - 'rectangle': [ - [ - -146.25, - 16.875 - ], - [ - -144.84375, - 16.875 - ], - [ - -144.84375, - 18.28125 - ], - [ - -146.25, - 18.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -144.140625, - 69.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'bu3', - 'center': [ - -144.140625, - 69.609375 - ], - 'rectangle': [ - [ - -144.84375, - 68.90625 - ], - [ - -143.4375, - 68.90625 - ], - [ - -143.4375, - 70.3125 - ], - [ - -144.84375, - 70.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 71.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': 'bkw', - 'center': [ - -159.609375, - 71.015625 - ], - 'rectangle': [ - [ - -160.3125, - 70.3125 - ], - [ - -158.90625, - 70.3125 - ], - [ - -158.90625, - 71.71875 - ], - [ - -160.3125, - 71.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 69.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'bkk', - 'center': [ - -162.421875, - 69.609375 - ], - 'rectangle': [ - [ - -163.125, - 68.90625 - ], - [ - -161.71875, - 68.90625 - ], - [ - -161.71875, - 70.3125 - ], - [ - -163.125, - 70.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -165.234375, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 22, - 'geohash': 'bk4', - 'center': [ - -165.234375, - 68.203125 - ], - 'rectangle': [ - [ - -165.9375, - 67.5 - ], - [ - -164.53125, - 67.5 - ], - [ - -164.53125, - 68.90625 - ], - [ - -165.9375, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 25, - 'geohash': 'be0', - 'center': [ - -156.796875, - 62.578125 - ], - 'rectangle': [ - [ - -157.5, - 61.875 - ], - [ - -156.09375, - 61.875 - ], - [ - -156.09375, - 63.28125 - ], - [ - -157.5, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': 'bd5', - 'center': [ - -152.578125, - 56.953125 - ], - 'rectangle': [ - [ - -153.28125, - 56.25 - ], - [ - -151.875, - 56.25 - ], - [ - -151.875, - 57.65625 - ], - [ - -153.28125, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': 'b7p', - 'center': [ - -158.203125, - 62.578125 - ], - 'rectangle': [ - [ - -158.90625, - 61.875 - ], - [ - -157.5, - 61.875 - ], - [ - -157.5, - 63.28125 - ], - [ - -158.90625, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -170.859375, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'b5q', - 'center': [ - -170.859375, - 63.984375 - ], - 'rectangle': [ - [ - -171.5625, - 63.28125 - ], - [ - -170.15625, - 63.28125 - ], - [ - -170.15625, - 64.6875 - ], - [ - -171.5625, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': '9xc', - 'center': [ - -110.390625, - 44.296875 - ], - 'rectangle': [ - [ - -111.09375, - 43.59375 - ], - [ - -109.6875, - 43.59375 - ], - [ - -109.6875, - 45 - ], - [ - -111.09375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 20, - 'geohash': '9t8', - 'center': [ - -111.796875, - 31.640625 - ], - 'rectangle': [ - [ - -112.5, - 30.9375 - ], - [ - -111.09375, - 30.9375 - ], - [ - -111.09375, - 32.34375 - ], - [ - -112.5, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 24, - 'geohash': '9ry', - 'center': [ - -114.609375, - 44.296875 - ], - 'rectangle': [ - [ - -115.3125, - 43.59375 - ], - [ - -113.90625, - 43.59375 - ], - [ - -113.90625, - 45 - ], - [ - -115.3125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': '9rn', - 'center': [ - -114.609375, - 40.078125 - ], - 'rectangle': [ - [ - -115.3125, - 39.375 - ], - [ - -113.90625, - 39.375 - ], - [ - -113.90625, - 40.78125 - ], - [ - -115.3125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': 'f03', - 'center': [ - -87.890625, - 47.109375 - ], - 'rectangle': [ - [ - -88.59375, - 46.40625 - ], - [ - -87.1875, - 46.40625 - ], - [ - -87.1875, - 47.8125 - ], - [ - -88.59375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': 'f02', - 'center': [ - -89.296875, - 47.109375 - ], - 'rectangle': [ - [ - -90, - 46.40625 - ], - [ - -88.59375, - 46.40625 - ], - [ - -88.59375, - 47.8125 - ], - [ - -90, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'b6w', - 'center': [ - -159.609375, - 59.765625 - ], - 'rectangle': [ - [ - -160.3125, - 59.0625 - ], - [ - -158.90625, - 59.0625 - ], - [ - -158.90625, - 60.46875 - ], - [ - -160.3125, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 22, - 'geohash': '9qy', - 'center': [ - -114.609375, - 38.671875 - ], - 'rectangle': [ - [ - -115.3125, - 37.96875 - ], - [ - -113.90625, - 37.96875 - ], - [ - -113.90625, - 39.375 - ], - [ - -115.3125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 21, - 'geohash': 'bsn', - 'center': [ - -148.359375, - 68.203125 - ], - 'rectangle': [ - [ - -149.0625, - 67.5 - ], - [ - -147.65625, - 67.5 - ], - [ - -147.65625, - 68.90625 - ], - [ - -149.0625, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': 'bg0', - 'center': [ - -145.546875, - 62.578125 - ], - 'rectangle': [ - [ - -146.25, - 61.875 - ], - [ - -144.84375, - 61.875 - ], - [ - -144.84375, - 63.28125 - ], - [ - -146.25, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': 'bdw', - 'center': [ - -148.359375, - 59.765625 - ], - 'rectangle': [ - [ - -149.0625, - 59.0625 - ], - [ - -147.65625, - 59.0625 - ], - [ - -147.65625, - 60.46875 - ], - [ - -149.0625, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -155.390625, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'bdc', - 'center': [ - -155.390625, - 61.171875 - ], - 'rectangle': [ - [ - -156.09375, - 60.46875 - ], - [ - -154.6875, - 60.46875 - ], - [ - -154.6875, - 61.875 - ], - [ - -156.09375, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 10, - 'geohash': 'b7y', - 'center': [ - -159.609375, - 66.796875 - ], - 'rectangle': [ - [ - -160.3125, - 66.09375 - ], - [ - -158.90625, - 66.09375 - ], - [ - -158.90625, - 67.5 - ], - [ - -160.3125, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -169.453125, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 23, - 'geohash': 'b5x', - 'center': [ - -169.453125, - 65.390625 - ], - 'rectangle': [ - [ - -170.15625, - 64.6875 - ], - [ - -168.75, - 64.6875 - ], - [ - -168.75, - 66.09375 - ], - [ - -170.15625, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -176.484375, - 51.328125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': 'b14', - 'center': [ - -176.484375, - 51.328125 - ], - 'rectangle': [ - [ - -177.1875, - 50.625 - ], - [ - -175.78125, - 50.625 - ], - [ - -175.78125, - 52.03125 - ], - [ - -177.1875, - 52.03125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': '9re', - 'center': [ - -118.828125, - 42.890625 - ], - 'rectangle': [ - [ - -119.53125, - 42.1875 - ], - [ - -118.125, - 42.1875 - ], - [ - -118.125, - 43.59375 - ], - [ - -119.53125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': '9r9', - 'center': [ - -121.640625, - 42.890625 - ], - 'rectangle': [ - [ - -122.34375, - 42.1875 - ], - [ - -120.9375, - 42.1875 - ], - [ - -120.9375, - 43.59375 - ], - [ - -122.34375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': 'djh', - 'center': [ - -83.671875, - 28.828125 - ], - 'rectangle': [ - [ - -84.375, - 28.125 - ], - [ - -82.96875, - 28.125 - ], - [ - -82.96875, - 29.53125 - ], - [ - -84.375, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': 'beq', - 'center': [ - -148.359375, - 63.984375 - ], - 'rectangle': [ - [ - -149.0625, - 63.28125 - ], - [ - -147.65625, - 63.28125 - ], - [ - -147.65625, - 64.6875 - ], - [ - -149.0625, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -169.453125, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 20, - 'geohash': 'b4p', - 'center': [ - -169.453125, - 56.953125 - ], - 'rectangle': [ - [ - -170.15625, - 56.25 - ], - [ - -168.75, - 56.25 - ], - [ - -168.75, - 57.65625 - ], - [ - -170.15625, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': '9mg', - 'center': [ - -118.828125, - 33.046875 - ], - 'rectangle': [ - [ - -119.53125, - 32.34375 - ], - [ - -118.125, - 32.34375 - ], - [ - -118.125, - 33.75 - ], - [ - -119.53125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -153.984375, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': 'be4', - 'center': [ - -153.984375, - 62.578125 - ], - 'rectangle': [ - [ - -154.6875, - 61.875 - ], - [ - -153.28125, - 61.875 - ], - [ - -153.28125, - 63.28125 - ], - [ - -154.6875, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': 'b7u', - 'center': [ - -162.421875, - 66.796875 - ], - 'rectangle': [ - [ - -163.125, - 66.09375 - ], - [ - -161.71875, - 66.09375 - ], - [ - -161.71875, - 67.5 - ], - [ - -163.125, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': '9w3', - 'center': [ - -110.390625, - 35.859375 - ], - 'rectangle': [ - [ - -111.09375, - 35.15625 - ], - [ - -109.6875, - 35.15625 - ], - [ - -109.6875, - 36.5625 - ], - [ - -111.09375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': 'drc', - 'center': [ - -76.640625, - 44.296875 - ], - 'rectangle': [ - [ - -77.34375, - 43.59375 - ], - [ - -75.9375, - 43.59375 - ], - [ - -75.9375, - 45 - ], - [ - -77.34375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': 'cbx', - 'center': [ - -90.703125, - 48.515625 - ], - 'rectangle': [ - [ - -91.40625, - 47.8125 - ], - [ - -90, - 47.8125 - ], - [ - -90, - 49.21875 - ], - [ - -91.40625, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -134.296875, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': 'c1b', - 'center': [ - -134.296875, - 55.546875 - ], - 'rectangle': [ - [ - -135, - 54.84375 - ], - [ - -133.59375, - 54.84375 - ], - [ - -133.59375, - 56.25 - ], - [ - -135, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': 'bkh', - 'center': [ - -162.421875, - 68.203125 - ], - 'rectangle': [ - [ - -163.125, - 67.5 - ], - [ - -161.71875, - 67.5 - ], - [ - -161.71875, - 68.90625 - ], - [ - -163.125, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': 'b7c', - 'center': [ - -166.640625, - 66.796875 - ], - 'rectangle': [ - [ - -167.34375, - 66.09375 - ], - [ - -165.9375, - 66.09375 - ], - [ - -165.9375, - 67.5 - ], - [ - -167.34375, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': '9v8', - 'center': [ - -100.546875, - 31.640625 - ], - 'rectangle': [ - [ - -101.25, - 30.9375 - ], - [ - -99.84375, - 30.9375 - ], - [ - -99.84375, - 32.34375 - ], - [ - -101.25, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'beh', - 'center': [ - -151.171875, - 62.578125 - ], - 'rectangle': [ - [ - -151.875, - 61.875 - ], - [ - -150.46875, - 61.875 - ], - [ - -150.46875, - 63.28125 - ], - [ - -151.875, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': 'b6t', - 'center': [ - -161.015625, - 59.765625 - ], - 'rectangle': [ - [ - -161.71875, - 59.0625 - ], - [ - -160.3125, - 59.0625 - ], - [ - -160.3125, - 60.46875 - ], - [ - -161.71875, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': '9rg', - 'center': [ - -118.828125, - 44.296875 - ], - 'rectangle': [ - [ - -119.53125, - 43.59375 - ], - [ - -118.125, - 43.59375 - ], - [ - -118.125, - 45 - ], - [ - -119.53125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': '9rf', - 'center': [ - -120.234375, - 44.296875 - ], - 'rectangle': [ - [ - -120.9375, - 43.59375 - ], - [ - -119.53125, - 43.59375 - ], - [ - -119.53125, - 45 - ], - [ - -120.9375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': 'bsh', - 'center': [ - -151.171875, - 68.203125 - ], - 'rectangle': [ - [ - -151.875, - 67.5 - ], - [ - -150.46875, - 67.5 - ], - [ - -150.46875, - 68.90625 - ], - [ - -151.875, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'bes', - 'center': [ - -151.171875, - 65.390625 - ], - 'rectangle': [ - [ - -151.875, - 64.6875 - ], - [ - -150.46875, - 64.6875 - ], - [ - -150.46875, - 66.09375 - ], - [ - -151.875, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': 'b7r', - 'center': [ - -158.203125, - 63.984375 - ], - 'rectangle': [ - [ - -158.90625, - 63.28125 - ], - [ - -157.5, - 63.28125 - ], - [ - -157.5, - 64.6875 - ], - [ - -158.90625, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -146.953125, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': 'bdz', - 'center': [ - -146.953125, - 61.171875 - ], - 'rectangle': [ - [ - -147.65625, - 60.46875 - ], - [ - -146.25, - 60.46875 - ], - [ - -146.25, - 61.875 - ], - [ - -147.65625, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': 'b7z', - 'center': [ - -158.203125, - 66.796875 - ], - 'rectangle': [ - [ - -158.90625, - 66.09375 - ], - [ - -157.5, - 66.09375 - ], - [ - -157.5, - 67.5 - ], - [ - -158.90625, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -153.984375, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': 'bed', - 'center': [ - -153.984375, - 65.390625 - ], - 'rectangle': [ - [ - -154.6875, - 64.6875 - ], - [ - -153.28125, - 64.6875 - ], - [ - -153.28125, - 66.09375 - ], - [ - -154.6875, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -173.671875, - 52.734375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': 'b1k', - 'center': [ - -173.671875, - 52.734375 - ], - 'rectangle': [ - [ - -174.375, - 52.03125 - ], - [ - -172.96875, - 52.03125 - ], - [ - -172.96875, - 53.4375 - ], - [ - -174.375, - 53.4375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 24.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': 'dhm', - 'center': [ - -82.265625, - 24.609375 - ], - 'rectangle': [ - [ - -82.96875, - 23.90625 - ], - [ - -81.5625, - 23.90625 - ], - [ - -81.5625, - 25.3125 - ], - [ - -82.96875, - 25.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': 'bew', - 'center': [ - -148.359375, - 65.390625 - ], - 'rectangle': [ - [ - -149.0625, - 64.6875 - ], - [ - -147.65625, - 64.6875 - ], - [ - -147.65625, - 66.09375 - ], - [ - -149.0625, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': '9nz', - 'center': [ - -124.453125, - 38.671875 - ], - 'rectangle': [ - [ - -125.15625, - 37.96875 - ], - [ - -123.75, - 37.96875 - ], - [ - -123.75, - 39.375 - ], - [ - -125.15625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -141.328125, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': 'bge', - 'center': [ - -141.328125, - 65.390625 - ], - 'rectangle': [ - [ - -142.03125, - 64.6875 - ], - [ - -140.625, - 64.6875 - ], - [ - -140.625, - 66.09375 - ], - [ - -142.03125, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'beg', - 'center': [ - -152.578125, - 66.796875 - ], - 'rectangle': [ - [ - -153.28125, - 66.09375 - ], - [ - -151.875, - 66.09375 - ], - [ - -151.875, - 67.5 - ], - [ - -153.28125, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -155.390625, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 9, - 'geohash': 'be9', - 'center': [ - -155.390625, - 65.390625 - ], - 'rectangle': [ - [ - -156.09375, - 64.6875 - ], - [ - -154.6875, - 64.6875 - ], - [ - -154.6875, - 66.09375 - ], - [ - -156.09375, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': 'b7h', - 'center': [ - -162.421875, - 62.578125 - ], - 'rectangle': [ - [ - -163.125, - 61.875 - ], - [ - -161.71875, - 61.875 - ], - [ - -161.71875, - 63.28125 - ], - [ - -163.125, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 24.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': 'dhq', - 'center': [ - -80.859375, - 24.609375 - ], - 'rectangle': [ - [ - -81.5625, - 23.90625 - ], - [ - -80.15625, - 23.90625 - ], - [ - -80.15625, - 25.3125 - ], - [ - -81.5625, - 25.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -130.078125, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': 'c1g', - 'center': [ - -130.078125, - 55.546875 - ], - 'rectangle': [ - [ - -130.78125, - 54.84375 - ], - [ - -129.375, - 54.84375 - ], - [ - -129.375, - 56.25 - ], - [ - -130.78125, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': '9tc', - 'center': [ - -110.390625, - 33.046875 - ], - 'rectangle': [ - [ - -111.09375, - 32.34375 - ], - [ - -109.6875, - 32.34375 - ], - [ - -109.6875, - 33.75 - ], - [ - -111.09375, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': 'dqd', - 'center': [ - -75.234375, - 37.265625 - ], - 'rectangle': [ - [ - -75.9375, - 36.5625 - ], - [ - -74.53125, - 36.5625 - ], - [ - -74.53125, - 37.96875 - ], - [ - -75.9375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -163.828125, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': 'b3g', - 'center': [ - -163.828125, - 55.546875 - ], - 'rectangle': [ - [ - -164.53125, - 54.84375 - ], - [ - -163.125, - 54.84375 - ], - [ - -163.125, - 56.25 - ], - [ - -164.53125, - 56.25 - ] - ] - } - } - ] - } - }, - { - 'label': 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322): agent.raw', - 'geoJSON': { - 'properties': { - 'label': 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322): agent.raw', - 'length': 597, - 'min': 7, - 'max': 474, - 'precision': 3 - }, - 'type': 'FeatureCollection', - 'features': [ - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 474, - 'geohash': 'dr4', - 'center': [ - -75.234375, - 40.078125 - ], - 'rectangle': [ - [ - -75.9375, - 39.375 - ], - [ - -74.53125, - 39.375 - ], - [ - -74.53125, - 40.78125 - ], - [ - -75.9375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -73.828125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 339, - 'geohash': 'dr7', - 'center': [ - -73.828125, - 41.484375 - ], - 'rectangle': [ - [ - -74.53125, - 40.78125 - ], - [ - -73.125, - 40.78125 - ], - [ - -73.125, - 42.1875 - ], - [ - -74.53125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 293, - 'geohash': 'dph', - 'center': [ - -83.671875, - 40.078125 - ], - 'rectangle': [ - [ - -84.375, - 39.375 - ], - [ - -82.96875, - 39.375 - ], - [ - -82.96875, - 40.78125 - ], - [ - -84.375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -72.421875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 300, - 'geohash': 'drk', - 'center': [ - -72.421875, - 41.484375 - ], - 'rectangle': [ - [ - -73.125, - 40.78125 - ], - [ - -71.71875, - 40.78125 - ], - [ - -71.71875, - 42.1875 - ], - [ - -73.125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 311, - 'geohash': '9qh', - 'center': [ - -117.421875, - 34.453125 - ], - 'rectangle': [ - [ - -118.125, - 33.75 - ], - [ - -116.71875, - 33.75 - ], - [ - -116.71875, - 35.15625 - ], - [ - -118.125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 301, - 'geohash': '9qc', - 'center': [ - -121.640625, - 38.671875 - ], - 'rectangle': [ - [ - -122.34375, - 37.96875 - ], - [ - -120.9375, - 37.96875 - ], - [ - -120.9375, - 39.375 - ], - [ - -122.34375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 283, - 'geohash': 'dp3', - 'center': [ - -87.890625, - 41.484375 - ], - 'rectangle': [ - [ - -88.59375, - 40.78125 - ], - [ - -87.1875, - 40.78125 - ], - [ - -87.1875, - 42.1875 - ], - [ - -88.59375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 260, - 'geohash': 'dp4', - 'center': [ - -86.484375, - 40.078125 - ], - 'rectangle': [ - [ - -87.1875, - 39.375 - ], - [ - -85.78125, - 39.375 - ], - [ - -85.78125, - 40.78125 - ], - [ - -87.1875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 249, - 'geohash': 'dpk', - 'center': [ - -83.671875, - 41.484375 - ], - 'rectangle': [ - [ - -84.375, - 40.78125 - ], - [ - -82.96875, - 40.78125 - ], - [ - -82.96875, - 42.1875 - ], - [ - -84.375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 244, - 'geohash': 'dps', - 'center': [ - -83.671875, - 42.890625 - ], - 'rectangle': [ - [ - -84.375, - 42.1875 - ], - [ - -82.96875, - 42.1875 - ], - [ - -82.96875, - 43.59375 - ], - [ - -84.375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 244, - 'geohash': '9q9', - 'center': [ - -121.640625, - 37.265625 - ], - 'rectangle': [ - [ - -122.34375, - 36.5625 - ], - [ - -120.9375, - 36.5625 - ], - [ - -120.9375, - 37.96875 - ], - [ - -122.34375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 246, - 'geohash': 'dpq', - 'center': [ - -80.859375, - 41.484375 - ], - 'rectangle': [ - [ - -81.5625, - 40.78125 - ], - [ - -80.15625, - 40.78125 - ], - [ - -80.15625, - 42.1875 - ], - [ - -81.5625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 257, - 'geohash': '9q5', - 'center': [ - -118.828125, - 34.453125 - ], - 'rectangle': [ - [ - -119.53125, - 33.75 - ], - [ - -118.125, - 33.75 - ], - [ - -118.125, - 35.15625 - ], - [ - -119.53125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 250, - 'geohash': 'dp8', - 'center': [ - -89.296875, - 42.890625 - ], - 'rectangle': [ - [ - -90, - 42.1875 - ], - [ - -88.59375, - 42.1875 - ], - [ - -88.59375, - 43.59375 - ], - [ - -90, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 231, - 'geohash': 'dn6', - 'center': [ - -86.484375, - 35.859375 - ], - 'rectangle': [ - [ - -87.1875, - 35.15625 - ], - [ - -85.78125, - 35.15625 - ], - [ - -85.78125, - 36.5625 - ], - [ - -87.1875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 226, - 'geohash': '9y7', - 'center': [ - -96.328125, - 35.859375 - ], - 'rectangle': [ - [ - -97.03125, - 35.15625 - ], - [ - -95.625, - 35.15625 - ], - [ - -95.625, - 36.5625 - ], - [ - -97.03125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 238, - 'geohash': 'dpp', - 'center': [ - -79.453125, - 40.078125 - ], - 'rectangle': [ - [ - -80.15625, - 39.375 - ], - [ - -78.75, - 39.375 - ], - [ - -78.75, - 40.78125 - ], - [ - -80.15625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 231, - 'geohash': 'dn0', - 'center': [ - -89.296875, - 34.453125 - ], - 'rectangle': [ - [ - -90, - 33.75 - ], - [ - -88.59375, - 33.75 - ], - [ - -88.59375, - 35.15625 - ], - [ - -90, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 227, - 'geohash': 'dpe', - 'center': [ - -85.078125, - 42.890625 - ], - 'rectangle': [ - [ - -85.78125, - 42.1875 - ], - [ - -84.375, - 42.1875 - ], - [ - -84.375, - 43.59375 - ], - [ - -85.78125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 236, - 'geohash': '9vf', - 'center': [ - -97.734375, - 33.046875 - ], - 'rectangle': [ - [ - -98.4375, - 32.34375 - ], - [ - -97.03125, - 32.34375 - ], - [ - -97.03125, - 33.75 - ], - [ - -98.4375, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -73.828125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 224, - 'geohash': 'dre', - 'center': [ - -73.828125, - 42.890625 - ], - 'rectangle': [ - [ - -74.53125, - 42.1875 - ], - [ - -73.125, - 42.1875 - ], - [ - -73.125, - 43.59375 - ], - [ - -74.53125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 243, - 'geohash': 'dp6', - 'center': [ - -86.484375, - 41.484375 - ], - 'rectangle': [ - [ - -87.1875, - 40.78125 - ], - [ - -85.78125, - 40.78125 - ], - [ - -85.78125, - 42.1875 - ], - [ - -87.1875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 249, - 'geohash': '9vg', - 'center': [ - -96.328125, - 33.046875 - ], - 'rectangle': [ - [ - -97.03125, - 32.34375 - ], - [ - -95.625, - 32.34375 - ], - [ - -95.625, - 33.75 - ], - [ - -97.03125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 237, - 'geohash': '9zv', - 'center': [ - -93.515625, - 44.296875 - ], - 'rectangle': [ - [ - -94.21875, - 43.59375 - ], - [ - -92.8125, - 43.59375 - ], - [ - -92.8125, - 45 - ], - [ - -94.21875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 233, - 'geohash': 'dn5', - 'center': [ - -85.078125, - 34.453125 - ], - 'rectangle': [ - [ - -85.78125, - 33.75 - ], - [ - -84.375, - 33.75 - ], - [ - -84.375, - 35.15625 - ], - [ - -85.78125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 27.421875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 221, - 'geohash': 'dhv', - 'center': [ - -82.265625, - 27.421875 - ], - 'rectangle': [ - [ - -82.96875, - 26.71875 - ], - [ - -81.5625, - 26.71875 - ], - [ - -81.5625, - 28.125 - ], - [ - -82.96875, - 28.125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 221, - 'geohash': '9ys', - 'center': [ - -94.921875, - 37.265625 - ], - 'rectangle': [ - [ - -95.625, - 36.5625 - ], - [ - -94.21875, - 36.5625 - ], - [ - -94.21875, - 37.96875 - ], - [ - -95.625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 220, - 'geohash': 'dng', - 'center': [ - -85.078125, - 38.671875 - ], - 'rectangle': [ - [ - -85.78125, - 37.96875 - ], - [ - -84.375, - 37.96875 - ], - [ - -84.375, - 39.375 - ], - [ - -85.78125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -72.421875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 193, - 'geohash': 'drs', - 'center': [ - -72.421875, - 42.890625 - ], - 'rectangle': [ - [ - -73.125, - 42.1875 - ], - [ - -71.71875, - 42.1875 - ], - [ - -71.71875, - 43.59375 - ], - [ - -73.125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 198, - 'geohash': 'dr8', - 'center': [ - -78.046875, - 42.890625 - ], - 'rectangle': [ - [ - -78.75, - 42.1875 - ], - [ - -77.34375, - 42.1875 - ], - [ - -77.34375, - 43.59375 - ], - [ - -78.75, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 212, - 'geohash': 'djf', - 'center': [ - -86.484375, - 33.046875 - ], - 'rectangle': [ - [ - -87.1875, - 32.34375 - ], - [ - -85.78125, - 32.34375 - ], - [ - -85.78125, - 33.75 - ], - [ - -87.1875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 192, - 'geohash': 'dp9', - 'center': [ - -87.890625, - 42.890625 - ], - 'rectangle': [ - [ - -88.59375, - 42.1875 - ], - [ - -87.1875, - 42.1875 - ], - [ - -87.1875, - 43.59375 - ], - [ - -88.59375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 210, - 'geohash': '9yu', - 'center': [ - -94.921875, - 38.671875 - ], - 'rectangle': [ - [ - -95.625, - 37.96875 - ], - [ - -94.21875, - 37.96875 - ], - [ - -94.21875, - 39.375 - ], - [ - -95.625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 221, - 'geohash': '9yr', - 'center': [ - -90.703125, - 35.859375 - ], - 'rectangle': [ - [ - -91.40625, - 35.15625 - ], - [ - -90, - 35.15625 - ], - [ - -90, - 36.5625 - ], - [ - -91.40625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 201, - 'geohash': '9yn', - 'center': [ - -92.109375, - 34.453125 - ], - 'rectangle': [ - [ - -92.8125, - 33.75 - ], - [ - -91.40625, - 33.75 - ], - [ - -91.40625, - 35.15625 - ], - [ - -92.8125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 199, - 'geohash': '9qd', - 'center': [ - -120.234375, - 37.265625 - ], - 'rectangle': [ - [ - -120.9375, - 36.5625 - ], - [ - -119.53125, - 36.5625 - ], - [ - -119.53125, - 37.96875 - ], - [ - -120.9375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 192, - 'geohash': 'dp7', - 'center': [ - -85.078125, - 41.484375 - ], - 'rectangle': [ - [ - -85.78125, - 40.78125 - ], - [ - -84.375, - 40.78125 - ], - [ - -84.375, - 42.1875 - ], - [ - -85.78125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -71.015625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 198, - 'geohash': 'drt', - 'center': [ - -71.015625, - 42.890625 - ], - 'rectangle': [ - [ - -71.71875, - 42.1875 - ], - [ - -70.3125, - 42.1875 - ], - [ - -70.3125, - 43.59375 - ], - [ - -71.71875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 195, - 'geohash': 'dn2', - 'center': [ - -89.296875, - 35.859375 - ], - 'rectangle': [ - [ - -90, - 35.15625 - ], - [ - -88.59375, - 35.15625 - ], - [ - -88.59375, - 36.5625 - ], - [ - -90, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 165, - 'geohash': '9vk', - 'center': [ - -94.921875, - 30.234375 - ], - 'rectangle': [ - [ - -95.625, - 29.53125 - ], - [ - -94.21875, - 29.53125 - ], - [ - -94.21875, - 30.9375 - ], - [ - -95.625, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 27.421875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 219, - 'geohash': 'dhy', - 'center': [ - -80.859375, - 27.421875 - ], - 'rectangle': [ - [ - -81.5625, - 26.71875 - ], - [ - -80.15625, - 26.71875 - ], - [ - -80.15625, - 28.125 - ], - [ - -81.5625, - 28.125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 181, - 'geohash': 'dn3', - 'center': [ - -87.890625, - 35.859375 - ], - 'rectangle': [ - [ - -88.59375, - 35.15625 - ], - [ - -87.1875, - 35.15625 - ], - [ - -87.1875, - 36.5625 - ], - [ - -88.59375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 188, - 'geohash': 'dj8', - 'center': [ - -89.296875, - 31.640625 - ], - 'rectangle': [ - [ - -90, - 30.9375 - ], - [ - -88.59375, - 30.9375 - ], - [ - -88.59375, - 32.34375 - ], - [ - -90, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 167, - 'geohash': 'dpn', - 'center': [ - -80.859375, - 40.078125 - ], - 'rectangle': [ - [ - -81.5625, - 39.375 - ], - [ - -80.15625, - 39.375 - ], - [ - -80.15625, - 40.78125 - ], - [ - -81.5625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 178, - 'geohash': 'dju', - 'center': [ - -83.671875, - 33.046875 - ], - 'rectangle': [ - [ - -84.375, - 32.34375 - ], - [ - -82.96875, - 32.34375 - ], - [ - -82.96875, - 33.75 - ], - [ - -84.375, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 205, - 'geohash': '9vz', - 'center': [ - -90.703125, - 33.046875 - ], - 'rectangle': [ - [ - -91.40625, - 32.34375 - ], - [ - -90, - 32.34375 - ], - [ - -90, - 33.75 - ], - [ - -91.40625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 179, - 'geohash': 'dnp', - 'center': [ - -79.453125, - 34.453125 - ], - 'rectangle': [ - [ - -80.15625, - 33.75 - ], - [ - -78.75, - 33.75 - ], - [ - -78.75, - 35.15625 - ], - [ - -80.15625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -73.828125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 180, - 'geohash': 'dr5', - 'center': [ - -73.828125, - 40.078125 - ], - 'rectangle': [ - [ - -74.53125, - 39.375 - ], - [ - -73.125, - 39.375 - ], - [ - -73.125, - 40.78125 - ], - [ - -74.53125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 191, - 'geohash': 'dp5', - 'center': [ - -85.078125, - 40.078125 - ], - 'rectangle': [ - [ - -85.78125, - 39.375 - ], - [ - -84.375, - 39.375 - ], - [ - -84.375, - 40.78125 - ], - [ - -85.78125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 193, - 'geohash': '9r1', - 'center': [ - -121.640625, - 40.078125 - ], - 'rectangle': [ - [ - -122.34375, - 39.375 - ], - [ - -120.9375, - 39.375 - ], - [ - -120.9375, - 40.78125 - ], - [ - -122.34375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 180, - 'geohash': 'djv', - 'center': [ - -82.265625, - 33.046875 - ], - 'rectangle': [ - [ - -82.96875, - 32.34375 - ], - [ - -81.5625, - 32.34375 - ], - [ - -81.5625, - 33.75 - ], - [ - -82.96875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 200, - 'geohash': 'djt', - 'center': [ - -82.265625, - 31.640625 - ], - 'rectangle': [ - [ - -82.96875, - 30.9375 - ], - [ - -81.5625, - 30.9375 - ], - [ - -81.5625, - 32.34375 - ], - [ - -82.96875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 194, - 'geohash': 'dpm', - 'center': [ - -82.265625, - 41.484375 - ], - 'rectangle': [ - [ - -82.96875, - 40.78125 - ], - [ - -81.5625, - 40.78125 - ], - [ - -81.5625, - 42.1875 - ], - [ - -82.96875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 177, - 'geohash': '9zm', - 'center': [ - -93.515625, - 41.484375 - ], - 'rectangle': [ - [ - -94.21875, - 40.78125 - ], - [ - -92.8125, - 40.78125 - ], - [ - -92.8125, - 42.1875 - ], - [ - -94.21875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 183, - 'geohash': 'dnn', - 'center': [ - -80.859375, - 34.453125 - ], - 'rectangle': [ - [ - -81.5625, - 33.75 - ], - [ - -80.15625, - 33.75 - ], - [ - -80.15625, - 35.15625 - ], - [ - -81.5625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 177, - 'geohash': '9y3', - 'center': [ - -99.140625, - 35.859375 - ], - 'rectangle': [ - [ - -99.84375, - 35.15625 - ], - [ - -98.4375, - 35.15625 - ], - [ - -98.4375, - 36.5625 - ], - [ - -99.84375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 189, - 'geohash': '9yy', - 'center': [ - -92.109375, - 38.671875 - ], - 'rectangle': [ - [ - -92.8125, - 37.96875 - ], - [ - -91.40625, - 37.96875 - ], - [ - -91.40625, - 39.375 - ], - [ - -92.8125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 165, - 'geohash': 'dn7', - 'center': [ - -85.078125, - 35.859375 - ], - 'rectangle': [ - [ - -85.78125, - 35.15625 - ], - [ - -84.375, - 35.15625 - ], - [ - -84.375, - 36.5625 - ], - [ - -85.78125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 180, - 'geohash': '9tb', - 'center': [ - -111.796875, - 33.046875 - ], - 'rectangle': [ - [ - -112.5, - 32.34375 - ], - [ - -111.09375, - 32.34375 - ], - [ - -111.09375, - 33.75 - ], - [ - -112.5, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 154, - 'geohash': 'dnq', - 'center': [ - -80.859375, - 35.859375 - ], - 'rectangle': [ - [ - -81.5625, - 35.15625 - ], - [ - -80.15625, - 35.15625 - ], - [ - -80.15625, - 36.5625 - ], - [ - -81.5625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 179, - 'geohash': 'djn', - 'center': [ - -80.859375, - 28.828125 - ], - 'rectangle': [ - [ - -81.5625, - 28.125 - ], - [ - -80.15625, - 28.125 - ], - [ - -80.15625, - 29.53125 - ], - [ - -81.5625, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 171, - 'geohash': 'dnj', - 'center': [ - -82.265625, - 34.453125 - ], - 'rectangle': [ - [ - -82.96875, - 33.75 - ], - [ - -81.5625, - 33.75 - ], - [ - -81.5625, - 35.15625 - ], - [ - -82.96875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 169, - 'geohash': '9y6', - 'center': [ - -97.734375, - 35.859375 - ], - 'rectangle': [ - [ - -98.4375, - 35.15625 - ], - [ - -97.03125, - 35.15625 - ], - [ - -97.03125, - 36.5625 - ], - [ - -98.4375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 179, - 'geohash': '9vv', - 'center': [ - -93.515625, - 33.046875 - ], - 'rectangle': [ - [ - -94.21875, - 32.34375 - ], - [ - -92.8125, - 32.34375 - ], - [ - -92.8125, - 33.75 - ], - [ - -94.21875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 167, - 'geohash': 'dr9', - 'center': [ - -76.640625, - 42.890625 - ], - 'rectangle': [ - [ - -77.34375, - 42.1875 - ], - [ - -75.9375, - 42.1875 - ], - [ - -75.9375, - 43.59375 - ], - [ - -77.34375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 171, - 'geohash': 'djs', - 'center': [ - -83.671875, - 31.640625 - ], - 'rectangle': [ - [ - -84.375, - 30.9375 - ], - [ - -82.96875, - 30.9375 - ], - [ - -82.96875, - 32.34375 - ], - [ - -84.375, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 155, - 'geohash': '9z7', - 'center': [ - -96.328125, - 41.484375 - ], - 'rectangle': [ - [ - -97.03125, - 40.78125 - ], - [ - -95.625, - 40.78125 - ], - [ - -95.625, - 42.1875 - ], - [ - -97.03125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 175, - 'geohash': 'djg', - 'center': [ - -85.078125, - 33.046875 - ], - 'rectangle': [ - [ - -85.78125, - 32.34375 - ], - [ - -84.375, - 32.34375 - ], - [ - -84.375, - 33.75 - ], - [ - -85.78125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 185, - 'geohash': 'dpj', - 'center': [ - -82.265625, - 40.078125 - ], - 'rectangle': [ - [ - -82.96875, - 39.375 - ], - [ - -81.5625, - 39.375 - ], - [ - -81.5625, - 40.78125 - ], - [ - -82.96875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 185, - 'geohash': 'c20', - 'center': [ - -123.046875, - 45.703125 - ], - 'rectangle': [ - [ - -123.75, - 45 - ], - [ - -122.34375, - 45 - ], - [ - -122.34375, - 46.40625 - ], - [ - -123.75, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 162, - 'geohash': 'dnh', - 'center': [ - -83.671875, - 34.453125 - ], - 'rectangle': [ - [ - -84.375, - 33.75 - ], - [ - -82.96875, - 33.75 - ], - [ - -82.96875, - 35.15625 - ], - [ - -84.375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 163, - 'geohash': '9yk', - 'center': [ - -94.921875, - 35.859375 - ], - 'rectangle': [ - [ - -95.625, - 35.15625 - ], - [ - -94.21875, - 35.15625 - ], - [ - -94.21875, - 36.5625 - ], - [ - -95.625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 182, - 'geohash': 'dqc', - 'center': [ - -76.640625, - 38.671875 - ], - 'rectangle': [ - [ - -77.34375, - 37.96875 - ], - [ - -75.9375, - 37.96875 - ], - [ - -75.9375, - 39.375 - ], - [ - -77.34375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 167, - 'geohash': 'dqb', - 'center': [ - -78.046875, - 38.671875 - ], - 'rectangle': [ - [ - -78.75, - 37.96875 - ], - [ - -77.34375, - 37.96875 - ], - [ - -77.34375, - 39.375 - ], - [ - -78.75, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 178, - 'geohash': '9mu', - 'center': [ - -117.421875, - 33.046875 - ], - 'rectangle': [ - [ - -118.125, - 32.34375 - ], - [ - -116.71875, - 32.34375 - ], - [ - -116.71875, - 33.75 - ], - [ - -118.125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -71.015625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 173, - 'geohash': 'drm', - 'center': [ - -71.015625, - 41.484375 - ], - 'rectangle': [ - [ - -71.71875, - 40.78125 - ], - [ - -70.3125, - 40.78125 - ], - [ - -70.3125, - 42.1875 - ], - [ - -71.71875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 180, - 'geohash': '9yq', - 'center': [ - -92.109375, - 35.859375 - ], - 'rectangle': [ - [ - -92.8125, - 35.15625 - ], - [ - -91.40625, - 35.15625 - ], - [ - -91.40625, - 36.5625 - ], - [ - -92.8125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 155, - 'geohash': 'dn4', - 'center': [ - -86.484375, - 34.453125 - ], - 'rectangle': [ - [ - -87.1875, - 33.75 - ], - [ - -85.78125, - 33.75 - ], - [ - -85.78125, - 35.15625 - ], - [ - -87.1875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 154, - 'geohash': 'bdv', - 'center': [ - -149.765625, - 61.171875 - ], - 'rectangle': [ - [ - -150.46875, - 60.46875 - ], - [ - -149.0625, - 60.46875 - ], - [ - -149.0625, - 61.875 - ], - [ - -150.46875, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 170, - 'geohash': '9yp', - 'center': [ - -90.703125, - 34.453125 - ], - 'rectangle': [ - [ - -91.40625, - 33.75 - ], - [ - -90, - 33.75 - ], - [ - -90, - 35.15625 - ], - [ - -91.40625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 177, - 'geohash': '9vd', - 'center': [ - -97.734375, - 31.640625 - ], - 'rectangle': [ - [ - -98.4375, - 30.9375 - ], - [ - -97.03125, - 30.9375 - ], - [ - -97.03125, - 32.34375 - ], - [ - -98.4375, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 164, - 'geohash': '9yd', - 'center': [ - -97.734375, - 37.265625 - ], - 'rectangle': [ - [ - -98.4375, - 36.5625 - ], - [ - -97.03125, - 36.5625 - ], - [ - -97.03125, - 37.96875 - ], - [ - -98.4375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 26.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 172, - 'geohash': 'dhw', - 'center': [ - -80.859375, - 26.015625 - ], - 'rectangle': [ - [ - -81.5625, - 25.3125 - ], - [ - -80.15625, - 25.3125 - ], - [ - -80.15625, - 26.71875 - ], - [ - -81.5625, - 26.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 156, - 'geohash': 'dr6', - 'center': [ - -75.234375, - 41.484375 - ], - 'rectangle': [ - [ - -75.9375, - 40.78125 - ], - [ - -74.53125, - 40.78125 - ], - [ - -74.53125, - 42.1875 - ], - [ - -75.9375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 171, - 'geohash': 'dnv', - 'center': [ - -82.265625, - 38.671875 - ], - 'rectangle': [ - [ - -82.96875, - 37.96875 - ], - [ - -81.5625, - 37.96875 - ], - [ - -81.5625, - 39.375 - ], - [ - -82.96875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 177, - 'geohash': 'dnr', - 'center': [ - -79.453125, - 35.859375 - ], - 'rectangle': [ - [ - -80.15625, - 35.15625 - ], - [ - -78.75, - 35.15625 - ], - [ - -78.75, - 36.5625 - ], - [ - -80.15625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 160, - 'geohash': 'dje', - 'center': [ - -85.078125, - 31.640625 - ], - 'rectangle': [ - [ - -85.78125, - 30.9375 - ], - [ - -84.375, - 30.9375 - ], - [ - -84.375, - 32.34375 - ], - [ - -85.78125, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 180, - 'geohash': '9y4', - 'center': [ - -97.734375, - 34.453125 - ], - 'rectangle': [ - [ - -98.4375, - 33.75 - ], - [ - -97.03125, - 33.75 - ], - [ - -97.03125, - 35.15625 - ], - [ - -98.4375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 161, - 'geohash': '9q7', - 'center': [ - -118.828125, - 35.859375 - ], - 'rectangle': [ - [ - -119.53125, - 35.15625 - ], - [ - -118.125, - 35.15625 - ], - [ - -118.125, - 36.5625 - ], - [ - -119.53125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 154, - 'geohash': 'dn8', - 'center': [ - -89.296875, - 37.265625 - ], - 'rectangle': [ - [ - -90, - 36.5625 - ], - [ - -88.59375, - 36.5625 - ], - [ - -88.59375, - 37.96875 - ], - [ - -90, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 166, - 'geohash': '9zu', - 'center': [ - -94.921875, - 44.296875 - ], - 'rectangle': [ - [ - -95.625, - 43.59375 - ], - [ - -94.21875, - 43.59375 - ], - [ - -94.21875, - 45 - ], - [ - -95.625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 164, - 'geohash': 'dq2', - 'center': [ - -78.046875, - 35.859375 - ], - 'rectangle': [ - [ - -78.75, - 35.15625 - ], - [ - -77.34375, - 35.15625 - ], - [ - -77.34375, - 36.5625 - ], - [ - -78.75, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 138, - 'geohash': 'dnb', - 'center': [ - -89.296875, - 38.671875 - ], - 'rectangle': [ - [ - -90, - 37.96875 - ], - [ - -88.59375, - 37.96875 - ], - [ - -88.59375, - 39.375 - ], - [ - -90, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 157, - 'geohash': 'dnc', - 'center': [ - -87.890625, - 38.671875 - ], - 'rectangle': [ - [ - -88.59375, - 37.96875 - ], - [ - -87.1875, - 37.96875 - ], - [ - -87.1875, - 39.375 - ], - [ - -88.59375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 150, - 'geohash': '9zq', - 'center': [ - -92.109375, - 41.484375 - ], - 'rectangle': [ - [ - -92.8125, - 40.78125 - ], - [ - -91.40625, - 40.78125 - ], - [ - -91.40625, - 42.1875 - ], - [ - -92.8125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 164, - 'geohash': '9y5', - 'center': [ - -96.328125, - 34.453125 - ], - 'rectangle': [ - [ - -97.03125, - 33.75 - ], - [ - -95.625, - 33.75 - ], - [ - -95.625, - 35.15625 - ], - [ - -97.03125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 154, - 'geohash': '9vu', - 'center': [ - -94.921875, - 33.046875 - ], - 'rectangle': [ - [ - -95.625, - 32.34375 - ], - [ - -94.21875, - 32.34375 - ], - [ - -94.21875, - 33.75 - ], - [ - -95.625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 150, - 'geohash': 'dnm', - 'center': [ - -82.265625, - 35.859375 - ], - 'rectangle': [ - [ - -82.96875, - 35.15625 - ], - [ - -81.5625, - 35.15625 - ], - [ - -81.5625, - 36.5625 - ], - [ - -82.96875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 156, - 'geohash': '9yz', - 'center': [ - -90.703125, - 38.671875 - ], - 'rectangle': [ - [ - -91.40625, - 37.96875 - ], - [ - -90, - 37.96875 - ], - [ - -90, - 39.375 - ], - [ - -91.40625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -132.890625, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 161, - 'geohash': 'c1c', - 'center': [ - -132.890625, - 55.546875 - ], - 'rectangle': [ - [ - -133.59375, - 54.84375 - ], - [ - -132.1875, - 54.84375 - ], - [ - -132.1875, - 56.25 - ], - [ - -133.59375, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 151, - 'geohash': 'dnf', - 'center': [ - -86.484375, - 38.671875 - ], - 'rectangle': [ - [ - -87.1875, - 37.96875 - ], - [ - -85.78125, - 37.96875 - ], - [ - -85.78125, - 39.375 - ], - [ - -87.1875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 159, - 'geohash': 'dpg', - 'center': [ - -85.078125, - 44.296875 - ], - 'rectangle': [ - [ - -85.78125, - 43.59375 - ], - [ - -84.375, - 43.59375 - ], - [ - -84.375, - 45 - ], - [ - -85.78125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 145, - 'geohash': 'dn9', - 'center': [ - -87.890625, - 37.265625 - ], - 'rectangle': [ - [ - -88.59375, - 36.5625 - ], - [ - -87.1875, - 36.5625 - ], - [ - -87.1875, - 37.96875 - ], - [ - -88.59375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 149, - 'geohash': 'dq0', - 'center': [ - -78.046875, - 34.453125 - ], - 'rectangle': [ - [ - -78.75, - 33.75 - ], - [ - -77.34375, - 33.75 - ], - [ - -77.34375, - 35.15625 - ], - [ - -78.75, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 134, - 'geohash': '9v7', - 'center': [ - -96.328125, - 30.234375 - ], - 'rectangle': [ - [ - -97.03125, - 29.53125 - ], - [ - -95.625, - 29.53125 - ], - [ - -95.625, - 30.9375 - ], - [ - -97.03125, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 158, - 'geohash': '9z4', - 'center': [ - -97.734375, - 40.078125 - ], - 'rectangle': [ - [ - -98.4375, - 39.375 - ], - [ - -97.03125, - 39.375 - ], - [ - -97.03125, - 40.78125 - ], - [ - -98.4375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 150, - 'geohash': 'dq9', - 'center': [ - -76.640625, - 37.265625 - ], - 'rectangle': [ - [ - -77.34375, - 36.5625 - ], - [ - -75.9375, - 36.5625 - ], - [ - -75.9375, - 37.96875 - ], - [ - -77.34375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 147, - 'geohash': 'djb', - 'center': [ - -89.296875, - 33.046875 - ], - 'rectangle': [ - [ - -90, - 32.34375 - ], - [ - -88.59375, - 32.34375 - ], - [ - -88.59375, - 33.75 - ], - [ - -90, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 152, - 'geohash': '9zr', - 'center': [ - -90.703125, - 41.484375 - ], - 'rectangle': [ - [ - -91.40625, - 40.78125 - ], - [ - -90, - 40.78125 - ], - [ - -90, - 42.1875 - ], - [ - -91.40625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -72.421875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 140, - 'geohash': 'dru', - 'center': [ - -72.421875, - 44.296875 - ], - 'rectangle': [ - [ - -73.125, - 43.59375 - ], - [ - -71.71875, - 43.59375 - ], - [ - -71.71875, - 45 - ], - [ - -73.125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 147, - 'geohash': '9zs', - 'center': [ - -94.921875, - 42.890625 - ], - 'rectangle': [ - [ - -95.625, - 42.1875 - ], - [ - -94.21875, - 42.1875 - ], - [ - -94.21875, - 43.59375 - ], - [ - -95.625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 160, - 'geohash': '9ze', - 'center': [ - -96.328125, - 42.890625 - ], - 'rectangle': [ - [ - -97.03125, - 42.1875 - ], - [ - -95.625, - 42.1875 - ], - [ - -95.625, - 43.59375 - ], - [ - -97.03125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 132, - 'geohash': 'djc', - 'center': [ - -87.890625, - 33.046875 - ], - 'rectangle': [ - [ - -88.59375, - 32.34375 - ], - [ - -87.1875, - 32.34375 - ], - [ - -87.1875, - 33.75 - ], - [ - -88.59375, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 122, - 'geohash': '9y1', - 'center': [ - -99.140625, - 34.453125 - ], - 'rectangle': [ - [ - -99.84375, - 33.75 - ], - [ - -98.4375, - 33.75 - ], - [ - -98.4375, - 35.15625 - ], - [ - -99.84375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 140, - 'geohash': 'djy', - 'center': [ - -80.859375, - 33.046875 - ], - 'rectangle': [ - [ - -81.5625, - 32.34375 - ], - [ - -80.15625, - 32.34375 - ], - [ - -80.15625, - 33.75 - ], - [ - -81.5625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 141, - 'geohash': 'c28', - 'center': [ - -123.046875, - 48.515625 - ], - 'rectangle': [ - [ - -123.75, - 47.8125 - ], - [ - -122.34375, - 47.8125 - ], - [ - -122.34375, - 49.21875 - ], - [ - -123.75, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 151, - 'geohash': '9vx', - 'center': [ - -90.703125, - 31.640625 - ], - 'rectangle': [ - [ - -91.40625, - 30.9375 - ], - [ - -90, - 30.9375 - ], - [ - -90, - 32.34375 - ], - [ - -91.40625, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 131, - 'geohash': 'dnw', - 'center': [ - -80.859375, - 37.265625 - ], - 'rectangle': [ - [ - -81.5625, - 36.5625 - ], - [ - -80.15625, - 36.5625 - ], - [ - -80.15625, - 37.96875 - ], - [ - -81.5625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 152, - 'geohash': '9zk', - 'center': [ - -94.921875, - 41.484375 - ], - 'rectangle': [ - [ - -95.625, - 40.78125 - ], - [ - -94.21875, - 40.78125 - ], - [ - -94.21875, - 42.1875 - ], - [ - -95.625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 153, - 'geohash': 'djd', - 'center': [ - -86.484375, - 31.640625 - ], - 'rectangle': [ - [ - -87.1875, - 30.9375 - ], - [ - -85.78125, - 30.9375 - ], - [ - -85.78125, - 32.34375 - ], - [ - -87.1875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 128, - 'geohash': 'f05', - 'center': [ - -85.078125, - 45.703125 - ], - 'rectangle': [ - [ - -85.78125, - 45 - ], - [ - -84.375, - 45 - ], - [ - -84.375, - 46.40625 - ], - [ - -85.78125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -69.609375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 138, - 'geohash': 'dry', - 'center': [ - -69.609375, - 44.296875 - ], - 'rectangle': [ - [ - -70.3125, - 43.59375 - ], - [ - -68.90625, - 43.59375 - ], - [ - -68.90625, - 45 - ], - [ - -70.3125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 147, - 'geohash': 'cbd', - 'center': [ - -97.734375, - 48.515625 - ], - 'rectangle': [ - [ - -98.4375, - 47.8125 - ], - [ - -97.03125, - 47.8125 - ], - [ - -97.03125, - 49.21875 - ], - [ - -98.4375, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 156, - 'geohash': 'cbj', - 'center': [ - -93.515625, - 45.703125 - ], - 'rectangle': [ - [ - -94.21875, - 45 - ], - [ - -92.8125, - 45 - ], - [ - -92.8125, - 46.40625 - ], - [ - -94.21875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 140, - 'geohash': 'dr2', - 'center': [ - -78.046875, - 41.484375 - ], - 'rectangle': [ - [ - -78.75, - 40.78125 - ], - [ - -77.34375, - 40.78125 - ], - [ - -77.34375, - 42.1875 - ], - [ - -78.75, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 149, - 'geohash': 'djj', - 'center': [ - -82.265625, - 28.828125 - ], - 'rectangle': [ - [ - -82.96875, - 28.125 - ], - [ - -81.5625, - 28.125 - ], - [ - -81.5625, - 29.53125 - ], - [ - -82.96875, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 128, - 'geohash': '9z6', - 'center': [ - -97.734375, - 41.484375 - ], - 'rectangle': [ - [ - -98.4375, - 40.78125 - ], - [ - -97.03125, - 40.78125 - ], - [ - -97.03125, - 42.1875 - ], - [ - -98.4375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 131, - 'geohash': 'dqf', - 'center': [ - -75.234375, - 38.671875 - ], - 'rectangle': [ - [ - -75.9375, - 37.96875 - ], - [ - -74.53125, - 37.96875 - ], - [ - -74.53125, - 39.375 - ], - [ - -75.9375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 135, - 'geohash': 'dne', - 'center': [ - -85.078125, - 37.265625 - ], - 'rectangle': [ - [ - -85.78125, - 36.5625 - ], - [ - -84.375, - 36.5625 - ], - [ - -84.375, - 37.96875 - ], - [ - -85.78125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 149, - 'geohash': '9v6', - 'center': [ - -97.734375, - 30.234375 - ], - 'rectangle': [ - [ - -98.4375, - 29.53125 - ], - [ - -97.03125, - 29.53125 - ], - [ - -97.03125, - 30.9375 - ], - [ - -98.4375, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 135, - 'geohash': '9vy', - 'center': [ - -92.109375, - 33.046875 - ], - 'rectangle': [ - [ - -92.8125, - 32.34375 - ], - [ - -91.40625, - 32.34375 - ], - [ - -91.40625, - 33.75 - ], - [ - -92.8125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 132, - 'geohash': 'f00', - 'center': [ - -89.296875, - 45.703125 - ], - 'rectangle': [ - [ - -90, - 45 - ], - [ - -88.59375, - 45 - ], - [ - -88.59375, - 46.40625 - ], - [ - -90, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 136, - 'geohash': 'dr3', - 'center': [ - -76.640625, - 41.484375 - ], - 'rectangle': [ - [ - -77.34375, - 40.78125 - ], - [ - -75.9375, - 40.78125 - ], - [ - -75.9375, - 42.1875 - ], - [ - -77.34375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 127, - 'geohash': '9vm', - 'center': [ - -93.515625, - 30.234375 - ], - 'rectangle': [ - [ - -94.21875, - 29.53125 - ], - [ - -92.8125, - 29.53125 - ], - [ - -92.8125, - 30.9375 - ], - [ - -94.21875, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 144, - 'geohash': 'dnk', - 'center': [ - -83.671875, - 35.859375 - ], - 'rectangle': [ - [ - -84.375, - 35.15625 - ], - [ - -82.96875, - 35.15625 - ], - [ - -82.96875, - 36.5625 - ], - [ - -84.375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 124, - 'geohash': '9zx', - 'center': [ - -90.703125, - 42.890625 - ], - 'rectangle': [ - [ - -91.40625, - 42.1875 - ], - [ - -90, - 42.1875 - ], - [ - -90, - 43.59375 - ], - [ - -91.40625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 137, - 'geohash': '9qf', - 'center': [ - -120.234375, - 38.671875 - ], - 'rectangle': [ - [ - -120.9375, - 37.96875 - ], - [ - -119.53125, - 37.96875 - ], - [ - -119.53125, - 39.375 - ], - [ - -120.9375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 132, - 'geohash': 'dpc', - 'center': [ - -87.890625, - 44.296875 - ], - 'rectangle': [ - [ - -88.59375, - 43.59375 - ], - [ - -87.1875, - 43.59375 - ], - [ - -87.1875, - 45 - ], - [ - -88.59375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 112, - 'geohash': 'dj3', - 'center': [ - -87.890625, - 30.234375 - ], - 'rectangle': [ - [ - -88.59375, - 29.53125 - ], - [ - -87.1875, - 29.53125 - ], - [ - -87.1875, - 30.9375 - ], - [ - -88.59375, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 115, - 'geohash': '9zp', - 'center': [ - -90.703125, - 40.078125 - ], - 'rectangle': [ - [ - -91.40625, - 39.375 - ], - [ - -90, - 39.375 - ], - [ - -90, - 40.78125 - ], - [ - -91.40625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 112, - 'geohash': 'dnd', - 'center': [ - -86.484375, - 37.265625 - ], - 'rectangle': [ - [ - -87.1875, - 36.5625 - ], - [ - -85.78125, - 36.5625 - ], - [ - -85.78125, - 37.96875 - ], - [ - -87.1875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 136, - 'geohash': '9xj', - 'center': [ - -104.765625, - 40.078125 - ], - 'rectangle': [ - [ - -105.46875, - 39.375 - ], - [ - -104.0625, - 39.375 - ], - [ - -104.0625, - 40.78125 - ], - [ - -105.46875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 121, - 'geohash': 'dp1', - 'center': [ - -87.890625, - 40.078125 - ], - 'rectangle': [ - [ - -88.59375, - 39.375 - ], - [ - -87.1875, - 39.375 - ], - [ - -87.1875, - 40.78125 - ], - [ - -88.59375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 145, - 'geohash': '9qb', - 'center': [ - -123.046875, - 38.671875 - ], - 'rectangle': [ - [ - -123.75, - 37.96875 - ], - [ - -122.34375, - 37.96875 - ], - [ - -122.34375, - 39.375 - ], - [ - -123.75, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 119, - 'geohash': '9z1', - 'center': [ - -99.140625, - 40.078125 - ], - 'rectangle': [ - [ - -99.84375, - 39.375 - ], - [ - -98.4375, - 39.375 - ], - [ - -98.4375, - 40.78125 - ], - [ - -99.84375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 132, - 'geohash': 'dn1', - 'center': [ - -87.890625, - 34.453125 - ], - 'rectangle': [ - [ - -88.59375, - 33.75 - ], - [ - -87.1875, - 33.75 - ], - [ - -87.1875, - 35.15625 - ], - [ - -88.59375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 133, - 'geohash': '9vr', - 'center': [ - -90.703125, - 30.234375 - ], - 'rectangle': [ - [ - -91.40625, - 29.53125 - ], - [ - -90, - 29.53125 - ], - [ - -90, - 30.9375 - ], - [ - -91.40625, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 119, - 'geohash': '9vq', - 'center': [ - -92.109375, - 30.234375 - ], - 'rectangle': [ - [ - -92.8125, - 29.53125 - ], - [ - -91.40625, - 29.53125 - ], - [ - -91.40625, - 30.9375 - ], - [ - -92.8125, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 116, - 'geohash': 'cbn', - 'center': [ - -92.109375, - 45.703125 - ], - 'rectangle': [ - [ - -92.8125, - 45 - ], - [ - -91.40625, - 45 - ], - [ - -91.40625, - 46.40625 - ], - [ - -92.8125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 128, - 'geohash': '9ym', - 'center': [ - -93.515625, - 35.859375 - ], - 'rectangle': [ - [ - -94.21875, - 35.15625 - ], - [ - -92.8125, - 35.15625 - ], - [ - -92.8125, - 36.5625 - ], - [ - -94.21875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 112, - 'geohash': 'dpb', - 'center': [ - -89.296875, - 44.296875 - ], - 'rectangle': [ - [ - -90, - 43.59375 - ], - [ - -88.59375, - 43.59375 - ], - [ - -88.59375, - 45 - ], - [ - -90, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 127, - 'geohash': 'dns', - 'center': [ - -83.671875, - 37.265625 - ], - 'rectangle': [ - [ - -84.375, - 36.5625 - ], - [ - -82.96875, - 36.5625 - ], - [ - -82.96875, - 37.96875 - ], - [ - -84.375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 110, - 'geohash': 'dp2', - 'center': [ - -89.296875, - 41.484375 - ], - 'rectangle': [ - [ - -90, - 40.78125 - ], - [ - -88.59375, - 40.78125 - ], - [ - -88.59375, - 42.1875 - ], - [ - -90, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 124, - 'geohash': 'djm', - 'center': [ - -82.265625, - 30.234375 - ], - 'rectangle': [ - [ - -82.96875, - 29.53125 - ], - [ - -81.5625, - 29.53125 - ], - [ - -81.5625, - 30.9375 - ], - [ - -82.96875, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 114, - 'geohash': 'dj2', - 'center': [ - -89.296875, - 30.234375 - ], - 'rectangle': [ - [ - -90, - 29.53125 - ], - [ - -88.59375, - 29.53125 - ], - [ - -88.59375, - 30.9375 - ], - [ - -90, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 136, - 'geohash': 'cb5', - 'center': [ - -96.328125, - 45.703125 - ], - 'rectangle': [ - [ - -97.03125, - 45 - ], - [ - -95.625, - 45 - ], - [ - -95.625, - 46.40625 - ], - [ - -97.03125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 129, - 'geohash': '9yw', - 'center': [ - -92.109375, - 37.265625 - ], - 'rectangle': [ - [ - -92.8125, - 36.5625 - ], - [ - -91.40625, - 36.5625 - ], - [ - -91.40625, - 37.96875 - ], - [ - -92.8125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 129, - 'geohash': 'drd', - 'center': [ - -75.234375, - 42.890625 - ], - 'rectangle': [ - [ - -75.9375, - 42.1875 - ], - [ - -74.53125, - 42.1875 - ], - [ - -74.53125, - 43.59375 - ], - [ - -75.9375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 109, - 'geohash': 'dnt', - 'center': [ - -82.265625, - 37.265625 - ], - 'rectangle': [ - [ - -82.96875, - 36.5625 - ], - [ - -81.5625, - 36.5625 - ], - [ - -81.5625, - 37.96875 - ], - [ - -82.96875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 109, - 'geohash': '9vc', - 'center': [ - -99.140625, - 33.046875 - ], - 'rectangle': [ - [ - -99.84375, - 32.34375 - ], - [ - -98.4375, - 32.34375 - ], - [ - -98.4375, - 33.75 - ], - [ - -99.84375, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 118, - 'geohash': '9rb', - 'center': [ - -123.046875, - 44.296875 - ], - 'rectangle': [ - [ - -123.75, - 43.59375 - ], - [ - -122.34375, - 43.59375 - ], - [ - -122.34375, - 45 - ], - [ - -123.75, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 118, - 'geohash': 'djz', - 'center': [ - -79.453125, - 33.046875 - ], - 'rectangle': [ - [ - -80.15625, - 32.34375 - ], - [ - -78.75, - 32.34375 - ], - [ - -78.75, - 33.75 - ], - [ - -80.15625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 103, - 'geohash': '9z5', - 'center': [ - -96.328125, - 40.078125 - ], - 'rectangle': [ - [ - -97.03125, - 39.375 - ], - [ - -95.625, - 39.375 - ], - [ - -95.625, - 40.78125 - ], - [ - -97.03125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 123, - 'geohash': 'djk', - 'center': [ - -83.671875, - 30.234375 - ], - 'rectangle': [ - [ - -84.375, - 29.53125 - ], - [ - -82.96875, - 29.53125 - ], - [ - -82.96875, - 30.9375 - ], - [ - -84.375, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 113, - 'geohash': '9y8', - 'center': [ - -100.546875, - 37.265625 - ], - 'rectangle': [ - [ - -101.25, - 36.5625 - ], - [ - -99.84375, - 36.5625 - ], - [ - -99.84375, - 37.96875 - ], - [ - -101.25, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 108, - 'geohash': '9zh', - 'center': [ - -94.921875, - 40.078125 - ], - 'rectangle': [ - [ - -95.625, - 39.375 - ], - [ - -94.21875, - 39.375 - ], - [ - -94.21875, - 40.78125 - ], - [ - -95.625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 124, - 'geohash': '9zg', - 'center': [ - -96.328125, - 44.296875 - ], - 'rectangle': [ - [ - -97.03125, - 43.59375 - ], - [ - -95.625, - 43.59375 - ], - [ - -95.625, - 45 - ], - [ - -97.03125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 110, - 'geohash': 'dnu', - 'center': [ - -83.671875, - 38.671875 - ], - 'rectangle': [ - [ - -84.375, - 37.96875 - ], - [ - -82.96875, - 37.96875 - ], - [ - -82.96875, - 39.375 - ], - [ - -84.375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 111, - 'geohash': '9qq', - 'center': [ - -114.609375, - 35.859375 - ], - 'rectangle': [ - [ - -115.3125, - 35.15625 - ], - [ - -113.90625, - 35.15625 - ], - [ - -113.90625, - 36.5625 - ], - [ - -115.3125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 96, - 'geohash': 'dq3', - 'center': [ - -76.640625, - 35.859375 - ], - 'rectangle': [ - [ - -77.34375, - 35.15625 - ], - [ - -75.9375, - 35.15625 - ], - [ - -75.9375, - 36.5625 - ], - [ - -77.34375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 101, - 'geohash': 'dp0', - 'center': [ - -89.296875, - 40.078125 - ], - 'rectangle': [ - [ - -90, - 39.375 - ], - [ - -88.59375, - 39.375 - ], - [ - -88.59375, - 40.78125 - ], - [ - -90, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 104, - 'geohash': '9r2', - 'center': [ - -123.046875, - 41.484375 - ], - 'rectangle': [ - [ - -123.75, - 40.78125 - ], - [ - -122.34375, - 40.78125 - ], - [ - -122.34375, - 42.1875 - ], - [ - -123.75, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 117, - 'geohash': '9zn', - 'center': [ - -92.109375, - 40.078125 - ], - 'rectangle': [ - [ - -92.8125, - 39.375 - ], - [ - -91.40625, - 39.375 - ], - [ - -91.40625, - 40.78125 - ], - [ - -92.8125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 117, - 'geohash': 'dq8', - 'center': [ - -78.046875, - 37.265625 - ], - 'rectangle': [ - [ - -78.75, - 36.5625 - ], - [ - -77.34375, - 36.5625 - ], - [ - -77.34375, - 37.96875 - ], - [ - -78.75, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 100, - 'geohash': '9v1', - 'center': [ - -99.140625, - 28.828125 - ], - 'rectangle': [ - [ - -99.84375, - 28.125 - ], - [ - -98.4375, - 28.125 - ], - [ - -98.4375, - 29.53125 - ], - [ - -99.84375, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 96, - 'geohash': '9zf', - 'center': [ - -97.734375, - 44.296875 - ], - 'rectangle': [ - [ - -98.4375, - 43.59375 - ], - [ - -97.03125, - 43.59375 - ], - [ - -97.03125, - 45 - ], - [ - -98.4375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 98, - 'geohash': '9zw', - 'center': [ - -92.109375, - 42.890625 - ], - 'rectangle': [ - [ - -92.8125, - 42.1875 - ], - [ - -91.40625, - 42.1875 - ], - [ - -91.40625, - 43.59375 - ], - [ - -92.8125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 112, - 'geohash': 'dr1', - 'center': [ - -76.640625, - 40.078125 - ], - 'rectangle': [ - [ - -77.34375, - 39.375 - ], - [ - -75.9375, - 39.375 - ], - [ - -75.9375, - 40.78125 - ], - [ - -77.34375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 123, - 'geohash': 'c22', - 'center': [ - -123.046875, - 47.109375 - ], - 'rectangle': [ - [ - -123.75, - 46.40625 - ], - [ - -122.34375, - 46.40625 - ], - [ - -122.34375, - 47.8125 - ], - [ - -123.75, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -73.828125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 107, - 'geohash': 'drg', - 'center': [ - -73.828125, - 44.296875 - ], - 'rectangle': [ - [ - -74.53125, - 43.59375 - ], - [ - -73.125, - 43.59375 - ], - [ - -73.125, - 45 - ], - [ - -74.53125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 92, - 'geohash': '9zy', - 'center': [ - -92.109375, - 44.296875 - ], - 'rectangle': [ - [ - -92.8125, - 43.59375 - ], - [ - -91.40625, - 43.59375 - ], - [ - -91.40625, - 45 - ], - [ - -92.8125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 113, - 'geohash': 'cbq', - 'center': [ - -92.109375, - 47.109375 - ], - 'rectangle': [ - [ - -92.8125, - 46.40625 - ], - [ - -91.40625, - 46.40625 - ], - [ - -91.40625, - 47.8125 - ], - [ - -92.8125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 95, - 'geohash': '9z3', - 'center': [ - -99.140625, - 41.484375 - ], - 'rectangle': [ - [ - -99.84375, - 40.78125 - ], - [ - -98.4375, - 40.78125 - ], - [ - -98.4375, - 42.1875 - ], - [ - -99.84375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 91, - 'geohash': 'c2q', - 'center': [ - -114.609375, - 47.109375 - ], - 'rectangle': [ - [ - -115.3125, - 46.40625 - ], - [ - -113.90625, - 46.40625 - ], - [ - -113.90625, - 47.8125 - ], - [ - -115.3125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 123, - 'geohash': 'dpr', - 'center': [ - -79.453125, - 41.484375 - ], - 'rectangle': [ - [ - -80.15625, - 40.78125 - ], - [ - -78.75, - 40.78125 - ], - [ - -78.75, - 42.1875 - ], - [ - -80.15625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -65.390625, - 18.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 135, - 'geohash': 'de3', - 'center': [ - -65.390625, - 18.984375 - ], - 'rectangle': [ - [ - -66.09375, - 18.28125 - ], - [ - -64.6875, - 18.28125 - ], - [ - -64.6875, - 19.6875 - ], - [ - -66.09375, - 19.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 97, - 'geohash': 'b6u', - 'center': [ - -162.421875, - 61.171875 - ], - 'rectangle': [ - [ - -163.125, - 60.46875 - ], - [ - -161.71875, - 60.46875 - ], - [ - -161.71875, - 61.875 - ], - [ - -163.125, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 100, - 'geohash': '9wp', - 'center': [ - -101.953125, - 34.453125 - ], - 'rectangle': [ - [ - -102.65625, - 33.75 - ], - [ - -101.25, - 33.75 - ], - [ - -101.25, - 35.15625 - ], - [ - -102.65625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 108, - 'geohash': '9zt', - 'center': [ - -93.515625, - 42.890625 - ], - 'rectangle': [ - [ - -94.21875, - 42.1875 - ], - [ - -92.8125, - 42.1875 - ], - [ - -92.8125, - 43.59375 - ], - [ - -94.21875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 109, - 'geohash': 'cb7', - 'center': [ - -96.328125, - 47.109375 - ], - 'rectangle': [ - [ - -97.03125, - 46.40625 - ], - [ - -95.625, - 46.40625 - ], - [ - -95.625, - 47.8125 - ], - [ - -97.03125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 100, - 'geohash': 'c23', - 'center': [ - -121.640625, - 47.109375 - ], - 'rectangle': [ - [ - -122.34375, - 46.40625 - ], - [ - -120.9375, - 46.40625 - ], - [ - -120.9375, - 47.8125 - ], - [ - -122.34375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 102, - 'geohash': 'c27', - 'center': [ - -118.828125, - 47.109375 - ], - 'rectangle': [ - [ - -119.53125, - 46.40625 - ], - [ - -118.125, - 46.40625 - ], - [ - -118.125, - 47.8125 - ], - [ - -119.53125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 95, - 'geohash': '9zd', - 'center': [ - -97.734375, - 42.890625 - ], - 'rectangle': [ - [ - -98.4375, - 42.1875 - ], - [ - -97.03125, - 42.1875 - ], - [ - -97.03125, - 43.59375 - ], - [ - -98.4375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 27.421875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 107, - 'geohash': '9uf', - 'center': [ - -97.734375, - 27.421875 - ], - 'rectangle': [ - [ - -98.4375, - 26.71875 - ], - [ - -97.03125, - 26.71875 - ], - [ - -97.03125, - 28.125 - ], - [ - -98.4375, - 28.125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 81, - 'geohash': '9r0', - 'center': [ - -123.046875, - 40.078125 - ], - 'rectangle': [ - [ - -123.75, - 39.375 - ], - [ - -122.34375, - 39.375 - ], - [ - -122.34375, - 40.78125 - ], - [ - -123.75, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -165.234375, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 96, - 'geohash': 'b6f', - 'center': [ - -165.234375, - 61.171875 - ], - 'rectangle': [ - [ - -165.9375, - 60.46875 - ], - [ - -164.53125, - 60.46875 - ], - [ - -164.53125, - 61.875 - ], - [ - -165.9375, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 106, - 'geohash': '9vw', - 'center': [ - -92.109375, - 31.640625 - ], - 'rectangle': [ - [ - -92.8125, - 30.9375 - ], - [ - -91.40625, - 30.9375 - ], - [ - -91.40625, - 32.34375 - ], - [ - -92.8125, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 108, - 'geohash': '9z0', - 'center': [ - -100.546875, - 40.078125 - ], - 'rectangle': [ - [ - -101.25, - 39.375 - ], - [ - -99.84375, - 39.375 - ], - [ - -99.84375, - 40.78125 - ], - [ - -101.25, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -78.046875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 102, - 'geohash': 'dr0', - 'center': [ - -78.046875, - 40.078125 - ], - 'rectangle': [ - [ - -78.75, - 39.375 - ], - [ - -77.34375, - 39.375 - ], - [ - -77.34375, - 40.78125 - ], - [ - -78.75, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 86, - 'geohash': 'cb4', - 'center': [ - -97.734375, - 45.703125 - ], - 'rectangle': [ - [ - -98.4375, - 45 - ], - [ - -97.03125, - 45 - ], - [ - -97.03125, - 46.40625 - ], - [ - -98.4375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -135.703125, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 82, - 'geohash': 'bfr', - 'center': [ - -135.703125, - 58.359375 - ], - 'rectangle': [ - [ - -136.40625, - 57.65625 - ], - [ - -135, - 57.65625 - ], - [ - -135, - 59.0625 - ], - [ - -136.40625, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 84, - 'geohash': 'dnx', - 'center': [ - -79.453125, - 37.265625 - ], - 'rectangle': [ - [ - -80.15625, - 36.5625 - ], - [ - -78.75, - 36.5625 - ], - [ - -78.75, - 37.96875 - ], - [ - -80.15625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 81, - 'geohash': '9yf', - 'center': [ - -97.734375, - 38.671875 - ], - 'rectangle': [ - [ - -98.4375, - 37.96875 - ], - [ - -97.03125, - 37.96875 - ], - [ - -97.03125, - 39.375 - ], - [ - -98.4375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 90, - 'geohash': 'dj9', - 'center': [ - -87.890625, - 31.640625 - ], - 'rectangle': [ - [ - -88.59375, - 30.9375 - ], - [ - -87.1875, - 30.9375 - ], - [ - -87.1875, - 32.34375 - ], - [ - -88.59375, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 107, - 'geohash': '9yj', - 'center': [ - -93.515625, - 34.453125 - ], - 'rectangle': [ - [ - -94.21875, - 33.75 - ], - [ - -92.8125, - 33.75 - ], - [ - -92.8125, - 35.15625 - ], - [ - -94.21875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 97, - 'geohash': 'dpd', - 'center': [ - -86.484375, - 42.890625 - ], - 'rectangle': [ - [ - -87.1875, - 42.1875 - ], - [ - -85.78125, - 42.1875 - ], - [ - -85.78125, - 43.59375 - ], - [ - -87.1875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 93, - 'geohash': '9tz', - 'center': [ - -101.953125, - 33.046875 - ], - 'rectangle': [ - [ - -102.65625, - 32.34375 - ], - [ - -101.25, - 32.34375 - ], - [ - -101.25, - 33.75 - ], - [ - -102.65625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 96, - 'geohash': '9yg', - 'center': [ - -96.328125, - 38.671875 - ], - 'rectangle': [ - [ - -97.03125, - 37.96875 - ], - [ - -95.625, - 37.96875 - ], - [ - -95.625, - 39.375 - ], - [ - -97.03125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 96, - 'geohash': 'c2k', - 'center': [ - -117.421875, - 47.109375 - ], - 'rectangle': [ - [ - -118.125, - 46.40625 - ], - [ - -116.71875, - 46.40625 - ], - [ - -116.71875, - 47.8125 - ], - [ - -118.125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 77, - 'geohash': '9yh', - 'center': [ - -94.921875, - 34.453125 - ], - 'rectangle': [ - [ - -95.625, - 33.75 - ], - [ - -94.21875, - 33.75 - ], - [ - -94.21875, - 35.15625 - ], - [ - -95.625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 93, - 'geohash': 'c8x', - 'center': [ - -101.953125, - 48.515625 - ], - 'rectangle': [ - [ - -102.65625, - 47.8125 - ], - [ - -101.25, - 47.8125 - ], - [ - -101.25, - 49.21875 - ], - [ - -102.65625, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 26.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 110, - 'geohash': '9ud', - 'center': [ - -97.734375, - 26.015625 - ], - 'rectangle': [ - [ - -98.4375, - 25.3125 - ], - [ - -97.03125, - 25.3125 - ], - [ - -97.03125, - 26.71875 - ], - [ - -98.4375, - 26.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 86, - 'geohash': '9zz', - 'center': [ - -90.703125, - 44.296875 - ], - 'rectangle': [ - [ - -91.40625, - 43.59375 - ], - [ - -90, - 43.59375 - ], - [ - -90, - 45 - ], - [ - -91.40625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 88, - 'geohash': '9wz', - 'center': [ - -101.953125, - 38.671875 - ], - 'rectangle': [ - [ - -102.65625, - 37.96875 - ], - [ - -101.25, - 37.96875 - ], - [ - -101.25, - 39.375 - ], - [ - -102.65625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 98, - 'geohash': '9t9', - 'center': [ - -110.390625, - 31.640625 - ], - 'rectangle': [ - [ - -111.09375, - 30.9375 - ], - [ - -109.6875, - 30.9375 - ], - [ - -109.6875, - 32.34375 - ], - [ - -111.09375, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -134.296875, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 87, - 'geohash': 'c40', - 'center': [ - -134.296875, - 56.953125 - ], - 'rectangle': [ - [ - -135, - 56.25 - ], - [ - -133.59375, - 56.25 - ], - [ - -133.59375, - 57.65625 - ], - [ - -135, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 88, - 'geohash': '9yv', - 'center': [ - -93.515625, - 38.671875 - ], - 'rectangle': [ - [ - -94.21875, - 37.96875 - ], - [ - -92.8125, - 37.96875 - ], - [ - -92.8125, - 39.375 - ], - [ - -94.21875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 90, - 'geohash': '9w1', - 'center': [ - -110.390625, - 34.453125 - ], - 'rectangle': [ - [ - -111.09375, - 33.75 - ], - [ - -109.6875, - 33.75 - ], - [ - -109.6875, - 35.15625 - ], - [ - -111.09375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -71.015625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 91, - 'geohash': 'drv', - 'center': [ - -71.015625, - 44.296875 - ], - 'rectangle': [ - [ - -71.71875, - 43.59375 - ], - [ - -70.3125, - 43.59375 - ], - [ - -70.3125, - 45 - ], - [ - -71.71875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 88, - 'geohash': 'djw', - 'center': [ - -80.859375, - 31.640625 - ], - 'rectangle': [ - [ - -81.5625, - 30.9375 - ], - [ - -80.15625, - 30.9375 - ], - [ - -80.15625, - 32.34375 - ], - [ - -81.5625, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 89, - 'geohash': '9wr', - 'center': [ - -101.953125, - 35.859375 - ], - 'rectangle': [ - [ - -102.65625, - 35.15625 - ], - [ - -101.25, - 35.15625 - ], - [ - -101.25, - 36.5625 - ], - [ - -102.65625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 88, - 'geohash': '9v5', - 'center': [ - -96.328125, - 28.828125 - ], - 'rectangle': [ - [ - -97.03125, - 28.125 - ], - [ - -95.625, - 28.125 - ], - [ - -95.625, - 29.53125 - ], - [ - -97.03125, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 90, - 'geohash': '9vt', - 'center': [ - -93.515625, - 31.640625 - ], - 'rectangle': [ - [ - -94.21875, - 30.9375 - ], - [ - -92.8125, - 30.9375 - ], - [ - -92.8125, - 32.34375 - ], - [ - -94.21875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 88, - 'geohash': 'cbh', - 'center': [ - -94.921875, - 45.703125 - ], - 'rectangle': [ - [ - -95.625, - 45 - ], - [ - -94.21875, - 45 - ], - [ - -94.21875, - 46.40625 - ], - [ - -95.625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 69, - 'geohash': '9wx', - 'center': [ - -101.953125, - 37.265625 - ], - 'rectangle': [ - [ - -102.65625, - 36.5625 - ], - [ - -101.25, - 36.5625 - ], - [ - -101.25, - 37.96875 - ], - [ - -102.65625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 70, - 'geohash': '9xy', - 'center': [ - -103.359375, - 44.296875 - ], - 'rectangle': [ - [ - -104.0625, - 43.59375 - ], - [ - -102.65625, - 43.59375 - ], - [ - -102.65625, - 45 - ], - [ - -104.0625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 72, - 'geohash': 'c80', - 'center': [ - -111.796875, - 45.703125 - ], - 'rectangle': [ - [ - -112.5, - 45 - ], - [ - -111.09375, - 45 - ], - [ - -111.09375, - 46.40625 - ], - [ - -112.5, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 79, - 'geohash': '9vs', - 'center': [ - -94.921875, - 31.640625 - ], - 'rectangle': [ - [ - -95.625, - 30.9375 - ], - [ - -94.21875, - 30.9375 - ], - [ - -94.21875, - 32.34375 - ], - [ - -95.625, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 75, - 'geohash': 'cb1', - 'center': [ - -99.140625, - 45.703125 - ], - 'rectangle': [ - [ - -99.84375, - 45 - ], - [ - -98.4375, - 45 - ], - [ - -98.4375, - 46.40625 - ], - [ - -99.84375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 88, - 'geohash': 'c24', - 'center': [ - -120.234375, - 45.703125 - ], - 'rectangle': [ - [ - -120.9375, - 45 - ], - [ - -119.53125, - 45 - ], - [ - -119.53125, - 46.40625 - ], - [ - -120.9375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -85.078125, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 75, - 'geohash': 'dj7', - 'center': [ - -85.078125, - 30.234375 - ], - 'rectangle': [ - [ - -85.78125, - 29.53125 - ], - [ - -84.375, - 29.53125 - ], - [ - -84.375, - 30.9375 - ], - [ - -85.78125, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 79, - 'geohash': 'b6v', - 'center': [ - -161.015625, - 61.171875 - ], - 'rectangle': [ - [ - -161.71875, - 60.46875 - ], - [ - -160.3125, - 60.46875 - ], - [ - -160.3125, - 61.875 - ], - [ - -161.71875, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 74, - 'geohash': '9we', - 'center': [ - -107.578125, - 37.265625 - ], - 'rectangle': [ - [ - -108.28125, - 36.5625 - ], - [ - -106.875, - 36.5625 - ], - [ - -106.875, - 37.96875 - ], - [ - -108.28125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 68, - 'geohash': '9q6', - 'center': [ - -120.234375, - 35.859375 - ], - 'rectangle': [ - [ - -120.9375, - 35.15625 - ], - [ - -119.53125, - 35.15625 - ], - [ - -119.53125, - 36.5625 - ], - [ - -120.9375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 84, - 'geohash': '9x0', - 'center': [ - -111.796875, - 40.078125 - ], - 'rectangle': [ - [ - -112.5, - 39.375 - ], - [ - -111.09375, - 39.375 - ], - [ - -111.09375, - 40.78125 - ], - [ - -112.5, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 75, - 'geohash': 'dj6', - 'center': [ - -86.484375, - 30.234375 - ], - 'rectangle': [ - [ - -87.1875, - 29.53125 - ], - [ - -85.78125, - 29.53125 - ], - [ - -85.78125, - 30.9375 - ], - [ - -87.1875, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 66, - 'geohash': '9mv', - 'center': [ - -116.015625, - 33.046875 - ], - 'rectangle': [ - [ - -116.71875, - 32.34375 - ], - [ - -115.3125, - 32.34375 - ], - [ - -115.3125, - 33.75 - ], - [ - -116.71875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 74, - 'geohash': '9z9', - 'center': [ - -99.140625, - 42.890625 - ], - 'rectangle': [ - [ - -99.84375, - 42.1875 - ], - [ - -98.4375, - 42.1875 - ], - [ - -98.4375, - 43.59375 - ], - [ - -99.84375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 84, - 'geohash': '9qe', - 'center': [ - -118.828125, - 37.265625 - ], - 'rectangle': [ - [ - -119.53125, - 36.5625 - ], - [ - -118.125, - 36.5625 - ], - [ - -118.125, - 37.96875 - ], - [ - -119.53125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 57, - 'geohash': 'cb6', - 'center': [ - -97.734375, - 47.109375 - ], - 'rectangle': [ - [ - -98.4375, - 46.40625 - ], - [ - -97.03125, - 46.40625 - ], - [ - -97.03125, - 47.8125 - ], - [ - -98.4375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -155.390625, - 20.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 81, - 'geohash': '8e9', - 'center': [ - -155.390625, - 20.390625 - ], - 'rectangle': [ - [ - -156.09375, - 19.6875 - ], - [ - -154.6875, - 19.6875 - ], - [ - -154.6875, - 21.09375 - ], - [ - -156.09375, - 21.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 69, - 'geohash': 'c26', - 'center': [ - -120.234375, - 47.109375 - ], - 'rectangle': [ - [ - -120.9375, - 46.40625 - ], - [ - -119.53125, - 46.40625 - ], - [ - -119.53125, - 47.8125 - ], - [ - -120.9375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 75, - 'geohash': '9xr', - 'center': [ - -101.953125, - 41.484375 - ], - 'rectangle': [ - [ - -102.65625, - 40.78125 - ], - [ - -101.25, - 40.78125 - ], - [ - -101.25, - 42.1875 - ], - [ - -102.65625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 75, - 'geohash': 'bd7', - 'center': [ - -152.578125, - 58.359375 - ], - 'rectangle': [ - [ - -153.28125, - 57.65625 - ], - [ - -151.875, - 57.65625 - ], - [ - -151.875, - 59.0625 - ], - [ - -153.28125, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 69, - 'geohash': '9x2', - 'center': [ - -111.796875, - 41.484375 - ], - 'rectangle': [ - [ - -112.5, - 40.78125 - ], - [ - -111.09375, - 40.78125 - ], - [ - -111.09375, - 42.1875 - ], - [ - -112.5, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 76, - 'geohash': 'c88', - 'center': [ - -111.796875, - 48.515625 - ], - 'rectangle': [ - [ - -112.5, - 47.8125 - ], - [ - -111.09375, - 47.8125 - ], - [ - -111.09375, - 49.21875 - ], - [ - -112.5, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 65, - 'geohash': 'c2p', - 'center': [ - -113.203125, - 45.703125 - ], - 'rectangle': [ - [ - -113.90625, - 45 - ], - [ - -112.5, - 45 - ], - [ - -112.5, - 46.40625 - ], - [ - -113.90625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 73, - 'geohash': '9r3', - 'center': [ - -121.640625, - 41.484375 - ], - 'rectangle': [ - [ - -122.34375, - 40.78125 - ], - [ - -120.9375, - 40.78125 - ], - [ - -120.9375, - 42.1875 - ], - [ - -122.34375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -69.609375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 65, - 'geohash': 'f2n', - 'center': [ - -69.609375, - 45.703125 - ], - 'rectangle': [ - [ - -70.3125, - 45 - ], - [ - -68.90625, - 45 - ], - [ - -68.90625, - 46.40625 - ], - [ - -70.3125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 77, - 'geohash': 'c25', - 'center': [ - -118.828125, - 45.703125 - ], - 'rectangle': [ - [ - -119.53125, - 45 - ], - [ - -118.125, - 45 - ], - [ - -118.125, - 46.40625 - ], - [ - -119.53125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 78, - 'geohash': 'dny', - 'center': [ - -80.859375, - 38.671875 - ], - 'rectangle': [ - [ - -81.5625, - 37.96875 - ], - [ - -80.15625, - 37.96875 - ], - [ - -80.15625, - 39.375 - ], - [ - -81.5625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 66, - 'geohash': '9yt', - 'center': [ - -93.515625, - 37.265625 - ], - 'rectangle': [ - [ - -94.21875, - 36.5625 - ], - [ - -92.8125, - 36.5625 - ], - [ - -92.8125, - 37.96875 - ], - [ - -94.21875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 71, - 'geohash': '9ye', - 'center': [ - -96.328125, - 37.265625 - ], - 'rectangle': [ - [ - -97.03125, - 36.5625 - ], - [ - -95.625, - 36.5625 - ], - [ - -95.625, - 37.96875 - ], - [ - -97.03125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 69, - 'geohash': '9v3', - 'center': [ - -99.140625, - 30.234375 - ], - 'rectangle': [ - [ - -99.84375, - 29.53125 - ], - [ - -98.4375, - 29.53125 - ], - [ - -98.4375, - 30.9375 - ], - [ - -99.84375, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 85, - 'geohash': '9qx', - 'center': [ - -113.203125, - 37.265625 - ], - 'rectangle': [ - [ - -113.90625, - 36.5625 - ], - [ - -112.5, - 36.5625 - ], - [ - -112.5, - 37.96875 - ], - [ - -113.90625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 78, - 'geohash': '9zb', - 'center': [ - -100.546875, - 44.296875 - ], - 'rectangle': [ - [ - -101.25, - 43.59375 - ], - [ - -99.84375, - 43.59375 - ], - [ - -99.84375, - 45 - ], - [ - -101.25, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 26.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 82, - 'geohash': 'dhx', - 'center': [ - -79.453125, - 26.015625 - ], - 'rectangle': [ - [ - -80.15625, - 25.3125 - ], - [ - -78.75, - 25.3125 - ], - [ - -78.75, - 26.71875 - ], - [ - -80.15625, - 26.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 76, - 'geohash': '9q4', - 'center': [ - -120.234375, - 34.453125 - ], - 'rectangle': [ - [ - -120.9375, - 33.75 - ], - [ - -119.53125, - 33.75 - ], - [ - -119.53125, - 35.15625 - ], - [ - -120.9375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 64, - 'geohash': 'b6p', - 'center': [ - -158.203125, - 56.953125 - ], - 'rectangle': [ - [ - -158.90625, - 56.25 - ], - [ - -157.5, - 56.25 - ], - [ - -157.5, - 57.65625 - ], - [ - -158.90625, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 79, - 'geohash': '9w0', - 'center': [ - -111.796875, - 34.453125 - ], - 'rectangle': [ - [ - -112.5, - 33.75 - ], - [ - -111.09375, - 33.75 - ], - [ - -111.09375, - 35.15625 - ], - [ - -112.5, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 64, - 'geohash': '9ve', - 'center': [ - -96.328125, - 31.640625 - ], - 'rectangle': [ - [ - -97.03125, - 30.9375 - ], - [ - -95.625, - 30.9375 - ], - [ - -95.625, - 32.34375 - ], - [ - -97.03125, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 76, - 'geohash': 'c8p', - 'center': [ - -101.953125, - 45.703125 - ], - 'rectangle': [ - [ - -102.65625, - 45 - ], - [ - -101.25, - 45 - ], - [ - -101.25, - 46.40625 - ], - [ - -102.65625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 65, - 'geohash': '9r8', - 'center': [ - -123.046875, - 42.890625 - ], - 'rectangle': [ - [ - -123.75, - 42.1875 - ], - [ - -122.34375, - 42.1875 - ], - [ - -122.34375, - 43.59375 - ], - [ - -123.75, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 74, - 'geohash': 'f01', - 'center': [ - -87.890625, - 45.703125 - ], - 'rectangle': [ - [ - -88.59375, - 45 - ], - [ - -87.1875, - 45 - ], - [ - -87.1875, - 46.40625 - ], - [ - -88.59375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 71, - 'geohash': '9x5', - 'center': [ - -107.578125, - 40.078125 - ], - 'rectangle': [ - [ - -108.28125, - 39.375 - ], - [ - -106.875, - 39.375 - ], - [ - -106.875, - 40.78125 - ], - [ - -108.28125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 61, - 'geohash': '9rw', - 'center': [ - -114.609375, - 42.890625 - ], - 'rectangle': [ - [ - -115.3125, - 42.1875 - ], - [ - -113.90625, - 42.1875 - ], - [ - -113.90625, - 43.59375 - ], - [ - -115.3125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 77, - 'geohash': 'cbp', - 'center': [ - -90.703125, - 45.703125 - ], - 'rectangle': [ - [ - -91.40625, - 45 - ], - [ - -90, - 45 - ], - [ - -90, - 46.40625 - ], - [ - -91.40625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 76, - 'geohash': '9ty', - 'center': [ - -103.359375, - 33.046875 - ], - 'rectangle': [ - [ - -104.0625, - 32.34375 - ], - [ - -102.65625, - 32.34375 - ], - [ - -102.65625, - 33.75 - ], - [ - -104.0625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 80, - 'geohash': '9wv', - 'center': [ - -104.765625, - 38.671875 - ], - 'rectangle': [ - [ - -105.46875, - 37.96875 - ], - [ - -104.0625, - 37.96875 - ], - [ - -104.0625, - 39.375 - ], - [ - -105.46875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 64, - 'geohash': '9xz', - 'center': [ - -101.953125, - 44.296875 - ], - 'rectangle': [ - [ - -102.65625, - 43.59375 - ], - [ - -101.25, - 43.59375 - ], - [ - -101.25, - 45 - ], - [ - -102.65625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 72, - 'geohash': '9tx', - 'center': [ - -101.953125, - 31.640625 - ], - 'rectangle': [ - [ - -102.65625, - 30.9375 - ], - [ - -101.25, - 30.9375 - ], - [ - -101.25, - 32.34375 - ], - [ - -102.65625, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 64, - 'geohash': '9tf', - 'center': [ - -108.984375, - 33.046875 - ], - 'rectangle': [ - [ - -109.6875, - 32.34375 - ], - [ - -108.28125, - 32.34375 - ], - [ - -108.28125, - 33.75 - ], - [ - -109.6875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 70, - 'geohash': '9xp', - 'center': [ - -101.953125, - 40.078125 - ], - 'rectangle': [ - [ - -102.65625, - 39.375 - ], - [ - -101.25, - 39.375 - ], - [ - -101.25, - 40.78125 - ], - [ - -102.65625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 59, - 'geohash': '9yx', - 'center': [ - -90.703125, - 37.265625 - ], - 'rectangle': [ - [ - -91.40625, - 36.5625 - ], - [ - -90, - 36.5625 - ], - [ - -90, - 37.96875 - ], - [ - -91.40625, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 67, - 'geohash': 'dpu', - 'center': [ - -83.671875, - 44.296875 - ], - 'rectangle': [ - [ - -84.375, - 43.59375 - ], - [ - -82.96875, - 43.59375 - ], - [ - -82.96875, - 45 - ], - [ - -84.375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 56, - 'geohash': 'f04', - 'center': [ - -86.484375, - 45.703125 - ], - 'rectangle': [ - [ - -87.1875, - 45 - ], - [ - -85.78125, - 45 - ], - [ - -85.78125, - 46.40625 - ], - [ - -87.1875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 69, - 'geohash': '9pr', - 'center': [ - -124.453125, - 41.484375 - ], - 'rectangle': [ - [ - -125.15625, - 40.78125 - ], - [ - -123.75, - 40.78125 - ], - [ - -123.75, - 42.1875 - ], - [ - -125.15625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 58, - 'geohash': '9xn', - 'center': [ - -103.359375, - 40.078125 - ], - 'rectangle': [ - [ - -104.0625, - 39.375 - ], - [ - -102.65625, - 39.375 - ], - [ - -102.65625, - 40.78125 - ], - [ - -104.0625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -135.703125, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 56, - 'geohash': 'bfx', - 'center': [ - -135.703125, - 59.765625 - ], - 'rectangle': [ - [ - -136.40625, - 59.0625 - ], - [ - -135, - 59.0625 - ], - [ - -135, - 60.46875 - ], - [ - -136.40625, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': '9zj', - 'center': [ - -93.515625, - 40.078125 - ], - 'rectangle': [ - [ - -94.21875, - 39.375 - ], - [ - -92.8125, - 39.375 - ], - [ - -92.8125, - 40.78125 - ], - [ - -94.21875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 68, - 'geohash': '9y9', - 'center': [ - -99.140625, - 37.265625 - ], - 'rectangle': [ - [ - -99.84375, - 36.5625 - ], - [ - -98.4375, - 36.5625 - ], - [ - -98.4375, - 37.96875 - ], - [ - -99.84375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 57, - 'geohash': '9xg', - 'center': [ - -107.578125, - 44.296875 - ], - 'rectangle': [ - [ - -108.28125, - 43.59375 - ], - [ - -106.875, - 43.59375 - ], - [ - -106.875, - 45 - ], - [ - -108.28125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 61, - 'geohash': 'djq', - 'center': [ - -80.859375, - 30.234375 - ], - 'rectangle': [ - [ - -81.5625, - 29.53125 - ], - [ - -80.15625, - 29.53125 - ], - [ - -80.15625, - 30.9375 - ], - [ - -81.5625, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 65, - 'geohash': '9w8', - 'center': [ - -111.796875, - 37.265625 - ], - 'rectangle': [ - [ - -112.5, - 36.5625 - ], - [ - -111.09375, - 36.5625 - ], - [ - -111.09375, - 37.96875 - ], - [ - -112.5, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 56, - 'geohash': '9tw', - 'center': [ - -103.359375, - 31.640625 - ], - 'rectangle': [ - [ - -104.0625, - 30.9375 - ], - [ - -102.65625, - 30.9375 - ], - [ - -102.65625, - 32.34375 - ], - [ - -104.0625, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 59, - 'geohash': '9ru', - 'center': [ - -117.421875, - 44.296875 - ], - 'rectangle': [ - [ - -118.125, - 43.59375 - ], - [ - -116.71875, - 43.59375 - ], - [ - -116.71875, - 45 - ], - [ - -118.125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -65.390625, - 17.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 62, - 'geohash': 'de1', - 'center': [ - -65.390625, - 17.578125 - ], - 'rectangle': [ - [ - -66.09375, - 16.875 - ], - [ - -64.6875, - 16.875 - ], - [ - -64.6875, - 18.28125 - ], - [ - -66.09375, - 18.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 77, - 'geohash': '9qn', - 'center': [ - -114.609375, - 34.453125 - ], - 'rectangle': [ - [ - -115.3125, - 33.75 - ], - [ - -113.90625, - 33.75 - ], - [ - -113.90625, - 35.15625 - ], - [ - -115.3125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 62, - 'geohash': '9y2', - 'center': [ - -100.546875, - 35.859375 - ], - 'rectangle': [ - [ - -101.25, - 35.15625 - ], - [ - -99.84375, - 35.15625 - ], - [ - -99.84375, - 36.5625 - ], - [ - -101.25, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 73, - 'geohash': '9rv', - 'center': [ - -116.015625, - 44.296875 - ], - 'rectangle': [ - [ - -116.71875, - 43.59375 - ], - [ - -115.3125, - 43.59375 - ], - [ - -115.3125, - 45 - ], - [ - -116.71875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -163.828125, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 55, - 'geohash': 'b75', - 'center': [ - -163.828125, - 62.578125 - ], - 'rectangle': [ - [ - -164.53125, - 61.875 - ], - [ - -163.125, - 61.875 - ], - [ - -163.125, - 63.28125 - ], - [ - -164.53125, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 59, - 'geohash': '9yb', - 'center': [ - -100.546875, - 38.671875 - ], - 'rectangle': [ - [ - -101.25, - 37.96875 - ], - [ - -99.84375, - 37.96875 - ], - [ - -99.84375, - 39.375 - ], - [ - -101.25, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 62, - 'geohash': 'dpx', - 'center': [ - -79.453125, - 42.890625 - ], - 'rectangle': [ - [ - -80.15625, - 42.1875 - ], - [ - -78.75, - 42.1875 - ], - [ - -78.75, - 43.59375 - ], - [ - -80.15625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 56, - 'geohash': 'dpt', - 'center': [ - -82.265625, - 42.890625 - ], - 'rectangle': [ - [ - -82.96875, - 42.1875 - ], - [ - -81.5625, - 42.1875 - ], - [ - -81.5625, - 43.59375 - ], - [ - -82.96875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 62, - 'geohash': 'c83', - 'center': [ - -110.390625, - 47.109375 - ], - 'rectangle': [ - [ - -111.09375, - 46.40625 - ], - [ - -109.6875, - 46.40625 - ], - [ - -109.6875, - 47.8125 - ], - [ - -111.09375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': 'b6s', - 'center': [ - -162.421875, - 59.765625 - ], - 'rectangle': [ - [ - -163.125, - 59.0625 - ], - [ - -161.71875, - 59.0625 - ], - [ - -161.71875, - 60.46875 - ], - [ - -163.125, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 49, - 'geohash': '9xq', - 'center': [ - -103.359375, - 41.484375 - ], - 'rectangle': [ - [ - -104.0625, - 40.78125 - ], - [ - -102.65625, - 40.78125 - ], - [ - -102.65625, - 42.1875 - ], - [ - -104.0625, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 61, - 'geohash': 'b7n', - 'center': [ - -159.609375, - 62.578125 - ], - 'rectangle': [ - [ - -160.3125, - 61.875 - ], - [ - -158.90625, - 61.875 - ], - [ - -158.90625, - 63.28125 - ], - [ - -160.3125, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 66, - 'geohash': '9rc', - 'center': [ - -121.640625, - 44.296875 - ], - 'rectangle': [ - [ - -122.34375, - 43.59375 - ], - [ - -120.9375, - 43.59375 - ], - [ - -120.9375, - 45 - ], - [ - -122.34375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 61, - 'geohash': '9vh', - 'center': [ - -94.921875, - 28.828125 - ], - 'rectangle': [ - [ - -95.625, - 28.125 - ], - [ - -94.21875, - 28.125 - ], - [ - -94.21875, - 29.53125 - ], - [ - -95.625, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -69.609375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 62, - 'geohash': 'drq', - 'center': [ - -69.609375, - 41.484375 - ], - 'rectangle': [ - [ - -70.3125, - 40.78125 - ], - [ - -68.90625, - 40.78125 - ], - [ - -68.90625, - 42.1875 - ], - [ - -70.3125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': 'cb2', - 'center': [ - -100.546875, - 47.109375 - ], - 'rectangle': [ - [ - -101.25, - 46.40625 - ], - [ - -99.84375, - 46.40625 - ], - [ - -99.84375, - 47.8125 - ], - [ - -101.25, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -134.296875, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 49, - 'geohash': 'c42', - 'center': [ - -134.296875, - 58.359375 - ], - 'rectangle': [ - [ - -135, - 57.65625 - ], - [ - -133.59375, - 57.65625 - ], - [ - -133.59375, - 59.0625 - ], - [ - -135, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 59, - 'geohash': '9xx', - 'center': [ - -101.953125, - 42.890625 - ], - 'rectangle': [ - [ - -102.65625, - 42.1875 - ], - [ - -101.25, - 42.1875 - ], - [ - -101.25, - 43.59375 - ], - [ - -102.65625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 58, - 'geohash': '9tu', - 'center': [ - -106.171875, - 33.046875 - ], - 'rectangle': [ - [ - -106.875, - 32.34375 - ], - [ - -105.46875, - 32.34375 - ], - [ - -105.46875, - 33.75 - ], - [ - -106.875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -96.328125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 52, - 'geohash': 'cbe', - 'center': [ - -96.328125, - 48.515625 - ], - 'rectangle': [ - [ - -97.03125, - 47.8125 - ], - [ - -95.625, - 47.8125 - ], - [ - -95.625, - 49.21875 - ], - [ - -97.03125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -132.890625, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 51, - 'geohash': 'c41', - 'center': [ - -132.890625, - 56.953125 - ], - 'rectangle': [ - [ - -133.59375, - 56.25 - ], - [ - -132.1875, - 56.25 - ], - [ - -132.1875, - 57.65625 - ], - [ - -133.59375, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 52, - 'geohash': '9wm', - 'center': [ - -104.765625, - 35.859375 - ], - 'rectangle': [ - [ - -105.46875, - 35.15625 - ], - [ - -104.0625, - 35.15625 - ], - [ - -104.0625, - 36.5625 - ], - [ - -105.46875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 61, - 'geohash': '9w6', - 'center': [ - -108.984375, - 35.859375 - ], - 'rectangle': [ - [ - -109.6875, - 35.15625 - ], - [ - -108.28125, - 35.15625 - ], - [ - -108.28125, - 36.5625 - ], - [ - -109.6875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': '9wd', - 'center': [ - -108.984375, - 37.265625 - ], - 'rectangle': [ - [ - -109.6875, - 36.5625 - ], - [ - -108.28125, - 36.5625 - ], - [ - -108.28125, - 37.96875 - ], - [ - -109.6875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 56, - 'geohash': 'f0h', - 'center': [ - -83.671875, - 45.703125 - ], - 'rectangle': [ - [ - -84.375, - 45 - ], - [ - -82.96875, - 45 - ], - [ - -82.96875, - 46.40625 - ], - [ - -84.375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 67, - 'geohash': 'c8t', - 'center': [ - -104.765625, - 48.515625 - ], - 'rectangle': [ - [ - -105.46875, - 47.8125 - ], - [ - -104.0625, - 47.8125 - ], - [ - -104.0625, - 49.21875 - ], - [ - -105.46875, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 62, - 'geohash': '9zc', - 'center': [ - -99.140625, - 44.296875 - ], - 'rectangle': [ - [ - -99.84375, - 43.59375 - ], - [ - -98.4375, - 43.59375 - ], - [ - -98.4375, - 45 - ], - [ - -99.84375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 49, - 'geohash': 'cbk', - 'center': [ - -94.921875, - 47.109375 - ], - 'rectangle': [ - [ - -95.625, - 46.40625 - ], - [ - -94.21875, - 46.40625 - ], - [ - -94.21875, - 47.8125 - ], - [ - -95.625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 63, - 'geohash': '9yc', - 'center': [ - -99.140625, - 38.671875 - ], - 'rectangle': [ - [ - -99.84375, - 37.96875 - ], - [ - -98.4375, - 37.96875 - ], - [ - -98.4375, - 39.375 - ], - [ - -99.84375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -155.390625, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 62, - 'geohash': 'bd9', - 'center': [ - -155.390625, - 59.765625 - ], - 'rectangle': [ - [ - -156.09375, - 59.0625 - ], - [ - -154.6875, - 59.0625 - ], - [ - -154.6875, - 60.46875 - ], - [ - -156.09375, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': 'bd2', - 'center': [ - -156.796875, - 58.359375 - ], - 'rectangle': [ - [ - -157.5, - 57.65625 - ], - [ - -156.09375, - 57.65625 - ], - [ - -156.09375, - 59.0625 - ], - [ - -157.5, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 62, - 'geohash': '9wk', - 'center': [ - -106.171875, - 35.859375 - ], - 'rectangle': [ - [ - -106.875, - 35.15625 - ], - [ - -105.46875, - 35.15625 - ], - [ - -105.46875, - 36.5625 - ], - [ - -106.875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 59, - 'geohash': '9r4', - 'center': [ - -120.234375, - 40.078125 - ], - 'rectangle': [ - [ - -120.9375, - 39.375 - ], - [ - -119.53125, - 39.375 - ], - [ - -119.53125, - 40.78125 - ], - [ - -120.9375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 59, - 'geohash': '9xm', - 'center': [ - -104.765625, - 41.484375 - ], - 'rectangle': [ - [ - -105.46875, - 40.78125 - ], - [ - -104.0625, - 40.78125 - ], - [ - -104.0625, - 42.1875 - ], - [ - -105.46875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -97.734375, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 53, - 'geohash': '9v4', - 'center': [ - -97.734375, - 28.828125 - ], - 'rectangle': [ - [ - -98.4375, - 28.125 - ], - [ - -97.03125, - 28.125 - ], - [ - -97.03125, - 29.53125 - ], - [ - -98.4375, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 47, - 'geohash': '9x9', - 'center': [ - -110.390625, - 42.890625 - ], - 'rectangle': [ - [ - -111.09375, - 42.1875 - ], - [ - -109.6875, - 42.1875 - ], - [ - -109.6875, - 43.59375 - ], - [ - -111.09375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 55, - 'geohash': '9pp', - 'center': [ - -124.453125, - 40.078125 - ], - 'rectangle': [ - [ - -125.15625, - 39.375 - ], - [ - -123.75, - 39.375 - ], - [ - -123.75, - 40.78125 - ], - [ - -125.15625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 50, - 'geohash': 'cb0', - 'center': [ - -100.546875, - 45.703125 - ], - 'rectangle': [ - [ - -101.25, - 45 - ], - [ - -99.84375, - 45 - ], - [ - -99.84375, - 46.40625 - ], - [ - -101.25, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 61, - 'geohash': 'c89', - 'center': [ - -110.390625, - 48.515625 - ], - 'rectangle': [ - [ - -111.09375, - 47.8125 - ], - [ - -109.6875, - 47.8125 - ], - [ - -109.6875, - 49.21875 - ], - [ - -111.09375, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 50, - 'geohash': '9v9', - 'center': [ - -99.140625, - 31.640625 - ], - 'rectangle': [ - [ - -99.84375, - 30.9375 - ], - [ - -98.4375, - 30.9375 - ], - [ - -98.4375, - 32.34375 - ], - [ - -99.84375, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 49, - 'geohash': '9qw', - 'center': [ - -114.609375, - 37.265625 - ], - 'rectangle': [ - [ - -115.3125, - 36.5625 - ], - [ - -113.90625, - 36.5625 - ], - [ - -113.90625, - 37.96875 - ], - [ - -115.3125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -68.203125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 50, - 'geohash': 'f2p', - 'center': [ - -68.203125, - 45.703125 - ], - 'rectangle': [ - [ - -68.90625, - 45 - ], - [ - -67.5, - 45 - ], - [ - -67.5, - 46.40625 - ], - [ - -68.90625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': 'b7t', - 'center': [ - -161.015625, - 65.390625 - ], - 'rectangle': [ - [ - -161.71875, - 64.6875 - ], - [ - -160.3125, - 64.6875 - ], - [ - -160.3125, - 66.09375 - ], - [ - -161.71875, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 49, - 'geohash': 'cbm', - 'center': [ - -93.515625, - 47.109375 - ], - 'rectangle': [ - [ - -94.21875, - 46.40625 - ], - [ - -92.8125, - 46.40625 - ], - [ - -92.8125, - 47.8125 - ], - [ - -94.21875, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 44, - 'geohash': 'bd8', - 'center': [ - -156.796875, - 59.765625 - ], - 'rectangle': [ - [ - -157.5, - 59.0625 - ], - [ - -156.09375, - 59.0625 - ], - [ - -156.09375, - 60.46875 - ], - [ - -157.5, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 53, - 'geohash': 'c2s', - 'center': [ - -117.421875, - 48.515625 - ], - 'rectangle': [ - [ - -118.125, - 47.8125 - ], - [ - -116.71875, - 47.8125 - ], - [ - -116.71875, - 49.21875 - ], - [ - -118.125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 55, - 'geohash': 'b7k', - 'center': [ - -162.421875, - 63.984375 - ], - 'rectangle': [ - [ - -163.125, - 63.28125 - ], - [ - -161.71875, - 63.28125 - ], - [ - -161.71875, - 64.6875 - ], - [ - -163.125, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -68.203125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 53, - 'geohash': 'drz', - 'center': [ - -68.203125, - 44.296875 - ], - 'rectangle': [ - [ - -68.90625, - 43.59375 - ], - [ - -67.5, - 43.59375 - ], - [ - -67.5, - 45 - ], - [ - -68.90625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': '9wu', - 'center': [ - -106.171875, - 38.671875 - ], - 'rectangle': [ - [ - -106.875, - 37.96875 - ], - [ - -105.46875, - 37.96875 - ], - [ - -105.46875, - 39.375 - ], - [ - -106.875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': 'c84', - 'center': [ - -108.984375, - 45.703125 - ], - 'rectangle': [ - [ - -109.6875, - 45 - ], - [ - -108.28125, - 45 - ], - [ - -108.28125, - 46.40625 - ], - [ - -109.6875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 53, - 'geohash': 'c8d', - 'center': [ - -108.984375, - 48.515625 - ], - 'rectangle': [ - [ - -109.6875, - 47.8125 - ], - [ - -108.28125, - 47.8125 - ], - [ - -108.28125, - 49.21875 - ], - [ - -109.6875, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 52, - 'geohash': '9y0', - 'center': [ - -100.546875, - 34.453125 - ], - 'rectangle': [ - [ - -101.25, - 33.75 - ], - [ - -99.84375, - 33.75 - ], - [ - -99.84375, - 35.15625 - ], - [ - -101.25, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 59, - 'geohash': '9wh', - 'center': [ - -106.171875, - 34.453125 - ], - 'rectangle': [ - [ - -106.875, - 33.75 - ], - [ - -105.46875, - 33.75 - ], - [ - -105.46875, - 35.15625 - ], - [ - -106.875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 47, - 'geohash': '9xw', - 'center': [ - -103.359375, - 42.890625 - ], - 'rectangle': [ - [ - -104.0625, - 42.1875 - ], - [ - -102.65625, - 42.1875 - ], - [ - -102.65625, - 43.59375 - ], - [ - -104.0625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -79.453125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 61, - 'geohash': 'dnz', - 'center': [ - -79.453125, - 38.671875 - ], - 'rectangle': [ - [ - -80.15625, - 37.96875 - ], - [ - -78.75, - 37.96875 - ], - [ - -78.75, - 39.375 - ], - [ - -80.15625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 46, - 'geohash': '9ts', - 'center': [ - -106.171875, - 31.640625 - ], - 'rectangle': [ - [ - -106.875, - 30.9375 - ], - [ - -105.46875, - 30.9375 - ], - [ - -105.46875, - 32.34375 - ], - [ - -106.875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 43, - 'geohash': '9xh', - 'center': [ - -106.171875, - 40.078125 - ], - 'rectangle': [ - [ - -106.875, - 39.375 - ], - [ - -105.46875, - 39.375 - ], - [ - -105.46875, - 40.78125 - ], - [ - -106.875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': 'c2d', - 'center': [ - -120.234375, - 48.515625 - ], - 'rectangle': [ - [ - -120.9375, - 47.8125 - ], - [ - -119.53125, - 47.8125 - ], - [ - -119.53125, - 49.21875 - ], - [ - -120.9375, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 37, - 'geohash': 'bdb', - 'center': [ - -156.796875, - 61.171875 - ], - 'rectangle': [ - [ - -157.5, - 60.46875 - ], - [ - -156.09375, - 60.46875 - ], - [ - -156.09375, - 61.875 - ], - [ - -157.5, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 26.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 49, - 'geohash': 'dht', - 'center': [ - -82.265625, - 26.015625 - ], - 'rectangle': [ - [ - -82.96875, - 25.3125 - ], - [ - -81.5625, - 25.3125 - ], - [ - -81.5625, - 26.71875 - ], - [ - -82.96875, - 26.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 43, - 'geohash': 'c8q', - 'center': [ - -103.359375, - 47.109375 - ], - 'rectangle': [ - [ - -104.0625, - 46.40625 - ], - [ - -102.65625, - 46.40625 - ], - [ - -102.65625, - 47.8125 - ], - [ - -104.0625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -86.484375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 52, - 'geohash': 'dpf', - 'center': [ - -86.484375, - 44.296875 - ], - 'rectangle': [ - [ - -87.1875, - 43.59375 - ], - [ - -85.78125, - 43.59375 - ], - [ - -85.78125, - 45 - ], - [ - -87.1875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 47, - 'geohash': 'cb8', - 'center': [ - -100.546875, - 48.515625 - ], - 'rectangle': [ - [ - -101.25, - 47.8125 - ], - [ - -99.84375, - 47.8125 - ], - [ - -99.84375, - 49.21875 - ], - [ - -101.25, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 48, - 'geohash': '9x1', - 'center': [ - -110.390625, - 40.078125 - ], - 'rectangle': [ - [ - -111.09375, - 39.375 - ], - [ - -109.6875, - 39.375 - ], - [ - -109.6875, - 40.78125 - ], - [ - -111.09375, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': 'b6r', - 'center': [ - -158.203125, - 58.359375 - ], - 'rectangle': [ - [ - -158.90625, - 57.65625 - ], - [ - -157.5, - 57.65625 - ], - [ - -157.5, - 59.0625 - ], - [ - -158.90625, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 43, - 'geohash': '9tg', - 'center': [ - -107.578125, - 33.046875 - ], - 'rectangle': [ - [ - -108.28125, - 32.34375 - ], - [ - -106.875, - 32.34375 - ], - [ - -106.875, - 33.75 - ], - [ - -108.28125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 20.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 48, - 'geohash': '8e8', - 'center': [ - -156.796875, - 20.390625 - ], - 'rectangle': [ - [ - -157.5, - 19.6875 - ], - [ - -156.09375, - 19.6875 - ], - [ - -156.09375, - 21.09375 - ], - [ - -157.5, - 21.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 47, - 'geohash': 'dq1', - 'center': [ - -76.640625, - 34.453125 - ], - 'rectangle': [ - [ - -77.34375, - 33.75 - ], - [ - -75.9375, - 33.75 - ], - [ - -75.9375, - 35.15625 - ], - [ - -77.34375, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 49, - 'geohash': 'c81', - 'center': [ - -110.390625, - 45.703125 - ], - 'rectangle': [ - [ - -111.09375, - 45 - ], - [ - -109.6875, - 45 - ], - [ - -109.6875, - 46.40625 - ], - [ - -111.09375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 50, - 'geohash': 'c29', - 'center': [ - -121.640625, - 48.515625 - ], - 'rectangle': [ - [ - -122.34375, - 47.8125 - ], - [ - -120.9375, - 47.8125 - ], - [ - -120.9375, - 49.21875 - ], - [ - -122.34375, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 47, - 'geohash': 'bds', - 'center': [ - -151.171875, - 59.765625 - ], - 'rectangle': [ - [ - -151.875, - 59.0625 - ], - [ - -150.46875, - 59.0625 - ], - [ - -150.46875, - 60.46875 - ], - [ - -151.875, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 39, - 'geohash': '9ws', - 'center': [ - -106.171875, - 37.265625 - ], - 'rectangle': [ - [ - -106.875, - 36.5625 - ], - [ - -105.46875, - 36.5625 - ], - [ - -105.46875, - 37.96875 - ], - [ - -106.875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 44, - 'geohash': 'c8m', - 'center': [ - -104.765625, - 47.109375 - ], - 'rectangle': [ - [ - -105.46875, - 46.40625 - ], - [ - -104.0625, - 46.40625 - ], - [ - -104.0625, - 47.8125 - ], - [ - -105.46875, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 54, - 'geohash': 'c0p', - 'center': [ - -124.453125, - 45.703125 - ], - 'rectangle': [ - [ - -125.15625, - 45 - ], - [ - -123.75, - 45 - ], - [ - -123.75, - 46.40625 - ], - [ - -125.15625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 58, - 'geohash': 'beb', - 'center': [ - -156.796875, - 66.796875 - ], - 'rectangle': [ - [ - -157.5, - 66.09375 - ], - [ - -156.09375, - 66.09375 - ], - [ - -156.09375, - 67.5 - ], - [ - -157.5, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 38, - 'geohash': '9xb', - 'center': [ - -111.796875, - 44.296875 - ], - 'rectangle': [ - [ - -112.5, - 43.59375 - ], - [ - -111.09375, - 43.59375 - ], - [ - -111.09375, - 45 - ], - [ - -112.5, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 47, - 'geohash': '9rt', - 'center': [ - -116.015625, - 42.890625 - ], - 'rectangle': [ - [ - -116.71875, - 42.1875 - ], - [ - -115.3125, - 42.1875 - ], - [ - -115.3125, - 43.59375 - ], - [ - -116.71875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 50, - 'geohash': 'bfb', - 'center': [ - -145.546875, - 61.171875 - ], - 'rectangle': [ - [ - -146.25, - 60.46875 - ], - [ - -144.84375, - 60.46875 - ], - [ - -144.84375, - 61.875 - ], - [ - -146.25, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 48, - 'geohash': '9tq', - 'center': [ - -103.359375, - 30.234375 - ], - 'rectangle': [ - [ - -104.0625, - 29.53125 - ], - [ - -102.65625, - 29.53125 - ], - [ - -102.65625, - 30.9375 - ], - [ - -104.0625, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 39, - 'geohash': 'c86', - 'center': [ - -108.984375, - 47.109375 - ], - 'rectangle': [ - [ - -109.6875, - 46.40625 - ], - [ - -108.28125, - 46.40625 - ], - [ - -108.28125, - 47.8125 - ], - [ - -109.6875, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': '9r6', - 'center': [ - -120.234375, - 41.484375 - ], - 'rectangle': [ - [ - -120.9375, - 40.78125 - ], - [ - -119.53125, - 40.78125 - ], - [ - -119.53125, - 42.1875 - ], - [ - -120.9375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 42, - 'geohash': 'cb9', - 'center': [ - -99.140625, - 48.515625 - ], - 'rectangle': [ - [ - -99.84375, - 47.8125 - ], - [ - -98.4375, - 47.8125 - ], - [ - -98.4375, - 49.21875 - ], - [ - -99.84375, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 44, - 'geohash': 'dq6', - 'center': [ - -75.234375, - 35.859375 - ], - 'rectangle': [ - [ - -75.9375, - 35.15625 - ], - [ - -74.53125, - 35.15625 - ], - [ - -74.53125, - 36.5625 - ], - [ - -75.9375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 38, - 'geohash': '9px', - 'center': [ - -124.453125, - 42.890625 - ], - 'rectangle': [ - [ - -125.15625, - 42.1875 - ], - [ - -123.75, - 42.1875 - ], - [ - -123.75, - 43.59375 - ], - [ - -125.15625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -153.984375, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 39, - 'geohash': 'bd4', - 'center': [ - -153.984375, - 56.953125 - ], - 'rectangle': [ - [ - -154.6875, - 56.25 - ], - [ - -153.28125, - 56.25 - ], - [ - -153.28125, - 57.65625 - ], - [ - -154.6875, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 44, - 'geohash': '9my', - 'center': [ - -114.609375, - 33.046875 - ], - 'rectangle': [ - [ - -115.3125, - 32.34375 - ], - [ - -113.90625, - 32.34375 - ], - [ - -113.90625, - 33.75 - ], - [ - -115.3125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 21.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 40, - 'geohash': '87z', - 'center': [ - -158.203125, - 21.796875 - ], - 'rectangle': [ - [ - -158.90625, - 21.09375 - ], - [ - -157.5, - 21.09375 - ], - [ - -157.5, - 22.5 - ], - [ - -158.90625, - 22.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 40, - 'geohash': 'c2m', - 'center': [ - -116.015625, - 47.109375 - ], - 'rectangle': [ - [ - -116.71875, - 46.40625 - ], - [ - -115.3125, - 46.40625 - ], - [ - -115.3125, - 47.8125 - ], - [ - -116.71875, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 38, - 'geohash': '9x3', - 'center': [ - -110.390625, - 41.484375 - ], - 'rectangle': [ - [ - -111.09375, - 40.78125 - ], - [ - -109.6875, - 40.78125 - ], - [ - -109.6875, - 42.1875 - ], - [ - -111.09375, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': '9w2', - 'center': [ - -111.796875, - 35.859375 - ], - 'rectangle': [ - [ - -112.5, - 35.15625 - ], - [ - -111.09375, - 35.15625 - ], - [ - -111.09375, - 36.5625 - ], - [ - -112.5, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 40, - 'geohash': '9pz', - 'center': [ - -124.453125, - 44.296875 - ], - 'rectangle': [ - [ - -125.15625, - 43.59375 - ], - [ - -123.75, - 43.59375 - ], - [ - -123.75, - 45 - ], - [ - -125.15625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 47, - 'geohash': 'cbr', - 'center': [ - -90.703125, - 47.109375 - ], - 'rectangle': [ - [ - -91.40625, - 46.40625 - ], - [ - -90, - 46.40625 - ], - [ - -90, - 47.8125 - ], - [ - -91.40625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 42, - 'geohash': '9wg', - 'center': [ - -107.578125, - 38.671875 - ], - 'rectangle': [ - [ - -108.28125, - 37.96875 - ], - [ - -106.875, - 37.96875 - ], - [ - -106.875, - 39.375 - ], - [ - -108.28125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 43, - 'geohash': '9vb', - 'center': [ - -100.546875, - 33.046875 - ], - 'rectangle': [ - [ - -101.25, - 32.34375 - ], - [ - -99.84375, - 32.34375 - ], - [ - -99.84375, - 33.75 - ], - [ - -101.25, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 38, - 'geohash': '9z8', - 'center': [ - -100.546875, - 42.890625 - ], - 'rectangle': [ - [ - -101.25, - 42.1875 - ], - [ - -99.84375, - 42.1875 - ], - [ - -99.84375, - 43.59375 - ], - [ - -101.25, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 48, - 'geohash': '9z2', - 'center': [ - -100.546875, - 41.484375 - ], - 'rectangle': [ - [ - -101.25, - 40.78125 - ], - [ - -99.84375, - 40.78125 - ], - [ - -99.84375, - 42.1875 - ], - [ - -101.25, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 48, - 'geohash': '9w4', - 'center': [ - -108.984375, - 34.453125 - ], - 'rectangle': [ - [ - -109.6875, - 33.75 - ], - [ - -108.28125, - 33.75 - ], - [ - -108.28125, - 35.15625 - ], - [ - -109.6875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 37, - 'geohash': '9wc', - 'center': [ - -110.390625, - 38.671875 - ], - 'rectangle': [ - [ - -111.09375, - 37.96875 - ], - [ - -109.6875, - 37.96875 - ], - [ - -109.6875, - 39.375 - ], - [ - -111.09375, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 28, - 'geohash': '9mz', - 'center': [ - -113.203125, - 33.046875 - ], - 'rectangle': [ - [ - -113.90625, - 32.34375 - ], - [ - -112.5, - 32.34375 - ], - [ - -112.5, - 33.75 - ], - [ - -113.90625, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -68.203125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 39, - 'geohash': 'f2r', - 'center': [ - -68.203125, - 47.109375 - ], - 'rectangle': [ - [ - -68.90625, - 46.40625 - ], - [ - -67.5, - 46.40625 - ], - [ - -67.5, - 47.8125 - ], - [ - -68.90625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -131.484375, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 44, - 'geohash': 'c1f', - 'center': [ - -131.484375, - 55.546875 - ], - 'rectangle': [ - [ - -132.1875, - 54.84375 - ], - [ - -130.78125, - 54.84375 - ], - [ - -130.78125, - 56.25 - ], - [ - -132.1875, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -155.390625, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 41, - 'geohash': 'be1', - 'center': [ - -155.390625, - 62.578125 - ], - 'rectangle': [ - [ - -156.09375, - 61.875 - ], - [ - -154.6875, - 61.875 - ], - [ - -154.6875, - 63.28125 - ], - [ - -156.09375, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 46, - 'geohash': '9x8', - 'center': [ - -111.796875, - 42.890625 - ], - 'rectangle': [ - [ - -112.5, - 42.1875 - ], - [ - -111.09375, - 42.1875 - ], - [ - -111.09375, - 43.59375 - ], - [ - -112.5, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 48, - 'geohash': '9rx', - 'center': [ - -113.203125, - 42.890625 - ], - 'rectangle': [ - [ - -113.90625, - 42.1875 - ], - [ - -112.5, - 42.1875 - ], - [ - -112.5, - 43.59375 - ], - [ - -113.90625, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 33, - 'geohash': 'bev', - 'center': [ - -149.765625, - 66.796875 - ], - 'rectangle': [ - [ - -150.46875, - 66.09375 - ], - [ - -149.0625, - 66.09375 - ], - [ - -149.0625, - 67.5 - ], - [ - -150.46875, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': '9wt', - 'center': [ - -104.765625, - 37.265625 - ], - 'rectangle': [ - [ - -105.46875, - 36.5625 - ], - [ - -104.0625, - 36.5625 - ], - [ - -104.0625, - 37.96875 - ], - [ - -105.46875, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 21.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 42, - 'geohash': '87y', - 'center': [ - -159.609375, - 21.796875 - ], - 'rectangle': [ - [ - -160.3125, - 21.09375 - ], - [ - -158.90625, - 21.09375 - ], - [ - -158.90625, - 22.5 - ], - [ - -160.3125, - 22.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 49, - 'geohash': 'drf', - 'center': [ - -75.234375, - 44.296875 - ], - 'rectangle': [ - [ - -75.9375, - 43.59375 - ], - [ - -74.53125, - 43.59375 - ], - [ - -74.53125, - 45 - ], - [ - -75.9375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 32, - 'geohash': 'c2w', - 'center': [ - -114.609375, - 48.515625 - ], - 'rectangle': [ - [ - -115.3125, - 47.8125 - ], - [ - -113.90625, - 47.8125 - ], - [ - -113.90625, - 49.21875 - ], - [ - -115.3125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': 'c2t', - 'center': [ - -116.015625, - 48.515625 - ], - 'rectangle': [ - [ - -116.71875, - 47.8125 - ], - [ - -115.3125, - 47.8125 - ], - [ - -115.3125, - 49.21875 - ], - [ - -116.71875, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 27, - 'geohash': '9r5', - 'center': [ - -118.828125, - 40.078125 - ], - 'rectangle': [ - [ - -119.53125, - 39.375 - ], - [ - -118.125, - 39.375 - ], - [ - -118.125, - 40.78125 - ], - [ - -119.53125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 43, - 'geohash': '9qk', - 'center': [ - -117.421875, - 35.859375 - ], - 'rectangle': [ - [ - -118.125, - 35.15625 - ], - [ - -116.71875, - 35.15625 - ], - [ - -116.71875, - 36.5625 - ], - [ - -118.125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -144.140625, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 37, - 'geohash': 'bg9', - 'center': [ - -144.140625, - 65.390625 - ], - 'rectangle': [ - [ - -144.84375, - 64.6875 - ], - [ - -143.4375, - 64.6875 - ], - [ - -143.4375, - 66.09375 - ], - [ - -144.84375, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': 'c2j', - 'center': [ - -116.015625, - 45.703125 - ], - 'rectangle': [ - [ - -116.71875, - 45 - ], - [ - -115.3125, - 45 - ], - [ - -115.3125, - 46.40625 - ], - [ - -116.71875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 39, - 'geohash': 'c2h', - 'center': [ - -117.421875, - 45.703125 - ], - 'rectangle': [ - [ - -118.125, - 45 - ], - [ - -116.71875, - 45 - ], - [ - -116.71875, - 46.40625 - ], - [ - -118.125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -163.828125, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 37, - 'geohash': 'b6e', - 'center': [ - -163.828125, - 59.765625 - ], - 'rectangle': [ - [ - -164.53125, - 59.0625 - ], - [ - -163.125, - 59.0625 - ], - [ - -163.125, - 60.46875 - ], - [ - -164.53125, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': '9xf', - 'center': [ - -108.984375, - 44.296875 - ], - 'rectangle': [ - [ - -109.6875, - 43.59375 - ], - [ - -108.28125, - 43.59375 - ], - [ - -108.28125, - 45 - ], - [ - -109.6875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': '9wy', - 'center': [ - -103.359375, - 38.671875 - ], - 'rectangle': [ - [ - -104.0625, - 37.96875 - ], - [ - -102.65625, - 37.96875 - ], - [ - -102.65625, - 39.375 - ], - [ - -104.0625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 31, - 'geohash': '9wb', - 'center': [ - -111.796875, - 38.671875 - ], - 'rectangle': [ - [ - -112.5, - 37.96875 - ], - [ - -111.09375, - 37.96875 - ], - [ - -111.09375, - 39.375 - ], - [ - -112.5, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 39, - 'geohash': 'bet', - 'center': [ - -149.765625, - 65.390625 - ], - 'rectangle': [ - [ - -150.46875, - 64.6875 - ], - [ - -149.0625, - 64.6875 - ], - [ - -149.0625, - 66.09375 - ], - [ - -150.46875, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': '9qg', - 'center': [ - -118.828125, - 38.671875 - ], - 'rectangle': [ - [ - -119.53125, - 37.96875 - ], - [ - -118.125, - 37.96875 - ], - [ - -118.125, - 39.375 - ], - [ - -119.53125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 32, - 'geohash': 'c8w', - 'center': [ - -103.359375, - 48.515625 - ], - 'rectangle': [ - [ - -104.0625, - 47.8125 - ], - [ - -102.65625, - 47.8125 - ], - [ - -102.65625, - 49.21875 - ], - [ - -104.0625, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 41, - 'geohash': 'c2e', - 'center': [ - -118.828125, - 48.515625 - ], - 'rectangle': [ - [ - -119.53125, - 47.8125 - ], - [ - -118.125, - 47.8125 - ], - [ - -118.125, - 49.21875 - ], - [ - -119.53125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 14.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': '8f8', - 'center': [ - -145.546875, - 14.765625 - ], - 'rectangle': [ - [ - -146.25, - 14.0625 - ], - [ - -144.84375, - 14.0625 - ], - [ - -144.84375, - 15.46875 - ], - [ - -146.25, - 15.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 46, - 'geohash': 'c8j', - 'center': [ - -104.765625, - 45.703125 - ], - 'rectangle': [ - [ - -105.46875, - 45 - ], - [ - -104.0625, - 45 - ], - [ - -104.0625, - 46.40625 - ], - [ - -105.46875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - 'geohash': '9qs', - 'center': [ - -117.421875, - 37.265625 - ], - 'rectangle': [ - [ - -118.125, - 36.5625 - ], - [ - -116.71875, - 36.5625 - ], - [ - -116.71875, - 37.96875 - ], - [ - -118.125, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -101.953125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 34, - 'geohash': 'c8r', - 'center': [ - -101.953125, - 47.109375 - ], - 'rectangle': [ - [ - -102.65625, - 46.40625 - ], - [ - -101.25, - 46.40625 - ], - [ - -101.25, - 47.8125 - ], - [ - -102.65625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 31, - 'geohash': 'be7', - 'center': [ - -152.578125, - 63.984375 - ], - 'rectangle': [ - [ - -153.28125, - 63.28125 - ], - [ - -151.875, - 63.28125 - ], - [ - -151.875, - 64.6875 - ], - [ - -153.28125, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -66.796875, - 18.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 44, - 'geohash': 'de2', - 'center': [ - -66.796875, - 18.984375 - ], - 'rectangle': [ - [ - -67.5, - 18.28125 - ], - [ - -66.09375, - 18.28125 - ], - [ - -66.09375, - 19.6875 - ], - [ - -67.5, - 19.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 38, - 'geohash': 'bgb', - 'center': [ - -145.546875, - 66.796875 - ], - 'rectangle': [ - [ - -146.25, - 66.09375 - ], - [ - -144.84375, - 66.09375 - ], - [ - -144.84375, - 67.5 - ], - [ - -146.25, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 32, - 'geohash': 'c8h', - 'center': [ - -106.171875, - 45.703125 - ], - 'rectangle': [ - [ - -106.875, - 45 - ], - [ - -105.46875, - 45 - ], - [ - -105.46875, - 46.40625 - ], - [ - -106.875, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 31, - 'geohash': 'bsj', - 'center': [ - -149.765625, - 68.203125 - ], - 'rectangle': [ - [ - -150.46875, - 67.5 - ], - [ - -149.0625, - 67.5 - ], - [ - -149.0625, - 68.90625 - ], - [ - -150.46875, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -141.328125, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 39, - 'geohash': 'bg7', - 'center': [ - -141.328125, - 63.984375 - ], - 'rectangle': [ - [ - -142.03125, - 63.28125 - ], - [ - -140.625, - 63.28125 - ], - [ - -140.625, - 64.6875 - ], - [ - -142.03125, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 25, - 'geohash': '9rq', - 'center': [ - -114.609375, - 41.484375 - ], - 'rectangle': [ - [ - -115.3125, - 40.78125 - ], - [ - -113.90625, - 40.78125 - ], - [ - -113.90625, - 42.1875 - ], - [ - -115.3125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 34, - 'geohash': '9rm', - 'center': [ - -116.015625, - 41.484375 - ], - 'rectangle': [ - [ - -116.71875, - 40.78125 - ], - [ - -115.3125, - 40.78125 - ], - [ - -115.3125, - 42.1875 - ], - [ - -116.71875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 33, - 'geohash': '9xk', - 'center': [ - -106.171875, - 41.484375 - ], - 'rectangle': [ - [ - -106.875, - 40.78125 - ], - [ - -105.46875, - 40.78125 - ], - [ - -105.46875, - 42.1875 - ], - [ - -106.875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 33, - 'geohash': '9xd', - 'center': [ - -108.984375, - 42.890625 - ], - 'rectangle': [ - [ - -109.6875, - 42.1875 - ], - [ - -108.28125, - 42.1875 - ], - [ - -108.28125, - 43.59375 - ], - [ - -109.6875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -93.515625, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 25, - 'geohash': 'cbt', - 'center': [ - -93.515625, - 48.515625 - ], - 'rectangle': [ - [ - -94.21875, - 47.8125 - ], - [ - -92.8125, - 47.8125 - ], - [ - -92.8125, - 49.21875 - ], - [ - -94.21875, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 31, - 'geohash': '9xt', - 'center': [ - -104.765625, - 42.890625 - ], - 'rectangle': [ - [ - -105.46875, - 42.1875 - ], - [ - -104.0625, - 42.1875 - ], - [ - -104.0625, - 43.59375 - ], - [ - -105.46875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 31, - 'geohash': '9x7', - 'center': [ - -107.578125, - 41.484375 - ], - 'rectangle': [ - [ - -108.28125, - 40.78125 - ], - [ - -106.875, - 40.78125 - ], - [ - -106.875, - 42.1875 - ], - [ - -108.28125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 30, - 'geohash': '9x4', - 'center': [ - -108.984375, - 40.078125 - ], - 'rectangle': [ - [ - -109.6875, - 39.375 - ], - [ - -108.28125, - 39.375 - ], - [ - -108.28125, - 40.78125 - ], - [ - -109.6875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': '9rh', - 'center': [ - -117.421875, - 40.078125 - ], - 'rectangle': [ - [ - -118.125, - 39.375 - ], - [ - -116.71875, - 39.375 - ], - [ - -116.71875, - 40.78125 - ], - [ - -118.125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 31, - 'geohash': 'c82', - 'center': [ - -111.796875, - 47.109375 - ], - 'rectangle': [ - [ - -112.5, - 46.40625 - ], - [ - -111.09375, - 46.40625 - ], - [ - -111.09375, - 47.8125 - ], - [ - -112.5, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 38, - 'geohash': 'c21', - 'center': [ - -121.640625, - 45.703125 - ], - 'rectangle': [ - [ - -122.34375, - 45 - ], - [ - -120.9375, - 45 - ], - [ - -120.9375, - 46.40625 - ], - [ - -122.34375, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -142.734375, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 33, - 'geohash': 'bg4', - 'center': [ - -142.734375, - 62.578125 - ], - 'rectangle': [ - [ - -143.4375, - 61.875 - ], - [ - -142.03125, - 61.875 - ], - [ - -142.03125, - 63.28125 - ], - [ - -143.4375, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 30, - 'geohash': '9w9', - 'center': [ - -110.390625, - 37.265625 - ], - 'rectangle': [ - [ - -111.09375, - 36.5625 - ], - [ - -109.6875, - 36.5625 - ], - [ - -109.6875, - 37.96875 - ], - [ - -111.09375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': '9qj', - 'center': [ - -116.015625, - 34.453125 - ], - 'rectangle': [ - [ - -116.71875, - 33.75 - ], - [ - -115.3125, - 33.75 - ], - [ - -115.3125, - 35.15625 - ], - [ - -116.71875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 30, - 'geohash': 'c8s', - 'center': [ - -106.171875, - 48.515625 - ], - 'rectangle': [ - [ - -106.875, - 47.8125 - ], - [ - -105.46875, - 47.8125 - ], - [ - -105.46875, - 49.21875 - ], - [ - -106.875, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 30, - 'geohash': 'c0x', - 'center': [ - -124.453125, - 48.515625 - ], - 'rectangle': [ - [ - -125.15625, - 47.8125 - ], - [ - -123.75, - 47.8125 - ], - [ - -123.75, - 49.21875 - ], - [ - -125.15625, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 27.421875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 41, - 'geohash': '9uc', - 'center': [ - -99.140625, - 27.421875 - ], - 'rectangle': [ - [ - -99.84375, - 26.71875 - ], - [ - -98.4375, - 26.71875 - ], - [ - -98.4375, - 28.125 - ], - [ - -99.84375, - 28.125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 31, - 'geohash': '9td', - 'center': [ - -108.984375, - 31.640625 - ], - 'rectangle': [ - [ - -109.6875, - 30.9375 - ], - [ - -108.28125, - 30.9375 - ], - [ - -108.28125, - 32.34375 - ], - [ - -109.6875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': '9qz', - 'center': [ - -113.203125, - 38.671875 - ], - 'rectangle': [ - [ - -113.90625, - 37.96875 - ], - [ - -112.5, - 37.96875 - ], - [ - -112.5, - 39.375 - ], - [ - -113.90625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -123.046875, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 31, - 'geohash': '9q8', - 'center': [ - -123.046875, - 37.265625 - ], - 'rectangle': [ - [ - -123.75, - 36.5625 - ], - [ - -122.34375, - 36.5625 - ], - [ - -122.34375, - 37.96875 - ], - [ - -123.75, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -153.984375, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 29, - 'geohash': 'bdd', - 'center': [ - -153.984375, - 59.765625 - ], - 'rectangle': [ - [ - -154.6875, - 59.0625 - ], - [ - -153.28125, - 59.0625 - ], - [ - -153.28125, - 60.46875 - ], - [ - -154.6875, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': '9wn', - 'center': [ - -103.359375, - 34.453125 - ], - 'rectangle': [ - [ - -104.0625, - 33.75 - ], - [ - -102.65625, - 33.75 - ], - [ - -102.65625, - 35.15625 - ], - [ - -104.0625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 29, - 'geohash': '9w5', - 'center': [ - -107.578125, - 34.453125 - ], - 'rectangle': [ - [ - -108.28125, - 33.75 - ], - [ - -106.875, - 33.75 - ], - [ - -106.875, - 35.15625 - ], - [ - -108.28125, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 31, - 'geohash': '9wj', - 'center': [ - -104.765625, - 34.453125 - ], - 'rectangle': [ - [ - -105.46875, - 33.75 - ], - [ - -104.0625, - 33.75 - ], - [ - -104.0625, - 35.15625 - ], - [ - -105.46875, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 23, - 'geohash': '9v0', - 'center': [ - -100.546875, - 28.828125 - ], - 'rectangle': [ - [ - -101.25, - 28.125 - ], - [ - -99.84375, - 28.125 - ], - [ - -99.84375, - 29.53125 - ], - [ - -101.25, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 32, - 'geohash': '9tt', - 'center': [ - -104.765625, - 31.640625 - ], - 'rectangle': [ - [ - -105.46875, - 30.9375 - ], - [ - -104.0625, - 30.9375 - ], - [ - -104.0625, - 32.34375 - ], - [ - -105.46875, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 31, - 'geohash': 'c8n', - 'center': [ - -103.359375, - 45.703125 - ], - 'rectangle': [ - [ - -104.0625, - 45 - ], - [ - -102.65625, - 45 - ], - [ - -102.65625, - 46.40625 - ], - [ - -104.0625, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 32, - 'geohash': 'be8', - 'center': [ - -156.796875, - 65.390625 - ], - 'rectangle': [ - [ - -157.5, - 64.6875 - ], - [ - -156.09375, - 64.6875 - ], - [ - -156.09375, - 66.09375 - ], - [ - -157.5, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -165.234375, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 25, - 'geohash': 'b74', - 'center': [ - -165.234375, - 62.578125 - ], - 'rectangle': [ - [ - -165.9375, - 61.875 - ], - [ - -164.53125, - 61.875 - ], - [ - -164.53125, - 63.28125 - ], - [ - -165.9375, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 35, - 'geohash': 'b7m', - 'center': [ - -161.015625, - 63.984375 - ], - 'rectangle': [ - [ - -161.71875, - 63.28125 - ], - [ - -160.3125, - 63.28125 - ], - [ - -160.3125, - 64.6875 - ], - [ - -161.71875, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': 'bem', - 'center': [ - -149.765625, - 63.984375 - ], - 'rectangle': [ - [ - -150.46875, - 63.28125 - ], - [ - -149.0625, - 63.28125 - ], - [ - -149.0625, - 64.6875 - ], - [ - -150.46875, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 31, - 'geohash': 'b79', - 'center': [ - -166.640625, - 65.390625 - ], - 'rectangle': [ - [ - -167.34375, - 64.6875 - ], - [ - -165.9375, - 64.6875 - ], - [ - -165.9375, - 66.09375 - ], - [ - -167.34375, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -103.359375, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 29, - 'geohash': '9wq', - 'center': [ - -103.359375, - 35.859375 - ], - 'rectangle': [ - [ - -104.0625, - 35.15625 - ], - [ - -102.65625, - 35.15625 - ], - [ - -102.65625, - 36.5625 - ], - [ - -104.0625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -169.453125, - 14.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 22, - 'geohash': '84x', - 'center': [ - -169.453125, - 14.765625 - ], - 'rectangle': [ - [ - -170.15625, - 14.0625 - ], - [ - -168.75, - 14.0625 - ], - [ - -168.75, - 15.46875 - ], - [ - -170.15625, - 15.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 37, - 'geohash': 'beu', - 'center': [ - -151.171875, - 66.796875 - ], - 'rectangle': [ - [ - -151.875, - 66.09375 - ], - [ - -150.46875, - 66.09375 - ], - [ - -150.46875, - 67.5 - ], - [ - -151.875, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': '9x6', - 'center': [ - -108.984375, - 41.484375 - ], - 'rectangle': [ - [ - -109.6875, - 40.78125 - ], - [ - -108.28125, - 40.78125 - ], - [ - -108.28125, - 42.1875 - ], - [ - -109.6875, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 31, - 'geohash': 'c0r', - 'center': [ - -124.453125, - 47.109375 - ], - 'rectangle': [ - [ - -125.15625, - 46.40625 - ], - [ - -123.75, - 46.40625 - ], - [ - -123.75, - 47.8125 - ], - [ - -125.15625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -146.953125, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 28, - 'geohash': 'bez', - 'center': [ - -146.953125, - 66.796875 - ], - 'rectangle': [ - [ - -147.65625, - 66.09375 - ], - [ - -146.25, - 66.09375 - ], - [ - -146.25, - 67.5 - ], - [ - -147.65625, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 27, - 'geohash': 'bdu', - 'center': [ - -151.171875, - 61.171875 - ], - 'rectangle': [ - [ - -151.875, - 60.46875 - ], - [ - -150.46875, - 60.46875 - ], - [ - -150.46875, - 61.875 - ], - [ - -151.875, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': 'c2r', - 'center': [ - -113.203125, - 47.109375 - ], - 'rectangle': [ - [ - -113.90625, - 46.40625 - ], - [ - -112.5, - 46.40625 - ], - [ - -112.5, - 47.8125 - ], - [ - -113.90625, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 30, - 'geohash': 'b3u', - 'center': [ - -162.421875, - 55.546875 - ], - 'rectangle': [ - [ - -163.125, - 54.84375 - ], - [ - -161.71875, - 54.84375 - ], - [ - -161.71875, - 56.25 - ], - [ - -163.125, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -66.796875, - 17.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 29, - 'geohash': 'de0', - 'center': [ - -66.796875, - 17.578125 - ], - 'rectangle': [ - [ - -67.5, - 16.875 - ], - [ - -66.09375, - 16.875 - ], - [ - -66.09375, - 18.28125 - ], - [ - -67.5, - 18.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': '9te', - 'center': [ - -107.578125, - 31.640625 - ], - 'rectangle': [ - [ - -108.28125, - 30.9375 - ], - [ - -106.875, - 30.9375 - ], - [ - -106.875, - 32.34375 - ], - [ - -108.28125, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -139.921875, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 31, - 'geohash': 'bfs', - 'center': [ - -139.921875, - 59.765625 - ], - 'rectangle': [ - [ - -140.625, - 59.0625 - ], - [ - -139.21875, - 59.0625 - ], - [ - -139.21875, - 60.46875 - ], - [ - -140.625, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 28, - 'geohash': 'b3y', - 'center': [ - -159.609375, - 55.546875 - ], - 'rectangle': [ - [ - -160.3125, - 54.84375 - ], - [ - -158.90625, - 54.84375 - ], - [ - -158.90625, - 56.25 - ], - [ - -160.3125, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 27, - 'geohash': '9w7', - 'center': [ - -107.578125, - 35.859375 - ], - 'rectangle': [ - [ - -108.28125, - 35.15625 - ], - [ - -106.875, - 35.15625 - ], - [ - -106.875, - 36.5625 - ], - [ - -108.28125, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 71.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 30, - 'geohash': 'bs8', - 'center': [ - -156.796875, - 71.015625 - ], - 'rectangle': [ - [ - -157.5, - 70.3125 - ], - [ - -156.09375, - 70.3125 - ], - [ - -156.09375, - 71.71875 - ], - [ - -157.5, - 71.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 30, - 'geohash': 'b7x', - 'center': [ - -158.203125, - 65.390625 - ], - 'rectangle': [ - [ - -158.90625, - 64.6875 - ], - [ - -157.5, - 64.6875 - ], - [ - -157.5, - 66.09375 - ], - [ - -158.90625, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 41.484375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 28, - 'geohash': '9rk', - 'center': [ - -117.421875, - 41.484375 - ], - 'rectangle': [ - [ - -118.125, - 40.78125 - ], - [ - -116.71875, - 40.78125 - ], - [ - -116.71875, - 42.1875 - ], - [ - -118.125, - 42.1875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -99.140625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': 'cb3', - 'center': [ - -99.140625, - 47.109375 - ], - 'rectangle': [ - [ - -99.84375, - 46.40625 - ], - [ - -98.4375, - 46.40625 - ], - [ - -98.4375, - 47.8125 - ], - [ - -99.84375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -142.734375, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 32, - 'geohash': 'bff', - 'center': [ - -142.734375, - 61.171875 - ], - 'rectangle': [ - [ - -143.4375, - 60.46875 - ], - [ - -142.03125, - 60.46875 - ], - [ - -142.03125, - 61.875 - ], - [ - -143.4375, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 27, - 'geohash': 'b7v', - 'center': [ - -161.015625, - 66.796875 - ], - 'rectangle': [ - [ - -161.71875, - 66.09375 - ], - [ - -160.3125, - 66.09375 - ], - [ - -160.3125, - 67.5 - ], - [ - -161.71875, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 36, - 'geohash': 'b6y', - 'center': [ - -159.609375, - 61.171875 - ], - 'rectangle': [ - [ - -160.3125, - 60.46875 - ], - [ - -158.90625, - 60.46875 - ], - [ - -158.90625, - 61.875 - ], - [ - -160.3125, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 21.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 28, - 'geohash': '8eb', - 'center': [ - -156.796875, - 21.796875 - ], - 'rectangle': [ - [ - -157.5, - 21.09375 - ], - [ - -156.09375, - 21.09375 - ], - [ - -156.09375, - 22.5 - ], - [ - -157.5, - 22.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 23, - 'geohash': 'c8k', - 'center': [ - -106.171875, - 47.109375 - ], - 'rectangle': [ - [ - -106.875, - 46.40625 - ], - [ - -105.46875, - 46.40625 - ], - [ - -105.46875, - 47.8125 - ], - [ - -106.875, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -108.984375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 20, - 'geohash': '9wf', - 'center': [ - -108.984375, - 38.671875 - ], - 'rectangle': [ - [ - -109.6875, - 37.96875 - ], - [ - -108.28125, - 37.96875 - ], - [ - -108.28125, - 39.375 - ], - [ - -109.6875, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -92.109375, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 24, - 'geohash': 'cbw', - 'center': [ - -92.109375, - 48.515625 - ], - 'rectangle': [ - [ - -92.8125, - 47.8125 - ], - [ - -91.40625, - 47.8125 - ], - [ - -91.40625, - 49.21875 - ], - [ - -92.8125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -163.828125, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 29, - 'geohash': 'b7e', - 'center': [ - -163.828125, - 65.390625 - ], - 'rectangle': [ - [ - -164.53125, - 64.6875 - ], - [ - -163.125, - 64.6875 - ], - [ - -163.125, - 66.09375 - ], - [ - -164.53125, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 22, - 'geohash': 'b3v', - 'center': [ - -161.015625, - 55.546875 - ], - 'rectangle': [ - [ - -161.71875, - 54.84375 - ], - [ - -160.3125, - 54.84375 - ], - [ - -160.3125, - 56.25 - ], - [ - -161.71875, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 23, - 'geohash': '9tv', - 'center': [ - -104.765625, - 33.046875 - ], - 'rectangle': [ - [ - -105.46875, - 32.34375 - ], - [ - -104.0625, - 32.34375 - ], - [ - -104.0625, - 33.75 - ], - [ - -105.46875, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -117.421875, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 21, - 'geohash': '9qu', - 'center': [ - -117.421875, - 38.671875 - ], - 'rectangle': [ - [ - -118.125, - 37.96875 - ], - [ - -116.71875, - 37.96875 - ], - [ - -116.71875, - 39.375 - ], - [ - -118.125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 29, - 'geohash': '9xu', - 'center': [ - -106.171875, - 44.296875 - ], - 'rectangle': [ - [ - -106.875, - 43.59375 - ], - [ - -105.46875, - 43.59375 - ], - [ - -105.46875, - 45 - ], - [ - -106.875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -94.921875, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 30, - 'geohash': 'cbs', - 'center': [ - -94.921875, - 48.515625 - ], - 'rectangle': [ - [ - -95.625, - 47.8125 - ], - [ - -94.21875, - 47.8125 - ], - [ - -94.21875, - 49.21875 - ], - [ - -95.625, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -135.703125, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 25, - 'geohash': 'bfp', - 'center': [ - -135.703125, - 56.953125 - ], - 'rectangle': [ - [ - -136.40625, - 56.25 - ], - [ - -135, - 56.25 - ], - [ - -135, - 57.65625 - ], - [ - -136.40625, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 34.453125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': '9qp', - 'center': [ - -113.203125, - 34.453125 - ], - 'rectangle': [ - [ - -113.90625, - 33.75 - ], - [ - -112.5, - 33.75 - ], - [ - -112.5, - 35.15625 - ], - [ - -113.90625, - 35.15625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -66.796875, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 25, - 'geohash': 'dxb', - 'center': [ - -66.796875, - 44.296875 - ], - 'rectangle': [ - [ - -67.5, - 43.59375 - ], - [ - -66.09375, - 43.59375 - ], - [ - -66.09375, - 45 - ], - [ - -67.5, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -172.265625, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 20, - 'geohash': 'b5m', - 'center': [ - -172.265625, - 63.984375 - ], - 'rectangle': [ - [ - -172.96875, - 63.28125 - ], - [ - -171.5625, - 63.28125 - ], - [ - -171.5625, - 64.6875 - ], - [ - -172.96875, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 69.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': 'bsk', - 'center': [ - -151.171875, - 69.609375 - ], - 'rectangle': [ - [ - -151.875, - 68.90625 - ], - [ - -150.46875, - 68.90625 - ], - [ - -150.46875, - 70.3125 - ], - [ - -151.875, - 70.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -104.765625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 22, - 'geohash': '9xv', - 'center': [ - -104.765625, - 44.296875 - ], - 'rectangle': [ - [ - -105.46875, - 43.59375 - ], - [ - -104.0625, - 43.59375 - ], - [ - -104.0625, - 45 - ], - [ - -105.46875, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'bu0', - 'center': [ - -145.546875, - 68.203125 - ], - 'rectangle': [ - [ - -146.25, - 67.5 - ], - [ - -144.84375, - 67.5 - ], - [ - -144.84375, - 68.90625 - ], - [ - -146.25, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 23, - 'geohash': '9q3', - 'center': [ - -121.640625, - 35.859375 - ], - 'rectangle': [ - [ - -122.34375, - 35.15625 - ], - [ - -120.9375, - 35.15625 - ], - [ - -120.9375, - 36.5625 - ], - [ - -122.34375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -73.828125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'dqg', - 'center': [ - -73.828125, - 38.671875 - ], - 'rectangle': [ - [ - -74.53125, - 37.96875 - ], - [ - -73.125, - 37.96875 - ], - [ - -73.125, - 39.375 - ], - [ - -74.53125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 21, - 'geohash': 'c8e', - 'center': [ - -107.578125, - 48.515625 - ], - 'rectangle': [ - [ - -108.28125, - 47.8125 - ], - [ - -106.875, - 47.8125 - ], - [ - -106.875, - 49.21875 - ], - [ - -108.28125, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -72.421875, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 22, - 'geohash': 'drh', - 'center': [ - -72.421875, - 40.078125 - ], - 'rectangle': [ - [ - -73.125, - 39.375 - ], - [ - -71.71875, - 39.375 - ], - [ - -71.71875, - 40.78125 - ], - [ - -73.125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'b6z', - 'center': [ - -158.203125, - 61.171875 - ], - 'rectangle': [ - [ - -158.90625, - 60.46875 - ], - [ - -157.5, - 60.46875 - ], - [ - -157.5, - 61.875 - ], - [ - -158.90625, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 20, - 'geohash': '9rp', - 'center': [ - -113.203125, - 40.078125 - ], - 'rectangle': [ - [ - -113.90625, - 39.375 - ], - [ - -112.5, - 39.375 - ], - [ - -112.5, - 40.78125 - ], - [ - -113.90625, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -170.859375, - 14.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': '84w', - 'center': [ - -170.859375, - 14.765625 - ], - 'rectangle': [ - [ - -171.5625, - 14.0625 - ], - [ - -170.15625, - 14.0625 - ], - [ - -170.15625, - 15.46875 - ], - [ - -171.5625, - 15.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 22, - 'geohash': 'bee', - 'center': [ - -152.578125, - 65.390625 - ], - 'rectangle': [ - [ - -153.28125, - 64.6875 - ], - [ - -151.875, - 64.6875 - ], - [ - -151.875, - 66.09375 - ], - [ - -153.28125, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -146.953125, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': 'bep', - 'center': [ - -146.953125, - 62.578125 - ], - 'rectangle': [ - [ - -147.65625, - 61.875 - ], - [ - -146.25, - 61.875 - ], - [ - -146.25, - 63.28125 - ], - [ - -147.65625, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 20, - 'geohash': '9vp', - 'center': [ - -90.703125, - 28.828125 - ], - 'rectangle': [ - [ - -91.40625, - 28.125 - ], - [ - -90, - 28.125 - ], - [ - -90, - 29.53125 - ], - [ - -91.40625, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -170.859375, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': 'b4n', - 'center': [ - -170.859375, - 56.953125 - ], - 'rectangle': [ - [ - -171.5625, - 56.25 - ], - [ - -170.15625, - 56.25 - ], - [ - -170.15625, - 57.65625 - ], - [ - -171.5625, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -142.734375, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': 'bg6', - 'center': [ - -142.734375, - 63.984375 - ], - 'rectangle': [ - [ - -143.4375, - 63.28125 - ], - [ - -142.03125, - 63.28125 - ], - [ - -142.03125, - 64.6875 - ], - [ - -143.4375, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': 'b6k', - 'center': [ - -162.421875, - 58.359375 - ], - 'rectangle': [ - [ - -163.125, - 57.65625 - ], - [ - -161.71875, - 57.65625 - ], - [ - -161.71875, - 59.0625 - ], - [ - -163.125, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -107.578125, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 22, - 'geohash': 'c87', - 'center': [ - -107.578125, - 47.109375 - ], - 'rectangle': [ - [ - -108.28125, - 46.40625 - ], - [ - -106.875, - 46.40625 - ], - [ - -106.875, - 47.8125 - ], - [ - -108.28125, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': 'b6x', - 'center': [ - -158.203125, - 59.765625 - ], - 'rectangle': [ - [ - -158.90625, - 59.0625 - ], - [ - -157.5, - 59.0625 - ], - [ - -157.5, - 60.46875 - ], - [ - -158.90625, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': 'b6c', - 'center': [ - -166.640625, - 61.171875 - ], - 'rectangle': [ - [ - -167.34375, - 60.46875 - ], - [ - -165.9375, - 60.46875 - ], - [ - -165.9375, - 61.875 - ], - [ - -167.34375, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': '9qm', - 'center': [ - -116.015625, - 35.859375 - ], - 'rectangle': [ - [ - -116.71875, - 35.15625 - ], - [ - -115.3125, - 35.15625 - ], - [ - -115.3125, - 36.5625 - ], - [ - -116.71875, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': 'bdy', - 'center': [ - -148.359375, - 61.171875 - ], - 'rectangle': [ - [ - -149.0625, - 60.46875 - ], - [ - -147.65625, - 60.46875 - ], - [ - -147.65625, - 61.875 - ], - [ - -149.0625, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 54.140625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': 'b3s', - 'center': [ - -162.421875, - 54.140625 - ], - 'rectangle': [ - [ - -163.125, - 53.4375 - ], - [ - -161.71875, - 53.4375 - ], - [ - -161.71875, - 54.84375 - ], - [ - -163.125, - 54.84375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': '9rz', - 'center': [ - -113.203125, - 44.296875 - ], - 'rectangle': [ - [ - -113.90625, - 43.59375 - ], - [ - -112.5, - 43.59375 - ], - [ - -112.5, - 45 - ], - [ - -113.90625, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -116.015625, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': '9rj', - 'center': [ - -116.015625, - 40.078125 - ], - 'rectangle': [ - [ - -116.71875, - 39.375 - ], - [ - -115.3125, - 39.375 - ], - [ - -115.3125, - 40.78125 - ], - [ - -116.71875, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 20, - 'geohash': 'bg2', - 'center': [ - -145.546875, - 63.984375 - ], - 'rectangle': [ - [ - -146.25, - 63.28125 - ], - [ - -144.84375, - 63.28125 - ], - [ - -144.84375, - 64.6875 - ], - [ - -146.25, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': 'bdt', - 'center': [ - -149.765625, - 59.765625 - ], - 'rectangle': [ - [ - -150.46875, - 59.0625 - ], - [ - -149.0625, - 59.0625 - ], - [ - -149.0625, - 60.46875 - ], - [ - -150.46875, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': 'bd0', - 'center': [ - -156.796875, - 56.953125 - ], - 'rectangle': [ - [ - -157.5, - 56.25 - ], - [ - -156.09375, - 56.25 - ], - [ - -156.09375, - 57.65625 - ], - [ - -157.5, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -165.234375, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': 'b76', - 'center': [ - -165.234375, - 63.984375 - ], - 'rectangle': [ - [ - -165.9375, - 63.28125 - ], - [ - -164.53125, - 63.28125 - ], - [ - -164.53125, - 64.6875 - ], - [ - -165.9375, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 30.234375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': '9v2', - 'center': [ - -100.546875, - 30.234375 - ], - 'rectangle': [ - [ - -101.25, - 29.53125 - ], - [ - -99.84375, - 29.53125 - ], - [ - -99.84375, - 30.9375 - ], - [ - -101.25, - 30.9375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 45.703125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': 'c2n', - 'center': [ - -114.609375, - 45.703125 - ], - 'rectangle': [ - [ - -115.3125, - 45 - ], - [ - -113.90625, - 45 - ], - [ - -113.90625, - 46.40625 - ], - [ - -115.3125, - 46.40625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -149.765625, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': 'bej', - 'center': [ - -149.765625, - 62.578125 - ], - 'rectangle': [ - [ - -150.46875, - 61.875 - ], - [ - -149.0625, - 61.875 - ], - [ - -149.0625, - 63.28125 - ], - [ - -150.46875, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': 'b6q', - 'center': [ - -159.609375, - 58.359375 - ], - 'rectangle': [ - [ - -160.3125, - 57.65625 - ], - [ - -158.90625, - 57.65625 - ], - [ - -158.90625, - 59.0625 - ], - [ - -160.3125, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 58.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': 'b6m', - 'center': [ - -161.015625, - 58.359375 - ], - 'rectangle': [ - [ - -161.71875, - 57.65625 - ], - [ - -160.3125, - 57.65625 - ], - [ - -160.3125, - 59.0625 - ], - [ - -161.71875, - 59.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -144.140625, - 13.359375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': '8f3', - 'center': [ - -144.140625, - 13.359375 - ], - 'rectangle': [ - [ - -144.84375, - 12.65625 - ], - [ - -143.4375, - 12.65625 - ], - [ - -143.4375, - 14.0625 - ], - [ - -144.84375, - 14.0625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -141.328125, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': 'bg5', - 'center': [ - -141.328125, - 62.578125 - ], - 'rectangle': [ - [ - -142.03125, - 61.875 - ], - [ - -140.625, - 61.875 - ], - [ - -140.625, - 63.28125 - ], - [ - -142.03125, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -144.140625, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': 'bfc', - 'center': [ - -144.140625, - 61.171875 - ], - 'rectangle': [ - [ - -144.84375, - 60.46875 - ], - [ - -143.4375, - 60.46875 - ], - [ - -143.4375, - 61.875 - ], - [ - -144.84375, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 69.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'bsq', - 'center': [ - -148.359375, - 69.609375 - ], - 'rectangle': [ - [ - -149.0625, - 68.90625 - ], - [ - -147.65625, - 68.90625 - ], - [ - -147.65625, - 70.3125 - ], - [ - -149.0625, - 70.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -168.046875, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 19, - 'geohash': 'b78', - 'center': [ - -168.046875, - 65.390625 - ], - 'rectangle': [ - [ - -168.75, - 64.6875 - ], - [ - -167.34375, - 64.6875 - ], - [ - -167.34375, - 66.09375 - ], - [ - -168.75, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -165.234375, - 54.140625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': 'b3d', - 'center': [ - -165.234375, - 54.140625 - ], - 'rectangle': [ - [ - -165.9375, - 53.4375 - ], - [ - -164.53125, - 53.4375 - ], - [ - -164.53125, - 54.84375 - ], - [ - -165.9375, - 54.84375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -106.171875, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': '9xs', - 'center': [ - -106.171875, - 42.890625 - ], - 'rectangle': [ - [ - -106.875, - 42.1875 - ], - [ - -105.46875, - 42.1875 - ], - [ - -105.46875, - 43.59375 - ], - [ - -106.875, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': '9rd', - 'center': [ - -120.234375, - 42.890625 - ], - 'rectangle': [ - [ - -120.9375, - 42.1875 - ], - [ - -119.53125, - 42.1875 - ], - [ - -119.53125, - 43.59375 - ], - [ - -120.9375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -113.203125, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': '9qr', - 'center': [ - -113.203125, - 35.859375 - ], - 'rectangle': [ - [ - -113.90625, - 35.15625 - ], - [ - -112.5, - 35.15625 - ], - [ - -112.5, - 36.5625 - ], - [ - -113.90625, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': 'bk1', - 'center': [ - -166.640625, - 68.203125 - ], - 'rectangle': [ - [ - -167.34375, - 67.5 - ], - [ - -165.9375, - 67.5 - ], - [ - -165.9375, - 68.90625 - ], - [ - -167.34375, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -144.140625, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': 'bgc', - 'center': [ - -144.140625, - 66.796875 - ], - 'rectangle': [ - [ - -144.84375, - 66.09375 - ], - [ - -143.4375, - 66.09375 - ], - [ - -143.4375, - 67.5 - ], - [ - -144.84375, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': 'bek', - 'center': [ - -151.171875, - 63.984375 - ], - 'rectangle': [ - [ - -151.875, - 63.28125 - ], - [ - -150.46875, - 63.28125 - ], - [ - -150.46875, - 64.6875 - ], - [ - -151.875, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': 'bde', - 'center': [ - -152.578125, - 59.765625 - ], - 'rectangle': [ - [ - -153.28125, - 59.0625 - ], - [ - -151.875, - 59.0625 - ], - [ - -151.875, - 60.46875 - ], - [ - -153.28125, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 20, - 'geohash': 'b7s', - 'center': [ - -162.421875, - 65.390625 - ], - 'rectangle': [ - [ - -163.125, - 64.6875 - ], - [ - -161.71875, - 64.6875 - ], - [ - -161.71875, - 66.09375 - ], - [ - -163.125, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': 'b69', - 'center': [ - -166.640625, - 59.765625 - ], - 'rectangle': [ - [ - -167.34375, - 59.0625 - ], - [ - -165.9375, - 59.0625 - ], - [ - -165.9375, - 60.46875 - ], - [ - -167.34375, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 54.140625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': 'b39', - 'center': [ - -166.640625, - 54.140625 - ], - 'rectangle': [ - [ - -167.34375, - 53.4375 - ], - [ - -165.9375, - 53.4375 - ], - [ - -165.9375, - 54.84375 - ], - [ - -167.34375, - 54.84375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 17.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': '8g0', - 'center': [ - -145.546875, - 17.578125 - ], - 'rectangle': [ - [ - -146.25, - 16.875 - ], - [ - -144.84375, - 16.875 - ], - [ - -144.84375, - 18.28125 - ], - [ - -146.25, - 18.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -144.140625, - 69.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': 'bu3', - 'center': [ - -144.140625, - 69.609375 - ], - 'rectangle': [ - [ - -144.84375, - 68.90625 - ], - [ - -143.4375, - 68.90625 - ], - [ - -143.4375, - 70.3125 - ], - [ - -144.84375, - 70.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 71.015625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': 'bkw', - 'center': [ - -159.609375, - 71.015625 - ], - 'rectangle': [ - [ - -160.3125, - 70.3125 - ], - [ - -158.90625, - 70.3125 - ], - [ - -158.90625, - 71.71875 - ], - [ - -160.3125, - 71.71875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 69.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 10, - 'geohash': 'bkk', - 'center': [ - -162.421875, - 69.609375 - ], - 'rectangle': [ - [ - -163.125, - 68.90625 - ], - [ - -161.71875, - 68.90625 - ], - [ - -161.71875, - 70.3125 - ], - [ - -163.125, - 70.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -165.234375, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'bk4', - 'center': [ - -165.234375, - 68.203125 - ], - 'rectangle': [ - [ - -165.9375, - 67.5 - ], - [ - -164.53125, - 67.5 - ], - [ - -164.53125, - 68.90625 - ], - [ - -165.9375, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -156.796875, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 9, - 'geohash': 'be0', - 'center': [ - -156.796875, - 62.578125 - ], - 'rectangle': [ - [ - -157.5, - 61.875 - ], - [ - -156.09375, - 61.875 - ], - [ - -156.09375, - 63.28125 - ], - [ - -157.5, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'bd5', - 'center': [ - -152.578125, - 56.953125 - ], - 'rectangle': [ - [ - -153.28125, - 56.25 - ], - [ - -151.875, - 56.25 - ], - [ - -151.875, - 57.65625 - ], - [ - -153.28125, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': 'b7p', - 'center': [ - -158.203125, - 62.578125 - ], - 'rectangle': [ - [ - -158.90625, - 61.875 - ], - [ - -157.5, - 61.875 - ], - [ - -157.5, - 63.28125 - ], - [ - -158.90625, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -170.859375, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': 'b5q', - 'center': [ - -170.859375, - 63.984375 - ], - 'rectangle': [ - [ - -171.5625, - 63.28125 - ], - [ - -170.15625, - 63.28125 - ], - [ - -170.15625, - 64.6875 - ], - [ - -171.5625, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': '9xc', - 'center': [ - -110.390625, - 44.296875 - ], - 'rectangle': [ - [ - -111.09375, - 43.59375 - ], - [ - -109.6875, - 43.59375 - ], - [ - -109.6875, - 45 - ], - [ - -111.09375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -111.796875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': '9t8', - 'center': [ - -111.796875, - 31.640625 - ], - 'rectangle': [ - [ - -112.5, - 30.9375 - ], - [ - -111.09375, - 30.9375 - ], - [ - -111.09375, - 32.34375 - ], - [ - -112.5, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 8, - 'geohash': '9ry', - 'center': [ - -114.609375, - 44.296875 - ], - 'rectangle': [ - [ - -115.3125, - 43.59375 - ], - [ - -113.90625, - 43.59375 - ], - [ - -113.90625, - 45 - ], - [ - -115.3125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 40.078125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': '9rn', - 'center': [ - -114.609375, - 40.078125 - ], - 'rectangle': [ - [ - -115.3125, - 39.375 - ], - [ - -113.90625, - 39.375 - ], - [ - -113.90625, - 40.78125 - ], - [ - -115.3125, - 40.78125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -87.890625, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': 'f03', - 'center': [ - -87.890625, - 47.109375 - ], - 'rectangle': [ - [ - -88.59375, - 46.40625 - ], - [ - -87.1875, - 46.40625 - ], - [ - -87.1875, - 47.8125 - ], - [ - -88.59375, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -89.296875, - 47.109375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': 'f02', - 'center': [ - -89.296875, - 47.109375 - ], - 'rectangle': [ - [ - -90, - 46.40625 - ], - [ - -88.59375, - 46.40625 - ], - [ - -88.59375, - 47.8125 - ], - [ - -90, - 47.8125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': 'b6w', - 'center': [ - -159.609375, - 59.765625 - ], - 'rectangle': [ - [ - -160.3125, - 59.0625 - ], - [ - -158.90625, - 59.0625 - ], - [ - -158.90625, - 60.46875 - ], - [ - -160.3125, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -114.609375, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': '9qy', - 'center': [ - -114.609375, - 38.671875 - ], - 'rectangle': [ - [ - -115.3125, - 37.96875 - ], - [ - -113.90625, - 37.96875 - ], - [ - -113.90625, - 39.375 - ], - [ - -115.3125, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': 'bsn', - 'center': [ - -148.359375, - 68.203125 - ], - 'rectangle': [ - [ - -149.0625, - 67.5 - ], - [ - -147.65625, - 67.5 - ], - [ - -147.65625, - 68.90625 - ], - [ - -149.0625, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -145.546875, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 10, - 'geohash': 'bg0', - 'center': [ - -145.546875, - 62.578125 - ], - 'rectangle': [ - [ - -146.25, - 61.875 - ], - [ - -144.84375, - 61.875 - ], - [ - -144.84375, - 63.28125 - ], - [ - -146.25, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'bdw', - 'center': [ - -148.359375, - 59.765625 - ], - 'rectangle': [ - [ - -149.0625, - 59.0625 - ], - [ - -147.65625, - 59.0625 - ], - [ - -147.65625, - 60.46875 - ], - [ - -149.0625, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -155.390625, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': 'bdc', - 'center': [ - -155.390625, - 61.171875 - ], - 'rectangle': [ - [ - -156.09375, - 60.46875 - ], - [ - -154.6875, - 60.46875 - ], - [ - -154.6875, - 61.875 - ], - [ - -156.09375, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -159.609375, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 21, - 'geohash': 'b7y', - 'center': [ - -159.609375, - 66.796875 - ], - 'rectangle': [ - [ - -160.3125, - 66.09375 - ], - [ - -158.90625, - 66.09375 - ], - [ - -158.90625, - 67.5 - ], - [ - -160.3125, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -169.453125, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'b5x', - 'center': [ - -169.453125, - 65.390625 - ], - 'rectangle': [ - [ - -170.15625, - 64.6875 - ], - [ - -168.75, - 64.6875 - ], - [ - -168.75, - 66.09375 - ], - [ - -170.15625, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -176.484375, - 51.328125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': 'b14', - 'center': [ - -176.484375, - 51.328125 - ], - 'rectangle': [ - [ - -177.1875, - 50.625 - ], - [ - -175.78125, - 50.625 - ], - [ - -175.78125, - 52.03125 - ], - [ - -177.1875, - 52.03125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': '9re', - 'center': [ - -118.828125, - 42.890625 - ], - 'rectangle': [ - [ - -119.53125, - 42.1875 - ], - [ - -118.125, - 42.1875 - ], - [ - -118.125, - 43.59375 - ], - [ - -119.53125, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -121.640625, - 42.890625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': '9r9', - 'center': [ - -121.640625, - 42.890625 - ], - 'rectangle': [ - [ - -122.34375, - 42.1875 - ], - [ - -120.9375, - 42.1875 - ], - [ - -120.9375, - 43.59375 - ], - [ - -122.34375, - 43.59375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -83.671875, - 28.828125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': 'djh', - 'center': [ - -83.671875, - 28.828125 - ], - 'rectangle': [ - [ - -84.375, - 28.125 - ], - [ - -82.96875, - 28.125 - ], - [ - -82.96875, - 29.53125 - ], - [ - -84.375, - 29.53125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': 'beq', - 'center': [ - -148.359375, - 63.984375 - ], - 'rectangle': [ - [ - -149.0625, - 63.28125 - ], - [ - -147.65625, - 63.28125 - ], - [ - -147.65625, - 64.6875 - ], - [ - -149.0625, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -169.453125, - 56.953125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': 'b4p', - 'center': [ - -169.453125, - 56.953125 - ], - 'rectangle': [ - [ - -170.15625, - 56.25 - ], - [ - -168.75, - 56.25 - ], - [ - -168.75, - 57.65625 - ], - [ - -170.15625, - 57.65625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': '9mg', - 'center': [ - -118.828125, - 33.046875 - ], - 'rectangle': [ - [ - -119.53125, - 32.34375 - ], - [ - -118.125, - 32.34375 - ], - [ - -118.125, - 33.75 - ], - [ - -119.53125, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -153.984375, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': 'be4', - 'center': [ - -153.984375, - 62.578125 - ], - 'rectangle': [ - [ - -154.6875, - 61.875 - ], - [ - -153.28125, - 61.875 - ], - [ - -153.28125, - 63.28125 - ], - [ - -154.6875, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': 'b7u', - 'center': [ - -162.421875, - 66.796875 - ], - 'rectangle': [ - [ - -163.125, - 66.09375 - ], - [ - -161.71875, - 66.09375 - ], - [ - -161.71875, - 67.5 - ], - [ - -163.125, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 35.859375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': '9w3', - 'center': [ - -110.390625, - 35.859375 - ], - 'rectangle': [ - [ - -111.09375, - 35.15625 - ], - [ - -109.6875, - 35.15625 - ], - [ - -109.6875, - 36.5625 - ], - [ - -111.09375, - 36.5625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -76.640625, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 20, - 'geohash': 'drc', - 'center': [ - -76.640625, - 44.296875 - ], - 'rectangle': [ - [ - -77.34375, - 43.59375 - ], - [ - -75.9375, - 43.59375 - ], - [ - -75.9375, - 45 - ], - [ - -77.34375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -90.703125, - 48.515625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': 'cbx', - 'center': [ - -90.703125, - 48.515625 - ], - 'rectangle': [ - [ - -91.40625, - 47.8125 - ], - [ - -90, - 47.8125 - ], - [ - -90, - 49.21875 - ], - [ - -91.40625, - 49.21875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -134.296875, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': 'c1b', - 'center': [ - -134.296875, - 55.546875 - ], - 'rectangle': [ - [ - -135, - 54.84375 - ], - [ - -133.59375, - 54.84375 - ], - [ - -133.59375, - 56.25 - ], - [ - -135, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 10, - 'geohash': 'bkh', - 'center': [ - -162.421875, - 68.203125 - ], - 'rectangle': [ - [ - -163.125, - 67.5 - ], - [ - -161.71875, - 67.5 - ], - [ - -161.71875, - 68.90625 - ], - [ - -163.125, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -166.640625, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': 'b7c', - 'center': [ - -166.640625, - 66.796875 - ], - 'rectangle': [ - [ - -167.34375, - 66.09375 - ], - [ - -165.9375, - 66.09375 - ], - [ - -165.9375, - 67.5 - ], - [ - -167.34375, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -100.546875, - 31.640625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 8, - 'geohash': '9v8', - 'center': [ - -100.546875, - 31.640625 - ], - 'rectangle': [ - [ - -101.25, - 30.9375 - ], - [ - -99.84375, - 30.9375 - ], - [ - -99.84375, - 32.34375 - ], - [ - -101.25, - 32.34375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': 'beh', - 'center': [ - -151.171875, - 62.578125 - ], - 'rectangle': [ - [ - -151.875, - 61.875 - ], - [ - -150.46875, - 61.875 - ], - [ - -150.46875, - 63.28125 - ], - [ - -151.875, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -161.015625, - 59.765625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 8, - 'geohash': 'b6t', - 'center': [ - -161.015625, - 59.765625 - ], - 'rectangle': [ - [ - -161.71875, - 59.0625 - ], - [ - -160.3125, - 59.0625 - ], - [ - -160.3125, - 60.46875 - ], - [ - -161.71875, - 60.46875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -118.828125, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': '9rg', - 'center': [ - -118.828125, - 44.296875 - ], - 'rectangle': [ - [ - -119.53125, - 43.59375 - ], - [ - -118.125, - 43.59375 - ], - [ - -118.125, - 45 - ], - [ - -119.53125, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -120.234375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': '9rf', - 'center': [ - -120.234375, - 44.296875 - ], - 'rectangle': [ - [ - -120.9375, - 43.59375 - ], - [ - -119.53125, - 43.59375 - ], - [ - -119.53125, - 45 - ], - [ - -120.9375, - 45 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 68.203125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': 'bsh', - 'center': [ - -151.171875, - 68.203125 - ], - 'rectangle': [ - [ - -151.875, - 67.5 - ], - [ - -150.46875, - 67.5 - ], - [ - -150.46875, - 68.90625 - ], - [ - -151.875, - 68.90625 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -151.171875, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'bes', - 'center': [ - -151.171875, - 65.390625 - ], - 'rectangle': [ - [ - -151.875, - 64.6875 - ], - [ - -150.46875, - 64.6875 - ], - [ - -150.46875, - 66.09375 - ], - [ - -151.875, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 63.984375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': 'b7r', - 'center': [ - -158.203125, - 63.984375 - ], - 'rectangle': [ - [ - -158.90625, - 63.28125 - ], - [ - -157.5, - 63.28125 - ], - [ - -157.5, - 64.6875 - ], - [ - -158.90625, - 64.6875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -146.953125, - 61.171875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': 'bdz', - 'center': [ - -146.953125, - 61.171875 - ], - 'rectangle': [ - [ - -147.65625, - 60.46875 - ], - [ - -146.25, - 60.46875 - ], - [ - -146.25, - 61.875 - ], - [ - -147.65625, - 61.875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -158.203125, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 8, - 'geohash': 'b7z', - 'center': [ - -158.203125, - 66.796875 - ], - 'rectangle': [ - [ - -158.90625, - 66.09375 - ], - [ - -157.5, - 66.09375 - ], - [ - -157.5, - 67.5 - ], - [ - -158.90625, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -153.984375, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': 'bed', - 'center': [ - -153.984375, - 65.390625 - ], - 'rectangle': [ - [ - -154.6875, - 64.6875 - ], - [ - -153.28125, - 64.6875 - ], - [ - -153.28125, - 66.09375 - ], - [ - -154.6875, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -173.671875, - 52.734375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'b1k', - 'center': [ - -173.671875, - 52.734375 - ], - 'rectangle': [ - [ - -174.375, - 52.03125 - ], - [ - -172.96875, - 52.03125 - ], - [ - -172.96875, - 53.4375 - ], - [ - -174.375, - 53.4375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -82.265625, - 24.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': 'dhm', - 'center': [ - -82.265625, - 24.609375 - ], - 'rectangle': [ - [ - -82.96875, - 23.90625 - ], - [ - -81.5625, - 23.90625 - ], - [ - -81.5625, - 25.3125 - ], - [ - -82.96875, - 25.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -148.359375, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'bew', - 'center': [ - -148.359375, - 65.390625 - ], - 'rectangle': [ - [ - -149.0625, - 64.6875 - ], - [ - -147.65625, - 64.6875 - ], - [ - -147.65625, - 66.09375 - ], - [ - -149.0625, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -124.453125, - 38.671875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': '9nz', - 'center': [ - -124.453125, - 38.671875 - ], - 'rectangle': [ - [ - -125.15625, - 37.96875 - ], - [ - -123.75, - 37.96875 - ], - [ - -123.75, - 39.375 - ], - [ - -125.15625, - 39.375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -141.328125, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'bge', - 'center': [ - -141.328125, - 65.390625 - ], - 'rectangle': [ - [ - -142.03125, - 64.6875 - ], - [ - -140.625, - 64.6875 - ], - [ - -140.625, - 66.09375 - ], - [ - -142.03125, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -152.578125, - 66.796875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 9, - 'geohash': 'beg', - 'center': [ - -152.578125, - 66.796875 - ], - 'rectangle': [ - [ - -153.28125, - 66.09375 - ], - [ - -151.875, - 66.09375 - ], - [ - -151.875, - 67.5 - ], - [ - -153.28125, - 67.5 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -155.390625, - 65.390625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': 'be9', - 'center': [ - -155.390625, - 65.390625 - ], - 'rectangle': [ - [ - -156.09375, - 64.6875 - ], - [ - -154.6875, - 64.6875 - ], - [ - -154.6875, - 66.09375 - ], - [ - -156.09375, - 66.09375 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -162.421875, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': 'b7h', - 'center': [ - -162.421875, - 62.578125 - ], - 'rectangle': [ - [ - -163.125, - 61.875 - ], - [ - -161.71875, - 61.875 - ], - [ - -161.71875, - 63.28125 - ], - [ - -163.125, - 63.28125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -80.859375, - 24.609375 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 8, - 'geohash': 'dhq', - 'center': [ - -80.859375, - 24.609375 - ], - 'rectangle': [ - [ - -81.5625, - 23.90625 - ], - [ - -80.15625, - 23.90625 - ], - [ - -80.15625, - 25.3125 - ], - [ - -81.5625, - 25.3125 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -130.078125, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 10, - 'geohash': 'c1g', - 'center': [ - -130.078125, - 55.546875 - ], - 'rectangle': [ - [ - -130.78125, - 54.84375 - ], - [ - -129.375, - 54.84375 - ], - [ - -129.375, - 56.25 - ], - [ - -130.78125, - 56.25 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -110.390625, - 33.046875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': '9tc', - 'center': [ - -110.390625, - 33.046875 - ], - 'rectangle': [ - [ - -111.09375, - 32.34375 - ], - [ - -109.6875, - 32.34375 - ], - [ - -109.6875, - 33.75 - ], - [ - -111.09375, - 33.75 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -75.234375, - 37.265625 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 8, - 'geohash': 'dqd', - 'center': [ - -75.234375, - 37.265625 - ], - 'rectangle': [ - [ - -75.9375, - 36.5625 - ], - [ - -74.53125, - 36.5625 - ], - [ - -74.53125, - 37.96875 - ], - [ - -75.9375, - 37.96875 - ] - ] - } - }, - { - 'type': 'Feature', - 'geometry': { - 'type': 'Point', - 'coordinates': [ - -163.828125, - 55.546875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 7, - 'geohash': 'b3g', - 'center': [ - -163.828125, - 55.546875 - ], - 'rectangle': [ - [ - -164.53125, - 54.84375 - ], - [ - -163.125, - 54.84375 - ], - [ - -163.125, - 56.25 - ], - [ - -164.53125, - 56.25 - ] - ] - } + "rows": [ + { + "geoJson": { + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 22.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 39, + "geohash": "s", + "center": [ + 22.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "s", + "value": "s", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 39, + "value": 39, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 0, + 0 + ], + [ + 45, + 0 + ], + [ + 45, + 45 + ], + [ + 0, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 112.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 31, + "geohash": "w", + "center": [ + 112.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "w", + "value": "w", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 31, + "value": 31, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 90, + 0 + ], + [ + 135, + 0 + ], + [ + 135, + 45 + ], + [ + 90, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -67.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 30, + "geohash": "d", + "center": [ + -67.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "d", + "value": "d", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 30, + "value": 30, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -90, + 0 + ], + [ + -45, + 0 + ], + [ + -45, + 45 + ], + [ + -90, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -112.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 25, + "geohash": "9", + "center": [ + -112.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "9", + "value": "9", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 25, + "value": 25, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -135, + 0 + ], + [ + -90, + 0 + ], + [ + -90, + 45 + ], + [ + -135, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 67.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 23, + "geohash": "t", + "center": [ + 67.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "t", + "value": "t", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 23, + "value": 23, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 45, + 0 + ], + [ + 90, + 0 + ], + [ + 90, + 45 + ], + [ + 45, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 22.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 23, + "geohash": "k", + "center": [ + 22.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "k", + "value": "k", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 23, + "value": 23, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 0, + -45 + ], + [ + 45, + -45 + ], + [ + 45, + 0 + ], + [ + 0, + 0 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -67.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 22, + "geohash": "6", + "center": [ + -67.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "6", + "value": "6", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 22, + "value": 22, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -90, + -45 + ], + [ + -45, + -45 + ], + [ + -45, + 0 + ], + [ + -90, + 0 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 22.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 20, + "geohash": "u", + "center": [ + 22.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "u", + "value": "u", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 20, + "value": 20, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 0, + 45 + ], + [ + 45, + 45 + ], + [ + 45, + 90 + ], + [ + 0, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 67.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 18, + "geohash": "v", + "center": [ + 67.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "v", + "value": "v", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 18, + "value": 18, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 45, + 45 + ], + [ + 90, + 45 + ], + [ + 90, + 90 + ], + [ + 45, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 157.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 11, + "geohash": "r", + "center": [ + 157.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "r", + "value": "r", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 11, + "value": 11, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 135, + -45 + ], + [ + 180, + -45 + ], + [ + 180, + 0 + ], + [ + 135, + 0 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -22.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 11, + "geohash": "e", + "center": [ + -22.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "e", + "value": "e", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 11, + "value": 11, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -45, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 45 + ], + [ + -45, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 112.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 10, + "geohash": "y", + "center": [ + 112.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "y", + "value": "y", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 10, + "value": 10, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 90, + 45 + ], + [ + 135, + 45 + ], + [ + 135, + 90 + ], + [ + 90, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -112.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 10, + "geohash": "c", + "center": [ + -112.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "c", + "value": "c", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 10, + "value": 10, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -135, + 45 + ], + [ + -90, + 45 + ], + [ + -90, + 90 + ], + [ + -135, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -67.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 8, + "geohash": "f", + "center": [ + -67.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "f", + "value": "f", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 8, + "value": 8, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -90, + 45 + ], + [ + -45, + 45 + ], + [ + -45, + 90 + ], + [ + -90, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -22.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 8, + "geohash": "7", + "center": [ + -22.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "7", + "value": "7", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 8, + "value": 8, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -45, + -45 + ], + [ + 0, + -45 + ], + [ + 0, + 0 + ], + [ + -45, + 0 + ] + ] } - ] + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 112.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 6, + "geohash": "q", + "center": [ + 112.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "q", + "value": "q", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 6, + "value": 6, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 90, + -45 + ], + [ + 135, + -45 + ], + [ + 135, + 0 + ], + [ + 90, + 0 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -22.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 6, + "geohash": "g", + "center": [ + -22.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "g", + "value": "g", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 6, + "value": 6, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -45, + 45 + ], + [ + 0, + 45 + ], + [ + 0, + 90 + ], + [ + -45, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 157.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 4, + "geohash": "x", + "center": [ + 157.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "x", + "value": "x", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 4, + "value": 4, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 135, + 0 + ], + [ + 180, + 0 + ], + [ + 180, + 45 + ], + [ + 135, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -157.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 3, + "geohash": "b", + "center": [ + -157.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "b", + "value": "b", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 3, + "value": 3, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -180, + 45 + ], + [ + -135, + 45 + ], + [ + -135, + 90 + ], + [ + -180, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 157.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 2, + "geohash": "z", + "center": [ + 157.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "z", + "value": "z", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 2, + "value": 2, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 135, + 45 + ], + [ + 180, + 45 + ], + [ + 180, + 90 + ], + [ + 135, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -67.5, + -67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 2, + "geohash": "4", + "center": [ + -67.5, + -67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "4", + "value": "4", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 2, + "value": 2, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -90, + -90 + ], + [ + -45, + -90 + ], + [ + -45, + -45 + ], + [ + -90, + -45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -22.5, + -67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 1, + "geohash": "5", + "center": [ + -22.5, + -67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "5", + "value": "5", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 1, + "value": 1, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -45, + -90 + ], + [ + 0, + -90 + ], + [ + 0, + -45 + ], + [ + -45, + -45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -112.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 1, + "geohash": "3", + "center": [ + -112.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "3", + "value": "3", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 1, + "value": 1, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -135, + -45 + ], + [ + -90, + -45 + ], + [ + -90, + 0 + ], + [ + -135, + 0 + ] + ] + } + } + ], + "properties": { + "label": "Top 2 geo.dest: CN", + "length": 23, + "min": 1, + "max": 39, + "precision": 1 + } + }, + "label": "Top 2 geo.dest: CN" + }, + { + "geoJson": { + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -67.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 31, + "geohash": "6", + "center": [ + -67.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "6", + "value": "6", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 31, + "value": 31, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -90, + -45 + ], + [ + -45, + -45 + ], + [ + -45, + 0 + ], + [ + -90, + 0 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 22.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 30, + "geohash": "s", + "center": [ + 22.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "s", + "value": "s", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 30, + "value": 30, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 0, + 0 + ], + [ + 45, + 0 + ], + [ + 45, + 45 + ], + [ + 0, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 112.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 29, + "geohash": "w", + "center": [ + 112.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "w", + "value": "w", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 29, + "value": 29, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 90, + 0 + ], + [ + 135, + 0 + ], + [ + 135, + 45 + ], + [ + 90, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -67.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 28, + "geohash": "d", + "center": [ + -67.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "d", + "value": "d", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 28, + "value": 28, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -90, + 0 + ], + [ + -45, + 0 + ], + [ + -45, + 45 + ], + [ + -90, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 67.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 25, + "geohash": "t", + "center": [ + 67.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "t", + "value": "t", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 25, + "value": 25, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 45, + 0 + ], + [ + 90, + 0 + ], + [ + 90, + 45 + ], + [ + 45, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 22.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 24, + "geohash": "k", + "center": [ + 22.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "k", + "value": "k", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 24, + "value": 24, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 0, + -45 + ], + [ + 45, + -45 + ], + [ + 45, + 0 + ], + [ + 0, + 0 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 22.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 20, + "geohash": "u", + "center": [ + 22.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "u", + "value": "u", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 20, + "value": 20, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 0, + 45 + ], + [ + 45, + 45 + ], + [ + 45, + 90 + ], + [ + 0, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -112.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 18, + "geohash": "9", + "center": [ + -112.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "9", + "value": "9", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 18, + "value": 18, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -135, + 0 + ], + [ + -90, + 0 + ], + [ + -90, + 45 + ], + [ + -135, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 67.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 14, + "geohash": "v", + "center": [ + 67.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "v", + "value": "v", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 14, + "value": 14, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 45, + 45 + ], + [ + 90, + 45 + ], + [ + 90, + 90 + ], + [ + 45, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -22.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 11, + "geohash": "e", + "center": [ + -22.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "e", + "value": "e", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 11, + "value": 11, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -45, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 45 + ], + [ + -45, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 157.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 9, + "geohash": "r", + "center": [ + 157.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "r", + "value": "r", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 9, + "value": 9, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 135, + -45 + ], + [ + 180, + -45 + ], + [ + 180, + 0 + ], + [ + 135, + 0 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 112.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 6, + "geohash": "y", + "center": [ + 112.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "y", + "value": "y", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 6, + "value": 6, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 90, + 45 + ], + [ + 135, + 45 + ], + [ + 135, + 90 + ], + [ + 90, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -67.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 6, + "geohash": "f", + "center": [ + -67.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "f", + "value": "f", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 6, + "value": 6, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -90, + 45 + ], + [ + -45, + 45 + ], + [ + -45, + 90 + ], + [ + -90, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -22.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 5, + "geohash": "g", + "center": [ + -22.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "g", + "value": "g", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 5, + "value": 5, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -45, + 45 + ], + [ + 0, + 45 + ], + [ + 0, + 90 + ], + [ + -45, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -112.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 5, + "geohash": "c", + "center": [ + -112.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "c", + "value": "c", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 5, + "value": 5, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -135, + 45 + ], + [ + -90, + 45 + ], + [ + -90, + 90 + ], + [ + -135, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -157.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 4, + "geohash": "b", + "center": [ + -157.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "b", + "value": "b", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 4, + "value": 4, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -180, + 45 + ], + [ + -135, + 45 + ], + [ + -135, + 90 + ], + [ + -180, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 112.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 3, + "geohash": "q", + "center": [ + 112.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "q", + "value": "q", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 3, + "value": 3, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 90, + -45 + ], + [ + 135, + -45 + ], + [ + 135, + 0 + ], + [ + 90, + 0 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -67.5, + -67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 2, + "geohash": "4", + "center": [ + -67.5, + -67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "4", + "value": "4", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 2, + "value": 2, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -90, + -90 + ], + [ + -45, + -90 + ], + [ + -45, + -45 + ], + [ + -90, + -45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 157.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 1, + "geohash": "z", + "center": [ + 157.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "z", + "value": "z", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 1, + "value": 1, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 135, + 45 + ], + [ + 180, + 45 + ], + [ + 180, + 90 + ], + [ + 135, + 90 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 157.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 1, + "geohash": "x", + "center": [ + 157.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "x", + "value": "x", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 1, + "value": 1, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 135, + 0 + ], + [ + 180, + 0 + ], + [ + 180, + 45 + ], + [ + 135, + 45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 157.5, + -67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 1, + "geohash": "p", + "center": [ + 157.5, + -67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "p", + "value": "p", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 1, + "value": 1, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 135, + -90 + ], + [ + 180, + -90 + ], + [ + 180, + -45 + ], + [ + 135, + -45 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 67.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 1, + "geohash": "m", + "center": [ + 67.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "m", + "value": "m", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 1, + "value": 1, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 45, + -45 + ], + [ + 90, + -45 + ], + [ + 90, + 0 + ], + [ + 45, + 0 + ] + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -22.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 1, + "geohash": "7", + "center": [ + -22.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": true + } + }, + "type": "bucket" + }, + "key": "7", + "value": "7", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 1, + "value": 1, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -45, + -45 + ], + [ + 0, + -45 + ], + [ + 0, + 0 + ], + [ + -45, + 0 + ] + ] + } + } + ], + "properties": { + "label": "Top 2 geo.dest: IN", + "length": 23, + "min": 1, + "max": 31, + "precision": 1 } - } - ], - 'hits': 171451 - }; + }, + "label": "Top 2 geo.dest: IN" + } + ], + "hits": 1639 +}; }); diff --git a/test/unit/specs/vislib/visualizations/tile_map.js b/test/unit/specs/vislib/visualizations/tile_map.js new file mode 100644 index 00000000000000..776ddc594f0794 --- /dev/null +++ b/test/unit/specs/vislib/visualizations/tile_map.js @@ -0,0 +1,139 @@ +define (function (require) { + var angular = require('angular'); + var _ = require('lodash'); + var L = require('leaflet'); + + // Data + var dataArray = [ + require('vislib_fixtures/mock_data/geohash/_geo_json'), + require('vislib_fixtures/mock_data/geohash/_columns'), + require('vislib_fixtures/mock_data/geohash/_rows') + ]; + + var names = ['geojson', 'columns', 'rows']; + + angular.module('TileMapFactory', ['kibana']); + + dataArray.forEach(function (data, i) { + describe('TileMap Test Suite for ' + names[i] + ' data', function () { + var vis; + var visLibParams = { + isDesaturated: true, + type: 'tile_map', + mapType: 'Scaled Circle Markers' + }; + + beforeEach(function () { + module('TileMapFactory'); + }); + + beforeEach(function () { + inject(function (Private) { + vis = Private(require('vislib_fixtures/_vis_fixture'))(visLibParams); + require('css!components/vislib/styles/main'); + vis.render(data); + }); + + beforeEach(function () { + $(vis.el).height(400); + $(vis.el).width(300); + }); + }); + + afterEach(function () { + $(vis.el).remove(); + vis = null; + }); + + describe('draw method', function () { + var leafletContainer; + var isDrawn; + + it('should draw a map', function () { + leafletContainer = $(vis.el).find('.leaflet-container'); + isDrawn = (leafletContainer.length > 0); + expect(isDrawn).to.be(true); + }); + }); + + describe('containerTooSmall error', function () { + beforeEach(function () { + $(vis.el).height(40); + $(vis.el).width(40); + }); + + it('should throw an error', function () { + vis.handler.charts.forEach(function (chart) { + expect(function () { + chart.render(); + }).to.throwError(); + }); + }); + }); + + }); + }); + + + describe('TileMap', function () { + + var types = ['Scaled Circle Markers', 'Shaded Circle Markers', 'Shaded Geohash Grid', 'Pin Markers']; + var vis; + var visLibParams = { + isDesaturated: true, + type: 'tile_map', + mapType: 'Scaled Circle Markers' + }; + + beforeEach(function () { + module('TileMapFactory'); + }); + + beforeEach(function () { + inject(function (Private) { + vis = Private(require('vislib_fixtures/_vis_fixture'))(visLibParams); + require('css!components/vislib/styles/main'); + vis.render(dataArray[0]); + + console.log('vis', vis); + + + }); + }); + + afterEach(function () { + $(vis.el).remove(); + vis = null; + }); + + it('first test case', function() { + expect(1 === 1).to.be(true); + }); + + it('second, has data', function() { + expect(dataArray[0]).to.be(true); + }); + + it('map should draw', function() { + // + }) + }); + + describe('TileMap nest 1', function () { + beforeEach(function () { + console.log('before each'); + }); + + it('map should draw 1', function() { + expect(1 === 1).to.be(true); + }); + + describe('TileMap nest 2', function () { + it('map should draw 2', function() { + expect(1 === 1).to.be(false); + }); + }); + + }); + +}); \ No newline at end of file From f745a4a83e61684545a5fc3a09573c6e1b340b7c Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Tue, 17 Mar 2015 13:38:47 -0700 Subject: [PATCH 08/32] moved functions out of TileMap.draw --- .../vislib/visualizations/tile_map.js | 153 +++++++++++------- 1 file changed, 94 insertions(+), 59 deletions(-) diff --git a/src/kibana/components/vislib/visualizations/tile_map.js b/src/kibana/components/vislib/visualizations/tile_map.js index 745487be9d0e55..8369d1a00b2b25 100644 --- a/src/kibana/components/vislib/visualizations/tile_map.js +++ b/src/kibana/components/vislib/visualizations/tile_map.js @@ -9,11 +9,6 @@ define(function (require) { require('css!components/vislib/styles/main'); - var mapData; - var mapCenter = [15, 5]; - var mapZoom = 2; - var minMapSize = 60; - /** * Tile Map Visualization: renders maps * @@ -47,6 +42,7 @@ define(function (require) { * @return {Function} Creates the map */ TileMap.prototype.draw = function () { + var self = this; var $elem = $(this.chartEl); var div; @@ -59,16 +55,25 @@ define(function (require) { return function (selection) { selection.each(function (data) { - div = $(this); - div.addClass('tilemap'); + + var mapCenter = [15, 5]; + var mapZoom = 2; if (self._attr.lastZoom) { - mapZoom = self._attr.lastZoom; + self._attr.mapZoom = self._attr.lastZoom; + } else { + self._attr.mapZoom = self._attr.lastZoom = mapZoom; } if (self._attr.lastCenter) { - mapCenter = self._attr.lastCenter; + mapCenter = self._attr.mapCenter = self._attr.lastCenter; + } else { + self._attr.mapCenter = self._attr.lastCenter = mapCenter; } + var mapData = data.geoJson; + div = $(this); + div.addClass('tilemap'); + var featureLayer; var tileLayer = L.tileLayer('http://otile{s}.mqcdn.com/tiles/1.0.0/map/{z}/{x}/{y}.jpeg', { attribution: 'Tiles by MapQuest — ' + @@ -92,21 +97,23 @@ define(function (require) { var map = L.map(div[0], mapOptions); self.maps.push(map); - tileLayer.on('tileload', saturateTiles); + tileLayer.on('tileload', function () { + self.saturateTiles(); + }); + + featureLayer = self.markerType(map, mapData).addTo(map); map.on('unload', function () { - tileLayer.off('tileload', saturateTiles); + tileLayer.off('tileload', self.saturateTiles); }); - map.on('zoomend dragend', function setZoomCenter() { + map.on('moveend', function setZoomCenter() { mapZoom = self._attr.lastZoom = map.getZoom(); mapCenter = self._attr.lastCenter = map.getCenter(); }); - featureLayer = self.markerType(map, data.geoJson); - - if (data.geoJson.properties.label) { - self.addLabel(data.geoJson.properties.label, map); + if (mapData.properties.label) { + self.addLabel(mapData.properties.label, map); } // Add button to fit container to points @@ -117,27 +124,46 @@ define(function (require) { onAdd: function (map) { var container = L.DomUtil.create('div', 'leaflet-control leaflet-bar leaflet-control-zoom leaflet-control-fit'); $(container).html(''); - $(container).on('click', fitBounds); + $(container).on('click', function () { + self.fitBounds(map, featureLayer); + }); return container; } }); - if (data && data.geoJson && data.geoJson.features.length > 0) { + if (mapData && mapData.features.length > 0) { map.addControl(new FitControl()); } + }); + }; + }; - function fitBounds() { - map.fitBounds(featureLayer.getBounds()); - } + /** + * zoom map to fit all features in featureLayer + * + * @method fitBounds + * @param map {Object} + * @param featureLayer {Leaflet object} + * @return {Leaflet object} featureLayer + */ + TileMap.prototype.fitBounds = function (map, featureLayer) { - function saturateTiles() { - if (!self._attr.isDesaturated) { - $('img.leaflet-tile-loaded').addClass('filters-off'); - } - } + map.fitBounds(featureLayer.getBounds(L.latLngBounds([-90, -220], [90, 220]))); + }; - }); - }; + /** + * remove css class on map tiles + * + * @method saturateTiles + * @param map {Object} + * @param featureLayer {Leaflet object} + * @return {Leaflet object} featureLayer + */ + TileMap.prototype.saturateTiles = function () { + var self = this; + if (!self._attr.isDesaturated) { + $('img.leaflet-tile-loaded').addClass('filters-off'); + } }; /** @@ -157,7 +183,7 @@ define(function (require) { } else if (this._attr.mapType === 'Shaded Circle Markers') { featureLayer = this.shadedCircleMarkers(map, mapData); } else if (this._attr.mapType === 'Shaded Geohash Grid') { - featureLayer = this.geohashGrid(map, mapData); + featureLayer = this.shadedGeohashGrid(map, mapData); } else { featureLayer = this.pinMarkers(map, mapData); } @@ -181,7 +207,7 @@ define(function (require) { var max = mapData.properties.max; var length = mapData.properties.length; var precision = mapData.properties.precision; - var zoomScale = self.zoomScale(mapZoom); + var zoomScale = self.zoomScale(self._attr.mapZoom); var bounds; var defaultColor = '#ff6128'; var featureLayer = L.geoJson(mapData, { @@ -198,7 +224,7 @@ define(function (require) { fillOpacity: 0.75 }; } - }).addTo(map); + }); return featureLayer; }; @@ -219,9 +245,10 @@ define(function (require) { var max = mapData.properties.max; var length = mapData.properties.length; var precision = mapData.properties.precision; - var zoomScale = self.zoomScale(mapZoom); + var zoomScale = self.zoomScale(self._attr.mapZoom); var bounds; var defaultColor = '#ff6128'; + var featureLayer = L.geoJson(mapData, { pointToLayer: function (feature, latlng) { var count = feature.properties.count; @@ -236,22 +263,31 @@ define(function (require) { }, style: function (feature) { var count = feature.properties.count; + var color = self.quantizeColorScale(count, min, max); return { - fillColor: defaultColor, - color: self.darkerColor(defaultColor), + // fillColor: defaultColor, + fillColor: color, + //color: self.darkerColor(defaultColor), + color: self.darkerColor(color), weight: 1.0, opacity: 1, fillOpacity: 0.75 }; } - }).addTo(map); - self.resizeFeatures(map, min, max, precision, featureLayer); - map.on('zoomend dragend', function () { - mapZoom = map.getZoom(); - bounds = map.getBounds(); - self.resizeFeatures(map, min, max, precision, featureLayer); }); + // add legend + if (mapData.features.length > 1) { + self.addLegend(mapData, map); + } + + map.on('moveend', function setZoomCenter() { + self._attr.mapZoom = self._attr.lastZoom = map.getZoom(); + self._attr.mapCenter = self._attr.lastCenter = map.getCenter(); + self.resizeFeatures(map); + }); + + return featureLayer; }; @@ -267,9 +303,6 @@ define(function (require) { */ TileMap.prototype.shadedCircleMarkers = function (map, mapData) { var self = this; - - // TODO: add UI to select local min max or all min max - // min and max from chart data for this map // var min = mapData.properties.min; // var max = mapData.properties.max; @@ -280,13 +313,15 @@ define(function (require) { var length = mapData.properties.length; var precision = mapData.properties.precision; - var zoomScale = self.zoomScale(mapZoom); + var zoomScale = self.zoomScale(self._attr.mapZoom); var bounds; var defaultColor = '#005baa'; + var featureLayer = L.geoJson(mapData, { pointToLayer: function (feature, latlng) { var count = feature.properties.count; var rad = zoomScale * 3; + console.log(count, rad, zoomScale, self._attr.mapZoom); return L.circleMarker(latlng, { radius: rad }); @@ -305,12 +340,6 @@ define(function (require) { fillOpacity: 0.75 }; } - }).addTo(map); - self.resizeFeatures(map, min, max, precision, featureLayer); - map.on('zoomend dragend', function () { - mapZoom = map.getZoom(); - bounds = map.getBounds(); - self.resizeFeatures(map, min, max, precision, featureLayer); }); // add legend @@ -331,15 +360,21 @@ define(function (require) { * @param mapData {Object} * @return {undefined} */ - TileMap.prototype.geohashGrid = function (map, mapData) { + TileMap.prototype.shadedGeohashGrid = function (map, mapData) { var self = this; var min = mapData.properties.min; var max = mapData.properties.max; var length = mapData.properties.length; var precision = mapData.properties.precision; - var zoomScale = self.zoomScale(mapZoom); + var zoomScale = self.zoomScale(self._attr.mapZoom); var bounds; var defaultColor = '#ff6128'; + + // add legend + if (mapData.features.length > 1) { + self.addLegend(mapData, map); + } + var featureLayer = L.geoJson(mapData, { pointToLayer: function (feature, latlng) { var count = feature.properties.count; @@ -370,7 +405,7 @@ define(function (require) { fillOpacity: 0.75 }; } - }).addTo(map); + }); return featureLayer; }; @@ -395,7 +430,6 @@ define(function (require) { }; label.setPosition('bottomright').addTo(map); return label; - }; /** @@ -427,12 +461,14 @@ define(function (require) { vals[0].toFixed(0)); } else { // 3 to 5 vals for legend - for (i = 0; i < colors.length; i++) { + if (colors) { + for (i = 0; i < colors.length; i++) { vals = self._attr.cScale.invertExtent(colors[i]); strokecol = self.darkerColor(colors[i]); labels.push( ' ' + vals[0].toFixed(0) + ' – ' + vals[1].toFixed(0)); + } } } div.innerHTML = labels.join('
'); @@ -469,7 +505,7 @@ define(function (require) { */ TileMap.prototype.resizeFeatures = function (map, min, max, precision, featureLayer) { var self = this; - var zoomScale = self.zoomScale(mapZoom); + var zoomScale = self.zoomScale(self._attr.mapZoom); featureLayer.eachLayer(function (layer) { var latlng = L.latLng(layer.feature.geometry.coordinates[1], layer.feature.geometry.coordinates[0]); @@ -482,6 +518,7 @@ define(function (require) { rad = zoomScale * self.radiusScale(count, max, precision); } layer.setRadius(rad); + console.log('rad', self._attr.mapZoom, zoomScale, rad); }); }; @@ -503,8 +540,6 @@ define(function (require) { 'Center: ' + props.center[1].toFixed(1) + ', ' + props.center[0].toFixed(1) + '
' + props.valueLabel + ': ' + props.count ); - - // TODO: tooltip-like formatter passed in? layer.bindPopup(popup) .on('mouseover', function (e) { layer.openPopup(); @@ -528,7 +563,7 @@ define(function (require) { var zScale = d3.scale.pow() .exponent(4) .domain([1, 12]) - .range([0.3, 100]); + .range([1, 100]); return zScale(zoom); }; From c5ef5f8984733b49d8380b57ff14d793dc70e8bc Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Tue, 17 Mar 2015 14:20:26 -0700 Subject: [PATCH 09/32] zoom to bounds on featureLayer data bounds on map load, switch from pixels to meters for circle markers, removed resizeFeatures method --- .../vislib/visualizations/tile_map.js | 85 +++---------------- 1 file changed, 12 insertions(+), 73 deletions(-) diff --git a/src/kibana/components/vislib/visualizations/tile_map.js b/src/kibana/components/vislib/visualizations/tile_map.js index 8369d1a00b2b25..5d420dc04c7f35 100644 --- a/src/kibana/components/vislib/visualizations/tile_map.js +++ b/src/kibana/components/vislib/visualizations/tile_map.js @@ -47,6 +47,7 @@ define(function (require) { var $elem = $(this.chartEl); var div; var worldBounds = L.latLngBounds([-90, -220], [90, 220]); + self.precisionSize = [0, 4900000, 624000, 156000, 19000, 4400, 550, 120, 16]; // clean up old maps _.invoke(self.maps, 'destroy'); @@ -116,6 +117,9 @@ define(function (require) { self.addLabel(mapData.properties.label, map); } + // zoom to featureLayer data bounds + map.fitBounds(featureLayer.getBounds()); + // Add button to fit container to points var FitControl = L.Control.extend({ options: { @@ -147,8 +151,7 @@ define(function (require) { * @return {Leaflet object} featureLayer */ TileMap.prototype.fitBounds = function (map, featureLayer) { - - map.fitBounds(featureLayer.getBounds(L.latLngBounds([-90, -220], [90, 220]))); + map.fitBounds(featureLayer.getBounds()); }; /** @@ -252,11 +255,9 @@ define(function (require) { var featureLayer = L.geoJson(mapData, { pointToLayer: function (feature, latlng) { var count = feature.properties.count; - - var rad = zoomScale * self.radiusScale(count, max, precision); - return L.circleMarker(latlng, { - radius: rad - }); + var rad = self.radiusScale(count, max, precision); + return L.circle(latlng, rad); + // return L.circleMarker(latlng, { radius: rad }); }, onEachFeature: function (feature, layer) { self.bindPopup(feature, layer); @@ -284,7 +285,6 @@ define(function (require) { map.on('moveend', function setZoomCenter() { self._attr.mapZoom = self._attr.lastZoom = map.getZoom(); self._attr.mapCenter = self._attr.lastCenter = map.getCenter(); - self.resizeFeatures(map); }); @@ -322,9 +322,8 @@ define(function (require) { var count = feature.properties.count; var rad = zoomScale * 3; console.log(count, rad, zoomScale, self._attr.mapZoom); - return L.circleMarker(latlng, { - radius: rad - }); + return L.circle(latlng, self.precisionSize[precision] / 2); + // return L.circleMarker(latlng, { radius: rad }); }, onEachFeature: function (feature, layer) { self.bindPopup(feature, layer); @@ -492,36 +491,6 @@ define(function (require) { }); }; - /** - * Redraws feature layer markers - * - * @method resizeFeatures - * @param map {Object} - * @param min {Number} - * @param max {Number} - * @param precision {Number} - * @param featureLayer {GeoJson Object} - * @return {undefined} - */ - TileMap.prototype.resizeFeatures = function (map, min, max, precision, featureLayer) { - var self = this; - var zoomScale = self.zoomScale(self._attr.mapZoom); - - featureLayer.eachLayer(function (layer) { - var latlng = L.latLng(layer.feature.geometry.coordinates[1], layer.feature.geometry.coordinates[0]); - - var count = layer.feature.properties.count; - var rad; - if (self._attr.mapType === 'Shaded Circle Markers') { - rad = zoomScale * self.quantRadiusScale(precision); - } else { - rad = zoomScale * self.radiusScale(count, max, precision); - } - layer.setRadius(rad); - console.log('rad', self._attr.mapZoom, zoomScale, rad); - }); - }; - /** * Binds popup and events to each feature on map * @@ -582,39 +551,9 @@ define(function (require) { TileMap.prototype.radiusScale = function (count, max, precision) { // exp = 0.5 for true square root ratio // exp = 1 for linear ratio + var self = this; var exp = 0.6; - var maxr; - switch (precision) { - case 1: - maxr = 150; - break; - case 2: - maxr = 28; - break; - case 3: - maxr = 8; - break; - case 4: - maxr = 2; - break; - case 5: - maxr = 1.4; - break; - case 6: - maxr = 0.6; - break; - case 7: - maxr = 0.4; - break; - case 8: - maxr = 0.2; - break; - case 9: - maxr = 0.12; - break; - default: - maxr = 8; - } + var maxr = self.precisionSize[precision]; return Math.pow(count, exp) / Math.pow(max, exp) * maxr; }; From cc5fa8d1d176b24aefe94004fb266feb1665a8f0 Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Tue, 17 Mar 2015 14:26:55 -0700 Subject: [PATCH 10/32] removed dummy tests in tilemap --- .../specs/vislib/visualizations/tile_map.js | 64 +------------------ 1 file changed, 1 insertion(+), 63 deletions(-) diff --git a/test/unit/specs/vislib/visualizations/tile_map.js b/test/unit/specs/vislib/visualizations/tile_map.js index 776ddc594f0794..6e6c05851c2c9f 100644 --- a/test/unit/specs/vislib/visualizations/tile_map.js +++ b/test/unit/specs/vislib/visualizations/tile_map.js @@ -1,6 +1,7 @@ define (function (require) { var angular = require('angular'); var _ = require('lodash'); + var $ = require('jquery'); var L = require('leaflet'); // Data @@ -73,67 +74,4 @@ define (function (require) { }); }); - - - describe('TileMap', function () { - - var types = ['Scaled Circle Markers', 'Shaded Circle Markers', 'Shaded Geohash Grid', 'Pin Markers']; - var vis; - var visLibParams = { - isDesaturated: true, - type: 'tile_map', - mapType: 'Scaled Circle Markers' - }; - - beforeEach(function () { - module('TileMapFactory'); - }); - - beforeEach(function () { - inject(function (Private) { - vis = Private(require('vislib_fixtures/_vis_fixture'))(visLibParams); - require('css!components/vislib/styles/main'); - vis.render(dataArray[0]); - - console.log('vis', vis); - - - }); - }); - - afterEach(function () { - $(vis.el).remove(); - vis = null; - }); - - it('first test case', function() { - expect(1 === 1).to.be(true); - }); - - it('second, has data', function() { - expect(dataArray[0]).to.be(true); - }); - - it('map should draw', function() { - // - }) - }); - - describe('TileMap nest 1', function () { - beforeEach(function () { - console.log('before each'); - }); - - it('map should draw 1', function() { - expect(1 === 1).to.be(true); - }); - - describe('TileMap nest 2', function () { - it('map should draw 2', function() { - expect(1 === 1).to.be(false); - }); - }); - - }); - }); \ No newline at end of file From ad7d558dafeb444bcf3f4cdf20df7a471c5079c3 Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Tue, 17 Mar 2015 16:03:13 -0700 Subject: [PATCH 11/32] change default geohash precision max from 6 to 7, add note about max setting and url for explanation --- src/kibana/components/config/defaults.js | 7 +++-- .../vislib/visualizations/tile_map.js | 26 ++++++++++++------- 2 files changed, 22 insertions(+), 11 deletions(-) diff --git a/src/kibana/components/config/defaults.js b/src/kibana/components/config/defaults.js index 1af0fd1a15fd95..daff26f444bd21 100644 --- a/src/kibana/components/config/defaults.js +++ b/src/kibana/components/config/defaults.js @@ -57,8 +57,11 @@ define(function (require) { description: 'Never show more than this many bar in date histograms, scale values if needed', }, 'visualization:tileMap:maxPrecision': { - value: 6, - description: 'The maximum geoHash size allowed in a tile map', + value: 7, + description: 'The maximum geoHash precision displayed on tile maps: ' + + '7 is high, 10 is very high, 12 is the max geoHash precision. ' + + 'http://www.elastic.co/guide/en/elasticsearch/reference/current/' + + 'search-aggregations-bucket-geohashgrid-aggregation.html#_cell_dimensions_at_the_equator', }, 'csv:separator': { value: ',', diff --git a/src/kibana/components/vislib/visualizations/tile_map.js b/src/kibana/components/vislib/visualizations/tile_map.js index 5d420dc04c7f35..6e5e11c5348b26 100644 --- a/src/kibana/components/vislib/visualizations/tile_map.js +++ b/src/kibana/components/vislib/visualizations/tile_map.js @@ -9,6 +9,8 @@ define(function (require) { require('css!components/vislib/styles/main'); + var tileMapState; + /** * Tile Map Visualization: renders maps * @@ -32,6 +34,10 @@ define(function (require) { // add allmin and allmax to geoJson chartData.geoJson.properties.allmin = chartData.geoJson.properties.min; chartData.geoJson.properties.allmax = chartData.geoJson.properties.max; + + tileMapState = this.handler.vis._attr; + console.log('new TileMap tileMapState', tileMapState); + } /** @@ -47,7 +53,7 @@ define(function (require) { var $elem = $(this.chartEl); var div; var worldBounds = L.latLngBounds([-90, -220], [90, 220]); - self.precisionSize = [0, 4900000, 624000, 156000, 19000, 4400, 550, 120, 16]; + self.precisionSize = [0, 4900000, 620000, 155000, 19000, 4400, 550, 120, 16, 4, 0.6, 0.12, 0.02]; // clean up old maps _.invoke(self.maps, 'destroy'); @@ -60,12 +66,12 @@ define(function (require) { var mapCenter = [15, 5]; var mapZoom = 2; - if (self._attr.lastZoom) { + if (tileMapState.mapZoom) { self._attr.mapZoom = self._attr.lastZoom; } else { self._attr.mapZoom = self._attr.lastZoom = mapZoom; } - if (self._attr.lastCenter) { + if (tileMapState.mapCenter) { mapCenter = self._attr.mapCenter = self._attr.lastCenter; } else { self._attr.mapCenter = self._attr.lastCenter = mapCenter; @@ -109,8 +115,9 @@ define(function (require) { }); map.on('moveend', function setZoomCenter() { - mapZoom = self._attr.lastZoom = map.getZoom(); - mapCenter = self._attr.lastCenter = map.getCenter(); + mapZoom = tileMapState.mapZoom = self._attr.lastZoom = map.getZoom(); + mapCenter = tileMapState.mapCenter = self._attr.lastCenter = map.getCenter(); + console.log(tileMapState); }); if (mapData.properties.label) { @@ -118,7 +125,10 @@ define(function (require) { } // zoom to featureLayer data bounds - map.fitBounds(featureLayer.getBounds()); + console.log(tileMapState); + if (!tileMapState.firstFitBounds) { + map.fitBounds(featureLayer.getBounds()); + } // Add button to fit container to points var FitControl = L.Control.extend({ @@ -152,6 +162,7 @@ define(function (require) { */ TileMap.prototype.fitBounds = function (map, featureLayer) { map.fitBounds(featureLayer.getBounds()); + tileMapState.firstFitBounds = true; }; /** @@ -257,7 +268,6 @@ define(function (require) { var count = feature.properties.count; var rad = self.radiusScale(count, max, precision); return L.circle(latlng, rad); - // return L.circleMarker(latlng, { radius: rad }); }, onEachFeature: function (feature, layer) { self.bindPopup(feature, layer); @@ -321,9 +331,7 @@ define(function (require) { pointToLayer: function (feature, latlng) { var count = feature.properties.count; var rad = zoomScale * 3; - console.log(count, rad, zoomScale, self._attr.mapZoom); return L.circle(latlng, self.precisionSize[precision] / 2); - // return L.circleMarker(latlng, { radius: rad }); }, onEachFeature: function (feature, layer) { self.bindPopup(feature, layer); From c431155fd4c546e0e47ff34f00cb8b3e8233b8b9 Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Mon, 23 Mar 2015 13:42:16 -0500 Subject: [PATCH 12/32] tilemap update of low-hanging fruit --- src/kibana/components/config/defaults.js | 5 +- .../vislib/visualizations/tile_map.js | 68 ++++++------------- 2 files changed, 24 insertions(+), 49 deletions(-) diff --git a/src/kibana/components/config/defaults.js b/src/kibana/components/config/defaults.js index daff26f444bd21..756409a112b793 100644 --- a/src/kibana/components/config/defaults.js +++ b/src/kibana/components/config/defaults.js @@ -58,9 +58,8 @@ define(function (require) { }, 'visualization:tileMap:maxPrecision': { value: 7, - description: 'The maximum geoHash precision displayed on tile maps: ' + - '7 is high, 10 is very high, 12 is the max geoHash precision. ' + - 'http://www.elastic.co/guide/en/elasticsearch/reference/current/' + + description: 'The maximum geoHash precision displayed on tile maps: 7 is high, 10 is very high, ' + + '12 is the max. Explanation of cell dimensions: http://www.elastic.co/guide/en/elasticsearch/reference/current/' + 'search-aggregations-bucket-geohashgrid-aggregation.html#_cell_dimensions_at_the_equator', }, 'csv:separator': { diff --git a/src/kibana/components/vislib/visualizations/tile_map.js b/src/kibana/components/vislib/visualizations/tile_map.js index 6e5e11c5348b26..0e9ad6720fdb5c 100644 --- a/src/kibana/components/vislib/visualizations/tile_map.js +++ b/src/kibana/components/vislib/visualizations/tile_map.js @@ -9,8 +9,6 @@ define(function (require) { require('css!components/vislib/styles/main'); - var tileMapState; - /** * Tile Map Visualization: renders maps * @@ -34,10 +32,6 @@ define(function (require) { // add allmin and allmax to geoJson chartData.geoJson.properties.allmin = chartData.geoJson.properties.min; chartData.geoJson.properties.allmax = chartData.geoJson.properties.max; - - tileMapState = this.handler.vis._attr; - console.log('new TileMap tileMapState', tileMapState); - } /** @@ -66,15 +60,15 @@ define(function (require) { var mapCenter = [15, 5]; var mapZoom = 2; - if (tileMapState.mapZoom) { - self._attr.mapZoom = self._attr.lastZoom; + if (self._attr.mapZoom) { + mapZoom = self._attr.mapZoom; } else { - self._attr.mapZoom = self._attr.lastZoom = mapZoom; + self._attr.mapZoom = mapZoom; } - if (tileMapState.mapCenter) { - mapCenter = self._attr.mapCenter = self._attr.lastCenter; + if (self._attr.mapCenter) { + mapCenter = self._attr.mapCenter; } else { - self._attr.mapCenter = self._attr.lastCenter = mapCenter; + mapCenter = self._attr.mapCenter; } var mapData = data.geoJson; @@ -115,9 +109,8 @@ define(function (require) { }); map.on('moveend', function setZoomCenter() { - mapZoom = tileMapState.mapZoom = self._attr.lastZoom = map.getZoom(); - mapCenter = tileMapState.mapCenter = self._attr.lastCenter = map.getCenter(); - console.log(tileMapState); + mapZoom = self._attr.mapZoom = map.getZoom(); + mapCenter = self._attr.mapCenter = map.getCenter(); }); if (mapData.properties.label) { @@ -125,9 +118,11 @@ define(function (require) { } // zoom to featureLayer data bounds - console.log(tileMapState); - if (!tileMapState.firstFitBounds) { + if (!self._attr.firstFitBounds) { map.fitBounds(featureLayer.getBounds()); + self._attr.firstFitBounds = featureLayer.getBounds(); + } else { + map.fitBounds(self._attr.firstFitBounds); } // Add button to fit container to points @@ -162,7 +157,7 @@ define(function (require) { */ TileMap.prototype.fitBounds = function (map, featureLayer) { map.fitBounds(featureLayer.getBounds()); - tileMapState.firstFitBounds = true; + this._attr.firstFitBounds = featureLayer.getBounds(); }; /** @@ -174,8 +169,7 @@ define(function (require) { * @return {Leaflet object} featureLayer */ TileMap.prototype.saturateTiles = function () { - var self = this; - if (!self._attr.isDesaturated) { + if (!this._attr.isDesaturated) { $('img.leaflet-tile-loaded').addClass('filters-off'); } }; @@ -221,7 +215,7 @@ define(function (require) { var max = mapData.properties.max; var length = mapData.properties.length; var precision = mapData.properties.precision; - var zoomScale = self.zoomScale(self._attr.mapZoom); + //var zoomScale = self.zoomScale(self._attr.mapZoom); var bounds; var defaultColor = '#ff6128'; var featureLayer = L.geoJson(mapData, { @@ -259,7 +253,7 @@ define(function (require) { var max = mapData.properties.max; var length = mapData.properties.length; var precision = mapData.properties.precision; - var zoomScale = self.zoomScale(self._attr.mapZoom); + //var zoomScale = self.zoomScale(self._attr.mapZoom); var bounds; var defaultColor = '#ff6128'; @@ -293,8 +287,8 @@ define(function (require) { } map.on('moveend', function setZoomCenter() { - self._attr.mapZoom = self._attr.lastZoom = map.getZoom(); - self._attr.mapCenter = self._attr.lastCenter = map.getCenter(); + self._attr.mapZoom = map.getZoom(); + self._attr.mapCenter = map.getCenter(); }); @@ -323,14 +317,14 @@ define(function (require) { var length = mapData.properties.length; var precision = mapData.properties.precision; - var zoomScale = self.zoomScale(self._attr.mapZoom); + //var zoomScale = self.zoomScale(self._attr.mapZoom); var bounds; var defaultColor = '#005baa'; var featureLayer = L.geoJson(mapData, { pointToLayer: function (feature, latlng) { var count = feature.properties.count; - var rad = zoomScale * 3; + //var rad = zoomScale * 3; return L.circle(latlng, self.precisionSize[precision] / 2); }, onEachFeature: function (feature, layer) { @@ -373,7 +367,7 @@ define(function (require) { var max = mapData.properties.max; var length = mapData.properties.length; var precision = mapData.properties.precision; - var zoomScale = self.zoomScale(self._attr.mapZoom); + //var zoomScale = self.zoomScale(self._attr.mapZoom); var bounds; var defaultColor = '#ff6128'; @@ -385,7 +379,7 @@ define(function (require) { var featureLayer = L.geoJson(mapData, { pointToLayer: function (feature, latlng) { var count = feature.properties.count; - var rad = zoomScale * 3; + //var rad = zoomScale * 3; var gh = feature.properties.rectangle; var bounds = [[gh[0][1], gh[0][0]], [gh[2][1], gh[2][0]]]; return L.rectangle(bounds); @@ -526,24 +520,6 @@ define(function (require) { }); }; - /** - * zoomScale uses map zoom to determine a scaling - * factor for circle marker radius to display more - * consistent circle size as you zoom in or out - * - * @method radiusScale - * @param value {Number} - * @param max {Number} - * @return {Number} - */ - TileMap.prototype.zoomScale = function (zoom) { - var zScale = d3.scale.pow() - .exponent(4) - .domain([1, 12]) - .range([1, 100]); - return zScale(zoom); - }; - /** * radiusScale returns a a number for scaled circle markers * approx. square root of count From 55d4177867acde0849cd4771383d3bbf7ad912e6 Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Mon, 23 Mar 2015 19:43:23 -0500 Subject: [PATCH 13/32] changed scaling of circle markers to get radius in meters from min of width or height of geohash grid, cleaned up some extraneous code --- .../vislib/visualizations/tile_map.js | 99 ++++++------------- 1 file changed, 32 insertions(+), 67 deletions(-) diff --git a/src/kibana/components/vislib/visualizations/tile_map.js b/src/kibana/components/vislib/visualizations/tile_map.js index 780bb019aa7c69..c5a8abe6345ebc 100644 --- a/src/kibana/components/vislib/visualizations/tile_map.js +++ b/src/kibana/components/vislib/visualizations/tile_map.js @@ -47,7 +47,7 @@ define(function (require) { var $elem = $(this.chartEl); var div; var worldBounds = L.latLngBounds([-90, -220], [90, 220]); - self.precisionSize = [0, 4900000, 620000, 155000, 19000, 4400, 550, 120, 16, 4, 0.6, 0.12, 0.02]; + self.precisionSize = [0, 4700000, 620000, 155000, 19000, 4400, 550, 120, 16, 4, 0.6, 0.12, 0.02]; // clean up old maps _.invoke(self.maps, 'destroy'); @@ -215,7 +215,6 @@ define(function (require) { var max = mapData.properties.max; var length = mapData.properties.length; var precision = mapData.properties.precision; - //var zoomScale = self.zoomScale(self._attr.mapZoom); var bounds; var defaultColor = '#ff6128'; var featureLayer = L.geoJson(mapData, { @@ -253,15 +252,14 @@ define(function (require) { var max = mapData.properties.max; var length = mapData.properties.length; var precision = mapData.properties.precision; - //var zoomScale = self.zoomScale(self._attr.mapZoom); var bounds; var defaultColor = '#ff6128'; var featureLayer = L.geoJson(mapData, { pointToLayer: function (feature, latlng) { var count = feature.properties.count; - var rad = self.radiusScale(count, max, precision); - return L.circle(latlng, rad); + var scaledRadius = self.radiusScale(count, max, precision, feature); + return L.circle(latlng, scaledRadius); }, onEachFeature: function (feature, layer) { self.bindPopup(feature, layer); @@ -270,9 +268,7 @@ define(function (require) { var count = feature.properties.count; var color = self.quantizeColorScale(count, min, max); return { - // fillColor: defaultColor, fillColor: color, - //color: self.darkerColor(defaultColor), color: self.darkerColor(color), weight: 1.0, opacity: 1, @@ -291,7 +287,6 @@ define(function (require) { self._attr.mapCenter = map.getCenter(); }); - return featureLayer; }; @@ -317,15 +312,14 @@ define(function (require) { var length = mapData.properties.length; var precision = mapData.properties.precision; - //var zoomScale = self.zoomScale(self._attr.mapZoom); var bounds; var defaultColor = '#005baa'; var featureLayer = L.geoJson(mapData, { pointToLayer: function (feature, latlng) { var count = feature.properties.count; - //var rad = zoomScale * 3; - return L.circle(latlng, self.precisionSize[precision] / 2); + var radius = self.geohashMinDistance(feature) / 2; + return L.circle(latlng, radius); }, onEachFeature: function (feature, layer) { self.bindPopup(feature, layer); @@ -367,7 +361,6 @@ define(function (require) { var max = mapData.properties.max; var length = mapData.properties.length; var precision = mapData.properties.precision; - //var zoomScale = self.zoomScale(self._attr.mapZoom); var bounds; var defaultColor = '#ff6128'; @@ -379,7 +372,6 @@ define(function (require) { var featureLayer = L.geoJson(mapData, { pointToLayer: function (feature, latlng) { var count = feature.properties.count; - //var rad = zoomScale * 3; var gh = feature.properties.rectangle; var bounds = [[gh[0][1], gh[0][0]], [gh[2][1], gh[2][0]]]; return L.rectangle(bounds); @@ -521,7 +513,26 @@ define(function (require) { }; /** - * radiusScale returns a a number for scaled circle markers + * geohashMinDistance returns a min distance in meters for sizing + * circle markers to fit within geohash grid + * + * @method geohashMinDistance + * @param feature {Object} + * @return {Number} + */ + TileMap.prototype.geohashMinDistance = function (feature) { + var gh = feature.properties.rectangle; + var nw = L.latLng([gh[3][1], gh[3][0]]); + var ne = L.latLng([gh[2][1], gh[2][0]]); + var sw = L.latLng([gh[0][1], gh[0][0]]); + var ew = Math.floor(nw.distanceTo(ne)); + var ns = Math.floor(nw.distanceTo(sw)); + var min = _.min([ew, ns]); + return min; + }; + + /** + * radiusScale returns a number for scaled circle markers * approx. square root of count * which is multiplied by a factor based on the geohash precision * for relative sizing of markers @@ -532,59 +543,14 @@ define(function (require) { * @param precision {Number} * @return {Number} */ - TileMap.prototype.radiusScale = function (count, max, precision) { - // exp = 0.5 for true square root ratio + TileMap.prototype.radiusScale = function (count, max, precision, feature) { + // exp = 0.5 for square root ratio // exp = 1 for linear ratio - var self = this; var exp = 0.6; - var maxr = self.precisionSize[precision]; + var maxr = this.geohashMinDistance(feature); return Math.pow(count, exp) / Math.pow(max, exp) * maxr; }; - /** - * returns a number to scale shaded circle markers - * based on the geohash precision - * - * @method quantRadiusScale - * @param precision {Number} - * @return {Number} - */ - TileMap.prototype.quantRadiusScale = function (precision) { - var maxr; - switch (precision) { - case 1: - maxr = 150; - break; - case 2: - maxr = 18; - break; - case 3: - maxr = 4.5; - break; - case 4: - maxr = 0.7; - break; - case 5: - maxr = 0.26; - break; - case 6: - maxr = 0.20; - break; - case 7: - maxr = 0.16; - break; - case 8: - maxr = 0.13; - break; - case 9: - maxr = 0.11; - break; - default: - maxr = 4.5; - } - return maxr; - }; - /** * d3 quantize scale returns a hex color, * used for marker fill color @@ -596,19 +562,18 @@ define(function (require) { * @return {String} hex color */ TileMap.prototype.quantizeColorScale = function (count, min, max) { - var self = this; var reds5 = ['#fed976', '#feb24c', '#fd8d3c', '#f03b20', '#bd0026']; var reds3 = ['#fecc5c', '#fd8d3c', '#e31a1c']; var reds1 = ['#ff6128']; - var colors = self._attr.colors = reds5; + var colors = this._attr.colors = reds5; if (max - min < 3) { - colors = self._attr.colors = reds1; + colors = this._attr.colors = reds1; } else if (max - min < 25) { - colors = self._attr.colors = reds3; + colors = this._attr.colors = reds3; } - var cScale = self._attr.cScale = d3.scale.quantize() + var cScale = this._attr.cScale = d3.scale.quantize() .domain([min, max]) .range(colors); if (max === min) { From 097ac6ae68bffc18a099e582c18441522d1af4eb Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Tue, 24 Mar 2015 11:45:28 -0500 Subject: [PATCH 14/32] add legend to scaled geohash grid, removed precisionSize array --- src/kibana/components/vislib/visualizations/tile_map.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/kibana/components/vislib/visualizations/tile_map.js b/src/kibana/components/vislib/visualizations/tile_map.js index c5a8abe6345ebc..2fa8dc3cf0137d 100644 --- a/src/kibana/components/vislib/visualizations/tile_map.js +++ b/src/kibana/components/vislib/visualizations/tile_map.js @@ -47,7 +47,6 @@ define(function (require) { var $elem = $(this.chartEl); var div; var worldBounds = L.latLngBounds([-90, -220], [90, 220]); - self.precisionSize = [0, 4700000, 620000, 155000, 19000, 4400, 550, 120, 16, 4, 0.6, 0.12, 0.02]; // clean up old maps _.invoke(self.maps, 'destroy'); @@ -196,6 +195,7 @@ define(function (require) { featureLayer = this.pinMarkers(map, mapData); } } + return featureLayer; }; @@ -400,6 +400,11 @@ define(function (require) { } }); + // add legend + if (mapData.features.length > 1) { + self.addLegend(mapData, map); + } + return featureLayer; }; @@ -421,7 +426,7 @@ define(function (require) { label.update = function () { this._div.innerHTML = '

' + mapLabel + '

'; }; - label.setPosition('bottomright').addTo(map); + return label; }; From e1b5a27c3ba45da365317cacbc4522a0c6f1cda6 Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Tue, 24 Mar 2015 11:53:54 -0500 Subject: [PATCH 15/32] add legend to scaled geohash grid, removed precisionSize array --- src/kibana/components/vislib/visualizations/tile_map.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/kibana/components/vislib/visualizations/tile_map.js b/src/kibana/components/vislib/visualizations/tile_map.js index 2fa8dc3cf0137d..1916d19a843b80 100644 --- a/src/kibana/components/vislib/visualizations/tile_map.js +++ b/src/kibana/components/vislib/visualizations/tile_map.js @@ -364,11 +364,6 @@ define(function (require) { var bounds; var defaultColor = '#ff6128'; - // add legend - if (mapData.features.length > 1) { - self.addLegend(mapData, map); - } - var featureLayer = L.geoJson(mapData, { pointToLayer: function (feature, latlng) { var count = feature.properties.count; From 404105fd91df6872d25148b7aa6cb1192de093fd Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Tue, 24 Mar 2015 12:45:33 -0500 Subject: [PATCH 16/32] cleaning up jslint issues --- .../vislib/visualizations/tile_map.js | 13 +- .../fixture/mock_data/geohash/_columns.js | 7396 ++++++++--------- .../vislib/fixture/mock_data/geohash/_rows.js | 7056 ++++++++-------- 3 files changed, 7232 insertions(+), 7233 deletions(-) diff --git a/src/kibana/components/vislib/visualizations/tile_map.js b/src/kibana/components/vislib/visualizations/tile_map.js index 1916d19a843b80..935d1f26db750a 100644 --- a/src/kibana/components/vislib/visualizations/tile_map.js +++ b/src/kibana/components/vislib/visualizations/tile_map.js @@ -368,8 +368,8 @@ define(function (require) { pointToLayer: function (feature, latlng) { var count = feature.properties.count; var gh = feature.properties.rectangle; - var bounds = [[gh[0][1], gh[0][0]], [gh[2][1], gh[2][0]]]; - return L.rectangle(bounds); + var bounds = [[gh[0][1], gh[0][0]], [gh[2][1], gh[2][0]]]; + return L.rectangle(bounds); }, onEachFeature: function (feature, layer) { self.bindPopup(feature, layer); @@ -456,11 +456,10 @@ define(function (require) { // 3 to 5 vals for legend if (colors) { for (i = 0; i < colors.length; i++) { - vals = self._attr.cScale.invertExtent(colors[i]); - strokecol = self.darkerColor(colors[i]); - labels.push( - ' ' + - vals[0].toFixed(0) + ' – ' + vals[1].toFixed(0)); + vals = self._attr.cScale.invertExtent(colors[i]); + strokecol = self.darkerColor(colors[i]); + labels.push(' ' + vals[0].toFixed(0) + ' – ' + vals[1].toFixed(0)); } } } diff --git a/test/unit/specs/vislib/fixture/mock_data/geohash/_columns.js b/test/unit/specs/vislib/fixture/mock_data/geohash/_columns.js index d014f400ffbd4f..e93a7521db4e50 100644 --- a/test/unit/specs/vislib/fixture/mock_data/geohash/_columns.js +++ b/test/unit/specs/vislib/fixture/mock_data/geohash/_columns.js @@ -1,3797 +1,3797 @@ define(function () { return { - "columns": [ - { - "geoJson": { - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 22.5, - 22.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 42, - "geohash": "s", - "center": [ - 22.5, - 22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", + "columns": [ + { + "geoJson": { + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 22.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 42, + "geohash": "s", + "center": [ + 22.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "s", + "value": "s", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 42, + "value": 42, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "s", - "value": "s", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 42, - "value": 42, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 0, + 0 + ], + [ + 45, + 0 + ], + [ + 45, + 45 + ], + [ + 0, + 45 + ] + ] + } }, - "rectangle": [ - [ - 0, - 0 - ], - [ - 45, - 0 - ], - [ - 45, - 45 - ], - [ - 0, - 45 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -67.5, - 22.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 31, - "geohash": "d", - "center": [ - -67.5, - 22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -67.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 31, + "geohash": "d", + "center": [ + -67.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "d", + "value": "d", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 31, + "value": 31, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "d", - "value": "d", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 31, - "value": 31, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -90, + 0 + ], + [ + -45, + 0 + ], + [ + -45, + 45 + ], + [ + -90, + 45 + ] + ] + } }, - "rectangle": [ - [ - -90, - 0 - ], - [ - -45, - 0 - ], - [ - -45, - 45 - ], - [ - -90, - 45 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 112.5, - 22.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 30, - "geohash": "w", - "center": [ - 112.5, - 22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 112.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 30, + "geohash": "w", + "center": [ + 112.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "w", + "value": "w", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 30, + "value": 30, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "w", - "value": "w", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 30, - "value": 30, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 90, + 0 + ], + [ + 135, + 0 + ], + [ + 135, + 45 + ], + [ + 90, + 45 + ] + ] + } }, - "rectangle": [ - [ - 90, - 0 - ], - [ - 135, - 0 - ], - [ - 135, - 45 - ], - [ - 90, - 45 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -112.5, - 22.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 25, - "geohash": "9", - "center": [ - -112.5, - 22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -112.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 25, + "geohash": "9", + "center": [ + -112.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "9", + "value": "9", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 25, + "value": 25, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "9", - "value": "9", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 25, - "value": 25, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -135, + 0 + ], + [ + -90, + 0 + ], + [ + -90, + 45 + ], + [ + -135, + 45 + ] + ] + } }, - "rectangle": [ - [ - -135, - 0 - ], - [ - -90, - 0 - ], - [ - -90, - 45 - ], - [ - -135, - 45 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 67.5, - 22.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 22, - "geohash": "t", - "center": [ - 67.5, - 22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 67.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 22, + "geohash": "t", + "center": [ + 67.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "t", + "value": "t", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 22, + "value": 22, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "t", - "value": "t", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 22, - "value": 22, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 45, + 0 + ], + [ + 90, + 0 + ], + [ + 90, + 45 + ], + [ + 45, + 45 + ] + ] + } }, - "rectangle": [ - [ - 45, - 0 - ], - [ - 90, - 0 - ], - [ - 90, - 45 - ], - [ - 45, - 45 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 22.5, - -22.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 22, - "geohash": "k", - "center": [ - 22.5, - -22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 22.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 22, + "geohash": "k", + "center": [ + 22.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "k", + "value": "k", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 22, + "value": 22, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "k", - "value": "k", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 22, - "value": 22, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 0, + -45 + ], + [ + 45, + -45 + ], + [ + 45, + 0 + ], + [ + 0, + 0 + ] + ] + } }, - "rectangle": [ - [ - 0, - -45 - ], - [ - 45, - -45 - ], - [ - 45, - 0 - ], - [ - 0, - 0 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -67.5, - -22.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 21, - "geohash": "6", - "center": [ - -67.5, - -22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -67.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 21, + "geohash": "6", + "center": [ + -67.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "6", + "value": "6", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 21, + "value": 21, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "6", - "value": "6", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 21, - "value": 21, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -90, + -45 + ], + [ + -45, + -45 + ], + [ + -45, + 0 + ], + [ + -90, + 0 + ] + ] + } }, - "rectangle": [ - [ - -90, - -45 - ], - [ - -45, - -45 - ], - [ - -45, - 0 - ], - [ - -90, - 0 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 22.5, - 67.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 19, - "geohash": "u", - "center": [ - 22.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 22.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 19, + "geohash": "u", + "center": [ + 22.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "u", + "value": "u", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 19, + "value": 19, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "u", - "value": "u", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 19, - "value": 19, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 0, + 45 + ], + [ + 45, + 45 + ], + [ + 45, + 90 + ], + [ + 0, + 90 + ] + ] + } }, - "rectangle": [ - [ - 0, - 45 - ], - [ - 45, - 45 - ], - [ - 45, - 90 - ], - [ - 0, - 90 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 67.5, - 67.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 18, - "geohash": "v", - "center": [ - 67.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 67.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 18, + "geohash": "v", + "center": [ + 67.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "v", + "value": "v", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 18, + "value": 18, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "v", - "value": "v", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 18, - "value": 18, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 45, + 45 + ], + [ + 90, + 45 + ], + [ + 90, + 90 + ], + [ + 45, + 90 + ] + ] + } }, - "rectangle": [ - [ - 45, - 45 - ], - [ - 90, - 45 - ], - [ - 90, - 90 - ], - [ - 45, - 90 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -112.5, - 67.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 11, - "geohash": "c", - "center": [ - -112.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -112.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 11, + "geohash": "c", + "center": [ + -112.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "c", + "value": "c", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 11, + "value": 11, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "c", - "value": "c", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 11, - "value": 11, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -135, + 45 + ], + [ + -90, + 45 + ], + [ + -90, + 90 + ], + [ + -135, + 90 + ] + ] + } }, - "rectangle": [ - [ - -135, - 45 - ], - [ - -90, - 45 - ], - [ - -90, - 90 - ], - [ - -135, - 90 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 157.5, - -22.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 10, - "geohash": "r", - "center": [ - 157.5, - -22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 157.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 10, + "geohash": "r", + "center": [ + 157.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "r", + "value": "r", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 10, + "value": 10, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "r", - "value": "r", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 10, - "value": 10, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 135, + -45 + ], + [ + 180, + -45 + ], + [ + 180, + 0 + ], + [ + 135, + 0 + ] + ] + } }, - "rectangle": [ - [ - 135, - -45 - ], - [ - 180, - -45 - ], - [ - 180, - 0 - ], - [ - 135, - 0 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 112.5, - 67.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 9, - "geohash": "y", - "center": [ - 112.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 112.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 9, + "geohash": "y", + "center": [ + 112.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "y", + "value": "y", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 9, + "value": 9, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "y", - "value": "y", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 9, - "value": 9, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 90, + 45 + ], + [ + 135, + 45 + ], + [ + 135, + 90 + ], + [ + 90, + 90 + ] + ] + } }, - "rectangle": [ - [ - 90, - 45 - ], - [ - 135, - 45 - ], - [ - 135, - 90 - ], - [ - 90, - 90 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -22.5, - 22.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 9, - "geohash": "e", - "center": [ - -22.5, - 22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -22.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 9, + "geohash": "e", + "center": [ + -22.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "e", + "value": "e", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 9, + "value": 9, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "e", - "value": "e", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 9, - "value": 9, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -45, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 45 + ], + [ + -45, + 45 + ] + ] + } }, - "rectangle": [ - [ - -45, - 0 - ], - [ - 0, - 0 - ], - [ - 0, - 45 - ], - [ - -45, - 45 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -67.5, - 67.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 8, - "geohash": "f", - "center": [ - -67.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -67.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 8, + "geohash": "f", + "center": [ + -67.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "f", + "value": "f", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 8, + "value": 8, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "f", - "value": "f", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 8, - "value": 8, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -90, + 45 + ], + [ + -45, + 45 + ], + [ + -45, + 90 + ], + [ + -90, + 90 + ] + ] + } }, - "rectangle": [ - [ - -90, - 45 - ], - [ - -45, - 45 - ], - [ - -45, - 90 - ], - [ - -90, - 90 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -22.5, - -22.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 8, - "geohash": "7", - "center": [ - -22.5, - -22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -22.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 8, + "geohash": "7", + "center": [ + -22.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "7", + "value": "7", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 8, + "value": 8, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "7", - "value": "7", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 8, - "value": 8, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -45, + -45 + ], + [ + 0, + -45 + ], + [ + 0, + 0 + ], + [ + -45, + 0 + ] + ] + } }, - "rectangle": [ - [ - -45, - -45 - ], - [ - 0, - -45 - ], - [ - 0, - 0 - ], - [ - -45, - 0 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 112.5, - -22.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 6, - "geohash": "q", - "center": [ - 112.5, - -22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 112.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 6, + "geohash": "q", + "center": [ + 112.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "q", + "value": "q", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 6, + "value": 6, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "q", - "value": "q", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 6, - "value": 6, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 90, + -45 + ], + [ + 135, + -45 + ], + [ + 135, + 0 + ], + [ + 90, + 0 + ] + ] + } }, - "rectangle": [ - [ - 90, - -45 - ], - [ - 135, - -45 - ], - [ - 135, - 0 - ], - [ - 90, - 0 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -22.5, - 67.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 6, - "geohash": "g", - "center": [ - -22.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -22.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 6, + "geohash": "g", + "center": [ + -22.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "g", + "value": "g", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 6, + "value": 6, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "g", - "value": "g", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 6, - "value": 6, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -45, + 45 + ], + [ + 0, + 45 + ], + [ + 0, + 90 + ], + [ + -45, + 90 + ] + ] + } }, - "rectangle": [ - [ - -45, - 45 - ], - [ - 0, - 45 - ], - [ - 0, - 90 - ], - [ - -45, - 90 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 157.5, - 22.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 4, - "geohash": "x", - "center": [ - 157.5, - 22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 157.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 4, + "geohash": "x", + "center": [ + 157.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "x", + "value": "x", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 4, + "value": 4, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "x", - "value": "x", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 4, - "value": 4, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 135, + 0 + ], + [ + 180, + 0 + ], + [ + 180, + 45 + ], + [ + 135, + 45 + ] + ] + } }, - "rectangle": [ - [ - 135, - 0 - ], - [ - 180, - 0 - ], - [ - 180, - 45 - ], - [ - 135, - 45 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -157.5, - 67.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 3, - "geohash": "b", - "center": [ - -157.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -157.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 3, + "geohash": "b", + "center": [ + -157.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "b", + "value": "b", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 3, + "value": 3, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "b", - "value": "b", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 3, - "value": 3, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -180, + 45 + ], + [ + -135, + 45 + ], + [ + -135, + 90 + ], + [ + -180, + 90 + ] + ] + } }, - "rectangle": [ - [ - -180, - 45 - ], - [ - -135, - 45 - ], - [ - -135, - 90 - ], - [ - -180, - 90 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 157.5, - 67.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 2, - "geohash": "z", - "center": [ - 157.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 157.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 2, + "geohash": "z", + "center": [ + 157.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "z", + "value": "z", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 2, + "value": 2, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "z", - "value": "z", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 2, - "value": 2, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 135, + 45 + ], + [ + 180, + 45 + ], + [ + 180, + 90 + ], + [ + 135, + 90 + ] + ] + } }, - "rectangle": [ - [ - 135, - 45 - ], - [ - 180, - 45 - ], - [ - 180, - 90 - ], - [ - 135, - 90 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 67.5, - -22.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 1, - "geohash": "m", - "center": [ - 67.5, - -22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 67.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 1, + "geohash": "m", + "center": [ + 67.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "m", + "value": "m", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 1, + "value": 1, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "m", - "value": "m", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 1, - "value": 1, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 45, + -45 + ], + [ + 90, + -45 + ], + [ + 90, + 0 + ], + [ + 45, + 0 + ] + ] + } }, - "rectangle": [ - [ - 45, - -45 - ], - [ - 90, - -45 - ], - [ - 90, - 0 - ], - [ - 45, - 0 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -22.5, - -67.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 1, - "geohash": "5", - "center": [ - -22.5, - -67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -22.5, + -67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 1, + "geohash": "5", + "center": [ + -22.5, + -67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "5", + "value": "5", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 1, + "value": 1, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "5", - "value": "5", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 1, - "value": 1, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -45, + -90 + ], + [ + 0, + -90 + ], + [ + 0, + -45 + ], + [ + -45, + -45 + ] + ] + } }, - "rectangle": [ - [ - -45, - -90 - ], - [ - 0, - -90 - ], - [ - 0, - -45 - ], - [ - -45, - -45 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -67.5, - -67.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 1, - "geohash": "4", - "center": [ - -67.5, - -67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -67.5, + -67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 1, + "geohash": "4", + "center": [ + -67.5, + -67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "4", + "value": "4", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 1, + "value": 1, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "4", - "value": "4", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 1, - "value": 1, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -90, + -90 + ], + [ + -45, + -90 + ], + [ + -45, + -45 + ], + [ + -90, + -45 + ] + ] + } }, - "rectangle": [ - [ - -90, - -90 - ], - [ - -45, - -90 - ], - [ - -45, - -45 - ], - [ - -90, - -45 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -112.5, - -22.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 1, - "geohash": "3", - "center": [ - -112.5, - -22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -112.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 1, + "geohash": "3", + "center": [ + -112.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "CN", + "value": "CN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "3", + "value": "3", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 1, + "value": 1, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "3", - "value": "3", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 1, - "value": 1, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - -135, - -45 - ], - [ - -90, - -45 - ], - [ - -90, - 0 - ], - [ - -135, - 0 - ] - ] - } - } - ], - "properties": { - "label": "Top 2 geo.dest: CN", - "length": 24, - "min": 1, - "max": 42, - "precision": 1 - } - }, - "label": "Top 2 geo.dest: CN" - }, - { - "geoJson": { - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 22.5, - 22.5 - ] - }, + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -135, + -45 + ], + [ + -90, + -45 + ], + [ + -90, + 0 + ], + [ + -135, + 0 + ] + ] + } + } + ], "properties": { - "valueLabel": "Count", - "count": 32, - "geohash": "s", - "center": [ - 22.5, - 22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "s", - "value": "s", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 32, - "value": 32, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - 0, - 0 - ], - [ - 45, - 0 - ], - [ - 45, - 45 - ], - [ - 0, - 45 - ] - ] + "label": "Top 2 geo.dest: CN", + "length": 24, + "min": 1, + "max": 42, + "precision": 1 } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -67.5, - -22.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 31, - "geohash": "6", - "center": [ - -67.5, - -22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", + "label": "Top 2 geo.dest: CN" + }, + { + "geoJson": { + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 22.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 32, + "geohash": "s", + "center": [ + 22.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "s", + "value": "s", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 32, + "value": 32, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "6", - "value": "6", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 31, - "value": 31, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 0, + 0 + ], + [ + 45, + 0 + ], + [ + 45, + 45 + ], + [ + 0, + 45 + ] + ] + } }, - "rectangle": [ - [ - -90, - -45 - ], - [ - -45, - -45 - ], - [ - -45, - 0 - ], - [ - -90, - 0 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -67.5, - 22.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 28, - "geohash": "d", - "center": [ - -67.5, - 22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -67.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 31, + "geohash": "6", + "center": [ + -67.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "6", + "value": "6", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 31, + "value": 31, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "d", - "value": "d", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 28, - "value": 28, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -90, + -45 + ], + [ + -45, + -45 + ], + [ + -45, + 0 + ], + [ + -90, + 0 + ] + ] + } }, - "rectangle": [ - [ - -90, - 0 - ], - [ - -45, - 0 - ], - [ - -45, - 45 - ], - [ - -90, - 45 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 112.5, - 22.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 27, - "geohash": "w", - "center": [ - 112.5, - 22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -67.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 28, + "geohash": "d", + "center": [ + -67.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "d", + "value": "d", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 28, + "value": 28, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "w", - "value": "w", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 27, - "value": 27, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -90, + 0 + ], + [ + -45, + 0 + ], + [ + -45, + 45 + ], + [ + -90, + 45 + ] + ] + } }, - "rectangle": [ - [ - 90, - 0 - ], - [ - 135, - 0 - ], - [ - 135, - 45 - ], - [ - 90, - 45 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 67.5, - 22.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 24, - "geohash": "t", - "center": [ - 67.5, - 22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 112.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 27, + "geohash": "w", + "center": [ + 112.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "w", + "value": "w", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 27, + "value": 27, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "t", - "value": "t", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 24, - "value": 24, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 90, + 0 + ], + [ + 135, + 0 + ], + [ + 135, + 45 + ], + [ + 90, + 45 + ] + ] + } }, - "rectangle": [ - [ - 45, - 0 - ], - [ - 90, - 0 - ], - [ - 90, - 45 - ], - [ - 45, - 45 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 22.5, - -22.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 23, - "geohash": "k", - "center": [ - 22.5, - -22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 67.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 24, + "geohash": "t", + "center": [ + 67.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "t", + "value": "t", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 24, + "value": 24, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "k", - "value": "k", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 23, - "value": 23, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 45, + 0 + ], + [ + 90, + 0 + ], + [ + 90, + 45 + ], + [ + 45, + 45 + ] + ] + } }, - "rectangle": [ - [ - 0, - -45 - ], - [ - 45, - -45 - ], - [ - 45, - 0 - ], - [ - 0, - 0 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 22.5, - 67.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 17, - "geohash": "u", - "center": [ - 22.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 22.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 23, + "geohash": "k", + "center": [ + 22.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "k", + "value": "k", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 23, + "value": 23, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "u", - "value": "u", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 17, - "value": 17, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 0, + -45 + ], + [ + 45, + -45 + ], + [ + 45, + 0 + ], + [ + 0, + 0 + ] + ] + } }, - "rectangle": [ - [ - 0, - 45 - ], - [ - 45, - 45 - ], - [ - 45, - 90 - ], - [ - 0, - 90 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -112.5, - 22.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 16, - "geohash": "9", - "center": [ - -112.5, - 22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 22.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 17, + "geohash": "u", + "center": [ + 22.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "u", + "value": "u", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 17, + "value": 17, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "9", - "value": "9", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 16, - "value": 16, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 0, + 45 + ], + [ + 45, + 45 + ], + [ + 45, + 90 + ], + [ + 0, + 90 + ] + ] + } }, - "rectangle": [ - [ - -135, - 0 - ], - [ - -90, - 0 - ], - [ - -90, - 45 - ], - [ - -135, - 45 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 67.5, - 67.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 14, - "geohash": "v", - "center": [ - 67.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -112.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 16, + "geohash": "9", + "center": [ + -112.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "9", + "value": "9", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 16, + "value": 16, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "v", - "value": "v", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 14, - "value": 14, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -135, + 0 + ], + [ + -90, + 0 + ], + [ + -90, + 45 + ], + [ + -135, + 45 + ] + ] + } }, - "rectangle": [ - [ - 45, - 45 - ], - [ - 90, - 45 - ], - [ - 90, - 90 - ], - [ - 45, - 90 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -22.5, - 22.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 13, - "geohash": "e", - "center": [ - -22.5, - 22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 67.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 14, + "geohash": "v", + "center": [ + 67.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "v", + "value": "v", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 14, + "value": 14, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "e", - "value": "e", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 13, - "value": 13, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 45, + 45 + ], + [ + 90, + 45 + ], + [ + 90, + 90 + ], + [ + 45, + 90 + ] + ] + } }, - "rectangle": [ - [ - -45, - 0 - ], - [ - 0, - 0 - ], - [ - 0, - 45 - ], - [ - -45, - 45 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 157.5, - -22.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 9, - "geohash": "r", - "center": [ - 157.5, - -22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -22.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 13, + "geohash": "e", + "center": [ + -22.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "e", + "value": "e", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 13, + "value": 13, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "r", - "value": "r", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 9, - "value": 9, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -45, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 45 + ], + [ + -45, + 45 + ] + ] + } }, - "rectangle": [ - [ - 135, - -45 - ], - [ - 180, - -45 - ], - [ - 180, - 0 - ], - [ - 135, - 0 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 112.5, - 67.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 6, - "geohash": "y", - "center": [ - 112.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 157.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 9, + "geohash": "r", + "center": [ + 157.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "r", + "value": "r", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 9, + "value": 9, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "y", - "value": "y", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 6, - "value": 6, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 135, + -45 + ], + [ + 180, + -45 + ], + [ + 180, + 0 + ], + [ + 135, + 0 + ] + ] + } }, - "rectangle": [ - [ - 90, - 45 - ], - [ - 135, - 45 - ], - [ - 135, - 90 - ], - [ - 90, - 90 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -22.5, - 67.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 6, - "geohash": "g", - "center": [ - -22.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 112.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 6, + "geohash": "y", + "center": [ + 112.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "y", + "value": "y", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 6, + "value": 6, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "g", - "value": "g", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 6, - "value": 6, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 90, + 45 + ], + [ + 135, + 45 + ], + [ + 135, + 90 + ], + [ + 90, + 90 + ] + ] + } }, - "rectangle": [ - [ - -45, - 45 - ], - [ - 0, - 45 - ], - [ - 0, - 90 - ], - [ - -45, - 90 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -67.5, - 67.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 6, - "geohash": "f", - "center": [ - -67.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -22.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 6, + "geohash": "g", + "center": [ + -22.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "g", + "value": "g", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 6, + "value": 6, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "f", - "value": "f", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 6, - "value": 6, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -45, + 45 + ], + [ + 0, + 45 + ], + [ + 0, + 90 + ], + [ + -45, + 90 + ] + ] + } }, - "rectangle": [ - [ - -90, - 45 - ], - [ - -45, - 45 - ], - [ - -45, - 90 - ], - [ - -90, - 90 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -112.5, - 67.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 5, - "geohash": "c", - "center": [ - -112.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -67.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 6, + "geohash": "f", + "center": [ + -67.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "f", + "value": "f", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 6, + "value": 6, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "c", - "value": "c", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 5, - "value": 5, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -90, + 45 + ], + [ + -45, + 45 + ], + [ + -45, + 90 + ], + [ + -90, + 90 + ] + ] + } }, - "rectangle": [ - [ - -135, - 45 - ], - [ - -90, - 45 - ], - [ - -90, - 90 - ], - [ - -135, - 90 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -157.5, - 67.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 4, - "geohash": "b", - "center": [ - -157.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -112.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 5, + "geohash": "c", + "center": [ + -112.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "c", + "value": "c", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 5, + "value": 5, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "b", - "value": "b", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 4, - "value": 4, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -135, + 45 + ], + [ + -90, + 45 + ], + [ + -90, + 90 + ], + [ + -135, + 90 + ] + ] + } }, - "rectangle": [ - [ - -180, - 45 - ], - [ - -135, - 45 - ], - [ - -135, - 90 - ], - [ - -180, - 90 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 112.5, - -22.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 3, - "geohash": "q", - "center": [ - 112.5, - -22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -157.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 4, + "geohash": "b", + "center": [ + -157.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "b", + "value": "b", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 4, + "value": 4, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "q", - "value": "q", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 3, - "value": 3, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -180, + 45 + ], + [ + -135, + 45 + ], + [ + -135, + 90 + ], + [ + -180, + 90 + ] + ] + } }, - "rectangle": [ - [ - 90, - -45 - ], - [ - 135, - -45 - ], - [ - 135, - 0 - ], - [ - 90, - 0 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -67.5, - -67.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 2, - "geohash": "4", - "center": [ - -67.5, - -67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 112.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 3, + "geohash": "q", + "center": [ + 112.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "q", + "value": "q", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 3, + "value": 3, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "4", - "value": "4", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 2, - "value": 2, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 90, + -45 + ], + [ + 135, + -45 + ], + [ + 135, + 0 + ], + [ + 90, + 0 + ] + ] + } }, - "rectangle": [ - [ - -90, - -90 - ], - [ - -45, - -90 - ], - [ - -45, - -45 - ], - [ - -90, - -45 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 157.5, - 67.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 1, - "geohash": "z", - "center": [ - 157.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -67.5, + -67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 2, + "geohash": "4", + "center": [ + -67.5, + -67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "4", + "value": "4", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 2, + "value": 2, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "z", - "value": "z", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 1, - "value": 1, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -90, + -90 + ], + [ + -45, + -90 + ], + [ + -45, + -45 + ], + [ + -90, + -45 + ] + ] + } }, - "rectangle": [ - [ - 135, - 45 - ], - [ - 180, - 45 - ], - [ - 180, - 90 - ], - [ - 135, - 90 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 157.5, - 22.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 1, - "geohash": "x", - "center": [ - 157.5, - 22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 157.5, + 67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 1, + "geohash": "z", + "center": [ + 157.5, + 67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "z", + "value": "z", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 1, + "value": 1, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "x", - "value": "x", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 1, - "value": 1, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 135, + 45 + ], + [ + 180, + 45 + ], + [ + 180, + 90 + ], + [ + 135, + 90 + ] + ] + } }, - "rectangle": [ - [ - 135, - 0 - ], - [ - 180, - 0 - ], - [ - 180, - 45 - ], - [ - 135, - 45 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 157.5, - -67.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 1, - "geohash": "p", - "center": [ - 157.5, - -67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 157.5, + 22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 1, + "geohash": "x", + "center": [ + 157.5, + 22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "x", + "value": "x", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 1, + "value": 1, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "p", - "value": "p", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 1, - "value": 1, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 135, + 0 + ], + [ + 180, + 0 + ], + [ + 180, + 45 + ], + [ + 135, + 45 + ] + ] + } }, - "rectangle": [ - [ - 135, - -90 - ], - [ - 180, - -90 - ], - [ - 180, - -45 - ], - [ - 135, - -45 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 67.5, - -22.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 1, - "geohash": "m", - "center": [ - 67.5, - -22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 157.5, + -67.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 1, + "geohash": "p", + "center": [ + 157.5, + -67.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "p", + "value": "p", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 1, + "value": 1, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "m", - "value": "m", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 1, - "value": 1, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 135, + -90 + ], + [ + 180, + -90 + ], + [ + 180, + -45 + ], + [ + 135, + -45 + ] + ] + } }, - "rectangle": [ - [ - 45, - -45 - ], - [ - 90, - -45 - ], - [ - 90, - 0 - ], - [ - 45, - 0 - ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -22.5, - -22.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 1, - "geohash": "7", - "center": [ - -22.5, - -22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 67.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 1, + "geohash": "m", + "center": [ + 67.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "m", + "value": "m", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 1, + "value": 1, "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false - } - }, - "type": "bucket" - }, - "key": "7", - "value": "7", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 1, - "value": 1, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + 45, + -45 + ], + [ + 90, + -45 + ], + [ + 90, + 0 + ], + [ + 45, + 0 + ] + ] + } }, - "rectangle": [ - [ - -45, - -45 - ], - [ - 0, - -45 - ], - [ - 0, - 0 - ], - [ - -45, - 0 - ] - ] + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -22.5, + -22.5 + ] + }, + "properties": { + "valueLabel": "Count", + "count": 1, + "geohash": "7", + "center": [ + -22.5, + -22.5 + ], + "aggConfigResult": { + "$parent": { + "$parent": { + "$parent": null, + "key": "IN", + "value": "IN", + "aggConfig": { + "id": "3", + "type": "terms", + "schema": "split", + "params": { + "field": "geo.dest", + "size": 2, + "order": "desc", + "orderBy": "1", + "row": false + } + }, + "type": "bucket" + }, + "key": "7", + "value": "7", + "aggConfig": { + "id": "2", + "type": "geohash_grid", + "schema": "segment", + "params": { + "field": "geo.coordinates", + "precision": 1 + } + }, + "type": "bucket" + }, + "key": 1, + "value": 1, + "aggConfig": { + "id": "1", + "type": "count", + "schema": "metric", + "params": {} + }, + "type": "metric" + }, + "rectangle": [ + [ + -45, + -45 + ], + [ + 0, + -45 + ], + [ + 0, + 0 + ], + [ + -45, + 0 + ] + ] + } + } + ], + "properties": { + "label": "Top 2 geo.dest: IN", + "length": 23, + "min": 1, + "max": 32, + "precision": 1 } - } - ], - "properties": { - "label": "Top 2 geo.dest: IN", - "length": 23, - "min": 1, - "max": 32, - "precision": 1 + }, + "label": "Top 2 geo.dest: IN" } - }, - "label": "Top 2 geo.dest: IN" - } - ], - "hits": 1638 -}; + ], + "hits": 1638 + }; }); diff --git a/test/unit/specs/vislib/fixture/mock_data/geohash/_rows.js b/test/unit/specs/vislib/fixture/mock_data/geohash/_rows.js index dfc6ca706aa804..06b7376e31afb3 100644 --- a/test/unit/specs/vislib/fixture/mock_data/geohash/_rows.js +++ b/test/unit/specs/vislib/fixture/mock_data/geohash/_rows.js @@ -1,3718 +1,3718 @@ define(function () { return { - "rows": [ - { - "geoJson": { - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 22.5, - 22.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 39, - "geohash": "s", - "center": [ - 22.5, - 22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + 'rows': [ + { + 'geoJson': { + 'type': 'FeatureCollection', + 'features': [ + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + 22.5, + 22.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 39, + 'geohash': 's', + 'center': [ + 22.5, + 22.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 's', + 'value': 's', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "s", - "value": "s", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 39, - "value": 39, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - 0, - 0 - ], - [ - 45, - 0 - ], - [ - 45, - 45 - ], - [ - 0, - 45 + 'type': 'bucket' + }, + 'key': 39, + 'value': 39, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + 0, + 0 + ], + [ + 45, + 0 + ], + [ + 45, + 45 + ], + [ + 0, + 45 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 112.5, - 22.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 31, - "geohash": "w", - "center": [ - 112.5, - 22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + 112.5, + 22.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 31, + 'geohash': 'w', + 'center': [ + 112.5, + 22.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'w', + 'value': 'w', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "w", - "value": "w", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 31, - "value": 31, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - 90, - 0 - ], - [ - 135, - 0 - ], - [ - 135, - 45 - ], - [ - 90, - 45 + 'type': 'bucket' + }, + 'key': 31, + 'value': 31, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + 90, + 0 + ], + [ + 135, + 0 + ], + [ + 135, + 45 + ], + [ + 90, + 45 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -67.5, - 22.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 30, - "geohash": "d", - "center": [ - -67.5, - 22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + -67.5, + 22.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 30, + 'geohash': 'd', + 'center': [ + -67.5, + 22.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'd', + 'value': 'd', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "d", - "value": "d", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 30, - "value": 30, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - -90, - 0 - ], - [ - -45, - 0 - ], - [ - -45, - 45 - ], - [ - -90, - 45 + 'type': 'bucket' + }, + 'key': 30, + 'value': 30, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + -90, + 0 + ], + [ + -45, + 0 + ], + [ + -45, + 45 + ], + [ + -90, + 45 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -112.5, - 22.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 25, - "geohash": "9", - "center": [ - -112.5, - 22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + -112.5, + 22.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 25, + 'geohash': '9', + 'center': [ + -112.5, + 22.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': '9', + 'value': '9', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "9", - "value": "9", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 25, - "value": 25, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - -135, - 0 - ], - [ - -90, - 0 - ], - [ - -90, - 45 - ], - [ - -135, - 45 + 'type': 'bucket' + }, + 'key': 25, + 'value': 25, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + -135, + 0 + ], + [ + -90, + 0 + ], + [ + -90, + 45 + ], + [ + -135, + 45 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 67.5, - 22.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 23, - "geohash": "t", - "center": [ - 67.5, - 22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + 67.5, + 22.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 23, + 'geohash': 't', + 'center': [ + 67.5, + 22.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 't', + 'value': 't', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "t", - "value": "t", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 23, - "value": 23, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - 45, - 0 - ], - [ - 90, - 0 - ], - [ - 90, - 45 - ], - [ - 45, - 45 + 'type': 'bucket' + }, + 'key': 23, + 'value': 23, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + 45, + 0 + ], + [ + 90, + 0 + ], + [ + 90, + 45 + ], + [ + 45, + 45 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 22.5, - -22.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 23, - "geohash": "k", - "center": [ - 22.5, - -22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + 22.5, + -22.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 23, + 'geohash': 'k', + 'center': [ + 22.5, + -22.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'k', + 'value': 'k', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "k", - "value": "k", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 23, - "value": 23, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - 0, - -45 - ], - [ - 45, - -45 - ], - [ - 45, - 0 - ], - [ - 0, - 0 + 'type': 'bucket' + }, + 'key': 23, + 'value': 23, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + 0, + -45 + ], + [ + 45, + -45 + ], + [ + 45, + 0 + ], + [ + 0, + 0 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -67.5, - -22.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 22, - "geohash": "6", - "center": [ - -67.5, - -22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + -67.5, + -22.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 22, + 'geohash': '6', + 'center': [ + -67.5, + -22.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': '6', + 'value': '6', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "6", - "value": "6", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 22, - "value": 22, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - -90, - -45 - ], - [ - -45, - -45 - ], - [ - -45, - 0 - ], - [ - -90, - 0 + 'type': 'bucket' + }, + 'key': 22, + 'value': 22, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + -90, + -45 + ], + [ + -45, + -45 + ], + [ + -45, + 0 + ], + [ + -90, + 0 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 22.5, - 67.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 20, - "geohash": "u", - "center": [ - 22.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + 22.5, + 67.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 20, + 'geohash': 'u', + 'center': [ + 22.5, + 67.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'u', + 'value': 'u', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "u", - "value": "u", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 20, - "value": 20, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - 0, - 45 - ], - [ - 45, - 45 - ], - [ - 45, - 90 - ], - [ - 0, - 90 + 'type': 'bucket' + }, + 'key': 20, + 'value': 20, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + 0, + 45 + ], + [ + 45, + 45 + ], + [ + 45, + 90 + ], + [ + 0, + 90 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 67.5, - 67.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 18, - "geohash": "v", - "center": [ - 67.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + 67.5, + 67.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 18, + 'geohash': 'v', + 'center': [ + 67.5, + 67.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'v', + 'value': 'v', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "v", - "value": "v", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 18, - "value": 18, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - 45, - 45 - ], - [ - 90, - 45 - ], - [ - 90, - 90 - ], - [ - 45, - 90 + 'type': 'bucket' + }, + 'key': 18, + 'value': 18, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + 45, + 45 + ], + [ + 90, + 45 + ], + [ + 90, + 90 + ], + [ + 45, + 90 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 157.5, - -22.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 11, - "geohash": "r", - "center": [ - 157.5, - -22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + 157.5, + -22.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 11, + 'geohash': 'r', + 'center': [ + 157.5, + -22.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'r', + 'value': 'r', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "r", - "value": "r", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 11, - "value": 11, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - 135, - -45 - ], - [ - 180, - -45 - ], - [ - 180, - 0 - ], - [ - 135, - 0 + 'type': 'bucket' + }, + 'key': 11, + 'value': 11, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + 135, + -45 + ], + [ + 180, + -45 + ], + [ + 180, + 0 + ], + [ + 135, + 0 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -22.5, - 22.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 11, - "geohash": "e", - "center": [ - -22.5, - 22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + -22.5, + 22.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 11, + 'geohash': 'e', + 'center': [ + -22.5, + 22.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'e', + 'value': 'e', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "e", - "value": "e", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 11, - "value": 11, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - -45, - 0 - ], - [ - 0, - 0 - ], - [ - 0, - 45 - ], - [ - -45, - 45 + 'type': 'bucket' + }, + 'key': 11, + 'value': 11, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + -45, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 45 + ], + [ + -45, + 45 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 112.5, - 67.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 10, - "geohash": "y", - "center": [ - 112.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + 112.5, + 67.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 10, + 'geohash': 'y', + 'center': [ + 112.5, + 67.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'y', + 'value': 'y', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "y", - "value": "y", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 10, - "value": 10, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - 90, - 45 - ], - [ - 135, - 45 - ], - [ - 135, - 90 - ], - [ - 90, - 90 + 'type': 'bucket' + }, + 'key': 10, + 'value': 10, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + 90, + 45 + ], + [ + 135, + 45 + ], + [ + 135, + 90 + ], + [ + 90, + 90 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -112.5, - 67.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 10, - "geohash": "c", - "center": [ - -112.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + -112.5, + 67.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 10, + 'geohash': 'c', + 'center': [ + -112.5, + 67.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'c', + 'value': 'c', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "c", - "value": "c", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 10, - "value": 10, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - -135, - 45 - ], - [ - -90, - 45 - ], - [ - -90, - 90 - ], - [ - -135, - 90 + 'type': 'bucket' + }, + 'key': 10, + 'value': 10, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + -135, + 45 + ], + [ + -90, + 45 + ], + [ + -90, + 90 + ], + [ + -135, + 90 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -67.5, - 67.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 8, - "geohash": "f", - "center": [ - -67.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + -67.5, + 67.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 8, + 'geohash': 'f', + 'center': [ + -67.5, + 67.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'f', + 'value': 'f', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "f", - "value": "f", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 8, - "value": 8, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - -90, - 45 - ], - [ - -45, - 45 - ], - [ - -45, - 90 - ], - [ - -90, - 90 + 'type': 'bucket' + }, + 'key': 8, + 'value': 8, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + -90, + 45 + ], + [ + -45, + 45 + ], + [ + -45, + 90 + ], + [ + -90, + 90 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -22.5, - -22.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 8, - "geohash": "7", - "center": [ - -22.5, - -22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + -22.5, + -22.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 8, + 'geohash': '7', + 'center': [ + -22.5, + -22.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': '7', + 'value': '7', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "7", - "value": "7", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 8, - "value": 8, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - -45, - -45 - ], - [ - 0, - -45 - ], - [ - 0, - 0 - ], - [ - -45, - 0 + 'type': 'bucket' + }, + 'key': 8, + 'value': 8, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + -45, + -45 + ], + [ + 0, + -45 + ], + [ + 0, + 0 + ], + [ + -45, + 0 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 112.5, - -22.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 6, - "geohash": "q", - "center": [ - 112.5, - -22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + 112.5, + -22.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 6, + 'geohash': 'q', + 'center': [ + 112.5, + -22.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'q', + 'value': 'q', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "q", - "value": "q", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 6, - "value": 6, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - 90, - -45 - ], - [ - 135, - -45 - ], - [ - 135, - 0 - ], - [ - 90, - 0 + 'type': 'bucket' + }, + 'key': 6, + 'value': 6, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + 90, + -45 + ], + [ + 135, + -45 + ], + [ + 135, + 0 + ], + [ + 90, + 0 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -22.5, - 67.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 6, - "geohash": "g", - "center": [ - -22.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + -22.5, + 67.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 6, + 'geohash': 'g', + 'center': [ + -22.5, + 67.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'g', + 'value': 'g', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "g", - "value": "g", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 6, - "value": 6, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - -45, - 45 - ], - [ - 0, - 45 - ], - [ - 0, - 90 - ], - [ - -45, - 90 + 'type': 'bucket' + }, + 'key': 6, + 'value': 6, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + -45, + 45 + ], + [ + 0, + 45 + ], + [ + 0, + 90 + ], + [ + -45, + 90 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 157.5, - 22.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 4, - "geohash": "x", - "center": [ - 157.5, - 22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + 157.5, + 22.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 4, + 'geohash': 'x', + 'center': [ + 157.5, + 22.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'x', + 'value': 'x', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "x", - "value": "x", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 4, - "value": 4, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - 135, - 0 - ], - [ - 180, - 0 - ], - [ - 180, - 45 - ], - [ - 135, - 45 + 'type': 'bucket' + }, + 'key': 4, + 'value': 4, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + 135, + 0 + ], + [ + 180, + 0 + ], + [ + 180, + 45 + ], + [ + 135, + 45 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -157.5, - 67.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 3, - "geohash": "b", - "center": [ - -157.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + -157.5, + 67.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 3, + 'geohash': 'b', + 'center': [ + -157.5, + 67.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'b', + 'value': 'b', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "b", - "value": "b", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 3, - "value": 3, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - -180, - 45 - ], - [ - -135, - 45 - ], - [ - -135, - 90 - ], - [ - -180, - 90 + 'type': 'bucket' + }, + 'key': 3, + 'value': 3, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + -180, + 45 + ], + [ + -135, + 45 + ], + [ + -135, + 90 + ], + [ + -180, + 90 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 157.5, - 67.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 2, - "geohash": "z", - "center": [ - 157.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + 157.5, + 67.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 2, + 'geohash': 'z', + 'center': [ + 157.5, + 67.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'z', + 'value': 'z', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "z", - "value": "z", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 2, - "value": 2, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - 135, - 45 - ], - [ - 180, - 45 - ], - [ - 180, - 90 - ], - [ - 135, - 90 + 'type': 'bucket' + }, + 'key': 2, + 'value': 2, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + 135, + 45 + ], + [ + 180, + 45 + ], + [ + 180, + 90 + ], + [ + 135, + 90 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -67.5, - -67.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 2, - "geohash": "4", - "center": [ - -67.5, - -67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + -67.5, + -67.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 2, + 'geohash': '4', + 'center': [ + -67.5, + -67.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': '4', + 'value': '4', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "4", - "value": "4", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 2, - "value": 2, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - -90, - -90 - ], - [ - -45, - -90 - ], - [ - -45, - -45 - ], - [ - -90, - -45 + 'type': 'bucket' + }, + 'key': 2, + 'value': 2, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + -90, + -90 + ], + [ + -45, + -90 + ], + [ + -45, + -45 + ], + [ + -90, + -45 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -22.5, - -67.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 1, - "geohash": "5", - "center": [ - -22.5, - -67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + -22.5, + -67.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 1, + 'geohash': '5', + 'center': [ + -22.5, + -67.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': '5', + 'value': '5', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "5", - "value": "5", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 1, - "value": 1, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - -45, - -90 - ], - [ - 0, - -90 - ], - [ - 0, - -45 - ], - [ - -45, - -45 + 'type': 'bucket' + }, + 'key': 1, + 'value': 1, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + -45, + -90 + ], + [ + 0, + -90 + ], + [ + 0, + -45 + ], + [ + -45, + -45 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -112.5, - -22.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 1, - "geohash": "3", - "center": [ - -112.5, - -22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + -112.5, + -22.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 1, + 'geohash': '3', + 'center': [ + -112.5, + -22.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': '3', + 'value': '3', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "3", - "value": "3", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 1, - "value": 1, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - -135, - -45 - ], - [ - -90, - -45 - ], - [ - -90, - 0 - ], - [ - -135, - 0 + 'type': 'bucket' + }, + 'key': 1, + 'value': 1, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + -135, + -45 + ], + [ + -90, + -45 + ], + [ + -90, + 0 + ], + [ + -135, + 0 + ] ] - ] + } } + ], + 'properties': { + 'label': 'Top 2 geo.dest: CN', + 'length': 23, + 'min': 1, + 'max': 39, + 'precision': 1 } - ], - "properties": { - "label": "Top 2 geo.dest: CN", - "length": 23, - "min": 1, - "max": 39, - "precision": 1 - } + }, + 'label': 'Top 2 geo.dest: CN' }, - "label": "Top 2 geo.dest: CN" - }, - { - "geoJson": { - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -67.5, - -22.5 - ] - }, - "properties": { - "valueLabel": "Count", - "count": 31, - "geohash": "6", - "center": [ - -67.5, - -22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'geoJson': { + 'type': 'FeatureCollection', + 'features': [ + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + -67.5, + -22.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 31, + 'geohash': '6', + 'center': [ + -67.5, + -22.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': '6', + 'value': '6', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "6", - "value": "6", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 31, - "value": 31, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - -90, - -45 - ], - [ - -45, - -45 - ], - [ - -45, - 0 - ], - [ - -90, - 0 + 'type': 'bucket' + }, + 'key': 31, + 'value': 31, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + -90, + -45 + ], + [ + -45, + -45 + ], + [ + -45, + 0 + ], + [ + -90, + 0 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 22.5, - 22.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 30, - "geohash": "s", - "center": [ - 22.5, - 22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true - } - }, - "type": "bucket" - }, - "key": "s", - "value": "s", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 30, - "value": 30, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + 22.5, + 22.5 + ] }, - "rectangle": [ - [ - 0, - 0 - ], - [ - 45, - 0 - ], - [ - 45, - 45 - ], - [ - 0, - 45 + 'properties': { + 'valueLabel': 'Count', + 'count': 30, + 'geohash': 's', + 'center': [ + 22.5, + 22.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 's', + 'value': 's', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 + } + }, + 'type': 'bucket' + }, + 'key': 30, + 'value': 30, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + 0, + 0 + ], + [ + 45, + 0 + ], + [ + 45, + 45 + ], + [ + 0, + 45 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 112.5, - 22.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 29, - "geohash": "w", - "center": [ - 112.5, - 22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + 112.5, + 22.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 29, + 'geohash': 'w', + 'center': [ + 112.5, + 22.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'w', + 'value': 'w', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "w", - "value": "w", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 29, - "value": 29, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - 90, - 0 - ], - [ - 135, - 0 - ], - [ - 135, - 45 - ], - [ - 90, - 45 + 'type': 'bucket' + }, + 'key': 29, + 'value': 29, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + 90, + 0 + ], + [ + 135, + 0 + ], + [ + 135, + 45 + ], + [ + 90, + 45 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -67.5, - 22.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 28, - "geohash": "d", - "center": [ - -67.5, - 22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + -67.5, + 22.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 28, + 'geohash': 'd', + 'center': [ + -67.5, + 22.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'd', + 'value': 'd', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "d", - "value": "d", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 28, - "value": 28, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - -90, - 0 - ], - [ - -45, - 0 - ], - [ - -45, - 45 - ], - [ - -90, - 45 + 'type': 'bucket' + }, + 'key': 28, + 'value': 28, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + -90, + 0 + ], + [ + -45, + 0 + ], + [ + -45, + 45 + ], + [ + -90, + 45 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 67.5, - 22.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 25, - "geohash": "t", - "center": [ - 67.5, - 22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + 67.5, + 22.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 25, + 'geohash': 't', + 'center': [ + 67.5, + 22.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 't', + 'value': 't', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "t", - "value": "t", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 25, - "value": 25, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - 45, - 0 - ], - [ - 90, - 0 - ], - [ - 90, - 45 - ], - [ - 45, - 45 + 'type': 'bucket' + }, + 'key': 25, + 'value': 25, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + 45, + 0 + ], + [ + 90, + 0 + ], + [ + 90, + 45 + ], + [ + 45, + 45 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 22.5, - -22.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 24, - "geohash": "k", - "center": [ - 22.5, - -22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + 22.5, + -22.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 24, + 'geohash': 'k', + 'center': [ + 22.5, + -22.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'k', + 'value': 'k', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "k", - "value": "k", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 24, - "value": 24, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - 0, - -45 - ], - [ - 45, - -45 - ], - [ - 45, - 0 - ], - [ - 0, - 0 + 'type': 'bucket' + }, + 'key': 24, + 'value': 24, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + 0, + -45 + ], + [ + 45, + -45 + ], + [ + 45, + 0 + ], + [ + 0, + 0 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 22.5, - 67.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 20, - "geohash": "u", - "center": [ - 22.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + 22.5, + 67.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 20, + 'geohash': 'u', + 'center': [ + 22.5, + 67.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'u', + 'value': 'u', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "u", - "value": "u", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 20, - "value": 20, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - 0, - 45 - ], - [ - 45, - 45 - ], - [ - 45, - 90 - ], - [ - 0, - 90 + 'type': 'bucket' + }, + 'key': 20, + 'value': 20, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + 0, + 45 + ], + [ + 45, + 45 + ], + [ + 45, + 90 + ], + [ + 0, + 90 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -112.5, - 22.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 18, - "geohash": "9", - "center": [ - -112.5, - 22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + -112.5, + 22.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 18, + 'geohash': '9', + 'center': [ + -112.5, + 22.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': '9', + 'value': '9', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "9", - "value": "9", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 18, - "value": 18, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - -135, - 0 - ], - [ - -90, - 0 - ], - [ - -90, - 45 - ], - [ - -135, - 45 + 'type': 'bucket' + }, + 'key': 18, + 'value': 18, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + -135, + 0 + ], + [ + -90, + 0 + ], + [ + -90, + 45 + ], + [ + -135, + 45 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 67.5, - 67.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 14, - "geohash": "v", - "center": [ - 67.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + 67.5, + 67.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 14, + 'geohash': 'v', + 'center': [ + 67.5, + 67.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'v', + 'value': 'v', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "v", - "value": "v", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 14, - "value": 14, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - 45, - 45 - ], - [ - 90, - 45 - ], - [ - 90, - 90 - ], - [ - 45, - 90 + 'type': 'bucket' + }, + 'key': 14, + 'value': 14, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + 45, + 45 + ], + [ + 90, + 45 + ], + [ + 90, + 90 + ], + [ + 45, + 90 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -22.5, - 22.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 11, - "geohash": "e", - "center": [ - -22.5, - 22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + -22.5, + 22.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 11, + 'geohash': 'e', + 'center': [ + -22.5, + 22.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'e', + 'value': 'e', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "e", - "value": "e", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 11, - "value": 11, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - -45, - 0 - ], - [ - 0, - 0 - ], - [ - 0, - 45 - ], - [ - -45, - 45 + 'type': 'bucket' + }, + 'key': 11, + 'value': 11, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + -45, + 0 + ], + [ + 0, + 0 + ], + [ + 0, + 45 + ], + [ + -45, + 45 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 157.5, - -22.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 9, - "geohash": "r", - "center": [ - 157.5, - -22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + 157.5, + -22.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 9, + 'geohash': 'r', + 'center': [ + 157.5, + -22.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'r', + 'value': 'r', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "r", - "value": "r", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 9, - "value": 9, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - 135, - -45 - ], - [ - 180, - -45 - ], - [ - 180, - 0 - ], - [ - 135, - 0 + 'type': 'bucket' + }, + 'key': 9, + 'value': 9, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + 135, + -45 + ], + [ + 180, + -45 + ], + [ + 180, + 0 + ], + [ + 135, + 0 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 112.5, - 67.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 6, - "geohash": "y", - "center": [ - 112.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + 112.5, + 67.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 6, + 'geohash': 'y', + 'center': [ + 112.5, + 67.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'y', + 'value': 'y', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "y", - "value": "y", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 6, - "value": 6, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - 90, - 45 - ], - [ - 135, - 45 - ], - [ - 135, - 90 - ], - [ - 90, - 90 + 'type': 'bucket' + }, + 'key': 6, + 'value': 6, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + 90, + 45 + ], + [ + 135, + 45 + ], + [ + 135, + 90 + ], + [ + 90, + 90 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -67.5, - 67.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 6, - "geohash": "f", - "center": [ - -67.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + -67.5, + 67.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 6, + 'geohash': 'f', + 'center': [ + -67.5, + 67.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'f', + 'value': 'f', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "f", - "value": "f", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 6, - "value": 6, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - -90, - 45 - ], - [ - -45, - 45 - ], - [ - -45, - 90 - ], - [ - -90, - 90 + 'type': 'bucket' + }, + 'key': 6, + 'value': 6, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + -90, + 45 + ], + [ + -45, + 45 + ], + [ + -45, + 90 + ], + [ + -90, + 90 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -22.5, - 67.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 5, - "geohash": "g", - "center": [ - -22.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + -22.5, + 67.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 5, + 'geohash': 'g', + 'center': [ + -22.5, + 67.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'g', + 'value': 'g', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "g", - "value": "g", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 5, - "value": 5, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - -45, - 45 - ], - [ - 0, - 45 - ], - [ - 0, - 90 - ], - [ - -45, - 90 + 'type': 'bucket' + }, + 'key': 5, + 'value': 5, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + -45, + 45 + ], + [ + 0, + 45 + ], + [ + 0, + 90 + ], + [ + -45, + 90 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -112.5, - 67.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 5, - "geohash": "c", - "center": [ - -112.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + -112.5, + 67.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 5, + 'geohash': 'c', + 'center': [ + -112.5, + 67.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'c', + 'value': 'c', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "c", - "value": "c", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 5, - "value": 5, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - -135, - 45 - ], - [ - -90, - 45 - ], - [ - -90, - 90 - ], - [ - -135, - 90 + 'type': 'bucket' + }, + 'key': 5, + 'value': 5, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + -135, + 45 + ], + [ + -90, + 45 + ], + [ + -90, + 90 + ], + [ + -135, + 90 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -157.5, - 67.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 4, - "geohash": "b", - "center": [ - -157.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + -157.5, + 67.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 4, + 'geohash': 'b', + 'center': [ + -157.5, + 67.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'b', + 'value': 'b', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "b", - "value": "b", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 4, - "value": 4, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - -180, - 45 - ], - [ - -135, - 45 - ], - [ - -135, - 90 - ], - [ - -180, - 90 + 'type': 'bucket' + }, + 'key': 4, + 'value': 4, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + -180, + 45 + ], + [ + -135, + 45 + ], + [ + -135, + 90 + ], + [ + -180, + 90 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 112.5, - -22.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 3, - "geohash": "q", - "center": [ - 112.5, - -22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + 112.5, + -22.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 3, + 'geohash': 'q', + 'center': [ + 112.5, + -22.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'q', + 'value': 'q', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "q", - "value": "q", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 3, - "value": 3, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - 90, - -45 - ], - [ - 135, - -45 - ], - [ - 135, - 0 - ], - [ - 90, - 0 + 'type': 'bucket' + }, + 'key': 3, + 'value': 3, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + 90, + -45 + ], + [ + 135, + -45 + ], + [ + 135, + 0 + ], + [ + 90, + 0 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -67.5, - -67.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 2, - "geohash": "4", - "center": [ - -67.5, - -67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + -67.5, + -67.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 2, + 'geohash': '4', + 'center': [ + -67.5, + -67.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': '4', + 'value': '4', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "4", - "value": "4", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 2, - "value": 2, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - -90, - -90 - ], - [ - -45, - -90 - ], - [ - -45, - -45 - ], - [ - -90, - -45 + 'type': 'bucket' + }, + 'key': 2, + 'value': 2, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + -90, + -90 + ], + [ + -45, + -90 + ], + [ + -45, + -45 + ], + [ + -90, + -45 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 157.5, - 67.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 1, - "geohash": "z", - "center": [ - 157.5, - 67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + 157.5, + 67.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 1, + 'geohash': 'z', + 'center': [ + 157.5, + 67.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'z', + 'value': 'z', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "z", - "value": "z", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 1, - "value": 1, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - 135, - 45 - ], - [ - 180, - 45 - ], - [ - 180, - 90 - ], - [ - 135, - 90 + 'type': 'bucket' + }, + 'key': 1, + 'value': 1, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + 135, + 45 + ], + [ + 180, + 45 + ], + [ + 180, + 90 + ], + [ + 135, + 90 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 157.5, - 22.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 1, - "geohash": "x", - "center": [ - 157.5, - 22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + 157.5, + 22.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 1, + 'geohash': 'x', + 'center': [ + 157.5, + 22.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'x', + 'value': 'x', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "x", - "value": "x", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 1, - "value": 1, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - 135, - 0 - ], - [ - 180, - 0 - ], - [ - 180, - 45 - ], - [ - 135, - 45 + 'type': 'bucket' + }, + 'key': 1, + 'value': 1, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + 135, + 0 + ], + [ + 180, + 0 + ], + [ + 180, + 45 + ], + [ + 135, + 45 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 157.5, - -67.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 1, - "geohash": "p", - "center": [ - 157.5, - -67.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + 157.5, + -67.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 1, + 'geohash': 'p', + 'center': [ + 157.5, + -67.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'p', + 'value': 'p', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "p", - "value": "p", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 1, - "value": 1, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - 135, - -90 - ], - [ - 180, - -90 - ], - [ - 180, - -45 - ], - [ - 135, - -45 + 'type': 'bucket' + }, + 'key': 1, + 'value': 1, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + 135, + -90 + ], + [ + 180, + -90 + ], + [ + 180, + -45 + ], + [ + 135, + -45 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 67.5, - -22.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 1, - "geohash": "m", - "center": [ - 67.5, - -22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + 67.5, + -22.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 1, + 'geohash': 'm', + 'center': [ + 67.5, + -22.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': 'm', + 'value': 'm', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "m", - "value": "m", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 1, - "value": 1, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - 45, - -45 - ], - [ - 90, - -45 - ], - [ - 90, - 0 - ], - [ - 45, - 0 + 'type': 'bucket' + }, + 'key': 1, + 'value': 1, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + 45, + -45 + ], + [ + 90, + -45 + ], + [ + 90, + 0 + ], + [ + 45, + 0 + ] ] - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -22.5, - -22.5 - ] + } }, - "properties": { - "valueLabel": "Count", - "count": 1, - "geohash": "7", - "center": [ - -22.5, - -22.5 - ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": true + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + -22.5, + -22.5 + ] + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 1, + 'geohash': '7', + 'center': [ + -22.5, + -22.5 + ], + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': true + } + }, + 'type': 'bucket' + }, + 'key': '7', + 'value': '7', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" - }, - "key": "7", - "value": "7", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 - } - }, - "type": "bucket" - }, - "key": 1, - "value": 1, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} - }, - "type": "metric" - }, - "rectangle": [ - [ - -45, - -45 - ], - [ - 0, - -45 - ], - [ - 0, - 0 - ], - [ - -45, - 0 + 'type': 'bucket' + }, + 'key': 1, + 'value': 1, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, + 'rectangle': [ + [ + -45, + -45 + ], + [ + 0, + -45 + ], + [ + 0, + 0 + ], + [ + -45, + 0 + ] ] - ] + } } + ], + 'properties': { + 'label': 'Top 2 geo.dest: IN', + 'length': 23, + 'min': 1, + 'max': 31, + 'precision': 1 } - ], - "properties": { - "label": "Top 2 geo.dest: IN", - "length": 23, - "min": 1, - "max": 31, - "precision": 1 - } - }, - "label": "Top 2 geo.dest: IN" - } - ], - "hits": 1639 -}; + }, + 'label': 'Top 2 geo.dest: IN' + } + ], + 'hits': 1639 + }; }); From 948125322287f804b4a43f4773fba80a31cb6739 Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Tue, 24 Mar 2015 12:48:01 -0500 Subject: [PATCH 17/32] cleaning up more jslint issues --- .../fixture/mock_data/geohash/_columns.js | 4368 ++++++++--------- .../fixture/mock_data/geohash/_geo_json.js | 1824 +++---- .../specs/vislib/visualizations/tile_map.js | 6 +- 3 files changed, 3099 insertions(+), 3099 deletions(-) diff --git a/test/unit/specs/vislib/fixture/mock_data/geohash/_columns.js b/test/unit/specs/vislib/fixture/mock_data/geohash/_columns.js index e93a7521db4e50..9cd599e4b2a280 100644 --- a/test/unit/specs/vislib/fixture/mock_data/geohash/_columns.js +++ b/test/unit/specs/vislib/fixture/mock_data/geohash/_columns.js @@ -1,71 +1,71 @@ define(function () { return { - "columns": [ + 'columns': [ { - "geoJson": { - "type": "FeatureCollection", - "features": [ + 'geoJson': { + 'type': 'FeatureCollection', + 'features': [ { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 22.5, 22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 42, - "geohash": "s", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 42, + 'geohash': 's', + 'center': [ 22.5, 22.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "s", - "value": "s", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 's', + 'value': 's', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 42, - "value": 42, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 42, + 'value': 42, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 0, 0 @@ -86,66 +86,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -67.5, 22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 31, - "geohash": "d", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 31, + 'geohash': 'd', + 'center': [ -67.5, 22.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "d", - "value": "d", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'd', + 'value': 'd', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 31, - "value": 31, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 31, + 'value': 31, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -90, 0 @@ -166,66 +166,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 112.5, 22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 30, - "geohash": "w", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 30, + 'geohash': 'w', + 'center': [ 112.5, 22.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "w", - "value": "w", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'w', + 'value': 'w', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 30, - "value": 30, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 30, + 'value': 30, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 90, 0 @@ -246,66 +246,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -112.5, 22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 25, - "geohash": "9", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 25, + 'geohash': '9', + 'center': [ -112.5, 22.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "9", - "value": "9", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': '9', + 'value': '9', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 25, - "value": 25, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 25, + 'value': 25, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -135, 0 @@ -326,66 +326,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 67.5, 22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 22, - "geohash": "t", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 22, + 'geohash': 't', + 'center': [ 67.5, 22.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "t", - "value": "t", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 't', + 'value': 't', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 22, - "value": 22, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 22, + 'value': 22, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 45, 0 @@ -406,66 +406,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 22.5, -22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 22, - "geohash": "k", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 22, + 'geohash': 'k', + 'center': [ 22.5, -22.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "k", - "value": "k", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'k', + 'value': 'k', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 22, - "value": 22, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 22, + 'value': 22, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 0, -45 @@ -486,66 +486,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -67.5, -22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 21, - "geohash": "6", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 21, + 'geohash': '6', + 'center': [ -67.5, -22.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "6", - "value": "6", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': '6', + 'value': '6', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 21, - "value": 21, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 21, + 'value': 21, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -90, -45 @@ -566,66 +566,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 22.5, 67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 19, - "geohash": "u", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 19, + 'geohash': 'u', + 'center': [ 22.5, 67.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "u", - "value": "u", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'u', + 'value': 'u', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 19, - "value": 19, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 19, + 'value': 19, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 0, 45 @@ -646,66 +646,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 67.5, 67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 18, - "geohash": "v", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 18, + 'geohash': 'v', + 'center': [ 67.5, 67.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "v", - "value": "v", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'v', + 'value': 'v', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 18, - "value": 18, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 18, + 'value': 18, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 45, 45 @@ -726,66 +726,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -112.5, 67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 11, - "geohash": "c", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 11, + 'geohash': 'c', + 'center': [ -112.5, 67.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "c", - "value": "c", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'c', + 'value': 'c', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 11, - "value": 11, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 11, + 'value': 11, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -135, 45 @@ -806,66 +806,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 157.5, -22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 10, - "geohash": "r", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 10, + 'geohash': 'r', + 'center': [ 157.5, -22.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "r", - "value": "r", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'r', + 'value': 'r', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 10, - "value": 10, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 10, + 'value': 10, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 135, -45 @@ -886,66 +886,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 112.5, 67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 9, - "geohash": "y", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 9, + 'geohash': 'y', + 'center': [ 112.5, 67.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "y", - "value": "y", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'y', + 'value': 'y', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 9, - "value": 9, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 9, + 'value': 9, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 90, 45 @@ -966,66 +966,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -22.5, 22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 9, - "geohash": "e", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 9, + 'geohash': 'e', + 'center': [ -22.5, 22.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "e", - "value": "e", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'e', + 'value': 'e', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 9, - "value": 9, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 9, + 'value': 9, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -45, 0 @@ -1046,66 +1046,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -67.5, 67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 8, - "geohash": "f", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 8, + 'geohash': 'f', + 'center': [ -67.5, 67.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "f", - "value": "f", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'f', + 'value': 'f', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 8, - "value": 8, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 8, + 'value': 8, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -90, 45 @@ -1126,66 +1126,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -22.5, -22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 8, - "geohash": "7", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 8, + 'geohash': '7', + 'center': [ -22.5, -22.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "7", - "value": "7", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': '7', + 'value': '7', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 8, - "value": 8, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 8, + 'value': 8, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -45, -45 @@ -1206,66 +1206,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 112.5, -22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 6, - "geohash": "q", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 6, + 'geohash': 'q', + 'center': [ 112.5, -22.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "q", - "value": "q", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'q', + 'value': 'q', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 6, - "value": 6, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 6, + 'value': 6, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 90, -45 @@ -1286,66 +1286,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -22.5, 67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 6, - "geohash": "g", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 6, + 'geohash': 'g', + 'center': [ -22.5, 67.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "g", - "value": "g", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'g', + 'value': 'g', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 6, - "value": 6, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 6, + 'value': 6, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -45, 45 @@ -1366,66 +1366,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 157.5, 22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 4, - "geohash": "x", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 4, + 'geohash': 'x', + 'center': [ 157.5, 22.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "x", - "value": "x", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'x', + 'value': 'x', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 4, - "value": 4, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 4, + 'value': 4, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 135, 0 @@ -1446,66 +1446,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -157.5, 67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 3, - "geohash": "b", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 3, + 'geohash': 'b', + 'center': [ -157.5, 67.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "b", - "value": "b", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'b', + 'value': 'b', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 3, - "value": 3, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 3, + 'value': 3, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -180, 45 @@ -1526,66 +1526,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 157.5, 67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 2, - "geohash": "z", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 2, + 'geohash': 'z', + 'center': [ 157.5, 67.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "z", - "value": "z", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'z', + 'value': 'z', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 2, - "value": 2, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 2, + 'value': 2, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 135, 45 @@ -1606,66 +1606,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 67.5, -22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 1, - "geohash": "m", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 1, + 'geohash': 'm', + 'center': [ 67.5, -22.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "m", - "value": "m", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'm', + 'value': 'm', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 1, - "value": 1, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 1, + 'value': 1, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 45, -45 @@ -1686,66 +1686,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -22.5, -67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 1, - "geohash": "5", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 1, + 'geohash': '5', + 'center': [ -22.5, -67.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "5", - "value": "5", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': '5', + 'value': '5', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 1, - "value": 1, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 1, + 'value': 1, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -45, -90 @@ -1766,66 +1766,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -67.5, -67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 1, - "geohash": "4", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 1, + 'geohash': '4', + 'center': [ -67.5, -67.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "4", - "value": "4", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': '4', + 'value': '4', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 1, - "value": 1, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 1, + 'value': 1, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -90, -90 @@ -1846,66 +1846,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -112.5, -22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 1, - "geohash": "3", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 1, + 'geohash': '3', + 'center': [ -112.5, -22.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "CN", - "value": "CN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'CN', + 'value': 'CN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "3", - "value": "3", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': '3', + 'value': '3', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 1, - "value": 1, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 1, + 'value': 1, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -135, -45 @@ -1926,81 +1926,81 @@ define(function () { } } ], - "properties": { - "label": "Top 2 geo.dest: CN", - "length": 24, - "min": 1, - "max": 42, - "precision": 1 + 'properties': { + 'label': 'Top 2 geo.dest: CN', + 'length': 24, + 'min': 1, + 'max': 42, + 'precision': 1 } }, - "label": "Top 2 geo.dest: CN" + 'label': 'Top 2 geo.dest: CN' }, { - "geoJson": { - "type": "FeatureCollection", - "features": [ + 'geoJson': { + 'type': 'FeatureCollection', + 'features': [ { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 22.5, 22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 32, - "geohash": "s", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 32, + 'geohash': 's', + 'center': [ 22.5, 22.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "s", - "value": "s", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 's', + 'value': 's', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 32, - "value": 32, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 32, + 'value': 32, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 0, 0 @@ -2021,66 +2021,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -67.5, -22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 31, - "geohash": "6", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 31, + 'geohash': '6', + 'center': [ -67.5, -22.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "6", - "value": "6", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': '6', + 'value': '6', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 31, - "value": 31, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 31, + 'value': 31, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -90, -45 @@ -2101,66 +2101,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -67.5, 22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 28, - "geohash": "d", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 28, + 'geohash': 'd', + 'center': [ -67.5, 22.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "d", - "value": "d", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'd', + 'value': 'd', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 28, - "value": 28, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 28, + 'value': 28, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -90, 0 @@ -2181,66 +2181,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 112.5, 22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 27, - "geohash": "w", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 27, + 'geohash': 'w', + 'center': [ 112.5, 22.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "w", - "value": "w", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'w', + 'value': 'w', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 27, - "value": 27, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 27, + 'value': 27, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 90, 0 @@ -2261,66 +2261,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 67.5, 22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 24, - "geohash": "t", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 24, + 'geohash': 't', + 'center': [ 67.5, 22.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "t", - "value": "t", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 't', + 'value': 't', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 24, - "value": 24, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 24, + 'value': 24, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 45, 0 @@ -2341,66 +2341,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 22.5, -22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 23, - "geohash": "k", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 23, + 'geohash': 'k', + 'center': [ 22.5, -22.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "k", - "value": "k", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'k', + 'value': 'k', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 23, - "value": 23, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 23, + 'value': 23, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 0, -45 @@ -2421,66 +2421,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 22.5, 67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 17, - "geohash": "u", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 17, + 'geohash': 'u', + 'center': [ 22.5, 67.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "u", - "value": "u", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'u', + 'value': 'u', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 17, - "value": 17, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 17, + 'value': 17, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 0, 45 @@ -2501,66 +2501,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -112.5, 22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 16, - "geohash": "9", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 16, + 'geohash': '9', + 'center': [ -112.5, 22.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "9", - "value": "9", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': '9', + 'value': '9', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 16, - "value": 16, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 16, + 'value': 16, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -135, 0 @@ -2581,66 +2581,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 67.5, 67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 14, - "geohash": "v", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 14, + 'geohash': 'v', + 'center': [ 67.5, 67.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "v", - "value": "v", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'v', + 'value': 'v', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 14, - "value": 14, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 14, + 'value': 14, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 45, 45 @@ -2661,66 +2661,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -22.5, 22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 13, - "geohash": "e", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 13, + 'geohash': 'e', + 'center': [ -22.5, 22.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "e", - "value": "e", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'e', + 'value': 'e', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 13, - "value": 13, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 13, + 'value': 13, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -45, 0 @@ -2741,66 +2741,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 157.5, -22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 9, - "geohash": "r", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 9, + 'geohash': 'r', + 'center': [ 157.5, -22.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "r", - "value": "r", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'r', + 'value': 'r', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 9, - "value": 9, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 9, + 'value': 9, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 135, -45 @@ -2821,66 +2821,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 112.5, 67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 6, - "geohash": "y", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 6, + 'geohash': 'y', + 'center': [ 112.5, 67.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "y", - "value": "y", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'y', + 'value': 'y', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 6, - "value": 6, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 6, + 'value': 6, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 90, 45 @@ -2901,66 +2901,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -22.5, 67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 6, - "geohash": "g", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 6, + 'geohash': 'g', + 'center': [ -22.5, 67.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "g", - "value": "g", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'g', + 'value': 'g', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 6, - "value": 6, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 6, + 'value': 6, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -45, 45 @@ -2981,66 +2981,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -67.5, 67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 6, - "geohash": "f", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 6, + 'geohash': 'f', + 'center': [ -67.5, 67.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "f", - "value": "f", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'f', + 'value': 'f', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 6, - "value": 6, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 6, + 'value': 6, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -90, 45 @@ -3061,66 +3061,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -112.5, 67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 5, - "geohash": "c", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 5, + 'geohash': 'c', + 'center': [ -112.5, 67.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "c", - "value": "c", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'c', + 'value': 'c', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 5, - "value": 5, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 5, + 'value': 5, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -135, 45 @@ -3141,66 +3141,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -157.5, 67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 4, - "geohash": "b", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 4, + 'geohash': 'b', + 'center': [ -157.5, 67.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "b", - "value": "b", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'b', + 'value': 'b', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 4, - "value": 4, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 4, + 'value': 4, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -180, 45 @@ -3221,66 +3221,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 112.5, -22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 3, - "geohash": "q", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 3, + 'geohash': 'q', + 'center': [ 112.5, -22.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "q", - "value": "q", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'q', + 'value': 'q', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 3, - "value": 3, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 3, + 'value': 3, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 90, -45 @@ -3301,66 +3301,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -67.5, -67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 2, - "geohash": "4", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 2, + 'geohash': '4', + 'center': [ -67.5, -67.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "4", - "value": "4", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': '4', + 'value': '4', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 2, - "value": 2, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 2, + 'value': 2, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -90, -90 @@ -3381,66 +3381,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 157.5, 67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 1, - "geohash": "z", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 1, + 'geohash': 'z', + 'center': [ 157.5, 67.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "z", - "value": "z", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'z', + 'value': 'z', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 1, - "value": 1, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 1, + 'value': 1, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 135, 45 @@ -3461,66 +3461,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 157.5, 22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 1, - "geohash": "x", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 1, + 'geohash': 'x', + 'center': [ 157.5, 22.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "x", - "value": "x", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'x', + 'value': 'x', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 1, - "value": 1, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 1, + 'value': 1, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 135, 0 @@ -3541,66 +3541,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 157.5, -67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 1, - "geohash": "p", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 1, + 'geohash': 'p', + 'center': [ 157.5, -67.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "p", - "value": "p", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'p', + 'value': 'p', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 1, - "value": 1, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 1, + 'value': 1, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 135, -90 @@ -3621,66 +3621,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 67.5, -22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 1, - "geohash": "m", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 1, + 'geohash': 'm', + 'center': [ 67.5, -22.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "m", - "value": "m", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': 'm', + 'value': 'm', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 1, - "value": 1, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 1, + 'value': 1, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 45, -45 @@ -3701,66 +3701,66 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -22.5, -22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 1, - "geohash": "7", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 1, + 'geohash': '7', + 'center': [ -22.5, -22.5 ], - "aggConfigResult": { - "$parent": { - "$parent": { - "$parent": null, - "key": "IN", - "value": "IN", - "aggConfig": { - "id": "3", - "type": "terms", - "schema": "split", - "params": { - "field": "geo.dest", - "size": 2, - "order": "desc", - "orderBy": "1", - "row": false + 'aggConfigResult': { + '$parent': { + '$parent': { + '$parent': null, + 'key': 'IN', + 'value': 'IN', + 'aggConfig': { + 'id': '3', + 'type': 'terms', + 'schema': 'split', + 'params': { + 'field': 'geo.dest', + 'size': 2, + 'order': 'desc', + 'orderBy': '1', + 'row': false } }, - "type": "bucket" - }, - "key": "7", - "value": "7", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'type': 'bucket' + }, + 'key': '7', + 'value': '7', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 1, - "value": 1, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 1, + 'value': 1, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -45, -45 @@ -3781,17 +3781,17 @@ define(function () { } } ], - "properties": { - "label": "Top 2 geo.dest: IN", - "length": 23, - "min": 1, - "max": 32, - "precision": 1 + 'properties': { + 'label': 'Top 2 geo.dest: IN', + 'length': 23, + 'min': 1, + 'max': 32, + 'precision': 1 } }, - "label": "Top 2 geo.dest: IN" + 'label': 'Top 2 geo.dest: IN' } ], - "hits": 1638 + 'hits': 1638 }; }); diff --git a/test/unit/specs/vislib/fixture/mock_data/geohash/_geo_json.js b/test/unit/specs/vislib/fixture/mock_data/geohash/_geo_json.js index 9b3f03e0cd536b..399fd0c6ffdc91 100644 --- a/test/unit/specs/vislib/fixture/mock_data/geohash/_geo_json.js +++ b/test/unit/specs/vislib/fixture/mock_data/geohash/_geo_json.js @@ -1,51 +1,51 @@ define(function () { return { - "geoJson": { - "type": "FeatureCollection", - "features": [ + 'geoJson': { + 'type': 'FeatureCollection', + 'features': [ { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 22.5, 22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 608, - "geohash": "s", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 608, + 'geohash': 's', + 'center': [ 22.5, 22.5 ], - "aggConfigResult": { - "$parent": { - "key": "s", - "value": "s", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'aggConfigResult': { + '$parent': { + 'key': 's', + 'value': 's', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 608, - "value": 608, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 608, + 'value': 608, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 0, 0 @@ -66,48 +66,48 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 112.5, 22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 522, - "geohash": "w", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 522, + 'geohash': 'w', + 'center': [ 112.5, 22.5 ], - "aggConfigResult": { - "$parent": { - "key": "w", - "value": "w", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'aggConfigResult': { + '$parent': { + 'key': 'w', + 'value': 'w', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 522, - "value": 522, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 522, + 'value': 522, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 90, 0 @@ -128,48 +128,48 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -67.5, -22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 517, - "geohash": "6", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 517, + 'geohash': '6', + 'center': [ -67.5, -22.5 ], - "aggConfigResult": { - "$parent": { - "key": "6", - "value": "6", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'aggConfigResult': { + '$parent': { + 'key': '6', + 'value': '6', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 517, - "value": 517, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 517, + 'value': 517, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -90, -45 @@ -190,48 +190,48 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -67.5, 22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 446, - "geohash": "d", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 446, + 'geohash': 'd', + 'center': [ -67.5, 22.5 ], - "aggConfigResult": { - "$parent": { - "key": "d", - "value": "d", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'aggConfigResult': { + '$parent': { + 'key': 'd', + 'value': 'd', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 446, - "value": 446, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 446, + 'value': 446, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -90, 0 @@ -252,48 +252,48 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 22.5, 67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 426, - "geohash": "u", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 426, + 'geohash': 'u', + 'center': [ 22.5, 67.5 ], - "aggConfigResult": { - "$parent": { - "key": "u", - "value": "u", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'aggConfigResult': { + '$parent': { + 'key': 'u', + 'value': 'u', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 426, - "value": 426, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 426, + 'value': 426, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 0, 45 @@ -314,48 +314,48 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 67.5, 22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 413, - "geohash": "t", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 413, + 'geohash': 't', + 'center': [ 67.5, 22.5 ], - "aggConfigResult": { - "$parent": { - "key": "t", - "value": "t", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'aggConfigResult': { + '$parent': { + 'key': 't', + 'value': 't', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 413, - "value": 413, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 413, + 'value': 413, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 45, 0 @@ -376,48 +376,48 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 22.5, -22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 362, - "geohash": "k", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 362, + 'geohash': 'k', + 'center': [ 22.5, -22.5 ], - "aggConfigResult": { - "$parent": { - "key": "k", - "value": "k", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'aggConfigResult': { + '$parent': { + 'key': 'k', + 'value': 'k', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 362, - "value": 362, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 362, + 'value': 362, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 0, -45 @@ -438,48 +438,48 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -112.5, 22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 352, - "geohash": "9", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 352, + 'geohash': '9', + 'center': [ -112.5, 22.5 ], - "aggConfigResult": { - "$parent": { - "key": "9", - "value": "9", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'aggConfigResult': { + '$parent': { + 'key': '9', + 'value': '9', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 352, - "value": 352, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 352, + 'value': 352, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -135, 0 @@ -500,48 +500,48 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -22.5, 22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 216, - "geohash": "e", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 216, + 'geohash': 'e', + 'center': [ -22.5, 22.5 ], - "aggConfigResult": { - "$parent": { - "key": "e", - "value": "e", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'aggConfigResult': { + '$parent': { + 'key': 'e', + 'value': 'e', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 216, - "value": 216, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 216, + 'value': 216, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -45, 0 @@ -562,48 +562,48 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 67.5, 67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 183, - "geohash": "v", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 183, + 'geohash': 'v', + 'center': [ 67.5, 67.5 ], - "aggConfigResult": { - "$parent": { - "key": "v", - "value": "v", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'aggConfigResult': { + '$parent': { + 'key': 'v', + 'value': 'v', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 183, - "value": 183, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 183, + 'value': 183, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 45, 45 @@ -624,48 +624,48 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 157.5, -22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 158, - "geohash": "r", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 158, + 'geohash': 'r', + 'center': [ 157.5, -22.5 ], - "aggConfigResult": { - "$parent": { - "key": "r", - "value": "r", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'aggConfigResult': { + '$parent': { + 'key': 'r', + 'value': 'r', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 158, - "value": 158, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 158, + 'value': 158, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 135, -45 @@ -686,48 +686,48 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 112.5, 67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 139, - "geohash": "y", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 139, + 'geohash': 'y', + 'center': [ 112.5, 67.5 ], - "aggConfigResult": { - "$parent": { - "key": "y", - "value": "y", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'aggConfigResult': { + '$parent': { + 'key': 'y', + 'value': 'y', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 139, - "value": 139, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 139, + 'value': 139, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 90, 45 @@ -748,48 +748,48 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -112.5, 67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 110, - "geohash": "c", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 110, + 'geohash': 'c', + 'center': [ -112.5, 67.5 ], - "aggConfigResult": { - "$parent": { - "key": "c", - "value": "c", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'aggConfigResult': { + '$parent': { + 'key': 'c', + 'value': 'c', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 110, - "value": 110, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 110, + 'value': 110, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -135, 45 @@ -810,48 +810,48 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 112.5, -22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 101, - "geohash": "q", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 101, + 'geohash': 'q', + 'center': [ 112.5, -22.5 ], - "aggConfigResult": { - "$parent": { - "key": "q", - "value": "q", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'aggConfigResult': { + '$parent': { + 'key': 'q', + 'value': 'q', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 101, - "value": 101, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 101, + 'value': 101, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 90, -45 @@ -872,48 +872,48 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -22.5, -22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 101, - "geohash": "7", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 101, + 'geohash': '7', + 'center': [ -22.5, -22.5 ], - "aggConfigResult": { - "$parent": { - "key": "7", - "value": "7", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'aggConfigResult': { + '$parent': { + 'key': '7', + 'value': '7', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 101, - "value": 101, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 101, + 'value': 101, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -45, -45 @@ -934,48 +934,48 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -67.5, 67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 92, - "geohash": "f", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 92, + 'geohash': 'f', + 'center': [ -67.5, 67.5 ], - "aggConfigResult": { - "$parent": { - "key": "f", - "value": "f", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'aggConfigResult': { + '$parent': { + 'key': 'f', + 'value': 'f', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 92, - "value": 92, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 92, + 'value': 92, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -90, 45 @@ -996,48 +996,48 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -157.5, 67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 75, - "geohash": "b", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 75, + 'geohash': 'b', + 'center': [ -157.5, 67.5 ], - "aggConfigResult": { - "$parent": { - "key": "b", - "value": "b", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'aggConfigResult': { + '$parent': { + 'key': 'b', + 'value': 'b', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 75, - "value": 75, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 75, + 'value': 75, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -180, 45 @@ -1058,48 +1058,48 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -22.5, 67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 64, - "geohash": "g", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 64, + 'geohash': 'g', + 'center': [ -22.5, 67.5 ], - "aggConfigResult": { - "$parent": { - "key": "g", - "value": "g", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'aggConfigResult': { + '$parent': { + 'key': 'g', + 'value': 'g', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 64, - "value": 64, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 64, + 'value': 64, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -45, 45 @@ -1120,48 +1120,48 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 157.5, 67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 36, - "geohash": "z", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 36, + 'geohash': 'z', + 'center': [ 157.5, 67.5 ], - "aggConfigResult": { - "$parent": { - "key": "z", - "value": "z", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'aggConfigResult': { + '$parent': { + 'key': 'z', + 'value': 'z', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 36, - "value": 36, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 36, + 'value': 36, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 135, 45 @@ -1182,48 +1182,48 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 157.5, 22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 34, - "geohash": "x", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 34, + 'geohash': 'x', + 'center': [ 157.5, 22.5 ], - "aggConfigResult": { - "$parent": { - "key": "x", - "value": "x", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'aggConfigResult': { + '$parent': { + 'key': 'x', + 'value': 'x', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 34, - "value": 34, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 34, + 'value': 34, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 135, 0 @@ -1244,48 +1244,48 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -67.5, -67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 30, - "geohash": "4", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 30, + 'geohash': '4', + 'center': [ -67.5, -67.5 ], - "aggConfigResult": { - "$parent": { - "key": "4", - "value": "4", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'aggConfigResult': { + '$parent': { + 'key': '4', + 'value': '4', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 30, - "value": 30, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 30, + 'value': 30, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -90, -90 @@ -1306,48 +1306,48 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 67.5, -22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 16, - "geohash": "m", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 16, + 'geohash': 'm', + 'center': [ 67.5, -22.5 ], - "aggConfigResult": { - "$parent": { - "key": "m", - "value": "m", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'aggConfigResult': { + '$parent': { + 'key': 'm', + 'value': 'm', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 16, - "value": 16, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 16, + 'value': 16, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 45, -45 @@ -1368,48 +1368,48 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -22.5, -67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 10, - "geohash": "5", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 10, + 'geohash': '5', + 'center': [ -22.5, -67.5 ], - "aggConfigResult": { - "$parent": { - "key": "5", - "value": "5", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'aggConfigResult': { + '$parent': { + 'key': '5', + 'value': '5', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 10, - "value": 10, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 10, + 'value': 10, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -45, -90 @@ -1430,48 +1430,48 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 157.5, -67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 6, - "geohash": "p", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 6, + 'geohash': 'p', + 'center': [ 157.5, -67.5 ], - "aggConfigResult": { - "$parent": { - "key": "p", - "value": "p", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'aggConfigResult': { + '$parent': { + 'key': 'p', + 'value': 'p', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 6, - "value": 6, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 6, + 'value': 6, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 135, -90 @@ -1492,48 +1492,48 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -157.5, -22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 6, - "geohash": "2", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 6, + 'geohash': '2', + 'center': [ -157.5, -22.5 ], - "aggConfigResult": { - "$parent": { - "key": "2", - "value": "2", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'aggConfigResult': { + '$parent': { + 'key': '2', + 'value': '2', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 6, - "value": 6, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 6, + 'value': 6, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -180, -45 @@ -1554,48 +1554,48 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 22.5, -67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 4, - "geohash": "h", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 4, + 'geohash': 'h', + 'center': [ 22.5, -67.5 ], - "aggConfigResult": { - "$parent": { - "key": "h", - "value": "h", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'aggConfigResult': { + '$parent': { + 'key': 'h', + 'value': 'h', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 4, - "value": 4, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 4, + 'value': 4, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 0, -90 @@ -1616,48 +1616,48 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 112.5, -67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 2, - "geohash": "n", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 2, + 'geohash': 'n', + 'center': [ 112.5, -67.5 ], - "aggConfigResult": { - "$parent": { - "key": "n", - "value": "n", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'aggConfigResult': { + '$parent': { + 'key': 'n', + 'value': 'n', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 2, - "value": 2, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 2, + 'value': 2, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 90, -90 @@ -1678,48 +1678,48 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ 67.5, -67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 2, - "geohash": "j", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 2, + 'geohash': 'j', + 'center': [ 67.5, -67.5 ], - "aggConfigResult": { - "$parent": { - "key": "j", - "value": "j", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'aggConfigResult': { + '$parent': { + 'key': 'j', + 'value': 'j', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 2, - "value": 2, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 2, + 'value': 2, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ 45, -90 @@ -1740,48 +1740,48 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -112.5, -22.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 1, - "geohash": "3", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 1, + 'geohash': '3', + 'center': [ -112.5, -22.5 ], - "aggConfigResult": { - "$parent": { - "key": "3", - "value": "3", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'aggConfigResult': { + '$parent': { + 'key': '3', + 'value': '3', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 1, - "value": 1, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 1, + 'value': 1, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -135, -45 @@ -1802,48 +1802,48 @@ define(function () { } }, { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ -112.5, -67.5 ] }, - "properties": { - "valueLabel": "Count", - "count": 1, - "geohash": "1", - "center": [ + 'properties': { + 'valueLabel': 'Count', + 'count': 1, + 'geohash': '1', + 'center': [ -112.5, -67.5 ], - "aggConfigResult": { - "$parent": { - "key": "1", - "value": "1", - "aggConfig": { - "id": "2", - "type": "geohash_grid", - "schema": "segment", - "params": { - "field": "geo.coordinates", - "precision": 1 + 'aggConfigResult': { + '$parent': { + 'key': '1', + 'value': '1', + 'aggConfig': { + 'id': '2', + 'type': 'geohash_grid', + 'schema': 'segment', + 'params': { + 'field': 'geo.coordinates', + 'precision': 1 } }, - "type": "bucket" + 'type': 'bucket' }, - "key": 1, - "value": 1, - "aggConfig": { - "id": "1", - "type": "count", - "schema": "metric", - "params": {} + 'key': 1, + 'value': 1, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} }, - "type": "metric" + 'type': 'metric' }, - "rectangle": [ + 'rectangle': [ [ -135, -90 @@ -1864,16 +1864,16 @@ define(function () { } } ], - "properties": { - "label": null, - "length": 30, - "min": 1, - "max": 608, - "precision": 1, - "allmin": 1, - "allmax": 608 + 'properties': { + 'label': null, + 'length': 30, + 'min': 1, + 'max': 608, + 'precision': 1, + 'allmin': 1, + 'allmax': 608 } }, - "hits": 5033 + 'hits': 5033 }; }); diff --git a/test/unit/specs/vislib/visualizations/tile_map.js b/test/unit/specs/vislib/visualizations/tile_map.js index 6e6c05851c2c9f..aaef1a2935cbcd 100644 --- a/test/unit/specs/vislib/visualizations/tile_map.js +++ b/test/unit/specs/vislib/visualizations/tile_map.js @@ -1,4 +1,4 @@ -define (function (require) { +define(function (require) { var angular = require('angular'); var _ = require('lodash'); var $ = require('jquery'); @@ -42,8 +42,8 @@ define (function (require) { }); afterEach(function () { - $(vis.el).remove(); - vis = null; + $(vis.el).remove(); + vis = null; }); describe('draw method', function () { From e400059491597723b7a7f97c2d20fb76c8d79232 Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Tue, 24 Mar 2015 17:48:08 -0500 Subject: [PATCH 18/32] added more tests for tilemap --- .../vislib/visualizations/tile_map.js | 10 +- .../specs/vislib/visualizations/tile_map.js | 121 ++++++++++++------ 2 files changed, 86 insertions(+), 45 deletions(-) diff --git a/src/kibana/components/vislib/visualizations/tile_map.js b/src/kibana/components/vislib/visualizations/tile_map.js index 935d1f26db750a..40e25fc2ab2f59 100644 --- a/src/kibana/components/vislib/visualizations/tile_map.js +++ b/src/kibana/components/vislib/visualizations/tile_map.js @@ -49,7 +49,7 @@ define(function (require) { var worldBounds = L.latLngBounds([-90, -220], [90, 220]); // clean up old maps - _.invoke(self.maps, 'destroy'); + _.invoke(self.maps, self.destroy); // create a new maps array self.maps = []; @@ -599,9 +599,11 @@ define(function (require) { * tell leaflet that it's time to cleanup the map */ TileMap.prototype.destroy = function () { - this.maps.forEach(function (map) { - map.remove(); - }); + if (this.maps) { + this.maps.forEach(function (map) { + map.remove(); + }); + } }; return TileMap; diff --git a/test/unit/specs/vislib/visualizations/tile_map.js b/test/unit/specs/vislib/visualizations/tile_map.js index aaef1a2935cbcd..84b07f8ca01d4f 100644 --- a/test/unit/specs/vislib/visualizations/tile_map.js +++ b/test/unit/specs/vislib/visualizations/tile_map.js @@ -12,66 +12,105 @@ define(function (require) { ]; var names = ['geojson', 'columns', 'rows']; + var mapTypes = ['Scaled Circle Markers', 'Shaded Circle Markers', 'Shaded Geohash Grid', 'Pins']; angular.module('TileMapFactory', ['kibana']); dataArray.forEach(function (data, i) { - describe('TileMap Test Suite for ' + names[i] + ' data', function () { - var vis; - var visLibParams = { - isDesaturated: true, - type: 'tile_map', - mapType: 'Scaled Circle Markers' - }; - - beforeEach(function () { - module('TileMapFactory'); - }); - beforeEach(function () { - inject(function (Private) { - vis = Private(require('vislib_fixtures/_vis_fixture'))(visLibParams); - require('css!components/vislib/styles/main'); - vis.render(data); + mapTypes.forEach(function (type, j) { + + describe('TileMap Test Suite for ' + mapTypes[j] + ' with ' + names[i] + ' data', function () { + var vis; + var visLibParams = { + isDesaturated: true, + type: 'tile_map', + mapType: type + }; + + beforeEach(function () { + module('TileMapFactory'); }); beforeEach(function () { - $(vis.el).height(400); - $(vis.el).width(300); + inject(function (Private) { + vis = Private(require('vislib_fixtures/_vis_fixture'))(visLibParams); + require('css!components/vislib/styles/main'); + vis.render(data); + }); }); - }); - afterEach(function () { - $(vis.el).remove(); - vis = null; - }); + afterEach(function () { + $(vis.el).remove(); + vis = null; + }); + + describe('draw method', function () { + var leafletContainer; + var isDrawn; - describe('draw method', function () { - var leafletContainer; - var isDrawn; + it('should return a function', function () { + vis.handler.charts.forEach(function (chart) { + expect(_.isFunction(chart.draw())).to.be(true); + }); + }); - it('should draw a map', function () { - leafletContainer = $(vis.el).find('.leaflet-container'); - isDrawn = (leafletContainer.length > 0); - expect(isDrawn).to.be(true); + it('should draw a map', function () { + leafletContainer = $(vis.el).find('.leaflet-container'); + isDrawn = (leafletContainer.length > 0); + expect(isDrawn).to.be(true); + }); }); - }); - describe('containerTooSmall error', function () { - beforeEach(function () { - $(vis.el).height(40); - $(vis.el).width(40); + describe('containerTooSmall error', function () { + beforeEach(function () { + $(vis.el).height(10); + $(vis.el).width(10); + }); + + it('should throw an error', function () { + vis.handler.charts.forEach(function (chart) { + expect(function () { + chart.render(); + }).to.throwError(); + }); + }); }); - it('should throw an error', function () { - vis.handler.charts.forEach(function (chart) { - expect(function () { - chart.render(); - }).to.throwError(); + describe('geohashMinDistance method', function () { + it('should return a number', function () { + vis.handler.charts.forEach(function (chart) { + var feature = chart.chartData.geoJson.features[0]; + expect(_.isNumber(chart.geohashMinDistance(feature))).to.be(true); + }); + }); + }); + + describe('radiusScale method', function () { + it('should return a number', function () { + vis.handler.charts.forEach(function (chart) { + var count = Math.random() * 50; + var max = 50; + var precision = 1; + var feature = chart.chartData.geoJson.features[0]; + expect(_.isNumber(chart.radiusScale(count, max, precision, feature))).to.be(true); + }); + }); + }); + + describe('quantizeColorScale method', function () { + it('should return a hex color', function () { + vis.handler.charts.forEach(function (chart) { + var reds = ['#fed976', '#feb24c', '#fd8d3c', '#f03b20', '#bd0026']; + var count = Math.random() * 300; + var min = 0; + var max = 300; + expect(_.indexOf(reds, chart.quantizeColorScale(count, min, max))).to.not.be(-1); + }); }); }); - }); + }); }); }); }); \ No newline at end of file From 89a6c2f4f4cf0aa144aa4679aae68deada77b9ba Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Mon, 30 Mar 2015 14:34:35 -0500 Subject: [PATCH 19/32] changed variable names to be more descriptive --- .../components/vislib/visualizations/tile_map.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/kibana/components/vislib/visualizations/tile_map.js b/src/kibana/components/vislib/visualizations/tile_map.js index 40e25fc2ab2f59..24d49d963f88c2 100644 --- a/src/kibana/components/vislib/visualizations/tile_map.js +++ b/src/kibana/components/vislib/visualizations/tile_map.js @@ -520,13 +520,13 @@ define(function (require) { * @return {Number} */ TileMap.prototype.geohashMinDistance = function (feature) { - var gh = feature.properties.rectangle; - var nw = L.latLng([gh[3][1], gh[3][0]]); - var ne = L.latLng([gh[2][1], gh[2][0]]); - var sw = L.latLng([gh[0][1], gh[0][0]]); - var ew = Math.floor(nw.distanceTo(ne)); - var ns = Math.floor(nw.distanceTo(sw)); - var min = _.min([ew, ns]); + var geohashRect = feature.properties.rectangle; + var northWest = L.latLng([geohashRect[3][1], geohashRect[3][0]]); + var northEast = L.latLng([geohashRect[2][1], geohashRect[2][0]]); + var southWest = L.latLng([geohashRect[0][1], geohashRect[0][0]]); + var eastWest = Math.floor(northWest.distanceTo(northEast)); + var northSouth = Math.floor(northWest.distanceTo(southWest)); + var min = _.min([eastWest, northSouth]); return min; }; From dacb42d4209a98afb2674c0ff1457216906fe63c Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Mon, 30 Mar 2015 17:16:03 -0500 Subject: [PATCH 20/32] fixes error, zooms to bounds only if mapData and mapData has features --- .../components/vislib/visualizations/tile_map.js | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/kibana/components/vislib/visualizations/tile_map.js b/src/kibana/components/vislib/visualizations/tile_map.js index 24d49d963f88c2..9546ba45a28c1d 100644 --- a/src/kibana/components/vislib/visualizations/tile_map.js +++ b/src/kibana/components/vislib/visualizations/tile_map.js @@ -117,11 +117,13 @@ define(function (require) { } // zoom to featureLayer data bounds - if (!self._attr.firstFitBounds) { - map.fitBounds(featureLayer.getBounds()); - self._attr.firstFitBounds = featureLayer.getBounds(); - } else { - map.fitBounds(self._attr.firstFitBounds); + if (mapData.features.length > 0) { + if (!self._attr.firstFitBounds) { + map.fitBounds(featureLayer.getBounds()); + self._attr.firstFitBounds = featureLayer.getBounds(); + } else { + map.fitBounds(self._attr.firstFitBounds); + } } // Add button to fit container to points @@ -513,7 +515,7 @@ define(function (require) { /** * geohashMinDistance returns a min distance in meters for sizing - * circle markers to fit within geohash grid + * circle markers to fit within geohash grid rectangle * * @method geohashMinDistance * @param feature {Object} From d158e7894c82b88fa08ef088455ccf839c590824 Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Mon, 30 Mar 2015 17:29:15 -0500 Subject: [PATCH 21/32] adds labels to map when there are splits --- src/kibana/components/vislib/visualizations/tile_map.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/kibana/components/vislib/visualizations/tile_map.js b/src/kibana/components/vislib/visualizations/tile_map.js index 9546ba45a28c1d..3e61587009df57 100644 --- a/src/kibana/components/vislib/visualizations/tile_map.js +++ b/src/kibana/components/vislib/visualizations/tile_map.js @@ -49,7 +49,8 @@ define(function (require) { var worldBounds = L.latLngBounds([-90, -220], [90, 220]); // clean up old maps - _.invoke(self.maps, self.destroy); + self.destroy(); + // create a new maps array self.maps = []; @@ -112,6 +113,7 @@ define(function (require) { mapCenter = self._attr.mapCenter = map.getCenter(); }); + // add label for splits if (mapData.properties.label) { self.addLabel(mapData.properties.label, map); } @@ -423,8 +425,7 @@ define(function (require) { label.update = function () { this._div.innerHTML = '

' + mapLabel + '

'; }; - - return label; + label.addTo(map); }; /** From 91cb31ad6ccb1dfaab67935a8ebd0d94b5815214 Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Mon, 30 Mar 2015 17:48:25 -0500 Subject: [PATCH 22/32] fix scope of var div --- src/kibana/components/vislib/visualizations/tile_map.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/kibana/components/vislib/visualizations/tile_map.js b/src/kibana/components/vislib/visualizations/tile_map.js index 3e61587009df57..00135ec4167f85 100644 --- a/src/kibana/components/vislib/visualizations/tile_map.js +++ b/src/kibana/components/vislib/visualizations/tile_map.js @@ -45,7 +45,6 @@ define(function (require) { var self = this; var $elem = $(this.chartEl); - var div; var worldBounds = L.latLngBounds([-90, -220], [90, 220]); // clean up old maps @@ -72,8 +71,7 @@ define(function (require) { } var mapData = data.geoJson; - div = $(this); - div.addClass('tilemap'); + var div = $(this).addClass('tilemap'); var featureLayer; var tileLayer = L.tileLayer('https://otile{s}-s.mqcdn.com/tiles/1.0.0/map/{z}/{x}/{y}.jpeg', { From 1dd3dcb5552866df93affd7f32839a77dc6ded8c Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Tue, 31 Mar 2015 10:01:04 -0500 Subject: [PATCH 23/32] added error for ContainerTooSmall and tests --- .../vislib/visualizations/tile_map.js | 13 ++++-- .../specs/vislib/visualizations/tile_map.js | 43 ++++++++++++++----- 2 files changed, 42 insertions(+), 14 deletions(-) diff --git a/src/kibana/components/vislib/visualizations/tile_map.js b/src/kibana/components/vislib/visualizations/tile_map.js index 00135ec4167f85..763874efbc9998 100644 --- a/src/kibana/components/vislib/visualizations/tile_map.js +++ b/src/kibana/components/vislib/visualizations/tile_map.js @@ -42,10 +42,12 @@ define(function (require) { * @return {Function} Creates the map */ TileMap.prototype.draw = function () { - var self = this; - var $elem = $(this.chartEl); - var worldBounds = L.latLngBounds([-90, -220], [90, 220]); + var $elem = $(this.chartEl)[0]; + var elWidth = $elem.clientWidth; + var elHeight = $elem.clientHeight; + var minWidth = 90; + var minHeight = 90; // clean up old maps self.destroy(); @@ -56,6 +58,11 @@ define(function (require) { return function (selection) { selection.each(function (data) { + if (elWidth < minWidth || elHeight < minHeight) { + throw new errors.ContainerTooSmall(); + } + + var worldBounds = L.latLngBounds([-90, -220], [90, 220]); var mapCenter = [15, 5]; var mapZoom = 2; diff --git a/test/unit/specs/vislib/visualizations/tile_map.js b/test/unit/specs/vislib/visualizations/tile_map.js index 84b07f8ca01d4f..0cc479643446a0 100644 --- a/test/unit/specs/vislib/visualizations/tile_map.js +++ b/test/unit/specs/vislib/visualizations/tile_map.js @@ -10,9 +10,14 @@ define(function (require) { require('vislib_fixtures/mock_data/geohash/_columns'), require('vislib_fixtures/mock_data/geohash/_rows') ]; - var names = ['geojson', 'columns', 'rows']; var mapTypes = ['Scaled Circle Markers', 'Shaded Circle Markers', 'Shaded Geohash Grid', 'Pins']; + var sizes = [ + 70, + 90, + 110 + ]; + angular.module('TileMapFactory', ['kibana']); @@ -62,17 +67,33 @@ define(function (require) { }); }); - describe('containerTooSmall error', function () { - beforeEach(function () { - $(vis.el).height(10); - $(vis.el).width(10); - }); + sizes.forEach(function (size) { + describe('containerTooSmall error', function () { + it('should throw an error', function () { + // 90px is the minimum height and width + vis.handler.charts.forEach(function (chart) { + $(chart.chartEl).height(size); + $(chart.chartEl).width(size); + + if (size < 90) { + expect(function () { + chart.render(); + }).to.throwError(); + } + }); + }); - it('should throw an error', function () { - vis.handler.charts.forEach(function (chart) { - expect(function () { - chart.render(); - }).to.throwError(); + it('should not throw an error', function () { + vis.handler.charts.forEach(function (chart) { + $(chart.chartEl).height(size); + $(chart.chartEl).width(size); + + if (size >= 90) { + expect(function () { + chart.render(); + }).to.not.throwError(); + } + }); }); }); }); From 13f670b97f306fc93c4607fb2be02cd6e5ef940f Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Wed, 1 Apr 2015 17:33:16 -0500 Subject: [PATCH 24/32] removed zoom to bounds on draw method to revert to behavior in master --- .../vislib/visualizations/tile_map.js | 29 +++++-------------- 1 file changed, 8 insertions(+), 21 deletions(-) diff --git a/src/kibana/components/vislib/visualizations/tile_map.js b/src/kibana/components/vislib/visualizations/tile_map.js index 763874efbc9998..408a74686706f8 100644 --- a/src/kibana/components/vislib/visualizations/tile_map.js +++ b/src/kibana/components/vislib/visualizations/tile_map.js @@ -68,13 +68,9 @@ define(function (require) { if (self._attr.mapZoom) { mapZoom = self._attr.mapZoom; - } else { - self._attr.mapZoom = mapZoom; } if (self._attr.mapCenter) { mapCenter = self._attr.mapCenter; - } else { - mapCenter = self._attr.mapCenter; } var mapData = data.geoJson; @@ -101,7 +97,6 @@ define(function (require) { }; var map = L.map(div[0], mapOptions); - self.maps.push(map); tileLayer.on('tileload', function () { self.saturateTiles(); @@ -123,16 +118,6 @@ define(function (require) { self.addLabel(mapData.properties.label, map); } - // zoom to featureLayer data bounds - if (mapData.features.length > 0) { - if (!self._attr.firstFitBounds) { - map.fitBounds(featureLayer.getBounds()); - self._attr.firstFitBounds = featureLayer.getBounds(); - } else { - map.fitBounds(self._attr.firstFitBounds); - } - } - // Add button to fit container to points var FitControl = L.Control.extend({ options: { @@ -151,6 +136,8 @@ define(function (require) { if (mapData && mapData.features.length > 0) { map.addControl(new FitControl()); } + + self.maps.push(map); }); }; }; @@ -164,8 +151,8 @@ define(function (require) { * @return {Leaflet object} featureLayer */ TileMap.prototype.fitBounds = function (map, featureLayer) { + map.fitBounds(featureLayer.getBounds()); - this._attr.firstFitBounds = featureLayer.getBounds(); }; /** @@ -607,11 +594,11 @@ define(function (require) { * tell leaflet that it's time to cleanup the map */ TileMap.prototype.destroy = function () { - if (this.maps) { - this.maps.forEach(function (map) { - map.remove(); - }); - } + //if (this.maps) { + this.maps.forEach(function (map) { + map.remove(); + }); + //} }; return TileMap; From 6ee98ce5fce281f1f137525c1933e3888aff30cd Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Thu, 2 Apr 2015 13:25:13 -0500 Subject: [PATCH 25/32] improved geohashMinDistance method to size circles by distance at center of geohash --- .../vislib/visualizations/tile_map.js | 23 ++++++++++--------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/src/kibana/components/vislib/visualizations/tile_map.js b/src/kibana/components/vislib/visualizations/tile_map.js index 408a74686706f8..79a493da9a475a 100644 --- a/src/kibana/components/vislib/visualizations/tile_map.js +++ b/src/kibana/components/vislib/visualizations/tile_map.js @@ -254,7 +254,7 @@ define(function (require) { var featureLayer = L.geoJson(mapData, { pointToLayer: function (feature, latlng) { var count = feature.properties.count; - var scaledRadius = self.radiusScale(count, max, precision, feature); + var scaledRadius = self.radiusScale(count, max, precision, feature) * 2; return L.circle(latlng, scaledRadius); }, onEachFeature: function (feature, layer) { @@ -314,7 +314,7 @@ define(function (require) { var featureLayer = L.geoJson(mapData, { pointToLayer: function (feature, latlng) { var count = feature.properties.count; - var radius = self.geohashMinDistance(feature) / 2; + var radius = self.geohashMinDistance(feature); return L.circle(latlng, radius); }, onEachFeature: function (feature, layer) { @@ -515,14 +515,17 @@ define(function (require) { * @return {Number} */ TileMap.prototype.geohashMinDistance = function (feature) { + var centerPoint = feature.properties.center; var geohashRect = feature.properties.rectangle; - var northWest = L.latLng([geohashRect[3][1], geohashRect[3][0]]); - var northEast = L.latLng([geohashRect[2][1], geohashRect[2][0]]); - var southWest = L.latLng([geohashRect[0][1], geohashRect[0][0]]); - var eastWest = Math.floor(northWest.distanceTo(northEast)); - var northSouth = Math.floor(northWest.distanceTo(southWest)); - var min = _.min([eastWest, northSouth]); - return min; + + var center = L.latLng([centerPoint[1], centerPoint[0]]); + var east = L.latLng([centerPoint[1], geohashRect[2][0]]); + var north = L.latLng([geohashRect[3][1], centerPoint[0]]); + + var eastRadius = Math.floor(center.distanceTo(east)); + var northRadius = Math.floor(center.distanceTo(north)); + + return _.min([eastRadius, northRadius]); }; /** @@ -594,11 +597,9 @@ define(function (require) { * tell leaflet that it's time to cleanup the map */ TileMap.prototype.destroy = function () { - //if (this.maps) { this.maps.forEach(function (map) { map.remove(); }); - //} }; return TileMap; From 9e8b2809977e57bf2e1b0ab52959d941b0e96777 Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Thu, 2 Apr 2015 13:57:24 -0500 Subject: [PATCH 26/32] cleaned up a few unsued vars and comments --- .../vislib/visualizations/tile_map.js | 47 +++++++------------ 1 file changed, 16 insertions(+), 31 deletions(-) diff --git a/src/kibana/components/vislib/visualizations/tile_map.js b/src/kibana/components/vislib/visualizations/tile_map.js index 79a493da9a475a..d3b14cd21d349f 100644 --- a/src/kibana/components/vislib/visualizations/tile_map.js +++ b/src/kibana/components/vislib/visualizations/tile_map.js @@ -207,25 +207,16 @@ define(function (require) { */ TileMap.prototype.pinMarkers = function (map, mapData) { var self = this; - var min = mapData.properties.min; - var max = mapData.properties.max; + + // super min and max from all chart data + var min = mapData.properties.allmin; + var max = mapData.properties.allmax; + var length = mapData.properties.length; var precision = mapData.properties.precision; - var bounds; - var defaultColor = '#ff6128'; var featureLayer = L.geoJson(mapData, { onEachFeature: function (feature, layer) { self.bindPopup(feature, layer); - }, - style: function (feature) { - var count = feature.properties.count; - return { - fillColor: defaultColor, - color: self.darkerColor(defaultColor), - weight: 1.0, - opacity: 1, - fillOpacity: 0.75 - }; } }); @@ -244,12 +235,14 @@ define(function (require) { */ TileMap.prototype.scaledCircleMarkers = function (map, mapData) { var self = this; - var min = mapData.properties.min; - var max = mapData.properties.max; + + // super min and max from all chart data + var min = mapData.properties.allmin; + var max = mapData.properties.allmax; + var length = mapData.properties.length; var precision = mapData.properties.precision; - var bounds; - var defaultColor = '#ff6128'; + var radiusScaler = 2.5; var featureLayer = L.geoJson(mapData, { pointToLayer: function (feature, latlng) { @@ -298,19 +291,11 @@ define(function (require) { */ TileMap.prototype.shadedCircleMarkers = function (map, mapData) { var self = this; - // min and max from chart data for this map - // var min = mapData.properties.min; - // var max = mapData.properties.max; // super min and max from all chart data var min = mapData.properties.allmin; var max = mapData.properties.allmax; - var length = mapData.properties.length; - var precision = mapData.properties.precision; - var bounds; - var defaultColor = '#005baa'; - var featureLayer = L.geoJson(mapData, { pointToLayer: function (feature, latlng) { var count = feature.properties.count; @@ -353,12 +338,12 @@ define(function (require) { */ TileMap.prototype.shadedGeohashGrid = function (map, mapData) { var self = this; - var min = mapData.properties.min; - var max = mapData.properties.max; - var length = mapData.properties.length; - var precision = mapData.properties.precision; + + // super min and max from all chart data + var min = mapData.properties.allmin; + var max = mapData.properties.allmax; + var bounds; - var defaultColor = '#ff6128'; var featureLayer = L.geoJson(mapData, { pointToLayer: function (feature, latlng) { From 59782c5aaa47c83b1a2c48991f2d4dae20352765 Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Thu, 2 Apr 2015 14:01:19 -0500 Subject: [PATCH 27/32] removed error for ContainerTooSmall and tests for ContainerTooSmall --- .../vislib/visualizations/tile_map.js | 9 ----- .../specs/vislib/visualizations/tile_map.js | 37 ------------------- 2 files changed, 46 deletions(-) diff --git a/src/kibana/components/vislib/visualizations/tile_map.js b/src/kibana/components/vislib/visualizations/tile_map.js index d3b14cd21d349f..344c3a0a3410a5 100644 --- a/src/kibana/components/vislib/visualizations/tile_map.js +++ b/src/kibana/components/vislib/visualizations/tile_map.js @@ -43,11 +43,6 @@ define(function (require) { */ TileMap.prototype.draw = function () { var self = this; - var $elem = $(this.chartEl)[0]; - var elWidth = $elem.clientWidth; - var elHeight = $elem.clientHeight; - var minWidth = 90; - var minHeight = 90; // clean up old maps self.destroy(); @@ -58,10 +53,6 @@ define(function (require) { return function (selection) { selection.each(function (data) { - if (elWidth < minWidth || elHeight < minHeight) { - throw new errors.ContainerTooSmall(); - } - var worldBounds = L.latLngBounds([-90, -220], [90, 220]); var mapCenter = [15, 5]; var mapZoom = 2; diff --git a/test/unit/specs/vislib/visualizations/tile_map.js b/test/unit/specs/vislib/visualizations/tile_map.js index 0cc479643446a0..cafded74b0dae5 100644 --- a/test/unit/specs/vislib/visualizations/tile_map.js +++ b/test/unit/specs/vislib/visualizations/tile_map.js @@ -12,12 +12,6 @@ define(function (require) { ]; var names = ['geojson', 'columns', 'rows']; var mapTypes = ['Scaled Circle Markers', 'Shaded Circle Markers', 'Shaded Geohash Grid', 'Pins']; - var sizes = [ - 70, - 90, - 110 - ]; - angular.module('TileMapFactory', ['kibana']); @@ -67,37 +61,6 @@ define(function (require) { }); }); - sizes.forEach(function (size) { - describe('containerTooSmall error', function () { - it('should throw an error', function () { - // 90px is the minimum height and width - vis.handler.charts.forEach(function (chart) { - $(chart.chartEl).height(size); - $(chart.chartEl).width(size); - - if (size < 90) { - expect(function () { - chart.render(); - }).to.throwError(); - } - }); - }); - - it('should not throw an error', function () { - vis.handler.charts.forEach(function (chart) { - $(chart.chartEl).height(size); - $(chart.chartEl).width(size); - - if (size >= 90) { - expect(function () { - chart.render(); - }).to.not.throwError(); - } - }); - }); - }); - }); - describe('geohashMinDistance method', function () { it('should return a number', function () { vis.handler.charts.forEach(function (chart) { From ef66675da0fdaf150ac4dcae4e12a13b86529168 Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Fri, 3 Apr 2015 11:30:02 -0500 Subject: [PATCH 28/32] move center and zoom vars out of draw method to save last change --- .../components/vislib/visualizations/tile_map.js | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/src/kibana/components/vislib/visualizations/tile_map.js b/src/kibana/components/vislib/visualizations/tile_map.js index 344c3a0a3410a5..b42c9a97a2a3f0 100644 --- a/src/kibana/components/vislib/visualizations/tile_map.js +++ b/src/kibana/components/vislib/visualizations/tile_map.js @@ -9,6 +9,9 @@ define(function (require) { require('css!components/vislib/styles/main'); + var mapCenter = [15, 5]; + var mapZoom = 2; + /** * Tile Map Visualization: renders maps * @@ -50,13 +53,11 @@ define(function (require) { // create a new maps array self.maps = []; + var worldBounds = L.latLngBounds([-90, -220], [90, 220]); + return function (selection) { selection.each(function (data) { - var worldBounds = L.latLngBounds([-90, -220], [90, 220]); - var mapCenter = [15, 5]; - var mapZoom = 2; - if (self._attr.mapZoom) { mapZoom = self._attr.mapZoom; } @@ -262,11 +263,6 @@ define(function (require) { self.addLegend(mapData, map); } - map.on('moveend', function setZoomCenter() { - self._attr.mapZoom = map.getZoom(); - self._attr.mapCenter = map.getCenter(); - }); - return featureLayer; }; From 7f960a2b64afe26c1db84eebfd87be2b11c674cc Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Tue, 7 Apr 2015 18:08:39 -0500 Subject: [PATCH 29/32] added comments, renamed vars, removed a few unused vars --- .../vislib/visualizations/tile_map.js | 30 +++++++++++-------- 1 file changed, 18 insertions(+), 12 deletions(-) diff --git a/src/kibana/components/vislib/visualizations/tile_map.js b/src/kibana/components/vislib/visualizations/tile_map.js index b42c9a97a2a3f0..280034920d51da 100644 --- a/src/kibana/components/vislib/visualizations/tile_map.js +++ b/src/kibana/components/vislib/visualizations/tile_map.js @@ -180,7 +180,7 @@ define(function (require) { } else if (this._attr.mapType === 'Shaded Geohash Grid') { featureLayer = this.shadedGeohashGrid(map, mapData); } else { - featureLayer = this.pinMarkers(map, mapData); + featureLayer = this.pinMarkers(mapData); } } @@ -197,13 +197,9 @@ define(function (require) { * @param mapData {Object} * @return {Leaflet object} featureLayer */ - TileMap.prototype.pinMarkers = function (map, mapData) { + TileMap.prototype.pinMarkers = function (mapData) { var self = this; - // super min and max from all chart data - var min = mapData.properties.allmin; - var max = mapData.properties.allmax; - var length = mapData.properties.length; var precision = mapData.properties.precision; var featureLayer = L.geoJson(mapData, { @@ -239,7 +235,7 @@ define(function (require) { var featureLayer = L.geoJson(mapData, { pointToLayer: function (feature, latlng) { var count = feature.properties.count; - var scaledRadius = self.radiusScale(count, max, precision, feature) * 2; + var scaledRadius = self.radiusScale(count, max, feature) * 2; return L.circle(latlng, scaledRadius); }, onEachFeature: function (feature, layer) { @@ -335,8 +331,13 @@ define(function (require) { var featureLayer = L.geoJson(mapData, { pointToLayer: function (feature, latlng) { var count = feature.properties.count; - var gh = feature.properties.rectangle; - var bounds = [[gh[0][1], gh[0][0]], [gh[2][1], gh[2][0]]]; + var geohashRect = feature.properties.rectangle; + // get bounds from northEast[3] and southWest[1] + // points in geohash rectangle + var bounds = [ + [geohashRect[3][1], geohashRect[3][0]], + [geohashRect[1][1], geohashRect[1][0]] + ]; return L.rectangle(bounds); }, onEachFeature: function (feature, layer) { @@ -344,6 +345,7 @@ define(function (require) { layer.on({ mouseover: function (e) { var layer = e.target; + // bring layer to front if not older browser if (!L.Browser.ie && !L.Browser.opera) { layer.bringToFront(); } @@ -490,6 +492,9 @@ define(function (require) { var centerPoint = feature.properties.center; var geohashRect = feature.properties.rectangle; + // get lat[1] and lng[2] of geohash center point + // apply to east[2] and north[3] sides of rectangle points + // to get radius at center of geohash grid recttangle var center = L.latLng([centerPoint[1], centerPoint[0]]); var east = L.latLng([centerPoint[1], geohashRect[2][0]]); var north = L.latLng([geohashRect[3][1], centerPoint[0]]); @@ -512,7 +517,7 @@ define(function (require) { * @param precision {Number} * @return {Number} */ - TileMap.prototype.radiusScale = function (count, max, precision, feature) { + TileMap.prototype.radiusScale = function (count, max, feature) { // exp = 0.5 for square root ratio // exp = 1 for linear ratio var exp = 0.6; @@ -543,8 +548,9 @@ define(function (require) { } var cScale = this._attr.cScale = d3.scale.quantize() - .domain([min, max]) - .range(colors); + .domain([min, max]) + .range(colors); + if (max === min) { return colors[0]; } else { From 4dd200ae4b80132f058a686d0cb314dde6a731be Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Wed, 8 Apr 2015 09:18:17 -0500 Subject: [PATCH 30/32] fix test that was failing due to deleted param --- test/unit/specs/vislib/visualizations/tile_map.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/specs/vislib/visualizations/tile_map.js b/test/unit/specs/vislib/visualizations/tile_map.js index cafded74b0dae5..68c562db99f44f 100644 --- a/test/unit/specs/vislib/visualizations/tile_map.js +++ b/test/unit/specs/vislib/visualizations/tile_map.js @@ -77,7 +77,7 @@ define(function (require) { var max = 50; var precision = 1; var feature = chart.chartData.geoJson.features[0]; - expect(_.isNumber(chart.radiusScale(count, max, precision, feature))).to.be(true); + expect(_.isNumber(chart.radiusScale(count, max, feature))).to.be(true); }); }); }); From 5d9d2c208c2f57c750a74449cc9199e7e82ec1ad Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Wed, 8 Apr 2015 09:49:30 -0500 Subject: [PATCH 31/32] updated comment to be clearer --- src/kibana/components/vislib/visualizations/tile_map.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/kibana/components/vislib/visualizations/tile_map.js b/src/kibana/components/vislib/visualizations/tile_map.js index 280034920d51da..9a4ae2bf03d733 100644 --- a/src/kibana/components/vislib/visualizations/tile_map.js +++ b/src/kibana/components/vislib/visualizations/tile_map.js @@ -492,8 +492,8 @@ define(function (require) { var centerPoint = feature.properties.center; var geohashRect = feature.properties.rectangle; - // get lat[1] and lng[2] of geohash center point - // apply to east[2] and north[3] sides of rectangle points + // get lat[1] and lng[0] of geohash center point + // apply lat to east[2] and lng to north[3] sides of rectangle // to get radius at center of geohash grid recttangle var center = L.latLng([centerPoint[1], centerPoint[0]]); var east = L.latLng([centerPoint[1], geohashRect[2][0]]); From 6a5e1e927feff5f3cfc88ce24e1605261af1ab51 Mon Sep 17 00:00:00 2001 From: Juan Thomassie Date: Thu, 9 Apr 2015 11:19:09 -0500 Subject: [PATCH 32/32] removed a few vars no longer used, added method for a style function that was used in three places --- .../vislib/visualizations/tile_map.js | 66 +++++++++---------- 1 file changed, 30 insertions(+), 36 deletions(-) diff --git a/src/kibana/components/vislib/visualizations/tile_map.js b/src/kibana/components/vislib/visualizations/tile_map.js index 9a4ae2bf03d733..141739335d242f 100644 --- a/src/kibana/components/vislib/visualizations/tile_map.js +++ b/src/kibana/components/vislib/visualizations/tile_map.js @@ -151,8 +151,6 @@ define(function (require) { * remove css class on map tiles * * @method saturateTiles - * @param map {Object} - * @param featureLayer {Leaflet object} * @return {Leaflet object} featureLayer */ TileMap.prototype.saturateTiles = function () { @@ -193,15 +191,12 @@ define(function (require) { * with default leaflet pin markers * * @method pinMarkers - * @param map {Object} * @param mapData {Object} * @return {Leaflet object} featureLayer */ TileMap.prototype.pinMarkers = function (mapData) { var self = this; - var length = mapData.properties.length; - var precision = mapData.properties.precision; var featureLayer = L.geoJson(mapData, { onEachFeature: function (feature, layer) { self.bindPopup(feature, layer); @@ -228,8 +223,6 @@ define(function (require) { var min = mapData.properties.allmin; var max = mapData.properties.allmax; - var length = mapData.properties.length; - var precision = mapData.properties.precision; var radiusScaler = 2.5; var featureLayer = L.geoJson(mapData, { @@ -242,15 +235,7 @@ define(function (require) { self.bindPopup(feature, layer); }, style: function (feature) { - var count = feature.properties.count; - var color = self.quantizeColorScale(count, min, max); - return { - fillColor: color, - color: self.darkerColor(color), - weight: 1.0, - opacity: 1, - fillOpacity: 0.75 - }; + return self.applyShadingStyle(feature, min, max); } }); @@ -289,15 +274,7 @@ define(function (require) { self.bindPopup(feature, layer); }, style: function (feature) { - var count = feature.properties.count; - var color = self.quantizeColorScale(count, min, max); - return { - fillColor: color, - color: self.darkerColor(color), - weight: 1.0, - opacity: 1, - fillOpacity: 0.75 - }; + return self.applyShadingStyle(feature, min, max); } }); @@ -330,7 +307,6 @@ define(function (require) { var featureLayer = L.geoJson(mapData, { pointToLayer: function (feature, latlng) { - var count = feature.properties.count; var geohashRect = feature.properties.rectangle; // get bounds from northEast[3] and southWest[1] // points in geohash rectangle @@ -353,15 +329,7 @@ define(function (require) { }); }, style: function (feature) { - var count = feature.properties.count; - var color = self.quantizeColorScale(count, min, max); - return { - fillColor: color, - color: self.darkerColor(color), - weight: 1.0, - opacity: 1, - fillOpacity: 0.75 - }; + return self.applyShadingStyle(feature, min, max); } }); @@ -439,6 +407,29 @@ define(function (require) { legend.addTo(map); }; + /** + * Apply style with shading to feature + * + * @method applyShadingStyle + * @param feature {Object} + * @param min {Number} + * @param max {Number} + * @return {Object} + */ + TileMap.prototype.applyShadingStyle = function (feature, min, max) { + var self = this; + var count = feature.properties.count; + var color = self.quantizeColorScale(count, min, max); + + return { + fillColor: color, + color: self.darkerColor(color), + weight: 1.5, + opacity: 1, + fillOpacity: 0.75 + }; + }; + /** * Invalidate the size of the map, so that leaflet will resize to fit. * then moves to center @@ -572,7 +563,10 @@ define(function (require) { }; /** - * tell leaflet that it's time to cleanup the map + * clean up the maps + * + * @method destroy + * @return {undefined} */ TileMap.prototype.destroy = function () { this.maps.forEach(function (map) {