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());
context.setPlanet(PlanetName.SUN, sun);
planetPublisher.publish(PlanetName.SUN);