Traffic Flow Data In Ho Chi Minh City, Viet Nam
Historical data of traffic condition (speed, level of service, etc.)
@kaggle.thanhnguyen2612_traffic_flow_data_in_ho_chi_minh_city_viet_nam
Historical data of traffic condition (speed, level of service, etc.)
@kaggle.thanhnguyen2612_traffic_flow_data_in_ho_chi_minh_city_viet_nam
Mining historical data from local traffic condition to learn/predict/analyze how traffic flow could be at different times of the day.
The main file is train.csv: built from segments.csv and segment_status.csv. A day is split into 48 periods of 30 minutes, the first period is period_0_00 corresponding to 00:00 and the last one is period_23_30 corresponding to 23:30, each period is labeled by Level of Service (LOS - assessed by velocity at the time and the maximum velocity allowed.)
The original dataset provided and minimized for analytical purposes contains 4 tables only:
Data provided: Research group from HCM University of Technology (website)
Banner image by Denys Nevozhai
Research motivation?
CREATE TABLE nodes (
"n__id" BIGINT -- Id,
"long" DOUBLE,
"lat" DOUBLE
);CREATE TABLE segments (
"n__id" BIGINT -- Id,
"created_at" VARCHAR,
"updated_at" VARCHAR,
"s_node_id" BIGINT,
"e_node_id" BIGINT,
"length" BIGINT,
"street_id" BIGINT,
"max_velocity" DOUBLE,
"street_level" BIGINT,
"street_name" VARCHAR,
"street_type" VARCHAR
);CREATE TABLE segment_status (
"n__id" BIGINT -- Id,
"updated_at" VARCHAR,
"segment_id" BIGINT,
"velocity" BIGINT
);CREATE TABLE streets (
"n__id" BIGINT -- Id,
"level" BIGINT,
"max_velocity" DOUBLE,
"name" VARCHAR,
"type" VARCHAR
);CREATE TABLE train (
"n__id" BIGINT -- Id,
"segment_id" BIGINT,
"date" TIMESTAMP,
"weekday" BIGINT,
"period" VARCHAR,
"los" VARCHAR,
"s_node_id" BIGINT,
"e_node_id" BIGINT,
"length" BIGINT,
"street_id" BIGINT,
"max_velocity" DOUBLE,
"street_level" BIGINT,
"street_name" VARCHAR,
"street_type" VARCHAR,
"long_snode" DOUBLE,
"lat_snode" DOUBLE,
"long_enode" DOUBLE,
"lat_enode" DOUBLE
);Anyone who has the link will be able to view this.