Network Links

Overview

The network links table contains the network links (roads and highways) used as the base-layer for modeling transportation patterns within a given Replica region. This table can be joined to the seasonal trip table using the unique stableEdgeId field. For instance, street names associated with trips can be obtained by joining the seasonal trips table’s network_link_id to the network link table on this common field.

Network links are the streets or pathways upon which vehicles or people can travel. A single street is typically split into multiple links, with the split points set at street intersections. Two-way streets are modeled with separate network links, one for each direction of travel.

Arterial network links include freeways, highways, primary, secondary, and tertiary segments. The functional classifications defined for the links (freeways, highways, primary, secondary, and tertiary) are derived from OpenStreetMap street data. Most residential streets and service lanes are excluded from this dataset.

Schema

Field NameContent TypeSample ValueDescription
stableEdgeIdString1.63807E+19A unique identifier for the network link.
startLatFloat34.36907793The latitude of the starting point of the network link, stored in decimal degrees.
startLonFloat-101.762211The longitude of the starting point of the network link, stored in decimal degrees.
endLatFloat34.36866032The latitude of the end point of the network link, stored in decimal degrees.
endLonFloat-101.7656375The longitude of the end point of the network link, stored in decimal degrees.
streetNameStringSunrise PassageThe common name of the network link if available. Matches the name assigned by OpenStreetMap.
distanceInteger318000The distance (length) of the network link in millimeters.
osmidString21250769The OpenStreetMap ID assigned to the network link.
speedInteger20.69196279The speed limit on the link in miles per hour.
flagsString[ALLOWS_CAR, ALLOWS_BIKE, ALLOWS_PEDESTRIAN]A flag denoting what type of vehicles and pedestrian traffic are permitted on the network edge.
lanesInteger2The number of travel lanes on the network link.
highwayStringsecondary_linkThe classification of the link based on OpenStreetMap data.
geometryStringLINESTRING(-93.254892 43.986738, -93.254799 43.993382)The geometry type for each network link including the start and end latitude and longitude points of the link segment.