dkist-processing-cryonirsp 1.4.20__py3-none-any.whl → 1.14.9rc1__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.
Files changed (95) hide show
  1. changelog/232.misc.rst +1 -0
  2. dkist_processing_cryonirsp/__init__.py +1 -0
  3. dkist_processing_cryonirsp/codecs/fits.py +1 -0
  4. dkist_processing_cryonirsp/config.py +5 -1
  5. dkist_processing_cryonirsp/models/beam_boundaries.py +1 -0
  6. dkist_processing_cryonirsp/models/constants.py +31 -30
  7. dkist_processing_cryonirsp/models/exposure_conditions.py +6 -5
  8. dkist_processing_cryonirsp/models/fits_access.py +40 -0
  9. dkist_processing_cryonirsp/models/parameters.py +14 -26
  10. dkist_processing_cryonirsp/models/tags.py +1 -0
  11. dkist_processing_cryonirsp/models/task_name.py +1 -0
  12. dkist_processing_cryonirsp/parsers/check_for_gains.py +1 -0
  13. dkist_processing_cryonirsp/parsers/cryonirsp_l0_fits_access.py +40 -47
  14. dkist_processing_cryonirsp/parsers/cryonirsp_l1_fits_access.py +1 -0
  15. dkist_processing_cryonirsp/parsers/exposure_conditions.py +14 -13
  16. dkist_processing_cryonirsp/parsers/map_repeats.py +1 -0
  17. dkist_processing_cryonirsp/parsers/measurements.py +29 -16
  18. dkist_processing_cryonirsp/parsers/modstates.py +5 -1
  19. dkist_processing_cryonirsp/parsers/optical_density_filters.py +1 -0
  20. dkist_processing_cryonirsp/parsers/polarimetric_check.py +18 -7
  21. dkist_processing_cryonirsp/parsers/scan_step.py +12 -4
  22. dkist_processing_cryonirsp/parsers/time.py +7 -7
  23. dkist_processing_cryonirsp/parsers/wavelength.py +6 -1
  24. dkist_processing_cryonirsp/tasks/__init__.py +2 -1
  25. dkist_processing_cryonirsp/tasks/assemble_movie.py +1 -0
  26. dkist_processing_cryonirsp/tasks/bad_pixel_map.py +6 -5
  27. dkist_processing_cryonirsp/tasks/beam_boundaries_base.py +12 -11
  28. dkist_processing_cryonirsp/tasks/ci_beam_boundaries.py +1 -0
  29. dkist_processing_cryonirsp/tasks/ci_science.py +1 -0
  30. dkist_processing_cryonirsp/tasks/cryonirsp_base.py +2 -3
  31. dkist_processing_cryonirsp/tasks/dark.py +5 -4
  32. dkist_processing_cryonirsp/tasks/gain.py +7 -6
  33. dkist_processing_cryonirsp/tasks/instrument_polarization.py +17 -16
  34. dkist_processing_cryonirsp/tasks/l1_output_data.py +1 -0
  35. dkist_processing_cryonirsp/tasks/linearity_correction.py +1 -0
  36. dkist_processing_cryonirsp/tasks/make_movie_frames.py +3 -2
  37. dkist_processing_cryonirsp/tasks/mixin/corrections.py +1 -0
  38. dkist_processing_cryonirsp/tasks/mixin/shift_measurements.py +9 -2
  39. dkist_processing_cryonirsp/tasks/parse.py +70 -52
  40. dkist_processing_cryonirsp/tasks/quality_metrics.py +15 -14
  41. dkist_processing_cryonirsp/tasks/science_base.py +8 -6
  42. dkist_processing_cryonirsp/tasks/sp_beam_boundaries.py +2 -1
  43. dkist_processing_cryonirsp/tasks/sp_geometric.py +11 -10
  44. dkist_processing_cryonirsp/tasks/sp_science.py +1 -0
  45. dkist_processing_cryonirsp/tasks/sp_solar_gain.py +15 -12
  46. dkist_processing_cryonirsp/tasks/sp_wavelength_calibration.py +300 -0
  47. dkist_processing_cryonirsp/tasks/write_l1.py +59 -38
  48. dkist_processing_cryonirsp/tests/conftest.py +75 -53
  49. dkist_processing_cryonirsp/tests/header_models.py +62 -11
  50. dkist_processing_cryonirsp/tests/local_trial_workflows/l0_cals_only.py +26 -46
  51. dkist_processing_cryonirsp/tests/local_trial_workflows/l0_to_l1.py +26 -47
  52. dkist_processing_cryonirsp/tests/local_trial_workflows/linearize_only.py +3 -3
  53. dkist_processing_cryonirsp/tests/local_trial_workflows/local_trial_helpers.py +57 -26
  54. dkist_processing_cryonirsp/tests/test_assemble_movie.py +4 -5
  55. dkist_processing_cryonirsp/tests/test_assemble_qualilty.py +5 -1
  56. dkist_processing_cryonirsp/tests/test_bad_pixel_maps.py +4 -5
  57. dkist_processing_cryonirsp/tests/test_ci_beam_boundaries.py +4 -5
  58. dkist_processing_cryonirsp/tests/test_ci_science.py +4 -5
  59. dkist_processing_cryonirsp/tests/test_corrections.py +5 -6
  60. dkist_processing_cryonirsp/tests/test_cryo_base.py +4 -6
  61. dkist_processing_cryonirsp/tests/test_cryo_constants.py +7 -3
  62. dkist_processing_cryonirsp/tests/test_dark.py +7 -8
  63. dkist_processing_cryonirsp/tests/test_fits_access.py +44 -0
  64. dkist_processing_cryonirsp/tests/test_gain.py +7 -8
  65. dkist_processing_cryonirsp/tests/test_instrument_polarization.py +19 -10
  66. dkist_processing_cryonirsp/tests/test_linearity_correction.py +5 -4
  67. dkist_processing_cryonirsp/tests/test_make_movie_frames.py +2 -3
  68. dkist_processing_cryonirsp/tests/test_parameters.py +23 -28
  69. dkist_processing_cryonirsp/tests/test_parse.py +48 -12
  70. dkist_processing_cryonirsp/tests/test_quality.py +2 -3
  71. dkist_processing_cryonirsp/tests/test_sp_beam_boundaries.py +5 -5
  72. dkist_processing_cryonirsp/tests/test_sp_geometric.py +5 -6
  73. dkist_processing_cryonirsp/tests/test_sp_make_movie_frames.py +2 -3
  74. dkist_processing_cryonirsp/tests/test_sp_science.py +4 -5
  75. dkist_processing_cryonirsp/tests/test_sp_solar.py +6 -5
  76. dkist_processing_cryonirsp/tests/{test_sp_dispersion_axis_correction.py → test_sp_wavelength_calibration.py} +11 -29
  77. dkist_processing_cryonirsp/tests/test_trial_create_quality_report.py +1 -1
  78. dkist_processing_cryonirsp/tests/test_workflows.py +1 -0
  79. dkist_processing_cryonirsp/tests/test_write_l1.py +29 -31
  80. dkist_processing_cryonirsp/workflows/__init__.py +1 -0
  81. dkist_processing_cryonirsp/workflows/ci_l0_processing.py +9 -5
  82. dkist_processing_cryonirsp/workflows/sp_l0_processing.py +12 -8
  83. dkist_processing_cryonirsp/workflows/trial_workflows.py +12 -11
  84. dkist_processing_cryonirsp-1.14.9rc1.dist-info/METADATA +552 -0
  85. dkist_processing_cryonirsp-1.14.9rc1.dist-info/RECORD +115 -0
  86. {dkist_processing_cryonirsp-1.4.20.dist-info → dkist_processing_cryonirsp-1.14.9rc1.dist-info}/WHEEL +1 -1
  87. docs/ci_science_calibration.rst +10 -0
  88. docs/conf.py +1 -0
  89. docs/index.rst +1 -0
  90. docs/sp_science_calibration.rst +7 -0
  91. docs/wavelength_calibration.rst +62 -0
  92. dkist_processing_cryonirsp/tasks/sp_dispersion_axis_correction.py +0 -492
  93. dkist_processing_cryonirsp-1.4.20.dist-info/METADATA +0 -452
  94. dkist_processing_cryonirsp-1.4.20.dist-info/RECORD +0 -111
  95. {dkist_processing_cryonirsp-1.4.20.dist-info → dkist_processing_cryonirsp-1.14.9rc1.dist-info}/top_level.txt +0 -0
