Method | Description | |
---|---|---|
DegreesMinutesSeconds ( bool isPositive, uint degrees, uint minutes, double seconds ) : System |
Constructs a new instance of DegreesMinutesSeconds
|
|
DegreesMinutesSeconds ( double decimalDegrees ) : System |
Constructs a new instance of DegreesMinutesSeconds converting from decimal degrees
|
|
ToDecimalDegrees ( ) : double |
Converts the decimal, minutes, seconds coordinate to decimal degrees
|
|
ToString ( ) : string |
Converts the instance to a string in format: D M' S"
|
public DegreesMinutesSeconds ( bool isPositive, uint degrees, uint minutes, double seconds ) : System | ||
isPositive | bool | True if the coordinates are positive coordinate, false if they /// are negative coordinates. |
degrees | uint | Degrees unit of the coordinate |
minutes | uint | Minutes unit of the coordinate |
seconds | double | Seconds unit of the coordinate. This should be a positive value. |
return | System |
public DegreesMinutesSeconds ( double decimalDegrees ) : System | ||
decimalDegrees | double | Initial value as decimal degrees |
return | System |