Metadata-Version: 1.0
Name: cesiumpy
Version: 0.3.1
Summary: python wrapper of cesium.js for 3D geospatial visualization
Home-page: http://cesiumpy.readthedocs.org/en/stable
Author: sinhrks
Author-email: sinhrks@gmail.com
License: Apache 2.0
Description: cesiumpy
        ========
        
        Lightweight Python wrapper for `Cesium.js <http://cesiumjs.org/>`_. Mainly intended to be used with ``Jupyter Notebook``.
        
        Installation
        ------------
        
        Use ``pip``.
        
        .. code-block:: sh
        
          pip install cesiumpy
        
        Example
        -------
        
        Running following script on ``Jupyter`` Notebook will show an embedded interactive 3D map.
        
        .. code-block:: python
        
          >>> import cesiumpy
        
          >>> v = cesiumpy.Viewer()
          >>> v.entities.add(cesiumpy.Box(dimensions=(40e4, 30e4, 50e4),
          ...                             material=cesiumpy.color.RED, position=(-120, 40, 0))
          >>> v
        
        .. image:: https://raw.githubusercontent.com/sinhrks/cesiumpy/master/doc/source/_static/viewer01.png
        
        Documentation
        -------------
        
        - http://cesiumpy.readthedocs.org/en/latest/
        
        Bundled Datasets
        ----------------
        
        - World countries: https://github.com/mledoze/countries (ODbL)
        
        Dependencies
        ------------
        
        - ``geopy``, ``traitlets``, ``six`` and ``enum34`` (Python 3.3 or earlier)
        - (Optional) ``scipy`` and ``shapely``
        
Platform: UNKNOWN
