No tabular data for GTFS #807
Unanswered
mpaine-act
asked this question in
Q&A
Replies: 2 comments
-
Thanks @mpaine-act! I've created a bug report -- we will investigate |
Beta Was this translation helpful? Give feedback.
0 replies
-
@mpaine-act The reason for the error is the file format mentioned here. I have created a new issue to support GTFS format here. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying to understand why fictionless returns an error trying to extract from GTFS.zip:
`
PS C:\tmp> frictionless validate *
───────────────── Dataset ─────────────────
┏━━━━━━━━━━━━━━━━━┳━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┓
┃ name ┃ type ┃ path ┃ status ┃
┡━━━━━━━━━━━━━━━━━╇━━━━━━╇━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━┩
│ agency │ text │ agency.txt │ VALID │
│ calendar │ text │ calendar.txt │ VALID │
│ calendar_dates │ text │ calendar_dates.txt │ VALID │
│ fare_attributes │ text │ fare_attributes.txt │ VALID │
│ fare_rules │ text │ fare_rules.txt │ VALID │
│ feed_info │ text │ feed_info.txt │ VALID │
│ routes │ text │ routes.txt │ VALID │
│ shapes │ text │ shapes.txt │ VALID │
│ stops │ text │ stops.txt │ VALID │
│ stop_times │ text │ stop_times.txt │ VALID │
│ trips │ text │ trips.txt │ VALID │
└─────────────────┴──────┴─────────────────────┴────────┘
PS C:\tmp> frictionless describe *
───────────────── Dataset ─────────────────
┏━━━━━━━━━━━━━━━━━┳━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┓
┃ name ┃ type ┃ path ┃
┡━━━━━━━━━━━━━━━━━╇━━━━━━╇━━━━━━━━━━━━━━━━━━━━━┩
│ agency │ text │ agency.txt │
│ calendar │ text │ calendar.txt │
│ calendar_dates │ text │ calendar_dates.txt │
│ fare_attributes │ text │ fare_attributes.txt │
│ fare_rules │ text │ fare_rules.txt │
│ feed_info │ text │ feed_info.txt │
│ routes │ text │ routes.txt │
│ shapes │ text │ shapes.txt │
│ stops │ text │ stops.txt │
│ stop_times │ text │ stop_times.txt │
│ trips │ text │ trips.txt │
└─────────────────┴──────┴─────────────────────┘
───────────────── Tables ──────────────────
PS C:\tmp> frictionless extract *
╭─ Error ─────────────────────────────────╮
│ No tabular data have been found in the source │
╰──────────────────────────────────────╯
`
You can see the data I used @ link
Beta Was this translation helpful? Give feedback.
All reactions