Is it possible to add an optional `ax` argument to the `plot_trajan_spectra`[https://github.com/OpenDrift/trajan/blob/main/trajan/plot/spectra.py](url) method? I think this would be convenient for simple comparison against model results, like ``` fig,ax = plt.subplots(nrows=2,sharex=True,sharey=True) model_1d_spectra.plot(ax=ax[0],x='time') plot_trajan_spectra(ds_obs.isel(trajectory=range(9,10)),ax=ax[1]) ```