In NodaTime, how do you find the long form name of a timezone given the tz timezone id?
For example, if I supply \"America/Los_Angeles\", I should get \"Pacific Stan
TZDB itself doesn't hold descriptions for timezones: the timezone with ID America/Los_Angeles
simply holds transitions with names such as "PDT" and "PST". So from that point of view, the data simply isn't there.
That said, you can get the Windows timezone IDs that map to a given TZDB zone (originally from the CLDR windowsZones.xml data), and Windows generally does use names like "Pacific Standard Time" for its zone IDs.
e.g.
var source = TzdbDateTimeZoneSource.Default;
var windowsIds = (from item in source.WindowsMapping.PrimaryMapping
where item.Value == "America/Los_Angeles"
select item.Key).ToList();
However, there are some caveats with this approach:
Europe/Vienna
being an example of a TZDB zone that no Windows zone ID uses), but there's no reason in theory that you couldn't find two or more Windows zone IDs mapping to the same TZDB zone.Europe/London
is mapped from a Windows zone called "GMT Standard Time", which isn't a great string to show to a user.However, for what you're doing, this might be acceptable.