import topotoolbox
import matplotlib.pyplot as plt
dem = topotoolbox.load_dem('perfectworld')
dilate = dem.dilate(size=10)
_= dilate.plot(cmap='terrain')
plt.show()
