0

I need to create graph which will look like this example. Tanaka contours

Now I am using very similar solution by this code:

plt.contourf(xi, yi, zi,15, cmap=plt.cm.Reds,alpha=0.5, vmin=0, vmax=0.1)
plt.contour(xi, yi, zi, 15, colors='k',alpha=1, linewidths=0.4, vmin=0, vmax=0.1)

This is how it looks like: actual solution

Is somehow possible to use "tanaka contours" (very similar to terrain) in Matplotlib?

Roman Šimr
  • 81
  • 1
  • 10
  • quick google search. Have you tried to start [here](https://anitagraser.com/2015/05/24/how-to-create-illuminated-contours-tanaka-style/)? – CAPSLOCK Jun 19 '19 at 09:12
  • Matplotlib has some example code [here](https://matplotlib.org/examples/specialty_plots/topographic_hillshading.html) for a similar problem. – Paul Brodersen Jun 19 '19 at 13:47

0 Answers0