Pydeck wrapper for use with CARTO
Project description
pydeck-carto
Pydeck wrapper for use with CARTO
Install
pip install pydeck-carto
This also ensures pydeck is installed. If you haven't previously enabled pydeck to be used with Jupyter, follow its instructions to install.
Installing from source
git clone https://github.com/visgl/deck.gl
cd deck.gl/bindings/pydeck-carto
pip install .
Usage
import pydeck as pdk
from carto_auth import CartoAuth
from pydeck_carto import register_carto_layer, get_layer_credentials, notify_error
from pydeck_carto.layer import MapType, CartoConnection
# Authentication with CARTO
carto_auth = CartoAuth.from_oauth()
# Register CartoLayer in pydeck
register_carto_layer()
# Render CartoLayer in pydeck
layer = pdk.Layer(
"CartoLayer",
data="SELECT geom, name FROM carto-demo-data.demo_tables.airports",
type_=MapType.QUERY,
connection=CartoConnection.CARTO_DW,
credentials=get_layer_credentials(carto_auth),
get_fill_color=[238, 77, 90],
point_radius_min_pixels=2.5,
pickable=True,
on_data_error=notify_error(),
)
view_state = pdk.ViewState(latitude=0, longitude=0, zoom=1)
pdk.Deck(layer, map_style=pdk.map_styles.ROAD, initial_view_state=view_state)
For more information, check the examples section.
Development
Make commands:
- init: create the environment and install dependencies
- lint: run linter (black + flake8)
- test: run tests (pytest)
- publish-pypi: publish package in pypi.org
- publish-test-pypi: publish package in test.pypi.org
- clean: remove the environment
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
pydeck-carto-0.1.0b6.tar.gz
(4.3 kB
view hashes)
Built Distribution
Close
Hashes for pydeck_carto-0.1.0b6-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8919c4f561eac358579ca1b808c8d48456ab523a03fa9ee9a97f8ab685ec6548 |
|
MD5 | 03bd22850c71d8714b35f2e13408e989 |
|
BLAKE2b-256 | a84555ae7be7da6133aec357f63b15bcdc5a3dc41e52ec0a753c86bb6ac17015 |