Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
__pycache__
*.egg-info
.eggs
build
_build
dist
3 changes: 2 additions & 1 deletion pydeck_grid/contour.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def __init__(
global_wrap: bool, default False
Boolean indicating whether the grid is global and should be wrapped around the globe
color: str, default '#999999'
Uniform color of contour lines
Uniform color of contour lines, only takes effect if colormap is set to None
colormap: str or matplotlib.cm.ScalarMappable, default 'turbo'
Colormap to use for the grid as a matplotlib predefined colormap name or a matplotlib ScalarMappable
vmin: float, default 0.0
Expand Down Expand Up @@ -95,5 +95,6 @@ def __init__(
vmax=vmax,
levels=levels,
pickable=False,
linewidth=linewidth,
**kwargs,
)