Changeset 28227


Ignore:
Timestamp:
04/17/24 16:43:39 (12 months ago)
Author:
Mathieu Morlighem
Message:

CHG: use colormap turbo by default instead of jet

Location:
issm/trunk-jpl/src/m/plot
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/plot/applyoptions.m

    r26314 r28227  
    139139if exist(options,'wrapping'),
    140140        if ~exist(options,'colormap'),
    141                 h=jet;
     141                h=turbo();
    142142        end
    143143        colormap(repmat(h,getfieldvalue(options,'wrapping',1),1));
  • issm/trunk-jpl/src/m/plot/colormaps/getcolormap.m

    r20968 r28227  
    55%      map = getcolormap(options)
    66
    7 %default is jet
     7%default is turbo
    88if ~exist(options,'colormap'),
    9         map = jet;
     9        map = turbo();
    1010        return
    1111end
  • issm/trunk-jpl/src/m/plot/plot_quiver3.m

    r13009 r28227  
    5151        c=[0 0 1;1 1 0;1 0 0];
    5252else
    53         %let jet choose
    54         c=colormap(jet(numcolors));
     53        %use turbo
     54        c=colormap(turbo(numcolors));
    5555end
    5656
  • issm/trunk-jpl/src/m/plot/plot_scatter.m

    r28098 r28227  
    6262                ylim = h.Limits;
    6363        end
    64         palette=jet();%colormap();
     64        palette=turbo();%colormap();
    6565        numcolors=size(palette,1);
    6666        levels=round_ice(linspace(ylim(1),ylim(2),numcolors+1),2);
  • issm/trunk-jpl/src/m/plot/quiver_process.m

    r13009 r28227  
    6666        palette=colormap([0 0 1;1 1 0;1 0 0]);
    6767else
    68         %let jet choose
    69         palette=colormap(jet(numcolors));
     68        %use turbo
     69        palette=colormap(turbo(numcolors));
    7070end
Note: See TracChangeset for help on using the changeset viewer.