1 // Copyright ©2017 The Gonum Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 // Some descriptive text is taken from http://www.kennethmoreland.com/, 6 // ©2009--2016 Kenneth Moreland. 7 8 // Color conversion functions are largely based on a spreadsheet 9 // (http://www.kennethmoreland.com/color-maps/DivergingColorMapWorkshop.xls) 10 // and a Python script (http://www.kennethmoreland.com/color-maps/diverging_map.py), 11 // which are copyright their respective authors. 12 13 // Package moreland provides color maps for pseudocoloring scalar fields. 14 // The color maps are described at http://www.kennethmoreland.com/color-advice/ 15 // and in the following publications: 16 // 17 // "Why We Use Bad Color Maps and What You Can Do About It." Kenneth Moreland. 18 // In Proceedings of Human Vision and Electronic Imaging (HVEI), 2016. (To appear) 19 // 20 // "Diverging Color Maps for Scientific Visualization." Kenneth Moreland. 21 // In Proceedings of the 5th International Symposium on Visual Computing, 22 // December 2009. DOI 10.1007/978-3-642-10520-3_9. 23 package moreland // import "gonum.org/v1/plot/palette/moreland" 24