Skip to content

Latest commit

 

History

History
234 lines (167 loc) · 11.6 KB

documentation.md

File metadata and controls

234 lines (167 loc) · 11.6 KB

VisFramework Documentation

Documentation for the visFramework JavaScript visualization framework.

For information on how to set up and run the framwork see README.md.

Table of Contents

  1. VisFramework Documentation
    1. Table of Contents
    2. Configuration
      1. Default Configuration
      2. Custom Configurations
      3. View Configurations
    3. Architecture
      1. Overview
      2. Configuration File
      3. Controller
      4. Connectors
      5. Data
        1. Model
        2. Filter
        3. Aggregator
        4. Community Detection
      6. Visual Mapping Functions
      7. Views
    4. Libraries
      1. External
      2. Internal
    5. Build System
    6. Future Work

Configuration

The client configuration is stored in config/config.js. Depending on device type, display size and anticipated user expertise, different configuations may offer advantages over others.

The VisFramework automatically recognizes mobile devices and loads the respective configuration, but users may also change it via buttons.

Default Configuration

Config() is a constructor that takes an ID and description object and returns a configuration object with default values.

class Config {
    constructor(id, description) {
        // unique ID
        this.id = id;
        // general description and attributes
        this.description = description;
        // general interface
        this.UI = {
            // title may contain HTML
            title: "Cimplex Visualization",
            ...
        };
        // filter configuration
        this.filter = {
            ....
        };
        // views' configurations
        this.timeline = {

        };
        ...
    }
}

Custom Configurations

You can create custom configurations by using this constructor and then overwriting only the specific attributes you want to change:

config.mobile = new Config("mobile", {
    name: "mobile phone configuration",
    expertise: "novice",
    device: "mobile",
    devicePerformance: "low"
});
config.mobile.UI.viewColumns = [12, 12, 12, 12];
config.mobile.UI.viewRows = 2;
config.mobile.UI.viewLimit = 2;
config.mobile.UI.viewDragAndDrop = false;
...

View Configurations

Views may have their own configuration inside the Config() constructor:

this.graph = {
    edgeBundling: false,
    showLabels: true,
    labelLimit: 20,
    showCommunities: true,
    // directed links may be shown as undirected to reduce clutter
    linkDirection: true,
    // direction of links can be indicated via "doubleLines", "halfArrows" or "curvature"
    linkDirectionIndicator: "doubleLines",
    ...
};

Users may change some of those attributes via buttons in the view’s title bar or settings panel.

Architecture

The following subsections explain the basic structure of the VisFramework.

Overview

Figure 1 shows an architecture diagram. The orange parts, i.e. services and respective connectors, have to be implemented by data service providers.

Administrators may change the Framework Configuration (blue) and third party developers may implement custom view modules.

The user interacts with the framework through the toolbar and the views.

Architecture Diagram Figure 1 The VisFramework’s architecture.

Configuration File

See the configuration section above.

Controller

The controller (/controller/) initializes the framework UI and event management.

Connectors

Connectors provide an interface between the VisFramework’s data model and online data services. Static data may be directly included in a connector's directory.

We implemented the class connectorType in order to simplify the creation of custom connectors. The file types/_connectorTypeExample.js shows how to use this class.

Refer to the readme files in each connector's directory for detailed information.

Data

The dataModel/ directory contains all data management files. They are explained in the following subsections.

Model

The model.js file contains a list of regions, a list of transitions and a number of general data properties, e.g. the total timespan of the data.

Filter

The filter is implemented in filter.js and stores filered results in filteredData.js objects.

Views can offer brushing or selection interactions and then use the filter events to apply certain filters to the data. Currently we support filtering on a time span, reactangular geographic area, specific regions and a single community.

Aggregator

The file aggregator.js contains function for time dependent aggregation of transitions.

Community Detection

The file community.js implements jLouvain community detection.

Visual Mapping Functions

The visual mappings from data values to colors, sizes, etc. has to be provided by the connectors. They are then cached in config/mapping.js and can be accessed by views using the global MAPPING object.

Views

You can create views by extending the ViewType class. The file types/_viewTypeExample.js contains example code for this task. Views have access to the data and to mappings (see above). ViewType takes care of window management entirely.

Views have complete freedom in how they display their content, they may use HTML, Canvas, SVG, WebGL, etc. Canvas and WebGL are prefered for many shown items due to performance issues caused by having many DOM elements.

Libraries

The VisFRamework uses external and internal libraries that are listed below.

External

The table below lists all used external libraries and their respective uses.

Name Used for License *
Bootstrap general page layout MIT License
Colorbrewer color palettes that are used in color mapping Apache License 2.0
Crossfilter data filtering Apache License 2.0
d3 v3 utility functions, scaling, interaction, colors and timeline. BSD 3-clause "New" or "Revised" License
d3 v4 updated packages for some functionality BSD 3-clause "New" or "Revised" License
d3forcebundle force directed edge bundling with d3 GNU General Public License v2.0
Font Awesome icons SIL OFL 1.1 (font), MIT License (code)
gLayers canvas Layer for Leaflet MIT License
jLouvain community detection MIT License
jQuery HTTP requests and DOM manipulation MIT License
Leaflet geographic map BSD 2-clause "Simplified" License
Mustache HTML logic-less templates MIT License
Sortable view drag and drop to reorder views MIT License
inflection.js word inflection MIT License

* as of 2018-01-22

Internal

The table below lists our own libraries and their respective uses.

Name Used for
vectorSimilarity contains functions which compare vectors in order to be able to sort them by similarity
WebWorkerPool controls the creation of webworker threads
edgeBundlingWorker calculates the force directed edge bundling in a separate thread
dfkiDecoder decodes data from DFKI data services
lib.js utility functions
ui.js UI functions

Build System

The build system automatically minimizes and concatenates all JavaScript code in order to maximize page load performance.

It is based on Node.js and executed via the following commands:

npm install
npm run build:development

or, for building a minified version

npm install
npm run build:production

Any new JavaScript files need to be added to scripts/build.js.

Future Work

  • Additional connectors for various data sources
  • Additional visualization views
  • Support for multiple datasets shown next to each other