Skip to content

Defjoint777/OmnAIView

 
 

Repository files navigation

OmnAIView

Welcome to OmnAIView! Let's get started!

What is this?

OmnAIView is a modular Open Source frontend application to receive, display, analyse and save time series data from different backends.

The goal of OmnAIView is to create an easy process to get the information you need from the data you have.

Why do this?

The most people don't measure something just to see numbers. They measure because they want information about the data. The process to get this information is hard. Often you need to know how the scientific environment behind your data works. Or need to implement your own algorithm to analyse the data. Or worse : calculate it yourself.

We want to make this better!

  1. OmnAIView does not only display data from our devices. OmnAIView will support different interfaces for devices, so you can display your data from your device in the software.
  2. OmnAIView will support REST API. You can connect your analysis to the frontend and analyse data via a button click.
  3. OmnAIView offers integrated analysis support - whether you're unsure about the mechanics of your scientific data or simply need a mathematical assessment, it's just one click away.

Where to find which information :

The README.md provides information to get a quick overview and setup the minimal project.

The VISION.md provides the context for this project. Our vision, the intended usergroup and userflow, background about the project. Read this if you want an overview of the project without understanding the codebase.

The ARCHITECTURE.md provides concept descriptions for contributers, from the general concepts of the application to more detailed concepts like adding a datasource. Read this whenever you are unsure where to put what code and how.

How to get the Code Documentation :

The Code is documented with Compodoc. To see the documentation follow these steps:

  1. Clone the project
  2. Run npm ci in the root directory of the project
  3. Run npm run compodoc:build-and-serve in your console
  4. Open the documentation with the link compodoc generates

How to Contribute :

We are very happy about contributions. If you want to contribute just follow the steps in the CONTRIBUTIONS.md. We will review your contribution as fast as possible.

How to run the project

The project currently contains two separat parts: An angular app and an electron app in which the angular app runs.

General project

  1. Create a fork of the repository to your own GitHub account.
  2. Clone the forked repository to your local machine:
    git clone git@github.com:AI-Gruppe/OmnAIView.git
    cd OmnAIView
    

Package Installation

To install the angular and electron packages, you run npm install, and then npm ciin the root directory.

Development Mode

If you want to run the angular frontend in development mode, you can do so by running npm run start:angular in the root folder.

Once the server is running, open your browser and navigate to http://localhost:4200/. The application will automatically reload whenever you modify any of the source files.

If you want to run the electron application separately in development mode, you can do so by first running npm run build:angular then npm run start:electron.

Building

To build the full project you can do so by running npm run build.

This will compile the angular frontend and electron project and store the build artifacts of the frontend in the dist/ directory. By default, the production build optimizes your application for performance and speed. The electron build installer can be found in the electron/out/make/squirrel.windows/x64/, the application that can be run without installation electron\out\OmnAIView-win32-x64.

Otherwise it is possible to build the angular frontend or the electron project seperately via npm run build:angular or npm run build:electron.

Technical Information

The project was generated using angular v19.1.4. For more information on using the Angular CLI, including detailed command references, visit the Angular CLI Overview and Command Reference page.

Technical Information about Datasources

OmnAIView is using different data sources. Some are started externally from the application, while others are started together with the application.

OmnAIScope Dataserver

To receive data from locally connected OmnAIScopes, the OmnAIScope Dataserver is integrated into the frontend as an autostart component. Version : v0.4.0 GitHub repository: https://github.com/AI-Gruppe/OmnAIScope-DataServer

Information is missing?

If some information is missing please create an issue in this repository. We will try to answer your question as fast as possible.

About

Angular-Based UI for timeseries data visualization, analysis (based on APIs) and distribution

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • TypeScript 89.8%
  • HTML 6.7%
  • CSS 1.6%
  • Other 1.9%