Playback speed
×
Share post
Share post at current time
0:00
/
0:00

Paid episode

The full episode is only available to paid subscribers of Milan's Data Science Insights

Pangea on the Worldmap

#30DayMapChallenge - Day 12 - Time and space

Imports, data

import matplotlib.pyplot as plt
import geopandas as gpd

pangea = gpd.read_file('pangea.txt')
world = gpd.read_file('ne_10m_admin_0_countries/ne_10m_admin_0_countries.shp')

The Map

f, ax = plt.subplots(1,1,figsize=(15,5))

world.plot(column = 'CONTINENT', ax=ax, cmap = 'tab10', linewidth = 2, alpha = 0.5)
pangea.plot(ax=ax, color='lightgreen'…

This post is for paid subscribers