Files
Table of Contents
output/
├── graphs
│ └── road_network.osm
│ ├── lanes_distribution_length_weights.pdf
│ ├── lanes_distribution.pdf
│ ├── length_distribution.pdf
│ ├── road_type_pie_length_weights.pdf
│ ├── road_type_pie.pdf
│ ├── speed_limit_distribution_length_weights.pdf
│ └── speed_limit_distribution.pdf
├── maps
│ ├── chambery_aav.jpg
│ └── france_aav.jpg
├── osm-road-import
│ ├── edges_raw.parquet
│ ├── osm_output.txt
│ └── urban_areas.parquet
└── simulation_area.parquet
Files outside of directories
Simulation area
- Filename:
simulation_area.parquet
- Geospatial: Yes
- Columns:
geometry
: Polygon of the simulation area
- Comment: The file contains only a single feature, representing the simulation area.
Directory osm-road-import
Raw edges
- Filename:
edges_raw.parquet
- Geospatial: Yes
- Columns:
geometry
: LineString of the edgeedge_id
(UInt64): Identifier of the edgeosm_id
(UInt64): Identifier of the corresponding OpenStreetMap waysource
(UInt64): Identifier of the OpenStreetMap node of the edge’s first nodetarget
(UInt64): Identifier of the OpenStreetMap node of the edge’s last noderoad_type
(String): Value of thehighway
tagname
(String): Value of thename
tag (oraddr:street
, orref
as fallbacks)toll
(Boolean): Whether the way has tagtoll=yes
roundabout
(Boolean): Whether the way has tagjunction=roundabout
oneway
(Boolean): Whether the way has tagoneway=yes
speedlimit
(Float64): Speed limit on the edge, in km/h (if available)lanes
(Float64): Number of lanes on the edge (if available)give_way
(Boolean): Whether the edge ends with a give-way signstop
(Boolean): Whether the edge ends with a stop signtraffic_signals
(Boolean): Whether the edge ends with traffic signalslength
(Float64): Length of the edge’s geometry, in the same unit as the CRSurban
(Boolean): Whether the edge is within urban areas
Urban areas
- Filename:
urban_areas.parquet
- Geospatial: Yes
- Columns:
geometry
: LineString of the edgeosm_id
(UInt64): Identifier of the corresponding OpenStreetMap way (even numbers) or relation (odd numbers), see https://docs.osmcode.org/pyosmium/latest/user_manual/03-Working-with-Geometries/#the-pyosmium-area-typelanduse
(String): Value of thelanduse
tag