https://github.com/s-ayanide/population-and-volcano-check-webmap
This project shows a general layered map which shows the population of different countries as well as the volcanic mountains in the USA sorted by their elevation
https://github.com/s-ayanide/population-and-volcano-check-webmap
Last synced: 5 months ago
JSON representation
This project shows a general layered map which shows the population of different countries as well as the volcanic mountains in the USA sorted by their elevation
- Host: GitHub
- URL: https://github.com/s-ayanide/population-and-volcano-check-webmap
- Owner: S-ayanide
- Created: 2019-03-03T19:59:31.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-24T05:39:19.000Z (about 7 years ago)
- Last Synced: 2025-01-11T07:33:12.034Z (over 1 year ago)
- Language: HTML
- Homepage:
- Size: 2.04 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Population-and-Volcano-Check-Webmap
[](https://github.com/S-ayanide/Population-and-Volcano-Check-Webmap/issues) [](https://github.com/S-ayanide/Population-and-Volcano-Check-Webmap/network) [](https://github.com/S-ayanide/Population-and-Volcano-Check-Webmap/stargazers) [](https://github.com/S-ayanide/Population-and-Volcano-Check-Webmap)
This project shows a general layered map which shows the population of different countries as well as the volcanic mountains in the USA sorted by their elevation
## What Can it Do ?
This project will show you all the places in the USA which are prone to volcano with elevation level marked with different colors, users can also see the different population rates in different countries.
It is a layer controlled map and any layer can be toggeled on/off on choice.

## Installation
Use the package manager [pip](https://pip.pypa.io/en/stable/) to install pandas and folium.
### Pandas
You can find more about pandas [here](https://pandas.pydata.org/)
```bash
pip install pandas
```
### Folium
You can find more about folium [here](https://python-visualization.github.io/folium/)
```bash
pip install folium
```
## Adding the .txt file
You add the .txt file using pandas
* import pandas first
* add the csv file
```python
import pandas
points=pandas.read_csv("scripts/filename.txt") #where points is any variable name
```
## Adding the .json file
You add the .json file using folium as we need to access its **GeoJson**
* import folium
* adding the json file which contains the geocodes
```python
import folium
folium.GeoJson(data=open("scripts/world.json",'r',encoding="utf-8-sig").read()
```
## Pull Request
Pull Requests are welcome. Please follow these rules for the ease of understanding:
* Make sure to check for available issues before raising one
* Give me a maximum of 24-48 hours to respond
* Have proper documentation on the parts you are changing/adding
#### Feel free to contribute
## Developed & Maintained by
[Sayan Mondal](https://github.com/S-ayanide)
[📷 Insta](https://www.instagram.com/s_ayanide/)
[🐤 Twitter](https://www.instagram.com/s_ayanide/) [](https://twitter.com/intent/tweet?text=Wow:&url=https%3A%2F%2Fgithub.com%2FS-ayanide%2FPopulation-and-Volcano-Check-Webmap)