答案1
PGFPlots 中定义了很多标准颜色图。有关详细信息,请参阅 PGFPlots 手册 (v1.14)
- 部分“预定义色彩图”这是第 194 页第 4.7.6 节的一个小节,
- 部分5.3 颜色图在第 419 页,这是同名库的描述,并提供了 Oliver Woodford 的免费 Matlab 包“SC——强大的图像渲染”的颜色图,以及
- 部分5.2 ColorBrewer它展示了如何访问著名的色彩图http://colorbrewer2.org。
当然,您也可以从头开始创建自己的颜色图,或者将现有颜色图或新创建的颜色图组合起来。这里我提供了一个从手动的
\documentclass[border=5pt]{standalone}
\usepackage{pgfplots}
\pgfplotsset{
compat=1.14,
}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
view={0}{90},
colormap={whiteblue}{color=(blue) color=(white)},
colormap={gb}{color=(green) color=(yellow)
color=(brown)},
colorbar horizontal,
colorbar style={minor x tick num=1},
y dir=reverse,
]
% The table file is packed into the archive
% `doc/latex/pgfplots/pgfplots.doc.src.tar.bz2'
\addplot3 [
contour filled={
levels from colormap={
of colormap={
whiteblue,
target pos max=,
target pos={-12000,-10000,-6000,
-5000,-3000,-1000,-750,-500,
-250,-100,-50,0}
},
of colormap={
gb,
target pos min=,
target pos={10,100,200,500,1000,
1100,1200, 1500,2000,4000,
6000,8000}
},
},
},
] table {heightmap.dat};
\end{axis}
\end{tikzpicture}
\end{document}