A Python package mapping 2D coordinates to colors based on different 2D color maps.
Project description
Colormap 2D Python Package
This package allows to map 2D coordinates to different 2D color maps.
The following color maps are available:
ColorMap2DBremm | ColorMap2DCubeDiagonal | ColorMap2DSchumann |
ColorMap2DSteiger | ColorMap2DTeuling2 | ColorMap2DZiegler |
The package is based on
M. Steiger, J. Bernard, S. Thum, S. Mittelstädt, M. Hutter, D. A. Keim, and J. Kohlhammer, “Explorative Analysis of 2D Color Maps,” in International Conferences in Central Europe on Computer Graphics, Visualization and Computer Vision, 2015, vol. 23, pp. 151–160.**
For a JavaScript implementation, refer to the Color2D project by Dominik Jäckle.
Example
Basic usage with normalized inputs (i.e., x- and y-coordinates ranging from 0 to 1):
from pycolormap_2d import ColorMap2DBremm
# Create the color map object.
cmap = ColorMap2DBremm()
# Get the color value.
color = cmap(0.2, 0.6)
Optionally, ranges for the input x and y input ranges can be passed during object creation:
from pycolormap_2d import ColorMap2DBremm
# Create the color map object.
cmap = ColorMap2DBremm(range_x=(-10, 30), range_y=(1, 11))
# Get the color value.
color = cmap(10.0, 8.5)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file pycolormap_2d-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: pycolormap_2d-1.0.0-py3-none-any.whl
- Upload date:
- Size: 1.3 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.7.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 399355d71dd756f83b0524a71f0fc58e34464dea07b8690de7c1f384ebb3699f |
|
MD5 | b36f26d1b09024afb7fc2a163007f9f4 |
|
BLAKE2b-256 | a78f75a1e63f1eafa6b837822b9993ba2031e3aa2de4ab3593f2dde54e44cd91 |