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

ToLng() public static method

public static ToLng ( double lng ) : string
lng double
return string
        public static string ToLng(double lng) => $"{Math.Abs(lng):F4}° {(lng < 0 ? "W" : "E")}";
    }