cesiumpy icon indicating copy to clipboard operation
cesiumpy copied to clipboard

Lightweight Python wrapper of Cesium.js for 3D geospatial visualization

Results 15 cesiumpy issues
Sort by recently updated
recently updated
newest added

I tried to run this on a recent version of Jupyter notebook: ``` import cesiumpy v = cesiumpy.Viewer() v.entities.add(cesiumpy.Box(dimensions=(40e4, 30e4, 50e4), material=cesiumpy.color.RED, position=(-120, 40, 0))) v ``` But I get...

Currently, importing `cesiumpy` with geopy v2.0.0 or greater errors out. This is due to [this](https://github.com/geopy/geopy/commit/340999453ff6e28b2943544b92162858a1560d8d) change in v2.1.0 requiring an API key for geocoding. This PR lazily loads the geocoder...

Hello! I've been wanting to use the cesiumpy package, but have had problems similar to the 'Issues'. Following the cesiumjs tutorial, I made some changes to the cesiumpy code and...

On cesium you can normally add an entity and fly to that entity: ``` var wyoming = viewer.entities.add({ name: 'Wyoming', // polygon :: Cesium.PolygonGraphics polygon: { // polygon longitude and...

When trying to follow the tutorial within a Jupyter notebook, I noticed that I get an error: ``` import cesiumpy v = cesiumpy.Viewer() b = cesiumpy.Box(dimensions=(40e4, 30e4, 50e4), material=cesiumpy.color.RED, position=[-120,...

I'm testing cesiumpy both in Jupyter notebook and in html mode. It works as expected in Jupyter notebook after installing ipywidgets (pip install ipywidgets). In html, however, the viewer loads...

See https://github.com/AnalyticalGraphicsInc/cesium/issues/8050#issuecomment-519691044.

Hi there doesn't seem to be any support for time based animations except loading in a czml file. So entities don't seem to have the availability, epoch properties I don't...

We are interested in potentially building an extension for our [GeoViews](https://github.com/ioam/geoviews/) library on top of cesiumpy. I've started building a prototype and that all went fairly smoothly but in doing...

import cesiumpy v = cesiumpy.CesiumWidget() v I now get a widget with a globe on it. However, every time I click the cell output will get a bit bigger. If...