dkist-processing-cryonirsp 1.4.23__py3-none-any.whl → 1.5.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.

@@ -236,6 +236,16 @@ class CryonirspConstants(ConstantsBase):
236
236
  CryonirspBudName.modulator_spin_mode.value
237
237
  ] in ["Continuous", "Stepped"]
238
238
 
239
+ @property
240
+ def pac_init_set(self):
241
+ """Return the label for the initial set of parameter values used when fitting demodulation matrices."""
242
+ retarder_name = self._db_dict[BudName.retarder_name.value]
243
+ match retarder_name:
244
+ case "SiO2 OC":
245
+ return "OCCal_VIS"
246
+ case _:
247
+ raise ValueError(f"No init set known for {retarder_name = }")
248
+
239
249
  @property
240
250
  def axis_1_type(self) -> str:
241
251
  """Find the type of the first array axis."""
@@ -82,11 +82,6 @@ class CryonirspParameters(ParameterBase, ParameterWavelengthMixin, ParameterArmI
82
82
  """Name of set of fitting flags to use during PAC Calibration Unit parameter fits."""
83
83
  return self._find_most_recent_past_value("cryonirsp_polcal_pac_fit_mode")
84
84
 
85
- @property
86
- def polcal_pac_init_set(self):
87
- """Name of set of initial values for Calibration Unit parameter fit."""
88
- return self._find_most_recent_past_value("cryonirsp_polcal_pac_init_set")
89
-
90
85
  @property
91
86
  def beam_boundaries_smoothing_disk_size(self) -> int:
92
87
  """Return the size of the smoothing disk (in pixels) to be used in the beam boundaries computation."""
@@ -99,7 +99,7 @@ class InstrumentPolarizationCalibrationBase(CryonirspTaskBase, ABC):
99
99
  local_dresser=local_dresser,
100
100
  global_dresser=global_dresser,
101
101
  fit_mode=self.parameters.polcal_pac_fit_mode,
102
- init_set=self.parameters.polcal_pac_init_set,
102
+ init_set=self.constants.pac_init_set,
103
103
  fit_TM=False,
104
104
  )
105
105
 
@@ -7,6 +7,7 @@ from dkist_processing_common.models.task_name import TaskName
7
7
  from dkist_processing_common.parsers.cs_step import CSStepFlower
8
8
  from dkist_processing_common.parsers.cs_step import NumCSStepBud
9
9
  from dkist_processing_common.parsers.near_bud import TaskNearFloatBud
10
+ from dkist_processing_common.parsers.retarder import RetarderNameBud
10
11
  from dkist_processing_common.parsers.single_value_single_key_flower import (
11
12
  SingleValueSingleKeyFlower,
12
13
  )
@@ -216,6 +217,7 @@ class ParseL0CryonirspLinearizedData(ParseDataBase, InputDatasetMixin):
216
217
  constant_name=CryonirspBudName.modulator_spin_mode.value,
217
218
  metadata_key="modulator_spin_mode",
218
219
  ),
220
+ RetarderNameBud(),
219
221
  ]
220
222
 
221
223
  @property
@@ -143,6 +143,7 @@ class CryonirspConstantsDb:
143
143
  )
144
144
  SPECTRAL_LINE: str = "CRSP Ca II H"
145
145
  MODULATOR_SPIN_MODE: str = "Continuous"
