czml3


Nameczml3 JSON
Version 2.2.2 PyPI version JSON
download
home_pageNone
SummaryPython 3 library to write CZML
upload_time2024-12-23 09:55:22
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseBSD-3-Clause license Copyright (c) 2015-2024, czml3 contributors All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
keywords czml cesium
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # czml3
[![pypi](https://img.shields.io/pypi/v/czml3)](https://pypi.org/project/czml3/)
[![conda](https://img.shields.io/conda/vn/conda-forge/czml3?label=conda)](https://anaconda.org/conda-forge/czml3)
![Python](https://img.shields.io/pypi/pyversions/czml3)
[![codecov](https://codecov.io/gh/Stoops-ML/czml3/graph/badge.svg?token=EF8SIL2JBV)](https://codecov.io/gh/Stoops-ML/czml3)
![pypi-downloads](https://img.shields.io/pepy/dt/czml3?label=pypi%20downloads)
![conda-downloads](https://img.shields.io/conda/dn/conda-forge/czml3?label=conda%20downloads)
![workflow-status](https://img.shields.io/github/actions/workflow/status/Stoops-ML/czml3/workflow.yml)
[![Documentation Status](https://readthedocs.org/projects/czml3/badge)](https://czml3.readthedocs.io/en)

From the official [CZML Guide](https://github.com/AnalyticalGraphicsInc/czml-writer/wiki/CZML-Guide):
> CZML is a JSON format for describing a time-dynamic graphical scene, primarily for display in a web browser running Cesium. It describes lines, points, billboards, models, and other graphical primitives, and specifies how they change with time.

czml3 aims to make the process of writing CZML files in Python easy by:
- Type checking properties
- Cooercion of data to their required format
- Creating minimal CZML files

## Insallation
You can install czml3 using pip:
```
pip install czml3
```

or conda:
```
conda install czml3 --channel conda-forge
```

## Examples
A CZML document is a list of *packets*, which have several properties. Recreating the blue box from Cesium sandcastle's [CZML Box](https://sandcastle.cesium.com/?src=CZML%20Box.html&label=CZML):

```
from czml3 import CZML_VERSION, Document, Packet
from czml3.properties import (
    Box,
    BoxDimensions,
    Color,
    Material,
    Position,
    SolidColorMaterial,
)
from czml3.types import Cartesian3Value
packet_box = Packet(
    id="my_id",
    position=Position(cartographicDegrees=[-114.0, 40.0, 300000.0]),
    box=Box(
        dimensions=BoxDimensions(
            cartesian=Cartesian3Value(values=[400000.0, 300000.0, 500000.0])
        ),
        material=Material(
            solidColor=SolidColorMaterial(color=Color(rgba=[0, 0, 255, 255]))
        ),
    ),
)
doc = Document(
    packets=[Packet(id="document", name="box", version=CZML_VERSION), packet_box]
)
print(doc)
```
```
[
    {
        "id": "document",
        "name": "box",
        "version": "1.0"
    },
    {
        "id": "my_id",
        "position": {
            "cartographicDegrees": [
                -114.0,
                40.0,
                300000.0
            ]
        },
        "box": {
            "dimensions": {
                "cartesian": [
                    400000.0,
                    300000.0,
                    500000.0
                ]
            },
            "material": {
                "solidColor": {
                    "color": {
                        "rgba": [
                            0.0,
                            0.0,
                            255.0,
                            255.0
                        ]
                    }
                }
            }
        }
    }
]
```

czml3 uses [pydantic](https://docs.pydantic.dev/latest/) for all classes. As such czml3 is able to [coerce data to their right type](https://docs.pydantic.dev/latest/why/#json-schema). For example, the following creates a Position property of doubles using a numpy array of interger type:
```
import numpy as np
from czml3.properties import Position
print(Position(cartographicDegrees=np.array([-114, 40, 300000], dtype=int)))
```
```
{
    "cartographicDegrees": [
        -114.0,
        40.0,
        300000.0
    ]
}
```

## Contributing
You want to contribute? Awesome! There are lots of [CZML properties](https://github.com/AnalyticalGraphicsInc/czml-writer/wiki/Packet) and validations that we still did not implement, which can be found [here](https://czml3.readthedocs.io/en/latest/user/contributing.html).

All ideas welcome!

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "czml3",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "czml, cesium",
    "author": null,
    "author_email": "Daniel Stoops <danielstoops25@gmail.com>, Juan Luis Cano Rodr\u00edguez <hello@juanlu.space>",
    "download_url": "https://files.pythonhosted.org/packages/5a/f5/a2dcd025cef2a286e13a19d6feb637ba817ae958fbae817d91b9940d7bdf/czml3-2.2.2.tar.gz",
    "platform": null,
    "description": "# czml3\n[![pypi](https://img.shields.io/pypi/v/czml3)](https://pypi.org/project/czml3/)\n[![conda](https://img.shields.io/conda/vn/conda-forge/czml3?label=conda)](https://anaconda.org/conda-forge/czml3)\n![Python](https://img.shields.io/pypi/pyversions/czml3)\n[![codecov](https://codecov.io/gh/Stoops-ML/czml3/graph/badge.svg?token=EF8SIL2JBV)](https://codecov.io/gh/Stoops-ML/czml3)\n![pypi-downloads](https://img.shields.io/pepy/dt/czml3?label=pypi%20downloads)\n![conda-downloads](https://img.shields.io/conda/dn/conda-forge/czml3?label=conda%20downloads)\n![workflow-status](https://img.shields.io/github/actions/workflow/status/Stoops-ML/czml3/workflow.yml)\n[![Documentation Status](https://readthedocs.org/projects/czml3/badge)](https://czml3.readthedocs.io/en)\n\nFrom the official [CZML Guide](https://github.com/AnalyticalGraphicsInc/czml-writer/wiki/CZML-Guide):\n> CZML is a JSON format for describing a time-dynamic graphical scene, primarily for display in a web browser running Cesium. It describes lines, points, billboards, models, and other graphical primitives, and specifies how they change with time.\n\nczml3 aims to make the process of writing CZML files in Python easy by:\n- Type checking properties\n- Cooercion of data to their required format\n- Creating minimal CZML files\n\n## Insallation\nYou can install czml3 using pip:\n```\npip install czml3\n```\n\nor conda:\n```\nconda install czml3 --channel conda-forge\n```\n\n## Examples\nA CZML document is a list of *packets*, which have several properties. Recreating the blue box from Cesium sandcastle's [CZML Box](https://sandcastle.cesium.com/?src=CZML%20Box.html&label=CZML):\n\n```\nfrom czml3 import CZML_VERSION, Document, Packet\nfrom czml3.properties import (\n    Box,\n    BoxDimensions,\n    Color,\n    Material,\n    Position,\n    SolidColorMaterial,\n)\nfrom czml3.types import Cartesian3Value\npacket_box = Packet(\n    id=\"my_id\",\n    position=Position(cartographicDegrees=[-114.0, 40.0, 300000.0]),\n    box=Box(\n        dimensions=BoxDimensions(\n            cartesian=Cartesian3Value(values=[400000.0, 300000.0, 500000.0])\n        ),\n        material=Material(\n            solidColor=SolidColorMaterial(color=Color(rgba=[0, 0, 255, 255]))\n        ),\n    ),\n)\ndoc = Document(\n    packets=[Packet(id=\"document\", name=\"box\", version=CZML_VERSION), packet_box]\n)\nprint(doc)\n```\n```\n[\n    {\n        \"id\": \"document\",\n        \"name\": \"box\",\n        \"version\": \"1.0\"\n    },\n    {\n        \"id\": \"my_id\",\n        \"position\": {\n            \"cartographicDegrees\": [\n                -114.0,\n                40.0,\n                300000.0\n            ]\n        },\n        \"box\": {\n            \"dimensions\": {\n                \"cartesian\": [\n                    400000.0,\n                    300000.0,\n                    500000.0\n                ]\n            },\n            \"material\": {\n                \"solidColor\": {\n                    \"color\": {\n                        \"rgba\": [\n                            0.0,\n                            0.0,\n                            255.0,\n                            255.0\n                        ]\n                    }\n                }\n            }\n        }\n    }\n]\n```\n\nczml3 uses [pydantic](https://docs.pydantic.dev/latest/) for all classes. As such czml3 is able to [coerce data to their right type](https://docs.pydantic.dev/latest/why/#json-schema). For example, the following creates a Position property of doubles using a numpy array of interger type:\n```\nimport numpy as np\nfrom czml3.properties import Position\nprint(Position(cartographicDegrees=np.array([-114, 40, 300000], dtype=int)))\n```\n```\n{\n    \"cartographicDegrees\": [\n        -114.0,\n        40.0,\n        300000.0\n    ]\n}\n```\n\n## Contributing\nYou want to contribute? Awesome! There are lots of [CZML properties](https://github.com/AnalyticalGraphicsInc/czml-writer/wiki/Packet) and validations that we still did not implement, which can be found [here](https://czml3.readthedocs.io/en/latest/user/contributing.html).\n\nAll ideas welcome!\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause license Copyright (c) 2015-2024, czml3 contributors All rights reserved.  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ",
    "summary": "Python 3 library to write CZML",
    "version": "2.2.2",
    "project_urls": {
        "Documentation": "https://czml3.readthedocs.io/en",
        "Repository": "https://github.com/Stoops-ML/czml3"
    },
    "split_keywords": [
        "czml",
        " cesium"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6bdc4a2765780724db9be022bc7147c2202e3f8148a42c25a80530c23b2813ba",
                "md5": "c8288f2b04d9e77ec25b8dfbc63b3589",
                "sha256": "617d230c9d3ae872036498cb3d7be48eac62822584652738124f398d2dad094c"
            },
            "downloads": -1,
            "filename": "czml3-2.2.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c8288f2b04d9e77ec25b8dfbc63b3589",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 26230,
            "upload_time": "2024-12-23T09:55:19",
            "upload_time_iso_8601": "2024-12-23T09:55:19.811548Z",
            "url": "https://files.pythonhosted.org/packages/6b/dc/4a2765780724db9be022bc7147c2202e3f8148a42c25a80530c23b2813ba/czml3-2.2.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5af5a2dcd025cef2a286e13a19d6feb637ba817ae958fbae817d91b9940d7bdf",
                "md5": "9f8b668fc0031eb3860bf19c8ec1238a",
                "sha256": "f6755ddbe775e47576248ed1efd595faafbf3f82278fa96e55ac0af221a1849b"
            },
            "downloads": -1,
            "filename": "czml3-2.2.2.tar.gz",
            "has_sig": false,
            "md5_digest": "9f8b668fc0031eb3860bf19c8ec1238a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 113406,
            "upload_time": "2024-12-23T09:55:22",
            "upload_time_iso_8601": "2024-12-23T09:55:22.376923Z",
            "url": "https://files.pythonhosted.org/packages/5a/f5/a2dcd025cef2a286e13a19d6feb637ba817ae958fbae817d91b9940d7bdf/czml3-2.2.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-23 09:55:22",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Stoops-ML",
    "github_project": "czml3",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "czml3"
}
        
Elapsed time: 0.82704s