Roadscape Vectors

Summary

Road network data

A road network is a directed graph G = (V, E), where  V is a road node set and E ⊆ V × V is a road link set. A road node vi ∈ V represents an intersection or an end point. A road link ek = (vi, vj) ∈ E represents a directed link from the starting node vi to the ending node vj.

m_road_nodes_latlng.csv

Road nodes are contained in the file m_road_nodes_latlng.csv. The number of road nodes is 102,506. Each line corresponds to one node.  These lines have the following format as tab delimited:

node_id, lat, lng

Here, node_id denotes a road node ID for identifying a road node. lat and lng denote latitude and longitude, respectively.

m_road_links_nodes.csv

Road links are contained in the file m_road_links_nodes.csv. The number of road links is 212,050. Each line corresponds to  one link. These lines have the following format as tab delimited:

link_id, start_node_id, end_node_id

Here, link_id denotes a road link ID for identifying a road link. start_node_id and end_node_id denote starting node ID and ending node ID, which refer to node_id in the file m_road_nodes_latlng.csv (i.e. the same node ID refers to the same road node across these files), respectively.

Roadscape vectors

A roadscape vector is defined as a four-dimensional probability vector composed of four kinds roadscape elements, rural, mountainous, waterside, and urban elements. Each element of the vector denotes the probability of including the roadscape element. Therefore, the sum of values over all elements is 1.

m_road_links_vector.csv

Roadscape vectors of road links are contained in the file m_road_links_vector.csv. Each line corresponds to one link with its roadscape vector. These lines have the following format as tab delimited:

link_id, rural, mountain, water, urban

Here, link_id denotes a road link ID, which refer to link_id in the file m_road_lonks_nodes.csv (i.e. the same link ID referes to the same road link across these files). rural, mountain, water, and urban denote rural, mountainous, waterside, urban elements in its roadscape vector, respectively.