API.WebClients.TransitClient.CreatePlatformTags C# (CSharp) Method

CreatePlatformTags() public method

Maps a platform number (5-digit number shown on real bus stop signs) to a platform tag (3-digit internal Connexionz identifier).
public CreatePlatformTags ( ) : int>.Dictionary
return int>.Dictionary
        public Dictionary<int, int> CreatePlatformTags() =>
            ConnexionzClient.Platforms.Value.ToDictionary(p => p.PlatformNo, p => p.PlatformTag);