dkist-processing-common 10.5.4__py3-none-any.whl → 12.1.0rc1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- changelog/280.misc.rst +1 -0
- changelog/282.feature.2.rst +2 -0
- changelog/282.feature.rst +2 -0
- changelog/284.feature.rst +1 -0
- changelog/285.feature.rst +2 -0
- changelog/285.misc.rst +2 -0
- changelog/286.feature.rst +2 -0
- changelog/287.misc.rst +1 -0
- dkist_processing_common/__init__.py +1 -0
- dkist_processing_common/_util/constants.py +1 -0
- dkist_processing_common/_util/graphql.py +1 -0
- dkist_processing_common/_util/scratch.py +9 -9
- dkist_processing_common/_util/tags.py +1 -0
- dkist_processing_common/codecs/array.py +20 -0
- dkist_processing_common/codecs/asdf.py +9 -3
- dkist_processing_common/codecs/basemodel.py +22 -0
- dkist_processing_common/codecs/bytes.py +1 -0
- dkist_processing_common/codecs/fits.py +37 -9
- dkist_processing_common/codecs/iobase.py +1 -0
- dkist_processing_common/codecs/json.py +1 -0
- dkist_processing_common/codecs/path.py +1 -0
- dkist_processing_common/codecs/quality.py +1 -1
- dkist_processing_common/codecs/str.py +1 -0
- dkist_processing_common/config.py +64 -25
- dkist_processing_common/manual.py +6 -8
- dkist_processing_common/models/constants.py +373 -37
- dkist_processing_common/models/dkist_location.py +27 -0
- dkist_processing_common/models/fits_access.py +48 -0
- dkist_processing_common/models/flower_pot.py +231 -9
- dkist_processing_common/models/fried_parameter.py +41 -0
- dkist_processing_common/models/graphql.py +66 -75
- dkist_processing_common/models/input_dataset.py +117 -0
- dkist_processing_common/models/message.py +1 -1
- dkist_processing_common/models/message_queue_binding.py +1 -1
- dkist_processing_common/models/metric_code.py +2 -0
- dkist_processing_common/models/parameters.py +65 -28
- dkist_processing_common/models/quality.py +50 -5
- dkist_processing_common/models/tags.py +23 -21
- dkist_processing_common/models/task_name.py +3 -2
- dkist_processing_common/models/telemetry.py +28 -0
- dkist_processing_common/models/wavelength.py +3 -1
- dkist_processing_common/parsers/average_bud.py +46 -0
- dkist_processing_common/parsers/cs_step.py +13 -12
- dkist_processing_common/parsers/dsps_repeat.py +6 -4
- dkist_processing_common/parsers/experiment_id_bud.py +12 -4
- dkist_processing_common/parsers/id_bud.py +42 -27
- dkist_processing_common/parsers/l0_fits_access.py +5 -3
- dkist_processing_common/parsers/l1_fits_access.py +51 -23
- dkist_processing_common/parsers/lookup_bud.py +125 -0
- dkist_processing_common/parsers/near_bud.py +21 -20
- dkist_processing_common/parsers/observing_program_id_bud.py +24 -0
- dkist_processing_common/parsers/proposal_id_bud.py +13 -5
- dkist_processing_common/parsers/quality.py +2 -0
- dkist_processing_common/parsers/retarder.py +32 -0
- dkist_processing_common/parsers/single_value_single_key_flower.py +6 -1
- dkist_processing_common/parsers/task.py +8 -6
- dkist_processing_common/parsers/time.py +178 -72
- dkist_processing_common/parsers/unique_bud.py +21 -22
- dkist_processing_common/parsers/wavelength.py +5 -3
- dkist_processing_common/tasks/__init__.py +3 -2
- dkist_processing_common/tasks/assemble_movie.py +4 -3
- dkist_processing_common/tasks/base.py +59 -60
- dkist_processing_common/tasks/l1_output_data.py +54 -53
- dkist_processing_common/tasks/mixin/globus.py +24 -27
- dkist_processing_common/tasks/mixin/interservice_bus.py +1 -0
- dkist_processing_common/tasks/mixin/metadata_store.py +108 -243
- dkist_processing_common/tasks/mixin/object_store.py +22 -0
- dkist_processing_common/tasks/mixin/quality/__init__.py +1 -0
- dkist_processing_common/tasks/mixin/quality/_base.py +8 -1
- dkist_processing_common/tasks/mixin/quality/_metrics.py +166 -14
- dkist_processing_common/tasks/output_data_base.py +4 -3
- dkist_processing_common/tasks/parse_l0_input_data.py +277 -15
- dkist_processing_common/tasks/quality_metrics.py +9 -9
- dkist_processing_common/tasks/teardown.py +7 -7
- dkist_processing_common/tasks/transfer_input_data.py +67 -69
- dkist_processing_common/tasks/trial_catalog.py +77 -17
- dkist_processing_common/tasks/trial_output_data.py +16 -17
- dkist_processing_common/tasks/write_l1.py +102 -72
- dkist_processing_common/tests/conftest.py +32 -173
- dkist_processing_common/tests/mock_metadata_store.py +271 -0
- dkist_processing_common/tests/test_assemble_movie.py +4 -4
- dkist_processing_common/tests/test_assemble_quality.py +32 -4
- dkist_processing_common/tests/test_base.py +5 -19
- dkist_processing_common/tests/test_codecs.py +103 -12
- dkist_processing_common/tests/test_constants.py +15 -0
- dkist_processing_common/tests/test_dkist_location.py +15 -0
- dkist_processing_common/tests/test_fits_access.py +56 -19
- dkist_processing_common/tests/test_flower_pot.py +147 -5
- dkist_processing_common/tests/test_fried_parameter.py +27 -0
- dkist_processing_common/tests/test_input_dataset.py +78 -361
- dkist_processing_common/tests/test_interservice_bus.py +1 -0
- dkist_processing_common/tests/test_interservice_bus_mixin.py +1 -1
- dkist_processing_common/tests/test_manual_processing.py +33 -0
- dkist_processing_common/tests/test_output_data_base.py +5 -7
- dkist_processing_common/tests/test_parameters.py +71 -22
- dkist_processing_common/tests/test_parse_l0_input_data.py +115 -32
- dkist_processing_common/tests/test_publish_catalog_messages.py +2 -24
- dkist_processing_common/tests/test_quality.py +1 -0
- dkist_processing_common/tests/test_quality_mixin.py +255 -23
- dkist_processing_common/tests/test_scratch.py +2 -1
- dkist_processing_common/tests/test_stems.py +511 -168
- dkist_processing_common/tests/test_submit_dataset_metadata.py +3 -7
- dkist_processing_common/tests/test_tags.py +1 -0
- dkist_processing_common/tests/test_task_name.py +1 -1
- dkist_processing_common/tests/test_task_parsing.py +17 -7
- dkist_processing_common/tests/test_teardown.py +28 -24
- dkist_processing_common/tests/test_transfer_input_data.py +270 -125
- dkist_processing_common/tests/test_transfer_l1_output_data.py +2 -3
- dkist_processing_common/tests/test_trial_catalog.py +83 -8
- dkist_processing_common/tests/test_trial_output_data.py +46 -73
- dkist_processing_common/tests/test_workflow_task_base.py +8 -10
- dkist_processing_common/tests/test_write_l1.py +298 -76
- dkist_processing_common-12.1.0rc1.dist-info/METADATA +265 -0
- dkist_processing_common-12.1.0rc1.dist-info/RECORD +134 -0
- {dkist_processing_common-10.5.4.dist-info → dkist_processing_common-12.1.0rc1.dist-info}/WHEEL +1 -1
- docs/conf.py +1 -0
- docs/index.rst +1 -1
- docs/landing_page.rst +13 -0
- dkist_processing_common/tasks/mixin/input_dataset.py +0 -166
- dkist_processing_common-10.5.4.dist-info/METADATA +0 -175
- dkist_processing_common-10.5.4.dist-info/RECORD +0 -112
- {dkist_processing_common-10.5.4.dist-info → dkist_processing_common-12.1.0rc1.dist-info}/top_level.txt +0 -0
|
@@ -1,175 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: dkist-processing-common
|
|
3
|
-
Version: 10.5.4
|
|
4
|
-
Summary: Common task classes used by the DKIST science data processing pipelines
|
|
5
|
-
Author-email: NSO / AURA <dkistdc@nso.edu>
|
|
6
|
-
License: BSD-3-Clause
|
|
7
|
-
Project-URL: Homepage, https://nso.edu/dkist/data-center/
|
|
8
|
-
Project-URL: Repository, https://bitbucket.org/dkistdc/dkist-processing-common/
|
|
9
|
-
Project-URL: Documentation, https://docs.dkist.nso.edu/projects/common
|
|
10
|
-
Project-URL: Help, https://nso.atlassian.net/servicedesk/customer/portal/5
|
|
11
|
-
Classifier: Programming Language :: Python
|
|
12
|
-
Classifier: Programming Language :: Python :: 3
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
-
Requires-Python: >=3.11
|
|
15
|
-
Description-Content-Type: text/x-rst
|
|
16
|
-
Requires-Dist: asdf<4.0.0,>=3.5.0
|
|
17
|
-
Requires-Dist: astropy<7.0.0,>=5.1.1
|
|
18
|
-
Requires-Dist: dkist-fits-specifications<5.0,>=4.0.0
|
|
19
|
-
Requires-Dist: dkist-header-validator<6.0,>=5.0.0
|
|
20
|
-
Requires-Dist: dkist-processing-core==4.2.1
|
|
21
|
-
Requires-Dist: dkist-processing-pac<4.0,>=3.1
|
|
22
|
-
Requires-Dist: dkist-service-configuration<3.0,>=2.0.2
|
|
23
|
-
Requires-Dist: dkist-spectral-lines<4.0,>=3.0.0
|
|
24
|
-
Requires-Dist: globus-sdk>=3.12.0
|
|
25
|
-
Requires-Dist: gqlclient==1.1.0
|
|
26
|
-
Requires-Dist: hashids==1.3.1
|
|
27
|
-
Requires-Dist: matplotlib>=3.4
|
|
28
|
-
Requires-Dist: moviepy>=2.0.0
|
|
29
|
-
Requires-Dist: numpy>=1.20.2
|
|
30
|
-
Requires-Dist: object-clerk==0.1.1
|
|
31
|
-
Requires-Dist: pandas>=1.4.2
|
|
32
|
-
Requires-Dist: pillow>=10.2.0
|
|
33
|
-
Requires-Dist: pydantic>=2.0
|
|
34
|
-
Requires-Dist: redis==4.6.0
|
|
35
|
-
Requires-Dist: requests>=2.23
|
|
36
|
-
Requires-Dist: scipy>=1.6.3
|
|
37
|
-
Requires-Dist: sunpy>=3.0.0
|
|
38
|
-
Requires-Dist: talus==1.1.0
|
|
39
|
-
Provides-Extra: test
|
|
40
|
-
Requires-Dist: pytest; extra == "test"
|
|
41
|
-
Requires-Dist: pytest-xdist; extra == "test"
|
|
42
|
-
Requires-Dist: pytest-cov; extra == "test"
|
|
43
|
-
Requires-Dist: pytest-mock; extra == "test"
|
|
44
|
-
Requires-Dist: hypothesis; extra == "test"
|
|
45
|
-
Requires-Dist: towncrier; extra == "test"
|
|
46
|
-
Requires-Dist: dkist-data-simulator>=5.0.0; extra == "test"
|
|
47
|
-
Requires-Dist: dkist-processing-common[inventory]; extra == "test"
|
|
48
|
-
Requires-Dist: dkist-processing-common[asdf]; extra == "test"
|
|
49
|
-
Requires-Dist: dkist-processing-common[quality]; extra == "test"
|
|
50
|
-
Provides-Extra: docs
|
|
51
|
-
Requires-Dist: sphinx; extra == "docs"
|
|
52
|
-
Requires-Dist: sphinx-astropy; extra == "docs"
|
|
53
|
-
Requires-Dist: sphinx-changelog; extra == "docs"
|
|
54
|
-
Requires-Dist: sphinx-autoapi!=3.1.0; extra == "docs"
|
|
55
|
-
Requires-Dist: pytest; extra == "docs"
|
|
56
|
-
Requires-Dist: towncrier<22.12.0; extra == "docs"
|
|
57
|
-
Requires-Dist: dkist-sphinx-theme; extra == "docs"
|
|
58
|
-
Provides-Extra: inventory
|
|
59
|
-
Requires-Dist: dkist-inventory<2.0,>=1.4.3; extra == "inventory"
|
|
60
|
-
Provides-Extra: asdf
|
|
61
|
-
Requires-Dist: dkist-inventory[asdf]<2.0,>=1.4.3; extra == "asdf"
|
|
62
|
-
Provides-Extra: quality
|
|
63
|
-
Requires-Dist: dkist-quality<2.0,>=1.0.4; extra == "quality"
|
|
64
|
-
|
|
65
|
-
dkist-processing-common
|
|
66
|
-
=======================
|
|
67
|
-
|
|
68
|
-
This repository works in concert with `dkist-processing-core <https://pypi.org/project/dkist-processing-core/>`_ and `dkist-processing-*instrument*` to
|
|
69
|
-
form the DKIST calibration processing stack.
|
|
70
|
-
|
|
71
|
-
Usage
|
|
72
|
-
-----
|
|
73
|
-
|
|
74
|
-
The classes in this repository should be used as the base of any DKIST processing pipeline tasks. Science tasks should subclass `ScienceTaskL0ToL1Base`.
|
|
75
|
-
|
|
76
|
-
Each class is built on an abstract base class with the `run` method left for a developer to fill out with the required steps that the task should take.
|
|
77
|
-
This class is then used as the callable object for the workflow and scheduling engine.
|
|
78
|
-
|
|
79
|
-
Example
|
|
80
|
-
-------
|
|
81
|
-
|
|
82
|
-
.. code-block:: python
|
|
83
|
-
|
|
84
|
-
from dkist_processing_common.tasks.base import ScienceTaskL0ToL1Base
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
class RemoveArtifacts(ScienceTaskL0ToL1Base):
|
|
88
|
-
def run(self):
|
|
89
|
-
# task code here
|
|
90
|
-
total = 2 + 5
|
|
91
|
-
|
|
92
|
-
Deployment
|
|
93
|
-
----------
|
|
94
|
-
|
|
95
|
-
dkist-processing-common is deployed to `PyPI <https://pypi.org/project/dkist-processing-common/>`_
|
|
96
|
-
|
|
97
|
-
Development
|
|
98
|
-
-----------
|
|
99
|
-
|
|
100
|
-
There are two prerequisites for test execution on a local machine:
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
* Redis. A running instance of redis on the local machine is required. The tests will use the default host ip of localhost and port of 6379 to connect to the database.
|
|
104
|
-
|
|
105
|
-
* RabbitMQ. A running instance of rabbitmq on the local machine is required. The tests will use the default host of localhost and a port of 5672 to connect to the interservice bus.
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
To run the tests locally, clone the repository and install the package in editable mode with the test extras.
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
.. code-block:: bash
|
|
112
|
-
|
|
113
|
-
git clone git@bitbucket.org:dkistdc/dkist-processing-common.git
|
|
114
|
-
cd dkist-processing-common
|
|
115
|
-
pre-commit install
|
|
116
|
-
pip install -e .[test]
|
|
117
|
-
# Redis must be running
|
|
118
|
-
pytest -v --cov dkist_processing_common
|
|
119
|
-
|
|
120
|
-
Changelog
|
|
121
|
-
#########
|
|
122
|
-
|
|
123
|
-
When you make **any** change to this repository it **MUST** be accompanied by a changelog file.
|
|
124
|
-
The changelog for this repository uses the `towncrier <https://github.com/twisted/towncrier>`__ package.
|
|
125
|
-
Entries in the changelog for the next release are added as individual files (one per change) to the ``changelog/`` directory.
|
|
126
|
-
|
|
127
|
-
Writing a Changelog Entry
|
|
128
|
-
^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
129
|
-
|
|
130
|
-
A changelog entry accompanying a change should be added to the ``changelog/`` directory.
|
|
131
|
-
The name of a file in this directory follows a specific template::
|
|
132
|
-
|
|
133
|
-
<PULL REQUEST NUMBER>.<TYPE>[.<COUNTER>].rst
|
|
134
|
-
|
|
135
|
-
The fields have the following meanings:
|
|
136
|
-
|
|
137
|
-
* ``<PULL REQUEST NUMBER>``: This is the number of the pull request, so people can jump from the changelog entry to the diff on BitBucket.
|
|
138
|
-
* ``<TYPE>``: This is the type of the change and must be one of the values described below.
|
|
139
|
-
* ``<COUNTER>``: This is an optional field, if you make more than one change of the same type you can append a counter to the subsequent changes, i.e. ``100.bugfix.rst`` and ``100.bugfix.1.rst`` for two bugfix changes in the same PR.
|
|
140
|
-
|
|
141
|
-
The list of possible types is defined the the towncrier section of ``pyproject.toml``, the types are:
|
|
142
|
-
|
|
143
|
-
* ``feature``: This change is a new code feature.
|
|
144
|
-
* ``bugfix``: This is a change which fixes a bug.
|
|
145
|
-
* ``doc``: A documentation change.
|
|
146
|
-
* ``removal``: A deprecation or removal of public API.
|
|
147
|
-
* ``misc``: Any small change which doesn't fit anywhere else, such as a change to the package infrastructure.
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
Rendering the Changelog at Release Time
|
|
151
|
-
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
152
|
-
|
|
153
|
-
When you are about to tag a release first you must run ``towncrier`` to render the changelog.
|
|
154
|
-
The steps for this are as follows:
|
|
155
|
-
|
|
156
|
-
* Run `towncrier build --version vx.y.z` using the version number you want to tag.
|
|
157
|
-
* Agree to have towncrier remove the fragments.
|
|
158
|
-
* Add and commit your changes.
|
|
159
|
-
* Tag the release.
|
|
160
|
-
|
|
161
|
-
**NOTE:** If you forget to add a Changelog entry to a tagged release (either manually or automatically with ``towncrier``)
|
|
162
|
-
then the Bitbucket pipeline will fail. To be able to use the same tag you must delete it locally and on the remote branch:
|
|
163
|
-
|
|
164
|
-
.. code-block:: bash
|
|
165
|
-
|
|
166
|
-
# First, actually update the CHANGELOG and commit the update
|
|
167
|
-
git commit
|
|
168
|
-
|
|
169
|
-
# Delete tags
|
|
170
|
-
git tag -d vWHATEVER.THE.VERSION
|
|
171
|
-
git push --delete origin vWHATEVER.THE.VERSION
|
|
172
|
-
|
|
173
|
-
# Re-tag with the same version
|
|
174
|
-
git tag vWHATEVER.THE.VERSION
|
|
175
|
-
git push --tags origin main
|
|
@@ -1,112 +0,0 @@
|
|
|
1
|
-
changelog/.gitempty,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
dkist_processing_common/__init__.py,sha256=490Fwm_GgqpwriQlsYfKcLUZNhZ6GkINtJqcYSIEKoU,319
|
|
3
|
-
dkist_processing_common/config.py,sha256=IcpaD_NvHZU-aLlUNOTdRC4V7ADIvVQwrZ2dHhIr4NY,4247
|
|
4
|
-
dkist_processing_common/manual.py,sha256=4sGj3cChdnEpwzq2GSNSbTpUf2oS3YUWiXna6ALfMF4,7037
|
|
5
|
-
dkist_processing_common/_util/__init__.py,sha256=xf6JNpMKQgbhE2Jivymt-WO0WF6PpGt9rl604YpuTWk,92
|
|
6
|
-
dkist_processing_common/_util/constants.py,sha256=b0zlRaT09aGj2RU72OQ5J-8u6Z_RevPXtcyx5tlnf-Y,3244
|
|
7
|
-
dkist_processing_common/_util/graphql.py,sha256=qjsvLWDHqb1X7hDLA8uqbpOIDjZZ2mjsSIL0Wkt1TJc,3420
|
|
8
|
-
dkist_processing_common/_util/scratch.py,sha256=Uuk-3IAI-rlJsjtyeXClUPoz5B9H_OqynuJE4cxlcCg,10372
|
|
9
|
-
dkist_processing_common/_util/tags.py,sha256=8r62_-x3xpbCoCu5dd09Q2u-OYzYiML6SlPUf9LXCEw,6220
|
|
10
|
-
dkist_processing_common/codecs/__init__.py,sha256=du1iitvsudSSOMENSywXmXSLOlvIocJsPbvfEcyqFNc,159
|
|
11
|
-
dkist_processing_common/codecs/asdf.py,sha256=FdmcKmzKQnxek8Rk31lYp1OeuIIx8XeuX3EQiR-AZgQ,809
|
|
12
|
-
dkist_processing_common/codecs/bytes.py,sha256=tiVEUu_Gzc5NfW1_qsJtHDlYAZzgIqA7f4cfAwN734k,495
|
|
13
|
-
dkist_processing_common/codecs/fits.py,sha256=GH_K5_w0sjGY3_Yokw4jBhwxvEk05WYD5V3Hxb7odUs,2331
|
|
14
|
-
dkist_processing_common/codecs/iobase.py,sha256=r0ImN0CxfjAnfMflNv7w2pGDp2i6EQg0p2OaEkE82pk,977
|
|
15
|
-
dkist_processing_common/codecs/json.py,sha256=OWXzoFWccJiojkiKSeDrMdL9f7EpdNIOMvO9YBBg-Yg,939
|
|
16
|
-
dkist_processing_common/codecs/path.py,sha256=LU5Kh1ew2PQI9hcpzbnZkE47k-zAMZDDV4cgqHRcDkY,197
|
|
17
|
-
dkist_processing_common/codecs/quality.py,sha256=frvdEXv9zLyLcVIE0zxKGoV50a-oIENKAprqRY645Dc,3090
|
|
18
|
-
dkist_processing_common/codecs/str.py,sha256=hNrjJ6UmFrvbKLcZzE1dUMIWME-QwGRkIy_-nO3wKAQ,679
|
|
19
|
-
dkist_processing_common/fonts/Lato-Regular.ttf,sha256=1jbkaDIx-THtoiLViOlE0IK_0726AvkovuRhwPGFslE,656568
|
|
20
|
-
dkist_processing_common/fonts/__init__.py,sha256=hBvZRtkoGRPlNDWCK-ZePXdSIlThCcjwBDfYaamVgAw,101
|
|
21
|
-
dkist_processing_common/models/__init__.py,sha256=6LMqemdzVZ87fRrpAsbEnTtWZ02_Gu_oajsUlwGRH_Q,74
|
|
22
|
-
dkist_processing_common/models/constants.py,sha256=4lRtQtsisTAEs8QDv24CQF3OMtRlttZN8dxrHPjDgls,5409
|
|
23
|
-
dkist_processing_common/models/fits_access.py,sha256=Au9JROwhVla9zb_u0dN8mIWiSJd_Pca0oOr4N1hN0HY,4113
|
|
24
|
-
dkist_processing_common/models/flower_pot.py,sha256=59C5uGYKyMyncqQYxhzDZWl8k1DRZFB6s9RF-HFp9mY,5128
|
|
25
|
-
dkist_processing_common/models/graphql.py,sha256=b8kI-Pq12gixOtotCWHVTfEBT7XKBlvV_IaCM9qkKvg,3992
|
|
26
|
-
dkist_processing_common/models/message.py,sha256=DRW7Qhl01dF5KagcqLta5U-uzdOMewrsHvMatDT6jnk,1684
|
|
27
|
-
dkist_processing_common/models/message_queue_binding.py,sha256=ROQ2ZQE3TCr4gVbz4WggvUSExAiWP8SD_GjjQl482M8,1012
|
|
28
|
-
dkist_processing_common/models/metric_code.py,sha256=McXAEF1Sa0_YlR1niXYLJWLFHhdLQhmYw9Xtpr5FGws,815
|
|
29
|
-
dkist_processing_common/models/parameters.py,sha256=Ymx-wvPVMkXg5emhOivv7NG0QsAt98If4KotopLIRrw,7736
|
|
30
|
-
dkist_processing_common/models/quality.py,sha256=ONz1A6_qyEoZhQkVp9LChAgm93aGt1O5WSRneE3XCCA,2319
|
|
31
|
-
dkist_processing_common/models/tags.py,sha256=Nl1PtPNa3wBRV8aqpl77TjWdYbvF1pP0KEnRIMf4uqw,11949
|
|
32
|
-
dkist_processing_common/models/task_name.py,sha256=NL0n92A9vVYBV-yvh8d-qFOCxVy0X2GECDmLgIzrmOY,565
|
|
33
|
-
dkist_processing_common/models/wavelength.py,sha256=mH4xkNdPU7kedJfQStI6A0WdkMLi61wfe47pJI9kHBI,946
|
|
34
|
-
dkist_processing_common/parsers/__init__.py,sha256=XJQzHtPb78F6-qXXKXjyztc0x-aHVlgv1C_l4dR88tI,67
|
|
35
|
-
dkist_processing_common/parsers/cs_step.py,sha256=en1ovwy8H2jeUxZd0XDSV8Qv3ZawRm03q6wpJj4a3C8,6461
|
|
36
|
-
dkist_processing_common/parsers/dsps_repeat.py,sha256=NiUMnfMYSn0qserHM735V1Z6BCfw4CAanlqtjfyRkos,1571
|
|
37
|
-
dkist_processing_common/parsers/experiment_id_bud.py,sha256=IpDhqcHxriYn8fVFDQLgUiEiX98TLafAMiLoxuvELjo,706
|
|
38
|
-
dkist_processing_common/parsers/id_bud.py,sha256=cmq44quAGHZJ85hgQfpgh3NrSsrf_xVJyE8j6e3g_og,1536
|
|
39
|
-
dkist_processing_common/parsers/l0_fits_access.py,sha256=mhgezAA0X5zvgEmZFPIgKYpngw3l4pIKcXIr_X7J8R0,921
|
|
40
|
-
dkist_processing_common/parsers/l1_fits_access.py,sha256=o0_7XfcCcuKpuN8K0E_dfEnPvB1a9VxqKBaxpRGDOL0,2595
|
|
41
|
-
dkist_processing_common/parsers/near_bud.py,sha256=gLTr7EILVCREAhmE0VaU7-KKc7aosoMmZmQtJEXxs2I,3733
|
|
42
|
-
dkist_processing_common/parsers/proposal_id_bud.py,sha256=61uRxT538UDiEg3_By_asSzQ96xkAuCEEZZTrk0UF0E,677
|
|
43
|
-
dkist_processing_common/parsers/quality.py,sha256=5f6Go-xf3kcmQyZ4NCcwRNG7OwQFATCp1YvYJtJBOh0,1058
|
|
44
|
-
dkist_processing_common/parsers/single_value_single_key_flower.py,sha256=cQX_C_Ms6EIOCW5TTDo6PnLoJ6In6MQTShKdMvt57OU,1230
|
|
45
|
-
dkist_processing_common/parsers/task.py,sha256=RTNGSg3BUpEYLOcolN79Wc16s86FqRcDP-H7Hj9ovGg,3938
|
|
46
|
-
dkist_processing_common/parsers/time.py,sha256=9MQWyBeInBaqZjYxdWbLTOvxol0-q35VvIAyGL28CIs,7839
|
|
47
|
-
dkist_processing_common/parsers/unique_bud.py,sha256=QFsBEdCyx2GzYOUVobFxSxlKyaHT1F8i5PQegmwMlhM,3041
|
|
48
|
-
dkist_processing_common/parsers/wavelength.py,sha256=od7uzON8z0OB9zPO7Jg_1pXZCufcQnWORKjABqSAgTw,545
|
|
49
|
-
dkist_processing_common/tasks/__init__.py,sha256=uH8DTiQP-cx4vMK53S4LYGZGmbip5s0kWORvZBrSNj8,624
|
|
50
|
-
dkist_processing_common/tasks/assemble_movie.py,sha256=9K4sgXyRKaX7UsFBIs138pG3AtClwLLopYw3ZQY3ok4,12771
|
|
51
|
-
dkist_processing_common/tasks/base.py,sha256=Xew7bqSEYAfkVqnradrfQmTcOe2P5RHzj4l1LlJdM_A,12832
|
|
52
|
-
dkist_processing_common/tasks/l1_output_data.py,sha256=IM-nvGaTM5r-z-9vHr2wovPVUpuNCah-cWIFMO2fcII,10576
|
|
53
|
-
dkist_processing_common/tasks/output_data_base.py,sha256=sbvTTBgqGvmsGmu3Svl4RSR1WSWejKdsF5_mhO8aRBo,3699
|
|
54
|
-
dkist_processing_common/tasks/parse_l0_input_data.py,sha256=iRMGdvhxBobNsTDQ0IEl0myDfB4P_xpxA00guuBWDj8,7986
|
|
55
|
-
dkist_processing_common/tasks/quality_metrics.py,sha256=g6MUq8s8jELDinkn6o45rfONyODw92JyVMrzb7Dd7OI,12458
|
|
56
|
-
dkist_processing_common/tasks/teardown.py,sha256=TNghJIBhLucxJsabuygDbU4oL0RqdTwq8DqOcP5tub8,2370
|
|
57
|
-
dkist_processing_common/tasks/transfer_input_data.py,sha256=oR1Y-EEodH8uZT26j-7PfQ9uIMp96GOUemmLSCCb67w,5212
|
|
58
|
-
dkist_processing_common/tasks/trial_catalog.py,sha256=RKtTEtzBS0v134qmh6rW8vc-H43PyUELzxRh3pevIY8,8327
|
|
59
|
-
dkist_processing_common/tasks/trial_output_data.py,sha256=vE4nRdY3RP19MuKKPl9JKYYi81DtMbs3VghAZoVJ_2s,6890
|
|
60
|
-
dkist_processing_common/tasks/write_l1.py,sha256=s1AAYsESQ7aO08Shq98nQ7oPGtijMlg_TGLHX4b5LSo,21959
|
|
61
|
-
dkist_processing_common/tasks/mixin/__init__.py,sha256=-g-DQbU7m1bclJYuFe3Yh757V-35GIDTbstardKQ7nU,68
|
|
62
|
-
dkist_processing_common/tasks/mixin/globus.py,sha256=QAV8VElxMAqxJ2KSB_bJaraceovYfjHXjOdocrTCkIA,6592
|
|
63
|
-
dkist_processing_common/tasks/mixin/input_dataset.py,sha256=dkW5vf_QPgWedHO_Lf9GjBxr1QrUCKs6gIXufUTi7GE,6813
|
|
64
|
-
dkist_processing_common/tasks/mixin/interservice_bus.py,sha256=I7BUh0o8AEX-FZv7gxCts6is0uq9lycWjtTB2KqwBrU,1080
|
|
65
|
-
dkist_processing_common/tasks/mixin/metadata_store.py,sha256=1wTUaxLMp8C2vpXRsp8Zb-KllyJiLJrdh2J2yGTjSE0,15652
|
|
66
|
-
dkist_processing_common/tasks/mixin/object_store.py,sha256=Vn4l2XuCimii9Fc3gM-pQGIkTKMv_ldqljlxkLesZLU,3236
|
|
67
|
-
dkist_processing_common/tasks/mixin/quality/__init__.py,sha256=Bgu-DHW7yXLiehglldOCWluEkAP5qh0Hp1F30rh5NFw,383
|
|
68
|
-
dkist_processing_common/tasks/mixin/quality/_base.py,sha256=nZ9IC-O-hsLXa5-tk29B13CZyQIdhJCv0eO9cdkAhWc,8303
|
|
69
|
-
dkist_processing_common/tasks/mixin/quality/_metrics.py,sha256=WenTfa12guIUfm0GzkrK2gduKaOHs03e6RhE6j37Les,54304
|
|
70
|
-
dkist_processing_common/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
71
|
-
dkist_processing_common/tests/conftest.py,sha256=0MN62OuP26cT48Xsrj2wOZ2MT66SaFHhj8RwShjjrkc,29272
|
|
72
|
-
dkist_processing_common/tests/test_assemble_movie.py,sha256=XY_ruXSYP5k6s2gUAwlFdnhJ81eyWLSd2O9IkX4RXeo,4165
|
|
73
|
-
dkist_processing_common/tests/test_assemble_quality.py,sha256=fWSHK4UdVqgNjvxQuD40NBUnXrtmthUP7PUbISPV4MQ,16897
|
|
74
|
-
dkist_processing_common/tests/test_base.py,sha256=G4hrLgKUmKovt3j6sDuTyTuW6t8oF5C8odnSoKWdMxY,7046
|
|
75
|
-
dkist_processing_common/tests/test_codecs.py,sha256=YVKOfMPUY6h63ORtdknaWBlAtDLtLNmSCXQvFzKbIrk,20569
|
|
76
|
-
dkist_processing_common/tests/test_constants.py,sha256=Kc9k5TdYy5QkRRlGav6kfI2dy5HHKqtpf9qOuaAfDZU,5903
|
|
77
|
-
dkist_processing_common/tests/test_cs_step.py,sha256=RA0QD3D8eaL3YSOL_gIJ9wkngy14RQ2jbD-05KAziW4,2408
|
|
78
|
-
dkist_processing_common/tests/test_fits_access.py,sha256=e1B_N13vz6hFCBup6FlGItaH59dAmqXvox7jQuSyOB0,10946
|
|
79
|
-
dkist_processing_common/tests/test_flower_pot.py,sha256=X9_UI3maa3ZQncV3jYHgovWnawDsdEkEB5vw6EAB96o,3151
|
|
80
|
-
dkist_processing_common/tests/test_input_dataset.py,sha256=Bz4rHBD1Z33PEYanRRtf9JYRVLUNeIBxWvslk3EvrGk,19450
|
|
81
|
-
dkist_processing_common/tests/test_interservice_bus.py,sha256=M_iv2CLmx5TnCB1VUN4YjkQ2LEUjfCKk7-ZlkV62XEQ,3000
|
|
82
|
-
dkist_processing_common/tests/test_interservice_bus_mixin.py,sha256=8TTl0aypkq5gBPeyqSaQHbz_jmt5RmSD2oI8kT4Q1ZA,4195
|
|
83
|
-
dkist_processing_common/tests/test_output_data_base.py,sha256=Y9MFz5xw11tAnKjpHH7qrzsRYP1rZM_Trt4AylY0S6k,3120
|
|
84
|
-
dkist_processing_common/tests/test_parameters.py,sha256=Tr0Wu8-_rj9Lp7CkUVmJjSouW7CAL_ZwhShK_U1GzVs,12384
|
|
85
|
-
dkist_processing_common/tests/test_parse_l0_input_data.py,sha256=SMNV1qyQTvnMx94MCNsiA-RyS9uxaxIABEDDxsuVzqY,10629
|
|
86
|
-
dkist_processing_common/tests/test_publish_catalog_messages.py,sha256=wB2lcAnT77yVnqO0cFWOPxGf-tZ8U62kvvpiB5roBwQ,3268
|
|
87
|
-
dkist_processing_common/tests/test_quality.py,sha256=vomy2YSPadKqJj2tG8sCs-UkQVvfKus7Cum7_Hpee4I,10257
|
|
88
|
-
dkist_processing_common/tests/test_quality_mixin.py,sha256=dLMJFK8V-KQyitdwnbNON7GEyghp6Wq2EszOsIM-uZ4,46538
|
|
89
|
-
dkist_processing_common/tests/test_scratch.py,sha256=7f28FMiSskSNX-bkRSrpJf2u1HQIbSvYajbjkeGMF9s,16481
|
|
90
|
-
dkist_processing_common/tests/test_stems.py,sha256=F8B4eMmi2DNaR1yY-SVaet3DTAzSpIbkWtu00_49rtY,26512
|
|
91
|
-
dkist_processing_common/tests/test_submit_dataset_metadata.py,sha256=F1IKBFWhjjMhONxEgs5p-cpjbQwxh7BLhDFw9b6j874,3806
|
|
92
|
-
dkist_processing_common/tests/test_tags.py,sha256=UwlOJ45rkvbfbd5L5m5YltvOxQc8kGqJEn5V81H33U8,5023
|
|
93
|
-
dkist_processing_common/tests/test_task_name.py,sha256=oSFUw7ctohmy3ILIhwZKfegD8rJKcNRUtmv2nL8eCMc,1234
|
|
94
|
-
dkist_processing_common/tests/test_task_parsing.py,sha256=QXt1X6DTO3_liBD2c-t84DToLeEn7B3J-eteIyN4HEM,4027
|
|
95
|
-
dkist_processing_common/tests/test_teardown.py,sha256=miAMXG5c3wZxFfwBke8F7PR_Ke8KZmbegRKK9oB0tvU,5432
|
|
96
|
-
dkist_processing_common/tests/test_transfer_input_data.py,sha256=itmOFrK7x4G26cj0Xkf015Xn09G9YDdJunXybGgD8Ek,6658
|
|
97
|
-
dkist_processing_common/tests/test_transfer_l1_output_data.py,sha256=27PifkyH3RZg0nsM-AjmrFJ-hbYuCk5Tt_0Zx8PJBfM,2109
|
|
98
|
-
dkist_processing_common/tests/test_trial_catalog.py,sha256=xMmojj3sILq2ewaf_IGSVcWzdhvwMfGQ8-UvnkUkoOM,6850
|
|
99
|
-
dkist_processing_common/tests/test_trial_output_data.py,sha256=rXrf2oncBIytht3yKqA3yCDsqDLoYanD9_0H5GwXTzc,12900
|
|
100
|
-
dkist_processing_common/tests/test_workflow_task_base.py,sha256=YbkYoGjBraNvYBmBAJe-tY6afUZKvtcub2dqaQlBy8w,10450
|
|
101
|
-
dkist_processing_common/tests/test_write_l1.py,sha256=r6RfE6DFbKFvrY3gJUys6nGCPOM9jMPYYhPymUh6U0E,19338
|
|
102
|
-
docs/Makefile,sha256=qnlVz6PuBqE39NfHWuUnHhNEA-EFgT2-WJNNNy9ttfk,4598
|
|
103
|
-
docs/changelog.rst,sha256=S2jPASsWlQxSlAPqdvNrYvhk9k3FcFWNXFNDYXBSjl4,120
|
|
104
|
-
docs/conf.py,sha256=FkX575cqTqZGCcLAjg2MlvE8Buj1Vt3CpHNgZxG256E,1890
|
|
105
|
-
docs/index.rst,sha256=gKaSp6sQ8c8iBwmDxikfe0_C4P5Pi2yTOQIlu5FhphE,113
|
|
106
|
-
docs/make.bat,sha256=mBAhtURwhQ7yc95pqwJzlhqBSvRknr1aqZ5s8NKvdKs,4513
|
|
107
|
-
docs/requirements.txt,sha256=Kbl_X4c7RQZw035YTeNB63We6I7pvXFU4T0Uflp2yDY,29
|
|
108
|
-
licenses/LICENSE.rst,sha256=piZaQplkzOMmH1NXg6QIdo9wwo9pPCoHkvm2-DmH76E,1462
|
|
109
|
-
dkist_processing_common-10.5.4.dist-info/METADATA,sha256=AuMZPGDkrfzt_QsuBUmMOplK1Q14fHmogAlS_L66Qpo,6961
|
|
110
|
-
dkist_processing_common-10.5.4.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
111
|
-
dkist_processing_common-10.5.4.dist-info/top_level.txt,sha256=LJhd1W-Vn90K8HnQDIE4r52YDpUjjMWDnllAWHBByW0,48
|
|
112
|
-
dkist_processing_common-10.5.4.dist-info/RECORD,,
|
|
File without changes
|