Skip to content

wollio/tableFramework_IntVis

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

76 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Table Framework for Bits & Atoms III (Data Literacy & Visualization) and Interactive Visualization Course

This is a node.js server framework using socket.io and including a P5 JS implementation on the client side

To take off and start your own visualization experiments

preparations:

download or clone this repository install node js (if you haven't ) in your machine or virtual machine https://nodejs.org/en/download/

use:

in the command line or terminal run (without the $ ):

$ node index.js or $ sudo node index.js

open your browser (preferably Chrome for better performance) and type 'http://localhost:8080/' in the address bar

you should see something like this in your browser and a notification on the terminal ->

"new client connected id: gbyoWN7CmiO8Qy2bAAAB"

keyboard shortcuts:

'm' - shows a map of the world in 3D

'f' - toggles to full screen

'v' - toggles the vector map of the world

'p' - toggles the points of interest

'n' - toggles flattened map

Process

GEOTIFF Integrations:

  1. Add this to index.html under the libraries entries
<script src="https://cdn.jsdelivr.net/npm/geotiff"></script>
  1. Use this script to read geotiff
GeoTIFF.fromUrl('../data/Beck_KG_V1_future_0p0083.tif')
        .then(tiff => {
            console.log(tiff);
        });

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 85.1%
  • HTML 8.8%
  • CSS 6.1%