GithubHelp home page GithubHelp logo

sql-carsharing-test's Introduction

Generating trips from telematic

Clone the repo:

git clone https://github.com/andreytyu/sql-carsharing-test.git
cd sql-carsharing-test

Copy the data to the directory and name in data.csv

Start a container with a PostGIS-enabled database as follows:

docker run -p 9900:5432 -v $(pwd):/data --name taxi-postgis -e POSTGRES_PASSWORD=password -d mdillon/postgis

Database postgres with user postgres and password password will start on localhost:9900, create a /data volume and mount all data from current directory there

Connect to the database:

docker run -v $(pwd):/data  -it --link taxi-postgis:postgres --rm postgres     sh -c 'exec psql -h "$POSTGRES_PORT_5432_TCP_ADDR" -p "$POSTGRES_PORT_5432_TCP_PORT" -U postgres'

Run this script to import the data to the database:

\i /data/data_import.sql

Process the data:

\i /data/data_processing.sql

This will create the table trips with following fields:

trip_id bigint -- trip id
tmatic_id numeric -- car id
start_time timestamp -- time when the car was ordered
movement_start_time timestamp -- time when the car started moving
start_point geometry -- start point of the trip
stop_time timestamp -- time when the order ended
end_point geometry -- end point of the trip
trip_geom geometry -- the track of the trip LineString
trip_length numeric -- the trip length

sql-carsharing-test's People

Contributors

andreytyu avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.