czml3


Nameczml3 JSON
Version 2.2.0 PyPI version JSON
download
home_pageNone
SummaryPython 3 library to write CZML
upload_time2024-12-19 16:33:28
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseMIT
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)
![conda](https://img.shields.io/conda/vn/conda-forge/czml3?label=conda)
![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)
![license](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)

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 that only contains fields with information

## 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",  # fixing id here to ensure test passes
    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](MissingProperties.md).

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/72/29/7d261665e40bd5c8334e6bf84886d45ddc75e1a216d3a888606b1c09f391/czml3-2.2.0.tar.gz",
    "platform": null,
    "description": "# czml3\n![pypi](https://img.shields.io/pypi/v/czml3)\n![conda](https://img.shields.io/conda/vn/conda-forge/czml3?label=conda)\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![license](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)\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 that only contains fields with information\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\",  # fixing id here to ensure test passes\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](MissingProperties.md).\n\nAll ideas welcome!\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Python 3 library to write CZML",
    "version": "2.2.0",
    "project_urls": {
        "Changelog": "https://github.com/Stoops-ML/czml3/blob/main/CHANGELOG.md",
        "Homepage": "https://github.com/Stoops-ML/czml3",
        "Issues": "https://github.com/Stoops-ML/czml3/issues",
        "Repository": "https://github.com/Stoops-ML/czml3"
    },
    "split_keywords": [
        "czml",
        " cesium"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "920480fffb2b29d9dd7d7e80b7250056b9edf56ec27c9781cb43b4feddf7fb21",
                "md5": "9d84525c55816634cd891b966949cee3",
                "sha256": "56af85f8395735dbd1c068d38894fc41e06c76d815f4a523b9bea999ebdd8470"
            },
            "downloads": -1,
            "filename": "czml3-2.2.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "9d84525c55816634cd891b966949cee3",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 24143,
            "upload_time": "2024-12-19T16:33:26",
            "upload_time_iso_8601": "2024-12-19T16:33:26.479285Z",
            "url": "https://files.pythonhosted.org/packages/92/04/80fffb2b29d9dd7d7e80b7250056b9edf56ec27c9781cb43b4feddf7fb21/czml3-2.2.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "72297d261665e40bd5c8334e6bf84886d45ddc75e1a216d3a888606b1c09f391",
                "md5": "e32f91f07c7a32ace90fee4d95430176",
                "sha256": "acaf749fd13a6e66b004c8ebb7fdefc7ca6163c4e400da3a659c05b814472dee"
            },
            "downloads": -1,
            "filename": "czml3-2.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "e32f91f07c7a32ace90fee4d95430176",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 110191,
            "upload_time": "2024-12-19T16:33:28",
            "upload_time_iso_8601": "2024-12-19T16:33:28.516464Z",
            "url": "https://files.pythonhosted.org/packages/72/29/7d261665e40bd5c8334e6bf84886d45ddc75e1a216d3a888606b1c09f391/czml3-2.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-19 16:33:28",
    "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: 4.72199s