Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.12 KB

README.md

File metadata and controls

37 lines (28 loc) · 1.12 KB

.NET GTFS-realtime Language Bindings

NuGet version

Provides .NET classes generated from the GTFS Realtime Protocol Buffer specification. These classes will allow you to parse a binary Protocol Buffer GTFS-realtime data feed into C# objects.

Add the Dependency

To use the gtfs-realtime-bindings classes in your own project, you need to first install the module from the NuGet repository.

Install-Package GtfsRealtimeBindings

Example Code

The following code snippet demonstrates downloading a GTFS-realtime data feed from a particular URL, parsing it as a FeedMessage (the root type of the GTFS-realtime schema), and iterating over the results.

using ProtoBuf;
using TransitRealtime;

var client = new HttpClient();
using var stream = await client.GetStreamAsync("URL OF YOUR GTFS-REALTIME SOURCE GOES HERE");
var feed = Serializer.Deserialize<FeedMessage>(stream);
foreach (var entity in feed.Entities)
{
  ...
}