コード例 #1
0
ファイル: AngleTest.php プロジェクト: markbaker/phpgeodetic
 public function testToDMS()
 {
     $angleObject = new Angle(2, Angle::RADIANS);
     $angleValue = $angleObject->toDMS(2);
     $this->assertEquals("114°35'29.61\"", $angleValue);
 }