diff --git a/src/kibana/components/config/defaults.js b/src/kibana/components/config/defaults.js index 1af0fd1a15fd95..756409a112b793 100644 --- a/src/kibana/components/config/defaults.js +++ b/src/kibana/components/config/defaults.js @@ -57,8 +57,10 @@ 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. 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': { value: ',', diff --git a/src/kibana/components/vislib/visualizations/tile_map.js b/src/kibana/components/vislib/visualizations/tile_map.js index b69f6ae4f4420a..141739335d242f 100644 --- a/src/kibana/components/vislib/visualizations/tile_map.js +++ b/src/kibana/components/vislib/visualizations/tile_map.js @@ -9,10 +9,8 @@ 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 @@ -48,28 +46,28 @@ define(function (require) { */ TileMap.prototype.draw = function () { var self = this; - var $elem = $(this.chartEl); - var div; - var worldBounds = L.latLngBounds([-90, -180], [90, 180]); - // clean up old maps - _.invoke(self.maps, 'destroy'); + self.destroy(); + // create a new maps array self.maps = []; + var worldBounds = L.latLngBounds([-90, -220], [90, 220]); + return function (selection) { selection.each(function (data) { - div = $(this); - div.addClass('tilemap'); - if (self._attr.lastZoom) { - mapZoom = self._attr.lastZoom; + if (self._attr.mapZoom) { + mapZoom = self._attr.mapZoom; } - if (self._attr.lastCenter) { - mapCenter = self._attr.lastCenter; + if (self._attr.mapCenter) { + mapCenter = self._attr.mapCenter; } + var mapData = data.geoJson; + 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', { attribution: 'Tiles by MapQuest — ' + @@ -79,12 +77,11 @@ define(function (require) { }); var mapOptions = { - minZoom: 2, - maxZoom: 16, + minZoom: 1, + maxZoom: 18, layers: tileLayer, center: mapCenter, zoom: mapZoom, - continuousWorld: true, noWrap: true, maxBounds: worldBounds, scrollWheelZoom: false, @@ -92,29 +89,25 @@ 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() { - mapZoom = self._attr.lastZoom = map.getZoom(); - mapCenter = self._attr.lastCenter = map.getCenter(); + map.on('moveend', function setZoomCenter() { + mapZoom = self._attr.mapZoom = map.getZoom(); + mapCenter = self._attr.mapCenter = 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); - } - } - - if (data.geoJson.properties.label) { - self.addLabel(data.geoJson.properties.label, map); + // add label for splits + if (mapData.properties.label) { + self.addLabel(mapData.properties.label, map); } // Add button to fit container to points @@ -125,29 +118,94 @@ 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()); - } - - function saturateTiles() { - if (!self._attr.isDesaturated) { - $('img.leaflet-tile-loaded').addClass('filters-off'); - } - } - + self.maps.push(map); }); }; }; + /** + * 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) { + + map.fitBounds(featureLayer.getBounds()); + }; + + /** + * remove css class on map tiles + * + * @method saturateTiles + * @return {Leaflet object} featureLayer + */ + TileMap.prototype.saturateTiles = function () { + if (!this._attr.isDesaturated) { + $('img.leaflet-tile-loaded').addClass('filters-off'); + } + }; + + /** + * 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) { + var featureLayer; + if (mapData) { + if (this._attr.mapType === 'Scaled Circle Markers') { + featureLayer = this.scaledCircleMarkers(map, mapData); + } else if (this._attr.mapType === 'Shaded Circle Markers') { + featureLayer = this.shadedCircleMarkers(map, mapData); + } else if (this._attr.mapType === 'Shaded Geohash Grid') { + featureLayer = this.shadedGeohashGrid(map, mapData); + } else { + featureLayer = this.pinMarkers(mapData); + } + } + + return featureLayer; + }; + + /** + * Type of data overlay for map: + * creates featurelayer from mapData (geoJson) + * with default leaflet pin markers + * + * @method pinMarkers + * @param mapData {Object} + * @return {Leaflet object} featureLayer + */ + TileMap.prototype.pinMarkers = function (mapData) { + var self = this; + + var featureLayer = L.geoJson(mapData, { + onEachFeature: function (feature, layer) { + self.bindPopup(feature, layer); + } + }); + + return featureLayer; + }; + /** * Type of data overlay for map: * creates featurelayer from mapData (geoJson) @@ -156,47 +214,36 @@ 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; - 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'; + + // super min and max from all chart data + var min = mapData.properties.allmin; + var max = mapData.properties.allmax; + + var radiusScaler = 2.5; + 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 scaledRadius = self.radiusScale(count, max, feature) * 2; + return L.circle(latlng, scaledRadius); }, 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 - }; + return self.applyShadingStyle(feature, min, max); } - }).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); + } + return featureLayer; }; @@ -208,54 +255,82 @@ 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; - // TODO: add UI to select local min max or all min max + // super min and max from all chart data + var min = mapData.properties.allmin; + var max = mapData.properties.allmax; + + var featureLayer = L.geoJson(mapData, { + pointToLayer: function (feature, latlng) { + var count = feature.properties.count; + var radius = self.geohashMinDistance(feature); + return L.circle(latlng, radius); + }, + onEachFeature: function (feature, layer) { + self.bindPopup(feature, layer); + }, + style: function (feature) { + return self.applyShadingStyle(feature, min, max); + } + }); - // min and max from chart data for this map - // var min = mapData.properties.min; - // var max = mapData.properties.max; + // add legend + if (mapData.features.length > 1) { + self.addLegend(mapData, map); + } + + return featureLayer; + }; + + /** + * Type of data overlay for map: + * creates featurelayer from mapData (geoJson) + * with rectangles that show the geohash grid bounds + * + * @method geohashGrid + * @param map {Object} + * @param mapData {Object} + * @return {undefined} + */ + TileMap.prototype.shadedGeohashGrid = function (map, 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 zoomScale = self.zoomScale(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.circleMarker(latlng, { - radius: rad - }); + 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) { self.bindPopup(feature, layer); + 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(); + } + } + }); }, 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); } - }).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 @@ -284,7 +359,7 @@ define(function (require) { label.update = function () { this._div.innerHTML = '

' + mapLabel + '

'; }; - label.setPosition('bottomright').addTo(map); + label.addTo(map); }; /** @@ -316,12 +391,13 @@ define(function (require) { vals[0].toFixed(0)); } else { // 3 to 5 vals for legend - 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)); + 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('
'); @@ -331,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 @@ -345,35 +444,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(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); - }); - }; - /** * Binds popup and events to each feature on map * @@ -392,8 +462,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(); @@ -404,25 +472,32 @@ 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 + * geohashMinDistance returns a min distance in meters for sizing + * circle markers to fit within geohash grid rectangle * - * @method radiusScale - * @param value {Number} - * @param max {Number} + * @method geohashMinDistance + * @param feature {Object} * @return {Number} */ - TileMap.prototype.zoomScale = function (zoom) { - var zScale = d3.scale.pow() - .exponent(4) - .domain([1, 12]) - .range([0.3, 100]); - return zScale(zoom); + TileMap.prototype.geohashMinDistance = function (feature) { + var centerPoint = feature.properties.center; + var geohashRect = feature.properties.rectangle; + + // 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]]); + 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]); }; /** - * radiusScale returns a a number for scaled circle markers + * 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 @@ -433,89 +508,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, feature) { + // exp = 0.5 for square root ratio // exp = 1 for linear ratio 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 = 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 @@ -527,21 +527,21 @@ 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() - .domain([min, max]) - .range(colors); + var cScale = this._attr.cScale = d3.scale.quantize() + .domain([min, max]) + .range(colors); + if (max === min) { return colors[0]; } else { @@ -563,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) { 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, 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..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,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 + { + 'geoJson': { + 'type': 'FeatureCollection', + 'features': [ + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + 22.5, + 22.5 ] - ] - } - }, - { - '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 + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 42, + 'geohash': 's', + 'center': [ + 22.5, + 22.5 ], - [ - -163.125, - 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': '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 ] - ] - } - }, - { - '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 + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 31, + 'geohash': 'd', + 'center': [ + -67.5, + 22.5 ], - [ - -111.09375, - 36.5625 + '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 ] - ] - } - }, - { - '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 + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 30, + 'geohash': 'w', + 'center': [ + 112.5, + 22.5 ], - [ - -77.34375, - 45 + '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 ] - ] - } - }, - { - '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 + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 25, + 'geohash': '9', + 'center': [ + -112.5, + 22.5 ], - [ - -91.40625, - 49.21875 + '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 ] - ] - } - }, - { - '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 + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 22, + 'geohash': 't', + 'center': [ + 67.5, + 22.5 ], - [ - -135, - 56.25 + '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 ] - ] - } - }, - { - '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 + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 9, + 'geohash': 'e', + 'center': [ + -22.5, + 22.5 ], - [ - -161.71875, + '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 - ], - [ - -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, + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 8, + 'geohash': 'f', + 'center': [ + -67.5, 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 + '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 ] - ] - } - }, - { - '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 + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 4, + 'geohash': 'x', + 'center': [ + 157.5, + 22.5 ], - [ - -119.53125, - 45 + '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 ] - ] - } - }, - { - '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 + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 32, + 'geohash': 's', + 'center': [ + 22.5, + 22.5 ], - [ - -120.9375, - 45 + '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 ] - ] - } - }, - { - '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 + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 28, + 'geohash': 'd', + 'center': [ + -67.5, + 22.5 ], - [ - -151.875, - 68.90625 + '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 ] - ] - } - }, - { - '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 + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 27, + 'geohash': 'w', + 'center': [ + 112.5, + 22.5 ], - [ - -151.875, - 66.09375 + '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 ] - ] - } - }, - { - '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 + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 24, + 'geohash': 't', + 'center': [ + 67.5, + 22.5 ], - [ - -158.90625, - 64.6875 + '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 ] - ] - } - }, - { - '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 + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 16, + 'geohash': '9', + 'center': [ + -112.5, + 22.5 ], - [ - -147.65625, - 61.875 + '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 ] - ] - } - }, - { - '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 + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 13, + 'geohash': 'e', + 'center': [ + -22.5, + 22.5 ], - [ - -158.90625, + '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 ] - ] - } - }, - { - '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, + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 6, + 'geohash': 'f', + 'center': [ + -67.5, 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 + '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 ] - ] - } - }, - { - '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 + }, + 'properties': { + 'valueLabel': 'Count', + 'count': 1, + 'geohash': 'x', + 'center': [ + 157.5, + 22.5 ], - [ - -164.53125, - 56.25 - ] - ] - } + '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 } - ] + }, + 'label': 'Top 2 geo.dest: IN' } - } - ], - 'hits': 171449 - }; + ], + '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..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,14 +1,6 @@ define(function () { return { - 'label': '', - 'geoJSON': { - 'properties': { - 'label': '', - 'length': 597, - 'min': 35, - 'max': 1583, - 'precision': 3 - }, + 'geoJson': { 'type': 'FeatureCollection', 'features': [ { @@ -16,34 +8,59 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -75.234375, - 40.078125 + 22.5, + 22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 1583, - 'geohash': 'dr4', + 'valueLabel': 'Count', + 'count': 608, + 'geohash': 's', 'center': [ - -75.234375, - 40.078125 + 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': [ [ - -75.9375, - 39.375 + 0, + 0 ], [ - -74.53125, - 39.375 + 45, + 0 ], [ - -74.53125, - 40.78125 + 45, + 45 ], [ - -75.9375, - 40.78125 + 0, + 45 ] ] } @@ -53,34 +70,59 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -73.828125, - 41.484375 + 112.5, + 22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 1138, - 'geohash': 'dr7', + 'valueLabel': 'Count', + 'count': 522, + 'geohash': 'w', 'center': [ - -73.828125, - 41.484375 + 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': [ [ - -74.53125, - 40.78125 + 90, + 0 ], [ - -73.125, - 40.78125 + 135, + 0 ], [ - -73.125, - 42.1875 + 135, + 45 ], [ - -74.53125, - 42.1875 + 90, + 45 ] ] } @@ -90,34 +132,59 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -83.671875, - 40.078125 + -67.5, + -22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 1081, - 'geohash': 'dph', - 'center': [ - -83.671875, - 40.078125 - ], + '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 + } + }, + 'type': 'bucket' + }, + 'key': 517, + 'value': 517, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, 'rectangle': [ [ - -84.375, - 39.375 + -90, + -45 ], [ - -82.96875, - 39.375 + -45, + -45 ], [ - -82.96875, - 40.78125 + -45, + 0 ], [ - -84.375, - 40.78125 + -90, + 0 ] ] } @@ -127,34 +194,59 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -72.421875, - 41.484375 + -67.5, + 22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 1077, - 'geohash': 'drk', + 'valueLabel': 'Count', + 'count': 446, + 'geohash': 'd', 'center': [ - -72.421875, - 41.484375 + -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': [ [ - -73.125, - 40.78125 + -90, + 0 ], [ - -71.71875, - 40.78125 + -45, + 0 ], [ - -71.71875, - 42.1875 + -45, + 45 ], [ - -73.125, - 42.1875 + -90, + 45 ] ] } @@ -164,34 +256,59 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -117.421875, - 34.453125 + 22.5, + 67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 1056, - 'geohash': '9qh', + 'valueLabel': 'Count', + 'count': 426, + 'geohash': 'u', 'center': [ - -117.421875, - 34.453125 + 22.5, + 67.5 ], + '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': [ [ - -118.125, - 33.75 + 0, + 45 ], [ - -116.71875, - 33.75 + 45, + 45 ], [ - -116.71875, - 35.15625 + 45, + 90 ], [ - -118.125, - 35.15625 + 0, + 90 ] ] } @@ -201,34 +318,59 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -121.640625, - 38.671875 + 67.5, + 22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 1032, - 'geohash': '9qc', + 'valueLabel': 'Count', + 'count': 413, + 'geohash': 't', 'center': [ - -121.640625, - 38.671875 + 67.5, + 22.5 ], + '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': [ [ - -122.34375, - 37.96875 + 45, + 0 ], [ - -120.9375, - 37.96875 + 90, + 0 ], [ - -120.9375, - 39.375 + 90, + 45 ], [ - -122.34375, - 39.375 + 45, + 45 ] ] } @@ -238,34 +380,59 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -87.890625, - 41.484375 + 22.5, + -22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 954, - 'geohash': 'dp3', + 'valueLabel': 'Count', + 'count': 362, + 'geohash': 'k', 'center': [ - -87.890625, - 41.484375 + 22.5, + -22.5 ], + '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': [ [ - -88.59375, - 40.78125 + 0, + -45 ], [ - -87.1875, - 40.78125 + 45, + -45 ], [ - -87.1875, - 42.1875 + 45, + 0 ], [ - -88.59375, - 42.1875 + 0, + 0 ] ] } @@ -275,34 +442,59 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -86.484375, - 40.078125 + -112.5, + 22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 914, - 'geohash': 'dp4', - 'center': [ - -86.484375, - 40.078125 - ], + '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': [ [ - -87.1875, - 39.375 + -135, + 0 ], [ - -85.78125, - 39.375 + -90, + 0 ], [ - -85.78125, - 40.78125 + -90, + 45 ], [ - -87.1875, - 40.78125 + -135, + 45 ] ] } @@ -312,34 +504,59 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -83.671875, - 41.484375 + -22.5, + 22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 903, - 'geohash': 'dpk', + 'valueLabel': 'Count', + 'count': 216, + 'geohash': 'e', 'center': [ - -83.671875, - 41.484375 + -22.5, + 22.5 ], + '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': [ [ - -84.375, - 40.78125 + -45, + 0 ], [ - -82.96875, - 40.78125 + 0, + 0 ], [ - -82.96875, - 42.1875 + 0, + 45 ], [ - -84.375, - 42.1875 + -45, + 45 ] ] } @@ -349,34 +566,59 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -83.671875, - 42.890625 + 67.5, + 67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 892, - 'geohash': 'dps', + 'valueLabel': 'Count', + 'count': 183, + 'geohash': 'v', 'center': [ - -83.671875, - 42.890625 + 67.5, + 67.5 ], + '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': [ [ - -84.375, - 42.1875 + 45, + 45 ], [ - -82.96875, - 42.1875 + 90, + 45 ], [ - -82.96875, - 43.59375 + 90, + 90 ], [ - -84.375, - 43.59375 + 45, + 90 ] ] } @@ -386,34 +628,59 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -121.640625, - 37.265625 + 157.5, + -22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 891, - 'geohash': '9q9', + 'valueLabel': 'Count', + 'count': 158, + 'geohash': 'r', 'center': [ - -121.640625, - 37.265625 + 157.5, + -22.5 ], + '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': [ [ - -122.34375, - 36.5625 + 135, + -45 ], [ - -120.9375, - 36.5625 + 180, + -45 ], [ - -120.9375, - 37.96875 + 180, + 0 ], [ - -122.34375, - 37.96875 + 135, + 0 ] ] } @@ -423,34 +690,59 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -80.859375, - 41.484375 + 112.5, + 67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 888, - 'geohash': 'dpq', + 'valueLabel': 'Count', + 'count': 139, + 'geohash': 'y', 'center': [ - -80.859375, - 41.484375 + 112.5, + 67.5 ], + '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': [ [ - -81.5625, - 40.78125 + 90, + 45 ], [ - -80.15625, - 40.78125 + 135, + 45 ], [ - -80.15625, - 42.1875 + 135, + 90 ], [ - -81.5625, - 42.1875 + 90, + 90 ] ] } @@ -460,108 +752,59 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -118.828125, - 34.453125 + -112.5, + 67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 864, - 'geohash': '9q5', - 'center': [ - -118.828125, - 34.453125 - ], + '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 + } + }, + 'type': 'bucket' + }, + 'key': 110, + 'value': 110, + 'aggConfig': { + 'id': '1', + 'type': 'count', + 'schema': 'metric', + 'params': {} + }, + 'type': 'metric' + }, 'rectangle': [ [ - -119.53125, - 33.75 - ], - [ - -118.125, - 33.75 - ], - [ - -118.125, - 35.15625 + -135, + 45 ], - [ - -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 + 45 ], [ -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 + 90 ], [ - -87.1875, - 36.5625 + -135, + 90 ] ] } @@ -571,34 +814,59 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -96.328125, - 35.859375 + 112.5, + -22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 824, - 'geohash': '9y7', + 'valueLabel': 'Count', + 'count': 101, + 'geohash': 'q', 'center': [ - -96.328125, - 35.859375 + 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': [ [ - -97.03125, - 35.15625 + 90, + -45 ], [ - -95.625, - 35.15625 + 135, + -45 ], [ - -95.625, - 36.5625 + 135, + 0 ], [ - -97.03125, - 36.5625 + 90, + 0 ] ] } @@ -608,34 +876,59 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -79.453125, - 40.078125 + -22.5, + -22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 816, - 'geohash': 'dpp', + 'valueLabel': 'Count', + 'count': 101, + 'geohash': '7', 'center': [ - -79.453125, - 40.078125 + -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': [ [ - -80.15625, - 39.375 + -45, + -45 ], [ - -78.75, - 39.375 + 0, + -45 ], [ - -78.75, - 40.78125 + 0, + 0 ], [ - -80.15625, - 40.78125 + -45, + 0 ] ] } @@ -645,108 +938,59 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -89.296875, - 34.453125 + -67.5, + 67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 812, - 'geohash': 'dn0', + 'valueLabel': 'Count', + 'count': 92, + 'geohash': 'f', 'center': [ - -89.296875, - 34.453125 + -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': [ [ -90, - 33.75 + 45 ], [ - -88.59375, - 33.75 + -45, + 45 ], [ - -88.59375, - 35.15625 + -45, + 90 ], [ -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 + 90 ] ] } @@ -756,34 +1000,59 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -73.828125, - 42.890625 + -157.5, + 67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 802, - 'geohash': 'dre', + 'valueLabel': 'Count', + 'count': 75, + 'geohash': 'b', 'center': [ - -73.828125, - 42.890625 + -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': [ [ - -74.53125, - 42.1875 + -180, + 45 ], [ - -73.125, - 42.1875 + -135, + 45 ], [ - -73.125, - 43.59375 + -135, + 90 ], [ - -74.53125, - 43.59375 + -180, + 90 ] ] } @@ -793,34 +1062,59 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -86.484375, - 41.484375 + -22.5, + 67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 798, - 'geohash': 'dp6', + 'valueLabel': 'Count', + 'count': 64, + 'geohash': 'g', 'center': [ - -86.484375, - 41.484375 + -22.5, + 67.5 ], + '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': [ [ - -87.1875, - 40.78125 + -45, + 45 ], [ - -85.78125, - 40.78125 + 0, + 45 ], [ - -85.78125, - 42.1875 + 0, + 90 ], [ - -87.1875, - 42.1875 + -45, + 90 ] ] } @@ -830,34 +1124,59 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -96.328125, - 33.046875 + 157.5, + 67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 796, - 'geohash': '9vg', + 'valueLabel': 'Count', + 'count': 36, + 'geohash': 'z', 'center': [ - -96.328125, - 33.046875 + 157.5, + 67.5 ], + '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': [ [ - -97.03125, - 32.34375 + 135, + 45 ], [ - -95.625, - 32.34375 + 180, + 45 ], [ - -95.625, - 33.75 + 180, + 90 ], [ - -97.03125, - 33.75 + 135, + 90 ] ] } @@ -867,33 +1186,58 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -93.515625, - 44.296875 + 157.5, + 22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 786, - 'geohash': '9zv', + 'valueLabel': 'Count', + 'count': 34, + 'geohash': 'x', 'center': [ - -93.515625, - 44.296875 + 157.5, + 22.5 ], + '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': [ [ - -94.21875, - 43.59375 + 135, + 0 ], [ - -92.8125, - 43.59375 + 180, + 0 ], [ - -92.8125, + 180, 45 ], [ - -94.21875, + 135, 45 ] ] @@ -904,71 +1248,59 @@ define(function () { '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 + -67.5, + -67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 783, - 'geohash': 'dhv', + 'valueLabel': 'Count', + 'count': 30, + 'geohash': '4', 'center': [ - -82.265625, - 27.421875 + -67.5, + -67.5 ], + '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': [ [ - -82.96875, - 26.71875 + -90, + -90 ], [ - -81.5625, - 26.71875 + -45, + -90 ], [ - -81.5625, - 28.125 + -45, + -45 ], [ - -82.96875, - 28.125 + -90, + -45 ] ] } @@ -978,34 +1310,59 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -94.921875, - 37.265625 + 67.5, + -22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 780, - 'geohash': '9ys', + 'valueLabel': 'Count', + 'count': 16, + 'geohash': 'm', 'center': [ - -94.921875, - 37.265625 + 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': [ [ - -95.625, - 36.5625 + 45, + -45 ], [ - -94.21875, - 36.5625 + 90, + -45 ], [ - -94.21875, - 37.96875 + 90, + 0 ], [ - -95.625, - 37.96875 + 45, + 0 ] ] } @@ -1015,34 +1372,59 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -85.078125, - 38.671875 + -22.5, + -67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 775, - 'geohash': 'dng', + 'valueLabel': 'Count', + 'count': 10, + 'geohash': '5', 'center': [ - -85.078125, - 38.671875 + -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': [ [ - -85.78125, - 37.96875 + -45, + -90 ], [ - -84.375, - 37.96875 + 0, + -90 ], [ - -84.375, - 39.375 + 0, + -45 ], [ - -85.78125, - 39.375 + -45, + -45 ] ] } @@ -1052,34 +1434,59 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -72.421875, - 42.890625 + 157.5, + -67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 743, - 'geohash': 'drs', + 'valueLabel': 'Count', + 'count': 6, + 'geohash': 'p', 'center': [ - -72.421875, - 42.890625 + 157.5, + -67.5 ], + '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': [ [ - -73.125, - 42.1875 + 135, + -90 ], [ - -71.71875, - 42.1875 + 180, + -90 ], [ - -71.71875, - 43.59375 + 180, + -45 ], [ - -73.125, - 43.59375 + 135, + -45 ] ] } @@ -1089,34 +1496,59 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -78.046875, - 42.890625 + -157.5, + -22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 735, - 'geohash': 'dr8', + 'valueLabel': 'Count', + 'count': 6, + 'geohash': '2', 'center': [ - -78.046875, - 42.890625 + -157.5, + -22.5 ], + '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': [ [ - -78.75, - 42.1875 + -180, + -45 ], [ - -77.34375, - 42.1875 + -135, + -45 ], [ - -77.34375, - 43.59375 + -135, + 0 ], [ - -78.75, - 43.59375 + -180, + 0 ] ] } @@ -1126,34 +1558,59 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -86.484375, - 33.046875 + 22.5, + -67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 727, - 'geohash': 'djf', + 'valueLabel': 'Count', + 'count': 4, + 'geohash': 'h', 'center': [ - -86.484375, - 33.046875 + 22.5, + -67.5 ], + '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': [ [ - -87.1875, - 32.34375 + 0, + -90 ], [ - -85.78125, - 32.34375 + 45, + -90 ], [ - -85.78125, - 33.75 + 45, + -45 ], [ - -87.1875, - 33.75 + 0, + -45 ] ] } @@ -1163,34 +1620,59 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -87.890625, - 42.890625 + 112.5, + -67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 718, - 'geohash': 'dp9', + 'valueLabel': 'Count', + 'count': 2, + 'geohash': 'n', 'center': [ - -87.890625, - 42.890625 + 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': [ [ - -88.59375, - 42.1875 + 90, + -90 ], [ - -87.1875, - 42.1875 + 135, + -90 ], [ - -87.1875, - 43.59375 + 135, + -45 ], [ - -88.59375, - 43.59375 + 90, + -45 ] ] } @@ -1200,34 +1682,59 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -94.921875, - 38.671875 + 67.5, + -67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 718, - 'geohash': '9yu', + 'valueLabel': 'Count', + 'count': 2, + 'geohash': 'j', 'center': [ - -94.921875, - 38.671875 + 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': [ [ - -95.625, - 37.96875 + 45, + -90 ], [ - -94.21875, - 37.96875 + 90, + -90 ], [ - -94.21875, - 39.375 + 90, + -45 ], [ - -95.625, - 39.375 + 45, + -45 ] ] } @@ -1237,145 +1744,59 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -90.703125, - 35.859375 + -112.5, + -22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 716, - 'geohash': '9yr', + 'valueLabel': 'Count', + 'count': 1, + 'geohash': '3', 'center': [ - -90.703125, - 35.859375 + -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': [ [ - -91.40625, - 35.15625 + -135, + -45 ], [ -90, - 35.15625 + -45 ], [ -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 + 0 ], [ - -85.78125, - 42.1875 + -135, + 0 ] ] } @@ -1385,20723 +1806,74 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -71.015625, - 42.890625 + -112.5, + -67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 682, - 'geohash': 'drt', + 'valueLabel': 'Count', + 'count': 1, + 'geohash': '1', 'center': [ - -71.015625, - 42.890625 + -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': [ [ - -71.71875, - 42.1875 + -135, + -90 ], [ - -70.3125, - 42.1875 + -90, + -90 ], [ - -70.3125, - 43.59375 + -90, + -45 ], [ - -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 - ], - [ - -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 - ], - [ - -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': 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 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - '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': [ - -120.234375, - 44.296875 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 45, - '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, - 62.578125 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 44, - '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': 44, - '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': 44, - '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': [ - -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 - ] - }, - 'properties': { - 'valueLabel': 'Count of documents', - 'count': 43, - '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': 43, - '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': 42, - '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': 42, - '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': 41, - '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': 41, - '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': 40, - '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': 40, - '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': 40, - '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': 39, - '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': 39, - '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': 39, - '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': 39, - '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': 38, - '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': 38, - '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': 38, - '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': 36, - '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': 35, - 'geohash': 'b3g', - 'center': [ - -163.828125, - 55.546875 - ], - 'rectangle': [ - [ - -164.53125, - 54.84375 - ], - [ - -163.125, - 54.84375 - ], - [ - -163.125, - 56.25 - ], - [ - -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..06b7376e31afb3 100644 --- a/test/unit/specs/vislib/fixture/mock_data/geohash/_rows.js +++ b/test/unit/specs/vislib/fixture/mock_data/geohash/_rows.js @@ -2,64497 +2,85 @@ 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 - ] - ] - } - }, + 'geoJson': { + 'type': 'FeatureCollection', + 'features': [ { 'type': 'Feature', 'geometry': { 'type': 'Point', 'coordinates': [ - -114.609375, - 40.078125 + 22.5, + 22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': '9rn', + 'valueLabel': 'Count', + 'count': 39, + 'geohash': 's', 'center': [ - -114.609375, - 40.078125 + 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': [ [ - -115.3125, - 39.375 + 0, + 0 ], [ - -113.90625, - 39.375 + 45, + 0 ], [ - -113.90625, - 40.78125 + 45, + 45 ], [ - -115.3125, - 40.78125 + 0, + 45 ] ] } @@ -64502,34 +90,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -87.890625, - 47.109375 + 112.5, + 22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': 'f03', + 'valueLabel': 'Count', + 'count': 31, + 'geohash': 'w', 'center': [ - -87.890625, - 47.109375 + 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': [ [ - -88.59375, - 46.40625 + 90, + 0 ], [ - -87.1875, - 46.40625 + 135, + 0 ], [ - -87.1875, - 47.8125 + 135, + 45 ], [ - -88.59375, - 47.8125 + 90, + 45 ] ] } @@ -64539,108 +170,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -89.296875, - 47.109375 + -67.5, + 22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': 'f02', + 'valueLabel': 'Count', + 'count': 30, + 'geohash': 'd', 'center': [ - -89.296875, - 47.109375 + -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, - 46.40625 + 0 ], [ - -88.59375, - 46.40625 + -45, + 0 ], [ - -88.59375, - 47.8125 + -45, + 45 ], [ -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 + 45 ] ] } @@ -64650,34 +250,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -148.359375, - 68.203125 + -112.5, + 22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': 'bsn', - 'center': [ - -148.359375, - 68.203125 - ], + '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': [ [ - -149.0625, - 67.5 + -135, + 0 ], [ - -147.65625, - 67.5 + -90, + 0 ], [ - -147.65625, - 68.90625 + -90, + 45 ], [ - -149.0625, - 68.90625 + -135, + 45 ] ] } @@ -64687,34 +330,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -145.546875, - 62.578125 + 67.5, + 22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 10, - 'geohash': 'bg0', + 'valueLabel': 'Count', + 'count': 23, + 'geohash': 't', 'center': [ - -145.546875, - 62.578125 + 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': [ [ - -146.25, - 61.875 + 45, + 0 ], [ - -144.84375, - 61.875 + 90, + 0 ], [ - -144.84375, - 63.28125 + 90, + 45 ], [ - -146.25, - 63.28125 + 45, + 45 ] ] } @@ -64724,34 +410,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -148.359375, - 59.765625 + 22.5, + -22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'bdw', + 'valueLabel': 'Count', + 'count': 23, + 'geohash': 'k', 'center': [ - -148.359375, - 59.765625 + 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': [ [ - -149.0625, - 59.0625 + 0, + -45 ], [ - -147.65625, - 59.0625 + 45, + -45 ], [ - -147.65625, - 60.46875 + 45, + 0 ], [ - -149.0625, - 60.46875 + 0, + 0 ] ] } @@ -64761,34 +490,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -155.390625, - 61.171875 + -67.5, + -22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': 'bdc', + 'valueLabel': 'Count', + 'count': 22, + 'geohash': '6', 'center': [ - -155.390625, - 61.171875 + -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': [ [ - -156.09375, - 60.46875 + -90, + -45 ], [ - -154.6875, - 60.46875 + -45, + -45 ], [ - -154.6875, - 61.875 + -45, + 0 ], [ - -156.09375, - 61.875 + -90, + 0 ] ] } @@ -64798,34 +570,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -159.609375, - 66.796875 + 22.5, + 67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 21, - 'geohash': 'b7y', + 'valueLabel': 'Count', + 'count': 20, + 'geohash': 'u', 'center': [ - -159.609375, - 66.796875 + 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': [ [ - -160.3125, - 66.09375 + 0, + 45 ], [ - -158.90625, - 66.09375 + 45, + 45 ], [ - -158.90625, - 67.5 + 45, + 90 ], [ - -160.3125, - 67.5 + 0, + 90 ] ] } @@ -64835,34 +650,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -169.453125, - 65.390625 + 67.5, + 67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'b5x', + 'valueLabel': 'Count', + 'count': 18, + 'geohash': 'v', 'center': [ - -169.453125, - 65.390625 + 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': [ [ - -170.15625, - 64.6875 + 45, + 45 ], [ - -168.75, - 64.6875 + 90, + 45 ], [ - -168.75, - 66.09375 + 90, + 90 ], [ - -170.15625, - 66.09375 + 45, + 90 ] ] } @@ -64872,34 +730,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -176.484375, - 51.328125 + 157.5, + -22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', + 'valueLabel': 'Count', 'count': 11, - 'geohash': 'b14', + 'geohash': 'r', 'center': [ - -176.484375, - 51.328125 + 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': [ [ - -177.1875, - 50.625 + 135, + -45 ], [ - -175.78125, - 50.625 + 180, + -45 ], [ - -175.78125, - 52.03125 + 180, + 0 ], [ - -177.1875, - 52.03125 + 135, + 0 ] ] } @@ -64909,34 +810,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -118.828125, - 42.890625 + -22.5, + 22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': '9re', + 'valueLabel': 'Count', + 'count': 11, + 'geohash': 'e', 'center': [ - -118.828125, - 42.890625 + -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': [ [ - -119.53125, - 42.1875 + -45, + 0 ], [ - -118.125, - 42.1875 + 0, + 0 ], [ - -118.125, - 43.59375 + 0, + 45 ], [ - -119.53125, - 43.59375 + -45, + 45 ] ] } @@ -64946,34 +890,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -121.640625, - 42.890625 + 112.5, + 67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': '9r9', + 'valueLabel': 'Count', + 'count': 10, + 'geohash': 'y', 'center': [ - -121.640625, - 42.890625 + 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': [ [ - -122.34375, - 42.1875 + 90, + 45 ], [ - -120.9375, - 42.1875 + 135, + 45 ], [ - -120.9375, - 43.59375 + 135, + 90 ], [ - -122.34375, - 43.59375 + 90, + 90 ] ] } @@ -64983,34 +970,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -83.671875, - 28.828125 + -112.5, + 67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': 'djh', - 'center': [ - -83.671875, - 28.828125 - ], + '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': [ [ - -84.375, - 28.125 + -135, + 45 ], [ - -82.96875, - 28.125 + -90, + 45 ], [ - -82.96875, - 29.53125 + -90, + 90 ], [ - -84.375, - 29.53125 + -135, + 90 ] ] } @@ -65020,34 +1050,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -148.359375, - 63.984375 + -67.5, + 67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': 'beq', + 'valueLabel': 'Count', + 'count': 8, + 'geohash': 'f', 'center': [ - -148.359375, - 63.984375 + -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': [ [ - -149.0625, - 63.28125 + -90, + 45 ], [ - -147.65625, - 63.28125 + -45, + 45 ], [ - -147.65625, - 64.6875 + -45, + 90 ], [ - -149.0625, - 64.6875 + -90, + 90 ] ] } @@ -65057,34 +1130,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -169.453125, - 56.953125 + -22.5, + -22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': 'b4p', - 'center': [ - -169.453125, - 56.953125 - ], + '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': [ [ - -170.15625, - 56.25 + -45, + -45 ], [ - -168.75, - 56.25 + 0, + -45 ], [ - -168.75, - 57.65625 + 0, + 0 ], [ - -170.15625, - 57.65625 + -45, + 0 ] ] } @@ -65094,34 +1210,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -118.828125, - 33.046875 + 112.5, + -22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': '9mg', + 'valueLabel': 'Count', + 'count': 6, + 'geohash': 'q', 'center': [ - -118.828125, - 33.046875 + 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': [ [ - -119.53125, - 32.34375 + 90, + -45 ], [ - -118.125, - 32.34375 + 135, + -45 ], [ - -118.125, - 33.75 + 135, + 0 ], [ - -119.53125, - 33.75 + 90, + 0 ] ] } @@ -65131,34 +1290,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -153.984375, - 62.578125 + -22.5, + 67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': 'be4', + 'valueLabel': 'Count', + 'count': 6, + 'geohash': 'g', 'center': [ - -153.984375, - 62.578125 + -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': [ [ - -154.6875, - 61.875 + -45, + 45 ], [ - -153.28125, - 61.875 + 0, + 45 ], [ - -153.28125, - 63.28125 + 0, + 90 ], [ - -154.6875, - 63.28125 + -45, + 90 ] ] } @@ -65168,34 +1370,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -162.421875, - 66.796875 + 157.5, + 22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 18, - 'geohash': 'b7u', + 'valueLabel': 'Count', + 'count': 4, + 'geohash': 'x', 'center': [ - -162.421875, - 66.796875 + 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': [ [ - -163.125, - 66.09375 + 135, + 0 ], [ - -161.71875, - 66.09375 + 180, + 0 ], [ - -161.71875, - 67.5 + 180, + 45 ], [ - -163.125, - 67.5 + 135, + 45 ] ] } @@ -65205,34 +1450,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -110.390625, - 35.859375 + -157.5, + 67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': '9w3', + 'valueLabel': 'Count', + 'count': 3, + 'geohash': 'b', 'center': [ - -110.390625, - 35.859375 + -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': [ [ - -111.09375, - 35.15625 + -180, + 45 ], [ - -109.6875, - 35.15625 + -135, + 45 ], [ - -109.6875, - 36.5625 + -135, + 90 ], [ - -111.09375, - 36.5625 + -180, + 90 ] ] } @@ -65242,71 +1530,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -76.640625, - 44.296875 + 157.5, + 67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 20, - 'geohash': 'drc', + 'valueLabel': 'Count', + 'count': 2, + 'geohash': 'z', 'center': [ - -76.640625, - 44.296875 + 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': [ [ - -77.34375, - 43.59375 - ], - [ - -75.9375, - 43.59375 - ], - [ - -75.9375, + 135, 45 ], [ - -77.34375, + 180, 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 + 180, + 90 ], [ - -91.40625, - 49.21875 + 135, + 90 ] ] } @@ -65316,34 +1610,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -134.296875, - 55.546875 + -67.5, + -67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': 'c1b', + 'valueLabel': 'Count', + 'count': 2, + 'geohash': '4', 'center': [ - -134.296875, - 55.546875 + -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': [ [ - -135, - 54.84375 + -90, + -90 ], [ - -133.59375, - 54.84375 + -45, + -90 ], [ - -133.59375, - 56.25 + -45, + -45 ], [ - -135, - 56.25 + -90, + -45 ] ] } @@ -65353,34 +1690,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -162.421875, - 68.203125 + -22.5, + -67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 10, - 'geohash': 'bkh', + 'valueLabel': 'Count', + 'count': 1, + 'geohash': '5', 'center': [ - -162.421875, - 68.203125 + -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': [ [ - -163.125, - 67.5 + -45, + -90 ], [ - -161.71875, - 67.5 + 0, + -90 ], [ - -161.71875, - 68.90625 + 0, + -45 ], [ - -163.125, - 68.90625 + -45, + -45 ] ] } @@ -65390,71 +1770,172 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -166.640625, - 66.796875 + -112.5, + -22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 16, - 'geohash': 'b7c', + 'valueLabel': 'Count', + 'count': 1, + 'geohash': '3', 'center': [ - -166.640625, - 66.796875 + -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': [ [ - -167.34375, - 66.09375 + -135, + -45 ], [ - -165.9375, - 66.09375 + -90, + -45 ], [ - -165.9375, - 67.5 + -90, + 0 ], [ - -167.34375, - 67.5 + -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': [ - -100.546875, - 31.640625 + -67.5, + -22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 8, - 'geohash': '9v8', + 'valueLabel': 'Count', + 'count': 31, + 'geohash': '6', 'center': [ - -100.546875, - 31.640625 + -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': [ [ - -101.25, - 30.9375 + -90, + -45 ], [ - -99.84375, - 30.9375 + -45, + -45 ], [ - -99.84375, - 32.34375 + -45, + 0 ], [ - -101.25, - 32.34375 + -90, + 0 ] ] } @@ -65464,34 +1945,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -151.171875, - 62.578125 + 22.5, + 22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': 'beh', + 'valueLabel': 'Count', + 'count': 30, + 'geohash': 's', 'center': [ - -151.171875, - 62.578125 + 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': [ [ - -151.875, - 61.875 + 0, + 0 ], [ - -150.46875, - 61.875 + 45, + 0 ], [ - -150.46875, - 63.28125 + 45, + 45 ], [ - -151.875, - 63.28125 + 0, + 45 ] ] } @@ -65501,34 +2025,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -161.015625, - 59.765625 + 112.5, + 22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 8, - 'geohash': 'b6t', + 'valueLabel': 'Count', + 'count': 29, + 'geohash': 'w', 'center': [ - -161.015625, - 59.765625 + 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': [ [ - -161.71875, - 59.0625 + 90, + 0 ], [ - -160.3125, - 59.0625 + 135, + 0 ], [ - -160.3125, - 60.46875 + 135, + 45 ], [ - -161.71875, - 60.46875 + 90, + 45 ] ] } @@ -65538,33 +2105,76 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -118.828125, - 44.296875 + -67.5, + 22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': '9rg', + 'valueLabel': 'Count', + 'count': 28, + 'geohash': 'd', 'center': [ - -118.828125, - 44.296875 + -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': [ [ - -119.53125, - 43.59375 + -90, + 0 ], [ - -118.125, - 43.59375 + -45, + 0 ], [ - -118.125, + -45, 45 ], [ - -119.53125, + -90, 45 ] ] @@ -65575,33 +2185,76 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -120.234375, - 44.296875 + 67.5, + 22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': '9rf', + 'valueLabel': 'Count', + 'count': 25, + 'geohash': 't', 'center': [ - -120.234375, - 44.296875 + 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': [ [ - -120.9375, - 43.59375 + 45, + 0 ], [ - -119.53125, - 43.59375 + 90, + 0 ], [ - -119.53125, + 90, 45 ], [ - -120.9375, + 45, 45 ] ] @@ -65612,34 +2265,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -151.171875, - 68.203125 + 22.5, + -22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 14, - 'geohash': 'bsh', + 'valueLabel': 'Count', + 'count': 24, + 'geohash': 'k', 'center': [ - -151.171875, - 68.203125 + 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': [ [ - -151.875, - 67.5 + 0, + -45 ], [ - -150.46875, - 67.5 + 45, + -45 ], [ - -150.46875, - 68.90625 + 45, + 0 ], [ - -151.875, - 68.90625 + 0, + 0 ] ] } @@ -65649,34 +2345,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -151.171875, - 65.390625 + 22.5, + 67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'bes', + 'valueLabel': 'Count', + 'count': 20, + 'geohash': 'u', 'center': [ - -151.171875, - 65.390625 + 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': [ [ - -151.875, - 64.6875 + 0, + 45 ], [ - -150.46875, - 64.6875 + 45, + 45 ], [ - -150.46875, - 66.09375 + 45, + 90 ], [ - -151.875, - 66.09375 + 0, + 90 ] ] } @@ -65686,71 +2425,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -158.203125, - 63.984375 + -112.5, + 22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', + 'valueLabel': 'Count', '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 - ], + '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': [ [ - -147.65625, - 60.46875 + -135, + 0 ], [ - -146.25, - 60.46875 + -90, + 0 ], [ - -146.25, - 61.875 + -90, + 45 ], [ - -147.65625, - 61.875 + -135, + 45 ] ] } @@ -65760,34 +2505,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -158.203125, - 66.796875 + 67.5, + 67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 8, - 'geohash': 'b7z', + 'valueLabel': 'Count', + 'count': 14, + 'geohash': 'v', 'center': [ - -158.203125, - 66.796875 + 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': [ [ - -158.90625, - 66.09375 + 45, + 45 ], [ - -157.5, - 66.09375 + 90, + 45 ], [ - -157.5, - 67.5 + 90, + 90 ], [ - -158.90625, - 67.5 + 45, + 90 ] ] } @@ -65797,34 +2585,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -153.984375, - 65.390625 + -22.5, + 22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': 'bed', + 'valueLabel': 'Count', + 'count': 11, + 'geohash': 'e', 'center': [ - -153.984375, - 65.390625 + -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': [ [ - -154.6875, - 64.6875 + -45, + 0 ], [ - -153.28125, - 64.6875 + 0, + 0 ], [ - -153.28125, - 66.09375 + 0, + 45 ], [ - -154.6875, - 66.09375 + -45, + 45 ] ] } @@ -65834,34 +2665,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -173.671875, - 52.734375 + 157.5, + -22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'b1k', - 'center': [ - -173.671875, - 52.734375 - ], + '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': [ [ - -174.375, - 52.03125 + 135, + -45 ], [ - -172.96875, - 52.03125 + 180, + -45 ], [ - -172.96875, - 53.4375 + 180, + 0 ], [ - -174.375, - 53.4375 + 135, + 0 ] ] } @@ -65871,34 +2745,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -82.265625, - 24.609375 + 112.5, + 67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': 'dhm', + 'valueLabel': 'Count', + 'count': 6, + 'geohash': 'y', 'center': [ - -82.265625, - 24.609375 + 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': [ [ - -82.96875, - 23.90625 + 90, + 45 ], [ - -81.5625, - 23.90625 + 135, + 45 ], [ - -81.5625, - 25.3125 + 135, + 90 ], [ - -82.96875, - 25.3125 + 90, + 90 ] ] } @@ -65908,34 +2825,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -148.359375, - 65.390625 + -67.5, + 67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'bew', + 'valueLabel': 'Count', + 'count': 6, + 'geohash': 'f', 'center': [ - -148.359375, - 65.390625 + -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': [ [ - -149.0625, - 64.6875 + -90, + 45 ], [ - -147.65625, - 64.6875 + -45, + 45 ], [ - -147.65625, - 66.09375 + -45, + 90 ], [ - -149.0625, - 66.09375 + -90, + 90 ] ] } @@ -65945,34 +2905,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -124.453125, - 38.671875 + -22.5, + 67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 15, - 'geohash': '9nz', + 'valueLabel': 'Count', + 'count': 5, + 'geohash': 'g', 'center': [ - -124.453125, - 38.671875 + -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': [ [ - -125.15625, - 37.96875 + -45, + 45 ], [ - -123.75, - 37.96875 + 0, + 45 ], [ - -123.75, - 39.375 + 0, + 90 ], [ - -125.15625, - 39.375 + -45, + 90 ] ] } @@ -65982,34 +2985,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -141.328125, - 65.390625 + -112.5, + 67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 12, - 'geohash': 'bge', + 'valueLabel': 'Count', + 'count': 5, + 'geohash': 'c', 'center': [ - -141.328125, - 65.390625 + -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': [ [ - -142.03125, - 64.6875 + -135, + 45 ], [ - -140.625, - 64.6875 + -90, + 45 ], [ - -140.625, - 66.09375 + -90, + 90 ], [ - -142.03125, - 66.09375 + -135, + 90 ] ] } @@ -66019,34 +3065,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -152.578125, - 66.796875 + -157.5, + 67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 9, - 'geohash': 'beg', + 'valueLabel': 'Count', + 'count': 4, + 'geohash': 'b', 'center': [ - -152.578125, - 66.796875 + -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': [ [ - -153.28125, - 66.09375 + -180, + 45 ], [ - -151.875, - 66.09375 + -135, + 45 ], [ - -151.875, - 67.5 + -135, + 90 ], [ - -153.28125, - 67.5 + -180, + 90 ] ] } @@ -66056,34 +3145,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -155.390625, - 65.390625 + 112.5, + -22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 17, - 'geohash': 'be9', + 'valueLabel': 'Count', + 'count': 3, + 'geohash': 'q', 'center': [ - -155.390625, - 65.390625 + 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': [ [ - -156.09375, - 64.6875 + 90, + -45 ], [ - -154.6875, - 64.6875 + 135, + -45 ], [ - -154.6875, - 66.09375 + 135, + 0 ], [ - -156.09375, - 66.09375 + 90, + 0 ] ] } @@ -66093,34 +3225,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -162.421875, - 62.578125 + -67.5, + -67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 13, - 'geohash': 'b7h', + 'valueLabel': 'Count', + 'count': 2, + 'geohash': '4', 'center': [ - -162.421875, - 62.578125 + -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': [ [ - -163.125, - 61.875 + -90, + -90 ], [ - -161.71875, - 61.875 + -45, + -90 ], [ - -161.71875, - 63.28125 + -45, + -45 ], [ - -163.125, - 63.28125 + -90, + -45 ] ] } @@ -66130,34 +3305,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -80.859375, - 24.609375 + 157.5, + 67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 8, - 'geohash': 'dhq', + 'valueLabel': 'Count', + 'count': 1, + 'geohash': 'z', 'center': [ - -80.859375, - 24.609375 + 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': [ [ - -81.5625, - 23.90625 + 135, + 45 ], [ - -80.15625, - 23.90625 + 180, + 45 ], [ - -80.15625, - 25.3125 + 180, + 90 ], [ - -81.5625, - 25.3125 + 135, + 90 ] ] } @@ -66167,34 +3385,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -130.078125, - 55.546875 + 157.5, + 22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 10, - 'geohash': 'c1g', + 'valueLabel': 'Count', + 'count': 1, + 'geohash': 'x', 'center': [ - -130.078125, - 55.546875 + 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': [ [ - -130.78125, - 54.84375 + 135, + 0 ], [ - -129.375, - 54.84375 + 180, + 0 ], [ - -129.375, - 56.25 + 180, + 45 ], [ - -130.78125, - 56.25 + 135, + 45 ] ] } @@ -66204,34 +3465,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -110.390625, - 33.046875 + 157.5, + -67.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 11, - 'geohash': '9tc', + 'valueLabel': 'Count', + 'count': 1, + 'geohash': 'p', 'center': [ - -110.390625, - 33.046875 + 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': [ [ - -111.09375, - 32.34375 + 135, + -90 ], [ - -109.6875, - 32.34375 + 180, + -90 ], [ - -109.6875, - 33.75 + 180, + -45 ], [ - -111.09375, - 33.75 + 135, + -45 ] ] } @@ -66241,34 +3545,77 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -75.234375, - 37.265625 + 67.5, + -22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 8, - 'geohash': 'dqd', + 'valueLabel': 'Count', + 'count': 1, + 'geohash': 'm', 'center': [ - -75.234375, - 37.265625 + 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': [ [ - -75.9375, - 36.5625 + 45, + -45 ], [ - -74.53125, - 36.5625 + 90, + -45 ], [ - -74.53125, - 37.96875 + 90, + 0 ], [ - -75.9375, - 37.96875 + 45, + 0 ] ] } @@ -66278,43 +3625,94 @@ define(function () { 'geometry': { 'type': 'Point', 'coordinates': [ - -163.828125, - 55.546875 + -22.5, + -22.5 ] }, 'properties': { - 'valueLabel': 'Count of documents', - 'count': 7, - 'geohash': 'b3g', + 'valueLabel': 'Count', + 'count': 1, + 'geohash': '7', 'center': [ - -163.828125, - 55.546875 + -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': [ [ - -164.53125, - 54.84375 + -45, + -45 ], [ - -163.125, - 54.84375 + 0, + -45 ], [ - -163.125, - 56.25 + 0, + 0 ], [ - -164.53125, - 56.25 + -45, + 0 ] ] } } - ] - } + ], + 'properties': { + 'label': 'Top 2 geo.dest: IN', + 'length': 23, + 'min': 1, + 'max': 31, + 'precision': 1 + } + }, + 'label': 'Top 2 geo.dest: IN' } ], - 'hits': 171451 + '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..68c562db99f44f --- /dev/null +++ b/test/unit/specs/vislib/visualizations/tile_map.js @@ -0,0 +1,100 @@ +define(function (require) { + var angular = require('angular'); + var _ = require('lodash'); + var $ = require('jquery'); + 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']; + var mapTypes = ['Scaled Circle Markers', 'Shaded Circle Markers', 'Shaded Geohash Grid', 'Pins']; + + angular.module('TileMapFactory', ['kibana']); + + dataArray.forEach(function (data, i) { + + 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 () { + 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; + }); + + 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); + }); + }); + + 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, 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