├── .coveragerc ├── .gitattributes ├── .github └── workflows │ ├── publish-to-pypi.yml │ └── workflow.yml ├── .gitignore ├── .mailmap ├── CHANGELOG.md ├── LICENSE ├── README.rst ├── pyproject.toml ├── src └── czml3 │ ├── __init__.py │ ├── base.py │ ├── common.py │ ├── constants.py │ ├── core.py │ ├── enums.py │ ├── examples │ ├── __init__.py │ └── simple.py │ ├── properties.py │ ├── py.typed │ ├── types.py │ └── widget.py ├── tests ├── simple.czml ├── smiley.png ├── test_core.py ├── test_document.py ├── test_examples.py ├── test_packet.py ├── test_properties.py ├── test_rectangle_image.py ├── test_types.py └── test_widget.py └── widget-screenshot.png /.coveragerc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/publish-to-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poliastro/czml3/HEAD/.github/workflows/publish-to-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poliastro/czml3/HEAD/.github/workflows/workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poliastro/czml3/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poliastro/czml3/HEAD/.mailmap -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poliastro/czml3/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poliastro/czml3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poliastro/czml3/HEAD/README.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poliastro/czml3/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/czml3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poliastro/czml3/HEAD/src/czml3/__init__.py -------------------------------------------------------------------------------- /src/czml3/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poliastro/czml3/HEAD/src/czml3/base.py -------------------------------------------------------------------------------- /src/czml3/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poliastro/czml3/HEAD/src/czml3/common.py -------------------------------------------------------------------------------- /src/czml3/constants.py: -------------------------------------------------------------------------------- 1 | ISO8601_FORMAT_Z = "%Y-%m-%dT%H:%M:%S.%fZ" 2 | -------------------------------------------------------------------------------- /src/czml3/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poliastro/czml3/HEAD/src/czml3/core.py -------------------------------------------------------------------------------- /src/czml3/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poliastro/czml3/HEAD/src/czml3/enums.py -------------------------------------------------------------------------------- /src/czml3/examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poliastro/czml3/HEAD/src/czml3/examples/__init__.py -------------------------------------------------------------------------------- /src/czml3/examples/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poliastro/czml3/HEAD/src/czml3/examples/simple.py -------------------------------------------------------------------------------- /src/czml3/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poliastro/czml3/HEAD/src/czml3/properties.py -------------------------------------------------------------------------------- /src/czml3/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/czml3/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poliastro/czml3/HEAD/src/czml3/types.py -------------------------------------------------------------------------------- /src/czml3/widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poliastro/czml3/HEAD/src/czml3/widget.py -------------------------------------------------------------------------------- /tests/simple.czml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poliastro/czml3/HEAD/tests/simple.czml -------------------------------------------------------------------------------- /tests/smiley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poliastro/czml3/HEAD/tests/smiley.png -------------------------------------------------------------------------------- /tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poliastro/czml3/HEAD/tests/test_core.py -------------------------------------------------------------------------------- /tests/test_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poliastro/czml3/HEAD/tests/test_document.py -------------------------------------------------------------------------------- /tests/test_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poliastro/czml3/HEAD/tests/test_examples.py -------------------------------------------------------------------------------- /tests/test_packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poliastro/czml3/HEAD/tests/test_packet.py -------------------------------------------------------------------------------- /tests/test_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poliastro/czml3/HEAD/tests/test_properties.py -------------------------------------------------------------------------------- /tests/test_rectangle_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poliastro/czml3/HEAD/tests/test_rectangle_image.py -------------------------------------------------------------------------------- /tests/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poliastro/czml3/HEAD/tests/test_types.py -------------------------------------------------------------------------------- /tests/test_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poliastro/czml3/HEAD/tests/test_widget.py -------------------------------------------------------------------------------- /widget-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poliastro/czml3/HEAD/widget-screenshot.png --------------------------------------------------------------------------------