Widget for deck.gl maps
Project description
pydeck: Large-scale interactive data visualization in Python
The pydeck library is a set of Python bindings for making spatial visualizations with deck.gl, optimized for a Jupyter environment. To get started, see the documentation.
To install pydeck, see the instructions here.
For interactive demos, click the binder logo below:
Sample code
The following code renders a visualization similar to the one above in a Jupyter notebook:
import pydeck as pdk
# 2014 locations of car accidents in the UK
UK_ACCIDENTS_DATA = ('https://raw.githubusercontent.com/uber-common/'
'deck.gl-data/master/examples/3d-heatmap/heatmap-data.csv')
# Define a layer to display on a map
layer = pdk.Layer(
'HexagonLayer',
UK_ACCIDENTS_DATA,
get_position=['lng', 'lat'],
auto_highlight=True,
elevation_scale=50,
pickable=True,
elevation_range=[0, 3000],
extruded=True,
coverage=1)
# Set the viewport location
view_state = pdk.ViewState(
longitude=-1.415,
latitude=52.2323,
zoom=6,
min_zoom=5,
max_zoom=15,
pitch=40.5,
bearing=-27.36)
# Render
r = pdk.Deck(layers=[layer], initial_view_state=view_state)
r.to_html('demo.html')
If you're developing outside a Jupyter environment, you can run:
r.to_html('demo.html', notebook_display=False)
See the gallery for more examples.
Issues and contributing
If you encounter an issue, file it in the deck.gl issues page and include your browser's console output, if any.
If you'd like to contribute to pydeck, please follow the deck.gl contribution guidelines and the pydeck development installation instructions.
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 Distribution
Built Distribution
File details
Details for the file pydeck-0.9.1.tar.gz
.
File metadata
- Download URL: pydeck-0.9.1.tar.gz
- Upload date:
- Size: 3.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f74475ae637951d63f2ee58326757f8d4f9cd9f2a457cf42950715003e2cb605 |
|
MD5 | b7e8ffdaeeef00e9cbf776512cfb5f27 |
|
BLAKE2b-256 | a1ca40e14e196864a0f61a92abb14d09b3d3da98f94ccb03b49cf51688140dab |
File details
Details for the file pydeck-0.9.1-py2.py3-none-any.whl
.
File metadata
- Download URL: pydeck-0.9.1-py2.py3-none-any.whl
- Upload date:
- Size: 6.9 MB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b3f75ba0d273fc917094fa61224f3f6076ca8752b93d46faf3bcfd9f9d59b038 |
|
MD5 | cd04dee9189179ef80d2ec80be8d694e |
|
BLAKE2b-256 | ab4cb888e6cf58bd9db9c93f40d1c6be8283ff49d88919231afe93a6bcf61626 |