Telematics Heatmap

A heatmap visualization library for sighting intensity of data at geographical points contained in generic CSV files
Alternatives To Telematics Heatmap
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Clip5,1341743 years ago32June 25, 20131apache-2.0C++
Create charts from the command line
Plotjuggler3,336
8 days ago89mpl-2.0C++
The Time Series Visualization Tool that you deserve.
Youplot3,218
a month ago10November 19, 20219mitRuby
A command line tool that draw plots on the terminal.
Serial Studio3,067
2 months ago40otherC++
Multi-purpose serial data visualization & processing program
Pygraphistry1,822
47 days ago148July 02, 2022131bsd-3-clausePython
PyGraphistry is a Python library to quickly load, shape, embed, and explore big graphs with the GPU-accelerated Graphistry visual graph analyzer
Sqliteviz1,672
25 days ago27apache-2.0JavaScript
Instant offline SQL-powered data visualisation in your browser
Data Forge Ts1,205222021 days ago141June 26, 202238mitTypeScript
The JavaScript data transformation and analysis toolkit inspired by Pandas and LINQ.
Django Rest Pandas1,170
23a month ago12March 28, 20197mitJavaScript
📊📈 Serves up Pandas dataframes via the Django REST Framework for use in client-side (i.e. d3.js) visualizations and offline analysis (e.g. Excel)
Panama Papers Dataset 2016701
7 years ago5gpl-3.0Jupyter Notebook
Structured data about Panama papers collected from official ICIJ website
Csv Fingerprint238
9 years ago2mitJavaScript
Qualitative visualization of the data types of CSV files
Alternatives To Telematics Heatmap
Select To Compare


Alternative Project Comparisons
Readme

Telematics HeatMap

This project provides a heatmap visualization library for telematics data. The project aims to make it easier to render data visualizations of data contained in CSV files. To view heatmaps using this web application, upload any CSV file with data points containing atleast column fields named lat and lon (case insenstive, in any order and CSV can contain other column fields).

Preview of Running Application

Preview of running application

Technologies used

  • Docker - packages application, runtime, configurations and dependencies.
  • Flask - actual telematics web application.
  • uwsgi - web server for the flask application.
  • Nginx - reverse proxy to the uwsgi web server.
  • Google Maps JS API - map component used for visualization.

Input Rules

  • Any CSV file is accepted.
  • CSV files should contain columns with at-most 2 columns that contain the following substrings lat and lon. Example column names that will be accepted as valid input are Lat, Lon, lat, lon, Latitude, Longitude, MyLatitudes, etc.
  • CSV files can contain other data columns. This app will only scrap the 2 lat and lon sub-stringed columns it expects.
  • The ordering and relative positions of the lat and lon sub-stringed columns does not matter.

Additional Application Features

This app also comes with the following functionality:

  • Toggling heatmap on and off.
  • Changing gradient of heatmap visualization.
  • Changing radius of heatmap visualization.
  • Changing opacity of heatmap visualization.

Getting Started

To use Google Maps in the front-end web appliacation, a Google Maps Javascript API key is required. The instructions of obtaining the API key are documented here.

  • Also, ensure that you are running in a Python 3 environment.

Running the Application In Development Environment

  1. Setup virtual environment
python3 -m venv env
source ./env/bin/activate
  1. Setup the MAPS_API_KEY environment variable in your virtual environment :

export MAPS_API_KEY=<MAPS_API_KEY_FROM_GOOGLE>

  1. Install dependencies required by application :

cd application

pip install --no-cache-dir -r requirements.txt

  1. Run the application locally:

python app.py

  1. Access the front-end web application: In your web browser, navigate to the address http://127.0.0.1:5000/ in a web browser and upload a CSV file with your telematics data.

Running the Application in Docker

  1. To build application, run:

docker build -t heatmapimage .

  1. To run application, run:

docker run -d --name heatmaps -e MAPS_API_KEY=<MAPS_API_KEY_FROM_GOOGLE> -p 1337:80 heatmapimage

You should be able to check access the web front end of the application on http://localhost:1337/ . Submit a CSV file with your telematics data and click upload to visualize your data.

Popular Csv Projects
Popular Visualization Projects
Popular Data Formats Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Javascript
Python
Docker
Flask
Visualization
Csv
Data Visualization
Data Analysis
Data Mining
Heatmap
Google Maps Api
Csv Parser