Skip to content

Commit d0f849c

Browse files
committed
fix(validator): fix time zone error message
re #167
1 parent 79ec9dd commit d0f849c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/conveyal/gtfs/error/NewGTFSErrorType.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public enum NewGTFSErrorType {
3535
TABLE_IN_SUBDIRECTORY(Priority.HIGH, "Rather than being at the root of the zip file, a table was nested in a subdirectory."),
3636
TABLE_MISSING_COLUMN_HEADERS(Priority.HIGH, "Table is missing column headers."),
3737
TABLE_TOO_LONG(Priority.MEDIUM, "Table is too long to record line numbers with a 32-bit integer, overflow will occur."),
38-
TIME_ZONE_FORMAT(Priority.MEDIUM, "Time zone format should be X."),
38+
TIME_ZONE_FORMAT(Priority.MEDIUM, "Time zone format should match value from the Time Zone Database https://en.wikipedia.org/wiki/List_of_tz_database_time_zones."),
3939
REQUIRED_TABLE_EMPTY(Priority.MEDIUM, "This table is required by the GTFS specification but is empty."),
4040
FEED_TRAVEL_TIMES_ROUNDED(Priority.LOW, "All travel times in the feed are rounded to the minute, which may cause unexpected results in routing applications where travel times are zero."),
4141
ROUTE_DESCRIPTION_SAME_AS_NAME(Priority.LOW, "The description of a route is identical to its name, so does not add any information."),

0 commit comments

Comments
 (0)