-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
loadGTFS doesn't work. #17
Comments
I fairly quick seems to indicate it's working with that file: HKI_7 -> LR_1 today at 6am shows: 06:55:00, 09:07:00, HKI_7-LR_1 What inputs are you using and what output are you getting? |
Then it is my fault, I wasn't even able to find where to put inputs. I am quite inexperienced with js. I pasted the first readme example, and it seems to run, but with no output. Putting a console.log after the line with loadGTFS doesn't log anything. it seems that I absolutely just don't know what I am doing. |
With even more testing, this is definitely a bug with const fs = require('fs');
const gtfs = require('gtfs-stream')
fs.createReadStream("gtfs.zip")
.pipe(gtfs())
.on('data', (entity) => {
//console.log(entity)
})
.on('end', () => {
console.log('end')
}) And the program is exited without 'end' ever being logged. Heading over to that repo to file an issue now. |
I have the same issue on planarnetwork/gtfsmerge#11 - can you raise a reproducible error on gtfs-stream? |
Doing some more poking around, it seems like |
There is a difference between finish and end but I can never remember what it is :) It was definitely working with "end" so I wonder if there is an error that's not being surfaced and then it's closing with "finish". |
Yeah that's true. Lemme add in a listener for errors really quick then. |
Hmmmm, no errors seem to be passed down. Something is going wrong somewhere but nothing is logging that. |
Submitted an issue to gtfs-stream staeco/gtfs-stream#7 Now, there might be further issues with this, as poking through the code, it seems like the 4th item passed to |
Any clue what's wrong in RaptorAlgorithmFactory.create()? I'm coming to same conclusion as @piemadd, any tips how to fix this? |
Due to my observations calendars are not correctly processed, all calendar data is parsed into dates, hence broken matching for services, which results in further abominations. I will submit PR soon. |
It is mainly optional, which I assume, meant to accelerate search speed. |
Wow nice @matjamr thank you, want to collaborate on fork/pr to resolve this issue? |
Me and @kishieel are currently working on this maybe you want to join? |
So I've tried the readme examples, but it gets stuck on loadGTFS. The gtfs file I am using is this one from https://www.digitraffic.fi/en/railway-traffic/#gtfs.
The text was updated successfully, but these errors were encountered: