https://github.com/n1ghtf1re/map-of-emergency-incidents
Emergency Map allows you to effectively visualize multi-dimensional information, has an intuitive interface. The developed code is easily modified for use in a variety of areas. The use of color mixing technology enhances the perception and analysis of information
https://github.com/n1ghtf1re/map-of-emergency-incidents
big-data big-data-analytics big-data-visualization bigdata color-mixing colors data data-analytics data-science data-visualization data-visualization-challenges data-visualization-simpler mysql open-source-project php student-project
Last synced: 9 months ago
JSON representation
Emergency Map allows you to effectively visualize multi-dimensional information, has an intuitive interface. The developed code is easily modified for use in a variety of areas. The use of color mixing technology enhances the perception and analysis of information
- Host: GitHub
- URL: https://github.com/n1ghtf1re/map-of-emergency-incidents
- Owner: N1ghtF1re
- License: mit
- Created: 2018-03-17T12:55:45.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-25T05:17:55.000Z (over 7 years ago)
- Last Synced: 2025-02-28T07:54:56.268Z (9 months ago)
- Topics: big-data, big-data-analytics, big-data-visualization, bigdata, color-mixing, colors, data, data-analytics, data-science, data-visualization, data-visualization-challenges, data-visualization-simpler, mysql, open-source-project, php, student-project
- Language: PHP
- Homepage: http://brakh.men/map
- Size: 71.2 MB
- Stars: 8
- Watchers: 1
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
BrakhMen Emergency Map

## About the program
Developers of Emergency Map were tasked to implement a combined visualization of the data on the example Ministry’s of Emergency Situations of fire accidents statistics.
The product should easily adapt to any sort of data and be a universal tool for statistical purposes.
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.
## Used technologies
**Languages:** PHP(server part), JS(client part),HTML+CSS(markup + style), SQL(Database requests).
**DBMS:** MySQL
**Third-party APIs:** Yandex map API (map rendering, polygon coloring, polygon click actions), Nominatim API(obtaining requested geographical region polygon).
**Use example:** site brakh.men/map
## How to use

SQL request to create table:
``` sql
CREATE TABLE `TableName` (
`id` INT(100) NOT NULL,
`Region` VARCHAR(40) COLLATE utf8_unicode_ci NOT NULL,
`Date` DATE NOT NULL,
`Situation` INT(20) NOT NULL,
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
ALTER TABLE `TableName`
ADD PRIMARY KEY (`id`);
ALTER TABLE `TableName`
MODIFY `id` INT(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1;
COMMIT;
```
Database completion guide for developers:
Region - the geographical name of the object to be painted (as precisely as possible). Example: Brooklyn, New York City, New York, USA, Earth, Sol, Milky Way, Universe (Unsign)
Date - date, tied to the situation.
Situation - situation number. (Each situation is assigned a unique number)
Yaer - year of origin of the situation (For convenience of sorting by years)
**Config.php** file have to be filled
## Developers
In the development of this service involved:
+ [**Pankratiew Alexandr**](https://vk.com/sasha_pankratiew)
+ [**Holubeu Kiryl**](https://vk.com/smertowing)
+ [**Pilinko Nikita**](https://vk.com/mineralsfree)