com.conveyal.gtfs.validator.model.Priority Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gtfs-lib Show documentation
Show all versions of gtfs-lib Show documentation
A library to load and index GTFS feeds of arbitrary size using disk-backed storage
package com.conveyal.gtfs.validator.model;
public enum Priority {
/**
* Something that is likely to break routing results,
* e.g. stop times out of sequence or high-speed travel
*/
HIGH,
/**
* Something that is likely to break display, but still give accurate routing results,
* e.g. broken shapes or route long name containing route short name.
*/
MEDIUM,
/**
* Something that will not affect user experience but should be corrected as time permits,
* e.g. unused stops.
*/
LOW,
/**
* An error for which we do not have a priority
*/
UNKNOWN
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy