From f13ba96807940bd6a3733ebe9d6bd18f0a233bad Mon Sep 17 00:00:00 2001 From: Tim Jenness Date: Tue, 8 Nov 2022 10:05:04 -0700 Subject: [PATCH 1/7] Add a CITATION file Follows the schema from https://github.com/citation-file-format/citation-file-format/blob/main/schema-guide.md Includes preferred citation and no release information. --- CITATION.cff | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 CITATION.cff diff --git a/CITATION.cff b/CITATION.cff new file mode 100644 index 0000000000..ad3fc669a1 --- /dev/null +++ b/CITATION.cff @@ -0,0 +1,71 @@ +cff-version: 1.2.0 +message: "Please cite the following when using this software: https://doi.org/10.1117/12.2629569" +authors: +- family-names: Jenness + given-names: Tim + orcid: "https://orcid.org/0000-0001-5982-167X" +- family-names: Bosch + given-names: James F. + orcid: "https://orcid.org/0000-0003-2759-5764" +- family-names: Salnikov + given-names: Andrei + orcid: "https://orcid.org/0000-0002-3623-0161" +- family-names: Lust + given-names: Nate B. + orcid: "https://orcid.org/0000-0002-4122-9384" +- family-names: Pease + given-names: Nathan M. + orcid: "https://orcid.org/0000-0002-9701-5975" +- family-names: Gower + given-names: Michelle + orcid: "https://orcid.org/0000-0001-9513-6987" +- family-names: Kowalik + given-names: Mikolaj +- family-names: Schellart + given-names: Pim + orcid: "https://orcid.org/0000-0002-8324-0880" +title: "lsst-daf-butler: Abstracted Data Access of Astronomical Data" +repository-code: "https://github.com/lsst/daf_butler" +abstract: | + The Rubin Observatory's Data Butler is designed to allow data file location + and file formats to be abstracted away from the people writing the science + pipeline algorithms. The Butler works in conjunction with the workflow graph + builder to allow pipelines to be constructed from the algorithmic tasks. +preferred-citation: + type: article + title: "The Vera C. Rubin Observatory Data Butler and pipeline execution system" + identifiers: + - type: "doi" + value: "10.1117/12.2629569" + - type: "bibcode" + value: "2022SPIE12189E..11J" + authors: + - family-names: Jenness + given-names: Tim + orcid: "https://orcid.org/0000-0001-5982-167X" + - family-names: Bosch + given-names: James F. + orcid: "https://orcid.org/0000-0003-2759-5764" + - family-names: Salnikov + given-names: Andrei + orcid: "https://orcid.org/0000-0002-3623-0161" + - family-names: Lust + given-names: Nate B. + orcid: "https://orcid.org/0000-0002-4122-9384" + - family-names: Pease + given-names: Nathan M. + orcid: "https://orcid.org/0000-0002-9701-5975" + - family-names: Gower + given-names: Michelle + orcid: "https://orcid.org/0000-0001-9513-6987" + - family-names: Kowalik + given-names: Mikolaj + - family-names: Dubois-Felsmann + given-names: Gregory P. + orcid: "https://orcid.org/0000-0003-1598-6979" + - family-names: Mueller + given-names: Fritz + orcid: "https://orcid.org/0000-0002-7061-4644" + - family-names: Schellart + given-names: Pim + orcid: "https://orcid.org/0000-0002-8324-0880" From 11a78f3687508496af381ce50f489afe863f6054 Mon Sep 17 00:00:00 2001 From: Tim Jenness Date: Tue, 8 Nov 2022 10:08:14 -0700 Subject: [PATCH 2/7] Add citation preference in readme --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 080dfa9cb6..1a3c2b41df 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,11 @@ [![codecov](https://codecov.io/gh/lsst/daf_butler/branch/main/graph/badge.svg?token=2BUBL8R9RH)](https://codecov.io/gh/lsst/daf_butler) LSST Data Access framework described in [arXiv:2206.14941](https://arxiv.org/abs/2206.14941). +Please cite [the SPIE paper](https://doi.org/10.1117/12.2629569) when using this software. This is a **Python 3 only** package (we assume Python 3.10 or higher). -* SPIE Paper from 2022: [The Vera C. Rubin Observatory Data Butler and Pipeline Execution System](https://arxiv.org/abs/2206.14941) +* SPIE Paper from 2022: [The Vera C. Rubin Observatory Data Butler and Pipeline Execution System](https://doi.org/10.1117/12.2629569) ([arXiv](https://arxiv.org/abs/2206.14941)) * ADASS paper from 2019: [Abstracting the Storage and Retrieval of Image Data at the LSST](https://ui.adsabs.harvard.edu/abs/2019ASPC..523..653J/abstract). * Early design note: [DMTN-056](https://dmtn-056.lsst.io) From e543969ec213652388d1508ee13729a15a53df3a Mon Sep 17 00:00:00 2001 From: Tim Jenness Date: Tue, 8 Nov 2022 15:27:26 -0700 Subject: [PATCH 3/7] Add generic team name to citation file --- CITATION.cff | 1 + 1 file changed, 1 insertion(+) diff --git a/CITATION.cff b/CITATION.cff index ad3fc669a1..9d2fcffea4 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -1,6 +1,7 @@ cff-version: 1.2.0 message: "Please cite the following when using this software: https://doi.org/10.1117/12.2629569" authors: +- name: "Rubin Observatory Data Management Team" - family-names: Jenness given-names: Tim orcid: "https://orcid.org/0000-0001-5982-167X" From 98fe2accd588c67d2e66f5bd21746033e00924aa Mon Sep 17 00:00:00 2001 From: Tim Jenness Date: Tue, 8 Nov 2022 16:09:57 -0700 Subject: [PATCH 4/7] Add Software Heritage ID --- CITATION.cff | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CITATION.cff b/CITATION.cff index 9d2fcffea4..01c896a7cd 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -27,6 +27,9 @@ authors: orcid: "https://orcid.org/0000-0002-8324-0880" title: "lsst-daf-butler: Abstracted Data Access of Astronomical Data" repository-code: "https://github.com/lsst/daf_butler" +identifiers: +- type: swh + value: "swh:1:dir:ef572b4bb431e898d279d4de786bc462bd5ca466" abstract: | The Rubin Observatory's Data Butler is designed to allow data file location and file formats to be abstracted away from the people writing the science From 4539d3d58aebb35383e1072bdced2d2fce035a70 Mon Sep 17 00:00:00 2001 From: Tim Jenness Date: Mon, 1 Jul 2024 15:37:47 -0700 Subject: [PATCH 5/7] Add David Irving as an author --- CITATION.cff | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CITATION.cff b/CITATION.cff index 01c896a7cd..3f9884dd27 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -25,6 +25,9 @@ authors: - family-names: Schellart given-names: Pim orcid: "https://orcid.org/0000-0002-8324-0880" +- family-names: Irving + given-names: David H. + orcid: "https://orcid.org/0009-0005-9099-4970" title: "lsst-daf-butler: Abstracted Data Access of Astronomical Data" repository-code: "https://github.com/lsst/daf_butler" identifiers: From b30919b80b1b3092b6aa534fd4688e07de36435a Mon Sep 17 00:00:00 2001 From: Tim Jenness Date: Mon, 1 Jul 2024 15:38:46 -0700 Subject: [PATCH 6/7] Add missing Kowalik ORCID --- CITATION.cff | 1 + 1 file changed, 1 insertion(+) diff --git a/CITATION.cff b/CITATION.cff index 3f9884dd27..ac0f02dd95 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -22,6 +22,7 @@ authors: orcid: "https://orcid.org/0000-0001-9513-6987" - family-names: Kowalik given-names: Mikolaj + orcid: "https://orcid.org/0000-0002-9801-5969" - family-names: Schellart given-names: Pim orcid: "https://orcid.org/0000-0002-8324-0880" From 12cf832d5f0d3d66f661503d4f147d302d207bfd Mon Sep 17 00:00:00 2001 From: Tim Jenness Date: Mon, 1 Jul 2024 15:40:32 -0700 Subject: [PATCH 7/7] Minor corrections to README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1a3c2b41df..e48502f69d 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ LSST Data Access framework described in [arXiv:2206.14941](https://arxiv.org/abs/2206.14941). Please cite [the SPIE paper](https://doi.org/10.1117/12.2629569) when using this software. -This is a **Python 3 only** package (we assume Python 3.10 or higher). +This is a **Python 3 only** package (we assume Python 3.11 or higher). * SPIE Paper from 2022: [The Vera C. Rubin Observatory Data Butler and Pipeline Execution System](https://doi.org/10.1117/12.2629569) ([arXiv](https://arxiv.org/abs/2206.14941)) * ADASS paper from 2019: [Abstracting the Storage and Retrieval of Image Data at the LSST](https://ui.adsabs.harvard.edu/abs/2019ASPC..523..653J/abstract). @@ -14,5 +14,5 @@ This is a **Python 3 only** package (we assume Python 3.10 or higher). PyPI: [lsst-daf-butler](https://pypi.org/project/lsst-daf-butler/) -This software is dual licensed under the GNU General Public License (version 3 of the License, or (at your option) any later version, and also under a 3-clause BSD license. +This software is dual licensed under the GNU General Public License (version 3 of the License, or (at your option) any later version, and also under a 3-clause BSD license). Recipients may choose which of these licenses to use; please see the files gpl-3.0.txt and/or bsd_license.txt, respectively.