Cylindrical coordinates plot?

Does anyone know of a Python tool for generating graphs using cylindrical coordinates using Matplotlib or another package?

Example:

enter image description here

Image Credit: http://www.trb.org/Main/Blurbs/170608.aspx

+3


source to share


2 answers


I believe you can use basemap toolkit

to do cylindrical projections.

Here is the link to the page basemap toolkit



The desired is projection

installed with a keyword projection

. Default value cyl

. There are also several other supported predictions that you might be interested in.

+1


source


To answer my own question a bit, there is no Python package that can make this graph out of the box.



I contacted the authors of the report and found out that the original plot was created using Processing.

+1


source







All Articles