decode


Namedecode JSON
Version 2025.10.0 PyPI version JSON
download
home_pageNone
SummaryDESHIMA code for data analysis
upload_time2025-10-22 04:51:08
maintainerNone
docs_urlNone
authorNone
requires_python<3.13,>=3.9
licenseMIT License Copyright (c) 2018-2025 DESHIMA Team Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords astronomy data-analysis deshima spectroscopy submillimeter
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # de:code

[![Release](https://img.shields.io/pypi/v/decode?label=Release&color=cornflowerblue&style=flat-square)](https://pypi.org/project/decode/)
[![Python](https://img.shields.io/pypi/pyversions/decode?label=Python&color=cornflowerblue&style=flat-square)](https://pypi.org/project/decode/)
[![Downloads](https://img.shields.io/pypi/dm/decode?label=Downloads&color=cornflowerblue&style=flat-square)](https://pepy.tech/project/decode)
[![DOI](https://img.shields.io/badge/DOI-10.5281/zenodo.3384216-cornflowerblue?style=flat-square)](https://doi.org/10.5281/zenodo.3384216)
[![Tests](https://img.shields.io/github/actions/workflow/status/deshima-dev/decode/tests.yaml?label=Tests&style=flat-square)](https://github.com/deshima-dev/decode/actions)

DESHIMA code for data analysis

## Installation

```shell
pip install decode==2025.10.0
```

## Quick look

de:code ships with a quick look command `decode-qlook`, which will be available from the CUI after installation. It has several subcommands for each observation type. For example, to quick-look at a raster observation:
```shell
$ decode-qlook raster /path/to/dems.zarr.zip
```
where `dems.zarr.zip` is the merged observation data ([DESHIMA measurement set: DEMS](https://github.com/deshima-dev/dems)) to be checked. By default, it will output an image of the result plots by a simple analysis (e.g. continuum map, etc). You can also get the result data themselves by changing the output format:
```shell
$ decode-qlook raster /path/to/dems.zarr.zip --format zarr.zip
```
See the command help for all available options:
```shell
# list of the subcommands and descriptions
$ decode-qlook --help

# list of the available command options
$ decode-qlook raster --help
```

If you are not sure about the observation type, the `auto` subcommand may be useful to automatically select the appropriate command to use:
```shell
$ decode-qlook auto /path/to/dems.zarr.zip
```

Finally, all subcommands are available as functions in the `qlook` submodule. For example, the `raster` command corresponds to `decode.qlook.raster` and the following Python code is equivalent to the CUI:
```python
import decode

decode.qlook.raster("/path/to/dems.zarr.zip")
```
See [the qlook module documentation](https://deshima-dev.github.io/decode/_apidoc/decode.qlook.html) for more information.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "decode",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<3.13,>=3.9",
    "maintainer_email": null,
    "keywords": "astronomy, data-analysis, deshima, spectroscopy, submillimeter",
    "author": null,
    "author_email": "Akio Taniguchi <taniguchi.akio@gmail.com>, Juri Yamanaka <j.yamanaka@a.phys.nagoya-u.ac.jp>, Shinji Fujita <s-fujita@ism.ac.jp>",
    "download_url": "https://files.pythonhosted.org/packages/6e/33/e32ad8231ebeb6604584087989b071524e62873242b69a44ffd54f787413/decode-2025.10.0.tar.gz",
    "platform": null,
    "description": "# de:code\n\n[![Release](https://img.shields.io/pypi/v/decode?label=Release&color=cornflowerblue&style=flat-square)](https://pypi.org/project/decode/)\n[![Python](https://img.shields.io/pypi/pyversions/decode?label=Python&color=cornflowerblue&style=flat-square)](https://pypi.org/project/decode/)\n[![Downloads](https://img.shields.io/pypi/dm/decode?label=Downloads&color=cornflowerblue&style=flat-square)](https://pepy.tech/project/decode)\n[![DOI](https://img.shields.io/badge/DOI-10.5281/zenodo.3384216-cornflowerblue?style=flat-square)](https://doi.org/10.5281/zenodo.3384216)\n[![Tests](https://img.shields.io/github/actions/workflow/status/deshima-dev/decode/tests.yaml?label=Tests&style=flat-square)](https://github.com/deshima-dev/decode/actions)\n\nDESHIMA code for data analysis\n\n## Installation\n\n```shell\npip install decode==2025.10.0\n```\n\n## Quick look\n\nde:code ships with a quick look command `decode-qlook`, which will be available from the CUI after installation. It has several subcommands for each observation type. For example, to quick-look at a raster observation:\n```shell\n$ decode-qlook raster /path/to/dems.zarr.zip\n```\nwhere `dems.zarr.zip` is the merged observation data ([DESHIMA measurement set: DEMS](https://github.com/deshima-dev/dems)) to be checked. By default, it will output an image of the result plots by a simple analysis (e.g. continuum map, etc). You can also get the result data themselves by changing the output format:\n```shell\n$ decode-qlook raster /path/to/dems.zarr.zip --format zarr.zip\n```\nSee the command help for all available options:\n```shell\n# list of the subcommands and descriptions\n$ decode-qlook --help\n\n# list of the available command options\n$ decode-qlook raster --help\n```\n\nIf you are not sure about the observation type, the `auto` subcommand may be useful to automatically select the appropriate command to use:\n```shell\n$ decode-qlook auto /path/to/dems.zarr.zip\n```\n\nFinally, all subcommands are available as functions in the `qlook` submodule. For example, the `raster` command corresponds to `decode.qlook.raster` and the following Python code is equivalent to the CUI:\n```python\nimport decode\n\ndecode.qlook.raster(\"/path/to/dems.zarr.zip\")\n```\nSee [the qlook module documentation](https://deshima-dev.github.io/decode/_apidoc/decode.qlook.html) for more information.\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2018-2025 DESHIMA Team  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
    "summary": "DESHIMA code for data analysis",
    "version": "2025.10.0",
    "project_urls": {
        "homepage": "https://deshima-dev.github.io/decode",
        "repository": "https://github.com/deshima-dev/decode"
    },
    "split_keywords": [
        "astronomy",
        " data-analysis",
        " deshima",
        " spectroscopy",
        " submillimeter"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5ce51b4c9507fea50fda08c5000338211db39c8ff4ab60d2c3fdd2639cde09cd",
                "md5": "361320d92eb0a01f67391f3ee5df78ff",
                "sha256": "8582e766682c8a94e5da4e50ae4aa45b42f99b81495b37e385521c6c994262bc"
            },
            "downloads": -1,
            "filename": "decode-2025.10.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "361320d92eb0a01f67391f3ee5df78ff",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.13,>=3.9",
            "size": 313895,
            "upload_time": "2025-10-22T04:51:06",
            "upload_time_iso_8601": "2025-10-22T04:51:06.756040Z",
            "url": "https://files.pythonhosted.org/packages/5c/e5/1b4c9507fea50fda08c5000338211db39c8ff4ab60d2c3fdd2639cde09cd/decode-2025.10.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6e33e32ad8231ebeb6604584087989b071524e62873242b69a44ffd54f787413",
                "md5": "e0dfd8955e0850a8fb1b58a09e0c09b9",
                "sha256": "20149c783b0156355b7cad0d4676ca17e19248ddde2caba3d3f48e99f9b4c09d"
            },
            "downloads": -1,
            "filename": "decode-2025.10.0.tar.gz",
            "has_sig": false,
            "md5_digest": "e0dfd8955e0850a8fb1b58a09e0c09b9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<3.13,>=3.9",
            "size": 431209,
            "upload_time": "2025-10-22T04:51:08",
            "upload_time_iso_8601": "2025-10-22T04:51:08.313976Z",
            "url": "https://files.pythonhosted.org/packages/6e/33/e32ad8231ebeb6604584087989b071524e62873242b69a44ffd54f787413/decode-2025.10.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-22 04:51:08",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "deshima-dev",
    "github_project": "decode",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "decode"
}
        
Elapsed time: 0.89865s