Function marlu::sexagesimal::degrees_to_sexagesimal_dms

source ·
pub fn degrees_to_sexagesimal_dms(f: f64) -> String
Expand description

Convert a number in degrees to a sexagesimal-formatted string in “degrees minutes seconds”.

§Examples

let dms = degrees_to_sexagesimal_dms(-165.0169619);
assert_eq!(dms, "-165d01m01.0628s");