dkist-processing-cryonirsp 1.8.0__py3-none-any.whl → 1.8.2rc1__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/207.misc.2.rst +1 -0
- changelog/207.misc.rst +2 -0
- dkist_processing_cryonirsp/tasks/parse.py +5 -5
- dkist_processing_cryonirsp/tasks/sp_dispersion_axis_correction.py +2 -28
- dkist_processing_cryonirsp/tasks/write_l1.py +8 -7
- {dkist_processing_cryonirsp-1.8.0.dist-info → dkist_processing_cryonirsp-1.8.2rc1.dist-info}/METADATA +31 -28
- {dkist_processing_cryonirsp-1.8.0.dist-info → dkist_processing_cryonirsp-1.8.2rc1.dist-info}/RECORD +9 -7
- {dkist_processing_cryonirsp-1.8.0.dist-info → dkist_processing_cryonirsp-1.8.2rc1.dist-info}/WHEEL +0 -0
- {dkist_processing_cryonirsp-1.8.0.dist-info → dkist_processing_cryonirsp-1.8.2rc1.dist-info}/top_level.txt +0 -0
changelog/207.misc.2.rst
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Bump `dkist-quality`. This update contains machinery for plotting wavelength calibration results.
|
changelog/207.misc.rst
ADDED
|
@@ -247,33 +247,33 @@ class ParseL0CryonirspSPLinearizedData(ParseL0CryonirspLinearizedData):
|
|
|
247
247
|
TaskNearFloatBud(
|
|
248
248
|
constant_name=CryonirspBudName.grating_position_deg.value,
|
|
249
249
|
metadata_key="grating_position_deg",
|
|
250
|
-
|
|
250
|
+
ip_task_types=TaskName.solar_gain.value,
|
|
251
251
|
task_type_parsing_function=parse_header_ip_task_with_gains,
|
|
252
252
|
tolerance=0.01,
|
|
253
253
|
),
|
|
254
254
|
TaskNearFloatBud(
|
|
255
255
|
constant_name=CryonirspBudName.grating_littrow_angle_deg.value,
|
|
256
256
|
metadata_key="grating_littrow_angle_deg",
|
|
257
|
-
|
|
257
|
+
ip_task_types=TaskName.solar_gain.value,
|
|
258
258
|
task_type_parsing_function=parse_header_ip_task_with_gains,
|
|
259
259
|
tolerance=0.01,
|
|
260
260
|
),
|
|
261
261
|
TaskUniqueBud(
|
|
262
262
|
constant_name=CryonirspBudName.grating_constant.value,
|
|
263
263
|
metadata_key="grating_constant",
|
|
264
|
-
|
|
264
|
+
ip_task_types=TaskName.solar_gain.value,
|
|
265
265
|
task_type_parsing_function=parse_header_ip_task_with_gains,
|
|
266
266
|
),
|
|
267
267
|
TaskUniqueBud(
|
|
268
268
|
constant_name=CryonirspBudName.wave_min.value,
|
|
269
269
|
metadata_key="wave_min",
|
|
270
|
-
|
|
270
|
+
ip_task_types=TaskName.solar_gain.value,
|
|
271
271
|
task_type_parsing_function=parse_header_ip_task_with_gains,
|
|
272
272
|
),
|
|
273
273
|
TaskUniqueBud(
|
|
274
274
|
constant_name=CryonirspBudName.wave_max.value,
|
|
275
275
|
metadata_key="wave_max",
|
|
276
|
-
|
|
276
|
+
ip_task_types=TaskName.solar_gain.value,
|
|
277
277
|
task_type_parsing_function=parse_header_ip_task_with_gains,
|
|
278
278
|
),
|
|
279
279
|
CheckLampGainFramesPickyBud(),
|
|
@@ -10,6 +10,7 @@ from astropy.io import fits
|
|
|
10
10
|
from astropy.time import Time
|
|
11
11
|
from astropy.wcs import WCS
|
|
12
12
|
from dkist_processing_common.codecs.asdf import asdf_encoder
|
|
13
|
+
from dkist_processing_common.models.dkist_location import location_of_dkist
|
|
13
14
|
from dkist_service_configuration.logging import logger
|
|
14
15
|
from scipy.ndimage import gaussian_filter1d
|
|
15
16
|
from scipy.optimize import differential_evolution
|
|
@@ -228,39 +229,12 @@ class SPDispersionAxisCorrection(CryonirspTaskBase):
|
|
|
228
229
|
solar_atlas_transmission,
|
|
229
230
|
)
|
|
230
231
|
|
|
231
|
-
def location_of_dkist(self) -> EarthLocation:
|
|
232
|
-
"""
|
|
233
|
-
Return hard-coded EarthLocation of the DKIST.
|
|
234
|
-
|
|
235
|
-
Cartesian geocentric coordinates of DKIST on Earth as retrieved from https://github.com/astropy/astropy-data/blob/gh-pages/coordinates/sites.json#L755
|
|
236
|
-
"""
|
|
237
|
-
_dkist_site_info = {
|
|
238
|
-
"aliases": ["DKIST", "ATST"],
|
|
239
|
-
"name": "Daniel K. Inouye Solar Telescope",
|
|
240
|
-
"elevation": 3067,
|
|
241
|
-
"elevation_unit": "meter",
|
|
242
|
-
"latitude": 20.7067,
|
|
243
|
-
"latitude_unit": "degree",
|
|
244
|
-
"longitude": 203.7436,
|
|
245
|
-
"longitude_unit": "degree",
|
|
246
|
-
"timezone": "US/Hawaii",
|
|
247
|
-
"source": "DKIST website: https://www.nso.edu/telescopes/dki-solar-telescope/",
|
|
248
|
-
}
|
|
249
|
-
location_of_dkist = EarthLocation.from_geodetic(
|
|
250
|
-
_dkist_site_info["longitude"] * u.Unit(_dkist_site_info["longitude_unit"]),
|
|
251
|
-
_dkist_site_info["latitude"] * u.Unit(_dkist_site_info["latitude_unit"]),
|
|
252
|
-
_dkist_site_info["elevation"] * u.Unit(_dkist_site_info["elevation_unit"]),
|
|
253
|
-
)
|
|
254
|
-
return location_of_dkist
|
|
255
|
-
|
|
256
232
|
def get_doppler_shift(self) -> u.Quantity:
|
|
257
233
|
"""Find the speed at which DKIST is moving relative to the Sun's center.
|
|
258
234
|
|
|
259
235
|
Positive values refer to when DKIST is moving away from the sun.
|
|
260
236
|
"""
|
|
261
|
-
coord =
|
|
262
|
-
obstime=Time(self.constants.solar_gain_ip_start_time)
|
|
263
|
-
)
|
|
237
|
+
coord = location_of_dkist.get_gcrs(obstime=Time(self.constants.solar_gain_ip_start_time))
|
|
264
238
|
heliocentric_coord = coord.transform_to(
|
|
265
239
|
HeliocentricInertial(obstime=Time(self.constants.solar_gain_ip_start_time))
|
|
266
240
|
)
|
|
@@ -12,6 +12,7 @@ from astropy.coordinates.sky_coordinate import SkyCoord
|
|
|
12
12
|
from astropy.io import fits
|
|
13
13
|
from astropy.time.core import Time
|
|
14
14
|
from dkist_processing_common.codecs.asdf import asdf_decoder
|
|
15
|
+
from dkist_processing_common.models.dkist_location import location_of_dkist
|
|
15
16
|
from dkist_processing_common.models.wavelength import WavelengthRange
|
|
16
17
|
from dkist_processing_common.tasks import WriteL1Frame
|
|
17
18
|
from sunpy.coordinates import GeocentricEarthEquatorial
|
|
@@ -281,11 +282,11 @@ class CryonirspWriteL1Frame(WriteL1Frame, ABC):
|
|
|
281
282
|
boresight_coordinates[0] * u.arcsec,
|
|
282
283
|
boresight_coordinates[1] * u.arcsec,
|
|
283
284
|
obstime=t0,
|
|
284
|
-
observer=
|
|
285
|
+
observer=location_of_dkist.get_itrs(t0),
|
|
285
286
|
frame="helioprojective",
|
|
286
287
|
)
|
|
287
288
|
|
|
288
|
-
frame_altaz = AltAz(obstime=t0, location=
|
|
289
|
+
frame_altaz = AltAz(obstime=t0, location=location_of_dkist)
|
|
289
290
|
|
|
290
291
|
# Find angle between zenith and solar north at the center boresight pointing
|
|
291
292
|
solar_orientation_angle = self.get_solar_orientation_angle(
|
|
@@ -347,7 +348,7 @@ class CryonirspWriteL1Frame(WriteL1Frame, ABC):
|
|
|
347
348
|
boresight_coordinates[0] * u.arcsec,
|
|
348
349
|
(boresight_coordinates[1] + 1) * u.arcsec,
|
|
349
350
|
obstime=t0,
|
|
350
|
-
observer=
|
|
351
|
+
observer=location_of_dkist.get_itrs(t0),
|
|
351
352
|
frame="helioprojective",
|
|
352
353
|
)
|
|
353
354
|
|
|
@@ -695,7 +696,7 @@ class CIWriteL1Frame(CryonirspWriteL1Frame):
|
|
|
695
696
|
observed_pix_x_rotated * u.arcsec,
|
|
696
697
|
observed_pix_y_rotated * u.arcsec,
|
|
697
698
|
obstime=t0,
|
|
698
|
-
observer=
|
|
699
|
+
observer=location_of_dkist.get_itrs(t0),
|
|
699
700
|
frame="helioprojective",
|
|
700
701
|
)
|
|
701
702
|
|
|
@@ -709,7 +710,7 @@ class CIWriteL1Frame(CryonirspWriteL1Frame):
|
|
|
709
710
|
x * u.arcsec,
|
|
710
711
|
y * u.arcsec,
|
|
711
712
|
obstime=t0,
|
|
712
|
-
observer=
|
|
713
|
+
observer=location_of_dkist.get_itrs(t0),
|
|
713
714
|
frame="helioprojective",
|
|
714
715
|
)
|
|
715
716
|
with Helioprojective.assume_spherical_screen(sky_coord.observer):
|
|
@@ -967,7 +968,7 @@ class SPWriteL1Frame(CryonirspWriteL1Frame):
|
|
|
967
968
|
observed_pix_x_rotated * u.arcsec,
|
|
968
969
|
observed_pix_y_rotated * u.arcsec,
|
|
969
970
|
obstime=t0,
|
|
970
|
-
observer=
|
|
971
|
+
observer=location_of_dkist.get_itrs(t0),
|
|
971
972
|
frame="helioprojective",
|
|
972
973
|
)
|
|
973
974
|
with Helioprojective.assume_spherical_screen(sky_coord.observer):
|
|
@@ -980,7 +981,7 @@ class SPWriteL1Frame(CryonirspWriteL1Frame):
|
|
|
980
981
|
x * u.arcsec,
|
|
981
982
|
y * u.arcsec,
|
|
982
983
|
obstime=t0,
|
|
983
|
-
observer=
|
|
984
|
+
observer=location_of_dkist.get_itrs(t0),
|
|
984
985
|
frame="helioprojective",
|
|
985
986
|
)
|
|
986
987
|
with Helioprojective.assume_spherical_screen(sky_coord.observer):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dkist-processing-cryonirsp
|
|
3
|
-
Version: 1.8.
|
|
3
|
+
Version: 1.8.2rc1
|
|
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==
|
|
20
|
+
Requires-Dist: dkist-processing-common==11.0.0rc2
|
|
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
|
|
@@ -43,16 +43,16 @@ Requires-Dist: dkist-processing-cryonirsp[asdf]; extra == "test"
|
|
|
43
43
|
Requires-Dist: dkist-processing-cryonirsp[quality]; extra == "test"
|
|
44
44
|
Provides-Extra: inventory
|
|
45
45
|
Requires-Dist: dkist-processing-common[inventory]; extra == "inventory"
|
|
46
|
-
Requires-Dist: dkist-inventory==1.8.
|
|
46
|
+
Requires-Dist: dkist-inventory==1.8.4; extra == "inventory"
|
|
47
47
|
Provides-Extra: asdf
|
|
48
48
|
Requires-Dist: dkist-processing-common[asdf]; extra == "asdf"
|
|
49
|
-
Requires-Dist: dkist-inventory[asdf]==1.8.
|
|
49
|
+
Requires-Dist: dkist-inventory[asdf]==1.8.4; extra == "asdf"
|
|
50
50
|
Provides-Extra: quality
|
|
51
|
-
Requires-Dist: dkist-quality==1.
|
|
51
|
+
Requires-Dist: dkist-quality==1.3.0rc2; extra == "quality"
|
|
52
52
|
Provides-Extra: grogu
|
|
53
53
|
Requires-Dist: dkist; extra == "grogu"
|
|
54
54
|
Requires-Dist: pyparsing; extra == "grogu"
|
|
55
|
-
Requires-Dist: dkist-inventory>=1.8.
|
|
55
|
+
Requires-Dist: dkist-inventory>=1.8.4; extra == "grogu"
|
|
56
56
|
Provides-Extra: docs
|
|
57
57
|
Requires-Dist: sphinx; extra == "docs"
|
|
58
58
|
Requires-Dist: sphinx-astropy; extra == "docs"
|
|
@@ -80,28 +80,28 @@ Requires-Dist: MarkupSafe==3.0.2; extra == "frozen"
|
|
|
80
80
|
Requires-Dist: PeakUtils==1.3.5; extra == "frozen"
|
|
81
81
|
Requires-Dist: PyJWT==2.10.1; extra == "frozen"
|
|
82
82
|
Requires-Dist: PyYAML==6.0.2; extra == "frozen"
|
|
83
|
-
Requires-Dist: Pygments==2.19.
|
|
83
|
+
Requires-Dist: Pygments==2.19.2; extra == "frozen"
|
|
84
84
|
Requires-Dist: SQLAlchemy==1.4.54; extra == "frozen"
|
|
85
85
|
Requires-Dist: SQLAlchemy-JSONField==1.0.2; extra == "frozen"
|
|
86
86
|
Requires-Dist: SQLAlchemy-Utils==0.41.2; extra == "frozen"
|
|
87
87
|
Requires-Dist: WTForms==3.2.1; extra == "frozen"
|
|
88
88
|
Requires-Dist: Werkzeug==2.2.3; extra == "frozen"
|
|
89
|
-
Requires-Dist: aioftp==0.
|
|
89
|
+
Requires-Dist: aioftp==0.26.2; extra == "frozen"
|
|
90
90
|
Requires-Dist: aiohappyeyeballs==2.6.1; extra == "frozen"
|
|
91
91
|
Requires-Dist: aiohttp==3.12.13; extra == "frozen"
|
|
92
92
|
Requires-Dist: aiosignal==1.3.2; extra == "frozen"
|
|
93
|
-
Requires-Dist: alembic==1.16.
|
|
93
|
+
Requires-Dist: alembic==1.16.2; extra == "frozen"
|
|
94
94
|
Requires-Dist: amqp==5.3.1; extra == "frozen"
|
|
95
95
|
Requires-Dist: annotated-types==0.7.0; extra == "frozen"
|
|
96
96
|
Requires-Dist: anyio==4.9.0; extra == "frozen"
|
|
97
97
|
Requires-Dist: apache-airflow==2.10.5; extra == "frozen"
|
|
98
|
-
Requires-Dist: apache-airflow-providers-celery==3.
|
|
99
|
-
Requires-Dist: apache-airflow-providers-common-compat==1.7.
|
|
98
|
+
Requires-Dist: apache-airflow-providers-celery==3.12.0; extra == "frozen"
|
|
99
|
+
Requires-Dist: apache-airflow-providers-common-compat==1.7.1; extra == "frozen"
|
|
100
100
|
Requires-Dist: apache-airflow-providers-common-io==1.6.0; extra == "frozen"
|
|
101
|
-
Requires-Dist: apache-airflow-providers-common-sql==1.27.
|
|
101
|
+
Requires-Dist: apache-airflow-providers-common-sql==1.27.2; extra == "frozen"
|
|
102
102
|
Requires-Dist: apache-airflow-providers-fab==1.5.3; extra == "frozen"
|
|
103
103
|
Requires-Dist: apache-airflow-providers-ftp==3.13.0; extra == "frozen"
|
|
104
|
-
Requires-Dist: apache-airflow-providers-http==5.3.
|
|
104
|
+
Requires-Dist: apache-airflow-providers-http==5.3.1; extra == "frozen"
|
|
105
105
|
Requires-Dist: apache-airflow-providers-imap==3.9.0; extra == "frozen"
|
|
106
106
|
Requires-Dist: apache-airflow-providers-postgres==6.2.0; extra == "frozen"
|
|
107
107
|
Requires-Dist: apache-airflow-providers-smtp==2.1.0; extra == "frozen"
|
|
@@ -114,14 +114,14 @@ Requires-Dist: asdf_transform_schemas==0.6.0; extra == "frozen"
|
|
|
114
114
|
Requires-Dist: asgiref==3.8.1; extra == "frozen"
|
|
115
115
|
Requires-Dist: asteval==1.0.6; extra == "frozen"
|
|
116
116
|
Requires-Dist: astropy==7.0.2; extra == "frozen"
|
|
117
|
-
Requires-Dist: astropy-iers-data==0.2025.6.
|
|
117
|
+
Requires-Dist: astropy-iers-data==0.2025.6.30.0.39.40; extra == "frozen"
|
|
118
118
|
Requires-Dist: asyncpg==0.30.0; extra == "frozen"
|
|
119
119
|
Requires-Dist: attrs==25.3.0; extra == "frozen"
|
|
120
120
|
Requires-Dist: babel==2.17.0; extra == "frozen"
|
|
121
121
|
Requires-Dist: billiard==4.2.1; extra == "frozen"
|
|
122
122
|
Requires-Dist: blinker==1.9.0; extra == "frozen"
|
|
123
|
-
Requires-Dist: boto3==1.
|
|
124
|
-
Requires-Dist: botocore==1.
|
|
123
|
+
Requires-Dist: boto3==1.39.1; extra == "frozen"
|
|
124
|
+
Requires-Dist: botocore==1.39.1; extra == "frozen"
|
|
125
125
|
Requires-Dist: cachelib==0.13.0; extra == "frozen"
|
|
126
126
|
Requires-Dist: celery==5.5.3; extra == "frozen"
|
|
127
127
|
Requires-Dist: certifi==2025.6.15; extra == "frozen"
|
|
@@ -129,7 +129,7 @@ Requires-Dist: cffi==1.17.1; extra == "frozen"
|
|
|
129
129
|
Requires-Dist: charset-normalizer==3.4.2; extra == "frozen"
|
|
130
130
|
Requires-Dist: click==8.2.1; extra == "frozen"
|
|
131
131
|
Requires-Dist: click-didyoumean==0.3.1; extra == "frozen"
|
|
132
|
-
Requires-Dist: click-plugins==1.1.1; extra == "frozen"
|
|
132
|
+
Requires-Dist: click-plugins==1.1.1.2; extra == "frozen"
|
|
133
133
|
Requires-Dist: click-repl==0.3.0; extra == "frozen"
|
|
134
134
|
Requires-Dist: clickclick==20.10.2; extra == "frozen"
|
|
135
135
|
Requires-Dist: colorama==0.4.6; extra == "frozen"
|
|
@@ -138,15 +138,15 @@ Requires-Dist: connexion==2.14.2; extra == "frozen"
|
|
|
138
138
|
Requires-Dist: contourpy==1.3.2; extra == "frozen"
|
|
139
139
|
Requires-Dist: cron-descriptor==1.4.5; extra == "frozen"
|
|
140
140
|
Requires-Dist: croniter==6.0.0; extra == "frozen"
|
|
141
|
-
Requires-Dist: cryptography==45.0.
|
|
141
|
+
Requires-Dist: cryptography==45.0.5; extra == "frozen"
|
|
142
142
|
Requires-Dist: cycler==0.12.1; extra == "frozen"
|
|
143
143
|
Requires-Dist: dacite==1.9.2; extra == "frozen"
|
|
144
144
|
Requires-Dist: decorator==5.2.1; extra == "frozen"
|
|
145
145
|
Requires-Dist: dill==0.4.0; extra == "frozen"
|
|
146
146
|
Requires-Dist: dkist-header-validator==5.2.1; extra == "frozen"
|
|
147
|
-
Requires-Dist: dkist-processing-common==
|
|
147
|
+
Requires-Dist: dkist-processing-common==11.0.0rc2; extra == "frozen"
|
|
148
148
|
Requires-Dist: dkist-processing-core==5.1.1; extra == "frozen"
|
|
149
|
-
Requires-Dist: dkist-processing-cryonirsp==1.8.
|
|
149
|
+
Requires-Dist: dkist-processing-cryonirsp==1.8.2rc1; extra == "frozen"
|
|
150
150
|
Requires-Dist: dkist-processing-math==2.2.0; extra == "frozen"
|
|
151
151
|
Requires-Dist: dkist-processing-pac==3.1.1; extra == "frozen"
|
|
152
152
|
Requires-Dist: dkist-service-configuration==2.2; extra == "frozen"
|
|
@@ -161,11 +161,12 @@ Requires-Dist: flower==2.0.1; extra == "frozen"
|
|
|
161
161
|
Requires-Dist: fonttools==4.58.4; extra == "frozen"
|
|
162
162
|
Requires-Dist: frozenlist==1.7.0; extra == "frozen"
|
|
163
163
|
Requires-Dist: fsspec==2025.5.1; extra == "frozen"
|
|
164
|
-
Requires-Dist: globus-sdk==3.
|
|
164
|
+
Requires-Dist: globus-sdk==3.59.0; extra == "frozen"
|
|
165
165
|
Requires-Dist: google-re2==1.1.20240702; extra == "frozen"
|
|
166
166
|
Requires-Dist: googleapis-common-protos==1.70.0; extra == "frozen"
|
|
167
167
|
Requires-Dist: gqlclient==1.2.3; extra == "frozen"
|
|
168
|
-
Requires-Dist:
|
|
168
|
+
Requires-Dist: greenlet==3.2.3; extra == "frozen"
|
|
169
|
+
Requires-Dist: grpcio==1.73.1; extra == "frozen"
|
|
169
170
|
Requires-Dist: gunicorn==23.0.0; extra == "frozen"
|
|
170
171
|
Requires-Dist: h11==0.16.0; extra == "frozen"
|
|
171
172
|
Requires-Dist: httpcore==1.0.9; extra == "frozen"
|
|
@@ -186,7 +187,7 @@ Requires-Dist: kombu==5.5.4; extra == "frozen"
|
|
|
186
187
|
Requires-Dist: largestinteriorrectangle==0.2.1; extra == "frozen"
|
|
187
188
|
Requires-Dist: lazy-object-proxy==1.11.0; extra == "frozen"
|
|
188
189
|
Requires-Dist: lazy_loader==0.4; extra == "frozen"
|
|
189
|
-
Requires-Dist: limits==5.
|
|
190
|
+
Requires-Dist: limits==5.4.0; extra == "frozen"
|
|
190
191
|
Requires-Dist: linkify-it-py==2.0.3; extra == "frozen"
|
|
191
192
|
Requires-Dist: llvmlite==0.44.0; extra == "frozen"
|
|
192
193
|
Requires-Dist: lmfit==1.3.3; extra == "frozen"
|
|
@@ -202,7 +203,7 @@ Requires-Dist: mdurl==0.1.2; extra == "frozen"
|
|
|
202
203
|
Requires-Dist: methodtools==0.4.7; extra == "frozen"
|
|
203
204
|
Requires-Dist: more-itertools==10.7.0; extra == "frozen"
|
|
204
205
|
Requires-Dist: moviepy==2.1.2; extra == "frozen"
|
|
205
|
-
Requires-Dist: multidict==6.
|
|
206
|
+
Requires-Dist: multidict==6.6.3; extra == "frozen"
|
|
206
207
|
Requires-Dist: nbformat==5.10.4; extra == "frozen"
|
|
207
208
|
Requires-Dist: networkx==3.5; extra == "frozen"
|
|
208
209
|
Requires-Dist: numba==0.61.2; extra == "frozen"
|
|
@@ -227,6 +228,7 @@ Requires-Dist: pillow==10.4.0; extra == "frozen"
|
|
|
227
228
|
Requires-Dist: pip==25.1.1; extra == "frozen"
|
|
228
229
|
Requires-Dist: platformdirs==4.3.8; extra == "frozen"
|
|
229
230
|
Requires-Dist: pluggy==1.6.0; extra == "frozen"
|
|
231
|
+
Requires-Dist: pooch==1.8.2; extra == "frozen"
|
|
230
232
|
Requires-Dist: prison==0.2.1; extra == "frozen"
|
|
231
233
|
Requires-Dist: proglog==0.1.12; extra == "frozen"
|
|
232
234
|
Requires-Dist: prometheus_client==0.22.1; extra == "frozen"
|
|
@@ -238,13 +240,13 @@ Requires-Dist: psycopg2-binary==2.9.10; extra == "frozen"
|
|
|
238
240
|
Requires-Dist: py==1.11.0; extra == "frozen"
|
|
239
241
|
Requires-Dist: pycparser==2.22; extra == "frozen"
|
|
240
242
|
Requires-Dist: pydantic==2.11.7; extra == "frozen"
|
|
241
|
-
Requires-Dist: pydantic-settings==2.
|
|
243
|
+
Requires-Dist: pydantic-settings==2.10.1; extra == "frozen"
|
|
242
244
|
Requires-Dist: pydantic_core==2.33.2; extra == "frozen"
|
|
243
245
|
Requires-Dist: pyerfa==2.0.1.5; extra == "frozen"
|
|
244
246
|
Requires-Dist: pyparsing==3.2.3; extra == "frozen"
|
|
245
247
|
Requires-Dist: python-daemon==3.1.2; extra == "frozen"
|
|
246
248
|
Requires-Dist: python-dateutil==2.9.0.post0; extra == "frozen"
|
|
247
|
-
Requires-Dist: python-dotenv==1.1.
|
|
249
|
+
Requires-Dist: python-dotenv==1.1.1; extra == "frozen"
|
|
248
250
|
Requires-Dist: python-nvd3==0.16.0; extra == "frozen"
|
|
249
251
|
Requires-Dist: python-slugify==8.0.4; extra == "frozen"
|
|
250
252
|
Requires-Dist: pytz==2025.2; extra == "frozen"
|
|
@@ -256,7 +258,7 @@ Requires-Dist: retry==0.9.2; extra == "frozen"
|
|
|
256
258
|
Requires-Dist: rfc3339-validator==0.1.4; extra == "frozen"
|
|
257
259
|
Requires-Dist: rich==13.9.4; extra == "frozen"
|
|
258
260
|
Requires-Dist: rich-argparse==1.7.1; extra == "frozen"
|
|
259
|
-
Requires-Dist: rpds-py==0.
|
|
261
|
+
Requires-Dist: rpds-py==0.26.0; extra == "frozen"
|
|
260
262
|
Requires-Dist: s3transfer==0.13.0; extra == "frozen"
|
|
261
263
|
Requires-Dist: scikit-image==0.25.2; extra == "frozen"
|
|
262
264
|
Requires-Dist: scipy==1.15.3; extra == "frozen"
|
|
@@ -265,6 +267,7 @@ Requires-Dist: setproctitle==1.3.6; extra == "frozen"
|
|
|
265
267
|
Requires-Dist: setuptools==65.5.0; extra == "frozen"
|
|
266
268
|
Requires-Dist: six==1.17.0; extra == "frozen"
|
|
267
269
|
Requires-Dist: sniffio==1.3.1; extra == "frozen"
|
|
270
|
+
Requires-Dist: solar-wavelength-calibration==1.0; extra == "frozen"
|
|
268
271
|
Requires-Dist: sqids==0.5.1; extra == "frozen"
|
|
269
272
|
Requires-Dist: sqlparse==0.5.3; extra == "frozen"
|
|
270
273
|
Requires-Dist: sunpy==6.1.1; extra == "frozen"
|
|
@@ -283,7 +286,7 @@ Requires-Dist: tzdata==2025.2; extra == "frozen"
|
|
|
283
286
|
Requires-Dist: uc-micro-py==1.0.3; extra == "frozen"
|
|
284
287
|
Requires-Dist: uncertainties==3.2.3; extra == "frozen"
|
|
285
288
|
Requires-Dist: universal_pathlib==0.2.6; extra == "frozen"
|
|
286
|
-
Requires-Dist: urllib3==2.
|
|
289
|
+
Requires-Dist: urllib3==2.5.0; extra == "frozen"
|
|
287
290
|
Requires-Dist: vine==5.1.0; extra == "frozen"
|
|
288
291
|
Requires-Dist: voluptuous==0.15.2; extra == "frozen"
|
|
289
292
|
Requires-Dist: wcwidth==0.2.13; extra == "frozen"
|
{dkist_processing_cryonirsp-1.8.0.dist-info → dkist_processing_cryonirsp-1.8.2rc1.dist-info}/RECORD
RENAMED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
changelog/.gitempty,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
changelog/207.misc.2.rst,sha256=tjbXUxX3EzIXF0zEA2atx4E1W7Plv9DA7oSXCM-Lq2A,98
|
|
3
|
+
changelog/207.misc.rst,sha256=8UwobgxCfTPd-LcSWwarz_zzTsvJRWBcQJox8Tmyl5o,272
|
|
2
4
|
dkist_processing_cryonirsp/__init__.py,sha256=Z6-kB7fXXUI-F7Vz1HnEaja2h8qgH9IZExRl1lUxvZg,350
|
|
3
5
|
dkist_processing_cryonirsp/config.py,sha256=xNkUNJ1BeBxJX881mTCIEbirZlD5_5txpV1QqkbfRM0,507
|
|
4
6
|
dkist_processing_cryonirsp/codecs/__init__.py,sha256=du1iitvsudSSOMENSywXmXSLOlvIocJsPbvfEcyqFNc,159
|
|
@@ -36,15 +38,15 @@ dkist_processing_cryonirsp/tasks/instrument_polarization.py,sha256=xS2jcngnibDCL
|
|
|
36
38
|
dkist_processing_cryonirsp/tasks/l1_output_data.py,sha256=3RFt493MEJxdpF81gcp8FDlQ8vGZ0GXEDYQFWIufumI,1554
|
|
37
39
|
dkist_processing_cryonirsp/tasks/linearity_correction.py,sha256=n9vK9cT7NWkpAM9J6wOYDj95Kh0va_ot-hdncd7ye0Y,24199
|
|
38
40
|
dkist_processing_cryonirsp/tasks/make_movie_frames.py,sha256=I7s3Tml6AevHci0kTPF71mNjXNl3wlG57Jh7ghnndeg,13928
|
|
39
|
-
dkist_processing_cryonirsp/tasks/parse.py,sha256=
|
|
41
|
+
dkist_processing_cryonirsp/tasks/parse.py,sha256=5nkCjKeCi6oKHzBXmqs81yZwyRPBmIMmL8Lh53CEv4E,13114
|
|
40
42
|
dkist_processing_cryonirsp/tasks/quality_metrics.py,sha256=jyx2YZzLb5sVxbJ_H6PaKQqZbyZy9QuuLqu18jsnncQ,11447
|
|
41
43
|
dkist_processing_cryonirsp/tasks/science_base.py,sha256=YYUQUfLeuzDb6E5TecOH22orTN4-hWocoYaGOq6Zoro,18637
|
|
42
44
|
dkist_processing_cryonirsp/tasks/sp_beam_boundaries.py,sha256=XI3iepNe04xaU4ilqxrlOgYDkv5I5rUc0RXEE1Rwt0o,10296
|
|
43
|
-
dkist_processing_cryonirsp/tasks/sp_dispersion_axis_correction.py,sha256=
|
|
45
|
+
dkist_processing_cryonirsp/tasks/sp_dispersion_axis_correction.py,sha256=w3DHEWEJwl3zuKuUB6kzG3vuBWJM84cZGbfeFQKWwJE,18279
|
|
44
46
|
dkist_processing_cryonirsp/tasks/sp_geometric.py,sha256=_M_e_blz4mKDIUWSasonnOzbZ6EUbHp9pAZXQx4zY7U,24387
|
|
45
47
|
dkist_processing_cryonirsp/tasks/sp_science.py,sha256=QWyAEkXYamAcWxi62-tVD6ptuQ6vt8yIzuCKzCIYW20,13643
|
|
46
48
|
dkist_processing_cryonirsp/tasks/sp_solar_gain.py,sha256=d4UABsMxyzCMduVxptHY_TCGqS-l-W5iuhW7HJwVPkA,21024
|
|
47
|
-
dkist_processing_cryonirsp/tasks/write_l1.py,sha256=
|
|
49
|
+
dkist_processing_cryonirsp/tasks/write_l1.py,sha256=nLAV0fx_bRFA7WAPrdxJQKogGSRj3pscDJXzhogrVuw,41476
|
|
48
50
|
dkist_processing_cryonirsp/tasks/mixin/__init__.py,sha256=m6UekKftTahNJ3W5K3mZSz4Y4ZZpHRxF_ZAxuaKYL7o,12
|
|
49
51
|
dkist_processing_cryonirsp/tasks/mixin/corrections.py,sha256=rcKmckBJkoExcX0XW1i3OZzuMu1i7tX5Hgwy15chU50,6566
|
|
50
52
|
dkist_processing_cryonirsp/tasks/mixin/shift_measurements.py,sha256=EbU3VQ_1QLbENHO_SfhWc7d573UwbofKU-PpbfBPKI8,11620
|
|
@@ -105,7 +107,7 @@ docs/requirements_table.rst,sha256=FaqSag9kPi77gWPhzeo_tFEhRFjb3qUuNqqQe1K76NM,2
|
|
|
105
107
|
docs/scientific_changelog.rst,sha256=01AWBSHg8zElnodCgAq-hMxhk9CkX5rtEENx4iz0sjI,300
|
|
106
108
|
docs/sp_science_calibration.rst,sha256=XL-H_hyzqwPHYNW3j-muItX_hGqMi-gjFRQbHp60LlU,2997
|
|
107
109
|
licenses/LICENSE.rst,sha256=piZaQplkzOMmH1NXg6QIdo9wwo9pPCoHkvm2-DmH76E,1462
|
|
108
|
-
dkist_processing_cryonirsp-1.8.
|
|
109
|
-
dkist_processing_cryonirsp-1.8.
|
|
110
|
-
dkist_processing_cryonirsp-1.8.
|
|
111
|
-
dkist_processing_cryonirsp-1.8.
|
|
110
|
+
dkist_processing_cryonirsp-1.8.2rc1.dist-info/METADATA,sha256=uyFEQ3ljuZa7ALYEaB0Ddn6RU8QcBPP-5XsIsLmDVIA,22119
|
|
111
|
+
dkist_processing_cryonirsp-1.8.2rc1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
112
|
+
dkist_processing_cryonirsp-1.8.2rc1.dist-info/top_level.txt,sha256=Sm9b1ddKnsF9Bh3mqDOct1Sm7k8I9aN7vGHgpmu-MlQ,51
|
|
113
|
+
dkist_processing_cryonirsp-1.8.2rc1.dist-info/RECORD,,
|
{dkist_processing_cryonirsp-1.8.0.dist-info → dkist_processing_cryonirsp-1.8.2rc1.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|