答え1
PGFPlots には多くの標準カラーマップが定義されています。PGFPlots マニュアル (v1.14) を参照してください。
- セクション「定義済みカラーマップ」これは194ページのセクション4.7.6のサブセクションです。
- セクション5.3 カラーマップ419ページには、同じ名前のライブラリの説明があり、オリバー・ウッドフォードの無料のMatlabパッケージ「SC - 強力な画像レンダリング」のカラーマップを提供しています。
- セクション5.2 カラーブリューワーこれは有名なカラーマップにアクセスする方法を示しています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}