dkist-processing-cryonirsp 1.12.4rc1__py3-none-any.whl → 1.13.0__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.
- dkist_processing_cryonirsp/models/exposure_conditions.py +5 -5
- dkist_processing_cryonirsp/parsers/exposure_conditions.py +9 -4
- dkist_processing_cryonirsp/parsers/polarimetric_check.py +11 -5
- {dkist_processing_cryonirsp-1.12.4rc1.dist-info → dkist_processing_cryonirsp-1.13.0.dist-info}/METADATA +20 -24
- {dkist_processing_cryonirsp-1.12.4rc1.dist-info → dkist_processing_cryonirsp-1.13.0.dist-info}/RECORD +7 -9
- changelog/218.misc.1.rst +0 -1
- changelog/218.misc.rst +0 -3
- {dkist_processing_cryonirsp-1.12.4rc1.dist-info → dkist_processing_cryonirsp-1.13.0.dist-info}/WHEEL +0 -0
- {dkist_processing_cryonirsp-1.12.4rc1.dist-info → dkist_processing_cryonirsp-1.13.0.dist-info}/top_level.txt +0 -0
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
"""Support classes for exposure conditions."""
|
|
2
2
|
|
|
3
|
-
from collections import namedtuple
|
|
4
3
|
from enum import StrEnum
|
|
4
|
+
from typing import NamedTuple
|
|
5
5
|
|
|
6
6
|
# Number of digits used to round the exposure when creating the ExposureConditions tuple in fits_access
|
|
7
7
|
CRYO_EXP_TIME_ROUND_DIGITS: int = 3
|
|
8
8
|
|
|
9
|
-
"""Base class to hold a tuple of exposure time and filter name."""
|
|
10
|
-
ExposureConditionsBase = namedtuple("ExposureConditions", ["exposure_time", "filter_name"])
|
|
11
9
|
|
|
10
|
+
class ExposureConditions(NamedTuple):
|
|
11
|
+
"""Named tuple to hold exposure time and filter name."""
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
exposure_time: float
|
|
14
|
+
filter_name: str
|
|
15
15
|
|
|
16
16
|
def __str__(self):
|
|
17
17
|
return f"{self.exposure_time}_{self.filter_name}"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""Buds to parse the combination of exposure time and filter name."""
|
|
2
2
|
|
|
3
|
-
from collections import namedtuple
|
|
4
3
|
from typing import Hashable
|
|
4
|
+
from typing import NamedTuple
|
|
5
5
|
from typing import Type
|
|
6
6
|
|
|
7
7
|
from dkist_processing_common.models.flower_pot import SpilledDirt
|
|
@@ -124,12 +124,17 @@ class CryonirspCIConditionalTaskExposureConditionsBud(
|
|
|
124
124
|
self.metadata_key = "exposure_conditions"
|
|
125
125
|
|
|
126
126
|
|
|
127
|
+
class DarkTaskTestAndExposureConditionsContainer(NamedTuple):
|
|
128
|
+
"""Named tuple to hold whether the task is dark along with the associated exposure conditions."""
|
|
129
|
+
|
|
130
|
+
is_dark: bool
|
|
131
|
+
exposure_conditions: ExposureConditions
|
|
132
|
+
|
|
133
|
+
|
|
127
134
|
class CryonirspPickyDarkExposureConditionsBudBase(Stem):
|
|
128
135
|
"""Parse exposure conditions tuples to ensure existence of dark frames with the required exposure conditions."""
|
|
129
136
|
|
|
130
|
-
DarkTaskTestAndExposureConditions =
|
|
131
|
-
"DarkTaskTestAndExposureConditions", ["is_dark", "exposure_conditions"]
|
|
132
|
-
)
|
|
137
|
+
DarkTaskTestAndExposureConditions = DarkTaskTestAndExposureConditionsContainer
|
|
133
138
|
|
|
134
139
|
def __init__(self, stem_name: str, task_types_to_ignore: list[str]):
|
|
135
140
|
super().__init__(stem_name=stem_name)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"""Copy of UniqueBud from common that only activates if the frames are polarimetric "observe" or "polcal" task, or non-polarimetric "observe" task."""
|
|
2
2
|
|
|
3
|
-
from
|
|
3
|
+
from typing import NamedTuple
|
|
4
4
|
from typing import Type
|
|
5
5
|
|
|
6
6
|
from dkist_processing_common.models.flower_pot import SpilledDirt
|
|
@@ -8,16 +8,22 @@ from dkist_processing_common.models.flower_pot import Stem
|
|
|
8
8
|
from dkist_processing_common.models.flower_pot import Thorn
|
|
9
9
|
from dkist_processing_common.models.task_name import TaskName
|
|
10
10
|
|
|
11
|
-
from dkist_processing_cryonirsp.models.constants import CryonirspBudName
|
|
12
11
|
from dkist_processing_cryonirsp.parsers.cryonirsp_l0_fits_access import CryonirspL0FitsAccess
|
|
13
12
|
|
|
14
13
|
|
|
14
|
+
class PolarimetricValueDataContainer(NamedTuple):
|
|
15
|
+
"""Named tuple to hold polarimetric metadata about a task."""
|
|
16
|
+
|
|
17
|
+
task: str
|
|
18
|
+
num_modstates: int
|
|
19
|
+
spin_mode: str
|
|
20
|
+
bud_value: str | int | float | bool
|
|
21
|
+
|
|
22
|
+
|
|
15
23
|
class PolarimetricCheckingUniqueBud(Stem):
|
|
16
24
|
"""Bud for checking if frames are polarimetric."""
|
|
17
25
|
|
|
18
|
-
PolarimetricValueData =
|
|
19
|
-
"PolarimetricValueData", ["task", "num_modstates", "spin_mode", "bud_value"]
|
|
20
|
-
)
|
|
26
|
+
PolarimetricValueData = PolarimetricValueDataContainer
|
|
21
27
|
observe_task_name = TaskName.observe.value.casefold()
|
|
22
28
|
polcal_task_name = TaskName.polcal.value.casefold()
|
|
23
29
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dkist-processing-cryonirsp
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.13.0
|
|
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
|
|
@@ -10,14 +10,14 @@ Project-URL: Documentation, https://docs.dkist.nso.edu/projects/cryo-nirsp
|
|
|
10
10
|
Project-URL: Help, https://nso.atlassian.net/servicedesk/customer/portal/5
|
|
11
11
|
Classifier: Programming Language :: Python
|
|
12
12
|
Classifier: Programming Language :: Python :: 3
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.
|
|
14
|
-
Requires-Python: >=3.
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
14
|
+
Requires-Python: >=3.12
|
|
15
15
|
Description-Content-Type: text/x-rst
|
|
16
16
|
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.
|
|
20
|
+
Requires-Dist: dkist-processing-common==11.5.0
|
|
21
21
|
Requires-Dist: dkist-processing-math==2.2.1
|
|
22
22
|
Requires-Dist: dkist-processing-pac==3.1.1
|
|
23
23
|
Requires-Dist: dkist-spectral-lines==3.0.0
|
|
@@ -58,7 +58,7 @@ Provides-Extra: docs
|
|
|
58
58
|
Requires-Dist: sphinx; extra == "docs"
|
|
59
59
|
Requires-Dist: sphinx-astropy; extra == "docs"
|
|
60
60
|
Requires-Dist: sphinx-changelog; extra == "docs"
|
|
61
|
-
Requires-Dist: sphinx-autoapi
|
|
61
|
+
Requires-Dist: sphinx-autoapi; extra == "docs"
|
|
62
62
|
Requires-Dist: pytest; extra == "docs"
|
|
63
63
|
Requires-Dist: towncrier; extra == "docs"
|
|
64
64
|
Requires-Dist: dkist-sphinx-theme; extra == "docs"
|
|
@@ -95,7 +95,7 @@ Requires-Dist: alembic==1.16.5; extra == "frozen"
|
|
|
95
95
|
Requires-Dist: amqp==5.3.1; extra == "frozen"
|
|
96
96
|
Requires-Dist: annotated-types==0.7.0; extra == "frozen"
|
|
97
97
|
Requires-Dist: anyio==4.10.0; extra == "frozen"
|
|
98
|
-
Requires-Dist: apache-airflow==2.
|
|
98
|
+
Requires-Dist: apache-airflow==2.11.0; extra == "frozen"
|
|
99
99
|
Requires-Dist: apache-airflow-providers-celery==3.12.2; extra == "frozen"
|
|
100
100
|
Requires-Dist: apache-airflow-providers-common-compat==1.7.3; extra == "frozen"
|
|
101
101
|
Requires-Dist: apache-airflow-providers-common-io==1.6.2; extra == "frozen"
|
|
@@ -107,7 +107,7 @@ Requires-Dist: apache-airflow-providers-imap==3.9.2; extra == "frozen"
|
|
|
107
107
|
Requires-Dist: apache-airflow-providers-postgres==6.2.3; extra == "frozen"
|
|
108
108
|
Requires-Dist: apache-airflow-providers-smtp==2.2.0; extra == "frozen"
|
|
109
109
|
Requires-Dist: apache-airflow-providers-sqlite==4.1.2; extra == "frozen"
|
|
110
|
-
Requires-Dist: apispec==6.8.
|
|
110
|
+
Requires-Dist: apispec==6.8.3; extra == "frozen"
|
|
111
111
|
Requires-Dist: argcomplete==3.6.2; extra == "frozen"
|
|
112
112
|
Requires-Dist: asdf==3.5.0; extra == "frozen"
|
|
113
113
|
Requires-Dist: asdf_standard==1.4.0; extra == "frozen"
|
|
@@ -115,14 +115,14 @@ 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.9.
|
|
118
|
+
Requires-Dist: astropy-iers-data==0.2025.9.8.0.36.17; 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.40.
|
|
125
|
-
Requires-Dist: botocore==1.40.
|
|
124
|
+
Requires-Dist: boto3==1.40.25; extra == "frozen"
|
|
125
|
+
Requires-Dist: botocore==1.40.25; extra == "frozen"
|
|
126
126
|
Requires-Dist: cachelib==0.13.0; extra == "frozen"
|
|
127
127
|
Requires-Dist: celery==5.5.3; extra == "frozen"
|
|
128
128
|
Requires-Dist: certifi==2025.8.3; extra == "frozen"
|
|
@@ -145,15 +145,15 @@ 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.
|
|
149
|
-
Requires-Dist: dkist-processing-core==5.
|
|
150
|
-
Requires-Dist: dkist-processing-cryonirsp==1.
|
|
148
|
+
Requires-Dist: dkist-processing-common==11.5.0; extra == "frozen"
|
|
149
|
+
Requires-Dist: dkist-processing-core==5.2.1; extra == "frozen"
|
|
150
|
+
Requires-Dist: dkist-processing-cryonirsp==1.13.0; extra == "frozen"
|
|
151
151
|
Requires-Dist: dkist-processing-math==2.2.1; 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"
|
|
154
154
|
Requires-Dist: dkist-spectral-lines==3.0.0; extra == "frozen"
|
|
155
155
|
Requires-Dist: dkist_fits_specifications==4.17.0; extra == "frozen"
|
|
156
|
-
Requires-Dist: dnspython==2.
|
|
156
|
+
Requires-Dist: dnspython==2.8.0; extra == "frozen"
|
|
157
157
|
Requires-Dist: ecs-logging==2.2.0; extra == "frozen"
|
|
158
158
|
Requires-Dist: elastic-apm==6.24.0; extra == "frozen"
|
|
159
159
|
Requires-Dist: email-validator==2.3.0; extra == "frozen"
|
|
@@ -162,11 +162,10 @@ Requires-Dist: flower==2.0.1; extra == "frozen"
|
|
|
162
162
|
Requires-Dist: fonttools==4.59.2; extra == "frozen"
|
|
163
163
|
Requires-Dist: frozenlist==1.7.0; extra == "frozen"
|
|
164
164
|
Requires-Dist: fsspec==2025.9.0; extra == "frozen"
|
|
165
|
-
Requires-Dist: globus-sdk==3.
|
|
165
|
+
Requires-Dist: globus-sdk==3.63.0; extra == "frozen"
|
|
166
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"
|
|
170
169
|
Requires-Dist: grpcio==1.74.0; extra == "frozen"
|
|
171
170
|
Requires-Dist: gunicorn==23.0.0; extra == "frozen"
|
|
172
171
|
Requires-Dist: h11==0.16.0; extra == "frozen"
|
|
@@ -181,7 +180,7 @@ Requires-Dist: inflection==0.5.1; extra == "frozen"
|
|
|
181
180
|
Requires-Dist: itsdangerous==2.2.0; extra == "frozen"
|
|
182
181
|
Requires-Dist: jmespath==1.0.1; extra == "frozen"
|
|
183
182
|
Requires-Dist: jsonschema==4.25.1; extra == "frozen"
|
|
184
|
-
Requires-Dist: jsonschema-specifications==2025.
|
|
183
|
+
Requires-Dist: jsonschema-specifications==2025.9.1; extra == "frozen"
|
|
185
184
|
Requires-Dist: jupyter_core==5.8.1; extra == "frozen"
|
|
186
185
|
Requires-Dist: kiwisolver==1.4.9; extra == "frozen"
|
|
187
186
|
Requires-Dist: kombu==5.5.4; extra == "frozen"
|
|
@@ -209,7 +208,7 @@ Requires-Dist: nbformat==5.10.4; extra == "frozen"
|
|
|
209
208
|
Requires-Dist: networkx==3.5; extra == "frozen"
|
|
210
209
|
Requires-Dist: numba==0.61.2; extra == "frozen"
|
|
211
210
|
Requires-Dist: numpy==2.2.5; extra == "frozen"
|
|
212
|
-
Requires-Dist: object-clerk==0.
|
|
211
|
+
Requires-Dist: object-clerk==1.0.0; extra == "frozen"
|
|
213
212
|
Requires-Dist: opentelemetry-api==1.36.0; extra == "frozen"
|
|
214
213
|
Requires-Dist: opentelemetry-exporter-otlp==1.36.0; extra == "frozen"
|
|
215
214
|
Requires-Dist: opentelemetry-exporter-otlp-proto-common==1.36.0; extra == "frozen"
|
|
@@ -238,7 +237,6 @@ Requires-Dist: propcache==0.3.2; extra == "frozen"
|
|
|
238
237
|
Requires-Dist: protobuf==6.32.0; extra == "frozen"
|
|
239
238
|
Requires-Dist: psutil==7.0.0; extra == "frozen"
|
|
240
239
|
Requires-Dist: psycopg2-binary==2.9.10; extra == "frozen"
|
|
241
|
-
Requires-Dist: py==1.11.0; extra == "frozen"
|
|
242
240
|
Requires-Dist: pycparser==2.22; extra == "frozen"
|
|
243
241
|
Requires-Dist: pydantic==2.11.7; extra == "frozen"
|
|
244
242
|
Requires-Dist: pydantic-settings==2.10.1; extra == "frozen"
|
|
@@ -255,7 +253,6 @@ Requires-Dist: redis==4.6.0; extra == "frozen"
|
|
|
255
253
|
Requires-Dist: referencing==0.36.2; extra == "frozen"
|
|
256
254
|
Requires-Dist: requests==2.32.5; extra == "frozen"
|
|
257
255
|
Requires-Dist: requests-toolbelt==1.0.0; extra == "frozen"
|
|
258
|
-
Requires-Dist: retry==0.9.2; extra == "frozen"
|
|
259
256
|
Requires-Dist: rfc3339-validator==0.1.4; extra == "frozen"
|
|
260
257
|
Requires-Dist: rich==13.9.4; extra == "frozen"
|
|
261
258
|
Requires-Dist: rich-argparse==1.7.1; extra == "frozen"
|
|
@@ -264,8 +261,7 @@ Requires-Dist: s3transfer==0.13.1; extra == "frozen"
|
|
|
264
261
|
Requires-Dist: scikit-image==0.25.2; extra == "frozen"
|
|
265
262
|
Requires-Dist: scipy==1.15.3; extra == "frozen"
|
|
266
263
|
Requires-Dist: semantic-version==2.10.0; extra == "frozen"
|
|
267
|
-
Requires-Dist: setproctitle==1.3.
|
|
268
|
-
Requires-Dist: setuptools==65.5.0; extra == "frozen"
|
|
264
|
+
Requires-Dist: setproctitle==1.3.7; extra == "frozen"
|
|
269
265
|
Requires-Dist: six==1.17.0; extra == "frozen"
|
|
270
266
|
Requires-Dist: sniffio==1.3.1; extra == "frozen"
|
|
271
267
|
Requires-Dist: solar-wavelength-calibration==1.0.1; extra == "frozen"
|
|
@@ -273,8 +269,8 @@ Requires-Dist: sqids==0.5.1; extra == "frozen"
|
|
|
273
269
|
Requires-Dist: sqlparse==0.5.3; extra == "frozen"
|
|
274
270
|
Requires-Dist: sunpy==6.1.1; extra == "frozen"
|
|
275
271
|
Requires-Dist: tabulate==0.9.0; extra == "frozen"
|
|
276
|
-
Requires-Dist: talus==1.
|
|
277
|
-
Requires-Dist: tenacity==
|
|
272
|
+
Requires-Dist: talus==1.3.4; extra == "frozen"
|
|
273
|
+
Requires-Dist: tenacity==8.5.0; extra == "frozen"
|
|
278
274
|
Requires-Dist: termcolor==3.1.0; extra == "frozen"
|
|
279
275
|
Requires-Dist: text-unidecode==1.3; extra == "frozen"
|
|
280
276
|
Requires-Dist: tifffile==2025.8.28; extra == "frozen"
|
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
changelog/.gitempty,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
changelog/218.misc.1.rst,sha256=267FbVD9orsv9Rc5Yb_qtBKXSILfv5okoQ-m5Dol8Ic,114
|
|
3
|
-
changelog/218.misc.rst,sha256=IyqhbOY_ufgQljVdE8EWkSrivz14ZIXCw0ami4p7ltY,208
|
|
4
2
|
dkist_processing_cryonirsp/__init__.py,sha256=L9tNDcyFnHkx7DWTXAbchOb8ok7TRi80wrrEXY99_2g,351
|
|
5
3
|
dkist_processing_cryonirsp/config.py,sha256=D57uhnlP6NLTxDI5G_DDbEb0ZpMUfcNJivqDIXfGQRw,642
|
|
6
4
|
dkist_processing_cryonirsp/codecs/__init__.py,sha256=du1iitvsudSSOMENSywXmXSLOlvIocJsPbvfEcyqFNc,159
|
|
@@ -8,7 +6,7 @@ dkist_processing_cryonirsp/codecs/fits.py,sha256=36QuV8UQzxOljg3AVFGjEZv4iII4Sac
|
|
|
8
6
|
dkist_processing_cryonirsp/models/__init__.py,sha256=m6UekKftTahNJ3W5K3mZSz4Y4ZZpHRxF_ZAxuaKYL7o,12
|
|
9
7
|
dkist_processing_cryonirsp/models/beam_boundaries.py,sha256=aKsFzYxCImE7VPB73a1u4fz1LEz4j38DJO-IO7iYzJQ,1160
|
|
10
8
|
dkist_processing_cryonirsp/models/constants.py,sha256=Q60I-vqx40G9wwhfinNbi-ky4oUBFtHIFA6xXEzixQE,11167
|
|
11
|
-
dkist_processing_cryonirsp/models/exposure_conditions.py,sha256=
|
|
9
|
+
dkist_processing_cryonirsp/models/exposure_conditions.py,sha256=tfrQo1U5cqPjSfBZML3-QWRXs9pnuP52v7NbkT8_Ijo,694
|
|
12
10
|
dkist_processing_cryonirsp/models/parameters.py,sha256=kfNpxsfidgfrma1ZEjG1qMp6NwbtliJdx8DZ6Whm-C0,13145
|
|
13
11
|
dkist_processing_cryonirsp/models/tags.py,sha256=OrAyJoJd4snhDtPNGovlfhvVjiFoSXs4R2aNZNpGbgo,5744
|
|
14
12
|
dkist_processing_cryonirsp/models/task_name.py,sha256=cI6f01HF_W9RWcwMwv1cDvlusIlNcBQHQwy93MGin64,440
|
|
@@ -16,12 +14,12 @@ dkist_processing_cryonirsp/parsers/__init__.py,sha256=m6UekKftTahNJ3W5K3mZSz4Y4Z
|
|
|
16
14
|
dkist_processing_cryonirsp/parsers/check_for_gains.py,sha256=_pF82ZXyHJizTYvi0UUpeqwCwbQEKXeC7q_TVd5Nf80,2342
|
|
17
15
|
dkist_processing_cryonirsp/parsers/cryonirsp_l0_fits_access.py,sha256=adLfsjGxpsARKJ8qHvXgNJxZDLfSBvQQUjB3lVvQCcg,5609
|
|
18
16
|
dkist_processing_cryonirsp/parsers/cryonirsp_l1_fits_access.py,sha256=YBbeUOk3bbpIQd9z8stm3K2qcjTaI9B2WVAHeVfQ1po,887
|
|
19
|
-
dkist_processing_cryonirsp/parsers/exposure_conditions.py,sha256=
|
|
17
|
+
dkist_processing_cryonirsp/parsers/exposure_conditions.py,sha256=ZHlq-wCSzsHHVUj0kc2QzCWNdGX3xGEoHqJ4_7B5hQE,8615
|
|
20
18
|
dkist_processing_cryonirsp/parsers/map_repeats.py,sha256=ooX7JrZpUfEVVZe442BwO_zPtK1Dc7inFA5uk548cPw,1567
|
|
21
19
|
dkist_processing_cryonirsp/parsers/measurements.py,sha256=IvVT8kokuO2a1TwhkUYQ52gBlUu98TyyzNKlhquZhV8,2814
|
|
22
20
|
dkist_processing_cryonirsp/parsers/modstates.py,sha256=QkDAy92PIRg-Y7MIgPpmi34VlSzctsVpgvuZ7r-orMM,1094
|
|
23
21
|
dkist_processing_cryonirsp/parsers/optical_density_filters.py,sha256=C3BtcZqEY0iS0uGTboNDgFUAZg5ql7yic4QpM2PU7-o,1532
|
|
24
|
-
dkist_processing_cryonirsp/parsers/polarimetric_check.py,sha256=
|
|
22
|
+
dkist_processing_cryonirsp/parsers/polarimetric_check.py,sha256=45QrvwtUC3RVte6iEXF2jyXzaoHuBngBnz7X_O8tp1g,4812
|
|
25
23
|
dkist_processing_cryonirsp/parsers/scan_step.py,sha256=HbrDPdveZjfCRxzAfm_nNLaKNb1uL-zTe3S72X8aTW0,19178
|
|
26
24
|
dkist_processing_cryonirsp/parsers/time.py,sha256=U6gCg4U1Yh5nflU-fVqxiT5Cm5o-r0Wtmw105J6aYDI,2544
|
|
27
25
|
dkist_processing_cryonirsp/parsers/wavelength.py,sha256=bGtI29AexUrCgE9uJtmbyZSfeRuW5Ng6GeAngLph4CQ,884
|
|
@@ -108,7 +106,7 @@ docs/scientific_changelog.rst,sha256=01AWBSHg8zElnodCgAq-hMxhk9CkX5rtEENx4iz0sjI
|
|
|
108
106
|
docs/sp_science_calibration.rst,sha256=XL-H_hyzqwPHYNW3j-muItX_hGqMi-gjFRQbHp60LlU,2997
|
|
109
107
|
docs/wavelength_calibration.rst,sha256=s7ds_QKlVJ68fdONSY3DOBvHHaQC0JR_D4goG_VVKWw,3457
|
|
110
108
|
licenses/LICENSE.rst,sha256=piZaQplkzOMmH1NXg6QIdo9wwo9pPCoHkvm2-DmH76E,1462
|
|
111
|
-
dkist_processing_cryonirsp-1.
|
|
112
|
-
dkist_processing_cryonirsp-1.
|
|
113
|
-
dkist_processing_cryonirsp-1.
|
|
114
|
-
dkist_processing_cryonirsp-1.
|
|
109
|
+
dkist_processing_cryonirsp-1.13.0.dist-info/METADATA,sha256=wyHPnRHDKwGDe8Lkkb6-2SvL8nNijepx0YJfLGJZM7w,21968
|
|
110
|
+
dkist_processing_cryonirsp-1.13.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
111
|
+
dkist_processing_cryonirsp-1.13.0.dist-info/top_level.txt,sha256=Sm9b1ddKnsF9Bh3mqDOct1Sm7k8I9aN7vGHgpmu-MlQ,51
|
|
112
|
+
dkist_processing_cryonirsp-1.13.0.dist-info/RECORD,,
|
changelog/218.misc.1.rst
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
Update `dkist-processing-common` to v11.4.0, which includes structure for metadata keys and additional constants.
|
changelog/218.misc.rst
DELETED
{dkist_processing_cryonirsp-1.12.4rc1.dist-info → dkist_processing_cryonirsp-1.13.0.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|