toDecimalMinutes() public method

Returns a decimal minutes representation of the coordinate
public toDecimalMinutes ( ) : ValueObjects\StringLiteral\StringLiteral
return ValueObjects\StringLiteral\StringLiteral
Example #1
0
 public function testToDecimalMinutes()
 {
     $dm = new StringLiteral('40 49.74822N, 16 33.35028E');
     $this->assertTrue($this->coordinate->toDecimalMinutes()->sameValueAs($dm));
 }