/**
  * @param Piwik_ArchiveProcessing_Day $archiveProcessing
  */
 protected function archiveDayAggregateVisits($archiveProcessing)
 {
     $labelSQL = "log_visit.location_country";
     $this->interestByCountry = $archiveProcessing->getArrayInterestForLabel($labelSQL);
     $labelSQL = "log_visit.location_continent";
     $this->interestByContinent = $archiveProcessing->getArrayInterestForLabel($labelSQL);
 }