On 21 August 2015 at 15:32, vaedama <sudheer.u...@gmail.com> wrote: > presentDays: [ [01 15 366 366], [13, 16, 366, 366], [19, 25, 366, 366] ]
This does not look right. Your January 1 2015 should map to a single number, representing 'X' in the coordinates. Your January 15 2015 should map to another number, representing Y in the coordinates. That's why the world bounds is 0-366 (366 being the maximum number of days in the year, ignoring specific year). So, if you ignore a year, January 1 is '1', January 15 is '15, February 1 is '32', etc. If you don't ignore year, you need to factor it in somehow, perhaps as a day offset from a particular start position, e.g. 2010. You would need to do some date Math during indexing, either in the client, or in the UpdateRequestProcessor Regards, Alex.