In [4]:
import pandas as pd
import matplotlib.pyplot as plt
%matplotlib inline
In [5]:
birds = pd.read_csv('../../data/bird_tracking.csv')
In [6]:
birds.head()
Out[6]:
In [7]:
# TODO
Out[7]:
In [21]:
# TODO
Draw the flight route on Cartopy
conda install -c scitools cartopy=0.15.0
# or (if former does not work)
conda install -c conda-forge cartopy=0.15.1
In [10]:
import cartopy.crs as ccrs
Draw the flight route with PlateCarree-Projection
See TODOs, where to change/insert your code.
In [24]:
plt.figure(figsize=(10,10))
ax = plt.axes(projection=ccrs.PlateCarree())
ax.coastlines()
# TODO 1: comment in/out and see, what happens
# ax.set_extent((-25,20,52,10))
# TODO 2: draw the single tracks with title and legend as in Exercise 2
Draw the flight route with Mercator-Projection
Use Features to show
See TODOs, where to change/insert your code.
In [32]:
import cartopy.feature as cfeature
# TODO add your code here