Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Clip | 5,134 | 17 | 4 | 3 years ago | 32 | June 25, 2013 | 1 | apache-2.0 | C++ | |
Create charts from the command line | ||||||||||
Plotjuggler | 3,336 | 8 days ago | 89 | mpl-2.0 | C++ | |||||
The Time Series Visualization Tool that you deserve. | ||||||||||
Youplot | 3,218 | a month ago | 10 | November 19, 2021 | 9 | mit | Ruby | |||
A command line tool that draw plots on the terminal. | ||||||||||
Serial Studio | 3,067 | 2 months ago | 40 | other | C++ | |||||
Multi-purpose serial data visualization & processing program | ||||||||||
Pygraphistry | 1,822 | 4 | 7 days ago | 148 | July 02, 2022 | 131 | bsd-3-clause | Python | ||
PyGraphistry is a Python library to quickly load, shape, embed, and explore big graphs with the GPU-accelerated Graphistry visual graph analyzer | ||||||||||
Sqliteviz | 1,672 | 25 days ago | 27 | apache-2.0 | JavaScript | |||||
Instant offline SQL-powered data visualisation in your browser | ||||||||||
Data Forge Ts | 1,205 | 22 | 20 | 21 days ago | 141 | June 26, 2022 | 38 | mit | TypeScript | |
The JavaScript data transformation and analysis toolkit inspired by Pandas and LINQ. | ||||||||||
Django Rest Pandas | 1,170 | 23 | a month ago | 12 | March 28, 2019 | 7 | mit | JavaScript | ||
📊📈 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 2016 | 701 | 7 years ago | 5 | gpl-3.0 | Jupyter Notebook | |||||
Structured data about Panama papers collected from official ICIJ website | ||||||||||
Csv Fingerprint | 238 | 9 years ago | 2 | mit | JavaScript | |||||
Qualitative visualization of the data types of CSV files |
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).
lat
and lon
. Example column names that will be accepted as valid input are Lat
, Lon
, lat
, lon
, Latitude
, Longitude
, MyLatitudes
, etc.lat
and lon
sub-stringed columns it expects.lat
and lon
sub-stringed columns does not matter.This app also comes with the following functionality:
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.
python3 -m venv env
source ./env/bin/activate
MAPS_API_KEY
environment variable in your virtual environment :export MAPS_API_KEY=<MAPS_API_KEY_FROM_GOOGLE>
cd application
pip install --no-cache-dir -r requirements.txt
python app.py
http://127.0.0.1:5000/
in a web browser and upload a CSV file with your telematics data.docker build -t heatmapimage .
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.