Closed olafveerman closed 4 years ago
There will need to be an extra step to populate the database with the road information (properties and indicator values - data is similar to the one on the VT). The result could also be a series of csv files that are then imported into the db (manually or not).
@danielfdsilva This particular process doesn't deal with the prioritization indicators, purely the road information. Can you document here what basic road information needs to be stored in the database?
Note, tThe original road classification will not be mapped to the OSM highway classification. Instead, we'll use a custom OSRM speed profile so we can stick to the original classification.
@olafveerman The basic road information would be (with example):
"roadId": "N3-T8811",
"type": "national",
"surface": "paved",
"length": 62.8,
"condition": "fair",
"bridges": 4,
"bridgeLength": 2.44,
"culverts": 6,
The basic road network processing was implemented, with minor changes to the above flow.
Start with a Road Network dataset (Shapefile?) and generate:
way_id
indexIn the process:
The pipeline could look like:
cc @danielfdsilva