lat method
Converts a degree value deg to a String representation (deg/min/sec) of
the latitude.
Throws FormatException if a string representation cannot be formatted.
Implementation
String lat(double deg) {
final buf = StringBuffer();
writeLat(buf, deg);
return buf.toString();
}