Using a large coverage of the digital elevation of the earth (DEM) such as https://edcintl.cr.usgs.gov/downloads/sciweb1/shared/hydrosheds/sa_15s_zip_grid/na_dem_15s_grid.zip or https://pangeo-data.github.io/pangeo-datastore/master/hydro.html#collapse1-hydrosheds_dem
What is best way to include colors from raster overlaying map … or better yet draping a map on the 3D representation of the surface of the digital elevation. Thanks John
Hey @jjpantano ,
Welcome to the forum
Can you see if Pydeck provides the features that you need?
Layer Overview and Examples — pydeck 0.8.0b4 documentation
We’ve just released Streamlit v0.53.0 with support for all DeckGL features. Just use Pydeck instead of st.deck_gl_chart .
The goals is for this to replace st.deck_gl_chart , since it does everything the old API did and much more!
Highlights:
Support for all DeckGL features! Just use Pydeck instead of st.deck_gl_chart . To do that, simply pass a PyDeck object to st.pydeck_chart , st.write , or magic .
Note that as a preview release things may change in the near future.
Looking forward to hearing input from the community before we stabilize the
API!
The goals is for this to replace st.deck_gl_chart, since it
is does everything the old API did and much more!
Better handling of Streamlit upgrades whi…