public void update() {
    System.out.println("updater called " + cnt);
    if (cnt == 0) {
      init();
    }

    saveWeatherInfo(collectWeatherInfo());
    cnt++;
  }