So an earthquake has happened... you have see some seismograms using the excellent Python Obsy toolkit and some simple scripts... now you want to plot a map or two. Simple location map created in Python using the Folium library import folium # setting the boundaries of the map and choosing a map style m = folium . Map ( location = [ 50.067 , - 5.187 ], zoom_start = 10 , tiles = 'Stamen Terrain' ) # put a marker on the map for the reported BGS earthquake location folium . Marker ( location = [ 50.067 , - 5.187 ], popup = 'quake' , icon = folium . Icon ( color = 'red' )) . add_to ( m ) # next add markers for the locations of all the seismic monitoring stations in Cornwall folium . Marker ( location = [ 50.1867 , - 5.2273 ], popup = 'BGS_CCA1' , icon = folium . Icon ( color = 'green' )) . add_to ( m ) folium . Marker ( location = [ 50.1486 , - 5.0945 ], popup = 'FL_RB30C' , icon = folium . Icon ( color = 'green...