toDegreesMinutesSeconds() 공개 메소드

Returns a degrees/minutes/seconds representation of the coordinate
public toDegreesMinutesSeconds ( ) : ValueObjects\StringLiteral\StringLiteral
리턴 ValueObjects\StringLiteral\StringLiteral
예제 #1
0
 public function testToDegreesMinutesSeconds()
 {
     $dms = new StringLiteral('40°49′45″N, 16°33′21″E');
     $this->assertTrue($this->coordinate->toDegreesMinutesSeconds()->sameValueAs($dms));
 }