Giter Club home page Giter Club logo

transit_model's Introduction

transit_model Build Status

transit_model is a Rust crate managing transit data by implementing the NTFS model v0.9.1 (used in navitia). See the section NTFS: Level of Support for more details about the level of support of the NTFS standard.

This repository also provides :

Compile

cargo build --release

Compile for KV1

The KV1 format needs a additional dependency called PROJ which allows the transformation of localization coordinates. crates.io provides a proj crate which is a binding to the C library (version 6.1.0). This means you need PROJ version 6.1.0 installed on your system. See PROJ installation instructions.

PROJ is configured as a feature of the transit_model crate. Once PROJ is installed on your machine, you need a few more dependencies for building transit_model.

apt install -y clang libssl-dev
cargo build --features=proj

Now, you should be able to use the converter kv12ntfs. Enjoy!

Using PROJ

If you want to use PROJ in your code, you can if you activate the proj feature (cargo build --features=proj). Then don't forget to protect your code with #[cfg(feature="proj")].

Converting from GTFS to NTFS

NTFS needs a Dataset and a Contributor. Default ones are provided by the command but you can pass a json file that contains some information for creating a Dataset and a Contributor as explained in the documentation.

{
    "contributor": {
        "contributor_id" : "your_contributor_id",
        "contributor_name" : "your_contributor_name",
        "contributor_license" : "your_contributor_license",
        "contributor_website" : "your_contributor_website"
    },
    "dataset": {
        "dataset_id" : "your_dataset_id",
        "dataset_desc" : "optional_dataset_desc",
        "dataset_system" : "optional_dataset_system"
    }
}

Usage

target/release/gtfs2ntfs -h

Example

target/release/gtfs2ntfs -i path/to/input/directory -c path/to/config.json -p PREFIX -o path/to/output/directory

Tests

cargo test

NTFS: Level of Support

transit_model is partially supporting v0.9.1 of NTFS (see CHANGELOG in French). From the standard, some of the functionalities are not fully supported:

  • Management of pathways introduced in version v0.8 is not supported
  • No support for all periodic description (files grid_calendars.txt, grid_exception_dates.txt, grid_periods.txt and grid_rel_calendar_line.txt)
  • No support for Line Groups (files line_groups.txt and line_group_links.txt)

License

Licensed under GNU General Public License v3.0

transit_model's People

Contributors

antoine-de avatar arnaudoggy avatar benoit-bst avatar datanel avatar kinnou02 avatar nberard avatar patochectp avatar prhod avatar texitoi avatar tristramg avatar vpapailio avatar woshilapin avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.