GithubHelp home page GithubHelp logo

jonlaing / gtfs-realtime-bindings Goto Github PK

View Code? Open in Web Editor NEW

This project forked from mobilitydata/gtfs-realtime-bindings

0.0 2.0 0.0 272 KB

Language bindings generated from the GTFS-realtime protocol buffer spec for popular languages.

License: Apache License 2.0

JavaScript 100.00%

gtfs-realtime-bindings's Introduction

NOTE: This repo was forked and modified because neither the npm or yarn registries had the latest dependencies, which was causing an issue with React Native.

JavaScript GTFS-realtime Language Bindings

npm version

Provides JavaScript 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 JavaScript objects.

These bindings are designed to be used in the Node.js environment, but with some effort, they can probably be used in other JavaScript environments as well.

We use the ProtBuf.js library for JavaScript Protocol Buffer support.

Add the Dependency

To use the gtfs-realtime-bindings classes in your own project, you need to first install our Node.js npm package:

npm install gtfs-realtime-bindings

Example Code

The following Node.js 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.

var GtfsRealtimeBindings = require('gtfs-realtime-bindings');
var request = require('request');

var requestSettings = {
  method: 'GET',
  url: 'URL OF YOUR GTFS-REALTIME SOURCE GOES HERE',
  encoding: null
};
request(requestSettings, function (error, response, body) {
  if (!error && response.statusCode == 200) {
    var feed = GtfsRealtimeBindings.transit_realtime.FeedMessage.decode(body);
    feed.entity.forEach(function(entity) {
      if (entity.trip_update) {
        console.log(entity.trip_update);
      }
    });
  }
});

For more details on the naming conventions for the Javascript classes generated from the gtfs-realtime.proto, check out the ProtoBuf.js project which we use to handle our Protocol Buffer serialization.

gtfs-realtime-bindings's People

Contributors

bdferris avatar ccarse avatar jonlaing avatar msimav avatar rachm avatar robbiet480 avatar youribonnaffe avatar zherr avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.