AcTools.Utils.Helpers.GeoTagsEntry.ToLat C# (CSharp) Method

ToLat() public static method

public static ToLat ( double lat ) : string
lat double
return string
        public static string ToLat(double lat) => $"{Math.Abs(lat):F4}° {(lat < 0 ? "S" : "N")}";