cfinnegan12 / ATCOcifParser

Easily parse ATCO standard cif files that contain scheduling data for public transportation networks into C# objects.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ATCOcifParser

by Ciaran Finnegan

The ATCO.cif format is a standard used widely by the transport industry for data on routing and scheduling. This library is used to read and parse ATCO-cif files into useful c# objects.

Usage

ATCOcifParser

This is the class that will hold the parsed data from the cif file. The constructor has one parameter, filepath, which should be a string presenting the path to cif file you wish to parse.

Example:

using ATCOcifParser;
.
.
.
  ATCOcifParser parser = new ATCOcifParser("PATH\TO\FILE.cif");

The ATCOcifParser has the following properties:

  • Journeys
  • Locations
  • Routes

which represent their cif standard items

About

Easily parse ATCO standard cif files that contain scheduling data for public transportation networks into C# objects.

License:GNU General Public License v3.0


Languages

Language:C# 100.0%