web map using python3 and folium
Web-Map using Python 3 and Folium
featuring
volcanoe spot in US with CircleMaker with different colors based on:
if elevation < 1000:
return ‘green’
elif 1000 <= elevation < 3000:
return ‘orange’
else:
return ‘red’
population retrieved from 2005 data, world.json and displaying
different colors based on population:
green < 10,000,000
orange if population is <= and < 20,000,000
red if population is greater than 20,000,000
Must install folium and pandas in project folder in order to run:
Initalize the app by running in terminal:
python3 map1.py