146
+ RETARDER_NAME: str = "SiO2 OC"
146
147
  STOKES_PARAMS: tuple[str] = (
147
148
  "I",
148
149
  "Q",
@@ -307,7 +308,6 @@ def cryonirsp_testing_parameters_factory(
307
308
  cryonirsp_polcal_num_spatial_bins: int = 1
308
309
  cryonirsp_polcal_num_spectral_bins: int = 1
309
310
  cryonirsp_polcal_pac_fit_mode: str = "use_M12_I_sys_per_step"
310
- cryonirsp_polcal_pac_init_set: str = "OCCal_VIS"
311
311
  cryonirsp_geo_upsample_factor: int = 100
312
312
  cryonirsp_geo_max_shift: int = 80
313
313
  cryonirsp_geo_poly_fit_order: int = 3
@@ -536,13 +536,15 @@ class ModulatedPolcalHeaders(SimpleModulatedHeaders):
536
536
  self.add_constant_key("PAC__007", "0.0")
537
537
  self.add_constant_key("CRSP_044", "Continuous")
538
538
 
539
- if extra_headers != None:
540
- for header, value in extra_headers.items():
541
- self.add_constant_key(header, value)
542
- else:
543
- self.add_constant_key("PAC__004", "Sapphire Polarizer")
544
- self.add_constant_key("PAC__006", "clear")
545
- self.add_constant_key("PAC__008", "FieldStop (5arcmin)")
539
+ default_pac_values = {
540
+ "PAC__004": "Sapphire Polarizer",
541
+ "PAC__006": "clear",
542
+ "PAC__008": "FieldStop (5arcmin)",
543
+ }
544
+ if extra_headers is None:
545
+ extra_headers = dict()
546
+ for header, value in (default_pac_values | extra_headers).items():
547
+ self.add_constant_key(header, value)
546
548
 
547
549
 
548
550
  class ModulatedObserveHeaders(SimpleModulatedHeaders):
@@ -28,6 +28,7 @@ def testing_constants(polarimetric):
28
28
  ExposureConditions(0.01, AllowableOpticalDensityFilterNames.OPEN.value),
29
29
  )
30
30
  modulator_spin_mode: str = "Continuous" if polarimetric else "Off"
31
+ retarder_name: str = "SiO2 OC"
31
32
  # We don't need all the common ones, but let's put one just to check
32
33
  instrument: str = "CHECK_OUT_THIS_INSTRUMENT"
33
34
  arm_id: str = "SP"
@@ -68,9 +69,10 @@ def cryo_science_task_with_constants(
68
69
  def test_cryo_constants(cryo_science_task_with_constants, expected_constant_dict, polarimetric):
69
70
  task = cryo_science_task_with_constants
70
71
  for k, v in expected_constant_dict.items():
71
- if k.lower() == "modulator_spin_mode":
72
+ if k.lower() in ["modulator_spin_mode", "retarder_name"]:
72
73
  continue
73
74
  if type(v) is tuple:
74
75
  v = list(v)
75
76
  assert getattr(task.constants, k.lower()) == v
76
77
  assert task.constants.correct_for_polarization == polarimetric
78
+ assert task.constants.pac_init_set == "OCCal_VIS"
@@ -125,7 +125,8 @@ def write_polcal_frames_to_task(
125
125
  modstate=mod_state,
126
126
  array_shape=array_shape,
127
127
  exposure_condition=exposure_condition,
128
- extra_headers=extra_headers,
128
+ extra_headers={"PAC__006": "clear" if num_frames % 2 else "Cool retarder"}
129
+ | extra_headers,
129
130
  )
130
131
 
131
132
  _write_frames_to_task(task=task, frame_generator=frame_generator, extra_tags=tags)
@@ -251,6 +252,8 @@ def make_linearized_test_frames(
251
252
  num_measurements: int = 1,
252
253
  extra_headers: dict | None = None,
253
254
  ):
255
+ if extra_headers is None:
256
+ extra_headers = dict()
254
257
  num_dark = 0
255
258
  num_polcal = 0
256
259
  num_obs = 0
@@ -1244,6 +1247,7 @@ def test_parse_cryonirsp_linearized_data_constants(
1244
1247
  assert task.constants._db_dict["MAXIMUM_CADENCE"] == 10
1245
1248
  assert task.constants._db_dict["MINIMUM_CADENCE"] == 10
1246
1249
  assert task.constants._db_dict["VARIANCE_CADENCE"] == 0
1250
+ assert task.constants._db_dict[BudName.retarder_name] == "Cool retarder"
1247
1251
 
1248
1252
 
1249
1253
  @pytest.mark.parametrize("arm_id", ["SP"])
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: dkist-processing-cryonirsp
3
- Version: 1.4.23
3
+ Version: 1.5.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
@@ -17,7 +17,7 @@ Requires-Dist: Pillow==10.3.0
17
17
  Requires-Dist: astropy==6.1.5
18
18
  Requires-Dist: dkist-fits-specifications==4.11.0
19
19
  Requires-Dist: dkist-header-validator==5.1.1
20
- Requires-Dist: dkist-processing-common==10.5.15
20
+ Requires-Dist: dkist-processing-common==10.6.0
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
@@ -96,7 +96,7 @@ 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.8.0; extra == "frozen"
98
98
  Requires-Dist: apache-airflow==2.10.5; extra == "frozen"
99
- Requires-Dist: apache-airflow-providers-celery==3.10.2; extra == "frozen"
99
+ Requires-Dist: apache-airflow-providers-celery==3.10.0; extra == "frozen"
100
100
  Requires-Dist: apache-airflow-providers-common-compat==1.5.0; extra == "frozen"
101
101
  Requires-Dist: apache-airflow-providers-common-io==1.5.0; extra == "frozen"
102
102
  Requires-Dist: apache-airflow-providers-common-sql==1.23.0; extra == "frozen"
@@ -115,14 +115,14 @@ Requires-Dist: asdf_transform_schemas==0.5.0; extra == "frozen"
115
115
  Requires-Dist: asgiref==3.8.1; extra == "frozen"
116
116
  Requires-Dist: asteval==1.0.6; extra == "frozen"
117
117
  Requires-Dist: astropy==6.1.5; extra == "frozen"
118
- Requires-Dist: astropy-iers-data==0.2025.2.24.0.34.4; extra == "frozen"
118
+ Requires-Dist: astropy-iers-data==0.2025.3.3.0.34.45; extra == "frozen"
119
119
  Requires-Dist: asyncpg==0.30.0; extra == "frozen"
120
120
  Requires-Dist: attrs==25.1.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.37.1; extra == "frozen"
125
- Requires-Dist: botocore==1.37.1; extra == "frozen"
124
+ Requires-Dist: boto3==1.37.5; extra == "frozen"
125
+ Requires-Dist: botocore==1.37.5; extra == "frozen"
126
126
  Requires-Dist: cachelib==0.13.0; extra == "frozen"
127
127
  Requires-Dist: celery==5.4.0; extra == "frozen"
128
128
  Requires-Dist: certifi==2025.1.31; extra == "frozen"
@@ -139,15 +139,15 @@ Requires-Dist: connexion==2.14.2; extra == "frozen"
139
139
  Requires-Dist: contourpy==1.3.1; 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==44.0.1; extra == "frozen"
142
+ Requires-Dist: cryptography==44.0.2; 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.3.9; extra == "frozen"
147
147
  Requires-Dist: dkist-header-validator==5.1.1; extra == "frozen"
148
- Requires-Dist: dkist-processing-common==10.5.15; extra == "frozen"
148
+ Requires-Dist: dkist-processing-common==10.6.0; extra == "frozen"
149
149
  Requires-Dist: dkist-processing-core==5.1.0; extra == "frozen"
150
- Requires-Dist: dkist-processing-cryonirsp==1.4.23; extra == "frozen"
150
+ Requires-Dist: dkist-processing-cryonirsp==1.5.0; 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"
@@ -164,8 +164,9 @@ Requires-Dist: frozenlist==1.5.0; extra == "frozen"
164
164
  Requires-Dist: fsspec==2025.2.0; extra == "frozen"
165
165
  Requires-Dist: globus-sdk==3.50.0; extra == "frozen"
166
166
  Requires-Dist: google-re2==1.1.20240702; extra == "frozen"
167
- Requires-Dist: googleapis-common-protos==1.68.0; extra == "frozen"
167
+ Requires-Dist: googleapis-common-protos==1.69.0; extra == "frozen"
168
168
  Requires-Dist: gqlclient==1.2.3; extra == "frozen"
169
+ Requires-Dist: greenlet==3.1.1; extra == "frozen"
169
170
  Requires-Dist: grpcio==1.70.0; extra == "frozen"
170
171
  Requires-Dist: gunicorn==23.0.0; extra == "frozen"
171
172
  Requires-Dist: h11==0.14.0; extra == "frozen"
@@ -197,7 +198,7 @@ Requires-Dist: markdown-it-py==3.0.0; extra == "frozen"
197
198
  Requires-Dist: marshmallow==3.26.1; extra == "frozen"
198
199
  Requires-Dist: marshmallow-oneofschema==3.1.1; extra == "frozen"
199
200
  Requires-Dist: marshmallow-sqlalchemy==0.28.2; extra == "frozen"
200
- Requires-Dist: matplotlib==3.10.0; extra == "frozen"
201
+ Requires-Dist: matplotlib==3.10.1; extra == "frozen"
201
202
  Requires-Dist: mdit-py-plugins==0.4.2; extra == "frozen"
202
203
  Requires-Dist: mdurl==0.1.2; extra == "frozen"
203
204
  Requires-Dist: methodtools==0.4.7; extra == "frozen"
@@ -239,7 +240,7 @@ Requires-Dist: psycopg2-binary==2.9.10; extra == "frozen"
239
240
  Requires-Dist: py==1.11.0; extra == "frozen"
240
241
  Requires-Dist: pycparser==2.22; extra == "frozen"
241
242
  Requires-Dist: pydantic==2.10.6; extra == "frozen"
242
- Requires-Dist: pydantic-settings==2.8.0; extra == "frozen"
243
+ Requires-Dist: pydantic-settings==2.8.1; extra == "frozen"
243
244
  Requires-Dist: pydantic_core==2.27.2; extra == "frozen"
244
245
  Requires-Dist: pyerfa==2.0.1.5; extra == "frozen"
245
246
  Requires-Dist: pyparsing==3.2.1; extra == "frozen"
@@ -258,12 +259,12 @@ Requires-Dist: rfc3339-validator==0.1.4; extra == "frozen"
258
259
  Requires-Dist: rich==13.9.4; extra == "frozen"
259
260
  Requires-Dist: rich-argparse==1.7.0; extra == "frozen"
260
261
  Requires-Dist: rpds-py==0.23.1; extra == "frozen"
261
- Requires-Dist: s3transfer==0.11.2; extra == "frozen"
262
+ Requires-Dist: s3transfer==0.11.3; extra == "frozen"
262
263
  Requires-Dist: scikit-image==0.23.2; extra == "frozen"
263
264
  Requires-Dist: scipy==1.15.1; extra == "frozen"
264
265
  Requires-Dist: semantic-version==2.10.0; extra == "frozen"
265
266
  Requires-Dist: setproctitle==1.3.5; extra == "frozen"
266
- Requires-Dist: setuptools==69.2.0; extra == "frozen"
267
+ Requires-Dist: setuptools==65.5.0; extra == "frozen"
267
268
  Requires-Dist: six==1.17.0; extra == "frozen"
268
269
  Requires-Dist: sniffio==1.3.1; extra == "frozen"
269
270
  Requires-Dist: sqids==0.5.1; extra == "frozen"
@@ -5,9 +5,9 @@ dkist_processing_cryonirsp/codecs/__init__.py,sha256=du1iitvsudSSOMENSywXmXSLOlv
5
5
  dkist_processing_cryonirsp/codecs/fits.py,sha256=EAdPcqWXMEWtWnRDLH_LX20giPoLVfmKBawb9J2z0wM,1718
6
6
  dkist_processing_cryonirsp/models/__init__.py,sha256=m6UekKftTahNJ3W5K3mZSz4Y4ZZpHRxF_ZAxuaKYL7o,12
7
7
  dkist_processing_cryonirsp/models/beam_boundaries.py,sha256=FyiLd2iCWA6TUojeGaqQ_ULxvakDY13VxqUJVlmYvV0,1159
8
- dkist_processing_cryonirsp/models/constants.py,sha256=p0HTXr994UHUrDRf3o-S5lb2ic7K2TRrHWl-hTWJUlA,10650
8
+ dkist_processing_cryonirsp/models/constants.py,sha256=aKhSu4Hp0kKRgO6muMli2W4DC3zP0sEm4TzK--hyJXQ,11062
9
9
  dkist_processing_cryonirsp/models/exposure_conditions.py,sha256=slFq5-Qz4fRpJKDBabbm4evPWLQVYmT-Uf9rk7nI734,813
10
- dkist_processing_cryonirsp/models/parameters.py,sha256=Oa3H7nc3wb8AkKLCsEnxibBJTwwK5U9ZMxzpS7pGFp4,13342
10
+ dkist_processing_cryonirsp/models/parameters.py,sha256=yMb-r4hseQqiDwcSCeCpNERL9X-uoZEMPAa29J5c94o,13130
11
11
  dkist_processing_cryonirsp/models/tags.py,sha256=ac0MnYlsn8-w7IioOvWeo7mBaDKE9o9TlRpxCH1OsRc,5743
12
12
  dkist_processing_cryonirsp/models/task_name.py,sha256=xK4AKwgOx2uANbjhr0Q5Q3R9iPxLfkVKxWYY8wWjKhE,439
13
13
  dkist_processing_cryonirsp/parsers/__init__.py,sha256=m6UekKftTahNJ3W5K3mZSz4Y4ZZpHRxF_ZAxuaKYL7o,12
@@ -32,11 +32,11 @@ dkist_processing_cryonirsp/tasks/ci_science.py,sha256=VCt5E2gqL2j5fseSfsqCyCKK5h
32
32
  dkist_processing_cryonirsp/tasks/cryonirsp_base.py,sha256=7cMXOI7yQ8xTAtJg4ZkhBDej4AknHKBIvw8e9mCiRBw,1814
33
33
  dkist_processing_cryonirsp/tasks/dark.py,sha256=h_n1SU2bFiK7lp4vAKxv2ETKHYRODUp2KkH0YXjgFq8,4936
34
34
  dkist_processing_cryonirsp/tasks/gain.py,sha256=1aMeSOupmw-WQNb9O2Qx4uxGae0ilZDszo9xbf38Y_g,10438
35
- dkist_processing_cryonirsp/tasks/instrument_polarization.py,sha256=CpewhRYIz7R6THkvvpsxuZTlz6O_k2w9seQDwaqcklY,23301
35
+ dkist_processing_cryonirsp/tasks/instrument_polarization.py,sha256=xS2jcngnibDCLlh7t1TmHM_TjYQT5wEeeEbRHBzr48M,23293
36
36
  dkist_processing_cryonirsp/tasks/l1_output_data.py,sha256=3RFt493MEJxdpF81gcp8FDlQ8vGZ0GXEDYQFWIufumI,1554
37
37
  dkist_processing_cryonirsp/tasks/linearity_correction.py,sha256=n9vK9cT7NWkpAM9J6wOYDj95Kh0va_ot-hdncd7ye0Y,24199
38
38
  dkist_processing_cryonirsp/tasks/make_movie_frames.py,sha256=I7s3Tml6AevHci0kTPF71mNjXNl3wlG57Jh7ghnndeg,13928
39
- dkist_processing_cryonirsp/tasks/parse.py,sha256=tDOC2_r8xw0RYBxe3b3Te18Y5dBnRrPtikJmuhmwT88,13117
39
+ dkist_processing_cryonirsp/tasks/parse.py,sha256=5TTlUcPEVZs67cOJ-Pwknfo-kk99HCltb8doSjFLlO4,13217
40
40
  dkist_processing_cryonirsp/tasks/quality_metrics.py,sha256=jyx2YZzLb5sVxbJ_H6PaKQqZbyZy9QuuLqu18jsnncQ,11447
41
41
  dkist_processing_cryonirsp/tasks/science_base.py,sha256=YYUQUfLeuzDb6E5TecOH22orTN4-hWocoYaGOq6Zoro,18637
42
42
  dkist_processing_cryonirsp/tasks/sp_beam_boundaries.py,sha256=XI3iepNe04xaU4ilqxrlOgYDkv5I5rUc0RXEE1Rwt0o,10296
@@ -49,8 +49,8 @@ dkist_processing_cryonirsp/tasks/mixin/__init__.py,sha256=m6UekKftTahNJ3W5K3mZSz
49
49
  dkist_processing_cryonirsp/tasks/mixin/corrections.py,sha256=rcKmckBJkoExcX0XW1i3OZzuMu1i7tX5Hgwy15chU50,6566
50
50
  dkist_processing_cryonirsp/tasks/mixin/shift_measurements.py,sha256=7ToSy9uOJ_JrFfd-X225wqW_laq4xoRJkBiAPanfb_g,11225
51
51
  dkist_processing_cryonirsp/tests/__init__.py,sha256=m6UekKftTahNJ3W5K3mZSz4Y4ZZpHRxF_ZAxuaKYL7o,12
52
- dkist_processing_cryonirsp/tests/conftest.py,sha256=_yAXaaaiyw4iQOGETN2sgelJsf1_AwjicXv1e1oqdqw,17485
53
- dkist_processing_cryonirsp/tests/header_models.py,sha256=Ny4h5lS54bGRPDo4nOzvJgNWMzFY9DDs1IQorr_r3s8,20591
52
+ dkist_processing_cryonirsp/tests/conftest.py,sha256=YlfQY_0WeNpn7HUYRD4Ak0xw1ZTEubdq4l86KDEov-Q,17463
53
+ dkist_processing_cryonirsp/tests/header_models.py,sha256=L55CQxQNePRDySjR6AEvSnvn2ALyRAJIrRZG_YJfiYE,20602
54
54
  dkist_processing_cryonirsp/tests/test_assemble_movie.py,sha256=YNZINIFXR9kZBlE1AIvjlVmwwhZJeVYOOPk7Q8IVkcI,6222
55
55
  dkist_processing_cryonirsp/tests/test_assemble_qualilty.py,sha256=upk-oUqVBHGK3F0eemshLpAPrnfh9mbeuZXow4E1Rmc,16859
56
56
  dkist_processing_cryonirsp/tests/test_bad_pixel_maps.py,sha256=4Lrcvbzzzczkz1mEXVDb_qc1cGPIWTrSZQFv4KiDhn4,4870
@@ -58,14 +58,14 @@ dkist_processing_cryonirsp/tests/test_ci_beam_boundaries.py,sha256=lkFuFVZHDDbNk
58
58
  dkist_processing_cryonirsp/tests/test_ci_science.py,sha256=dFFn49nxhv2iocZ5uGeXegJU8c-csDYaKjumvcOMxZI,14418
59
59
  dkist_processing_cryonirsp/tests/test_corrections.py,sha256=5nY8MccZcNDyQYV8IEokqtY_YrP08TZ-H7WQNioK-A0,4650
60
60
  dkist_processing_cryonirsp/tests/test_cryo_base.py,sha256=6uOUgJPehr6XwZUE0InVDKJllJsTvfuG-VM5PdKlf0Q,6662
61
- dkist_processing_cryonirsp/tests/test_cryo_constants.py,sha256=VbjM1vZYRa_057yK_aP2ta6JyT7Ob1ou4SbGEVIIKH0,2715
61
+ dkist_processing_cryonirsp/tests/test_cryo_constants.py,sha256=OanX9nPCvhFe9mBV0SRCsClqiSaHi8YxgG2HoESrzTk,2827
62
62
  dkist_processing_cryonirsp/tests/test_dark.py,sha256=ZGbjFP2IOL1gyC3rjde43xMS-vWStHDL9md1bhXt8Lg,11699
63
63
  dkist_processing_cryonirsp/tests/test_gain.py,sha256=BSeum2N0vUIP12AiPB2Qhw-zgvd3EkGkK8UX9FEchuA,11290
64
64
  dkist_processing_cryonirsp/tests/test_instrument_polarization.py,sha256=AB97NvR4VIivSu7X-GBKDrOJNx_LNbCQ_7mk0T3Eezo,19505
65
65
  dkist_processing_cryonirsp/tests/test_linearity_correction.py,sha256=HRIi8fKfZvyaOOgEkO3JGz1j2ceoecrw70mmiszcGio,9365
66
66
  dkist_processing_cryonirsp/tests/test_make_movie_frames.py,sha256=WznHp9dV2-jbJYzRniCAIbSHCGNc0SpSzyVDSrZkYd4,4904
67
67
  dkist_processing_cryonirsp/tests/test_parameters.py,sha256=CbaEnxx3HGZmqZJbNzQ2IJpIg6AKlK26BT3TXUMGYAE,11438
68
- dkist_processing_cryonirsp/tests/test_parse.py,sha256=UXbAZb4EJ-jlrkSfQXGTp7SA9B-OG5UBgV2SkCQZHxg,55804
68
+ dkist_processing_cryonirsp/tests/test_parse.py,sha256=7JqkxzMDPId6E8l5PD96_6IkdMWsnKKdzmZq49vC8W4,56021
69
69
  dkist_processing_cryonirsp/tests/test_quality.py,sha256=qrJBYjnZOhmQ4vjDcDV3FVSUAdktFgs-pRaHX4cf2G0,8129
70
70
  dkist_processing_cryonirsp/tests/test_sp_beam_boundaries.py,sha256=b_o5k94zQEgG7fdMkuDHs1iyq6NFxv_NLYS7FvtlZQI,4895
71
71
  dkist_processing_cryonirsp/tests/test_sp_dispersion_axis_correction.py,sha256=Fha0q4yJGftQ0l815FO78K1SmXtA-qbhQ3-Jk5iiBDE,6156
@@ -105,7 +105,7 @@ docs/requirements_table.rst,sha256=FaqSag9kPi77gWPhzeo_tFEhRFjb3qUuNqqQe1K76NM,2
105
105
  docs/scientific_changelog.rst,sha256=01AWBSHg8zElnodCgAq-hMxhk9CkX5rtEENx4iz0sjI,300
106
106
  docs/sp_science_calibration.rst,sha256=fHBOZ2cqySxLjNi737KfynlmHZy9W4EwvuzxnyjDNvk,2597
107
107
  licenses/LICENSE.rst,sha256=piZaQplkzOMmH1NXg6QIdo9wwo9pPCoHkvm2-DmH76E,1462
108
- dkist_processing_cryonirsp-1.4.23.dist-info/METADATA,sha256=_Wk5BnIPKqVXJXlkG2MwRZWh_GdwZSeRn7H6cz7rw2k,21801
109
- dkist_processing_cryonirsp-1.4.23.dist-info/WHEEL,sha256=nn6H5-ilmfVryoAQl3ZQ2l8SH5imPWFpm1A5FgEuFV4,91
110
- dkist_processing_cryonirsp-1.4.23.dist-info/top_level.txt,sha256=Sm9b1ddKnsF9Bh3mqDOct1Sm7k8I9aN7vGHgpmu-MlQ,51
111
- dkist_processing_cryonirsp-1.4.23.dist-info/RECORD,,
108
+ dkist_processing_cryonirsp-1.5.0.dist-info/METADATA,sha256=O59Q4V0cLp8RO0LQJ3Xkagwth6Vwxg53HsccRKOfWGA,21847
109
+ dkist_processing_cryonirsp-1.5.0.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
110
+ dkist_processing_cryonirsp-1.5.0.dist-info/top_level.txt,sha256=Sm9b1ddKnsF9Bh3mqDOct1Sm7k8I9aN7vGHgpmu-MlQ,51
111
+ dkist_processing_cryonirsp-1.5.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.1)
2
+ Generator: setuptools (75.8.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5