Issue 11896
Dataset, publisher and country density maps are counted incorrectly
11896
Reporter: trobertson
Assignee: trobertson
Type: Bug
Summary: Dataset, publisher and country density maps are counted incorrectly
Priority: Critical
Resolution: Invalid
Status: Closed
Created: 2012-09-14 08:37:13.847
Updated: 2013-12-05 11:05:08.679
Resolved: 2012-09-14 10:29:10.856
Description: Please see http://dev.gbif.org/issues/browse/MET-11 to understand the problem.
The same scenario occurs in the non taxa density maps.
Solutions are the same (could have 1 cube for taxa, and 1 for other counts for example).
]]>
Author: trobertson@gbif.org
Created: 2012-09-14 10:29:10.888
Updated: 2012-09-14 10:29:10.888
This was reported in error.
The density cube has a single rollup, does not make use of any optional dimensions and the is a single write for the full address.
{{{code}
List> dimensions = ImmutableList.>of(TYPE, KEY, ZOOM, TILE_X, TILE_Y);
List rollups = ImmutableList.of(new Rollup(TYPE, KEY, ZOOM, TILE_X, TILE_Y));
return new DataCube(dimensions, rollups);
{code}}}