Skip to content

An interactive WebMap of Greece, to display various locations on the map with valuable information. πŸ“

License

Notifications You must be signed in to change notification settings

Stathis-Kal/Greece-WebMap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

8 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Greece-WebMap πŸ—Ί

Info

This repository contains a Python script which generates via Folium library an interactive WebMAP of Greece.

I used some sample data to demonstrate

  • Volcanoes πŸ“Œ
  • Ports πŸ“Œ
  • Mountains πŸ“Œ
  • Ski resorts πŸ“Œ
  • Lakes πŸ“Œ

across the Greece.

The points on the map are interactive and you can click on them to display some valuable information.

The color of Volcanoes marker is defined via the following function. Basically the higher the elevation of a volcano is, the darker the color becames.

# Function to change the marker color  
# according to the elevation of volcano 
def color_producer(elev):
    if elev in range(0,300):
        color = "green"
    elif elev in range(301,600):
        color = "orange"
    else:
        color = "red"
    return color

There is also a layer control, in which you can choose what do you want to be displayed on the map. The layer control is located top right on your screen.

CodeFactor

Licensed under MIT License.

About

An interactive WebMap of Greece, to display various locations on the map with valuable information. πŸ“

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published