Giter Club home page Giter Club logo

Comments (3)

jamespfennell avatar jamespfennell commented on August 16, 2024 1

Ahhhhh the root cause is pretty subtle. When we're parsing entities we de-duplicate vehicles using a map keyed on VehicleID whose current definition is:

type VehicleID struct {
	ID           *string
	Label        *string
	LicencePlate *string
}

The problem is that even if the values of the ID fields match after following the pointer, Go considers them distinct from a hashing perspective because the pointers themselves are different. I think the simplest solution would be to remove the pointers:

type VehicleID struct {
	ID           string
	Label        string
	LicencePlate string
}

and interpret a field being "" as equivalent to the field not being provided in the GTFS realtime feed. In theory the feed could have Label: &"" but I think this edge case is not a big deal.

from gtfs.

jamespfennell avatar jamespfennell commented on August 16, 2024

Started working on this in https://github.com/jamespfennell/gtfs/tree/duplicate-vehicles

from gtfs.

cedarbaum avatar cedarbaum commented on August 16, 2024

Great catch, thanks so much for fixing this!

from gtfs.

Related Issues (6)

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.