import topotoolbox
import matplotlib.pyplot as plt
dem = topotoolbox.load_dem('perfectworld')
hillshade = dem.hillshade()
_= hillshade.plot(cmap='gray')
_= dem.plot(cmap='terrain', alpha=0.2)
plt.show()
