Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/n1ghtf1re/multivis
Service for multidimensional data visualization
https://github.com/n1ghtf1re/multivis
data-analytics data-visualization database map map-visualization visualization visualize-data
Last synced: about 1 month ago
JSON representation
Service for multidimensional data visualization
- Host: GitHub
- URL: https://github.com/n1ghtf1re/multivis
- Owner: N1ghtF1re
- License: mit
- Created: 2018-10-14T13:31:51.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-22T07:00:01.000Z (about 6 years ago)
- Last Synced: 2024-10-31T13:24:11.675Z (3 months ago)
- Topics: data-analytics, data-visualization, database, map, map-visualization, visualization, visualize-data
- Language: Java
- Size: 3.73 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
MultiVis
## About
At the moment, there are services that solve individual tasks of visualizing data. (Example: the criminal map of Minsk, a map of cellular coverage, etc.) However, there is no available ready-made solution that each developer could use to visualize the necessary data in a few clicks.Developed solution allows to visualize multidimensional information effectively.It has an user-friendly interface. Code is easy to modify for any sphere of usage. Application of color mixing enhances perception and analyzation of information.
## How install
For correct operation of this software, a server of the following minimum configuration is required:+ OC: Linux / macOS 10.8.3 and Above / Windows 7 and Above
+ Processor: Pentium® III 800 MHz or AMD Athlon;
+ RAM: 1 GB;
+ HDD: 1 GB of free space.In addition: the presence in the operating system of the installed MySQL DBMS, the JRE virtual machine and the tool for building maven.
Before the server is “deployed”, it is necessary to configure the database. To do this, you need to load a “dump” of an empty database located in dump.sql. You can do this with the following command:
```
mysql -u USERNAME -p -h SERVER_NAME DB_NAME < dump.sql
```After that, you need to fill in the main table with data statistics, after which you need to specify the data from the database user in the application src / main / resources / application.properties configuration file by setting the following properties:
+ `spring.datasource.username`
+ `spring.datasource.password`Optionally, you can configure the port on which the server will work by adding the `server.port = PORT property`.
After configuration settings, just run the mvn build command in the project directory and the maven tool will collect the jar with the built-in tomcat server in the target folder. The last step is to run this file with the command.
```
java –jar target / FILE_NAME.jar
```