You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I figured out the issue - in the config you shared, in the exclude array it is excluding shapes, trips and stop_times - this excludes importing some of the data that GTFS-to-geojson needs to create the GeoJSON.
I published an updated version just how that handles excluding calendar.txt - grab that latest version and update the exclude array in the config and it should work as expected.
Previously, on version 3.2.0, I extracted the data I needed with the config -
"agencies": [
{
"agency_key": "feed_name_stops",
"path": "feed_name.zip",
"exclude": [
"stop_times",
"trips",
"shapes",
"transfers",
"pathways",
"calendar",
"calendar_dates"
]
}
],
"bufferSizeMeters": 400,
"coordinatePrecision": 5,
"outputType": "agency",
"outputFormat": "stops",
"zipOutput": false
}
However, starting from version 3.3.0 and higher, this config returns an empty file.
Please explain why this is so?
The text was updated successfully, but these errors were encountered: