dkist-processing-cryonirsp 1.11.1__py3-none-any.whl → 1.12.1rc1__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.
Potentially problematic release.
This version of dkist-processing-cryonirsp might be problematic. Click here for more details.
- changelog/215.misc.rst +1 -0
- dkist_processing_cryonirsp/parsers/measurements.py +23 -14
- dkist_processing_cryonirsp/parsers/scan_step.py +11 -4
- dkist_processing_cryonirsp/tests/test_parse.py +1 -0
- {dkist_processing_cryonirsp-1.11.1.dist-info → dkist_processing_cryonirsp-1.12.1rc1.dist-info}/METADATA +42 -41
- {dkist_processing_cryonirsp-1.11.1.dist-info → dkist_processing_cryonirsp-1.12.1rc1.dist-info}/RECORD +8 -7
- {dkist_processing_cryonirsp-1.11.1.dist-info → dkist_processing_cryonirsp-1.12.1rc1.dist-info}/WHEEL +0 -0
- {dkist_processing_cryonirsp-1.11.1.dist-info → dkist_processing_cryonirsp-1.12.1rc1.dist-info}/top_level.txt +0 -0
changelog/215.misc.rst
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Update verion of `dkist-processing-common` to v11.2.1 to fix bug that caused Wavecal quality metrics to not be rendered in Quality Reports.
|
|
@@ -1,38 +1,47 @@
|
|
|
1
1
|
"""Copies of UniqueBud and SingleValueSingleKeyFlower from common that only activate if the frames are "observe" task."""
|
|
2
|
+
from typing import Hashable
|
|
2
3
|
from typing import Type
|
|
3
4
|
|
|
4
5
|
from dkist_processing_common.models.flower_pot import SpilledDirt
|
|
5
6
|
from dkist_processing_common.parsers.single_value_single_key_flower import (
|
|
6
7
|
SingleValueSingleKeyFlower,
|
|
7
8
|
)
|
|
8
|
-
from dkist_processing_common.parsers.unique_bud import UniqueBud
|
|
9
9
|
|
|
10
10
|
from dkist_processing_cryonirsp.models.constants import CryonirspBudName
|
|
11
11
|
from dkist_processing_cryonirsp.models.tags import CryonirspStemName
|
|
12
12
|
from dkist_processing_cryonirsp.parsers.cryonirsp_l0_fits_access import CryonirspL0FitsAccess
|
|
13
|
+
from dkist_processing_cryonirsp.parsers.scan_step import NumberOfScanStepsBase
|
|
13
14
|
|
|
14
15
|
|
|
15
|
-
class NumberOfMeasurementsBud(
|
|
16
|
+
class NumberOfMeasurementsBud(NumberOfScanStepsBase):
|
|
16
17
|
"""Bud for finding the total number of measurements per scan step."""
|
|
17
18
|
|
|
18
19
|
def __init__(self):
|
|
19
20
|
self.metadata_key = "num_meas"
|
|
20
|
-
super().__init__(
|
|
21
|
-
constant_name=CryonirspBudName.num_meas.value, metadata_key=self.metadata_key
|
|
22
|
-
)
|
|
21
|
+
super().__init__(stem_name=CryonirspBudName.num_meas.value)
|
|
23
22
|
|
|
24
|
-
def
|
|
23
|
+
def getter(self, key: Hashable) -> Hashable:
|
|
25
24
|
"""
|
|
26
|
-
|
|
25
|
+
Search all scan steps to find the maximum number of measurements in a step.
|
|
27
26
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
27
|
+
This maximum number should be the same for all measurements, with the possible exception of the last one in
|
|
28
|
+
an abort.
|
|
29
|
+
|
|
30
|
+
Abort possibilities:
|
|
31
|
+
* if a measurement is missing in the last scan step of a multi-scan, multi-map observation, it will be handled
|
|
32
|
+
as an incomplete scan step and truncated by the scan step abort handler.
|
|
33
|
+
* if a measurement is missing in a single-map, single-scan observation then the number of measurements will be
|
|
34
|
+
given by the last measurement value that had as many frames as the maximum number of frames of any
|
|
35
|
+
measurement.
|
|
36
|
+
This is a formality for intensity mode observations but is an important check for polarimetric data as the
|
|
37
|
+
abort may have happened in the middle of the modulator state sequence.
|
|
32
38
|
"""
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
39
|
+
measurements_in_scan_steps = []
|
|
40
|
+
for meas_dict in self.scan_step_dict.values():
|
|
41
|
+
measurements_in_scan_steps.append(len(meas_dict))
|
|
42
|
+
return max(
|
|
43
|
+
measurements_in_scan_steps
|
|
44
|
+
) # if there are incomplete measurements, they should be at the end and will be truncated by an incomplete scan step
|
|
36
45
|
|
|
37
46
|
|
|
38
47
|
class MeasurementNumberFlower(SingleValueSingleKeyFlower):
|
|
@@ -312,11 +312,11 @@ class MapScanStepStemBase(Stem, ABC):
|
|
|
312
312
|
return step_list.index(scan_step_obj) + 1 # Here we decide that map scan indices start at 1
|
|
313
313
|
|
|
314
314
|
|
|
315
|
-
class
|
|
316
|
-
"""
|
|
315
|
+
class NumberOfScanStepsBase(MapScanStepStemBase, ABC):
|
|
316
|
+
"""Base class for managing scan steps."""
|
|
317
317
|
|
|
318
|
-
def __init__(self):
|
|
319
|
-
super().__init__(stem_name=
|
|
318
|
+
def __init__(self, stem_name: CryonirspBudName):
|
|
319
|
+
super().__init__(stem_name=stem_name)
|
|
320
320
|
|
|
321
321
|
@cached_property
|
|
322
322
|
def map_scan_to_obj_dict(self) -> dict[int, list[SingleScanStep]]:
|
|
@@ -361,6 +361,13 @@ class NumberOfScanStepsBud(MapScanStepStemBase):
|
|
|
361
361
|
|
|
362
362
|
return len(completed_steps)
|
|
363
363
|
|
|
364
|
+
|
|
365
|
+
class NumberOfScanStepsBud(NumberOfScanStepsBase):
|
|
366
|
+
"""Bud for finding the total number of scan steps."""
|
|
367
|
+
|
|
368
|
+
def __init__(self):
|
|
369
|
+
super().__init__(stem_name=CryonirspBudName.num_scan_steps.value)
|
|
370
|
+
|
|
364
371
|
def getter(self, key):
|
|
365
372
|
"""
|
|
366
373
|
Compute the number of complete scan steps.
|
|
@@ -980,6 +980,7 @@ def test_parse_cryonirsp_linearized_incomplete_raster_scan(
|
|
|
980
980
|
|
|
981
981
|
assert task.constants._db_dict[CryonirspBudName.num_scan_steps.value] == num_scan_steps - 1
|
|
982
982
|
assert task.constants._db_dict[CryonirspBudName.num_map_scans.value] == num_map_scans
|
|
983
|
+
assert task.constants._db_dict[CryonirspBudName.num_meas.value] == 2
|
|
983
984
|
|
|
984
985
|
|
|
985
986
|
@pytest.mark.parametrize("arm_id", ["CI", "SP"])
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dkist-processing-cryonirsp
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.12.1rc1
|
|
4
4
|
Summary: Science processing code for the Cryo-NIRSP instrument on DKIST
|
|
5
5
|
Author-email: NSO / AURA <dkistdc@nso.edu>
|
|
6
6
|
License: BSD-3-Clause
|
|
@@ -17,7 +17,7 @@ Requires-Dist: Pillow==10.4.0
|
|
|
17
17
|
Requires-Dist: astropy==7.0.2
|
|
18
18
|
Requires-Dist: dkist-fits-specifications==4.17.0
|
|
19
19
|
Requires-Dist: dkist-header-validator==5.2.1
|
|
20
|
-
Requires-Dist: dkist-processing-common==11.2.
|
|
20
|
+
Requires-Dist: dkist-processing-common==11.2.1rc1
|
|
21
21
|
Requires-Dist: dkist-processing-math==2.2.0
|
|
22
22
|
Requires-Dist: dkist-processing-pac==3.1.1
|
|
23
23
|
Requires-Dist: dkist-spectral-lines==3.0.0
|
|
@@ -89,24 +89,24 @@ Requires-Dist: WTForms==3.2.1; extra == "frozen"
|
|
|
89
89
|
Requires-Dist: Werkzeug==2.2.3; extra == "frozen"
|
|
90
90
|
Requires-Dist: aioftp==0.26.2; extra == "frozen"
|
|
91
91
|
Requires-Dist: aiohappyeyeballs==2.6.1; extra == "frozen"
|
|
92
|
-
Requires-Dist: aiohttp==3.12.
|
|
92
|
+
Requires-Dist: aiohttp==3.12.15; extra == "frozen"
|
|
93
93
|
Requires-Dist: aiosignal==1.4.0; extra == "frozen"
|
|
94
94
|
Requires-Dist: alembic==1.16.4; extra == "frozen"
|
|
95
95
|
Requires-Dist: amqp==5.3.1; extra == "frozen"
|
|
96
96
|
Requires-Dist: annotated-types==0.7.0; extra == "frozen"
|
|
97
|
-
Requires-Dist: anyio==4.
|
|
97
|
+
Requires-Dist: anyio==4.10.0; extra == "frozen"
|
|
98
98
|
Requires-Dist: apache-airflow==2.10.5; extra == "frozen"
|
|
99
|
-
Requires-Dist: apache-airflow-providers-celery==3.12.
|
|
100
|
-
Requires-Dist: apache-airflow-providers-common-compat==1.7.
|
|
101
|
-
Requires-Dist: apache-airflow-providers-common-io==1.6.
|
|
102
|
-
Requires-Dist: apache-airflow-providers-common-sql==1.27.
|
|
99
|
+
Requires-Dist: apache-airflow-providers-celery==3.12.2; extra == "frozen"
|
|
100
|
+
Requires-Dist: apache-airflow-providers-common-compat==1.7.3; extra == "frozen"
|
|
101
|
+
Requires-Dist: apache-airflow-providers-common-io==1.6.2; extra == "frozen"
|
|
102
|
+
Requires-Dist: apache-airflow-providers-common-sql==1.27.5; extra == "frozen"
|
|
103
103
|
Requires-Dist: apache-airflow-providers-fab==1.5.3; extra == "frozen"
|
|
104
|
-
Requires-Dist: apache-airflow-providers-ftp==3.13.
|
|
105
|
-
Requires-Dist: apache-airflow-providers-http==5.3.
|
|
106
|
-
Requires-Dist: apache-airflow-providers-imap==3.9.
|
|
107
|
-
Requires-Dist: apache-airflow-providers-postgres==6.2.
|
|
108
|
-
Requires-Dist: apache-airflow-providers-smtp==2.
|
|
109
|
-
Requires-Dist: apache-airflow-providers-sqlite==4.1.
|
|
104
|
+
Requires-Dist: apache-airflow-providers-ftp==3.13.2; extra == "frozen"
|
|
105
|
+
Requires-Dist: apache-airflow-providers-http==5.3.3; extra == "frozen"
|
|
106
|
+
Requires-Dist: apache-airflow-providers-imap==3.9.2; extra == "frozen"
|
|
107
|
+
Requires-Dist: apache-airflow-providers-postgres==6.2.3; extra == "frozen"
|
|
108
|
+
Requires-Dist: apache-airflow-providers-smtp==2.2.0; extra == "frozen"
|
|
109
|
+
Requires-Dist: apache-airflow-providers-sqlite==4.1.2; extra == "frozen"
|
|
110
110
|
Requires-Dist: apispec==6.8.2; extra == "frozen"
|
|
111
111
|
Requires-Dist: argcomplete==3.6.2; extra == "frozen"
|
|
112
112
|
Requires-Dist: asdf==3.5.0; extra == "frozen"
|
|
@@ -115,19 +115,19 @@ Requires-Dist: asdf_transform_schemas==0.6.0; extra == "frozen"
|
|
|
115
115
|
Requires-Dist: asgiref==3.9.1; extra == "frozen"
|
|
116
116
|
Requires-Dist: asteval==1.0.6; extra == "frozen"
|
|
117
117
|
Requires-Dist: astropy==7.0.2; extra == "frozen"
|
|
118
|
-
Requires-Dist: astropy-iers-data==0.2025.
|
|
118
|
+
Requires-Dist: astropy-iers-data==0.2025.8.11.0.41.9; extra == "frozen"
|
|
119
119
|
Requires-Dist: asyncpg==0.30.0; extra == "frozen"
|
|
120
120
|
Requires-Dist: attrs==25.3.0; extra == "frozen"
|
|
121
121
|
Requires-Dist: babel==2.17.0; extra == "frozen"
|
|
122
122
|
Requires-Dist: billiard==4.2.1; extra == "frozen"
|
|
123
123
|
Requires-Dist: blinker==1.9.0; extra == "frozen"
|
|
124
|
-
Requires-Dist: boto3==1.
|
|
125
|
-
Requires-Dist: botocore==1.
|
|
124
|
+
Requires-Dist: boto3==1.40.6; extra == "frozen"
|
|
125
|
+
Requires-Dist: botocore==1.40.6; extra == "frozen"
|
|
126
126
|
Requires-Dist: cachelib==0.13.0; extra == "frozen"
|
|
127
127
|
Requires-Dist: celery==5.5.3; extra == "frozen"
|
|
128
|
-
Requires-Dist: certifi==2025.
|
|
128
|
+
Requires-Dist: certifi==2025.8.3; extra == "frozen"
|
|
129
129
|
Requires-Dist: cffi==1.17.1; extra == "frozen"
|
|
130
|
-
Requires-Dist: charset-normalizer==3.4.
|
|
130
|
+
Requires-Dist: charset-normalizer==3.4.3; extra == "frozen"
|
|
131
131
|
Requires-Dist: click==8.2.1; extra == "frozen"
|
|
132
132
|
Requires-Dist: click-didyoumean==0.3.1; extra == "frozen"
|
|
133
133
|
Requires-Dist: click-plugins==1.1.1.2; extra == "frozen"
|
|
@@ -139,15 +139,15 @@ Requires-Dist: connexion==2.14.2; extra == "frozen"
|
|
|
139
139
|
Requires-Dist: contourpy==1.3.3; extra == "frozen"
|
|
140
140
|
Requires-Dist: cron-descriptor==1.4.5; extra == "frozen"
|
|
141
141
|
Requires-Dist: croniter==6.0.0; extra == "frozen"
|
|
142
|
-
Requires-Dist: cryptography==45.0.
|
|
142
|
+
Requires-Dist: cryptography==45.0.6; extra == "frozen"
|
|
143
143
|
Requires-Dist: cycler==0.12.1; extra == "frozen"
|
|
144
144
|
Requires-Dist: dacite==1.9.2; extra == "frozen"
|
|
145
145
|
Requires-Dist: decorator==5.2.1; extra == "frozen"
|
|
146
146
|
Requires-Dist: dill==0.4.0; extra == "frozen"
|
|
147
147
|
Requires-Dist: dkist-header-validator==5.2.1; extra == "frozen"
|
|
148
|
-
Requires-Dist: dkist-processing-common==11.2.
|
|
148
|
+
Requires-Dist: dkist-processing-common==11.2.1rc1; extra == "frozen"
|
|
149
149
|
Requires-Dist: dkist-processing-core==5.1.1; extra == "frozen"
|
|
150
|
-
Requires-Dist: dkist-processing-cryonirsp==1.
|
|
150
|
+
Requires-Dist: dkist-processing-cryonirsp==1.12.1rc1; extra == "frozen"
|
|
151
151
|
Requires-Dist: dkist-processing-math==2.2.0; extra == "frozen"
|
|
152
152
|
Requires-Dist: dkist-processing-pac==3.1.1; extra == "frozen"
|
|
153
153
|
Requires-Dist: dkist-service-configuration==2.2; extra == "frozen"
|
|
@@ -162,10 +162,11 @@ Requires-Dist: flower==2.0.1; extra == "frozen"
|
|
|
162
162
|
Requires-Dist: fonttools==4.59.0; extra == "frozen"
|
|
163
163
|
Requires-Dist: frozenlist==1.7.0; extra == "frozen"
|
|
164
164
|
Requires-Dist: fsspec==2025.7.0; extra == "frozen"
|
|
165
|
-
Requires-Dist: globus-sdk==3.
|
|
166
|
-
Requires-Dist: google-re2==1.1.
|
|
165
|
+
Requires-Dist: globus-sdk==3.62.0; extra == "frozen"
|
|
166
|
+
Requires-Dist: google-re2==1.1.20250805; extra == "frozen"
|
|
167
167
|
Requires-Dist: googleapis-common-protos==1.70.0; extra == "frozen"
|
|
168
168
|
Requires-Dist: gqlclient==1.2.3; extra == "frozen"
|
|
169
|
+
Requires-Dist: greenlet==3.2.4; extra == "frozen"
|
|
169
170
|
Requires-Dist: grpcio==1.74.0; extra == "frozen"
|
|
170
171
|
Requires-Dist: gunicorn==23.0.0; extra == "frozen"
|
|
171
172
|
Requires-Dist: h11==0.16.0; extra == "frozen"
|
|
@@ -182,41 +183,41 @@ Requires-Dist: jmespath==1.0.1; extra == "frozen"
|
|
|
182
183
|
Requires-Dist: jsonschema==4.25.0; extra == "frozen"
|
|
183
184
|
Requires-Dist: jsonschema-specifications==2025.4.1; extra == "frozen"
|
|
184
185
|
Requires-Dist: jupyter_core==5.8.1; extra == "frozen"
|
|
185
|
-
Requires-Dist: kiwisolver==1.4.
|
|
186
|
+
Requires-Dist: kiwisolver==1.4.9; extra == "frozen"
|
|
186
187
|
Requires-Dist: kombu==5.5.4; extra == "frozen"
|
|
187
188
|
Requires-Dist: largestinteriorrectangle==0.2.1; extra == "frozen"
|
|
188
189
|
Requires-Dist: lazy-object-proxy==1.11.0; extra == "frozen"
|
|
189
190
|
Requires-Dist: lazy_loader==0.4; extra == "frozen"
|
|
190
|
-
Requires-Dist: limits==5.
|
|
191
|
+
Requires-Dist: limits==5.5.0; extra == "frozen"
|
|
191
192
|
Requires-Dist: linkify-it-py==2.0.3; extra == "frozen"
|
|
192
193
|
Requires-Dist: llvmlite==0.44.0; extra == "frozen"
|
|
193
194
|
Requires-Dist: lmfit==1.3.4; extra == "frozen"
|
|
194
195
|
Requires-Dist: lockfile==0.12.2; extra == "frozen"
|
|
195
196
|
Requires-Dist: loguru==0.7.3; extra == "frozen"
|
|
196
|
-
Requires-Dist: markdown-it-py==
|
|
197
|
+
Requires-Dist: markdown-it-py==4.0.0; extra == "frozen"
|
|
197
198
|
Requires-Dist: marshmallow==3.26.1; extra == "frozen"
|
|
198
199
|
Requires-Dist: marshmallow-oneofschema==3.2.0; extra == "frozen"
|
|
199
200
|
Requires-Dist: marshmallow-sqlalchemy==0.28.2; extra == "frozen"
|
|
200
|
-
Requires-Dist: matplotlib==3.10.
|
|
201
|
-
Requires-Dist: mdit-py-plugins==0.
|
|
201
|
+
Requires-Dist: matplotlib==3.10.5; extra == "frozen"
|
|
202
|
+
Requires-Dist: mdit-py-plugins==0.5.0; extra == "frozen"
|
|
202
203
|
Requires-Dist: mdurl==0.1.2; extra == "frozen"
|
|
203
204
|
Requires-Dist: methodtools==0.4.7; extra == "frozen"
|
|
204
205
|
Requires-Dist: more-itertools==10.7.0; extra == "frozen"
|
|
205
206
|
Requires-Dist: moviepy==2.1.2; extra == "frozen"
|
|
206
|
-
Requires-Dist: multidict==6.6.
|
|
207
|
+
Requires-Dist: multidict==6.6.4; extra == "frozen"
|
|
207
208
|
Requires-Dist: nbformat==5.10.4; extra == "frozen"
|
|
208
209
|
Requires-Dist: networkx==3.5; extra == "frozen"
|
|
209
210
|
Requires-Dist: numba==0.61.2; extra == "frozen"
|
|
210
211
|
Requires-Dist: numpy==2.2.5; extra == "frozen"
|
|
211
212
|
Requires-Dist: object-clerk==0.1.2; extra == "frozen"
|
|
212
|
-
Requires-Dist: opentelemetry-api==1.
|
|
213
|
-
Requires-Dist: opentelemetry-exporter-otlp==1.
|
|
214
|
-
Requires-Dist: opentelemetry-exporter-otlp-proto-common==1.
|
|
215
|
-
Requires-Dist: opentelemetry-exporter-otlp-proto-grpc==1.
|
|
216
|
-
Requires-Dist: opentelemetry-exporter-otlp-proto-http==1.
|
|
217
|
-
Requires-Dist: opentelemetry-proto==1.
|
|
218
|
-
Requires-Dist: opentelemetry-sdk==1.
|
|
219
|
-
Requires-Dist: opentelemetry-semantic-conventions==0.
|
|
213
|
+
Requires-Dist: opentelemetry-api==1.36.0; extra == "frozen"
|
|
214
|
+
Requires-Dist: opentelemetry-exporter-otlp==1.36.0; extra == "frozen"
|
|
215
|
+
Requires-Dist: opentelemetry-exporter-otlp-proto-common==1.36.0; extra == "frozen"
|
|
216
|
+
Requires-Dist: opentelemetry-exporter-otlp-proto-grpc==1.36.0; extra == "frozen"
|
|
217
|
+
Requires-Dist: opentelemetry-exporter-otlp-proto-http==1.36.0; extra == "frozen"
|
|
218
|
+
Requires-Dist: opentelemetry-proto==1.36.0; extra == "frozen"
|
|
219
|
+
Requires-Dist: opentelemetry-sdk==1.36.0; extra == "frozen"
|
|
220
|
+
Requires-Dist: opentelemetry-semantic-conventions==0.57b0; extra == "frozen"
|
|
220
221
|
Requires-Dist: ordered-set==4.1.0; extra == "frozen"
|
|
221
222
|
Requires-Dist: packaging==25.0; extra == "frozen"
|
|
222
223
|
Requires-Dist: pandas==2.3.1; extra == "frozen"
|
|
@@ -225,7 +226,7 @@ Requires-Dist: pathspec==0.12.1; extra == "frozen"
|
|
|
225
226
|
Requires-Dist: pendulum==3.1.0; extra == "frozen"
|
|
226
227
|
Requires-Dist: pika==1.3.2; extra == "frozen"
|
|
227
228
|
Requires-Dist: pillow==10.4.0; extra == "frozen"
|
|
228
|
-
Requires-Dist: pip==25.
|
|
229
|
+
Requires-Dist: pip==25.2; extra == "frozen"
|
|
229
230
|
Requires-Dist: platformdirs==4.3.8; extra == "frozen"
|
|
230
231
|
Requires-Dist: pluggy==1.6.0; extra == "frozen"
|
|
231
232
|
Requires-Dist: pooch==1.8.2; extra == "frozen"
|
|
@@ -258,7 +259,7 @@ Requires-Dist: retry==0.9.2; extra == "frozen"
|
|
|
258
259
|
Requires-Dist: rfc3339-validator==0.1.4; extra == "frozen"
|
|
259
260
|
Requires-Dist: rich==13.9.4; extra == "frozen"
|
|
260
261
|
Requires-Dist: rich-argparse==1.7.1; extra == "frozen"
|
|
261
|
-
Requires-Dist: rpds-py==0.
|
|
262
|
+
Requires-Dist: rpds-py==0.27.0; extra == "frozen"
|
|
262
263
|
Requires-Dist: s3transfer==0.13.1; extra == "frozen"
|
|
263
264
|
Requires-Dist: scikit-image==0.25.2; extra == "frozen"
|
|
264
265
|
Requires-Dist: scipy==1.15.3; extra == "frozen"
|
|
@@ -277,7 +278,7 @@ Requires-Dist: tenacity==9.1.2; extra == "frozen"
|
|
|
277
278
|
Requires-Dist: termcolor==3.1.0; extra == "frozen"
|
|
278
279
|
Requires-Dist: text-unidecode==1.3; extra == "frozen"
|
|
279
280
|
Requires-Dist: tifffile==2025.6.11; extra == "frozen"
|
|
280
|
-
Requires-Dist: tornado==6.5.
|
|
281
|
+
Requires-Dist: tornado==6.5.2; extra == "frozen"
|
|
281
282
|
Requires-Dist: tqdm==4.67.1; extra == "frozen"
|
|
282
283
|
Requires-Dist: traitlets==5.14.3; extra == "frozen"
|
|
283
284
|
Requires-Dist: typing-inspection==0.4.1; extra == "frozen"
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
changelog/.gitempty,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
changelog/215.misc.rst,sha256=BGZOyfZHj13wdJXM27NA2hTdM5E7S3NdKaY7TSC1i84,140
|
|
2
3
|
dkist_processing_cryonirsp/__init__.py,sha256=Z6-kB7fXXUI-F7Vz1HnEaja2h8qgH9IZExRl1lUxvZg,350
|
|
3
4
|
dkist_processing_cryonirsp/config.py,sha256=DlU2dr_oORrwytQVmEUSg3IRPXxE4vhAWiCiw7ykvzo,641
|
|
4
5
|
dkist_processing_cryonirsp/codecs/__init__.py,sha256=du1iitvsudSSOMENSywXmXSLOlvIocJsPbvfEcyqFNc,159
|
|
@@ -16,11 +17,11 @@ dkist_processing_cryonirsp/parsers/cryonirsp_l0_fits_access.py,sha256=rMB4mrUGQn
|
|
|
16
17
|
dkist_processing_cryonirsp/parsers/cryonirsp_l1_fits_access.py,sha256=sc8MzxYMc8E1eFrL5KguAGHViCMJhaDfiBtZPml4ELg,886
|
|
17
18
|
dkist_processing_cryonirsp/parsers/exposure_conditions.py,sha256=Mcud-0PQK0oJSxbqtQUtVk0t8b6YBEFSyGsGbG5UqGg,8445
|
|
18
19
|
dkist_processing_cryonirsp/parsers/map_repeats.py,sha256=PjZ986bqkCdii-EOzU045cWqadxQC_nyyqwWYIpYdls,1566
|
|
19
|
-
dkist_processing_cryonirsp/parsers/measurements.py,sha256=
|
|
20
|
+
dkist_processing_cryonirsp/parsers/measurements.py,sha256=nhll_yc-25ougA7N7VGP4kGWTqgQ8tDkhJVLsA0nStE,2813
|
|
20
21
|
dkist_processing_cryonirsp/parsers/modstates.py,sha256=00a4kCiwgioTpMkYY9ouFuiEsoQHcD-sJOM95qI9Fhc,1093
|
|
21
22
|
dkist_processing_cryonirsp/parsers/optical_density_filters.py,sha256=NURdMnNVu_nV7IfabyYynAoLe4xZ5iLbs6VU_lHmBA4,1531
|
|
22
23
|
dkist_processing_cryonirsp/parsers/polarimetric_check.py,sha256=HBzg9Zi9-M1M2jh4J7LoNd3OSn8MmU9TcujyhD788Lo,4746
|
|
23
|
-
dkist_processing_cryonirsp/parsers/scan_step.py,sha256=
|
|
24
|
+
dkist_processing_cryonirsp/parsers/scan_step.py,sha256=3HuclK9kHWgx29V6YQLr0nnGhaJJSSTexWAZ5STwQXA,19177
|
|
24
25
|
dkist_processing_cryonirsp/parsers/time.py,sha256=dpajm3tfrih-8pjlOWOvZVJVP2FihR87HFQSjR_KPYI,2543
|
|
25
26
|
dkist_processing_cryonirsp/parsers/wavelength.py,sha256=Ay5hZiDNV25-N_QXZINTCgn1ToiP2jvwumkbirBiJGk,883
|
|
26
27
|
dkist_processing_cryonirsp/tasks/__init__.py,sha256=iSODAESNU6zBZo_t44LeTmS1oj_l6EVF7k8xSNtppnk,1057
|
|
@@ -65,7 +66,7 @@ dkist_processing_cryonirsp/tests/test_instrument_polarization.py,sha256=lYd4Dg3u
|
|
|
65
66
|
dkist_processing_cryonirsp/tests/test_linearity_correction.py,sha256=00dQy-GiT8HFGIBQRiYJGG7yakdsyUghBXg25RSEuRU,9308
|
|
66
67
|
dkist_processing_cryonirsp/tests/test_make_movie_frames.py,sha256=oQnUmb9IxkRG7NrY00oS1g42L_LP941vdYdbEbI47gE,4858
|
|
67
68
|
dkist_processing_cryonirsp/tests/test_parameters.py,sha256=hy0ssu2OJmkHFKlGd0_d6EW10YjWsqGb68rOFlPqGuo,11105
|
|
68
|
-
dkist_processing_cryonirsp/tests/test_parse.py,sha256=
|
|
69
|
+
dkist_processing_cryonirsp/tests/test_parse.py,sha256=VKd9qa2MkC9u14XchYk2QHyIvuPiHUTdyleJgCycXj4,57136
|
|
69
70
|
dkist_processing_cryonirsp/tests/test_quality.py,sha256=DrlHre7thON2x4QzWdupuqKT_WoPtW43Jnjb7lLnp3I,8083
|
|
70
71
|
dkist_processing_cryonirsp/tests/test_sp_beam_boundaries.py,sha256=fPsXnNvkb76mfp7bxu42eTLQpe_TmCc9Ue8hJ_LymbA,4904
|
|
71
72
|
dkist_processing_cryonirsp/tests/test_sp_geometric.py,sha256=zeELL7dvAntN9k19WWTKwpFX95Fj-GxRV0tx-84sVdE,15645
|
|
@@ -106,7 +107,7 @@ docs/scientific_changelog.rst,sha256=01AWBSHg8zElnodCgAq-hMxhk9CkX5rtEENx4iz0sjI
|
|
|
106
107
|
docs/sp_science_calibration.rst,sha256=XL-H_hyzqwPHYNW3j-muItX_hGqMi-gjFRQbHp60LlU,2997
|
|
107
108
|
docs/wavelength_calibration.rst,sha256=s7ds_QKlVJ68fdONSY3DOBvHHaQC0JR_D4goG_VVKWw,3457
|
|
108
109
|
licenses/LICENSE.rst,sha256=piZaQplkzOMmH1NXg6QIdo9wwo9pPCoHkvm2-DmH76E,1462
|
|
109
|
-
dkist_processing_cryonirsp-1.
|
|
110
|
-
dkist_processing_cryonirsp-1.
|
|
111
|
-
dkist_processing_cryonirsp-1.
|
|
112
|
-
dkist_processing_cryonirsp-1.
|
|
110
|
+
dkist_processing_cryonirsp-1.12.1rc1.dist-info/METADATA,sha256=-en0bB-_g8wYlkDnaNod_vUdC0F0Vd36RYlNBdMTjKw,22168
|
|
111
|
+
dkist_processing_cryonirsp-1.12.1rc1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
112
|
+
dkist_processing_cryonirsp-1.12.1rc1.dist-info/top_level.txt,sha256=Sm9b1ddKnsF9Bh3mqDOct1Sm7k8I9aN7vGHgpmu-MlQ,51
|
|
113
|
+
dkist_processing_cryonirsp-1.12.1rc1.dist-info/RECORD,,
|
{dkist_processing_cryonirsp-1.11.1.dist-info → dkist_processing_cryonirsp-1.12.1rc1.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|