Location\Formatter\Coordinate\DMS::getLngSuffix PHP Method

getLngSuffix() protected method

protected getLngSuffix ( $lng ) : string
$lng
return string
    protected function getLngSuffix($lng)
    {
        if (!$this->useCardinalLetters) {
            return '';
        }
        if ($lng >= 0) {
            return ' E';
        }
        return ' W';
    }