You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Based on the Benchmarks class, I modified it a little bit for my own case. Specifically, by using the following values (defined in the Query internal class)
_float lat1 = 34.936015f;
float lon1 = 19.685170f;
long minTime = 1534280400000L;
long maxTime = 1535749199999L;
long t1 = 1534280405000L;
float lat2 = 41.706090f;
float lon2 = 28.240304f;
long t2 = 1535745599000L;
int bits = 6;
int dimensions = 3;_
I get the error java.lang.IllegalArgumentException: ranges must be added in increasing order and without overlap
I suppose that this error has to do with the temporal dimension. But the defined covering time [t1,t2] is in the [minTime, maxTime] interval. Maybe I set something wrong?
Thank you,
Nikos
The text was updated successfully, but these errors were encountered:
Hello David,
Based on the Benchmarks class, I modified it a little bit for my own case. Specifically, by using the following values (defined in the Query internal class)
I get the error java.lang.IllegalArgumentException: ranges must be added in increasing order and without overlap
I suppose that this error has to do with the temporal dimension. But the defined covering time [t1,t2] is in the [minTime, maxTime] interval. Maybe I set something wrong?
Thank you,
Nikos
The text was updated successfully, but these errors were encountered: