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
Instead of representing the information about tick and gridlines as
```
{
"lon_lines": [line, ...], # unused
"lat_lines": [line, ...],
"lon": [
"tick_levels": [level, ...],
"tick_locs": {"left": [(xy, angle), ...], "bottom": [(xy, angle), ...], ...},
"tick_labels": {"left": [label, ...], "bottom": [label, ...], ...},
"lines": [line, ...],
],
"lat": ..., # as for lon
}
```
where the locs and labels are implicitly associated by the iteration
order, group the information for each tick, and remove the redundant
gridlines info as well:
```
{
"lon": {
"lines": [line, ...],
"ticks": {
"left": [
{"level": level, "loc": (xy, angle), "label": label}, ...
],
"bottom": [...], ...,
}
}
"lat": ..., # as for lon
}
```
0 commit comments