Taxi Routes Of Mexico City, Quito And More
Data collected from Taxi, Cabify and Uber trips, using EC Taximeter
@kaggle.mnavas_taxi_routes_for_mexico_city_and_quito
Data collected from Taxi, Cabify and Uber trips, using EC Taximeter
@kaggle.mnavas_taxi_routes_for_mexico_city_and_quito
CREATE TABLE all_data_clean (
"id" BIGINT,
"vendor_id" VARCHAR,
"pickup_datetime" TIMESTAMP,
"dropoff_datetime" TIMESTAMP,
"pickup_longitude" DOUBLE,
"pickup_latitude" DOUBLE,
"dropoff_longitude" DOUBLE,
"dropoff_latitude" DOUBLE,
"store_and_fwd_flag" VARCHAR,
"trip_duration" BIGINT,
"dist_meters" BIGINT,
"wait_sec" BIGINT
);
CREATE TABLE bog_clean (
"id" BIGINT,
"vendor_id" VARCHAR,
"pickup_datetime" TIMESTAMP,
"dropoff_datetime" TIMESTAMP,
"pickup_longitude" DOUBLE,
"pickup_latitude" DOUBLE,
"dropoff_longitude" DOUBLE,
"dropoff_latitude" DOUBLE,
"store_and_fwd_flag" VARCHAR,
"trip_duration" BIGINT,
"dist_meters" BIGINT,
"wait_sec" BIGINT
);
CREATE TABLE mex_clean (
"id" BIGINT,
"vendor_id" VARCHAR,
"pickup_datetime" TIMESTAMP,
"dropoff_datetime" TIMESTAMP,
"pickup_longitude" DOUBLE,
"pickup_latitude" DOUBLE,
"dropoff_longitude" DOUBLE,
"dropoff_latitude" DOUBLE,
"store_and_fwd_flag" VARCHAR,
"trip_duration" BIGINT,
"dist_meters" BIGINT,
"wait_sec" BIGINT
);
CREATE TABLE uio_clean (
"id" BIGINT,
"vendor_id" VARCHAR,
"pickup_datetime" TIMESTAMP,
"dropoff_datetime" TIMESTAMP,
"pickup_longitude" DOUBLE,
"pickup_latitude" DOUBLE,
"dropoff_longitude" DOUBLE,
"dropoff_latitude" DOUBLE,
"store_and_fwd_flag" VARCHAR,
"trip_duration" BIGINT,
"dist_meters" BIGINT,
"wait_sec" BIGINT
);
Anyone who has the link will be able to view this.