Currently, Raster.plot forces the aspect to be "equal" (see here). While this makes sense in most cases, one may want to set a different aspect (e.g. when plotting data in lat/lon).
A quick fix is to check whether "aspect" is set in the kwargs, and use that in priority, otherwise revert to the default "equal".
One can also easily overwrite it with ax.set_aspect() afterwards, so this is not a big issue.
Currently, Raster.plot forces the aspect to be "equal" (see here). While this makes sense in most cases, one may want to set a different aspect (e.g. when plotting data in lat/lon).
A quick fix is to check whether "aspect" is set in the kwargs, and use that in priority, otherwise revert to the default "equal".
One can also easily overwrite it with
ax.set_aspect()afterwards, so this is not a big issue.