import topotoolbox
import matplotlib.pyplot as plt
dem = topotoolbox.load_dem('perfectworld')
filled_dem = dem.fillsinks()
_= filled_dem.plot(cmap='terrain')
plt.show()
