Location\Formatter\Coordinate\DecimalMinutes::getLatSuffix PHP Method

getLatSuffix() protected method

protected getLatSuffix ( $lat ) : string
$lat
return string
    protected function getLatSuffix($lat)
    {
        if (!$this->useCardinalLetters) {
            return '';
        }
        if ($lat >= 0) {
            return ' N';
        }
        return ' S';
    }