/**
  * Format: 51 deg 0' 31.27" N, 13 deg 52' 12.32" E
  *
  * @return string
  */
 public final function formatExifLike() : string
 {
     if (!$this->isValid()) {
         return '';
     }
     $res = $this->Latitude->formatExifLike() . ', ' . $this->Longitude->formatExifLike();
     return $res;
 }