Exemplo n.º 1
0
  public static int getTimeBinIndex(double time, double binSizeInSeconds) {

    time = GeneralLib.projectTimeWithin24Hours(time);

    return Math.round((float) Math.floor(time / binSizeInSeconds));
  }