All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.conveyal.gtfs.validator.FeedValidator Maven / Gradle / Ivy

Go to download

A library to load and index GTFS feeds of arbitrary size using disk-backed storage

There is a newer version: 6.2.0
Show newest version
package com.conveyal.gtfs.validator;

import com.conveyal.gtfs.error.SQLErrorStorage;
import com.conveyal.gtfs.loader.Feed;

/**
 * Created by abyrd on 2017-04-19
 */
public abstract class FeedValidator extends Validator {

    public FeedValidator (Feed feed, SQLErrorStorage errorStorage) {
        super(feed, errorStorage);
    }

    /** The main extension point. */
    public abstract void validate ();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy