diff --git a/CITATION.cff b/CITATION.cff index b266ef5..48ed8f8 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -3,9 +3,10 @@ message: "If you use this software, please cite it as below." title: "deshima-rawdata" abstract: "DESHIMA raw data and downloader package" -version: 2023.11.2 +version: 2023.11.3 date-released: 2023-11-16 license: "MIT" +doi: "10.5281/zenodo.10145185" url: "https://github.com/deshima-dev/rawdata" authors: - given-names: "Akio" diff --git a/README.md b/README.md index e7156b6..2e5d421 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ [![Release](https://img.shields.io/pypi/v/deshima-rawdata?label=Release&color=cornflowerblue&style=flat-square)](https://pypi.org/project/deshima-rawdata/) [![Python](https://img.shields.io/pypi/pyversions/deshima-rawdata?label=Python&color=cornflowerblue&style=flat-square)](https://pypi.org/project/deshima-rawdata/) [![Downloads](https://img.shields.io/pypi/dm/deshima-rawdata?label=Downloads&color=cornflowerblue&style=flat-square)](https://pepy.tech/project/deshima-rawdata) +[![DOI](https://img.shields.io/badge/DOI-10.5281/zenodo.10145185-cornflowerblue?style=flat-square)](https://doi.org/10.5281/zenodo.10145185) [![Tests](https://img.shields.io/github/actions/workflow/status/deshima-dev/rawdata/tests.yaml?label=Tests&style=flat-square)](https://github.com/deshima-dev/rawdata/actions) DESHIMA raw data and downloader package @@ -32,6 +33,7 @@ $ deshima-rawdata list | Observation ID | File name | Source name | Observation type | |-----------------:|:-----------------------------|:--------------|:-------------------| +| 20171103184436 | cosmos_20171103184436.tar.gz | Saturn | zscan | | 20231108052231 | cosmos_20231108052231.tar.gz | Jupiter | raster | | 20231109015146 | cosmos_20231109015146.tar.gz | Jupiter | zscan | | 20231109060113 | cosmos_20231109060113.tar.gz | Blank sky | skydip | diff --git a/data/cosmos_20171103184436.tar.gz b/data/cosmos_20171103184436.tar.gz new file mode 100644 index 0000000..f667da2 Binary files /dev/null and b/data/cosmos_20171103184436.tar.gz differ diff --git a/deshima_rawdata/__init__.py b/deshima_rawdata/__init__.py index 49ede3e..83c3f08 100644 --- a/deshima_rawdata/__init__.py +++ b/deshima_rawdata/__init__.py @@ -1,5 +1,5 @@ __all__ = ["cli", "download", "list"] -__version__ = "2023.11.2" +__version__ = "2023.11.3" # submodules diff --git a/deshima_rawdata/data.csv b/deshima_rawdata/data.csv index 3ccbb9d..a0eeaf6 100644 --- a/deshima_rawdata/data.csv +++ b/deshima_rawdata/data.csv @@ -1,4 +1,5 @@ Observation ID,File name,Source name,Observation type +20171103184436,cosmos_20171103184436.tar.gz,Saturn,zscan 20231108052231,cosmos_20231108052231.tar.gz,Jupiter,raster 20231109015146,cosmos_20231109015146.tar.gz,Jupiter,zscan 20231109060113,cosmos_20231109060113.tar.gz,Blank sky,skydip diff --git a/pyproject.toml b/pyproject.toml index 4f06e15..57a5102 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "deshima-rawdata" -version = "2023.11.2" +version = "2023.11.3" description = "DESHIMA raw data and downloader package" authors = ["Akio Taniguchi "] license = "MIT"