Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add raw data for testing demerge #15

Merged
merged 3 commits into from
Nov 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 |
Binary file added data/cosmos_20171103184436.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion deshima_rawdata/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__all__ = ["cli", "download", "list"]
__version__ = "2023.11.2"
__version__ = "2023.11.3"


# submodules
Expand Down
1 change: 1 addition & 0 deletions deshima_rawdata/data.csv
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <taniguchi@a.phys.nagoya-u.ac.jp>"]
license = "MIT"
Expand Down