1.0.6 • Published 4 years ago

eurogridviz v1.0.6

Weekly downloads
-
License
EUPL
Repository
-
Last release
4 years ago

EuroGridViz

Gridded statistics visualization tool.

alt text

Live demo

Description

EuroGridViz allows you to visualize large gridded datasets on the browser. Unlike raster-based approaches, this tool utilizes WebGL through Three.js in order to render eveything client-side.

Installation & Usage

The project works both in browsers and in node.js

Node

Within a node.js project simply run the following command:

npm install eurogridviz --save

Then import:

import * as EuroGridViz from "eurogridviz";

EuroGridViz.createViewer({
  container: document.getElementById("viz-container"),
  background_color: 0x000000,
  border_color: 0xffffff, //0x97dbf2
  color_scheme: "interpolateTurbo",
  legend: true,
  color_scheme_selector: true
});

Browsers

As a standalone script use:

<script src="https://unpkg.com/eurogridviz/build/eurogridviz.min.js"></script>

Then:

EuroGridViz.createViewer({
  container: document.getElementById("viz-container"),
  background_color: 0x000000,
  border_color: 0xffffff, //0x97dbf2
  color_scheme: "interpolateTurbo",
  legend: true,
  color_scheme_selector: true
});

Parameters

Coming soon...

1.0.6

4 years ago

1.0.5

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.0

4 years ago