/**
  * @param $entryId
  * @param $locale
  * @return BaseModel|SproutSeo_GeographicMetaFieldModel
  */
 public function getGeographicMetaFieldByEntryId($entryId, $locale)
 {
     $query = craft()->db->createCommand()->select('region, placename, longitude, latitude')->from('sproutseo_overrides')->where('entryId = :entryId', array(':entryId' => $entryId))->andWhere('locale = :locale', array(':locale' => $locale))->queryRow();
     if (isset($query)) {
         return SproutSeo_GeographicMetaFieldModel::populateModel($query);
     }
     return new SproutSeo_GeographicMetaFieldModel();
 }