Skip to content

N1ghtF1re/MultiVis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

66 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MultiVis

Stars Total Downloads Latest Stable Version License

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