// sun
SunCalc sunCalc = new SunCalc();
Sun sun = sunCalc.getSunInfo(now, context.getConfig().getLatitude(), context.getConfig().getLongitude());
sunCalc.setSunPosition(now, context.getConfig().getLatitude(), context.getConfig().getLongitude(), sun);
SunZodiacCalc zodiacCalc = new SunZodiacCalc();
sun.setZodiac(zodiacCalc.getZodiac(now));
SeasonCalc seasonCalc = new SeasonCalc();
sun.setSeason(seasonCalc.getSeason(now, context.getConfig().getLatitude()));
context.getJobScheduler().scheduleSeasonJob(sun.getSeason());