trame-deckgl


Nametrame-deckgl JSON
Version 2.0.3 PyPI version JSON
download
home_pageNone
SummaryDeck.gl widget for trame
upload_time2024-03-19 22:34:11
maintainerNone
docs_urlNone
authorKitware Inc.
requires_pythonNone
licenseMIT
keywords python interactive web application framework
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            High-scale spatial rendering for trame
===========================================================================

.. image:: https://github.com/Kitware/trame-deckgl/actions/workflows/test_and_release.yml/badge.svg
    :target: https://github.com/Kitware/trame-deckgl/actions/workflows/test_and_release.yml
    :alt: Test and Release

trame-deckgl extend trame **widgets** with components that can interface with PyDeck while being powered by Deck.gl.
Deck integration in trame allow you to create rich visualization by leveraging `PyDeck <https://pydeck.gl/index.html>`_ (`Apache License <https://github.com/visgl/deck.gl/blob/master/bindings/pydeck/LICENSE.txt>`_).


Installing
-----------------------------------------------------------

trame-deckgl can be installed with `pip <https://pypi.org/project/trame-deckgl/>`_:

.. code-block:: bash

    pip install --upgrade trame-deckgl


Usage
-----------------------------------------------------------

The `Trame Tutorial <https://kitware.github.io/trame/docs/tutorial.html>`_ is the place to go to learn how to use the library and start building your own application.

The `API Reference <https://trame.readthedocs.io/en/latest/index.html>`_ documentation provides API-level documentation.


License
-----------------------------------------------------------

trame-deckgl is made available under the MIT License. For more details, see `LICENSE <https://github.com/Kitware/trame-deckgl/blob/master/LICENSE>`_
This license has been chosen to match the one use by `Deck.gl <https://github.com/visgl/deck.gl/blob/master/LICENSE>`_ which is use within trame-deckgl.


Community
-----------------------------------------------------------

`Trame <https://kitware.github.io/trame/>`_ | `Discussions <https://github.com/Kitware/trame/discussions>`_ | `Issues <https://github.com/Kitware/trame/issues>`_ | `RoadMap <https://github.com/Kitware/trame/projects/1>`_ | `Contact Us <https://www.kitware.com/contact-us/>`_

.. image:: https://zenodo.org/badge/410108340.svg
    :target: https://zenodo.org/badge/latestdoi/410108340


Enjoying trame?
-----------------------------------------------------------

Share your experience `with a testimonial <https://github.com/Kitware/trame/issues/18>`_ or `with a brand approval <https://github.com/Kitware/trame/issues/19>`_.


Example: PyDeck
-----------------------------------------------------------

The Deck component relies on the server for generating the map definition.