@@ -1,452 +0,0 @@
1
- Metadata-Version: 2.2
2
- Name: dkist-processing-cryonirsp
3
- Version: 1.4.20
4
- Summary: Science processing code for the Cryo-NIRSP instrument on DKIST
5
- Author-email: NSO / AURA <dkistdc@nso.edu>
6
- License: BSD-3-Clause
7
- Project-URL: Homepage, https://nso.edu/dkist/data-center/
8
- Project-URL: Repository, https://bitbucket.org/dkistdc/dkist-processing-cryonirsp/
9
- Project-URL: Documentation, https://docs.dkist.nso.edu/projects/cryo-nirsp
10
- Project-URL: Help, https://nso.atlassian.net/servicedesk/customer/portal/5
11
- Classifier: Programming Language :: Python
12
- Classifier: Programming Language :: Python :: 3
13
- Classifier: Programming Language :: Python :: 3.11
14
- Requires-Python: >=3.11
15
- Description-Content-Type: text/x-rst
16
- Requires-Dist: Pillow==10.3.0
17
- Requires-Dist: astropy==6.1.5
18
- Requires-Dist: dkist-fits-specifications==4.11.0
19
- Requires-Dist: dkist-header-validator==5.1.1
20
- Requires-Dist: dkist-processing-common==10.5.13
21
- Requires-Dist: dkist-processing-math==2.1.2
22
- Requires-Dist: dkist-processing-pac==3.1.1
23
- Requires-Dist: dkist-spectral-lines==3.0.0
24
- Requires-Dist: largestinteriorrectangle==0.2.0
25
- Requires-Dist: dkist-service-configuration==2.2
26
- Requires-Dist: moviepy==2.0.0
27
- Requires-Dist: numba==0.59.1
28
- Requires-Dist: numpy==1.26.4
29
- Requires-Dist: peakutils==1.3.5
30
- Requires-Dist: scikit-image==0.23.2
31
- Requires-Dist: scipy==1.15.1
32
- Requires-Dist: sunpy==5.1.3
33
- Provides-Extra: test
34
- Requires-Dist: pytest; extra == "test"
35
- Requires-Dist: pytest-cov; extra == "test"
36
- Requires-Dist: pytest-xdist; extra == "test"
37
- Requires-Dist: pytest-mock; extra == "test"
38
- Requires-Dist: hypothesis; extra == "test"
39
- Requires-Dist: towncrier; extra == "test"
40
- Requires-Dist: dkist-data-simulator>=5.2.3; extra == "test"
41
- Requires-Dist: dkist-processing-cryonirsp[inventory]; extra == "test"
42
- Requires-Dist: dkist-processing-cryonirsp[asdf]; extra == "test"
43
- Requires-Dist: dkist-processing-cryonirsp[quality]; extra == "test"
44
- Provides-Extra: inventory
45
- Requires-Dist: dkist-processing-common[inventory]; extra == "inventory"
46
- Requires-Dist: dkist-inventory==1.6.1; extra == "inventory"
47
- Provides-Extra: asdf
48
- Requires-Dist: dkist-processing-common[asdf]; extra == "asdf"
49
- Requires-Dist: dkist-inventory[asdf]==1.6.1; extra == "asdf"
50
- Provides-Extra: quality
51
- Requires-Dist: dkist-quality==1.2.1; extra == "quality"
52
- Provides-Extra: grogu
53
- Requires-Dist: dkist; extra == "grogu"
54
- Requires-Dist: pyparsing; extra == "grogu"
55
- Requires-Dist: dkist-inventory>=1.6.0; extra == "grogu"
56
- Provides-Extra: docs
57
- Requires-Dist: sphinx; extra == "docs"
58
- Requires-Dist: sphinx-astropy; extra == "docs"
59
- Requires-Dist: sphinx-changelog; extra == "docs"
60
- Requires-Dist: sphinx-autoapi==3.3.3; extra == "docs"
61
- Requires-Dist: pytest; extra == "docs"
62
- Requires-Dist: towncrier; extra == "docs"
63
- Requires-Dist: dkist-sphinx-theme; extra == "docs"
64
- Provides-Extra: frozen
65
- Requires-Dist: ConfigUpdater==3.2; extra == "frozen"
66
- Requires-Dist: Deprecated==1.2.18; extra == "frozen"
67
- Requires-Dist: Flask==2.2.5; extra == "frozen"
68
- Requires-Dist: Flask-AppBuilder==4.5.3; extra == "frozen"
69
- Requires-Dist: Flask-Babel==2.0.0; extra == "frozen"
70
- Requires-Dist: Flask-Caching==2.3.0; extra == "frozen"
71
- Requires-Dist: Flask-JWT-Extended==4.7.1; extra == "frozen"
72
- Requires-Dist: Flask-Limiter==3.10.1; extra == "frozen"
73
- Requires-Dist: Flask-Login==0.6.3; extra == "frozen"
74
- Requires-Dist: Flask-SQLAlchemy==2.5.1; extra == "frozen"
75
- Requires-Dist: Flask-Session==0.5.0; extra == "frozen"
76
- Requires-Dist: Flask-WTF==1.2.2; extra == "frozen"
77
- Requires-Dist: Jinja2==3.1.5; extra == "frozen"
78
- Requires-Dist: Mako==1.3.9; extra == "frozen"
79
- Requires-Dist: MarkupSafe==3.0.2; extra == "frozen"
80
- Requires-Dist: PeakUtils==1.3.5; extra == "frozen"
81
- Requires-Dist: PyJWT==2.10.1; extra == "frozen"
82
- Requires-Dist: PyYAML==6.0.2; extra == "frozen"
83
- Requires-Dist: Pygments==2.19.1; extra == "frozen"
84
- Requires-Dist: SQLAlchemy==1.4.54; extra == "frozen"
85
- Requires-Dist: SQLAlchemy-JSONField==1.0.2; extra == "frozen"
86
- Requires-Dist: SQLAlchemy-Utils==0.41.2; extra == "frozen"
87
- Requires-Dist: WTForms==3.2.1; extra == "frozen"
88
- Requires-Dist: Werkzeug==2.2.3; extra == "frozen"
89
- Requires-Dist: aioftp==0.24.1; extra == "frozen"
90
- Requires-Dist: aiohappyeyeballs==2.4.6; extra == "frozen"
91
- Requires-Dist: aiohttp==3.11.12; extra == "frozen"
92
- Requires-Dist: aiosignal==1.3.2; extra == "frozen"
93
- Requires-Dist: aiosqlite==0.21.0; extra == "frozen"
94
- Requires-Dist: alembic==1.14.1; extra == "frozen"
95
- Requires-Dist: amqp==5.3.1; extra == "frozen"
96
- Requires-Dist: annotated-types==0.7.0; extra == "frozen"
97
- Requires-Dist: anyio==4.8.0; extra == "frozen"
98
- Requires-Dist: apache-airflow==2.10.4; extra == "frozen"
99
- Requires-Dist: apache-airflow-providers-celery==3.10.0; extra == "frozen"
100
- Requires-Dist: apache-airflow-providers-common-compat==1.3.0; extra == "frozen"
101
- Requires-Dist: apache-airflow-providers-common-io==1.5.0; extra == "frozen"
102
- Requires-Dist: apache-airflow-providers-common-sql==1.21.0; extra == "frozen"
103
- Requires-Dist: apache-airflow-providers-fab==1.5.3; extra == "frozen"
104
- Requires-Dist: apache-airflow-providers-ftp==3.12.0; extra == "frozen"
105
- Requires-Dist: apache-airflow-providers-http==5.0.0; extra == "frozen"
106
- Requires-Dist: apache-airflow-providers-imap==3.8.0; extra == "frozen"
107
- Requires-Dist: apache-airflow-providers-postgres==6.0.0; extra == "frozen"
108
- Requires-Dist: apache-airflow-providers-smtp==1.9.0; extra == "frozen"
109
- Requires-Dist: apache-airflow-providers-sqlite==4.0.0; extra == "frozen"
110
- Requires-Dist: apispec==6.8.1; extra == "frozen"
111
- Requires-Dist: argcomplete==3.5.3; extra == "frozen"
112
- Requires-Dist: asdf==3.5.0; extra == "frozen"
113
- Requires-Dist: asdf_standard==1.1.1; extra == "frozen"
114
- Requires-Dist: asdf_transform_schemas==0.5.0; extra == "frozen"
115
- Requires-Dist: asgiref==3.8.1; extra == "frozen"
116
- Requires-Dist: asteval==1.0.6; extra == "frozen"
117
- Requires-Dist: astropy==6.1.5; extra == "frozen"
118
- Requires-Dist: astropy-iers-data==0.2025.2.10.0.33.26; extra == "frozen"
119
- Requires-Dist: asyncpg==0.30.0; extra == "frozen"
120
- Requires-Dist: attrs==25.1.0; extra == "frozen"
121
- Requires-Dist: babel==2.17.0; extra == "frozen"
122
- Requires-Dist: billiard==4.2.1; extra == "frozen"
123
- Requires-Dist: blinker==1.9.0; extra == "frozen"
124
- Requires-Dist: boto3==1.36.20; extra == "frozen"
125
- Requires-Dist: botocore==1.36.20; extra == "frozen"
126
- Requires-Dist: cachelib==0.9.0; extra == "frozen"
127
- Requires-Dist: celery==5.4.0; extra == "frozen"
128
- Requires-Dist: certifi==2025.1.31; extra == "frozen"
129
- Requires-Dist: cffi==1.17.1; extra == "frozen"
130
- Requires-Dist: charset-normalizer==3.4.1; extra == "frozen"
131
- Requires-Dist: click==8.1.8; extra == "frozen"
132
- Requires-Dist: click-didyoumean==0.3.1; extra == "frozen"
133
- Requires-Dist: click-plugins==1.1.1; extra == "frozen"
134
- Requires-Dist: click-repl==0.3.0; extra == "frozen"
135
- Requires-Dist: clickclick==20.10.2; extra == "frozen"
136
- Requires-Dist: colorama==0.4.6; extra == "frozen"
137
- Requires-Dist: colorlog==6.9.0; extra == "frozen"
138
- Requires-Dist: connexion==2.14.2; extra == "frozen"
139
- Requires-Dist: contourpy==1.3.1; extra == "frozen"
140
- Requires-Dist: cron-descriptor==1.4.5; extra == "frozen"
141
- Requires-Dist: croniter==6.0.0; extra == "frozen"
142
- Requires-Dist: cryptography==44.0.1; extra == "frozen"
143
- Requires-Dist: cycler==0.12.1; extra == "frozen"
144
- Requires-Dist: dacite==1.9.2; extra == "frozen"
145
- Requires-Dist: decorator==5.1.1; extra == "frozen"
146
- Requires-Dist: dill==0.3.9; extra == "frozen"
147
- Requires-Dist: dkist-header-validator==5.1.1; extra == "frozen"
148
- Requires-Dist: dkist-processing-common==10.5.13; extra == "frozen"
149
- Requires-Dist: dkist-processing-core==5.0.0; extra == "frozen"
150
- Requires-Dist: dkist-processing-cryonirsp==1.4.20; extra == "frozen"
151
- Requires-Dist: dkist-processing-math==2.1.2; extra == "frozen"
152
- Requires-Dist: dkist-processing-pac==3.1.1; extra == "frozen"
153
- Requires-Dist: dkist-service-configuration==2.2; extra == "frozen"
154
- Requires-Dist: dkist-spectral-lines==3.0.0; extra == "frozen"
155
- Requires-Dist: dkist_fits_specifications==4.11.0; extra == "frozen"
156
- Requires-Dist: dnspython==2.7.0; extra == "frozen"
157
- Requires-Dist: ecs-logging==2.2.0; extra == "frozen"
158
- Requires-Dist: elastic-apm==6.23.0; extra == "frozen"
159
- Requires-Dist: email_validator==2.2.0; extra == "frozen"
160
- Requires-Dist: fastjsonschema==2.21.1; extra == "frozen"
161
- Requires-Dist: flower==2.0.1; extra == "frozen"
162
- Requires-Dist: fonttools==4.56.0; extra == "frozen"
163
- Requires-Dist: frozenlist==1.5.0; extra == "frozen"
164
- Requires-Dist: fsspec==2025.2.0; extra == "frozen"
165
- Requires-Dist: globus-sdk==3.50.0; extra == "frozen"
166
- Requires-Dist: google-re2==1.1.20240702; extra == "frozen"
167
- Requires-Dist: googleapis-common-protos==1.67.0; extra == "frozen"
168
- Requires-Dist: gqlclient==1.2.3; extra == "frozen"
169
- Requires-Dist: greenlet==3.1.1; extra == "frozen"
170
- Requires-Dist: grpcio==1.70.0; extra == "frozen"
171
- Requires-Dist: gunicorn==23.0.0; extra == "frozen"
172
- Requires-Dist: h11==0.14.0; extra == "frozen"
173
- Requires-Dist: httpcore==1.0.7; extra == "frozen"
174
- Requires-Dist: httpx==0.28.1; extra == "frozen"
175
- Requires-Dist: humanize==4.12.0; extra == "frozen"
176
- Requires-Dist: idna==3.10; extra == "frozen"
177
- Requires-Dist: imageio==2.37.0; extra == "frozen"
178
- Requires-Dist: imageio-ffmpeg==0.6.0; extra == "frozen"
179
- Requires-Dist: importlib_metadata==8.5.0; extra == "frozen"
180
- Requires-Dist: inflection==0.5.1; extra == "frozen"
181
- Requires-Dist: itsdangerous==2.2.0; extra == "frozen"
182
- Requires-Dist: jmespath==1.0.1; extra == "frozen"
183
- Requires-Dist: jsonschema==4.23.0; extra == "frozen"
184
- Requires-Dist: jsonschema-specifications==2024.10.1; extra == "frozen"
185
- Requires-Dist: jupyter_core==5.7.2; extra == "frozen"
186
- Requires-Dist: kiwisolver==1.4.8; extra == "frozen"
187
- Requires-Dist: kombu==5.4.2; extra == "frozen"
188
- Requires-Dist: largestinteriorrectangle==0.2.0; extra == "frozen"
189
- Requires-Dist: lazy-object-proxy==1.10.0; extra == "frozen"
190
- Requires-Dist: lazy_loader==0.4; extra == "frozen"
191
- Requires-Dist: limits==4.0.1; extra == "frozen"
192
- Requires-Dist: linkify-it-py==2.0.3; extra == "frozen"
193
- Requires-Dist: llvmlite==0.42.0; extra == "frozen"
194
- Requires-Dist: lmfit==1.3.2; extra == "frozen"
195
- Requires-Dist: lockfile==0.12.2; extra == "frozen"
196
- Requires-Dist: loguru==0.7.3; extra == "frozen"
197
- Requires-Dist: markdown-it-py==3.0.0; extra == "frozen"
198
- Requires-Dist: marshmallow==3.26.1; extra == "frozen"
199
- Requires-Dist: marshmallow-oneofschema==3.1.1; extra == "frozen"
200
- Requires-Dist: marshmallow-sqlalchemy==0.28.2; extra == "frozen"
201
- Requires-Dist: matplotlib==3.10.0; extra == "frozen"
202
- Requires-Dist: mdit-py-plugins==0.4.2; extra == "frozen"
203
- Requires-Dist: mdurl==0.1.2; extra == "frozen"
204
- Requires-Dist: methodtools==0.4.7; extra == "frozen"
205
- Requires-Dist: more-itertools==10.6.0; extra == "frozen"
206
- Requires-Dist: moviepy==2.0.0; extra == "frozen"
207
- Requires-Dist: multidict==6.1.0; extra == "frozen"
208
- Requires-Dist: nbformat==5.10.4; extra == "frozen"
209
- Requires-Dist: networkx==3.4.2; extra == "frozen"
210
- Requires-Dist: numba==0.59.1; extra == "frozen"
211
- Requires-Dist: numpy==1.26.4; extra == "frozen"
212
- Requires-Dist: object-clerk==0.1.1; extra == "frozen"
213
- Requires-Dist: opentelemetry-api==1.30.0; extra == "frozen"
214
- Requires-Dist: opentelemetry-exporter-otlp==1.30.0; extra == "frozen"
215
- Requires-Dist: opentelemetry-exporter-otlp-proto-common==1.30.0; extra == "frozen"
216
- Requires-Dist: opentelemetry-exporter-otlp-proto-grpc==1.30.0; extra == "frozen"
217
- Requires-Dist: opentelemetry-exporter-otlp-proto-http==1.30.0; extra == "frozen"
218
- Requires-Dist: opentelemetry-proto==1.30.0; extra == "frozen"
219
- Requires-Dist: opentelemetry-sdk==1.30.0; extra == "frozen"
220
- Requires-Dist: opentelemetry-semantic-conventions==0.51b0; extra == "frozen"
221
- Requires-Dist: ordered-set==4.1.0; extra == "frozen"
222
- Requires-Dist: packaging==24.2; extra == "frozen"
223
- Requires-Dist: pandas==2.2.3; extra == "frozen"
224
- Requires-Dist: parfive==2.1.0; extra == "frozen"
225
- Requires-Dist: pathspec==0.12.1; extra == "frozen"
226
- Requires-Dist: pendulum==3.0.0; extra == "frozen"
227
- Requires-Dist: pika==1.3.2; extra == "frozen"
228
- Requires-Dist: pillow==10.3.0; extra == "frozen"
229
- Requires-Dist: pip==25.0.1; extra == "frozen"
230
- Requires-Dist: platformdirs==4.3.6; extra == "frozen"
231
- Requires-Dist: pluggy==1.5.0; extra == "frozen"
232
- Requires-Dist: prison==0.2.1; extra == "frozen"
233
- Requires-Dist: proglog==0.1.10; extra == "frozen"
234
- Requires-Dist: prometheus_client==0.21.1; extra == "frozen"
235
- Requires-Dist: prompt_toolkit==3.0.50; extra == "frozen"
236
- Requires-Dist: propcache==0.2.1; extra == "frozen"
237
- Requires-Dist: protobuf==5.29.3; extra == "frozen"
238
- Requires-Dist: psutil==7.0.0; extra == "frozen"
239
- Requires-Dist: psycopg2-binary==2.9.10; extra == "frozen"
240
- Requires-Dist: py==1.11.0; extra == "frozen"
241
- Requires-Dist: pycparser==2.22; extra == "frozen"
242
- Requires-Dist: pydantic==2.10.6; extra == "frozen"
243
- Requires-Dist: pydantic-settings==2.7.1; extra == "frozen"
244
- Requires-Dist: pydantic_core==2.27.2; extra == "frozen"
245
- Requires-Dist: pyerfa==2.0.1.5; extra == "frozen"
246
- Requires-Dist: pyparsing==3.2.1; extra == "frozen"
247
- Requires-Dist: python-daemon==3.1.2; extra == "frozen"
248
- Requires-Dist: python-dateutil==2.9.0.post0; extra == "frozen"
249
- Requires-Dist: python-dotenv==1.0.1; extra == "frozen"
250
- Requires-Dist: python-nvd3==0.16.0; extra == "frozen"
251
- Requires-Dist: python-slugify==8.0.4; extra == "frozen"
252
- Requires-Dist: pytz==2025.1; extra == "frozen"
253
- Requires-Dist: redis==4.6.0; extra == "frozen"
254
- Requires-Dist: referencing==0.36.2; extra == "frozen"
255
- Requires-Dist: requests==2.32.3; extra == "frozen"
256
- Requires-Dist: requests-toolbelt==1.0.0; extra == "frozen"
257
- Requires-Dist: retry==0.9.2; extra == "frozen"
258
- Requires-Dist: rfc3339-validator==0.1.4; extra == "frozen"
259
- Requires-Dist: rich==13.9.4; extra == "frozen"
260
- Requires-Dist: rich-argparse==1.7.0; extra == "frozen"
261
- Requires-Dist: rpds-py==0.22.3; extra == "frozen"
262
- Requires-Dist: s3transfer==0.11.2; extra == "frozen"
263
- Requires-Dist: scikit-image==0.23.2; extra == "frozen"
264
- Requires-Dist: scipy==1.15.1; extra == "frozen"
265
- Requires-Dist: semantic-version==2.10.0; extra == "frozen"
266
- Requires-Dist: setproctitle==1.3.4; extra == "frozen"
267
- Requires-Dist: setuptools==65.5.0; extra == "frozen"
268
- Requires-Dist: six==1.17.0; extra == "frozen"
269
- Requires-Dist: sniffio==1.3.1; extra == "frozen"
270
- Requires-Dist: sqids==0.5.1; extra == "frozen"
271
- Requires-Dist: sqlparse==0.5.3; extra == "frozen"
272
- Requires-Dist: sunpy==5.1.3; extra == "frozen"
273
- Requires-Dist: tabulate==0.9.0; extra == "frozen"
274
- Requires-Dist: talus==1.1.0; extra == "frozen"
275
- Requires-Dist: tenacity==9.0.0; extra == "frozen"
276
- Requires-Dist: termcolor==2.5.0; extra == "frozen"
277
- Requires-Dist: text-unidecode==1.3; extra == "frozen"
278
- Requires-Dist: tifffile==2025.1.10; extra == "frozen"
279
- Requires-Dist: time-machine==2.16.0; extra == "frozen"
280
- Requires-Dist: tornado==6.4.2; extra == "frozen"
281
- Requires-Dist: tqdm==4.67.1; extra == "frozen"
282
- Requires-Dist: traitlets==5.14.3; extra == "frozen"
283
- Requires-Dist: typing_extensions==4.12.2; extra == "frozen"
284
- Requires-Dist: tzdata==2025.1; extra == "frozen"
285
- Requires-Dist: uc-micro-py==1.0.3; extra == "frozen"
286
- Requires-Dist: uncertainties==3.2.2; extra == "frozen"
287
- Requires-Dist: universal_pathlib==0.2.6; extra == "frozen"
288
- Requires-Dist: urllib3==2.3.0; extra == "frozen"
289
- Requires-Dist: vine==5.1.0; extra == "frozen"
290
- Requires-Dist: voluptuous==0.15.2; extra == "frozen"
291
- Requires-Dist: wcwidth==0.2.13; extra == "frozen"
292
- Requires-Dist: wirerope==1.0.0; extra == "frozen"
293
- Requires-Dist: wrapt==1.17.2; extra == "frozen"
294
- Requires-Dist: yamale==6.0.0; extra == "frozen"
295
- Requires-Dist: yarl==1.18.3; extra == "frozen"
296
- Requires-Dist: zipp==3.21.0; extra == "frozen"
297
-
298
- dkist-processing-cryonirsp
299
- ==========================
300
-
301
- Overview
302
- --------
303
- The dkist-processing-cryonirsp library contains the implementation of the cryonirsp pipelines as a collection of the
304
- `dkist-processing-core <https://pypi.org/project/dkist-processing-core/>`_ framework and
305
- `dkist-processing-common <https://pypi.org/project/dkist-processing-common/>`_ Tasks.
306
-
307
- The recommended project structure is to separate tasks and workflows into separate packages. Having the workflows
308
- in their own package facilitates using the build_utils to test the integrity of those workflows in the unit test.
309
-
310
- Environment Variables
311
- ---------------------
312
- Only those specified by `dkist-processing-core <https://pypi.org/project/dkist-processing-core/>`_ and `dkist-processing-common <https://pypi.org/project/dkist-processing-common/>`_.
313
-
314
- Development
315
- -----------
316
- .. code-block:: bash
317
-
318
- git clone git@bitbucket.org:dkistdc/dkist-processing-cryonirsp.git
319
- cd dkist-processing-cryonirsp
320
- pre-commit install
321
- pip install -e .[test]
322
- pytest -v --cov dkist_processing_cryonirsp
323
-
324
- Build
325
- -----
326
- Artifacts are built through Bitbucket Pipelines.
327
-
328
- The pipeline can be used in other repos with a modification of the package and artifact locations
329
- to use the names relevant to the target repo.
330
-
331
- e.g. dkist-processing-test -> dkist-processing-vbi and dkist_processing_test -> dkist_processing_vbi
332
-
333
- Deployment
334
- ----------
335
- Deployment is done with `turtlebot <https://bitbucket.org/dkistdc/turtlebot/src/main/>`_ and follows
336
- the process detailed in `dkist-processing-core <https://pypi.org/project/dkist-processing-core/>`_
337
-
338
- Additionally, when a new release is ready to be built the following steps need to be taken:
339
-
340
- 1. Freezing Dependencies
341
- #########################
342
-
343
- A new "frozen" extra is generated by the `dkist-dev-tools <https://bitbucket.org/dkistdc/dkist-dev-tools/src/main/>`_
344
- package. If you don't have `dkist-dev-tools` installed please follow the directions from that repo.
345
-
346
- To freeze dependencies run
347
-
348
- .. code-block:: bash
349
-
350
- ddt freeze vX.Y.Z[rcK]
351
-
352
- Where "vX.Y.Z[rcK]" is the version about to be released.
353
-
354
- 2. Changelog
355
- ############
356
-
357
- When you make **any** change to this repository it **MUST** be accompanied by a changelog file.
358
- The changelog for this repository uses the `towncrier <https://github.com/twisted/towncrier>`__ package.
359
- Entries in the changelog for the next release are added as individual files (one per change) to the ``changelog/`` directory.
360
-
361
- Writing a Changelog Entry
362
- ^^^^^^^^^^^^^^^^^^^^^^^^^
363
-
364
- A changelog entry accompanying a change should be added to the ``changelog/`` directory.
365
- The name of a file in this directory follows a specific template::
366
-
367
- <PULL REQUEST NUMBER>.<TYPE>[.<COUNTER>].rst
368
-
369
- The fields have the following meanings:
370
-
371
- * ``<PULL REQUEST NUMBER>``: This is the number of the pull request, so people can jump from the changelog entry to the diff on BitBucket.
372
- * ``<TYPE>``: This is the type of the change and must be one of the values described below.
373
- * ``<COUNTER>``: This is an optional field, if you make more than one change of the same type you can append a counter to the subsequent changes, i.e. ``100.bugfix.rst`` and ``100.bugfix.1.rst`` for two bugfix changes in the same PR.
374
-
375
- The list of possible types is defined in the towncrier section of ``pyproject.toml``, the types are:
376
-
377
- * ``feature``: This change is a new code feature.
378
- * ``bugfix``: This is a change which fixes a bug.
379
- * ``doc``: A documentation change.
380
- * ``removal``: A deprecation or removal of public API.
381
- * ``misc``: Any small change which doesn't fit anywhere else, such as a change to the package infrastructure.
382
-
383
-
384
- Rendering the Changelog at Release Time
385
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
386
-
387
- When you are about to tag a release first you must run ``towncrier`` to render the changelog.
388
- The steps for this are as follows:
389
-
390
- * Run `towncrier build --version vx.y.z` using the version number you want to tag.
391
- * Agree to have towncrier remove the fragments.
392
- * Add and commit your changes.
393
- * Tag the release.
394
-
395
- **NOTE:** If you forget to add a Changelog entry to a tagged release (either manually or automatically with ``towncrier``)
396
- then the Bitbucket pipeline will fail. To be able to use the same tag you must delete it locally and on the remote branch:
397
-
398
- .. code-block:: bash
399
-
400
- # First, actually update the CHANGELOG and commit the update
401
- git commit
402
-
403
- # Delete tags
404
- git tag -d vWHATEVER.THE.VERSION
405
- git push --delete origin vWHATEVER.THE.VERSION
406
-
407
- # Re-tag with the same version
408
- git tag vWHATEVER.THE.VERSION
409
- git push --tags origin main
410
-
411
- Science Changelog
412
- ^^^^^^^^^^^^^^^^^
413
-
414
- Whenever a release involves changes to the scientific quality of L1 data, additional changelog fragment(s) should be
415
- created. These fragments are intended to be as verbose as is needed to accurately capture the scope of the change(s),
416
- so feel free to use all the fancy RST you want. Science fragments are placed in the same ``changelog/`` directory
417
- as other fragments, but are always called::
418
-
419
- <PR NUMBER | +>.science[.<COUNTER>].rst
420
-
421
- In the case that a single pull request encapsulates the entirety of the scientific change then the first field should
422
- be that PR number (same as the normal CHANGELOG). If, however, there is not a simple mapping from a single PR to a scientific
423
- change then use the character "+" instead; this will create a changelog entry with no associated PR. For example:
424
-
425
- .. code-block:: bash
426
-
427
- $ ls changelog/
428
- 99.bugfix.rst # This is a normal changelog fragment associated with a bugfix in PR 99
429
- 99.science.rst # Apparently that bugfix also changed the scientific results, so that PR also gets a science fragment
430
- +.science.rst # This fragment is not associated with a PR
431
-
432
-
433
- When it comes time to build the SCIENCE_CHANGELOG, use the ``science_towncrier.sh`` script in this repo to do so.
434
- This script accepts all the same arguments as the default `towncrier`. For example:
435
-
436
- .. code-block:: bash
437
-
438
- ./science_towncrier.sh build --version vx.y.z
439
-
440
- This will update the SCIENCE_CHANGELOG and remove any science fragments from the changelog directory.
441
-
442
- 3. Tag and Push
443
- ###############
444
-
445
- Once all commits are in place add a git tag that will define the released version, then push the tags up to Bitbucket:
446
-
447
- .. code-block:: bash
448
-
449
- git tag vX.Y.Z[rcK]
450
- git push --tags origin BRANCH
451
-
452
- In the case of an rc, BRANCH will likely be your development branch. For full releases BRANCH should be "main".
@@ -1,111 +0,0 @@
1
- changelog/.gitempty,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- dkist_processing_cryonirsp/__init__.py,sha256=Z6-kB7fXXUI-F7Vz1HnEaja2h8qgH9IZExRl1lUxvZg,350
3
- dkist_processing_cryonirsp/config.py,sha256=xNkUNJ1BeBxJX881mTCIEbirZlD5_5txpV1QqkbfRM0,507
4
- dkist_processing_cryonirsp/codecs/__init__.py,sha256=du1iitvsudSSOMENSywXmXSLOlvIocJsPbvfEcyqFNc,159
5
- dkist_processing_cryonirsp/codecs/fits.py,sha256=EAdPcqWXMEWtWnRDLH_LX20giPoLVfmKBawb9J2z0wM,1718
6
- dkist_processing_cryonirsp/models/__init__.py,sha256=m6UekKftTahNJ3W5K3mZSz4Y4ZZpHRxF_ZAxuaKYL7o,12
7
- dkist_processing_cryonirsp/models/beam_boundaries.py,sha256=FyiLd2iCWA6TUojeGaqQ_ULxvakDY13VxqUJVlmYvV0,1159
8
- dkist_processing_cryonirsp/models/constants.py,sha256=p0HTXr994UHUrDRf3o-S5lb2ic7K2TRrHWl-hTWJUlA,10650
9
- dkist_processing_cryonirsp/models/exposure_conditions.py,sha256=slFq5-Qz4fRpJKDBabbm4evPWLQVYmT-Uf9rk7nI734,813
10
- dkist_processing_cryonirsp/models/parameters.py,sha256=Oa3H7nc3wb8AkKLCsEnxibBJTwwK5U9ZMxzpS7pGFp4,13342
11
- dkist_processing_cryonirsp/models/tags.py,sha256=ac0MnYlsn8-w7IioOvWeo7mBaDKE9o9TlRpxCH1OsRc,5743
12
- dkist_processing_cryonirsp/models/task_name.py,sha256=xK4AKwgOx2uANbjhr0Q5Q3R9iPxLfkVKxWYY8wWjKhE,439
13
- dkist_processing_cryonirsp/parsers/__init__.py,sha256=m6UekKftTahNJ3W5K3mZSz4Y4ZZpHRxF_ZAxuaKYL7o,12
14
- dkist_processing_cryonirsp/parsers/check_for_gains.py,sha256=v-eD1LG0dlFoZXz5Y-2ZyPvRL2TZ8gWfr5cN6YNYqvo,2341
15
- dkist_processing_cryonirsp/parsers/cryonirsp_l0_fits_access.py,sha256=HtkmVdhEZxasKQyxWQyrirmiDrzAVfr3QCC2ldzBdSk,5617
16
- dkist_processing_cryonirsp/parsers/cryonirsp_l1_fits_access.py,sha256=sc8MzxYMc8E1eFrL5KguAGHViCMJhaDfiBtZPml4ELg,886
17
- dkist_processing_cryonirsp/parsers/exposure_conditions.py,sha256=Mcud-0PQK0oJSxbqtQUtVk0t8b6YBEFSyGsGbG5UqGg,8445
18
- dkist_processing_cryonirsp/parsers/map_repeats.py,sha256=PjZ986bqkCdii-EOzU045cWqadxQC_nyyqwWYIpYdls,1566
19
- dkist_processing_cryonirsp/parsers/measurements.py,sha256=6IqqrVbXVnUxYUXnQF-WlJSEP-eSffr2Gx6Kj0bjxhc,1872
20
- dkist_processing_cryonirsp/parsers/modstates.py,sha256=00a4kCiwgioTpMkYY9ouFuiEsoQHcD-sJOM95qI9Fhc,1093
21
- dkist_processing_cryonirsp/parsers/optical_density_filters.py,sha256=NURdMnNVu_nV7IfabyYynAoLe4xZ5iLbs6VU_lHmBA4,1531
22
- dkist_processing_cryonirsp/parsers/polarimetric_check.py,sha256=HBzg9Zi9-M1M2jh4J7LoNd3OSn8MmU9TcujyhD788Lo,4746
23
- dkist_processing_cryonirsp/parsers/scan_step.py,sha256=7XNUq48qbdpV8GeaBeG9XFRDkYlgw8Fjd6ByFZ24OAc,18972
24
- dkist_processing_cryonirsp/parsers/time.py,sha256=dpajm3tfrih-8pjlOWOvZVJVP2FihR87HFQSjR_KPYI,2543
25
- dkist_processing_cryonirsp/parsers/wavelength.py,sha256=Ay5hZiDNV25-N_QXZINTCgn1ToiP2jvwumkbirBiJGk,883
26
- dkist_processing_cryonirsp/tasks/__init__.py,sha256=JyM9oA1A6t5sPsbaNmnK9_e6t00kUYzDZzqmSg0nVjE,1061
27
- dkist_processing_cryonirsp/tasks/assemble_movie.py,sha256=UrxfKSsT3mBkV2LYvnePzKr9nXlvjpoa5amY5C3ftFI,7350
28
- dkist_processing_cryonirsp/tasks/bad_pixel_map.py,sha256=z-ACCwHqiRANsR7gkkCIycPpgOdR04Mo85WLAPiAJno,3961
29
- dkist_processing_cryonirsp/tasks/beam_boundaries_base.py,sha256=mOP_AlyZyO6aL6UW7OXV63852tK6Dljkbno_4jlFWNg,9618
30
- dkist_processing_cryonirsp/tasks/ci_beam_boundaries.py,sha256=pgpi6m0T1E1dkJ8btu45DMK--e7aCJ0wdEnZyD3g7MU,1889
31
- dkist_processing_cryonirsp/tasks/ci_science.py,sha256=VCt5E2gqL2j5fseSfsqCyCKK5hCGpXiR0XCBC74BiKQ,7366
32
- dkist_processing_cryonirsp/tasks/cryonirsp_base.py,sha256=7cMXOI7yQ8xTAtJg4ZkhBDej4AknHKBIvw8e9mCiRBw,1814
33
- dkist_processing_cryonirsp/tasks/dark.py,sha256=h_n1SU2bFiK7lp4vAKxv2ETKHYRODUp2KkH0YXjgFq8,4936
34
- dkist_processing_cryonirsp/tasks/gain.py,sha256=1aMeSOupmw-WQNb9O2Qx4uxGae0ilZDszo9xbf38Y_g,10438
35
- dkist_processing_cryonirsp/tasks/instrument_polarization.py,sha256=CpewhRYIz7R6THkvvpsxuZTlz6O_k2w9seQDwaqcklY,23301
36
- dkist_processing_cryonirsp/tasks/l1_output_data.py,sha256=3RFt493MEJxdpF81gcp8FDlQ8vGZ0GXEDYQFWIufumI,1554
37
- dkist_processing_cryonirsp/tasks/linearity_correction.py,sha256=n9vK9cT7NWkpAM9J6wOYDj95Kh0va_ot-hdncd7ye0Y,24199
38
- dkist_processing_cryonirsp/tasks/make_movie_frames.py,sha256=I7s3Tml6AevHci0kTPF71mNjXNl3wlG57Jh7ghnndeg,13928
39
- dkist_processing_cryonirsp/tasks/parse.py,sha256=tDOC2_r8xw0RYBxe3b3Te18Y5dBnRrPtikJmuhmwT88,13117
40
- dkist_processing_cryonirsp/tasks/quality_metrics.py,sha256=jyx2YZzLb5sVxbJ_H6PaKQqZbyZy9QuuLqu18jsnncQ,11447
41
- dkist_processing_cryonirsp/tasks/science_base.py,sha256=YYUQUfLeuzDb6E5TecOH22orTN4-hWocoYaGOq6Zoro,18637
42
- dkist_processing_cryonirsp/tasks/sp_beam_boundaries.py,sha256=XI3iepNe04xaU4ilqxrlOgYDkv5I5rUc0RXEE1Rwt0o,10296
43
- dkist_processing_cryonirsp/tasks/sp_dispersion_axis_correction.py,sha256=ZfUpsija9T7ZCm111u-iCxbcx7WxHWd_OklVCfYbjXg,19465
44
- dkist_processing_cryonirsp/tasks/sp_geometric.py,sha256=_M_e_blz4mKDIUWSasonnOzbZ6EUbHp9pAZXQx4zY7U,24387
45
- dkist_processing_cryonirsp/tasks/sp_science.py,sha256=QWyAEkXYamAcWxi62-tVD6ptuQ6vt8yIzuCKzCIYW20,13643
46
- dkist_processing_cryonirsp/tasks/sp_solar_gain.py,sha256=d4UABsMxyzCMduVxptHY_TCGqS-l-W5iuhW7HJwVPkA,21024
47
- dkist_processing_cryonirsp/tasks/write_l1.py,sha256=hIjTun-zs35sXqVrcFhWqWA2gX2HpoGZxotvfHj_KpA,41457
48
- dkist_processing_cryonirsp/tasks/mixin/__init__.py,sha256=m6UekKftTahNJ3W5K3mZSz4Y4ZZpHRxF_ZAxuaKYL7o,12
49
- dkist_processing_cryonirsp/tasks/mixin/corrections.py,sha256=rcKmckBJkoExcX0XW1i3OZzuMu1i7tX5Hgwy15chU50,6566
50
- dkist_processing_cryonirsp/tasks/mixin/shift_measurements.py,sha256=7ToSy9uOJ_JrFfd-X225wqW_laq4xoRJkBiAPanfb_g,11225
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
54
- dkist_processing_cryonirsp/tests/test_assemble_movie.py,sha256=YNZINIFXR9kZBlE1AIvjlVmwwhZJeVYOOPk7Q8IVkcI,6222
55
- dkist_processing_cryonirsp/tests/test_assemble_qualilty.py,sha256=upk-oUqVBHGK3F0eemshLpAPrnfh9mbeuZXow4E1Rmc,16859
56
- dkist_processing_cryonirsp/tests/test_bad_pixel_maps.py,sha256=4Lrcvbzzzczkz1mEXVDb_qc1cGPIWTrSZQFv4KiDhn4,4870
57
- dkist_processing_cryonirsp/tests/test_ci_beam_boundaries.py,sha256=lkFuFVZHDDbNkOZKeJC1inOkR0VByZVaATbdHDmr3Ew,4573
58
- dkist_processing_cryonirsp/tests/test_ci_science.py,sha256=dFFn49nxhv2iocZ5uGeXegJU8c-csDYaKjumvcOMxZI,14418
59
- dkist_processing_cryonirsp/tests/test_corrections.py,sha256=5nY8MccZcNDyQYV8IEokqtY_YrP08TZ-H7WQNioK-A0,4650
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
62
- dkist_processing_cryonirsp/tests/test_dark.py,sha256=ZGbjFP2IOL1gyC3rjde43xMS-vWStHDL9md1bhXt8Lg,11699
63
- dkist_processing_cryonirsp/tests/test_gain.py,sha256=BSeum2N0vUIP12AiPB2Qhw-zgvd3EkGkK8UX9FEchuA,11290
64
- dkist_processing_cryonirsp/tests/test_instrument_polarization.py,sha256=AB97NvR4VIivSu7X-GBKDrOJNx_LNbCQ_7mk0T3Eezo,19505
65
- dkist_processing_cryonirsp/tests/test_linearity_correction.py,sha256=HRIi8fKfZvyaOOgEkO3JGz1j2ceoecrw70mmiszcGio,9365
66
- dkist_processing_cryonirsp/tests/test_make_movie_frames.py,sha256=WznHp9dV2-jbJYzRniCAIbSHCGNc0SpSzyVDSrZkYd4,4904
67
- dkist_processing_cryonirsp/tests/test_parameters.py,sha256=CbaEnxx3HGZmqZJbNzQ2IJpIg6AKlK26BT3TXUMGYAE,11438
68
- dkist_processing_cryonirsp/tests/test_parse.py,sha256=UXbAZb4EJ-jlrkSfQXGTp7SA9B-OG5UBgV2SkCQZHxg,55804
69
- dkist_processing_cryonirsp/tests/test_quality.py,sha256=qrJBYjnZOhmQ4vjDcDV3FVSUAdktFgs-pRaHX4cf2G0,8129
70
- dkist_processing_cryonirsp/tests/test_sp_beam_boundaries.py,sha256=b_o5k94zQEgG7fdMkuDHs1iyq6NFxv_NLYS7FvtlZQI,4895
71
- dkist_processing_cryonirsp/tests/test_sp_dispersion_axis_correction.py,sha256=Fha0q4yJGftQ0l815FO78K1SmXtA-qbhQ3-Jk5iiBDE,6156
72
- dkist_processing_cryonirsp/tests/test_sp_geometric.py,sha256=TQTR26SG6OQE00adx5lTdmb943HmXI3C6tLT-weZCM8,15721
73
- dkist_processing_cryonirsp/tests/test_sp_make_movie_frames.py,sha256=Kn8U_HzaaHW2bHmBxsotdjmpBhd_Ft6pLWhVsMWIJE8,5322
74
- dkist_processing_cryonirsp/tests/test_sp_science.py,sha256=fffX8Fi-k7dYOax_5nvocbq8CXMYklmtSLfZRSe7Dsw,19850
75
- dkist_processing_cryonirsp/tests/test_sp_solar.py,sha256=xSIKs8yylB18dZA75jTb-yOvCE2CMbESXCFwyHK3J_c,10023
76
- dkist_processing_cryonirsp/tests/test_trial_create_quality_report.py,sha256=x8dRAMyawQVYZQGsuO36DMZxK4L13hZBUn86qbhJiNk,2805
77
- dkist_processing_cryonirsp/tests/test_workflows.py,sha256=2a-TUMbVEyNjHYNyzo2UQMLg5PSaEx6iV9hOsGp-Mck,291
78
- dkist_processing_cryonirsp/tests/test_write_l1.py,sha256=TIizk5mViC6Km8Ee-CfHwRFTqJmSa3Ey_GfM09iGBRc,17597
79
- dkist_processing_cryonirsp/tests/local_trial_workflows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
80
- dkist_processing_cryonirsp/tests/local_trial_workflows/l0_cals_only.py,sha256=nWs3Qg3f4DHqN_6JBKDaR5q9TncgR_PeRWw3_bUBZWA,20110
81
- dkist_processing_cryonirsp/tests/local_trial_workflows/l0_to_l1.py,sha256=KaxxMeo_sOMWgekNVkPsTJt6XWU2Ov7rnMkBtG_sKcc,23938
82
- dkist_processing_cryonirsp/tests/local_trial_workflows/linearize_only.py,sha256=kl9yrE1EbgxNn__x4q0WYoZIvS8zefcOPbQQdxB4_ZE,3280
83
- dkist_processing_cryonirsp/tests/local_trial_workflows/local_trial_helpers.py,sha256=LCvmP2KAiq0BVqMj-ThFWxAwo4oNs9hZRibQevRj4nU,19329
84
- dkist_processing_cryonirsp/workflows/__init__.py,sha256=iEbV3oiKmkfmdZjeNJxqw08IIZnYSroq-2b-ARpkLFQ,112
85
- dkist_processing_cryonirsp/workflows/ci_l0_processing.py,sha256=T-BOvDDWHzs5BDH5ctSBjzGgD6Xez52AnDXsH5_7Bms,3788
86
- dkist_processing_cryonirsp/workflows/sp_l0_processing.py,sha256=A74av8E8mL9WzI4vWI2GbhVrRFQ7JCMlGAioEjXkkCU,4219
87
- dkist_processing_cryonirsp/workflows/trial_workflows.py,sha256=UvSvsho6gYWliJ_sRN_uYbt5jBdA68hVyLiyr6X5QTo,8088
88
- docs/Makefile,sha256=qnlVz6PuBqE39NfHWuUnHhNEA-EFgT2-WJNNNy9ttfk,4598
89
- docs/bad_pixel_calibration.rst,sha256=bHRclUItBA1QbGlek36B1yN5WHN53WkfjKUvZaq_j2I,2452
90
- docs/beam_angle_calculation.rst,sha256=-yUPFRl6SbPBIj-wOwylEymQDMQnkay7kAIAiubpQT8,2941
91
- docs/beam_boundary_computation.rst,sha256=khyc_uW5zII6c0vN1lOvrwMAr5WO1XFFIou3QBJCzQ0,5541
92
- docs/changelog.rst,sha256=S2jPASsWlQxSlAPqdvNrYvhk9k3FcFWNXFNDYXBSjl4,120
93
- docs/ci_science_calibration.rst,sha256=V5JouSw31Yff5t2LIDHl3NCfqKtAwmk0P3iZpJi1toc,1265
94
- docs/conf.py,sha256=cv1Gct6NbY_kxJEKqw-mMIoauxtWVZeNzRLFqX1_GUw,2038
95
- docs/index.rst,sha256=FZY5WfJ16HQyslyaJxgTLs6XCD73_aFFdH4CjzagNjs,445
96
- docs/l0_to_l1_cryonirsp_ci-full-trial.rst,sha256=-uhtnd51ttJYw9T5hs5A9HQWpXJkOJmvfXf1INFT3MI,582
97
- docs/l0_to_l1_cryonirsp_ci.rst,sha256=OhGTy9CBTqQJ04XhThTws8KBnGLFiP5vBX0DlX6NXKA,458
98
- docs/l0_to_l1_cryonirsp_sp-full-trial.rst,sha256=cKdRI7qVEVYsqqgYuL9nzqFP3uTR4cu305WfjmmyetY,582
99
- docs/l0_to_l1_cryonirsp_sp.rst,sha256=4sCQwx4oHoDurWUO7bL_jRjeRd8Cy8_oUgRXrMp2AWg,463
100
- docs/landing_page.rst,sha256=-RnhwWhecVtl-pn8sjXfMj3qrzod37jz6rSA5WZTcrk,1204
101
- docs/linearization.rst,sha256=C1MXjE0rYKBaC6dFP75ZfP02ziubSCtcS4DUVU9DZk8,2549
102
- docs/make.bat,sha256=mBAhtURwhQ7yc95pqwJzlhqBSvRknr1aqZ5s8NKvdKs,4513
103
- docs/requirements.txt,sha256=Kbl_X4c7RQZw035YTeNB63We6I7pvXFU4T0Uflp2yDY,29
104
- docs/requirements_table.rst,sha256=FaqSag9kPi77gWPhzeo_tFEhRFjb3qUuNqqQe1K76NM,297
105
- docs/scientific_changelog.rst,sha256=01AWBSHg8zElnodCgAq-hMxhk9CkX5rtEENx4iz0sjI,300
106
- docs/sp_science_calibration.rst,sha256=fHBOZ2cqySxLjNi737KfynlmHZy9W4EwvuzxnyjDNvk,2597
107
- licenses/LICENSE.rst,sha256=piZaQplkzOMmH1NXg6QIdo9wwo9pPCoHkvm2-DmH76E,1462
108
- dkist_processing_cryonirsp-1.4.20.dist-info/METADATA,sha256=AyA0y7yNcgi0I5MqjmWLHMbJ7TdFoiGaLOZcOO0om_o,21853
109
- dkist_processing_cryonirsp-1.4.20.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
110
- dkist_processing_cryonirsp-1.4.20.dist-info/top_level.txt,sha256=Sm9b1ddKnsF9Bh3mqDOct1Sm7k8I9aN7vGHgpmu-MlQ,51
111
- dkist_processing_cryonirsp-1.4.20.dist-info/RECORD,,