Skip to content

Commit

Permalink
solo.qli: Make consistent with updated irf_spectrogram()
Browse files Browse the repository at this point in the history
Change to make consistent with updated irf_spectrogram() behaviour.

irf_spectrogram()'s behaviour when being instructed to *do a log plot*
(w.r.t. to color/intensity) was updated
(a) from doing linear plot if data contained negative values,
(b) to always doing log plot

Changed call (ellipticity):
irf_spectrogram(h(4), Specrec, 'log', 'donotfitcolorbarlabel');
log --> lin

modified:   generate_quicklooks_24h_6h_2h.m
  • Loading branch information
ErikPGJ committed Jan 20, 2025
1 parent 218f636 commit 6487658
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ function generate_quicklooks_24h_6h_2h(Data, OutputPaths, Tint24h, logoPath)
Specrec.p = ellipticity;
Specrec.f_label = '';
Specrec.p_label = {'Ellipticity', 'DOP>0.7'};
irf_spectrogram(h(4), Specrec, 'log', 'donotfitcolorbarlabel');
irf_spectrogram(h(4), Specrec, 'lin', 'donotfitcolorbarlabel');
set( h(4), 'yscale', 'log');
% set(h(1), 'ytick', [1e1 1e2 1e3]);
caxis( h(4), [-1 1])
Expand Down

0 comments on commit 6487658

Please sign in to comment.