dkist-processing-visp 5.2.2__py3-none-any.whl → 5.2.3__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.
- dkist_processing_visp/tests/conftest.py +10 -1
- dkist_processing_visp/tests/test_solar.py +0 -6
- dkist_processing_visp/tests/test_wavelength_calibration.py +0 -6
- {dkist_processing_visp-5.2.2.dist-info → dkist_processing_visp-5.2.3.dist-info}/METADATA +16 -17
- {dkist_processing_visp-5.2.2.dist-info → dkist_processing_visp-5.2.3.dist-info}/RECORD +7 -7
- {dkist_processing_visp-5.2.2.dist-info → dkist_processing_visp-5.2.3.dist-info}/WHEEL +0 -0
- {dkist_processing_visp-5.2.2.dist-info → dkist_processing_visp-5.2.3.dist-info}/top_level.txt +0 -0
|
@@ -22,6 +22,8 @@ from dkist_processing_common.tasks import WorkflowTaskBase
|
|
|
22
22
|
|
|
23
23
|
# Don't remove this; tests will break
|
|
24
24
|
from dkist_processing_common.tests.mock_metadata_store import fake_gql_client
|
|
25
|
+
from solar_wavelength_calibration import Atlas
|
|
26
|
+
from solar_wavelength_calibration import DownloadConfig
|
|
25
27
|
|
|
26
28
|
from dkist_processing_visp.models.constants import VispConstants
|
|
27
29
|
from dkist_processing_visp.models.parameters import VispParameters
|
|
@@ -179,7 +181,7 @@ class VispInputDatasetParameterValues:
|
|
|
179
181
|
visp_wavecal_pixel_pitch_micron_per_pix: float = 6.5
|
|
180
182
|
visp_wavecal_atlas_download_config: dict[str, str] = field(
|
|
181
183
|
default_factory=lambda: {
|
|
182
|
-
"base_url": "
|
|
184
|
+
"base_url": "https://g-a36282.cd214.a567.data.globus.org/atlas/",
|
|
183
185
|
"telluric_reference_atlas_file_name": "telluric_reference_atlas.npy",
|
|
184
186
|
"telluric_reference_atlas_hash_id": "md5:8db5e12508b293bca3495d81a0747447",
|
|
185
187
|
"solar_reference_atlas_file_name": "solar_reference_atlas.npy",
|
|
@@ -568,3 +570,10 @@ def write_calibrated_frames_to_task(
|
|
|
568
570
|
data_func=make_random_data,
|
|
569
571
|
)
|
|
570
572
|
return num_written_frames
|
|
573
|
+
|
|
574
|
+
|
|
575
|
+
@pytest.fixture(scope="session")
|
|
576
|
+
def solar_atlas() -> Atlas:
|
|
577
|
+
config = VispInputDatasetParameterValues().visp_wavecal_atlas_download_config
|
|
578
|
+
config = DownloadConfig.model_validate(config)
|
|
579
|
+
return Atlas(config=config)
|
|
@@ -16,7 +16,6 @@ from dkist_processing_common.codecs.fits import fits_array_decoder
|
|
|
16
16
|
from dkist_processing_common.codecs.fits import fits_array_encoder
|
|
17
17
|
from dkist_processing_common.models.tags import Tag
|
|
18
18
|
from scipy.ndimage import gaussian_filter1d
|
|
19
|
-
from solar_wavelength_calibration import Atlas
|
|
20
19
|
from sunpy.coordinates import HeliocentricInertial
|
|
21
20
|
|
|
22
21
|
from dkist_processing_visp.models.tags import VispTag
|
|
@@ -136,11 +135,6 @@ def resolving_power() -> int:
|
|
|
136
135
|
return int(1.15e5)
|
|
137
136
|
|
|
138
137
|
|
|
139
|
-
@pytest.fixture(scope="session")
|
|
140
|
-
def solar_atlas() -> Atlas:
|
|
141
|
-
return Atlas()
|
|
142
|
-
|
|
143
|
-
|
|
144
138
|
@pytest.fixture(scope="session")
|
|
145
139
|
def spectral_vignette_function(num_wave_pix) -> np.ndarray:
|
|
146
140
|
return (np.arange(num_wave_pix) - num_wave_pix // 2) / (num_wave_pix * 10) + 1.0
|
|
@@ -10,7 +10,6 @@ from dkist_processing_common.codecs.fits import fits_array_encoder
|
|
|
10
10
|
from dkist_processing_common.codecs.json import json_decoder
|
|
11
11
|
from dkist_processing_common.models.metric_code import MetricCode
|
|
12
12
|
from scipy.ndimage import gaussian_filter
|
|
13
|
-
from solar_wavelength_calibration import Atlas
|
|
14
13
|
|
|
15
14
|
from dkist_processing_visp.models.tags import VispTag
|
|
16
15
|
from dkist_processing_visp.tasks.wavelength_calibration import WavelengthCalibration
|
|
@@ -110,11 +109,6 @@ def resolving_power() -> int:
|
|
|
110
109
|
return int(1.15e5)
|
|
111
110
|
|
|
112
111
|
|
|
113
|
-
@pytest.fixture(scope="session")
|
|
114
|
-
def solar_atlas() -> Atlas:
|
|
115
|
-
return Atlas()
|
|
116
|
-
|
|
117
|
-
|
|
118
112
|
@pytest.fixture(scope="function")
|
|
119
113
|
def visp_wavelength_correction_task(
|
|
120
114
|
tmp_path,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dkist-processing-visp
|
|
3
|
-
Version: 5.2.
|
|
3
|
+
Version: 5.2.3
|
|
4
4
|
Summary: Science processing code for the ViSP instrument on DKIST
|
|
5
5
|
Author-email: NSO / AURA <dkistdc@nso.edu>
|
|
6
6
|
License: BSD-3-Clause
|
|
@@ -13,7 +13,7 @@ Classifier: Programming Language :: Python :: 3
|
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.12
|
|
14
14
|
Requires-Python: >=3.12
|
|
15
15
|
Description-Content-Type: text/x-rst
|
|
16
|
-
Requires-Dist: dkist-processing-common==11.9.
|
|
16
|
+
Requires-Dist: dkist-processing-common==11.9.2
|
|
17
17
|
Requires-Dist: dkist-processing-math==2.2.1
|
|
18
18
|
Requires-Dist: dkist-processing-pac==3.1.1
|
|
19
19
|
Requires-Dist: dkist-header-validator==5.2.1
|
|
@@ -118,16 +118,16 @@ Requires-Dist: asdf==3.5.0; extra == "frozen"
|
|
|
118
118
|
Requires-Dist: asdf_standard==1.4.0; extra == "frozen"
|
|
119
119
|
Requires-Dist: asdf_transform_schemas==0.6.0; extra == "frozen"
|
|
120
120
|
Requires-Dist: asgiref==3.11.0; extra == "frozen"
|
|
121
|
-
Requires-Dist: asteval==1.0.
|
|
121
|
+
Requires-Dist: asteval==1.0.8; extra == "frozen"
|
|
122
122
|
Requires-Dist: astropy==7.0.2; extra == "frozen"
|
|
123
|
-
Requires-Dist: astropy-iers-data==0.2025.12.
|
|
123
|
+
Requires-Dist: astropy-iers-data==0.2025.12.22.0.40.30; extra == "frozen"
|
|
124
124
|
Requires-Dist: asyncpg==0.31.0; extra == "frozen"
|
|
125
125
|
Requires-Dist: attrs==25.4.0; extra == "frozen"
|
|
126
126
|
Requires-Dist: babel==2.17.0; extra == "frozen"
|
|
127
127
|
Requires-Dist: billiard==4.2.4; extra == "frozen"
|
|
128
128
|
Requires-Dist: blinker==1.9.0; extra == "frozen"
|
|
129
|
-
Requires-Dist: boto3==1.42.
|
|
130
|
-
Requires-Dist: botocore==1.42.
|
|
129
|
+
Requires-Dist: boto3==1.42.14; extra == "frozen"
|
|
130
|
+
Requires-Dist: botocore==1.42.14; extra == "frozen"
|
|
131
131
|
Requires-Dist: cachelib==0.13.0; extra == "frozen"
|
|
132
132
|
Requires-Dist: celery==5.6.0; extra == "frozen"
|
|
133
133
|
Requires-Dist: certifi==2025.11.12; extra == "frozen"
|
|
@@ -150,11 +150,11 @@ Requires-Dist: dacite==1.9.2; extra == "frozen"
|
|
|
150
150
|
Requires-Dist: decorator==5.2.1; extra == "frozen"
|
|
151
151
|
Requires-Dist: dill==0.4.0; extra == "frozen"
|
|
152
152
|
Requires-Dist: dkist-header-validator==5.2.1; extra == "frozen"
|
|
153
|
-
Requires-Dist: dkist-processing-common==11.9.
|
|
153
|
+
Requires-Dist: dkist-processing-common==11.9.2; extra == "frozen"
|
|
154
154
|
Requires-Dist: dkist-processing-core==6.0.1; extra == "frozen"
|
|
155
155
|
Requires-Dist: dkist-processing-math==2.2.1; extra == "frozen"
|
|
156
156
|
Requires-Dist: dkist-processing-pac==3.1.1; extra == "frozen"
|
|
157
|
-
Requires-Dist: dkist-processing-visp==5.2.
|
|
157
|
+
Requires-Dist: dkist-processing-visp==5.2.3; extra == "frozen"
|
|
158
158
|
Requires-Dist: dkist-service-configuration==4.1.13; extra == "frozen"
|
|
159
159
|
Requires-Dist: dkist-spectral-lines==3.0.0; extra == "frozen"
|
|
160
160
|
Requires-Dist: dkist_fits_specifications==4.19.0; extra == "frozen"
|
|
@@ -166,20 +166,19 @@ Requires-Dist: flower==2.0.1; extra == "frozen"
|
|
|
166
166
|
Requires-Dist: fonttools==4.61.1; extra == "frozen"
|
|
167
167
|
Requires-Dist: frozenlist==1.8.0; extra == "frozen"
|
|
168
168
|
Requires-Dist: fsspec==2025.12.0; extra == "frozen"
|
|
169
|
-
Requires-Dist: globus-sdk==4.
|
|
169
|
+
Requires-Dist: globus-sdk==4.3.0; extra == "frozen"
|
|
170
170
|
Requires-Dist: google-re2==1.1.20251105; extra == "frozen"
|
|
171
171
|
Requires-Dist: googleapis-common-protos==1.72.0; extra == "frozen"
|
|
172
172
|
Requires-Dist: gqlclient==1.2.3; extra == "frozen"
|
|
173
|
-
Requires-Dist: greenlet==3.3.0; extra == "frozen"
|
|
174
173
|
Requires-Dist: grpcio==1.76.0; extra == "frozen"
|
|
175
174
|
Requires-Dist: gunicorn==23.0.0; extra == "frozen"
|
|
176
175
|
Requires-Dist: h11==0.16.0; extra == "frozen"
|
|
177
176
|
Requires-Dist: httpcore==1.0.9; extra == "frozen"
|
|
178
177
|
Requires-Dist: httpx==0.28.1; extra == "frozen"
|
|
179
|
-
Requires-Dist: humanize==4.
|
|
178
|
+
Requires-Dist: humanize==4.15.0; extra == "frozen"
|
|
180
179
|
Requires-Dist: idna==3.11; extra == "frozen"
|
|
181
180
|
Requires-Dist: imageio-ffmpeg==0.6.0; extra == "frozen"
|
|
182
|
-
Requires-Dist: importlib_metadata==8.7.
|
|
181
|
+
Requires-Dist: importlib_metadata==8.7.1; extra == "frozen"
|
|
183
182
|
Requires-Dist: inflection==0.5.1; extra == "frozen"
|
|
184
183
|
Requires-Dist: itsdangerous==2.2.0; extra == "frozen"
|
|
185
184
|
Requires-Dist: jmespath==1.0.1; extra == "frozen"
|
|
@@ -197,7 +196,7 @@ Requires-Dist: lmfit==1.3.4; extra == "frozen"
|
|
|
197
196
|
Requires-Dist: lockfile==0.12.2; extra == "frozen"
|
|
198
197
|
Requires-Dist: loguru==0.7.3; extra == "frozen"
|
|
199
198
|
Requires-Dist: markdown-it-py==4.0.0; extra == "frozen"
|
|
200
|
-
Requires-Dist: marshmallow==3.26.
|
|
199
|
+
Requires-Dist: marshmallow==3.26.2; extra == "frozen"
|
|
201
200
|
Requires-Dist: marshmallow-oneofschema==3.2.0; extra == "frozen"
|
|
202
201
|
Requires-Dist: marshmallow-sqlalchemy==0.28.2; extra == "frozen"
|
|
203
202
|
Requires-Dist: matplotlib==3.10.8; extra == "frozen"
|
|
@@ -261,7 +260,7 @@ Requires-Dist: pydantic==2.12.5; extra == "frozen"
|
|
|
261
260
|
Requires-Dist: pydantic-settings==2.12.0; extra == "frozen"
|
|
262
261
|
Requires-Dist: pydantic_core==2.41.5; extra == "frozen"
|
|
263
262
|
Requires-Dist: pyerfa==2.0.1.5; extra == "frozen"
|
|
264
|
-
Requires-Dist: pyparsing==3.
|
|
263
|
+
Requires-Dist: pyparsing==3.3.0; extra == "frozen"
|
|
265
264
|
Requires-Dist: python-daemon==3.1.2; extra == "frozen"
|
|
266
265
|
Requires-Dist: python-dateutil==2.9.0.post0; extra == "frozen"
|
|
267
266
|
Requires-Dist: python-dotenv==1.2.1; extra == "frozen"
|
|
@@ -285,7 +284,7 @@ Requires-Dist: setproctitle==1.3.7; extra == "frozen"
|
|
|
285
284
|
Requires-Dist: six==1.17.0; extra == "frozen"
|
|
286
285
|
Requires-Dist: solar-wavelength-calibration==2.0.0; extra == "frozen"
|
|
287
286
|
Requires-Dist: sqids==0.5.1; extra == "frozen"
|
|
288
|
-
Requires-Dist: sqlparse==0.5.
|
|
287
|
+
Requires-Dist: sqlparse==0.5.5; extra == "frozen"
|
|
289
288
|
Requires-Dist: sunpy==6.1.1; extra == "frozen"
|
|
290
289
|
Requires-Dist: tabulate==0.9.0; extra == "frozen"
|
|
291
290
|
Requires-Dist: talus==1.3.4; extra == "frozen"
|
|
@@ -293,7 +292,7 @@ Requires-Dist: tenacity==8.5.0; extra == "frozen"
|
|
|
293
292
|
Requires-Dist: termcolor==3.2.0; extra == "frozen"
|
|
294
293
|
Requires-Dist: text-unidecode==1.3; extra == "frozen"
|
|
295
294
|
Requires-Dist: threadpoolctl==3.6.0; extra == "frozen"
|
|
296
|
-
Requires-Dist: tifffile==2025.12.
|
|
295
|
+
Requires-Dist: tifffile==2025.12.20; extra == "frozen"
|
|
297
296
|
Requires-Dist: tornado==6.5.4; extra == "frozen"
|
|
298
297
|
Requires-Dist: tqdm==4.67.1; extra == "frozen"
|
|
299
298
|
Requires-Dist: traitlets==5.14.3; extra == "frozen"
|
|
@@ -306,7 +305,7 @@ Requires-Dist: uncertainties==3.2.3; extra == "frozen"
|
|
|
306
305
|
Requires-Dist: universal_pathlib==0.3.7; extra == "frozen"
|
|
307
306
|
Requires-Dist: urllib3==2.6.2; extra == "frozen"
|
|
308
307
|
Requires-Dist: vine==5.1.0; extra == "frozen"
|
|
309
|
-
Requires-Dist: voluptuous==0.
|
|
308
|
+
Requires-Dist: voluptuous==0.16.0; extra == "frozen"
|
|
310
309
|
Requires-Dist: wcwidth==0.2.14; extra == "frozen"
|
|
311
310
|
Requires-Dist: wirerope==1.0.0; extra == "frozen"
|
|
312
311
|
Requires-Dist: wrapt==1.17.3; extra == "frozen"
|
|
@@ -40,7 +40,7 @@ dkist_processing_visp/tasks/mixin/corrections.py,sha256=FhLFgD9ZYLZd3SaC3PFF-szr
|
|
|
40
40
|
dkist_processing_visp/tasks/mixin/downsample.py,sha256=SvKzY6HJRn-FeyG7O6HPvyOS5dmMu6uPoWkfnpPXpVw,1344
|
|
41
41
|
dkist_processing_visp/tests/README.rst,sha256=rnedwwg25c0lB9Me7cT7QNZA17FYlqCu9ZnjQxR5hi0,12502
|
|
42
42
|
dkist_processing_visp/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
43
|
-
dkist_processing_visp/tests/conftest.py,sha256=
|
|
43
|
+
dkist_processing_visp/tests/conftest.py,sha256=JJLg-x4Rfzrk3wp-vBN0EpnnBzQzXS4qdGmr7GXBNwM,19402
|
|
44
44
|
dkist_processing_visp/tests/header_models.py,sha256=gD1FUo5TtY_EMSnpWvkrJIOsckkgRAD-e1mthPCdiOw,21687
|
|
45
45
|
dkist_processing_visp/tests/test_assemble_movie.py,sha256=T5EZzdB3sNY4HcSkN2W1ZBDaI4a68ZUNqPB-JpANSQ0,2247
|
|
46
46
|
dkist_processing_visp/tests/test_assemble_quality.py,sha256=i2INzb73BM14A6VKD70eb5vaAv5_QjPy3VVVb4lonkc,4314
|
|
@@ -57,10 +57,10 @@ dkist_processing_visp/tests/test_parameters.py,sha256=kIwOak4PURFc6yNT9R1rLxfb4x
|
|
|
57
57
|
dkist_processing_visp/tests/test_parse.py,sha256=XyH8oCk5C0CWl4ndNIyVjgXLoMg0679s4dj1MGlJs0c,23363
|
|
58
58
|
dkist_processing_visp/tests/test_quality.py,sha256=YW24VjEHoILseFIXZBp4-o7egT26mfT1lafzajVjXu8,6905
|
|
59
59
|
dkist_processing_visp/tests/test_science.py,sha256=B8bbtVTxJIXiPssIbJchPLbzVTPCAzpLAgn5DhpYCn0,26106
|
|
60
|
-
dkist_processing_visp/tests/test_solar.py,sha256=
|
|
60
|
+
dkist_processing_visp/tests/test_solar.py,sha256=f5tk8RGOoC7fcxqp3s01p6I55iIDJBioKSXC1S56KMQ,16632
|
|
61
61
|
dkist_processing_visp/tests/test_trial_create_quality_report.py,sha256=5LSvLiInp_ce_jObtBGNHQgVAkvJr9bYgY7IzIKrEuU,2799
|
|
62
62
|
dkist_processing_visp/tests/test_visp_constants.py,sha256=y2x42Y-dK2lrCPufLAV1KHpu2fQ-FRpe8tSIhfHJEw8,3134
|
|
63
|
-
dkist_processing_visp/tests/test_wavelength_calibration.py,sha256=
|
|
63
|
+
dkist_processing_visp/tests/test_wavelength_calibration.py,sha256=bDWehEUb1xRo0EufRb3Fc8n_ko6_S3OdzasVA5Bs3rQ,9421
|
|
64
64
|
dkist_processing_visp/tests/test_workflows.py,sha256=qyWxagIDv-MmVN0u3KFswa5HdaHC6uGeJpvgxvPE30E,287
|
|
65
65
|
dkist_processing_visp/tests/test_write_l1.py,sha256=ZrAWhfx_HZi7dOBRc5YowvkKtMS8TBE_iud_KPjFI8g,6572
|
|
66
66
|
dkist_processing_visp/tests/local_trial_workflows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -91,7 +91,7 @@ docs/science_calibration.rst,sha256=VN_g7xSjN-nbXhlBaFnPCbNcsc_Qu0207jEUfRAjnBE,
|
|
|
91
91
|
docs/scientific_changelog.rst,sha256=01AWBSHg8zElnodCgAq-hMxhk9CkX5rtEENx4iz0sjI,300
|
|
92
92
|
docs/wavelength_calibration.rst,sha256=OSGYAeR8Acns2ZUectHzRj2xcAsuNEMLejcYfPYu-vw,3674
|
|
93
93
|
licenses/LICENSE.rst,sha256=piZaQplkzOMmH1NXg6QIdo9wwo9pPCoHkvm2-DmH76E,1462
|
|
94
|
-
dkist_processing_visp-5.2.
|
|
95
|
-
dkist_processing_visp-5.2.
|
|
96
|
-
dkist_processing_visp-5.2.
|
|
97
|
-
dkist_processing_visp-5.2.
|
|
94
|
+
dkist_processing_visp-5.2.3.dist-info/METADATA,sha256=ApkJp3pja5yuHGsSm2MJ151jW_4Q9095GLR8mW56IY0,29973
|
|
95
|
+
dkist_processing_visp-5.2.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
96
|
+
dkist_processing_visp-5.2.3.dist-info/top_level.txt,sha256=9GHSn-ZMGQxaRNGrPP3HNc5ZkE7ftzluO74Jz5vUSTE,46
|
|
97
|
+
dkist_processing_visp-5.2.3.dist-info/RECORD,,
|
|
File without changes
|
{dkist_processing_visp-5.2.2.dist-info → dkist_processing_visp-5.2.3.dist-info}/top_level.txt
RENAMED
|
File without changes
|