You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, thanks for the great package. I found this package today and got very excited about it. I have skimmed over the document with great enthusiasm. It is really what matplotlib should have become!
I am an astronomer, sometimes I need to plot the stars in the sky coordinate with a certain projection. (This is actually how I found your package :)
This task is pretty much the same as plotting a map of the world. So proplot seems very attractive for the task for its concise API (compared with cartopy).
However I found a small problem for my usage, the GeoAxes of proplot does not allow one to set xlabel and ylabel (as I have tried and if I understand correctly). I can understand when plotting the map on the earth, everyone knows the axes should be longitude and latitude, so it makes sense to ignore the labels. But in our case, astronomers frequently use different sky coordinates, e.g., based on the sun or the Milky Way location. So it is critical to label the axes that we use.
I am wondering if it is possible to enable setting xlabel and ylabel for GeoAxes. Thanks!
BTW, I found that I can play a trick by using the leftlabels and bottomlabels as alternatives of the xlabel and ylabel as a workaround, see the code below. They look just like normal xy labels in the right panel.
However, this trick is limited. It does not work well when I have multiple panels. For example, I can not change the order of defining the two subplots, unless I define labels for every panel through this trick.
Really appreciate the kind words! Very cool to hear someone from astronomy using this.
I can definitely add xlabel and ylabel as optional GeoAxes.format and PolarAxes.format keywords. Maybe will add this when resolving #79/#199. For now, it looks like you can use matplotlib's native setters to add axis labels:
importproplotasppltfig, ax=pplt.subplots(proj='robin')
ax.xaxis.set_visible(True) # cartopy sets this to Falseax.yaxis.set_visible(True)
ax.xaxis.set_ticks([])
ax.yaxis.set_ticks([])
ax.set_xlabel('very very long xlabel')
ax.set_ylabel('ylabel')
Hi, thanks for the great package. I found this package today and got very excited about it. I have skimmed over the document with great enthusiasm. It is really what matplotlib should have become!
I am an astronomer, sometimes I need to plot the stars in the sky coordinate with a certain projection. (This is actually how I found your package :)
This task is pretty much the same as plotting a map of the world. So proplot seems very attractive for the task for its concise API (compared with cartopy).
However I found a small problem for my usage, the
GeoAxes
of proplot does not allow one to set xlabel and ylabel (as I have tried and if I understand correctly). I can understand when plotting the map on the earth, everyone knows the axes should be longitude and latitude, so it makes sense to ignore the labels. But in our case, astronomers frequently use different sky coordinates, e.g., based on the sun or the Milky Way location. So it is critical to label the axes that we use.I am wondering if it is possible to enable setting xlabel and ylabel for
GeoAxes
. Thanks!My system:
BTW, I found that I can play a trick by using the leftlabels and bottomlabels as alternatives of the xlabel and ylabel as a workaround, see the code below. They look just like normal xy labels in the right panel.
However, this trick is limited. It does not work well when I have multiple panels. For example, I can not change the order of defining the two subplots, unless I define labels for every panel through this trick.
The text was updated successfully, but these errors were encountered: