Reputation: 1527
For example, if I wanted to create polar coordinates plot I could use this code:
self.axes = self.figure.add_subplot(111, projection='polar')
But I did not find any 'Cylindrical' or 'Spherical' projections.
Does anyone know how to create these plots?
Upvotes: 1
Views: 2540
Reputation: 48
May be it's useful for your task:http://matplotlib.org/basemap/users/cyl.html
Upvotes: 1