All Projects → SensorThings-Dashboard → SensorThings-Dashboard

SensorThings-Dashboard / SensorThings-Dashboard

Licence: MIT license
A dashboard to easily visualize sensordata from SensorThings API compatible servers

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to SensorThings-Dashboard

krawler
A minimalist (geospatial) ETL
Stars: ✭ 51 (+88.89%)
Mutual labels:  ogc
tile-map-service-net5
Tile server for .NET 5 platform with MBTiles, Filesystem, GeoTIFF, HTTP sources and XYZ, TMS, WMTS, WMS endpoints (protocols support)
Stars: ✭ 45 (+66.67%)
Mutual labels:  ogc
tailormap
B3partners Tailormap repository
Stars: ✭ 26 (-3.7%)
Mutual labels:  ogc
simple-features-geojson-java
Simple Features GeoJSON Java Library
Stars: ✭ 24 (-11.11%)
Mutual labels:  ogc
WPS
The 52°North Web Processing Service enables the deployment of geo-processes on the web in a standardized way.
Stars: ✭ 57 (+111.11%)
Mutual labels:  ogc
InViewer
A Three.js-based viewer for visualizing OGC IndoorGML data
Stars: ✭ 18 (-33.33%)
Mutual labels:  ogc
geometa
R tools to write, read & validate geographic metadata (OGC/ISO 19110, 19115, 19119, 19136 and 19139)
Stars: ✭ 37 (+37.04%)
Mutual labels:  ogc
ows4R
R Interface for OGC Web-Services (OWS)
Stars: ✭ 29 (+7.41%)
Mutual labels:  ogc
mapmint
Fast and easy webmapping.
Stars: ✭ 51 (+88.89%)
Mutual labels:  ogc
rok4
ROK4 est une suite d'outils open source développée par l'IGN France permettant la diffusion de données raster et vecteur en WMS, WMTS ou TMS. DEPRECATED ! Projet maintenu ici : https://github.com/rok4/documentation
Stars: ✭ 18 (-33.33%)
Mutual labels:  ogc
InEditor
A web-based editor for drawing and creating OGC IndoorGML data
Stars: ✭ 26 (-3.7%)
Mutual labels:  ogc
gaode2
利用高德导航接口创建交通路网模型
Stars: ✭ 23 (-14.81%)
Mutual labels:  ogc
geoflow
R engine to orchestrate and run (meta)data workflows
Stars: ✭ 28 (+3.7%)
Mutual labels:  ogc
javaPS
Next generation standardized web-based geo-processing
Stars: ✭ 13 (-51.85%)
Mutual labels:  ogc
geotrellis-server
Tools for building raster processing and display services
Stars: ✭ 65 (+140.74%)
Mutual labels:  ogc
arctic-sea
Framework for developing OGC services, clients and middleware
Stars: ✭ 20 (-25.93%)
Mutual labels:  ogc
deegree3
Official deegree repository providing geospatial core libraries, data access and advanced OGC web service implementations
Stars: ✭ 118 (+337.04%)
Mutual labels:  ogc
mapserver-docker
Mapserver OGR GDAL PostGIS WMS WCS WFS with Lighttpd in Docker
Stars: ✭ 18 (-33.33%)
Mutual labels:  ogc

IoT-Web-Dashboard-Banner

Introduction

This dashboard provides easy-to-use client-side visualisation of Internet-of-Things sensor data from OGC SensorThings API compatible servers. Various types of widgets can be arranged and configured on the dashboard. It is a web application and can be embedded into any website. A live demo is available on the project page.

Authors: Simon Böhm, Moritz Grauer, Daniel Liebler, Robin Maisch, Till Stöckmann, Frederic Tausch

Screenshots

widget_showcase dashboard_configuration

How to use

A demo of an integration of this dashboard can be found in the public folder. You will still need to download RGraph for this to work (more on this later)!

You need following files and folders:

  • iotwebdashboard.html | The structure for the dashboard
  • iotwebdashboard.js | The code for the dashboard
  • iotwebdashboard.css | The style files for the dashboard
  • res | The folder containing all images used by the dashboard
  • fonts | The folder containing all glyphicons used by the dashboard. (Not needed if included in your embedded bootstrap)

Those files and folders can be found in a release version in the public folder. The script has to be imported into the host website after importing the dependencies.

Needed Dependencies

As you can see in the demo, there are CDNs for every dependency except RGraph. You will have to download and serve this yourself.

Embedding the dashboard

The dashboard will be plotted into the div with id=iot-db. The dashboard is accessed via the window.iotDB variable.

This variable provides the following functions:

  • create(Object): The function to instanciate the dashboard. There should only be one dashboard instance per site. The passed Object can have the following attributes:
    • Boolean disableImportExportCMS: Disable the user's ability to import/export his dashboard-configuration from/into a CMS. Defaults to false
    • Boolean disableDownloadUpload: Disable the user's ability to download/upload his dashboard-configuration to/from his local PC. Defaults to false
    • Boolean disableConfiguration: Disable the user's ability to change the dashboard (including servers, widgets and their placement). Defaults to false
    • Boolean backgroundTransparent: Set the background transparent. Defaults to false
    • Boolean enableNoDistraction: Enable the "no distraction"-mode on startup (removing every part of the dashboard GUI except the widgets). Defaults to false
    • String baseDir: The directory to fetch the resources from (fonts and res folder). Root is the folder of the script. Defaults to ./
    • String language: The language file to be used. Defaults to english. If you want a different language, set up an object in the public scope with the name passed here. For all missing translations, the english translations will be used. Look at the english language object in langEn.js for all the translations needed
  • onLoad(function): The function to be called once the dashboard is all started up
  • onSaveConfig(function): The function to be called once the user presses the export button. Here you should export the user's dashboard-config into your CMS
  • onLoadConfig(function): The function to be called once the user presses the import button. Here you should import the user's dashboard-config from your CMS

Development

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].