user306080
user306080

Reputation: 1527

matplotlib plots in Cylindrical and Spherical coordinate systems

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

Answers (1)

psyprog
psyprog

Reputation: 48

May be it's useful for your task:http://matplotlib.org/basemap/users/cyl.html

Upvotes: 1

Related Questions