是否有为每个国家/地区提供默认时区的程序或表格?
是的,美国、加拿大和俄罗斯有多个时区。(我认为每个其他国家都只有一个。)但最好从最有可能的国家开始,而不是仅仅提供从 GMT 开始的列表。
最好在 C# 中,但我会接受它并转换为 C#。
正如问题评论中所确定的,您将无法为每个国家/地区获得一个时区。拥有多个时区的国家的例子太多了。
您可以做的是将标准IANA/Olson 时区列表过滤到特定国家/地区可用的时区。
在 C# 中执行此操作的一种方法是使用Noda Time:
IEnumerable<string> zoneIds = TzdbDateTimeZoneSource.Default.ZoneLocations
.Where(x => x.CountryCode == countryCode)
.Select(x => x.ZoneId);
传递两位数的 ISO-3166 国家代码,例如"AU"
澳大利亚。结果是:
"Australia/Lord_Howe",
"Australia/Hobart",
"Australia/Currie",
"Australia/Melbourne",
"Australia/Sydney",
"Australia/Broken_Hill",
"Australia/Brisbane",
"Australia/Lindeman",
"Australia/Adelaide",
"Australia/Darwin",
"Australia/Perth",
"Australia/Eucla"
如果出于某种原因您想要可以与TimeZoneInfo
对象一起使用的 Windows 时区标识符,Noda Time 也可以映射这些标识符:
var source = TzdbDateTimeZoneSource.Default;
IEnumerable<string> windowsZoneIds = source.ZoneLocations
.Where(x => x.CountryCode == countryCode)
.Select(tz => source.WindowsMapping.MapZones
.FirstOrDefault(x => x.TzdbIds.Contains(
source.CanonicalIdMap.First(y => y.Value == tz.ZoneId).Key)))
.Where(x => x != null)
.Select(x => x.WindowsId)
.Distinct()
再次呼吁"AU"
澳大利亚返回:
"Tasmania Standard Time",
"AUS Eastern Standard Time",
"Cen. Australia Standard Time",
"E. Australia Standard Time",
"AUS Central Standard Time",
"W. Australia Standard Time"
如果您想知道这些数据有多可靠,国家到 tzid 的映射是 IANA 时区数据库本身的一部分,位于zone.tab文件中。IANA 到 Windows 的映射数据来自Unicode CLDR 补充数据。它没有比这更接近“官方”了。
可能不是您正在寻找的,但试试这个:http: //msdn.microsoft.com/en-us/library/system.timezoneinfo.aspx
要获取特定时区:
TimeZoneInfo tZone = TimeZoneInfo.FindSystemTimeZoneById("E. Australia Standard Time");
要查看可用区域:
ReadOnlyCollection<TimeZoneInfo> zones = TimeZoneInfo.GetSystemTimeZones();
foreach (TimeZoneInfo zone in zones)
{
Console.WriteLine(zone.Id);
}
为了获得 CountryCode -> TimeZoneInfo 映射,我使用了 Matt 的答案(第二个代码片段),但它在很多情况下都不起作用。找到更简单、更可靠的解决方案(使用相同的 Noda 时间): TzdbDateTimeZoneSource.Default.WindowsMapping.MapZones 基本上拥有所有数据。
代码示例:
Dictionary<string, TimeZoneInfo> GetIsoToTimeZoneMapping()
{
var source = TzdbDateTimeZoneSource.Default;
return source.WindowsMapping.MapZones
.GroupBy(z => z.Territory)
.ToDictionary(grp => grp.Key, grp => GetTimeZone(source, grp));
}
TimeZoneInfo GetTimeZone(TzdbDateTimeZoneSource source, IEnumerable<MapZone> territoryLocations)
{
var result = territoryLocations
.Select(l => l.WindowsId)
.Select(TimeZoneInfo.FindSystemTimeZoneById)
//pick timezone with the minimum offset
.Aggregate((tz1, tz2) => tz1.BaseUtcOffset < tz2.BaseUtcOffset ? tz1 : tz2);
return result;
}
最新的 Windows 版本包含%WINDIR%\Globalization\Time Zone\timezoneMapping.xml
将 Olson 映射到 Windows 时区的文件,您可以将其作为常规查询XML
。我不知道,但也许C#
已经有一个可以使用它的类。
当用户首次登录时,我使用了 Microsoft 用于 Windows 的每个国家/地区的默认时区。他们在https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/default-中列出了它们时区。
我还在https://github.com/rahulgi/default-timezones创建了一个脚本,该脚本将该表解析为 JSON 文件。
一些国家有多个时区,例如俄罗斯。
在我的解决方案中,如果您有可用的经度信息,我会使用NodaTime,我会选择该国家/地区的最佳时区。
var countryName = "Russia";
var longitude = 40.332206;
var zones = TzdbDateTimeZoneSource.Default.ZoneLocations.Where(x => x.CountryName == countryName).AsQueryable();
if (!double.IsNaN(longitude))
{
zones = zones.OrderBy(o => this.Distance(o.Latitude, longitude, o.Latitude, o.Longitude, DistanceUnit.Kilometer));
}
var bestZone = zones.FirstOrDefault();
var dateTimeZone = TzdbDateTimeZoneSource.Default.ForId(bestZone.ZoneId);
var newTime = DateTime.UtcNow.AddSeconds(dateTimeZone.MaxOffset.Seconds);
计算地理坐标的距离
public enum DistanceUnit { StatuteMile, Kilometer, NauticalMile };
private double Distance(double lat1, double lon1, double lat2, double lon2, DistanceUnit unit)
{
double rlat1 = Math.PI * lat1 / 180;
double rlat2 = Math.PI * lat2 / 180;
double theta = lon1 - lon2;
double rtheta = Math.PI * theta / 180;
double dist =
Math.Sin(rlat1) * Math.Sin(rlat2) + Math.Cos(rlat1) *
Math.Cos(rlat2) * Math.Cos(rtheta);
dist = Math.Acos(dist);
dist = dist * 180 / Math.PI;
dist = dist * 60 * 1.1515;
switch (unit)
{
case DistanceUnit.Kilometer:
return dist * 1.609344;
case DistanceUnit.NauticalMile:
return dist * 0.8684;
default:
case DistanceUnit.StatuteMile: //Miles
return dist;
}
}