.. code-block:: python

    import pydeck as pdk
    from trame.widgets import deckgl

    deck = pdk.Deck(
      map_provider="mapbox",
      map_style="mapbox://styles/mapbox/light-v9",
      initial_view_state={
          "latitude": 37.76,
          "longitude": -122.4,
          "zoom": 11,
          "pitch": 50,
      },
      layers=selected_layers,
    )

    widget = deckgl.Deck(mapboxApiKey=..., deck=deck)
    widget.update(deck2)

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "trame-deckgl",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "Python, Interactive, Web, Application, Framework",
    "author": "Kitware Inc.",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/03/3e/4374367947bf59923f58d9d432b8003470b22fe58ddea595c489b4ddcbc6/trame-deckgl-2.0.3.tar.gz",
    "platform": null,
    "description": "High-scale spatial rendering for trame\n===========================================================================\n\n.. image:: https://github.com/Kitware/trame-deckgl/actions/workflows/test_and_release.yml/badge.svg\n    :target: https://github.com/Kitware/trame-deckgl/actions/workflows/test_and_release.yml\n    :alt: Test and Release\n\ntrame-deckgl extend trame **widgets** with components that can interface with PyDeck while being powered by Deck.gl.\nDeck integration in trame allow you to create rich visualization by leveraging `PyDeck <https://pydeck.gl/index.html>`_ (`Apache License <https://github.com/visgl/deck.gl/blob/master/bindings/pydeck/LICENSE.txt>`_).\n\n\nInstalling\n-----------------------------------------------------------\n\ntrame-deckgl can be installed with `pip <https://pypi.org/project/trame-deckgl/>`_:\n\n.. code-block:: bash\n\n    pip install --upgrade trame-deckgl\n\n\nUsage\n-----------------------------------------------------------\n\nThe `Trame Tutorial <https://kitware.github.io/trame/docs/tutorial.html>`_ is the place to go to learn how to use the library and start building your own application.\n\nThe `API Reference <https://trame.readthedocs.io/en/latest/index.html>`_ documentation provides API-level documentation.\n\n\nLicense\n-----------------------------------------------------------\n\ntrame-deckgl is made available under the MIT License. For more details, see `LICENSE <https://github.com/Kitware/trame-deckgl/blob/master/LICENSE>`_\nThis license has been chosen to match the one use by `Deck.gl <https://github.com/visgl/deck.gl/blob/master/LICENSE>`_ which is use within trame-deckgl.\n\n\nCommunity\n-----------------------------------------------------------\n\n`Trame <https://kitware.github.io/trame/>`_ | `Discussions <https://github.com/Kitware/trame/discussions>`_ | `Issues <https://github.com/Kitware/trame/issues>`_ | `RoadMap <https://github.com/Kitware/trame/projects/1>`_ | `Contact Us <https://www.kitware.com/contact-us/>`_\n\n.. image:: https://zenodo.org/badge/410108340.svg\n    :target: https://zenodo.org/badge/latestdoi/410108340\n\n\nEnjoying trame?\n-----------------------------------------------------------\n\nShare your experience `with a testimonial <https://github.com/Kitware/trame/issues/18>`_ or `with a brand approval <https://github.com/Kitware/trame/issues/19>`_.\n\n\nExample: PyDeck\n-----------------------------------------------------------\n\nThe Deck component relies on the server for generating the map definition.\n\n.. code-block:: python\n\n    import pydeck as pdk\n    from trame.widgets import deckgl\n\n    deck = pdk.Deck(\n      map_provider=\"mapbox\",\n      map_style=\"mapbox://styles/mapbox/light-v9\",\n      initial_view_state={\n          \"latitude\": 37.76,\n          \"longitude\": -122.4,\n          \"zoom\": 11,\n          \"pitch\": 50,\n      },\n      layers=selected_layers,\n    )\n\n    widget = deckgl.Deck(mapboxApiKey=..., deck=deck)\n    widget.update(deck2)\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Deck.gl widget for trame",
    "version": "2.0.3",
    "project_urls": null,
    "split_keywords": [
        "python",
        " interactive",
        " web",
        " application",
        " framework"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b3bbcc599b76a4354703d9868075c341aaf5249f6b6d585243f9f3d40326b11",
                "md5": "05a32b527b8495e1ead1a48eb2d5fc83",
                "sha256": "56bc537e6e06861c82b949ce70ef6957762dd502caf9d33ff53ff9d0198fbc79"
            },
            "downloads": -1,
            "filename": "trame_deckgl-2.0.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "05a32b527b8495e1ead1a48eb2d5fc83",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 708688,
            "upload_time": "2024-03-19T22:34:09",
            "upload_time_iso_8601": "2024-03-19T22:34:09.480660Z",
            "url": "https://files.pythonhosted.org/packages/2b/3b/bcc599b76a4354703d9868075c341aaf5249f6b6d585243f9f3d40326b11/trame_deckgl-2.0.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "033e4374367947bf59923f58d9d432b8003470b22fe58ddea595c489b4ddcbc6",
                "md5": "539bdcc324159bee2fcc4e1b1955bf0b",
                "sha256": "0eeb3aa4e3f62c1380c7a8afde3f0530db72e9b145895c3e23ac557709949194"
            },
            "downloads": -1,
            "filename": "trame-deckgl-2.0.3.tar.gz",
            "has_sig": false,
            "md5_digest": "539bdcc324159bee2fcc4e1b1955bf0b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 706434,
            "upload_time": "2024-03-19T22:34:11",
            "upload_time_iso_8601": "2024-03-19T22:34:11.512572Z",
            "url": "https://files.pythonhosted.org/packages/03/3e/4374367947bf59923f58d9d432b8003470b22fe58ddea595c489b4ddcbc6/trame-deckgl-2.0.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-19 22:34:11",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "trame-deckgl"
}
        
Elapsed time: 0.20567s