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