Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add code to convert link / node tables into highway network #3

Open
gregmacfarlane opened this issue Dec 10, 2020 · 1 comment
Open

Comments

@gregmacfarlane
Copy link
Member

This is work I have locally for matsim; will move into the BEAM codebase

@gregmacfarlane
Copy link
Member Author

Completed in 0e7669c; The main method takes three arguments:

  • a path to a nodes CSV table with three columns: id, x, y in lat/long.
  • a path to a links CSV table with the following fields:
    /**
     * Read the network links information
     * @param linksFile A csv file containing the following fields:
     *                  - link_id,
     *                  - Oneway,
     *                  - Speed (free flow),
     *                  - DriveTime (minutes)
     *                  - Length_Miles (miles)
     *                  - RoadClass (text)
     *                  - AADT (count)
     *                  - start_node
     *                  - end_node
     *                  - ft (hcm definition)
     *                  - lanes
     *                  - sl (miles per hour)
     *                  - med median treatment
     *                  - terrain
     *                  - capacity (vehicles / hr)
     */
  • A coordinate projection system for the output highway network, e.g. EPSG:26912 for NAD83 Utah North (m).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant