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
I heard from @nsevilla that it was not obvious how to change the x/y tick label size. Right now it uses the setting plt.rcParams['[x|y]tick.labelsize'] provided that was set prior to creating the skyproj. This is (a) not documented; (b) not obvious; (c) requires clobbering your general preferences.
I will add documentation about this, as well as adding overrides on initialization such that you can do something like sp = skyproj.McBrydeSkyproj(ax=ax, xtick_labelsize=XX, ytick_labelsize=YY) which should be a more obvious API.
The text was updated successfully, but these errors were encountered:
Interesting question. Right now only xtick.labelsize, ytick.labelsize, and axes.linewidth are the only rc params that have been hard-coded into the map making. So these (at least) should have special handling at initialization, I think. If the user sent in a full rcparams dict I'm not sure how to make use of that for all the myriad options without clobbering the overall globals.
I heard from @nsevilla that it was not obvious how to change the x/y tick label size. Right now it uses the setting
plt.rcParams['[x|y]tick.labelsize']
provided that was set prior to creating the skyproj. This is (a) not documented; (b) not obvious; (c) requires clobbering your general preferences.I will add documentation about this, as well as adding overrides on initialization such that you can do something like
sp = skyproj.McBrydeSkyproj(ax=ax, xtick_labelsize=XX, ytick_labelsize=YY)
which should be a more obvious API.The text was updated successfully, but these errors were encountered: