Plotting 2 different color maps on one world map
Is it possible to plot 2 different color maps on the worldmap figure? I have a .tif file and a .nc file that are both color scales and I want to overlay them. Currently the code I have will plot them both, but using the same color scale:
figure
hold on
worldmap([69,79], [-167,-117])
colormap(‘bone’);
geoshow([.tif file] A2,R2,DisplayType="surface")
colorbar
colormap(‘winter’)
geoshow([.nc file],,’DisplayType’,’surface’, ‘FaceAlpha’, 0.2)
colorbar
Is there any way to have 2 different colormaps? Thank you!Is it possible to plot 2 different color maps on the worldmap figure? I have a .tif file and a .nc file that are both color scales and I want to overlay them. Currently the code I have will plot them both, but using the same color scale:
figure
hold on
worldmap([69,79], [-167,-117])
colormap(‘bone’);
geoshow([.tif file] A2,R2,DisplayType="surface")
colorbar
colormap(‘winter’)
geoshow([.nc file],,’DisplayType’,’surface’, ‘FaceAlpha’, 0.2)
colorbar
Is there any way to have 2 different colormaps? Thank you! Is it possible to plot 2 different color maps on the worldmap figure? I have a .tif file and a .nc file that are both color scales and I want to overlay them. Currently the code I have will plot them both, but using the same color scale:
figure
hold on
worldmap([69,79], [-167,-117])
colormap(‘bone’);
geoshow([.tif file] A2,R2,DisplayType="surface")
colorbar
colormap(‘winter’)
geoshow([.nc file],,’DisplayType’,’surface’, ‘FaceAlpha’, 0.2)
colorbar
Is there any way to have 2 different colormaps? Thank you! geoshow, colormap, worldmap MATLAB Answers — New Questions