imap-processing 1.0.0__py3-none-any.whl → 1.0.1__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 imap-processing might be problematic. Click here for more details.
- imap_processing/_version.py +2 -2
- imap_processing/cdf/config/imap_codice_global_cdf_attrs.yaml +13 -1
- imap_processing/cdf/config/imap_codice_l2-hi-omni_variable_attrs.yaml +635 -0
- imap_processing/cdf/config/imap_codice_l2-hi-sectored_variable_attrs.yaml +422 -0
- imap_processing/cdf/config/imap_enamaps_l2-common_variable_attrs.yaml +28 -21
- imap_processing/cdf/config/imap_enamaps_l2-healpix_variable_attrs.yaml +2 -0
- imap_processing/cdf/config/imap_enamaps_l2-rectangular_variable_attrs.yaml +12 -2
- imap_processing/cli.py +6 -11
- imap_processing/codice/codice_l2.py +640 -127
- imap_processing/codice/constants.py +61 -0
- imap_processing/ena_maps/ena_maps.py +111 -60
- imap_processing/ena_maps/utils/coordinates.py +5 -0
- imap_processing/ena_maps/utils/corrections.py +268 -0
- imap_processing/ena_maps/utils/map_utils.py +143 -42
- imap_processing/hi/hi_l2.py +3 -8
- imap_processing/ialirt/constants.py +7 -1
- imap_processing/ialirt/generate_coverage.py +1 -1
- imap_processing/ialirt/l0/process_codice.py +66 -0
- imap_processing/ialirt/utils/create_xarray.py +1 -0
- imap_processing/idex/idex_l2a.py +2 -2
- imap_processing/idex/idex_l2b.py +1 -1
- imap_processing/lo/l1c/lo_l1c.py +61 -3
- imap_processing/lo/l2/lo_l2.py +79 -11
- imap_processing/mag/l1a/mag_l1a.py +2 -2
- imap_processing/mag/l1a/mag_l1a_data.py +71 -13
- imap_processing/mag/l1c/interpolation_methods.py +34 -13
- imap_processing/mag/l1c/mag_l1c.py +117 -67
- imap_processing/mag/l1d/mag_l1d_data.py +3 -1
- imap_processing/spice/geometry.py +11 -9
- imap_processing/spice/pointing_frame.py +77 -50
- imap_processing/swapi/l1/swapi_l1.py +12 -4
- imap_processing/swe/utils/swe_constants.py +7 -7
- imap_processing/ultra/l1b/extendedspin.py +1 -1
- imap_processing/ultra/l1b/ultra_l1b_culling.py +2 -2
- imap_processing/ultra/l1b/ultra_l1b_extended.py +1 -1
- imap_processing/ultra/l1c/helio_pset.py +1 -1
- imap_processing/ultra/l1c/spacecraft_pset.py +2 -2
- imap_processing-1.0.1.dist-info/METADATA +121 -0
- {imap_processing-1.0.0.dist-info → imap_processing-1.0.1.dist-info}/RECORD +42 -40
- imap_processing-1.0.0.dist-info/METADATA +0 -120
- {imap_processing-1.0.0.dist-info → imap_processing-1.0.1.dist-info}/LICENSE +0 -0
- {imap_processing-1.0.0.dist-info → imap_processing-1.0.1.dist-info}/WHEEL +0 -0
- {imap_processing-1.0.0.dist-info → imap_processing-1.0.1.dist-info}/entry_points.txt +0 -0
|
@@ -255,7 +255,7 @@ def flag_rates(
|
|
|
255
255
|
n_sigma_per_energy_reshape : NDArray
|
|
256
256
|
N sigma per energy.
|
|
257
257
|
"""
|
|
258
|
-
count_rates,
|
|
258
|
+
count_rates, _spin_edges, _counts, duration = get_energy_histogram(
|
|
259
259
|
spin_number, energy
|
|
260
260
|
)
|
|
261
261
|
quality_flags = np.full(
|
|
@@ -440,7 +440,7 @@ def get_pulses_per_spin(rates: xr.Dataset) -> RateResult:
|
|
|
440
440
|
coin_pulses : NDArray
|
|
441
441
|
Total coincidence pulses.
|
|
442
442
|
"""
|
|
443
|
-
spin_number,
|
|
443
|
+
spin_number, _duration = get_spin_and_duration(rates["shcoarse"], rates["spin"])
|
|
444
444
|
|
|
445
445
|
# Top coin pulses
|
|
446
446
|
top_coin_pulses = np.stack(
|
|
@@ -592,7 +592,7 @@ def get_ssd_tof(
|
|
|
592
592
|
tof : np.ndarray
|
|
593
593
|
Time of flight (tenths of a nanosecond).
|
|
594
594
|
"""
|
|
595
|
-
_, tof_offset,
|
|
595
|
+
_, tof_offset, _ssd_number = get_ssd_back_position_and_tof_offset(
|
|
596
596
|
de_dataset, sensor, ancillary_files
|
|
597
597
|
)
|
|
598
598
|
indices = np.nonzero(np.isin(de_dataset["stop_type"], [StopType.SSD.value]))[0]
|
|
@@ -145,7 +145,7 @@ def calculate_helio_pset(
|
|
|
145
145
|
mid_time = ttj2000ns_to_et(met_to_ttj2000ns((pointing_start + pointing_stop) / 2))
|
|
146
146
|
|
|
147
147
|
logger.info("Adjusting data for helio frame.")
|
|
148
|
-
exposure_time,
|
|
148
|
+
exposure_time, _efficiency, geometric_function = get_helio_adjusted_data(
|
|
149
149
|
mid_time,
|
|
150
150
|
exposure_time,
|
|
151
151
|
geometric_function,
|
|
@@ -100,7 +100,7 @@ def calculate_spacecraft_pset(
|
|
|
100
100
|
for_indices_by_spin_phase,
|
|
101
101
|
theta_vals,
|
|
102
102
|
phi_vals,
|
|
103
|
-
|
|
103
|
+
_ra_and_dec,
|
|
104
104
|
boundary_scale_factors,
|
|
105
105
|
) = get_spacecraft_pointing_lookup_tables(ancillary_files, instrument_id)
|
|
106
106
|
|
|
@@ -173,7 +173,7 @@ def calculate_spacecraft_pset(
|
|
|
173
173
|
nside=nside,
|
|
174
174
|
)
|
|
175
175
|
# Get pointing start and stop times and convert to ttj2000ns
|
|
176
|
-
pointing_start,
|
|
176
|
+
pointing_start, _pointing_stop = get_pointing_times(
|
|
177
177
|
float(et_to_met(species_dataset["event_times"].data[0]))
|
|
178
178
|
)
|
|
179
179
|
pointing_start = met_to_ttj2000ns(pointing_start)
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: imap-processing
|
|
3
|
+
Version: 1.0.1
|
|
4
|
+
Summary: IMAP Science Operations Center Processing
|
|
5
|
+
License: MIT
|
|
6
|
+
Keywords: IMAP,SDC,SOC,Science Operations
|
|
7
|
+
Author: IMAP SDC Developers
|
|
8
|
+
Author-email: imap-sdc@lists.lasp.colorado.edu
|
|
9
|
+
Requires-Python: >=3.10,<4
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Natural Language :: English
|
|
14
|
+
Classifier: Operating System :: MacOS
|
|
15
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
16
|
+
Classifier: Operating System :: POSIX
|
|
17
|
+
Classifier: Operating System :: Unix
|
|
18
|
+
Classifier: Programming Language :: Python :: 3
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
23
|
+
Classifier: Topic :: Scientific/Engineering
|
|
24
|
+
Classifier: Topic :: Software Development
|
|
25
|
+
Provides-Extra: dev
|
|
26
|
+
Provides-Extra: doc
|
|
27
|
+
Provides-Extra: map-visualization
|
|
28
|
+
Provides-Extra: test
|
|
29
|
+
Provides-Extra: tools
|
|
30
|
+
Requires-Dist: astropy-healpix (>=1.0)
|
|
31
|
+
Requires-Dist: cdflib (>=1.3.6,<2.0.0)
|
|
32
|
+
Requires-Dist: healpy (>=1.18.0,<2.0.0) ; extra == "map-visualization"
|
|
33
|
+
Requires-Dist: imap-data-access (>=0.37.0)
|
|
34
|
+
Requires-Dist: mypy (==1.10.1) ; extra == "dev"
|
|
35
|
+
Requires-Dist: netcdf4 (>=1.7.2,<2.0.0) ; extra == "test"
|
|
36
|
+
Requires-Dist: numpy (<=3)
|
|
37
|
+
Requires-Dist: numpydoc (>=1.5.0,<2.0.0) ; extra == "doc"
|
|
38
|
+
Requires-Dist: openpyxl (>=3.0.7) ; extra == "test" or extra == "tools"
|
|
39
|
+
Requires-Dist: pandas (>=2.0.0) ; extra == "tools"
|
|
40
|
+
Requires-Dist: pre-commit (>=3.3.3,<4.0.0) ; extra == "dev"
|
|
41
|
+
Requires-Dist: pydata-sphinx-theme ; extra == "doc"
|
|
42
|
+
Requires-Dist: pytest (>=6.2.5) ; extra == "test"
|
|
43
|
+
Requires-Dist: pytest-cov (>=4.0.0,<5.0.0) ; extra == "test"
|
|
44
|
+
Requires-Dist: pytest-xdist (>=3.2,<4.0) ; extra == "test"
|
|
45
|
+
Requires-Dist: requests (>=2.32.3,<3.0.0) ; extra == "test"
|
|
46
|
+
Requires-Dist: ruff (==0.2.1) ; extra == "dev"
|
|
47
|
+
Requires-Dist: sammi-cdf (>=1.0,<2.0)
|
|
48
|
+
Requires-Dist: scipy (>=1.13,<2.0)
|
|
49
|
+
Requires-Dist: space_packet_parser (>=5.0.1,<6.0.0)
|
|
50
|
+
Requires-Dist: sphinx ; extra == "doc"
|
|
51
|
+
Requires-Dist: sphinxcontrib-openapi (>=0.8.3,<0.9.0) ; extra == "doc"
|
|
52
|
+
Requires-Dist: spiceypy (>=6.0.0)
|
|
53
|
+
Requires-Dist: xarray (>=2024.10.0)
|
|
54
|
+
Description-Content-Type: text/markdown
|
|
55
|
+
|
|
56
|
+
# IMAP (Interstellar Mapping and Acceleration Probe)
|
|
57
|
+
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
|
58
|
+
[](#contributors-)
|
|
59
|
+
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
|
60
|
+
[](https://imap-processing.readthedocs.io/en/latest/)
|
|
61
|
+
<!-- DOI-BADGE -->
|
|
62
|
+
[](https://zenodo.org/badge/latestdoi/654679818)
|
|
63
|
+
|
|
64
|
+
The Interstellar Mapping and Acceleration Probe (IMAP) is an exciting project aimed at studying the interstellar medium and investigating the acceleration mechanisms of particles within our galaxy. IMAP utilizes cutting-edge technology and advanced instrumentation to gather valuable data and expand our understanding of space.
|
|
65
|
+
|
|
66
|
+
The IMAP project's Git repository serves as a centralized hub for collaboration among researchers, scientists, and developers involved in the project. It provides a platform for version control, code sharing, issue tracking, and documentation, fostering a collaborative environment for advancing the goals of the IMAP mission.
|
|
67
|
+
|
|
68
|
+
Through the Git repository, contributors can access project resources, explore the codebase, propose enhancements or bug fixes, and participate in discussions with other team members. This collaborative approach promotes efficient development and fosters innovation in the pursuit of interstellar mapping and particle acceleration research.
|
|
69
|
+
|
|
70
|
+
Join the IMAP Git repository to be part of an exciting scientific endeavor, contribute your expertise, and help unlock the mysteries of the interstellar medium and particle acceleration in our galaxy. Together, we can advance our knowledge of the cosmos and pave the way for future discoveries in space exploration.
|
|
71
|
+
|
|
72
|
+
[IMAP Website](https://imap.princeton.edu/)
|
|
73
|
+
|
|
74
|
+
[IMAP Processing Documentation](https://imap-processing.readthedocs.io/en/latest/)
|
|
75
|
+
|
|
76
|
+
[Getting started](https://imap-processing.readthedocs.io/en/latest/development-guide/getting-started.html)
|
|
77
|
+
|
|
78
|
+
# Credits
|
|
79
|
+
[LASP (Laboratory of Atmospheric and Space Physics)](https://lasp.colorado.edu/)
|
|
80
|
+
## Contributors ✨
|
|
81
|
+
|
|
82
|
+
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
|
|
83
|
+
|
|
84
|
+
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
|
|
85
|
+
<!-- prettier-ignore-start -->
|
|
86
|
+
<!-- markdownlint-disable -->
|
|
87
|
+
<table>
|
|
88
|
+
<tbody>
|
|
89
|
+
<tr>
|
|
90
|
+
<td align="center" valign="top" width="14.28%"><a href="http://greglucas.github.io"><img src="https://avatars.githubusercontent.com/u/12417828?v=4?s=100" width="100px;" alt="Greg Lucas"/><br /><sub><b>Greg Lucas</b></sub></a><br /><a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/commits?author=greglucas" title="Code">💻</a> <a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/commits?author=greglucas" title="Documentation">📖</a> <a href="#ideas-greglucas" title="Ideas, Planning, & Feedback">🤔</a> <a href="#infra-greglucas" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="#maintenance-greglucas" title="Maintenance">🚧</a> <a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/pulls?q=is%3Apr+reviewed-by%3Agreglucas" title="Reviewed Pull Requests">👀</a></td>
|
|
91
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/tech3371"><img src="https://avatars.githubusercontent.com/u/36522642?v=4?s=100" width="100px;" alt="Tenzin Choedon"/><br /><sub><b>Tenzin Choedon</b></sub></a><br /><a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/commits?author=tech3371" title="Code">💻</a> <a href="#ideas-tech3371" title="Ideas, Planning, & Feedback">🤔</a> <a href="#infra-tech3371" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="#example-tech3371" title="Examples">💡</a> <a href="#maintenance-tech3371" title="Maintenance">🚧</a> <a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/pulls?q=is%3Apr+reviewed-by%3Atech3371" title="Reviewed Pull Requests">👀</a> <a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/commits?author=tech3371" title="Documentation">📖</a></td>
|
|
92
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/laspsandoval"><img src="https://avatars.githubusercontent.com/u/46567335?v=4?s=100" width="100px;" alt="Laura Sandoval"/><br /><sub><b>Laura Sandoval</b></sub></a><br /><a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/pulls?q=is%3Apr+reviewed-by%3Alaspsandoval" title="Reviewed Pull Requests">👀</a> <a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/commits?author=laspsandoval" title="Code">💻</a> <a href="#infra-laspsandoval" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="#ideas-laspsandoval" title="Ideas, Planning, & Feedback">🤔</a></td>
|
|
93
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/sdhoyt"><img src="https://avatars.githubusercontent.com/u/7146374?v=4?s=100" width="100px;" alt="Sean Hoyt"/><br /><sub><b>Sean Hoyt</b></sub></a><br /><a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/commits?author=sdhoyt" title="Code">💻</a> <a href="#ideas-sdhoyt" title="Ideas, Planning, & Feedback">🤔</a> <a href="#infra-sdhoyt" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/pulls?q=is%3Apr+reviewed-by%3Asdhoyt" title="Reviewed Pull Requests">👀</a> <a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/commits?author=sdhoyt" title="Documentation">📖</a> <a href="#maintenance-sdhoyt" title="Maintenance">🚧</a></td>
|
|
94
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/GFMoraga"><img src="https://avatars.githubusercontent.com/u/104743000?v=4?s=100" width="100px;" alt="Gabriel M."/><br /><sub><b>Gabriel M.</b></sub></a><br /><a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/commits?author=GFMoraga" title="Code">💻</a> <a href="#ideas-GFMoraga" title="Ideas, Planning, & Feedback">🤔</a> <a href="#infra-GFMoraga" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/pulls?q=is%3Apr+reviewed-by%3AGFMoraga" title="Reviewed Pull Requests">👀</a> <a href="#maintenance-GFMoraga" title="Maintenance">🚧</a> <a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/commits?author=GFMoraga" title="Documentation">📖</a></td>
|
|
95
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/bourque"><img src="https://avatars.githubusercontent.com/u/2250769?v=4?s=100" width="100px;" alt="Matthew Bourque"/><br /><sub><b>Matthew Bourque</b></sub></a><br /><a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/commits?author=bourque" title="Code">💻</a> <a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/commits?author=bourque" title="Documentation">📖</a> <a href="#ideas-bourque" title="Ideas, Planning, & Feedback">🤔</a> <a href="#infra-bourque" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/pulls?q=is%3Apr+reviewed-by%3Abourque" title="Reviewed Pull Requests">👀</a> <a href="#maintenance-bourque" title="Maintenance">🚧</a></td>
|
|
96
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/maxinelasp"><img src="https://avatars.githubusercontent.com/u/117409426?v=4?s=100" width="100px;" alt="Maxine Hartnett"/><br /><sub><b>Maxine Hartnett</b></sub></a><br /><a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/commits?author=maxinelasp" title="Code">💻</a> <a href="#ideas-maxinelasp" title="Ideas, Planning, & Feedback">🤔</a> <a href="#infra-maxinelasp" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/pulls?q=is%3Apr+reviewed-by%3Amaxinelasp" title="Reviewed Pull Requests">👀</a> <a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/commits?author=maxinelasp" title="Documentation">📖</a> <a href="#maintenance-maxinelasp" title="Maintenance">🚧</a></td>
|
|
97
|
+
</tr>
|
|
98
|
+
<tr>
|
|
99
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/bryan-harter"><img src="https://avatars.githubusercontent.com/u/41062454?v=4?s=100" width="100px;" alt="Bryan Harter"/><br /><sub><b>Bryan Harter</b></sub></a><br /><a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/commits?author=bryan-harter" title="Code">💻</a> <a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/commits?author=bryan-harter" title="Documentation">📖</a></td>
|
|
100
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mstrumik"><img src="https://avatars.githubusercontent.com/u/142874888?v=4?s=100" width="100px;" alt="mstrumik"/><br /><sub><b>mstrumik</b></sub></a><br /><a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/pulls?q=is%3Apr+reviewed-by%3Amstrumik" title="Reviewed Pull Requests">👀</a></td>
|
|
101
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/vmartinez-cu"><img src="https://avatars.githubusercontent.com/u/39746325?v=4?s=100" width="100px;" alt="Veronica Martinez"/><br /><sub><b>Veronica Martinez</b></sub></a><br /><a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/pulls?q=is%3Apr+reviewed-by%3Avmartinez-cu" title="Reviewed Pull Requests">👀</a> <a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/commits?author=vmartinez-cu" title="Code">💻</a></td>
|
|
102
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/subagonsouth"><img src="https://avatars.githubusercontent.com/u/16110870?v=4?s=100" width="100px;" alt="Tim Plummer"/><br /><sub><b>Tim Plummer</b></sub></a><br /><a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/pulls?q=is%3Apr+reviewed-by%3Asubagonsouth" title="Reviewed Pull Requests">👀</a> <a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/commits?author=subagonsouth" title="Code">💻</a></td>
|
|
103
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/daralynnrhode"><img src="https://avatars.githubusercontent.com/u/143308810?v=4?s=100" width="100px;" alt="Daralynn Rhode"/><br /><sub><b>Daralynn Rhode</b></sub></a><br /><a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/commits?author=daralynnrhode" title="Code">💻</a> <a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/commits?author=daralynnrhode" title="Documentation">📖</a></td>
|
|
104
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/anamanica"><img src="https://avatars.githubusercontent.com/u/171708990?v=4?s=100" width="100px;" alt="anamanica"/><br /><sub><b>anamanica</b></sub></a><br /><a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/commits?author=anamanica" title="Code">💻</a> <a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/commits?author=anamanica" title="Documentation">📖</a></td>
|
|
105
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/lacoak21"><img src="https://avatars.githubusercontent.com/u/48064300?v=4?s=100" width="100px;" alt="Luisa Coakley"/><br /><sub><b>Luisa Coakley</b></sub></a><br /><a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/commits?author=lacoak21" title="Code">💻</a> <a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/commits?author=lacoak21" title="Documentation">📖</a></td>
|
|
106
|
+
</tr>
|
|
107
|
+
<tr>
|
|
108
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/nkerman"><img src="https://avatars.githubusercontent.com/u/13221946?v=4?s=100" width="100px;" alt="Nat Kerman"/><br /><sub><b>Nat Kerman</b></sub></a><br /><a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/commits?author=nkerman" title="Code">💻</a> <a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/commits?author=nkerman" title="Documentation">📖</a></td>
|
|
109
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/torimarbois"><img src="https://avatars.githubusercontent.com/u/65727848?v=4?s=100" width="100px;" alt="Tori Marbois"/><br /><sub><b>Tori Marbois</b></sub></a><br /><a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/commits?author=torimarbois" title="Code">💻</a> <a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/commits?author=torimarbois" title="Documentation">📖</a></td>
|
|
110
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mfacchinelli"><img src="https://avatars.githubusercontent.com/u/19731497?v=4?s=100" width="100px;" alt="Michele Facchinelli"/><br /><sub><b>Michele Facchinelli</b></sub></a><br /><a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/commits?author=mfacchinelli" title="Code">💻</a> <a href="https://github.com/IMAP-Science-Operations-Center/imap_processing/commits?author=mfacchinelli" title="Tests">⚠️</a></td>
|
|
111
|
+
</tr>
|
|
112
|
+
</tbody>
|
|
113
|
+
</table>
|
|
114
|
+
|
|
115
|
+
<!-- markdownlint-restore -->
|
|
116
|
+
<!-- prettier-ignore-end -->
|
|
117
|
+
|
|
118
|
+
<!-- ALL-CONTRIBUTORS-LIST:END -->
|
|
119
|
+
|
|
120
|
+
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
|
|
121
|
+
|
|
@@ -1,20 +1,22 @@
|
|
|
1
1
|
imap_processing/__init__.py,sha256=b9xHlf8_0OtN_OyhPlrC6ayahYR0QTt_e713NjxZObw,1305
|
|
2
|
-
imap_processing/_version.py,sha256=
|
|
2
|
+
imap_processing/_version.py,sha256=Fdh66DDUL84c03FzAJJkCmAYiiXjXOZH25LADh1uBss,125
|
|
3
3
|
imap_processing/ancillary/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
imap_processing/ancillary/ancillary_dataset_combiner.py,sha256=dSNmfVAvfFxB2lgVMRHWgow93SBZgQIPOMka7AIbYvY,16004
|
|
5
5
|
imap_processing/ccsds/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
imap_processing/ccsds/ccsds_data.py,sha256=ZuhQfbvtGY_6E1xSUctdfAHSxfXAn1CFGLQKQfIbL80,1198
|
|
7
7
|
imap_processing/ccsds/excel_to_xtce.py,sha256=DpEXZc_BXoRaC_hMqtBTcPC_g3HZGySaUNgxUz6_r4U,23655
|
|
8
8
|
imap_processing/cdf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
imap_processing/cdf/config/imap_codice_global_cdf_attrs.yaml,sha256=
|
|
9
|
+
imap_processing/cdf/config/imap_codice_global_cdf_attrs.yaml,sha256=GPtXtaVmcNMNCuiCZe2_WWz_hmxyyAmE5gyxXYcDXAg,11576
|
|
10
10
|
imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml,sha256=UzxfMvAWXRUOcDB3ruS5fi9xLgsdpWcvGqXBsI2CWFc,67806
|
|
11
11
|
imap_processing/cdf/config/imap_codice_l1b_variable_attrs.yaml,sha256=RW8tq7WfFZ1keT74Yq1RuBldNiMhqWX139xVz9UYJN4,87138
|
|
12
|
+
imap_processing/cdf/config/imap_codice_l2-hi-omni_variable_attrs.yaml,sha256=cQ6E9oUMMNzHGWwUXknRcceGBolM_lclPBOxG0PBo6w,16280
|
|
13
|
+
imap_processing/cdf/config/imap_codice_l2-hi-sectored_variable_attrs.yaml,sha256=2U8quZKpYpNvzLDdJH8DJaEmc9ZcFJirAd4K0ufeVrc,10435
|
|
12
14
|
imap_processing/cdf/config/imap_codice_l2_variable_attrs.yaml,sha256=zui2KLTXQN5IZ7Ne3on5vLI2XbYpo5qLHO0Wddlmc6w,44137
|
|
13
15
|
imap_processing/cdf/config/imap_constant_attrs.yaml,sha256=yKtnMNYQXBVkQkvWHC4v2GiIcVmbjl7IGJzKbu26cR4,1177
|
|
14
16
|
imap_processing/cdf/config/imap_default_global_cdf_attrs.yaml,sha256=3622EmoIdv9Kvb6eQ5JRv0GmA1-SFZaRBleuCMFhEUs,987
|
|
15
|
-
imap_processing/cdf/config/imap_enamaps_l2-common_variable_attrs.yaml,sha256=
|
|
16
|
-
imap_processing/cdf/config/imap_enamaps_l2-healpix_variable_attrs.yaml,sha256=
|
|
17
|
-
imap_processing/cdf/config/imap_enamaps_l2-rectangular_variable_attrs.yaml,sha256=
|
|
17
|
+
imap_processing/cdf/config/imap_enamaps_l2-common_variable_attrs.yaml,sha256=_zFIQLWuS1aFicVQXfNm72S7t0f5K5s-kCzIA0wLquE,10345
|
|
18
|
+
imap_processing/cdf/config/imap_enamaps_l2-healpix_variable_attrs.yaml,sha256=TcBinuRVBi1tMkmbPwYVH99IwIwzMYjgF27PhkFNF-Y,3513
|
|
19
|
+
imap_processing/cdf/config/imap_enamaps_l2-rectangular_variable_attrs.yaml,sha256=JPmdA6DIrrIezZfQWcHkb0toZ_01PaFddGyQe-5lGyE,4667
|
|
18
20
|
imap_processing/cdf/config/imap_glows_global_cdf_attrs.yaml,sha256=MkGQVokzjXmJRas0PsFHfeU5VQkThQSXK65EOs2mw6A,1854
|
|
19
21
|
imap_processing/cdf/config/imap_glows_l1a_variable_attrs.yaml,sha256=aJCTUSEKKGl8W2c_PuFh0Pr-EEEV07F2h3_BrKxtSeY,13675
|
|
20
22
|
imap_processing/cdf/config/imap_glows_l1b_variable_attrs.yaml,sha256=0twYoQwL9o-uSAdrExf9DUbDuKdX98-PCqgtCy_UgQA,19760
|
|
@@ -57,13 +59,13 @@ imap_processing/cdf/config/imap_ultra_l1c_variable_attrs.yaml,sha256=ECi5gr7xI7N
|
|
|
57
59
|
imap_processing/cdf/config/imap_variable_schema.yaml,sha256=oKfSQKJ7vYh7SC9dwFeE5PzVQNXYCpcp3AZSclKUVeg,728
|
|
58
60
|
imap_processing/cdf/imap_cdf_manager.py,sha256=K2W_5SzRTxJij2D-ZoKA4UdUxcVC1H90soEloJehsUk,2086
|
|
59
61
|
imap_processing/cdf/utils.py,sha256=Hc2nmAVO0Vjf54b9SCZte9aUwDb9p7r2eMyf8oZyPKw,8338
|
|
60
|
-
imap_processing/cli.py,sha256=
|
|
62
|
+
imap_processing/cli.py,sha256=fkLLPWNw4h5ygQcK7BHYp-6eJn0VKIkkrZttad2TICc,57120
|
|
61
63
|
imap_processing/codice/__init__.py,sha256=Ga6Ioj68HnQ4moi7SxJdOyYmGHcRvKOh4uZUEPJZHl4,20
|
|
62
64
|
imap_processing/codice/codice_l0.py,sha256=O0RN3_B7vazC91RInH7gTsejCFQOHIOtNpFpMBbuYNI,1737
|
|
63
65
|
imap_processing/codice/codice_l1a.py,sha256=Kj0Eat6nUNyWS0bXxCb3F4c33Y7rNUGYdu4hX1SPQFc,66820
|
|
64
66
|
imap_processing/codice/codice_l1b.py,sha256=xDzSort8CnQJnu_gjCKEo0r6FbfmnLiuOCNWWBU0VLE,7085
|
|
65
|
-
imap_processing/codice/codice_l2.py,sha256=
|
|
66
|
-
imap_processing/codice/constants.py,sha256=
|
|
67
|
+
imap_processing/codice/codice_l2.py,sha256=k0Umx9SIELHMbt10tNSdFyi3fVRR1v6BX2vAfilGIkc,29904
|
|
68
|
+
imap_processing/codice/constants.py,sha256=lQ26Ss5rW6Xbdw1ofHMypR36uVfyJhvCvMSjEUuTvLg,51794
|
|
67
69
|
imap_processing/codice/data/esa_sweep_values.csv,sha256=RuRTBG_TftVKGDEslxDo5SVwLIWq2uh3WrlVsXABpfg,5336
|
|
68
70
|
imap_processing/codice/data/lo_stepping_values.csv,sha256=I_6ZHwZ9RsggKSHvyldPfP_iUtV4dBQzypm46fgdVTM,5324
|
|
69
71
|
imap_processing/codice/decompress.py,sha256=-EA7vlGIKx6d7gltfDLr8XmU-D6Q9_7FZRtzIUgW54M,5232
|
|
@@ -72,11 +74,11 @@ imap_processing/codice/packet_definitions/codice_packet_definition.xml,sha256=mP
|
|
|
72
74
|
imap_processing/codice/utils.py,sha256=6FIMQkrLoiNvEvd5c4QdN-VOoeyrP5Gx5-iToCWJZKU,1518
|
|
73
75
|
imap_processing/decom.py,sha256=D6sTfI8z6icufED9oqsc-WatMjR2rihVG8ElICHgv0g,1030
|
|
74
76
|
imap_processing/ena_maps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
75
|
-
imap_processing/ena_maps/ena_maps.py,sha256=
|
|
77
|
+
imap_processing/ena_maps/ena_maps.py,sha256=kKaz5bt0kjukqCbReWhVzfNjzL_cML0kW1VtxQHKkTI,76822
|
|
76
78
|
imap_processing/ena_maps/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
77
|
-
imap_processing/ena_maps/utils/coordinates.py,sha256=
|
|
78
|
-
imap_processing/ena_maps/utils/corrections.py,sha256=
|
|
79
|
-
imap_processing/ena_maps/utils/map_utils.py,sha256=
|
|
79
|
+
imap_processing/ena_maps/utils/coordinates.py,sha256=z9ZMpBO4AJo8u1IKW_b1YEf-yhTSpvreIgxo0VkHoa0,748
|
|
80
|
+
imap_processing/ena_maps/utils/corrections.py,sha256=Ywz2WOEAAHY-6G2Ya2fTDYGgT70CQwbxa0QQ-AER2Ys,22107
|
|
81
|
+
imap_processing/ena_maps/utils/map_utils.py,sha256=XCRIquIe47qCnuLWg8o2BqVyNZ_w6xrZG5aZvJNDluA,10244
|
|
80
82
|
imap_processing/ena_maps/utils/naming.py,sha256=nJpaUz5-5bywYT3h-6_VU5UshMS1krgLpMqTNOrx_Tk,15665
|
|
81
83
|
imap_processing/ena_maps/utils/spatial_utils.py,sha256=k6kdwkYiw2_hOafOczFZ1-5y1xhZLGzuvdPfZIuJzjw,8042
|
|
82
84
|
imap_processing/glows/__init__.py,sha256=qHDRHCe62w9xie_HmKFMJMbDErlEmyz6Ca7xliyEE0c,87
|
|
@@ -105,7 +107,7 @@ imap_processing/hi/__init__.py,sha256=Ga6Ioj68HnQ4moi7SxJdOyYmGHcRvKOh4uZUEPJZHl
|
|
|
105
107
|
imap_processing/hi/hi_l1a.py,sha256=jQsKrtj7JiCtp0mREVIfQfX1tb_j-vmS0KRpW9et32c,19569
|
|
106
108
|
imap_processing/hi/hi_l1b.py,sha256=Io67Uh4Ilq6cE09c1Qt01UGAjBOsLlQV55UvXU_hMOE,19960
|
|
107
109
|
imap_processing/hi/hi_l1c.py,sha256=14s1OuR2frGy3ypjg6Ssx5rFdr4KDA7Cn2mVQl_SWkU,25454
|
|
108
|
-
imap_processing/hi/hi_l2.py,sha256=
|
|
110
|
+
imap_processing/hi/hi_l2.py,sha256=FUqbOw8FOX0y_Pzx_8HomHMthgSLP6qubYPUuJdqzKE,16762
|
|
109
111
|
imap_processing/hi/packet_definitions/TLM_HI_COMBINED_SCI.xml,sha256=GHRsqmip3oxWCmP3apo_snoKOBnrs5ioiOBVN-LSy3c,263638
|
|
110
112
|
imap_processing/hi/packet_definitions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
111
113
|
imap_processing/hi/utils.py,sha256=6ObLykbUQhjQ9EDwcvZ1xfg5hL7qGbueO73ACohnMl4,16580
|
|
@@ -123,13 +125,13 @@ imap_processing/hit/l2/hit_l2.py,sha256=MCjtvXuA4q8FQujLMBfzfxwtI6gJjMrIsgYIyaSl
|
|
|
123
125
|
imap_processing/hit/packet_definitions/hit_packet_definitions.xml,sha256=CyYmMnuObmk2y1nlrd7xOZnwZ_qZ3X__AhhKmRyNOvg,136147
|
|
124
126
|
imap_processing/ialirt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
125
127
|
imap_processing/ialirt/calculate_ingest.py,sha256=oUGEDFafmE0KqsurczWOAWhYnbRY9S587VPv34h90KQ,7003
|
|
126
|
-
imap_processing/ialirt/constants.py,sha256=
|
|
127
|
-
imap_processing/ialirt/generate_coverage.py,sha256=
|
|
128
|
+
imap_processing/ialirt/constants.py,sha256=lemFH3t2InepbrZVCM7jFqQKb6XMATFLSqqkt6srC9U,2572
|
|
129
|
+
imap_processing/ialirt/generate_coverage.py,sha256=tTDvJCCWinS82LXc3uD3v4jDpiZWWkavUqJFbeuZAEI,6420
|
|
128
130
|
imap_processing/ialirt/l0/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
129
131
|
imap_processing/ialirt/l0/ialirt_spice.py,sha256=o6SuosOLZFa2BYdheSJFLFD7I5MJrKPgxZJzX0DBVFI,5691
|
|
130
132
|
imap_processing/ialirt/l0/mag_l0_ialirt_data.py,sha256=vgIerXkk4ZoOxxVaNEgvM1ESWVkGusSZ-3k73-Cl_tI,5276
|
|
131
133
|
imap_processing/ialirt/l0/parse_mag.py,sha256=QkK97HS3Ij5J2sRmKMjtYnfHfmENTbvfMIFtyuGME_8,25716
|
|
132
|
-
imap_processing/ialirt/l0/process_codice.py,sha256
|
|
134
|
+
imap_processing/ialirt/l0/process_codice.py,sha256=6IKNthStVRucuPONBtHhAOmAh1fl827mcpcOgghL5J0,4092
|
|
133
135
|
imap_processing/ialirt/l0/process_hit.py,sha256=x2ABROi9CNePsd6n5LrvYuIbmfcyL1PAFj5s3YdPInI,5598
|
|
134
136
|
imap_processing/ialirt/l0/process_swapi.py,sha256=bL_TnV8Ao6edZCjBDb6lPNJmBMBBAN-4x33yJbwcrcU,8295
|
|
135
137
|
imap_processing/ialirt/l0/process_swe.py,sha256=i3TRiuPxlf9Ece-jZpoYfMLo88ZBG6Z1gJeVl8PXuj4,18599
|
|
@@ -143,7 +145,7 @@ imap_processing/ialirt/packet_definitions/ialirt_swapi.xml,sha256=tGC4V-IV7WO6U3
|
|
|
143
145
|
imap_processing/ialirt/packet_definitions/ialirt_swe.xml,sha256=FJNhfWjBjK1Ze3BCW86hvNJIiWoIK5dujt2Dw76pjF0,13442
|
|
144
146
|
imap_processing/ialirt/process_ephemeris.py,sha256=ZbKemPHiSnBMFORl3togVbbzok5IFUWTj9_FuXR6gDA,9791
|
|
145
147
|
imap_processing/ialirt/utils/constants.py,sha256=U9GbqmDhywYWvSM7om_wsp2vam986AJmvptYLi7gnKc,2505
|
|
146
|
-
imap_processing/ialirt/utils/create_xarray.py,sha256=
|
|
148
|
+
imap_processing/ialirt/utils/create_xarray.py,sha256=SpJw-tndXTsbuQ3tBWxgvlMXwo5j8DVTsxG1PngeB3Y,5906
|
|
147
149
|
imap_processing/ialirt/utils/grouping.py,sha256=Hk5u_TC0r72fN6s2CUEsD6opGig31EiwnRepAH9oOEE,3795
|
|
148
150
|
imap_processing/ialirt/utils/time.py,sha256=fXBDKxNp2IXYJ1laSPPAIw_GTKvjFIgPwh54fnNQMEI,636
|
|
149
151
|
imap_processing/idex/__init__.py,sha256=jO9AUm6ORgQhIHszOzLb3Vb2RVyz_SDUV64peGcr20A,52
|
|
@@ -153,8 +155,8 @@ imap_processing/idex/idex_constants.py,sha256=VnDxhDZBrGAZfn7S05JJDpyTqQrKl3v5Yu
|
|
|
153
155
|
imap_processing/idex/idex_l0.py,sha256=XY0Kl30j9XLCZv7ooIGzSJqwFqWa_ecw4Tp2bw7HpWE,1726
|
|
154
156
|
imap_processing/idex/idex_l1a.py,sha256=xYgPM-pNlnq2q1qY9C4bcyNfmrvokHkXAnPfSxBDvQg,26864
|
|
155
157
|
imap_processing/idex/idex_l1b.py,sha256=Xs0IfqcXMGFYHPxY_HqPX01qYtYkbzY1kcNAyTkdrfU,12699
|
|
156
|
-
imap_processing/idex/idex_l2a.py,sha256=
|
|
157
|
-
imap_processing/idex/idex_l2b.py,sha256=
|
|
158
|
+
imap_processing/idex/idex_l2a.py,sha256=oVJuYkl3cCXnRzZ89_bwXv10L1vxa5wXe8nMsIIXozo,35930
|
|
159
|
+
imap_processing/idex/idex_l2b.py,sha256=zG1h5nxPKfSsLQBUH1PZgcfB22tKdSUdaW2wr2gXcc0,25557
|
|
158
160
|
imap_processing/idex/idex_utils.py,sha256=e5haEWZzFn7T1yRcfRQsRGmj51sc76nJ7CSYyAoMXyg,1916
|
|
159
161
|
imap_processing/idex/idex_variable_unpacking_and_eu_conversion.csv,sha256=WEfhrVaZTTQS6qJDhWRfB1Y3hBksVQvnSm_gqx3dgYE,3482
|
|
160
162
|
imap_processing/idex/packet_definitions/idex_housekeeping_packet_definition.xml,sha256=QRs0C4GwyP1yjI0lhtHwu7CgiLSp607bJnktFqrr3tY,611843
|
|
@@ -176,8 +178,8 @@ imap_processing/lo/l1a/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
|
|
|
176
178
|
imap_processing/lo/l1a/lo_l1a.py,sha256=VLc47xIYTx15TrevBdtlut8dWbqfT70THU4KQTyq48w,12275
|
|
177
179
|
imap_processing/lo/l1b/lo_l1b.py,sha256=2BnTSTcVJSNOAxOZanCc6T8YE048DD1NlFC0CWhJBW4,34152
|
|
178
180
|
imap_processing/lo/l1b/tof_conversions.py,sha256=V4gBOuHiJmnoRUXcXqXm1K5vYN853WhCsUz3hIoKBgU,472
|
|
179
|
-
imap_processing/lo/l1c/lo_l1c.py,sha256=
|
|
180
|
-
imap_processing/lo/l2/lo_l2.py,sha256=
|
|
181
|
+
imap_processing/lo/l1c/lo_l1c.py,sha256=4bUfkqWO-_ja6W7MUAJVsZE-Y9XKuxpqUOdHYHTTslI,22555
|
|
182
|
+
imap_processing/lo/l2/lo_l2.py,sha256=ACU00K_KO189lBdxMMvO4gGOg4-hbEG4SrMTzRzKyk0,37730
|
|
181
183
|
imap_processing/lo/lo_ancillary.py,sha256=vaxPLPTirEdK6Tt94mvROKFvtwNT0mHPHD-A7yVXYyE,1712
|
|
182
184
|
imap_processing/lo/packet_definitions/lo_xtce.xml,sha256=H6mA0MrchT9EkfTeYYruUIwsPbEoA-K6bYvaGQvIh0k,426923
|
|
183
185
|
imap_processing/mag/__init__.py,sha256=RqylrHL3DFqWq58Ay-BNTRxKL5pH9iW0cGDAYFUbcs0,47
|
|
@@ -185,15 +187,15 @@ imap_processing/mag/constants.py,sha256=jMQ8hNe0MaRtUeneI3p4PyHTqaXgdZ_RMVL7eEv9
|
|
|
185
187
|
imap_processing/mag/imap_mag_sdc_configuration_v001.py,sha256=52YiOVP3zo8_mNNuZj2fhV0Clch-6_yRYDPg9lsxWbI,313
|
|
186
188
|
imap_processing/mag/l0/decom_mag.py,sha256=Pky7sEADyXQCl4VlkWH5MuJZs_KbKx9SwfkDFzwKqYY,6141
|
|
187
189
|
imap_processing/mag/l0/mag_l0_data.py,sha256=pXlyIJB8yYfndnwTdJgfRPX7LemVT5q996Wm_8awv2g,4374
|
|
188
|
-
imap_processing/mag/l1a/mag_l1a.py,sha256=
|
|
189
|
-
imap_processing/mag/l1a/mag_l1a_data.py,sha256=
|
|
190
|
+
imap_processing/mag/l1a/mag_l1a.py,sha256=f46UuPLQgFstBxp43R0JjY2mS_BkELliwOCGHijdxhc,11675
|
|
191
|
+
imap_processing/mag/l1a/mag_l1a_data.py,sha256=Edypefns31e25GOqfoM6g4_wwGk5YucmLu405eF9LJM,47864
|
|
190
192
|
imap_processing/mag/l1b/imap_mag_l1b-calibration_20240229_v002.cdf,sha256=a11GMYFseOwCJ3AMTxobjBzcgeICHBtwbx0APfa9PN0,3269
|
|
191
193
|
imap_processing/mag/l1b/mag_l1b.py,sha256=3iFPNIbCYtz29n_ZCknuTiHmNeHT4EYJmLpX0DQIVU8,14448
|
|
192
|
-
imap_processing/mag/l1c/interpolation_methods.py,sha256=
|
|
193
|
-
imap_processing/mag/l1c/mag_l1c.py,sha256=
|
|
194
|
+
imap_processing/mag/l1c/interpolation_methods.py,sha256=89jGxLoZnbBkqo__7f31qAyZ5ScF8u05p5JZ0gkUl_s,14870
|
|
195
|
+
imap_processing/mag/l1c/mag_l1c.py,sha256=YuZGU6ci6HtZdc0gwo3UwpjdEcSbRsApUfvctKgXOFc,28143
|
|
194
196
|
imap_processing/mag/l1d/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
195
197
|
imap_processing/mag/l1d/mag_l1d.py,sha256=2Ie9sPoqAwoQJfauEkl_g_n9qteueTcnxx5JWp_MsL4,7543
|
|
196
|
-
imap_processing/mag/l1d/mag_l1d_data.py,sha256=
|
|
198
|
+
imap_processing/mag/l1d/mag_l1d_data.py,sha256=X5xypuXS8efppiwbE-uiYik5G-35rSB4cNtA3eD_G0s,29170
|
|
197
199
|
imap_processing/mag/l2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
198
200
|
imap_processing/mag/l2/mag_l2.py,sha256=YEBSAzklwaYxXGlBC66tPa3GIrYR8GQFMiv2tjQGaGE,5918
|
|
199
201
|
imap_processing/mag/l2/mag_l2_data.py,sha256=06D0-97UkT7VuGYqYNmrkWFVoRsxrSkiUdrdrYEHPM4,12600
|
|
@@ -203,14 +205,14 @@ imap_processing/spacecraft/packet_definitions/scid_x252.xml,sha256=vkeMi_r_nM0R4
|
|
|
203
205
|
imap_processing/spacecraft/quaternions.py,sha256=VdW0R76i5QWnENPtewnnkf6oq6uQ6yhFVc_MLDtiRUs,4271
|
|
204
206
|
imap_processing/spice/__init__.py,sha256=t5dNkU59mun7nZh-BDMApSC-Jie29-2ocFo_Qeu-2nk,17
|
|
205
207
|
imap_processing/spice/config.py,sha256=UR0M6lrLeYVLj3cx9Rj6Q9-Bdb0NDlmNq8vXIV1k5l8,224
|
|
206
|
-
imap_processing/spice/geometry.py,sha256=
|
|
207
|
-
imap_processing/spice/pointing_frame.py,sha256=
|
|
208
|
+
imap_processing/spice/geometry.py,sha256=FOTqX49R8UiSYYtVh-CoeJGrBt-s_ua-ZWXvu1xXPfs,22953
|
|
209
|
+
imap_processing/spice/pointing_frame.py,sha256=FcwQ1-8cgLopzm2YhYrR6-OEZfQzkYmfwU-jPqFJjI8,14736
|
|
208
210
|
imap_processing/spice/repoint.py,sha256=MOf8Syu9eD-sHsLHwfq6BWlG1NOHpA757VUpJW7S_3o,9959
|
|
209
211
|
imap_processing/spice/spin.py,sha256=qVEKe9GSc8RRewc9YtcvF9pgyVZ3LmBH8F0yCqNtaeg,10736
|
|
210
212
|
imap_processing/spice/time.py,sha256=U8HSMpC7sGnHkkkrCbTvQDOumNj8toJlQF062KE86aY,12569
|
|
211
213
|
imap_processing/swapi/__init__.py,sha256=Ga6Ioj68HnQ4moi7SxJdOyYmGHcRvKOh4uZUEPJZHl4,20
|
|
212
214
|
imap_processing/swapi/l1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
213
|
-
imap_processing/swapi/l1/swapi_l1.py,sha256=
|
|
215
|
+
imap_processing/swapi/l1/swapi_l1.py,sha256=LxM84yKW30q-rf_QGGuTA-G0T4CuUctGYOuM2v1-WR0,29329
|
|
214
216
|
imap_processing/swapi/l2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
215
217
|
imap_processing/swapi/l2/swapi_l2.py,sha256=oMz2dEFET0BCl6ILlUnH1-1NSWKsT6ClJLxPRbwucGM,10858
|
|
216
218
|
imap_processing/swapi/packet_definitions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -225,7 +227,7 @@ imap_processing/swe/l2/swe_l2.py,sha256=Ax9Vp11b3okq5wE5AmgAZo3G-KzLkbc4jVjbLj9w
|
|
|
225
227
|
imap_processing/swe/packet_definitions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
226
228
|
imap_processing/swe/packet_definitions/swe_packet_definition.xml,sha256=f9AER6eblGHX6jQ2zgDMqI5mLF8yQtRakEU4eoy2XS8,77901
|
|
227
229
|
imap_processing/swe/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
228
|
-
imap_processing/swe/utils/swe_constants.py,sha256=
|
|
230
|
+
imap_processing/swe/utils/swe_constants.py,sha256=k1zLOXJS7d9ATS_hSSdIUzIO7CrbXnMFRqBg4xlN22g,1271
|
|
229
231
|
imap_processing/swe/utils/swe_utils.py,sha256=ztBWk4xZXzsOtJcztX3kK8zrDdsXKAN8qc2UjmBlkOo,3160
|
|
230
232
|
imap_processing/ultra/__init__.py,sha256=Ga6Ioj68HnQ4moi7SxJdOyYmGHcRvKOh4uZUEPJZHl4,20
|
|
231
233
|
imap_processing/ultra/constants.py,sha256=NzSGa-3umBkHJLXaCpHbOnIqSiHyhHoTUTumR05bQbA,4130
|
|
@@ -237,17 +239,17 @@ imap_processing/ultra/l1a/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
|
|
|
237
239
|
imap_processing/ultra/l1a/ultra_l1a.py,sha256=em0bzciCTT1xPchDT_30B2--swaw9opocyI2DhXgg6w,6702
|
|
238
240
|
imap_processing/ultra/l1b/badtimes.py,sha256=eOpSACoQ4WwqLHOd3xeStkvn81YRAvmrIOdEE_qDL4E,3586
|
|
239
241
|
imap_processing/ultra/l1b/de.py,sha256=rlfWRTLbKZfNcEuL5IrZxogQNlk_0oDuAb3D6obfXQQ,12998
|
|
240
|
-
imap_processing/ultra/l1b/extendedspin.py,sha256=
|
|
242
|
+
imap_processing/ultra/l1b/extendedspin.py,sha256=GoCo2c-iqrewXEK1ff91_JKrnml0jZsPUkYXaCfp2Js,3921
|
|
241
243
|
imap_processing/ultra/l1b/goodtimes.py,sha256=ilLsS69AjjSBXgg57lQ-ifP6oMlAQoD3riM4i9hnPOI,4172
|
|
242
244
|
imap_processing/ultra/l1b/lookup_utils.py,sha256=yBp1mc0UhMdl8aWShRp_Zq_--Ez0vvZP8xGVBUJNocc,18613
|
|
243
245
|
imap_processing/ultra/l1b/quality_flag_filters.py,sha256=I5xoR9ZcAbTsBnfxCGeRcCgZMCGR2LgONkg3ED4o8xE,612
|
|
244
246
|
imap_processing/ultra/l1b/ultra_l1b.py,sha256=XQLLFKzO_NDBwwkTcDv8WfvfedkMNT4_24JkaQuJBvc,3930
|
|
245
247
|
imap_processing/ultra/l1b/ultra_l1b_annotated.py,sha256=_D429kdwjD8lSubR_-Ti8iiCLIfURQRtlKS5rBoC7Yg,2353
|
|
246
|
-
imap_processing/ultra/l1b/ultra_l1b_culling.py,sha256=
|
|
247
|
-
imap_processing/ultra/l1b/ultra_l1b_extended.py,sha256=
|
|
248
|
-
imap_processing/ultra/l1c/helio_pset.py,sha256=
|
|
248
|
+
imap_processing/ultra/l1b/ultra_l1b_culling.py,sha256=eS58iGHKiHjqL9Z-GoH7MhFqQrJm9gUvb3WI0iamvtM,19531
|
|
249
|
+
imap_processing/ultra/l1b/ultra_l1b_extended.py,sha256=H8c21M0jpBIVEICi_Lsvk6Dg88jPfYPoHXPT6gicn24,45945
|
|
250
|
+
imap_processing/ultra/l1c/helio_pset.py,sha256=GJD9MNf0un2_v55jLZLLOqry5hnjB5CZmAMSDMFdEeQ,6849
|
|
249
251
|
imap_processing/ultra/l1c/l1c_lookup_utils.py,sha256=P2_EfyT0yXsviO_wy4NMWwRk7I0kE9q3_B5x-WwR5nk,11007
|
|
250
|
-
imap_processing/ultra/l1c/spacecraft_pset.py,sha256=
|
|
252
|
+
imap_processing/ultra/l1c/spacecraft_pset.py,sha256=naJ_bivmkQLpc2Hih2T7XSr_zAmiv5WLQbot2GVdtxw,7335
|
|
251
253
|
imap_processing/ultra/l1c/ultra_l1c.py,sha256=qfW4nNhu6O10quG6rPr12Dy0vtCbclp9nNyyMqxYO1U,3632
|
|
252
254
|
imap_processing/ultra/l1c/ultra_l1c_culling.py,sha256=g6wzSiTmoLuWl8ohWzYaNFVzCDEEVdTLMWcILqycGM4,3140
|
|
253
255
|
imap_processing/ultra/l1c/ultra_l1c_pset_bins.py,sha256=FZttQdjMLFNE4U0ClAU_X8gMUCvuQYhIG7GLXoHcQgc,28231
|
|
@@ -259,8 +261,8 @@ imap_processing/ultra/packet_definitions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5
|
|
|
259
261
|
imap_processing/ultra/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
260
262
|
imap_processing/ultra/utils/ultra_l1_utils.py,sha256=QSaAO7AuDCVjuLaHmUVwiEUqGQii6CchOnI1HPqR8gM,6576
|
|
261
263
|
imap_processing/utils.py,sha256=B7TNQHUCK9Fz6whYmIiXZSEFlduvF9-EgDufg2omcH0,13931
|
|
262
|
-
imap_processing-1.0.
|
|
263
|
-
imap_processing-1.0.
|
|
264
|
-
imap_processing-1.0.
|
|
265
|
-
imap_processing-1.0.
|
|
266
|
-
imap_processing-1.0.
|
|
264
|
+
imap_processing-1.0.1.dist-info/LICENSE,sha256=F2rxhvc6auEI0Dk9IGjglQSQQk60EvTe8M1dORMZPOg,1098
|
|
265
|
+
imap_processing-1.0.1.dist-info/METADATA,sha256=89Xueo-V_F5ODzsYAPGvA0FgCbjJb8EStXzWsCWAoJ0,16116
|
|
266
|
+
imap_processing-1.0.1.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
267
|
+
imap_processing-1.0.1.dist-info/entry_points.txt,sha256=5r8ijLImHSNJxr-SGDC8kJy81BtXjmeUOmNfWSfLuRs,104
|
|
268
|
+
imap_processing-1.0.1.dist-info/RECORD,,
|
|
@@ -1,120 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: imap-processing
|
|
3
|
-
Version: 1.0.0
|
|
4
|
-
Summary: IMAP Science Operations Center Processing
|
|
5
|
-
License: MIT
|
|
6
|
-
Keywords: IMAP,SDC,SOC,Science Operations
|
|
7
|
-
Author: IMAP SDC Developers
|
|
8
|
-
Author-email: imap-sdc@lists.lasp.colorado.edu
|
|
9
|
-
Requires-Python: >=3.10,<4
|
|
10
|
-
Classifier: Development Status :: 3 - Alpha
|
|
11
|
-
Classifier: Intended Audience :: Developers
|
|
12
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
-
Classifier: Natural Language :: English
|
|
14
|
-
Classifier: Operating System :: MacOS
|
|
15
|
-
Classifier: Operating System :: Microsoft :: Windows
|
|
16
|
-
Classifier: Operating System :: POSIX
|
|
17
|
-
Classifier: Operating System :: Unix
|
|
18
|
-
Classifier: Programming Language :: Python :: 3
|
|
19
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
21
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
22
|
-
Classifier: Programming Language :: Python :: 3.13
|
|
23
|
-
Classifier: Topic :: Scientific/Engineering
|
|
24
|
-
Classifier: Topic :: Software Development
|
|
25
|
-
Provides-Extra: dev
|
|
26
|
-
Provides-Extra: doc
|
|
27
|
-
Provides-Extra: map-visualization
|
|
28
|
-
Provides-Extra: test
|
|
29
|
-
Provides-Extra: tools
|
|
30
|
-
Requires-Dist: astropy-healpix (>=1.0)
|
|
31
|
-
Requires-Dist: cdflib (>=1.3.6,<2.0.0)
|
|
32
|
-
Requires-Dist: healpy (>=1.18.0,<2.0.0) ; extra == "map-visualization"
|
|
33
|
-
Requires-Dist: imap-data-access (>=0.35.0)
|
|
34
|
-
Requires-Dist: mypy (==1.10.1) ; extra == "dev"
|
|
35
|
-
Requires-Dist: netcdf4 (>=1.7.2,<2.0.0) ; extra == "test"
|
|
36
|
-
Requires-Dist: numpy (<=3)
|
|
37
|
-
Requires-Dist: numpydoc (>=1.5.0,<2.0.0) ; extra == "doc"
|
|
38
|
-
Requires-Dist: openpyxl (>=3.0.7) ; extra == "test" or extra == "tools"
|
|
39
|
-
Requires-Dist: pandas (>=2.0.0) ; extra == "tools"
|
|
40
|
-
Requires-Dist: pre-commit (>=3.3.3,<4.0.0) ; extra == "dev"
|
|
41
|
-
Requires-Dist: pydata-sphinx-theme ; extra == "doc"
|
|
42
|
-
Requires-Dist: pytest (>=6.2.5) ; extra == "test"
|
|
43
|
-
Requires-Dist: pytest-cov (>=4.0.0,<5.0.0) ; extra == "test"
|
|
44
|
-
Requires-Dist: pytest-xdist (>=3.2,<4.0) ; extra == "test"
|
|
45
|
-
Requires-Dist: requests (>=2.32.3,<3.0.0) ; extra == "test"
|
|
46
|
-
Requires-Dist: ruff (==0.2.1) ; extra == "dev"
|
|
47
|
-
Requires-Dist: sammi-cdf (>=1.0,<2.0)
|
|
48
|
-
Requires-Dist: scipy (>=1.13,<2.0)
|
|
49
|
-
Requires-Dist: space_packet_parser (>=5.0.1,<6.0.0)
|
|
50
|
-
Requires-Dist: sphinx ; extra == "doc"
|
|
51
|
-
Requires-Dist: sphinxcontrib-openapi (>=0.8.3,<0.9.0) ; extra == "doc"
|
|
52
|
-
Requires-Dist: spiceypy (>=6.0.0)
|
|
53
|
-
Requires-Dist: xarray (>=2024.10.0)
|
|
54
|
-
Description-Content-Type: text/markdown
|
|
55
|
-
|
|
56
|
-
# IMAP (Interstellar Mapping and Acceleration Probe)
|
|
57
|
-
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
|
58
|
-
[](#contributors-)
|
|
59
|
-
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
|
60
|
-
[](https://imap-processing.readthedocs.io/en/latest/)
|
|
61
|
-
<!-- DOI-BADGE -->
|
|
62
|
-
[](https://zenodo.org/badge/latestdoi/654679818)
|
|
63
|
-
|
|
64
|
-
The Interstellar Mapping and Acceleration Probe (IMAP) is an exciting project aimed at studying the interstellar medium and investigating the acceleration mechanisms of particles within our galaxy. IMAP utilizes cutting-edge technology and advanced instrumentation to gather valuable data and expand our understanding of space.
|
|
65
|
-
|
|
66
|
-
The IMAP project's Git repository serves as a centralized hub for collaboration among researchers, scientists, and developers involved in the project. It provides a platform for version control, code sharing, issue tracking, and documentation, fostering a collaborative environment for advancing the goals of the IMAP mission.
|
|
67
|
-
|
|
68
|
-
Through the Git repository, contributors can access project resources, explore the codebase, propose enhancements or bug fixes, and participate in discussions with other team members. This collaborative approach promotes efficient development and fosters innovation in the pursuit of interstellar mapping and particle acceleration research.
|
|
69
|
-
|
|
70
|
-
Join the IMAP Git repository to be part of an exciting scientific endeavor, contribute your expertise, and help unlock the mysteries of the interstellar medium and particle acceleration in our galaxy. Together, we can advance our knowledge of the cosmos and pave the way for future discoveries in space exploration.
|
|
71
|
-
|
|
72
|
-
[IMAP Website](https://imap.princeton.edu/)
|
|
73
|
-
|
|
74
|
-
[IMAP Processing Documentation](https://imap-processing.readthedocs.io/en/latest/)
|
|
75
|
-
|
|
76
|
-
[Getting started](https://imap-processing.readthedocs.io/en/latest/development-guide/getting-started.html)
|
|
77
|
-
|
|
78
|
-
# Credits
|
|
79
|
-
[LASP (Laboratory of Atmospheric and Space Physics)](https://lasp.colorado.edu/)
|
|
80
|
-
## Contributors ✨
|
|
81
|
-
|
|
82
|
-
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
|
|
83
|
-
|
|
84
|
-
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
|
|
85
|
-
<!-- prettier-ignore-start -->
|
|
86
|
-
<!-- markdownlint-disable -->
|
|
87
|
-
<table>
|
|
88
|
-
<tbody>
|
|
89
|
-
<tr>
|
|
90
|
-
<td align="center" valign="top" width="14.28%"><a href="http://greglucas.github.io"><img src="https://avatars.githubusercontent.com/u/12417828?v=4?s=100" width="100px;" alt="Greg Lucas"/><br /><sub><b>Greg Lucas</b></sub></a><br /></td>
|
|
91
|
-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/tech3371"><img src="https://avatars.githubusercontent.com/u/36522642?v=4?s=100" width="100px;" alt="Tenzin Choedon"/><br /><sub><b>Tenzin Choedon</b></sub></a><br /></td>
|
|
92
|
-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/laspsandoval"><img src="https://avatars.githubusercontent.com/u/46567335?v=4?s=100" width="100px;" alt="Laura Sandoval"/><br /><sub><b>Laura Sandoval</b></sub></a><br /></td>
|
|
93
|
-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/sdhoyt"><img src="https://avatars.githubusercontent.com/u/7146374?v=4?s=100" width="100px;" alt="Sean Hoyt"/><br /><sub><b>Sean Hoyt</b></sub></a><br /></td>
|
|
94
|
-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/GFMoraga"><img src="https://avatars.githubusercontent.com/u/104743000?v=4?s=100" width="100px;" alt="Gabriel Moraga"/><br /><sub><b>Gabriel Moraga</b></sub></a><br /></td>
|
|
95
|
-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/bourque"><img src="https://avatars.githubusercontent.com/u/2250769?v=4?s=100" width="100px;" alt="Matthew Bourque"/><br /><sub><b>Matthew Bourque</b></sub></a><br /></td>
|
|
96
|
-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/maxinelasp"><img src="https://avatars.githubusercontent.com/u/117409426?v=4?s=100" width="100px;" alt="Maxine Hartnett"/><br /><sub><b>Maxine Hartnett</b></sub></a><br /></td>
|
|
97
|
-
</tr>
|
|
98
|
-
<tr>
|
|
99
|
-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/bryan-harter"><img src="https://avatars.githubusercontent.com/u/41062454?v=4?s=100" width="100px;" alt="Bryan Harter"/><br /><sub><b>Bryan Harter</b></sub></a><br /></td>
|
|
100
|
-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/mstrumik"><img src="https://avatars.githubusercontent.com/u/142874888?v=4?s=100" width="100px;" alt="Marek Strumik"/><br /><sub><b>Marek Strumik</b></sub></a><br /></td>
|
|
101
|
-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/vmartinez-cu"><img src="https://avatars.githubusercontent.com/u/39746325?v=4?s=100" width="100px;" alt="Veronica Martinez"/><br /><sub><b>Veronica Martinez</b></sub></a><br /></td>
|
|
102
|
-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/subagonsouth"><img src="https://avatars.githubusercontent.com/u/16110870?v=4?s=100" width="100px;" alt="Tim Plummer"/><br /><sub><b>Tim Plummer</b></sub></a><br /></td>
|
|
103
|
-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/daralynnrhode"><img src="https://avatars.githubusercontent.com/u/143308810?v=4?s=100" width="100px;" alt="Daralynn Rhode"/><br /><sub><b>Daralynn Rhode</b></sub></a><br /></td>
|
|
104
|
-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/anamanica"><img src="https://avatars.githubusercontent.com/u/171708990?v=4?s=100" width="100px;" alt="Ana Manica"/><br /><sub><b>Ana Manica</b></sub></a><br /></td>
|
|
105
|
-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/lacoak21"><img src="https://avatars.githubusercontent.com/u/48064300?v=4?s=100" width="100px;" alt="Luisa Coakley"/><br /><sub><b>Luisa Coakley</b></sub></a><br /></td>
|
|
106
|
-
</tr>
|
|
107
|
-
<tr>
|
|
108
|
-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/nkerman"><img src="https://avatars.githubusercontent.com/u/13221946?v=4?s=100" width="100px;" alt="Nat Kerman"/><br /><sub><b>Nat Kerman</b></sub></a><br /></td>
|
|
109
|
-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/torimarbois"><img src="https://avatars.githubusercontent.com/u/65727848?v=4?s=100" width="100px;" alt="Tori Marbois"/><br /><sub><b>Tori Marbois</b></sub></a><br /></td>
|
|
110
|
-
</tr>
|
|
111
|
-
</tbody>
|
|
112
|
-
</table>
|
|
113
|
-
|
|
114
|
-
<!-- markdownlint-restore -->
|
|
115
|
-
<!-- prettier-ignore-end -->
|
|
116
|
-
|
|
117
|
-
<!-- ALL-CONTRIBUTORS-LIST:END -->
|
|
118
|
-
|
|
119
|
-
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
|
|
120
|
-
|
|
File without changes
|
|
File without changes
|
|
File without changes
|